import pandas as pd, seaborn as sns
import numpy as np1. Exploratory Data Analysis
train_df = pd.read_csv(r'path\file_tweets.csv', encoding='latin')train_df = train_df[['OriginalTweet', 'Sentiment']]train_df.info()<class 'pandas.core.frame.DataFrame'>
RangeIndex: 41157 entries, 0 to 41156
Data columns (total 2 columns):
# Column Non-Null Count Dtype
--- ------ -------------- -----
0 OriginalTweet 41157 non-null object
1 Sentiment 41157 non-null object
dtypes: object(2)
memory usage: 643.2+ KB
sns.countplot(x=train_df.Sentiment)
set(train_df.Sentiment){'Extremely Negative', 'Extremely Positive', 'Negative', 'Neutral', 'Positive'}
check the number of rows per each category:
train_df.groupby('Sentiment').count()| OriginalTweet | |
|---|---|
| Sentiment | |
| Extremely Negative | 5481 |
| Extremely Positive | 6624 |
| Negative | 9917 |
| Neutral | 7713 |
| Positive | 11422 |
Table of Classes
Also it will be checked if there is any duplicate data in the dataset:
grouped = train_df.groupby("Sentiment")
unique_values_per_sentiment = grouped["OriginalTweet"].nunique()
unique_values_per_sentimentSentiment
Extremely Negative 5481
Extremely Positive 6624
Negative 9917
Neutral 7713
Positive 11422
Name: OriginalTweet, dtype: int64
The data has some umbalanced categories. Extremely Negative has only the half of cases as Positive
Also, in the example of the data, it can be seen that there are a lot of non alphanumerical characters as @, ?. Also that the texts are in mayusc and minus. Issues that are going to be handled in the cleaning. However, it is not detected any html format in the text which would also need a treatment in case of any.
train_df.head(10)| OriginalTweet | Sentiment | |
|---|---|---|
| 0 | @MeNyrbie @Phil_Gahan @Chrisitv https://t.co/i... | Neutral |
| 1 | advice Talk to your neighbours family to excha... | Positive |
| 2 | Coronavirus Australia: Woolworths to give elde... | Positive |
| 3 | My food stock is not the only one which is emp... | Positive |
| 4 | Me, ready to go at supermarket during the #COV... | Extremely Negative |
| 5 | As news of the regionÂ’s first confirmed COVID... | Positive |
| 6 | Cashier at grocery store was sharing his insig... | Positive |
| 7 | Was at the supermarket today. Didn't buy toile... | Neutral |
| 8 | Due to COVID-19 our retail store and classroom... | Positive |
| 9 | For corona prevention,we should stop to buy th... | Negative |
train_df.OriginalTweet.head(4)0 @MeNyrbie @Phil_Gahan @Chrisitv https://t.co/i...
1 advice Talk to your neighbours family to excha...
2 Coronavirus Australia: Woolworths to give elde...
3 My food stock is not the only one which is emp...
Name: OriginalTweet, dtype: object
Also, it is going to be checked any nulls in the data
Check also the lenght of the tweets
num_char = train_df['OriginalTweet'].apply(len)
num_char0 111
1 237
2 131
3 306
4 310
...
41152 102
41153 138
41154 136
41155 111
41156 255
Name: OriginalTweet, Length: 41157, dtype: int64
num_char.mean()204.20016036154237
model_df = train_df.copy()
model_df.head()| OriginalTweet | Sentiment | |
|---|---|---|
| 0 | @MeNyrbie @Phil_Gahan @Chrisitv https://t.co/i... | Neutral |
| 1 | advice Talk to your neighbours family to excha... | Positive |
| 2 | Coronavirus Australia: Woolworths to give elde... | Positive |
| 3 | My food stock is not the only one which is emp... | Positive |
| 4 | Me, ready to go at supermarket during the #COV... | Extremely Negative |
def count_words(text):
words = text.split()
return len(words)
lenword = model_df['OriginalTweet'].apply(count_words)
lenword.mean()30.5003037150424
Finally checking the average of words per tweet. Which in average it is being written 30 words per tweet.
Treat the umbalanced data with data augmentation
With the help of the next articles https://towardsdatascience.com/how-i-handled-imbalanced-text-data-ba9b757ab1d8
https://github.com/kothiyayogesh/medium-article-code/blob/master/How%20I%20dealt%20with%20Imbalanced%20text%20dataset/data_augmentation_using_language_translation.ipynb. I will try to balance the data by traslating the tweets from english to another language and then back to the english.
In this case the unbalanced classes are: + Neutral + Extremely negative + Extremely positive
For each of this classes it will be translated 2000 texts and try to balance the data
#!pip install translate#ip install deep-translator'''
#Google Translator
from translate import Translator
from deep_translator import MyMemoryTranslator
import random
def translation_balance(texto):
sr = random.SystemRandom()
languages = ["es", "fr", "nl"]
dest_lang = sr.choice(languages)
try:
# Translate to a random language
translator1 = Translator( to_lang=dest_lang)
text_translated = translator1.translate(texto)
#print("Translated to random language:", text_translated)
# Format the translated text
formatted_text = text_translated.upper()
# Translate the formatted text back to English
translator2 = Translator(from_lang=dest_lang, to_lang="en")
text_translated_back = translator2.translate(formatted_text)
#print("Translated back to English:", text_translated_back)
return text_translated_back
except Exception as e:
#print(f"Translation failed: {e}")
return None
''''\n#Google Translator\nfrom translate import Translator\nfrom deep_translator import MyMemoryTranslator\nimport random\n\ndef translation_balance(texto):\n sr = random.SystemRandom()\n languages = ["es", "fr", "nl"]\n\n dest_lang = sr.choice(languages)\n try:\n # Translate to a random language\n translator1 = Translator( to_lang=dest_lang)\n text_translated = translator1.translate(texto)\n #print("Translated to random language:", text_translated)\n\n # Format the translated text\n formatted_text = text_translated.upper()\n\n # Translate the formatted text back to English\n translator2 = Translator(from_lang=dest_lang, to_lang="en")\n text_translated_back = translator2.translate(formatted_text)\n #print("Translated back to English:", text_translated_back)\n\n return text_translated_back\n except Exception as e:\n #print(f"Translation failed: {e}")\n return None\n'
'''texto_input = 'This is a task'
# Call the function with the input text
translated_text = translation_balance(texto_input)
# Print the results
print("Translated text:", translated_text)''''texto_input = \'This is a task\'\n\n# Call the function with the input text\ntranslated_text = translation_balance(texto_input)\n\n# Print the results\nprint("Translated text:", translated_text)'
testing on the function:
'''subset_neutral = model_df[model_df['Sentiment'] == 'Neutral'].sample(n=1000, replace=False)
subset_negative = model_df[model_df['Sentiment'] == 'Extremely Negative'].sample(n=2000, replace=False)
subset_positive = model_df[model_df['Sentiment'] == 'Extremely Positive'].sample(n=1500, replace=False)
subset_neutral'''"subset_neutral = model_df[model_df['Sentiment'] == 'Neutral'].sample(n=1000, replace=False)\nsubset_negative = model_df[model_df['Sentiment'] == 'Extremely Negative'].sample(n=2000, replace=False)\nsubset_positive = model_df[model_df['Sentiment'] == 'Extremely Positive'].sample(n=1500, replace=False)\nsubset_neutral"
'''subset_neutral['OriginalTweet'] = subset_neutral['OriginalTweet'].apply(lambda x: translation_balance(x))
subset_negative['OriginalTweet'] = subset_negative['OriginalTweet'].apply(lambda x: translation_balance(x))
subset_positive['OriginalTweet'] = subset_positive['OriginalTweet'].apply(lambda x: translation_balance(x))'''"subset_neutral['OriginalTweet'] = subset_neutral['OriginalTweet'].apply(lambda x: translation_balance(x))\nsubset_negative['OriginalTweet'] = subset_negative['OriginalTweet'].apply(lambda x: translation_balance(x))\nsubset_positive['OriginalTweet'] = subset_positive['OriginalTweet'].apply(lambda x: translation_balance(x))"
Since the provided translation services come with a limit on the free coverage. It is being used a excel drive to create the data augmentation and it was replicated the logic applied in the lines of code in this part. The final data augmentation documentation is going to be merged with the root data. https://docs.google.com/spreadsheets/d/1_csmkpuRPTeMOAeUrfycXh5i6IZjv6MMNBtVU1efBFc/edit?usp=sharing
aug_df = pd.read_csv(r'path\Translations Data Augmentation - To export.csv', encoding='latin')
aug_df.head()| OriginalTweet | Sentiment | |
|---|---|---|
| 0 | @MeNyrbie @Phil_Gahan @Chrisitv https://t.co/i... | Neutral |
| 1 | I was at the supermarket today. I didn't buy t... | Neutral |
| 2 | Throughout the month there have been no crowds... | Neutral |
| 3 | ????? ????? ????? ????? ??\n ?????? ????? ????... | Neutral |
| 4 | @eyeonthearctic 16MAR20 Russia's consumer watc... | Neutral |
model_df_1 = pd.concat([model_df, aug_df], axis=0, ignore_index=True)
len(model_df_1)48140
model_df_1.head()| OriginalTweet | Sentiment | |
|---|---|---|
| 0 | @MeNyrbie @Phil_Gahan @Chrisitv https://t.co/i... | Neutral |
| 1 | advice Talk to your neighbours family to excha... | Positive |
| 2 | Coronavirus Australia: Woolworths to give elde... | Positive |
| 3 | My food stock is not the only one which is emp... | Positive |
| 4 | Me, ready to go at supermarket during the #COV... | Extremely Negative |
model_df_1 = model_df_1.drop_duplicates()model_df_1.head()| OriginalTweet | Sentiment | |
|---|---|---|
| 0 | @MeNyrbie @Phil_Gahan @Chrisitv https://t.co/i... | Neutral |
| 1 | advice Talk to your neighbours family to excha... | Positive |
| 2 | Coronavirus Australia: Woolworths to give elde... | Positive |
| 3 | My food stock is not the only one which is emp... | Positive |
| 4 | Me, ready to go at supermarket during the #COV... | Extremely Negative |
sns.countplot(x=model_df_1.Sentiment)
Still the data is not balanced enough but it can be checked that the extremely negative class is not longer the half of the prominent class Positive
model_df_1.groupby('Sentiment').count()| OriginalTweet | |
|---|---|
| Sentiment | |
| Extremely Negative | 8945 |
| Extremely Positive | 9118 |
| Negative | 9917 |
| Neutral | 8678 |
| Positive | 11422 |
After building data augmentation, the new datasets are append with the current main dataset
Put the Y as a label.
from sklearn.preprocessing import LabelEncoder
le = LabelEncoder()
model_df_1['Sentiment'] = le.fit_transform(model_df_1['Sentiment'])
model_df_1.head()| OriginalTweet | Sentiment | |
|---|---|---|
| 0 | @MeNyrbie @Phil_Gahan @Chrisitv https://t.co/i... | 3 |
| 1 | advice Talk to your neighbours family to excha... | 4 |
| 2 | Coronavirus Australia: Woolworths to give elde... | 4 |
| 3 | My food stock is not the only one which is emp... | 4 |
| 4 | Me, ready to go at supermarket during the #COV... | 0 |
How to manage umbalanced data
2. Splitting the data into training a test
X = model_df_1['OriginalTweet']
Y = model_df_1['Sentiment']Y0 3
1 4
2 4
3 4
4 0
..
48135 1
48136 1
48137 1
48138 1
48139 1
Name: Sentiment, Length: 48080, dtype: int32
from posixpath import split
# we will stratify so the distribution of the classes be equal in all the cases
from sklearn.model_selection import train_test_split
X_train, X_test, Y_train, Y_test = train_test_split(X,Y, random_state=23,test_size=0.25, stratify=Y)print(X_train.shape, Y_train.shape)
print(X_test.shape, Y_test.shape)(36060,) (36060,)
(12020,) (12020,)
X_train655 Im fucking calling it now, covid-19 isnt gonna...
14088 @Imagecaptured @JamesCanby Agreed I can tell y...
36393 @Viziblapp hosted a webinar with three procure...
337 In the wake of COVID-19, we are working with a...
9571 Hello Are you a complete fucking moron Then th...
...
7399 Due to the outbreak of COVID-19 Washington sta...
39963 Just came back from the supermarket ?I had nev...
2256 Went to the grocery store (more cookies were b...
4982 Hearing that Indians in #USA and other nations...
28491 Just a reminder folks, your local Walgreens an...
Name: OriginalTweet, Length: 36060, dtype: object
3. Clean Textual Data
In the previous exploratory block it was shown that the texts possess a lot of: + non-alphanumerical characters as #,@ use to tag and do hashtags + links of webpages + puntuation signs In this step these issues are going to be solved.
To mention that in this dataset there is no emojis but would be of help to understand the sentiments as well
Also is not use the NTLK STOP LIBRARY since it has in the storage negative connectors which are of relevance for the negative tweets
import re #manipulation of the text by REGeX methodology
from bs4 import BeautifulSoup #library to manipulate HTML code. which in this case there are present web links.
import sklearn.feature_extraction._stop_words as stop_words# this dictionary is created in order correct some contractions that can happen in common language in the tweets
Apostrophes_expansion = {
"'s": " is",
"'re": " are",
"'r": " are",
"'ll": " will",
"'d": " would",
"won't": "will not",
"can't": "cannot",
"couldn't": "could not",
"shouldn't": "should not",
" isn't ": " is not",
"don't": "do not"
}#!pip install pyspellcheckerdef strip(text):
#from textblob import TextBlob
from nltk.stem import WordNetLemmatizer
#from spellchecker import SpellChecker
text = text.lower()
#remove HTML tags, there is no cases in the current dataset but could happen in a tweet
tweet = BeautifulSoup(text).get_text()
#remove URlS
tweet = ' '.join(re.sub("(\w+:\/\/\S+)", " ", tweet).split())
#remove the gramatical contractions in English
tweet = ' '.join([Apostrophes_expansion[word] if word in Apostrophes_expansion else word for word in tweet.split()])
#remove the mention character since does not give particular information on the sentiment. However it will be keeped the texts of hashtags
tweet = ' '.join(re.sub("(@[A-Za-z0-9]+)"," ", tweet).split())
#remove the hashtags related to covid (kind of stopwords in this specific case)
#tweet = ' '.join(re.sub(r"#(covid\w*|coronavirus\w*)", "", tweet).split())
#Remove all the punctation signs that are not alphanumerical
tweet = ' '.join(re.sub("[^a-zA-Z0-9\s]"," ", tweet).split())
#removing cases in which the word has several repeated characters
tweet = ' '.join(re.sub(r"(.)\1+", r"\1\1", tweet).split())
#Lemmatization: Using the grammatical roots to understand and modify the words to the origin
lemmatizer = WordNetLemmatizer()
tweeter = ' '.join([lemmatizer.lemmatize(word) for word in tweet.split()])
return tweetertesting = """ My food stock is not the only one which is empty... @Carlitos
PLEASE, don't panic, THERE WILL BE ENOUGH FOOD FOR EVERYONE if you do not take more than you need. pleaissssss
Stay calm, stay safe, stai in homel. #COVID19france #COVID_19 #COVID19 #coronavirus #confinement #Confinementotal #ConfinementGeneral https://t.co/zrlG0Z520j """
testing1 =strip(testing)
testing1'my food stock is not the only one which is empty please do not panic there will be enough food for everyone if you do not take more than you need pleaiss stay calm stay safe stai in homel confinement confinementotal confinementgeneral'
#Apply it on all the X dataset
X_train = X_train.apply(strip)X_train[:5]655 im fucking calling it now covid 19 isnt gonna ...
14088 agreed i can tell you you have a better chance...
36393 hosted a webinar with three procurement though...
337 in the wake of covid 19 we are working with ag...
9571 hello are you a complete fucking moron then th...
Name: OriginalTweet, dtype: object
X_test = X_test.apply(strip)3.2 Normalization of the data
#!pip install nltk#import nltk
#nltk.download('wordnet')#Lemmatization: Using the grammatical roots to understand and modify the words to the origin
def lemmatization(tweet):
from nltk.stem import WordNetLemmatizer
lemmatizer = WordNetLemmatizer()
return ' '.join([lemmatizer.lemmatize(word) for word in tweet.split()])
#Stemming: Is more easy to calculate since it will only cut the sufixes of the words
def stemming(tweet):
from nltk.stem.porter import PorterStemmer
stemmer = PorterStemmer()
return ' '.join([stemmer.stem(word) for word in tweet.split()])lemmatization(testing1)'my food stock is not the only one which is empty please do not panic there will be enough food for everyone if you do not take more than you need pleaiss stay calm stay safe stai in homel confinement confinementotal confinementgeneral'
stemming(testing1)'my food stock is not the onli one which is empti pleas do not panic there will be enough food for everyon if you do not take more than you need pleaiss stay calm stay safe stai in homel confin confinementot confinementgener'
#3.2 Tokenization
Finally, it will be tokenized each of the words for each tweet
#!pip install nltk punkt#import nltk
#nltk.download('punkt')from nltk.tokenize import TweetTokenizer
from nltk.tokenize import word_tokenize
def tokenize(tweet,token='tweet'):
if token == 'tweet':
tokenizer = TweetTokenizer()
tui = tokenizer.tokenize(tweet)
if token=='regular':
tui =word_tokenize(tweet)
return tuiX_train_token = X_train.apply(tokenize, token='tweet').tolist()
X_test_token = X_test.apply(tokenize, token='tweet').tolist()print(X_train_token[1])['agreed', 'i', 'can', 'tell', 'you', 'you', 'have', 'a', 'better', 'chance', 'of', 'dying', 'driving', 'to', 'the', 'grocery', 'store', 'to', 'hoard', 'tp', 'than', 'dying', 'from', 'the']
X_train_token_1 = X_train.apply(tokenize, token='tweet').tolist()
print(X_train_token_1[1])['agreed', 'i', 'can', 'tell', 'you', 'you', 'have', 'a', 'better', 'chance', 'of', 'dying', 'driving', 'to', 'the', 'grocery', 'store', 'to', 'hoard', 'tp', 'than', 'dying', 'from', 'the']
#!pip install wordcloud4. Vectorizing the data
4.1 Basic Vectorizations
This basic vectorizations have the porpouse of catching the words in a numerical way. However, all of them have problems of dimentionallity and OOV issues. However, they can be used in an initial training (TF-IDF): + One hot encoding + Bag of words + Bag of N-gram + TF-IDF
twitter = list(X_train)
twitter[:10]['im fucking calling it now covid 19 isnt gonna kill u since we re all gonna kill eachother due to a fucking food shortage the panic is gonna go from a mere virus to a fucking all out apocalypse due to how shit is going right now you re all gonna cause a damn downfall',
'agreed i can tell you you have a better chance of dying driving to the grocery store to hoard tp than dying from the',
'hosted a webinar with three procurement thought leader across pharma consumer telco and automotive this week to discus what effect covid 19 will have on procurement procurement',
'in the wake of covid 19 we are working with agency to secure access to allotment and ensure get cattle and sheep get to market and to consumer plate additional detail will be shared a they become available please reach out with question or concern',
'hello are you a complete fucking moron then these word are for you',
'man charged in the uk for selling fake kit around the world',
'we are not where we thought we were our technology still fall short our resource are not sufficient to handle our challenge we lack sufficient food bank and food inventory stock to feed our people still no toilet paper no napkin no paper towel',
'following limpopo s premier visit to thohoyandou today 2 shoprite store were forced to close for not adhering to covid 19 lockdown rule madina supermarket wa caught selling fake sanitizers and it wa reported that thulamela municipality had purchased sanitizers from madina',
'please rt aston and nechells foodbank are currently experiencing increased demand and are short of supply please help if you can and continue to donate if you can throughout ongoing social distancing measure',
'covid 19 converting distillery to factory producing needed hand sanitizer daily voice']
#Building the vocabulary
vocab={}
count = 0
for tweets in twitter:
for word in tweets.split():
if word not in vocab:
count = count+1
vocab[word] =count
print(vocab){'im': 1, 'fucking': 2, 'calling': 3, 'it': 4, 'now': 5, 'covid': 6, '19': 7, 'isnt': 8, 'gonna': 9, 'kill': 10, 'u': 11, 'since': 12, 'we': 13, 're': 14, 'all': 15, 'eachother': 16, 'due': 17, 'to': 18, 'a': 19, 'food': 20, 'shortage': 21, 'the': 22, 'panic': 23, 'is': 24, 'go': 25, 'from': 26, 'mere': 27, 'virus': 28, 'out': 29, 'apocalypse': 30, 'how': 31, 'shit': 32, 'going': 33, 'right': 34, 'you': 35, 'cause': 36, 'damn': 37, 'downfall': 38, 'agreed': 39, 'i': 40, 'can': 41, 'tell': 42, 'have': 43, 'better': 44, 'chance': 45, 'of': 46, 'dying': 47, 'driving': 48, 'grocery': 49, 'store': 50, 'hoard': 51, 'tp': 52, 'than': 53, 'hosted': 54, 'webinar': 55, 'with': 56, 'three': 57, 'procurement': 58, 'thought': 59, 'leader': 60, 'across': 61, 'pharma': 62, 'consumer': 63, 'telco': 64, 'and': 65, 'automotive': 66, 'this': 67, 'week': 68, 'discus': 69, 'what': 70, 'effect': 71, 'will': 72, 'on': 73, 'in': 74, 'wake': 75, 'are': 76, 'working': 77, 'agency': 78, 'secure': 79, 'access': 80, 'allotment': 81, 'ensure': 82, 'get': 83, 'cattle': 84, 'sheep': 85, 'market': 86, 'plate': 87, 'additional': 88, 'detail': 89, 'be': 90, 'shared': 91, 'they': 92, 'become': 93, 'available': 94, 'please': 95, 'reach': 96, 'question': 97, 'or': 98, 'concern': 99, 'hello': 100, 'complete': 101, 'moron': 102, 'then': 103, 'these': 104, 'word': 105, 'for': 106, 'man': 107, 'charged': 108, 'uk': 109, 'selling': 110, 'fake': 111, 'kit': 112, 'around': 113, 'world': 114, 'not': 115, 'where': 116, 'were': 117, 'our': 118, 'technology': 119, 'still': 120, 'fall': 121, 'short': 122, 'resource': 123, 'sufficient': 124, 'handle': 125, 'challenge': 126, 'lack': 127, 'bank': 128, 'inventory': 129, 'stock': 130, 'feed': 131, 'people': 132, 'no': 133, 'toilet': 134, 'paper': 135, 'napkin': 136, 'towel': 137, 'following': 138, 'limpopo': 139, 's': 140, 'premier': 141, 'visit': 142, 'thohoyandou': 143, 'today': 144, '2': 145, 'shoprite': 146, 'forced': 147, 'close': 148, 'adhering': 149, 'lockdown': 150, 'rule': 151, 'madina': 152, 'supermarket': 153, 'wa': 154, 'caught': 155, 'sanitizers': 156, 'reported': 157, 'that': 158, 'thulamela': 159, 'municipality': 160, 'had': 161, 'purchased': 162, 'rt': 163, 'aston': 164, 'nechells': 165, 'foodbank': 166, 'currently': 167, 'experiencing': 168, 'increased': 169, 'demand': 170, 'supply': 171, 'help': 172, 'if': 173, 'continue': 174, 'donate': 175, 'throughout': 176, 'ongoing': 177, 'social': 178, 'distancing': 179, 'measure': 180, 'converting': 181, 'distillery': 182, 'factory': 183, 'producing': 184, 'needed': 185, 'hand': 186, 'sanitizer': 187, 'daily': 188, 'voice': 189, 'one': 190, 'arrive': 191, 'your': 192, 'inbox': 193, 'do': 194, 'click': 195, 'txsu': 196, 'student': 197, 'ha': 198, 'y': 199, 'work': 200, 'doubled': 201, 'being': 202, 'online': 203, 'just': 204, 'me': 205, 'like': 206, 'feel': 207, 'm': 208, 'getting': 209, 'more': 210, 'usual': 211, '2019': 212, 'best': 213, 'friend': 214, 'hide': 215, 'body': 216, '2020': 217, 'give': 218, 'while': 219, 'appreciate': 220, 'latter': 221, 'don': 222, 't': 223, 'think': 224, 'll': 225, 'ever': 226, 'meet': 227, 'keith': 228, 'way': 229, 'oh': 230, 'toiletpapercrisis': 231, 'toiletpaperapocalypse': 232, 'toiletpaper': 233, 'shaky': 234, 'ground': 235, 'business': 236, 'grind': 237, 'down': 238, 'because': 239, 'hear': 240, 'about': 241, 'confidence': 242, 'listen': 243, 'here': 244, 'at': 245, '20': 246, 'able': 247, 'procure': 248, 'pack': 249, 'puff': 250, 'bag': 251, 'flour': 252, 'bar': 253, 'soap': 254, 'so': 255, 'playing': 256, 'lottery': 257, 'tonight': 258, 'wait': 259, 'even': 260, 'thing': 261, 'happens': 262, 'socialdistancing': 263, 'report': 264, 'created': 265, 'hub': 266, 'obtain': 267, 'reliable': 268, 'information': 269, 'covering': 270, 'health': 271, 'home': 272, 'routine': 273, 'tech': 274, 'exercise': 275, 'politics': 276, 'aside': 277, 'incredible': 278, 'response': 279, 'critical': 280, 'time': 281, 'wow': 282, 'everyone': 283, 'seems': 284, 'key': 285, 'worker': 286, 'day': 287, 'delivery': 288, 'driver': 289, 'dog': 290, 'walker': 291, 'vape': 292, 'shop': 293, 'manager': 294, 'staff': 295, 'petrol': 296, 'station': 297, 'list': 298, 'endless': 299, 'keyworkersonly': 300, 'stayhome': 301, 'washyourhands': 302, 'should': 303, 'car': 304, 'insurance': 305, 'cost': 306, 'le': 307, 'stay': 308, 'group': 309, 'say': 310, 'yes': 311, 'risk': 312, 'via': 313, 'bringing': 314, 'into': 315, 'after': 316, 've': 317, 'taken': 318, 'walk': 319, 'v': 320, 'having': 321, 'local': 322, 'when': 323, 'open': 324, 'otherwise': 325, 'there': 326, 'staple': 327, 'anyone': 328, 'done': 329, 'sum': 330, 'congress': 331, 'urge': 332, 'narendra': 333, 'modi': 334, 'government': 335, 'share': 336, 'profit': 337, 'low': 338, 'crude': 339, 'oil': 340, 'price': 341, 'during': 342, 'coronavirus': 343, 'pti': 344, 'brought': 345, 'up': 346, 'fact': 347, 'jacking': 348, 'everything': 349, 'rate': 350, 'remains': 351, 'unchanged': 352, '6': 353, 'despite': 354, 'currency': 355, 'crash': 356, 'drop': 357, 'announced': 358, 'by': 359, 'russia': 360, 'ahk': 361, 'liveticker': 362, 'check': 363, 'important': 364, 'alert': 365, 'incoming': 366, 'economic': 367, 'relief': 368, 'payment': 369, 'educate': 370, 'yourself': 371, 'prey': 372, 'scammer': 373, 'trick': 374, 'my': 375, 'buying': 376, 'year': 377, 'worth': 378, 'cleaning': 379, 'selfish': 380, 'idiot': 381, 'ashamed': 382, 'news': 383, 'nyc': 384, 'pantry': 385, 'pandemic': 386, 'published': 387, 'outbreak': 388, 'unprecedented': 389, 'collapse': 390, 'service': 391, 'forex': 392, 'trading': 393, 'melbourne': 394, 'pick': 395, 'grandmother': 396, 'hospital': 397, 'need': 398, 'wear': 399, 'mask': 400, 'glove': 401, 'stopthespread': 402, 'stoppanicbuying': 403, 'thank': 404, 'solution': 405, 'automates': 406, 'co': 407, 'branded': 408, 'invitation': 409, 'eligible': 410, 'upgrade': 411, 'candidate': 412, 'drive': 413, 'well': 414, 'those': 415, 'dealer': 416, 'database': 417, 'citizensadvice': 418, 'responded': 419, 'financialconductauthority': 420, 'announcement': 421, 'series': 422, 'temporary': 423, 'credit': 424, 'card': 425, 'some': 426, 'other': 427, 'term': 428, 'debt': 429, 'light': 430, 'novel': 431, 'transportation': 432, 'skyrocketing': 433, 'nigeria': 434, 'who': 435, 'offend': 436, 'curious': 437, 'real': 438, 'estate': 439, 'impacted': 440, 'learn': 441, 'insight': 442, 'team': 443, 'new': 444, 'yorkers': 445, 'asking': 446, 'clue': 447, 'past': 448, 'recession': 449, 'nycrealestate': 450, 'realestate': 451, 'farmer': 452, 'warned': 453, 'livestock': 454, 'machinery': 455, 'protected': 456, 'thief': 457, 'try': 458, 'cash': 459, 'amid': 460, 'crisis': 461, 'fill': 462, 'take': 463, 'fuel': 464, 'likely': 465, 'effected': 466, 'explains': 467, 'mean': 468, 'filling': 469, 'slowing': 470, 'inside': 471, 'increase': 472, 'transmission': 473, 'strategy': 474, 'good': 475, 'managing': 476, 'extended': 477, 'period': 478, 'contact': 479, 'queue': 480, 'footfall': 481, 'public': 482, 'space': 483, 'obamacare': 484, 'consolidation': 485, 'raising': 486, 'patient': 487, 'australia': 488, 'prime': 489, 'minister': 490, 'stop': 491, 'hoarding': 492, 'shopper': 493, 'country': 494, 'empty': 495, 'shelf': 496, 'growing': 497, 'over': 498, 'rapid': 499, 'spread': 500, 'which': 501, 'infected': 502, 'nearly': 503, '180': 504, '00': 505, 'worldwide': 506, 'before': 507, 'helped': 508, 'distribute': 509, 'emergency': 510, 'an': 511, 'average': 512, '160': 513, 'household': 514, 'month': 515, 'figure': 516, 'already': 517, 'stand': 518, 'total': 519, '441': 520, 'struggling': 521, 'keep': 522, 'running': 523, 'kind': 524, 'situation': 525, 'gun': 526, 'correct': 527, 'answer': 528, 'won': 529, 'water': 530, 'order': 531, 'toliet': 532, 'see': 533, 'any': 534, 'reason': 535, 'firearm': 536, 'but': 537, 'only': 538, 'beginning': 539, 'die': 540, 'idea': 541, 'end': 542, 'hundred': 543, 'thousand': 544, 'son': 545, 'essential': 546, 'provider': 547, 'practice': 548, 'serious': 549, 'deep': 550, 'colorado': 551, 'ag': 552, 'vow': 553, 'investigate': 554, 'promise': 555, 'refund': 556, 'deliver': 557, 'remember': 558, 'muppets': 559, 'went': 560, 'few': 561, 'back': 562, 'acting': 563, 'animal': 564, 'looking': 565, 'themselves': 566, 'probably': 567, 'avoid': 568, 'madness': 569, 'cardiff': 570, 'central': 571, 'fresh': 572, 'fish': 573, 'poultry': 574, 'plus': 575, 'stall': 576, 'meat': 577, 'fruit': 578, 'veg': 579, 'much': 580, 'come': 581, 'tomorrow': 582, '8am': 583, '5': 584, '15pm': 585, '02920': 586, '229202': 587, 'behavior': 588, 'forget': 589, 'meal': 590, 'restaurant': 591, 'them': 592, 'without': 593, 'exposing': 594, 'community': 595, 'infection': 596, 'reduce': 597, 'disruption': 598, 'distribution': 599, 'too': 600, 'c4news': 601, 'am': 602, 'furious': 603, 'doctor': 604, 'spreading': 605, 'lie': 606, 'why': 607, 'enough': 608, 'tweet': 609, 'logic': 610, 'prediciton': 611, 'boost': 612, 'bored': 613, 'quarantined': 614, 'buyer': 615, 'till': 616, 'sofa': 617, '15': 618, 'shopping': 619, 'crush': 620, 'retail': 621, 'long': 622, 'passed': 623, 'resident': 624, 'sanfrancisco': 625, 'leave': 626, 'appointment': 627, 'run': 628, 'strictest': 629, 'policy': 630, 'enacted': 631, 'match': 632, 'current': 633, 'italy': 634, '2nd': 635, 'hardest': 636, 'hit': 637, 'every': 638, 'shift': 639, 'lead': 640, 'living': 641, 'different': 642, 'great': 643, 'depression': 644, 'defined': 645, 'habit': 646, 'decade': 647, 'hyperinflation': 648, 'wwii': 649, 'haunt': 650, 'german': 651, 'nofood': 652, 'toiletpapershortage': 653, 'love': 654, 'neighbor': 655, 'together': 656, 'couple': 657, 'opened': 658, 'free': 659, 'earlier': 660, 'support': 661, 'family': 662, 'nashville': 663, 'paisley': 664, 'mobilize': 665, 'elderly': 666, 'area': 667, 'saying': 668, 'sick': 669, 'test': 670, 'ill': 671, 'until': 672, 'two': 673, 'tested': 674, 'esp': 675, 'cashier': 676, 'gas': 677, 'attendant': 678, 'ship': 679, 'goabay': 680, 'goodsfromindia': 681, 'aurveda': 682, 'buyonlinefromindia': 683, 'india': 684, 'dock': 685, 'operator': 686, 'owner': 687, 'winnigas': 688, 'inquiry': 689, 'post': 690, 'boater': 691, 'lakewinnipesaukee': 692, 'lakelife': 693, 'nh': 694, 'boating': 695, 'police': 696, 'advice': 697, 'someone': 698, 'lean': 699, 'shoulder': 700, 'breathing': 701, 'face': 702, 'allowed': 703, 'gift': 704, 'him': 705, 'knuckle': 706, 'sandwich': 707, 'cuyahoga': 708, 'county': 709, 'department': 710, 'affair': 711, 'warning': 712, 'scam': 713, 'related': 714, 'stimulus': 715, 'pharmacy': 716, 'thermometer': 717, 'also': 718, 'protection': 719, 'include': 720, 'paracetamol': 721, '16pk': 722, 'door': 723, 'kenyan': 724, 'startup': 725, 'launch': 726, 'ai': 727, 'data': 728, 'driven': 729, 'platform': 730, 'curb': 731, 'healthtech': 732, 'startuos': 733, 'innovation': 734, 'africa': 735, 'blockchain': 736, 'prompt': 737, 'law': 738, 'queensland': 739, 'restock': 740, 'hour': 741, 'abc': 742, 'australian': 743, 'broadcasting': 744, 'corporation': 745, 'piling': 746, 'booze': 747, 'luck': 748, 'wiping': 749, 'arse': 750, 'though': 751, 'same': 752, 'folk': 753, 'bought': 754, 'mountain': 755, 'bog': 756, 'roll': 757, 'coronacrisis': 758, 'dontpanicbuy': 759, 'r102m': 760, 'pay': 761, 'bonus': 762, 'imagine': 763, 'tattoo': 764, 'art': 765, 'lysol': 766, 'rose': 767, 'happy': 768, 'monday': 769, 'financial': 770, 'opec': 771, 'output': 772, 'cut': 773, 'fluctuate': 774, 'decline': 775, 'dollar': 776, 'slip': 777, 'coming': 778, 'soon': 779, 'dia': 780, 'spy': 781, 'qq': 782, 'cl': 783, 'f': 784, 'overcame': 785, 'decided': 786, 'put': 787, 'their': 788, 'workforce': 789, 'first': 790, 'evident': 791, 'move': 792, 'entrepreneur': 793, 'fineos': 794, 'announces': 795, 'paid': 796, 'calculator': 797, 'answering': 798, 'amount': 799, 'might': 800, 'apply': 801, 'cautious': 802, 'product': 803, 'claim': 804, 'prevent': 805, 'treat': 806, 'diagnose': 807, 'cure': 808, 'suspect': 809, 'email': 810, 'fraudstoppers': 811, 'ok': 812, 'gov': 813, 'thread': 814, 'checking': 815, 'underscore': 816, 'weight': 817, 'start': 818, 'fighting': 819, 'emotion': 820, 'sharing': 821, 'reading': 822, 'laterally': 823, 'amp': 824, 'verifying': 825, 'source': 826, 'senior': 827, 'allow': 828, 'ppl': 829, 'safely': 830, 'south': 831, 'bay': 832, 'chain': 833, 'zanotto': 834, 'implement': 835, 'precaution': 836, 'manufacturer': 837, 'portal': 838, 'been': 839, 'latest': 840, 'else': 841, 'cool': 842, 'hangout': 843, 'always': 844, 'busy': 845, 'stayathomeandstaysafe': 846, 'stayhomefornevada': 847, 'socialdistance': 848, 'very': 849, 'worried': 850, 'wearing': 851, 'continually': 852, 'sanitize': 853, 'sure': 854, 'protect': 855, 'contracting': 856, 'trouble': 857, 'concentrating': 858, 'sleeping': 859, 'fraudsters': 860, 'swindler': 861, 'making': 862, 'huge': 863, 'misery': 864, 'corona': 865, 'victim': 866, 'coronavillains': 867, 'medical': 868, 'arbitrage': 869, 'horde': 870, 'middleman': 871, 'profiteer': 872, 'dramatically': 873, 'increasing': 874, 'n95s': 875, 'zero': 876, 'hedge': 877, 'global': 878, 'catalyst': 879, 'radical': 880, 'gilbert': 881, 'mercier': 882, 'speaks': 883, 'chronicle': 884, 'glad': 885, 'loblaws': 886, 'superstore': 887, 'frill': 888, 'etc': 889, 'taking': 890, 'step': 891, 'canada': 892, 'coup': 893, 'war': 894, 'may': 895, 'aimed': 896, 'shale': 897, 'benchmark': 898, 'fallen': 899, 'below': 900, '10': 901, 'barrel': 902, 'oott': 903, 'convert': 904, 'lunch': 905, 'money': 906, 'multiply': 907, '4': 908, 'snack': 909, 'feeding': 910, 'child': 911, 'biggest': 912, 'refrigerator': 913, 'tired': 914, 'juice': 915, 'danger': 916, 'worse': 917, 'b': 918, 'recap': 919, 'sentiment': 920, 'estimate': 921, 'q': 922, 'weekly': 923, 'update': 924, 'mg': 925, 'gold': 926, 'safe': 927, 'haven': 928, 'investment': 929, 'outlook': 930, 'mildly': 931, 'bullish': 932, 'high': 933, '1900': 934, '2021': 935, 'higher': 936, '200': 937, 'per': 938, 'oz': 939, 'know': 940, 'cunt': 941, 'moaned': 942, 'brexit': 943, 'stayathome': 944, 'china': 945, 'role': 946, 'wildlife': 947, 'trade': 948, 'under': 949, 'greater': 950, 'scrutiny': 951, 'whether': 952, 'pushing': 953, 'entire': 954, 'specie': 955, 'brink': 956, 'extinction': 957, 'farm': 958, 'endangered': 959, 'prc': 960, 'principal': 961, '1': 962, 'silly': 963, 'american': 964, 'anything': 965, 'hoarder': 966, 'greenchile': 967, 'nm': 968, 'texas': 969, 'heal': 970, 'worship': 971, 'song': 972, 'playlist': 973, 'ghaad': 974, 'kinda': 975, 'evaluating': 976, 'whole': 977, 'life': 978, 'hays': 979, 'corner': 980, 'advantage': 981, 'fear': 982, 'cdc': 983, 'flu': 984, 'trend': 985, 'attorney': 986, 'michael': 987, 'bailey': 988, 'az': 989, 'covid019': 990, 'fraud': 991, 'task': 992, 'force': 993, 'received': 994, 'almost': 995, '12k': 996, 'complaint': 997, 'loss': 998, '8': 999, '39m': 1000, 'kudos': 1001, 'frontline': 1002, 'especially': 1003, 'nurse': 1004, 'wore': 1005, 'facemask': 1006, 'got': 1007, 'anxiety': 1008, 'pray': 1009, 'founded': 1010, 'star': 1011, 'brad': 1012, 'actress': 1013, 'kimberly': 1014, 'williams': 1015, 'throng': 1016, 'mulund': 1017, 'flouting': 1018, 'top': 1019, 'echoed': 1020, 'ppe': 1021, 'equipment': 1022, 'skyrocket': 1023, 'fan': 1024, 'bed': 1025, 'trump': 1026, 'mass': 1027, 'production': 1028, 'ago': 1029, 'save': 1030, 'did': 1031, 'gen': 1032, 'z': 1033, 'igen': 1034, 'affected': 1035, 'never': 1036, 'engage': 1037, 'activity': 1038, 'large': 1039, 'gathering': 1040, 'school': 1041, 'mandate': 1042, 'education': 1043, 'case': 1044, 'study': 1045, 'bango': 1046, 'quantifies': 1047, 'read': 1048, 'blog': 1049, 'provides': 1050, 'spend': 1051, 'forecast': 1052, 'based': 1053, 'initially': 1054, 'appdevelopers': 1055, 'appmarketing': 1056, 'mobilegames': 1057, 'birth': 1058, 'sh': 1059, 'lf': 1060, 'stable': 1061, 'greedily': 1062, 'person': 1063, 'action': 1064, 'consideration': 1065, 'others': 1066, 'chinese': 1067, 'lol': 1068, 'gasoline': 1069, 'yeah': 1070, 'clown': 1071, 'let': 1072, 'applaud': 1073, 'unsung': 1074, 'hero': 1075, 'tough': 1076, 'kirana': 1077, 'must': 1078, 'article': 1079, 'kiranastores': 1080, 'yost': 1081, 'warns': 1082, 'keen': 1083, 'wonder': 1084, 'many': 1085, 'carried': 1086, 'baby': 1087, 'self': 1088, 'isolating': 1089, 'least': 1090, 'another': 1091, 'yet': 1092, 'slot': 1093, 'collect': 1094, 'april': 1095, '1st': 1096, 'live': 1097, '45': 1098, 'min': 1099, 'neighbour': 1100, 'big': 1101, 'ask': 1102, 'supposed': 1103, 'changed': 1104, 'behaviour': 1105, 'lagosians': 1106, 'both': 1107, 'robbersvirus': 1108, 'robbery': 1109, 'everywhere': 1110, 'citizen': 1111, 'turning': 1112, 'vigilatees': 1113, 'nomoney': 1114, 'nopeaceofmind': 1115, 'cc': 1116, 'rise': 1117, 'warn': 1118, 'expert': 1119, 'double': 1120, 'whammy': 1121, 'erratic': 1122, 'rainfall': 1123, 'hammering': 1124, 'latin': 1125, 'economy': 1126, 'latam': 1127, 'plan': 1128, 'trip': 1129, 'mostly': 1130, 'talk': 1131, 'myself': 1132, 'doing': 1133, 'really': 1134, 'want': 1135, 'outside': 1136, 'bad': 1137, 'allergy': 1138, 'limited': 1139, 'tissue': 1140, 'hard': 1141, 'cbd': 1142, 'cannot': 1143, 'symptom': 1144, 'relieve': 1145, 'immune': 1146, 'system': 1147, 'act': 1148, 'natural': 1149, 'angelic': 1150, 'reduced': 1151, 'difficult': 1152, 'twitter': 1153, 'confirm': 1154, 'woolies': 1155, 'would': 1156, 'coronaaustralia': 1157, 'caused': 1158, 'robotics': 1159, 'accelerate': 1160, 'according': 1161, 'lesley': 1162, 'rohrbaugh': 1163, 'director': 1164, 'research': 1165, 'association': 1166, 'truly': 1167, 'heartbreaking': 1168, 'video': 1169, 'upset': 1170, 'everytime': 1171, 'such': 1172, 'hope': 1173, 'she': 1174, 'shown': 1175, 'lot': 1176, 'compassion': 1177, 'finally': 1178, 'found': 1179, 'provision': 1180, 'doitfordawn': 1181, 'allah': 1182, 'bring': 1183, 'blessing': 1184, 'effortlessly': 1185, 'recover': 1186, 'slow': 1187, 'cleaner': 1188, 'armed': 1189, 'whoever': 1190, 'he': 1191, 'saved': 1192, 'humanity': 1193, 'plenty': 1194, 'alarmed': 1195, 'supplier': 1196, 'retailer': 1197, 'surging': 1198, 'insist': 1199, 'strong': 1200, 'panicbuying': 1201, 'kaikohe': 1202, 'testing': 1203, 'positive': 1204, 'keine': 1205, 'wertgegenst': 1206, 'nde': 1207, 'fahrzeug': 1208, 'lassen': 1209, 'diesen': 1210, 'tipp': 1211, 'sollte': 1212, 'besten': 1213, 'immer': 1214, 'nicht': 1215, 'nur': 1216, 'zeiten': 1217, 'von': 1218, 'befolgen': 1219, 'w': 1220, 'rselen': 1221, 'wurde': 1222, 'scheibe': 1223, 'eines': 1224, 'pkw': 1225, 'eingeschlagen': 1226, 'mehrere': 1227, 'rollen': 1228, 'klopapier': 1229, 'gestohlen': 1230, 'happyeaster': 1231, 'chocolate': 1232, 'flower': 1233, 'instead': 1234, 'homeessentials': 1235, 'appreciated': 1236, 'clorox': 1237, 'bleach': 1238, 'evelynperezlarin': 1239, 'realtor': 1240, 'miami': 1241, 'fortuneinternationalrealty': 1242, 'canvasmiami': 1243, 'weareinthistogether': 1244, 'recent': 1245, 'focus': 1246, 'mintel': 1247, 'discovered': 1248, 'canadian': 1249, '54': 1250, 'percent': 1251, 'wash': 1252, 'frequently': 1253, 'heb': 1254, 'managed': 1255, 'prepared': 1256, 'turn': 1257, 'started': 1258, 'talking': 1259, 'january': 1260, 'began': 1261, 'wargaming': 1262, 'simulation': 1263, 'feb': 1264, 'closed': 1265, 'domestic': 1266, 'international': 1267, 'travel': 1268, 'banned': 1269, 'rocket': 1270, 'science': 1271, 'd': 1272, 'chinaliedpeopledie': 1273, 'mahavir': 1274, 'temple': 1275, 'trust': 1276, 'crore': 1277, 'mahamaya': 1278, 'lac': 1279, 'tibetan': 1280, 'baudhist': 1281, 'donating': 1282, 'r': 1283, 'giving': 1284, 'christianmissionaries': 1285, 'muslim': 1286, 'nothing': 1287, 'hindu': 1288, 'hindutva': 1289, 'disaster': 1290, 'disease': 1291, 'capitalism': 1292, 'produce': 1293, 'future': 1294, 'thru': 1295, 'job': 1296, 'hold': 1297, 'cbc': 1298, 'early': 1299, 'morning': 1300, 'limit': 1301, 'took': 1302, 'bc': 1303, 'hopefully': 1304, 'some1': 1305, 'approve': 1306, 'wise': 1307, 'decision': 1308, 'counter': 1309, 'depleting': 1310, 'city': 1311, 'tehachapi': 1312, 'page': 1313, 'including': 1314, 'offering': 1315, 'takeout': 1316, 'medium': 1317, 'advisory': 1318, 'bureau': 1319, 'xauusd': 1320, 'gc': 1321, 'glds': 1322, '7': 1323, 'investor': 1324, 'refuge': 1325, 'safer': 1326, 'asset': 1327, 'fueled': 1328, 'sell': 1329, 'off': 1330, 'analyst': 1331, 'level': 1332, 'could': 1333, 'push': 1334, 'above': 1335, 'unnecessary': 1336, 'movement': 1337, 'enjoy': 1338, 'convenience': 1339, 'regularly': 1340, 'touching': 1341, 'nose': 1342, 'mouth': 1343, 'eye': 1344, 'coronavid19': 1345, 'kenya': 1346, 'index': 1347, 'fell': 1348, 'worsened': 1349, 'trying': 1350, 'spent': 1351, '30minutes': 1352, 'website': 1353, 'site': 1354, 'seize': 1355, 'removed': 1356, 'cart': 1357, 'suppose': 1358, 'fail': 1359, 'quarantine': 1360, 'opening': 1361, 'commissioner': 1362, 'choice': 1363, 'sketchy': 1364, 'clean': 1365, 'line': 1366, 'difference': 1367, 'between': 1368, 'accept': 1369, 'paypal': 1370, 'usd': 1371, 'sketch': 1372, 'flat': 1373, 'color': 1374, 'shaded': 1375, '40': 1376, 'mini': 1377, 'bg': 1378, '65': 1379, 'struggle': 1380, 'survive': 1381, 'add': 1382, 'burden': 1383, 'point': 1384, 'domino': 1385, 'healthemergency': 1386, 'supplychain': 1387, 'shut': 1388, 'crack': 1389, 'liquidity': 1390, 'shock': 1391, 'l': 1392, 'unemployment': 1393, '2x': 1394, 'spx': 1395, 'bond': 1396, 'sbc': 1397, '3x': 1398, 'fight': 1399, 'against': 1400, 'noval': 1401, 'safeguard': 1402, 'protective': 1403, '50': 1404, 'dhgate': 1405, 'onlineshopping': 1406, 'jueves': 1407, 'de': 1408, 'abril': 1409, 'buenas': 1410, 'tardes': 1411, 'mi': 1412, '041': 1413, 'seguidores': 1414, 'en': 1415, 'desde': 1416, 'panam': 1417, 'thursday': 1418, 'april2nd': 1419, 'afternoon': 1420, 'follower': 1421, 'panama': 1422, 'everybody': 1423, 'cascara': 1424, 'instagram': 1425, 'qom': 1426, 'reportedly': 1427, 'diagnosed': 1428, 'said': 1429, 'blaming': 1430, 'iranian': 1431, 'official': 1432, 'responsibility': 1433, 'unfortunately': 1434, 'commission': 1435, 'digital': 1436, 'artwork': 1437, 'interested': 1438, 'amandahester': 1439, 'unt': 1440, 'edu': 1441, 'continues': 1442, '3': 1443, 'fightcoronavirus': 1444, 'fightwithcoronavirus': 1445, 'vapesafe': 1446, 'vapeon': 1447, 'vapehealthy': 1448, 'vapelyfe': 1449, 'vapefam': 1450, 'vaping': 1451, 'vapor': 1452, 'vapedaily': 1453, 'vapelove': 1454, 'everzon': 1455, 'chased': 1456, 'away': 1457, 'rental': 1458, 'house': 1459, 'denying': 1460, 'inthe': 1461, 'african': 1462, 'young': 1463, 'feeling': 1464, 'affecting': 1465, 'mentalhealth': 1466, 'watch': 1467, 'look': 1468, '90': 1469, 'selfcare': 1470, 'told': 1471, 'anxious': 1472, 'region': 1473, 'swiftly': 1474, 'contain': 1475, 'minimise': 1476, 'mitigate': 1477, 'build': 1478, 'capability': 1479, 'roughly': 1480, '600': 1481, 'leisure': 1482, 'spending': 1483, 'priority': 1484, 'noticed': 1485, 'music': 1486, 'blaring': 1487, 'several': 1488, 'window': 1489, 'selfisolating': 1490, 'taste': 1491, 'maybe': 1492, 'headphone': 1493, 'govt': 1494, 'niceneighbour': 1495, 'niceneighbor': 1496, 'listening': 1497, 'heartbroken': 1498, 'parent': 1499, 'leilani': 1500, 'jordan': 1501, 'given': 1502, 'hydroxychloroquine': 1503, 'avail': 1504, 'disabled': 1505, 'front': 1506, 'giant': 1507, 'walmart': 1508, 'wegmans': 1509, 'failed': 1510, 'provide': 1511, 'enforce': 1512, 'strict': 1513, 'sale': 1514, 'identify': 1515, 'excess': 1516, 'stockpile': 1517, 'confiscated': 1518, 'compensation': 1519, 'largely': 1520, 'relies': 1521, 'proactive': 1522, 'boris': 1523, 'johnson': 1524, 'stophoarding': 1525, 'closure': 1526, 'mount': 1527, 'age': 1528, 'cre': 1529, 'continuing': 1530, 'closely': 1531, 'monitor': 1532, 'seeing': 1533, 'gropods': 1534, 'safety': 1535, 'desire': 1536, 'reliant': 1537, 'march': 1538, 'monthly': 1539, 'newsletter': 1540, 'scary': 1541, 'next': 1542, 'blatant': 1543, 'medicare': 1544, 'shitty': 1545, 'earth': 1546, 'planet': 1547, 'manger': 1548, 'kept': 1549, 'sister': 1550, '34': 1551, 'although': 1552, 'number': 1553, 'slightly': 1554, 'indicative': 1555, 'unusually': 1556, 'transaction': 1557, 'size': 1558, 'stockpiling': 1559, 'ready': 1560, 'chicken': 1561, 'caregiving': 1562, 'mom': 1563, 'staying': 1564, 'keeping': 1565, 'wide': 1566, 'waiting': 1567, 'hoping': 1568, 'u2release': 1569, 'u2community': 1570, 'u2foru': 1571, 'whose': 1572, 'garage': 1573, 'full': 1574, 'anticipation': 1575, 'use': 1576, 'includes': 1577, 'wipe': 1578, 'sheet': 1579, 'killed': 1580, 'eat': 1581, 'little': 1582, 'cant': 1583, 'freak': 1584, 'extra': 1585, 'mine': 1586, 'walking': 1587, 'mile': 1588, 'carrying': 1589, 'old': 1590, 'git': 1591, 'knackered': 1592, 'torybritain': 1593, 'drove': 1594, 'absolutely': 1595, 'disgusted': 1596, 'golf': 1597, 'link': 1598, 'rd': 1599, 'lidl': 1600, 'wednesday': 1601, 'charted': 1602, '80': 1603, 'her': 1604, 'bubble': 1605, 'ample': 1606, 'merlot': 1607, 'camembert': 1608, 'delight': 1609, 'ignorance': 1610, 'believe': 1611, 'dairy': 1612, 'milk': 1613, 'falling': 1614, 'exponentially': 1615, 'dump': 1616, 'break': 1617, 'heart': 1618, 'hurt': 1619, 'wondering': 1620, 'affect': 1621, 'find': 1622, 'info': 1623, 'preparedness': 1624, 'shipping': 1625, 'often': 1626, 'security': 1627, 'tip': 1628, 'apple': 1629, 'lineup': 1630, 'iphone': 1631, 'left': 1632, 'buy': 1633, 'canned': 1634, 'tuna': 1635, 'coldpressedoil': 1636, 'chekkuoil': 1637, 'standardcoldpressedoil': 1638, 'fed': 1639, 'finishing': 1640, 'parcel': 1641, 'older': 1642, 'cancer': 1643, 'make': 1644, 'cry': 1645, 'mma': 1646, 'imma': 1647, 'straight': 1648, 'eastern': 1649, 'north': 1650, 'carolina': 1651, 'sparked': 1652, 'org': 1653, 'foodsafety': 1654, 'stressing': 1655, 'foodborne': 1656, 'illness': 1657, 'foodindustry': 1658, 'panicked': 1659, 'emptied': 1660, 'accumulate': 1661, 'saw': 1662, 'guy': 1663, 'paella': 1664, 'pi': 1665, 'ata': 1666, 'sombrero': 1667, 'hispanic': 1668, 'costing': 1669, 'million': 1670, 'alone': 1671, 'impact': 1672, 'easy': 1673, 'overlook': 1674, 'dismal': 1675, 'reality': 1676, 'producer': 1677, 'lockdown21': 1678, 'wtf': 1679, 'clothes': 1680, 'noni': 1681, 'katies': 1682, 'river': 1683, 'ect': 1684, 'preorders': 1685, 'seen': 1686, 'stuff': 1687, 'nail': 1688, 'gross': 1689, '9': 1690, 'bossert': 1691, 'publishes': 1692, 'op': 1693, 'ed': 1694, 'advocate': 1695, 'contagion': 1696, 'development': 1697, 'compare': 1698, 'favorably': 1699, 'common': 1700, 'pretty': 1701, 'anyway': 1702, 'finish': 1703, 'ffs': 1704, 'tsavemyhandsfromthecookie': 1705, 'jar': 1706, 'waterstones': 1707, 'chief': 1708, 'exec': 1709, 'james': 1710, 'daunt': 1711, 'described': 1712, 'raised': 1713, 'member': 1714, 'utter': 1715, 'needle': 1716, 'gone': 1717, 'his': 1718, 'employee': 1719, 'dm': 1720, 'angry': 1721, 'bookseller': 1722, 'customer': 1723, 'sanitiser': 1724, 'quantity': 1725, 'lorri': 1726, 'conveniencestore': 1727, 'petrolforecourt': 1728, 'petrolstation': 1729, 'antibacterial': 1730, 'standard': 1731, 'voucher': 1732, 'designed': 1733, 'targeting': 1734, 'desperation': 1735, 'cloak': 1736, 'branding': 1737, 'popular': 1738, 'offer': 1739, 'second': 1740, 'carry': 1741, 'protecting': 1742, 'layer': 1743, 'travelling': 1744, 'rumor': 1745, 'require': 1746, 'scumbags': 1747, 'quite': 1748, 'simply': 1749, 'piece': 1750, 'thick': 1751, 'brain': 1752, 'cell': 1753, 'causing': 1754, 'literally': 1755, 'fuck': 1756, 'forever': 1757, 'toiletroll': 1758, 'notfakenews': 1759, 'rethink': 1760, 'adapt': 1761, 'socialize': 1762, 'change': 1763, 'vigilant': 1764, 'dc': 1765, 'abuse': 1766, 'exploitation': 1767, 'c': 1768, 'rely': 1769, 'mgmt': 1770, 'healthcare': 1771, 'loved': 1772, 'english': 1773, 'spanish': 1774, 'white': 1775, 'briefing': 1776, '25': 1777, 'miss': 1778, 'opportunity': 1779, 'win': 1780, 'remarkable': 1781, 'participating': 1782, 'essay': 1783, 'competition': 1784, 'psychosocial': 1785, 'perspective': 1786, 'register': 1787, 'cutting': 1788, 'collapsing': 1789, 'plummeting': 1790, 'threaten': 1791, 'field': 1792, 'amazing': 1793, 'mind': 1794, 'discrediting': 1795, 'call': 1796, 'centre': 1797, 'telecom': 1798, 'engineer': 1799, 'infrastructure': 1800, 'examine': 1801, 'observation': 1802, 'leading': 1803, 'e': 1804, 'commerce': 1805, 'hong': 1806, 'kong': 1807, 'japan': 1808, 'korea': 1809, 'mrx': 1810, 'ecommerce': 1811, 'made': 1812, 'donation': 1813, 'through': 1814, 'panickbuyinguk': 1815, 'something': 1816, 'box': 1817, 'steal': 1818, 'perpetuate': 1819, 'clear': 1820, 'personal': 1821, 'send': 1822, 'mongolian': 1823, 'minfin': 1824, 'mn': 1825, 'loan': 1826, 'interest': 1827, 'postponed': 1828, 'rating': 1829, 'decreased': 1830, '12': 1831, 'bn': 1832, 'splice': 1833, 'san': 1834, 'francisco': 1835, 'regarding': 1836, 'slowdown': 1837, 'cpl': 1838, 'philadelphia': 1839, 'btw': 1840, 'trumppandemic': 1841, 'gopbetrayedamerica': 1842, 'trumpfailedamerica': 1843, 'bloody': 1844, 'crazy': 1845, 'stuck': 1846, 'confirmed': 1847, 'book': 1848, 'anywhere': 1849, 'starvation': 1850, 'lowest': 1851, 'display': 1852, 'building': 1853, 'outdoors': 1854, 'indoor': 1855, 'spaced': 1856, 'certainly': 1857, 'pose': 1858, 'opinion': 1859, 'europe': 1860, 'rest': 1861, 'doe': 1862, 'alive': 1863, 'issue': 1864, 'gt': 1865, 'denmark': 1866, 'waited': 1867, 'yesterday': 1868, 'curbside': 1869, 'booked': 1870, 'kid': 1871, 'joke': 1872, 'lorry': 1873, 'hr': 1874, 'search': 1875, 'trolley': 1876, 'damage': 1877, 'unemployed': 1878, '100': 1879, 'innocent': 1880, 'lost': 1881, 'negative': 1882, 'column': 1883, 'didn': 1884, 'immediate': 1885, 'markt': 1886, 'dow': 1887, 'jones': 1888, '6179': 1889, '21': 1890, '23': 1891, '390': 1892, 'near': 1893, 'mumbai': 1894, 'mumbailockdown': 1895, '11': 1896, 'asimanshidebut': 1897, 'coronainpakistan': 1898, 'blogging': 1899, 'bloggersrequired': 1900, 'filmtwitter': 1901, 'shopkeeper': 1902, 'immigrant': 1903, 'actor': 1904, 'teacher': 1905, 'celebrity': 1906, 'journalist': 1907, 'lefty': 1908, 'politician': 1909, 'moaning': 1910, 'sport': 1911, 'utility': 1912, 'preparing': 1913, 'rationing': 1914, 'clearly': 1915, 'aren': 1916, 'restocking': 1917, 'ocado': 1918, 'reconfiguring': 1919, 'nice': 1920, 'calm': 1921, 'chat': 1922, 'delighted': 1923, 'garden': 1924, 'entry': 1925, 'hse': 1926, 'gps': 1927, 'pharmacist': 1928, 'tesco': 1929, '00pm': 1930, '17': 1931, '13': 1932, 'image': 1933, 'pasta': 1934, 'noodle': 1935, 'cereal': 1936, 'tea': 1937, 'unpublished': 1938, 'beer': 1939, 'trash': 1940, 'batch': 1941, 'cat': 1942, 'blond': 1943, 'potato': 1944, 'panicshopping': 1945, 'panicbuyinguk': 1946, 'bread': 1947, 'staysafestayhome': 1948, 'irelandlockdown': 1949, 'insane': 1950, 'normally': 1951, '270': 1952, 'ridiculous': 1953, 'guelph': 1954, 'sundaythoughts': 1955, 'pricegouging': 1956, 'caroline': 1957, 'experience': 1958, 'reduction': 1959, 'rs15': 1960, 'liter': 1961, 'petroleum': 1962, 'approved': 1963, 'show': 1964, 'network': 1965, 'explosion': 1966, 'rocked': 1967, 'ferry': 1968, 'wirral': 1969, 'council': 1970, 'nosey': 1971, 'liverpool': 1972, 'littlewood': 1973, 'hollywood': 1974, '30pm': 1975, 'bbc1': 1976, 'play': 1977, 'main': 1978, 'iran': 1979, 'hey': 1980, 'wrong': 1981, 'heard': 1982, 'hi': 1983, 'fargo': 1984, 'committed': 1985, 'helping': 1986, 'hardship': 1987, 'trained': 1988, 'specialist': 1989, 'lending': 1990, 'small': 1991, 'deposit': 1992, 'pet': 1993, 'canceled': 1994, 'autoship': 1995, 'ignorant': 1996, 'sometimes': 1997, 'suck': 1998, 'petfoodshortages': 1999, 'silver': 2000, 'lining': 2001, 'kidding': 2002, 'brutal': 2003, 'swear': 2004, 'dumb': 2005, 'condom': 2006, 'breed': 2007, 'chloroquine': 2008, 'earthquake': 2009, 'dodging': 2010, 'outlet': 2011, 'upkaar': 2012, 'stn': 2013, 'assam': 2014, 'alongwith': 2015, 'download': 2016, 'bluetooth': 2017, 'tracker': 2018, 'app': 2019, 'join': 2020, 'android': 2021, 'io': 2022, 'exposed': 2023, 'capitalist': 2024, 'hypocrisy': 2025, 'toward': 2026, 'shutting': 2027, 'west': 2028, 'inundated': 2029, 'worry': 2030, 'narrative': 2031, 'growth': 2032, 'mattered': 2033, 'stopping': 2034, 'behavioural': 2035, 'portlaoise': 2036, 'latex': 2037, 'mad': 2038, 'brilliant': 2039, 'general': 2040, 'rowed': 2041, 'behind': 2042, 'effort': 2043, 'tackle': 2044, 'ncis': 2045, 'civilian': 2046, 'enforcement': 2047, 'external': 2048, 'noted': 2049, 'multiple': 2050, 'attempt': 2051, 'convenient': 2052, 'sit': 2053, 'arm': 2054, 'adoption': 2055, 'amazonsmile': 2056, 'choose': 2057, 'charity': 2058, 'portion': 2059, 'proceeds': 2060, 'smell': 2061, 'hoax': 2062, 'propaganda': 2063, 'throw': 2064, 'cage': 2065, 'smollett': 2066, 'dangerous': 2067, 'riding': 2068, 'tube': 2069, 'gp': 2070, 'surgery': 2071, 'expect': 2072, 'criminal': 2073, 'sunbather': 2074, 'cv19': 2075, 'special': 2076, 'pensioner': 2077, 'suggestion': 2078, 'quickly': 2079, 'worked': 2080, 'mother': 2081, 'rn': 2082, 'tb': 2083, 'unit': 2084, 'smart': 2085, 'stocking': 2086, 'set': 2087, 'blame': 2088, 'poor': 2089, 'agree': 2090, 'correction': 2091, 'torontorealestate': 2092, 'tore': 2093, 'torontohomes': 2094, 'toronto': 2095, 'ontario': 2096, 'sector': 2097, 'uncertainty': 2098, 'death': 2099, 'toll': 2100, 'zimbabwe': 2101, 'ignoring': 2102, 'packing': 2103, 'truck': 2104, 'vegetable': 2105, 'virologist': 2106, 'confirms': 2107, 'surface': 2108, '32': 2109, 'moment': 2110, 'define': 2111, 'lying': 2112, 'television': 2113, 'screen': 2114, 'half': 2115, 'beef': 2116, 'consumption': 2117, 'happening': 2118, 'restaurantmanagement': 2119, 'usda': 2120, '10m': 2121, 'fund': 2122, 'administered': 2123, '75k': 2124, 'ma': 2125, 'nonprofit': 2126, 'part': 2127, 'mabiz': 2128, 'release': 2129, 'completely': 2130, 'sold': 2131, 'skorea': 2132, 'netherlands': 2133, 'weed': 2134, 'singapore': 2135, 'germany': 2136, 'basically': 2137, 'cuz': 2138, 'sitting': 2139, 'park': 2140, 'bbqs': 2141, 'party': 2142, 'encountered': 2143, 'iga': 2144, 'montreal': 2145, 'quebec': 2146, 'clerk': 2147, 'whilst': 2148, 'own': 2149, 'leyton': 2150, 'leytonstone': 2151, 'dealing': 2152, 'restricted': 2153, 'vulnerable': 2154, 'circumstance': 2155, 'indeed': 2156, 'bamboo': 2157, 'fiber': 2158, 'ordered': 2159, 'borne': 2160, 'drug': 2161, 'administration': 2162, 'fda': 2163, 'evidence': 2164, 'transmitted': 2165, 'consumeraff': 2166, 'bollock': 2167, 'bulk': 2168, 'masse': 2169, 'accidental': 2170, 'sent': 2171, 'n95': 2172, 'reasonable': 2173, 'welfare': 2174, 'ngo': 2175, 'facemasks': 2176, 'stayhomestaysafe': 2177, 'meant': 2178, 'abundant': 2179, 'either': 2180, 'starve': 2181, 'temp': 2182, 'vacancy': 2183, 'night': 2184, '2am': 2185, 'sainsburys': 2186, 'sydenham': 2187, 'panicking': 2188, 'meanwhile': 2189, 'thailand': 2190, 'normal': 2191, 'silent': 2192, 'lazy': 2193, 'horror': 2194, 'costco': 2195, '16': 2196, 'panicshopped': 2197, 'item': 2198, 'ghettoheatmovement': 2199, 'okay': 2200, 'hickson': 2201, 'care': 2202, 'mamaghettoheat': 2203, 'scene': 2204, 'hunger': 2205, 'game': 2206, 'pm0miixwtp': 2207, 'o': 2208, 'assume': 2209, 'carrier': 2210, 'cough': 2211, 'sneeze': 2212, 'elbow': 2213, 'watching': 2214, 'press': 2215, 'conference': 2216, 'load': 2217, 'heading': 2218, 'ny': 2219, 'each': 2220, 'coast': 2221, 'problem': 2222, 'solved': 2223, 'guess': 2224, 'industry': 2225, 'retailing': 2226, 'marketing': 2227, 'weakening': 2228, 'major': 2229, 'commodity': 2230, 'masksforthepeople': 2231, 'most': 2232, 'population': 2233, 'targeted': 2234, 'atlanta': 2235, 'detroit': 2236, 'orleans': 2237, 'milwaukee': 2238, 'nadad': 2239, '100m': 2240, 'c19': 2241, 'suggest': 2242, 'paying': 2243, 'pharmaceutical': 2244, 'company': 2245, 'outrageous': 2246, 'winery': 2247, 'j': 2248, 'gallo': 2249, 'responder': 2250, 'officer': 2251, 'firefighter': 2252, 'gal': 2253, 'cassidyrae': 2254, 'medication': 2255, 'cancel': 2256, 'prepare': 2257, 'target': 2258, 'housewares': 2259, 'homeworld': 2260, 'predicted': 2261, 'somehow': 2262, 'film': 2263, 'except': 2264, 'bid': 2265, 'overcharging': 2266, 'capped': 2267, 'ply': 2268, 'surgical': 2269, 'respectively': 2270, 'jantacurfewchallenge': 2271, 'ban': 2272, 'sunbathing': 2273, 'socialising': 2274, 'bench': 2275, 'matt': 2276, 'hancock': 2277, 'marr': 2278, 'follow': 2279, 'pastry': 2280, 'pizza': 2281, 'base': 2282, 'four': 2283, 'fast': 2284, 'fun': 2285, 'drinklocal': 2286, 'consumerhabits': 2287, 'buyinghabits': 2288, 'mainoptmarketing': 2289, 'activist': 2290, 'filed': 2291, 'emotional': 2292, 'distress': 2293, 'lawsuit': 2294, 'fox': 2295, 'coverage': 2296, 'sought': 2297, 'replace': 2298, 'judge': 2299, 'overseeing': 2300, 'filing': 2301, 'crosspost': 2302, 'weirdstreamathon': 2303, 'raise': 2304, 'artist': 2305, 'deserved': 2306, 'conviviality': 2307, 'alonetogether': 2308, 'hollywoodjustfoundout': 2309, 'count': 2310, 'doesn': 2311, 'cape': 2312, 'worst': 2313, 'type': 2314, 'paedos': 2315, 'advent': 2316, 'reveals': 2317, 'flaw': 2318, 'frailty': 2319, 'cheap': 2320, 'transport': 2321, 'stopstockpiling': 2322, 'borisout': 2323, 'socialdistanacing': 2324, 'panicbuyers': 2325, 'harder': 2326, 'crowded': 2327, 'mentioned': 2328, 'lowly': 2329, 'ten': 2330, 'penny': 2331, 'shocked': 2332, 'true': 2333, 'battle': 2334, 'deaf': 2335, 'startling': 2336, 'abuja': 2337, 'deadly': 2338, 'boy': 2339, 'superchargechallenge': 2340, 'tale': 2341, 'rare': 2342, 'contains': 2343, '80vol': 2344, 'alcohol': 2345, '500': 2346, 'decrease': 2347, 'minor': 2348, 'ingredient': 2349, 'glycerine': 2350, 'h2o2': 2351, 'expense': 2352, 'asked': 2353, 'place': 2354, 'twitch': 2355, 'streaming': 2356, 'awhile': 2357, 'saving': 2358, 'staysafe': 2359, 'cornavirusoutbreak': 2360, 'twitchaffiliate': 2361, 'genuinely': 2362, 'british': 2363, 'prick': 2364, 'wellness': 2365, 'disinfectant': 2366, 'spray': 2367, 'cream': 2368, 'partner': 2369, 'code': 2370, 'discount': 2371, 'saturdayt': 2372, 'breaking': 2373, 'professor': 2374, 'stephen': 2375, 'powis': 2376, 'overnight': 2377, '170': 2378, 'signed': 2379, 'volunteer': 2380, '189': 2381, 'minute': 2382, 'yournhsneedsyou': 2383, 'street': 2384, 'riot': 2385, 'migrant': 2386, 'neutral': 2387, 'territory': 2388, 'spade': 2389, 'avoided': 2390, 'welp': 2391, 'besides': 2392, 'lab': 2393, 'using': 2394, 'proper': 2395, 'detect': 2396, 'super': 2397, 'conduct': 2398, 'shipment': 2399, 'strike': 2400, 'oatmeal': 2401, 'defense': 2402, 'bus': 2403, 'operate': 2404, 'remote': 2405, 'fluid': 2406, 'lady': 2407, 'asks': 2408, 'scared': 2409, 'repost': 2410, 'sea': 2411, 'spotted': 2412, 'noosaville': 2413, 'thanks': 2414, 'laugh': 2415, 'lisa': 2416, 'funny': 2417, 'noosa': 2418, 'sunshinecoast': 2419, 'prepayment': 2420, 'energy': 2421, 'meter': 2422, 'guidance': 2423, 'bailing': 2424, 'corruption': 2425, '101': 2426, 'rewarding': 2427, 'ceo': 2428, 'airline': 2429, 'cruise': 2430, 'hotel': 2431, 'fly': 2432, 'vacation': 2433, 'gopfascists': 2434, 'campaigning': 2435, 'keyworkers': 2436, 'decree': 2437, 'state': 2438, 'retailstrong': 2439, 'signing': 2440, 'pledge': 2441, 'foreigner': 2442, 'immediately': 2443, 'inform': 2444, 'guardia': 2445, 'di': 2446, 'finanza': 2447, 'notice': 2448, 'excessively': 2449, 'apparently': 2450, 'six': 2451, 'foot': 2452, 'hell': 2453, 'hanging': 2454, 'laughing': 2455, 'quarantinelife': 2456, 'stimuluspackage2020': 2457, '50m': 2458, 'civil': 2459, 'legal': 2460, 'aid': 2461, 'afford': 2462, 'funding': 2463, 'lsc': 2464, 'client': 2465, 'facing': 2466, 'eviction': 2467, 'violence': 2468, 'touch': 2469, 'transmit': 2470, 'inspiring': 2471, 'biologist': 2472, 'statistician': 2473, 'servant': 2474, 'medic': 2475, 'logistics': 2476, 'countless': 2477, 'success': 2478, 'planted': 2479, 'seed': 2480, 'omg': 2481, 'toiletrolls': 2482, 'toiletpapergate': 2483, 'selfisolation': 2484, 'selfsufficient': 2485, 'gardening': 2486, 'growingmyown': 2487, 'hiking': 2488, 'judged': 2489, 'harshly': 2490, 'isolation': 2491, 'seriously': 2492, 'consider': 2493, 'nutrient': 2494, 'protein': 2495, 'delivered': 2496, 'wish': 2497, 'included': 2498, 'bailout': 2499, 'sanitation': 2500, 'backbone': 2501, 'gopbailoutscam': 2502, 'epidemic': 2503, 'taught': 2504, 'non': 2505, 'banker': 2506, 'executive': 2507, 'warehouse': 2508, 'professional': 2509, 'jog': 2510, 'neighborhood': 2511, 'wuhan': 2512, 'inviting': 2513, 'mishra19': 2514, 'mum': 2515, 'tin': 2516, 'rice': 2517, 'kitchen': 2518, 'handwash': 2519, 'greed': 2520, 'praising': 2521, 'convid19uk': 2522, 'vintage': 2523, 'range': 2524, 'unique': 2525, 'single': 2526, 'income': 2527, 'smallbusiness': 2528, 'weareintrouble': 2529, 'etsy': 2530, 'came': 2531, 'patrolling': 2532, 'abused': 2533, 'bekind': 2534, 'milan': 2535, 'temperature': 2536, 'mandatory': 2537, 'speaker': 2538, 'remind': 2539, 'distance': 2540, 'shall': 2541, 'kiryu': 2542, 'sorry': 2543, 'fps': 2544, 'yakuzakiwami2': 2545, 'ryugagotoku': 2546, 'reusable': 2547, 'mealie': 2548, '18th': 2549, 'unity': 2550, 'society': 2551, 'lusaka': 2552, 'dctalkradio': 2553, 'visiting': 2554, 'schnucks': 2555, 'elaine': 2556, 'benes': 2557, 'cantspareasquare': 2558, 'asian': 2559, 'covered': 2560, 'socialismorbarbarism': 2561, 'cadchf': 2562, 'audchf': 2563, 'nzdchf': 2564, 'exist': 2565, 'dating': 2566, '1953': 2567, '66': 2568, 'trump2020': 2569, 'maga2020': 2570, 'kag': 2571, 'ausbiz': 2572, 'device': 2573, 'notified': 2574, 'vide': 2575, 'notification': 2576, 'dated': 2577, '11th': 2578, 'february': 2579, 'issued': 2580, 'ministry': 2581, 'governed': 2582, 'control': 2583, '2013': 2584, 'jump': 2585, 'nz': 2586, 'newzealand': 2587, 'synthesis': 2588, 'finding': 2589, 'recommendation': 2590, 'retweet': 2591, 'message': 2592, 'physician': 2593, 'solidarity': 2594, 'tireless': 2595, 'risking': 2596, 'overworked': 2597, 'unappreciated': 2598, 'helpless': 2599, 'essentialworkers': 2600, 'owe': 2601, 'gratitude': 2602, 'stocked': 2603, 'replenished': 2604, 'importantly': 2605, 'certain': 2606, 'associate': 2607, 'deserve': 2608, 'ton': 2609, 'oadby': 2610, 'asda': 2611, 'suspending': 2612, '24': 2613, 'closing': 2614, '10pm': 2615, 'meps': 2616, 'cap': 2617, 'contingency': 2618, 'eu': 2619, 'arrivalist': 2620, 'pattern': 2621, 'kpvi': 2622, 'stayhomesavelives': 2623, 'marketplace': 2624, '14': 2625, 'volume': 2626, '23rd': 2627, 'middle': 2628, 'aisle': 2629, 'actually': 2630, 'putting': 2631, 'divide': 2632, 'combined': 2633, 'sharply': 2634, 'quarter': 2635, 'investing': 2636, 'fair': 2637, 'thankfulthursday': 2638, 'turtle': 2639, 'woe': 2640, 'spiraling': 2641, 'rubber': 2642, 'chemical': 2643, 'crudeoil': 2644, 'crudeoilprice': 2645, 'lpg': 2646, 'ethylene': 2647, 'polymer': 2648, 'chemanalyst': 2649, 'chemicaprice': 2650, 'chemicaldatabase': 2651, 'surely': 2652, 'office': 2653, 'unused': 2654, 'redistributed': 2655, 'reopen': 2656, 'jingle': 2657, 'podcast': 2658, 'youtube': 2659, 'channel': 2660, 'ringtone': 2661, 'understand': 2662, 'scarce': 2663, 'cheaper': 2664, 'luxury': 2665, 'physical': 2666, 'greedy': 2667, 'p': 2668, 'nbn': 2669, 'cope': 2670, '31st': 2671, 'earliest': 2672, 'delivering': 2673, 'phone': 2674, 'elevator': 2675, 'button': 2676, 'pump': 2677, 'bottle': 2678, 'bottom': 2679, 'handbag': 2680, 'wrestlemania': 2681, 'sarika': 2682, 'contest': 2683, 'giveawayalert': 2684, 'puzzle': 2685, 'knew': 2686, 'genius': 2687, 'record': 2688, 'euro': 2689, '134': 2690, 'dare': 2691, 'apocolypse': 2692, 'crone': 2693, 'caledonia': 2694, 'concerned': 2695, 'scammed': 2696, 'scamsaction': 2697, 'temporarily': 2698, 'salon': 2699, 'shampoo': 2700, 'dragged': 2701, 'refusing': 2702, 'fightcovid19': 2703, 'ghana': 2704, 'ajrnews': 2705, 'once': 2706, 'northvancouver': 2707, 'management': 2708, 'availability': 2709, 'weather': 2710, 'storm': 2711, 'amway': 2712, 'spectrum': 2713, 'basket': 2714, 'benefit': 2715, 'starting': 2716, 'veggie': 2717, 'propping': 2718, 'nutrition': 2719, 'foodsupply': 2720, 'wheat': 2721, 'egg': 2722, 'grocerybills': 2723, '3naturaln': 2724, 'quietly': 2725, 'raging': 2726, 'head': 2727, 'lender': 2728, 'traditional': 2729, 'nonbank': 2730, 'player': 2731, 'sinking': 2732, 'further': 2733, 'beware': 2734, 'fraudulent': 2735, 'vaccine': 2736, 'treatment': 2737, 'evaluated': 2738, 'effectiveness': 2739, 'allowing': 2740, 'necessity': 2741, 'rip': 2742, 'disgraceful': 2743, 'vulnerability': 2744, 'outoforder': 2745, 'ebay': 2746, 'awful': 2747, 'road': 2748, 'rammed': 2749, 'seem': 2750, 'partying': 2751, 'room': 2752, 'jared': 2753, 'dad': 2754, 'kiss': 2755, 'royally': 2756, 'freaking': 2757, 'quaratinelife': 2758, 'destroy': 2759, 'useful': 2760, 'clearing': 2761, 'formaula': 2762, 'wuflu': 2763, '300th': 2764, 'minnesota': 2765, 'vermont': 2766, 'classified': 2767, 'personnel': 2768, 'brussels': 2769, 'belgium': 2770, '18': 2771, 'bruxelles': 2772, 'coronaoutbreak': 2773, 'togetheragainstcorona': 2774, 'preventing': 2775, 'absolute': 2776, 'selfishness': 2777, 'attack': 2778, 'president': 2779, 'packaged': 2780, 'monica': 2781, 'gellar': 2782, 'goingmental': 2783, 'usually': 2784, 'bit': 2785, 'sarcastic': 2786, 'prone': 2787, 'earnest': 2788, 'statement': 2789, 'immensely': 2790, 'proud': 2791, 'colleague': 2792, 'stepping': 2793, 'stayed': 2794, 'germaphobia': 2795, 'craziness': 2796, 'definitely': 2797, 'died': 2798, 'connecticut': 2799, 'florida': 2800, 'saturdaymorning': 2801, 'stayingalive': 2802, 'nogerms': 2803, 'supporting': 2804, 'recently': 2805, 'roundtable': 2806, 'scott': 2807, 'knaul': 2808, 'brings': 2809, 'discussion': 2810, 'tune': 2811, 'ccseries': 2812, 'canary': 2813, 'coal': 2814, 'severe': 2815, 'sink': 2816, 'remain': 2817, 'turbulence': 2818, 'boe': 2819, 'governor': 2820, 'andrew': 2821, 'holbrook': 2822, 'n': 2823, 'manchester': 2824, 'united': 2825, 'donated': 2826, 'result': 2827, 'mfm': 2828, 'heartland': 2829, 'usa': 2830, 'officially': 2831, 'pandey': 2832, 'controlling': 2833, 'costly': 2834, 'compared': 2835, 'town': 2836, 'village': 2837, 'far': 2838, 'induced': 2839, 'wife': 2840, 'inevitably': 2841, 'caring': 2842, 'herself': 2843, 'daughter': 2844, 'varying': 2845, 'degree': 2846, 'x': 2847, 'pub': 2848, 'heath': 2849, 'haywards': 2850, 'round': 2851, 'drink': 2852, 'supportlocalbusiness': 2853, 'robbing': 2854, 'york': 2855, 'manhattan': 2856, 'element': 2857, 'nearby': 2858, 'tried': 2859, 'gap': 2860, 'borisjohnson': 2861, 'nhsthankyou': 2862, 'nhsheroes': 2863, 'corvid19uk': 2864, 'joe': 2865, 'allen': 2866, 'bayhdole': 2867, 'bayh': 2868, 'dole': 2869, 'intended': 2870, 'dwindle': 2871, 'h1n1': 2872, 'sars': 2873, 'bird': 2874, 'hateful': 2875, 'telling': 2876, 'truth': 2877, 'irresponsible': 2878, 'lied': 2879, 'homeless': 2880, 'moved': 2881, 'onto': 2882, 'interview': 2883, 'gouging': 2884, 'harlem': 2885, 'olive': 2886, 'listed': 2887, 'chip': 2888, 'address': 2889, 'nation': 2890, 'committee': 2891, 'national': 2892, 'coordination': 2893, 'artificially': 2894, 'strongly': 2895, 'repress': 2896, 'prospect': 2897, 'volatile': 2898, 'mypov': 2899, 'chatter': 2900, 'background': 2901, 'lock': 2902, 'preppers': 2903, 'last': 2904, 'wks': 2905, 'peak': 2906, 'sarscov2': 2907, 'declaratory': 2908, 'ruling': 2909, 'qualifies': 2910, 'telephone': 2911, 'purpose': 2912, 'exception': 2913, 'stringent': 2914, 'consent': 2915, 'requirement': 2916, 'fixed': 2917, 'black': 2918, 'excessive': 2919, 'charge': 2920, 'incident': 2921, 'kindly': 2922, 'ep': 2923, 'honesty': 2924, 'positivity': 2925, 'soldout': 2926, 'aspect': 2927, 'spot': 2928, 'inthistogether': 2929, 'predict': 2930, 'church': 2931, 'suffer': 2932, 'unless': 2933, 'decide': 2934, 'virtual': 2935, 'psychiatrist': 2936, 'wanting': 2937, 'entertainment': 2938, 'dropping': 2939, 'story': 2940, 'adventure': 2941, 'writingcommnunity': 2942, 'forward': 2943, '10am': 2944, '2pm': 2945, 'bacon': 2946, 'butter': 2947, 'again': 2948, 'coronapandemic': 2949, 'planning': 2950, 'stayinformed': 2951, 'stayconnected': 2952, 'nailba2020': 2953, 'stopped': 2954, 'sliced': 2955, 'lunchmeat': 2956, '49': 2957, 'lb': 2958, 'bge': 2959, 'smokedturkey': 2960, 'ohiopreparedmeforthis': 2961, 'fridge': 2962, 'torture': 2963, 'survivor': 2964, 'fuligdi': 2965, 'terrified': 2966, 'medicine': 2967, 'djia': 2968, 'mild': 2969, 'negativity': 2970, 'trader': 2971, 'process': 2972, 'crosscurrent': 2973, 'initial': 2974, 'upward': 2975, 'spike': 2976, 'surge': 2977, 'slowly': 2978, 'grappling': 2979, 'bill': 2980, 'dont': 2981, 'panicing': 2982, 'welcome': 2983, 'melanie': 2984, 'rotating': 2985, 'selection': 2986, 'caf': 2987, 'operation': 2988, 'however': 2989, 'pre': 2990, 'cooked': 2991, 'considered': 2992, 'similar': 2993, 'interesting': 2994, 'con': 2995, 'shoukd': 2996, 'housearrest': 2997, 'freezer': 2998, 'cauliflower': 2999, 'walnut': 3000, 'taco': 3001, 'amidst': 3002, 'accelerating': 3003, 'surrounding': 3004, 'federal': 3005, 'ftc': 3006, 'refunding': 3007, 'invention': 3008, 'promotion': 3009, 'holiday': 3010, 'friday': 3011, 'sleep': 3012, 'bath': 3013, 'estimated': 3014, 'engagement': 3015, 'longer': 3016, 'benzene': 3017, 'asia': 3018, 'supported': 3019, 'solid': 3020, 'clouded': 3021, 'weak': 3022, 'icis': 3023, 'intermediate': 3024, 'solvent': 3025, 'detergent': 3026, 'lockdowneffect': 3027, 'lockdowndiaries': 3028, 'lockdownindia': 3029, 'lockdowndelhi': 3030, 'lockedindelhi': 3031, 'everyday': 3032, 'daunting': 3033, 'considerate': 3034, 'picking': 3035, 'sight': 3036, 'sign': 3037, 'petition': 3038, 'peoria': 3039, 'switching': 3040, 'example': 3041, 'ramped': 3042, 'reprogrammed': 3043, 'profiting': 3044, 'deputy': 3045, 'potential': 3046, 'oconee': 3047, 'licking': 3048, 'finger': 3049, 'section': 3050, 'decent': 3051, 'brand': 3052, 'john': 3053, 'lewis': 3054, 'debenhams': 3055, 'hmv': 3056, 'chandler': 3057, 'arizona': 3058, 'helpful': 3059, 'detailed': 3060, 'pickup': 3061, 'option': 3062, 'equinor': 3063, 'cfo': 3064, 'jesus': 3065, 'h': 3066, 'christ': 3067, 'bat': 3068, 'god': 3069, 'batsoup': 3070, 'batburger': 3071, 'batstew': 3072, 'batmeatloaf': 3073, 'batsandwich': 3074, 'batandchips': 3075, 'deepfriedbat': 3076, 'purchase': 3077, '3rd': 3078, 'largest': 3079, 'position': 3080, 'hammered': 3081, 'saudia': 3082, 'arabia': 3083, 'plu': 3084, 'christmas': 3085, 'turned': 3086, 'lay': 3087, 'definately': 3088, 'imo': 3089, 'argument': 3090, 'contaminated': 3091, 'remove': 3092, 'smoke': 3093, 'eith': 3094, 'individual': 3095, 'organization': 3096, 'denver': 3097, 'rescue': 3098, 'rosengren': 3099, 'impacting': 3100, 'lane': 3101, 'notanymore': 3102, 'kroger': 3103, 'hire': 3104, 'toiletpaperpanic': 3105, 'econtwitter': 3106, 'economics': 3107, 'economicresponse': 3108, 'televangelist': 3109, 'jim': 3110, 'bakker': 3111, 'effective': 3112, 'demanding': 3113, 'prove': 3114, 'posted': 3115, 'locally': 3116, 'afraid': 3117, 'afraidinslee': 3118, 'promotes': 3119, 'calming': 3120, 'hysteria': 3121, 'fakenews': 3122, 'inslee': 3123, 'multiplies': 3124, 'encourages': 3125, 'awakening': 3126, 'qanon': 3127, 'mall': 3128, 'grab': 3129, 'refused': 3130, 'shower': 3131, 'saferathome': 3132, 'bidet': 3133, 'coping': 3134, 'gym': 3135, 'meditation': 3136, 'class': 3137, 'accounting': 3138, 'paulraftery': 3139, 'projectsrh': 3140, 'multinationalinvestment': 3141, 'soveringrisk': 3142, 'insurablerisk': 3143, 'financialreporting': 3144, 'creditrating': 3145, 'seek': 3146, 'assistant': 3147, 'outrage': 3148, 'describing': 3149, 'boomer': 3150, 'remover': 3151, 'unjustified': 3152, 'ordinary': 3153, 'passenger': 3154, 'immigration': 3155, 'custom': 3156, 'traveler': 3157, 'screening': 3158, 'protocol': 3159, 'literacy': 3160, '2u': 3161, 'iplayer': 3162, 'tool': 3163, 'teach': 3164, 'wonderful': 3165, 'friendly': 3166, 'shelve': 3167, 'praised': 3168, 'note': 3169, 'newark': 3170, 'nj': 3171, 'necessary': 3172, 'newjersey': 3173, 'coronacommunity': 3174, 'hustler': 3175, 'scames': 3176, 'encourage': 3177, 'snake': 3178, 'falsely': 3179, 'touting': 3180, 'file': 3181, 'saudiarabia': 3182, 'hike': 3183, 'sha': 3184, 'riyadh': 3185, 'pandaapp': 3186, 'pakistanunitedagainstcorona': 3187, 'attitude': 3188, 'towards': 3189, 'thinking': 3190, 'optimism': 3191, 'overall': 3192, '48': 3193, 'staggering': 3194, 'evading': 3195, 'harm': 3196, 'stayhomesaveli': 3197, 'curve': 3198, 'roof': 3199, 'mental': 3200, 'handsanitizer': 3201, 'pivoted': 3202, 'spirit': 3203, 'ttb': 3204, 'guideline': 3205, 'coldchain': 3206, 'magnitude': 3207, 'shining': 3208, 'bright': 3209, 'danielle': 3210, 'dimartino': 3211, 'booth': 3212, 'ex': 3213, 'reserve': 3214, 'dallas': 3215, 'author': 3216, 'sits': 3217, 'pipeline': 3218, 'shutdown': 3219, '26': 3220, '51': 3221, 'anti': 3222, 'protest': 3223, 'trudeau': 3224, 'tide': 3225, 'employed': 3226, 'nov2019': 3227, 'easter': 3228, 'weekend': 3229, 'dedication': 3230, 'handy': 3231, 'expediting': 3232, 'reducing': 3233, 'eliminating': 3234, 'providing': 3235, 'residency': 3236, 'successful': 3237, 'applicant': 3238, 'worrying': 3239, 'boyfriend': 3240, 'lalo': 3241, 'na': 3242, 'ngayon': 3243, 'sa': 3244, 'taytay': 3245, 'n95mask': 3246, 'healthcareworkers': 3247, 'procedure': 3248, 'getmeppe': 3249, 'getusppe': 3250, 'deal': 3251, 'followed': 3252, 'later': 3253, '30': 3254, 'sheeple': 3255, 'metre': 3256, 'pandemia': 3257, 'quedateencasa': 3258, 'qu': 3259, 'dateencasa': 3260, 'yomequedoencasa': 3261, 'pandemiacoronavirus': 3262, 'santodomingo': 3263, 'dominicanrepublic': 3264, 'riddle': 3265, 'creates': 3266, 'suspend': 3267, 'thereby': 3268, 'forcing': 3269, 'healthy': 3270, 'planned': 3271, 'surpass': 3272, 'mugged': 3273, 'grabbed': 3274, 'ran': 3275, 'lockdownuk': 3276, 'value': 3277, 'belittle': 3278, 'bin': 3279, 'bumping': 3280, 'generally': 3281, 'damned': 3282, 'bare': 3283, 'afghanistan': 3284, 'distributing': 3285, 'woman': 3286, 'displaced': 3287, 'camp': 3288, 'kabul': 3289, 'speed': 3290, 'segment': 3291, 'chilliwack': 3292, 'daventry': 3293, 'redeployed': 3294, 'overwhelmed': 3295, 'shitpocalypse': 3296, 'log': 3297, 'visited': 3298, 'regular': 3299, 'scheduled': 3300, 'frequency': 3301, 'mofos': 3302, 'twinkie': 3303, 'survival': 3304, 'woody': 3305, 'harelson': 3306, 'character': 3307, 'tallahassee': 3308, 'movie': 3309, 'zombieland': 3310, 'emptyshelves': 3311, 'biocidal': 3312, 'regulation': 3313, 'suitable': 3314, 'hygiene': 3315, 'processing': 3316, 'environment': 3317, 'catering': 3318, 'receive': 3319, 'communication': 3320, 'grant': 3321, 'exchange': 3322, 'fee': 3323, 'respond': 3324, 'carbon': 3325, 'flagship': 3326, 'slump': 3327, 'european': 3328, 'challenging': 3329, 'massive': 3330, 'ordering': 3331, 'lp': 3332, 'cd': 3333, 'independently': 3334, 'owned': 3335, 'covidiot': 3336, 'noun': 3337, 'vid': 3338, 'ee': 3339, 'ut': 3340, 'as': 3341, 'tipper': 3342, 'gigeconomy': 3343, 'quaratineandchill': 3344, 'postmates': 3345, 'wouldn': 3346, 'functional': 3347, 'supervisor': 3348, 'wh': 3349, 'required': 3350, 'irradiate': 3351, 'killing': 3352, 'ahead': 3353, 'view': 3354, 'slipped': 3355, 'side': 3356, 'crowd': 3357, 'create': 3358, 'internet': 3359, 'fulfilled': 3360, 'fcc': 3361, 'connected': 3362, 'america': 3363, 'drag': 3364, 'modernize': 3365, 'concept': 3366, 'introduced': 3367, 'urgency': 3368, 'possibly': 3369, 'goal': 3370, 'hate': 3371, 'whatsale': 3372, 'viewing': 3373, 'bst': 3374, 'fuckwits': 3375, 'complaining': 3376, 'lawsofeconomics': 3377, 'supplyanddemand': 3378, 'shortened': 3379, 'course': 3380, 'hole': 3381, 'hitting': 3382, 'observe': 3383, 'simulator': 3384, '83': 3385, 'healthyeating': 3386, 'comforteating': 3387, 'globaldata': 3388, 'debut': 3389, 'restocker': 3390, 'appearing': 3391, 'keephustling': 3392, 'keeplaughing': 3393, 'inflation': 3394, 'detention': 3395, 'dead': 3396, 'pakistan': 3397, 'kar': 3398, 'poop': 3399, 'danny': 3400, 'forevah': 3401, 'evah': 3402, 'twin': 3403, 'gave': 3404, 'forbid': 3405, 'gear': 3406, 'stopandshopdobetter': 3407, 'thankyo': 3408, 'sun': 3409, 'k': 3410, 'penetration': 3411, 'panel': 3412, 'brick': 3413, 'mortar': 3414, 'switch': 3415, 'fucker': 3416, 'embarrassing': 3417, 'charitable': 3418, 'thoughtful': 3419, 'generous': 3420, 'suppliesfor': 3421, 'corporate': 3422, 'generation': 3423, 'mba': 3424, 'badged': 3425, 'consultant': 3426, 'private': 3427, 'equiteers': 3428, 'undermining': 3429, 'resilience': 3430, 'grabbing': 3431, 'ramping': 3432, 'dobetter': 3433, 'yvr': 3434, 'disgusting': 3435, 'yyc': 3436, 'canonforcommunity': 3437, 'creator': 3438, 'sheikhhasina': 3439, 'bangladesh': 3440, 'urged': 3441, 'prison': 3442, 'cuomo': 3443, 'pledged': 3444, '35k': 3445, 'coughed': 3446, 'twisted': 3447, 'prank': 3448, 'analytics': 3449, 'damaging': 3450, 'electronics': 3451, 'semiconductor': 3452, 'globally': 3453, 'wholesaler': 3454, 'diy': 3455, 'diymask': 3456, 'staysafeathome': 3457, 'facecover': 3458, 'organized': 3459, 'stayorganized': 3460, 'masks4all': 3461, 'laprotects': 3462, 'maskmabuti': 3463, 'user': 3464, 'fit': 3465, 'supermarketsweep': 3466, 'mothersday2020': 3467, 'account': 3468, 'emptying': 3469, 'paint': 3470, 'bleak': 3471, 'beyond': 3472, 'sensational': 3473, 'pull': 3474, 'becomes': 3475, 'norm': 3476, 'newhampshire': 3477, 'shoutout': 3478, 'variable': 3479, 'covid19': 3480, 'greatly': 3481, 'banish': 3482, 'wave': 3483, 'banishthebeast': 3484, 'coupon': 3485, 'added': 3486, 'emptive': 3487, 'eh': 3488, 'dollywood': 3489, 'thesmokies': 3490, 'timeline': 3491, 'eventual': 3492, 'indicator': 3493, 'improvement': 3494, 'tuned': 3495, 'shankar': 3496, 'stranded': 3497, 'evicted': 3498, 'accommodation': 3499, 'rescued': 3500, 'obvious': 3501, 'eldon': 3502, 'kinkora': 3503, 'morell': 3504, 'beat': 3505, 'queuing': 3506, 'coronavtj': 3507, 'regained': 3508, 'strength': 3509, 'lummi': 3510, 'mothersday': 3511, 'unable': 3512, 'pushed': 3513, '0': 3514, 'east': 3515, 'exporter': 3516, 'plunging': 3517, 'glut': 3518, 'imfblog': 3519, 'significantly': 3520, 'auto': 3521, 'premium': 3522, 'reflect': 3523, 'spark': 3524, 'zealand': 3525, 'mon': 3526, '60': 3527, 'removing': 3528, 'overage': 3529, 'broadband': 3530, 'applies': 3531, 'hated': 3532, 'clarify': 3533, 'soul': 3534, 'editor': 3535, 'recycling': 3536, 'tudball': 3537, 'virgin': 3538, 'rpet': 3539, 'arent': 3540, 'sex': 3541, 'toy': 3542, 'adulttoymegastore': 3543, 'lubricant': 3544, 'vibrator': 3545, 'battery': 3546, 'requires': 3547, 'location': 3548, 'poi': 3549, 'mapping': 3550, 'rover': 3551, 'velar': 3552, 'replacement': 3553, 'engine': 3554, 'unbeatable': 3555, 'rangerover': 3556, 'uklockdownnow': 3557, 'downturn': 3558, 'nature': 3559, 'unlikely': 3560, 'negotiation': 3561, 'contract': 3562, '200330': 3563, 'flight': 3564, 'club': 3565, 'wechat': 3566, 'talked': 3567, 'sneaker': 3568, 'resell': 3569, 'dropped': 3570, 'rapidly': 3571, 'jumped': 3572, 'settled': 3573, 'dinner': 3574, 'hungry': 3575, 'humane': 3576, 'hsec': 3577, 'mission': 3578, 'freeze': 3579, 'rent': 3580, 'offs': 3581, 'qualify': 3582, 'un': 3583, 'employment': 3584, 'direct': 3585, 'japanese': 3586, 'robson': 3587, 'downtown': 3588, 'vancouver': 3589, 'green': 3590, 'tape': 3591, 'marking': 3592, 'reaction': 3593, 'survivalist': 3594, 'bent': 3595, 'asshole': 3596, 'guide': 3597, 'examines': 3598, 'handling': 3599, 'disclose': 3600, 'nationwide': 3601, 'surprised': 3602, 'yelled': 3603, 'shouting': 3604, 'yell': 3605, 'hcw': 3606, 'dy': 3607, 'orphaned': 3608, 'prefer': 3609, 'nobody': 3610, 'rather': 3611, 'contamination': 3612, 'advised': 3613, '7th': 3614, 'muzak': 3615, 'awareness': 3616, 'amma': 3617, 'unavagam': 3618, 'ramanathapuram': 3619, 'coimbatore': 3620, 'ammaunavagam': 3621, 'fightagainstcoronavirus': 3622, 'anaheim': 3623, 'california': 3624, 'boycott': 3625, '1216': 3626, 'magnolia': 3627, 'ave': 3628, 'ca': 3629, '92804': 3630, '714': 3631, '229': 3632, '0618': 3633, 'pricegougers': 3634, 'totally': 3635, 'depends': 3636, 'junk': 3637, 'prevention': 3638, 'method': 3639, 'govindia': 3640, 'indiafightscorona': 3641, 'frantic': 3642, 'scramble': 3643, 'ventilator': 3644, 'soldier': 3645, 'perfumer': 3646, 'called': 3647, 'retirement': 3648, 'moscowmitch': 3649, 'bailouts': 3650, 'fat': 3651, 'tz': 3652, 'tanzania': 3653, 'lower': 3654, 'bundle': 3655, 'bearable': 3656, 'isolated': 3657, 'hacker': 3658, 'impersonate': 3659, 'insurancefraud': 3660, 'healthcarefraud': 3661, 'threshold': 3662, 'identified': 3663, 'evolve': 3664, 'alarming': 3665, 'informative': 3666, 'particle': 3667, 'air': 3668, 'greeted': 3669, 'locked': 3670, 'reached': 3671, 'capacity': 3672, 'bradpaisley': 3673, 'st': 3674, 'louis': 3675, 'spite': 3676, 'albeit': 3677, 'unabated': 3678, 'agriculture': 3679, 'thoko': 3680, 'didiza': 3681, 'reassurance': 3682, 'democrat': 3683, 'blocking': 3684, 'assistance': 3685, 'crime': 3686, 'unrest': 3687, 'fyi': 3688, 'macon': 3689, 'bibb': 3690, 'cheney': 3691, 'brother': 3692, '478': 3693, '250': 3694, '3699': 3695, '352': 3696, '291': 3697, '7800': 3698, 'prescription': 3699, 'rx': 3700, 'sunday': 3701, 'ireland': 3702, 'prohibits': 3703, 'establishment': 3704, 'dispenser': 3705, 'politely': 3706, 'picnic': 3707, 'ignore': 3708, 'reverend': 3709, 'hosting': 3710, 'dance': 3711, 'rave': 3712, 'farming': 3713, 'wedding': 3714, 'dress': 3715, 'drinking': 3716, 'wine': 3717, 'inflatable': 3718, 'unicorn': 3719, 'costume': 3720, 'kiwi': 3721, 'smiling': 3722, 'defer': 3723, 'wall': 3724, '164': 3725, 'strain': 3726, 'profitability': 3727, 'nassau': 3728, 'reassure': 3729, 'countryman': 3730, 'manufacturing': 3731, 'respreators': 3732, 'clothing': 3733, 'shield': 3734, 'glass': 3735, 'auspol': 3736, 'ausgov': 3737, 'grows': 3738, 'hazard': 3739, 'tiktok': 3740, 'prompted': 3741, 'cooking': 3742, 'eating': 3743, 'accessing': 3744, 'nutritious': 3745, 'promote': 3746, 'property': 3747, 'london': 3748, 'kentucky': 3749, '99': 3750, 'gallon': 3751, 'western': 3752, 'phase': 3753, 'empathy': 3754, 'emphasizing': 3755, 'recovery': 3756, 'bounce': 3757, 'festival': 3758, 'dbrs': 3759, 'morningstar': 3760, 'downgraded': 3761, 'province': 3762, 'alberta': 3763, 'sam': 3764, 'sends': 3765, 'knowing': 3766, 'cu': 3767, 'youtuber': 3768, 'kaplamino': 3769, 'known': 3770, 'heathrobinson': 3771, 'rubegoldberg': 3772, 'contraption': 3773, 'dispensing': 3774, 'machine': 3775, 'burning': 3776, 'spring': 3777, 'housing': 3778, 'slower': 3779, 'pause': 3780, 'rabbit': 3781, 'distilling': 3782, 'led': 3783, 'paradox': 3784, 'upended': 3785, 'hum': 3786, 'along': 3787, 'dose': 3788, 'denial': 3789, 'consequence': 3790, 'sickness': 3791, 'stood': 3792, 'humor': 3793, 'stoodupjohn': 3794, 'smile': 3795, 'comedy': 3796, 'coffee': 3797, 'comic': 3798, 'merchandising': 3799, 'holding': 3800, 'shouldering': 3801, 'citizenship': 3802, '1500': 3803, 'ethiopia': 3804, 'condition': 3805, 'threat': 3806, 'southernil': 3807, 'carbondale': 3808, 'littleegypt': 3809, 'southernillinois': 3810, 'illinoislockdown': 3811, 'cnn': 3812, 'legit': 3813, 'package': 3814, 'transit': 3815, 'dreading': 3816, 'shelterinplace': 3817, 'considering': 3818, 'revised': 3819, 'suite': 3820, 'advertising': 3821, 'interrupted': 3822, 'cent': 3823, 'complain': 3824, 'yourselves': 3825, 'inflicted': 3826, 'tweeting': 3827, 'ruined': 3828, 'abusing': 3829, 'hadn': 3830, 'stupid': 3831, 'washing': 3832, 'rajender': 3833, 'coronalockdown': 3834, 'shud': 3835, 'augment': 3836, 'ambulance': 3837, 'telangana': 3838, '108': 3839, 'unreachable': 3840, 'hitch': 3841, 'ride': 3842, 'downlo': 3843, 'facebook': 3844, 'letting': 3845, 'washington': 3846, 'league': 3847, 'transparency': 3848, 'ethic': 3849, 'accuses': 3850, 'washlite': 3851, 'violating': 3852, 'privacy': 3853, 'margin': 3854, 'sterile': 3855, 'maximum': 3856, 'emirate': 3857, 'decontaminates': 3858, 'bruno': 3859, 'lina': 3860, 'answered': 3861, 'transfered': 3862, 'respiration': 3863, 'dear': 3864, 'sir': 3865, 'direction': 3866, 'voted': 3867, 'exploiting': 3868, 'celebrate': 3869, 'relaunch': 3870, 'sweet': 3871, 'bakery': 3872, 'damper': 3873, 'commend': 3874, 'outstanding': 3875, 'dr': 3876, 'hubert': 3877, 'minnis': 3878, 'bahamian': 3879, 'sucking': 3880, 'cock': 3881, 'ercot': 3882, 'manages': 3883, 'flow': 3884, 'electric': 3885, 'power': 3886, 'represents': 3887, 'plastic': 3888, 'reuse': 3889, 'ariadni': 3890, 'workplace': 3891, 'soared': 3892, 'predominantly': 3893, 'pair': 3894, 'isn': 3895, 'sanitary': 3896, 'tear': 3897, 'project': 3898, 'delay': 3899, 'cancellation': 3900, 'firm': 3901, 'commercial': 3902, 'dwindles': 3903, 'searching': 3904, 'differently': 3905, 'connection': 3906, 'adjusting': 3907, 'adult': 3908, 'fault': 3909, 'aged': 3910, 'uv': 3911, 'wand': 3912, 'handheld': 3913, 'ultra': 3914, 'violet': 3915, 'bacteria': 3916, 'germ': 3917, 'sterilizer': 3918, 'asos': 3919, 'plt': 3920, 'excuse': 3921, 'crappy': 3922, 'lunchboxes': 3923, 'deferral': 3924, 'collection': 3925, 'program': 3926, 'blend': 3927, 'human': 3928, '900': 3929, 'imconfusedasf': 3930, 'wherecanigo': 3931, 'californialockdown': 3932, 'assisting': 3933, 'govts': 3934, 'sourced': 3935, 'mil': 3936, 'microsoft': 3937, 'onmsft': 3938, 'hervey': 3939, 'replaced': 3940, 'toiletry': 3941, 'isle': 3942, 'filled': 3943, 'brim': 3944, '7news': 3945, 'abou': 3946, 'tq': 3947, 'dmk': 3948, 'lockdownnz': 3949, 'analysis': 3950, 'steel': 3951, 'mill': 3952, 'purchasing': 3953, 'grade': 3954, 'fine': 3955, 'sintering': 3956, 'pelletizing': 3957, 'shifting': 3958, 'lump': 3959, 'pellet': 3960, 'ironore': 3961, 'follows': 3962, 'wrecked': 3963, 'peace': 3964, 'frenzy': 3965, 'paramedic': 3966, '19uk': 3967, 'hc': 3968, 'keralahighcourt': 3969, 'chinavirus': 3970, 'segovia': 3971, 'tokyo': 3972, 'reuters': 3973, 'third': 3974, 'session': 3975, 'darkened': 3976, 'triggered': 3977, 'ec': 3978, 'signal': 3979, 'sachet': 3980, 'ministryofwatergh': 3981, 'ministryofinfomation': 3982, 'ghanahealthservice': 3983, 'basic': 3984, 'nappy': 3985, 'materialising': 3986, 'disorder': 3987, 'configure': 3988, 'galen': 3989, 'weston': 3990, 'loblaw': 3991, 'sdm': 3992, 'forthecustomer': 3993, 'la': 3994, 'vega': 3995, 'lingering': 3996, 'lasvegas': 3997, 'recordnews': 3998, 'college': 3999, 'mail': 4000, 'shopoholic': 4001, 'intervention': 4002, 'entered': 4003, 'destruction': 4004, 'retailnews': 4005, 'brickandmortar': 4006, 'nestlequick': 4007, 'coca': 4008, 'cola': 4009, 'acquired': 4010, 'fewer': 4011, 'alerting': 4012, 'document': 4013, 'existed': 4014, 'uncharted': 4015, 'imposter': 4016, 'captain': 4017, '2m': 4018, 'hockeyfamily': 4019, 'picture': 4020, '4yrs': 4021, 'jamming': 4022, 'checkout': 4023, 'matter': 4024, 'rotten': 4025, 'tomato': 4026, 'soup': 4027, 'screwed': 4028, 'pursuit': 4029, 'university': 4030, 'quarantinediaries': 4031, 'perfect': 4032, 'journaling': 4033, 'quarantineactivities': 4034, 'quarantinebirthday': 4035, 'masks4allchallenge': 4036, 'amwriting': 4037, 'eastersunday': 4038, 'britain': 4039, 'arrested': 4040, 'convicted': 4041, 'fined': 4042, 'failing': 4043, 'identity': 4044, 'comply': 4045, 'surprisingly': 4046, 'standing': 4047, 'announcing': 4048, 'specific': 4049, 'denied': 4050, 'bunch': 4051, 'arsehole': 4052, 'shout': 4053, 'halting': 4054, 'biofuel': 4055, 'plant': 4056, 'carers': 4057, 'keeper': 4058, 'fire': 4059, 'greatbritain': 4060, 'wanted': 4061, 'existing': 4062, 'matchstick': 4063, 'madworld': 4064, 'dip': 4065, 'earned': 4066, 'ripple': 4067, 'foodcupboards': 4068, 'swan': 4069, 'inevitable': 4070, 'rethinking': 4071, 'ive': 4072, 'kansa': 4073, 'dan': 4074, 'brien': 4075, 'updated': 4076, 'disclosure': 4077, 'senator': 4078, 'richard': 4079, 'burr': 4080, 'kelly': 4081, 'loefner': 4082, 'dianne': 4083, 'feinstein': 4084, 'ron': 4085, 'inhofe': 4086, 'tracking': 4087, 'marketer': 4088, 'commentary': 4089, 'nate': 4090, 'donnay': 4091, 'intl': 4092, 'fcstone': 4093, 'inc': 4094, 'fcm': 4095, 'division': 4096, 'quoted': 4097, 'oatt': 4098, 'center': 4099, 'provided': 4100, 'practical': 4101, 'meenal': 4102, 'sharma': 4103, 'jagtap': 4104, 'pramod': 4105, 'kumar': 4106, 'nayak': 4107, 'attended': 4108, 'webinars': 4109, 'organised': 4110, 'consulting': 4111, 'topic': 4112, 'fashion': 4113, 'mckinsey': 4114, 'gauge': 4115, 'expectation': 4116, 'survey': 4117, 'collected': 4118, 'easterbasket': 4119, 'microban': 4120, 'sprayed': 4121, 'constant': 4122, 'postcovidworld': 4123, 'newnormal': 4124, 'campaignspot': 4125, 'directly': 4126, 'paranoia': 4127, 'rumour': 4128, 'generating': 4129, 'faith': 4130, 'among': 4131, 'baseball': 4132, 'struck': 4133, 'row': 4134, 'chinesevirus': 4135, 'privilege': 4136, 'evening': 4137, 'encounter': 4138, 'dilemma': 4139, 'felt': 4140, 'breathe': 4141, 'freeverse': 4142, 'poem': 4143, 'panicattack': 4144, 'poongothai': 4145, 'aladi': 4146, 'aruna': 4147, 'grain': 4148, 'enormous': 4149, 'released': 4150, 'kg': 4151, 'cov': 4152, 'begin': 4153, 'bridge': 4154, 'wasted': 4155, 'billion': 4156, 'poverty': 4157, 'oxfam': 4158, 'waste': 4159, 'grocer': 4160, 'sheer': 4161, 'traffic': 4162, 'rural': 4163, 'northern': 4164, 'hunting': 4165, 'fishing': 4166, 'ab': 4167, 'cdnpoli': 4168, 'gurney': 4169, 'girlscoutcookies': 4170, 'woah': 4171, 'ending': 4172, 'collective': 4173, 'finland': 4174, 'certified': 4175, 'ffp2': 4176, 'expecting': 4177, 'deceived': 4178, 'era': 4179, 'hankering': 4180, 'sm': 4181, 'hypermarket': 4182, 'cubao': 4183, 'headed': 4184, 'localshops': 4185, 'exploit': 4186, 'illegal': 4187, '0203738600': 4188, 'danish': 4189, 'incompetent': 4190, 'dk': 4191, 'socdem': 4192, 'kyiv': 4193, 'ukraine': 4194, 'disinfect': 4195, 'billa': 4196, 'welldone': 4197, 'perhaps': 4198, 'valley': 4199, 'arroyo': 4200, 'crossing': 4201, 'receiving': 4202, 'visitor': 4203, 'sadly': 4204, 'ketchup': 4205, 'slowthespread': 4206, 'robocalls': 4207, 'scheme': 4208, 'annoying': 4209, 'unwanted': 4210, 'hang': 4211, 'lupe': 4212, 'supplemental': 4213, 'alternative': 4214, 'overturning': 4215, 'prescribing': 4216, 'gluten': 4217, 'karma': 4218, 'none': 4219, 'posting': 4220, '70': 4221, 'curfew': 4222, 'rooah': 4223, 'sopakco': 4224, 'mre': 4225, 'ration': 4226, 'letsfightcorona': 4227, 'ignite': 4228, 'artificial': 4229, 'scarcity': 4230, 'ultimately': 4231, 'insurer': 4232, 'substantial': 4233, 'recognize': 4234, 'scriptco': 4235, 'wholesale': 4236, '10k': 4237, 'taxi': 4238, 'del': 4239, 'gather': 4240, 'justify': 4241, 'armas': 4242, 'amazon': 4243, 'pricing': 4244, 'stress': 4245, 'triggering': 4246, 'heck': 4247, 'hearing': 4248, 'apart': 4249, 'elsewhere': 4250, 'thro': 4251, 'escalate': 4252, 'digest': 4253, '22': 4254, 'bogus': 4255, 'snopes': 4256, 'lupus': 4257, 'arthritis': 4258, 'hyped': 4259, 'chiropractor': 4260, 'naturopath': 4261, 'plz': 4262, 'decimated': 4263, 'inflated': 4264, 'tax': 4265, 'blow': 4266, 'keg': 4267, 'packed': 4268, 'gunpowder': 4269, 'mainstream': 4270, 'republican': 4271, 'suggesting': 4272, 'sacrificed': 4273, 'gop': 4274, 'notdying4wallstreet': 4275, 'globe': 4276, 'checklist': 4277, 'cover': 4278, 'powerful': 4279, 'harmful': 4280, 'nsw': 4281, 'stepped': 4282, 'ltr': 4283, 'dettol': 4284, 'kanikakapoor': 4285, 'whatever': 4286, 'banning': 4287, 'event': 4288, 'handedly': 4289, 'undo': 4290, 'sneezing': 4291, 'centipede': 4292, 'install': 4293, 'divine': 4294, 'trumppressbriefing': 4295, 'pressconference': 4296, 'dude': 4297, 'environmental': 4298, 'sustainability': 4299, 'oilprice': 4300, 'finance': 4301, 'salute': 4302, 'aldi': 4303, 'sensibly': 4304, 'reluctant': 4305, 'expose': 4306, 'possible': 4307, 'preferred': 4308, 'swi': 4309, 'manipulation': 4310, 'uncalled': 4311, 'smack': 4312, 'bastard': 4313, 'frontliners': 4314, 'minorites': 4315, 'highly': 4316, 'lt': 4317, 'plentiful': 4318, 'spam': 4319, 'jan': 4320, 'storey': 4321, 'beaumaris': 4322, 'letter': 4323, 'william': 4324, 'hillis': 4325, 'shiller': 4326, 'responding': 4327, 'marketinsights': 4328, 'realestatetrends': 4329, 'mobile': 4330, 'van': 4331, 'jalna': 4332, '19india': 4333, 'austrian': 4334, 'limiting': 4335, 'deemed': 4336, 'overstretched': 4337, 'charlotte': 4338, 'covid19uk': 4339, 'practising': 4340, 'simple': 4341, 'easyfundraising': 4342, 'taj': 4343, 'mlas': 4344, 'negotiated': 4345, 'mp': 4346, 'opposition': 4347, 'profiteering': 4348, 'feature': 4349, 'poetry': 4350, 'dalitso': 4351, 'ndlovu': 4352, 'bride': 4353, 'vain': 4354, 'sacrifice': 4355, 'elia': 4356, 'muonde': 4357, 'ink': 4358, 'oracle': 4359, 'poet': 4360, 'founder': 4361, 'joining': 4362, 'startupsvscovid19': 4363, 'ama': 4364, 'moderating': 4365, 'waynerogers': 4366, 'hilarious': 4367, 'diaper': 4368, 'wereallinthistogether': 4369, 'substitute': 4370, 'sorting': 4371, 'no10': 4372, 'armyforfooddistribution': 4373, 'seriousness': 4374, 'arduous': 4375, 'thier': 4376, 'stopit': 4377, 'houston': 4378, '30am': 4379, 'sky': 4380, 'forecaster': 4381, 'doomsday': 4382, 'hnvx2ysb6b': 4383, 'sainsbury': 4384, 'halt': 4385, 'accuracy': 4386, 'flattening': 4387, 'flattenthecurve': 4388, 'skilled': 4389, 'upon': 4390, 'digitalpolice': 4391, 'soar': 4392, 'kick': 4393, 'azadpur': 4394, 'mandi': 4395, 'disrupted': 4396, 'strained': 4397, 'shed': 4398, 'fragile': 4399, 'recommend': 4400, 'gang': 4401, 'rando': 4402, 'involved': 4403, 'iowa': 4404, 'avoiding': 4405, 'mspaamericas': 4406, 'mspa': 4407, 'mysteryshopping': 4408, 'evaluator': 4409, 'lifted': 4410, 'eight': 4411, 'colombo': 4412, 'sri': 4413, 'lanka': 4414, '6am': 4415, 'vendor': 4416, 'justice': 4417, 'versova': 4418, 'natraj': 4419, 'shifa': 4420, 'yariroad': 4421, 'mumbaipolice': 4422, 'mybmc': 4423, 'cmomaharashtra': 4424, 'combat': 4425, 'richardburr': 4426, 'kellyloeffler': 4427, 'accused': 4428, 'insider': 4429, 'dumped': 4430, 'loeffler': 4431, 'suit': 4432, 'atomic': 4433, 'robot': 4434, 'lowering': 4435, 'backissueking': 4436, 'informed': 4437, 'recommended': 4438, 'postpone': 4439, 'aggressive': 4440, 'scrub': 4441, 'coat': 4442, 'plague': 4443, 'peatfree': 4444, 'compost': 4445, 'entertained': 4446, 'starbucks': 4447, 'programme': 4448, 'operated': 4449, 'licensed': 4450, 'accompaniment': 4451, 'numerous': 4452, 'genre': 4453, 'singing': 4454, 'lesson': 4455, 'swmbletin': 4456, 'discover': 4457, 'circular': 4458, 'footprint': 4459, 'cycle': 4460, 'juan': 4461, 'jos': 4462, 'argudo': 4463, 'airbnb': 4464, 'smashed': 4465, 'board': 4466, 'coughing': 4467, 'looked': 4468, 'walkingdisease': 4469, 'acquire': 4470, '100ml': 4471, 'form': 4472, 'honestly': 4473, 'tricky': 4474, 'haringey': 4475, 'stepdad': 4476, 'permanent': 4477, 'er': 4478, 'pls': 4479, 'potd366': 4480, '84': 4481, 'cheer': 4482, 'potd': 4483, 'yearinphotos': 4484, 'mylifeinpictures': 4485, 'southlondon': 4486, 'northeast': 4487, 'particularly': 4488, 'mindful': 4489, 'loose': 4490, 'proposed': 4491, 'renewed': 4492, 'moratorium': 4493, 'proposal': 4494, 'classify': 4495, 'ineligible': 4496, 'leverage': 4497, 'biz': 4498, 'renter': 4499, 'homeowner': 4500, 'ph': 4501, 'grace': 4502, 'tipping': 4503, 'alaska': 4504, 'wage': 4505, '75': 4506, 'deserving': 4507, 'chunky': 4508, 'peanut': 4509, 'coronapocalypse': 4510, 'yknow': 4511, 'ryan': 4512, 'deadpool': 4513, 'nah': 4514, 'horders': 4515, 'pe': 4516, 'manufacture': 4517, 'gel': 4518, 'controlled': 4519, 'ch': 4520, 'mutiny': 4521, 'bounty': 4522, 'papertowels': 4523, 'struggled': 4524, 'revenue': 4525, 'stressed': 4526, 'vastly': 4527, 'trigger': 4528, 'tourism': 4529, 'budget': 4530, 'exorbitant': 4531, 'seller': 4532, 'shameful': 4533, 'touro': 4534, 'scruffy': 4535, 'lic': 4536, 'woodside': 4537, 'elmhurst': 4538, 'jackson': 4539, 'height': 4540, 'hamburger': 4541, 'twice': 4542, 'nystrong': 4543, 'joburg': 4544, 'luthuli': 4545, '6th': 4546, 'floor': 4547, 'sauer': 4548, 'johannesburg': 4549, 'refunded': 4550, 'develops': 4551, 'schoolclosureuk': 4552, 'inxink': 4553, 'inxnews': 4554, 'determined': 4555, 'dickhead': 4556, 'raiding': 4557, 'byham': 4558, 'ballingdon': 4559, 'operating': 4560, 'han': 4561, 'knight': 4562, 'frank': 4563, 'predicts': 4564, 'expected': 4565, 'itself': 4566, 'overblown': 4567, 'majorly': 4568, '7500': 4569, '009375': 4570, 'bodega': 4571, 'sense': 4572, 'printed': 4573, 'trillion': 4574, 'partially': 4575, 'terrible': 4576, 'whereas': 4577, 'autonomy': 4578, 'printing': 4579, '3t': 4580, '7b': 4581, 'upsetting': 4582, 'mailinvoting': 4583, 'vote': 4584, 'cheat': 4585, 'dublin': 4586, 'nursing': 4587, 'icw': 4588, 'ward': 4589, 'banal': 4590, 'reporting': 4591, 'fraudwatch': 4592, 'hydro': 4593, 'powering': 4594, 'thanking': 4595, 'midst': 4596, 'wednesdaymotivation': 4597, 'negatively': 4598, 'refill': 4599, 'stash': 4600, 'mondelez': 4601, 'expects': 4602, '2008': 4603, 'happened': 4604, 'theft': 4605, 'deregulation': 4606, 'breakdown': 4607, 'held': 4608, 'relatively': 4609, 'surviving': 4610, 'darknet': 4611, 'checked': 4612, 'flogging': 4613, 'whom': 4614, 'villain': 4615, 'sykescottages': 4616, 'hugely': 4617, 'centric': 4618, 'sussex': 4619, 'swamped': 4620, 'braving': 4621, '55': 4622, 'easily': 4623, 'manipulated': 4624, 'react': 4625, 'leaf': 4626, 'tue': 4627, 'wed': 4628, 'butcher': 4629, 'epilepsy': 4630, 'thu': 4631, 'fri': 4632, 'sat': 4633, 'grounded': 4634, 'wild': 4635, 'portfolio': 4636, '401ks': 4637, 'shelter': 4638, 'tactic': 4639, 'publix': 4640, 'mysterious': 4641, 'patch': 4642, 'forming': 4643, 'imadethisup': 4644, 'alliance': 4645, 'xu': 4646, 'ipo': 4647, 'simultaneously': 4648, 'cardiac': 4649, 'woodman': 4650, 'doings': 4651, 'bluecollarsolid': 4652, 'applause': 4653, 'serf': 4654, 'prankster': 4655, 'terror': 4656, 'convid': 4657, 'status': 4658, 'gdp': 4659, 'tn': 4660, 'borrowing': 4661, 'contraction': 4662, '2tn': 4663, '136': 4664, 'edible': 4665, 'dab': 4666, 'whiskey': 4667, 'ammo': 4668, 'dash': 4669, 'maker': 4670, 'coronapocalypse2020': 4671, 'wuhanvirus': 4672, 'ccp': 4673, 'father': 4674, 'separated': 4675, 'supportlocal': 4676, 'delaware': 4677, 'boutique': 4678, 'brewery': 4679, 'easier': 4680, 'totino': 4681, 'upped': 4682, '119': 4683, 'patrona': 4684, 'continued': 4685, 'purdue': 4686, 'athletics': 4687, 'boilerup': 4688, '311': 4689, 'wayne': 4690, 'pa': 4691, 'seafood': 4692, 'palmsunday': 4693, 'zeoliarmy': 4694, 'chemist': 4695, 'indispensable': 4696, 'dining': 4697, 'beach': 4698, 'adding': 4699, 'wastewater': 4700, 'reduces': 4701, 'dfs': 4702, 'bargain': 4703, 'michigan': 4704, 'sen': 4705, 'ruth': 4706, 'jeremy': 4707, 'moss': 4708, 'unsuspecting': 4709, 'phishing': 4710, 'downtownithaca': 4711, 'ithacany': 4712, 'investigation': 4713, 'fully': 4714, 'idling': 4715, 'feud': 4716, 'competitionalert': 4717, 'participate': 4718, 'stayhomestaysa': 4719, 'lose': 4720, 'mortgage': 4721, 'savetheeconomy': 4722, 'mess': 4723, 'obe': 4724, 'mbe': 4725, 'bezos': 4726, 'boom': 4727, 'maga': 4728, 'belive': 4729, 'shoot': 4730, 'potentialy': 4731, 'dime': 4732, 'algo': 4733, 'advocating': 4734, 'happen': 4735, 'diary': 4736, 'orpington': 4737, '4pm': 4738, 'enforced': 4739, 'leg': 4740, 'legged': 4741, 'stool': 4742, 'disappeared': 4743, 'fiat': 4744, 'prop': 4745, 'zombie': 4746, 'bamksters': 4747, 'declared': 4748, 'urging': 4749, 'failure': 4750, 'resulted': 4751, 'sharpest': 4752, 'gulf': 4753, 'coupled': 4754, 'oilpricewar': 4755, 'dentistry': 4756, 'confusion': 4757, 'furlough': 4758, 'bathandbodyworks': 4759, 'leaving': 4760, 'praise': 4761, 'ufcw': 4762, 'restriction': 4763, 'specter': 4764, 'mistrust': 4765, 'devaluation': 4766, '27': 4767, 'wrenching': 4768, 'marie': 4769, 'martin': 4770, 'annoy': 4771, 'highest': 4772, 'appeal': 4773, 'forrester': 4774, 'uae': 4775, 'sample': 4776, 'businessmen': 4777, 'contribution': 4778, 'cordray': 4779, 'slammed': 4780, 'cfpb': 4781, 'cammers': 4782, 'malware': 4783, 'discounted': 4784, 'shafe': 4785, 'malicious': 4786, 'software': 4787, 'ransomware': 4788, 'lazada': 4789, 'filipino': 4790, 'worldvisionph': 4791, 'extends': 4792, 'bedbathbeyond': 4793, '33': 4794, 'divert': 4795, 'superfluos': 4796, 'astroturf': 4797, 'salary': 4798, '100k': 4799, 'max': 4800, 'superm': 4801, 'modrnhealthcr': 4802, 'grow': 4803, 'annual': 4804, '2028': 4805, 'projection': 4806, 'heartfelt': 4807, 'mla': 4808, 'baramati': 4809, 'agro': 4810, '500ltrs': 4811, 'bhandara': 4812, 'zp': 4813, 'pigeon': 4814, 'kawaii': 4815, 'safetyfirst': 4816, 'traxxfm': 4817, 'borneo': 4818, 'rutherford': 4819, 'jayson': 4820, 'lusk': 4821, 'understanding': 4822, 'necessarily': 4823, 'intention': 4824, 'assessment': 4825, 'delegate': 4826, 'authority': 4827, 'covi': 4828, 'sanitise': 4829, 'cheflife': 4830, 'chefoninstagram': 4831, 'chefanand': 4832, 'dialysis': 4833, 'immunosuppressant': 4834, 'coll': 4835, 'humble': 4836, 'request': 4837, 'waive': 4838, 'airindia': 4839, 'impossible': 4840, 'sanwo': 4841, 'olu': 4842, 'lagos': 4843, 'sock': 4844, 'nyclockdown': 4845, 'weshouldhavebeenbetterprepared': 4846, 'ebanks': 4847, 'exacerbated': 4848, 'injustice': 4849, 'experienced': 4850, 'suggests': 4851, 'mayor': 4852, 'jerry': 4853, 'demings': 4854, 'flatten': 4855, 'teen': 4856, 'filmed': 4857, 'virginia': 4858, 'stunt': 4859, 'disturbing': 4860, 'cop': 4861, 'explain': 4862, 'identical': 4863, 'trophy': 4864, 'cleveland': 4865, 'brown': 4866, 'used': 4867, 'knowledge': 4868, 'impending': 4869, 'plummeted': 4870, 'stockmarket': 4871, 'ussenate': 4872, 'bizstrongarlva': 4873, 'copper': 4874, 'import': 4875, 'tweeted': 4876, 'sanction': 4877, 'contributed': 4878, 'creation': 4879, 'takeover': 4880, 'deliberate': 4881, 'systemic': 4882, 'bbc': 4883, 'formula': 4884, 'concerning': 4885, 'severity': 4886, 'deter': 4887, 'embrace': 4888, 'bean': 4889, 'schoolsclosure': 4890, 'wereinthistogether': 4891, 'stopfakenews': 4892, 'silicon': 4893, 'tanking': 4894, 'stevejobs': 4895, 'sort': 4896, 'thuggish': 4897, 'endure': 4898, 'drayton': 4899, 'diverse': 4900, 'plcb': 4901, 'liquor': 4902, 'randomly': 4903, 'ajimal': 4904, 'kal': 4905, 'booking': 4906, 'inconsiderate': 4907, 'dozen': 4908, 'inconvenience': 4909, 'missing': 4910, '120': 4911, 'sydneyproperty': 4912, 'beauty': 4913, 'russian': 4914, 'ruble': 4915, 'putin': 4916, 'speech': 4917, 'matabichos': 4918, 'exposure': 4919, 'vocs': 4920, 'puregold': 4921, 'disinfecting': 4922, 'somewhere': 4923, 'admit': 4924, 'closet': 4925, 'cleaned': 4926, 'keto': 4927, 'sad': 4928, 'superpower': 4929, 'drying': 4930, 'hip': 4931, 'usacoronavirus': 4932, 'wonhoisback': 4933, 'onedirectionsave2020': 4934, 'dramatic': 4935, 'ensuring': 4936, 'lea': 4937, 'luger': 4938, 'occurs': 4939, 'bm': 4940, 'aprilfoolsday': 4941, 'columnist': 4942, 'administrator': 4943, 'owen': 4944, 'robert': 4945, 'pent': 4946, 'tv': 4947, 'enter': 4948, 'urgent': 4949, 'allegedly': 4950, 'saliva': 4951, 'dorset': 4952, 'bridport': 4953, 'coronacrisisuk': 4954, 'morgan': 4955, 'stanley': 4956, 'quality': 4957, 'becoming': 4958, 'needier': 4959, 'cong': 4960, 'faring': 4961, 'explore': 4962, 'accelerated': 4963, 'favorite': 4964, 'digitaleu': 4965, 'twenty': 4966, 'walked': 4967, 'neck': 4968, 'fightagainstcovid19': 4969, 'bneeditorspicks': 4970, 'kazakh': 4971, 'tenge': 4972, 'plunge': 4973, 'flounder': 4974, 'kaz': 4975, 'sank': 4976, 'bne': 4977, 'kazakhstan': 4978, 'fx': 4979, 'thankful': 4980, 'authentic': 4981, 'armstrong': 4982, 'ad': 4983, 'comrade': 4984, 'metric': 4985, 'hoaxy': 4986, 'sushi': 4987, 'careful': 4988, 'husband': 4989, '26th': 4990, 'engaging': 4991, 'husain': 4992, 'ray': 4993, 'obsessed': 4994, 'offence': 4995, 'irrationality': 4996, 'learned': 4997, 'metro': 4998, 'krogers': 4999, 'bless': 5000, 'residence': 5001, 'maintain': 5002, 'saudi': 5003, 'kicking': 5004, 'slashed': 5005, 'foreign': 5006, 'cabin': 5007, 'fever': 5008, 'dragging': 5009, 'draggingmain': 5010, 'americangraffiti': 5011, 'investigated': 5012, 'prohibition': 5013, 'cpa': 5014, 'unfair': 5015, 'pas': 5016, 'holy': 5017, 'organise': 5018, 'assisted': 5019, 'apartment': 5020, 'equity': 5021, 'corvid19': 5022, 'teamusa': 5023, 'senate': 5024, 'whitehouse': 5025, 'ghs100': 5026, 'ghs1': 5027, 'photo': 5028, 'notoriously': 5029, 'microbe': 5030, 'crawling': 5031, 'advisable': 5032, 'exam': 5033, 'sma': 5034, '88': 5035, 'write': 5036, 'christian': 5037, 'infect': 5038, 'valued': 5039, 'ashba': 5040, 'located': 5041, 'ineffective': 5042, '62': 5043, 'ideally': 5044, 'algorithm': 5045, 'changing': 5046, 'nintendo': 5047, 'thepurge': 5048, 'ideal': 5049, 'grateful': 5050, 'manila': 5051, 'style': 5052, 'date': 5053, 'respect': 5054, 'mobilizing': 5055, 'minimum': 5056, 'bedevils': 5057, 'lawmaker': 5058, 'commitment': 5059, 'ilorin': 5060, 'goodtime': 5061, 'uttar': 5062, 'pradesh': 5063, 'licence': 5064, 'litre': 5065, 'bookmark': 5066, 'implicatio': 5067, 'rosa': 5068, 'believed': 5069, 'sinabi': 5070, 'mo': 5071, 'alex': 5072, 'ka': 5073, 'designer': 5074, '608': 5075, '274': 5076, '8199': 5077, 'paranoid': 5078, 'wuye': 5079, 'aware': 5080, 'disposable': 5081, 'motorist': 5082, 'crashed': 5083, '56': 5084, '20p': 5085, 'dathan': 5086, 'ji': 5087, 'kiranawala': 5088, 'functioned': 5089, 'stip': 5090, 'physicaldistancing': 5091, 'susanna': 5092, 'askdrh': 5093, 'cinema': 5094, 'theatre': 5095, 'num': 5096, 'persistently': 5097, 'unappealing': 5098, 'pinned': 5099, 'spitting': 5100, 'phaps': 5101, 'overtake': 5102, 'proprietor': 5103, 'envt': 5104, 'creating': 5105, 'staysafeug': 5106, 'fuelupdate': 5107, 'diesel': 5108, 'static': 5109, 'successive': 5110, 'environmentalist': 5111, 'lighting': 5112, 'dna': 5113, 'calculate': 5114, '64': 5115, 'migraine': 5116, 'pill': 5117, 'amazonprime': 5118, 'vanilla': 5119, 'apologize': 5120, 'updating': 5121, 'onlyfans': 5122, 'content': 5123, 'ayrshire': 5124, 'serving': 5125, 'pr': 5126, '53': 5127, '31': 5128, 'guest': 5129, 'ninahossain': 5130, 'missed': 5131, 'clip': 5132, 'speaking': 5133, 'anonymity': 5134, 'couldn': 5135, 'nicer': 5136, 'sundaymorning': 5137, 'sundayfeels': 5138, 'abandoned': 5139, 'looting': 5140, 'pussy': 5141, 'scratch': 5142, 'fought': 5143, 'stupidity': 5144, 'socialdistancingnow': 5145, 'definit': 5146, 'ikea': 5147, 'ought': 5148, 'janitor': 5149, 'exact': 5150, 'honor': 5151, 'bogota': 5152, 'guilty': 5153, 'bbva': 5154, 'quick': 5155, 'seemed': 5156, 'brushing': 5157, 'annoyed': 5158, 'speak': 5159, 'minionworld': 5160, 'stealing': 5161, 'minion': 5162, 'meme': 5163, 'parody': 5164, 'cartoon': 5165, 'animation': 5166, 'worsening': 5167, 'unknown': 5168, 'fool': 5169, 'overstock': 5170, 'outfit': 5171, 'construction': 5172, 'island': 5173, 'corn': 5174, 'noting': 5175, 'factor': 5176, 'influencing': 5177, 'madrid': 5178, 'approval': 5179, 'convalescent': 5180, 'plasma': 5181, 'therapy': 5182, 'methodist': 5183, 'eind': 5184, 'scale': 5185, 'introduce': 5186, 'epra': 5187, 'revoke': 5188, 'license': 5189, 'hiked': 5190, 'liquefied': 5191, 'baymen': 5192, 'catch': 5193, 'boosted': 5194, 'entirely': 5195, 'wanna': 5196, 'frequented': 5197, 'skeeves': 5198, 'dmv': 5199, 'dedicated': 5200, 'getupdc': 5201, 'dhl': 5202, 'expensive': 5203, 'pass': 5204, 'lockout': 5205, 'harsh': 5206, 'penalty': 5207, 'corrupt': 5208, 'punish': 5209, 'voter': 5210, 'todo': 5211, 'est': 5212, 'mal': 5213, 'gain': 5214, 'trumpkins': 5215, 'cleared': 5216, 'aquarium': 5217, 'consuming': 5218, 'unlabeled': 5219, 'neart': 5220, 'cur': 5221, 'cheile': 5222, '9400': 5223, 'jeez': 5224, 'suburban': 5225, 'symbol': 5226, 'fitting': 5227, 'coach': 5228, 'ensemble': 5229, 'healthcareworker': 5230, 'pawed': 5231, 'tortilla': 5232, 'gurbir': 5233, 'grewal': 5234, 'supermaarket': 5235, 'thankyouecommerce': 5236, 'flipkart': 5237, 'coronabelgie': 5238, 'timing': 5239, 'ap': 5240, 'profile': 5241, 'fellow': 5242, 'rooster': 5243, 'rude': 5244, 'storefight': 5245, 'infowars': 5246, 'peddles': 5247, 'conspiracy': 5248, 'theory': 5249, 'aggressively': 5250, 'fiverr': 5251, 'greeting': 5252, 'wix': 5253, 'redesigned': 5254, 'oprahwinfrey': 5255, 'guard': 5256, 'military': 5257, 'server': 5258, 'bravely': 5259, 'coronovirus': 5260, 'ssp': 5261, 'absent': 5262, 'dis': 5263, 'adversity': 5264, 'season': 5265, 'bake': 5266, 'suddenly': 5267, 'mary': 5268, 'fuckin': 5269, 'berry': 5270, 'stopfuckingpanicbuying': 5271, 'maryberry': 5272, 'thegreatbritishbakeoff': 5273, 'tgbbo': 5274, 'gbbo': 5275, 'ethanol': 5276, 'e10': 5277, 'denatured': 5278, 'isopropyl': 5279, 'bolton': 5280, 'scientist': 5281, 'randomized': 5282, 'trial': 5283, 'participant': 5284, 'respiratory': 5285, 'worrisome': 5286, 'allied': 5287, 'unitedstates': 5288, 'sunbathe': 5289, 'bj': 5290, 'approximately': 5291, 'campaign': 5292, 'headline': 5293, 'bevigilant': 5294, 'cybersecurity': 5295, 'pinellas': 5296, 'outlier': 5297, 'tout': 5298, 'perfectly': 5299, 'combination': 5300, 'wasteful': 5301, 'throwing': 5302, 'ozharvest': 5303, 'zo': 5304, 'kan': 5305, 'het': 5306, 'ook': 5307, 'denen': 5308, 'zijn': 5309, 'gek': 5310, 'nogniet': 5311, 'kr40': 5312, 'kr100': 5313, 'dint': 5314, 'onion': 5315, 'pricey': 5316, 'frozen': 5317, 'pea': 5318, 'tmoro': 5319, 'bethoughtful': 5320, 'ended': 5321, 'essentialcommodities': 5322, 'revert': 5323, '9am': 5324, 'tine': 5325, 'replenish': 5326, 'pop': 5327, 'widespread': 5328, 'significant': 5329, 'momentum': 5330, 'amenable': 5331, 'category': 5332, 'track': 5333, 'skinca': 5334, 'autistic': 5335, 'aversion': 5336, 'autism': 5337, 'nhsfoodbanks': 5338, 'nhsstaff': 5339, 'chaos': 5340, 'approached': 5341, 'desperate': 5342, 'condiment': 5343, 'palpable': 5344, 'plannedemic': 5345, 'plandemic': 5346, 'wakeup': 5347, 'cooperation': 5348, 'prudent': 5349, 'banking': 5350, 'customerservice': 5351, 'gripevine': 5352, 'com': 5353, 'beheard': 5354, 'watchdog': 5355, 'customerfeedback': 5356, 'flcx': 5357, 'foxnews': 5358, 'coronamania': 5359, 'infinite': 5360, 'flushed': 5361, 'crap': 5362, 'pertain': 5363, 'fixing': 5364, 'cartel': 5365, 'enriches': 5366, 'enemy': 5367, 'dictator': 5368, 'inadequate': 5369, 'violate': 5370, '5g': 5371, 'billgates': 5372, 'trending': 5373, 'traderjoes': 5374, 'nut': 5375, 'gm': 5376, 'despicable': 5377, 'hording': 5378, 'softpower': 5379, 'upends': 5380, 'meredith': 5381, 'babyx': 5382, 'wasting': 5383, 'realise': 5384, 'handled': 5385, 'telehealth': 5386, 'monitoring': 5387, 'chatbots': 5388, 'hiring': 5389, 'porter': 5390, 'unskilled': 5391, 'petrified': 5392, 'nonsense': 5393, 'exercising': 5394, 'nowhere': 5395, 'policing': 5396, 'rife': 5397, 'coron': 5398, 'explaining': 5399, 'invoke': 5400, 'defenceproductionact': 5401, 'blood': 5402, 'potus': 5403, 'governorcuomo': 5404, 'catastrophic': 5405, 'rejected': 5406, 'preparation': 5407, 'dismantling': 5408, 'goodfridayreads': 5409, 'climb': 5410, 'plummet': 5411, 'restructuring': 5412, 'intel': 5413, 'defiance': 5414, 'characteristic': 5415, 'tehran': 5416, 'plunged': 5417, 'extreme': 5418, 'pressure': 5419, 'elizabeth': 5420, 'somer': 5421, 'draining': 5422, 'overtime': 5423, 'satisfy': 5424, 'sensible': 5425, 'lotl': 5426, 'piled': 5427, '700': 5428, 'suspected': 5429, 'costinflation': 5430, 'stateofemergency': 5431, 'drama': 5432, 'meghanandharry': 5433, 'infinitely': 5434, 'doomsdaypreppers': 5435, 'triple': 5436, 'digit': 5437, 'hurricane': 5438, 'flood': 5439, 'asf': 5440, 'hampered': 5441, 'stage': 5442, 'stamp': 5443, 'rocking': 5444, 'scottish': 5445, 'cable': 5446, 'intensify': 5447, 'saturday': 5448, 'ted': 5449, 'mimosa': 5450, 'insolvency': 5451, 'picked': 5452, 'marginally': 5453, 'ashley': 5454, 'tisdale': 5455, 'handed': 5456, 'ashleytisdale': 5457, 'pretect': 5458, 'stayathomeorder': 5459, 'nigerian': 5460, '1billion': 5461, 'dey': 5462, 'loot': 5463, 'suffering': 5464, 'alivecor': 5465, 'expanded': 5466, 'kardiamobile': 5467, '6l': 5468, 'ecg': 5469, 'dangerously': 5470, 'prolonged': 5471, 'heartbeat': 5472, 'cyprus': 5473, 'counsellor': 5474, 'debthelp': 5475, 'debtfree': 5476, 'betting': 5477, 'tho': 5478, 'uklockdown': 5479, 'climate': 5480, 'joking': 5481, 'theyve': 5482, 'utterly': 5483, 'disappointed': 5484, 'skybroadb': 5485, 'ecosystem': 5486, 'elegance': 5487, 'odisha': 5488, 'cold': 5489, 'complication': 5490, 'gotten': 5491, 'tougher': 5492, 'manipulating': 5493, 'inappropriate': 5494, 'underestimate': 5495, 'horrible': 5496, 'refried': 5497, 'plight': 5498, 'stripping': 5499, 'hashtag': 5500, 'safest': 5501, 'transact': 5502, 'lowes': 5503, 'depot': 5504, 'entering': 5505, '03': 5506, 'renting': 5507, 'kally': 5508, 'khoelcher': 5509, 'gmail': 5510, 'dot': 5511, 'goodyear': 5512, 'coldwellbanker': 5513, '269': 5514, '240': 5515, '8824': 5516, 'avondale': 5517, 'buckeye': 5518, 'ukitaka': 5519, 'kujua': 5520, 'ni': 5521, 'bazenga': 5522, 'zao': 5523, 'bado': 5524, 'ziko': 5525, 'juu': 5526, 'toxic': 5527, 'herb': 5528, 'peapod': 5529, 'instacart': 5530, 'amazonfresh': 5531, 'shipt': 5532, 'unavailable': 5533, 'offered': 5534, 'immunocompromised': 5535, 'hella': 5536, 'broke': 5537, 'sierra': 5538, 'otto': 5539, 'winter': 5540, 'jewelry': 5541, 'abate': 5542, 'thurs': 5543, '8pm': 5544, 'applauding': 5545, 'clapforthenhs': 5546, 'clapforcarers': 5547, 'clapforkeyworkers': 5548, 'clapforteachers': 5549, 'tolerate': 5550, 'covidabuse': 5551, 'name': 5552, 'amongst': 5553, 'lengthy': 5554, 'weird': 5555, '372': 5556, '35': 5557, '450': 5558, 'finalise': 5559, 'password': 5560, 'actual': 5561, 'keepsafe': 5562, 'reward': 5563, 'flying': 5564, 'cruising': 5565, 'smg': 5566, 'highlight': 5567, 'boob': 5568, 'celeb': 5569, 'comment': 5570, 'catsmovie': 5571, 'butt': 5572, 'newwarriors': 5573, 'sub': 5574, 'dl': 5575, 'google': 5576, 'podcasts': 5577, 'spotify': 5578, 'pandora': 5579, 'consist': 5580, 'odd': 5581, 'exciting': 5582, 'studentnurse': 5583, 'unfortunate': 5584, 'express': 5585, 'blessed': 5586, 'specially': 5587, 'importer': 5588, 'thrive': 5589, 'unite': 5590, 'oligarchy': 5591, 'rounded': 5592, 'academic': 5593, 'inspire': 5594, 'reporter': 5595, 'historical': 5596, 'lng': 5597, 'partial': 5598, 'alternate': 5599, 'ice': 5600, 'gesture': 5601, 'communityspirit': 5602, 'emerging': 5603, 'larger': 5604, 'ausag': 5605, 'pushback': 5606, 'barwa': 5607, 'airport': 5608, 'al': 5609, 'khor': 5610, 'branch': 5611, 'pdf': 5612, 'ansar': 5613, 'ansargallery': 5614, 'qatar': 5615, 'doha': 5616, 'shoplocal': 5617, 'connecting': 5618, 'postponement': 5619, 'travelcancellations': 5620, 'chargebacks': 5621, '95': 5622, 'rationally': 5623, 'bacterial': 5624, 'becteria': 5625, 'cororonavirus': 5626, 'pgm': 5627, 'cecil': 5628, 'hometown': 5629, 'carly': 5630, 'whorton': 5631, 'foodsupplychain': 5632, 'paul': 5633, 'manly': 5634, 'nanaimo': 5635, 'ladysmith': 5636, 'blank': 5637, 'cheque': 5638, 'bail': 5639, 'technician': 5640, 'payday': 5641, 'ahold': 5642, 'spoke': 5643, 'chicago': 5644, 'stopthedebttrap': 5645, 'text': 5646, 'purporting': 5647, 'claiming': 5648, 'false': 5649, 'tree': 5650, 'njcommute': 5651, 'commuting': 5652, 'abt': 5653, 'fearing': 5654, 'liar': 5655, 'localsyr': 5656, 'graph': 5657, 'ur': 5658, 'emmudate': 5659, 'au': 5660, 'ml': 5661, 'proportion': 5662, 'hair': 5663, 'incentive': 5664, 'redkenobsessed': 5665, 'versus': 5666, 'economist': 5667, 'foodiefox': 5668, 'beverage': 5669, '0cscqx1nz5': 5670, 'marketresearch': 5671, 'consumerinsights': 5672, 'victory': 5673, 'chile': 5674, 'organic': 5675, 'strawberry': 5676, 'preserve': 5677, 'nightmare': 5678, 'incarceration': 5679, 'corprorate': 5680, 'stagnation': 5681, 'quantitative': 5682, 'easing': 5683, 'humanitarian': 5684, 'bigangryphil': 5685, '153': 5686, 'late': 5687, 'ana': 5688, 'arrest': 5689, 'staytuned': 5690, 'recallgavinnewsom': 5691, 'panicfear': 5692, 'blizzard': 5693, 'emailing': 5694, 'reply': 5695, 'dong': 5696, 'honorable': 5697, 'charging': 5698, 'extortionate': 5699, 'cousin': 5700, 'aunty': 5701, 'transformed': 5702, 'confused': 5703, 'rising': 5704, 'fare': 5705, 'men': 5706, 'sending': 5707, 'anymore': 5708, 'simpler': 5709, 'defending': 5710, 'joined': 5711, 'tata': 5712, 'indian': 5713, 'lucrative': 5714, 'temptation': 5715, 'susceptible': 5716, 'pumped': 5717, 'wankspangle': 5718, 'tit': 5719, 'nasty': 5720, 'cockwomble': 5721, 'broccoli': 5722, 'coronavi': 5723, 'petchems': 5724, 'tracked': 5725, 'rally': 5726, 'bbl': 5727, 'petrochemical': 5728, 'drastic': 5729, '2chainz': 5730, 'atlhawks': 5731, 'quavo': 5732, 'statefarm': 5733, 'thankyou': 5734, 'healthcareheroes': 5735, 'develop': 5736, 'deferment': 5737, 'repayment': 5738, 'extension': 5739, 'pj': 5740, 'coronapocolypse': 5741, 'tandem': 5742, 'adminerrorvirus': 5743, 'sacking': 5744, 'quadrupling': 5745, 'squalid': 5746, 'administrative': 5747, 'error': 5748, 'pure': 5749, 'pacman': 5750, 'lmao': 5751, 'pic': 5752, 'raided': 5753, 'sparse': 5754, 'turmoil': 5755, 'bracing': 5756, 'wider': 5757, 'composed': 5758, 'uncertain': 5759, 'heightened': 5760, 'cmc': 5761, 'cfd': 5762, 'gallaudet': 5763, 'processor': 5764, 'belong': 5765, 'chart': 5766, 'exponential': 5767, 'baltimore': 5768, 'maryland': 5769, 'apex': 5770, 'saveourfuture': 5771, 'savehumans': 5772, 'hunter': 5773, 'orwellian': 5774, 'breathtaking': 5775, 'egging': 5776, 'wartime': 5777, 'contrived': 5778, 'naivas': 5779, 'baringo': 5780, 'commander': 5781, 'ibrahim': 5782, 'abajila': 5783, 'amina': 5784, 'mutio': 5785, 'ramadhan': 5786, 'exemplary': 5787, 'christchurch': 5788, '71': 5789, 'internetfacts': 5790, 'kloudportal': 5791, 'committedtobreakthechain': 5792, 'mealsonwheels': 5793, '73': 5794, 'squeezed': 5795, 'disability': 5796, 'scrubbing': 5797, 'universal': 5798, 'surprise': 5799, 'payer': 5800, 'laying': 5801, 'bogglingly': 5802, 'blue': 5803, 'warm': 5804, 'hot': 5805, 'runwalgroup': 5806, 'audio': 5807, 'postal': 5808, 'prepares': 5809, 'paddy': 5810, 'wagon': 5811, 'lynx': 5812, 'doorstep': 5813, 'robux': 5814, 'gfx': 5815, 'swindle': 5816, 'lookout': 5817, 'nationalized': 5818, 'defective': 5819, 'smallbusinesses': 5820, 'giftcards': 5821, '401': 5822, 'richmond': 5823, 'broken': 5824, 'cbs': 5825, 'philly': 5826, 'fao': 5827, 'indicates': 5828, '172': 5829, 'linked': 5830, 'wonky': 5831, 'historic': 5832, 'g20': 5833, 'critic': 5834, 'vast': 5835, 'majority': 5836, 'concrete': 5837, 'bunker': 5838, 'tinned': 5839, 'inspired': 5840, 'kuwait': 5841, 'corp': 5842, 'instructed': 5843, 'subsidiary': 5844, 'capital': 5845, 'pact': 5846, 'slay': 5847, 'comfort': 5848, 'lockdownuknow': 5849, '5baje5minute': 5850, 'lockdownsouthafrica': 5851, 'coronaupdatesinindia': 5852, 'janatacurfew': 5853, 'tribute': 5854, 'fantastic': 5855, 'football': 5856, 'resume': 5857, 'portman': 5858, 'ticket': 5859, 'honour': 5860, 'boosting': 5861, 'met': 5862, 'stretched': 5863, 'thin': 5864, 'faster': 5865, 'deciding': 5866, 'transfer': 5867, 'swipe': 5868, 'jack': 5869, 'quarantineandchill': 5870, 'zombieapocalypse': 5871, 'houstonlockdown': 5872, 'concise': 5873, 'summary': 5874, 'relation': 5875, 'consumerrights': 5876, 'deliveroo': 5877, 'vital': 5878, 'inews': 5879, 'refrain': 5880, 'grocerystore': 5881, 'milano': 5882, 'catching': 5883, 'flocking': 5884, 'shouldnt': 5885, 'km': 5886, 'wasn': 5887, '10x12': 5888, 'sifted': 5889, 'moscow': 5890, 'witnessed': 5891, 'eastoffice': 5892, 'hill': 5893, 'twp': 5894, 'pave': 5895, 'township': 5896, 'isolate': 5897, 'ourselves': 5898, 'jwj': 5899, 'graduated': 5900, 'vapers': 5901, 'savvy': 5902, 'confident': 5903, 'ecigs': 5904, 'publichealth': 5905, 'adjustment': 5906, 'focuscamera': 5907, 'deterioration': 5908, 'showing': 5909, 'willing': 5910, 'homemade': 5911, 'detroitstrong': 5912, 'cashapp': 5913, 'ritualsbiinky': 5914, 'responds': 5915, 'eminating': 5916, 'livid': 5917, 'haunting': 5918, 'soundbite': 5919, 'interstellar': 5920, 'globalpandemic': 5921, 'wayspeoplearetheworst': 5922, 'toiletrollchallenge': 5923, 'toiletpaperemergency': 5924, 'xbox': 5925, 'playstation': 5926, 'steam': 5927, 'stadium': 5928, 'noballs': 5929, 'leafyishere': 5930, 'ps4': 5931, 'cbdc': 5932, 'econ': 5933, 'distributional': 5934, 'implication': 5935, 'approach': 5936, 'statue': 5937, 'dat': 5938, 'monayy': 5939, 'pearl': 5940, 'everyonespoor': 5941, 'socialism': 5942, 'qurantine': 5943, 'statueslivingbetter': 5944, 'activated': 5945, 'operational': 5946, 'mama': 5947, 'sober': 5948, 'earring': 5949, 'clair': 5950, 'hedgehog': 5951, 'hedgielove': 5952, 'makingpeoplesmile': 5953, '800': 5954, '44': 5955, 'browsing': 5956, '2009': 5957, 'pmd09': 5958, 'bet': 5959, 'latent': 5960, 'revealed': 5961, 'beast': 5962, 'macroeconomic': 5963, 'deepen': 5964, 'summarizes': 5965, 'occasion': 5966, 'irish': 5967, 'terriblecustomerservice': 5968, 'wiltshire': 5969, '300': 5970, 'dessert': 5971, 'homedeliveries': 5972, 'helpeachother': 5973, 'cancelled': 5974, 'behalf': 5975, 'syrian': 5976, 'rushed': 5977, 'resort': 5978, 'stricter': 5979, 'ester': 5980, 'vitaminc': 5981, 'reputation': 5982, 'circle': 5983, 'sanitised': 5984, 'oriented': 5985, 'eg': 5986, 'bigpharma': 5987, 'supplement': 5988, 'rightly': 5989, 'practitioner': 5990, 'gerrity': 5991, 'kevin': 5992, 'takeaway': 5993, 'hairdresser': 5994, 'reacted': 5995, 'confluence': 5996, 'technical': 5997, 'gld': 5998, 'boneless': 5999, 'whichever': 6000, 'wing': 6001, 'flavor': 6002, 'daiquiri': 6003, '5005': 6004, 'cooper': 6005, 'arlington': 6006, 'tx': 6007, 'institute': 6008, 'beating': 6009, 'punishment': 6010, 'traitor': 6011, 'pro': 6012, 'jersey': 6013, 'tcot': 6014, 'buildthewall': 6015, 'pjnet': 6016, 'evangelicals': 6017, 'uniteblue': 6018, 'p2': 6019, 'bamy': 6020, 'merchandise': 6021, 'infrared': 6022, '3m': 6023, 'bamyglobal': 6024, '861577877688': 6025, 'whatspps': 6026, '8618607740759': 6027, '07063501522': 6028, '08028611855': 6029, 'electricity': 6030, 'distinguish': 6031, 'rwanda': 6032, 'jacked': 6033, 'ripped': 6034, 'brit': 6035, 'moscowmitchslushfund': 6036, 'trumpslushfund': 6037, 'trumpvirus': 6038, 'trumplung': 6039, 'pandumbi': 6040, 'siraj': 6041, 'chaudhry': 6042, 'md': 6043, 'hiya': 6044, 'monster': 6045, 'liveinhope': 6046, 'raleys': 6047, 'bel': 6048, 'manage': 6049, 'hmm': 6050, 'fleeced': 6051, '449': 6052, '199': 6053, 'staythef': 6054, 'athome': 6055, 'capping': 6056, 'shooting': 6057, 'coronaupdatesindia': 6058, 'groceryworkers': 6059, 'bernie': 6060, 'guarantee': 6061, 'uninsured': 6062, 'insured': 6063, 'billing': 6064, '150': 6065, '400': 6066, '1yr': 6067, 'heroic': 6068, 'selfegodrivenisolation': 6069, 'pipedown': 6070, 'importance': 6071, 'musician': 6072, 'dancer': 6073, 'model': 6074, 'apocalypse2020': 6075, 'hedging': 6076, 'workout': 6077, 'multi': 6078, 'millionaire': 6079, 'dentist': 6080, 'swimming': 6081, 'pool': 6082, 'sauna': 6083, 'mansion': 6084, 'hq': 6085, 'sweep': 6086, 'bakersfield': 6087, 'socialmediamarketing': 6088, 'networkmarketing': 6089, 'sth': 6090, 'soft': 6091, 'federation': 6092, 'merchant': 6093, 'advance': 6094, 'nerida': 6095, 'conisbee': 6096, 'tirupati': 6097, 'vegetableprices': 6098, 'italian': 6099, 'greek': 6100, 'jt': 6101, 'peter': 6102, 'whatshisname': 6103, 'lobster': 6104, 'tank': 6105, 'france': 6106, 'spain': 6107, 'austria': 6108, 'religion': 6109, 'looroll': 6110, 'madincanada': 6111, 'promotionalproducts': 6112, 'signage': 6113, 'clawed': 6114, 'writes': 6115, 'mcpro': 6116, 'marketswithmc': 6117, 'cougher': 6118, 'raymond': 6119, 'coombs': 6120, 'appears': 6121, 'court': 6122, 'lessen': 6123, '30th': 6124, 'obviously': 6125, 'amend': 6126, 'massively': 6127, 'tragedy': 6128, 'hal': 6129, 'sosabowski': 6130, 'returned': 6131, 'regret': 6132, 'holder': 6133, 'requiring': 6134, '01765': 6135, '680215': 6136, 'representing': 6137, 'ordinance': 6138, 'mtnwestnews': 6139, 'commits': 6140, '25m': 6141, 'waived': 6142, 'promotional': 6143, 'writer': 6144, 'logit': 6145, 'discussing': 6146, 'overrun': 6147, 'rebel': 6148, 'square': 6149, 'saturdaythoughts': 6150, 'chinaliedandpeopledied': 6151, 'observer': 6152, 'typically': 6153, 'carton': 6154, 'hindustan': 6155, 'counterfeit': 6156, 'contagious': 6157, 'flip': 6158, 'flop': 6159, 'filthy': 6160, 'responsible': 6161, 'yorkshire': 6162, 'lowe': 6163, 'metering': 6164, 'customertraffic': 6165, 'assist': 6166, 'customerexperience': 6167, 'consumerbehavior': 6168, 'retailtech': 6169, 'contapersone': 6170, 'peoplecounting': 6171, 'handing': 6172, 'rationed': 6173, 'bestofpeople': 6174, 'sec': 6175, 'thoroughly': 6176, 'finished': 6177, 'sincerest': 6178, 'desk': 6179, 'nkstain': 6180, 'underlying': 6181, 'fcukin': 6182, 'highriskcovid19': 6183, 'morrison': 6184, 'frozenfood': 6185, 'nostock': 6186, 'exchanging': 6187, 'lusty': 6188, 'various': 6189, 'lately': 6190, 'export': 6191, 'groceryworkersdie': 6192, 'storeclosings': 6193, 'usbiz': 6194, 'cdnbiz': 6195, 'console': 6196, 'breakroom': 6197, 'eventually': 6198, 'crippling': 6199, 'deprived': 6200, 'episode': 6201, 'chopped': 6202, 'entitled': 6203, 'border': 6204, 'ie': 6205, 'distributor': 6206, 'digitised': 6207, 'revamp': 6208, 'sourcing': 6209, 'olympics': 6210, 'sponsor': 6211, 'tackling': 6212, 'grown': 6213, 'seasonalworkers': 6214, 'migrantlabourers': 6215, 'shutoffs': 6216, 'mike': 6217, 'poorer': 6218, 'earning': 6219, 'agricandcovid19': 6220, 'unsolicited': 6221, 'suspicious': 6222, 'massachusetts': 6223, 'exactly': 6224, 'feared': 6225, 'demanded': 6226, 'naija': 6227, 'bbnaija': 6228, '67': 6229, 'humboldtcounty': 6230, 'widely': 6231, 'latexgloves': 6232, 'relying': 6233, 'extremely': 6234, 'hoosier': 6235, 'kinyarwanda': 6236, 'invent': 6237, 'rwot': 6238, 'fortify': 6239, 'itv': 6240, 'foundation': 6241, '3layered': 6242, '24ltrs': 6243, 'renowned': 6244, 'gestrointrogist': 6245, 'sarin': 6246, 'santitation': 6247, 'coronawarriors': 6248, 'itvfoundation': 6249, 'tunnel': 6250, 'installed': 6251, 'narol': 6252, 'relaxed': 6253, 'vietnam': 6254, 'malaysia': 6255, 'benefited': 6256, 'yr': 6257, 'carpe': 6258, 'diem': 6259, 'bfa': 6260, 'caliber': 6261, 'male': 6262, '62yo': 6263, 'lived': 6264, 'canberra': 6265, 'practicing': 6266, 'clientes': 6267, 'carioca': 6268, 'buscando': 6269, 'prote': 6270, 'contra': 6271, 'ru': 6272, 'supermercados': 6273, 'guanabara': 6274, 'award': 6275, 'hearted': 6276, 'uhuru': 6277, 'kenyatta': 6278, 'moody': 6279, 'awori': 6280, 'radically': 6281, 'altered': 6282, 'cole': 6283, 'landscape': 6284, 'waitrose': 6285, 'creative': 6286, 'substituting': 6287, 'bestseller': 6288, 'existential': 6289, 'lifetime': 6290, 'scratchcards': 6291, 'methinks': 6292, 'altoriesgocovid19': 6293, 'occur': 6294, 'execute': 6295, 'olympics2020': 6296, 'backdrop': 6297, 'payne': 6298, 'imitate': 6299, 'tendency': 6300, 'hev': 6301, 'directed': 6302, 'pres': 6303, '100pcs': 6304, 'ppes': 6305, 'egyptian': 6306, 'internal': 6307, 'affirmed': 6308, 'resign': 6309, 'insidertrading': 6310, 'chems': 6311, 'q2': 6312, 'footing': 6313, 'mood': 6314, 'obesiti': 6315, 'launder': 6316, 'french': 6317, 'emmanuel': 6318, 'macron': 6319, 'imposed': 6320, 'declaring': 6321, 'municipal': 6322, 'election': 6323, 'duty': 6324, 'mayhem': 6325, 'inspirational': 6326, 'assault': 6327, 'ear': 6328, 'shite': 6329, 'sudden': 6330, '74': 6331, 'library': 6332, 'iymi': 6333, '6trillion': 6334, 'thai': 6335, 'seven': 6336, 'anticipated': 6337, 'rival': 6338, 'teamwork': 6339, 'displayed': 6340, 'grossly': 6341, 'inflating': 6342, 'attempting': 6343, 'bragging': 6344, 'hooper': 6345, 'neda': 6346, 'aiming': 6347, 'ass': 6348, 'ecq': 6349, 'agri': 6350, 'devendra': 6351, 'furloughed': 6352, 'modification': 6353, 'trustee': 6354, 'rush': 6355, 'cannabis': 6356, 'political': 6357, 'exaggerated': 6358, 'stfu': 6359, 'evolving': 6360, 'equally': 6361, 'analyzed': 6362, 'sift': 6363, 'uncover': 6364, 'tablet': 6365, 'laptop': 6366, 'touchscreen': 6367, 'mbot': 6368, 'mrna': 6369, 'biotechnology': 6370, 'gild': 6371, 'clx': 6372, 'lake': 6373, 'zm': 6374, 'rng': 6375, 'freedom': 6376, 'nope': 6377, 'hosta': 6378, 'urban': 6379, 'millennial': 6380, 'sandeep': 6381, 'da': 6382, 'highlighting': 6383, 'pulling': 6384, 'hotfuzz': 6385, 'final': 6386, 'unrealistic': 6387, 'midwest': 6388, 'fallout': 6389, 'disinflationary': 6390, 'stronger': 6391, 'dxy': 6392, 'carbs': 6393, 'cradle': 6394, 'applied': 6395, 'henrik': 6396, 'schou': 6397, '00am': 6398, 'pst': 6399, 'thursdaythoughts': 6400, 'excellent': 6401, 'permanently': 6402, 'footage': 6403, 'sweeping': 6404, 'angus': 6405, 'hoity': 6406, 'toity': 6407, 'mignon': 6408, 'thigh': 6409, 'groceryshopping': 6410, 'comms': 6411, 'infographic': 6412, 'socialmedia2day': 6413, 'swearing': 6414, 'selfless': 6415, 'londoner': 6416, 'stripped': 6417, 'suggested': 6418, 'garlic': 6419, 'chilli': 6420, 'split': 6421, 'red': 6422, 'lentil': 6423, 'muster': 6424, 'dual': 6425, 'suncor': 6426, 'curtail': 6427, 'practise': 6428, 'pavement': 6429, 'socially': 6430, 'ugh': 6431, '9th': 6432, 'five': 6433, 'expand': 6434, 'efficiency': 6435, 'risky': 6436, 'creativity': 6437, 'salad': 6438, 'energytwitter': 6439, 'crushing': 6440, 'restrict': 6441, 'cafe': 6442, 'closer': 6443, 'corpgov': 6444, 'cmo': 6445, 'esg': 6446, 'grc': 6447, 'boardofdirectors': 6448, 'directorship': 6449, 'governance': 6450, 'vc': 6451, 'cvc': 6452, 'smb': 6453, 'ux': 6454, 'cx': 6455, 'transunion': 6456, 'accessible': 6457, 'built': 6458, 'properly': 6459, 'confinement': 6460, 'demonstrated': 6461, 'fragility': 6462, 'getty': 6463, 'alleviate': 6464, '07': 6465, 'nicely': 6466, 'wheel': 6467, 'sputum': 6468, 'merica': 6469, 'bigoil': 6470, 'revolt': 6471, 'revolting': 6472, 'venture': 6473, 'anyways': 6474, 'trunk': 6475, 'starving': 6476, 'clout': 6477, 'punk': 6478, 'mr': 6479, 'tasty': 6480, 'aim': 6481, 'contac': 6482, '051': 6483, '5705253': 6484, '0338819977': 6485, 'askari': 6486, 'complex': 6487, 'rawalpindi': 6488, 'fastfood': 6489, 'purposefully': 6490, 'spit': 6491, 'apprehended': 6492, 'analyze': 6493, 'iraq': 6494, 'proxy': 6495, 'militia': 6496, 'ability': 6497, 'suppress': 6498, 'youth': 6499, 'october': 6500, 'revolution': 6501, 'statutory': 6502, 'selfemployed': 6503, 'freelance': 6504, 'crumbled': 6505, 'accelerator': 6506, 'return': 6507, 'pointing': 6508, 'solving': 6509, 'marginal': 6510, 'apps': 6511, 'conducted': 6512, 'scamalert': 6513, 'bb': 6514, 'antiviral': 6515, 'legitimate': 6516, 'shape': 6517, 'fudging': 6518, 'degrowrth': 6519, 'correlated': 6520, 'pogrom': 6521, 'kashmir': 6522, 'boycotting': 6523, '2a': 6524, 'visa': 6525, 'labor': 6526, 'bigger': 6527, 'fix': 6528, 'thrived': 6529, 'lobbying': 6530, 'exemption': 6531, 'skirting': 6532, 'accountability': 6533, 'alexander': 6534, 'galitsky': 6535, 'nyt': 6536, 'validated': 6537, 'compete': 6538, 'staycalmdontpanicbuy': 6539, 'declined': 6540, 'doorman': 6541, 'entrance': 6542, 'nominate': 6543, 'youre': 6544, 'bullshit': 6545, 'gst': 6546, 'kickstart': 6547, 'semblance': 6548, 'taxholiday': 6549, 'millennials': 6550, 'stack': 6551, '2k': 6552, 'stockpilers': 6553, 'afterlife': 6554, 'beirut': 6555, 'steak': 6556, 'selfishpricks': 6557, 'faculty': 6558, 'pharmaceuticalsciences': 6559, 'formulated': 6560, 'rupure': 6561, 'handsanitizers': 6562, 'freely': 6563, 'distributed': 6564, 'ramauniversity': 6565, 'subsidized': 6566, 'ramahospitals': 6567, 'securityguards': 6568, 'particular': 6569, 'hired': 6570, 'sop': 6571, 'evil': 6572, 'pain': 6573, 'delta': 6574, 'tl': 6575, 'accessory': 6576, 'boardgames': 6577, 'ahh': 6578, 'provincial': 6579, 'inspector': 6580, 'picker': 6581, 'muchrespect': 6582, 'genomics': 6583, '23andme': 6584, 'scare': 6585, 'economiccrisis': 6586, 'sbux': 6587, 'dooprime': 6588, 'buyshares': 6589, 'buystocks': 6590, 'makemoney': 6591, 'makemoneyonline': 6592, 'makemoneyfromhome': 6593, 'stressful': 6594, 'distraction': 6595, 'yolo': 6596, 'fur': 6597, 'miserably': 6598, 'crucial': 6599, 'pleased': 6600, 'gebb': 6601, 'entertain': 6602, 'diarea': 6603, 'parking': 6604, 'kijiji': 6605, '950': 6606, 'blocked': 6607, 'chose': 6608, 'motivating': 6609, 'foodforthought': 6610, 'kindness': 6611, 'atmosphere': 6612, 'wehavethis': 6613, 'prosecute': 6614, 'gobshites': 6615, 'forefront': 6616, 'socialmedia': 6617, 'strategically': 6618, 'focused': 6619, 'math': 6620, 'brian': 6621, 'passing': 6622, 'within': 6623, 'ft': 6624, 'roommate': 6625, 'beg': 6626, 'morecambe': 6627, '45pm': 6628, 'lancaster': 6629, 'recognise': 6630, 'dunedin': 6631, 'pitchfork': 6632, 'firebrand': 6633, 'octagon': 6634, '7pm': 6635, 'ammunition': 6636, 'stayhomeforus': 6637, 'medtwitter': 6638, 'coloradoans': 6639, 'pinch': 6640, 'cupboard': 6641, 'anxiously': 6642, 'cloth': 6643, 'setting': 6644, 'upstream': 6645, 'foodservice': 6646, 'gimmick': 6647, 'sweat': 6648, 'yow': 6649, 'bros': 6650, 'ottawa': 6651, 'ottcity': 6652, 'techtiptuesday': 6653, 'captured': 6654, 'attention': 6655, 'hasn': 6656, 'queued': 6657, 'pulse': 6658, 'tamarind': 6659, 'shot': 6660, 'deuce': 6661, 'buffoon': 6662, 'agar': 6663, 'issey': 6664, 'bachey': 6665, 'rahey': 6666, 'toh': 6667, 'dishwasher': 6668, 'cordless': 6669, 'vaccum': 6670, 'fo': 6671, 'plain': 6672, 'scrambled': 6673, 'slice': 6674, 'cheese': 6675, 'cheesy': 6676, 'design': 6677, 'signmaking': 6678, 'crowding': 6679, 'rid': 6680, 'instrument': 6681, 'wealthy': 6682, 'wrote': 6683, 'expenditure': 6684, 'promoting': 6685, 'migration': 6686, 'present': 6687, 'unfolds': 6688, 'scrap': 6689, 'orange': 6690, 'recipe': 6691, 'glutenfree': 6692, 'pakistani': 6693, 'bangladeshi': 6694, 'eatable': 6695, 'halal': 6696, 'culprit': 6697, 'ripping': 6698, 'vaka': 6699, 'teamfiji': 6700, 'reposting': 6701, 'bos': 6702, 'booty': 6703, 'covic': 6704, 'gender': 6705, 'economically': 6706, 'hospitality': 6707, 'nonexistent': 6708, 'trendlines': 6709, 'theweeklyshop': 6710, 'vulnerablegroups': 6711, 'ally': 6712, 'stabilize': 6713, 'shaping': 6714, 'wearedtb': 6715, 'fightback': 6716, 'berger': 6717, 'spar': 6718, 'wimbledon': 6719, 'sponsorship': 6720, 'inflate': 6721, 'shame': 6722, 'walsh': 6723, 'boston': 6724, 'dazee': 6725, 'unprotected': 6726, 'ww2': 6727, 'grandchild': 6728, 'obey': 6729, 'historyinthemaking': 6730, 'launched': 6731, 'comprehensive': 6732, 'dshcovid19': 6733, '21dayslockdown': 6734, 'bioweapon': 6735, 'hence': 6736, 'copd': 6737, 'bracken': 6738, 'fortunate': 6739, 'complacent': 6740, 'storage': 6741, 'depleted': 6742, 'factbox': 6743, 'bankruptcy': 6744, 'cm': 6745, 'naveen': 6746, 'luzon': 6747, 'enhanced': 6748, 'los': 6749, 'ba': 6750, 'laguna': 6751, 'barely': 6752, 'zurfi': 6753, 'appoint': 6754, 'deeply': 6755, 'fractured': 6756, 'parliament': 6757, 'discontent': 6758, 'succeed': 6759, 'emt': 6760, 'journey': 6761, 'kfc': 6762, 'spamming': 6763, 'faceless': 6764, 'buddy': 6765, 'compensate': 6766, 'independent': 6767, 'tenant': 6768, 'wasl': 6769, 'instruct': 6770, 'shebuildspeace': 6771, 'shocking': 6772, 'lockdownhouseparty': 6773, 'pretend': 6774, 'ssn': 6775, 'suspended': 6776, 'consecutive': 6777, 'dontbeaspreader': 6778, 'owns': 6779, 'charmin': 6780, 'perform': 6781, 'pg': 6782, 'financialcrisis': 6783, 'pm': 6784, 'bite': 6785, 'pourhouse': 6786, 'grill': 6787, '970': 6788, '669': 6789, '1699': 6790, 'resolved': 6791, 'ryanairrefunderror': 6792, 'ryanairrefund': 6793, 'jello': 6794, '47': 6795, 'tescon': 6796, 'deliberately': 6797, 'damaged': 6798, 'kent': 6799, 'fleet': 6800, 'asap': 6801, 'dedicate': 6802, 'contribute': 6803, 'missourian': 6804, 'moleg': 6805, 'realize': 6806, 'begun': 6807, 'mitch': 6808, 'zeller': 6809, 'upholding': 6810, 'scientific': 6811, 'bedrock': 6812, 'principle': 6813, 'shuts': 6814, '5k': 6815, 'behaving': 6816, 'bankruptbritain': 6817, 'realigned': 6818, 'inequality': 6819, 'zoomed': 6820, 'wrap': 6821, 'flixton': 6822, 'lovestmichaels': 6823, 'everylittlehelps': 6824, 'newsalert': 6825, 'wti': 6826, 'slumped': 6827, '2003': 6828, 'slash': 6829, 'afp': 6830, 'implementing': 6831, '7am': 6832, 'allergic': 6833, 'vertical': 6834, 'afterglow': 6835, 'fade': 6836, 'stockcrash': 6837, 'seeking': 6838, 'dry': 6839, 'wheezy': 6840, 'commencing': 6841, 'moi': 6842, 'hopkins': 6843, 'interactive': 6844, 'dashboard': 6845, 'consumerist': 6846, 'culture': 6847, 'grocerystores': 6848, 'bhukari': 6849, 'unlike': 6850, 'hungar': 6851, 'collapsi': 6852, 'birthday': 6853, 'wth': 6854, 'zoom': 6855, 'meeting': 6856, 'broker': 6857, 'navigating': 6858, 'installment': 6859, 'purna': 6860, 'mishra': 6861, 'outline': 6862, 'effectively': 6863, 'trai': 6864, 'dth': 6865, 'connecti': 6866, 'tight': 6867, 'tag': 6868, 'retailhell': 6869, 'retailproblems': 6870, 'rich': 6871, 'littlebitofhumanity': 6872, 'mondel': 6873, 'hourly': 6874, '125': 6875, 'representative': 6876, 'a1': 6877, 'represent': 6878, 'outsize': 6879, 'immigrantsthrive': 6880, 'outer': 6881, 'packaging': 6882, 'binned': 6883, 'shameless': 6884, 'army': 6885, 'keyworking': 6886, 'coffin': 6887, 'cycled': 6888, 'ticked': 6889, 'th': 6890, 'mavieconfinee': 6891, 'confinementjour2': 6892, 'relax': 6893, 'covfefe': 6894, 'nightreads': 6895, 'threatening': 6896, '3b': 6897, 'affordable': 6898, 'kurdistan': 6899, 'perfume': 6900, 'makeup': 6901, 'garbage': 6902, 'canonspark': 6903, 'tradingstandards': 6904, 'portrayal': 6905, 'nervous': 6906, 'backtracking': 6907, 'slime': 6908, 'ball': 6909, 'tour': 6910, 'donald': 6911, 'mar': 6912, 'g': 6913, 'impostor': 6914, 'mt': 6915, 'sanitized': 6916, 'cuttaxes': 6917, 'dista': 6918, 'fetch': 6919, 'forgotten': 6920, 'staythefhome': 6921, 'thrown': 6922, 'bothering': 6923, 'gaurds': 6924, 'pretending': 6925, 'exotic': 6926, 'getaway': 6927, 'sanitisers': 6928, 'hygienic': 6929, 'dbz': 6930, 'westandwithitaly': 6931, 'bridgwater': 6932, 'helpnhstoday': 6933, 'upcountry': 6934, 'possibility': 6935, 'grandparent': 6936, '79': 6937, 'wishing': 6938, 'concert': 6939, 'gay': 6940, 'unfashionable': 6941, 'elton': 6942, 'involves': 6943, 'legislative': 6944, 'kratom': 6945, 'arvsgt': 6946, 'naughty': 6947, 'bikers': 6948, 'a36': 6949, 'a272': 6950, 'leftover': 6951, 'mac': 6952, 'overshadowed': 6953, 'theme': 6954, 'barter': 6955, 'instance': 6956, 'swap': 6957, 'loo': 6958, 'atliens': 6959, 'emts': 6960, 'directive': 6961, 'downgrade': 6962, 'ameliorate': 6963, 'map': 6964, 'cake': 6965, 'briton': 6966, 'plea': 6967, 'nicest': 6968, 'gassing': 6969, 'soaring': 6970, 'alcoholic': 6971, 'fmcg': 6972, 'stung': 6973, 'subscription': 6974, 'superior': 6975, 'pocket': 6976, 'expat': 6977, 'questionable': 6978, 'trucker': 6979, 'restocked': 6980, 'thankatrucker': 6981, 'navigate': 6982, 'history': 6983, 'remnant': 6984, 'acre': 6985, 'cucumber': 6986, 'resilient': 6987, 'bountiful': 6988, 'harvest': 6989, 'curative': 6990, 'credible': 6991, 'nasties': 6992, 'huh': 6993, 'drugmaker': 6994, 'haus': 6995, 'hanz': 6996, 'b2c': 6997, 'instore': 6998, 'showroom': 6999, 'dream': 7000, 'vehicle': 7001, 'carl': 7002, 'safina': 7003, 'ebola': 7004, '3of': 7005, 'pathogen': 7006, 'originate': 7007, 'lipsman': 7008, 'digitalmarketing': 7009, 'emarketer': 7010, 'javitscenter': 7011, 'newyorkcity': 7012, 'editorial': 7013, 'bro': 7014, 'publicly': 7015, 'traded': 7016, 'lockstep': 7017, 'wineandspirits': 7018, 'rolled': 7019, 'radiofrequencies': 7020, 'destroying': 7021, 'genetic': 7022, '5gtowers': 7023, 'beaming': 7024, 'microwave': 7025, 'corona5g': 7026, 'karen': 7027, 'collecting': 7028, 'weaponsofmassdestruction': 7029, 'chyna': 7030, 'israel': 7031, 'directenergyweapons': 7032, 'cruiseships': 7033, 'jointhedots': 7034, 'girl': 7035, 'schwans': 7036, 'smartphone': 7037, 'damp': 7038, 'soapy': 7039, 'microfiber': 7040, 'earphone': 7041, '1775': 7042, 'patrick': 7043, 'henry': 7044, 'infamous': 7045, 'liberty': 7046, 'satire': 7047, 'patrickhenry': 7048, 'foundingfathers': 7049, 'caravan': 7050, 'registration': 7051, 'alike': 7052, 'shoprites': 7053, 'sickened': 7054, 'workingfromhome': 7055, 'workpjs': 7056, 'iron': 7057, 'ore': 7058, '82': 7059, '92': 7060, 'vale': 7061, '350': 7062, 'nikki': 7063, 'fried': 7064, 'activates': 7065, 'victoria': 7066, 'depth': 7067, 'hongkongers': 7068, 'fabric': 7069, 'childresistant': 7070, 'prerolls': 7071, 'cannabiscommunity': 7072, 'aka': 7073, 'bizarre': 7074, 'censored': 7075, 'actorcon': 7076, 'subject': 7077, 'distracting': 7078, 'kardashian': 7079, 'ac': 7080, '00s': 7081, 'buckle': 7082, '5m': 7083, 'beard': 7084, 'reader': 7085, 'skyward': 7086, 'peep': 7087, 'cowvid19': 7088, 'cowvid': 7089, 'worldofcow': 7090, 'workingfromhomelife': 7091, '2011': 7092, 'revived': 7093, 'suppresses': 7094, 'ash': 7095, 'resold': 7096, 'insanely': 7097, '85p': 7098, 'adequate': 7099, 'solely': 7100, 'overspending': 7101, '2k20': 7102, 'cardio': 7103, 'babydoll': 7104, 'basketball': 7105, 'nfl': 7106, 'nba': 7107, 'peaceful': 7108, 'compilation': 7109, 'insightful': 7110, 'attentive': 7111, 'goddamn': 7112, 'treasure': 7113, 'hunt': 7114, 'universe': 7115, 'kate': 7116, 'telstra': 7117, 'noise': 7118, 'contributing': 7119, 'incentivize': 7120, 'deferred': 7121, 'fijinews': 7122, 'assign': 7123, 'codvid19': 7124, 'vo': 7125, 'provisioned': 7126, 'sized': 7127, 'bridgewater': 7128, 'heavily': 7129, 'dax': 7130, 'congrats': 7131, 'hedgefonds': 7132, 'bug': 7133, 'automatically': 7134, 'subtitle': 7135, 'relationship': 7136, 'optimize': 7137, 'wtutureipsos': 7138, 'prioritize': 7139, 'smaller': 7140, 'urgently': 7141, 'cb': 7142, 'mkt': 7143, 'altogether': 7144, 'rut': 7145, 'ndx': 7146, 'curtis': 7147, 'subjected': 7148, 'helpus': 7149, 'youidiot': 7150, 'jamesmaybloke': 7151, 'richardhammond': 7152, 'topgear': 7153, 'thegrandtour': 7154, 'coronabeer': 7155, 'snippet': 7156, 'learnt': 7157, '81': 7158, 'surged': 7159, 'moisturising': 7160, 'browse': 7161, 'wey': 7162, 'chop': 7163, 'unexpected': 7164, 'healthier': 7165, 'instruction': 7166, 'footmark': 7167, 'internationally': 7168, 'harmonised': 7169, 'adjusted': 7170, 'sokonews': 7171, 'courtesy': 7172, 'appreciation': 7173, 'robinson': 7174, 'eaten': 7175, 'foodbanks': 7176, 'stopukhunger': 7177, 'heri': 7178, 'ensures': 7179, 'alabama': 7180, 'insecurity': 7181, 'ultimate': 7182, 'master': 7183, 'toiletpapermagazine': 7184, 'lionelrichie': 7185, 'covd': 7186, 'presented': 7187, 'artisanal': 7188, 'mining': 7189, 'ukrainian': 7190, 'intheknow': 7191, 'taskforce': 7192, 'oakville': 7193, 'halton': 7194, 'caremongering': 7195, 'coronvirus': 7196, 'pioneer': 7197, 'cdx': 7198, '15th': 7199, '1pm': 7200, 'et': 7201, 'arla': 7202, 'skulduggery': 7203, 'unscrupulous': 7204, 'undervalued': 7205, 'kitconews': 7206, 'metal': 7207, 'cuban': 7208, 'versailles': 7209, 'teamed': 7210, 'sedano': 7211, 'pickled': 7212, 'ginger': 7213, 'cub': 7214, 'tnie': 7215, 'workin': 7216, 'mongs': 7217, 'lip': 7218, 'messagewrap': 7219, 'antimicrobial': 7220, 'facility': 7221, '72': 7222, '605': 7223, 'cylinder': 7224, 'bharat': 7225, 'bhushan': 7226, 'ashu': 7227, 'assuring': 7228, 'maintained': 7229, 'lingers': 7230, 'previously': 7231, 'aerosol': 7232, 'ralphs': 7233, 'growup': 7234, 'mattieuethanhandsanitizer': 7235, '3pack': 7236, 'loveones': 7237, 'remotely': 7238, 'usedtomake': 7239, 'tshirts': 7240, 'makingsupplies': 7241, 'panicbuy': 7242, 'brawled': 7243, 'fmtnews': 7244, 'headwind': 7245, 'ecom': 7246, 'resulting': 7247, 'transacting': 7248, 'offline': 7249, 'feedback': 7250, 'mixed': 7251, 'unpack': 7252, 'grave': 7253, 'risen': 7254, 'former': 7255, 'maidenhead': 7256, 'queueing': 7257, 'refraining': 7258, 'tory': 7259, 'emerge': 7260, 'erupts': 7261, 'grip': 7262, 'bound': 7263, 'chinaliedpeopledied': 7264, 'pmqs': 7265, 'shareholder': 7266, 'union': 7267, 'workersunite': 7268, 'asthma': 7269, 'earn': 7270, 'function': 7271, 'compensated': 7272, 'endangering': 7273, 'creditchat': 7274, 'melissa2': 7275, 'announce': 7276, 'agoing': 7277, 'omnichannel': 7278, 'explores': 7279, 'industryperspectives': 7280, 'retailtrends': 7281, 'fashionindustry': 7282, '0808': 7283, '223': 7284, '1133': 7285, 'foreclosure': 7286, 'restarts': 7287, 'cashflow': 7288, 'reassures': 7289, 'amac': 7290, 'salvation': 7291, 'cleanliness': 7292, 'muhammad': 7293, 'burhaan': 7294, 'fb': 7295, 'nameandshame': 7296, 'universally': 7297, 'oxford': 7298, 'sound': 7299, 'lifestyle': 7300, 'badparenting': 7301, 'gotta': 7302, 'crib': 7303, 'vanish': 7304, 'keyser': 7305, 'ser': 7306, 'resale': 7307, 'resellers': 7308, 'makeuplife': 7309, 'luara': 7310, 'anderson': 7311, 'shaw': 7312, 'mississippi': 7313, 'bcuz': 7314, 'capable': 7315, 'quote': 7316, 'stimuluschecks': 7317, 'philosophy': 7318, 'landlord': 7319, 'flooding': 7320, 'frustration': 7321, 'probily': 7322, 'supportaussiebusiness': 7323, 'fuckcovid19': 7324, 'structure': 7325, 'deluxe': 7326, 'proven': 7327, 'tradeshow': 7328, 'stepmother': 7329, 'decorate': 7330, 'cute': 7331, 'ounce': 7332, 'tablespoon': 7333, 'aloe': 7334, 'vera': 7335, 'allotted': 7336, 'district': 7337, 'apparent': 7338, 'violation': 7339, 'iceland': 7340, 'fronted': 7341, 'famous': 7342, 'singer': 7343, 'encouraging': 7344, 'indoors': 7345, 'afer': 7346, 'sunburnt': 7347, 'netflix': 7348, 'charm': 7349, 'addiction': 7350, 'loses': 7351, 'learning': 7352, 'delgro': 7353, 'smrt': 7354, 'exploring': 7355, 'alkaline': 7356, 'queen': 7357, 'flourish': 7358, 'strengthen': 7359, 'elite': 7360, 'iraqi': 7361, 'organize': 7362, 'enact': 7363, 'democratic': 7364, 'motivationmonday': 7365, 'discourage': 7366, 'supplying': 7367, 'jharkhand': 7368, 'admirable': 7369, 'verbally': 7370, 'physically': 7371, 'accepted': 7372, 'hern': 7373, 'ndez': 7374, '1966': 7375, 'imagined': 7376, 'bathroom': 7377, 'fails': 7378, 'reject': 7379, 'misinformation': 7380, 'followasci': 7381, 'ayurveda': 7382, 'idd': 7383, 'bagging': 7384, '59': 7385, 'pneumonia': 7386, 'pillar': 7387, 'essentially': 7388, 'boomed': 7389, 'pennsylvania': 7390, 'trashing': 7391, '35g': 7392, 'drumlake': 7393, 'eyelid': 7394, 'appear': 7395, 'conti': 7396, 'hoarded': 7397, 'indefinite': 7398, 'quran': 7399, 'khwanis': 7400, 'gouger': 7401, 'texan': 7402, '621': 7403, '0508': 7404, 'confined': 7405, 'howeice': 7406, 'contracted': 7407, 'gate': 7408, 'nokidhungry': 7409, 'id': 7410, 'ramadan': 7411, 'iftar': 7412, 'traweeh': 7413, 'funnel': 7414, 'contraceptive': 7415, 'lovely': 7416, 'dull': 7417, 'chilled': 7418, 'xx': 7419, 'thearchers': 7420, 'employer': 7421, 'globalgoals': 7422, 'dumping': 7423, 'cafeteria': 7424, 'kingdom': 7425, 'horrendous': 7426, 'harrowing': 7427, 'imaginable': 7428, 'traumatized': 7429, 'vegan': 7430, 'moh': 7431, 'deyalsingh': 7432, 'scientic': 7433, 'preval': 7434, 'wiped': 7435, 'abo': 7436, 'stoppanicking': 7437, 'calmdown': 7438, 'thinkofothers': 7439, 'stream': 7440, '4k': 7441, 'hd': 7442, 'alias': 7443, 'irregular': 7444, 'smarter': 7445, 'smartmonkey': 7446, 'tackled': 7447, 'advises': 7448, 'slap': 7449, 'famine': 7450, 'janitorial': 7451, 'housekeeping': 7452, 'streamline': 7453, 'whenever': 7454, '6ft': 7455, 'sticker': 7456, 'germaphobe': 7457, 'researchlive': 7458, 'catastrophe': 7459, 'functioning': 7460, 'addressed': 7461, 'kindergarten': 7462, 'submit': 7463, 'rediscovering': 7464, 'rout': 7465, 'apac': 7466, 'latestnews': 7467, 'tuesdaynews': 7468, 'newspicks': 7469, 'coordinated': 7470, 'lifeline': 7471, 'pathetic': 7472, 'stricken': 7473, 'basis': 7474, 'prayer': 7475, 'drone': 7476, 'guessing': 7477, 'patrol': 7478, 'integral': 7479, 'sander': 7480, 'elected': 7481, 'pittsburgh': 7482, 'gazette': 7483, 'accessibility': 7484, 'discrimination': 7485, 'preach': 7486, 'deed': 7487, 'colour': 7488, 'foodshortages': 7489, 'norway': 7490, 'constantly': 7491, 'dawn': 7492, 'bilbrough': 7493, 'pleaded': 7494, 'forbidding': 7495, 'buyback': 7496, 'dividend': 7497, 'chillin': 7498, 'thenewnormal': 7499, 'governs': 7500, 'nadine': 7501, 'crackdown': 7502, 'consistent': 7503, 'overpricing': 7504, 'tampon': 7505, 'serve': 7506, 'employ': 7507, 'gladly': 7508, 'provid': 7509, 'analyzes': 7510, 'laboratory': 7511, 'regional': 7512, 'usage': 7513, 'pegged': 7514, 'disposed': 7515, 'turkey': 7516, 'boss': 7517, 'overcome': 7518, 'gripping': 7519, 'flowing': 7520, 'mandown': 7521, 'mcnally': 7522, 'egotist': 7523, 'collaborate': 7524, 'cider': 7525, 'denmarkinusa': 7526, 'getanalysis': 7527, 'significantdisruption': 7528, 'accompanying': 7529, 'rioting': 7530, 'foodsupplies': 7531, 'supplychains': 7532, 'economicshock': 7533, 'mondaythoughts': 7534, 'mondayreview': 7535, 'mondaymusings': 7536, 'mondaynight': 7537, 'lifesignals': 7538, 'biosensor': 7539, 'greenville': 7540, 'yeahthatgreenville': 7541, 'giancarlo': 7542, 'easterlunch': 7543, 'cornhall': 7544, 'deli': 7545, 'petunia': 7546, 'hassle': 7547, 'flout': 7548, 'score': 7549, 'fry': 7550, 'beacuse': 7551, 'escape': 7552, 'whatsapp': 7553, '94754284300': 7554, 'oreo': 7555, 'established': 7556, 'congo': 7557, 'lubumbashi': 7558, 'sack': 7559, 'cdf': 7560, 'marked': 7561, 'wic': 7562, 'dependent': 7563, 'lovethyneighbor': 7564, 'grocerystoreworkers': 7565, 'protectlives': 7566, 'savelives': 7567, 'stacking': 7568, 'warrioroflight': 7569, 'warrior': 7570, 'verry': 7571, 'coincidence': 7572, 'catylization': 7573, 'coldwar2020': 7574, 'snap': 7575, 'web': 7576, 'freaked': 7577, 'breitbart': 7578, 'agreement': 7579, 'insidertraitor': 7580, 'fridaythoughts': 7581, 'strange': 7582, 'saviour': 7583, 'dark': 7584, 'gratitudeganstas': 7585, 'hbu': 7586, 'collaborating': 7587, 'host': 7588, 'discussed': 7589, 'stability': 7590, 'fermoy': 7591, 'h2': 7592, 'utilising': 7593, 'label': 7594, 'kinder': 7595, 'continuous': 7596, 'cyclical': 7597, 'wool': 7598, 'mondaymotivation': 7599, 'zone': 7600, 'increasingly': 7601, 'cr': 7602, 'maureen': 7603, 'mahoney': 7604, 'combating': 7605, 'endrobocalls': 7606, 'josh': 7607, 'ross': 7608, 'witness': 7609, 'crowdinsights': 7610, 'hai': 7611, 'sy': 7612, 'jual': 7613, '60ml': 7614, 'shpn': 7615, 'screw': 7616, 'hooded': 7617, 'tyvek': 7618, 'museum': 7619, 'congressional': 7620, 'delegation': 7621, 'equip': 7622, 'outlast': 7623, 'sinister': 7624, 'nitrile': 7625, 'bizarrely': 7626, 'filter': 7627, 'rendering': 7628, 'useless': 7629, 'compulsory': 7630, 'onwards': 7631, 'obligatory': 7632, 'wherever': 7633, 'tantamount': 7634, 'blackmail': 7635, 'stormont': 7636, 'extortion': 7637, 'remunerative': 7638, 'perishable': 7639, 'crop': 7640, 'benefitting': 7641, 'railway': 7642, '109': 7643, 'train': 7644, 'speedy': 7645, 'vulture': 7646, 'descending': 7647, 'prediction': 7648, 'hack': 7649, 'nifty': 7650, 'stylus': 7651, 'pen': 7652, 'pin': 7653, 'pad': 7654, 'otherw': 7655, 'catchup': 7656, 'recovered': 7657, 'fibre': 7658, 'degrading': 7659, 'infusing': 7660, 'sausage': 7661, 'jailed': 7662, 'stolen': 7663, 'amazonpantry': 7664, 'oklahoma': 7665, 'exclusive': 7666, 'barn': 7667, 'runoff': 7668, 'spoonie': 7669, 'dbtskills': 7670, 'storefront': 7671, 'shipped': 7672, 'maxi': 7673, 'strippedmaxi': 7674, 'maxilove': 7675, 'maxidress': 7676, 'nola': 7677, 'neworleans': 7678, 'houstonboutique': 7679, 'pension': 7680, 'saver': 7681, 'defraud': 7682, 'calculated': 7683, '6bn': 7684, 'legislation': 7685, 'initiative': 7686, 'expands': 7687, 'mueller': 7688, 'institutional': 7689, 'clock': 7690, 'travelchatsa': 7691, 'jerseyplug': 7692, 'yall': 7693, 'hmu': 7694, 'aide': 7695, 'ups': 7696, 'collector': 7697, 'supplied': 7698, 'jobless': 7699, '282': 7700, 'gut': 7701, 'punched': 7702, 'developer': 7703, 'lumber': 7704, 'cement': 7705, 'shareknowledge': 7706, 'dcn': 7707, 'amex': 7708, 'thug': 7709, '7k': 7710, 'skyrocketed': 7711, 'original': 7712, 'protips': 7713, 'evidenced': 7714, 'barren': 7715, 'georgian': 7716, 'speechless': 7717, 'brooklyn': 7718, 'burn': 7719, 'tie': 7720, 'yoursafetyismysafety': 7721, 'forqatarstayhome': 7722, 'moci': 7723, 'livestreaming': 7724, 'taobao': 7725, 'persist': 7726, 'ailbaba': 7727, 'jeffclass': 7728, 'jeffsasiatechclass': 7729, 'hcws': 7730, 'brave': 7731, 'safeguarding': 7732, 'minority': 7733, 'misleading': 7734, 'gurugram': 7735, 'assures': 7736, 'guru': 7737, 'gram': 7738, 'defeat': 7739, 'comfortably': 7740, 'dunnes': 7741, 'leo': 7742, 'varadkars': 7743, 'repeat': 7744, 'dystopia': 7745, '851': 7746, 'pennsylvanian': 7747, 'measured': 7748, 'retaliation': 7749, 'tariff': 7750, 'gfc': 7751, 'fintech': 7752, 'govindmilk': 7753, 'happymakers': 7754, 'dailyessentials': 7755, 'itapema': 7756, 'sc': 7757, 'coro': 7758, 'hook': 7759, 'dirty': 7760, 'valet': 7761, 'unavailability': 7762, 'apr': 7763, '1203': 7764, '1182': 7765, '840': 7766, '646': 7767, 'atnix': 7768, 'ya': 7769, 'motto': 7770, 'goodbye': 7771, 'fuckyoucorona': 7772, 'doubt': 7773, 'ah': 7774, 'bye': 7775, 'jhoots': 7776, 'repair': 7777, 'haborfreight': 7778, 'carol': 7779, 'burnett': 7780, 'aljazeera': 7781, 'memo': 7782, '2p': 7783, '11a': 7784, 'pt': 7785, 'mecklenburg': 7786, 'psa': 7787, 'lather': 7788, 'ppeshortage': 7789, 'communist': 7790, 'chinacoronavirus': 7791, 'ccpvirus': 7792, 'proudly': 7793, 'equestrianrelief': 7794, 'voltaire': 7795, 'saddle': 7796, '4times': 7797, 'blamed': 7798, 'ecomomic': 7799, '416': 7800, 'stitt': 7801, 'tuesday': 7802, 'meaning': 7803, 'loonatics': 7804, 'cabinfever': 7805, 'swing': 7806, 'unprepared': 7807, 'phlegm': 7808, 'disappears': 7809, 'breath': 7810, 'recovers': 7811, 'smoothly': 7812, 'secret': 7813, 'draft': 7814, 'diligent': 7815, 'prevalent': 7816, 'donaldtrump': 7817, 'dowfutures': 7818, 'nasdaqcomposite': 7819, 'overweight': 7820, 'ocd': 7821, 'borderline': 7822, 'agoraphobic': 7823, 'addicted': 7824, 'floaty': 7825, 'chair': 7826, 'purell': 7827, 'picnicking': 7828, 'ballgame': 7829, 'replicates': 7830, 'squaddies': 7831, 'bogroll': 7832, 'fired': 7833, 'bev': 7834, 'horrid': 7835, 'brampton': 7836, 'layoff': 7837, 'completetly': 7838, 'flattened': 7839, 'theirs': 7840, 'leather': 7841, 'internationa': 7842, 'extend': 7843, 'custodial': 7844, 'mention': 7845, '30moredays': 7846, 'obligation': 7847, 'northmart': 7848, 'freezing': 7849, 'path': 7850, 'southcarolina': 7851, 'jokecoughing': 7852, 'imploring': 7853, 'behave': 7854, 'jostled': 7855, 'cajoled': 7856, 'bagger': 7857, 'msnbc': 7858, 'nytimes': 7859, 'wsj': 7860, 'cnbc': 7861, 'politico': 7862, 'huffpost': 7863, 'drudge': 7864, 'npr': 7865, 'dailykos': 7866, 'thehill': 7867, 'wapo': 7868, 'nbc': 7869, 'slate': 7870, 'aarp': 7871, 'sydney': 7872, 'photojournalism': 7873, 'documentary': 7874, 'documentaryphotography': 7875, 'reportage': 7876, 'phot': 7877, 'kidney': 7878, 'kidneybeans': 7879, 'tescos': 7880, 'consumables': 7881, 'trapped': 7882, 'livelihood': 7883, 'washed': 7884, 'influence': 7885, 'sl': 7886, 'unlawful': 7887, 'unsubscribing': 7888, 'durables': 7889, 'dependence': 7890, 'anger': 7891, '880': 7892, 'bullion': 7893, 'midday': 7894, 'port': 7895, 'capture': 7896, 'bioeconomy': 7897, 'mol': 7898, 'windscreen': 7899, 'brent': 7900, 'xbrusd': 7901, 'xbr': 7902, 'divorce': 7903, 'renegotiate': 7904, 'settlement': 7905, 'disadvantaged': 7906, 'rapacious': 7907, 'generalstrike': 7908, 'ladoj': 7909, 'hotline': 7910, '351': 7911, '4889': 7912, 'dispute': 7913, 'lalege': 7914, 'lagov': 7915, 'diminishing': 7916, 'tim': 7917, 'leunig': 7918, 'succeeded': 7919, 'adviser': 7920, 'coloring': 7921, 'lego': 7922, 'slimming': 7923, 'achievement': 7924, 'cupcake': 7925, 'dough': 7926, 'pot': 7927, 'loving': 7928, 'quiet': 7929, 'atm': 7930, 'warrant': 7931, 'consumerprotection': 7932, 'prevented': 7933, 'racism': 7934, 'hyderabad': 7935, 'facial': 7936, 'tanmay': 7937, 'mehta': 7938, 'indiafightscoronavirus': 7939, 'knock': 7940, 'application': 7941, 'developed': 7942, 'ecommercebusiness': 7943, 'woulf': 7944, 'abouttime': 7945, '14days': 7946, 'spare': 7947, 'shirt': 7948, 'lowered': 7949, 'lazzaro': 7950, 'spallanzani': 7951, 'rome': 7952, 'forzaroma': 7953, 'romacares': 7954, 'charter': 7955, 'luggage': 7956, 'accommodate': 7957, 'bullard': 7958, 'regulate': 7959, 'que': 7960, 'float': 7961, 'nahh': 7962, 'optician': 7963, 'wolstanton': 7964, 'stoke': 7965, 'vandalized': 7966, 'annualised': 7967, 'robin': 7968, 'bhar': 7969, 'offset': 7970, 'oshawa': 7971, 'ont': 7972, 'bcpoli': 7973, 'chatting': 7974, 'complimentary': 7975, 'dig': 7976, 'easiest': 7977, 'fastest': 7978, 'efficient': 7979, 'karel': 7980, 'spaniard': 7981, 'rant': 7982, 'gofundme': 7983, 'monetary': 7984, 'subsided': 7985, 'heavy': 7986, '9ja': 7987, 'insulated': 7988, 'insensitive': 7989, 'unconcerned': 7990, 'vodka': 7991, 'pernod': 7992, 'ricard': 7993, 'fort': 7994, 'smith': 7995, 'tweak': 7996, 'ar': 7997, 'conormcgregor': 7998, 'visor': 7999, 'respirator': 8000, 'oxygen': 8001, 'allows': 8002, 'duplicate': 8003, 'mutualaid': 8004, 'monopolise': 8005, 'arrived': 8006, 'debate': 8007, 'naturally': 8008, 'fuss': 8009, 'didnt': 8010, 'ownership': 8011, 'decentralized': 8012, 'generational': 8013, 'reference': 8014, 'bloc': 8015, 'usnews': 8016, 'infromation': 8017, 'candy': 8018, 'glimpse': 8019, 'craze': 8020, 'korean': 8021, 'spicy': 8022, 'shootout': 8023, 'bullying': 8024, 'unsavory': 8025, 'canterbury': 8026, 'shoppingonline': 8027, 'asymptomatic': 8028, 'stocker': 8029, 'ke': 8030, 'bungoma': 8031, 'container': 8032, 'elimination': 8033, 'iq': 8034, 'block': 8035, 'gradually': 8036, 'instant': 8037, 'hy': 8038, 'vee': 8039, 'plasticbagban': 8040, 'twist': 8041, 'presumably': 8042, 'readymeals': 8043, 'hithergreen': 8044, 'lewisham': 8045, 'recipient': 8046, 'bartholow': 8047, 'loathe': 8048, 'mazon': 8049, 'wondered': 8050, 'arrow': 8051, 'race': 8052, 'sicken': 8053, 'dealt': 8054, 'foresee': 8055, 'declining': 8056, 'persistent': 8057, 'stakeholder': 8058, 'soo': 8059, 'stranger': 8060, 'acceptable': 8061, 'lockdowncanada': 8062, 'supermarketdating': 8063, 'day17': 8064, 'marc': 8065, 'schindler': 8066, 'skim': 8067, 'compromise': 8068, 'quart': 8069, 'unflushable': 8070, 'rag': 8071, 'delivers': 8072, 'dispenses': 8073, 'vanloon': 8074, 'counting': 8075, 'lifesaving': 8076, 'ck': 8077, 'ckont': 8078, 'potty': 8079, 'insecure': 8080, 'noticing': 8081, 'intake': 8082, 'bodas': 8083, 'uber': 8084, '8k': 8085, 'felicia': 8086, 'lockdownug': 8087, 'attn': 8088, 'mart': 8089, 'iqaluit': 8090, 'notchronosandcars': 8091, '5l': 8092, 'rr': 8093, 'sva': 8094, '550bhp': 8095, 'suited': 8096, 'offload': 8097, 'bonkers': 8098, 'sporting': 8099, 'matching': 8100, 'yucky': 8101, 'xenophobe': 8102, 'fatten': 8103, 'helpnothurt': 8104, 'lookaftereachother': 8105, 'holdaway': 8106, 'hantavirus': 8107, 'rodent': 8108, 'watchful': 8109, 'protezionecivile': 8110, 'airpods': 8111, 'ons': 8112, '9to5mac': 8113, 'techjunkienews': 8114, 'harper': 8115, 'wood': 8116, 'pier': 8117, 'stayhomesa': 8118, 'wallstreet': 8119, 'helppeoplefirst': 8120, 'momentous': 8121, 'benefiting': 8122, 'philanthropy': 8123, 'fest': 8124, 'jose': 8125, 'contactless': 8126, 'locate': 8127, 'shameonyou': 8128, 'accuse': 8129, 'hiding': 8130, 'tilfurthernotice': 8131, 'painting': 8132, 'africanart': 8133, 'cameroon': 8134, '38': 8135, 'mailed': 8136, 'boise': 8137, 'idaho': 8138, 'iot': 8139, 'enterprise': 8140, 'royal': 8141, 'highness': 8142, 'registered': 8143, 'drunkard': 8144, 'comingyi': 8145, 'tremendous': 8146, 'veterinarian': 8147, 'exporting': 8148, 'overseas': 8149, 'suppressing': 8150, 'vunerable': 8151, 'scooter': 8152, 'dick': 8153, 'consumerawareness': 8154, '5t': 8155, '2t': 8156, 'wire': 8157, 'anticipate': 8158, 'gcc': 8159, 'structural': 8160, 'vanishing': 8161, 'opposite': 8162, 'tail': 8163, 'hamilton': 8164, 'poshmark': 8165, 'shopforacause': 8166, 'mobilio': 8167, 'specifically': 8168, 'sed': 8169, 'recovering': 8170, 'rakamoto': 8171, 'crypto': 8172, 'bitcoin': 8173, 'coin': 8174, 'portugal': 8175, 'portuguese': 8176, 'sonae': 8177, 'continente': 8178, 'worten': 8179, 'antoniocosta': 8180, 'portugalst': 8181, 'spree': 8182, 'slam': 8183, 'nancy': 8184, 'pelosi': 8185, 'laundry': 8186, 'additive': 8187, 'crisp': 8188, 'linen': 8189, '41oz': 8190, 'snatched': 8191, 'title': 8192, 'fantasy': 8193, 'tinkering': 8194, 'hamont': 8195, 'sarawat': 8196, 'ksa': 8197, 'jeddah': 8198, 'madinah': 8199, 'coronaupdate': 8200, 'pity': 8201, 'unforeseen': 8202, 'majeure': 8203, 'psychology': 8204, 'friking': 8205, 'payback': 8206, 'crashing': 8207, 'overhang': 8208, 'influx': 8209, 'refugee': 8210, 'protectyourworkers': 8211, 'diabetic': 8212, 'labour': 8213, '22nd': 8214, 'troll': 8215, 'criticised': 8216, 'affordability': 8217, 'remarkably': 8218, 'staysafestayathome': 8219, 'naked': 8220, 'caetgories': 8221, 'sustain': 8222, 'suffered': 8223, 'marketed': 8224, 'circulating': 8225, 'wfh': 8226, 'steepest': 8227, 'deflation': 8228, 'consumerspending': 8229, 'prevailing': 8230, 'uganda': 8231, 'ugandan': 8232, 'enjoys': 8233, 'basingstoke': 8234, 'bidding': 8235, 'dovetail': 8236, 'frantically': 8237, 'teddie': 8238, 'leadership': 8239, 'precedent': 8240, 'reclassified': 8241, 'impose': 8242, 'canceling': 8243, 'securing': 8244, 'ventured': 8245, 'profusely': 8246, 'thanked': 8247, 'subsequent': 8248, 'ethical': 8249, 'beahelper': 8250, 'dietitian': 8251, 'restraint': 8252, 'poorest': 8253, 'cyber': 8254, 'magecart': 8255, 'skimming': 8256, 'cybercrime': 8257, 'cyberthreats': 8258, 'shifted': 8259, 'perception': 8260, 'newest': 8261, 'intelligence': 8262, 'unveils': 8263, 'altering': 8264, 'showmeyourshelves': 8265, 'reserved': 8266, 'dubuque': 8267, 'stayhomechallenge': 8268, 'trumpplague': 8269, 'occurring': 8270, 'arrgghh': 8271, 'instoreexperience': 8272, 'percentage': 8273, 'prople': 8274, 'nairobi': 8275, 'busia': 8276, 'somehing': 8277, 'noo': 8278, 'kot': 8279, 'utawezana': 8280, 'culinary': 8281, 'alright': 8282, 'diagnostic': 8283, 'detection': 8284, 'rock': 8285, 'fingertip': 8286, 'craft': 8287, 'version': 8288, 'graphic': 8289, 'energyco': 8290, 'nessel': 8291, '572': 8292, 'idris': 8293, 'barbershop': 8294, 'secondary': 8295, 'biden': 8296, 'sap': 8297, 'sand': 8298, 'arrives': 8299, 'intentionally': 8300, 'aolonline': 8301, 'shenanigan': 8302, 'awesome': 8303, 'taxpayer': 8304, '2018': 8305, 'frightening': 8306, 'louder': 8307, 'oilpatch': 8308, 'debasish': 8309, 'cardmembers': 8310, 'flexibility': 8311, 'opt': 8312, 'rbi': 8313, 'regulatory': 8314, '1800': 8315, '419': 8316, '2122': 8317, 'claimed': 8318, 'stroke': 8319, 'demise': 8320, 'boujee': 8321, 'rainbow': 8322, 'colored': 8323, 'immunesystem': 8324, 'immunesupport': 8325, 'knit': 8326, 'fortnight': 8327, 'favor': 8328, 'romantic': 8329, 'newly': 8330, 'mark': 8331, 'gentleman': 8332, 'quarantinedromance': 8333, 'leveraged': 8334, 'heartbreak': 8335, 'firework': 8336, 'lawn': 8337, 'legend': 8338, 'mapleholistics': 8339, 'guildford': 8340, 'eve': 8341, 'sparking': 8342, '4588221st': 8343, 'incredibly': 8344, 'tpchallenge': 8345, 'stabilise': 8346, 'fishery': 8347, 'recession2020': 8348, 'cannabisproducts': 8349, 'wheeze': 8350, 'birmingham': 8351, 'calpol': 8352, 'shutthemup': 8353, 'mega': 8354, 'communism': 8355, 'younger': 8356, 'losing': 8357, 'comp': 8358, 'tec': 8359, 'safetytips': 8360, 'discard': 8361, 'jaffa': 8362, 'shri': 8363, 'gopalaiah': 8364, 'hon': 8365, 'ble': 8366, 'metrology': 8367, 'dd': 8368, 'chandana': 8369, '12pm': 8370, '04': 8371, '080': 8372, '23542599': 8373, '699': 8374, 'interact': 8375, 'recommends': 8376, 'nonmedical': 8377, 'doc': 8378, 'iaarchitects': 8379, 'remained': 8380, 'architecture': 8381, 'quarantining': 8382, 'buck': 8383, 'smarten': 8384, 'ribbon': 8385, 'modern': 8386, 'appts': 8387, 'hotmessus': 8388, 'conscious': 8389, 'chairman': 8390, 'fcb': 8391, 'googling': 8392, 'shake': 8393, 'combed': 8394, 'stats': 8395, 'snapshot': 8396, 'effecting': 8397, 'martech': 8398, 'swiss': 8399, 'syngenta': 8400, 'monthey': 8401, 'releasethesnydercut': 8402, 'batmanvsuperman': 8403, 'yamah': 8404, 'kezily': 8405, '52': 8406, 'flee': 8407, 'midnight': 8408, 'produced': 8409, 'minimize': 8410, 'dignity': 8411, 'command': 8412, 'breast': 8413, 'cabbage': 8414, 'tom': 8415, 'coburn': 8416, 'coordinate': 8417, 'spokesman': 8418, 'respectfully': 8419, 'continuation': 8420, 'dontb': 8421, '200ml': 8422, 'coronastopkarona': 8423, '210': 8424, 'stib': 8425, '37': 8426, 'legitimately': 8427, 'bekindtoeachother': 8428, 'trumpviruscoverup': 8429, 'votebluetosaveamerica': 8430, 'voteblue2020': 8431, 'hammerkopf': 8432, 'spiv': 8433, 'reselling': 8434, 'desperately': 8435, 'staycalm': 8436, 'carefulness': 8437, 'carelessness': 8438, 'pollution': 8439, 'rudy': 8440, 'giuliani': 8441, 'disappear': 8442, 'heelcomic': 8443, 'comedian': 8444, 'steady': 8445, 'underway': 8446, 'fitted': 8447, 'sterilize': 8448, 'askgovwhitmer': 8449, 'choosing': 8450, 'masked': 8451, 'costar': 8452, 'newer': 8453, 'plexiglas': 8454, 'escaping': 8455, 'shoe': 8456, 'overwhelming': 8457, 'the6ix': 8458, 'jason': 8459, 'skypes': 8460, 'unnecessarily': 8461, 'stageit': 8462, 'blink': 8463, 'geared': 8464, 'quota': 8465, 'reminds': 8466, 'birdbox': 8467, 'togetherathome': 8468, 'criticized': 8469, 'pile': 8470, 'uncaring': 8471, 'therona': 8472, 'eua': 8473, 'enquiry': 8474, 'relating': 8475, 'postman': 8476, 'rosy': 8477, 'pleading': 8478, 'scrambling': 8479, 'med': 8480, 'trumpmeltdown': 8481, 'perfumery': 8482, 'mullin3': 8483, 'depend': 8484, 'cook': 8485, 'policethesupermarkets': 8486, 'fatal': 8487, 'indication': 8488, 'houring': 8489, 'wakefield': 8490, 'patent': 8491, 'arses': 8492, 'countermeasure': 8493, 'scolded': 8494, 'aa': 8495, 'valuable': 8496, 'new2020': 8497, 'trusted': 8498, 'iconmeals': 8499, 'prep': 8500, 'jessejames10': 8501, 'sponsored': 8502, 'dodge': 8503, 'interhill': 8504, 'adaa': 8505, 'lax': 8506, 'ruby': 8507, 'princess': 8508, 'guardian': 8509, 'dispose': 8510, 'onpoli': 8511, 'anhydrous': 8512, 'ammonia': 8513, 'input': 8514, 'downside': 8515, 'industrial': 8516, 'alarmist': 8517, 'overly': 8518, 'nih': 8519, '1bn': 8520, 'nt': 8521, 'fabulous': 8522, 'scrutinised': 8523, 'collusion': 8524, 'nb': 8525, 'arising': 8526, 'secretary': 8527, 'simrandeep': 8528, 'singh': 8529, 'jammu': 8530, 'neat': 8531, 'syrup': 8532, 'biking': 8533, 'derrell': 8534, 'peel': 8535, 'agnews': 8536, 'topstory': 8537, 'cattlemarkets': 8538, 'farmincome': 8539, 'excited': 8540, 'lorain': 8541, 'battling': 8542, 'whomever': 8543, 'canon': 8544, 'temperaturecontrolsolutions': 8545, 'prolong': 8546, 'swine': 8547, 'graduate': 8548, 'ridden': 8549, 'seemingly': 8550, 'manufactured': 8551, 'realistic': 8552, 'conclusion': 8553, 'nationally': 8554, 'regionally': 8555, 'realizing': 8556, 'wind': 8557, 'heat': 8558, 'invest': 8559, 'proof': 8560, 'californian': 8561, 'caneedsyou': 8562, 'query': 8563, 'googletrends': 8564, 'searchresults': 8565, 'gl': 8566, 'chase': 8567, 'designated': 8568, 'buckscounty': 8569, '0469315906': 8570, 'atanda': 8571, 'afeez': 8572, 'ademola': 8573, 'gtbank': 8574, 'hustling': 8575, 'dem': 8576, 'fooled': 8577, 'contacting': 8578, 'texting': 8579, 'minimal': 8580, 'parenting': 8581, 'envoy': 8582, 'david': 8583, 'nabarro': 8584, 'ndtv': 8585, 'commit': 8586, 'cookbook': 8587, 'alternatively': 8588, 'isolationtips': 8589, 'wellbeingtips': 8590, 'hartman': 8591, 'spotlight': 8592, 'functionalfoods': 8593, 'functionality': 8594, 'immunity': 8595, 'stigma': 8596, 'booster': 8597, 'queing': 8598, 'carpark': 8599, 'lacking': 8600, 'spiral': 8601, 'represented': 8602, 'liz': 8603, 'hallock': 8604, 'beloved': 8605, 'fossil': 8606, 'finite': 8607, 'divesting': 8608, 'dinosaur': 8609, 'skint': 8610, 'boredom': 8611, 'divorced': 8612, 'numerator': 8613, 'redmeat': 8614, 'hoardersgonnahoard': 8615, 'broad': 8616, '25th': 8617, 'pleasant': 8618, 'haul': 8619, 'apologizes': 8620, 'bheki': 8621, 'cele': 8622, 'enca': 8623, 'criminalized': 8624, 'cigarette': 8625, 'threatened': 8626, 'kissing': 8627, 'abdul': 8628, 'oblivious': 8629, 'enforcing': 8630, 'lord': 8631, 'cow': 8632, 'theshoppies': 8633, 'teleworking': 8634, '12p': 8635, '8ppl': 8636, 'notgoodenough': 8637, '86y': 8638, '300miles': 8639, 'bluffing': 8640, 'arab': 8641, 'length': 8642, 'turner': 8643, 'andler': 8644, 'inittogether': 8645, 'goodnews': 8646, 'ruleyournest': 8647, 'screened': 8648, 'forehead': 8649, 'scanner': 8650, 'commonsense': 8651, 'uspoli': 8652, 'indianrailways': 8653, 'withdrew': 8654, 'concessional': 8655, 'precautionary': 8656, 'ians': 8657, 'colony': 8658, 'trap': 8659, 'confronting': 8660, 'mitchell': 8661, 'gilead': 8662, 'submitted': 8663, 'rescind': 8664, 'orphan': 8665, 'designation': 8666, 'granted': 8667, 'investigational': 8668, 'waiving': 8669, 'accompany': 8670, 'mentalillness': 8671, 'mentalhealthawareness': 8672, 'mentalillnessawareness': 8673, 'bandito': 8674, 'tumbled': 8675, 'booming': 8676, 'pd': 8677, 'daycare': 8678, 'govmnts': 8679, 'commodification': 8680, 'buffooninoffice': 8681, 'factual': 8682, 'laden': 8683, 'rachelmaddow': 8684, 'blathering': 8685, 'appealing': 8686, 'tneans': 8687, 'table': 8688, 'tap': 8689, '99b': 8690, 'southsudan': 8691, 'prior': 8692, 'foodinsecurity': 8693, 'freed': 8694, 'civilization': 8695, 'chinesewuhanvirus': 8696, 'chineseinfluenza': 8697, 'stunning': 8698, 'hype': 8699, 'glaring': 8700, 'brunt': 8701, 'dust': 8702, 'beaten': 8703, 'remeber': 8704, 'reminder': 8705, 'redundancy': 8706, 'recruiting': 8707, 'massow': 8708, 'agricultural': 8709, 'ease': 8710, 'weightloss': 8711, 'diet': 8712, 'quarentinelife': 8713, 'laughitthrough': 8714, 'staypositive': 8715, '492kg': 8716, 'thoughtless': 8717, 'wasteless': 8718, 'pitch': 8719, 'appalling': 8720, 'classic': 8721, '130': 8722, 'heritage': 8723, 'favourite': 8724, 'nobel': 8725, 'quatantine': 8726, 'nurtricrops': 8727, 'quinoa': 8728, 'rob': 8729, 'bandana': 8730, 'mexico': 8731, 'argentina': 8732, 'ambitious': 8733, 'coronachainscare': 8734, 'accumulating': 8735, 'undoc': 8736, 'indiscriminate': 8737, 'thus': 8738, 'threatens': 8739, 'featuring': 8740, 'b2b': 8741, 'd2c': 8742, 'watershed': 8743, 'pivoting': 8744, 'linkedin': 8745, 'associated': 8746, 'proceed': 8747, 'clinical': 8748, 'pessimism': 8749, 'shanghai': 8750, 'globaltrade': 8751, 'globaleconomy': 8752, 'polis': 8753, 'copolitics': 8754, 'maskchallenge': 8755, 'yay': 8756, 'leafy': 8757, 'surrey': 8758, 'educated': 8759, 'fck': 8760, 'nhsworkers': 8761, 'starkist': 8762, 'cracker': 8763, 'birx': 8764, 'sacramento': 8765, 'bee': 8766, 'nationalemergency': 8767, 'stir': 8768, 'polluting': 8769, 'climatecrisis': 8770, 'heel': 8771, 'weary': 8772, 'realized': 8773, 'thrust': 8774, 'panick': 8775, 'vegetarian': 8776, 'ghost': 8777, 'shoppingcrazy': 8778, 'washable': 8779, 'copious': 8780, 'handwashing': 8781, 'af': 8782, 'muji': 8783, 'funded': 8784, 'shore': 8785, 'cache': 8786, 'umm': 8787, 'aussie': 8788, 'jacksonville': 8789, 'reaching': 8790, 'doyoufeelluckypunk': 8791, 'mexicanstandoff': 8792, 'ring': 8793, 'researcher': 8794, 'techforgood': 8795, 'smarttech': 8796, 'wearabletech': 8797, 'iced': 8798, 'adopt': 8799, 'summerbod2021': 8800, 'autumm': 8801, 'inconvenienc': 8802, 'nurseproblems': 8803, 'regard': 8804, 'baguio': 8805, 'observing': 8806, 'disiplinamuna': 8807, 'tatakbaguio': 8808, 'philippine': 8809, 'supermarketnews': 8810, 'injection': 8811, 'alt': 8812, 'bearish': 8813, 'equal': 8814, 'probability': 8815, 'confirming': 8816, '2460': 8817, 'protectionism': 8818, 'net': 8819, 'tf': 8820, 'consumerconfidence': 8821, 'dipped': 8822, 'showed': 8823, 'anxietyindex': 8824, 'century': 8825, 'balance': 8826, 'therefore': 8827, 'alternativefacts': 8828, 'poisoning': 8829, 'pepperoni': 8830, 'tfl': 8831, 'funeral': 8832, 'storr': 8833, 'coatbridge': 8834, 'cab': 8835, '01236': 8836, '421447': 8837, 'casonline': 8838, 'gael': 8839, 'fashingbauer': 8840, 'nonno': 8841, 'pappou': 8842, 'southern': 8843, 'summer': 8844, 'achieve': 8845, 'reminding': 8846, 'trashed': 8847, 'introducing': 8848, 'masterclass': 8849, 'playbook': 8850, 'gary': 8851, 'vaynerchuk': 8852, 'a9': 8853, 'bolster': 8854, 'bunny': 8855, 'tooth': 8856, 'fairy': 8857, 'parentinginapandemic': 8858, 'easterbunny': 8859, 'toothfairy': 8860, 'acted': 8861, 'accepting': 8862, 'carside': 8863, 'mid': 8864, 'marianos': 8865, 'played': 8866, 'mariano': 8867, 'demonstrably': 8868, 'bt': 8869, 'logicallysummaries': 8870, 'uh': 8871, 'grimy': 8872, 'requested': 8873, 'rhapsody': 8874, 'vinyl': 8875, 'dominated': 8876, 'fog': 8877, 'horn': 8878, 'upcoming': 8879, 'quiz': 8880, 'quizetimemorningswithamazon': 8881, 'godrej': 8882, 'patanjali': 8883, 'hul': 8884, 'coronahero': 8885, 'campus': 8886, 'alhadulilah': 8887, 'reunion': 8888, 'madam': 8889, 'pmb': 8890, 'palliative': 8891, 'bvn': 8892, 'transferred': 8893, 'untapped': 8894, 'buylists': 8895, 'hunkering': 8896, 'indicating': 8897, 'screeching': 8898, 'historically': 8899, 'enewsletter': 8900, 'forest': 8901, '1per': 8902, 'intend': 8903, 'workfromhome': 8904, 'bakkt': 8905, '300m': 8906, 'digitalsecurities': 8907, 'seriesa': 8908, 'seriesb': 8909, 'securitytoken': 8910, 'sto': 8911, 'securitytokens': 8912, 'digitalsecurity': 8913, 'serviceindustry': 8914, '36': 8915, 'laid': 8916, 'pouring': 8917, 'passion': 8918, 'writing': 8919, 'arak': 8920, 'bali': 8921, 'nationalizing': 8922, 'dolling': 8923, 'def': 8924, 'applying': 8925, 'unveiled': 8926, 'differentiate': 8927, 'closethemalls': 8928, 'token': 8929, 'blighty': 8930, 'mauritius': 8931, 'beautiful': 8932, 'paradisal': 8933, 'paradise': 8934, 'mentality': 8935, 'casually': 8936, 'jolly': 8937, 'inquire': 8938, 'sheltered': 8939, 'interaction': 8940, 'locking': 8941, 'batmeat': 8942, 'oversold': 8943, 'retracement': 8944, '2800': 8945, 'dreaded': 8946, 'cbdd': 8947, 'lee': 8948, 'tennessee': 8949, 'robbed': 8950, 'burglarized': 8951, 'fca': 8952, 'specialty': 8953, 'fletcher': 8954, 'george': 8955, 'silber': 8956, 'banner': 8957, 'abundancemindset': 8958, 'unreal': 8959, 'cbob': 8960, '85': 8961, '28': 8962, 'psychologist': 8963, 'yarrow': 8964, 'psyche': 8965, 'tender': 8966, 'rfp': 8967, 'disinfector': 8968, 'ethericoil': 8969, 'ether': 8970, 'ethylalcohol': 8971, 'hygienedevice': 8972, 'hygienekit': 8973, 'hygienicbag': 8974, 'rectifiedspirit': 8975, 'sanitization': 8976, 'snyders': 8977, 'centurytowers': 8978, 'shoplocalkcmo': 8979, 'snyderssupermarket': 8980, 'pickupanddelivery': 8981, 'kcmo': 8982, 'stayactive': 8983, 'stayhealthy': 8984, 'golflife': 8985, 'elk': 8986, 'grove': 8987, 'flashing': 8988, 'clarification': 8989, 'seo': 8990, 'sem': 8991, 'smo': 8992, 'smm': 8993, 'websitedesign': 8994, 'websitedevelopment': 8995, 'mobileappdevelopment': 8996, 'tirelessly': 8997, 'uninterrupted': 8998, 'tdsb': 8999, '1200': 9000, 'ppv': 9001, 'ifollow': 9002, 'fhd': 9003, '07939252948': 9004, 'iptv': 9005, 'firestick': 9006, 'magbox': 9007, 'ipeetv': 9008, 'interacted': 9009, 'cliamtechange': 9010, 'losangeles': 9011, 'gunsales': 9012, 'eligibility': 9013, 'cloud': 9014, 'infant': 9015, 'steelguru': 9016, 'oilpricecrash': 9017, 'brentcrude': 9018, 'squeo': 9019, 'implied': 9020, 'honest': 9021, 'depriving': 9022, 'nike': 9023, 'outfitter': 9024, 'armor': 9025, 'trajectory': 9026, 'sinha': 9027, 'portioning': 9028, 'duffex': 9029, 'losfeliz': 9030, 'ghosttown': 9031, 'loaf': 9032, 'soreen': 9033, 'parade': 9034, 'sixth': 9035, 'avenue': 9036, 'victorious': 9037, 'roman': 9038, 'debit': 9039, 'snide': 9040, 'guaranteed': 9041, 'handsoap': 9042, 'sosamerica': 9043, 'sake': 9044, 'cheering': 9045, 'petrolprice': 9046, 'americafirst': 9047, '131': 9048, '882': 9049, 'dried': 9050, 'diversify': 9051, 'localbusiness': 9052, 'mobbing': 9053, 'kohl': 9054, 'excerpt': 9055, 'lasting': 9056, 'consume': 9057, 'dug': 9058, 'channelsight': 9059, 'analyse': 9060, 'cruel': 9061, 'jill': 9062, 'realizes': 9063, 'jcpenney': 9064, 'impressed': 9065, 'bowl': 9066, 'begging': 9067, 'wanker': 9068, 'preference': 9069, 'rewarded': 9070, 'chinamarketing': 9071, 'theskinny': 9072, 'worldhealthday': 9073, 'fetterhealth': 9074, 'rattled': 9075, 'ngisho': 9076, 'wena': 9077, 'depreciation': 9078, 'rand': 9079, 'slowed': 9080, 'lira': 9081, '20mbs': 9082, 'notoviptesting': 9083, 'freemasstestingnowph': 9084, 'terrifying': 9085, 'floating': 9086, 'remaining': 9087, 'maintaining': 9088, 'pistachio': 9089, 'retailworkers': 9090, 'weneedrationing': 9091, 'austin': 9092, '46m': 9093, 'airborne': 9094, 'itr': 9095, 'alan': 9096, 'beaulieu': 9097, 'edition': 9098, 'biweekly': 9099, 'placed': 9100, 'jennifer': 9101, 'chudy': 9102, 'portage': 9103, 'mineral': 9104, 'irreversible': 9105, 'appealed': 9106, 'revers': 9107, 'unfolding': 9108, 'advertiser': 9109, 'soil': 9110, 'spat': 9111, 'hoped': 9112, 'meltdown': 9113, 'abhishek': 9114, 'muralidharan': 9115, 'whatpackaging': 9116, 'spends': 9117, 'raw': 9118, 'material': 9119, 'angeles': 9120, 'uditraj': 9121, 'harvesting': 9122, 'exempt': 9123, 'insecticide': 9124, 'msp': 9125, 'spurred': 9126, 'strategic': 9127, 'overproduction': 9128, 'detrimental': 9129, 'venezuela': 9130, 'algeria': 9131, 'ecuador': 9132, 'steep': 9133, 'intercity': 9134, 'ganja': 9135, 'sayentrepreneur': 9136, 'nk95': 9137, '3ply': 9138, 'syima': 9139, 'icymi': 9140, 'dougmcmillon': 9141, 'counted': 9142, 'essentialworker': 9143, 'cork': 9144, 'pound': 9145, 'uptick': 9146, 'yelp': 9147, 'businesstrategyandprofitability': 9148, 'financialnews': 9149, 'mobilepayments': 9150, 'onlineordering': 9151, 'admission': 9152, 'goto': 9153, 'stayathomesavelives': 9154, 'italystaystrong': 9155, 'rwandan': 9156, 'opting': 9157, 'king': 9158, 'cresskill': 9159, 'enjoyed': 9160, 'tpr': 9161, 'payitforward': 9162, 'supportsmallbusiness': 9163, 'shelteringinplace': 9164, 'discovery': 9165, 'thermal': 9166, 'detecting': 9167, 'camera': 9168, 'robust': 9169, 'stabbing': 9170, 'lg': 9171, 'mathew': 9172, 'mcconaughey': 9173, 'coronaviruses': 9174, 'morbidity': 9175, 'npa': 9176, 'rajan': 9177, 'prof': 9178, 'miguel': 9179, 'gomez': 9180, 'ebt': 9181, 'reimbursing': 9182, 'june': 9183, 'aftermath': 9184, 'chosen': 9185, 'pictured': 9186, 'bcdocs': 9187, 'gaining': 9188, '29': 9189, '2017': 9190, 'puppet': 9191, 'asleep': 9192, 'waking': 9193, 'censor': 9194, 'upshot': 9195, 'armageddon': 9196, 'coronageddon': 9197, 'deeper': 9198, 'egoism': 9199, 'coexistence': 9200, 'mutual': 9201, 'celebrated': 9202, 'culling': 9203, 'mitigating': 9204, 'guilt': 9205, 'carlsberg': 9206, 'ambition': 9207, 'libyan': 9208, 'improve': 9209, 'unruly': 9210, 'importing': 9211, 'worsens': 9212, 'futurefocus': 9213, 'conversation': 9214, 'switchtostandard': 9215, 'definition': 9216, 'galaxy': 9217, 'winding': 9218, 'defeated': 9219, 'parson': 9220, 'respondent': 9221, 'skill': 9222, 'posed': 9223, 'instability': 9224, 'pancake': 9225, 'sugar': 9226, 'bringmeauntjemima': 9227, 'finalstraw': 9228, 'europeanunion': 9229, 'unitedkingdom': 9230, 'wttc': 9231, 'consumerrefunds': 9232, 'manonfire': 9233, 'cod': 9234, 'modernwarfare': 9235, 'blownup': 9236, 'searchanddestroy': 9237, 'denzelwashington': 9238, 'goodmovies': 9239, 'cleanhands': 9240, 'losmanos': 9241, 'superbowl': 9242, 'playoff': 9243, 'ohio': 9244, 'bobsburgers': 9245, 'bologna': 9246, 'stepford': 9247, 'stepfordwives': 9248, 'shutitdown': 9249, 'hardy': 9250, 'plot': 9251, 'outcome': 9252, 'rajagopalan': 9253, 'yves': 9254, 'breton': 9255, 'venezuelan': 9256, 'ofall': 9257, 'circuit': 9258, 'economical': 9259, 'newz': 9260, 'chelmsford': 9261, 'easton': 9262, 'stating': 9263, 'entity': 9264, 'invalid': 9265, 'arynews': 9266, 'labourer': 9267, 'improvished': 9268, 'poonch': 9269, 'wednesdaywisdom': 9270, 'hm': 9271, 'twitterdogs': 9272, 'alien': 9273, 'fred': 9274, 'meyer': 9275, 'hoglets': 9276, 'hrc': 9277, 'rebar': 9278, 'writerslife': 9279, 'happily': 9280, 'printer': 9281, 'cartridge': 9282, 'lightbulb': 9283, 'stew': 9284, 'pse': 9285, 'intervene': 9286, 'establish': 9287, 'sneak': 9288, 'herses': 9289, 'coronatips': 9290, 'rupaul': 9291, 'rupaulsdragrace': 9292, 'dontbeshady': 9293, 'kenney': 9294, 'extinctionrebellion': 9295, 'fridaysforfuture': 9296, 'fossilfuels': 9297, 'tarsands': 9298, 'capsule': 9299, 'posterity': 9300, 'contributes': 9301, 'conventional': 9302, 'rotation': 9303, 'nitrogen': 9304, 'fixation': 9305, 'pal': 9306, 'simonyan': 9307, 'devastating': 9308, 'biochemicalwarfare': 9309, 'simpleton': 9310, 'pointless': 9311, 'operative': 9312, 'workingsmart': 9313, 'workingsafe': 9314, 'ipsos': 9315, 'mori': 9316, 'emphasis': 9317, 'franceschini': 9318, 'chill': 9319, 'anybody': 9320, 'whereamask': 9321, 'mystar991': 9322, 'proliferate': 9323, 'penn': 9324, 'reliability': 9325, 'shotoniphone': 9326, 'iphonography': 9327, 'tm': 9328, 'oldman': 9329, 'lago': 9330, 'yard': 9331, 'explicit': 9332, 'hidden': 9333, 'co2': 9334, 'sliding': 9335, 'subsidy': 9336, 'carbontax': 9337, 'collaboration': 9338, '3d': 9339, 'stated': 9340, 'athanasia': 9341, 'ct': 9342, 'webcast': 9343, 'parksdata': 9344, 'attacked': 9345, 'badge': 9346, 'resolve': 9347, 'wetherspoon': 9348, 'timmartin': 9349, 'haulage': 9350, 'sewerage': 9351, 'crematorium': 9352, 'cemetery': 9353, 'teaching': 9354, 'pun': 9355, 'greatest': 9356, 'wet': 9357, 'repression': 9358, 'distracted': 9359, 'september': 9360, 'longevity': 9361, 'invisible': 9362, 'inhale': 9363, 'bam': 9364, 'disappointing': 9365, 'fortune': 9366, 'thewalkingdead': 9367, 'extending': 9368, 'menoume': 9369, 'spiti': 9370, 'greece': 9371, 'eleven': 9372, 'belief': 9373, 'generated': 9374, 'pointed': 9375, 'clarified': 9376, 'sufficiently': 9377, 'mitigation': 9378, 'jeff': 9379, 'farber': 9380, 'returning': 9381, 'skimping': 9382, 'clued': 9383, 'kke': 9384, 'backed': 9385, 'coeliacs': 9386, 'lactose': 9387, 'intolerant': 9388, 'xmas': 9389, 'troop': 9390, 'brigaid': 9391, 'trustedhelpatyourfingertips': 9392, 'lyon': 9393, '1m': 9394, 'roi': 9395, 'capitalmarkets': 9396, 'winner': 9397, 'became': 9398, 'downloaded': 9399, 'overtaking': 9400, 'gaffney': 9401, 'lockdownparis': 9402, 'deserted': 9403, 'dankie': 9404, 'reassuring': 9405, 'sacrificial': 9406, 'lamb': 9407, 'wallet': 9408, 'seasonal': 9409, 'prepper': 9410, 'prepping': 9411, 'srilanka': 9412, 'lka': 9413, 'tamil': 9414, 'tamilnadu': 9415, 'detects': 9416, 'facebookads': 9417, 'ppc': 9418, 'unsettled': 9419, 'triggerchange': 9420, 'repealbillc71': 9421, 'notforsale': 9422, 'habra': 9423, 'exclusively': 9424, 'teaming': 9425, 'needy': 9426, 'charlottenc': 9427, 'makingadifference': 9428, 'sharp': 9429, 'volatility': 9430, 'separation': 9431, 'trainee': 9432, 'geriatric': 9433, 'shattered': 9434, 'interviewed': 9435, 'adapting': 9436, 'woke': 9437, 'crise': 9438, 'leipzig': 9439, 'salesman': 9440, 'vulgar': 9441, 'bil': 9442, 'natnl': 9443, 'assoc': 9444, 'tril': 9445, 'oops': 9446, 'cambridge': 9447, 'fantancy': 9448, 'githurai44': 9449, 'sterdo': 9450, 'sijasema': 9451, 'kitu': 9452, 'dharmesh': 9453, 'imabouttocooksoon': 9454, 'heaving': 9455, 'weren': 9456, 'popping': 9457, 'handler': 9458, 'overlooked': 9459, 'racist': 9460, 'blast': 9461, 'chine': 9462, 'savant': 9463, 'aignos': 9464, 'dvd': 9465, 'publisher': 9466, 'booksale': 9467, 'distrust': 9468, 'wisconsin': 9469, 'voting': 9470, 'polling': 9471, 'donning': 9472, 'november': 9473, 'negotiable': 9474, 'loong': 9475, 'gon': 9476, 'restaurateur': 9477, 'ldn': 9478, 'ours': 9479, 'microtarget': 9480, 'riskmanagement': 9481, 'sherwin': 9482, 'donates': 9483, 'georgia': 9484, 'destroyed': 9485, 'stifled': 9486, 'wreaking': 9487, 'havoc': 9488, 'gapol': 9489, 'croozefmnews': 9490, 'terribly': 9491, 'mbarara': 9492, 'refusal': 9493, 'sh100': 9494, 'hypothesis': 9495, 'mobility': 9496, 'hypocrite': 9497, 'boycotthul': 9498, 'wednesdaythoughts': 9499, 'yallaregettingonmynerves': 9500, 'signatory': 9501, 'spearheaded': 9502, 'anna': 9503, 'vailant': 9504, 'rage': 9505, 'evermore': 9506, 'relevant': 9507, 'aapka': 9508, 'apna': 9509, 'jantacurfew': 9510, 'nook': 9511, 'animalcrossing': 9512, 'acnh': 9513, 'tomnook': 9514, 'drunk': 9515, 'blono': 9516, 'putnam': 9517, 'chamber': 9518, 'partnering': 9519, 'jogger': 9520, 'luckily': 9521, 'dive': 9522, 'musing': 9523, 'traceability': 9524, 'digitalassetlive': 9525, '01': 9526, 'tuesdaythoughts': 9527, 'familiesfirst': 9528, 'workmate': 9529, 'symptomatic': 9530, 'prospecting': 9531, 'prophylactic': 9532, 'hydroxychloroquineandazithromycin': 9533, 'medicaladvice': 9534, 'malaria': 9535, 'drank': 9536, 'fairprice': 9537, 'tied': 9538, 'singular': 9539, 'insightintelligence': 9540, '1k': 9541, 'admits': 9542, 'calockdown': 9543, 'bold': 9544, 'foothold': 9545, 'yoy': 9546, 'pune': 9547, 'chennai': 9548, 'rtold': 9549, 'dart': 9550, 'fooddelivery': 9551, 'perpetrate': 9552, 'cyberscam': 9553, 'beready': 9554, 'donotfallforit': 9555, 'efficiently': 9556, 'x1m': 9557, 'emotionally': 9558, 'exhausted': 9559, 'empathic': 9560, 'tapped': 9561, 'ty': 9562, 'individualism': 9563, 'bengal': 9564, 'variety': 9565, 'touched': 9566, 'boycottvodafone': 9567, 'freelancer': 9568, 'contractor': 9569, 'loophole': 9570, 'ifs': 9571, 'aiding': 9572, 'shadab': 9573, 'raunheim': 9574, 'hessen': 9575, 'impression': 9576, 'granada': 9577, 'difficulty': 9578, 'infosec': 9579, 'jacket': 9580, 'cabinet': 9581, 'fond': 9582, 'wantonly': 9583, 'liable': 9584, 'breaching': 9585, 'smes': 9586, 'informal': 9587, 'cushioning': 9588, 'oahu': 9589, 'islandlife': 9590, 'hawaii': 9591, 'hog': 9592, 'pig': 9593, 'hawaiianislands': 9594, 'enrollment': 9595, 'aca': 9596, 'cobra': 9597, 'undoubtably': 9598, 'regulator': 9599, 'swarming': 9600, 'lettuce': 9601, 'seal': 9602, 'thinker': 9603, 'pandamonium': 9604, 'norespect': 9605, 'gainesville': 9606, 'landed': 9607, 'stuffccedoes': 9608, 'hofmann': 9609, 'containment': 9610, 'ramp': 9611, 'metropolitan': 9612, 'singalong': 9613, 'rain': 9614, 'defence': 9615, 'cornwall': 9616, 'lockdown2020': 9617, 'jantacurfew2020': 9618, 'hantavir': 9619, 'yesmanservices': 9620, 'narendramodi': 9621, '09': 9622, 'ringd': 9623, 'shady': 9624, 'pretendingtocare': 9625, 'needing': 9626, 'vi': 9627, 'ikoyi': 9628, 'marina': 9629, 'unlimited': 9630, 'healthylifestyle': 9631, 'doculandnigeria': 9632, '19de': 9633, 'racking': 9634, 'biologicalweapon': 9635, 'terrorism': 9636, 'collap': 9637, 'hayward': 9638, 'cox': 9639, 'agent': 9640, 'uphold': 9641, 'undertaking': 9642, 'valuation': 9643, 'inspection': 9644, 'maintenance': 9645, 'compliance': 9646, 'jerseyans': 9647, 'diversification': 9648, 'legislature': 9649, 'listing': 9650, '16th': 9651, 'posit': 9652, 'critically': 9653, 'reputable': 9654, 'hea': 9655, 'hobby': 9656, 'emptier': 9657, 'germophobe': 9658, 'tohoku': 9659, 'influencers': 9660, 'involve': 9661, 'detached': 9662, 'fitbit': 9663, 'ace': 9664, '58': 9665, 'camelcamelcamel': 9666, 'purveyor': 9667, 'truce': 9668, 'luscious': 9669, 'vegetation': 9670, 'locust': 9671, 'grazed': 9672, 'crate': 9673, '5lines': 9674, 'mpy': 9675, 'surplus': 9676, 'roast': 9677, 'mince': 9678, 'bir': 9679, 'ddettir': 9680, 'permarketlerin': 9681, 'lojistik': 9682, 'hizmeti': 9683, 'avusturya': 9684, 'ordusu': 9685, 'deste': 9686, 'iyle': 9687, 'yap': 9688, 'yor': 9689, 'tedavisi': 9690, 'milyon': 9691, 'luk': 9692, 'ara': 9693, 'rma': 9694, 'geli': 9695, 'tirme': 9696, 'esi': 9697, 'klad': 9698, 'ge': 9699, 'hafta': 9700, 'paketi': 9701, 'klanm': 9702, 'viyana': 9703, 'haberler': 9704, 'bu': 9705, 'kadar': 9706, 'isolates': 9707, 'believing': 9708, 'himself': 9709, 'thi': 9710, 'ng': 9711, 'deploys': 9712, 'gafoodindustry': 9713, 'scarf': 9714, 'wrapped': 9715, 'pan': 9716, 'splain': 9717, 'barbie': 9718, 'doll': 9719, 'veteran': 9720, 'resisted': 9721, '46': 9722, '385': 9723, 'mcx': 9724, '44049': 9725, 'gloom': 9726, 'sooner': 9727, 'empathetic': 9728, 'enhancing': 9729, 'holland': 9730, 'sitution': 9731, 'landal': 9732, 'rebook': 9733, 'unacceptable': 9734, 'interruption': 9735, 'nofilter': 9736, 'champagne': 9737, 'penis': 9738, 'sprayable': 9739, 'diameter': 9740, 'nozzle': 9741, 'active': 9742, 'liquidator': 9743, 'busiest': 9744, 'bac': 9745, '3a': 9746, 'cannonwater': 9747, 'teamcvs': 9748, 'realheros': 9749, 'surreal': 9750, 'csis': 9751, 'ben': 9752, 'cahill': 9753, 'socialist': 9754, 'arrange': 9755, 'reservist': 9756, 'vat': 9757, 'lick': 9758, 'coronanl': 9759, 'franchise': 9760, 'photohops': 9761, 'deletes': 9762, 'sentence': 9763, 'stacker': 9764, 'humannature': 9765, 'spindini': 9766, 'greatgeneration': 9767, 'upto': 9768, 'accidently': 9769, 'rcb': 9770, 'ipl2020': 9771, 'pipe': 9772, 'plc': 9773, 'preaching': 9774, 'kaki': 9775, 'meja': 9776, 'jangan': 9777, 'tapi': 9778, 'trumpepicfailure': 9779, 'anniversary': 9780, 'temporarywork': 9781, 'temporaryvacancy': 9782, 'musicaltheatre': 9783, 'westend': 9784, 'lockdownlondon': 9785, 'newspaper': 9786, 'chancellor': 9787, 'merkel': 9788, 'berlin': 9789, 'preserving': 9790, 'chapter': 9791, 'verizon': 9792, 'cpd': 9793, 'supervising': 9794, 'fatally': 9795, 'flawed': 9796, 'nielsen': 9797, 'inclined': 9798, 'premise': 9799, 'demographic': 9800, 'cwa': 9801, 'advocacy': 9802, 'lift': 9803, 'streamer': 9804, 'shouted': 9805, 'separate': 9806, 'calgary': 9807, 'involving': 9808, 'westjet': 9809, 'intimidating': 9810, 'connectivity': 9811, 'connect': 9812, 'fortunately': 9813, '60seconds': 9814, 'becreative': 9815, 'bebetter': 9816, 'besafe': 9817, 'extortionately': 9818, 'haji': 9819, 'adulterated': 9820, 'ritual': 9821, 'meaningful': 9822, 'facetime': 9823, 'boerne': 9824, 'eatery': 9825, 'afloat': 9826, 'showcase': 9827, 'mncs': 9828, 'ranchi': 9829, 'nrlm': 9830, 'adoting': 9831, 'ayurved': 9832, 'tpi': 9833, 'timeframe': 9834, 'bang': 9835, 'harassing': 9836, 'pedestrian': 9837, 'bonding': 9838, 'moral': 9839, 'schmutz': 9840, 'performing': 9841, 'random': 9842, 'louisiana': 9843, 'satan': 9844, 'boomplay': 9845, 'rewe': 9846, 'potsdam': 9847, 'odds': 9848, 'thats': 9849, 'pilling': 9850, 'fuckoffcoronavirus': 9851, 'kindnesspandemic': 9852, 'thinkingofothers': 9853, 'hurry': 9854, 'fighttogether': 9855, 'belgavi': 9856, 'tnc': 9857, 'baseline': 9858, 'primarily': 9859, 'paycheck': 9860, 'wreck': 9861, 'fema': 9862, 'competing': 9863, 'medicalequipment': 9864, 'protectivegear': 9865, 'trumpliesamericansdie': 9866, 'eucommission': 9867, 'traveller': 9868, 'regionalsecurity': 9869, 'lcdc': 9870, 'cabby': 9871, 'mercedes': 9872, '01892': 9873, '838': 9874, '619': 9875, 'salford': 9876, 'refuse': 9877, 'soybean': 9878, 'scenario': 9879, 'dtc': 9880, 'slated': 9881, 'k12': 9882, 'midtown': 9883, 'newyorklockdown': 9884, 'newyorktough': 9885, 'rang': 9886, 'career': 9887, 'meditate': 9888, 'tuesdaytreat': 9889, 'curse': 9890, 'multinational': 9891, 'whooping': 9892, 'mylan': 9893, 'nv': 9894, 'ijustwanttogobacktomynormallife': 9895, 'saudiaramco': 9896, 'comfortable': 9897, 'aramco': 9898, 'geopolitics': 9899, 'oilandgas': 9900, 'subsea': 9901, 'alxcltd': 9902, 'journalism': 9903, 'neither': 9904, 'brighton': 9905, 'lighten': 9906, 'steve': 9907, 'hendrickson': 9908, 'naturalgas': 9909, 'natgas': 9910, 'dementia': 9911, 'respected': 9912, 'login': 9913, 'essenti': 9914, 'cagnaccio': 9915, 'rubbish': 9916, 'surestwaytolegalresearch': 9917, 'supremecourt': 9918, 'scconline': 9919, 'jane': 9920, 'southworth': 9921, 'diverisfiedindustrials': 9922, 'biocide': 9923, 'lapping': 9924, 'divided': 9925, 'deployed': 9926, 'ftse': 9927, 'ursday': 9928, 'demic': 9929, 'pedro': 9930, 'perez': 9931, 'woollies': 9932, 'firing': 9933, 'copping': 9934, 'keyworker': 9935, 'unpaid': 9936, 'settle': 9937, 'intelligent': 9938, 'em': 9939, 'cnas': 9940, 'stockmarketcrash': 9941, 'signofthetimes': 9942, 'brief': 9943, 'coincides': 9944, 'rainy': 9945, 'unavoidable': 9946, 'disrupt': 9947, 'foreseeable': 9948, 'acute': 9949, 'shopify': 9950, 'slide': 9951, 'deck': 9952, 'attend': 9953, 'consultancy': 9954, 'training': 9955, 'maniac': 9956, 'smarting': 9957, 'ipa': 9958, 'pivot': 9959, 'skull': 9960, 'realitytv': 9961, 'dotheirpart': 9962, 'ironically': 9963, 'traveled': 9964, '80km': 9965, 'gasprices': 9966, 'roadtrip': 9967, 'pork': 9968, 'cordon': 9969, 'gruyere': 9970, 'sauce': 9971, 'exit': 9972, 'unloading': 9973, 'prioritise': 9974, 'sprayer': 9975, 'dental': 9976, 'hygienist': 9977, 'amber': 9978, 'sanchez': 9979, 'shadow': 9980, 'tote': 9981, 'delayed': 9982, 'finalized': 9983, 'scuffle': 9984, 'respectful': 9985, 'justsaying': 9986, 'earnings': 9987, 'ubs': 9988, 'wealth': 9989, 'claudia': 9990, 'panseri': 9991, 'preservation': 9992, 'rectify': 9993, 'brunswick': 9994, 'stat': 9995, 'southkorea': 9996, 'coli': 9997, 'botulism': 9998, 'winning': 9999, 'bruh': 10000, 'schedule': 10001, 'trickiest': 10002, 'terminal': 10003, 'pressing': 10004, 'waving': 10005, 'saleem': 10006, 'safi': 10007, 'imran': 10008, 'khan': 10009, 'ik': 10010, 'resignation': 10011, 'imf': 10012, 'ig': 10013, 'punjab': 10014, 'fazlu': 10015, 'dharna': 10016, 'chore': 10017, 'eyewear': 10018, 'sunglass': 10019, 'newyork': 10020, 'cornell': 10021, 'indie': 10022, 'approaching': 10023, 'faltering': 10024, 'category3': 10025, 'evacuation': 10026, 'devastation': 10027, 'assigned': 10028, 'dichotomy': 10029, 'thankstrump': 10030, 'tjmaxx': 10031, 'burlington': 10032, 'ko': 10033, 'olau': 10034, 'helpingothers': 10035, 'emphatically': 10036, 'nyu': 10037, 'tandon': 10038, 'expressing': 10039, 'harry': 10040, 'brennan': 10041, 'personalfinance': 10042, 'rba': 10043, 'joyce': 10044, 'mccutch': 10045, 'gujarat': 10046, 'surat': 10047, 'resorted': 10048, 'pelted': 10049, 'stone': 10050, 'detained': 10051, 'dcp': 10052, 'rakesh': 10053, 'barot': 10054, 'va': 10055, 'dept': 10056, 'partnership': 10057, 'adjusts': 10058, 'lounge': 10059, 'americanairlines': 10060, 'marketscreener': 10061, 'brawl': 10062, 'root': 10063, 'ipex': 10064, 'silk': 10065, 'scrunchies': 10066, 'wichita': 10067, 'relentlesslyoriginal': 10068, 'terfs': 10069, 'trans': 10070, 'vax': 10071, 'seat': 10072, 'boose': 10073, 'myth': 10074, 'terf': 10075, 'luxurybrand': 10076, 'luxurylifestyle': 10077, 'stockton': 10078, 'defying': 10079, 'lipstick': 10080, 'polish': 10081, 'saint': 10082, 'johnston': 10083, 'ain': 10084, 'noth': 10085, 'abc15': 10086, 'speculator': 10087, 'italylockdown': 10088, 'emi': 10089, 'tht': 10090, 'institution': 10091, 'orpenalties': 10092, 'incase': 10093, '30k': 10094, 'auspol2020': 10095, 'loyalty': 10096, 'legalnews': 10097, 'robertson': 10098, 'gd': 10099, 'malaysialockdown': 10100, 'pp': 10101, 'propylene': 10102, 'sluggish': 10103, 'owing': 10104, 'clap8': 10105, 'generosity': 10106, 'thoughtfulness': 10107, 'manic': 10108, 'courteous': 10109, 'acc': 10110, '3400': 10111, 'panickbuying': 10112, 'lucky': 10113, '20k': 10114, 'spur': 10115, 'verified': 10116, 'gasbuddy': 10117, 'spurbp': 10118, '815': 10119, 'laurel': 10120, 'ky': 10121, '40741': 10122, 'riasrd': 10123, 'weekday': 10124, 'weallneedfood': 10125, 'jessie': 10126, 'wright': 10127, 'pat': 10128, 'served': 10129, 'tweaking': 10130, 'mtn': 10131, 'southafrica': 10132, 'meatshop': 10133, 'coimbatorecorporation': 10134, 'lockdowndiary': 10135, 'thecovaipost': 10136, 'cowering': 10137, 'shoved': 10138, 'knocking': 10139, 'yelped': 10140, 'comsumption': 10141, 'premiumization': 10142, 'winetasting': 10143, 'winedrinking': 10144, 'winelover': 10145, 'wineindustry': 10146, 'dispensary': 10147, 'stance': 10148, 'stalker': 10149, 'johnlewis': 10150, 'fitch': 10151, 'sovereign': 10152, 'rmbs': 10153, 'performance': 10154, 'borrower': 10155, 'hardly': 10156, 'nor': 10157, 'disastrous': 10158, 'disrupts': 10159, 'murphy': 10160, 'humidor': 10161, 'pseudomed': 10162, 'uc': 10163, 'irvine': 10164, 'debunked': 10165, 'rejuvi': 10166, 'liver': 10167, 'attributed': 10168, 'herbalife': 10169, 'marketcrash': 10170, 'chinesecoronavirus': 10171, 'chucknorris': 10172, 'breakingnews': 10173, 'illjustorderfromthecharmery': 10174, 'laughed': 10175, 'juha': 10176, 'saarinen': 10177, 'canal': 10178, 'edit': 10179, 'selfquarantine': 10180, 'tearful': 10181, 'wary': 10182, 'skype': 10183, 'centered': 10184, 'intreo': 10185, 'quay': 10186, 'relaxing': 10187, 'quarantinis': 10188, 'dynamic': 10189, 'duo': 10190, 'review': 10191, '21st': 10192, 'somalia': 10193, 'pandemic2020': 10194, 'coronapimpin': 10195, 'sexydistancing': 10196, 'sexy': 10197, 'igotyouboo': 10198, 'excitement': 10199, 'rot': 10200, 'sakal': 10201, 'sakalnews': 10202, 'viral': 10203, 'sakalmedia': 10204, 'lockdownnow': 10205, 'staffing': 10206, 'fra': 10207, 'reassured': 10208, 'ram': 10209, 'bajekal': 10210, 'fmf': 10211, 'ltd': 10212, 'oneindiapolls': 10213, 'wuhancoronavius': 10214, 'bahrain': 10215, 'lad': 10216, 'everton': 10217, 'turkish': 10218, 'edinburgh': 10219, 'legislated': 10220, 'homebuying': 10221, 'homebuyer': 10222, 'residential': 10223, 'househunters': 10224, 'cocooned': 10225, 'duration': 10226, 'poke': 10227, 'patty': 10228, 'quarantaine': 10229, 'tpshortage': 10230, 'somebody': 10231, 'cross': 10232, 'sumone': 10233, 'teresa': 10234, 'wickham': 10235, 'tunbridge': 10236, '42': 10237, 'regime': 10238, 'unthinkable': 10239, 'ducking': 10240, 'bide': 10241, 'symptons': 10242, 'confusing': 10243, 'proctorgamble': 10244, 'albany': 10245, 'feedingus': 10246, 'bakingstrong': 10247, 'outflow': 10248, 'unmanageable': 10249, 'mindset': 10250, 'digitaltransformation': 10251, 'pwc': 10252, 'designthinking': 10253, 'dataanalytics': 10254, 'rpa': 10255, 'infographics': 10256, 'england': 10257, 'conflict': 10258, 'rue': 10259, 'janev3': 10260, 'bust': 10261, 'amb': 10262, 'hemp': 10263, 'adapts': 10264, 'cannabisnews': 10265, 'cannabisindustry': 10266, 'invasionofthebodysnatchers': 10267, 'pantrystaples': 10268, 'casual': 10269, 'bankrupt': 10270, 'http': 10271, 'viruschino': 10272, 'ism': 10273, 'adp': 10274, 'payroll': 10275, '27k': 10276, '150k': 10277, 'july': 10278, 'exploration': 10279, 'hedged': 10280, 'tullowoil': 10281, 'oilindustry': 10282, 'focusing': 10283, 'statistic': 10284, 'enthusiastic': 10285, 'wal': 10286, 'semi': 10287, 'dang': 10288, 'collapsed': 10289, 'khamenei': 10290, 'evolves': 10291, 'pilot': 10292, 'colab': 10293, 'transporter': 10294, 'computer': 10295, 'cautionyespanicno': 10296, 'brookshire': 10297, 'eldorado': 10298, 'brookshires': 10299, 'seniordiscount': 10300, 'seniorhours': 10301, 'unioncounty': 10302, 'convoy': 10303, 'randos': 10304, 'unchecked': 10305, 'humanityforward': 10306, 'silenced': 10307, 'orphanage': 10308, 'mainly': 10309, 'neighbouring': 10310, 'drc': 10311, 'unseen': 10312, 'surrounded': 10313, 'ukjay': 10314, 'pb': 10315, '1kg': 10316, 'porridge': 10317, '500g': 10318, 'pleasee': 10319, 'nitrate': 10320, 'bib': 10321, 'goggles': 10322, 'smoking': 10323, 'refurbished': 10324, 'itsuperheroes': 10325, 'correctly': 10326, 'aricle': 10327, 'take3': 10328, 'devise': 10329, 'transparent': 10330, 'rcs': 10331, 'mobilemarketing': 10332, 'richcommunications': 10333, 'medcine': 10334, 'shouldn': 10335, 'fraser': 10336, 'hasnt': 10337, 'filming': 10338, 'accelerant': 10339, 'nascent': 10340, 'svod': 10341, 'avod': 10342, 'rev': 10343, 'downstream': 10344, 'heating': 10345, 'fuelled': 10346, 'cma': 10347, '115': 10348, 'africanlivesmatter': 10349, 'quadruple': 10350, 'sovereignty': 10351, 'drought': 10352, 'farners': 10353, 'moussafaki': 10354, 'completed': 10355, 'selected': 10356, '630am': 10357, 'wakingdead': 10358, 'bre': 10359, 'verify': 10360, 'skin': 10361, 'arranged': 10362, '5million': 10363, 'essiantial': 10364, 'distancers': 10365, 'bryan': 10366, 'balvaneda': 10367, 'void': 10368, 'volunteering': 10369, 'katie': 10370, 'moving': 10371, 'residentevil': 10372, 'depressing': 10373, 'tribe': 10374, 'servicetechnicians': 10375, 'foodprocessing': 10376, 'niece': 10377, 'hut': 10378, 'caregiver': 10379, 'mat': 10380, 'wmt': 10381, 'amazonbasics': 10382, 'kirkland': 10383, 'roadmaps': 10384, 'prosumer': 10385, 'novak': 10386, '6pm': 10387, 'aedt': 10388, 'wark': 10389, 'middleton': 10390, 'cf': 10391, 'joint': 10392, 'expressly': 10393, 'creditunions': 10394, 'resist': 10395, 'darth': 10396, 'vader': 10397, 'compiled': 10398, 'fdic': 10399, 'tipped': 10400, 'transforming': 10401, 'growbydata': 10402, 'laborer': 10403, 'planting': 10404, 'freight': 10405, 'plane': 10406, 'upending': 10407, 'unilaterally': 10408, 'istanbul': 10409, 'mamolu': 10410, 'aryal': 10411, 'ensuing': 10412, '327': 10413, '841': 10414, '482': 10415, 'hospitalization': 10416, '574': 10417, '095': 10418, '427': 10419, 'optimistic': 10420, 'comforting': 10421, 'canibrands': 10422, 'echl': 10423, 'cleanse': 10424, 'upper': 10425, 'greg': 10426, 'courtney': 10427, 'knoll': 10428, 'uia': 10429, 'adler': 10430, 'resturaunts': 10431, 'taped': 10432, 'grey': 10433, 'bruce': 10434, 'mandating': 10435, 'poorly': 10436, 'inefficient': 10437, 'windfall': 10438, 'xenophobic': 10439, 'clickbait': 10440, 'unsanitary': 10441, 'lastinch': 10442, 'madeforcurves': 10443, 'plussizefashion': 10444, 'bodypositive': 10445, 'partweardresses': 10446, 'plussizeoutfit': 10447, 'plussizetops': 10448, 'outfitgoals': 10449, 'coronamemes': 10450, 'steelworker': 10451, '220': 10452, 'female': 10453, 'drain': 10454, 'harming': 10455, 'ventolin': 10456, 'cried': 10457, 'vitamin': 10458, 'soldoitofvitamins': 10459, 'selfishpeople': 10460, 'thk': 10461, 'encouraged': 10462, 'sticking': 10463, 'deafandunarmed': 10464, 'internalized': 10465, 'notgoingout': 10466, 'entertainer': 10467, 'athlete': 10468, 'bushey': 10469, 'urine': 10470, 'rupee': 10471, 'consistency': 10472, 'routinely': 10473, 'erect': 10474, 'obstacle': 10475, 'advancement': 10476, 'demo': 10477, 'nepal': 10478, 'pitty': 10479, 'legislator': 10480, 'marble': 10481, 'revaluation': 10482, 'default': 10483, 'usmarket': 10484, 'dowjones': 10485, 'sp500': 10486, 'nasdaq': 10487, 'overpriced': 10488, 'ru0xuahilf': 10489, 'heeded': 10490, 'stockpiled': 10491, 'coonavirus': 10492, 'haunted': 10493, '401k': 10494, 'liveliho': 10495, 'slept': 10496, 'powertalk': 10497, 'featured': 10498, 'furniture': 10499, 'elpasostrong': 10500, 'wesupportlocal': 10501, 'pulled': 10502, 'childcare': 10503, 'juggle': 10504, 'shuttered': 10505, 'vtequalpayday': 10506, 'topical': 10507, 'ict': 10508, 'excel': 10509, 'oversee': 10510, 'valid': 10511, 'disgrace': 10512, 'forgive': 10513, 'mikeashley': 10514, 'boycottsportsdirect': 10515, 'mailman': 10516, 'potentially': 10517, 'webcam': 10518, 'bestbuy': 10519, 'videoconferencing': 10520, 'moven': 10521, 'gained': 10522, 'warming': 10523, 'toddler': 10524, 'emarsys': 10525, 'gooddata': 10526, 'demonstrates': 10527, 'sheltering': 10528, 'westminster': 10529, 'amen': 10530, 'latraffic': 10531, 'contacted': 10532, 'sudde': 10533, 'insufficient': 10534, 'carbonmarket': 10535, 'euets': 10536, 'pant': 10537, 'awe': 10538, 'diplomacy': 10539, 'infecting': 10540, 'pappystips': 10541, 'enoughisenough': 10542, 'advanced': 10543, 'soothing': 10544, 'scent': 10545, 'fl': 10546, 'jelly': 10547, 'daffs': 10548, 'replied': 10549, 'undefeated': 10550, 'humour': 10551, 'germanycoronavirus': 10552, 'bremen': 10553, 'liberal': 10554, 'pakistanfightscorona': 10555, 'punch': 10556, 'cremona': 10557, 'andrea': 10558, 'promising': 10559, 'bait': 10560, 'circling': 10561, 'moonbeamwishes': 10562, 'megan': 10563, 'condensed': 10564, 'praying': 10565, 'champion': 10566, 'chorlton': 10567, 'backlog': 10568, 'fam': 10569, 'foodsecurity': 10570, 'morefoodmoreoften2morepeople': 10571, 'iwas': 10572, 'irrational': 10573, 'obsession': 10574, 'density': 10575, 'econsumergov': 10576, 'exceeded': 10577, 'resin': 10578, '280': 10579, 'policeman': 10580, 'heavenly': 10581, 'cardiologist': 10582, 'quit': 10583, 'nearest': 10584, 'cleansing': 10585, 'kleenex': 10586, 'packet': 10587, 'utahearthquake': 10588, 'overdrive': 10589, 'flooring': 10590, 'geopolitical': 10591, 'ramification': 10592, 'fearful': 10593, 'entail': 10594, 'procured': 10595, 'skid': 10596, 'angel': 10597, 'contaminate': 10598, 'differentiated': 10599, 'agrees': 10600, 'recorded': 10601, 'elect': 10602, 'pvt': 10603, 'condo': 10604, 'sengkang': 10605, 'draw': 10606, 'hun': 10607, 'socialdistancinguk': 10608, 'racing': 10609, 'supporter': 10610, 'councilors': 10611, 'brunch': 10612, 'extensively': 10613, 'yemen': 10614, 'unaffordable': 10615, 'ja': 10616, 'den': 10617, 'demma': 10618, 'sef': 10619, 'chai': 10620, 'popup': 10621, 'attached': 10622, 'njavwa': 10623, 'simukoko': 10624, '260964905611': 10625, 'nw': 10626, 'shaming': 10627, 'upping': 10628, 'bleepin': 10629, 'teenscoughingongrocerystoreproduce': 10630, 'genz': 10631, 'purcellville': 10632, 'alma': 10633, 'mater': 10634, '10th': 10635, 'revive': 10636, 'pummeled': 10637, 'vino': 10638, 'wolftrap': 10639, 'thewolftrap': 10640, 'qt': 10641, 'wilkinson': 10642, 'blvd': 10643, 'clt': 10644, 'ewg': 10645, 'pesticide': 10646, 'foodnews': 10647, 'shoppinglist': 10648, '2f': 10649, 'anytime': 10650, 'pric': 10651, 'penalise': 10652, 'responsibly': 10653, 'punishing': 10654, 'miscreant': 10655, 'receipt': 10656, 'exists': 10657, 'dollarama': 10658, 'unsettling': 10659, 'artforheroes': 10660, 'wellbeing': 10661, 'fil': 10662, 'bash': 10663, 'reactive': 10664, 'bcg': 10665, 'reacting': 10666, 'weighing': 10667, 'surpassed': 10668, 'crimsonagility': 10669, 'shopfromhome': 10670, 'clientsupport': 10671, 'delhi': 10672, 'bengaluru': 10673, 'unjustifiably': 10674, 'halifax': 10675, 'tactical': 10676, 'lessened': 10677, 'samsung': 10678, 's20': 10679, 'vile': 10680, 'rbc': 10681, 'deadbodies': 10682, 'hug': 10683, 'banana': 10684, 'sudanese': 10685, 'residing': 10686, 'suisse': 10687, '2400': 10688, 'crony': 10689, 'palm': 10690, 'diner': 10691, 'maralagovirus': 10692, 'breadline': 10693, 'positioned': 10694, 'teepee': 10695, 'powerball': 10696, 'jackpot': 10697, 'prize': 10698, 'payouts': 10699, 'drawing': 10700, 'wisconsinpandemicvoting': 10701, 'personally': 10702, 'naww': 10703, 'pumping': 10704, 'yummy': 10705, 'dana': 10706, 'trainer': 10707, 'reminded': 10708, 'colloidal': 10709, 'takeyourselfhome': 10710, 'subhanhu': 10711, 'wataalah': 10712, 'calme': 10713, 'downward': 10714, 'ques': 10715, 'schnuck': 10716, 'reopening': 10717, 'butte': 10718, 'mix': 10719, 'liquid': 10720, 'somber': 10721, 'spacing': 10722, 'diminished': 10723, 'fringe': 10724, '2424': 10725, '724244': 10726, 'nssf': 10727, 'lebanon': 10728, 'stacked': 10729, 'ceiling': 10730, 'seismic': 10731, 'cultural': 10732, 'etched': 10733, 'marker': 10734, 'investigator': 10735, 'fizzle': 10736, 'berliner': 10737, 'lends': 10738, 'skincare': 10739, 'anki': 10740, 'vector': 10741, 'therapeutic': 10742, 'vicky': 10743, 'ngyuen': 10744, 'qualified': 10745, 'justsayin': 10746, 'airy': 10747, 'ignored': 10748, 'pitying': 10749, 'ourresponsibility': 10750, 'sberesponsible': 10751, 'contemplating': 10752, 'pritzker': 10753, 'illinois': 10754, 'lgus': 10755, 'daraz': 10756, 'adopting': 10757, 'staysafeshoponline': 10758, 'vuitton': 10759, 'commonly': 10760, 'dystopian': 10761, 'fandom': 10762, 'regardless': 10763, 'steven': 10764, 'supermarketworkers': 10765, 'foodworkers': 10766, 'foodshopping': 10767, 'mounting': 10768, 'snp': 10769, 'spokesperson': 10770, 'milling': 10771, 'villainy': 10772, 'geoi': 10773, 'sdbeer': 10774, 'floridashutdown': 10775, 'helpthehelpers': 10776, 'dressed': 10777, 'cord': 10778, 'sweater': 10779, 'boot': 10780, '5986': 10781, '627': 10782, 'brescia': 10783, 'developing': 10784, 'foodstuff': 10785, 'kaduna': 10786, 'ukgoverment': 10787, 'tire': 10788, 'dealership': 10789, 'frontlines': 10790, 'naz': 10791, 'karim': 10792, 'declare': 10793, 'oldie': 10794, 'uno': 10795, 'selute': 10796, 'stayhomeindia': 10797, 'cutter': 10798, 'cigar': 10799, 'motivate': 10800, 'coronav': 10801, 'coronavir': 10802, 'mooch': 10803, 'slashing': 10804, 'gavinnewsom': 10805, 'newsom': 10806, 'calfresh': 10807, 'foreclosing': 10808, 'infectious': 10809, 'htt': 10810, 'demonstrate': 10811, 'shrink': 10812, 'deteriorating': 10813, 'whats': 10814, 'chattanooga': 10815, 'despair': 10816, 'assertive': 10817, 'jail': 10818, 'kuwaiti': 10819, 'thankingkuwaitcorona': 10820, 'howlin': 10821, 'thaler': 10822, 'sticky': 10823, 'deadlock': 10824, 'emergence': 10825, 'grocerygames': 10826, 'homebound': 10827, 'diagnosis': 10828, 'yikes': 10829, 'notpanickingyet': 10830, 'omdia': 10831, 'predicting': 10832, 'virtually': 10833, 'enoughdoing': 10834, 'givi': 10835, 'rosie': 10836, 'riveter': 10837, 'intensive': 10838, 'faced': 10839, 'besmart': 10840, 'strongest': 10841, 'cast': 10842, 'disablity': 10843, 'weakness': 10844, 'smartly': 10845, 'productivity': 10846, 'normalcy': 10847, 'unpleasant': 10848, 'ungrateful': 10849, 'sucharita': 10850, 'kodali': 10851, 'assure': 10852, 'zealander': 10853, 'allegation': 10854, 'norwegian': 10855, 'wembley': 10856, 'closest': 10857, 'icu': 10858, 'hokianga': 10859, 'fi': 10860, 'nejm': 10861, 'caveat': 10862, 'emptor': 10863, 'degrades': 10864, 'gobrowns': 10865, 'wholefoods': 10866, 'ramennoodles': 10867, 'bopis': 10868, 'halted': 10869, 'ecozones': 10870, 'economycrisis': 10871, 'ri': 10872, 'wtop': 10873, '01hr': 10874, 'atleast': 10875, '03hrs': 10876, 'goodman': 10877, 'bonita': 10878, 'flamingo': 10879, 'sprimg': 10880, 'crew': 10881, 'frontlineheroes': 10882, 'yieldcos': 10883, 'neighbourhood': 10884, 'intersection': 10885, 'newprofilepic': 10886, 'venue': 10887, 'ankle': 10888, 'jumpsuit': 10889, 'internally': 10890, 'sadder': 10891, 'fucked': 10892, 'borrow': 10893, 'scariest': 10894, 'diego': 10895, 'medford': 10896, 'compromised': 10897, 'destinationmedford': 10898, 'medfordnj': 10899, 'staggered': 10900, 'adherence': 10901, 'congregate': 10902, 'inter': 10903, 'shuttle': 10904, 'wncn': 10905, 'nebraskan': 10906, 'elation': 10907, 'townspeople': 10908, 'gi': 10909, 'atop': 10910, 'liberation': 10911, 'joy': 10912, 'pallet': 10913, 'jubilation': 10914, 'disproportionate': 10915, 'jeanne': 10916, 'bohlen': 10917, 'safeway': 10918, 'tragic': 10919, 'rough': 10920, 'auction': 10921, 'laboring': 10922, 'fulfill': 10923, 'intense': 10924, 'w1': 10925, 'schoolclosure': 10926, 'exhaustion': 10927, 'strangely': 10928, 'expansive': 10929, 'metaphor': 10930, 'breaker': 10931, 'lonely': 10932, 'overcrowded': 10933, 'destination': 10934, 'stratospheric': 10935, 'bedsit': 10936, 'bitter': 10937, 'fir': 10938, 'honey': 10939, 'vdacs': 10940, 'stayhometexas': 10941, 'afterthought': 10942, 'alcoholicsoap': 10943, 'beatcovid19': 10944, 'coronaphilippines': 10945, 'touchland': 10946, 'rebound': 10947, 'impoverished': 10948, 'liberia': 10949, 'cassava': 10950, 'priced': 10951, '697': 10952, '1220': 10953, 'ht': 10954, 'machinelearning': 10955, 'paignton': 10956, 'teenager': 10957, 'civic': 10958, 'cbot': 10959, 'weaker': 10960, 'xinhua': 10961, 'hmrc': 10962, 'socialsecurity': 10963, 'ssa': 10964, 'garbageman': 10965, 'acknowledgement': 10966, 'dollartree': 10967, 'scream': 10968, 'jen': 10969, 'faq': 10970, 'moderate': 10971, 'breakthrough': 10972, 'timely': 10973, 'chest': 10974, 'clinic': 10975, 'ekg': 10976, 'immunosuppressed': 10977, 'fleeing': 10978, 'tinderbox': 10979, 'exacerbating': 10980, 'tension': 10981, 'cheapest': 10982, 'servo': 10983, 'fifty': 10984, 'tolietpaper': 10985, 'nit': 10986, 'snotty': 10987, 'unwashed': 10988, 'gifting': 10989, 'foodgift': 10990, 'foodgifting': 10991, 'foodandbeverage': 10992, 'democracy': 10993, 'touted': 10994, 'arena': 10995, 'weirdly': 10996, 'wasabi': 10997, 'ish': 10998, 'scooping': 10999, 'messaging': 11000, 'bayside': 11001, 'tightening': 11002, 'financing': 11003, 'disabilitysucks': 11004, 'clearer': 11005, '3p': 11006, 'hardware': 11007, 'plumber': 11008, 'electrician': 11009, 'teller': 11010, 'laundromat': 11011, 'gown': 11012, 'liason': 11013, 'coronajokes': 11014, 'issuing': 11015, 'thecustomerwhisperer': 11016, 'foottraffic': 11017, 'remodels': 11018, 'withdraws': 11019, 'hanbury': 11020, 'websiteexpertsinghana': 11021, 'coronainghana': 11022, 'nanaaddo': 11023, 'acct': 11024, 'ssns': 11025, 'phishers': 11026, 'cv': 11027, 'walgreens': 11028, 'rite': 11029, 'radius': 11030, 'nada': 11031, 'backpackingbear': 11032, '3am': 11033, 'eminem': 11034, 'youneedgroceries': 11035, 'conte': 11036, 'contemplate': 11037, 'consumerbehaviour': 11038, 'restaurantnews': 11039, 'mongering': 11040, 'invokes': 11041, 'purposely': 11042, 'panews': 11043, 'hanovertownship': 11044, 'luzernecounty': 11045, 'papolice': 11046, 'kelly2': 11047, 'thejake': 11048, 'sp': 11049, 'snd': 11050, 'novartis': 11051, 'dos': 11052, 'nonrefundable': 11053, 'screaming': 11054, 'financially': 11055, 'destitute': 11056, 'wiser': 11057, 'happyhour': 11058, 'toss': 11059, 'witcher': 11060, 'explained': 11061, 'sophisticated': 11062, '30m': 11063, 'irresponsibly': 11064, 'dumbest': 11065, 'cleanroom': 11066, 'tiny': 11067, 'confronted': 11068, 'pleads': 11069, 'rhine': 11070, 'hall': 11071, 'pfe': 11072, 'rhinehall': 11073, 'barr': 11074, 'manipulate': 11075, 'whcovidbriefing': 11076, 'advertise': 11077, 'competitor': 11078, 'pared': 11079, 'memory': 11080, 'happiness': 11081, 'readymade': 11082, 'heineken': 11083, 'cdnecon': 11084, 'pocketbook': 11085, 'snakeoil': 11086, 'frustrated': 11087, 'uranium': 11088, 'doomed': 11089, 'embracing': 11090, 'brake': 11091, 'makeourmark': 11092, 'helpourneighbors': 11093, '30seconds': 11094, 'stockingup': 11095, 'subsidising': 11096, 'frieght': 11097, 'bulky': 11098, 'n3': 11099, 'comon': 11100, 'vest': 11101, 'oo': 11102, 'jomo': 11103, 'jomotv': 11104, 'kingjomo': 11105, 'remembered': 11106, 'practiced': 11107, 'changer': 11108, 'compatriot': 11109, 'doofancy': 11110, 'enquirer': 11111, 'whatthe': 11112, 'engineered': 11113, 'selfishly': 11114, 'productive': 11115, 'congratulation': 11116, 'malaysian': 11117, 'crave': 11118, 'midwife': 11119, 'carer': 11120, 'nursery': 11121, 'clapfornhs': 11122, 'thankyounhs': 11123, 'hysterical': 11124, 'dysfunctional': 11125, 'freeing': 11126, 'mandela': 11127, 'arr': 11128, 'adi': 11129, 'enable': 11130, 'menards': 11131, 'cited': 11132, 'starmer': 11133, 'brainstorming': 11134, 'language': 11135, '903': 11136, '689': 11137, '1975': 11138, 'questioned': 11139, 'mvp': 11140, 'taylor': 11141, 'nears': 11142, 'us': 11143, 'kr': 11144, 'rm16': 11145, '93': 11146, 'rm42': 11147, 'kelik': 11148, 'mekoh': 11149, 'balik': 11150, 'hari': 11151, 'desantis': 11152, 'statewide': 11153, 'grower': 11154, 'rotting': 11155, 'vine': 11156, 'lime': 11157, 'deactivated': 11158, 'canvas': 11159, '18x24cm': 11160, 'sickboy': 11161, 'sickonthewall': 11162, 'disposal': 11163, 'bomb': 11164, 'stencil': 11165, 'srencilart': 11166, 'popart': 11167, 'streetart': 11168, 'planner': 11169, 'stabbings': 11170, '19th': 11171, 'dial': 11172, 'referral': 11173, 'flexible': 11174, 'reusuable': 11175, 'charlie': 11176, 'baker': 11177, 'adam': 11178, 'jonas': 11179, 'tsla': 11180, 'phrase': 11181, 'competitive': 11182, 'ev': 11183, 'tesla': 11184, 'edge': 11185, 'electrification': 11186, '196': 11187, 'reliance': 11188, 'ratnadeep': 11189, 'hyd': 11190, 'unlawfully': 11191, 'q4': 11192, 'delinquency': 11193, 'lagging': 11194, 'cashless': 11195, 'markofthebeast': 11196, 'bout': 11197, 'itis': 11198, 'noposguau': 11199, 'quatantineandchill': 11200, 'lovequotes': 11201, 'pierre': 11202, 'andurand': 11203, 'treated': 11204, 'reverence': 11205, 'amd': 11206, 'deserves': 11207, 'msps': 11208, 'technews': 11209, 'intervening': 11210, 'rerouted': 11211, 'cptpp': 11212, 'packer': 11213, 'profitable': 11214, 'irishman': 11215, 'happystpatricksday': 11216, 'guiness': 11217, 'corned': 11218, 'tradition': 11219, 'postoffice': 11220, 'forth': 11221, 'sealing': 11222, 'envelope': 11223, 'casting': 11224, 'ballot': 11225, 'nhpolitics': 11226, 'healey': 11227, 'debilitating': 11228, 'mome': 11229, 'menace': 11230, 'opportune': 11231, 'belly': 11232, 'quo': 11233, 'vadis': 11234, 'dennis': 11235, 'thompson': 11236, 'katsinawa': 11237, 'daura': 11238, 'unawares': 11239, 'noone': 11240, 'strangetimes': 11241, 'redballs': 11242, 'tyrone': 11243, 'stoking': 11244, 'sugary': 11245, 'route': 11246, 'eager': 11247, 'overuse': 11248, 'callous': 11249, 'taxing': 11250, 'imposing': 11251, 'excise': 11252, 'merry': 11253, 'hatred': 11254, 'emulating': 11255, 'trellis': 11256, 'ghee': 11257, 'clarifying': 11258, 'jerk': 11259, 'disregard': 11260, 'insure': 11261, 'milage': 11262, 'knowthat': 11263, 'finlit': 11264, 'thankyousomuch': 11265, 'firstresponders': 11266, 'disappointment': 11267, 'aest': 11268, '423': 11269, '322': 11270, '237': 11271, '232': 11272, 'trumpliedpeopledied': 11273, 'poster': 11274, 'fkthebs': 11275, 'trumppressconference': 11276, 'tendergreen': 11277, 'zipsak': 11278, 'spreadthelovenotthevirus': 11279, 'maskup': 11280, 'russianpresident': 11281, 'gb': 11282, 'cashpoint': 11283, 'escalator': 11284, 'rail': 11285, 'sued': 11286, 'wando': 11287, 'evans': 11288, 'suing': 11289, 'notify': 11290, 'trace': 11291, 'keepitreal': 11292, 'helpyourneighbour': 11293, '12weeks': 11294, 'dogood': 11295, 'suspicion': 11296, 'nylockdown': 11297, 'ua': 11298, 'driveway': 11299, 'utilized': 11300, 'friendship': 11301, 'plowing': 11302, 'unimaginable': 11303, 'dofe': 11304, 'courage': 11305, 'blueprint': 11306, 'dwindling': 11307, 'day18oflockdown': 11308, 'scotland': 11309, 'howard': 11310, 'bombarded': 11311, 'onetime': 11312, 'bpd': 11313, 'solve': 11314, '3dprinted': 11315, 'drill': 11316, 'attachment': 11317, 'spool': 11318, 'researching': 11319, 'oilprices': 11320, 'mnuchin': 11321, 'treasury': 11322, 'basemetals': 11323, 'highschool': 11324, 'inability': 11325, 'envision': 11326, '925': 11327, '957': 11328, '8608': 11329, 'reportfraud': 11330, 'permitted': 11331, 'venturing': 11332, 'socialquarantine': 11333, 'shaking': 11334, 'stretching': 11335, 'chem': 11336, 'affable': 11337, '96': 11338, 'predisposed': 11339, 'gradschool': 11340, 'graduation': 11341, 'ravaged': 11342, 'prospected': 11343, 'strictly': 11344, 'revolve': 11345, 'oneocean': 11346, 'rts': 11347, 'mickey': 11348, 'mouse': 11349, 'outta': 11350, 'titled': 11351, 'workfromhomelife': 11352, 'sanity': 11353, 'pemex': 11354, 'highway': 11355, 'bissonet': 11356, 'unleaded': 11357, 'apologise': 11358, 'relieving': 11359, 'pda': 11360, 'enters': 11361, 'cashing': 11362, 'missile': 11363, 'waning': 11364, 'saavy': 11365, 'foreignpolicy': 11366, 'fpyc': 11367, 'decimate': 11368, 'caramilk': 11369, 'separating': 11370, '4am': 11371, 'freek': 11372, 'thezi': 11373, 'mabuza': 11374, 'halo': 11375, 'aviation': 11376, '4x': 11377, 'medicalcannabis': 11378, 'feast': 11379, 'restore': 11380, 'hydropower': 11381, 'select': 11382, 'unlock': 11383, 'cooped': 11384, 'unbelievable': 11385, 'dismayed': 11386, 'glance': 11387, 'lowrate': 11388, 'buyersmarket': 11389, 'intrestrate': 11390, 'realatate': 11391, 'cronavirous': 11392, 'firsttimehomebuyer': 11393, 'winz': 11394, 'liveable': 11395, 'eastermonday': 11396, 'radiodust': 11397, 'radio': 11398, 'ballad': 11399, 'written': 11400, 'audition': 11401, 'parchment': 11402, 'houseplant': 11403, 'designate': 11404, 'eradicating': 11405, 'applepay': 11406, 'googlepay': 11407, 'learns': 11408, 'occupational': 11409, 'origin': 11410, 'antonio': 11411, 'somewhat': 11412, 'breathed': 11413, 'frontlineemployees': 11414, 'ug': 11415, 'entebbe': 11416, 'kampala': 11417, 'lyft': 11418, 'reimbursement': 11419, 'micro': 11420, 'mdma': 11421, 'decried': 11422, 'posho': 11423, 'salt': 11424, 'enyangyi': 11425, 'conspicuously': 11426, 'triage': 11427, 'forum': 11428, 'plenary': 11429, 'diarrhea': 11430, 'disrupting': 11431, 'accounted': 11432, 'policymakers': 11433, 'cynthia': 11434, 'fisher': 11435, 'pricetransparency': 11436, 'leavin': 11437, 'faceshield': 11438, 'ziplock': 11439, 'cheshire': 11440, 'punishable': 11441, 'persistence': 11442, 'unknowable': 11443, 'placing': 11444, 'keypad': 11445, 'inly': 11446, 'tobacco': 11447, 'smoker': 11448, 'mainecdc': 11449, 'shark': 11450, 'handsanitiser': 11451, 'nothappyjan': 11452, 'reel': 11453, 'cooperative': 11454, 'puppy': 11455, 'bathe': 11456, 'tourist': 11457, 'membership': 11458, 'rishi': 11459, 'sunak': 11460, 'decency': 11461, 'hibiscus': 11462, 'lone': 11463, 'beneficial': 11464, 'cryptocurrency': 11465, 'sandwell': 11466, '9news': 11467, 'woolworth': 11468, 'whitehorse': 11469, 'depletion': 11470, 'circulareconomy': 11471, 'ruthless': 11472, 'conveniently': 11473, 'nickel': 11474, 'sulphate': 11475, 'q1': 11476, 'tolerated': 11477, 'uob': 11478, 'meantime': 11479, 'stayathomechallenge': 11480, 'footy': 11481, 'disappearing': 11482, 'pending': 11483, 'abates': 11484, 'listener': 11485, 'tova': 11486, 'jessica': 11487, 'mutch': 11488, 'jenna': 11489, 'lynch': 11490, 'ncci': 11491, 'shell': 11492, 'forgot': 11493, 'quyen': 11494, 'truong': 11495, 'weighs': 11496, 'stroock': 11497, 'fold': 11498, 'kes3': 11499, 'kes38': 11500, 'potter': 11501, 'apothecary': 11502, 'homebargains': 11503, 'ukgovernment': 11504, 'dejav': 11505, 'ditto': 11506, 'utensil': 11507, 'eternal': 11508, 'begged': 11509, 'theyre': 11510, 'sue': 11511, 'racial': 11512, 'wewillgetthroughthis': 11513, 'ashtown': 11514, 'phoenix': 11515, 'ate': 11516, '14hrs': 11517, 'expressed': 11518, 'arriving': 11519, 'spaghetti': 11520, 'spencer': 11521, 'mombasa': 11522, 'xd': 11523, 'magically': 11524, 'stabilized': 11525, 'randburg': 11526, '116': 11527, 'coronoavirus': 11528, 'behavioral': 11529, 'harvey': 11530, 'westbank': 11531, 'goody': 11532, 'pec': 11533, 'pairing': 11534, 'lockdownextension': 11535, 'lyn88': 11536, 'naming': 11537, 'obscene': 11538, 'spglobal': 11539, 'platts': 11540, 'argo': 11541, 'oversupplied': 11542, 'sophie': 11543, 'adobe': 11544, 'clickandcollect': 11545, 'phyigital': 11546, 'outweigh': 11547, 'absurdity': 11548, 'strategist': 11549, 'ellen': 11550, 'zentner': 11551, 'statist': 11552, 'moisturize': 11553, 'irritation': 11554, 'dryness': 11555, 'pvvnl': 11556, 'transition': 11557, 'coloradocovid19': 11558, 'licked': 11559, 'beaut': 11560, 'lotion': 11561, 'retailalert': 11562, 'onward': 11563, 'workingforyou': 11564, 'uktruckdrivers': 11565, 'truckinaround': 11566, 'truckerslife': 11567, 'rdc': 11568, 'avonmouth': 11569, 'tally': 11570, '288': 11571, '117': 11572, 'hindsight': 11573, 'unintended': 11574, 'ebrahim': 11575, 'patel': 11576, 'stern': 11577, '21daylockdown': 11578, 'spoken': 11579, '5am': 11580, 'donut': 11581, 'jockopodcast': 11582, 'jockowillink': 11583, 'futureleaders': 11584, 'dadlife': 11585, 'clash': 11586, 'idiocy': 11587, 'guise': 11588, 'proclaim': 11589, 'benzykalkoniumchloride': 11590, 'hcin': 11591, 'spanning': 11592, 'hospitalisation': 11593, 'irl': 11594, 'breeding': 11595, 'condemn': 11596, 'considerably': 11597, 'stockpilinguk': 11598, 'disbelief': 11599, 'creep': 11600, 'reshoring': 11601, 'recognition': 11602, 'offshoring': 11603, 'makechinapay': 11604, 'reshoringusa': 11605, 'littlecaesers': 11606, 'unethical': 11607, 'douchebags': 11608, 'dickmove': 11609, 'dontbeselfish': 11610, 'lsfo': 11611, 'parallel': 11612, 'angsty': 11613, 'insanity': 11614, 'echoing': 11615, 'mkg': 11616, 'shortfall': 11617, 'translate': 11618, 'deficit': 11619, 'badly': 11620, 'stellar': 11621, 'greatdepression': 11622, 'economicsinthenews': 11623, 'passionforeconomics': 11624, 'polite': 11625, 'amarinder': 11626, 'malout': 11627, 'mukatsar': 11628, 'sahib': 11629, 'bitch': 11630, 'cltnews': 11631, 'ncnews': 11632, 'wccb': 11633, 'egede': 11634, 'productively': 11635, 'audience': 11636, 'catherine': 11637, 'amato': 11638, 'wgbh': 11639, 'wht': 11640, 'navarro': 11641, 'repurposed': 11642, 'honeywell': 11643, 'gaynor': 11644, 'reid': 11645, 'overstate': 11646, 'gin': 11647, 'msnbcanswers': 11648, 'shld': 11649, 'fr': 11650, 'grape': 11651, 'instantaneously': 11652, 'adjust': 11653, 'lookoutforothers': 11654, 'neilson': 11655, '202': 11656, '224': 11657, '3121': 11658, 'visual': 11659, 'estimating': 11660, 'alexis': 11661, 'akira': 11662, 'toda': 11663, 'idle': 11664, 'unaffected': 11665, 'ptnyf': 11666, '059': 11667, 'radr': 11668, 'parcelpal': 11669, 'oxvent': 11670, 'stabilization': 11671, 'businesstransformation': 11672, 'mercari': 11673, 'declutter': 11674, 'unpacking': 11675, 'detectable': 11676, 'elder': 11677, 'errand': 11678, 'presidency': 11679, 'fre': 11680, 'drastically': 11681, 'ntv': 11682, 'journal': 11683, 'firstrespondersfirst': 11684, '50k': 11685, 'weakens': 11686, 'rinse': 11687, '0711590279': 11688, 'ruto': 11689, 'mutahi': 11690, 'kagwe': 11691, 'kibe': 11692, 'kibaki': 11693, 'museveni': 11694, 'commute': 11695, 'elementary': 11696, 'lemon': 11697, 'remedy': 11698, 'callon': 11699, 'cpe': 11700, '3bln': 11701, 'timed': 11702, 'acquisition': 11703, 'explorer': 11704, 'edc': 11705, 'pocketdump': 11706, 'ar15': 11707, 'ar15safespace': 11708, 'pewpewpew': 11709, 'gunsofinstagram': 11710, 'p365': 11711, 'p365sas': 11712, 'azliving': 11713, 'vairus': 11714, 'joes': 11715, 'peppermint': 11716, 'sarah': 11717, 'westall': 11718, 'pregnant': 11719, 'vaccination': 11720, 'clubhousegolfstore': 11721, 'clubhousegolf': 11722, 'kajang': 11723, 'shafwan': 11724, 'zaidon': 11725, 'introduces': 11726, 'profesionales': 11727, 'salud': 11728, 'hasta': 11729, 'empleados': 11730, 'camioneros': 11731, 'traen': 11732, 'suministros': 11733, 'gracias': 11734, 'appdome': 11735, 'tovar': 11736, 'appsec': 11737, 'mobileappsec': 11738, 'boycottrumppressconferences': 11739, 'stockup': 11740, 'remembers': 11741, 'resetyourvalues': 11742, 'torbj': 11743, 'becker': 11744, '9yes': 11745, 'carefree': 11746, 'mam': 11747, 'alzheimer': 11748, 'advise': 11749, 'nbc10responds': 11750, 'viewer': 11751, 'coworker': 11752, 'ridiculously': 11753, 'thesis': 11754, 'underground': 11755, 'land': 11756, 'commonplace': 11757, 'distiller': 11758, 'guild': 11759, 'nigga': 11760, 'takin': 11761, 'strapup': 11762, 'purgin': 11763, 'cannatech': 11764, 'cannatechtoday': 11765, 'cannabisbusiness': 11766, 'cannabisscience': 11767, 'wuhancoronavirus': 11768, 'goverment': 11769, 'unsurprisingly': 11770, 'kolkata': 11771, 'pricesindia': 11772, 'octopus': 11773, 'sandbox': 11774, 'poco': 11775, 'dreamstime': 11776, 'epochtimes': 11777, 'mailbox': 11778, 'shouldbeillegal': 11779, 'rogersripoff': 11780, 'chemistry': 11781, 'swedish': 11782, 'approvall': 11783, 'dubai': 11784, 'progression': 11785, 's7c4de5xnb': 11786, 'laura': 11787, 'pressuring': 11788, 'storeroom': 11789, 'ctv': 11790, 'phony': 11791, 'phil': 11792, 'weiser': 11793, 'alwayswatchingoutforyou': 11794, 'context': 11795, 'unleashed': 11796, 'oval': 11797, 'til': 11798, 'bbcnews': 11799, 'avoidingtheshops': 11800, 'pluckingupcourage': 11801, 'onlyforessentials': 11802, 'eoengland': 11803, 'deny': 11804, 'ffp3': 11805, 'ptocedure': 11806, 'apron': 11807, 'londonlockdown': 11808, 'lvmh': 11809, 'swapping': 11810, 'luxuryfashion': 11811, 'brandcsr': 11812, 'gartnermktg': 11813, 'reserving': 11814, 'swim': 11815, 'drowning': 11816, 'whore': 11817, 'pfgc': 11818, 'ncmi': 11819, 'plnt': 11820, 'macy': 11821, 'herald': 11822, 'solitary': 11823, 'bedlam': 11824, 'hustle': 11825, 'samaritan': 11826, 'gooders': 11827, 'huckster': 11828, 'icliniq100hrs': 11829, 'celebrateyou': 11830, 'onlinedoctor': 11831, 'solihull': 11832, 'breakfast': 11833, 'bureaucracy': 11834, 'doling': 11835, 'arrangement': 11836, 'enormously': 11837, 'repacking': 11838, 'jeffrey': 11839, 'epstein': 11840, 'alleged': 11841, 'pimp': 11842, 'ghislaine': 11843, 'maxwell': 11844, 'dakota': 11845, 'attorneygeneral': 11846, 'qeretail': 11847, 'watford': 11848, 'fridayfeeling': 11849, 'shoppingday': 11850, 'tcbasia': 11851, 'rushing': 11852, 'soniashenoy': 11853, 'batra': 11854, 'anujsinghal': 11855, 'purchasin': 11856, 'foia': 11857, 'waiver': 11858, 'fritz': 11859, 'nix': 11860, 'garmentfactories': 11861, 'wassner': 11862, 'cue': 11863, 'outlandish': 11864, 'helper': 11865, 'nationalphysiciansweek': 11866, 'consumernews': 11867, 'centralbank': 11868, 'insurancecompanies': 11869, 'phishingscams': 11870, 'irishconsumers': 11871, 'katt': 11872, 'chef': 11873, 'shes': 11874, 'lovemykids': 11875, 'treating': 11876, 'tpmelection': 11877, 'safdar': 11878, '78': 11879, 'lysolwipes': 11880, 'voluntarily': 11881, 'supportsmallbusinesses': 11882, 'mcclintock': 11883, 'evaluation': 11884, 'nke': 11885, 'azo': 11886, 'lulu': 11887, 'tgt': 11888, 'tsco': 11889, 'resiliency': 11890, 'arguing': 11891, 'shuttering': 11892, 'interrupt': 11893, 'stared': 11894, 'deteriorated': 11895, 'suburb': 11896, 'stayholmesglen': 11897, 'kew': 11898, 'mooroolbarking': 11899, 'lynn': 11900, 'hagan': 11901, 'uncommon': 11902, 'uncommonsense': 11903, 'attestation': 11904, 'carrefourmarket': 11905, 'fg': 11906, 'nysc': 11907, 'wont': 11908, 'carona': 11909, 'caronavirus': 11910, 'maximize': 11911, 'cco': 11912, 'shea': 11913, 'worstofpeople': 11914, 'mabrouq': 11915, 'maldives': 11916, '200k': 11917, 'goon': 11918, 'minded': 11919, 'wea': 11920, 'sore': 11921, 'sanitizing': 11922, 'promised': 11923, 'runningfortheboarder': 11924, 'headlong': 11925, 'curtailment': 11926, 'corrected': 11927, 'dec': 11928, '2016': 11929, 'pace': 11930, 'goldman': 11931, 'hampton': 11932, 'hudson': 11933, 'tripling': 11934, 'scrolling': 11935, 'profitingfrompandemics': 11936, 'sanjiv': 11937, 'ghmc': 11938, 'rythu': 11939, 'bazar': 11940, 'sai': 11941, 'baba': 11942, 'sharadanagar': 11943, 'unstable': 11944, 'chaldean': 11945, 'mensah': 11946, 'macewan': 11947, 'traveling': 11948, '10times': 11949, 'reflection': 11950, 'vh1': 11951, '2030': 11952, 'incl': 11953, 'nietzsche': 11954, 'pathos': 11955, 'der': 11956, 'distanz': 11957, 'menu': 11958, 'assclowns': 11959, 'lafayette': 11960, 'thenextgiantleap': 11961, 'presume': 11962, 'spreader': 11963, 'criticism': 11964, 'baked': 11965, 'throttle': 11966, 'gaseous': 11967, 'emission': 11968, 'grandfather': 11969, 'sneaking': 11970, 'oldpeoplearestubbornashell': 11971, 'offended': 11972, 'sidestepping': 11973, 'elekworld': 11974, 'elekworldjulia': 11975, 'iphonerepair': 11976, 'wk': 11977, 'revives': 11978, 'vodafoneuk': 11979, 'sympatheticcapitalism': 11980, 'custexp': 11981, 'hint': 11982, 'stick': 11983, 'b4': 11984, 'wypipo': 11985, 'santa': 11986, 'someplace': 11987, 'mcag': 11988, 'muletown': 11989, 'latte': 11990, 'latteart': 11991, 'enjoying': 11992, 'buylocal': 11993, 'citi': 11994, 'yougov': 11995, 'occurred': 11996, 'hairworld': 11997, 'paulmitchell': 11998, 'prosus': 11999, 'invested': 12000, 'swiggy': 12001, 'byju': 12002, 'helpdeskforcoronavirus': 12003, 'wutang': 12004, 'grift': 12005, 'underappreciated': 12006, 'underacknowledge': 12007, 'howtokeeppeoplehome': 12008, 'rideshare': 12009, 'cratering': 12010, '14th': 12011, 'golden': 12012, 'leisurely': 12013, 'strolling': 12014, 'smartphones': 12015, 'preciousmetals': 12016, 'forbes': 12017, 'trump2020landslide': 12018, 'democratsaredestroyingamerica': 12019, 'violated': 12020, 'disseminating': 12021, 'theshopritegroup': 12022, 'r150': 12023, 'turnover': 12024, 'regenesysbusinesschool': 12025, 'monarchy': 12026, 'ape': 12027, 'ruled': 12028, 'planetoftheapes': 12029, 'judith': 12030, 'schwartz': 12031, 'consumerpr': 12032, 'crisispr': 12033, 'prtips': 12034, '12yrs': 12035, 'born': 12036, '2002': 12037, 'qe': 12038, 'relaunched': 12039, 'resumption': 12040, 'bernanke': 12041, 'yellen': 12042, 'medicate': 12043, 'cocktail': 12044, 'cashew': 12045, 'dhs': 12046, 'leaked': 12047, 'coloradan': 12048, 'ecological': 12049, 'obesity': 12050, 'harassed': 12051, 'quarantinechronicles': 12052, 'crazypeople': 12053, 'handrail': 12054, 'justified': 12055, 'sillah': 12056, 'detox': 12057, 'phoneaddiction': 12058, 'digitaldetox': 12059, 'bame': 12060, 'krg': 12061, 'reform': 12062, 'longterm': 12063, 'baghdad': 12064, 'adverse': 12065, 'steepen': 12066, 'grocerydelivery': 12067, 'retailstore': 12068, 'astonishing': 12069, 'kalady': 12070, 'coop': 12071, 'yup': 12072, 'marketingconsultant': 12073, 'internetmarketing': 12074, 'mondaywisdom': 12075, 'newweek': 12076, 'civility': 12077, 'limbo': 12078, 'equivalent': 12079, 'slayer': 12080, 'flickr': 12081, 'prosecution': 12082, 'prosecuted': 12083, 'underpaid': 12084, 'thursdaymotivation': 12085, 'thursdaymorning': 12086, 'secondwave': 12087, 'closeness': 12088, 'inaction': 12089, 'wander': 12090, 'nick': 12091, 'carroll': 12092, 'navigator': 12093, 'barrier': 12094, 'certificate': 12095, 'chant': 12096, 'diff': 12097, 'outsourced': 12098, 'insourced': 12099, '10x': 12100, 'poo': 12101, 'layman': 12102, 'tact': 12103, 'poll': 12104, 'pers': 12105, 'sorta': 12106, 'fascinating': 12107, 'biscuit': 12108, 'stayhomebutnotsilent': 12109, 'convinced': 12110, 'hunch': 12111, 'rolling': 12112, 'defeating': 12113, 'whipps': 12114, 'unaware': 12115, 'hackney': 12116, 'conservation': 12117, '1609': 12118, 'username': 12119, 'nnesico': 12120, 'testified': 12121, 'reframe': 12122, 'obsessing': 12123, 'chaotic': 12124, 'wespeechies': 12125, 'curtesy': 12126, 'affective': 12127, '0113': 12128, '3781877': 12129, 'atisha': 12130, 'lamrim': 12131, 'je': 12132, 'tsongkhapa': 12133, 'progress': 12134, 'enlightenment': 12135, 'carefully': 12136, 'kerala': 12137, 'pssresources': 12138, 'unsupported': 12139, 'repressive': 12140, 'orillia': 12141, 'cancelling': 12142, 'marketeers': 12143, 'jp': 12144, 'pmi': 12145, 'gloomy': 12146, 'tray': 12147, 'recognised': 12148, 'inexcusable': 12149, 'flurry': 12150, 'yb': 12151, 'agenparl': 12152, 'iorestoacasa': 12153, 'redesign': 12154, 'rat': 12155, 'mgvcl': 12156, 'tensional': 12157, '41171': 12158, 'hookup': 12159, 'socialdistancingpickuplines': 12160, 'overreaction': 12161, 'mundogonemado': 12162, 'suitenoticias': 12163, 'marijuananews': 12164, 'marijuanaindustry': 12165, 'carinsurance': 12166, 'newcastle': 12167, 'dawkins': 12168, 'overturn': 12169, 'underrated': 12170, 'asshats': 12171, 'kopn': 12172, 'spawned': 12173, 'vr': 12174, 'jacob': 12175, 'driebergen': 12176, '1436': 12177, '1509': 12178, '1502': 12179, 'motion': 12180, 'naturalhair': 12181, 'camouflaging': 12182, 'wolverine': 12183, 'brow': 12184, 'darnyourona': 12185, 'clinician': 12186, 'hipaa': 12187, 'sacdamediaadvisory': 12188, 'primary': 12189, 'giveblood': 12190, 'depressed': 12191, 'fatalistic': 12192, 'canadacovid19': 12193, 'grapple': 12194, 'bull': 12195, 'transitioned': 12196, 'bear': 12197, 'financialplanning': 12198, 'mustard': 12199, 'shortly': 12200, 'socal': 12201, 'nbcla': 12202, 'littleproudmp': 12203, 'thei': 12204, 'containing': 12205, 'preventative': 12206, '08162453243': 12207, 'schael': 12208, 'cornteen': 12209, 'geez': 12210, 'tumble': 12211, '77': 12212, '7038': 12213, '97': 12214, 'stole': 12215, 'measles': 12216, 'pox': 12217, 'apollo': 12218, 'tuber': 12219, 'spice': 12220, 'bush': 12221, 'farmland': 12222, 'softened': 12223, 'fundamentally': 12224, 'evan': 12225, 'coronaout': 12226, 'pointer': 12227, 'edeka': 12228, 'appropriately': 12229, 'inoculated': 12230, 'deepening': 12231, 'medtech': 12232, 'meddevice': 12233, 'vary': 12234, 'gandhi': 12235, 'doggy': 12236, 'schoolteacher': 12237, 'sb': 12238, 'granddaughter': 12239, 'intolerance': 12240, 'transference': 12241, 'msg': 12242, 'lieu': 12243, 'reeling': 12244, 'adamneumann': 12245, 'kibbutz': 12246, 'tucker': 12247, 'carlson': 12248, 'threw': 12249, 'phd': 12250, 'poloz': 12251, 'determining': 12252, 'nab': 12253, 'cockburn': 12254, 'agribusiness': 12255, 'affirmative': 12256, '206': 12257, 'teatowel': 12258, 'remark': 12259, 'pillaging': 12260, 'discounting': 12261, 'lure': 12262, 'gmv': 12263, 'cust': 12264, 'aftercare': 12265, 'complicated': 12266, 'nausea': 12267, 'inducing': 12268, 'layout': 12269, 'mgmnt': 12270, '340million': 12271, 'attacking': 12272, '006': 12273, 'print': 12274, 'handsanitizing': 12275, 'turnip': 12276, 'animalcrossingnewhorizons': 12277, 'closebordersnow': 12278, 'sefton': 12279, 'helpline': 12280, 'crunchy': 12281, 'smh': 12282, 'limitedsupplies': 12283, 'itchy': 12284, 'irritated': 12285, 'fulfillment': 12286, 'autonomously': 12287, 'powered': 12288, 'automated': 12289, 'hyper': 12290, 'localization': 12291, 'algos': 12292, 'int': 12293, 'unreliable': 12294, 'myer': 12295, 'drained': 12296, 'plowed': 12297, 'highstreet': 12298, 'sbinsights': 12299, 'avb': 12300, 'harnessing': 12301, 'knowns': 12302, 'dirt': 12303, 'detected': 12304, 'seoul': 12305, 'elevated': 12306, 'granter': 12307, 'lassie': 12308, 'manifest': 12309, 'reprogramming': 12310, 'disney': 12311, 'yournerdsidepodcast': 12312, 'yournerdside': 12313, 'kblx1029': 12314, 'spreaker': 12315, 'tunein': 12316, 'applepodcast': 12317, 'tmr': 12318, 'eastside': 12319, 'supervised': 12320, 'presence': 12321, 'brazil': 12322, 'globalized': 12323, 'inhumanely': 12324, 'caging': 12325, 'unsanitarily': 12326, 'butchering': 12327, 'blind': 12328, 'westside': 12329, 'itsnottheendoftheworld': 12330, 'fingernail': 12331, 'indianeconomy': 12332, 'unplanned': 12333, 'avant': 12334, 'garde': 12335, 'fabliss': 12336, 'sheila': 12337, 'sendinglove': 12338, 'samantha': 12339, 'zara': 12340, 'leon': 12341, 'fab': 12342, 'closertogetherstayingapart': 12343, 'writenow': 12344, 'grossery': 12345, 'participation': 12346, 'dmart': 12347, 'specify': 12348, 'lagar': 12349, 'extand': 12350, 'spreat': 12351, 'erbil': 12352, 'twitterkurds': 12353, 'kdka': 12354, 'eagle': 12355, 'occupancy': 12356, 'wolf': 12357, 'itwire': 12358, 'datagovernance': 12359, 'cio': 12360, 'cdo': 12361, 'overorunder': 12362, 'subsides': 12363, 'stayingpositive': 12364, 'fairly': 12365, 'pullback': 12366, 'wrought': 12367, 'daddy': 12368, 'realty': 12369, 'mitu': 12370, 'mathur': 12371, 'gpm': 12372, 'architect': 12373, 'lockdownextended': 12374, 'chevron': 12375, 'exxon': 12376, 'mobil': 12377, 'occidental': 12378, 'mb': 12379, 'extent': 12380, 'pantyhose': 12381, 'crossed': 12382, 'zz': 12383, 'iwillstayathome': 12384, 'vanessahudgens': 12385, 'louisville': 12386, 'pod': 12387, 'bathtub': 12388, 'mommy': 12389, 'recessionary': 12390, 'turbulent': 12391, 'marketimpacts': 12392, 'riveting': 12393, 'wam': 12394, 'anticipates': 12395, '03454': 12396, '05': 12397, '06': 12398, 'allocates': 12399, 'fireman': 12400, 'thrilled': 12401, 'aerosolized': 12402, 'jama': 12403, 'fac': 12404, 'sideeffectsofquarantinelife': 12405, 'curbsidetakeout': 12406, 'ampdeliveryoptions': 12407, 's101northeatery': 12408, 'lahore': 12409, 'vault': 12410, 'suspends': 12411, 'seah': 12412, 'kian': 12413, 'peng': 12414, 'lloy': 12415, 'rb': 12416, 'barc': 12417, 'hsba': 12418, 'lloyd': 12419, 'barclays': 12420, 'fundraise': 12421, 'overwhelm': 12422, 'madison': 12423, 'smelling': 12424, 'crimestoppers': 12425, 'ink3gvurqk': 12426, 'day6': 12427, 'librarian': 12428, 'waitress': 12429, 'fortnite': 12430, 'minecraft': 12431, 'lgbtq': 12432, 'lesbian': 12433, 'catholic': 12434, 'transgender': 12435, 'diabetes': 12436, 'quickie': 12437, '3oz': 12438, 'frankly': 12439, 'obnormal': 12440, 'smiled': 12441, 'supermarketapocalypse': 12442, 'dine': 12443, 'injected': 12444, 'substance': 12445, 'thc': 12446, 'nicotine': 12447, 'feta': 12448, 'mozzarella': 12449, 'khaki': 12450, 'wardi': 12451, 'guiding': 12452, 'unecessary': 12453, 'tall': 12454, 'nagpurpolice': 12455, 'colombian': 12456, 'colombia': 12457, 'gathered': 12458, 'havent': 12459, 'cardboard': 12460, 'healthcomms': 12461, 'prpros': 12462, '15gb': 12463, 'africaautoinsights': 12464, 'deffo': 12465, 'ppeshortages': 12466, 'distancer': 12467, 'sidewalk': 12468, 'coronapersona': 12469, 'sixfeetapart': 12470, 'buyingagent': 12471, 'propertyfinder': 12472, 'propertysearch': 12473, 'wakemed': 12474, 'requesting': 12475, 'correlate': 12476, 'vpn': 12477, 'surprising': 12478, 'inland': 12479, 'empire': 12480, 'stayhomesavelifes': 12481, 'northwales': 12482, 'sccp': 12483, 'implemented': 12484, 'ncovid': 12485, 'servey': 12486, 'mu': 12487, 'carded': 12488, 'chap': 12489, 'knee': 12490, 'rummaging': 12491, 'vibe': 12492, 'wil': 12493, 'ticking': 12494, 'stayprivate': 12495, 'orlando': 12496, 'whengovernorsfail': 12497, 'aweful': 12498, 'weirdest': 12499, 'unpredictable': 12500, 'financialy': 12501, 'cellphone': 12502, 'allan': 12503, 'gr': 12504, 'tent': 12505, 'fifteenth': 12506, 'impressive': 12507, 'yogi': 12508, 'adityanath': 12509, 'khadi': 12510, 'upgovernment': 12511, 'permission': 12512, 'calagione': 12513, 'unilever': 12514, 'rodahidup': 12515, 'benjamin': 12516, 'soh': 12517, 'ofcourse': 12518, 'drvd': 12519, 'waitr': 12520, 'aprn': 12521, 'whtr': 12522, 'cgc': 12523, 'pennystocks': 12524, 'trampoline': 12525, 'schoolclosuresuk': 12526, 'ceased': 12527, 'boat': 12528, 'alot': 12529, 'eerily': 12530, 'bio': 12531, 'videoftheday': 12532, 'picoftheday': 12533, 'pasadena': 12534, 'miserable': 12535, 'clare': 12536, 'connors': 12537, 'levins': 12538, '587': 12539, '4272': 12540, 'scan': 12541, 'telier': 12542, 'stopscango': 12543, 'helpneedy': 12544, 'limitbuying': 12545, '2020rationing': 12546, 'beki': 12547, 'domestica': 12548, 'malta': 12549, 'homefurnishings': 12550, 'bespokefurniture': 12551, 'bespoke': 12552, 'freedelivery': 12553, 'wrestling': 12554, 'crzy': 12555, 'unproven': 12556, 'ven': 12557, 'unsaleable': 12558, 'admin': 12559, 'secondly': 12560, 'headquarters': 12561, 'obnoxious': 12562, 'severely': 12563, 'unionize': 12564, 'supreme': 12565, 'optical': 12566, 'ableism': 12567, 'visibly': 12568, 'stopablelism': 12569, 'jamaica': 12570, 'rm': 12571, 'rm30': 12572, 'hallelujah': 12573, 'corkscrew': 12574, 'obsolete': 12575, 'meansofproduction': 12576, 'retreat': 12577, 'mode': 12578, 'chow': 12579, 'collated': 12580, 'uptodate': 12581, 'comodities': 12582, 'in2': 12583, 'li': 12584, 'trickle': 12585, 'chin': 12586, 'kallanish': 12587, 'withme': 12588, 'superheroes': 12589, 'hardworking': 12590, 'hailed': 12591, 'bushfires': 12592, 'axed': 12593, 'trolly': 12594, 'succumbing': 12595, 'scalper': 12596, 'justeatuk': 12597, 'establishes': 12598, 'dod': 12599, 'navy': 12600, 'cnnpolitics': 12601, 'grouping': 12602, 'cf97': 12603, 'cffc': 12604, 'yep': 12605, 'mulder': 12606, 'krychek': 12607, 'gunman': 12608, 'scully': 12609, 'clearance': 12610, 'skinner': 12611, 'workshop': 12612, 'kikkerland': 12613, 'jeeturaj': 12614, 'mumbaikiawaz': 12615, '22k': 12616, 'maharash': 12617, 'nothelpful': 12618, 'bellcanada': 12619, 'shpock': 12620, 'fewest': 12621, 'seattle': 12622, 'interacting': 12623, 'ueno': 12624, 'asakusa': 12625, 'shinjuku': 12626, 'innocence': 12627, 'hydrogen': 12628, 'peroxide': 12629, 'hacking': 12630, 'wisdomwednesday': 12631, 'watched': 12632, 'perpetrator': 12633, 'ethnicity': 12634, 'embarrassed': 12635, 'secretly': 12636, 'ccsa': 12637, '650': 12638, 'enraged': 12639, 'dipa': 12640, 'aguete': 12641, 'murray': 12642, 'kessler': 12643, 'cramer': 12644, 'perrigo': 12645, 'credittrends': 12646, 'perish': 12647, 'selfdiscipline': 12648, 'nourishment': 12649, 'criterion': 12650, 'sucked': 12651, 'severest': 12652, '1930s': 12653, 'kristin': 12654, 'grand': 12655, 'launching': 12656, '25k': 12657, 'vandal': 12658, 'vir': 12659, 'eseva': 12660, '14713': 12661, '15days': 12662, 'brat': 12663, 'mob983682234': 12664, 'empowering': 12665, 'likelihood': 12666, 'feral': 12667, 'peop': 12668, 'focussed': 12669, 'farmasi': 12670, 'luxurious': 12671, 'yamal': 12672, 'astrocyte': 12673, 'wb': 12674, 'smooth': 12675, 'amitav': 12676, 'roy': 12677, 'kungflu': 12678, 'sacked': 12679, 'behaved': 12680, 'accordingly': 12681, 'hubby': 12682, 'tshirt': 12683, 'followme': 12684, 'newtrend': 12685, 'welch': 12686, 'bell': 12687, 'supportdailywagers': 12688, 'thanksitcreckitthuldaburgodrej': 12689, 'scamwarning': 12690, 'asd': 12691, 'acsc': 12692, 'themed': 12693, 'scamwatch': 12694, 'photography': 12695, 'maharashtra': 12696, 'attic': 12697, 'handsanitisers': 12698, 'conscience': 12699, 'springfashion': 12700, 'evahh': 12701, 'congregation': 12702, 'cared': 12703, 'frederick': 12704, 'startagarden': 12705, 'stayhome24in48': 12706, 'switzerland': 12707, 'siew': 12708, 'defy': 12709, 'gravity': 12710, 'bouncing': 12711, 'bombard': 12712, 'impotus': 12713, 'politicizing': 12714, 'relapsing': 12715, 'decides': 12716, 'dtic': 12717, 'dodgy': 12718, 'cooling': 12719, 'zambia': 12720, 'salockdown': 12721, 'barton': 12722, 'savage': 12723, '48h': 12724, 'emerged': 12725, 'fiction': 12726, 'lovenowexplorelater': 12727, 'travellater': 12728, 'glaciermt': 12729, 'joker': 12730, 'batman': 12731, 'stopbulkbuying': 12732, 'par': 12733, 'poland': 12734, 'rzeczpospolita': 12735, 'suffers': 12736, 'fibromyalgia': 12737, 'classed': 12738, 'soc': 12739, 'investigating': 12740, 'uploaded': 12741, 'hagens': 12742, 'typo': 12743, 'crazything': 12744, 'butticket': 12745, 'highlighted': 12746, 'makinde': 12747, 'upgrading': 12748, 'medica': 12749, 'alibaba': 12750, 'riseandshine': 12751, 'spanner': 12752, 'chime': 12753, 'surrogate': 12754, 'bodth': 12755, 'stein': 12756, 'gavin': 12757, 'retweeting': 12758, 'congregating': 12759, 'eustice': 12760, 'eliminate': 12761, 'chronic': 12762, 'leasing': 12763, 'arctic': 12764, 'drilling': 12765, 'precipitous': 12766, 'siege': 12767, 'aaron': 12768, 'idahoan': 12769, '208': 12770, '334': 12771, 'e14': 12772, 'postcruise': 12773, '98': 12774, 'telework': 12775, 'debating': 12776, '14daypostcruisecountdown': 12777, 'stopcorona': 12778, 'cruiseship': 12779, 'deodorant': 12780, 'overkill': 12781, 'rundown': 12782, 'consumed': 12783, '2500': 12784, 'bedroom': 12785, '1700': 12786, 'sympathiser': 12787, '07708913141': 12788, 'unfairly': 12789, '007': 12790, 'scamming': 12791, 'aft': 12792, 'hve': 12793, 'underpaying': 12794, 'cleaningsupplies': 12795, 'netizens': 12796, 'mockery': 12797, 'melania': 12798, 'temper': 12799, 'priyanka': 12800, 'chopra': 12801, 'julianne': 12802, 'deb': 12803, 'companionship': 12804, 'whatweneed': 12805, 'careathome': 12806, 'safeathome': 12807, 'visitingangels': 12808, 'skynews': 12809, 'newsnight': 12810, 'lbc': 12811, 'fancy': 12812, 'upscale': 12813, 'maskmystery': 12814, 'blowing': 12815, 'withdrawing': 12816, 'utilize': 12817, 'acti': 12818, 'colluding': 12819, 'botched': 12820, 'additionally': 12821, 'realtime': 12822, 'nakuru': 12823, 'oldest': 12824, 'stake': 12825, 'succumb': 12826, 'superstition': 12827, 'quack': 12828, 'letsfightcoronatogether': 12829, 'coronafreeworld': 12830, 'srimspeaks': 12831, 'webpage': 12832, 'phonecall': 12833, 'clarehall': 12834, 'cyclist': 12835, 'glovo': 12836, 'eats': 12837, 'sunny': 12838, 'cycling': 12839, 'sarasota': 12840, 'manatee': 12841, 'lag': 12842, 'quid': 12843, 'supermark': 12844, 'schooling': 12845, 'fianc': 12846, 'cog': 12847, 'nativo': 12848, 'myia': 12849, 'mirror': 12850, 'lhm': 12851, 'unclean': 12852, 'synergy': 12853, 'durin': 12854, 'shoppin': 12855, 'feelin': 12856, 'thehungergames': 12857, 'carryout': 12858, 'sided': 12859, 'togetheralone': 12860, 'rotate': 12861, 'isolationlife': 12862, 'ninety': 12863, 'foodsystem': 12864, 'assuming': 12865, 'globalagenda': 12866, 'reckoned': 12867, 'incoherent': 12868, 'ecommercenews': 12869, 'asi': 12870, 'messenger': 12871, 'dumbass': 12872, 'hometasking': 12873, 'stair': 12874, 'scp': 12875, 'scpmemes': 12876, 'pubgmobile': 12877, 'pubg': 12878, 'furries': 12879, 'besave': 12880, 'dragon': 12881, 'inst': 12882, 'netto': 12883, 'rhubarb': 12884, 'custard': 12885, 'squeaking': 12886, 'freeport': 12887, '5th': 12888, 'newscentermaine': 12889, 'stoner': 12890, 'samreen': 12891, 'akdeniz': 12892, 'hoe': 12893, 'walthamstow': 12894, 'acumen': 12895, 'finest': 12896, 'antiseptic': 12897, 'instock': 12898, 'ordernow': 12899, 'highland': 12900, 'highlandlakes': 12901, 'foodpantries': 12902, 'dailytrib': 12903, 'finder': 12904, 'commandeering': 12905, 'astronomical': 12906, 'ridge': 12907, 'parkinglot': 12908, 'askusanything': 12909, '17th': 12910, 'ghaziabad': 12911, 'goi': 12912, 'proportionately': 12913, 'lfk': 12914, 'maskedup': 12915, 'glovedup': 12916, 'abiding': 12917, 'maskupforothers': 12918, 'protectthevulnerable': 12919, 'needtoeat': 12920, 'dominance': 12921, 'rebounded': 12922, 'fiscal': 12923, 'tempusfx': 12924, 'forexnews': 12925, 'barrf': 12926, 'corrupttrump': 12927, 'lyinking': 12928, 'disbarbarr': 12929, 'trumpliespeopledie': 12930, 'overdosing': 12931, 'leadi': 12932, 'bulkbuying': 12933, 'opecplus': 12934, 'flavour': 12935, 'rack': 12936, 'minhas': 12937, 'indebted': 12938, 'beige': 12939, 'perdue': 12940, 'randy': 12941, 'assuage': 12942, 'loud': 12943, 'handsomely': 12944, 'testy': 12945, 'begrateful': 12946, '5pm': 12947, 'prophet': 12948, 'endometriosis': 12949, 'r1bn': 12950, 'ip': 12951, 'angelo': 12952, 'mazza': 12953, 'intellectualproperty': 12954, 'hazzard': 12955, 'harbour': 12956, 'accordance': 12957, 'swabbed': 12958, 'influenza': 12959, 'docked': 12960, 'pegging': 12961, 'ratcheting': 12962, 'facetimeing': 12963, 'mumbling': 12964, 'hahaha': 12965, 'sankey': 12966, 'mizuho': 12967, 'combo': 12968, 'lowdown': 12969, 'judd': 12970, 'legum': 12971, 'banger': 12972, 'randb': 12973, 'weeknd': 12974, 'theweeknd': 12975, 'rudygobert': 12976, 'tomhanks': 12977, 'furloughing': 12978, 'stockpilling': 12979, 'ocr': 12980, 'ce': 12981, 'kn95': 12982, 'moq': 12983, '86159929736': 12984, 'chad': 12985, 'pathanamthitta': 12986, 'asish': 12987, 'mohankumar': 12988, 'longboat': 12989, 'newfoundland': 12990, 'afterwards': 12991, 'seetheday': 12992, 'bouquet': 12993, 'foodie': 12994, 'moon': 12995, 'miracle': 12996, 'nailing': 12997, 'processed': 12998, 'refined': 12999, 'calorically': 13000, 'dense': 13001, 'conditioning': 13002, 'markettrends': 13003, 'picky': 13004, 'ole': 13005, 'escalation': 13006, 'di1tv': 13007, 'morocco': 13008, 'courthouse': 13009, 'glimmer': 13010, 'isps': 13011, 'techcrunch': 13012, 'privacymatters': 13013, 'profiling': 13014, 'recruit': 13015, 'humankind': 13016, 'ongata': 13017, 'rongai': 13018, 'kware': 13019, 'imminent': 13020, 'mercy': 13021, 'fowarding': 13022, 'gikombacorona': 13023, 'saboteur': 13024, 'btc': 13025, 'oio': 13026, 'dta': 13027, 'rcd': 13028, 'costo': 13029, 'mohammad': 13030, 'khani': 13031, 'civilised': 13032, 'nctechmember': 13033, 'membershelpingmembers': 13034, 'yours': 13035, 'getrich': 13036, 'paidfromhome': 13037, 'workfromanywhere': 13038, 'internetrich': 13039, 'jay': 13040, 'prohibited': 13041, 'washingtonian': 13042, 'fro': 13043, 'trollies': 13044, 'hunker': 13045, 'wisconsibly': 13046, 'wiunion': 13047, 'resupply': 13048, 'apocalyptic': 13049, 'arbitrary': 13050, 'punitive': 13051, 'endangers': 13052, 'mywifelife': 13053, 'bunghole': 13054, 'boo': 13055, 'luseelu': 13056, 'proved': 13057, 'cn': 13058, 'ra': 13059, '39': 13060, 'sleeper': 13061, 'recalled': 13062, 'driverless': 13063, 'wariness': 13064, 'fleetmanagement': 13065, 'borisjohnsonlies': 13066, 'invaluable': 13067, '55yr': 13068, 'laughter': 13069, 'dutch': 13070, 'fluctuation': 13071, 'wisdom': 13072, 'collectiveness': 13073, 'reciprocate': 13074, 'ccot': 13075, 'teaparty': 13076, 'hannity': 13077, 'kag2020': 13078, 'nra': 13079, 'oann': 13080, 'wnd': 13081, 'gauging': 13082, 'robertson84': 13083, 'publish': 13084, 'longtime': 13085, '750': 13086, 'persists': 13087, 'cantonment': 13088, 'meerut': 13089, 'setup': 13090, 'sanitizes': 13091, 'toe': 13092, 'sirius': 13093, 'xm': 13094, 'proximity': 13095, 'carafoil': 13096, 'fachado': 13097, 'undoubtedly': 13098, 'abundantly': 13099, 'sniper': 13100, 'weapon': 13101, 'annihilate': 13102, 'pistol': 13103, 'ndia': 13104, 'soak': 13105, 'rub': 13106, 'caution': 13107, 'topsmarket': 13108, 'wherearethedeliveries': 13109, 'britney': 13110, 'abilene': 13111, 'messing': 13112, 'hidradenitissuppurativa': 13113, 'discrepancy': 13114, 'oman': 13115, 'muscat': 13116, 'pacp': 13117, 'ren': 13118, 'mnfrg': 13119, 'distrbtn': 13120, 'gutka': 13121, 'earner': 13122, 'precious': 13123, 'savetheday': 13124, 'betterthanpants': 13125, 'funnyshirt': 13126, 'racismisavirus': 13127, 'menstrual': 13128, 'goodwill': 13129, 'fairness': 13130, 'caption': 13131, 'owed': 13132, 'affiliate': 13133, 'yourenergyyourvoice': 13134, '934': 13135, 'rama': 13136, 'frequent': 13137, 'taskmanagement': 13138, 'perlis': 13139, 'kuala': 13140, 'sanglang': 13141, 'grandma': 13142, 'perintahkawalanpergerakan': 13143, 'hurdle': 13144, 'glycerin': 13145, 'perilously': 13146, 'q7': 13147, 'nebraska': 13148, 'breheny': 13149, 'freemarkets': 13150, 'probs': 13151, 'neoliberal': 13152, 'libertarian': 13153, 'invading': 13154, 'phoning': 13155, 'mana': 13156, 'skidded': 13157, 'oversupply': 13158, 'suo': 13159, 'moto': 13160, 'fauci': 13161, 'il': 13162, 'wls': 13163, 'twat': 13164, 'globalism': 13165, 'togetherness': 13166, 'counterbalanced': 13167, 'battleground': 13168, 'blitz': 13169, 'brexiteers': 13170, 'stiff': 13171, 'cahfsweeklyupdate': 13172, 'fantasygrainmarketleague': 13173, 'yield': 13174, 'thisisamess': 13175, 'undergoing': 13176, 'financialhealth': 13177, 'fcac': 13178, 'facilitate': 13179, 'mammal': 13180, '299': 13181, 'cua': 13182, 'checkpoint': 13183, 'questioning': 13184, 'noon': 13185, '76': 13186, '969': 13187, 'gbp': 13188, 'aging': 13189, '1919': 13190, 'patron': 13191, 'manslaughter': 13192, 'evolution': 13193, 'renewable': 13194, 'wipeyourarse': 13195, 'mate': 13196, 'morale': 13197, 'hamster': 13198, 'nonstop': 13199, 'accent': 13200, 'thomasandfriends': 13201, 'bangalore': 13202, 'antibody': 13203, 'rs2500': 13204, 'aidan': 13205, 'inf': 13206, 'yous': 13207, 'krugman': 13208, 'stonewalling': 13209, 'bielefeld': 13210, 'nrw': 13211, 'stabbed': 13212, 'knife': 13213, 'fled': 13214, 'anthony': 13215, 'fensom': 13216, 'monopoly': 13217, 'gouge': 13218, 'faulty': 13219, 'neverforget': 13220, 'exploited': 13221, 'decouplefromchina': 13222, 'abundance': 13223, 'totinosarelifenow': 13224, 'wastage': 13225, 'derry': 13226, 'londonderry': 13227, 'belfast': 13228, 'mexican': 13229, 'tamale': 13230, 'bugin': 13231, 'dinnerandamovie': 13232, 'flinn': 13233, 'qsrs': 13234, 'drivethru': 13235, 'qsr': 13236, 'pooping': 13237, 'illustrator': 13238, 'illustration': 13239, 'cartoonist': 13240, 'doodle': 13241, 'cartoonofinstagram': 13242, 'sketchbook': 13243, 'iceberg': 13244, 'testimonial': 13245, 'injecting': 13246, 'withdraw': 13247, 'protects': 13248, 'liveblog': 13249, 'reflects': 13250, 'carrot': 13251, 'infra': 13252, 'sniffed': 13253, 'flooded': 13254, 'outdoor': 13255, 'zoek': 13256, 'delirious': 13257, 'browne': 13258, '1840': 13259, 'wfp': 13260, 'competiscan': 13261, 'rep': 13262, 'unli': 13263, 'patience': 13264, 'declation': 13265, 'underemployed': 13266, 'credited': 13267, 'gamestop': 13268, 'ghl': 13269, 'paradigm': 13270, 'rm2': 13271, 'extensive': 13272, 'artisan': 13273, 'buttock': 13274, 'sandpaper': 13275, 'woodworking': 13276, 'cabinetry': 13277, 'worshipping': 13278, 'madmax': 13279, 'hoodi': 13280, 'tia': 13281, 'anticipating': 13282, 'watering': 13283, '2023': 13284, 'catapulted': 13285, 'ambassador': 13286, 'moncada': 13287, 'appeared': 13288, 'paterson': 13289, 'wirbleibenzuhause': 13290, 'homeoffice': 13291, 'forecasting': 13292, 'eea': 13293, 'airtravel': 13294, 'consumercomplaint': 13295, 'assured': 13296, 'thunder': 13297, 'doris': 13298, 'saino': 13299, '376': 13300, 'gearing': 13301, 'jobforone': 13302, 'aretwonecessary': 13303, 'proppa': 13304, 'prebagged': 13305, 'eff': 13306, 'grass': 13307, 'shauntel': 13308, 'uneasy': 13309, 'snowstorm': 13310, 'rv': 13311, 'curtin': 13312, 'petfood': 13313, 'petfoodlidding': 13314, 'petadoption': 13315, 'guardrail': 13316, 'confidentiality': 13317, 'monetizing': 13318, 'cratered': 13319, 'poised': 13320, 'quarterly': 13321, 'financialmarkets': 13322, 'conserve': 13323, 'mlb': 13324, 'wahl': 13325, 'tsunami': 13326, 'beaver': 13327, 'arrogant': 13328, 'beatty': 13329, 'stokenewington': 13330, 'freehold': 13331, 'terroristic': 13332, 'spicier': 13333, 'parched': 13334, 'scratcher': 13335, 'buggy': 13336, 'demolished': 13337, 'alertnotanxious': 13338, 'iri': 13339, 'specializing': 13340, 'nd': 13341, 'nowplaying': 13342, 'reprogram': 13343, 'beep': 13344, 'economicterrorism': 13345, 'consumerism': 13346, 'earthhour2020': 13347, 'climatechange': 13348, 'valchoice': 13349, 'autoinsurance': 13350, 'cochrane': 13351, 'trumpgenocide': 13352, 'pasted': 13353, 'keephopealive': 13354, 'staysafesavelives': 13355, 'staysafestayhealthy': 13356, 'rudeness': 13357, 'aw': 13358, 'mackie': 13359, 'du': 13360, 'activate': 13361, 'dpa': 13362, 'gouged': 13363, 'convince': 13364, 'smallbiz': 13365, 'smallbiztips': 13366, 'extortionist': 13367, 'billionaire': 13368, 'ackman': 13369, 'hoovering': 13370, 'justification': 13371, 'soviet': 13372, 'agony': 13373, 'virtue': 13374, 'signaling': 13375, 'shopworkersunite': 13376, 'rubbing': 13377, 'masterpiece': 13378, 'teenage': 13379, 'readsteadycook': 13380, 'ainsleyharriott': 13381, 'vp': 13382, 'anand': 13383, 'siddiqui': 13384, 'oculus': 13385, 'craving': 13386, 'novelty': 13387, 'jizzed': 13388, 'binge': 13389, 'outsourcing': 13390, 'advancing': 13391, 'bolstering': 13392, 'vladimir': 13393, 'coded': 13394, 'recall': 13395, 'illegally': 13396, 'sentinel': 13397, 'scamdemic': 13398, 'baking': 13399, 'powder': 13400, 'deadliest': 13401, 'vet': 13402, 'elanco': 13403, 'jwn': 13404, 'retailapocalypse2020': 13405, 'mcas': 13406, 'linda': 13407, 'bud': 13408, 'staysa': 13409, 'toiletpaperhoarding': 13410, 'zamahni': 13411, 'boycotted': 13412, 'shitstorm': 13413, 'mortality': 13414, 'onset': 13415, 'ralph': 13416, 'koijen': 13417, 'mothiro': 13418, 'yogo': 13419, 'periodt': 13420, 'stayingathomechallenge': 13421, 'thankshealthheroes': 13422, 'oneself': 13423, 'ffodbanks': 13424, '701': 13425, 'brainless': 13426, 'yoghurt': 13427, 'inhaler': 13428, 'ventilon': 13429, 'motor': 13430, 'eaglenews': 13431, 'proceeded': 13432, 'fascism': 13433, 'grim': 13434, 'grosser': 13435, 'mummy': 13436, 'tread': 13437, '806': 13438, '464': 13439, '9197': 13440, 'fightingcoronavirus': 13441, 'criticalpersonnel': 13442, 'llc': 13443, 'aegis': 13444, 'ngf': 13445, 'telecommunication': 13446, 'disbursement': 13447, 'priscillaconsolo': 13448, 'caput': 13449, 'fook': 13450, 'pissed': 13451, 'jammed': 13452, 'reckless': 13453, 'ii': 13454, 'explosive': 13455, 'expansion': 13456, 'suppressed': 13457, 'coordinating': 13458, '43': 13459, 'foodbanking': 13460, 'innovative': 13461, 'kazatomprom': 13462, 'nuclear': 13463, 'reactor': 13464, 'petersburg': 13465, 'magazine': 13466, 'theglobe': 13467, 'nationalenquirer': 13468, 'newsoftheworld': 13469, 'boarder': 13470, 'declaration': 13471, 'nosedive': 13472, 'callouts': 13473, 'wto': 13474, 'reissue': 13475, 'elab': 13476, 'alumnus': 13477, 'ithaca': 13478, 'ithacaisstartups': 13479, 'bingo': 13480, 'mx': 13481, 'topstories': 13482, 'cooperate': 13483, 'eradicate': 13484, 'punished': 13485, 'chester': 13486, 'sealand': 13487, 'abpoli': 13488, 'hovers': 13489, 'danwel': 13490, 'sailed': 13491, 'sufficiency': 13492, 'gratefully': 13493, 'aapl': 13494, 'discretionary': 13495, 'monye': 13496, 'morris': 13497, 'remedial': 13498, 'expanding': 13499, 'iwanttospeaktoyourmana': 13500, 'westlake': 13501, 'junior': 13502, 'reversal': 13503, 'castle': 13504, 'tower': 13505, 'switched': 13506, 'sedalia': 13507, 'shorted': 13508, 'restored': 13509, 'grapevine': 13510, 'exceptional': 13511, 'krishnan': 13512, 'sickening': 13513, 'resorting': 13514, 'cardi': 13515, 'ontarians': 13516, 'tou': 13517, 'seasoning': 13518, 'thankthemeveryday': 13519, 'pandemonium': 13520, 'melanoma': 13521, 'subcmte': 13522, 'ing': 13523, 'pirate': 13524, 'shopped': 13525, 'loom': 13526, 'ihs': 13527, 'markit': 13528, 'stockmarketcrash2020': 13529, 'phnom': 13530, 'penh': 13531, 'cambodian': 13532, 'albertans': 13533, 'stubborn': 13534, 'chapati': 13535, 'lightly': 13536, 'saut': 13537, 'bagel': 13538, 'relative': 13539, 'twgrp': 13540, 'leadright': 13541, 'trump2020landslidevictory': 13542, 'explanation': 13543, 'betw': 13544, 'compartmentalized': 13545, 'cursed': 13546, 'cpuc': 13547, 'compile': 13548, 'bangkok': 13549, 'varies': 13550, '4usd': 13551, 'kindle': 13552, 'kolonya': 13553, 'fragrance': 13554, 'bienetre': 13555, 'yumyumsbakery': 13556, 'yqg': 13557, 'squeeze': 13558, 'seamlessly': 13559, 'digitalcapitalism': 13560, 'notmypresident': 13561, 'toiletpaperchallenge': 13562, 'favour': 13563, 'gu': 13564, 'spelling': 13565, '19why': 13566, '50ft': 13567, 'blu': 13568, 'kano': 13569, 'shebi': 13570, 'chalet': 13571, 'queenston': 13572, 'dailyneeds': 13573, 'mechanical': 13574, 'literal': 13575, 'fuckery': 13576, 'youllneverwalkalone': 13577, 'ausgangssperrejetzt': 13578, 'ynwa': 13579, 'afterhours': 13580, 'davido': 13581, '1million': 13582, 'destructive': 13583, 'ideology': 13584, 'exceptionalism': 13585, 'absurd': 13586, 'quadcities': 13587, 'thriving': 13588, 'traditionl': 13589, 'bankfee': 13590, 'gra': 13591, 'psychosis': 13592, 'foodshortage': 13593, 'identification': 13594, 'beleaguered': 13595, 'nowaste': 13596, 'generate': 13597, 'keyboard': 13598, 'r3m': 13599, 'retract': 13600, 'lockdownsa': 13601, 'slander': 13602, 'checkfacts': 13603, 'vision': 13604, 'ohiosafeohioworking': 13605, 'honeymoon': 13606, 'loaded': 13607, 'qui': 13608, 'sonne': 13609, 'cloche': 13610, '877': 13611, '764': 13612, '2535': 13613, 'linus': 13614, 'apologizing': 13615, 'austerity': 13616, 'rancher': 13617, 'refinery': 13618, 'devised': 13619, 'duh': 13620, 'panadol': 13621, 'cotton': 13622, 'dye': 13623, 'predictably': 13624, 'marijuana': 13625, 'jobstobedone': 13626, 'whiplash': 13627, 'halfway': 13628, '996': 13629, '514': 13630, 'beggar': 13631, 'autoimmune': 13632, 'repetitive': 13633, 'cld': 13634, 'demystdata': 13635, 'datasets': 13636, 'geolocation': 13637, 'externaldata': 13638, 'unsafe': 13639, 'fart': 13640, 'thanos': 13641, 'avenger': 13642, 'funnymemes': 13643, 'sarcasm': 13644, 'dank': 13645, 'dankmemes': 13646, 'tuesdathoughts': 13647, 'advisor': 13648, 'geopolitically': 13649, 'distant': 13650, 'unravelled': 13651, 'revisit': 13652, 'paris': 13653, 'koronavirus': 13654, 'thephotohour': 13655, 'whyt': 13656, 'gotdamit': 13657, 'polowczyk': 13658, 'shopresponsibly': 13659, 'juststayhome': 13660, 'naa': 13661, 'occured': 13662, 'mobilityrevolution': 13663, 'carter': 13664, 'deceased': 13665, 'understandably': 13666, 'hung': 13667, 'refer': 13668, 'basmati': 13669, 'flyer': 13670, 'aucklanders': 13671, 'fucken': 13672, 'licensing': 13673, 'merit': 13674, 'ta': 13675, 'dependant': 13676, 'ffinancialadvisors': 13677, 'lithium': 13678, 'looming': 13679, 'electricvehicleindustry': 13680, 'departmental': 13681, 'hereby': 13682, 'obliged': 13683, 'selflessly': 13684, 'anecdote': 13685, 'yeltsin': 13686, 'amazed': 13687, 'thankfully': 13688, 'immense': 13689, 'pham': 13690, 'observed': 13691, 'anthropologist': 13692, 'margaret': 13693, 'mead': 13694, 'azeri': 13695, 'manat': 13696, '588': 13697, 'coronarvirusitalia': 13698, '492': 13699, 'agaisnt': 13700, 'angelus': 13701, 'teetering': 13702, 'tyee': 13703, 'alabanza': 13704, 'fedex': 13705, 'ali': 13706, 'naka': 13707, 'rwandatrade': 13708, 'rampage': 13709, '18bn': 13710, '15bn': 13711, 'opex': 13712, 'defenseag': 13713, 'alcoholsanitizer': 13714, 'landscaping': 13715, 'montco': 13716, 'magnetic': 13717, 'highlander': 13718, 'loosen': 13719, 'naturalrubber': 13720, 'nr': 13721, 'rig': 13722, 'plin': 13723, 'hrl': 13724, 'safm': 13725, 'lway': 13726, 'tsn': 13727, 'brfs': 13728, 'bsn': 13729, '4th': 13730, 'sindh': 13731, 'alhamdolillah': 13732, 'standstill': 13733, 'restricts': 13734, 'lockthemallup': 13735, 'stillrelevant': 13736, 'oneworld': 13737, 'moronic': 13738, 'numpties': 13739, 'wakeupandsmelltheconsumerism': 13740, 'portco': 13741, 'kangaroohealth': 13742, 'loosing': 13743, 'mayoroflondon': 13744, 'extenders': 13745, 'minneapolis': 13746, 'infuriates': 13747, 'cybercriminals': 13748, 'harris': 13749, 'teeter': 13750, 'peer': 13751, 'playspace': 13752, 'lid': 13753, 'conservative': 13754, 'pande': 13755, 'virus19': 13756, 'buckwheat': 13757, 'zelensky': 13758, 'scummy': 13759, 'moan': 13760, 'carp': 13761, 'hygeinic': 13762, 'sterilizing': 13763, 'washinghands': 13764, 'paknsave': 13765, 'countdown': 13766, 'newworld': 13767, 'nzlockdown': 13768, 'fencepeace': 13769, 'pple': 13770, 'upside': 13771, 'unelected': 13772, 'fisherman': 13773, 'organisation': 13774, 'pyramid': 13775, 'infused': 13776, 'vaycay': 13777, 'goddess': 13778, 'ganjagoddess': 13779, 'goddessorders': 13780, 'adulteration': 13781, 'dal': 13782, 'atta': 13783, 'rava': 13784, 'adulterate': 13785, 'bridging': 13786, 'introvert': 13787, 'lifeadjustment': 13788, 'conquered': 13789, 'tmall': 13790, 'tuebrook': 13791, 'heron': 13792, 'mortuary': 13793, 'usable': 13794, 'sanjana': 13795, '140': 13796, 'mississippian': 13797, 'senfeinstein': 13798, 'kamalaharris': 13799, 'speakerpelosi': 13800, 'repadamschiff': 13801, 'ericsawell': 13802, 'californiacoronavirus': 13803, 'maggienyt': 13804, 'washingtonpost': 13805, 'latimes': 13806, 'accurate': 13807, 'lethal': 13808, 'medically': 13809, 'complicating': 13810, 'enfo': 13811, 'rishisunak': 13812, 'warehousing': 13813, 'ecopies': 13814, 'paperback': 13815, 'righteousness': 13816, 'abideth': 13817, 'icicle': 13818, 'moonbeam': 13819, 'romance': 13820, 'suspense': 13821, 'scanning': 13822, 'adqcc': 13823, 'qccabudhabi': 13824, 'abudhabi': 13825, 'inabudhabi': 13826, 'tantrum': 13827, 'cuntmom': 13828, 'seminar': 13829, 'bough': 13830, 'unreasonably': 13831, 'covdhousearrest': 13832, 'housearrestnotquarantine': 13833, 'corinahysteria': 13834, 'coronahoax': 13835, 'truffle': 13836, 'environ': 13837, 'lett': 13838, 'spewing': 13839, 'adderall': 13840, 'uttered': 13841, 'reverential': 13842, 'sympathetic': 13843, 'obama': 13844, 'sulfuric': 13845, 'saas': 13846, 'prescriptive': 13847, 'jd': 13848, 'pdd': 13849, 'tcehy': 13850, 'tcom': 13851, 'wynn': 13852, 'lvs': 13853, 'mlco': 13854, 'bili': 13855, 'yumc': 13856, 'craig': 13857, 'damning': 13858, 'tru': 13859, 'applauds': 13860, 'nyse': 13861, 'studying': 13862, 'idiotic': 13863, 'rumination': 13864, 'tele': 13865, 'hugged': 13866, 'dave': 13867, 'whamond': 13868, 'wandering': 13869, 'dontstockpile': 13870, 'timeforplanb': 13871, 'ricecrypto': 13872, 'o0dsd66xjz': 13873, 'alice': 13874, 'chan': 13875, 'bumped': 13876, 'joel': 13877, 'alicechan': 13878, 'joelchan': 13879, 'destiny': 13880, 'cosmetic': 13881, 'onlineshop': 13882, 'mustread': 13883, 'ro': 13884, 'cranberry': 13885, 'desperatetimescallfordesperatemeasures': 13886, 'technicallynolongerboxwine': 13887, 'ratapiko': 13888, 'ding': 13889, 'tonic': 13890, 'illusion': 13891, '2qfy2020': 13892, 'qoq': 13893, 'totnes': 13894, 'lewisville': 13895, '225': 13896, 'mound': 13897, 'dummy': 13898, '8105473545': 13899, 'healthdaynews': 13900, 'schneider': 13901, 'duality': 13902, 'jungian': 13903, 'selfie': 13904, 'invade': 13905, 'ioc': 13906, 'trench': 13907, 'brenden': 13908, 'dgp': 13909, 'karnataka': 13910, 'mf': 13911, 'cdn': 13912, 'generic': 13913, 'closetherange': 13914, 'boycottherange': 13915, 'therange': 13916, 'uaz05hc3ev': 13917, 'corovid19': 13918, 'indiaunderlockdown': 13919, 'davanagere': 13920, 'exorbitantly': 13921, 'frying': 13922, 'pricewar': 13923, 'watermelon': 13924, 'harrow': 13925, 'weald': 13926, 'albertsons': 13927, '1u': 13928, 'cbsnews': 13929, 'encountering': 13930, 'coronaupdates': 13931, 'leftist': 13932, 'umarakmalquotes': 13933, 'potable': 13934, 'wud': 13935, 'watercrisis': 13936, 'ho': 13937, 'el': 13938, 'ryvita': 13939, '250ml': 13940, '105': 13941, '0330': 13942, '124': 13943, '1733': 13944, 'amanda': 13945, 'prevents': 13946, 'increasin': 13947, 'shutter': 13948, 'girlfriend': 13949, 'etiquette': 13950, 'idc': 13951, 'hotchick': 13952, 'badasswoman': 13953, 'dirtypeople': 13954, 'filth': 13955, '221': 13956, 'faceshields': 13957, 'preventive': 13958, 'feat': 13959, 'bojo': 13960, 'livingdead': 13961, 'otc': 13962, 'reasoned': 13963, 'named': 13964, 'jesuschristonacracker': 13965, 'totalsocial': 13966, 'consumerconversations': 13967, 'scum': 13968, 'farther': 13969, 'refreshingly': 13970, 'bewell': 13971, 'smoother': 13972, 'fm': 13973, 'tomor': 13974, 'hannaford': 13975, '301': 13976, '324': 13977, '9500': 13978, '681': 13979, '9797': 13980, 'pgcounty': 13981, 'visualeyes': 13982, 'rebreathing': 13983, 'esterson': 13984, 'commented': 13985, 'backlogged': 13986, 'plead': 13987, 'maisano': 13988, 'tavern': 13989, 'samorning': 13990, 'sally': 13991, 'burdett': 13992, 'xoli': 13993, 'mngambi': 13994, 'diplomatic': 13995, 'dictate': 13996, 'condominium': 13997, 'attendee': 13998, 'jesuschrist': 13999, 'religiousfreedom': 14000, 'keepput': 14001, 'starwars': 14002, 'justkidding': 14003, 'lenin': 14004, 'nonetheless': 14005, 'leavenlaw': 14006, 'onassignment': 14007, 'slope': 14008, 'jumping': 14009, 'sane': 14010, 'fairytale': 14011, 'brownie': 14012, '531': 14013, '5209': 14014, 'clientele': 14015, 'utmost': 14016, 'insult': 14017, 'injury': 14018, 'minder': 14019, 'await': 14020, 'fate': 14021, 'postcovid19': 14022, 'staythefuckhome': 14023, 'cult': 14024, 'cinephile': 14025, 'geo': 14026, 'annihilates': 14027, 'saraimrieart': 14028, 'artoftheday': 14029, 'artseries': 14030, 'toiletpaperart': 14031, 'kitchener': 14032, 'loonie': 14033, 'newswatch': 14034, 'indulges': 14035, 'macrobond': 14036, 'appetite': 14037, 'bombing': 14038, 'syria': 14039, 'pentagon': 14040, 'recourse': 14041, 'tracing': 14042, 'spider': 14043, 'roach': 14044, 'prominent': 14045, 'lappet': 14046, 'beak': 14047, 'seetheworld': 14048, 'kilimanjaro': 14049, 'safari': 14050, 'pam': 14051, 'farrare': 14052, 'wilmore': 14053, 'embraceyourcommunity': 14054, 'lecturer': 14055, 'ontpoli': 14056, '4h': 14057, 'agfunder': 14058, 'declares': 14059, 'chelsea': 14060, '80k': 14061, 'beetroot': 14062, 'getagripbritishpeople': 14063, 'masque': 14064, 'arrivent': 14065, 'dessindepresse': 14066, 'pour': 14067, 'sur': 14068, 'histoire': 14069, 'une': 14070, 'nurie': 14071, 'racont': 14072, 'ici': 14073, 'glanced': 14074, 'copy': 14075, 'meaningfully': 14076, 'haha': 14077, 'staycation': 14078, 'vince': 14079, 'troyjohnson': 14080, 'feedingsandiego': 14081, 'sandiegostrong': 14082, 'digitatmarketing': 14083, 'webdevelopment': 14084, 'glasgow': 14085, 'pondering': 14086, 'friction': 14087, 'fraudprevention': 14088, 'procuring': 14089, 'minimizing': 14090, 'goodness': 14091, 'survived': 14092, 'herdmentality': 14093, 'relaxpeople': 14094, 'thisisamerica': 14095, 'whyworry': 14096, 'freakingout': 14097, 'lovenotfear': 14098, 'redtree': 14099, 'gallery': 14100, 'sterilization': 14101, 'crosby': 14102, 'compounding': 14103, 'columbus': 14104, 'mof': 14105, 'hefty': 14106, 'mahn': 14107, 'imagery': 14108, 'baffling': 14109, 'devastate': 14110, 'lfc75': 14111, 'ultralow': 14112, 'lend': 14113, 'condemned': 14114, 'g2': 14115, 'exploding': 14116, 'movementcontrolorder': 14117, 'sustainable': 14118, 'strengthens': 14119, 'forexsignals': 14120, 'forextrader': 14121, 'preying': 14122, 'apparel': 14123, 'hid': 14124, 'spoon': 14125, 'donnie': 14126, 'patchogue': 14127, 'kullen': 14128, 'raid': 14129, 'flea': 14130, 'tick': 14131, 'paperproducts': 14132, 'experiment': 14133, '973': 14134, '504': 14135, '6240': 14136, 'njcoronavirus': 14137, 'spouse': 14138, 'bender': 14139, 'addressing': 14140, 'rutte': 14141, 'rapporteur': 14142, 'spexperts': 14143, 'csr': 14144, 'fantasized': 14145, 'consumergoods': 14146, 'carphone': 14147, 'retailapocalypse': 14148, 'superstar': 14149, 'mankind': 14150, 'prudential': 14151, 'magnanimous': 14152, 'utakaa': 14153, 'kwa': 14154, 'nyumba': 14155, 'ukule': 14156, 'nini': 14157, 'riverfront': 14158, 'cody': 14159, 'pfister': 14160, 'missouri': 14161, 'terrorist': 14162, 'patriotic': 14163, 'merciless': 14164, 'disconnected': 14165, 'commuter': 14166, 'belt': 14167, '599': 14168, 'egypt': 14169, 'senegal': 14170, 'tunisia': 14171, 'burkina': 14172, 'faso': 14173, 'decently': 14174, 'band': 14175, 'lombardia': 14176, 'distantimauniti': 14177, 'europa': 14178, 'resilienza': 14179, 'staystrong': 14180, 'cardholder': 14181, 'understands': 14182, 'aetna': 14183, 'marketing101': 14184, 'customerjourney': 14185, 'capitalize': 14186, 'aired': 14187, 'hospitalized': 14188, 'telecommuting': 14189, 'grandad': 14190, '11pm': 14191, 'skillful': 14192, 'imagination': 14193, 'edward': 14194, 'hopper': 14195, 'supportyourlocals': 14196, 'conceptstore': 14197, 'restart': 14198, 'newconcept': 14199, 'conserved': 14200, 'nygobernador': 14201, 'uofchicago': 14202, 'creatives': 14203, 'ang': 14204, 'lu': 14205, 'bora': 14206, 'grooming': 14207, 'barber': 14208, 'waxing': 14209, 'mani': 14210, 'pedi': 14211, 'aesthetic': 14212, 'derma': 14213, 'kbbq': 14214, 'buffet': 14215, 'inom': 14216, 'iba': 14217, 'parasitic': 14218, 'commoning': 14219, 'longest': 14220, 'vegancupboard': 14221, 'kev': 14222, 'describe': 14223, 'pap': 14224, 'caritasuganda': 14225, 'promoted': 14226, 'onlinegrocerybusiness': 14227, 'optimum': 14228, 'utilisation': 14229, 'roti': 14230, 'sabzi': 14231, 'daal': 14232, 'chawal': 14233, 'khaao': 14234, 'biting': 14235, 'underprivileged': 14236, 'imp': 14237, 'petbarn': 14238, 'bestfriends': 14239, 'furmum': 14240, 'furbaby': 14241, 'hanes': 14242, 'problematic': 14243, 'springmarket': 14244, 'striving': 14245, 'alexa': 14246, 'overview': 14247, 'ozon': 14248, 'bronchitis': 14249, 'saturated': 14250, 'coworkers': 14251, 'accident': 14252, 'attract': 14253, 'gigantic': 14254, 'primark': 14255, 'commercialization': 14256, 'caronavirus2020': 14257, 'healthyathome': 14258, 'lung': 14259, 'organ': 14260, 'component': 14261, 'vu': 14262, 'popped': 14263, 'notright': 14264, 'pymnts': 14265, 'coronadebat': 14266, 'masksforall': 14267, 'gobills': 14268, 'buffalonian': 14269, 'resistance': 14270, 'twd': 14271, 'superbug': 14272, 'fundraiser': 14273, 'mm': 14274, 'justsa': 14275, 'flex': 14276, 'bargaining': 14277, 'kyuu': 14278, 'aree': 14279, 'milta': 14280, 'rupaye': 14281, 'aapke': 14282, 'yahan': 14283, 'kyu': 14284, 'sucha': 14285, 'cutie': 14286, 'rashamidesai': 14287, 'payout': 14288, 'vikez': 14289, 'ronn': 14290, 'torossian': 14291, '5wpr': 14292, 'dara': 14293, 'busch': 14294, 'prowl': 14295, 'collateral': 14296, 'irresponsibility': 14297, 'flame': 14298, 'purely': 14299, 'hyperbole': 14300, 'athabasca': 14301, 'oilsands': 14302, 'dire': 14303, 'comprise': 14304, 'controversial': 14305, 'israeli': 14306, 'spyware': 14307, 'nso': 14308, 'edited': 14309, 'approx': 14310, 'mco': 14311, 'bbcyourquestions': 14312, 'wm': 14313, 'petrides': 14314, 'fiji': 14315, 'fijian': 14316, 'saulevu': 14317, 'jiko': 14318, 'kada': 14319, 'ga': 14320, 'kakana': 14321, 'viti': 14322, 'dou': 14323, 'qai': 14324, 'raica': 14325, 'kina': 14326, 'anarchy': 14327, 'crtitcal': 14328, 'ger': 14329, 'nl': 14330, 'vancouvercorona': 14331, 'canadalockdown': 14332, 'leveling': 14333, '018': 14334, '233': 14335, 'diseasecontrol': 14336, 'outage': 14337, 'writingcommunity': 14338, 'hugging': 14339, 'authorslife': 14340, 'scar': 14341, 'scab': 14342, 'growfearless': 14343, 'dewine': 14344, 'elitist': 14345, 'craic': 14346, 'arguement': 14347, '30mins': 14348, 'toast': 14349, 'actively': 14350, 'bible': 14351, 'loon': 14352, 'doin': 14353, 'tongue': 14354, 'slipping': 14355, 'medicating': 14356, '61': 14357, 'columbia': 14358, 'knowingly': 14359, 'cincinnati': 14360, 'duster': 14361, 'suffocation': 14362, 'overwhelmingly': 14363, 'myquarantineinsixwords': 14364, 'survivor40': 14365, 'bleach2020': 14366, 'youdrugstore': 14367, 'onlinepharmacy': 14368, 'canadianpharmacy': 14369, 'authorized': 14370, 'bourbon': 14371, 'frazzled': 14372, 'morrissons': 14373, 'hoc': 14374, 'compiling': 14375, 'proposes': 14376, 'averting': 14377, 'incorporating': 14378, 'antimalarial': 14379, '250mg': 14380, '500mg': 14381, 'slagging': 14382, 'keepyourlocalpubalive': 14383, 'pubsclosed': 14384, 'nallan': 14385, 'suresh': 14386, 'resonating': 14387, 'adivasi': 14388, 'saira': 14389, 'hooghly': 14390, 'fightcovid': 14391, 'compounded': 14392, 'phenomenon': 14393, 'brawling': 14394, 'vinegar': 14395, 'shoppingwars': 14396, 'privileged': 14397, 'stayh': 14398, 'shutthemdown': 14399, 'macys': 14400, 'entice': 14401, 'kindleunlimited': 14402, 'kindlebook': 14403, '24hr': 14404, '0200hrs': 14405, 'vividly': 14406, 'mpls': 14407, 'sleuth': 14408, 'chasing': 14409, 'jeweller': 14410, 'whereabouts': 14411, 'recd': 14412, 'overhears': 14413, 'po': 14414, 'excerise': 14415, 'claw': 14416, 'kmc': 14417, 'equality': 14418, 'rio': 14419, 'byron': 14420, 'devil': 14421, 'cctv': 14422, 'resisting': 14423, 'socialresponsibility': 14424, 'naturaldisaster': 14425, '1980s': 14426, 'gurgaon': 14427, 'basil': 14428, 'vacuum': 14429, 'abroad': 14430, 'nzpol': 14431, 'eroding': 14432, 'extinct': 14433, 'brokerage': 14434, 'lepage': 14435, 'experimenting': 14436, 'recording': 14437, 'vlog': 14438, 'upload': 14439, 'takeup': 14440, 'aswell': 14441, 'brace': 14442, 'suddenlyscaredofpeople': 14443, 'ghar': 14444, 'bihiv': 14445, 'te': 14446, 'nyabar': 14447, 'mah': 14448, 'neeriv': 14449, 'mumkinhaiyeh': 14450, 'bjp': 14451, 'risingprices': 14452, 'normality': 14453, 'fox5dc': 14454, 'damascusmd': 14455, 'delicious': 14456, 'norc': 14457, 'madtweets': 14458, 'reviewed': 14459, 'crushed': 14460, 'fnv': 14461, 'sbsw': 14462, 'kgc': 14463, 'btg': 14464, 'auy': 14465, 'drd': 14466, 'depository': 14467, 'chicagoland': 14468, 'ifrs': 14469, 'bothered': 14470, 'originally': 14471, 'grandpa': 14472, 'takecareofeachother': 14473, 'matty': 14474, 'stanton': 14475, 'foodwaste': 14476, 'reducewaste': 14477, 'homequarantine': 14478, 'cleanlife': 14479, 'cleancity': 14480, 'cleanworld': 14481, 'po3': 14482, 'align': 14483, 'releasing': 14484, 'owning': 14485, 'piano': 14486, 'drum': 14487, 'studio': 14488, 'tumultuous': 14489, 'rocketing': 14490, 'essary': 14491, 'farmed': 14492, 'salmon': 14493, 'shrimp': 14494, 'iu49tbeund': 14495, '2months': 14496, 'biko': 14497, 'pooh': 14498, 'cornfed': 14499, 'peru': 14500, 'dejected': 14501, 'cornfedinperu': 14502, 'news204': 14503, 'tucson': 14504, 'coveryourface': 14505, 'sewage': 14506, 'hsr': 14507, 'horrific': 14508, 'grandesynthe': 14509, 'vigilante': 14510, 'lincoln': 14511, 'axiety': 14512, 'coronaquarantine': 14513, 'missyoudad': 14514, 'dontrunoutoftoiletpaper': 14515, 'dontneedatherapist': 14516, 'digiscrapthat': 14517, 'judgement': 14518, 'iamdjblaque': 14519, 'iamlegend': 14520, 'mdoc': 14521, 'horhn': 14522, 'ms65': 14523, 'prisoner': 14524, 'inhuman': 14525, 'kw': 14526, 'ality': 14527, 'amplifier': 14528, 'msleg': 14529, 'finalize': 14530, '2123': 14531, 'donators': 14532, 'native': 14533, 'chickasaw': 14534, 'hardman': 14535, 'goodfriday': 14536, 'easterweekend': 14537, 'mobie': 14538, 'genie': 14539, 'folding': 14540, '2299': 14541, '2699': 14542, 'rizk': 14543, 'zouzou': 14544, 'shakib': 14545, '1946': 14546, 'dir': 14547, 'hassan': 14548, 'imam': 14549, 'samir': 14550, 'farid': 14551, 'archive': 14552, 'brookside': 14553, '1litre': 14554, 'maize': 14555, 'conned': 14556, 'stopwastingtests': 14557, 'testgrocerystoreworkers': 14558, 'fifth': 14559, 'sumer': 14560, 'previous': 14561, 'hemisphere': 14562, 'coastal': 14563, 'holidaymaker': 14564, 'victorian': 14565, 'foodhall': 14566, 'stayingopen': 14567, 'stayingassafeaswecan': 14568, 'shapiro': 14569, 'coalition': 14570, 'angie': 14571, 'kim': 14572, 'volunteered': 14573, 'humiliation': 14574, 'enduring': 14575, '2metres': 14576, 'nobogroll': 14577, 'coughonmeandillnutya': 14578, 'mtr': 14579, 'davy': 14580, 'dearcustomer': 14581, 'sightx': 14582, 'automatingcuriosity': 14583, 'shedding': 14584, 'core': 14585, 'takingmore': 14586, 'mobilising': 14587, 'retrain': 14588, 'mentioning': 14589, 'petchemindustry': 14590, 'oilcrash': 14591, 'tenner': 14592, 'apiece': 14593, 'distanced': 14594, 'sneaky': 14595, 'addition': 14596, 'senatecorruption': 14597, 'binning': 14598, 'snatching': 14599, 'gird': 14600, 'coronawuhanvirus': 14601, 'afar': 14602, 'geography': 14603, 'dermatitis': 14604, 'amwalalghaden': 14605, 'octane': 14606, 'und': 14607, 'mimbling': 14608, 'lark': 14609, 'bloke': 14610, 'labeled': 14611, 'deficiency': 14612, 'daw': 14613, 'auang': 14614, 'suu': 14615, 'kyi': 14616, 'smearing': 14617, 'infectiousdisease': 14618, 'installation': 14619, 'trackingworld': 14620, 'navigation': 14621, 'feminine': 14622, 'vaunrable': 14623, 'generalinsurance': 14624, 'spurt': 14625, 'fax': 14626, 'courier': 14627, 'instituting': 14628, 'rajendras': 14629, 'namaka': 14630, 'jam': 14631, 'midway': 14632, 'brjl203': 14633, 'brjl309': 14634, 'dodgemojo': 14635, 'dispelling': 14636, 'drugstore': 14637, 'hydroxide': 14638, 'essentialoils': 14639, 'stayinghealthy': 14640, 'nstworld': 14641, 'successfully': 14642, 'concludes': 14643, 'kungfu': 14644, 'photooftheday': 14645, 'photographyeveryday': 14646, 'massacre': 14647, 'improvise': 14648, 'practically': 14649, 'shunned': 14650, 'digitalpayment': 14651, 'creditcard': 14652, 'debitcard': 14653, 'financialservices': 14654, 'dribble': 14655, 'warmup': 14656, '028': 14657, 'dribbleweeklywarmup': 14658, 'luke': 14659, 'tilley': 14660, 'wilmington': 14661, 'ninja': 14662, 'keepyourdistance': 14663, 'slim': 14664, 'amused': 14665, 'dislike': 14666, 'macaroni': 14667, 'hay': 14668, 'comida': 14669, 'casa': 14670, 'tyson': 14671, 'cwt': 14672, '94': 14673, 'grid': 14674, 'acityunited': 14675, 'counterbalance': 14676, 'digitalizes': 14677, 'izberg': 14678, 'tencent': 14679, 'e3': 14680, 'momar': 14681, 'fci': 14682, 'dracula': 14683, 'countdracula': 14684, 'loveatfirstbite': 14685, 'mktgsales': 14686, 'beside': 14687, 'outlining': 14688, 'onlineclasses': 14689, 'quarantinecats': 14690, 'totallockdown': 14691, 'assignment': 14692, 'labreports': 14693, 'annotated': 14694, 'bibliography': 14695, 'venmo': 14696, 'conquer': 14697, 'touring': 14698, 'retailstong': 14699, 'blacked': 14700, 'hemsworth': 14701, 'harlow': 14702, 'homedelivery': 14703, 'bindu': 14704, 'mayi': 14705, 'expertise': 14706, 'takitaki': 14707, 'chronically': 14708, 'honored': 14709, 'sule': 14710, 'chsl': 14711, 'interlocutor': 14712, 'nicole': 14713, 'newborn': 14714, 'describes': 14715, 'mie': 14716, 'hiatus': 14717, 'googletranslate': 14718, 'digestive': 14719, 'grotesque': 14720, 'disgustingly': 14721, 'egregious': 14722, 'representation': 14723, 'inequity': 14724, 'kirkham': 14725, 'bongkhao': 14726, 'duda': 14727, 'lakh': 14728, 'tobu': 14729, 'downloads': 14730, 'surpassing': 14731, 'malawi': 14732, 'mutharika': 14733, 'andhra': 14734, 'reverse': 14735, 'visuals': 14736, 'pict': 14737, 'tinto': 14738, 'kaplan': 14739, 'federalreserve': 14740, 'richest': 14741, 'manpower': 14742, 'hema': 14743, 'theoldman': 14744, 'destined': 14745, 'letsgetafterit': 14746, 'cuomoprimetime': 14747, 'amc': 14748, 'syfy': 14749, 'logo': 14750, 'su': 14751, 'staygreetingstayathome': 14752, 'sdw': 14753, 'stagedancewearuk': 14754, 'stagedancewearonline': 14755, 'keepdancing': 14756, 'gorman': 14757, 'creatively': 14758, 'dailyfx': 14759, 'starch': 14760, 'marchmadness': 14761, 'fridayvibes': 14762, 'torkham': 14763, 'chaman': 14764, 'dawood': 14765, 'vegetarianrecipes': 14766, 'tofurkey': 14767, 'tillys': 14768, 'loyal': 14769, 'mohr': 14770, 'cascade': 14771, 'loorollgate': 14772, 'placard': 14773, 'downloading': 14774, 'teamukcbcdubai': 14775, 'mydubai': 14776, '2020undefeated': 14777, 'revivetheeconomy': 14778, 'helptheearth': 14779, 'precarious': 14780, 'quail': 14781, 'newnormalisveryposh': 14782, 'leaking': 14783, 'se': 14784, 'spied': 14785, 'reaffirm': 14786, 'kotler': 14787, 'joemandese': 14788, 'meera': 14789, 'poly': 14790, 'qatarnews': 14791, 'overheard': 14792, 'stubbornaf': 14793, 'safea': 14794, 'cooky': 14795, 'celebs': 14796, 'holed': 14797, 'advert': 14798, 'bow': 14799, 'syaysafe': 14800, 'indialockdown': 14801, 'kandlasagarmala': 14802, 'kandla': 14803, 'tranship': 14804, 'cargostevedores': 14805, 'shorehandling': 14806, 'containerhandling': 14807, 'totallogistics': 14808, 'gandhidham': 14809, 'goko': 14810, 'gust': 14811, 'lastone': 14812, '59pm': 14813, 'borough': 14814, 'greenwich': 14815, 'plumstead': 14816, 'se18': 14817, 'subbed': 14818, 'elastic': 14819, 'sewing': 14820, 'janky': 14821, 'stitching': 14822, 'abating': 14823, 'unclear': 14824, 'erstwhile': 14825, 'reiwa': 14826, 'cdt': 14827, 'meadia': 14828, 'fuckthemedia': 14829, 'fucknews': 14830, 'freakin': 14831, 'coronatimes': 14832, 'spreadjoy': 14833, '16mar20': 14834, 'reasor': 14835, 'profitting': 14836, 'angela': 14837, 'vanquish': 14838, 'darkness': 14839, 'unites': 14840, 'candle': 14841, 'diya': 14842, '9minutes': 14843, 'lightacandle': 14844, 'hopemed': 14845, 'hurray': 14846, 'lifebuoy': 14847, 'jai': 14848, 'hind': 14849, 'eurozone': 14850, 'clap': 14851, 'posties': 14852, 'binmen': 14853, 'sweeper': 14854, 'clapforall': 14855, 'bhagwantumhesadhbudhide': 14856, 'coronaindia': 14857, 'coronainindia': 14858, 'hungrier': 14859, 'loosened': 14860, 'toiletpanicpanic': 14861, 'nephron': 14862, 'makoya': 14863, 'mian': 14864, 'chol': 14865, 'recommending': 14866, 'despised': 14867, 'jieng': 14868, 'ssot': 14869, 'ei': 14870, 'pmmodi': 14871, 'pmoindia': 14872, 'amsterdam': 14873, 'txlege': 14874, 'flew': 14875, 'homeschoolbandandtunes': 14876, 'governorandrewcuomo': 14877, 'funniesttweets': 14878, 'funniest': 14879, 'ttxs': 14880, 'modelling': 14881, 'anticipatory': 14882, 'snakepark': 14883, 'doornkop': 14884, 'ensured': 14885, 'gogglebox': 14886, 'gilbey': 14887, 'revamping': 14888, 'mistake': 14889, 'iwaya': 14890, 'slum': 14891, 'chatted': 14892, 'monies': 14893, 'looted': 14894, 'intensifies': 14895, 'scarsdale': 14896, 'largo': 14897, 'lingo': 14898, 'empathizes': 14899, 'periodically': 14900, 'egift': 14901, 'smash': 14902, 'depending': 14903, 'transmitting': 14904, 'crud': 14905, 'endured': 14906, 'persian': 14907, 'protester': 14908, 'reunited': 14909, 'tony': 14910, 'stark': 14911, 'endgame': 14912, 'nhscovidheroes': 14913, 'fortheworld': 14914, 'cyberscout': 14915, 'schoolchildren': 14916, 'datasecurity': 14917, 'anubis': 14918, 'bushcraft': 14919, 'howtospendyourstimulus': 14920, 'extraordinary': 14921, 'backwards': 14922, 'businesstravel': 14923, 'upi': 14924, 'appropriate': 14925, 'postponing': 14926, 'faves': 14927, 'lota': 14928, 'killer': 14929, 'pinto': 14930, 'reckoning': 14931, 'ahmed': 14932, 'mukhaini': 14933, 'shalelaw': 14934, 'hotlink': 14935, 'deepens': 14936, 'widening': 14937, 'purrell': 14938, 'overhyping': 14939, 'manner': 14940, 'priti': 14941, 'roadblock': 14942, 'protectthenhs': 14943, 'trivial': 14944, 'penultimate': 14945, 'whereupon': 14946, 'cordonedbycorona': 14947, 'staring': 14948, 'nocturne': 14949, 'shinmegamitensei': 14950, 'lifting': 14951, 'paidsickleave': 14952, 'escalating': 14953, 'powerless': 14954, 'heed': 14955, 'frame': 14956, 'conveying': 14957, 'oye': 14958, 'ekiti': 14959, 'ibadan': 14960, 'avert': 14961, 'inadan': 14962, '50am': 14963, 'savagexbunni': 14964, 'veganrecipes': 14965, 'cookinginquarantine': 14966, 'garri': 14967, 'effurun': 14968, 'regulating': 14969, 'honge': 14970, 'kamiyab': 14971, 'contestalert': 14972, 'propose': 14973, 'supermarketshuffle': 14974, 'strictlycomeshopping': 14975, 'nauseating': 14976, 'pandemicprofiteering': 14977, 'improved': 14978, 'underwriting': 14979, 'hauled': 14980, 'disadvantage': 14981, 'disparity': 14982, 'avoidance': 14983, 'rendered': 14984, 'aap': 14985, 'scholarly': 14986, '5kg': 14987, '4800': 14988, 'giver': 14989, 'beautifully': 14990, 'tribalism': 14991, 'circulate': 14992, 'bastion': 14993, '2good2btrue': 14994, 'cyberstronghold': 14995, 'loui': 14996, 'selsey': 14997, 'clapped': 14998, 'cuppa': 14999, 'oatmilk': 15000, 'vineyard': 15001, 'leaning': 15002, 'predatory': 15003, 'heaping': 15004, 'bht': 15005, 'diversity': 15006, '568': 15007, '089': 15008, '238': 15009, 'smp': 15010, 'balancing': 15011, 'gibbs48': 15012, 'impotus45': 15013, 'deceive': 15014, 'traumatic': 15015, 'techinally': 15016, 'excluded': 15017, 'pkgs': 15018, 'classifie': 15019, 'drew': 15020, 'deleted': 15021, 'optic': 15022, 'audit': 15023, 'unwelcome': 15024, 'selecting': 15025, 'extract': 15026, 'desired': 15027, 'moab': 15028, 'boarded': 15029, 'steadthread': 15030, 'kallang': 15031, 'ntuc': 15032, 'yoday': 15033, 'socialdistancingfailz': 15034, 'harare': 15035, '2ply': 15036, 'surgicalmask': 15037, 'consultation': 15038, 'underestimated': 15039, 'invented': 15040, 'blossom': 15041, 'cashappfriday': 15042, 'cashtag': 15043, 'telecommute': 15044, 'remotework': 15045, 'healthinsurance': 15046, 'politicaleconomy': 15047, 'medicareforall': 15048, 'bullshitjobs': 15049, 'farmar': 15050, 'ironic': 15051, 'generationz': 15052, 'thedumbestgeneration': 15053, 'theevilgeneration': 15054, 'esteemed': 15055, 'ethiopianairlines': 15056, 'q3': 15057, 'normalization': 15058, 'allocated': 15059, 'smashing': 15060, 'bowtie': 15061, 'goingout': 15062, 'eradicated': 15063, 'babawiin': 15064, 'nagasto': 15065, 'noong': 15066, 'fapri': 15067, 'univ': 15068, 'pfnews': 15069, 'nginews': 15070, 'withering': 15071, 'weaver': 15072, 'floridian': 15073, 'colonial': 15074, 'opportunist': 15075, 'decor': 15076, 'deadline': 15077, 'sep': 15078, 'supportindies': 15079, 'indiebookstores': 15080, 'pressbriefing': 15081, 'snapchat': 15082, 'installs': 15083, 'snapchatads': 15084, 'socialmediaads': 15085, 'idtheft': 15086, 'fpm2020': 15087, 'hampering': 15088, 'speculation': 15089, 'punted': 15090, 'leant': 15091, 'macabre': 15092, 'specialise': 15093, 'vacant': 15094, 'anetafelix': 15095, 'superlative': 15096, 'compassionate': 15097, 'yourcustomerssaythankyou': 15098, 'fluidity': 15099, 'nylag': 15100, 'undocumented': 15101, 'reveal': 15102, 'puraphy': 15103, 'hempoil': 15104, 'deliverydriver': 15105, 'hatfield': 15106, 'hertfordshire': 15107, 'transnsformed': 15108, 'understood': 15109, 'becki': 15110, 'batter': 15111, 'loading': 15112, 'foodstores': 15113, 'hvac': 15114, 'mcdonalds': 15115, 'r30': 15116, 'ubereats': 15117, 'bigmacza': 15118, 'reigned': 15119, 'leger': 15120, 'lg2': 15121, 'unveiling': 15122, 'bumbling': 15123, 'string': 15124, '16pm': 15125, 'bourgeois': 15126, 'inconvenienced': 15127, 'ea': 15128, 'radar': 15129, 'recurring': 15130, 'dontwanttostarve': 15131, 'diligently': 15132, 'afbf': 15133, 'americanfarmbureau': 15134, 'vodaf': 15135, 'aberdeen': 15136, 'pianist': 15137, 'barcelona': 15138, 'balcony': 15139, 'saxophonist': 15140, 'neighboring': 15141, 'powell': 15142, 'mishandling': 15143, 'pamdemic': 15144, 'null': 15145, 'mandms': 15146, 'candybar': 15147, 'iphonepic': 15148, 'sawtelle': 15149, 'contrast': 15150, 'goodbadugly': 15151, 'gsma': 15152, 'deglobalization': 15153, 'falloff': 15154, 'staub': 15155, 'theater': 15156, 'moreso': 15157, 'premiering': 15158, 'cosgrove': 15159, 'uproar': 15160, 'lo': 15161, '24h': 15162, 'malamjumat': 15163, 'sondurum': 15164, 'gntm': 15165, 'shopeeth': 15166, 'kiev': 15167, 'everyo': 15168, 'thriller': 15169, 'f2f': 15170, 'assc': 15171, 'marching': 15172, 'mete': 15173, 'shithole': 15174, 'iso': 15175, 'day8oflockdown': 15176, 'tauler': 15177, 'llp': 15178, 'ionic': 15179, 'herbal': 15180, 'eucalyptus': 15181, 'hocked': 15182, 'futuristic': 15183, 'irrelevant': 15184, 'hinge': 15185, 'hazemat': 15186, 'fullmoon': 15187, 'rona': 15188, 'pandemicin5words': 15189, 'strongertogether': 15190, 'oc': 15191, 'bellends': 15192, 'runny': 15193, 'busier': 15194, 'sablaka': 15195, 'vinita': 15196, 'admittedly': 15197, 'tampa': 15198, '635': 15199, 'counterfeiter': 15200, 'ig1': 15201, '265': 15202, 'bats99': 15203, 'supp': 15204, 'cndns': 15205, 'cerealismyeverything': 15206, 'privateer': 15207, 'predator': 15208, 'analytica': 15209, 'intimate': 15210, 'heather': 15211, 'mallick': 15212, 'qataren': 15213, 'occupant': 15214, 'kenttonight': 15215, 'kentsays': 15216, 'auspost': 15217, 'shoplocalraleigh': 15218, 'raleigh': 15219, 'peta': 15220, 'stomach': 15221, 'burglary': 15222, 'ukbidscv19': 15223, 'idiom': 15224, 'hamsterk': 15225, 'ufe': 15226, 'blackmonday': 15227, 'hyperpoland': 15228, 'coronvirusireland': 15229, 'neptune': 15230, 'laidlaw': 15231, 'oklahoman': 15232, 'administer': 15233, 'shrtage': 15234, 'fibre2fashion': 15235, 'steeply': 15236, 'furnace': 15237, 'resuming': 15238, 'utilization': 15239, 'dampen': 15240, 'notallheroeswearcapes': 15241, 'dirkvandenbroek': 15242, 'vakkenvuller': 15243, 'naar': 15244, 'huis': 15245, 'gestuurd': 15246, 'om': 15247, 'dragen': 15248, 'mondkapje': 15249, 'jongen': 15250, 'wilde': 15251, 'hij': 15252, 'puur': 15253, 'uit': 15254, 'veiligheid': 15255, 'eigen': 15256, 'gezondheid': 15257, 'niet': 15258, 'spel': 15259, 'zetten': 15260, 'triest': 15261, 'sukuk': 15262, 'curtailed': 15263, 'nephew': 15264, 'proliferation': 15265, 'workingthefrontlines': 15266, 'ornatejewels': 15267, 'jewellery': 15268, 'savoury': 15269, 'notion': 15270, 'hyperbolic': 15271, 'stockist': 15272, 'umkc': 15273, 'kc': 15274, 'essentialgoods': 15275, 'cowboy': 15276, 'youcantseeme': 15277, 'condone': 15278, 'whr': 15279, 'override': 15280, 'twitterchat': 15281, 'publicrelations': 15282, 'greenstimulus': 15283, 'defcon': 15284, 'grew': 15285, 'flushing': 15286, 'septic': 15287, 'biohazardous': 15288, 'receptacle': 15289, 'appalachian': 15290, 'kicked': 15291, 'andrex': 15292, '9pcs': 15293, 'contained': 15294, 'covin18': 15295, 'yest': 15296, '197': 15297, '4577': 15298, 'evacuee': 15299, 'waf': 15300, 'carting': 15301, 'comfortfood': 15302, 'sketchlife': 15303, 'pencil': 15304, 'sketchwork': 15305, 'sketchart': 15306, 'charcoaldrawing': 15307, 'graphite': 15308, 'sketchaday': 15309, 'sketchoftheday': 15310, 'notifies': 15311, 'dlx': 15312, 'tunaweza': 15313, 'uchumi': 15314, 'hasa': 15315, 'utalii': 15316, 'wnycosh': 15317, 'bridgend': 15318, '1950': 15319, 'crock': 15320, 'rohit': 15321, 'pawar': 15322, 'replicate': 15323, 'fixlethalloopholes': 15324, 'banishthebeastusa': 15325, 'womenofthesentry': 15326, 'chick': 15327, 'freiburg': 15328, 'piecemakers': 15329, 'quilting': 15330, 'shutoff': 15331, 'yearly': 15332, 'resonable': 15333, 'bestiptv': 15334, 'iptvdeals': 15335, 'hotmovies': 15336, 'iptvlinks': 15337, '18movies': 15338, 'belgian': 15339, 'solicitor': 15340, 'tar': 15341, 'secured': 15342, 'greenlight': 15343, 'laughlin': 15344, 'edmontonians': 15345, 'yegcc': 15346, 'yeg': 15347, 'mirza': 15348, 'schoolfee': 15349, 'hv': 15350, 'fulf': 15351, '12m': 15352, 'hostage': 15353, 'antitrust': 15354, 'imposes': 15355, 'nelson': 15356, 'avid': 15357, 'amateur': 15358, 'thisexplanation': 15359, 'flag': 15360, 'rollercoaster': 15361, 'sixflags': 15362, 'beatcorona': 15363, 'austintx': 15364, 'carlos': 15365, 'torelli': 15366, 'psychological': 15367, 'alerted': 15368, 'backwardshat': 15369, 'oakley': 15370, 'woof': 15371, 'alameda': 15372, 'specification': 15373, 'moisturizing': 15374, 'handmade': 15375, 'jeffbezos': 15376, 'payload': 15377, 'anecdotal': 15378, 'meatfree': 15379, 'dairyfree': 15380, 'ripoffbritain': 15381, 'wreaks': 15382, 'argh': 15383, 'brewed': 15384, 'granule': 15385, 'mug': 15386, 'caffeine': 15387, 'unitelive': 15388, 'steward': 15389, 'avg': 15390, 'sq': 15391, '182': 15392, '388': 15393, '622': 15394, 'lube': 15395, 'jk': 15396, 'stuffed': 15397, 'plush': 15398, 'teddy': 15399, 'pillow': 15400, 'candid': 15401, 'breach': 15402, 'maralago': 15403, 'sabotage': 15404, 'nk': 15405, 'retribution': 15406, 'xijingping': 15407, 'soleimani': 15408, 'cluster': 15409, 'petri': 15410, 'dish': 15411, 'hazardpay': 15412, 'cnbctv18market': 15413, 'delaying': 15414, 'bahn': 15415, 'lansing': 15416, 'msusocialscience': 15417, 'orr': 15418, 'nuisance': 15419, 'loudly': 15420, 'auspoi': 15421, 'crisiscommunications': 15422, 'fekking': 15423, 'creeping': 15424, 'supermarketbands': 15425, 'priceincrease': 15426, 'avery': 15427, 'khushabu': 15428, 'heatmap': 15429, 'jsc': 15430, '13th': 15431, 'semantics': 15432, 'kor': 15433, 'nalgonda': 15434, 'ranga': 15435, 'garu': 15436, 'donthikevegetableprices': 15437, 'grubhub': 15438, 'keda': 15439, 'ceramic': 15440, 'sunda': 15441, 'cedi': 15442, 'ghc': 15443, 'lrw': 15444, 'pov': 15445, 'assembled': 15446, 'enraging': 15447, 'panchetta': 15448, 'goosebump': 15449, 'lockdownaustralia': 15450, 'socio': 15451, 'implosion': 15452, 'hastened': 15453, 'shiite': 15454, 'kurdish': 15455, 'sunni': 15456, 'independence': 15457, 'pudding': 15458, 'creepy': 15459, 'embraced': 15460, 'portland': 15461, 'pdx': 15462, 'argentinian': 15463, 'ginning': 15464, 'igd': 15465, 'regoing': 15466, 'foaming': 15467, 'celebrating': 15468, 'fuelprice': 15469, 'gazettement': 15470, 'utah': 15471, 'bottled': 15472, 'closetheschoolsnow': 15473, 'brockless': 15474, 'timberdine': 15475, 'worcester': 15476, 'icky': 15477, 'amiright': 15478, 'idiotinchief': 15479, 'portacabin': 15480, 'mob': 15481, 'contentsquare': 15482, 'tractor': 15483, 'trailer': 15484, 'fortnum': 15485, 'mason': 15486, 'auburn': 15487, 'throat': 15488, 'incarcerated': 15489, 'dade': 15490, 'rigorous': 15491, 'azerbaijani': 15492, 'smuggle': 15493, 'married': 15494, 'azerbaijan': 15495, '48oz': 15496, '45uk': 15497, 'amok': 15498, 'murder': 15499, 'stayhomestaysafeugadi': 15500, 'eco': 15501, 'molina': 15502, 'partnered': 15503, 'nancychokeswhilepeoplegobroke': 15504, 'obstructing': 15505, 'shielding': 15506, '21kidsandcounting': 15507, 'channel4': 15508, 'abnormal': 15509, 'bfp': 15510, 'azure': 15511, 'striker': 15512, 'gunvolt': 15513, 'cullinane': 15514, 'caricature': 15515, 'southeast': 15516, 'fortlauderdale': 15517, 'westpalmbeach': 15518, 'delraybeachcaricatureartist': 15519, 'sterling': 15520, 'giftcaricatures': 15521, '561': 15522, '501': 15523, '8528': 15524, 'foodland': 15525, 'kamaainas': 15526, 'ukweli': 15527, 'mambo': 15528, 'rais': 15529, 'tujipange': 15530, 'ukweliwamambo': 15531, 'pix': 15532, 'd19': 15533, 'chit': 15534, 'gig': 15535, 'tangled': 15536, 'rapunzel': 15537, 'withholding': 15538, 'criminally': 15539, 'supposedly': 15540, 'cnp': 15541, 'kingston': 15542, 'chatham': 15543, 'brantford': 15544, 'teletown': 15545, 'onus': 15546, '5ofusathome': 15547, '402': 15548, 'namibia': 15549, 'naomi': 15550, 'broady': 15551, 'tennis': 15552, 'unfit': 15553, 'conducting': 15554, 'disinfection': 15555, 'maid': 15556, '69': 15557, '702': 15558, '2706': 15559, 'supersirvientas': 15560, 'anglo': 15561, 'saxon': 15562, 'dawnbilbrough': 15563, 'p7ft9ham7i': 15564, 'minishops': 15565, 'mpesa': 15566, 'whatsup': 15567, 'uhurumustgo': 15568, 'yvonne': 15569, 'alai': 15570, 'mbagathi': 15571, 'hat': 15572, 'knn': 15573, 'shelved': 15574, 'touristy': 15575, 'belongs': 15576, 'surrendered': 15577, 'folsom': 15578, 'cupcakedecorating': 15579, 'wireless': 15580, 'battered': 15581, 'sanctioned': 15582, 'revelation': 15583, 'onu': 15584, 'discriminate': 15585, 'handshake': 15586, 'fwaa': 15587, 'cohabitants': 15588, 'magic': 15589, 'magichour': 15590, 'beatboredom': 15591, 'familiar': 15592, 'bavis': 15593, '144': 15594, '1425': 15595, 'xijinping': 15596, 'ammex': 15597, 'boff': 15598, 'saddos': 15599, 'distinct': 15600, 'fraudalert': 15601, 'adminstration': 15602, 'reshape': 15603, 'kitted': 15604, 'stampeding': 15605, 'metrouk': 15606, 'indiavscorona': 15607, 'rightfully': 15608, 'presenter': 15609, 'sup': 15610, '5ft10': 15611, 'curly': 15612, 'pride': 15613, 'appearance': 15614, 'truckload': 15615, 'negate': 15616, 'paired': 15617, 'rake': 15618, 'objectionable': 15619, 'barrie': 15620, '3145169861': 15621, 'hussle': 15622, 'stephenschork': 15623, 'telegraphed': 15624, 'br': 15625, 'devote': 15626, 'subjective': 15627, 'krone': 15628, 'tabled': 15629, 'edm': 15630, '318': 15631, 'iremedy': 15632, 'alum': 15633, 'endowment': 15634, 'reasearch': 15635, 'informationagainstcovid': 15636, 'deglobalisation': 15637, 'coun': 15638, 'argued': 15639, 'unusual': 15640, 'yo': 15641, 'quest': 15642, 'hyperlink': 15643, 'translates': 15644, 'p1': 15645, 'biotech': 15646, 'wago': 15647, 'cycc': 15648, 'myeloid': 15649, 'leukemia': 15650, 'cyclacel': 15651, 'nov': 15652, 'admiration': 15653, 'singlehandedly': 15654, 'piss': 15655, 'djavad': 15656, 'salehi': 15657, 'isfahani': 15658, 'considers': 15659, 'assessed': 15660, 'windsor': 15661, 'essex': 15662, '5fm': 15663, '91': 15664, '9fm': 15665, 'unverified': 15666, 'pa14': 15667, 'notthatguy': 15668, 'demcast': 15669, 'mathaithai': 15670, 'cologne': 15671, 'scented': 15672, 'restroom': 15673, 'salem': 15674, 'socialdistancing2020': 15675, 'fightclub': 15676, 'footballer': 15677, 'gloved': 15678, 'caroffer': 15679, 'outintheworld': 15680, 'ellendegeneres': 15681, 'jimmyfallon': 15682, 'kellyclarksonshow': 15683, 'prospertx': 15684, 'dfw': 15685, 'metroplex': 15686, 'stampede': 15687, 'truedat': 15688, 'woodford': 15689, 'gvt': 15690, 'stophoard': 15691, 'coronatamilnadu': 15692, 'poitin': 15693, 'theindiansun': 15694, 'stopitplease': 15695, 'gmtv': 15696, 'gmb': 15697, 'improperly': 15698, 'logistic': 15699, 'tatter': 15700, 'perfumed': 15701, 'sparkle': 15702, 'sparklesanitizer': 15703, 'negotiating': 15704, 'sask': 15705, 'spirited': 15706, 'wit': 15707, 'kccaatwork': 15708, 'aceng': 15709, 'teampete': 15710, 'teampeteforever': 15711, 'rulesoftheroad': 15712, 'discipline': 15713, 'excellence': 15714, 'fractionalshares': 15715, 'checkitout': 15716, 'optionstrading': 15717, '1am': 15718, 'mondaymorning': 15719, 'mondaymotivaton': 15720, 'mondaymood': 15721, 'novacyt': 15722, 'ncyt': 15723, 'profited': 15724, 'disinformation': 15725, 'purse': 15726, 'chiang': 15727, 'mai': 15728, 'threadbare': 15729, 'pint': 15730, 'lai': 15731, 'mohammed': 15732, 'lacasadepapel4': 15733, 'yahoo': 15734, 'diversifying': 15735, 'back2back': 15736, '363': 15737, 'gmt': 15738, 'mitrade': 15739, 'pc': 15740, 'bloomberg': 15741, 'feeking': 15742, 'ingested': 15743, 'phosphate': 15744, 'q22': 15745, 'automatic': 15746, 'peeler': 15747, '0715783634': 15748, 'homedecor': 15749, 'kitchendecor': 15750, 'glammyhomekenya': 15751, 'zev': 15752, 'trumpedupvirus': 15753, 'minus': 15754, '6randonl': 15755, '219': 15756, '9739': 15757, 'pertaining': 15758, 'trumpcrash': 15759, 'trumptheworstpresidentever': 15760, 'cpacpatientzero': 15761, 'template': 15762, 'sharon': 15763, 'graham': 15764, 'outing': 15765, 'poetsandrhymers': 15766, 'bravo': 15767, 'coralsprings': 15768, 'jamm': 15769, 'truthabtchina': 15770, '09032144592': 15771, 'osibanjothesaver': 15772, 'asuustrike': 15773, 'coronacake': 15774, 'tpocolypse': 15775, 'milkman': 15776, 'ancestor': 15777, 'stillnooatmilk': 15778, 'romania': 15779, 'consistently': 15780, 'ranked': 15781, 'tighter': 15782, 'harrogate': 15783, 'tiresome': 15784, 'schoolclosures': 15785, 'prek': 15786, 'homeschool': 15787, 'freeresources': 15788, 'biodiesel': 15789, 'snag': 15790, 'vistek': 15791, 'committal': 15792, 'maestro': 15793, 'cherished': 15794, 'ethyl': 15795, 'pleasehelp': 15796, 'quarantinecompanions': 15797, 'dogsarelove': 15798, 'doglovers': 15799, 'helpthedogs': 15800, 'bdrr': 15801, 'dented': 15802, 'accomodate': 15803, 'pc19': 15804, 'washhands': 15805, 'av': 15806, 'stimulated': 15807, 'unexpectedly': 15808, 'krasselt': 15809, 'ramin': 15810, 'toloui': 15811, 'primeminister': 15812, 'getwellboris': 15813, 'prayforboris': 15814, 'doasyouretold': 15815, 'crunch': 15816, 'deploying': 15817, 'bmtc': 15818, 'surya': 15819, 'tub': 15820, 'undelivered': 15821, 'mister': 15822, 'cessation': 15823, 'sesame': 15824, 'paraguayan': 15825, 'fuckn': 15826, 'catp': 15827, 'corona19': 15828, 'adobeexpcloud': 15829, 'ham': 15830, 'stubbornly': 15831, 'wallpaper': 15832, 'paste': 15833, 'taker': 15834, 'faithoverfear': 15835, 'loveistheanswer': 15836, 'prayerforapandemic': 15837, 'whatthefuck': 15838, 'dotard': 15839, 'misguided': 15840, 'pleb': 15841, 'pricechopper': 15842, 'market32': 15843, 'takingcareofmyparents': 15844, 'dro': 15845, 'q4withbq': 15846, 'iloveqatar': 15847, 'dohanews': 15848, 'fourth': 15849, 'housebound': 15850, 'noah': 15851, 'printable': 15852, 'chiswick': 15853, 'stretch': 15854, 'cedar': 15855, 'chrest': 15856, 'allentown': 15857, 'notch': 15858, 'spotless': 15859, 'splash': 15860, 'lehighvalley': 15861, 'mygovindia': 15862, 'freaky': 15863, 'insan': 15864, 'artmeme': 15865, 'supplychainmanagement': 15866, 'manufacturingcapability': 15867, 'scm': 15868, 'wirh': 15869, 'rs500': 15870, 'shd': 15871, 'creditworthiness': 15872, 'dinged': 15873, 'iaconelli': 15874, 'authored': 15875, 'govern': 15876, 'prototype': 15877, 'handful': 15878, 'obv': 15879, 'nowheretogo': 15880, 'pjs': 15881, 'robe': 15882, 'script': 15883, 'slumping': 15884, 'screwing': 15885, 'motorhome': 15886, 'pei': 15887, 'hottest': 15888, 'thorn': 15889, 'lauder': 15890, 'walkin': 15891, 'embargo': 15892, 'fakenewsmedia': 15893, 'tiger': 15894, 'dismisses': 15895, 'bump': 15896, 'authorian': 15897, 'etimeslifestyle': 15898, 'incomplete': 15899, 'notsick': 15900, 'ifucan': 15901, 'giveaway': 15902, 'andchanged': 15903, 'checkin': 15904, 'jefferson': 15905, 'commended': 15906, 'restuarant': 15907, 'blding': 15908, 'sanitiation': 15909, 'inspiration': 15910, 'cycleways': 15911, 'fairer': 15912, 'niniolafantasyvideo': 15913, 'sibling': 15914, '850': 15915, 'eighth': 15916, 'ravenous': 15917, 'cautioning': 15918, 'cairandale': 15919, 'legacy': 15920, 'disruptors': 15921, 'luxuryconnect': 15922, 'luxurycruxx': 15923, 'readily': 15924, 'travelinn': 15925, 'clove': 15926, 'keyfoods': 15927, 'barry': 15928, 'pleasantly': 15929, 'abusive': 15930, 'supportworkers': 15931, 'tuesdaymotivation': 15932, 'swpp2nyu': 15933, 'essence': 15934, 'retrogress': 15935, 'comatose': 15936, 'gawked': 15937, 'rodriguez': 15938, 'kismenti': 15939, 'coz': 15940, 'garcia': 15941, 'katalonski': 15942, 'biha': 15943, 'jak': 15944, 'thegame': 15945, 'openborders': 15946, 'mijatovic': 15947, 'surfacing': 15948, 'droplet': 15949, 'linger': 15950, 'transmittable': 15951, 'socializing': 15952, 'dusting': 15953, 'tranny': 15954, 'readiness': 15955, 'backtobasics': 15956, 'correspondent': 15957, 'edmonton': 15958, 'bookstore': 15959, 'forging': 15960, 'incidental': 15961, 'screenshot': 15962, 'gristle': 15963, 'arwady': 15964, 'clapping': 15965, 'ranking': 15966, 'asexuals': 15967, 'homeschoolers': 15968, 'butterfly': 15969, 'prostitute': 15970, 'pastor': 15971, 'holster': 15972, 'trumperzombieapocalypse': 15973, 'capitalizing': 15974, 'opposed': 15975, 'shipper': 15976, 'bochenek': 15977, 'contributor': 15978, 'cup': 15979, 'stimulate': 15980, 'gaither': 15981, 'subscriber': 15982, 'daera': 15983, 'farmgate': 15984, 'touchless': 15985, 'brewbird': 15986, 'freshly': 15987, 'baylegal': 15988, 'repossession': 15989, 'communicate': 15990, 'latamadvisor': 15991, 'dialogue': 15992, 'lifeguard': 15993, 'nourished': 15994, 'fairweather': 15995, 'brewing': 15996, 'gerbil': 15997, 'wrapping': 15998, 'mtrs': 15999, '2103252168': 16000, 'uba': 16001, 'ngwoke': 16002, 'ifeanyi': 16003, 'retrenched': 16004, 'commenting': 16005, 'winsight': 16006, 'automobile': 16007, 'jon': 16008, '9420': 16009, 'sw': 16010, 'tutorial': 16011, 'shopifycrowd': 16012, 'nightingale': 16013, 'tee': 16014, 'mooted': 16015, 'middlehaven': 16016, 'teesside': 16017, 'thisisnotadrill': 16018, 'pearlessence': 16019, 'foto': 16020, 'nella': 16021, 'storia': 16022, 'filum': 16023, 'ordinata': 16024, 'che': 16025, 'ci': 16026, 'reso': 16027, 'cinesi': 16028, 'shitpost': 16029, 'poker': 16030, 'biganimetiddies': 16031, 'ponrhub': 16032, 'wanking': 16033, 'halloween': 16034, 'redistribution': 16035, 'redistribute': 16036, 'tonne': 16037, 'jacobreesmogg': 16038, 'abortion': 16039, 'religious': 16040, 'utilizing': 16041, 'libya': 16042, 'determine': 16043, 'cavalier': 16044, 'stepup': 16045, 'spectacularly': 16046, 'churchill': 16047, 'part1': 16048, 'dalby': 16049, 'labelled': 16050, 'scandal': 16051, 'sweepstakes': 16052, 'day17oflockdown': 16053, 'lockdownmzansi': 16054, 'pterodactyl': 16055, 'coronauk': 16056, 'superficial': 16057, 'reconsider': 16058, 'consumerinsight': 16059, 'cafecreme': 16060, 'chocolatedrink': 16061, 'kuka': 16062, 'navimumbai': 16063, 'woven': 16064, 'mahdi': 16065, '1h30': 16066, 'occasional': 16067, 'nap': 16068, 'klang': 16069, 'guessed': 16070, 'theofficenbc': 16071, 'angelamartin': 16072, 'slight': 16073, 'indefensible': 16074, 'worldhappinessday': 16075, 'fajita': 16076, 'peg': 16077, 'jihad': 16078, 'azour': 16079, 'grinding': 16080, 'beautyandthebeast': 16081, 'belle': 16082, 'westwing': 16083, 'disneyclassic': 16084, 'touchpoints': 16085, 'qell': 16086, 'rear': 16087, 'posterior': 16088, 'frail': 16089, 'onl': 16090, 'strensall': 16091, '40p': 16092, '90p': 16093, 'unsure': 16094, 'stonely': 16095, 'generationgame': 16096, 'contestant': 16097, 'conveyor': 16098, 'whencoronavirusisover': 16099, 'panicshop': 16100, 'wherestheprizes': 16101, 'lehman': 16102, 'appl': 16103, '08': 16104, 'intc': 16105, 'msft': 16106, 'jnj': 16107, 'actionable': 16108, 'healthandsafety': 16109, 'mainin': 16110, 'burland': 16111, 'clever': 16112, 'jamie': 16113, 'keepcookingcarryon': 16114, 'flig': 16115, 'coronaquarantinechronicles': 16116, '80sbaby': 16117, 'considerable': 16118, 'reiterates': 16119, 'combatting': 16120, 'employing': 16121, 'pacific': 16122, 'seegene': 16123, 'tripled': 16124, 'celtrion': 16125, 'chugai': 16126, 'csl': 16127, 'ffm': 16128, 'nopanic': 16129, '3500': 16130, 'redeem': 16131, 'polarizers': 16132, 'rod': 16133, 'sims': 16134, 'rational': 16135, 'justifiable': 16136, 'groundbreaking': 16137, 'glastonbury': 16138, 'queus': 16139, 'firends': 16140, 'incense': 16141, 'pokeball': 16142, 'pokemongo': 16143, 'moreballsplease': 16144, 'trendies': 16145, 'megachurch': 16146, 'refiner': 16147, 'osp': 16148, 'castelvolturno': 16149, 'nonconventional': 16150, 'utahns': 16151, 'hyvee': 16152, 'obtaining': 16153, 'imperative': 16154, 'uprising': 16155, 'coordinator': 16156, '866': 16157, '446': 16158, '9055': 16159, 'aunt': 16160, 'interviewing': 16161, 'u6ptbqeqdr': 16162, 'blogalert': 16163, 'wildfire': 16164, 'definite': 16165, 'torros': 16166, 'naira': 16167, '145': 16168, 'backing': 16169, 'pippa': 16170, 'pleasure': 16171, 'tofu': 16172, 'servsafe': 16173, 'experien': 16174, 'agewell': 16175, 'cspi': 16176, 'cookie': 16177, '570': 16178, 'rool': 16179, 'kenneth': 16180, 'copeland': 16181, 'walmartonline': 16182, 'shoponline': 16183, 'storepickup': 16184, 'outofstock': 16185, 'onlinesafetyathome': 16186, 'enabling': 16187, 'shameonsherwin': 16188, '2015': 16189, 'buildingautomation': 16190, 'skillset': 16191, 'niagara4': 16192, 'easyio': 16193, 'pandemiclife': 16194, 'crook': 16195, 'brentoil': 16196, 'tradingstrategy': 16197, 'rideau': 16198, 'cottage': 16199, '10ft': 16200, 'atk': 16201, '526': 16202, '3648': 16203, 'obsessively': 16204, 'cineworld': 16205, 'ashworth': 16206, 'reinforcing': 16207, 'judging': 16208, 'intends': 16209, 'flatulence': 16210, 'authorises': 16211, 'gosport': 16212, 'fc': 16213, 'localfootball': 16214, 'nonleague': 16215, 'portsmouth': 16216, '10p': 16217, 'lockdownzim': 16218, 'boxing': 16219, 'awkward': 16220, 'companion': 16221, 'weep': 16222, 'weighed': 16223, 'relates': 16224, 'stabilizes': 16225, 'santizer': 16226, 'santizers': 16227, 'ambo': 16228, 'journos': 16229, 'skeleton': 16230, 'usfda': 16231, 'californiashutdown': 16232, 'californiaquarantine': 16233, 'amplifying': 16234, 'incurred': 16235, 'encouragement': 16236, '946': 16237, 'astate': 16238, 'littlerock': 16239, 'tuesdayvibes': 16240, 'othe': 16241, 'nutter': 16242, 'camper': 16243, 'foster': 16244, 'edt': 16245, 'liu': 16246, 'guanguan': 16247, 'cnsphoto': 16248, 'andy': 16249, 'kanban': 16250, 'taiwan': 16251, 'anonymous': 16252, 'hood': 16253, 'commissary': 16254, 'forthood': 16255, 'usarmy': 16256, 'iicorpscovid19': 16257, 'texasstrong': 16258, 'collectively': 16259, 'neoliberalism': 16260, 'meritocracy': 16261, 'stereotype': 16262, 'lav': 16263, 'aggarwal': 16264, 'icmr': 16265, 'drawer': 16266, 'squeaky': 16267, 'enroll': 16268, 'qualifying': 16269, 'toughest': 16270, 'authorised': 16271, 'adhere': 16272, 'separately': 16273, 'performed': 16274, '24th': 16275, 'beaumont': 16276, 'kfdm': 16277, 'rocio': 16278, 'fe': 16279, 'dcra': 16280, 'permit': 16281, 'oconnor': 16282, 'essentialbusiness': 16283, 'zinccafeandmarket': 16284, 'hospitalityindustry': 16285, 'beasley': 16286, 'italianfood': 16287, 'broadway': 16288, '3kg': 16289, 'offprem': 16290, 'cbnnigeria': 16291, 'chickenshortage': 16292, 'sears': 16293, 'kers': 16294, 'taxman': 16295, 'perimeter': 16296, 'nvz': 16297, 'unfeasible': 16298, 'suckler': 16299, 'herd': 16300, 'welsh': 16301, 'auchan': 16302, 'invite': 16303, 'understandable': 16304, 'subsistence': 16305, 'miner': 16306, 'lastroll': 16307, 'shitjustgotreal': 16308, 'scripture': 16309, 'heathen': 16310, 'ruin': 16311, 'parked': 16312, 'redirected': 16313, 'sept': 16314, 'continent': 16315, 'exported': 16316, 'hayfever': 16317, 'versatility': 16318, 'shelie': 16319, 'miller': 16320, 'vulnerablehour': 16321, 'sakshi': 16322, 'upla': 16323, 'seinfeld': 16324, 'concluded': 16325, 'nighttime': 16326, 'donor': 16327, 'groceryretail': 16328, 'prospective': 16329, '63': 16330, 'intenders': 16331, 'desirable': 16332, '1920': 16333, 'electro': 16334, 'inauguration': 16335, 'ceremony': 16336, 'healthybody': 16337, 'healthyfood': 16338, 'shorter': 16339, 'nestum': 16340, 'ceralac': 16341, 'peoplehelpingpeople': 16342, 'ageguide': 16343, 'refuted': 16344, 'wicked': 16345, 'coronatuerkiye': 16346, 'n95masks': 16347, 'enabled': 16348, 'rider': 16349, 'platinum': 16350, 'ncov': 16351, 'lolol': 16352, 'charleston': 16353, 'doomsayer': 16354, 'sewer': 16355, 'walter': 16356, 'amz': 16357, 'amazonseller': 16358, 'onlinecommerce': 16359, 'etail': 16360, 'jsbankfightscorona': 16361, 'resumed': 16362, 'seventh': 16363, 'fiascorona': 16364, 'deprive': 16365, 'scammy': 16366, 'ventillation': 16367, 'kddr': 16368, 'burgum': 16369, 'nlp': 16370, 'killerrobot': 16371, 'bot': 16372, 'cobot': 16373, 'humanoid': 16374, 'r118': 16375, '786': 16376, '0147': 16377, 'mhc': 16378, 'pretoria': 16379, 'oe': 16380, 'healthtips': 16381, 'acesupermarket': 16382, 'aceeatery': 16383, 'acelounge': 16384, 'acefamily': 16385, 'oyo': 16386, 'ogbomoso': 16387, 'osogbo': 16388, 'ileife': 16389, 'ijebuode': 16390, 'abeokuta': 16391, 'sponge': 16392, 'santiser': 16393, 'retailvscorona': 16394, 'scheduling': 16395, 'derivative': 16396, 'enhance': 16397, 'schmitt': 16398, 'inanimate': 16399, 'micron': 16400, 'smog': 16401, 'aimless': 16402, 'khqa': 16403, 'tri': 16404, 'amtrak': 16405, 'cellophane': 16406, 'preparers': 16407, 'repel': 16408, 'wilko': 16409, 'firstworldproblems': 16410, 'howtoshop': 16411, 'lifesaver': 16412, 'deploy': 16413, 'portable': 16414, 'measurement': 16415, 'nyaope': 16416, 'morena': 16417, 'boloka': 16418, 'haba': 16419, 'powerfulpatientpartner': 16420, 'realised': 16421, 'lockwood': 16422, '27th': 16423, 'thanksforthelove': 16424, 'timeforadrink': 16425, 'complains': 16426, 'ou': 16427, 'qualitative': 16428, 'cro': 16429, 'userresearch': 16430, 'disrespectful': 16431, 'stealth': 16432, 'strait': 16433, 'dol': 16434, 'americorps': 16435, 'promoter': 16436, 'bareshelves': 16437, 'jet': 16438, 'spicejet': 16439, 'waterloo': 16440, 'gravenhurst': 16441, 'muskoka': 16442, 'reinvesting': 16443, 'windham': 16444, 'ethan': 16445, 'ostroff': 16446, 'troutmanpepper': 16447, 'supplychainchallenge': 16448, 'sincerely': 16449, 'counselor': 16450, 'surveyed': 16451, 'indecent': 16452, 'regretted': 16453, '990': 16454, 'dmme': 16455, 'nugget': 16456, 'fucknuggets': 16457, 'burnt': 16458, 'hopeful': 16459, 'housingmarket': 16460, 'whenwillpricesfall': 16461, 'homeprices': 16462, 'luxur': 16463, 'sama': 16464, 'tingin': 16465, 'sakin': 16466, 'mga': 16467, 'kanina': 16468, 'coronavirius': 16469, 'coronanews': 16470, 'novelcorona': 16471, 'beresponsible': 16472, 'keepcalm': 16473, 'aardwolfkenya': 16474, 'sanitising': 16475, 'logistical': 16476, 'sole': 16477, 'discretion': 16478, 'verb': 16479, 'sellive': 16480, 'shoplive': 16481, 'liveshopping': 16482, 'salestool': 16483, 'kshs110': 16484, 'cocoon': 16485, 'musicindustry': 16486, 'dismiss': 16487, 'misused': 16488, 'inconclusive': 16489, 'npd': 16490, 'marshall': 16491, 'cohen': 16492, 'athletic': 16493, 'footwear': 16494, 'upswing': 16495, 'interpret': 16496, 'mounted': 16497, 'brushed': 16498, 'adhesive': 16499, 'toiletpapers': 16500, 'toiletpapercheap': 16501, 'botanaway': 16502, 'microbial': 16503, 'promptly': 16504, 'intentional': 16505, 'sunshine': 16506, 'nevada': 16507, 'casino': 16508, 'barmouth': 16509, 'stayaway': 16510, 'notwelcome': 16511, 'curated': 16512, 'nigerdeltaunrest': 16513, 'bokoharam': 16514, 'insurgency': 16515, '2016recession': 16516, 'occasioned': 16517, 'unsustainability': 16518, 'gargantuan': 16519, 'toco': 16520, 'tococares': 16521, 'enoughtogoround': 16522, 'northgate': 16523, 'tuesdaymorning': 16524, 'weedlovers': 16525, 'masshole': 16526, 'snoopdogg': 16527, 'mktg': 16528, 'stimulusbill': 16529, 'rookie': 16530, 'beijing': 16531, 'urn': 16532, 'chinesevirus19': 16533, 'persona': 16534, 'lexington': 16535, 'crushcovid': 16536, 'lagossdginvest': 16537, 'pandemicbanter': 16538, 'craigdavid': 16539, '7days': 16540, 'igotthevirusonmonday': 16541, 'thenchilledonsunday': 16542, 'coronavibez': 16543, 'toiletpaperpandemic': 16544, '2020problems': 16545, 'prankstarz': 16546, 'lockedinwithmom': 16547, 'plattsmetals': 16548, 'plattscommoditynews': 16549, 'undeniable': 16550, 'contentmarketing': 16551, 'rwdsu': 16552, 'criticizing': 16553, 'walkthrough': 16554, 'c5': 16555, 'daylihht': 16556, '7kg': 16557, 'backpack': 16558, 'teamgp': 16559, 'destabilized': 16560, 'cashback': 16561, 'storing': 16562, 'confidential': 16563, 'august': 16564, 'huntsville': 16565, 'selfdistancing': 16566, 'ment': 16567, 'socaildistancing': 16568, 'onlinebusiness': 16569, 'blaqsbi': 16570, 'ado': 16571, 'mightyoure': 16572, 'benson': 16573, 'cack': 16574, 'inadequately': 16575, 'miniscule': 16576, 'asthmatic': 16577, '230': 16578, '1400': 16579, 's9': 16580, 'retrospect': 16581, 'illuminating': 16582, 'bettson': 16583, 'bse': 16584, 'nse': 16585, 'nanking': 16586, 'scorn': 16587, 'invasive': 16588, 'boarding': 16589, 'tota': 16590, 'opportunism': 16591, 'stuart': 16592, '1993': 16593, 'whispering': 16594, 'ego': 16595, 'spiritual': 16596, 'sputnik': 16597, 'rachel': 16598, 'clarke': 16599, 'chicagolockdown': 16600, '7to': 16601, 'recurrence': 16602, 'convinces': 16603, 'bayarea': 16604, 'vacillation': 16605, 'incompetence': 16606, '285': 16607, 'addict': 16608, 'withheld': 16609, 'withdrawal': 16610, 'zap': 16611, 'joule': 16612, 'rebecca': 16613, 'stored': 16614, 'otp': 16615, 'yelpatlanta': 16616, 'yelpotp': 16617, 'yelpelite': 16618, 'nurofen': 16619, 'ibuprofen': 16620, 'bmj': 16621, 'explode': 16622, 'wel': 16623, 'euro2020': 16624, 'transfermarkt': 16625, 'operable': 16626, 'durable': 16627, 'vernon': 16628, 'oglala': 16629, 'sara': 16630, 'omaha': 16631, 'abourezk': 16632, 'ehlers': 16633, 'busi': 16634, 'chris': 16635, 'hayes': 16636, 'bother': 16637, 'throe': 16638, 'farmworkers': 16639, 'broda': 16640, 'dale': 16641, 'steyn': 16642, 'jyoti10': 16643, 'rnr': 16644, 'electron': 16645, 'tw': 16646, 'onlinestore': 16647, 'artnoisestore': 16648, 'ygk': 16649, 'fbcnews': 16650, 'workable': 16651, 'drillers': 16652, 'eia': 16653, 'clapforourcarers': 16654, 'curbed': 16655, 'slovakia': 16656, 'shutdownaustralia': 16657, 'stem': 16658, 'exacting': 16659, 'macro': 16660, 'cheeseplease': 16661, 'koomo': 16662, 'bandkarobazaar': 16663, 'bcos': 16664, 'interfere': 16665, 'nationalise': 16666, 'tumbling': 16667, 'commercialrealestate': 16668, 'fledged': 16669, 'dunzo': 16670, 'sharechat': 16671, 'strangled': 16672, 'hawkins': 16673, '20million': 16674, 'sharmin': 16675, 'mossavar': 16676, 'rahmani': 16677, 'sachs': 16678, 'justathought': 16679, 'letsworktogether': 16680, 'deduction': 16681, 'hongkong': 16682, 'ifc': 16683, 'fooling': 16684, 'coronaalert': 16685, 'muchmind': 16686, 'reflexive': 16687, 'propitiousness': 16688, 'braided': 16689, 'inch': 16690, 'joannstores': 16691, 'domex': 16692, 'sacred': 16693, 'themselve': 16694, 'r9': 16695, 'f4f': 16696, 'likeforlikes': 16697, 'followforfollowback': 16698, 'superman': 16699, 'offender': 16700, 'adventuregame': 16701, 'showingmyage': 16702, 'vortex': 16703, 'chunk': 16704, 'disgracefully': 16705, 'deplorable': 16706, 'nots': 16707, 'espionage': 16708, 'exacerbates': 16709, 'csas': 16710, 'farmersmarkets': 16711, 'nakasero': 16712, 'bypassed': 16713, 'greengrocer': 16714, 'preferring': 16715, 'wagner': 16716, 'discouraging': 16717, 'playground': 16718, 'kakenews': 16719, 'risinguptothechallenges': 16720, 'strap': 16721, 'tester': 16722, 'swab': 16723, 'lockdownkarma': 16724, 'supervalu': 16725, 'plng': 16726, 'hurot': 16727, 'formed': 16728, 'acceptance': 16729, 'strip': 16730, 'endeavour': 16731, 'overflowing': 16732, 'uneaten': 16733, 'mouldy': 16734, 'hoarderish': 16735, 'mondayvibes': 16736, 'mondayblogs': 16737, 'towelchallenge': 16738, 'sart': 16739, 'wewillsurvive': 16740, 'illinoisprimary': 16741, 'needfood': 16742, '89': 16743, 'cpg': 16744, 'fastmovingconsumergoods': 16745, 'cpgconnectnews': 16746, 'dh': 16747, '807': 16748, 'weirdo': 16749, 'hackin': 16750, 'peloton': 16751, 'brandindex': 16752, 'stationary': 16753, 'bike': 16754, 'forage': 16755, 'ransacked': 16756, 'kait': 16757, 'turbo': 16758, 'mifi': 16759, 'injured': 16760, 'alamo': 16761, 'instagood': 16762, 'peeweeherman': 16763, 'peeweesbogadventure': 16764, 'overbuying': 16765, '407': 16766, 'skewed': 16767, 'extrovert': 16768, 'juggling': 16769, 'townsville': 16770, '3pm': 16771, 'restitution': 16772, 'wbab': 16773, 'weathered': 16774, 'positivetrumpspanic': 16775, 'fridaymotivation': 16776, 'positivethoughts': 16777, 'reservation': 16778, 'pityous': 16779, 'celeste': 16780, 'leatherette': 16781, 'moodboost': 16782, 'reshaping': 16783, 'pri': 16784, 'rank': 16785, 'visualization': 16786, 'civilwar': 16787, 'unwillingness': 16788, 'saddownsomewhere': 16789, 'outchea': 16790, '362': 16791, 'day4': 16792, 'capitalise': 16793, 'carnage': 16794, 'sunflower': 16795, 'nine': 16796, 'tbilisi': 16797, 'escalated': 16798, 'florist': 16799, 'homo': 16800, 'nosleepgang': 16801, 'zombielife': 16802, 'teatrees': 16803, 'retweetplease': 16804, '2019cov': 16805, 'viruscorona': 16806, 'joeledley': 16807, 'cpfc': 16808, 'removal': 16809, 'deepak': 16810, 'parekh': 16811, 'leash': 16812, 'cordantlovespeople': 16813, 'feedbackfriday': 16814, 'profound': 16815, 'uniqlo': 16816, 'eyeing': 16817, 'downtime': 16818, 'warwick': 16819, 'sandown': 16820, 'slack': 16821, 'cringe': 16822, '100b': 16823, 'writte': 16824, 'thankyoudoctors': 16825, 'shibley': 16826, 'worthy': 16827, 'unwilling': 16828, 'dispatch': 16829, 'societyandculture': 16830, 'columbusohio': 16831, 'netflixparty': 16832, 'jihadist': 16833, 'suicide': 16834, 'bemoaning': 16835, 'tuition': 16836, 'expatriate': 16837, 'thorough': 16838, 'autonomous': 16839, 'hibinate': 16840, 'homealone': 16841, 'sobored': 16842, 'bigbox': 16843, 'coronaus': 16844, 'funnyshirts': 16845, 'whitechapel': 16846, '512': 16847, 'toiletpapermath': 16848, 'homework': 16849, 'crowdfunding': 16850, 'wiring': 16851, 'unconscionable': 16852, 'everclear': 16853, '190': 16854, 'saveournurses': 16855, 'projected': 16856, 'granting': 16857, 'thorny': 16858, 'gh': 16859, 'allw': 16860, 'salina': 16861, 'nob': 16862, 'prognosis': 16863, 'agitate': 16864, 'reversed': 16865, 'redress': 16866, 'sag': 16867, 'eveyone': 16868, 'fiver': 16869, 'betty': 16870, 'pie': 16871, 'saveourgrowers': 16872, 'growyourown': 16873, 'concession': 16874, 'continuity': 16875, 'personality': 16876, 'intensely': 16877, 'used2': 16878, 'prioritised4': 16879, 'due2': 16880, 'sympathize': 16881, 'unsold': 16882, 'stelvio': 16883, 'ftcscambingo': 16884, 'bilateral': 16885, 'assessing': 16886, 'retaliatory': 16887, 'sanauto': 16888, 'spraying': 16889, 'coronafighters': 16890, 'tv9': 16891, 'homeneeds': 16892, 'doug': 16893, 'ford': 16894, 'eb': 16895, 'unneeded': 16896, 'westmidland': 16897, '57': 16898, 'shoplifting': 16899, 'midland': 16900, 'militarized': 16901, 'bitterly': 16902, 'outrageously': 16903, 'cunningham': 16904, 'oldglorydistilling': 16905, 'hesitate': 16906, 'destroys': 16907, 'janeeyre': 16908, '6ftplease': 16909, 'strategia': 16910, 'epa': 16911, 'microsure': 16912, 'horrifying': 16913, 'airfare': 16914, 'roundtrip': 16915, 'vegasshutdown': 16916, 'askforhelp': 16917, 'offersomehelp': 16918, 'edemame': 16919, 'sighting': 16920, 'loch': 16921, 'ness': 16922, 'frenetic': 16923, 'babysitter': 16924, 'geneva': 16925, 'avengersendgame': 16926, 'untransformed': 16927, 'coining': 16928, 'confiscatory': 16929, 'blackfriday': 16930, 'greedybastards': 16931, 'personalized': 16932, 'harriscounty': 16933, 'constable': 16934, 'm8': 16935, 'laser': 16936, 'newburgh': 16937, 'saturdaymotivation': 16938, 'tweaked': 16939, 'confront': 16940, 'sf': 16941, 'skillet': 16942, 'gibb': 16943, 'hitendra': 16944, 'chaturvedi': 16945, 'huffing': 16946, 'haribos': 16947, 'altruism': 16948, 'vanderbilt': 16949, 'goldsmith': 16950, 'topahov': 16951, 'hoardingvirus': 16952, 'exponentialgrowth': 16953, 'flatteningthecurve': 16954, 'toiletpaperwars': 16955, 'mint': 16956, '1oz': 16957, 'apmex': 16958, 'sterlingjacksonrealestate': 16959, 'sterjackre': 16960, 'sterlingjackson': 16961, 'realestateisgreat': 16962, 'worldwarc': 16963, 'doyourpart': 16964, 'goodjob': 16965, 'ransom': 16966, 'fellowship': 16967, 'condemning': 16968, 'setlife': 16969, 'filmcrew': 16970, 'intial': 16971, 'iif': 16972, 'cor': 16973, 'needful': 16974, 'overdoses': 16975, 'brutalised': 16976, 'confrontational': 16977, 'cultured': 16978, 'populated': 16979, 'savehowie': 16980, 'empowerment': 16981, 'burial': 16982, 'rocketed': 16983, 'nyers': 16984, 'kixies': 16985, 'preliminary': 16986, 'etauto': 16987, 'communicable': 16988, 'nicd': 16989, '0800': 16990, '029': 16991, 'transurban': 16992, 'tollroads': 16993, 'trucking': 16994, 'bondi': 16995, 'oag': 16996, '442': 16997, '9854': 16998, 'altruistic': 16999, 'emphasise': 17000, 'bankingindustry': 17001, 'spook': 17002, 'bandwidth': 17003, 'horrified': 17004, 'ugt': 17005, 'mercandise': 17006, 'listened': 17007, 'quah': 17008, 'aggregate': 17009, 'jaw': 17010, 'seclusion': 17011, 'roundy': 17012, 'consumes': 17013, 'hpqm77pgsd': 17014, 'indiana': 17015, 'laborecon': 17016, 'tpselfies': 17017, 'scaring': 17018, 'wuarantinememe': 17019, 'irony': 17020, 'bun': 17021, 'litter': 17022, 'amreeka': 17023, 'lifeblood': 17024, 'cashisking': 17025, 'sixoclock': 17026, 'glitch': 17027, 'slows': 17028, 'denis': 17029, 'n95facemask': 17030, 'mature': 17031, 'sikh': 17032, 'cater': 17033, 'proudsikhs': 17034, 'bramley': 17035, 'messichallenge': 17036, 'cringeworthy': 17037, 'fealty': 17038, 'x3': 17039, 'a2': 17040, 'adorable': 17041, 'activitiesforchildren': 17042, 'dfwparents': 17043, 'handmaid': 17044, 'figured': 17045, 'heist': 17046, 'captiva': 17047, 'statebaroftexas': 17048, 'violates': 17049, 'deceptive': 17050, 'epi': 17051, 'demi': 17052, 'lirics': 17053, 'epic': 17054, 'overrated': 17055, 'literature': 17056, 'orderly': 17057, 'perspex': 17058, 'imperial': 17059, 'figgered': 17060, 'december': 17061, 'ripoff': 17062, 'beset': 17063, 'enlink': 17064, 'enlc': 17065, '1929': 17066, 'googled': 17067, 'signup': 17068, 'realmafiapparel': 17069, 'cripthevote': 17070, 'phasing': 17071, 'speeding': 17072, 'startof': 17073, 'ehsan': 17074, 'ul': 17075, 'haq': 17076, 'roger': 17077, 'hirst': 17078, 'datanow': 17079, 'trusteddata': 17080, 'thestar': 17081, '306': 17082, '664': 17083, '1190': 17084, 'pademic': 17085, 'kaffy': 17086, 'idealist': 17087, 'susan': 17088, 'zumbuehl': 17089, 'umbrella': 17090, 'consern': 17091, 'sincere': 17092, 'kprc2': 17093, 'click2houston': 17094, 'nonperforming': 17095, 'npls': 17096, 'withstand': 17097, 'utm': 17098, 'disabilites': 17099, 'mystery': 17100, 'couch': 17101, 'newsest': 17102, 'marcoisland': 17103, 'bettertogether': 17104, 'paducah': 17105, 'geocaching': 17106, 'byop': 17107, 'boycottchina': 17108, 'solicit': 17109, 'centred': 17110, 'wig': 17111, 'thang': 17112, 'unitednations': 17113, 'touchpoint': 17114, 'skip': 17115, 'bleeding': 17116, 'plaster': 17117, 'cuddle': 17118, 'pressured': 17119, 'propublica': 17120, 'lauren': 17121, 'verno': 17122, 'investigative': 17123, 'visualised': 17124, 'consists': 17125, 'shorten': 17126, 'ssm': 17127, 'baraboo': 17128, 'janesville': 17129, 'reedsburg': 17130, 'prairie': 17131, 'sac': 17132, 'overreacting': 17133, 'aircraft': 17134, 'overwing': 17135, 'shutterstock': 17136, 'boon': 17137, 'hurting': 17138, 'regulated': 17139, 'lifeles': 17140, 'ancient': 17141, 'conchshells': 17142, 'ringing': 17143, 'jantacurfewmarch22': 17144, 'modicoronamessage': 17145, 'indiacometogether': 17146, 'theinfiniteage': 17147, 'evaporated': 17148, 'gulval': 17149, 'penzance': 17150, 'wewillfightcorona': 17151, 'lexicon': 17152, 'oat': 17153, 'hp': 17154, 'governer': 17155, 'tennessean': 17156, 'containcovid19': 17157, 'jpak': 17158, 'shippingtoja': 17159, 'takeouttuesday': 17160, 'lse': 17161, 'uknews': 17162, 'kane': 17163, 'pirie': 17164, 'subscribing': 17165, '18c': 17166, 'toothpaste': 17167, 'bubblegum': 17168, 'umassmed': 17169, 'reflected': 17170, 'confess': 17171, 'time4change': 17172, 'sickofwinning': 17173, 'cliff': 17174, 'dev': 17175, 'koboko': 17176, 'bloodsucker': 17177, 'shs3': 17178, 'bartholomew': 17179, 'sebastian': 17180, '3onyourside': 17181, 'stupidisasstupiddoes': 17182, 'gerrityssupermarket': 17183, 'trumpincompetence': 17184, 'trumpjoke': 17185, 'trumpsucks': 17186, 'rif': 17187, 'foreignexchange': 17188, 'cary': 17189, 'zimmerman': 17190, 'sia': 17191, 'wilding': 17192, 'shook': 17193, 'exp': 17194, 'retaillife': 17195, 'honcho': 17196, 'appreciates': 17197, '19nz': 17198, 'sd': 17199, 'interestingly': 17200, 'album': 17201, 'nycshutdown': 17202, 'disinfected': 17203, '508': 17204, '9032': 17205, 'braver': 17206, 'helpthemtohelpusall': 17207, 'myallotment': 17208, 'freefood': 17209, 'calamity': 17210, 'icantwork': 17211, 'icantgetpaid': 17212, 'thee': 17213, 'txu': 17214, 'paused': 17215, 'disconnect': 17216, 'rieux': 17217, 'nutrisciences': 17218, 'adel': 17219, 'karina': 17220, 'isliationhelp': 17221, 'newsong': 17222, 'albuterol': 17223, 'bolivia': 17224, 'vegpower': 17225, 'unsustainable': 17226, 'curbedny': 17227, 'editing': 17228, 'hoppon': 17229, 'veetilirimyre': 17230, 'tailor': 17231, 'implementation': 17232, 'mbbs': 17233, 'rmc': 17234, 'msc': 17235, 'lsh': 17236, 'karachi': 17237, 'llb': 17238, 'burton': 17239, 'restrain': 17240, 'utilise': 17241, 'coincome': 17242, 'affiliated': 17243, 'ftw': 17244, 'vimtotweets': 17245, 'luxembourg': 17246, 'poorcustomerservice': 17247, 'immoral': 17248, 'aryeh': 17249, 'boim': 17250, 'osher': 17251, 'caters': 17252, 'orthodox': 17253, 'jewish': 17254, 'cram': 17255, 'cain': 17256, 'chcnewsflash': 17257, 'mentally': 17258, 'stagflation': 17259, 'mayo': 17260, 'dressing': 17261, 'otipy': 17262, 'ipas': 17263, 'ksh': 17264, 'pharmacie': 17265, 'conceivably': 17266, 'chorus': 17267, 'invited': 17268, 'passle': 17269, '017': 17270, 'kwh': 17271, 'solar': 17272, 'comparable': 17273, 'piped': 17274, 'greatgame': 17275, 'renewables': 17276, 'aliceinwonderland': 17277, 'gonearoundthebend': 17278, 'spermarketprofitsforgood': 17279, 'stevencain': 17280, 'shutdownma': 17281, 'refining': 17282, 'handsanitizerleash': 17283, 'victoriabc': 17284, 'sah': 17285, 'policie': 17286, 'proti': 17287, 'spekulant': 17288, 'roukami': 17289, 'popud': 17290, 'hejtman': 17291, 'steck': 17292, 'kraje': 17293, 'spolupr': 17294, 'podle': 17295, 'krizov': 17296, 'kona': 17297, 'zajistil': 17298, 'ti': 17299, 'rouek': 17300, 'od': 17301, 'firmy': 17302, 'kter': 17303, 'dodat': 17304, 'zdravotn': 17305, 'ale': 17306, 'posledn': 17307, 'chv': 17308, 'snaila': 17309, 'navyovat': 17310, 'cenu': 17311, 'spolutozvladneme': 17312, 'forager': 17313, 'maine': 17314, 'feedme': 17315, 'eatlocal': 17316, 'spongebob': 17317, 'spongebobmemes': 17318, 'spongebobmeme': 17319, 'memesdaily': 17320, 'dankmeme': 17321, 'ol': 17322, 'edgymemes': 17323, 'dailymemes': 17324, 'offensivememes': 17325, 'topshop': 17326, 'topman': 17327, 'arcadia': 17328, 'creditor': 17329, 'nora': 17330, 'lamontagne': 17331, 'supervision': 17332, 'creg': 17333, 'concordia': 17334, 'sawchuk': 17335, 'inkling': 17336, 'exploitative': 17337, 'fury': 17338, 'offloaded': 17339, '11m': 17340, 'feb2020': 17341, 'frustrating': 17342, 'iv': 17343, 'eep': 17344, 'bifurcated': 17345, 'bt21': 17346, 'wts': 17347, 'sg': 17348, 'sgd': 17349, 'foodbusiness': 17350, 'awaiting': 17351, '4m': 17352, 'brentwood': 17353, 'haveing': 17354, 'saveworkers': 17355, 'stlblues': 17356, 'stlouis': 17357, 'stl': 17358, 'maxing': 17359, 'ovation': 17360, 'paralyzes': 17361, 'outhouse': 17362, 'swoop': 17363, 'finglas': 17364, 'knocked': 17365, 'nincompoop': 17366, 'indefinitely': 17367, '2lbs': 17368, 'eastfruit': 17369, 'mez': 17370, 'cornelldyson': 17371, 'officedelivery': 17372, 'channel4news': 17373, 'eurospin': 17374, 'flint': 17375, 'alpinia': 17376, 'galanga': 17377, 'mosquito': 17378, 'repelling': 17379, 'shallot': 17380, 'anise': 17381, 'boil': 17382, 'thirsty': 17383, 'respite': 17384, 'applestore': 17385, 'extendedreturn': 17386, 'underline': 17387, 'internationaldayofhappiness': 17388, 'outtake': 17389, 'phylogenetic': 17390, 'adaptation': 17391, 'transmissible': 17392, 'excedrin': 17393, 'cornavirus': 17394, 'inner': 17395, 'sahloul': 17396, 'primavera': 17397, 'infuriating': 17398, 'allowance': 17399, 'coke': 17400, 'substantially': 17401, 'quits': 17402, 'wi': 17403, 'disabledcovid19': 17404, 'fuck3n': 17405, 'bi': 17406, 'slob': 17407, 'r3tards': 17408, 'heartless': 17409, 'preventionoverpanic': 17410, 'unified': 17411, 'framework': 17412, 'rouble': 17413, 'tailspin': 17414, 'readingrussia': 17415, 'patented': 17416, 'remdesivir': 17417, 'feline': 17418, 'fip': 17419, 'luis': 17420, 'obispo': 17421, '186': 17422, 'commerceiq': 17423, 'whyyoucantbuytp': 17424, 'paxton': 17425, 'southwest': 17426, 'magnify': 17427, 'etretail': 17428, 'grumpy': 17429, '2keep': 17430, 'unionized': 17431, 'unionstrong': 17432, 'tidy': 17433, 'digitalization': 17434, 'digitalworkplace': 17435, 'jesussaves': 17436, 'repentnownations': 17437, 'godwins': 17438, 'marketcrash2020': 17439, 'todayistheday': 17440, 'weigh': 17441, 'bushel': 17442, 'apnea': 17443, 'converted': 17444, 'pulmonologists': 17445, 'competent': 17446, 'supt': 17447, 'eased': 17448, 'aftershock': 17449, 'technologynews': 17450, 'niki': 17451, 'megalomaniac': 17452, 'everyones': 17453, 'christucker': 17454, '2c': 17455, 'aint': 17456, 'urselves': 17457, 'freedom2out': 17458, 'food2eat': 17459, 'place2call': 17460, 'christopher': 17461, 'adequately': 17462, 'mddc': 17463, '1199': 17464, 'brandon': 17465, 'montr': 17466, 'coloradoan': 17467, 'takecare': 17468, 'emergencyfood': 17469, 'assassin': 17470, 'citrus': 17471, 'behealthy': 17472, 'texasbeardsman': 17473, 'securely': 17474, 'creditcards': 17475, 'ucriverside': 17476, 'epidemiologist': 17477, 'freemarket': 17478, 'rearranging': 17479, 'opportunistic': 17480, 'socioeconomic': 17481, 'myanmar': 17482, 'nbsupdates': 17483, 'imnext': 17484, 'absorbed': 17485, 'pee': 17486, 'philipkotler': 17487, 'worldeconomy': 17488, 'prevententive': 17489, 'inhumane': 17490, 'longs': 17491, 'litigation': 17492, 'ballard': 17493, 'spahr': 17494, 'synthesize': 17495, 'internalize': 17496, 'adoration': 17497, 'haggling': 17498, 'restrictive': 17499, 'hogue': 17500, 'casper': 17501, 'cspr': 17502, 'huddling': 17503, 'multitude': 17504, 'rooted': 17505, 'cushion': 17506, 'usecof': 17507, 'inflationary': 17508, 'attribute': 17509, 'cutoff': 17510, 'royalmail': 17511, 'thismorning': 17512, 'pilers': 17513, 'ln': 17514, 'ytd': 17515, 'retain': 17516, 'hsd': 17517, 'eps': 17518, 'imb': 17519, 'imco': 17520, 'tacke': 17521, 'gripped': 17522, 'pimprichinchwad': 17523, 'undue': 17524, 'burdene': 17525, 'mash': 17526, 'puertorico': 17527, 'mandated': 17528, 'vistalworks': 17529, 'signlanguage': 17530, 'bsl': 17531, 'nxt': 17532, 'marico': 17533, 'gupta': 17534, 'opines': 17535, 'eas': 17536, 'richa': 17537, 'arora': 17538, 'usacovid19': 17539, 'compelling': 17540, 'wonderous': 17541, 'bowen': 17542, 'iconic': 17543, 'outcry': 17544, 'worldwarii': 17545, 'aluminum': 17546, 'awaaz': 17547, 'theu': 17548, 'teepeeformybunghole': 17549, 'siena': 17550, 'roster': 17551, 'attests': 17552, 'frm': 17553, 'cornershop': 17554, 'restricting': 17555, 'passage': 17556, 'doubling': 17557, 'affordably': 17558, 'farmboy': 17559, 'ibiza': 17560, 'eularia': 17561, 'verity': 17562, 'ibiza2020': 17563, 'telemedicine': 17564, 'muddappa': 17565, 'deresinski': 17566, 'dislocated': 17567, 'impaired': 17568, 'pimco': 17569, 'amundi': 17570, 'ashmore': 17571, 'accusation': 17572, 'scomovirus': 17573, 'outlests': 17574, 'evacuating': 17575, 'guzzles': 17576, 'multicultural': 17577, 'asylum': 17578, 'seeker': 17579, 'aspencard': 17580, 'hostileenvironment': 17581, 'veros': 17582, 'suddenchange': 17583, '3day': 17584, 'justintime': 17585, '7day': 17586, 'normalsupply': 17587, 'unfreezing': 17588, 'fox43findsout': 17589, '25am': 17590, 'illiterate': 17591, 'kcr': 17592, 'jagan': 17593, 'bombshell': 17594, 'ugly': 17595, 'absence': 17596, 'practises': 17597, 'cultu': 17598, 'ensues': 17599, 'scope': 17600, 'posing': 17601, 'pricehike': 17602, 'mumbaiker': 17603, 'arranges': 17604, 'almaty': 17605, 'askhat': 17606, 'zheksebayev': 17607, 'equipped': 17608, 'relaxation': 17609, 'merger': 17610, 'pretext': 17611, 'oligarch': 17612, 'dt': 17613, 'cused': 17614, 'sumantra': 17615, 'supermarketowners': 17616, 'suspension': 17617, 'napier': 17618, 'pak': 17619, 'nsave': 17620, 'westbaluchistan': 17621, 'innovated': 17622, 'balochistan': 17623, 'pmimrankhan': 17624, 'stillwithher': 17625, 'topeka': 17626, 'derek': 17627, 'schmidt': 17628, 'beneficiary': 17629, 'compound': 17630, 'sho': 17631, 'tuck': 17632, 'crab': 17633, 'lmic': 17634, 'btwn': 17635, 'osha': 17636, 'northam': 17637, 'tuscan': 17638, 'kale': 17639, 'smoked': 17640, 'chorizo': 17641, 'mirepoix': 17642, 'familytime': 17643, 'compelled': 17644, 'sly': 17645, 'infringement': 17646, 'flavonoid': 17647, 'tseng': 17648, 'daria': 17649, 'weissman': 17650, 'beemit': 17651, 'keyword': 17652, 'noworries': 17653, 'brewer': 17654, 'adedayo': 17655, 'ayeni': 17656, 'saharan': 17657, 'discloses': 17658, 'thecable': 17659, 'virsuse': 17660, 'unpredictability': 17661, 'cletus': 17662, 'memes2riches': 17663, 'heybitch': 17664, 'casulty': 17665, 'herculean': 17666, 'keepcalmgodigitalbanking': 17667, 'inukasme': 17668, '12km': 17669, '1km': 17670, 'expiring': 17671, 'contr': 17672, 'technique': 17673, 'homecooking': 17674, 'healhtycooking': 17675, 'versatile': 17676, 'risked': 17677, 'jackie': 17678, 'interstate': 17679, 'uplifting': 17680, 'babybel': 17681, 'penalize': 17682, 'indicate': 17683, 'drfauci': 17684, 'tying': 17685, 'firstdayofspring': 17686, 'warrenton': 17687, 'pupil': 17688, 'fsm': 17689, 'bzun': 17690, 'cfa': 17691, 'agenda': 17692, 'weakened': 17693, 'corporates': 17694, 'attractive': 17695, 'viet': 17696, 'nam': 17697, 'fork': 17698, 'quittrippin': 17699, 'roar': 17700, 'torontohousingmarket': 17701, 'housesforsale': 17702, 'attracted': 17703, 'hooptie': 17704, 'chinaflu': 17705, 'familiaspnf': 17706, 'salvage': 17707, 'margareta': 17708, 'sneezed': 17709, 'multiplied': 17710, 'deem': 17711, 'veneer': 17712, 'craven': 17713, 'diseased': 17714, 'dormer': 17715, 'quarenteen': 17716, 'ebook': 17717, 'stayhomeandread': 17718, 'olden': 17719, 'breadfail': 17720, 'selfservatism': 17721, 'holocaust': 17722, 'surveillance': 17723, 'innovate': 17724, 'constraint': 17725, 'upheld': 17726, 'andre': 17727, 'voiced': 17728, 'assaulting': 17729, 'margo': 17730, 'barbara': 17731, 'triplebottomline': 17732, 'iam': 17733, 'bachelor': 17734, 'djt': 17735, 'unfill': 17736, 'mosaic': 17737, 'moz': 17738, 'kitco': 17739, 'usdollar': 17740, 'republic': 17741, 'contrary': 17742, 'clearest': 17743, 'barometer': 17744, 'peterborough': 17745, 'kawartha': 17746, 'crushline': 17747, 'athletecrush': 17748, 'dems': 17749, 'admonishes': 17750, 'gouvernance': 17751, 'squad': 17752, 'illicit': 17753, 'uncontrolled': 17754, 'bamako': 17755, 'concentration': 17756, 'gaza': 17757, 'unde': 17758, 'apzweb': 17759, 'ordeal': 17760, 'workstream': 17761, 'hrtech': 17762, 'gigworkers': 17763, 'sage': 17764, 'seventy': 17765, 'moira': 17766, 'welikanna': 17767, 'fulham': 17768, 'bogof': 17769, 'curry': 17770, 'dhamki': 17771, 'sushma': 17772, 'swaraj': 17773, 'shaykh': 17774, 'mohamed': 17775, 'hoblos': 17776, 'zhengzhou': 17777, 'subtly': 17778, 'strenuous': 17779, 'shel': 17780, 'rolex': 17781, 'swatch': 17782, 'cartier': 17783, 'michigancoronavirus': 17784, 'sweetheart': 17785, 'lobbyist': 17786, 'cimas': 17787, 'togetherwemakeadifference': 17788, '03237979660': 17789, 'jhagra': 17790, 'geonews': 17791, 'asad': 17792, 'umar': 17793, 'zfrmrza': 17794, 'dawnnews': 17795, 'ndma': 17796, 'hamidmir': 17797, 'downsizing': 17798, 'cancelledflights': 17799, 'cancelledevents': 17800, 'seatravel': 17801, 'packageholidays': 17802, 'drdo': 17803, 'patanjaliyogpeeth': 17804, 'santoor': 17805, 'othr': 17806, 'reducng': 17807, 'whn': 17808, 'inexorably': 17809, 'northward': 17810, 'mimic': 17811, 'perth': 17812, 'reckon': 17813, 'imagining': 17814, 'justanotherdayinwa': 17815, '9r': 17816, 'stopcoronamadness': 17817, 'tatanic': 17818, 'hymn': 17819, 'braved': 17820, 'lasagna': 17821, 'shrugged': 17822, 'nolasagna': 17823, 'sbi': 17824, 'amaravati': 17825, 'guntur': 17826, 'ducey': 17827, 'daretobe': 17828, 'nigel': 17829, 'malnutrition': 17830, 'winelands': 17831, 'msm': 17832, 'optometrist': 17833, 'veterinary': 17834, 'resurgence': 17835, 'draya': 17836, 'firetrump': 17837, 'brenda': 17838, 'sensitizing': 17839, 'fox10phoenix': 17840, 'fullest': 17841, 'pajama': 17842, 'hairy': 17843, 'vege': 17844, 'skyrim': 17845, 'seductivesunday': 17846, 'reconsidering': 17847, 'gosh': 17848, 'awfully': 17849, 'gagged': 17850, 'woeful': 17851, '100x': 17852, 'chadha': 17853, '20something': 17854, 'fella': 17855, 'lawd': 17856, 'b1g1': 17857, 'aust': 17858, 'lockeddown': 17859, 'jerkin': 17860, 'squirtin': 17861, 'emma': 17862, 'fowle': 17863, 'lymeregis': 17864, 'engulf': 17865, 'golibar': 17866, 'santacruz': 17867, '21dayschallenge': 17868, 'reset': 17869, 'nespresso': 17870, 'peets': 17871, 'mountainlife': 17872, 'authenticarkansas': 17873, 'arpreservation': 17874, 'wearemainstreet': 17875, 'naturalresouces': 17876, 'russi': 17877, 'imon': 17878, '4u': 17879, 'like4likes': 17880, 'homemadesanitizer': 17881, 'tahlequahtdp': 17882, 'iodised': 17883, 'washingtondc': 17884, 'marshalled': 17885, '780': 17886, '453': 17887, '0101': 17888, 'weareopen': 17889, 'blissbakedgoods': 17890, 'spire': 17891, 'theblaze': 17892, 'midia': 17893, 'veliaj': 17894, 'stopthevirus': 17895, 'statistically': 17896, 'petrobras': 17897, 'lockdownnsw': 17898, 'tizer': 17899, 'oregon': 17900, 'cali': 17901, 'ronarants': 17902, 'smug': 17903, 'gem': 17904, 'polk': 17905, 'quarantineselfie': 17906, 'meaningless': 17907, 'busine': 17908, 'traditionally': 17909, 'ravitz': 17910, 'shade': 17911, 'sour': 17912, 'chive': 17913, 'frickin': 17914, 'fwps': 17915, 'amy': 17916, 'davis': 17917, 'brin': 17918, 'sodding': 17919, 'diagnostics': 17920, 'hospitalised': 17921, 'fave': 17922, 'exaggeration': 17923, 'eww': 17924, 'hypochondriac': 17925, 'petty': 17926, 'zitapewa': 17927, 'matajiri': 17928, 'watu': 17929, 'wanajua': 17930, 'ulafi': 17931, 'tyler': 17932, 'perry': 17933, 'nhk': 17934, 'reschedule': 17935, 'centralised': 17936, 'wtrg': 17937, 'kmb': 17938, 'csco': 17939, 'ibm': 17940, 'getthehellawayfromme': 17941, 'exceeds': 17942, 'businessnews': 17943, 'rahul': 17944, 'kansal': 17945, 'sinclair': 17946, 'euclid': 17947, 'shopassistants': 17948, 'shelfstacking': 17949, 'exhausting': 17950, 'punishes': 17951, 'ruthlessly': 17952, 'fasting': 17953, 'supremecourtofindia': 17954, 'mannkibaa': 17955, 'arnews': 17956, 'skellig': 17957, 'kilometer': 17958, 'skelligcoast2kms': 17959, 'southkerry': 17960, 'healer': 17961, 'detain': 17962, 'scored': 17963, 'arielle': 17964, 'trzcinski': 17965, 'optimises': 17966, 'staking': 17967, 'pseudoscience': 17968, 'laughably': 17969, 'evade': 17970, 'malibu': 17971, '593': 17972, '822': 17973, 'undermines': 17974, 'chs': 17975, 'manhandling': 17976, 'introduction': 17977, 'softer': 17978, 'andratuttobene': 17979, 'tuscany': 17980, 'pecker': 17981, 'ami': 17982, 'survives': 17983, 'alcoholism': 17984, 'crafting': 17985, 'customizing': 17986, 'fipi': 17987, 'lele': 17988, 'toiletpaperrolls': 17989, 'toiletpaperseeds': 17990, 'teapot': 17991, 'explodes': 17992, 'keynes': 17993, 'tempted': 17994, 'unjust': 17995, 'inds': 17996, 'outperforming': 17997, 'reit': 17998, 'etf': 17999, 'tasked': 18000, 'inconsistent': 18001, 'audaciously': 18002, 'dispatched': 18003, 'zenith': 18004, '101553042': 18005, 'fudgiechunks': 18006, 'fudge': 18007, 'fudgeislife': 18008, 'keepcalmandcarryon': 18009, 'chocolatefudge': 18010, 'chocandmint': 18011, 'humpday': 18012, 'svp': 18013, 'a5': 18014, 'saddening': 18015, 'maddensmethods': 18016, 'mbrx': 18017, '2022': 18018, 'mycovidstory': 18019, 'comorbidities': 18020, 'ppum': 18021, 'fukin': 18022, 'magarollercoaster': 18023, 'trumppence2020': 18024, '2ashallnotbeinfringed': 18025, 'slaughter': 18026, 'zoonotic': 18027, 'govegan': 18028, 'patronising': 18029, 'sologenic': 18030, 'solo': 18031, 'onslaught': 18032, 'hammer': 18033, 'koronafi': 18034, 'protested': 18035, 'faro': 18036, 'warranty': 18037, 'renewal': 18038, 'calibration': 18039, 'markherringva': 18040, 'vawx': 18041, 'agbarr': 18042, 'prosecuting': 18043, 'wwg1wga': 18044, 'preserved': 18045, '1960': 18046, 'centeris': 18047, 'agfundernews': 18048, 'financialwellbeing': 18049, 'pascal': 18050, 'montagne': 18051, 'p40': 18052, 'livestream': 18053, 'cet': 18054, 'sfbayarea': 18055, 'x2': 18056, 'breakthechain': 18057, 'teesta': 18058, 'lahag': 18059, 'hotella': 18060, 'flashback': 18061, 'childhood': 18062, 'tumblr': 18063, 'delving': 18064, 'libtard': 18065, 'blown': 18066, 'popularity': 18067, 'touchitsafe': 18068, 'canttouchthis': 18069, 'shoppingcart': 18070, 'ushered': 18071, 'disciplinary': 18072, 'walkaroundthingsday': 18073, 'wba': 18074, 'gammon': 18075, 'snowdon': 18076, 'cynical': 18077, 'truckloads': 18078, 'decouple': 18079, 'esm': 18080, 'linking': 18081, 'privatization': 18082, 'fitness': 18083, 'contemplated': 18084, 'astounds': 18085, 'fag': 18086, 'gerard': 18087, 'object': 18088, 'furiously': 18089, 'aud': 18090, 'kwiknews': 18091, 'dickwad': 18092, 'audacity': 18093, 'sidestep': 18094, 'newstart': 18095, 'lifework': 18096, '3700': 18097, '78704': 18098, 'deferring': 18099, 'universalcredit': 18100, 'goodwin': 18101, 'crestline': 18102, 'danced': 18103, 'bonnie': 18104, 'duvet': 18105, 'liability': 18106, 'lawyerkenneth': 18107, 'protecti': 18108, 'damascus': 18109, 'sodium': 18110, 'chlorite': 18111, 'naclo': 18112, 'acid': 18113, 'activator': 18114, 'mixture': 18115, 'chlorine': 18116, 'dioxide': 18117, 'clo': 18118, 'salux': 18119, 'pasar': 18120, 'jaya': 18121, 'jakpost': 18122, 'weasel': 18123, 'lte': 18124, 'alva': 18125, 'demonstrating': 18126, 'nettle': 18127, 'teamfamily': 18128, 'supportingdreams': 18129, 'liberating': 18130, 'tradesman': 18131, 'heartwarming': 18132, 'ghoul': 18133, 'didntdolist': 18134, 'gallbladder': 18135, 'freedumb': 18136, 'scunthorpe': 18137, 'strapped': 18138, 'sensor': 18139, 'dailydrawing': 18140, 'dailysketches': 18141, 'artwithfriends': 18142, 'artchallenge': 18143, 'wordoftheday': 18144, 'wordofthedaychallenge': 18145, 'aldershot': 18146, 'winged': 18147, 'mph': 18148, 'alphabet': 18149, '952': 18150, '5225': 18151, 'raking': 18152, 'owhealth': 18153, 'culturally': 18154, 'vibrant': 18155, 'equilibrium': 18156, 'dwarf': 18157, 'untouched': 18158, 'yee': 18159, 'fulwood': 18160, 'adhered': 18161, '2metredistance': 18162, 'respectit': 18163, 'dailydoseofdonna1979': 18164, 'kiri': 18165, 'hannafin': 18166, 'fadhil': 18167, 'nabi': 18168, '480k': 18169, '358m': 18170, 'cbcnl': 18171, 'refinance': 18172, '6556': 18173, 'brandimage': 18174, 'eur': 18175, 'unissued': 18176, '1500rs': 18177, 'ajeeb': 18178, 'kamal': 18179, 'mazibuk0': 18180, 'cking': 18181, 'thanet': 18182, 'serviced': 18183, 'broadstairs': 18184, '246': 18185, '1988': 18186, 'quarantinedqueers': 18187, 'hygienicpaper': 18188, 'papertowel': 18189, 'tha': 18190, 'sensitivity': 18191, 'paytech': 18192, 'lendtech': 18193, 'ach': 18194, 'vice': 18195, 'mera': 18196, 'minibus': 18197, 'outskirt': 18198, 'ygn': 18199, 'dha': 18200, 'paygrade': 18201, 'backup': 18202, 'agrisa': 18203, 'yoo': 18204, '200s': 18205, 'viruspandemic': 18206, 'internship': 18207, 'differ': 18208, 'thomas': 18209, 'ldnont': 18210, 'selloff': 18211, 'shaken': 18212, 'costlier': 18213, 'pierrecardin': 18214, 'nelly': 18215, 'maintains': 18216, 'spainlockdown': 18217, 'inventorymanagement': 18218, 'thinkwhyitmatters': 18219, 'jobseekerswednesday': 18220, 'hiringnow': 18221, 'jobsearch': 18222, 'jobalert': 18223, 'affordabledrugsnow': 18224, 'grocerystoreemployees': 18225, 'rollout': 18226, 'plaything': 18227, 'scattered': 18228, 'yellow': 18229, 'horribly': 18230, 'ofa': 18231, 'whithin': 18232, 'rydertwts': 18233, 'rarely': 18234, 'ellie': 18235, 'tmt': 18236, 'actuarial': 18237, 'annuity': 18238, 'boycottwetherspoon': 18239, 'boycottvirgin': 18240, 'nowt': 18241, 'aggravate': 18242, 'repent': 18243, 'panicshoppers': 18244, 'mulberry': 18245, 'stare': 18246, 'iffat': 18247, 'ridiculousness': 18248, 'yoga': 18249, 'namastehome': 18250, 'inhibited': 18251, 'dareme': 18252, 'uncivilized': 18253, 'isiolo': 18254, 'nfd': 18255, 'myrrh': 18256, 'khat': 18257, 'profession': 18258, 'gvn': 18259, 'forbidden': 18260, 'kuti': 18261, 'meru': 18262, 'debbiedowner': 18263, 'hellerup': 18264, 'foodmarket': 18265, 'kpi6': 18266, 'recognized': 18267, 'csgpolls': 18268, 'flush': 18269, 'classical': 18270, 'coronacast': 18271, 'passover': 18272, 'bstrong': 18273, 'outpacing': 18274, 'smoff': 18275, 'madhouse': 18276, 'counsel': 18277, 'stayhomemn': 18278, 'oversight': 18279, 'serbia': 18280, '2212168': 18281, 'cohort': 18282, 'halla': 18283, 'hallafoodfight': 18284, 'foodismedicine': 18285, 'bulletin': 18286, 'thatshowweroll': 18287, 'epicfail': 18288, 'setback': 18289, 'eswatini': 18290, 'farmlife': 18291, 'hotbed': 18292, 'sigh': 18293, 'limitation': 18294, 'mourn': 18295, 'gravesides': 18296, 'numb': 18297, 'clumsy': 18298, 'ghosted': 18299, 'rocco': 18300, 'roccosudano': 18301, 'gsd': 18302, 'milton': 18303, 'austr': 18304, 'governing': 18305, 'dismissal': 18306, 'ecolog': 18307, 'indigenous': 18308, 'earthling': 18309, 'tingle': 18310, 'tightest': 18311, 'stard': 18312, '1p': 18313, 'googlealerts': 18314, 'adengage': 18315, 'panicbuyi': 18316, 'busted': 18317, 'feelinggood': 18318, 'mindfulness': 18319, 'sicko': 18320, 'eng': 18321, 'cityoffrederick': 18322, 'frederickmd': 18323, 'eschother': 18324, 'corrugated': 18325, 'rabobank': 18326, 'xinnan': 18327, 'astoria': 18328, 'illegaldancerave': 18329, 'fulfilling': 18330, 'healthforall': 18331, 'supermakets': 18332, '110': 18333, 'syd': 18334, 'dub': 18335, 'sardine': 18336, 'thien': 18337, 'escalates': 18338, 'suicidal': 18339, 'emailed': 18340, 'eliot': 18341, 'hannafords': 18342, 'stayawarestaysafe': 18343, 'frb': 18344, '1980': 18345, 'pronounced': 18346, 'covod19': 18347, 'delipac': 18348, 'savetheplanet': 18349, 'consciously': 18350, 'delhaize': 18351, 'privatelabel': 18352, 'fraudulently': 18353, 'pragmatic': 18354, 'mena': 18355, 'goorganicnyc': 18356, 'imperfectfoods': 18357, 'eic': 18358, 'swot': 18359, 'enables': 18360, 'bigdata': 18361, 'cto': 18362, 'roaring': 18363, 'sapiens': 18364, '594': 18365, 'messaged': 18366, 'excursion': 18367, 'aplenty': 18368, 'morrisey': 18369, 'swathe': 18370, 'organizer': 18371, 'deport': 18372, 'alcoholbrands': 18373, 'helpingbrands': 18374, 'zerowaste': 18375, 'isl': 18376, 'coronaeconomics': 18377, 'greene': 18378, '1340': 18379, 'wgrv': 18380, 'census': 18381, 'strengthening': 18382, 'coralee': 18383, 'colluded': 18384, 'shadowy': 18385, 'nudge': 18386, 'psyop': 18387, 'profiteered': 18388, 'fist': 18389, 'primed': 18390, 'disinterested': 18391, 'elpaso': 18392, 'supportelpaso': 18393, 'curtailing': 18394, 'kansascity': 18395, 'zillow': 18396, 'recruited': 18397, 'czech': 18398, 'broadcaster': 18399, 'biodegradable': 18400, 'crona': 18401, 'saheb': 18402, 'kaya': 18403, 'chahty': 18404, 'hen': 18405, 'kahan': 18406, 'rahy': 18407, 'sari': 18408, 'dolat': 18409, 'ptigovernment': 18410, 'pto': 18411, 'utd': 18412, 'girasol': 18413, 'shelford': 18414, 'legally': 18415, 'policed': 18416, 'precedence': 18417, 'shelfish': 18418, 'wipfliag': 18419, 'irresponsable': 18420, 'kamloops': 18421, 'orgs': 18422, 'franking': 18423, 'baronship': 18424, 'spacex': 18425, 'flagellation': 18426, 'harsher': 18427, 'undertake': 18428, 'sewed': 18429, '3dxchat': 18430, 'imvu': 18431, 'secondlife': 18432, 'winco': 18433, 'definitive': 18434, 'dcwp': 18435, 'digitally': 18436, 'overcharge': 18437, 'jenkins': 18438, 'unbs': 18439, 'genuine': 18440, 'jumia': 18441, 'gcse': 18442, '2052': 18443, 'civicscience': 18444, 'constituent': 18445, 'maria': 18446, 'tampico': 18447, 'chefsanantonio': 18448, 'quarantinecuisine': 18449, 'starter': 18450, 'causeway': 18451, 'wizard': 18452, 'deflated': 18453, 'hotspot': 18454, 'lobby': 18455, 'dbvt': 18456, 'wtfutureipsos': 18457, 'dryhands': 18458, 'handicapped': 18459, 'myt': 18460, 'mytbusiness': 18461, 'mytaxation': 18462, 'isoation': 18463, 'hungryathome': 18464, 'coronalockdownuk': 18465, 'darwinawards': 18466, 'moldy': 18467, 'tremorogenic': 18468, 'mycotoxin': 18469, 'needlessly': 18470, 'ushering': 18471, '4ir': 18472, 'classroom': 18473, 'latch': 18474, 'handrils': 18475, 'thepublicwillremember': 18476, 'greedmongers': 18477, 'frightened': 18478, 'rina': 18479, 'yashayeva': 18480, 'buhari': 18481, 'lagosschoolclosure': 18482, 'day23': 18483, 'salvadoran': 18484, 'quesadilla': 18485, 'reprieve': 18486, 'figuratively': 18487, 'wenotoutside': 18488, 'westernbeefisstacked': 18489, 'proportionate': 18490, 'despondency': 18491, 'unjustifiable': 18492, 'knw': 18493, 'craazy': 18494, 'upheavel': 18495, 'defenseproductionact': 18496, 'stressor': 18497, 'lil': 18498, 'kayla': 18499, 'simpson': 18500, 'enoug': 18501, 'upheaval': 18502, 'fogged': 18503, 'prescribed': 18504, 'nc': 18505, 'atty': 18506, 'wisely': 18507, 'avoidscams': 18508, 'financialhelp': 18509, 'gartner': 18510, 'discovers': 18511, 'notok': 18512, 'fueling': 18513, 'bv9twvpqkb': 18514, 'fba': 18515, 'fbaops': 18516, 'stroll': 18517, 'raindrop': 18518, 'ordination': 18519, 'jug': 18520, 'cooler': 18521, 'unopened': 18522, 'refrigerated': 18523, 'memorial': 18524, 'bigcommerce': 18525, 'mackle': 18526, 'drawn': 18527, 'mick': 18528, 'mulvaney': 18529, 'downplayed': 18530, 'phi': 18531, 'aghotline': 18532, 'bogg': 18533, 'publication': 18534, 'photograph': 18535, 'folkestone': 18536, 'streetphotography': 18537, 'nordstrom': 18538, 'forgo': 18539, 'smmc': 18540, 'uisedu': 18541, 'uiuc': 18542, 'uic': 18543, 'realme': 18544, 'realmetv': 18545, 'mitv5': 18546, 'mi10': 18547, 'mi10pro': 18548, 'realmenarzo': 18549, 'realmenarzo10': 18550, 'alarm': 18551, 'sounded': 18552, 'squandered': 18553, 'goldprice': 18554, 'goldfutures': 18555, 'stimulusplan': 18556, 'medlife': 18557, 'extorting': 18558, 'collar': 18559, 'ojek': 18560, 'mehra': 18561, 'relieved': 18562, 'poopourri': 18563, 'founditonamazon': 18564, 'poopchallenge': 18565, 'forgiven': 18566, 'flatbread': 18567, 'preaches': 18568, 'thankyoucheckoutworkers': 18569, 'thankyoushelfstackers': 18570, 'thankyoushopworkers': 18571, 'fastsigns': 18572, 'inglewood': 18573, '310': 18574, '2177': 18575, '403': 18576, 'brea': 18577, 'jurupa': 18578, 'mold': 18579, 'nowican': 18580, 'immunosuppressedwife': 18581, 'itw': 18582, 'hartness': 18583, 'shiver': 18584, 'proving': 18585, 'leavenoonebehind': 18586, 'anastasia': 18587, 'purina': 18588, 'rollison': 18589, 'adelaide': 18590, 'htta': 18591, 'girlguiding': 18592, 'nee': 18593, 'durham': 18594, 'oswald': 18595, 'simultaneous': 18596, 'daniel': 18597, 'egel': 18598, 'ries': 18599, 'talent': 18600, 'drake': 18601, 'malema': 18602, 'koike': 18603, '1995': 18604, 'applauded': 18605, 'ppekit': 18606, 'getmeds': 18607, 'presumed': 18608, 'virtuous': 18609, 'makati': 18610, 'bicycle': 18611, 'leel': 18612, 'casher': 18613, 'tokyolockdown': 18614, 'bazaar': 18615, 'boulevard': 18616, 'navigated': 18617, 'tightly': 18618, 'fascinated': 18619, 'pronged': 18620, 'abeg': 18621, 'prog': 18622, 'journorequest': 18623, 'underperformance': 18624, 'bookmaker': 18625, 'sape': 18626, 'nak': 18627, 'buat': 18628, 'duit': 18629, 'secara': 18630, 'boleh': 18631, 'lah': 18632, 'cuba': 18633, 'kitajagakita': 18634, 'rm5': 18635, 'pearled': 18636, 'barley': 18637, 'tostada': 18638, 'ps5': 18639, 'capgemini': 18640, 'ofc': 18641, 'shawsdoesntcare': 18642, 'lockdownsaextended': 18643, 'day16oflockdown': 18644, 'bucketlist': 18645, 'bosqf': 18646, 'submits': 18647, 'dusttricks': 18648, 'thelockdown': 18649, 'magictrick': 18650, 'hillside': 18651, 'ava': 18652, 'lousy': 18653, 'floral': 18654, 'madeinengland': 18655, 'moroccan': 18656, 'stoppanickbuying': 18657, 'lockdownsl': 18658, 'extremist': 18659, 'cvd': 18660, 'sweating': 18661, 'custys': 18662, 'mmt': 18663, 'committing': 18664, 'julia': 18665, 'makeadifference': 18666, 'pegnato': 18667, 'roofing': 18668, 'destin': 18669, 'dietary': 18670, 'foodallergies': 18671, 'subscribe': 18672, 'drawingoftheday': 18673, 'spinach': 18674, 'nac': 18675, 'nacsdaily': 18676, 'cstores': 18677, 'conveniencestores': 18678, 'cstore': 18679, 'averted': 18680, 'helen': 18681, 'wheres': 18682, 'dildo': 18683, 'buttplugs': 18684, 'forgottenheroes': 18685, 'cyclone': 18686, 'remapest': 18687, 'guaranteedservices': 18688, 'ulvcoldfogger': 18689, 'publichealthprotection': 18690, 'fogsprayer': 18691, 'killvirus': 18692, 'bestoffer': 18693, '24hours': 18694, 'jakartaquarantine': 18695, 'avacado': 18696, 'bestsupermarket': 18697, 'replenishment': 18698, 'interfered': 18699, 'creek': 18700, 'convid19': 18701, 'nostril': 18702, 'snugly': 18703, 'frontier': 18704, 'aerion': 18705, 'jens': 18706, 'spahn': 18707, 'deutschland': 18708, 'ist': 18709, 'vorbereitet': 18710, 'auf': 18711, 'wochen': 18712, 'ter': 18713, 'bbcbayuno': 18714, 'sirpatrickvallance': 18715, 'spec': 18716, 'spp': 18717, '24p': 18718, '163': 18719, '39p': 18720, 'porkmarketnews': 18721, 'pigprices': 18722, 'togo': 18723, '100daysofcode': 18724, 'undefined': 18725, 'admins': 18726, 'sendtp': 18727, '519weddings': 18728, 'nocorporatewelfare': 18729, 'sherwinwilliams': 18730, 'unconscious': 18731, 'subnormal': 18732, 'dountoothers': 18733, 'preplife': 18734, 'eldercare': 18735, 'babyboomers': 18736, 'realestateagent': 18737, 'wana': 18738, 'gettn': 18739, '2d': 18740, 'pvc': 18741, 'cgi': 18742, 'sprucing': 18743, 'gremlin': 18744, 'labyrinth': 18745, 'moonrise': 18746, 'rabun': 18747, 'cath': 18748, 'kidston': 18749, 'volunteersagainstcovid19': 18750, 'leonard': 18751, 'eastkilbride': 18752, 'controversy': 18753, 'mainstreamed': 18754, 'hungary': 18755, 'hu': 18756, 'solene': 18757, 'weaken': 18758, 'murderous': 18759, 'celebration': 18760, 'secrecy': 18761, 'tesbih': 18762, 'habbal': 18763, 'tango': 18764, 'apologising': 18765, 'spell': 18766, 'torontoshoeshow': 18767, 'retailtips': 18768, 'retailmanagement': 18769, 'expiration': 18770, 'datamustfall': 18771, 'expire': 18772, 'comporium': 18773, '2667': 18774, 'achilles': 18775, 'russher': 18776, 'einstein': 18777, 'futureofwork': 18778, 'cal': 18779, 'faraway': 18780, 'howe': 18781, 'marconi': 18782, 'ski': 18783, 'helm': 18784, 'satara': 18785, 'solapur': 18786, '273': 18787, 'maharashta': 18788, 'advisorymandi': 18789, 'clemen': 18790, 'suburbia': 18791, 'iptvnew': 18792, 'iptv2020': 18793, 'labeling': 18794, 'councillor': 18795, 'schooler': 18796, 'goodmania': 18797, 'jumper': 18798, 'protecttheworker': 18799, 'erdington': 18800, 'remembering': 18801, 'marney41': 18802, 'sitrep': 18803, 'rhodeisland': 18804, 'stopthemadness': 18805, 'dubbed': 18806, '1970': 18807, 'titlemax': 18808, 'locality': 18809, 'commonwealth': 18810, 'depreciated': 18811, 'draconian': 18812, 'congested': 18813, 'cornoabollocks': 18814, 'calmness': 18815, 'tannoy': 18816, '41': 18817, 'programmatic': 18818, 'amazingly': 18819, 'wishshopping': 18820, 'blasting': 18821, 'zayd': 18822, 'embarrased': 18823, 'atlantic': 18824, 'netde': 18825, 'wawa': 18826, 'disembarking': 18827, 'africanhistoryclass': 18828, 'taxidrivershow': 18829, 'taxijam': 18830, 'blackpot': 18831, 'evangelist3': 18832, 'tabata': 18833, 'zumba': 18834, 'mengeratkan': 18835, 'hubungan': 18836, 'silaturahim': 18837, 'inhouse': 18838, 'compromising': 18839, 'stayaway6feet': 18840, 'providence': 18841, 'rhode': 18842, 'isolationessentials': 18843, 'vikramch': 18844, 'qr': 18845, 'shielded': 18846, '22341': 18847, 'nationalised': 18848, 'wurst': 18849, 'humous': 18850, 'taramasalata': 18851, 'signalling': 18852, 'attending': 18853, 'sobeys': 18854, '879': 18855, '057': 18856, '034': 18857, 'chapel': 18858, 'worn': 18859, 'stayinthehoose': 18860, 'tescodelivery': 18861, 'marksandspencer': 18862, 'onlinelearning': 18863, 'droz': 18864, 'amzn': 18865, 'prelim': 18866, 'domain': 18867, 'melb': 18868, 'ausecon': 18869, 'assumption': 18870, 'gleaner': 18871, '3175932400': 18872, '52014': 18873, 'oes': 18874, 'hudsonvalley': 18875, 'taxtherich': 18876, 'icmktg': 18877, 'utoledomarketing': 18878, 'uakronmarketing': 18879, 'wvu389': 18880, 'nky205': 18881, 'uabmktg': 18882, 'lwu482strat': 18883, 'illustrate': 18884, 'nager': 18885, 'builtwithmapbox': 18886, 'nycstrong': 18887, 'killeya': 18888, 'receives': 18889, 'healthcanada': 18890, 'potstocks': 18891, 'reimbursed': 18892, 'deductible': 18893, 'usaa': 18894, 'curing': 18895, 'stayathomechllenge': 18896, 'adolescent': 18897, 'whippet': 18898, 'souring': 18899, 'canister': 18900, 'onlineclass': 18901, 'shuffle': 18902, 'wilder': 18903, 'birthdaygirl': 18904, 'sportsdirect': 18905, 'bald': 18906, 'hairbrush': 18907, 'dawie': 18908, 'eldersburg': 18909, 'demonstration': 18910, 'holesinsky': 18911, 'buhl': 18912, 'zionsbanker': 18913, 'idahome': 18914, 'appliance': 18915, 'relaxes': 18916, 'sensex': 18917, 'rbigovernor': 18918, 'lockdowndown': 18919, 'samurthi': 18920, '94754': 18921, 'douglas': 18922, 'channeling': 18923, 'ohgod': 18924, 'prevail': 18925, 'unknowing': 18926, 'detective': 18927, 'brixton': 18928, '428': 18929, 'knell': 18930, 'moderna': 18931, 'endoftimes': 18932, 'drap': 18933, 'mocking': 18934, 'runner': 18935, 'amazes': 18936, 'ponytail': 18937, 'bramalea': 18938, 'granville': 18939, 'glucose': 18940, 'isp': 18941, 'thehackersnews': 18942, 'revision': 18943, 'zinc': 18944, 'aluminium': 18945, 'fy21': 18946, 'bore': 18947, 'lion': 18948, 'cornflakes': 18949, 'contentworks': 18950, 'essentialfoodbox': 18951, 'foodessentialbox': 18952, '8m': 18953, '103': 18954, 'wastereduction': 18955, 'ecoconscious': 18956, 'ecofriendly': 18957, 'gelii': 18958, 'citigroup': 18959, 'pessimistic': 18960, 'turi': 18961, 'ryder': 18962, 'shesaidwhat': 18963, 'rogan': 18964, 'reacts': 18965, 'firstworld': 18966, 'firstworldpandemicproblems': 18967, 'joeroganpodcast': 18968, 'selftaught': 18969, 'timebomb': 18970, 'swath': 18971, 'afterward': 18972, 'deity': 18973, 'receiver': 18974, '2metresapart': 18975, 'factsnotfear': 18976, 'kitili': 18977, 'shag': 18978, 'impossibility': 18979, 'ghetto': 18980, 'kawangware': 18981, 'plug': 18982, 'winwin': 18983, 'therichcantlose': 18984, 'lmaoo': 18985, 'tryna': 18986, 'sturdy': 18987, 'workspace': 18988, 'solidaritywithhospitality': 18989, 'hospitalitystrong': 18990, 'katto': 18991, 'jeopardy': 18992, 'matatu': 18993, 'gok': 18994, 'messed': 18995, 'rescheduled': 18996, 'overbooked': 18997, 'yeh': 18998, 'washhand': 18999, 'bonnbread': 19000, 'dollargeneral': 19001, 'itsupport': 19002, '2bn': 19003, 'trim': 19004, 'outlay': 19005, 'theeconomist': 19006, 'g20saudiarabia': 19007, 'oilwar': 19008, 'fighter': 19009, 'peple': 19010, 'monitored': 19011, 'igetit': 19012, 'multiplesclerosis': 19013, 'chronicillness': 19014, 'invercargill': 19015, 'hectic': 19016, 'hqsn': 19017, 'bidder': 19018, 'cheeseheads': 19019, 'downtownomaha': 19020, 'paperless': 19021, 'rothschild': 19022, 'heated': 19023, 'hinder': 19024, 'trendy': 19025, 'sephora': 19026, 'smuggling': 19027, 'growthop': 19028, '700k': 19029, 'aitkin': 19030, 'sheriff': 19031, 'vomming': 19032, 'cosatu': 19033, '014': 19034, 'summed': 19035, 'ludicrous': 19036, 'rallying': 19037, 'zorb': 19038, 'sinkie': 19039, 'pwn': 19040, 'ijs': 19041, 'boostyourimmunesystem': 19042, 'nutraburst': 19043, 'recognizing': 19044, 'bitching': 19045, 'agressive': 19046, 'allyouneedislove': 19047, 'sometime': 19048, 'cheep': 19049, 'boi': 19050, 'famillies': 19051, 'standtogether': 19052, 'spiked': 19053, '198': 19054, '817': 19055, 'croaking': 19056, 'melting': 19057, 'acrylic': 19058, 'etsyshop': 19059, 'keyworkerheroes': 19060, 'helpnhs': 19061, 'inhabitant': 19062, 'couponers': 19063, 'vibing': 19064, 'cracking': 19065, 'sleaze': 19066, 'upcharging': 19067, 'infested': 19068, 'unl': 19069, 'nuforne': 19070, 'nubiz': 19071, 'thanksgiving': 19072, 'shaped': 19073, 'kplccustomercare': 19074, 'moreover': 19075, 'hydrogeneration': 19076, 'dam': 19077, 'incriminated': 19078, 'scapegoat': 19079, 'escaped': 19080, 'miraculously': 19081, 'emerges': 19082, 'clark': 19083, 'orchestrated': 19084, 'lnk': 19085, 'pummels': 19086, 'saket': 19087, 'fiirreedduh': 19088, 'squirt': 19089, 'humberfloob': 19090, 'catinthehat': 19091, 'mrhumberfloob': 19092, 'sanitizepeople': 19093, 'expiry': 19094, 'trumpy': 19095, 'neglect': 19096, 'lodge': 19097, 'newsupdate': 19098, 'flash': 19099, 'unitedagainstdementia': 19100, 'cont': 19101, 'onsite': 19102, 'cookathome': 19103, 'deceiving': 19104, 'denies': 19105, 'gag': 19106, 'shopsmall': 19107, 'beginnerin': 19108, 'cov2': 19109, 'tract': 19110, 'shiva': 19111, 'checker': 19112, 'stillneedbeer': 19113, 'pharmacynsupermarket': 19114, '2348107219389': 19115, 'warren': 19116, 'buffett': 19117, 'directorate': 19118, 'dhofar': 19119, 'governorate': 19120, 'cracked': 19121, 'tailoring': 19122, 'residue': 19123, 'bz': 19124, 'rupture': 19125, 'nunavut': 19126, 'som': 19127, 'rec': 19128, 'conscientious': 19129, 'endanger': 19130, 'authorize': 19131, 'affluent': 19132, 'bleakest': 19133, 'workingfromthefrontlines': 19134, 'wff': 19135, 'distracts': 19136, 'depicted': 19137, 'lauded': 19138, 'savior': 19139, 'lawyer': 19140, 'delive': 19141, 'dancing': 19142, 'greeter': 19143, '435': 19144, '7203': 19145, 'diversified': 19146, 'corporategreed': 19147, 'essentialservices': 19148, 'servic': 19149, '1990': 19150, 'favoured': 19151, 'lfc': 19152, 'youngster': 19153, 'fuckmillenials': 19154, 'helptheelderly': 19155, 'helpthevulnerable': 19156, 'subscribed': 19157, 'liarinchief': 19158, 'lurch': 19159, 'occurrence': 19160, 'elisabeth': 19161, 'selk': 19162, 'underperform': 19163, 'ratio': 19164, 'normalized': 19165, 'sheffield': 19166, 'meadowhall': 19167, 'indifference': 19168, 'pcc': 19169, 'scottoiletpaper': 19170, 'megaroll': 19171, 'demoting': 19172, 'misinfo': 19173, 'telepathy': 19174, 'sanitizeeverything': 19175, 'stayindoorsclub': 19176, 'medrabbits': 19177, '11am': 19178, 'walmartgroceries': 19179, 'martial': 19180, 'defra': 19181, 'georgeeustice': 19182, 'sobering': 19183, 'indigent': 19184, 'ogun': 19185, 'regularize': 19186, 'bekindtogether': 19187, 'grabber': 19188, 'vodafone': 19189, 'retired': 19190, 'seaman': 19191, 'fido': 19192, 'dogsoftwitter': 19193, 'cheek': 19194, 'hyphenated': 19195, 'angst': 19196, 'workathomemomcoletta': 19197, 'wahmc': 19198, 'momlife': 19199, 'operanewshub': 19200, 'stillworking': 19201, 'retailworker': 19202, 'thankyougoselongway': 19203, 'bombaykitchen': 19204, 'allinthistogether': 19205, 'prevails': 19206, 'koebler': 19207, '3mouth': 19208, 'northwest': 19209, 'uco': 19210, 'thinning': 19211, 'congressman': 19212, 'rew': 19213, 'allisonsflour': 19214, 'yeast': 19215, 'mercenary': 19216, 'worldnews': 19217, 'spca': 19218, 'uni': 19219, 'milo': 19220, 'newsagent': 19221, 'panickbuyings': 19222, 'mcdonald': 19223, 'mcrib': 19224, 'hubai': 19225, 'melt': 19226, 'amendment': 19227, 'selfiestick': 19228, 'rubberglove': 19229, 'socialslapping': 19230, 'cerb': 19231, 'coronachella': 19232, 'papajohns': 19233, 'vocation': 19234, 'scc': 19235, 'emphasizes': 19236, 'authenticity': 19237, 'anticounterfeit': 19238, 'mantra': 19239, 'cadiflus': 19240, 'influenzavaccine': 19241, 'preventflu': 19242, 'cadila': 19243, 'vlp': 19244, 'fightflunow': 19245, 'pushkargupta': 19246, 'recieved': 19247, 'notley': 19248, 'metlife': 19249, 'sanatiser': 19250, 'becognizant': 19251, 'tottenham': 19252, 'arsenal': 19253, 'tottenhamhotspur': 19254, 'gooners': 19255, 'todd': 19256, 'hubbs': 19257, 'eugene': 19258, 'consumerwarning': 19259, '500m': 19260, '8b': 19261, 'spared': 19262, 'multimedia': 19263, 'adriana': 19264, 'heldiz': 19265, 'documented': 19266, 'lassens': 19267, 'ncbeer': 19268, 'gf': 19269, 'randalls': 19270, 'interim': 19271, 'patonthebackforfeeders': 19272, 'stylist': 19273, 'hollering': 19274, 'warby': 19275, 'parker': 19276, 'biway': 19277, 'eaton': 19278, 'zellers': 19279, 'engaged': 19280, 'rap': 19281, 'championship': 19282, 'rerun': 19283, 'educational': 19284, 'programming': 19285, 'rohatgi': 19286, 'bunnings': 19287, 'seedling': 19288, 'helpfight': 19289, 'fmi': 19290, 'masscrowd': 19291, 'hadenoughofcustomers': 19292, 'securityguard': 19293, '13hourdays': 19294, 'bum': 19295, 'denier': 19296, 'electronic': 19297, 'tithe': 19298, 'forebodes': 19299, 'feedstock': 19300, '40kr': 19301, '100kr': 19302, 'imported': 19303, 'ngn': 19304, '50kg': 19305, '466': 19306, 'pmt': 19307, 'twitchmusic': 19308, 'masnou': 19309, 'albert': 19310, 'gea': 19311, 'lovekeyworkers': 19312, 'creditscore': 19313, 'undertaken': 19314, 'brightfield': 19315, 'indicated': 19316, 'yoda': 19317, 'r2': 19318, 'r2d2': 19319, 'intrusive': 19320, 'fabricated2': 19321, 'credential': 19322, 'pii': 19323, 'bjams2am': 19324, 'belindaus': 19325, 'hb415': 19326, 'notoiletpaper': 19327, 'nohandshakes': 19328, 'nohandsanitizer': 19329, 'modus': 19330, 'empower': 19331, 'avalanche': 19332, 'biogas': 19333, 'sohnaasim': 19334, 'gocoronacoronago': 19335, 'dhinchakpooja': 19336, 'indiapaysafe': 19337, 'wames': 19338, 'cymraeg': 19339, 'usability': 19340, 'unsociable': 19341, 'yeehaa': 19342, 'sustainably': 19343, 'wsfcu': 19344, 'financialeducation': 19345, 'composition': 19346, 'dynata': 19347, 'togetherapart': 19348, '677': 19349, 'mbtu': 19350, 'neurotypicals': 19351, 'coroma': 19352, 'imbecile': 19353, 'batflu': 19354, 'diabeetus': 19355, 'wilfordbrimley': 19356, 'econo': 19357, 'confirman': 19358, 'empleado': 19359, 'administrativo': 19360, 'centro': 19361, 'distribuci': 19362, 'entrega': 19363, 'cadena': 19364, 'isla': 19365, 'dio': 19366, 'positivo': 19367, 'llevaba': 19368, 'trabajando': 19369, 'forma': 19370, 'remota': 19371, 'publishing': 19372, 'yogaforcorona': 19373, 'crea': 19374, 'hydroponic': 19375, 'choke': 19376, 'onlyessentials': 19377, 'annually': 19378, 'calmly': 19379, 'dexter': 19380, 'thillien': 19381, 'transformative': 19382, 'netelixir': 19383, 'subsequently': 19384, 'vod': 19385, 'multiroom': 19386, 'sorted': 19387, 'smarttv': 19388, 'jeopardize': 19389, 'willingness': 19390, 'gatto': 19391, 'badboy': 19392, 'impracticaljokers': 19393, 'cocaine': 19394, 'pok': 19395, 'pokemonswordshield': 19396, 'petco': 19397, 'referred': 19398, 'goerge': 19399, 'troy': 19400, 'matthew': 19401, 'overpay': 19402, 'responsiveness': 19403, 'introverted': 19404, 'boring': 19405, 'empath': 19406, 'positivevibes': 19407, 'estrange': 19408, 'soapandestrange': 19409, 'washtocare': 19410, 'socialdistancingworksstaysafe': 19411, 'astronomically': 19412, 'infarm': 19413, 'evita': 19414, 'agtech': 19415, 'agritech': 19416, 'f3tech': 19417, 'parksville': 19418, 'arrowsmith': 19419, 'givinghopetoday': 19420, 'dtrump': 19421, 'sufferer': 19422, 'foodwars': 19423, 'mwananchi': 19424, '3h': 19425, 'careless': 19426, 'grump': 19427, 'widowed': 19428, 'jaime': 19429, 'harrison': 19430, 'rearrange': 19431, 'kask': 19432, 'bs3': 19433, 'whiskeybusiness': 19434, 'haram': 19435, 'uneducatedscrotes': 19436, 'farmersareessential': 19437, 'blackandwhite': 19438, 'iphoneography': 19439, 'protectandsurvive': 19440, 'blackandwhitephotography': 19441, 'nbcdconditionzulu': 19442, 'rerack': 19443, '2025': 19444, 'jawnz': 19445, 'knob': 19446, 'comeuppance': 19447, 'retirementlife': 19448, 'ageingwell': 19449, 'grumpyoldman': 19450, 'negligence': 19451, 'spurious': 19452, 'stitch': 19453, 'jun': 19454, 'celebrates': 19455, 'departing': 19456, 'antidote': 19457, 'revolutionary': 19458, 'garcetti': 19459, 'fucoronavirus': 19460, 'clogging': 19461, 'exempted': 19462, 'sorrynotsorry': 19463, 'anxietytherapy': 19464, 'mpe': 19465, 'fwp': 19466, 'jillian': 19467, 'macbryde': 19468, 'malvern': 19469, 'peoplearedumb': 19470, 'tadcaster': 19471, 'fivefold': 19472, 'irctc': 19473, 'platformticketprice': 19474, 'travelnews': 19475, 'travelobiz': 19476, 'applicable': 19477, 'idsa': 19478, 'misconception': 19479, 'smbs': 19480, 'marketingtools': 19481, 'admire': 19482, 'decisiveness': 19483, 'wholesaled': 19484, 'tone': 19485, 'poirier': 19486, 'unh': 19487, 'homelessness': 19488, 'chapple': 19489, 'occassions': 19490, 'yipes': 19491, 'innocuous': 19492, 'burying': 19493, 'graf': 19494, 'cremating': 19495, 'marssai': 19496, 'translated': 19497, 'brisk': 19498, 'middleeast': 19499, 'verticalfarming': 19500, 'kung': 19501, 'wala': 19502, 'naman': 19503, 'kayong': 19504, 'bilhin': 19505, 'labas': 19506, 'papa': 19507, 'carrefour': 19508, 'typical': 19509, 'anthrax': 19510, 'bayer': 19511, 'hhs': 19512, 'airplane': 19513, 'adopts': 19514, 'stopairingtrump': 19515, 'ramen': 19516, 'boyardee': 19517, 'thelordprovides': 19518, 'taiwanese': 19519, 'exportation': 19520, 'formation': 19521, 'owcovid19': 19522, 'exclude': 19523, 'flattenthe': 19524, 'fossilfuel': 19525, 'beforehand': 19526, 'stophoardingtoiletpaper': 19527, 'youaretheproblem': 19528, 'shamibrahim': 19529, 'habe': 19530, '2014': 19531, 'lifeboat': 19532, 'videoeditor': 19533, 'videoediting': 19534, 'bookboost': 19535, 'iartg': 19536, 'mybookagents': 19537, 'itc': 19538, 'preston': 19539, 'itvnews': 19540, 'relate': 19541, 'washyourself': 19542, 'costner': 19543, 'thepostman': 19544, 'kevincostner': 19545, 'retailmatters': 19546, 'apocaliptic': 19547, 'bob': 19548, 'habitat': 19549, 'wheresthetoiletpaper': 19550, 'countered': 19551, 'carrie': 19552, 'underwood': 19553, 'newworldorder': 19554, 'caseysthoughts': 19555, 'homestead': 19556, 'eastereggs': 19557, 'sparsely': 19558, 'trail': 19559, 'overshoot': 19560, 'delistings': 19561, '148': 19562, 'realestatenews': 19563, 'expedition': 19564, 'useyourkokote': 19565, 'undeniably': 19566, 'kpmg': 19567, 'schmeling': 19568, 'kashish': 19569, 'fol': 19570, 'essentias': 19571, 'abrupt': 19572, 'textile': 19573, 'shoemaking': 19574, 'mindless': 19575, 'pursued': 19576, 'shopbarefoot': 19577, 'gonoles': 19578, 'fsu': 19579, 'floridastateuniversity': 19580, 'seminole': 19581, 'fleece': 19582, 'masking': 19583, 'makeshift': 19584, 'mmnewstv': 19585, 'supportnurses': 19586, 'kyliejenner': 19587, 'lucas': 19588, 'fuess': 19589, 'highground': 19590, 'housekeeper': 19591, 'reup': 19592, 'fvcking': 19593, 'excluding': 19594, 'dallasnativeteam': 19595, 'dpmre': 19596, 'dallasrealestate': 19597, 'peoplefirst': 19598, 'elevatingrealestate': 19599, 'lastingrelationships': 19600, 'dallasnativelife': 19601, 'antivaxxers': 19602, 'maharashtrasainik': 19603, 'hallandale': 19604, 'socialdista': 19605, 'uncrustables': 19606, 'coronatime': 19607, 'sova': 19608, 'nsa': 19609, 'cryptologist': 19610, 'mathematician': 19611, 'onlineshoppingapps': 19612, 'lockdownshoppingapps': 19613, 'sip': 19614, 'pulp': 19615, 'barmy': 19616, 'chilloutforfucksake': 19617, 'equation': 19618, 'comeonboris': 19619, 'fml': 19620, 'foodproduction': 19621, 'collaborated': 19622, 'rj': 19623, 'deriving': 19624, 'highered': 19625, 'readjust': 19626, 'ftse100': 19627, 'singleton': 19628, 'wooden': 19629, 'shopnaw': 19630, 'safeshop': 19631, 'mikayla': 19632, 'torwards': 19633, 'replaces': 19634, '360': 19635, 'hortons': 19636, 'hybrid': 19637, 'underweighting': 19638, 'overweighting': 19639, 'lombardy': 19640, 'hesitated': 19641, 'czkrapgyfg': 19642, 'alrea': 19643, 'outoftoiletpaper': 19644, 'wellcrap': 19645, 'ohshittheregoestheplanet': 19646, 'suitcase': 19647, 'moco': 19648, 'algorithmic': 19649, 'systemically': 19650, 'streamed': 19651, 'sheep365': 19652, 'farminguk': 19653, 'nationalistic': 19654, 'tearing': 19655, 'jokingly': 19656, 'yelling': 19657, 'frazis': 19658, 'getyourtribble': 19659, 'hatecrime': 19660, 'dwnews': 19661, 'grieving': 19662, 'haulier': 19663, 'quarentined': 19664, 'beautybrands': 19665, 'rethinkretail': 19666, 'fu': 19667, 'flowy': 19668, 'swamp': 19669, 'velocity': 19670, 'mural': 19671, 'chalk': 19672, '2019ncov': 19673, 'washingtonheights': 19674, 'nstnation': 19675, 'jalan': 19676, 'tuanku': 19677, 'rahman': 19678, 'masjidindia': 19679, 'underwent': 19680, 'jalantar': 19681, 'disheartening': 19682, 'podesta': 19683, 'smithfield': 19684, 'dieseas': 19685, 'francis': 19686, 'purposewash': 19687, 'bluff': 19688, 'workersoftheworldunite': 19689, 'za': 19690, '304': 19691, 'distressed': 19692, 'sttaconsulting': 19693, 'waitlist': 19694, 'sd13': 19695, 'district13': 19696, '10kg': 19697, 'tamma': 19698, 'shelterathome': 19699, 'prayforourhealthcareworkers': 19700, 'indianexpress': 19701, 'enzymatic': 19702, 'biosensors': 19703, 'restarted': 19704, 'recycled': 19705, 'squeezing': 19706, 'flatearth': 19707, 'vids': 19708, 'fentanyl': 19709, 'wuhancoronavirusoutbreak': 19710, 'microbiologist': 19711, 'weathering': 19712, 'alosra': 19713, 'sar': 19714, 'najibi': 19715, 'perplexing': 19716, 'feasible': 19717, 'technological': 19718, 'blocker': 19719, 'topper': 19720, 'resolution': 19721, 'circulation': 19722, 'fascination': 19723, 'ingenuity': 19724, 'illusory': 19725, 'wpost': 19726, 'reprinted': 19727, 'retur': 19728, 'geometry': 19729, 'exhaust': 19730, 'esa': 19731, 'pip': 19732, 'justin': 19733, 'wedged': 19734, 'giggle': 19735, 'reimburse': 19736, 'reshaped': 19737, 'reinforced': 19738, 'j3gxbg5kj1': 19739, 'hdhpqoqsiu': 19740, 'cooronavirus': 19741, 'generator': 19742, 'duly': 19743, 'tylenol': 19744, 'horizon': 19745, 'bradco': 19746, 'refrigeration': 19747, 'imee': 19748, 'marcos': 19749, 'hasten': 19750, 'hairstore': 19751, 'togetherky': 19752, 'downtownrochestermn': 19753, 'frequenting': 19754, 'rochester': 19755, 'samoa': 19756, 'frankie': 19757, 'designing': 19758, 'anjalilai': 19759, 'pandemicex': 19760, 'roadshow': 19761, 'instructional': 19762, 'refilling': 19763, 'generously': 19764, 'stoppanicbuyingsouthafrica': 19765, 'yu': 19766, 'wellnesswednesday': 19767, 'quarantinezone': 19768, '24hrs': 19769, '500ml': 19770, '02268443322': 19771, '9186958': 19772, '86958': 19773, 'doldrums': 19774, 'frisco': 19775, 'markethive': 19776, 'ctsi': 19777, 'appalled': 19778, '08082231133': 19779, 'lothians': 19780, 'sociology': 19781, 'inexplicable': 19782, 'reprehen': 19783, 'bglutenfree': 19784, 'simplygf': 19785, 'gfcommunity': 19786, 'gemcityfinefoods': 19787, 'jalanalanakanakakak': 19788, 'newreality': 19789, 'humpdaayy': 19790, 'gervasi': 19791, 'panda': 19792, 'unclerich': 19793, 'sepan': 19794, 'gatewaycityradio': 19795, 'laredoaf': 19796, 'fromthebordertotheworld': 19797, 'washyohands': 19798, 'washyoass': 19799, 'tpforthebunghole': 19800, 'garland': 19801, 'adfarm': 19802, 'nourish': 19803, 'annmcarthur': 19804, 'widji': 19805, 'widji20': 19806, 'itsmycamp': 19807, 'resilientyouth': 19808, 'comprises': 19809, 'cegeps': 19810, 'warfare': 19811, 'carnal': 19812, 'mighty': 19813, 'actsofkindness': 19814, 'unsurprising': 19815, 'seth': 19816, 'mendelson': 19817, 'storebrands': 19818, 'diversion': 19819, 'wager': 19820, 'compact': 19821, 'tater': 19822, 'tot': 19823, 'kafayat': 19824, 'shafau': 19825, 'ameh': 19826, 'edun': 19827, 'lingards': 19828, 'colruyt': 19829, 'marriage': 19830, 'wilm': 19831, 'installers': 19832, 'lulumallfujairah': 19833, 'electricitymarkets': 19834, 'renewableenergy': 19835, 'ttf': 19836, 'vaporisation': 19837, 'craigslist': 19838, 'dean': 19839, 'amler': 19840, 'bon': 19841, 'apetit': 19842, 'reconvene': 19843, 'ubi': 19844, 'optimal': 19845, 'washyourbutt': 19846, 'lynette': 19847, 'holmes': 19848, 'financiallaws': 19849, 'finnish': 19850, 'finn': 19851, 'jealous': 19852, 'whacked': 19853, 'shovel': 19854, 'corpse': 19855, 'oblivion': 19856, 'skinnywine': 19857, 'skinnybooze': 19858, 'economiclaws': 19859, 'chestnut': 19860, 'keepitonthehill': 19861, 'chestnuthillpa': 19862, 'eastlondon': 19863, 'calgaryalberta': 19864, 'famers': 19865, 'diamond': 19866, 'medicaid': 19867, '432': 19868, '9257': 19869, 'shine': 19870, 'exhoberent': 19871, 'cargill': 19872, 'hazleton': 19873, 'riodejaneiro': 19874, 'brasil': 19875, 'chinaisasshoe': 19876, 'ripponden': 19877, 'levity': 19878, 'jest': 19879, 'palmer': 19880, 'nailed': 19881, 'rooivleis': 19882, 'quadrupled': 19883, 'yen': 19884, 'straightforward': 19885, 'angle': 19886, 'feedingkindness': 19887, 'understocked': 19888, '275m': 19889, 'syndrome': 19890, 'haller': 19891, 'motivation': 19892, 'sunshinecoastbc': 19893, 'knockitoff': 19894, 'ann': 19895, 'hui': 19896, 'kathryn': 19897, 'blaze': 19898, 'baum': 19899, 'symbolic': 19900, 'hove': 19901, 'devoid': 19902, 'twix': 19903, 'livingwage': 19904, 'trumpers': 19905, 'struggleisreal': 19906, 'dsnap': 19907, 'farce': 19908, 'obtuse': 19909, 'quarantineonlineparty': 19910, 'calderaarriba': 19911, 'usps': 19912, 'reconstruction': 19913, 'murdering': 19914, 'trooper': 19915, 'sync': 19916, 'wwd': 19917, 'eyeglass': 19918, 'abyss': 19919, 'refers': 19920, 'probable': 19921, 'mov': 19922, 'simmons': 19923, 'certainty': 19924, 'hmart': 19925, 'stephanie': 19926, 'meier': 19927, 'pacheco': 19928, 'housingcrisis': 19929, 'bersesak': 19930, 'kat': 19931, 'hancur': 19932, 'hajj': 19933, 'umrah': 19934, 'tera': 19935, 'kya': 19936, 'hoga': 19937, 'kaalia': 19938, 'unreasonable': 19939, 'edged': 19940, 'littlehelp': 19941, 'vent': 19942, 'sixfeetaway': 19943, 'wegotthiswa': 19944, 'this2020': 19945, 'lifeinthetimeofcorona': 19946, 'transfering': 19947, 'jessyelevators': 19948, 'tescoklong4': 19949, 'schindlerelevator': 19950, 'bureaucratic': 19951, 'paperwork': 19952, 'propertynews': 19953, 'canteen': 19954, 'scho': 19955, 'vit': 19956, 'enriched': 19957, 'guin': 19958, 'quantify': 19959, 'identifying': 19960, 'gwinnett': 19961, 'replenishes': 19962, 'deliverwho': 19963, 'srvc': 19964, 'saa': 19965, 'gauteng': 19966, 'amharic': 19967, 'vietnamese': 19968, 'notable': 19969, 'newmr': 19970, 'upsers': 19971, 'santizing': 19972, 'mack': 19973, 'cik': 19974, 'anne': 19975, 'akka': 19976, 'stan': 19977, 'delusional': 19978, 'invoking': 19979, 'aimsinternational': 19980, 'globalconsumerpractice': 19981, 'findandgrowleaders': 19982, 'vanished': 19983, 'cnb': 19984, 'bokakhat': 19985, 'quilted': 19986, 'ecb': 19987, 'azhar': 19988, 'markup': 19989, 'deffer': 19990, 'sbp': 19991, 'perssuer': 19992, 'alrighty': 19993, 'richardson': 19994, '6yrs': 19995, 'onevoice': 19996, 'ageconcern': 19997, 'dwpcrimes': 19998, 'magmt': 19999, 'siete': 20000, 'degli': 20001, 'animali': 20002, 'corvid19fr': 20003, 'retweeted': 20004, 'napa': 20005, 'bubl': 20006, 'mek': 20007, 'tek': 20008, 'notsponsored': 20009, 'bx': 20010, 'thisiswhy': 20011, 'noonedoesnothing': 20012, 'constructed': 20013, 'bandanna': 20014, 'convo': 20015, 'stateswoman': 20016, 'bulandshahr': 20017, 'buried': 20018, 'keepmoving': 20019, 'breakcorona': 20020, 'jaunt': 20021, 'deviated': 20022, 'trackie': 20023, 'dacks': 20024, 'fleecy': 20025, 'hoodies': 20026, 'crocheted': 20027, 'rug': 20028, 'investigates': 20029, 'excercise': 20030, 'lautoka': 20031, 'greenford': 20032, 'spreadtheword': 20033, 'parkmead': 20034, 'pmg': 20035, 'uckfield': 20036, 'coronaviru': 20037, 'abyssals': 20038, 'thingsiwontapologizefor': 20039, 'armesdeutschland': 20040, 'thoug': 20041, 'quedateentucasa': 20042, 'escena': 20043, 'repite': 20044, 'alrededor': 20045, 'mundo': 20046, 'estados': 20047, 'unidos': 20048, 'francia': 20049, 'espa': 20050, 'dejado': 20051, 'vac': 20052, 'estantes': 20053, 'destinados': 20054, 'papel': 20055, 'higi': 20056, 'nico': 20057, 'medio': 20058, 'por': 20059, 'nuevo': 20060, 'healthday': 20061, 'galore': 20062, 'fulfil': 20063, 'polythene': 20064, 'reiterating': 20065, 'fjunited': 20066, 'geoff': 20067, 'toiletpapier': 20068, 'odishafightscorona': 20069, 'escapee': 20070, 'stain': 20071, 'coveryourmouth': 20072, 'mouthwash': 20073, 'closeup': 20074, '114': 20075, 'manuka': 20076, 'westbury': 20077, 'trym': 20078, 'ilford': 20079, 'doncaster': 20080, 'mccolls': 20081, 'berth': 20082, 'incorrectly': 20083, 'powderedface': 20084, 'stuckathome': 20085, 'artistinresidence': 20086, 'interiordesignideas': 20087, 'interiordesign': 20088, 'tweeps': 20089, 'vestibule': 20090, 'usdot': 20091, 'olderadults': 20092, 'emojis': 20093, 'fringing': 20094, 'carparks': 20095, 'waiter': 20096, 'mettitilamascherinacazzo': 20097, '892': 20098, 'foodhoaders': 20099, 'coronainnyc': 20100, 'coronainny': 20101, 'regulatethe': 20102, '50ml': 20103, 'r100': 20104, 'humanrightsday': 20105, 'savelivesstayhome': 20106, 'realising': 20107, 'ccpa': 20108, 'clarity': 20109, '462001': 20110, 'insulin': 20111, 'lilly': 20112, 'killerkyl88': 20113, 'healthylivinginsideandout': 20114, 'ravioli': 20115, 'cancelthat': 20116, 'coa': 20117, 'crim': 20118, 'lawyerly': 20119, 'uncovered': 20120, 'reputationmanagement': 20121, 'reptrak': 20122, 'groovy': 20123, 'whoopi': 20124, 'goldberg': 20125, 'thali': 20126, 'dedicating': 20127, 'debated': 20128, 'shithouses': 20129, 'covidma': 20130, 'scavenge': 20131, 'benfeldman': 20132, 'smartkid': 20133, 'superjewflair': 20134, 'flair': 20135, 'bartender': 20136, 'liqour': 20137, 'rockstar': 20138, 'therainking': 20139, 'necessitate': 20140, 'chickpea': 20141, 'foo': 20142, 'alexandria': 20143, 'microwaveable': 20144, 'um': 20145, 'babe': 20146, 'hotdog': 20147, 'bmovie': 20148, 'disastermovie': 20149, 'moonpies': 20150, 'emptiest': 20151, '30p': 20152, 'albanian': 20153, 'albania': 20154, 'tirana': 20155, 'attracting': 20156, 'artnaturals': 20157, '236ml': 20158, 'jojoba': 20159, 'alovera': 20160, 'fashionisland': 20161, 'thepromenade': 20162, 'bigc': 20163, 'gourmetmarket': 20164, 'asphalt9': 20165, 'asphalt9legends': 20166, 'rimacctwo': 20167, 'koronawirus': 20168, 'kwaichungmysupport': 20169, 'usconsumers': 20170, 'consumersurvey': 20171, 'voiceofthecustomer': 20172, 'singaporean': 20173, 'photographed': 20174, 'welcomehome': 20175, 'longday': 20176, '519': 20177, '738': 20178, '2241': 20179, 'bowlinggreen': 20180, '5x': 20181, 'offense': 20182, 'codice': 20183, 'penale': 20184, '501bis': 20185, 'moderated': 20186, 'alchohol': 20187, 'irs': 20188, 'agsiw': 20189, 'nasser': 20190, 'saidi': 20191, 'mogielnicki': 20192, 'panelist': 20193, 'myopinion': 20194, '149': 20195, 'costa': 20196, 'luminosa': 20197, 'marseille': 20198, 'disembark': 20199, 'barred': 20200, 'docking': 20201, 'costaluminosa': 20202, 'instantly': 20203, 'devalued': 20204, 'manure': 20205, 'pit': 20206, 'sucka': 20207, 'wishlist': 20208, 'pregga': 20209, 'gsa': 20210, 'governmentcont': 20211, 'geezus': 20212, 'cocooning': 20213, 'charles': 20214, 'secondhand': 20215, 'pawn': 20216, 'fiberglass': 20217, 'inground': 20218, 'snyder': 20219, '013': 20220, 'wors': 20221, 'jo': 20222, 'isolat': 20223, 'grimsby': 20224, 'publicpanic': 20225, 'socialsafety': 20226, 'luckyducker': 20227, 'silenthill2': 20228, 'silenthill': 20229, 'basf': 20230, 'belongatbasf': 20231, 'mousemat': 20232, 'rallied': 20233, 'alongside': 20234, '1650': 20235, 'hail': 20236, 'socoialism': 20237, 'ramgarh': 20238, 'kris': 20239, 'hamer': 20240, 'xander': 20241, 'friedl': 20242, 'nder': 20243, 'rodewayinnla': 20244, 'trumpadministration': 20245, 'trumpslump': 20246, 'goc': 20247, 'borro': 20248, 'chch': 20249, 'bomber': 20250, 'sunnyside': 20251, 'greenpoint': 20252, '1104': 20253, '718': 20254, '752': 20255, '1931': 20256, 'sustenance': 20257, 'incomed': 20258, 'lastmanstanding': 20259, 'enfield': 20260, '143': 20261, 'yarra': 20262, 'dinsdale': 20263, 'battlefield': 20264, 'genocide': 20265, 'atrocity': 20266, 'aerial': 20267, 'manna': 20268, 'quant': 20269, 'quake': 20270, 'knowwhentowearamask': 20271, 'wearecput': 20272, 'wearecputmedia': 20273, 'bb20': 20274, 'tbt': 20275, 'hgtv': 20276, 'milaniplumbing': 20277, 'plumbing': 20278, 'airconditioning': 20279, 'tonite': 20280, 'eventful': 20281, 'unicornday': 20282, 'reasi': 20283, 'fcs': 20284, 'whatsapp70067': 20285, '47305': 20286, '94192': 20287, '45670': 20288, 'adcapdrsi': 20289, 'ww': 20290, 'drafted': 20291, 'kagame': 20292, 'jameson': 20293, 'whitman': 20294, 'plaza': 20295, 'uniquetimes': 20296, 'sol': 20297, 'eccentricgin': 20298, 'welshgin': 20299, 'badbusiness': 20300, 'wale': 20301, 'yielding': 20302, 'exceed': 20303, 'baton': 20304, 'rouge': 20305, 'sayin': 20306, 'youthful': 20307, 'builder': 20308, 'indiafightcorona': 20309, 'graphzoid': 20310, 'courageous': 20311, 'intrepid': 20312, 'stockman': 20313, 'dice': 20314, 'charisma': 20315, 'frontlineworkers': 20316, 'bendthecurve': 20317, 'confessionsofashopaholic': 20318, 'adorables': 20319, '19fr': 20320, 'pimentel': 20321, 'gettested': 20322, 'coronapanic': 20323, 'martiallaw': 20324, 'ghs': 20325, 'villieria': 20326, 'r1600': 20327, 'attire': 20328, 'salette': 20329, 'centrelink': 20330, 'scottmorrison': 20331, 'lnp': 20332, 'inaugural': 20333, 'modify': 20334, 'stayhomestayhealthy': 20335, 'visible': 20336, 'acknowledge': 20337, 'beeton': 20338, 'benefitted': 20339, 'rosneft': 20340, 'elliot': 20341, 'abrams': 20342, 'sidelining': 20343, 'guaido': 20344, 'maduro': 20345, 'gentles': 20346, 'fmr': 20347, 'shameonsky': 20348, 'purchaselimits': 20349, 'essentialliving': 20350, 'ripoffmerchant': 20351, 'moisturiser': 20352, 'unbritish': 20353, 'inferred': 20354, 'borisajoke': 20355, 'parttimeprimeminister': 20356, 'backdoorboris': 20357, 'sacrificing': 20358, 'grieve': 20359, '122': 20360, 'wegman': 20361, 'proverbs31': 20362, 'riseup': 20363, 'spiritualfamily': 20364, 'fybne4vlyh': 20365, 'desinfections': 20366, 'havefun': 20367, 'uotech': 20368, 'senseofhumor': 20369, 'concentrated': 20370, 'cairn': 20371, 'methanol': 20372, 'aggravates': 20373, 'unprovoked': 20374, 'disfigured': 20375, 'supermarkt': 20376, 'koeln': 20377, 'deployment': 20378, 'coupla': 20379, 'jemima': 20380, 'pedigree': 20381, 'focussing': 20382, 'aglaw': 20383, 'disagree': 20384, 'aspiration': 20385, 'expectmore': 20386, 'nipped': 20387, 'dogma': 20388, 'consumertrends': 20389, 'therein': 20390, 'financialassistance': 20391, 'financialliteracy': 20392, 'ineedppenow': 20393, 'maskshortage': 20394, 'militray': 20395, 'bein': 20396, 'comin': 20397, 'somethin': 20398, 'stink': 20399, 'puttin': 20400, 'xtra': 20401, 'reg': 20402, 'misfit': 20403, 'promo': 20404, 'cookwme': 20405, 'fe8vlt': 20406, 'stayinghome': 20407, '4400': 20408, 'liartrump': 20409, 'flatly': 20410, 'soopers': 20411, 'thirdly': 20412, 'bwcdeals': 20413, 'carluccios': 20414, 'ehbot': 20415, 'forbearance': 20416, 'overdraft': 20417, 'diclemente': 20418, 'carp01': 20419, 'thirteen': 20420, 'msgulfcoast': 20421, 'abc730': 20422, 'credibility': 20423, 'wearestillhereforyou': 20424, 'gachibowli': 20425, 'manikonda': 20426, 'alkapur': 20427, 'narsingi': 20428, 'rort': 20429, 'viable': 20430, 'preview': 20431, 'comme': 20432, 'raoult': 20433, 'beaucoup': 20434, 'lui': 20435, 'font': 20436, 'confiance': 20437, 'tends': 20438, 'grainger': 20439, 'capitel': 20440, 'nexus': 20441, 'clearair': 20442, 'morphed': 20443, 'positional': 20444, 'makarna': 20445, 'worldcorona': 20446, '630pm': 20447, 'yegfood': 20448, 'yegvegan': 20449, 'keepingclean': 20450, 'freshbread': 20451, 'muffin': 20452, 'feedingoursouls': 20453, 'feedingthepublic': 20454, 'demerit': 20455, 'bristol': 20456, 'euf': 20457, 'bleeds': 20458, 'elephant': 20459, 'elderlyperson': 20460, 'comorbids': 20461, 'cobbcounty': 20462, 'complexity': 20463, 'aerodynamics': 20464, 'troubled': 20465, '2020is': 20466, 'hotlines': 20467, 'apupdates': 20468, 'responsive': 20469, 'scaling': 20470, 'undignified': 20471, 'groepsimmuniteit': 20472, 'fixitnow': 20473, 'telanganafightscorona': 20474, 'thankatruckdriver': 20475, 'authorisation': 20476, 'mkinsights': 20477, 'trilby': 20478, 'lundberg': 20479, 'monium': 20480, 'hastings': 20481, 'eggplant': 20482, 'apricot': 20483, 'harissa': 20484, 'roasted': 20485, 'malay': 20486, 'ncat': 20487, '3dprinting': 20488, 'precautionsofcoronavirus': 20489, 'handwashchallenge': 20490, 'keephygine': 20491, 'coronajihad': 20492, 'eiplinfra': 20493, 'lapaloma': 20494, 'apila': 20495, 'luxuryhomes': 20496, 'nasal': 20497, 'gpn': 20498, 'gvc': 20499, 'inquest': 20500, 'inevit': 20501, 'stagnant': 20502, 'staydistance': 20503, 'pakistanarmy': 20504, 'respective': 20505, 'constituency': 20506, 'meandering': 20507, 'hindquarter': 20508, 'englishmuffins': 20509, 'alaga4040': 20510, 'cameltoechallenge': 20511, 'fatihportakalyalnizdegildir': 20512, 'reshapes': 20513, 'delores': 20514, 'ncsolutions': 20515, 'craziest': 20516, 'stunned': 20517, 'dj': 20518, 'djlife': 20519, 'burger': 20520, 'pullman': 20521, 'foodpodcast': 20522, 'easterathome': 20523, 'liner': 20524, 'holidaytrip': 20525, 'ronaldo': 20526, 'leonardodicaprio': 20527, 'worldchange': 20528, 'abelmoreno': 20529, 'heman': 20530, 'mastersoftheuniverse': 20531, 'melonseta': 20532, 'princeadam': 20533, 'berkshire': 20534, 'dinosaurextinction': 20535, 'toiletpaperchaos': 20536, 'dampened': 20537, 'wor': 20538, 'nhl': 20539, 'pealways': 20540, 'stamptheworld': 20541, 'patna': 20542, 'singled': 20543, 'rees': 20544, 'mogg': 20545, 'seating': 20546, 'drugdealers': 20547, 'n8tronic40': 20548, 'dimebags': 20549, 'dimebag': 20550, 'food4thought': 20551, 'prioritizing': 20552, 'meaningfulgrowth': 20553, 'geniouxmg': 20554, 'crushthecurve': 20555, 'geltwo': 20556, '86': 20557, 'streak': 20558, 'lima': 20559, 'polyester': 20560, 'admired': 20561, 'prawn': 20562, 'squid': 20563, 'caterer': 20564, 'kam': 20565, 'directory': 20566, 'confirmation': 20567, 'ucat': 20568, '234': 20569, 'southwark': 20570, 'se16': 20571, '3rw': 20572, 'homebuyers': 20573, 'homesellers': 20574, 'cheadle': 20575, 'vaisman': 20576, 'guaranteeing': 20577, 'reversing': 20578, 'onlinepayment': 20579, 'pretended': 20580, 'mania': 20581, 'extendedlockdown': 20582, '4ish': 20583, 'idontusetwittermuch': 20584, 'professorcj': 20585, 'internment': 20586, 'gmp': 20587, '19920': 20588, 'qty': 20589, 'dissertation': 20590, 'authoritarian': 20591, 'dictatorship': 20592, 'marxist': 20593, 'critique': 20594, 'utahn': 20595, 'farnworth': 20596, 'columbians': 20597, 'bcleg': 20598, '00th': 20599, 'overused': 20600, 'disagreement': 20601, 'overload': 20602, 'naples': 20603, 'perceived': 20604, 'hull': 20605, 'invests': 20606, 'njbanks': 20607, 'oregonian': 20608, 'yogalesson': 20609, 'sexlife': 20610, 'talktoeachother': 20611, '12th': 20612, 'barcode': 20613, 'customary': 20614, '530': 20615, 'x121': 20616, 'usausausa': 20617, 'every1': 20618, 'sickleave': 20619, 'srpeading': 20620, 'ramaphosa': 20621, 'mysouthafricans': 20622, 'summarize': 20623, 'multifamily': 20624, 'northumberland': 20625, 'viligant': 20626, 'p35gzkdnn7': 20627, 'illogical': 20628, 'lit': 20629, 'curt': 20630, 'larson': 20631, 'productdescriptions': 20632, 'toiletpapermeme': 20633, 'hartzell': 20634, 'cranga': 20635, 'barrett': 20636, 'nutraceuticals': 20637, 'allstate': 20638, 'geico': 20639, 'progressive': 20640, 'agreeing': 20641, 'policyholder': 20642, 'tpci': 20643, 'wecare': 20644, 'zuku': 20645, 'blueberry': 20646, 'caronavirusaus': 20647, 'royalty': 20648, 'palace': 20649, 'cricketer': 20650, 'cam': 20651, 'richardism': 20652, 'believer': 20653, 'endthelockdown': 20654, 'stopthestupid': 20655, 'coronaapocalypse': 20656, 'humorcoronavirus': 20657, 'factcheck': 20658, 'landfall': 20659, '0541296': 20660, 'uselessness': 20661, 'staysafestayhom': 20662, 'boc': 20663, 'intensified': 20664, '0214996028': 20665, 'nan': 20666, 'facetimed': 20667, 'womenpeacebuilders': 20668, 'ctu': 20669, 'paridaias': 20670, 'obtained': 20671, 'munch': 20672, 'boldly': 20673, 'privately': 20674, 'huawei': 20675, '553': 20676, '790': 20677, 'stemming': 20678, 'redoubled': 20679, 'coronavisurs': 20680, 'mustapha': 20681, 'allamin': 20682, 'opelika': 20683, 'fuller': 20684, 'snappy': 20685, 'slogan': 20686, 'messy': 20687, 'handwashes': 20688, 'hindustanunilever': 20689, 'albuquerque': 20690, 'abq': 20691, 'newmexico': 20692, 'reluctantly': 20693, 'ravage': 20694, 'overcoming': 20695, 'tpmp': 20696, 'tpshortage2020': 20697, 'pietre': 20698, 'holistic': 20699, '1968': 20700, 'doomsdayprepper': 20701, 'apologetically': 20702, 'cosumerbehavior': 20703, 'isolationism': 20704, 'advertisingtrends': 20705, 'superbrugsen': 20706, 'ndby': 20707, 'spill': 20708, 'dontpanic': 20709, 'saturdayvibes': 20710, 'akash': 20711, 'smethwick': 20712, 'dusty': 20713, 'gearhard': 20714, 'homeland': 20715, 'richiet': 20716, 'unemploymentinsurance': 20717, 'ohiolockdown': 20718, 'imune': 20719, 'buliders': 20720, 'gojo': 20721, 'jhalakbollywood': 20722, 'jhalakkollywood': 20723, 'jhalaktollywood': 20724, 'shavedonatenominate': 20725, 'marcus': 20726, 'unnoticed': 20727, 'mapoli': 20728, 'wef20': 20729, 'besieged': 20730, 'thetechinfinite': 20731, 'assembles': 20732, 'mzansi': 20733, 'namc': 20734, 'sifiso': 20735, 'ntombela': 20736, 'nu': 20737, 'simon': 20738, 'ttravelandyouwon': 20739, 'tdoit': 20740, 'dundalk': 20741, 'homeschooling': 20742, 'wheeler': 20743, 'callofduty': 20744, 'atv': 20745, 'rtv': 20746, 'recreation': 20747, 'strengthened': 20748, 'vincentian': 20749, '901': 20750, 'braker': 20751, '78758': 20752, 'onlinemarketing': 20753, 'customersatisfaction': 20754, 'electronicsindustry': 20755, 'investmentbanking': 20756, 'settling': 20757, 'infocoronavirus': 20758, 'foodvaluechain': 20759, 'underwear': 20760, 'lingerie': 20761, 'wearyourmask': 20762, 'econmic': 20763, 'fundamental': 20764, 'lifelong': 20765, 'salvador': 20766, 'alternating': 20767, 'no1': 20768, 'bouncer': 20769, 'ebaypricegouging': 20770, 'discovering': 20771, '128': 20772, 'tfeu': 20773, 'softest': 20774, 'postpandemic': 20775, 'killit': 20776, 'jasmine': 20777, 'rvaca': 20778, 'starlingbank': 20779, 'paywall': 20780, 'castlevania': 20781, 'dispatcher': 20782, 'resturants': 20783, 'peckham': 20784, 'erdogan': 20785, 'ramesh': 20786, 'ind': 20787, 'verma': 20788, 'cornholio': 20789, 'beavisandbutthead': 20790, 'pineapple': 20791, 'thediamondloupe': 20792, 'tier': 20793, 'petra': 20794, 'fdacs': 20795, 'sny': 20796, '87': 20797, 'ifa': 20798, 'mymoney': 20799, 'reviewing': 20800, 'superblue': 20801, 'sham': 20802, 'charlatan': 20803, 'curtain': 20804, 'buenos': 20805, 'aire': 20806, 'yasky': 20807, 'sappy': 20808, 'proje': 20809, 'simulates': 20810, 'pathogenic': 20811, 'continuously': 20812, 'altercation': 20813, 'globalization': 20814, 'magento': 20815, 'magedia': 20816, 'icmyi': 20817, 'nat': 20818, 'fresno': 20819, 'interpol': 20820, 'unfamiliar': 20821, 'ferocity': 20822, 'witnessing': 20823, 'northsomerset': 20824, 'westonsupermare': 20825, 'exerciseathome': 20826, 'bustling': 20827, 'deborah': 20828, 'callingwood': 20829, 'ridiculed': 20830, 'upmost': 20831, 'downhill': 20832, 'doorknob': 20833, 'moisturizer': 20834, 'virology': 20835, 'interior': 20836, 'didyouknow': 20837, 'moistwipes': 20838, 'disinfectantwipes': 20839, 'wheels24': 20840, 'completes': 20841, 'basement': 20842, 'penguin': 20843, 'whale': 20844, 'installing': 20845, 'wpi': 20846, 'wpidata': 20847, 'digitalbanking': 20848, 'mountaineer': 20849, 'maryannfishing': 20850, 'allnatural': 20851, 'dearbernie': 20852, 'maslow': 20853, 'hierarchy': 20854, 'vigorous': 20855, 'silverlinings': 20856, 'nay': 20857, 'sayers': 20858, 'mjt': 20859, 'vegetableoils': 20860, 'freakonomics': 20861, 'podium': 20862, 'impractical': 20863, 'differs': 20864, 'wildly': 20865, 'improving': 20866, 'buybooks': 20867, 'stockwell': 20868, 'ada': 20869, 'millenials': 20870, 'genx': 20871, 'zoomers': 20872, 'spin': 20873, 'tolerable': 20874, 'idshield': 20875, 'privacymanagement': 20876, 'wecanhelp': 20877, 'namely': 20878, 'shrewd': 20879, 'manoeuvre': 20880, 'optimizing': 20881, 'beautymatter': 20882, 'humbled': 20883, 'appreciative': 20884, 'mechanic': 20885, 'antibiotic': 20886, 'jackinthebox': 20887, 'studiocity': 20888, 'canyon': 20889, 'mistreat': 20890, 'jackbox': 20891, 'substitution': 20892, 'dontbuythesun': 20893, 'mha': 20894, 'lager': 20895, 'mattieu': 20896, 'stouffers': 20897, 'entree': 20898, 'kn95mask': 20899, 'medicalmask': 20900, 'rampaging': 20901, 'akan': 20902, 'dekat': 20903, 'stesen': 20904, 'balai': 20905, 'dasani': 20906, 'arrowhead': 20907, 'receptionist': 20908, 'kindnesscounts': 20909, 'cone': 20910, 'slavery': 20911, 'plaquenil': 20912, 'prohibitive': 20913, 'nottingham': 20914, 'casualty': 20915, 'flapol': 20916, 'shopclub': 20917, 'staywell': 20918, 'kitten': 20919, 'uhh': 20920, 'nv04': 20921, 'brewdog': 20922, 'seaside': 20923, 'accusing': 20924, 'coneyisland': 20925, 'revise': 20926, 'stalling': 20927, 'wept': 20928, 'dundas': 20929, 'hurontario': 20930, 'stayhomesave': 20931, 'dispersion': 20932, 'informing': 20933, 'attempted': 20934, 'subprime': 20935, 'instinct': 20936, '34kfwlbmsd': 20937, 'fvck': 20938, 'sidneysmithcre8tiv': 20939, 'quadruplethreatstar': 20940, 'standup': 20941, 'nuke': 20942, 'grau': 20943, 'naphtha': 20944, 'languishing': 20945, 'recondition': 20946, 'eod': 20947, 'retraction': 20948, 'westbiloxi': 20949, 'walmarts': 20950, 'behaviorchange': 20951, 'pisano': 20952, 'liberally': 20953, 'foodstorage': 20954, '320': 20955, '330': 20956, 'zealot': 20957, 'magnified': 20958, 'fct': 20959, 'gently': 20960, 'directing': 20961, '4p': 20962, 'prioritized': 20963, 'littering': 20964, 'recyclables': 20965, 'eastenders': 20966, 'ohtogobacktonormal': 20967, 'texpirg': 20968, 'absentee': 20969, 'equifax': 20970, 'experian': 20971, 'idly': 20972, 'voluntary': 20973, 'helicopter': 20974, 'uncontrollable': 20975, 'perso': 20976, 'estonian': 20977, 'engrossed': 20978, 'labelling': 20979, 'gail': 20980, 'sahar': 20981, 'kolobi': 20982, 'knackdown': 20983, 'upandan': 20984, 'brandsvscovid19': 20985, 'changingmarkets': 20986, 'changingconsumers': 20987, 'agmarketingiq': 20988, 'pspcl': 20989, 'csa': 20990, 'ndash': 20991, 'housework': 20992, 'summerlin': 20993, 'boulder': 20994, 'ccsd': 20995, 'ccsdnews': 20996, 'vegasnews': 20997, 'scaremongering': 20998, 'magatrain': 20999, 'magats': 21000, 'gianourmous': 21001, 'falsepanic': 21002, 'worldshutdown': 21003, 'cleric': 21004, 'patreon': 21005, 'icon': 21006, 'discord': 21007, 'nsfw': 21008, 'nerd': 21009, 'appalachia': 21010, 'retaining': 21011, 'kpis': 21012, 'sanitzer': 21013, 'someday': 21014, 'valueless': 21015, 'betterment': 21016, 'itsnottheapocalypse': 21017, 'stoptakingeverything': 21018, 'thinkbeforeyoubuy': 21019, 'adversely': 21020, 'chartered': 21021, 'feedly': 21022, 'hawaiian': 21023, 'foodmanufacturers': 21024, 'esselunga': 21025, 'prato': 21026, 'os': 21027, 'buoyed': 21028, '132': 21029, 'umhlanga': 21030, 'euficoemcasa': 21031, 'futile': 21032, 'kcet': 21033, 'sanantonio': 21034, 'bookshop': 21035, 'cbse': 21036, 'ahsec': 21037, 'examscancelled': 21038, 'puremichigan': 21039, 'restarting': 21040, 'rebooting': 21041, 'yum': 21042, 'fatigue': 21043, '410': 21044, '528': 21045, '8662': 21046, 'heau': 21047, 'working4md': 21048, 'alerta': 21049, 'shitting': 21050, 'mobo': 21051, 'keepcalmandstoppanicbuying': 21052, 'rhe': 21053, 'centennial': 21054, 'motivated': 21055, 'raining': 21056, 'angelenos': 21057, 'pumpkin': 21058, 'bordering': 21059, 'vulnrable': 21060, 'vari': 21061, 'meetingthechallenges': 21062, 'lessens': 21063, 'fhe': 21064, 'tropic': 21065, 'dengue': 21066, 'stalk': 21067, 'hygene': 21068, 'r4today': 21069, 'mufc': 21070, 'cutts': 21071, 'notgalleryinventory': 21072, 'instaart': 21073, 'instaartist': 21074, 'attoftheday': 21075, 'stevecutts': 21076, 'vicki': 21077, 'clc': 21078, 'walgreen': 21079, 'sycophant': 21080, 'oap': 21081, 'bizitalk': 21082, 'initiate': 21083, 'etailers': 21084, 'fuckpanicbuyers': 21085, 'toilettenpapier': 21086, 'mediziner': 21087, 'nennt': 21088, 'symptome': 21089, 'durchfall': 21090, 'sei': 21091, 'selten': 21092, 'gewesen': 21093, 'streeck': 21094, 'squarely': 21095, 'biman': 21096, 'basu': 21097, 'honkhonk': 21098, 'saks': 21099, '6ftapart': 21100, 'siddiqi': 21101, 'socialisolation': 21102, 'comeback': 21103, 'survivalmode': 21104, 'hornsby': 21105, 'illustrates': 21106, 'bl': 21107, 'argusoil': 21108, 'shaft': 21109, 'stopthegreed': 21110, 'classy': 21111, 'groveroes': 21112, 'animalcrossingnewhorizon': 21113, 'mygolfspy': 21114, 'superheros': 21115, 'becauze': 21116, 'surpasses': 21117, 'despot': 21118, 'obsolescent': 21119, 'disproportionately': 21120, 'blackcab': 21121, 'blockade': 21122, 'advising': 21123, 'buoyant': 21124, 'jetty': 21125, 'homebuilder': 21126, 'cattleman': 21127, 'bitdefender': 21128, 'inflammatory': 21129, 'scourge': 21130, 'firmly': 21131, 'scardina': 21132, 'elaborates': 21133, 'rebuild': 21134, 'gracie': 21135, 'heraldsun': 21136, 'petsofinsta': 21137, 'dogsofinstagram': 21138, 'nikonphotography': 21139, 'petphotography': 21140, 'canine': 21141, '9pm': 21142, 'pardeeprofs': 21143, 'latinamerica': 21144, 'straining': 21145, 'nahi': 21146, 'haldi': 21147, 'pani': 21148, 'peenay': 21149, 'nai': 21150, 'marta': 21151, 'neatly': 21152, 'tart': 21153, 'whatthehelldoyouhavetolose': 21154, 'trumptweet': 21155, 'trumptradewar': 21156, 'imi': 21157, 'marketingstrategy': 21158, 'marketingonline': 21159, 'sousa': 21160, 'foolish': 21161, 'accomplished': 21162, 'idontunerstand': 21163, 'turbine': 21164, 'renews': 21165, 'gencorpower': 21166, 'powergen': 21167, 'hinoo': 21168, 'blackmarketing': 21169, 'swil': 21170, 'professionally': 21171, 'retailgraph': 21172, 'supermarketsoftware': 21173, 'swilsoftware': 21174, 'snazzy': 21175, 'hepa': 21176, 'chipped': 21177, 'auckland': 21178, 'prestige': 21179, 'louise': 21180, 'ame': 21181, 'spx500': 21182, '2421': 21183, 'nas100': 21184, '7288': 21185, '1485': 21186, '165': 21187, 'incorrect': 21188, 'ryanair': 21189, 'lewk': 21190, 'makeupnoob': 21191, 'jeffreestarcosmetics': 21192, 'facetattoos': 21193, 'wwll': 21194, 'bbcqt': 21195, 'peston': 21196, 'disgust': 21197, 'obese': 21198, 'fsr': 21199, 'normsl': 21200, 'expires': 21201, 'scriptchat': 21202, 'trumpistheworstpresidentever': 21203, 'trumpliesaboutcoronavirus': 21204, 'kinsa': 21205, 'quickcare': 21206, 'bitte': 21207, 'anschauen': 21208, 'emotionaler': 21209, 'aufruf': 21210, 'gehard': 21211, 'bosselmann': 21212, 'hannover': 21213, 'gehen': 21214, 'sie': 21215, 'zu': 21216, 'ihrem': 21217, 'cker': 21218, 'ecke': 21219, 'schei': 21220, 'egal': 21221, 'wie': 21222, 'hei': 21223, 'hin': 21224, 'mittelstand': 21225, 'handwerk': 21226, 'landb': 21227, 'ckereibosselmann': 21228, 'emsland': 21229, '9629': 21230, 'upbeat': 21231, 'p500': 21232, 'nzd': 21233, 'owor': 21234, 'clickers': 21235, 'overcapacity': 21236, 'vigilance': 21237, 'alr': 21238, 'accurately': 21239, 'provoke': 21240, 'icco': 21241, 'hollow': 21242, '368': 21243, '8808': 21244, 'grilled': 21245, 'resturant': 21246, '69th': 21247, 'astounding': 21248, 'thanksvodafone': 21249, 'airlinebailout': 21250, 'baggage': 21251, 'preece': 21252, 'wheelchair': 21253, 'chuck': 21254, 'pricecycle': 21255, 'publictransport': 21256, 'graphical': 21257, 'enlisted': 21258, 'pdmac': 21259, 'prince': 21260, 'wiwt': 21261, 'arcing': 21262, 'plateau': 21263, 'charliebaker': 21264, 'weareallinthistogether': 21265, 'bostonathlete': 21266, 'bostonathletemagazine': 21267, 'icke': 21268, 'day11oflockdown': 21269, 'greenhouse': 21270, 'adrian': 21271, 'agege': 21272, 'lga': 21273, 'oseni': 21274, 'olamide': 21275, '0026691661': 21276, 'gayrunner': 21277, 'thisiswhattranslookslike': 21278, 'mastersathlete': 21279, 'transathlete': 21280, 'lgbt': 21281, 'geodoinggeothings': 21282, 'runnerslife': 21283, 'runloverock': 21284, 'stapler': 21285, 'allergen': 21286, 'fashioned': 21287, 'cliffe': 21288, '2007': 21289, 'multilateral': 21290, 'novop': 21291, 'abode': 21292, 'segregation': 21293, 'wymondham': 21294, 'normalize': 21295, 'scrapped': 21296, 'undermined': 21297, 'raboresearch': 21298, 'barking': 21299, 'dagenham': 21300, 'springboot': 21301, 'somegoodnews': 21302, 'brandprotection': 21303, 'ohh': 21304, 'charliemackesy': 21305, 'gratefulforournhs': 21306, 'nhsengland': 21307, 'supermarketsuperstars': 21308, 'foam': 21309, 'ola': 21310, 'chloroquineinn': 21311, 'godssake': 21312, 'ogemgo3qw7': 21313, 'stalled': 21314, 'trashmen': 21315, 'sheen': 21316, 'numbing': 21317, 'finewineandgoodspirts': 21318, 'wildaf': 21319, 'oppression': 21320, 'sellout': 21321, 'mdc': 21322, 'distract': 21323, 'dunno': 21324, 'grr': 21325, 'alizeh': 21326, 'shah': 21327, 'noman': 21328, 'sami': 21329, 'trolled': 21330, 'alizehshah': 21331, 'nomansami': 21332, 'extort': 21333, 'youbeneathyourskin': 21334, 'ebooks': 21335, 'si': 21336, 'brisket': 21337, 'whoo': 21338, 'hoo': 21339, 'passoverdinner': 21340, 'craigs': 21341, 'statista': 21342, 'nimmo': 21343, 'diarrhoea': 21344, 'cantwin': 21345, 'countryrisk': 21346, 'ororo': 21347, 'transistor': 21348, 'melaye': 21349, 'gordon': 21350, 'stayhomecanada': 21351, 'apcoinsight': 21352, 'flavoured': 21353, 'sparkling': 21354, 'description': 21355, '30a': 21356, '8p': 21357, 'bridgeport': 21358, 'cern': 21359, 'lhc': 21360, 'physic': 21361, 'infectiousdiseases': 21362, 'scoffing': 21363, 'ne': 21364, 'zillion': 21365, 'ncovsupply': 21366, 'ncovsupplies': 21367, 'sensitize': 21368, 'accompanied': 21369, 'pestilence': 21370, 'assurance': 21371, 'bescom': 21372, 'uniterrupted': 21373, 'betwinnervirtual': 21374, 'deputized': 21375, 'gratuitous': 21376, 'petulant': 21377, 'momentarily': 21378, '927': 21379, 'whereisjoebiden': 21380, 'm4a': 21381, 'forgiveness': 21382, 'handout': 21383, 'atp': 21384, 'forgetting': 21385, 'hamsteren': 21386, 'katrina': 21387, 'rita': 21388, 'ike': 21389, 'mres': 21390, 'herded': 21391, 'likeit': 21392, 'gallinago': 21393, 'sturgeon': 21394, 'junky': 21395, 'junkie': 21396, 'yk': 21397, 'incapable': 21398, 'tigerking': 21399, 'carolebaskin': 21400, 'twitterdoyourthing': 21401, 'armyselcaday': 21402, 'arsd': 21403, 'retention': 21404, 'offsetting': 21405, 'heartening': 21406, 'humanitas': 21407, 'reflex': 21408, 'worktogether': 21409, 'ukcoronavirus': 21410, '750bn': 21411, 'bowed': 21412, 'cheered': 21413, 'babyessentials': 21414, 'cleanhandssavelives': 21415, 'thankyoupost': 21416, 'lakelyn': 21417, 'babylake': 21418, 'noviruswanted': 21419, 'cartersbaby': 21420, 'unfollowed': 21421, 'insta': 21422, 'boasting': 21423, 'gunjan': 21424, 'alpha': 21425, 'morl': 21426, 'mrrl': 21427, 'reml': 21428, 'dork': 21429, 'visitation': 21430, 'leaflet': 21431, 'teampnp': 21432, 'weserveandprotect': 21433, 'pnpkakampimo': 21434, 'conmen': 21435, 'bahrami': 21436, 'uniteideas': 21437, 'heaven': 21438, 'hades': 21439, 'foodpantry': 21440, 'aia': 21441, 'trenton': 21442, 'princeton': 21443, 'feedamerica': 21444, 'frogger': 21445, 'europeansagainstcovid19': 21446, 'investing101': 21447, 'forexinvestment': 21448, 'forexmarket': 21449, 'crown': 21450, 'barnet': 21451, 'conway3': 21452, 'mccormick': 21453, 'kbra': 21454, 'securitizations': 21455, 'suffolk': 21456, 'healthinnovations': 21457, 'blacklisting': 21458, 'faithful': 21459, 'noma': 21460, 'sana': 21461, 'kitengela': 21462, 'kobil': 21463, 'ku': 21464, 'mzalendo': 21465, 'chezaclean': 21466, 'changamka': 21467, '708': 21468, 'liking': 21469, 'immuno': 21470, 'ibd': 21471, 'foraging': 21472, 'boxed': 21473, 'mukesh': 21474, 'ambani': 21475, 'vaka98': 21476, 'anakkalege': 21477, 'ilmez': 21478, 'clubtwitter': 21479, 'centrex': 21480, '65s': 21481, 'postcode': 21482, 'b8': 21483, 'b9': 21484, 'b23': 21485, 'b24': 21486, 'b34': 21487, 'b35': 21488, 'b36': 21489, 'b37': 21490, 'seattlecartoonist': 21491, 'seattleillustrator': 21492, 'dailycomic': 21493, 'seattlescene': 21494, 'sensation': 21495, 'forecasted': 21496, '14k': 21497, 'quar': 21498, 'wwe': 21499, 'wrestler': 21500, 'merch': 21501, 'slaughterhouse': 21502, 'porc': 21503, 'comb': 21504, 'braiding': 21505, '0800203033': 21506, '080010066': 21507, '0782909153': 21508, '0772460297': 21509, '0772469323': 21510, 'ian': 21511, 'telecare': 21512, 'tc': 21513, 'raider': 21514, 'uspol': 21515, 'froze': 21516, 'mths': 21517, 'federally': 21518, 'besmartbesafe': 21519, 'saath': 21520, 'bhi': 21521, 'gayi': 21522, 'ki': 21523, 'baniyawaalas': 21524, 'incendiary': 21525, 'biological': 21526, 'peopleareselfish': 21527, 'incubation': 21528, 'ordinated': 21529, 'invaded': 21530, 'foodhoard': 21531, 'antivirus': 21532, 'norton': 21533, 'mcafee': 21534, 'kaspersky': 21535, 'rsr': 21536, 'jukebox': 21537, 'pubclosures': 21538, 'shutdownuk': 21539, 'fuckingidiots': 21540, 'workbook': 21541, 'bullet': 21542, 'hydroxycoroquine': 21543, 'marylander': 21544, 'reduceinternetprices': 21545, 'mynewnormal': 21546, 'michele': 21547, 'satisfying': 21548, 'oliverscampaign': 21549, 'bethesda': 21550, 'julii': 21551, 'supportlocalrestaurants': 21552, 'inept': 21553, 'boyc': 21554, '366': 21555, '357': 21556, 'nevasa': 21557, 'sedate': 21558, 'santabarbara': 21559, 'forcedsmiles': 21560, 'stayawayfromme': 21561, 'worsen': 21562, 'hurried': 21563, 'gulzar': 21564, 'zafar': 21565, 'unsatisfactory': 21566, 'motu': 21567, 'awaited': 21568, 'gamify': 21569, 'scavenger': 21570, 'pickle': 21571, 'stockyard': 21572, 'divergence': 21573, 'holcomb': 21574, 'hawking': 21575, 'intensively': 21576, 'nurture': 21577, 'trimmed': 21578, '854': 21579, 'undernourished': 21580, 'morally': 21581, 'portrays': 21582, '400k': 21583, 'm25': 21584, 'pandamicsays': 21585, 'wipeyourwayout': 21586, 'lunathi': 21587, 'hlakanyane': 21588, 'farmers4change': 21589, 'pandamic': 21590, 'foodbiznews': 21591, 'foodtrends': 21592, 'mandarino': 21593, 'queenvictotia': 21594, '551': 21595, '827': 21596, 'airing': 21597, 'helpourelderly': 21598, 'inconvenient': 21599, 'ashland': 21600, 'instituted': 21601, 'luxemburg': 21602, 'webinarwednesdays': 21603, 'striking': 21604, 'reiterate': 21605, 'overdue': 21606, 'sampling': 21607, 'sprout': 21608, 'gelson': 21609, 'vallarta': 21610, 'ommcomnews': 21611, 'kelowna': 21612, 'gamble': 21613, 'coffeetime': 21614, 'improvisation': 21615, 'wv': 21616, 'jesusfails': 21617, 'dread': 21618, 'historian': 21619, 'sportsdirectshame': 21620, 'arkansan': 21621, 'sanctuary': 21622, 'rainforest': 21623, 'offspring': 21624, 'duct': 21625, 'ducttape': 21626, 'pws': 21627, 'hereforyou': 21628, 'plumbingproblems': 21629, 'pipework': 21630, '102': 21631, 'maxmotives': 21632, 'idk': 21633, 'deer': 21634, 'merci': 21635, 'madame': 21636, 'vous': 21637, 'vos': 21638, 'gues': 21639, 'nous': 21640, 'pouvons': 21641, 'tous': 21642, 'lutter': 21643, 'contre': 21644, 'assurer': 21645, 'votre': 21646, 'curit': 21647, 'dans': 21648, 'sans': 21649, 'dent': 21650, 'produire': 21651, 'pandemicquestions': 21652, 'fwitts': 21653, 'spluttering': 21654, '90mins': 21655, 'staticair': 21656, 'movefaster': 21657, 'lenana': 21658, 'rudely': 21659, 'nurses2020': 21660, 'nursesunite': 21661, 'laughteristhebestmedicine': 21662, 'paton': 21663, 'tasmania': 21664, 'meager': 21665, 'menial': 21666, 'dist': 21667, 'maricopa': 21668, '242': 21669, '630': 21670, '112': 21671, 'collier': 21672, 'dunkin': 21673, 'endhunger': 21674, 'averaged': 21675, 'ffpi': 21676, '4pc': 21677, 'nationwidelockdown': 21678, 'ausp': 21679, 'blazing': 21680, 'uniquely': 21681, 'luna': 21682, 'harness': 21683, 'vender': 21684, 'allege': 21685, 'ingenious': 21686, 'placement': 21687, 'welcoming': 21688, 'scorpion': 21689, 'womeninstem': 21690, 'socialj': 21691, 'brittain': 21692, 'freelancing': 21693, 'digitalnomad': 21694, 'entrepreneurship': 21695, 'onlineretail': 21696, 'sales': 21697, 'brianelderroofing': 21698, 'ebitda': 21699, 'stockstowatch': 21700, 'stockbags': 21701, 'exacerbate': 21702, 'joysms': 21703, 'tease': 21704, 'polio': 21705, 'eradication': 21706, 'linear': 21707, 'unfinished': 21708, 'puzzels': 21709, 'recruitment': 21710, 'bowling': 21711, 'comptroller': 21712, 'glenn': 21713, 'hegar': 21714, 'focal': 21715, 'mpa': 21716, 'presided': 21717, 'ghaffar': 21718, 'soomro': 21719, 'adeel': 21720, 'chandio': 21721, 'examined': 21722, 'noshame': 21723, 'nosense': 21724, 'cancelsky': 21725, 'clamp': 21726, 'sisolak': 21727, 'peo': 21728, 'chucklevision': 21729, 'chucklebrothers': 21730, 'oxfordshire': 21731, 'estrella': 21732, 'dhirajsons': 21733, 'soapandwater': 21734, 'theshinning': 21735, 'comeplaywithus': 21736, 'comeplay': 21737, 'coronaviral': 21738, 'shabby': 21739, 'milliona': 21740, 'misread': 21741, 'regulates': 21742, 'cytokine': 21743, 'modest': 21744, 'tierras': 21745, 'aztecas': 21746, 'sube': 21747, 'consults': 21748, 'radiation': 21749, 'yajuj': 21750, 'majuj': 21751, 'schoolsout': 21752, 'ggp': 21753, 'pours': 21754, 'videotaped': 21755, 'respectable': 21756, 'rosekart': 21757, 'joann': 21758, 'loungewear': 21759, 'couscous': 21760, 'gigantifying': 21761, 'kitkat': 21762, 'disclosed': 21763, '774': 21764, 'kempston': 21765, 'stayhomebesafe': 21766, 'freeshipping': 21767, 'eustace': 21768, 'presser': 21769, '0300': 21770, '123': 21771, '2040': 21772, 'scamwarnings': 21773, 'ihatetheinternet': 21774, 'whodidthis': 21775, 'ptcares': 21776, 'vlogger': 21777, 'blogger': 21778, 'lmbo': 21779, 'ihti': 21780, 'currentevents': 21781, 'wuhanchina': 21782, 'wuhancorona': 21783, 'primer': 21784, 'irrigation20': 21785, 'coulditbeworsethan2019': 21786, 'paraphrase': 21787, 'prosper': 21788, 'farewell': 21789, 'postapocalyptic': 21790, 'llap': 21791, 'regs': 21792, 'offshore': 21793, 'delicate': 21794, 'zakatify': 21795, 'sixteen': 21796, 'rescuing': 21797, 'staten': 21798, 'ramadanstrong': 21799, 'haa': 21800, 'winny': 21801, 'bint': 21802, 'partly': 21803, 'mischief': 21804, 'automation': 21805, 'furnish': 21806, 'obvi': 21807, 'sender': 21808, 'caller': 21809, 'renewannewithane': 21810, 'discarded': 21811, 'vinylgloves': 21812, 'encroaching': 21813, 'shi': 21814, 'ting': 21815, 'corson': 21816, 'holliewoodandfriends': 21817, 'helmet': 21818, 'skateboard': 21819, 'keepactive': 21820, 'newscaster': 21821, 'drumettes': 21822, 'tumeric': 21823, 'cumin': 21824, '15mins': 21825, 'saddest': 21826, 'signofthetines': 21827, 'worldgonemad': 21828, 'aisi': 21829, 'taisi': 21830, 'inspects': 21831, 'tobruk': 21832, 'corrupted': 21833, 'eliminated': 21834, '188': 21835, '135': 21836, 'ipc': 21837, 'shahibaugh': 21838, 'malegaon': 21839, 'chineseviruscorona': 21840, 'ethereum': 21841, 'commoditymarkets': 21842, 'usdbitstamp': 21843, 'ripplexrp': 21844, 'befairtoall': 21845, 'photoshoot': 21846, 'studioshoot': 21847, 'coronaart': 21848, 'halving': 21849, 'businessoutlook': 21850, '6m': 21851, '3days': 21852, 'decit': 21853, 'wickedness': 21854, 'wahala': 21855, 'idio': 21856, 'hackathon': 21857, 'titanhacks': 21858, 'submission': 21859, 'arsewipe': 21860, 'implies': 21861, 'herding': 21862, 'coronvirusaus': 21863, 'bandipora': 21864, 'shahbaz': 21865, 'ahmad': 21866, 'constituted': 21867, '99p': 21868, 'fuckingchancers': 21869, 'jr': 21870, 'ankara': 21871, '156': 21872, 'viruscoronaupdate': 21873, 'updateviruscorona': 21874, 'vilains': 21875, 'nonessential': 21876, 'hawthorn': 21877, 'reposition': 21878, 'jordanian': 21879, '604': 21880, '9802': 21881, 'bergamo': 21882, 'cremation': 21883, 'morgue': 21884, 'stoptouchingyourface': 21885, 'phillyascleo': 21886, 'thetwiddleofficial': 21887, 'gantz': 21888, 'omwanvu': 21889, 'wakuffa': 21890, 'topped': 21891, 'pickins': 21892, 'ebmt': 21893, 'biopharma': 21894, 'andrewyang': 21895, 'shopowner': 21896, 'asiyah': 21897, 'javed': 21898, 'gaugers': 21899, 'musical': 21900, 'germx': 21901, 'beervirus': 21902, 'damnbeervirus': 21903, 'coronabeervirus': 21904, 'bedford': 21905, 'abide': 21906, 'snitch': 21907, 'hereafter': 21908, 'tangentially': 21909, 'yuma': 21910, 'covied19': 21911, 'financialempowerment': 21912, 'folder': 21913, 'oxygenators': 21914, 'sin': 21915, 'unsungheroes': 21916, 'furry': 21917, 'outlined': 21918, 'alleging': 21919, 'honoring': 21920, 'yourpoorcolon': 21921, 'yourpoortoilet': 21922, 'senitizer': 21923, 'wfhtips': 21924, 'lsuhfno': 21925, 'shiseido': 21926, 'gambling': 21927, 'hamstering': 21928, 'daytime': 21929, 'adbuy': 21930, 'adsense': 21931, 'advertisement': 21932, 'productplacement': 21933, 'backbreaking': 21934, 'heaux': 21935, 'catsofthequarantine': 21936, 'catsofinstagram': 21937, 'scenery': 21938, 'jackig': 21939, 'mth': 21940, 'reopened': 21941, 'maxvalue': 21942, 'safestore': 21943, 'snacking': 21944, 'sensical': 21945, 'rex': 21946, 'dander': 21947, 'everyonematters': 21948, 'correlation': 21949, 'unctad': 21950, 'rylan': 21951, 'annadominic12345': 21952, 'mehtaa3': 21953, 'caresact': 21954, 'fcra': 21955, 'mainzer': 21956, 'peaked': 21957, 'rs4': 21958, 'hussain': 21959, '3hrs': 21960, 'notinthistogether': 21961, 'tame': 21962, 'palate': 21963, 'fin': 21964, 'blanket': 21965, '30day': 21966, 'crucified': 21967, 'resurrection': 21968, 'goodfriday2020': 21969, 'montana': 21970, 'hitchens': 21971, 'feckin': 21972, 'dunce': 21973, 'nicola': 21974, 'lacetera': 21975, 'hobnobbing': 21976, 'stayinside': 21977, 'trumph': 21978, 'sinceivebeenquarantined': 21979, 'scalping': 21980, 'frescogrocers': 21981, 'trivia': 21982, 'impair': 21983, 'postitive': 21984, 'biobarrier': 21985, 'customersafety': 21986, 'annoys': 21987, 'riversidecounty': 21988, 'marvelous': 21989, 'iodine': 21990, 'arrears': 21991, 'daft': 21992, 'groaning': 21993, 'riice': 21994, 'pastaa': 21995, 'campbell9': 21996, 'rediscovery': 21997, 'notouchy': 21998, 'kuzco': 21999, 'shaggy': 22000, '800ksh': 22001, '00ksh': 22002, 'housewear': 22003, 'save0745927128': 22004, '0787370387': 22005, 'ecommercebytes': 22006, 'nightclub': 22007, 'reprediction': 22008, 'imho': 22009, 'governmental': 22010, 'moj': 22011, 'constitutes': 22012, 'brainwashed': 22013, 'icantstayhomeiamanure': 22014, 'nursesareheroes': 22015, 'fuckfaces': 22016, 'occupied': 22017, 'incontrovertible': 22018, 'handclap': 22019, 'fitz': 22020, 'lancashire': 22021, 'lancashirehour': 22022, 'lifeatprime': 22023, 'attauthorizedretailer': 22024, 'law360': 22025, 'oped': 22026, 'experimental': 22027, 'omgg': 22028, 'labatt': 22029, 'cautiously': 22030, 'veto': 22031, 'choked': 22032, 'racialization': 22033, 'attach': 22034, 'notalwaysaboutyou': 22035, 'compassioninads': 22036, 'compassionatecommunity': 22037, 'dallascounty': 22038, 'pertinent': 22039, 'infront': 22040, 'nightly': 22041, 'andalucia': 22042, 'sanlucar': 22043, 'desert': 22044, 'biitches': 22045, 'jumanji': 22046, 'tinted': 22047, 'hater': 22048, 'golub': 22049, 'stroller': 22050, 'retailbusiness': 22051, 'omfg': 22052, 'eulogy': 22053, 'tamper': 22054, 'rmo': 22055, 'amrusha': 22056, 'amrushafightscovid19': 22057, 'amrushaeradicatinghunger': 22058, 'nijobs': 22059, 'sweeting': 22060, 'kyoto': 22061, 'macrobusiness': 22062, 'goodlettsville': 22063, 'southeastasian': 22064, 'middleeastern': 22065, 'bloom': 22066, 'precenting': 22067, '226k': 22068, '54k': 22069, 'taunt': 22070, 'hoardershaming': 22071, '25thamendmentnow': 22072, 'bunga': 22073, 'revoked': 22074, 'jfk': 22075, 'popeyes': 22076, 'coachj': 22077, 'submitting': 22078, 'impatient': 22079, 'descend': 22080, 'ditch': 22081, 'dampf': 22082, 'paramus': 22083, 'niche': 22084, 'precipitate': 22085, 'payworkersfairly': 22086, 'thrus': 22087, 'negligible': 22088, 'covoid19': 22089, 'emptystore': 22090, 'homesteading': 22091, 'homesteader': 22092, 'countryliving': 22093, 'countrylifestyle': 22094, 'countrylife': 22095, 'outdoorliving': 22096, 'outdoorlife': 22097, 'zoonosis': 22098, 'lancet': 22099, 'ecology': 22100, 'unnatural': 22101, 'ifmarkwatneycoulddoit': 22102, 'actualfacts': 22103, 'taliban': 22104, 'afghani': 22105, 'stronghold': 22106, 'valve': 22107, '2089': 22108, 'amusement': 22109, 'suv': 22110, 'systematically': 22111, 'suoermarket': 22112, 'outlive': 22113, 'zatural': 22114, 'mgnrega': 22115, 'deceleration': 22116, 'statcan': 22117, 'ded': 22118, 'peut': 22119, 'palisade': 22120, 'nicholas': 22121, 'bertram': 22122, 'suggestive': 22123, 'singlepoint': 22124, 'otcqb': 22125, 'sing': 22126, 'klen': 22127, '505': 22128, 'succumbs': 22129, 'cookinginacrisis': 22130, 'lighter': 22131, 'banter': 22132, 'gaming': 22133, 'aahh': 22134, 'c920s': 22135, 'secureyourinfo': 22136, 'alfred': 22137, 'dupuy': 22138, 'sono': 22139, 'hop': 22140, 'hehe': 22141, 'apt': 22142, 'unapologetic': 22143, 'comedic': 22144, 'downright': 22145, 'laughable': 22146, 'allender': 22147, 'stampitout': 22148, 'uktogether': 22149, 'integrated': 22150, 'dilutes': 22151, 'decreasing': 22152, 'xrp': 22153, 'spear': 22154, 'villager': 22155, 'gatsi': 22156, 'mutasa': 22157, 'searchenginemarketing': 22158, 'arguably': 22159, 'enthusiastically': 22160, 'wt': 22161, 'vessel': 22162, 'landingpage': 22163, 'contentcreator': 22164, 'inmate': 22165, 'zeppelin10': 22166, 'overloaded': 22167, 'roche': 22168, 'couriered': 22169, 'everydayimhustlin': 22170, 'snapped': 22171, 'outweighs': 22172, 'abd': 22173, 'contaminating': 22174, 'specimen': 22175, 'doom': 22176, 'undeserving': 22177, 'bubbly': 22178, 'belgique': 22179, 'ensemblecontrecorona': 22180, 'forextrading': 22181, 'marketnews': 22182, 'toyota': 22183, 'nissan': 22184, 'honda': 22185, 'automaker': 22186, 'fmcy': 22187, 'boksburg': 22188, 'axios': 22189, 'coronavaccine': 22190, 'hateisavirus': 22191, 'aapi': 22192, 'amplify': 22193, 'sasse': 22194, 'amdmt': 22195, 'bipartisan': 22196, 'hadda': 22197, 'heldmybreaththewholetime': 22198, 'lihue': 22199, '09093052802': 22200, 'ehub': 22201, 'node': 22202, 'reinforce': 22203, 'cgiar': 22204, 'maximizes': 22205, 'captaintrips': 22206, 'tpformybunghole': 22207, 'emphasised': 22208, 'picturesof': 22209, 'naiwan': 22210, 'ay': 22211, 'nissin': 22212, 'hpcl': 22213, 'cmd': 22214, 'mk': 22215, 'surana': 22216, 'dicuss': 22217, 'homedepot': 22218, 'etailer': 22219, 'mongolia': 22220, 'abruptly': 22221, 'northeastern': 22222, 'chipchirps': 22223, 'vlsiresearch': 22224, 'vlsi': 22225, 'ic': 22226, 'tmas': 22227, 'slid': 22228, 'influenced': 22229, 'cheerful': 22230, 'firebomb': 22231, 'ncb': 22232, 'tina': 22233, 'glnrtoday': 22234, 'inherently': 22235, 'unequal': 22236, 'microprocessing': 22237, 'digitallife': 22238, 'fueledby': 22239, 'damanding': 22240, 'pitiful': 22241, 'ohioprimary': 22242, 'jake': 22243, 'commenced': 22244, 'fbi': 22245, 'possession': 22246, 'cleaningmachine': 22247, 'leap': 22248, 'legco': 22249, 'virtuallybartable': 22250, 'oakland': 22251, 'dovish': 22252, 'datuk': 22253, 'jhawk': 22254, 'willfully': 22255, 'precise': 22256, 'hazmat': 22257, 'duck': 22258, 'revealing': 22259, 'elevate': 22260, 'consciousness': 22261, 'collectivemindpower': 22262, 'tov': 22263, 'vienna': 22264, 'motiongraphics': 22265, 'aftereffect': 22266, 'digitalart': 22267, 'visualeffects': 22268, 'vfx': 22269, 'cannon': 22270, 'realitycheck': 22271, 'telescope': 22272, 'examination': 22273, 'aways': 22274, 'unimpressed': 22275, 'mailorder': 22276, 'unpopular': 22277, 'amenity': 22278, 'rentstrike': 22279, 'rentrelief': 22280, 'greedoverpe': 22281, 'shal': 22282, 'frnds': 22283, 'lymphoma': 22284, 'chemotherapy': 22285, 'servicers': 22286, 'bulgaria': 22287, 'restoring': 22288, 'fav': 22289, 'rescheduling': 22290, 'bursting': 22291, 'sizeable': 22292, 'coronated': 22293, 'eyed': 22294, 'fixture': 22295, 'adulation': 22296, 'payphones': 22297, 'littlefireseverywhere': 22298, 'civet': 22299, 'kilowatt': 22300, 'lifespan': 22301, 'mustardoil': 22302, 'enginemustardoil': 22303, 'enginebrand': 22304, 'stayfit': 22305, 'hedger': 22306, 'feedlot': 22307, 'diverge': 22308, 'buffer': 22309, 'tasmanian': 22310, 'subsidised': 22311, 'ccea': 22312, 'approves': 22313, 'hogan': 22314, 'sagamore': 22315, 'aopportunities': 22316, 'industryanalysisadsmurai': 22317, 'kvoenews': 22318, 'butting': 22319, 'teeth': 22320, 'noonegoeshungry': 22321, 'evangelical': 22322, 'judaism': 22323, 'adopted': 22324, 'delimitation': 22325, 'isolationdiaries': 22326, 'coding': 22327, 'dnd': 22328, 'requiermasksworn': 22329, 'wearamask': 22330, 'zelle': 22331, '1952': 22332, 'trauma': 22333, 'thankunext': 22334, 'selfquarantined': 22335, 'guyzz': 22336, 'thepeople': 22337, 'anyhow': 22338, 'coronakrise': 22339, 'decontamination': 22340, 'coronavarkenruhhalim': 22341, 'waterpeacesecurity': 22342, 'debbie': 22343, 'dougherty': 22344, 'defecate': 22345, 'trinitysswellness': 22346, 'donegal': 22347, 'reassess': 22348, 'scarfacediary': 22349, 'worldhealthday2020': 22350, 'subzeroflow': 22351, 'relearn2020': 22352, 'toiletpaper911': 22353, 'desinfection': 22354, 'cineplex': 22355, 'pcl': 22356, 'bt13': 22357, 'bt12': 22358, 'soarin': 22359, 'toiletpaperblues': 22360, 'stenographer': 22361, 'spoof': 22362, 'sendhelp': 22363, 'coronaplus': 22364, 'polypropylene': 22365, 'decon': 22366, 'gorollick': 22367, 'powersports': 22368, 'jlmco': 22369, 'jlmcobrand': 22370, 'overcrowding': 22371, 'spre': 22372, 'cheapgas': 22373, 'precisely': 22374, 'deluge': 22375, 'marketwatch': 22376, 'brough': 22377, '1person': 22378, 'entryway': 22379, 'leveraging': 22380, 'methodology': 22381, 'bareshares': 22382, 'measuring': 22383, 'hkt': 22384, 'milkdumping': 22385, 'accentuated': 22386, 'jubilee': 22387, 'orchard': 22388, 'clavey': 22389, 'paddlesports': 22390, '826': 22391, 'contaminatedwithstupid': 22392, 'dontbeadick': 22393, 'monkey': 22394, 'lockedupwithatoddler': 22395, 'elbowing': 22396, 'collapsitarian': 22397, 'lasted': 22398, 'adidas': 22399, 'collab': 22400, 'ggsm': 22401, 'progess': 22402, 'ftxp': 22403, 'ewll': 22404, 'abce': 22405, 'biel': 22406, 'gcgx': 22407, 'tptw': 22408, 'fonu': 22409, 'pctl': 22410, 'fuelpricehike': 22411, 'scot': 22412, 'chihuahua': 22413, 'shortcrust': 22414, 'ukfood': 22415, 'lockdownmalaysia': 22416, 'prejudice': 22417, 'misperceptions': 22418, 'stupidly': 22419, 'nascar': 22420, 'deprivation': 22421, 'bootleg': 22422, 'reorganizing': 22423, 'redecorating': 22424, 'bucket': 22425, 'pibfactcheck': 22426, 'agoraphobia': 22427, 'justly': 22428, 'allocate': 22429, 'unjustly': 22430, 'illustrated': 22431, 'digitalmedia': 22432, 'digitalmarketers': 22433, 'whodat': 22434, 'cer': 22435, 'foremost': 22436, 'thx': 22437, 'givingback': 22438, 'guerlain': 22439, 'parfumschristiandior': 22440, 'diorparfums': 22441, 'dior': 22442, 'givenchybeauty': 22443, 'givenchy': 22444, 'optionalize': 22445, 'pilea': 22446, 'prayerplant': 22447, 'overwhelms': 22448, 'ope': 22449, 'pleasesomeonehelp': 22450, 'arvin': 22451, 'irrigation': 22452, 'hose': 22453, 'wefeedyou': 22454, 'davinci': 22455, 'gelato': 22456, 'operates': 22457, 'yegfoodie': 22458, 'edmontonlocal': 22459, 'stalbert': 22460, 'relearn': 22461, 'trinidad': 22462, 'tobago': 22463, 'qild': 22464, 'australiansbeingaustralians': 22465, 'hurtin': 22466, 'rotunden': 22467, 'dkk': 22468, 'smfh': 22469, 'docente': 22470, 'tiempos': 22471, 'enkil': 22472, 'michelle': 22473, 'louisvuitton': 22474, 'eczema': 22475, 'psoriasis': 22476, 'southbeachsymposium': 22477, 'dermatology': 22478, 'hinshaw': 22479, 'quarantinethoughts': 22480, 'crazytimes': 22481, 'sinc': 22482, 'foodprices': 22483, 'cursing': 22484, 'scrappage': 22485, '72m': 22486, 'heater': 22487, 'hct': 22488, 'oll': 22489, 'spilling': 22490, 'kohat': 22491, 'kp': 22492, 'dampness': 22493, 'kubwa': 22494, 'wan': 22495, 'spoil': 22496, 'aedc': 22497, 'kay': 22498, 'ducing': 22499, 'beautynews': 22500, 'welding': 22501, 'pfizer': 22502, 'lease': 22503, 'atl': 22504, 'nyy': 22505, 'harmed': 22506, 'preclude': 22507, 'relitigating': 22508, 'santamonica': 22509, 'trumprecession': 22510, 'verge': 22511, 'archaeologist': 22512, 'nash': 22513, 'l1jhx4wml': 22514, 'socialdistancehumor': 22515, 'stimuluspackage': 22516, 'dove': 22517, 'coronabullshit': 22518, 'cvirus': 22519, 'bloomin': 22520, 'pannier': 22521, 'flatbattery': 22522, 'itscoronatime': 22523, 'over40andfabulous': 22524, 'kevinhart': 22525, 'boredaf': 22526, 'bitcoins': 22527, 'iwasthinking': 22528, 'comical': 22529, 'interconnected': 22530, 'rampant': 22531, 'fatbergs': 22532, 'moovers': 22533, 'movingday': 22534, '458': 22535, 'dumbteens': 22536, 'lite': 22537, 'eau': 22538, 'parfum': 22539, 'restezchezvous': 22540, 'rafaelgonzalezesq': 22541, 'workerscompensation': 22542, 'mosque': 22543, 'kishon': 22544, 'quantum': 22545, 'fiatcurrency': 22546, 'samanthaellenlambert': 22547, 'businessfair': 22548, 'cludger': 22549, 'paradigmatic': 22550, 'netfl': 22551, 'prakash': 22552, 'statistical': 22553, 'importbills': 22554, '6months': 22555, 'courteously': 22556, 'reasoning': 22557, 'ongt': 22558, 'gwa': 22559, 'upfront': 22560, 'taro': 22561, 'aso': 22562, 'taroaso': 22563, 'consumptiontax': 22564, 'financeministry': 22565, 'bandit': 22566, 'midweek': 22567, 'weber': 22568, 'shandwick': 22569, 'bcw': 22570, 'amo': 22571, 'constellation': 22572, 'onlywith': 22573, 'retailwire': 22574, 'braintrust': 22575, 'ken': 22576, 'dialog': 22577, 'idiopathic': 22578, 'aggression': 22579, 'suriname': 22580, 'sao': 22581, 'tome': 22582, 'principe': 22583, 'everlywell': 22584, 'donaldjtrump': 22585, 'trumpdemic': 22586, 'cellular': 22587, 'saar': 22588, 'devon': 22589, 'phillips66': 22590, 'continental': 22591, 'harold': 22592, 'hamm': 22593, 'swachhabit': 22594, 'swasthbharat': 22595, 'cvoid19': 22596, 'coronakodhona': 22597, 'interpreted': 22598, 'vt': 22599, 'seized': 22600, 'spiritedaway': 22601, 'steroplast': 22602, 'tsos': 22603, 'positioning': 22604, 'clipper': 22605, '2b': 22606, 'outbid': 22607, 'almost800': 22608, 'eway': 22609, 'stayingintouch': 22610, 'puttingclientsfirst': 22611, 'casemanagement': 22612, 'oriental': 22613, 'tsar': 22614, '345': 22615, 'negotiate': 22616, 'abc7ny': 22617, 'abcnews': 22618, 'propertymarket': 22619, 'circulated': 22620, 'zionist': 22621, 'naturalproducts': 22622, 'lavender': 22623, 'naturalhandsanitizer': 22624, 'nushratbharucha': 22625, 'bandra': 22626, 'neologism': 22627, 'troopermarket': 22628, 'guarded': 22629, 'deliverer': 22630, '00hrs': 22631, 'inadvertently': 22632, 'contageous': 22633, 'echoshow': 22634, 'echo': 22635, 'smartome': 22636, 'nationalbeerday': 22637, 'hipster': 22638, 'dreamed': 22639, 'frozenfoods': 22640, 'refrigeratedfoods': 22641, 'tt21csatoh': 22642, 'falcone': 22643, 'wanstead': 22644, 'pairwise': 22645, 'choosehope': 22646, 'abortionisessential': 22647, 'wound': 22648, 'teargasing': 22649, 'tfw': 22650, 'happiest': 22651, 'truerfacts': 22652, 'amnotwriting': 22653, 'php5': 22654, 'php8': 22655, 'yoorekka': 22656, 'socialimprovement': 22657, 'clique': 22658, 'deadlier': 22659, 'madeinamerica': 22660, 'weknowplay': 22661, 'alqesieei': 22662, 'mbz': 22663, 'irreparable': 22664, 'steroid': 22665, 'dramatise': 22666, 'nuance': 22667, 'hodl': 22668, 'xrpcommunity': 22669, 'pw': 22670, 'childpoverty': 22671, 'defining': 22672, 'manoj': 22673, 'jinia': 22674, 'sarkar': 22675, 'prativa': 22676, 'adamas': 22677, 'adamasuniversity': 22678, 'educationplus': 22679, 'soonest': 22680, 'demon': 22681, 'phased': 22682, 'peoplearelosingtheirminds': 22683, 'straw': 22684, 'camel': 22685, 'mami': 22686, 'mammoth': 22687, 'here2help': 22688, 'remoteworking': 22689, 'premierleague': 22690, 'homecoming': 22691, '8nn': 22692, 'upmarket': 22693, 'ezinne': 22694, 'aja': 22695, 'yan': 22696, 'supportive': 22697, '2w': 22698, 'hooked': 22699, 'maw': 22700, 'bhagat': 22701, 'shaktikanta': 22702, 'realistically': 22703, 'nerve': 22704, 'economicimpact': 22705, 'onlinesales': 22706, 'blyth': 22707, 'queses': 22708, 'activating': 22709, 'trumpet': 22710, 'convincing': 22711, 'delete': 22712, 'peopleoverprofit': 22713, 'precipitously': 22714, 'attrition': 22715, 'thame': 22716, 'haddenham': 22717, 'longcrendon': 22718, 'chinnor': 22719, '250rs': 22720, 'villa': 22721, '6km': 22722, 'ghanaian': 22723, 'mechanism': 22724, 'citic': 22725, 'emblematic': 22726, 'instill': 22727, 'promach': 22728, 'labelers': 22729, 'comix': 22730, '480ml': 22731, 'l902': 22732, 'riaa': 22733, 'soccer': 22734, 'moines': 22735, 'ia': 22736, 'mahesh': 22737, 'vyas': 22738, 'cmie': 22739, 'buxton': 22740, 'brooke': 22741, 'deloitte': 22742, 'toriesout': 22743, 'depresses': 22744, 'outweighing': 22745, 'randomness': 22746, 'wilderness': 22747, 'vanity': 22748, 'brainier': 22749, 'oddball': 22750, 'gnc': 22751, 'shoppe': 22752, 'cornered': 22753, 'pac': 22754, 'clements': 22755, 'weymouth': 22756, 'gargle': 22757, 'throatinfection': 22758, 'bushy': 22759, 'bearded': 22760, 'abdulaziz': 22761, 'keepingbritainmoving': 22762, 'paperindustry': 22763, 'transformation': 22764, 'infirm': 22765, 'dashing': 22766, 'bvi': 22767, 'raygun': 22768, 'tan': 22769, 'beforethe90days': 22770, '692692': 22771, 'usmc': 22772, 'usmilitary': 22773, 'uptrend': 22774, 'gliumedia': 22775, 'stpete': 22776, 'juststop': 22777, 'stayoutofthestore': 22778, 'askskynews': 22779, 'amvca': 22780, 'err': 22781, 'quarantiners': 22782, 'jib': 22783, 'offending': 22784, 'extremly': 22785, 'cud': 22786, 'freefall': 22787, 'crewe': 22788, 'trainfailure': 22789, 'm6': 22790, 'wobble': 22791, 'douse': 22792, 'pantryrecipes': 22793, 'sidedish': 22794, 'motherly': 22795, 'annabelle': 22796, 'doometernal': 22797, 'gadbookclub': 22798, 'kidkrow': 22799, 'ventilated': 22800, 'kmu': 22801, 'panay': 22802, 'piston': 22803, 'repack': 22804, 'kamudirumahya': 22805, 'csnewsonline': 22806, 'rcmp': 22807, 'shoplifter': 22808, 'toiletpapercastle': 22809, 'toiletpaperfort': 22810, 'parasite': 22811, 'fatherdmw': 22812, 'asuu': 22813, 'mc': 22814, 'olumo': 22815, 'ozzy': 22816, 'efcc': 22817, 'agegeunrest': 22818, 'johnclive': 22819, 'hypothetically': 22820, '700cr': 22821, '100cr': 22822, '200cr': 22823, 'jln': 22824, '500cr': 22825, 'rajiv': 22826, 'whitehousebriefing': 22827, 'implented': 22828, 'positively': 22829, 'synclarity': 22830, 'flipped': 22831, 'richer': 22832, 'yeswaystores': 22833, 'loyalist': 22834, 'cargo': 22835, 'slippin': 22836, 'lamu': 22837, 'bra': 22838, 'aquaman': 22839, 'ressurected': 22840, '12am': 22841, 'existent': 22842, 'gafoors': 22843, 'imcresed': 22844, 'plss': 22845, 'bugging': 22846, 'departmentofhealth': 22847, 'rdp': 22848, 'tidbit': 22849, 'elcome': 22850, 'admiralty': 22851, 'nautical': 22852, 'swift': 22853, 'stmarysco': 22854, 'whig': 22855, '68': 22856, 'gta': 22857, 'lockdownontario': 22858, '8th': 22859, 'grader': 22860, 'publicized': 22861, 'a00': 22862, 'ingot': 22863, 'rmb570': 22864, 'alumina': 22865, 'rmb32': 22866, 'a00aluminium': 22867, 'aluminaprice': 22868, 'alcircle': 22869, 'chilloraspitter': 22870, 'spittingonfruit': 22871, 'spreadingvirus': 22872, 'spittingonproduce': 22873, 'lowtrust': 22874, 'waffle': 22875, 'stomping': 22876, 'untill': 22877, 'incourage': 22878, 'proudest': 22879, 'pacificcolorgraphics': 22880, 'ping': 22881, 'pong': 22882, 'ancillaries': 22883, 'hoardshaming': 22884, 'lockdown2': 22885, 'meatpackers': 22886, 'ff7r': 22887, 'dumper': 22888, 'memestagram': 22889, 'whoslaughingnow': 22890, 'masshysteria': 22891, 'notsofunny': 22892, 'mull': 22893, 'carb': 22894, 'cca': 22895, 'protecteveryone': 22896, 'ranging': 22897, 'microsoftads': 22898, 'cincy': 22899, 'ludacris': 22900, 'postbox': 22901, 'roundup': 22902, 'beconsiderate': 22903, 'wearamaskinpublic': 22904, 'donttouchyourface': 22905, 'dontstandtoclosetome': 22906, 'banegaswasthindia': 22907, 'minimizes': 22908, 'rambling': 22909, 'countryside': 22910, 'drie': 22911, 'bettel': 22912, 'truthout': 22913, 'sherlock': 22914, 'ref': 22915, 'wildalaskapollock': 22916, 'elusive': 22917, 'nautic': 22918, 'saucer': 22919, 'retreated': 22920, 'rabid': 22921, 'faux': 22922, 'neglected': 22923, 'groceryindustry': 22924, 'onlinegrocery': 22925, 'localstores': 22926, 'fooddeliveryapp': 22927, 'thalis': 22928, 'frog': 22929, 'fayville': 22930, 'kinlaw': 22931, 'leavitt': 22932, 'prod': 22933, 'yogurt': 22934, 'maneuvered': 22935, 'vogel': 22936, 'jeopardized': 22937, 'news12': 22938, 'nycs': 22939, 'cumberland': 22940, 'becuase': 22941, 'wyt': 22942, 'consumerpsychology': 22943, 'disasterpreparedness': 22944, 'morton': 22945, 'ultimatum': 22946, 'recreate': 22947, 'clapat8': 22948, 'shoddy': 22949, 'sencorp': 22950, 'calmed': 22951, 'askreuters': 22952, 'selfisolate': 22953, '3months': 22954, 'tactile': 22955, 'makazoti': 22956, 'mabcp': 22957, 'enyu': 22958, 'akamira': 22959, '855': 22960, '9507': 22961, 'pete': 22962, 'stayho': 22963, '21days': 22964, 'treacherous': 22965, 'thur': 22966, 'shortness': 22967, 'discharged': 22968, 'mahindra': 22969, 'beverly': 22970, '192': 22971, 'pct': 22972, 'siouxland': 22973, 'fortinos': 22974, 'ruining': 22975, 'bolted': 22976, 'randpaul': 22977, 'haiti': 22978, 'pandaemonium': 22979, 'nationalexpress': 22980, 'wbz': 22981, 'eo': 22982, 'chittagong': 22983, 'chakaria': 22984, 'coxsbazar': 22985, 'surefire': 22986, 'henk': 22987, 'zwoferink': 22988, 'rgl': 22989, 'workinghard': 22990, 'respecting': 22991, 'dedicatedpeople': 22992, 'millenniumbug': 22993, 'argy': 22994, 'bargy': 22995, 'y2kbug': 22996, 'y2k2dpanic': 22997, 'broendby': 22998, 'pictureeditor': 22999, 'ida': 23000, 'guldbaek': 23001, 'arentsen': 23002, 'murderer': 23003, 'handkerchief': 23004, 'stoppage': 23005, 'nrtnews': 23006, 'workaround': 23007, 'vpns': 23008, 'dataprotection': 23009, 'hallway': 23010, 'insurtech': 23011, 'materialised': 23012, 'digitalisation': 23013, 'howtoloseaguyintendays': 23014, 'howtokeepaguyfortendays': 23015, 'quilton': 23016, 'tinder': 23017, 'netflixandchill': 23018, 'cest': 23019, 'futureconsumernow': 23020, 'branson': 23021, 'artofthewipe': 23022, 'helpushelpyou': 23023, 'bekindtooneanother': 23024, 'babysitting': 23025, 'seaborne': 23026, 'sequentially': 23027, 'incentivizing': 23028, 'wildcard': 23029, 'stopstocking': 23030, 'latenightstudio': 23031, 'edmfam': 23032, 'edmlife': 23033, 'deathmetal': 23034, 'pineda230': 23035, 'druggist': 23036, 'flirting': 23037, 'prolly': 23038, 'hullootrahihai': 23039, 'pausing': 23040, 'accumulation': 23041, 'portrait': 23042, '155': 23043, '709': 23044, 'workera': 23045, 'documentation': 23046, 'twitterstorians': 23047, 'endsnow': 23048, 'blindingly': 23049, 'frivolous': 23050, 'garibay': 23051, 'outspoken': 23052, 'geissler': 23053, 'scumbag': 23054, 'painkiller': 23055, 'brandenburg': 23056, 'quicker': 23057, 'meh': 23058, 'webiar': 23059, 'wrawp': 23060, 'healthyandtasty': 23061, 'nomeatnoproblem': 23062, 'plantbased': 23063, 'collaborative': 23064, 'disarray': 23065, 'r80': 23066, 're3': 23067, 'valentine': 23068, 'unplayable': 23069, 'residentevil3remake': 23070, 'mooc': 23071, '140k': 23072, 'trifold': 23073, 'keepingup': 23074, 'positivenews': 23075, 'spammer': 23076, 'protectyourfamily': 23077, 'personalprotectionequipments': 23078, 'commando': 23079, 'aacounty': 23080, 'teleprompter': 23081, 'staffer': 23082, 'coconut': 23083, 'gilligansisland': 23084, 'theprofessoe': 23085, 'gilligan': 23086, 'theskipper': 23087, 'themillionaireandhiswife': 23088, 'themoviestar': 23089, 'maryann': 23090, 'castaway': 23091, 'hopped': 23092, 'pear': 23093, 'shameonhul': 23094, 'minnetonka': 23095, 'seahawks': 23096, 'celebfcfamily': 23097, 'impervious': 23098, '510k': 23099, 'yantongtech': 23100, 'funnycomic': 23101, 'phall': 23102, 'intervenes': 23103, 'curbing': 23104, 'sensitive': 23105, 'har': 23106, 'superdrugs': 23107, 'pizzeria': 23108, 'arise': 23109, 'enacting': 23110, 'longlines': 23111, 'videoconferencecallicebreaker': 23112, 'buybandmerch': 23113, 'supportlivemu': 23114, 'seater': 23115, 'prayfornigeria': 23116, 'watiyankha': 23117, 'soy': 23118, 'letsplayagame': 23119, 'mushy': 23120, 'retailheroes': 23121, 'dialing': 23122, 'bruceleroy': 23123, 'thelastdragon': 23124, 'shonuff': 23125, 'shogunofharlem': 23126, 'sundayfunday': 23127, 'liveyourbestlife': 23128, 'locates': 23129, 'erased': 23130, 'munya': 23131, 'unwarranted': 23132, 'bt19': 23133, 'talented': 23134, 'bogart': 23135, 'exert': 23136, 'extracted': 23137, 'carcase': 23138, 'distort': 23139, 'truman': 23140, 'inherent': 23141, 'jbarreralaw': 23142, 'endemic': 23143, 'ratehub': 23144, '23k': 23145, 'korang': 23146, 'berpusu': 23147, 'pusu': 23148, 'beratur': 23149, 'tu': 23150, 'chishimba': 23151, 'kopalasmostloved': 23152, 'emptiness': 23153, 'egoistic': 23154, 'weakest': 23155, 'hamstern': 23156, '1945': 23157, 'babyboom2020': 23158, 'diced': 23159, 'furn': 23160, 'shebbak': 23161, 'sollom': 23162, 'unfold': 23163, 'whoateallthepies': 23164, 'brocklebank': 23165, 'hers': 23166, 'beerforkeir': 23167, 'keepingtheukconnected': 23168, 'argues': 23169, 'redid': 23170, 'creature': 23171, 'vsp': 23172, 'wigamesnightcaribbean': 23173, 'specified': 23174, 'kotak': 23175, 'nbfcs': 23176, 'comparti': 23177, 'esta': 23178, 'nosotros': 23179, 'donde': 23180, 'trabajaba': 23181, 'fresas': 23182, 'despu': 23183, 'lluvia': 23184, 'semana': 23185, 'frontpage': 23186, 'flourishing': 23187, 'reunite': 23188, 'cfc84': 23189, 'freddy': 23190, 'krueger': 23191, '19950101': 23192, 'studentloans': 23193, 'fayettevillear': 23194, 'nwark': 23195, 'precedented': 23196, 'docket': 23197, 'wholeheartedly': 23198, 'tt': 23199, 'inconsideration': 23200, 'myers': 23201, 'michaelmyers': 23202, 'evdekal': 23203, 'careaboutotherpeople': 23204, 'lover': 23205, 'indipendents': 23206, 'lunchtime': 23207, 'teammate': 23208, 'nopee': 23209, 'regretting': 23210, 'bisleri': 23211, 'combine': 23212, 'fincen': 23213, 'chadwick': 23214, 'bps': 23215, 'stayhealthstayathome': 23216, 'milled': 23217, 'avesta': 23218, 'srapionov': 23219, 'uzbekistan': 23220, 'anx': 23221, 'confessing': 23222, 'brainstorm': 23223, 'capitec': 23224, 'kerzner': 23225, 'busines': 23226, 'electrosan': 23227, 'cheshirebusiness': 23228, 'cripple': 23229, '2cchpszvpk': 23230, 'lyckszozqf': 23231, 'closeyourdoors': 23232, 'levitation': 23233, 'denton': 23234, 'deflationary': 23235, 'erupted': 23236, 'trav': 23237, 'kidstogether': 23238, 'youngrappers': 23239, 'funnyvideo': 23240, 'doublestandards': 23241, 'stopbeingdicks': 23242, 'teasmith': 23243, '2kill': 23244, '2the': 23245, 'martini': 23246, 'krisiallen': 23247, 'shieet': 23248, 'naga': 23249, 'imt': 23250, 'adheres': 23251, 'nec': 23252, 'aoc': 23253, 'mushroom': 23254, 'remake': 23255, 'affiliation': 23256, 'forty': 23257, 'pincher': 23258, 'pond': 23259, 'disturbed': 23260, '1t': 23261, 'saud': 23262, 'especial': 23263, 'hdmotors': 23264, 'kathmandu': 23265, 'heeley': 23266, 'tilt': 23267, 'cleantech': 23268, 'cleanenergy': 23269, 'ceausescu': 23270, 'tempting': 23271, 'clog': 23272, 'ufifas': 23273, 'aquilo': 23274, 'venho': 23275, 'sofrer': 23276, 'janeiro': 23277, 'snood': 23278, 'externality': 23279, 'pigouviantax': 23280, 'wordcloud': 23281, 'americanconsumers': 23282, 'socialintelligence': 23283, 'socialanalytics': 23284, 'fishbulb': 23285, 'cheddar': 23286, 'rst': 23287, 'zew': 23288, 'rstjokeimdaswelt': 23289, 'solves': 23290, 'hunkerdown': 23291, 'pervasive': 23292, 'semiconductoranalytics': 23293, 'defensive': 23294, 'microchip': 23295, 'infinitesimal': 23296, 'programmed': 23297, 'bioahazard': 23298, 'biohazardband': 23299, 'lopsided': 23300, 'pandemicpreparedness': 23301, 'rollstp': 23302, 'filt': 23303, 'counseling': 23304, '5124': 23305, 'zip': 23306, 'trumpsupporters': 23307, 'existence': 23308, 'sauntered': 23309, 'usain': 23310, 'bolt': 23311, 'galway': 23312, '937': 23313, 'thinkbig': 23314, 'cryptoc': 23315, 'outbidding': 23316, 'tagging': 23317, 'savile': 23318, 'jacuzzi': 23319, 'anheuserbusch': 23320, 'relentlessly': 23321, 'flexed': 23322, 'sticktogether': 23323, 'andreas': 23324, '3yr': 23325, 'pl': 23326, 'thosewerethedays': 23327, 'ijustwantedtomakebreakfast': 23328, 'donttouchme': 23329, 'blindspot': 23330, 'truestory': 23331, 'minxy': 23332, 'kearneymea': 23333, 'commissioned': 23334, 'blinking': 23335, 'devoe': 23336, 'owl': 23337, 'brighter': 23338, 'dim': 23339, 'orbit': 23340, 'maddening': 23341, 'renamed': 23342, 'jackass': 23343, 'tosser': 23344, 'bbcbreakfast': 23345, 'selfcaresunday': 23346, 'auntie': 23347, 'pedophile': 23348, 'keenly': 23349, 'knucklehead': 23350, 'collapse2020': 23351, 'brix': 23352, 'ofori': 23353, '5bn': 23354, 'agric': 23355, 'tv3newday': 23356, 'buzzer': 23357, 'defend': 23358, 'blew': 23359, 'cuffing': 23360, 'deleting': 23361, 'takemeback': 23362, 'ayuk': 23363, 'unofficial': 23364, 'bts': 23365, 'bighit': 23366, 'twt': 23367, 'hereos': 23368, 'sau': 23369, 'whpresser': 23370, 'healthcaretech': 23371, 'digitalhealth': 23372, 'directs': 23373, 'homepage': 23374, 'casey': 23375, 'critter': 23376, 'sitter': 23377, '844': 23378, '9554': 23379, 'diluted': 23380, 'lindsayfield': 23381, 'kilbride': 23382, 'manasarovar': 23383, 'ushodyay': 23384, 'knos': 23385, 'convid9': 23386, 'benifit': 23387, 'globalising': 23388, 'phanish': 23389, 'puranam': 23390, 'plano': 23391, 'flushable': 23392, 'wetwipes': 23393, '35bn': 23394, '316day': 23395, 'servicedog': 23396, 'hardtimes': 23397, 'furbabylove': 23398, 'cbdofri': 23399, 'canamed': 23400, 'boomerconsumer': 23401, 'whatwouldmojodo': 23402, 'istandwiththepresident': 23403, 'cashinginonacrisis': 23404, 'boycot': 23405, 'alhamdulillah': 23406, 'failsworth': 23407, 'oldham': 23408, 'foodparcel': 23409, 'mancity': 23410, 'needhelp': 23411, 'evisceration': 23412, 'ministerial': 23413, 'blunder': 23414, 'dropoff': 23415, 'ngl': 23416, 'theoffice': 23417, 'brevity': 23418, 'dawned': 23419, 'watcher': 23420, 'switzer': 23421, 'stapledon': 23422, 'houseprices': 23423, 'barging': 23424, '2ft': 23425, 'dietician': 23426, 'gunna': 23427, 'nonporous': 23428, '18k': 23429, 'tamu': 23430, 'jackdaniels': 23431, 'hughes': 23432, '15b': 23433, 'impairment': 23434, 'citing': 23435, 'mor': 23436, 'communal': 23437, 'westmemphis': 23438, 'mcclendon': 23439, 'wapuu': 23440, 'americanheroes': 23441, 'trademe': 23442, 'harbinger': 23443, 'fatality': 23444, 'tryplants': 23445, 'goplantbased': 23446, 'vegandiet': 23447, 'headache': 23448, 'lunacy': 23449, 'ebolavirus': 23450, 'snl': 23451, 'follome': 23452, 'retweetme': 23453, '411': 23454, 'shoppi': 23455, 'drift': 23456, 'drongo': 23457, 'mogadon': 23458, 'basicincome': 23459, 'counteract': 23460, 'strive': 23461, 'styrene': 23462, 'quezon': 23463, 'profitably': 23464, 'giveanditshallbegiven': 23465, 'heavenseconomy': 23466, 'blessedbeyondmeasure': 23467, 'rationality': 23468, 'objectivity': 23469, 'economicstimulus': 23470, 'defiant': 23471, 'gourav': 23472, 'vishwakarma': 23473, 'berkhera': 23474, 'pathani': 23475, 'bhopal': 23476, 'madhya': 23477, 'expedited': 23478, 'innovating': 23479, 'resentment': 23480, '1986': 23481, 'cautiousness': 23482, 'cemented': 23483, '10c': 23484, 'acetaminophen': 23485, 'kwality': 23486, 'ludhiana': 23487, 'unbearable': 23488, 'datascience': 23489, 'abi': 23490, 'wooglobe': 23491, 'spiralling': 23492, 'grossed': 23493, 'curiosity': 23494, 'bathrobe': 23495, 'speedo': 23496, 'dreamt': 23497, 'hemorrhage': 23498, 'everyting': 23499, 'bigshop': 23500, 'cyberbullying': 23501, 'concealer': 23502, 'chewing': 23503, 'gum': 23504, 'pringles': 23505, 'manual': 23506, 'loop': 23507, 'pakistnai': 23508, 'gridlock': 23509, 'nea': 23510, 'sidelined': 23511, 'contaminant': 23512, 'saturdayshoutout': 23513, '5amwritersclub': 23514, 'matched': 23515, 'caseload': 23516, 'adviceline': 23517, '0344': 23518, '477': 23519, '1171': 23520, 'hyperdrive': 23521, 'onitsha': 23522, 'sensitized': 23523, 'bbdelivers': 23524, 'justritehomedelivery': 23525, '218': 23526, 'germtransfer': 23527, 'healthworkers': 23528, 'curbsidepickup': 23529, 'trumpcountry': 23530, 'grandforksfinest': 23531, 'grandforksstrong': 23532, '371': 23533, '159': 23534, 'selfquarantineandchill': 23535, 'ucr': 23536, 'hazardous': 23537, 'antiaging': 23538, 'gether': 23539, 'roaming': 23540, 'kilcock': 23541, 'kildare': 23542, 'bleaching': 23543, 'rick': 23544, 'buybritish': 23545, 'sustained': 23546, 'seemslegit': 23547, 'westernjournal': 23548, 'thewesternjournal': 23549, 'nastiness': 23550, 'elnenythings': 23551, 'relied': 23552, 'simplest': 23553, 'formulation': 23554, '1gal': 23555, 'comfy': 23556, 'ferret': 23557, 'dontforgetyourpets': 23558, 'whipsawed': 23559, 'psych': 23560, 'hoboken': 23561, '255': 23562, 'paidleaveforall': 23563, 'overhear': 23564, 'classless': 23565, 'academictwitter': 23566, 'bagged': 23567, 'derrick': 23568, 'chubbs': 23569, 'waay': 23570, 'pressrelease': 23571, 'ktv': 23572, 'moring': 23573, 'day8': 23574, 'bnm': 23575, 'dimmed': 23576, 'axaltabrightfutures': 23577, 'chemistryfightscovid': 23578, 'medicinal': 23579, 'chn': 23580, 'edutwitter': 23581, 'shakeup': 23582, 'montgomery': 23583, 'angelamerkel': 23584, 'shrinking': 23585, 'nig': 23586, 'oilfield': 23587, 'analystopinion': 23588, 'levy': 23589, 'humbly': 23590, 'dag': 23591, 'rippling': 23592, 'societal': 23593, 'crimp': 23594, 'cherry': 23595, 'goettingen': 23596, 'skyrock': 23597, 'worldpoetryday': 23598, 'juststopit': 23599, 'preexisting': 23600, '438': 23601, 'trebilcock': 23602, '60th': 23603, 'thinblueline': 23604, 'whip': 23605, 'durbin': 23606, 'luminate': 23607, 'seattlecovid19': 23608, 'seattlelockdown': 23609, 'truely': 23610, 'acknowledging': 23611, 'gentle': 23612, 'franchisees': 23613, 'leniency': 23614, 'murdered': 23615, 'avenge': 23616, 'losangeleslockdown': 23617, 'thisisnuts': 23618, 'inverness': 23619, 'presenting': 23620, 'roe': 23621, '845': 23622, '651': 23623, '4025': 23624, 'orangecounty': 23625, 'warwickny': 23626, 'floridany': 23627, 'goshenny': 23628, 'almond': 23629, '6t': 23630, 'macdill': 23631, 'breakout': 23632, 'gradual': 23633, 'cuarentenaobligatoriaya': 23634, 'withdrawn': 23635, 'thisisww3': 23636, 'koka': 23637, 'happybirthday': 23638, 'sweet16': 23639, 'gene': 23640, 'plauge': 23641, 'gunk': 23642, 'wiggle': 23643, 'ohtobebacktonormal': 23644, 'easter2020': 23645, 'overnights': 23646, 'findthegood': 23647, 'brightside': 23648, 'overdirty': 23649, 'grievance': 23650, 'claire': 23651, 'piper1': 23652, 'norwich': 23653, 'ipswich': 23654, 'burystedmunds': 23655, 'cozy': 23656, 'dyk': 23657, 'depts': 23658, 'budens': 23659, '15k': 23660, 'chang': 23661, 'bailed': 23662, 'voteblue': 23663, 'presentation': 23664, 'sessi': 23665, 'khopoli': 23666, 'maharastra': 23667, 'hamsterkauf': 23668, 'kaufen': 23669, 'brazen': 23670, 'kootenay': 23671, 'actresponsible': 23672, 'broz': 23673, '07767164246': 23674, 'salmafoodbank': 23675, 'beardedbroz': 23676, 'chek': 23677, 'staywoke': 23678, 'lever': 23679, 'spoonsub': 23680, 'spoonspig': 23681, 'spoonssub': 23682, 'spoonslave': 23683, 'spoonsslave': 23684, 'findom': 23685, 'finsub': 23686, 'paypig': 23687, 'walletrinse': 23688, 'moneyslave': 23689, 'humanotm': 23690, 'cashpig': 23691, 'namin': 23692, 'shamin': 23693, 'callitout': 23694, 'fbpe': 23695, 'endlessly': 23696, 'cpp': 23697, 'scoop': 23698, 'xdna': 23699, '16645': 23700, '16973': 23701, 'idyllwild': 23702, 'joshua': 23703, 'toughness': 23704, 'itchey': 23705, 'hangnail': 23706, 'buffalo': 23707, 'mutton': 23708, '560': 23709, 'piccard': 23710, 'viruschina': 23711, 'uninfected': 23712, 'meepl': 23713, 'fision': 23714, 'coronanederland': 23715, 'obscure': 23716, 'mesh': 23717, 'synthetic': 23718, 'filtratio': 23719, 'starved': 23720, 'pragati': 23721, 'bhawan': 23722, 'totalitarianism': 23723, 'debashish': 23724, 'mukherjee': 23725, 'mea': 23726, 'determination': 23727, '610': 23728, 'crtuck': 23729, 'apperantly': 23730, 'tightens': 23731, 'grinning': 23732, 'outreach': 23733, 'mole': 23734, 'jock': 23735, 'youcantaskthat': 23736, 'devastated': 23737, '2005': 23738, 'studied': 23739, 'rollouts': 23740, 'yahuah': 23741, 'henryk': 23742, 'borawski': 23743, 'wikimedia': 23744, 'cosigned': 23745, 'decisively': 23746, 'derby': 23747, 'lib': 23748, 'ajit': 23749, 'atwal': 23750, 'karl': 23751, 'racine': 23752, 'briefly': 23753, 'devics': 23754, 'finrite': 23755, 'lockdownextention': 23756, 'indian2': 23757, 'seniors2020': 23758, 'buggered': 23759, 'webstore': 23760, 'patriotism': 23761, 'jaihind': 23762, 'twas': 23763, 'southendclt': 23764, 'faggot': 23765, 'abbott': 23766, 'marythuoreality': 23767, 'cooperating': 23768, 'malaysia2020': 23769, 'homeworker': 23770, 'quarantineaintsobad': 23771, 'newsyoucanuse': 23772, 'isitok': 23773, 'maintan': 23774, 'hash': 23775, 'prolongs': 23776, 'judicial': 23777, 'becerra': 23778, 'kiddo': 23779, 'momhack': 23780, 'groceryrun': 23781, 'gratitudeistheattitude': 23782, 'agile': 23783, 'marmite': 23784, 'somkid': 23785, 'vanpoli': 23786, 'evict': 23787, 'lockdownghana': 23788, 'troubling': 23789, 'shitload': 23790, 'maher': 23791, 'azfaal': 23792, 'alter': 23793, 'mongerer': 23794, 'competitively': 23795, 'leaned': 23796, 'emergencyubi': 23797, 'peoplevspelosi': 23798, 'peoplevsschumer': 23799, 'yanggang': 23800, 'homecarers': 23801, 'toryshambles': 23802, 'nmdc': 23803, 'spud': 23804, 'ecogarden': 23805, 'azamax': 23806, 'parryamerica': 23807, 'organicpesticides': 23808, 'outnumber': 23809, 'mcconnell': 23810, 'blasio': 23811, 'angrily': 23812, 'crusty': 23813, 'lens': 23814, 'tweezer': 23815, 'holdchinaaccountable': 23816, 'overflow': 23817, 'amazonprimenow': 23818, 'publixdelivery': 23819, 'readerscommunity': 23820, 'calculation': 23821, 'ididnothoard': 23822, 'ispellzgood': 23823, 'whille': 23824, 'splatoon2': 23825, 'splatoon': 23826, 'wiggers': 23827, 'mcobooktitles': 23828, 'roulette': 23829, 'baffled': 23830, 'shepherd': 23831, 'electrical': 23832, 'unknowingly': 23833, 'explored': 23834, 'unconventional': 23835, 'legging': 23836, 'mazal': 23837, 'uncle': 23838, 'ranch': 23839, 'ishouldntbringthisup': 23840, 'outbreak247': 23841, 'redeploy': 23842, 'missive': 23843, 'ubiquity': 23844, 'thao': 23845, 'gaslighting': 23846, 'anthem': 23847, 'thingstodowithkids': 23848, 'teamboss': 23849, 'jobsite': 23850, 'bosscrane': 23851, 'localfoodtrucks': 23852, 'cranelife': 23853, 'windfarm': 23854, 'ontag': 23855, 'threeseashells': 23856, 'demolitionman': 23857, '10yrs': 23858, 'translation': 23859, 'fleer': 23860, 'classwarfare': 23861, 'hawke': 23862, 'innate': 23863, 'laziness': 23864, 'overrules': 23865, 'mingling': 23866, 'sprung': 23867, 'spender': 23868, 'pittis': 23869, 'confuse': 23870, 'nymc': 23871, 'nymcshsp': 23872, 'letsnotbecomeitaly': 23873, 'spoiled': 23874, 'anc': 23875, 'trepidation': 23876, 'gmsd': 23877, 'repurchased': 23878, 'loius': 23879, 'gucci': 23880, 'hugo': 23881, 'blvgari': 23882, 'coronainafrica': 23883, 'drphil': 23884, 'tafara': 23885, 'simms': 23886, 'median': 23887, '193': 23888, '271': 23889, 'langoliers': 23890, 'newjobs': 23891, 'shenley': 23892, 'superdry': 23893, 'fashionnews': 23894, 'athens': 23895, 'scentiva': 23896, 'foodhoarding': 23897, 'medieval': 23898, 'streamlined': 23899, 'nycidiots': 23900, 'longisland': 23901, 'southampton': 23902, 'blacktwitter': 23903, 'sicker': 23904, 'postpones': 23905, 'engineering': 23906, 'emaswati': 23907, 'bcz': 23908, 'chakkar': 23909, 'raha': 23910, 'dekhke': 23911, 'ayega': 23912, 'mette': 23913, 'frederiksen': 23914, 'lined': 23915, 'shakeout': 23916, 'pcr': 23917, 'classifies': 23918, 'consumerdata': 23919, 'regina': 23920, 'yqr': 23921, 'workload': 23922, 'eastanglia': 23923, 'gronks': 23924, 'pnp': 23925, 'qldpol': 23926, 'costessey': 23927, 'askmeanything': 23928, 'heiliger': 23929, 'strohsack': 23930, 'pehle': 23931, 'thestruggleisreal': 23932, 'aisect': 23933, 'initiated': 23934, 'talaiya': 23935, 'aisectfamily': 23936, 'ifpri': 23937, 'friedman': 23938, 'fightagainstcorona': 23939, 'savlon': 23940, 'protekt': 23941, 'lawstudentsuog': 23942, 'muralart': 23943, 'tdoc': 23944, 'onem': 23945, 'amn': 23946, 'bilton': 23947, '175': 23948, 'irgc': 23949, 'worldpandemic': 23950, 'wewillovercome': 23951, 'stepmom': 23952, 'amish': 23953, 'supermarketstaff': 23954, 'uniform': 23955, 'iamchichi': 23956, 'campaignforhappiness': 23957, 'unessential': 23958, 'gillingham': 23959, 'rende': 23960, 'mheshimiwa': 23961, 'wanjiku': 23962, '4g': 23963, 'balloon': 23964, 'uhuruto': 23965, 'educa': 23966, 'wisewednesday': 23967, 'pennycook': 23968, 'wetaskiwin': 23969, 'cory': 23970, 'downplaying': 23971, 'huff': 23972, 'saycuf': 23973, 'dema': 23974, 'thegoat': 23975, 'careersuccess': 23976, 'dumpster': 23977, 'signature': 23978, 'inditex': 23979, 'fash': 23980, 'altrincham': 23981, 'descended': 23982, 'power2cap': 23983, 'refusing2': 23984, 'platte': 23985, 'shevles': 23986, 'seaweed': 23987, 'coldpressoil': 23988, 'standardcoldpressoil': 23989, 'complained': 23990, 'tenfold': 23991, 'docsneedgear': 23992, 'abdulla': 23993, 'logodesign': 23994, 'undateable': 23995, 'disinfecant': 23996, 'askgovnortham': 23997, 'dstv': 23998, 'inky': 23999, 'pinky': 24000, 'blinky': 24001, 'clyde': 24002, 'tertiary': 24003, 'snapchatdown': 24004, 'pinkmoon': 24005, 'bernieisourhope': 24006, 'addtl': 24007, '01392576476': 24008, 'ast77': 24009, 'dgf': 24010, 'langar': 24011, 'scholar': 24012, 'locating': 24013, 'rms': 24014, 'replenishing': 24015, 'twentyfivedollarhandsanitizer': 24016, 'subsidization': 24017, '20mins': 24018, 'kobe': 24019, 'partition': 24020, 'howell': 24021, 'statesman': 24022, 'pivotal': 24023, 'redicoulous': 24024, 'revolves': 24025, 'weredoomedmrmannering': 24026, 'agai': 24027, 'devious': 24028, 'wbu': 24029, 'transported': 24030, 'blonde': 24031, 'margaretcirko': 24032, 'mccormack': 24033, 'pereira': 24034, 'magnatestrategies': 24035, 'ple': 24036, 'fattyforlife': 24037, 'quarantinecomedy': 24038, 'directbanking': 24039, 'highinterestsavingsproducts': 24040, 'tilapia': 24041, 'rapper': 24042, 'durant': 24043, 'wearehereforyou': 24044, 'mhanj': 24045, 'xtratalk': 24046, 'wetalkajax': 24047, 'ajax': 24048, 'eredivisie': 24049, 'snow': 24050, 'wellplayedcolorado': 24051, 'rwjbarnabas': 24052, 'guinness': 24053, 'foodchain': 24054, 'nuneaton': 24055, 'coeliac': 24056, 'yeaa': 24057, 'haaibo': 24058, 'iyoh': 24059, 'dweller': 24060, 'fmtlifestyle': 24061, 'provoking': 24062, 'foodethics': 24063, 'vinceremo': 24064, 'apostle': 24065, 'devs': 24066, 'crowdsources': 24067, 'densest': 24068, 'covet': 24069, 'awol': 24070, 'gregory': 24071, 'abbey': 24072, 'tukums': 24073, 'southflorida': 24074, 'winndixie': 24075, 'notp': 24076, 'nogas': 24077, 'dotherightthing': 24078, 'krino': 24079, 'hiphop': 24080, 'newera': 24081, 'socialise': 24082, '12news': 24083, 'gvmc': 24084, 'vizag': 24085, '204': 24086, 'seattletogether': 24087, 'confidentially': 24088, 'armedforces': 24089, 'camping': 24090, 'leeds': 24091, 'eagerly': 24092, 'sexworkersnz': 24093, 'lockdowndrama': 24094, 'outperform': 24095, 'kerosene': 24096, 'rs3': 24097, 'stipend': 24098, 'innocently': 24099, 'huntsman': 24100, 'cpistrong': 24101, 'dillard': 24102, 'sciencewitch': 24103, 'schenectady': 24104, 'coldlinkafrica': 24105, '21daynationallockdown': 24106, '0600': 24107, '0645': 24108, 'firstly': 24109, 'heppenstall': 24110, 'croissant': 24111, 'violinist': 24112, 'reenact': 24113, 'titanic': 24114, 'wanataka': 24115, 'kifonikifo': 24116, 'iwe': 24117, 'njaa': 24118, 'selfishpoliticians': 24119, 'forno': 24120, 'siciliano': 24121, 'elmhursthospital': 24122, 'homie': 24123, 'jellybean': 24124, 'paw': 24125, 'owes': 24126, '775': 24127, '727': 24128, '6223': 24129, 'cushy': 24130, 'reposted': 24131, 'resolving': 24132, 'knitting': 24133, 'reinventing': 24134, 'brandmarketing': 24135, 'tend': 24136, 'trait': 24137, 'paragon': 24138, 'texted': 24139, '45am': 24140, 'revera': 24141, 'mckenzie': 24142, 'towne': 24143, 'strafford': 24144, 'albertafireflood': 24145, 'restoration': 24146, 'sanatizing': 24147, 'heretohelp': 24148, 'mayorbowser': 24149, 'bowser': 24150, 'counterpart': 24151, 'govnortham': 24152, 'reinvest': 24153, 'haraam': 24154, 'concurrently': 24155, 'multifold': 24156, 'halaal': 24157, '3507': 24158, 'michiganshutdown': 24159, 'michiganlockdown': 24160, 'odaat': 24161, 'nhssafeguarding': 24162, 'karonakuch': 24163, 'marathon': 24164, 'bruna': 24165, 'kadletz': 24166, 'randomactsofkindness': 24167, 'implying': 24168, 'singleparents': 24169, 'haveyoursay': 24170, 'msftads': 24171, 'cleanest': 24172, 'healtheducation': 24173, 'healthpromotion': 24174, 'std': 24175, 'bratter': 24176, 'sharethenews': 24177, 'jadirigamer': 24178, 'dz': 24179, 'sanitiz': 24180, '2resale': 24181, 'characterize': 24182, 'erythromycin': 24183, 'thiocynate': 24184, 'azithromycin': 24185, '185': 24186, '2010': 24187, 'dibs': 24188, 'ulta': 24189, 'discontinues': 24190, 'cambonzola': 24191, 'dontpanicbuyyouselfishgreedyfucks': 24192, 'convey': 24193, 'alim': 24194, 'farmside': 24195, 'sommelier': 24196, 'torontorestaurants': 24197, 'dineinathome': 24198, 'gme': 24199, 'misuse': 24200, 'bleachbag': 24201, 'squirting': 24202, 'swimmingpool': 24203, 'admittance': 24204, 'overbuy': 24205, 'blaser': 24206, 'hating': 24207, '2020sofar': 24208, '2020iscancelled': 24209, 'webcomic': 24210, 'webcomics': 24211, 'teleconference': 24212, 'esports': 24213, 'conpanies': 24214, 'scat': 24215, 'unitedweride': 24216, 'sadness': 24217, '0707': 24218, '151515': 24219, 'apocalypsenow': 24220, 'judgedredd': 24221, 'nightofthelivingdead': 24222, 'ausboost': 24223, 'worldwarz': 24224, 'instacar': 24225, 'foodtech': 24226, 'eerie': 24227, '881': 24228, 'fabretto': 24229, 'todayinpooping': 24230, 'mag': 24231, 'peddle': 24232, 'lasttuesday': 24233, '660': 24234, 'goat': 24235, '470': 24236, 'lethality': 24237, 'trumplies': 24238, 'callousrepublicans': 24239, 'indusrey': 24240, 'farmtank': 24241, 'ghebreyesus': 24242, 'wayout': 24243, 'intercultural': 24244, 'summit': 24245, 'voi': 24246, 'taivas': 24247, 'varjele': 24248, 'kvasac': 24249, '50g': 24250, 'countertop': 24251, 'rewrote': 24252, 'sprite': 24253, 'wendell': 24254, 'steavenson': 24255, 'motivator': 24256, 'sneakerheads': 24257, 'saratoga': 24258, 'eoc': 24259, 'giveback': 24260, 'saratogany': 24261, 'wwv': 24262, 'centralflorida': 24263, 'transplant': 24264, 'firesale': 24265, 'fyp': 24266, 'under21': 24267, 'fingerlakes': 24268, 'calvin': 24269, 'klein': 24270, 'unexplainable': 24271, 'eric': 24272, 'riverside': 24273, 'facemasks4all': 24274, 'hartmann': 24275, 'pursue': 24276, 'youthtravel': 24277, 'prioritised': 24278, 'modifying': 24279, 'monitorupdates': 24280, 'coronapandemie': 24281, 'luluatvconnected': 24282, 'quartz': 24283, 'nightgown': 24284, 'donttouchface': 24285, 'absorb': 24286, 'transdermally': 24287, 'notwithstanding': 24288, 'wtfentanyl': 24289, 'retweets': 24290, 'knobheads': 24291, 'jerky': 24292, 'primitive': 24293, 'timpsons': 24294, 'blackwells': 24295, 'horizontal': 24296, 'eatfarmnow': 24297, 'hesitant': 24298, 'broader': 24299, 'coiming': 24300, 'wcvb': 24301, 'nypd': 24302, 'topping': 24303, 'huddled': 24304, 'gy': 24305, 'cst': 24306, 'respawn': 24307, 'dipping': 24308, 'northbayinn': 24309, 'eyebrow': 24310, 'retort': 24311, 'ssd': 24312, 'warmed': 24313, 'stashed': 24314, 'emea': 24315, 'unregulated': 24316, 'risingnepal': 24317, 'bhatbhateni': 24318, 'dearmrpresident': 24319, 'educating': 24320, 'sangam': 24321, 'veb': 24322, 'clueless': 24323, 'grifterinchief': 24324, 'coronaidiots': 24325, 'consumerprotections': 24326, 'nclc': 24327, 'medicalsupplies': 24328, '16oz': 24329, 'aosafety': 24330, 'selective': 24331, 'lockdownitaly': 24332, 'cutlery': 24333, 'oaf': 24334, 'sunrise': 24335, 'sv': 24336, 'businessadvice': 24337, 'sum1': 24338, 'rippled': 24339, 'mufgs': 24340, 'stinking': 24341, 'cornoravirus': 24342, 'coronafreepakistan': 24343, 'prayersforcoronafreeworld': 24344, 'bpcl': 24345, 'gaya': 24346, 'germanefficiency': 24347, 'uneven': 24348, 'phillips': 24349, 'alehouse': 24350, 'monrovia': 24351, 'buyreal': 24352, 'footballagainstfakes': 24353, 'punerains': 24354, 'swell': 24355, 'nofrills': 24356, 'rcss': 24357, 'saveonfoods': 24358, 'wevision': 24359, 'lat': 24360, 'hutcheson': 24361, 'australianbusiness': 24362, 'activation': 24363, '3bn': 24364, 'costed': 24365, 'combustion': 24366, 'proofing': 24367, 'unpacked': 24368, 'ockerman': 24369, 'relocated': 24370, 'totaling': 24371, 'adland': 24372, 'realeyes': 24373, 'storekeeper': 24374, 'changeclosings': 24375, '5262': 24376, 'bilo': 24377, 'jdw': 24378, 'inversely': 24379, 'proportional': 24380, 'asx': 24381, 'sagged': 24382, 'barked': 24383, 'panagis': 24384, 'galiatsatos': 24385, 'tomo': 24386, 'surgeon': 24387, 'appreciating': 24388, 'accelerates': 24389, 'lecture': 24390, 'tranformed': 24391, 'womanspeaking': 24392, 'teachyourboys': 24393, 'hamms': 24394, 'bather': 24395, 'claus': 24396, 'zoombombing': 24397, 'meekmill': 24398, 'governmentofbritishcolumbia': 24399, 'reinstate': 24400, 'unhappy': 24401, 'udit': 24402, 'animalistic': 24403, 'cct320': 24404, 'mossad': 24405, 'couture': 24406, 'sinaloa': 24407, 'sixfold': 24408, 'meth': 24409, 'mow': 24410, 'patrone': 24411, 'borderclosure': 24412, 'caledon': 24413, 'mississauga': 24414, 'peelregion': 24415, 'sauga960am': 24416, 'why1': 24417, 'why2': 24418, 'why3': 24419, 'expendable': 24420, 'agedcare': 24421, 'cse': 24422, 'madacide': 24423, 'fd': 24424, 'loitering': 24425, 'tat': 24426, 'insatiable': 24427, 'thirst': 24428, 'eatertainment': 24429, 'incorporate': 24430, 'lemay': 24431, 'monger': 24432, 'tremendously': 24433, 'stayth': 24434, 'jasonkenney': 24435, 'eyy': 24436, 'pollybites': 24437, 'kosher': 24438, 'automotives': 24439, 'hd5d6zdgs8': 24440, 'asparagus': 24441, 'cisa': 24442, 'ughh': 24443, 'hotstar': 24444, 'anothe': 24445, 'timeshavechanged': 24446, 'majzub': 24447, 'uncoordinated': 24448, 'whitstable': 24449, 'erecting': 24450, 'concierge': 24451, 'churning': 24452, 'crafter': 24453, 'manitoba': 24454, 'farmersmarket': 24455, 'bullsh': 24456, 'retire': 24457, 'caretaker': 24458, 'oncnbctv18': 24459, 'venkatesh': 24460, 'dsouza': 24461, 'fox43': 24462, 'penalities': 24463, 'climbed': 24464, 'outweighed': 24465, 'sweetener': 24466, 'corporatist': 24467, 'ridicule': 24468, 'rated': 24469, 'madrasah': 24470, 'halaqat': 24471, 'ramad': 24472, 'pranayam': 24473, 'cramped': 24474, 'workstation': 24475, 'reef': 24476, 'okey': 24477, 'aand': 24478, 'governement': 24479, 'ookey': 24480, 'stoc': 24481, 'sweetened': 24482, 'whyarepeoplelikethat': 24483, 'revenuegrowth': 24484, 'woodland': 24485, 'shaved': 24486, 'ovr': 24487, 'lanarkshire': 24488, 'snaking': 24489, 'striding': 24490, 'unanimously': 24491, 'balanced': 24492, 'babyganics': 24493, 'babysanitizer': 24494, 'babyhygiene': 24495, 'deviant': 24496, 'civlisation': 24497, 'ord': 24498, 'smishing': 24499, 'reportspam': 24500, 'nnewi': 24501, 'endofthefuckingworld': 24502, 'imgonnastarve': 24503, 'bhai': 24504, 'haufiku': 24505, 'kieran': 24506, 'clancy': 24507, 'giffen': 24508, 'prospering': 24509, 'nowadays': 24510, 'fantasyland': 24511, 'teensy': 24512, 'lotta': 24513, 'incubator': 24514, 'shameonstockpilers': 24515, 'tpe': 24516, 'burned': 24517, '01273': 24518, '293117': 24519, 'thinkagain': 24520, 'blinder': 24521, 'reconnection': 24522, 'ext': 24523, 'prophecy': 24524, 'waragainstvirus': 24525, 'urbanfresh': 24526, 'fuckwit': 24527, 'mahatma': 24528, 'ghandi': 24529, 'harshest': 24530, 'quarticon': 24531, 'breakingonrt': 24532, 'belated': 24533, 'sabino': 24534, 'siders': 24535, 'unmatched': 24536, 'surround': 24537, 'boeing': 24538, 'newbusinesstrends': 24539, 'masterchef': 24540, 'nodal': 24541, 'thankretailworkers': 24542, 'mylocal': 24543, 'ritchies': 24544, 'onlybuywhatyouneed': 24545, 'noneedtopanic': 24546, 'pediatric': 24547, 'mopng': 24548, 'albertheijn': 24549, 'befo': 24550, 'sunbed': 24551, 'taxscam': 24552, 'luzonlockdown': 24553, 'boschetto': 24554, 'manzil': 24555, 'ccm': 24556, 'bhojpur': 24557, 'banging': 24558, 'stoppanicshopping': 24559, 'stopreselling': 24560, 'wewilldefeatcorona': 24561, 'gobsmacked': 24562, 'kebab': 24563, 'lesser': 24564, 'moneycontrol': 24565, 'roseville': 24566, 'sociopath': 24567, 'coronashopping': 24568, 'plentyfull': 24569, 'icra': 24570, 'icraviews': 24571, 'icrainnews': 24572, 'sugarindustry': 24573, 'sugarprice': 24574, 'medley': 24575, 'rehydrated': 24576, 'pandemicchopped': 24577, 'paidsurvey': 24578, 'enterprising': 24579, 'embed': 24580, 'fairway': 24581, 'gobbled': 24582, 'fintweets': 24583, 'airway': 24584, 'fco': 24585, 'creamery': 24586, 'nearing': 24587, 'elvis': 24588, 'ufo': 24589, 'nonursehungry': 24590, 'stupidcustomers': 24591, 'widget': 24592, 'hyperlocal': 24593, 'ddj': 24594, 'dataviz': 24595, 'opendata': 24596, 'reflecting': 24597, 'nyah': 24598, 'unwell': 24599, 'aeco': 24600, 'differential': 24601, 'fading': 24602, 'erode': 24603, 'sweeter': 24604, 'turkishhandsanitizer': 24605, 'kattk81': 24606, 'cooney': 24607, 'marvel': 24608, 'situatio': 24609, 'familycarehospitals': 24610, 'tending': 24611, 'twelve': 24612, 'flake': 24613, 'bourgie': 24614, 'chia': 24615, 'inflection': 24616, 'marco': 24617, 'lauro': 24618, 'setterfield': 24619, 'lintao': 24620, 'zhang': 24621, 'guatemala': 24622, 'coronainkenya': 24623, 'deviate': 24624, 'darling': 24625, 'satisfied': 24626, 'jcdcmotors': 24627, 'woolerontario': 24628, 'fordmustang': 24629, 'masturbate': 24630, 'criticizes': 24631, 'letsbuildbettertomorrow': 24632, 'quinsam': 24633, 'estore': 24634, 'adapter': 24635, 'headset': 24636, 'wearable': 24637, 'wolfofwallstreet': 24638, 'sellersville': 24639, 'finserv': 24640, 'bias': 24641, 'babyyoda': 24642, 'hasbro': 24643, 'pipping': 24644, 'booger': 24645, 'stockbroker': 24646, 'glives': 24647, 'backseat': 24648, 'minivan': 24649, 'dharma': 24650, 'superstores': 24651, 'parcelshipping': 24652, 'lincsfoodchainjobs': 24653, 'austintexas': 24654, 'accesstocash': 24655, 'bankofengland': 24656, 'fani': 24657, 'kayode': 24658, 'jonathan': 24659, 'reap': 24660, 'socialcare': 24661, 'quetion': 24662, 'fanforever': 24663, 'overeating': 24664, 'abandoning': 24665, 'lifeaftercovid': 24666, 'moderately': 24667, 'hindman': 24668, 'knott': 24669, 'eyvallah': 24670, 'thehandmaidstale': 24671, 'swasthabharat': 24672, 'helpustohelpyou': 24673, 'helptosave': 24674, 'poortiming': 24675, 'maturity': 24676, 'cota': 24677, 'discontinuing': 24678, 'redner': 24679, 'marry': 24680, 'wino': 24681, 'winemaking': 24682, 'jogging': 24683, 'procession': 24684, 'ultimateloveng': 24685, 'cov19game': 24686, 'dancegan': 24687, 'terry': 24688, 'edmund': 24689, 'obilo': 24690, 'tunic': 24691, 'workwear': 24692, 'helpthenhs': 24693, 'menstunics': 24694, 'tabard': 24695, 'onlinediacount': 24696, 'scrubtrousers': 24697, 'scrubtops': 24698, 'proceeding': 24699, 'swimsuit': 24700, 'tripathy': 24701, 'edgy': 24702, '3thingstoknow': 24703, 'dung': 24704, 'kilo': 24705, 'coronapakistan': 24706, 'tor': 24707, 'grap': 24708, 'handgel': 24709, 'tasneemnaturel': 24710, 'bbw': 24711, 'cfbath': 24712, 'bugsaway': 24713, 'kleenzy': 24714, 'bacout': 24715, 'calmbath': 24716, 'ibumengandung': 24717, 'nontoxic': 24718, 'sleeptime': 24719, 'calmtime': 24720, 'corovnavirus': 24721, 'qpay': 24722, 'qatari': 24723, 'arch': 24724, 'ker': 24725, 'getbeer': 24726, 'tldr': 24727, 'clause': 24728, 'binding': 24729, 'arbitration': 24730, 'arbitrator': 24731, 'unbiased': 24732, 'resolute': 24733, 'electronically': 24734, 'quell': 24735, 'oversaturation': 24736, 'konga': 24737, 'n10m': 24738, 'solosafe': 24739, 'kidsathome': 24740, 'gooddaydc': 24741, 'hulu': 24742, 'disneyplus': 24743, 'amazo': 24744, 'raffat': 24745, 'altekrete': 24746, 'apel': 24747, 'withrefugees': 24748, 'abdijan': 24749, 'abu': 24750, 'dhabi': 24751, 'identifiable': 24752, 'latino': 24753, 'carnicerias': 24754, 'tienditas': 24755, 'thisisacrisis': 24756, 'oklahomahasnomandatorytestingfoepeoples': 24757, 'infor': 24758, 'cranleigh': 24759, 'indirect': 24760, 'juliab1978': 24761, 'stuffing': 24762, '19gr': 24763, '19usa': 24764, 'foxnuts': 24765, 'puffed': 24766, 'lotus': 24767, 'onlinegrocerystore': 24768, 'sharethelove': 24769, 'foodgasm': 24770, 'indianstreetfood': 24771, 'localgrocerystore': 24772, 'bridgford': 24773, 'incidence': 24774, 'lockup': 24775, 'rafael': 24776, 'lourenco': 24777, 'clientwin': 24778, 'croak': 24779, 'purple': 24780, 'pink': 24781, 'peach': 24782, 'phew': 24783, 'pickens': 24784, 'storydam': 24785, 'winnie': 24786, 'cantveven': 24787, 'deprives': 24788, 'ilifemedical': 24789, 'testkits': 24790, 'interve': 24791, '17701': 24792, 'coronvirusuk': 24793, 'hlor0729': 24794, 'vocabulary': 24795, 'bend': 24796, '205': 24797, 'bulkcarriers': 24798, 'cultivated': 24799, 'sweetest': 24800, 'novv': 24801, 'lavv': 24802, 'frieda': 24803, 'faye': 24804, 'befor': 24805, 'trastra': 24806, 'spaincoronavirus': 24807, 'conferencing': 24808, 'peppa': 24809, 'disobedience': 24810, 'ward23': 24811, 'scarbto': 24812, 'fracking': 24813, 'lookforthehelpers': 24814, 'crawler': 24815, 'prowling': 24816, 'newperspective': 24817, 'crackling': 24818, 'creamed': 24819, 'glazed': 24820, 'parsnip': 24821, 'gravy': 24822, 'consummation': 24823, 'coronainmaharashtra': 24824, '8500': 24825, 'hoarde': 24826, 'tasted': 24827, 'expired': 24828, 'dissolve': 24829, 'abattoir': 24830, 'campaigner': 24831, 'exclusion': 24832, 'nsduh': 24833, 'taproom': 24834, 'emmy': 24835, 'shute': 24836, 'remorse': 24837, 'layed': 24838, 'drogheda': 24839, 'undercut': 24840, 'learningathome': 24841, 'learnfromhome': 24842, 'joseph': 24843, 'ghg': 24844, 'nppa': 24845, 'kpmru': 24846, 'crystal': 24847, 'socalstrong': 24848, 'beverlyhills': 24849, 'vons': 24850, 'educateyourself': 24851, 'protectyourself': 24852, 'jotted': 24853, '29th': 24854, '2km': 24855, 'paralyzed': 24856, 'revising': 24857, 'nofear': 24858, 'area51': 24859, 'survivability': 24860, 'grocersapp': 24861, 'grocerapp': 24862, 'grocerystoreapp': 24863, 'bingeshopping': 24864, 'onlyasuggestion': 24865, 'noneed': 24866, 'peek': 24867, 'dependency': 24868, 'madani': 24869, 'atiku': 24870, 'sprinting': 24871, 'afyarekod': 24872, 'cii': 24873, 'channelised': 24874, 'masterchefau': 24875, 'brooklynpodcast': 24876, 'caribbean': 24877, 'applepodcasts': 24878, 'spotifypodcast': 24879, 'inflates': 24880, 'maula': 24881, 'imamali': 24882, 'happyfriday': 24883, 'noluxury': 24884, 'herdimmunity': 24885, 'yday': 24886, 'morn': 24887, 'cryptocurreny': 24888, 'reliefbill': 24889, 'permaroute': 24890, 'visibility': 24891, 'heskins': 24892, 'floormarking': 24893, 'lustful': 24894, 'tik': 24895, 'tok': 24896, 'cardib': 24897, 'helsinki': 24898, 'muniland': 24899, 'safehands': 24900, 'fintwits': 24901, 'comparing': 24902, 'redefine': 24903, 'thirty': 24904, 'cpif': 24905, 'bicyclesastransport': 24906, 'yhis': 24907, 'mackenzie': 24908, 'windenergy': 24909, 'powerdemand': 24910, 'powerconsumption': 24911, 'energymarket': 24912, 'fairing': 24913, 'germy': 24914, 'bracket': 24915, 'reactivation': 24916, 'crossover': 24917, 'pestering': 24918, 'wonderwall': 24919, 'oasis': 24920, 'reasonably': 24921, 'zoe': 24922, 'curfewinkenya': 24923, 'whatsoever': 24924, 'merging': 24925, 'composer': 24926, 'repertoire': 24927, 'soldiering': 24928, 'rehearse': 24929, 'pep': 24930, 'theatrically': 24931, 'veering': 24932, 'spareasquare': 24933, 'omaginsiders': 24934, 'authenticbecky': 24935, 'warewolf': 24936, 'colouring': 24937, 'understaffed': 24938, '95123': 24939, 'smartnews': 24940, 'staffed': 24941, 'qld': 24942, 'jeannette': 24943, 'minnesotan': 24944, 'sunrisers': 24945, 'bumper': 24946, 'ch1': 24947, '4lt': 24948, 'contrastingly': 24949, 'repeated': 24950, 'clicking': 24951, 'chrysler': 24952, 'unload': 24953, 'ageuk': 24954, 'uptown': 24955, 'protip': 24956, 'survivaltips': 24957, 'effectvemp': 24958, 'envy': 24959, 'chomping': 24960, 'realism': 24961, 'time8news': 24962, 'imgflip': 24963, 'homesale': 24964, 'housesale': 24965, 'idiotsb': 24966, 'facade': 24967, 'specialises': 24968, 'sleeve': 24969, 'subdued': 24970, 'foreseen': 24971, 'yext': 24972, 'publicizing': 24973, 'researched': 24974, 'kwawesome': 24975, 'cheryl': 24976, 'idell': 24977, 'carolburnett': 24978, 'fillet': 24979, 'achieved': 24980, 'gendered': 24981, 'dutchies': 24982, 'fuckedup': 24983, 'codvid19espana': 24984, 'codvid19italia': 24985, 'shiny': 24986, 'exxonmobil': 24987, 'naturo': 24988, 'vaccinated': 24989, 'nii': 24990, 'tak': 24991, 'nspoli': 24992, 'ombudsman': 24993, 'consumertalk': 24994, 'campervan': 24995, 'freshies': 24996, 'handmadehour': 24997, 'letterboxfriendly': 24998, 'uniquegifts': 24999, 'campathome': 25000, 'vw': 25001, 'preceded': 25002, 'gardai': 25003, 'indonesia': 25004, 'businessimpact': 25005, 'jbs': 25006, 'achive': 25007, 'intra': 25008, 'digested': 25009, 'varcoe': 25010, 'mintz': 25011, 'toiletpaperfight': 25012, 'survivalguide': 25013, 'toiletpapersurvivalguide': 25014, 'embrassd': 25015, 'strippedbare': 25016, 'dontbothergoing': 25017, 'mageddon': 25018, 'gloriously': 25019, 'circa': 25020, '1996': 25021, 'iwillsurvive': 25022, 'campbell': 25023, 'bpo': 25024, 'dorm': 25025, 'philip': 25026, 'nite': 25027, 'sustliving': 25028, 'shaheenbaghcoronathreat': 25029, 'nomoreloot': 25030, 'whoop': 25031, 'carbonemission': 25032, 'elliottwave': 25033, 'misa': 25034, 'vila': 25035, 'paswan': 25036, 'custodian': 25037, 'paperrecycling': 25038, 'packagingcompany': 25039, 'recyclingindustry': 25040, 'trumpvirus2020': 25041, 'mann': 25042, 'engages': 25043, 'gata': 25044, 'negra17': 25045, 'shareifwoke': 25046, 'mattress': 25047, 'feverish': 25048, 'newtoday': 25049, 'okla': 25050, '2worksforyou': 25051, 'consumeralert': 25052, 'blackmarketears': 25053, 'reinstated': 25054, 'welldonesky': 25055, 'faulkner': 25056, 'pottyaboutmyplanet': 25057, 'navajo': 25058, 'chilchinbeto': 25059, 'spr': 25060, 'sprau': 25061, 'charitytuesday': 25062, 'softly': 25063, 'disregarded': 25064, 'imaginary': 25065, 'bef': 25066, 'tpt': 25067, 'educator': 25068, 'communicating': 25069, 'tabletop': 25070, 'pces': 25071, '50billion': 25072, 'whereisbernie': 25073, 'joebuck': 25074, 'medal': 25075, 'joked': 25076, 'opioid': 25077, 'adherent': 25078, 'moonshot': 25079, 'pattaya': 25080, 'makro': 25081, 'lapdog': 25082, '2050': 25083, 'tissuepaperchallenge': 25084, 'ineos': 25085, 'firmenich': 25086, 'qmu': 25087, 'costcofinds': 25088, 'costcobuys': 25089, 'costcodeals': 25090, 'ivl9txzrtm': 25091, 'ahram': 25092, 'vacationer': 25093, 'snowbird': 25094, 'lcbo': 25095, 'pmmodioncorona': 25096, 'mbpd': 25097, 'carling': 25098, 'stella': 25099, 'birra': 25100, 'moretti': 25101, '179': 25102, '09p': 25103, 'strangest': 25104, 'arose': 25105, 'scottyfrommarketing': 25106, 'lathicharge': 25107, 'sbry': 25108, 'countires': 25109, '4apeoplesparty': 25110, 'footed': 25111, 'ploughed': 25112, 'twizzlers': 25113, 'orrin': 25114, 'statio': 25115, 'imlearningfx': 25116, 'farage': 25117, 'mayfair': 25118, 'peddling': 25119, 'briljante': 25120, 'rathod': 25121, 'marylandlockdown': 25122, 'marylandcoronavirus': 25123, 'useyourheadmd': 25124, 'deepest': 25125, 'chocolatiers': 25126, 'awarded': 25127, 'laffer': 25128, 'presidential': 25129, 'keynesian': 25130, 'telegraph': 25131, 'integrity': 25132, 'fasten': 25133, 'seatbelt': 25134, 'tidied': 25135, 'shelled': 25136, 'extraordinarily': 25137, 'inpex': 25138, 'optimise': 25139, 'wod': 25140, 'utilised': 25141, 'stingy': 25142, 'guinea': 25143, 'stockholm': 25144, 'sweden': 25145, 'internationallabourorganisation': 25146, 'oilmarket': 25147, 'antiplastic': 25148, 'conclusive': 25149, 'recycle': 25150, 'insisted': 25151, 'thiers': 25152, '106': 25153, 'getoutofmybubble': 25154, 'fucovid19': 25155, 'dew': 25156, 'arun': 25157, 'servicepublic': 25158, 'keenan': 25159, 'frown': 25160, 'supersedes': 25161, 'gifted': 25162, 'coinage': 25163, 'comparison': 25164, 'cornershops': 25165, 'laundrettes': 25166, 'vonhrp': 25167, 'bottoming': 25168, 'gaiss': 25169, 'tought': 25170, 'leach': 25171, 'christine': 25172, 'kintu': 25173, 'wanjara': 25174, 'lutimba': 25175, 'socialdistan': 25176, 'foxboro': 25177, 'fabiana': 25178, 'bisceglia': 25179, 'donata': 25180, 'cordone': 25181, 'shopp': 25182, 'overridden': 25183, 'reusing': 25184, 'bringbackthebag': 25185, '1h': 25186, 'alajuela': 25187, 'tcrn': 25188, 'kaufman': 25189, 'finna': 25190, 'ctfu': 25191, '80bn': 25192, 'sparingly': 25193, 'bodied': 25194, 'lamuscle': 25195, 'superfoods': 25196, 'processedfood': 25197, 'muscle': 25198, 'immunehealth': 25199, 'republik': 25200, 'precipice': 25201, 'sixty': 25202, 'rpmalamo': 25203, 'sanantoniopropertymanagement': 25204, 'newlistingsanantonio': 25205, 'bulb': 25206, 'stayhomesaveliv': 25207, 'v12': 25208, 'anders': 25209, 'ekman': 25210, 'charting': 25211, '16m': 25212, 'devalue': 25213, 'whenthisisallover': 25214, 'trawl': 25215, 'stockpiler': 25216, 'askadoctor': 25217, 'doctoronline': 25218, 'healthyliving': 25219, 'beelearners': 25220, 'uki': 25221, 'cornoravirusus': 25222, 'trump2020nowmorethanever': 25223, 'redmeatmatters': 25224, 'loneliest': 25225, 'patronise': 25226, 'barilla': 25227, 'maida': 25228, 'dahi': 25229, 'amul': 25230, 'safal': 25231, 'nofoodbank': 25232, 'nocrisispayment': 25233, 'nochanceofsurvival': 25234, 'ucpeoplestarve': 25235, 'icantwaittofuckingdie': 25236, 'leicester': 25237, 'bathon': 25238, 'tasered': 25239, 'xjo': 25240, 'gull': 25241, 'whangarei': 25242, 'willingly': 25243, 'irrationally': 25244, 'relearning': 25245, 'democraticsocialism': 25246, 'adjustable': 25247, 'biocarohk': 25248, 'greendisinfectant': 25249, 'chloridedioxide': 25250, 'miso': 25251, 'powermarket': 25252, 'circulates': 25253, 'mortonwilliams': 25254, 'abridged': 25255, 'haggadah': 25256, 'cluck': 25257, 'motherclucker': 25258, 'manup': 25259, 'omgisitonlyme': 25260, 'hohberger': 25261, 'scientifically': 25262, 'filtration': 25263, '200nm': 25264, 'quelling': 25265, 'registry': 25266, 'tpisthenewgold': 25267, 'conclude': 25268, 'scout': 25269, 'lolwut': 25270, 'differe': 25271, '799': 25272, 'cunty': 25273, 'icecream': 25274, 'thankschina': 25275, 'xr': 25276, 'machined': 25277, 'rochesterny': 25278, 'disbelieving': 25279, 'finney': 25280, 'givemeacovidbreak': 25281, 'vending': 25282, 'dirtiest': 25283, 'sickest': 25284, 'thrift': 25285, 'zoolert': 25286, 'logged': 25287, 'solemn': 25288, 'rafter': 25289, 'mememe': 25290, 'foodarmy': 25291, 'feedingthenation': 25292, 'feedingthevulnerable': 25293, 'elko': 25294, 'shordy': 25295, 'gettin': 25296, 'valerie': 25297, 'nannery': 25298, 'slaughtering': 25299, 'lockdown101': 25300, 'dissemination': 25301, 'veneto': 25302, 'husted': 25303, 'intact': 25304, 'aldis': 25305, 'biglots': 25306, 'youdamvp': 25307, 'poopy': 25308, 'sunk': 25309, 'maukepechauka': 25310, 'ripe': 25311, 'theflipguyskitchen': 25312, 'homecook': 25313, 'shahenshah': 25314, 'bollywood': 25315, 'amitabhbachchan': 25316, 'policastro': 25317, 'streatham': 25318, 'halved': 25319, 'fishyfun': 25320, 'keepsmiling': 25321, 'charityshopfind': 25322, 'stafflinegroup': 25323, 'constructive': 25324, 'covid2020': 25325, 'ecoli': 25326, 'mwh': 25327, 'stuffyouneed': 25328, 'wiv': 25329, 'trumpisalyingsackofshit': 25330, 'panicroom': 25331, 'homeswithdiane': 25332, 'servingyourfamily': 25333, 'remax': 25334, 'centralindiana': 25335, 'plagued': 25336, 'completion': 25337, 'kuhn': 25338, 'moore': 25339, 'concentrate': 25340, 'respe': 25341, 'bec': 25342, 'thestorm': 25343, 'drpolcino': 25344, 'jumpstart': 25345, 'thecrew2': 25346, 'ubisoft': 25347, 'bassmasters': 25348, 'walkingdead': 25349, 'cancelrent': 25350, 'cancelation': 25351, 'dortmund': 25352, 'ultras': 25353, 'vfb': 25354, 'stuttgart': 25355, 'env': 25356, 'humanitarianaid': 25357, 'notary': 25358, '8daystogo': 25359, 'megapowerstar': 25360, 'ramcharan': 25361, 'seetharamarajucharan': 25362, 'prompting': 25363, 'raccoon': 25364, 'rogers': 25365, 'duterte': 25366, 'hesitation': 25367, 'ahi': 25368, 'firenze': 25369, 'florence': 25370, 'fotografia': 25371, 'paololodebole': 25372, 'instapic': 25373, 'instafoto': 25374, 'igerstuscany': 25375, 'igersflorence': 25376, 'igersitalia': 25377, 'fic': 25378, 'examining': 25379, 'grammar': 25380, 'yqgstandsstrong': 25381, 'bdo': 25382, '6min': 25383, 'manifested': 25384, 'credentialled': 25385, 'usdaw': 25386, 'tel': 25387, 'querying': 25388, 'goofy': 25389, 'brandingwithutility': 25390, 'postitnotecart': 25391, 'moneysmartweek': 25392, 'reengaging': 25393, 'msw2021': 25394, 'msw2020': 25395, 'cleanyourscreen': 25396, 'expression': 25397, 'meetthefarmersconference': 25398, 'crenov8': 25399, 'freshchoice': 25400, 'supervalue': 25401, 'foodinsecure': 25402, 'groceryshortage': 25403, 'christianity': 25404, 'uneconomic': 25405, 'negates': 25406, 'modulates': 25407, 'ariel': 25408, '201': 25409, 'vic': 25410, 'streetnewsau': 25411, 'streetadvocate': 25412, 'realestateau': 25413, 'melbre': 25414, 'obligated': 25415, 'embarrass': 25416, 'glutinous': 25417, 'fa4g': 25418, 'earlyriser': 25419, 'earlybirdgetsthenecessities': 25420, 'dover': 25421, 'fcawa': 25422, 'coronacontrol': 25423, 'whack': 25424, 'supportdg': 25425, 'nsfwtwitter': 25426, 'parlous': 25427, 'concumer': 25428, 'adamie': 25429, 'worthwhile': 25430, 'overdu': 25431, 'shoul': 25432, 'tui': 25433, 'anita': 25434, '113': 25435, 'sarscov19': 25436, 'consumerimpact': 25437, 'bernstein': 25438, 'larne': 25439, 'carrick': 25440, 'ballymena': 25441, 'subcommittee': 25442, 'worldhealthorganization': 25443, 'fulfilment': 25444, 'arrogance': 25445, 'kesa': 25446, 'maglalalabas': 25447, 'gamit': 25448, 'utak': 25449, 'hk': 25450, 'minimized': 25451, 'annd': 25452, 'salisbury': 25453, 'councilor': 25454, 'savry': 25455, 'ouk': 25456, 'vlns': 25457, 'irreponsible': 25458, 'sprighlty': 25459, 'inefficiency': 25460, 'imrankhan': 25461, 'pastorosagieizeiyamu': 25462, 'colchester': 25463, 'margarine': 25464, 'springboardfutures': 25465, 'bagp': 25466, 'baristas': 25467, 'conronavirus': 25468, '24in48': 25469, 'grasp': 25470, 'selfies': 25471, 'ranching': 25472, 'wotw': 25473, 'livesafety': 25474, 'brant': 25475, 'elmira': 25476, 'gimme': 25477, 'cannedfood': 25478, 'cosplay': 25479, 'lovillea': 25480, '675': 25481, 'tig': 25482, 'welder': 25483, 'liquidating': 25484, 'guitar': 25485, 'hanger': 25486, 'boonie': 25487, 'vulnerablepopulations': 25488, '4all': 25489, 'gutless': 25490, 'kdrama': 25491, 'blossoming': 25492, 'sonng': 25493, 'ost': 25494, 'exolselcaday': 25495, 'flopping': 25496, '1326': 25497, 'implore': 25498, 'cornoravirusuk': 25499, 'sail': 25500, 'unscathed': 25501, 'lenscrafters': 25502, 'boggling': 25503, 'standalone': 25504, 'coy': 25505, 'renee': 25506, 'arbitrarily': 25507, 'ploy': 25508, 'milky': 25509, 'treasured': 25510, 'ilovemyhusband': 25511, 'trojan': 25512, 'horse': 25513, 'thecomedypost': 25514, 'thecomedypostsg': 25515, 'tpweightlosschallenge': 25516, 'southgate': 25517, 'swimmer': 25518, 'accessed': 25519, 'manhatten': 25520, 'readysteadycook': 25521, 'redacted': 25522, 'disinfects': 25523, 'migrated': 25524, '60bn': 25525, 'akhira': 25526, 'blooded': 25527, 'germkilling': 25528, 'carnaval': 25529, 'kentuky': 25530, 'tenessee': 25531, 'repurposing': 25532, 'wineoclock': 25533, 'extraction': 25534, 'vix': 25535, 'vxx': 25536, 'coronaproblems': 25537, 'nupes': 25538, 'conjunction': 25539, 'accidentally': 25540, 'linkage': 25541, 'upstreamcosts': 25542, 'wmconsulting': 25543, 'southend': 25544, 'chaplain': 25545, 'therapist': 25546, 'clergy': 25547, 'fge': 25548, 'fesharaki': 25549, 'oncoming': 25550, 'maximizing': 25551, 'fulltimervers': 25552, 'rvlife': 25553, 'vanlife': 25554, 'nomadlife': 25555, 'cbdoil': 25556, 'coma': 25557, 'incisive': 25558, 'mudit': 25559, 'jaju': 25560, 'thalibharona': 25561, 'clang': 25562, 'cpiml': 25563, 'foodsystems': 25564, 'lengthen': 25565, 'runway': 25566, 'matrix': 25567, 'redrawn': 25568, 'chinesephones': 25569, 'kmfmnews': 25570, 'xly': 25571, 'redefined': 25572, 'imprint': 25573, 'paisa': 25574, 'rathore': 25575, 'butchery': 25576, 'olivia': 25577, 'guinaugh': 25578, 'nocommonsense': 25579, 'auctioning': 25580, 'myquarantineinagif': 25581, 'flattenthecuve': 25582, 'toilettissue': 25583, 'notimeforjokes': 25584, 'priciest': 25585, 'skinned': 25586, 'gaw': 25587, 'x1': 25588, 'gaymer': 25589, 'riskiest': 25590, 'quarantin': 25591, 'facilitating': 25592, 'allocation': 25593, 'bahar': 25594, 'khana': 25595, 'ima': 25596, 'makin': 25597, 'lochnessmonster': 25598, 'libs': 25599, 'getgo': 25600, 'may3': 25601, 'tnx': 25602, 'kzn': 25603, 'burna': 25604, 'zlatan': 25605, 'ini': 25606, 'beatz': 25607, 'ibile': 25608, 'hooray': 25609, 'adaptive': 25610, '8336': 25611, 'sounding': 25612, 'deathknell': 25613, 'ssi': 25614, 'clouding': 25615, 'glorious': 25616, 'analyzing': 25617, 'revolutio': 25618, 'sultanate': 25619, 'omanobserver': 25620, 'pandemiccovid19': 25621, 'innovationst': 25622, 'newsroom': 25623, 'josie': 25624, 'bounceback': 25625, 'contingent': 25626, '350k': 25627, '500k': 25628, 'savemoney': 25629, 'saynotosingleuse': 25630, 'littleproud': 25631, 'beneath': 25632, 'sainsb': 25633, 'genetics': 25634, 'nefarious': 25635, 'whitepaper': 25636, 'kgp': 25637, 'threeitemsonly': 25638, 'wallace': 25639, 'ebayuk': 25640, '18ct': 25641, 'westerner': 25642, 'kashmirlockdown': 25643, 'kashmiri': 25644, 'issuer': 25645, 'icanwaitanotherweek': 25646, 'refresher': 25647, 'noschool': 25648, 'pma': 25649, 'bartuska': 25650, 'rickygervais': 25651, '750ml': 25652, '1l': 25653, 'belarus': 25654, 'whatnot': 25655, 'weneedsensitivemedia': 25656, 'redeploying': 25657, 'goodthinking': 25658, 'swagbucks': 25659, 'earnmoney': 25660, 'ary': 25661, 'sahulat': 25662, '021': 25663, '00162': 25664, '166981': 25665, 'buyonline': 25666, 'offensive': 25667, 'immigrantsong': 25668, 'ohiounemployment': 25669, 'openohio': 25670, 'gasolina': 25671, 'redundant': 25672, 'whatsap08115981930': 25673, 'rccg': 25674, 'boko': 25675, 'bodija': 25676, 'seyi': 25677, 'healthathome': 25678, 'positivit': 25679, 'bannon': 25680, 'unlucky': 25681, 'flank': 25682, 'inclusive': 25683, 'stards': 25684, 'snorkel': 25685, '284': 25686, '1321': 25687, 'heinz': 25688, 'meanz': 25689, 'abit': 25690, 'recreating': 25691, 'madebystudiojq': 25692, 'ahahahaha': 25693, 'chck': 25694, 'tippingpoint': 25695, 'weinstein': 25696, 'publicise': 25697, 'nageswara': 25698, 'rao': 25699, 'pil': 25700, 'zoomuniversity': 25701, 'ukhousing': 25702, 'bronx': 25703, 'inspite': 25704, 'efficacy': 25705, 'workflow': 25706, 'verification': 25707, 'anambra': 25708, 'bubonic': 25709, 'leningrad': 25710, 'calorie': 25711, '575': 25712, 'clasping': 25713, 'bootstrap': 25714, 'socia': 25715, 'pk': 25716, 'makemytrip': 25717, 'cheating': 25718, 'caito': 25719, 'instructor': 25720, 'disabling': 25721, 'pornography': 25722, 'reboot': 25723, 'mareeba': 25724, 'njlockdown': 25725, 'unforgivable': 25726, 'govs': 25727, 'fpa': 25728, 'consult': 25729, 'superannuation': 25730, 'adjacent': 25731, 'skinless': 25732, 'bead': 25733, 'honolulu': 25734, 'savannah': 25735, 'peaking': 25736, 'dontbeapartoftheproblem': 25737, 'prayfortheworld': 25738, 'trustinthelord': 25739, 'danceswithrain': 25740, 'wwg1wgaworldwide': 25741, 'dearly': 25742, 'pavilion': 25743, 'viscelli': 25744, 'noticeably': 25745, 'documetry': 25746, 'urbanphotography': 25747, 'urbex': 25748, '5fold': 25749, 'usernames': 25750, 'faa': 25751, 'undeserved': 25752, 'eternally': 25753, 'donthoard': 25754, 'terrific': 25755, 'garwood': 25756, 'brightens': 25757, 'spreadkindness': 25758, 'cpi': 25759, '200bps': 25760, '330ml': 25761, 'boycottesco': 25762, 'wounder': 25763, 'synonym': 25764, 'fielding': 25765, 'poundage': 25766, 'dislocation': 25767, 'avishek': 25768, 'curable': 25769, 'nonationforfarmers': 25770, 'wid': 25771, 'yogendrayadav': 25772, 'vulnerbale': 25773, 'trumpisanidiot': 25774, 'trumpneedstoshutup': 25775, 'piersmorgan': 25776, 'techjunkieinvest': 25777, 'lizzie': 25778, 'gif': 25779, 'bushwick': 25780, 'sealed': 25781, 'n16': 25782, 'stokey': 25783, 'stokie': 25784, 'stokenewingtonchurchstreet': 25785, 'aakubosan': 25786, 'protectfrontliners': 25787, '03344859556': 25788, '03065659733': 25789, 'autosanitizergate': 25790, 'freeschoolmeals': 25791, 'schoolsuk': 25792, 'birla': 25793, 'industrialist': 25794, 'ov': 25795, 'onehealth': 25796, 'anheuser': 25797, 'wrench': 25798, 'notclear': 25799, 'dingle': 25800, 'golfatlanta': 25801, 'atlantagolf': 25802, 'golfgeorgia': 25803, 'georgiagolf': 25804, 'poorshowtesco': 25805, 'bossed': 25806, '3l': 25807, 'prosecco': 25808, 'sendwine': 25809, 'amble': 25810, 'worklife': 25811, 'delet': 25812, 'pricerises': 25813, 'inventing': 25814, 'revolutionizing': 25815, 'motif': 25816, 'businessesandcompanies': 25817, 'este': 25818, 'aplausonacional': 25819, 'debe': 25820, 'ir': 25821, 'acompa': 25822, 'conciencia': 25823, 'todos': 25824, 'quedarnos': 25825, 'sirve': 25826, 'homenaje': 25827, 'vamos': 25828, 'poner': 25829, 'peligro': 25830, 'siendo': 25831, 'irresponsables': 25832, 'transcombiexpress': 25833, 'yourlogisticspartner': 25834, 'covoid19greece': 25835, 'kathandkim': 25836, 'kathkim': 25837, 'layered': 25838, 'nlpoli': 25839, '763': 25840, 'enacts': 25841, 'osceola': 25842, 'ucf': 25843, 'semester': 25844, 'passport': 25845, 'skipthedishes': 25846, 'swmnewsletter': 25847, 'swisspost': 25848, 'northland': 25849, 'everett': 25850, 'ihss': 25851, 'frigging': 25852, 'aubergine': 25853, 'fearmongering': 25854, 'endeavor': 25855, 'grabi': 25856, 'nga': 25857, 'gakaon': 25858, 'lami': 25859, 'matooke': 25860, 'jimmy': 25861, 'quiroga': 25862, 'abled': 25863, 'stocknbecayse': 25864, 'commentator': 25865, 'acknowledgment': 25866, 'oilfieldservices': 25867, 'oilgas': 25868, 'epicenter': 25869, 'mcphotography': 25870, 'csbs': 25871, 'novokuznetsk': 25872, 'badass': 25873, 'spiking': 25874, 'wireline': 25875, 'alluarjun': 25876, 'cbid': 25877, 'untested': 25878, 'karenrebels': 25879, 'alm': 25880, 'zit': 25881, 'replicated': 25882, 'resi': 25883, 'subside': 25884, 'futurestarr': 25885, 'workforyourself': 25886, 'pressed': 25887, 'dotr': 25888, 'congestion': 25889, 'sonic': 25890, 'grin': 25891, 'morbid': 25892, 'gonzales': 25893, 'centralnews': 25894, 'cleanupyourmess': 25895, 'ppelitter': 25896, 'affording': 25897, 'pillitteri': 25898, 'tasting': 25899, 'tense': 25900, 'plausible': 25901, 'springnews': 25902, 'taradome22': 25903, 'cloroxwipes': 25904, '5mn': 25905, 'unprofitable': 25906, 'globa': 25907, 'gdc': 25908, 'assumes': 25909, 'vivek': 25910, 'gambhir': 25911, 'breather': 25912, 'mainer': 25913, 'pokemon': 25914, 'domenic': 25915, 'primucci': 25916, 'nova': 25917, 'ctxs': 25918, 'bntx': 25919, 'gazing': 25920, 'prodigal': 25921, 'onefight': 25922, 'earlyserviceleavers': 25923, 'jobsforveterans': 25924, '3hr': 25925, '2days': 25926, 'banknote': 25927, '4days': 25928, 'stainless': 25929, 'exterior': 25930, 'socialidistancing': 25931, 'penrith': 25932, 'bluemountains': 25933, 'publicmedia': 25934, 'euthanasia': 25935, 'plutocrat': 25936, 'containerstore': 25937, '9honey': 25938, 'headden': 25939, 'hajjar': 25940, 'seasoned': 25941, 'hajjarpetersllp': 25942, 'netskope': 25943, 'sanjay': 25944, 'beri': 25945, 'rdguk': 25946, 'savy': 25947, 'retiree': 25948, 'ottnews': 25949, 'covud19': 25950, 'terminate': 25951, 'ff': 25952, 'pail': 25953, 'zonrox': 25954, 'distraught': 25955, 'aen': 25956, 'jvvnl': 25957, 'nazi': 25958, 'betfred': 25959, 'vandalism': 25960, 'armchair': 25961, 'testifies': 25962, 'deza': 25963, 'perfecting': 25964, 'hre': 25965, 'wwouldn': 25966, 'rubbishing': 25967, '25kg': 25968, 'galling': 25969, '0042': 25970, 'pinpoint': 25971, 'hadleigh': 25972, 'hillary': 25973, 'clinton': 25974, 'embarrassment': 25975, 'buybuybuy': 25976, 'justquarantings': 25977, 'winer': 25978, 'bcs': 25979, '01756986': 25980, 'peterdutton': 25981, 'syndicate': 25982, 'chainsaw': 25983, 'maconsumer': 25984, 'spotascam': 25985, 'natter': 25986, 'belting': 25987, 'checkoutgirl': 25988, 'selfemployedsurvival': 25989, 'regain': 25990, 'chandrashekhar': 25991, 'tufaa': 25992, 'weyayu': 25993, 'whiteclaw': 25994, 'drizly': 25995, 'cheapestholidays': 25996, 'virginatlantic': 25997, 'virginholidays': 25998, 'impt': 25999, 'resourceful': 26000, 'howto': 26001, 'bhutan': 26002, 'bhutanese': 26003, 'thimphu': 26004, 'nightcrawler': 26005, 'thespot': 26006, 'bepositive': 26007, 'blackedout': 26008, 'wipeout': 26009, 'burningrubber': 26010, 'khatamkarona': 26011, 'listentomusic': 26012, 'emerg': 26013, 'disservice': 26014, 'tasawwuq': 26015, 'baitik': 26016, 'crater': 26017, 'trumpreces': 26018, 'hofbrauhaus': 26019, 'suds': 26020, 'clveland': 26021, 'confiscate': 26022, 'funtimes': 26023, 'reven': 26024, 'cbdmd': 26025, 'ycbd': 26026, 'cannabidiol': 26027, 'nireland': 26028, 'gameballymena': 26029, 'psalm': 26030, 'ccu': 26031, 'cardiotwitter': 26032, 'fixingthecountry': 26033, 'helo': 26034, 'certification': 26035, 'usd0': 26036, 'exw': 26037, 'usd1': 26038, 'sabcnews': 26039, 'hydoxychloroquine': 26040, 'triad': 26041, 'parish': 26042, 'donts': 26043, 'hausa': 26044, 'takeresponsibility': 26045, 'franchisenewsaustralia': 26046, 'franchisebusines': 26047, 'ggfc': 26048, 'johnsonmustgo': 26049, 'borisresign': 26050, 'ukstayhome': 26051, 'riced': 26052, 'livonia': 26053, 'jl': 26054, 'prot': 26055, 'inbound': 26056, 'innacurate': 26057, 'motorcycle': 26058, 'fuelprices': 26059, 'moronavirus': 26060, 'jst': 26061, 'aimlessly': 26062, '75ml': 26063, 'orihuelacosta': 26064, 'adminstrators': 26065, 'superarket': 26066, 'flinching': 26067, 'robber': 26068, 'protectothers': 26069, 'shulman': 26070, 'vicious': 26071, 'analogy': 26072, 'dissuade': 26073, 'profoundly': 26074, '1973': 26075, 'sedan': 26076, 'hanover': 26077, 'cirko': 26078, 'bhargab': 26079, 'maitra': 26080, 'boycottpepsi': 26081, 'wishlistediting': 26082, 'hrlaw': 26083, 'emplaw': 26084, 'dueregard': 26085, 'whately': 26086, '2discriminatory': 26087, 'psed': 26088, 'senatorshehusani': 26089, 'lifecycle': 26090, 'brandverse': 26091, 'katherine': 26092, 'figatner': 26093, 'whippy': 26094, 'dominate': 26095, 'intimes': 26096, 'equiping': 26097, 'hosptals': 26098, 'mahsood': 26099, 'telegram': 26100, 'mpc': 26101, 'hundo': 26102, 'clutching': 26103, 'natively': 26104, 'hospice': 26105, 'blissfully': 26106, 'hoverboard': 26107, 'backtothefuture': 26108, 'martymcfly': 26109, 'hoverboards': 26110, 'zelda': 26111, 'pfoa': 26112, 'insulted': 26113, 'chickenwings': 26114, 'meatonthebone': 26115, 'boundary': 26116, 'squeezethecharmin': 26117, 'diasorin': 26118, 'authorization': 26119, 'simplexa': 26120, 'opp': 26121, 'cricket': 26122, 'mcfuku': 26123, 'disorganized': 26124, 'speech1': 26125, 'framing': 26126, 'kennyrogers': 26127, 'kenny': 26128, 'harig': 26129, 'coddle': 26130, 'whitecoats': 26131, 'screengrabs': 26132, 'harbor': 26133, 'respnders': 26134, 'haley': 26135, 'reviving': 26136, 'attaining': 26137, 'nichemarket': 26138, 'cleo': 26139, 'cherryflowers': 26140, 'hawkes': 26141, 'glendale': 26142, 'locationdata': 26143, 'likewise': 26144, 'mealprep': 26145, 'zimo': 26146, 'toi': 26147, 'mfgs': 26148, 'searched': 26149, 'reappear': 26150, 'inherited': 26151, 'larder': 26152, 'keepsafeeveryone': 26153, 'keepreadingencasa': 26154, 'gunbacker': 26155, 'becouse': 26156, 'fould': 26157, 'meanness': 26158, 'malice': 26159, 'repeating': 26160, 'unashamed': 26161, 'actofkindness': 26162, 'goodsamaritan': 26163, 'thecurve': 26164, 'ecurve': 26165, 'mutiaradamansara': 26166, 'petalingjaya': 26167, 'restrictivemovementorder': 26168, 'melee': 26169, 'parentingfail': 26170, 'monroe': 26171, 'perinton': 26172, 'challah': 26173, 'bakeoff': 26174, 'easterbreadtradition': 26175, 'pflugerville': 26176, 'vapes': 26177, 'equalizer': 26178, 'publicsafety': 26179, 'hydroxychloronquine': 26180, 'supportyorkcounty': 26181, 'matatus': 26182, 'playin': 26183, 'puerto': 26184, 'rico': 26185, 'bangor': 26186, 'thrice': 26187, 'lucknow': 26188, 'liberalismisamentaldisorder': 26189, 'usdcad': 26190, '4200': 26191, 'cad': 26192, 'kvbprime': 26193, 'stickley': 26194, 'interviewee': 26195, 'silence': 26196, 'burgeoning': 26197, 'cherryblossoms': 26198, 'birthdayiscancelled': 26199, 'biked': 26200, 'conceivable': 26201, 'seniorcare': 26202, 'rida': 26203, 'yucat': 26204, 'dicte': 26205, 'desrus': 26206, 'avitoonz': 26207, 'propcos': 26208, 'proprietary': 26209, 'jpm': 26210, '49k': 26211, 'chinaproperty': 26212, 'toughen': 26213, 'snowflake': 26214, 'gmaz': 26215, 'mealimeal': 26216, 'boycottmcdonalds': 26217, 'fightfor15': 26218, 'jse': 26219, 'hobart': 26220, 'brisbane': 26221, 'darwin': 26222, 'prolongation': 26223, 'roskill': 26224, 'survivalkit': 26225, 'collide': 26226, 'dorabjees': 26227, 'bangani': 26228, 'ngicela': 26229, 'niyeke': 26230, 'cease': 26231, 'desist': 26232, 'calculates': 26233, 'subramani': 26234, 'populationcontrol': 26235, 'structured': 26236, 'backyard': 26237, 'anlaby': 26238, 'marol': 26239, 'udhavthackeray': 26240, 'div': 26241, 'excludes': 26242, 'lilburn': 26243, 'wearadamnmask': 26244, 'blumhouse': 26245, 'blum': 26246, 'somethings': 26247, 'asianshares': 26248, 'bolstered': 26249, 'crip': 26250, '1017challenge': 26251, 'worldstarhiphop': 26252, 'kushupchallenge': 26253, 'newmusic': 26254, 'thursdayvibes': 26255, 'goverened': 26256, 'scoundrel': 26257, 'accountable': 26258, 'stopcoronavirus': 26259, 'mythical': 26260, 'roadie': 26261, 'randomrapha': 26262, 'deducting': 26263, 'upstatement': 26264, 'consultwithtsb': 26265, 'tsb': 26266, 'fathom': 26267, 'bridgecard': 26268, 'bibleverse': 26269, 'elan': 26270, 'deplete': 26271, 'fischerjordan': 26272, 'meetthepress': 26273, 'sharper': 26274, 'acquiring': 26275, 'raredisease': 26276, 'cbdoilbenefitz': 26277, 'homegrow': 26278, 'buyinbulk': 26279, 'beprepared': 26280, '420': 26281, 'usalockdown': 26282, 'auspicious': 26283, 'karaknath': 26284, 'kamalnath': 26285, 'mppoliticalcrisis': 26286, 'subsidizing': 26287, 'sanit': 26288, 'adede': 26289, 'derep': 26290, 'ruoth': 26291, 'nemesis': 26292, 'reactivate': 26293, 'brightram': 26294, 'protectconsumers': 26295, 'protectallpeople': 26296, 'cocoa': 26297, 'coffeelover': 26298, 'probe': 26299, 'ent': 26300, 'overwatch': 26301, 'junkrat': 26302, 'postwoman': 26303, 'perished': 26304, 'purport': 26305, 'residentevil4': 26306, 'capcom': 26307, 'gratification': 26308, 'spilled': 26309, 'chiaroscurist': 26310, 'spelt': 26311, 'unmet': 26312, 'francois': 26313, 'candelon': 26314, 'massholes': 26315, 'paidsickdays': 26316, 'ffcra': 26317, 'paidleave': 26318, '1942': 26319, 'munich': 26320, 'ncba': 26321, 'marty': 26322, 'netflixth': 26323, 'survivor2020': 26324, 'zandi': 26325, 'mend': 26326, 'hitman': 26327, 'sportswear': 26328, '254': 26329, '110922066': 26330, 'prioritization': 26331, 'reapply': 26332, 'trumpcovidfails': 26333, 'preferably': 26334, 'latecapitalism': 26335, 'dutton': 26336, 'rhyming': 26337, 'slang': 26338, 'auspolsocorrupt': 26339, 'achat': 26340, 'cois': 26341, 'faire': 26342, 'leur': 26343, 'aider': 26344, 'entreprises': 26345, 'ciblant': 26346, 'produits': 26347, 'chaque': 26348, 'compte': 26349, 'appuyer': 26350, 'locaux': 26351, 'stimulant': 26352, 'notre': 26353, 'conomie': 26354, 'hangry': 26355, 'gee': 26356, 'quackery': 26357, 'gray': 26358, 'doorstop': 26359, 'nami': 26360, 'yuu': 26361, 'asikho': 26362, 'finalising': 26363, 'thrum': 26364, 'ominous': 26365, 'wetmarket': 26366, 'individually': 26367, 'polled': 26368, 'supervisory': 26369, 'lavallee': 26370, 'bhlrkqtp1z': 26371, 'consisted': 26372, 'disturbingly': 26373, 'salsa': 26374, 'weirdstockups': 26375, 'auth': 26376, 'lustre': 26377, 'hitachi': 26378, 'intereste': 26379, 'rhetoric': 26380, 'antisemitism': 26381, 'ayman': 26382, 'mohyeldin': 26383, 'painful': 26384, 'pleasestophoarding': 26385, 'merchantserviceinnovations': 26386, 'roadwarrior': 26387, 'memer': 26388, 'watchout': 26389, 'cttoncorona': 26390, 'wwinsights': 26391, 'thankyouretailworkers': 26392, 'ramvilaspaswan': 26393, 'unsolidarity': 26394, 'costumer': 26395, 'cooed': 26396, 'dtla': 26397, 'sta': 26398, 'prix': 26399, 'petrolhead': 26400, 'otherside': 26401, 'ribeye': 26402, 'carnivore': 26403, 'squirrel': 26404, 'docilians': 26405, 'pampered': 26406, 'testify': 26407, 'absolut': 26408, 'nordic': 26409, 'nordicinnovation': 26410, 'comeswith': 26411, 'responibility': 26412, 'delibirately': 26413, 'expo': 26414, 'soka': 26415, 'kma': 26416, 'yasa': 26417, 'ilde': 26418, 'kuyla': 26419, 'kutlan': 26420, 'betheissue': 26421, 'consumerismreform': 26422, 'rs96': 26423, 'gianteagle': 26424, '126': 26425, 'ukeconomy': 26426, 'tcpa': 26427, 'staranded': 26428, 'strandedbrits': 26429, 'bringflightsback': 26430, 'redirect': 26431, 'csforall': 26432, 'convention': 26433, 'eagerness': 26434, 'distanc': 26435, 'youllbeaiight': 26436, 'waityourturn': 26437, 'stayback': 26438, 'atleast6feet': 26439, 'sledgehammer': 26440, 'bonesaw': 26441, 'outlawing': 26442, 'delve': 26443, 'constrained': 26444, 'arundel': 26445, 'marubeni': 26446, 'chera': 26447, 'titan': 26448, 'parlayed': 26449, 'reaped': 26450, 'revew': 26451, 'businesswoman': 26452, 'affiliatemarketing': 26453, 'branston': 26454, 'antiflu': 26455, 'feeble': 26456, 'fittest': 26457, 'att': 26458, 'rhea': 26459, 'whacking': 26460, 'lon': 26461, 'fraction': 26462, 'arnold': 26463, 'convos': 26464, 'insignificant': 26465, 'scmp': 26466, 'costcos': 26467, 'adjourned': 26468, 'nonpayment': 26469, 'dropshipping': 26470, 'vegetableoil': 26471, 'dukem': 26472, 'trumpownseverydeath': 26473, 'toiletpaperapocolypse': 26474, 'schuermann': 26475, 'fixates': 26476, 'oilfinance': 26477, 'forge': 26478, 'pager': 26479, '1974': 26480, 'swcycle': 26481, 'tightened': 26482, 'bounced': 26483, 'replay': 26484, 'italytravel': 26485, 'riddance': 26486, 'poison': 26487, 'n2': 26488, 'bettersafethansorry': 26489, 'fertilizer': 26490, 'navigates': 26491, 'marketoutlook': 26492, 'wo': 26493, 'berojgar': 26494, 'achanak': 26495, 'gayee': 26496, 'ane': 26497, 'ziddi': 26498, 'supermarts': 26499, 'lumpur': 26500, 'greediness': 26501, 'etenergyworld': 26502, 'sprint': 26503, 'nounemployment': 26504, 'goodie': 26505, 'cbtt': 26506, 'somerset': 26507, 'helpp': 26508, 'authentik': 26509, 'soulmatez': 26510, 'watchmenhbo': 26511, 'bobblehead': 26512, 'mcm': 26513, 'freegiveaway': 26514, 'mancrushmonday': 26515, 'reared': 26516, 'skymiles': 26517, 'teamams': 26518, 'audiology': 26519, 'togetherwearebetter': 26520, 'louse': 26521, 'phantom': 26522, 'clawing': 26523, 'multiplying': 26524, 'apparatus': 26525, 'peanutbutter': 26526, 'backtrack': 26527, 'letpanic': 26528, 'followtherules': 26529, 'ignorantaustralians': 26530, 'beachgoers': 26531, 'brazilian': 26532, 'styling': 26533, 'backside': 26534, 'pandemicproblems': 26535, 'day15': 26536, 'discgolfcenter': 26537, 'califor': 26538, 'roc': 26539, 'fabricated': 26540, 'whstsapp': 26541, '08121156706': 26542, 'cristiano': 26543, 'yoruba': 26544, 'guardiola': 26545, 'torres': 26546, 'day3': 26547, 'grocerypickup': 26548, 'wegotthis': 26549, 'safeguarded': 26550, 'sunoco': 26551, 'diane': 26552, 'drifting': 26553, 'willowy': 26554, 'luxary': 26555, 'afflicted': 26556, 'array': 26557, 'gracious': 26558, 'blandin': 26559, 'shemeantcondoms': 26560, 'impeachedts': 26561, 'regrann': 26562, 'victor': 26563, 'catalog': 26564, 'makeithappen': 26565, 'odyssey': 26566, 'scambritain': 26567, 'raisethebar': 26568, 'workersrights': 26569, 'prosperity': 26570, 'handinhand': 26571, 'soda': 26572, 'coronafunny': 26573, 'presto': 26574, 'akinbamidele': 26575, 'akintola': 26576, 'dink': 26577, 'serviette': 26578, 'socents': 26579, 'underlining': 26580, 'coronacri': 26581, 'furnishing': 26582, 'acikmayasa': 26583, 'salonetwitter': 26584, 'cakeshop': 26585, 'lent': 26586, 'qkjj': 26587, 'doubter': 26588, 'objective': 26589, 'petroleumreserve': 26590, 'aggregator': 26591, 'wallis': 26592, 'slippage': 26593, 'contro': 26594, 'surf': 26595, 'supermarketsuperheroes': 26596, 'servicer': 26597, '609': 26598, '292': 26599, '7272': 26600, 'gma': 26601, 'drjashton': 26602, 'michaelkekesara': 26603, 'syncrude': 26604, 'ymm': 26605, 'rwmb': 26606, 'coronaireland': 26607, 'denounce': 26608, 'nbachinalapdogs': 26609, 'iab': 26610, 'mung': 26611, 'mayonnaise': 26612, 'lightning': 26613, 'nabou': 26614, 'takesavillage': 26615, 'friendslikefamily': 26616, 'dffnt': 26617, 'hermanita': 26618, 'mngr': 26619, 'safedistancing': 26620, 'ayatollah': 26621, 'sistani': 26622, 'silently': 26623, 'justifying': 26624, 'ijustwantsomemilk': 26625, 'prioritising': 26626, 'parecetomol': 26627, 'seperates': 26628, 'lowincomes': 26629, 'sfchron': 26630, 'postcard': 26631, 'newssuite': 26632, '80yo': 26633, 'distressing': 26634, 'sharara': 26635, 'ordinarily': 26636, 'onboarding': 26637, 'ilovereading': 26638, 'hca': 26639, 'prolific': 26640, 'ramanan': 26641, 'krishnamoorti': 26642, 'khou': 26643, 'louistv': 26644, 'shatter': 26645, 'shattawale': 26646, 'bayonne': 26647, 'popcorn': 26648, 'glancingly': 26649, 'amusing': 26650, 'broiler': 26651, 'fritos': 26652, 'plaguing': 26653, 'ferrer': 26654, 'antoinette': 26655, 'number2': 26656, 'quarantine2020': 26657, 'verse': 26658, 'hubbard': 26659, 'dunne': 26660, 'ocha': 26661, 'iic': 26662, 'idp': 26663, 'acce': 26664, 'digitalservicesact': 26665, '50th': 26666, 'copayments': 26667, 'proudmuslim': 26668, 'bateman': 26669, 'translating': 26670, 'inv': 26671, 'consum': 26672, 'maan': 26673, 'haitian': 26674, 'satu': 26675, 'satunya': 26676, 'tempat': 26677, 'aku': 26678, 'kena': 26679, 'exodus': 26680, 'passover2020': 26681, 'chagsameach': 26682, '64gb': 26683, '704': 26684, 'stature': 26685, 'unfounded': 26686, 'ktaka': 26687, 'washer': 26688, 'validity': 26689, 'brendan': 26690, 'formorenews': 26691, 'shoo': 26692, 'dom': 26693, 'occupation': 26694, 'perpetrated': 26695, 'guitarsolo': 26696, 'shred': 26697, 'humorous': 26698, 'propertyprices': 26699, 'ukproperty': 26700, 'housingsupply': 26701, 'internetretailing': 26702, 'ukcovidlunacy': 26703, 'avoids': 26704, 'tottering': 26705, 'impedance': 26706, 'harmonicretail': 26707, 'retailevolution': 26708, 'retailchanges': 26709, 'retailexperience': 26710, 'sprawling': 26711, 'multiplication': 26712, 'asic': 26713, 'financialsystem': 26714, 'viciously': 26715, 'wisconsinprimary': 26716, 'oak': 26717, 'thatcherism': 26718, 'vicar': 26719, 'tcm': 26720, 'kathy': 26721, 'bates': 26722, 'splitting': 26723, 'myus': 26724, 'internationalshipping': 26725, 'mcnamme': 26726, 'iain': 26727, 'duncan': 26728, 'uncovers': 26729, 'trump20': 26730, 'priv': 26731, 'padding': 26732, 'homegym': 26733, 'swinnen': 26734, 'surcharge': 26735, 'sindharamsanwarmalmewawala': 26736, 'dryfruits': 26737, 'peril': 26738, 'coronachaos': 26739, 'overhyped': 26740, 'biosurveillance': 26741, 'atlas': 26742, 'debacle': 26743, 'americastrong': 26744, 'tokre': 26745, 'pci': 26746, 'flippant': 26747, 'smarta': 26748, 'quinine': 26749, 'jean': 26750, 'coronacation': 26751, 'transferring': 26752, 'mercado': 26753, '20th': 26754, '55pm': 26755, 'deepdale': 26756, 'duopoly': 26757, 'toorak': 26758, 'wellington': 26759, 'wildest': 26760, 'foxbusiness': 26761, 'dc15': 26762, 'sbm': 26763, 'wheatoffal': 26764, 'microdroplets': 26765, 'inhaled': 26766, 'mreade': 26767, 'dermott': 26768, 'jewell': 26769, 'cai': 26770, 'taanz': 26771, 'olsen': 26772, 'swinging': 26773, 'travelagents': 26774, 'kerrydigest': 26775, 'oaps': 26776, 'shuffling': 26777, 'flinch': 26778, 'newsdesk': 26779, 'prioritizes': 26780, 'rebalancing': 26781, 'prayingforall': 26782, 'millenial': 26783, 'ontariotogether': 26784, 'theoretically': 26785, 'protracted': 26786, '8216': 26787, '8217': 26788, 'cathedral': 26789, 'stpatricksday': 26790, 'selfprotect': 26791, 'durban': 26792, 'jio': 26793, 'happier': 26794, 'storeclerks': 26795, 'grocerystoreclerksstaysafe': 26796, 'cambridgeuniversity': 26797, 'openingtimes': 26798, 'rogue': 26799, 'robyn': 26800, '5livebreakfast': 26801, 'ugx': 26802, 'bospoli': 26803, 'dormant': 26804, 'mcdonaldscoffee': 26805, 'oyedepo': 26806, 'bifrons': 26807, 'arsetralia': 26808, 'mislead': 26809, 'nisa': 26810, 'salman': 26811, 'mohammedbinsalman': 26812, 'atim': 26813, 'streetbees': 26814, 'vidisha': 26815, 'gaglani': 26816, 'oju': 26817, 'koba': 26818, 'istandwithpastorchris': 26819, 'toto': 26820, 'oas': 26821, 'bcrea': 26822, 'brendon': 26823, 'ogmundson': 26824, 'universityofmichigan': 26825, 'akp': 26826, 'mhp': 26827, 'downvote': 26828, 'spatial': 26829, 'motorbike': 26830, 'indiabulls': 26831, 'deffecult': 26832, 'virues': 26833, 'nip': 26834, 'bbq': 26835, 'recipeoftheday': 26836, 'marmalade': 26837, 'glaze': 26838, 'marmoreresearch': 26839, 'emilia': 26840, 'romagna': 26841, 'lazio': 26842, 'nun': 26843, 'panicdemic': 26844, 'zimbabwean': 26845, 'looe': 26846, 'discontinue': 26847, 'tplocator': 26848, 'betrayed': 26849, 'disband': 26850, 'crudeexports': 26851, 'arguscrude': 26852, 'groceryretailers': 26853, 'consequent': 26854, 'barron': 26855, 'insists': 26856, 'crafty': 26857, 'absorbent': 26858, 'geek': 26859, 'domestically': 26860, 'enquiring': 26861, 'familybusiness': 26862, 'happytohelp': 26863, 'industry2020': 26864, 'traveltrends': 26865, 'nba2k20': 26866, 'cranky': 26867, 'colaboration': 26868, 'confidently': 26869, 'fixturescloseup': 26870, 'storefixtures': 26871, 'retailfixtures': 26872, 'brandexperience': 26873, 'shoppermarketing': 26874, 'aircon': 26875, 'cured': 26876, 'palestinian': 26877, 'swept': 26878, 'wench': 26879, 'attemped': 26880, 'stockroom': 26881, 'biy': 26882, 'dontcare': 26883, 'grueling': 26884, 'bulkbuy': 26885, 'uppity': 26886, 'offbrands': 26887, 'confession': 26888, 'annie': 26889, 'buttermilk': 26890, 'porn': 26891, 'gatherer': 26892, 'defaulting': 26893, 'erodes': 26894, 'nationallockdown': 26895, 'shelfisolation': 26896, 'kavacik': 26897, 'arthur': 26898, 'smalltownpride': 26899, 'slowthecurve': 26900, 'moreira': 26901, '1991': 26902, 'smucker': 26903, 'section144is': 26904, 'nana': 26905, 'horlicks': 26906, 'illegals': 26907, 'marketingstats': 26908, 'potion': 26909, 'lozenge': 26910, 'intraday': 26911, 'gameface': 26912, 'accountant': 26913, 'disapprove': 26914, 'consumerbusiness': 26915, 'resuscitate': 26916, 'dnr': 26917, 'ceemea': 26918, 'maritimes': 26919, 'kungflufighting': 26920, 'qutting': 26921, 'suncontract': 26922, 'custumers': 26923, 'eth': 26924, 'nadu': 26925, 'jacoby': 26926, 'itstime': 26927, 'socialdistancingdiaries': 26928, 'greet': 26929, 'istayhome': 26930, 'breeze': 26931, 'powerofpositivity': 26932, 'burndiya': 26933, 'specialised': 26934, 'koel': 26935, 'aajeevika': 26936, 'palamu': 26937, 'haircut': 26938, 'whm': 26939, 'cocoapost': 26940, 'minworth': 26941, 'tbh': 26942, 'exempts': 26943, 'mccarthy': 26944, 'trault': 26945, 'fining': 26946, 'dishonest': 26947, 'eldery': 26948, 'floridalockdown': 26949, 'dataprivacy': 26950, 'digitalpolicy': 26951, 'fastestgrowing': 26952, 'kozak': 26953, 'eastvan': 26954, 'foodblog': 26955, 'vancouverbc': 26956, 'yvreats': 26957, 'vancity': 26958, 'yvrfoodies': 26959, 'vancouverfood': 26960, 'vancouverfoodie': 26961, 'vancouverfoodies': 26962, 'burnaby': 26963, 'newwest': 26964, 'surreybc': 26965, 'richmondbc': 26966, 'canuck': 26967, 'depended': 26968, 'cundy': 26969, 'joblessclaims': 26970, '0337210852': 26971, 'sholanke': 26972, 'goriola': 26973, 'sodiq': 26974, 'sofi': 26975, 'prescient': 26976, 'abetterpharmacy': 26977, 'fastmarkets': 26978, 'risi': 26979, 'viewpoint': 26980, 'qantas': 26981, 'returnees': 26982, 'day1': 26983, 'disconcerting': 26984, 'lastword': 26985, '261': 26986, 'phantomflights': 26987, 'playfair': 26988, 'stewart': 26989, 'grandjunction': 26990, 'santafe': 26991, 'nmpol': 26992, 'nmleg': 26993, 'nmsen': 26994, 'farmington': 26995, 'sanjuanbasin': 26996, 'durango': 26997, 'permian': 26998, 'permianbasin': 26999, 'curriculum': 27000, 'zerohedge': 27001, 'favorable': 27002, 'reignite': 27003, 'oilpaintings': 27004, 'cecilia': 27005, 'tacoli': 27006, 'windowless': 27007, 'fad': 27008, 'guesting': 27009, 'birdsall': 27010, 'localnews': 27011, 'sdg2': 27012, 'farmtofork': 27013, 'iamwanda': 27014, 'biden2020': 27015, 'cfi': 27016, 'acrylonitrile': 27017, 'butadiene': 27018, 'nhsvolunteerresponder': 27019, 'nhsvolunteers': 27020, 'cryptos': 27021, 'litecoin': 27022, 'foodcrisis': 27023, 'stillnotolietpaper': 27024, 'w7alvtqwij': 27025, 'familydocs': 27026, '1hr': 27027, 'wilful': 27028, 'throwaway': 27029, 'pratt': 27030, 'rachael': 27031, 'indianapolis': 27032, 'customorders': 27033, 'naptown': 27034, 'linkinbio': 27035, 'wakanda': 27036, 'manenoz': 27037, 'tembeakenya': 27038, 'painter': 27039, 'tukwila': 27040, 'youreself': 27041, 'dishonesty': 27042, 'brandstrategy': 27043, 'brandpostitioning': 27044, 'consumervalues': 27045, 'consumerdemands': 27046, 'cdclied': 27047, 'applestock': 27048, '1alvxcdray': 27049, 'meticulous': 27050, 'thumb': 27051, 'controled': 27052, 'monumental': 27053, 't1d': 27054, 'cadillac': 27055, 'relieffordiabetics': 27056, 'lillysaveslives': 27057, 'hosp': 27058, 'mediavataarindia': 27059, 'nopurellanywhere': 27060, 'thisadvicewasdumb': 27061, 'latics': 27062, 'clemt': 27063, 'tuskys': 27064, 'sendy': 27065, 'sens': 27066, 'chilltheeffout': 27067, 'strathalbyn': 27068, 'evaporation': 27069, 'vonderleyen': 27070, 'futureofeurope': 27071, 'natl': 27072, 'staged': 27073, 'kisi': 27074, 'milne': 27075, 'jau': 27076, 'mujhe': 27077, 'kaha': 27078, 'milega': 27079, 'tkt': 27080, 'potts': 27081, 'venting': 27082, 'flaring': 27083, 'cutmethane': 27084, 'hinting': 27085, 'indextrading': 27086, 'tradingemas': 27087, 'tradingforliving': 27088, 'tradingsignal': 27089, 'traderlife': 27090, 'tradingblog': 27091, 'dontlooseyourshirt': 27092, 'janta': 27093, 'mundane': 27094, 'wracking': 27095, 'nikkei': 27096, 'carnival': 27097, 'barker': 27098, 'srz': 27099, 'beerstogo': 27100, 'artbarsc': 27101, 'murica': 27102, 'inflight': 27103, 'hirings': 27104, 'kingsoopers': 27105, 'fredmeyer': 27106, 'whenwe': 27107, 'amply': 27108, 'pillaged': 27109, 'bsvirus': 27110, '1899': 27111, 'digitalpayments': 27112, 'paymentportal': 27113, 'norbert': 27114, 'highfalutin': 27115, 'gitwitter': 27116, 'mainstreet': 27117, 'emailmarketing': 27118, 'deg': 27119, 'pjvogt': 27120, 'mario': 27121, 'blackops3': 27122, 'bo3zombies': 27123, 'steamworkshop': 27124, '16am': 27125, 'woofer': 27126, 'adayinthelifeofselfisolation': 27127, 'yannathan': 27128, 'workerhealth': 27129, 'stepupcarolinas': 27130, 'nomi': 27131, 'mtl': 27132, 'britishcolumbia': 27133, 'justintrudeau': 27134, 'kwikspar': 27135, 'kempton': 27136, 'akin': 27137, 'leftwing': 27138, 'girl45': 27139, 'fleabag': 27140, 'tix': 27141, '948373rd': 27142, 'feck': 27143, 'toucj': 27144, 'superdrug': 27145, 'upwards': 27146, 'bearmarket': 27147, 'lmfao': 27148, 'ochanja': 27149, '4cayurveda': 27150, 'goodlife': 27151, 'goodhealth': 27152, 'cancerayurveda': 27153, 'kidneyrevival': 27154, 'mers': 27155, 'healthnews': 27156, 'hypertension': 27157, 'excusing': 27158, 'confinementdiary': 27159, 'confinementg': 27160, 'ral': 27161, 'comicbook': 27162, 'mafia': 27163, 'dustbunnymafia': 27164, 'bookie': 27165, '573': 27166, '751': 27167, 'prohibiting': 27168, 'rectum': 27169, 'remission': 27170, 'jimmykimmel': 27171, 'forreal': 27172, 'forcein': 27173, 'culpable': 27174, 'doktari': 27175, 'likoni': 27176, 'juja': 27177, 'narok': 27178, 'uhunye': 27179, 'roussin': 27180, 'discourages': 27181, 'unbranded': 27182, 'plugin': 27183, 'maccabi': 27184, 'bnei': 27185, 'brak': 27186, 'bennett': 27187, 'toured': 27188, 'anime': 27189, 'kentuckyfriedchicken': 27190, 'friedchicken': 27191, 'capitulation': 27192, 'starfishclub': 27193, 'bullwhip': 27194, '1x': 27195, 'ndis': 27196, 'shopee': 27197, 'zalora': 27198, 'ahmedabad': 27199, 'kk': 27200, 'nirala': 27201, 'unleashes': 27202, 'chmura': 27203, '7bn': 27204, 'afdb': 27205, 'papaya': 27206, 'tang': 27207, 'yuan': 27208, 'helix': 27209, 'opco': 27210, 'myheritage': 27211, 'pathway': 27212, 'microscholarship': 27213, 'nadeem': 27214, 'turabi': 27215, 'oringinally': 27216, 'marrickville': 27217, 'nswpol': 27218, 'healing': 27219, 'logical': 27220, 'korona': 27221, 'movevan': 27222, 'usnscomfort': 27223, 'blight': 27224, 'gcw': 27225, 'permitting': 27226, 'crimesagainsthumanity': 27227, 'inhistogether': 27228, 'argue': 27229, 'rugby': 27230, 'wresting': 27231, 'boro': 27232, 'synced': 27233, 'boding': 27234, 'rapprochement': 27235, 'retreating': 27236, 'summa': 27237, 'biotches': 27238, 'torontostrong': 27239, 'traveltips': 27240, 'healthawareness': 27241, 'travelguide': 27242, 'tourguide': 27243, 'salar': 27244, 'millat': 27245, 'akbaruddin': 27246, 'owaisi': 27247, 'rapping': 27248, 'venom': 27249, 'malevolent': 27250, 'spinning': 27251, 'fabriziocorona': 27252, 'letshavefun': 27253, 'shareit': 27254, 'eine': 27255, 'wahre': 27256, 'coronageschichte': 27257, 'wenn': 27258, 'supermarktkasse': 27259, 'ohne': 27260, 'vorwarnung': 27261, 'taschent': 27262, 'cherpaket': 27263, 'weg': 27264, 'genommen': 27265, 'wird': 27266, 'deine': 27267, 'schokoladen': 27268, 'ostereiert': 27269, 'aber': 27270, 'halbiert': 27271, 'werden': 27272, 'vorgang': 27273, 'coronadi': 27274, 'feelthejr': 27275, 'litigating': 27276, 'faizan': 27277, 'yusuf': 27278, 'danube': 27279, 'salaam': 27280, 'jedhha': 27281, 'famliy': 27282, 'sepreding': 27283, 'steadily': 27284, 'microscopy': 27285, 'zafrul': 27286, 'muhyiddin': 27287, 'judgment': 27288, 'backdoor': 27289, 'nearer': 27290, 'qtr': 27291, 'preppertalk': 27292, 'shtf': 27293, 'lieing': 27294, 'tailored': 27295, 'unfathomable': 27296, 'appt': 27297, 'pt1': 27298, 'grocerers': 27299, 'cunning': 27300, 'degradation': 27301, 'financ': 27302, 'plethora': 27303, 'bucking': 27304, 'santions': 27305, 'hota': 27306, 'halat': 27307, 'baray': 27308, 'letay': 27309, '266': 27310, '300each': 27311, 'conservativeparty': 27312, 'permeated': 27313, 'lyingnewsom': 27314, 'mna': 27315, 'godown': 27316, 'toiletpaperdoor': 27317, 'mktg131': 27318, 'teksi': 27319, 'intern': 27320, 'dealmakers': 27321, 'restructurings': 27322, 'doctorsarehumans': 27323, 'enhances': 27324, 'kagan': 27325, 'cornish': 27326, '48yr': 27327, '47yr': 27328, 'carabinieri': 27329, 'custody': 27330, 'prio': 27331, 'seattlecoronavirus': 27332, 'plum': 27333, 'innit': 27334, 'devinjohnson445': 27335, 'optimistically': 27336, 'pocketed': 27337, 'copmpany': 27338, 'ucsf': 27339, 'scripps': 27340, 'translational': 27341, 'mhealth': 27342, 'crowdsource': 27343, 'biostatistics': 27344, 'amplified': 27345, 'bako': 27346, 'lalong': 27347, 'relentless': 27348, 'farhan': 27349, 'yusoff': 27350, 'gala': 27351, 'scrabbling': 27352, 'amending': 27353, 'sizable': 27354, 'repo': 27355, 'cheerio': 27356, 'uneducated': 27357, 'bcus': 27358, 'hughs': 27359, 'nosociallife': 27360, 'careerchange': 27361, 'rosslare': 27362, 'tillman': 27363, 'minimising': 27364, 'thebestrun': 27365, 'o2': 27366, 'sbwl': 27367, 'wyatt': 27368, 'widespreadpanic': 27369, 'vta': 27370, 'mortem': 27371, 'disinflation': 27372, 'sickle': 27373, 'consumeraffairs': 27374, 'registering': 27375, 'skolars': 27376, 'rl': 27377, 'hw': 27378, 'oilments': 27379, 'swanson': 27380, 'hoquiam': 27381, 'lockdownusa': 27382, 'graysharbor': 27383, 'scomo': 27384, 'msia': 27385, 'econom': 27386, 'islamabad': 27387, 'bannu': 27388, '2ndamendment': 27389, 'gunstores': 27390, 'praytogether': 27391, 'rakmall': 27392, 'qanda': 27393, 'sleepy': 27394, 'uncomfortable': 27395, 'asteroid': 27396, 'nuys': 27397, 'vibration': 27398, 'vitc': 27399, 'goodvibes': 27400, 'alexas': 27401, 'fotos': 27402, 'pixabay': 27403, 'venerable': 27404, 'hakim': 27405, 'coronazombies': 27406, 'coronazombiesmovie': 27407, 'cashlesspayments': 27408, 'consumertrend': 27409, 'micromarkets': 27410, 'royale': 27411, 'checkstand': 27412, 'wantin': 27413, 'myluck': 27414, 'missiouri': 27415, 'divorcing': 27416, 'youhadonejob1': 27417, 'witch': 27418, 'lame': 27419, 'redeemer': 27420, 'brew': 27421, 'biofuels': 27422, 'unpacks': 27423, '3hours': 27424, '220ml': 27425, 'unscented': 27426, 'crosshairs': 27427, 'santapola': 27428, 'stopcovid19': 27429, 'activesports': 27430, 'trekking': 27431, 'sfa': 27432, 'consequen': 27433, 'indulge': 27434, 'modernbazaar': 27435, 'inhouseproducts': 27436, 'premiumbrands': 27437, 'bringbackbritishbrains': 27438, 'renaissance': 27439, 'threefold': 27440, 'penalising': 27441, 'readability': 27442, 'leper': 27443, 'policestate': 27444, 'macroeconomics': 27445, 'meny': 27446, 'petstore': 27447, 'petsupplies': 27448, 'tack': 27449, 'fortifying': 27450, 'impersonation': 27451, 'rusia': 27452, 'corornamadness': 27453, 'firsthand': 27454, 'crunched': 27455, 'coincided': 27456, 'billionsatplay': 27457, 'cribdelacurse': 27458, 'besafeeveryone': 27459, 'roland': 27460, 'kape': 27461, 'nian': 27462, 'henryqc': 27463, 'honouring': 27464, 'cuny': 27465, 'multipurpose': 27466, 'discouragement': 27467, 'retailinsider': 27468, 'northerner': 27469, 'southerner': 27470, 'chavs': 27471, 'sweetsandsnacksexpo': 27472, 'bandcamp': 27473, 'anyanswers': 27474, 'heromasks': 27475, 'flaming': 27476, 'torch': 27477, 'spiilttle': 27478, '700m': 27479, 'healthwise': 27480, 'crouching': 27481, 'duckers': 27482, 'dissipate': 27483, 'remittance': 27484, 'businessowner': 27485, 'parknshop': 27486, 'facto': 27487, 'nourishing': 27488, 'consumerattitudes': 27489, 'assumed': 27490, 'aguh': 27491, 'pah': 27492, 'wuhanvirusmadeinchina': 27493, 'wuhanvirusismadeinchina': 27494, 'unsc': 27495, 'doorbuster': 27496, 'suffocate': 27497, 'zakat': 27498, 'invisibleenemy': 27499, 'decal': 27500, 'boiling': 27501, 'ussenators': 27502, 'whine': 27503, 'hijack': 27504, 'rift': 27505, 'hl': 27506, 'whethe': 27507, '1200shs': 27508, '4500shs': 27509, 'shs': 27510, 'kayiso': 27511, '3500shs': 27512, 'nbsamasengejje': 27513, 'clogged': 27514, 'insur': 27515, 'retroactive': 27516, 'muppet': 27517, 'espousing': 27518, 'nothin': 27519, 'idtwitter': 27520, 'fareshare': 27521, '0131': 27522, '554': 27523, '3900': 27524, 'hostel': 27525, 'exd': 27526, 'postage': 27527, 'lalamove': 27528, '10bottles': 27529, 'kkm': 27530, 'malaysiabebascovid19': 27531, 'sanitizerkl': 27532, 'kualalumpur': 27533, 'reynders': 27534, 'dirittideiviaggiatori': 27535, 'stairclimbers': 27536, 'manualhandling': 27537, 'filmmaker': 27538, 'hawley': 27539, 'wallenpaupack': 27540, 'raggedman': 27541, 'n40k': 27542, 'bribe': 27543, 'shamefully': 27544, 'gs1connect19': 27545, 'startuplab19': 27546, 'locai': 27547, 'quarantinecooking': 27548, 'fremont': 27549, 'ong': 27550, 'tribunecovid19watch': 27551, 'gunsandammo': 27552, 'racketeerinent': 27553, '8ish': 27554, 'palladium': 27555, 'lockdownlife': 27556, 'petroleumprice': 27557, 'tussle': 27558, 'gocoronago': 27559, 'mustwearmask': 27560, 'mustweargloves': 27561, 'stayalive': 27562, 'ramdasatwale': 27563, 'supportlockdown': 27564, 'fatehgunj': 27565, 'tenancy': 27566, 'accuser': 27567, 'whatif': 27568, '633': 27569, 'verifiable': 27570, 'tricol': 27571, 'propagating': 27572, 'patchwork': 27573, 'bigthreeconsulting': 27574, 'demoted': 27575, 'speads': 27576, 'finalizing': 27577, 'kaltenboeck': 27578, 'manuscript': 27579, 'coi': 27580, 'klew': 27581, 'eurotrucksimulator': 27582, 'americantrucksimulator': 27583, 'dlc': 27584, 'goldfill': 27585, 'sterlingsilverjewelry': 27586, 'sterlingsilver': 27587, 'britches': 27588, 'chaser': 27589, 'bearing': 27590, 'envisioned': 27591, 'sarge': 27592, 'mimaskchallenge': 27593, 'incumbent': 27594, 'squabble': 27595, 'aha': 27596, 'liked': 27597, 'plymouth': 27598, 'pyjama': 27599, 'ausgangssperre': 27600, 'overarching': 27601, '1585': 27602, 'cuss': 27603, 'carney': 27604, 'yallnasty': 27605, 'savethemasksforhealthcareworkers': 27606, 'glovesdontprotectyouiflickyourfingers': 27607, 'apptopia': 27608, 'exabel': 27609, 'eatlikekings': 27610, 'hawtdawgs': 27611, 'bloombergintelligence': 27612, 'goshh': 27613, 'worldd': 27614, 'unnamed': 27615, 'angered': 27616, 'virion': 27617, 'netanyahu': 27618, 'stanfield': 27619, 'slathering': 27620, 'bbalert': 27621, 'trumpsvirus': 27622, 'fortnightly': 27623, '30min': 27624, 'admiring': 27625, 'gorgeous': 27626, 'stresseating': 27627, 'kimkardashianisoverparty': 27628, 'thankyoupresidenttrump': 27629, 'kpop': 27630, 'vmin': 27631, 'ateez': 27632, 'nct': 27633, 'bcoz': 27634, 'onlineretailing': 27635, 'dca': 27636, 'prescribers': 27637, 'wrongfully': 27638, 'referenced': 27639, 'thy': 27640, 'jobsnewsuk': 27641, 'quirky': 27642, 'awake': 27643, 'racked': 27644, 'thankyoubakedpotato': 27645, 'feednhs': 27646, 'landon': 27647, 'tropical': 27648, 'meedha': 27649, 'vunna': 27650, 'prajala': 27651, 'pettakandi': 27652, 'reporrts': 27653, 'alters': 27654, 'dhroa': 27655, 'competence': 27656, 'rial': 27657, 'jamaican': 27658, 'survivalofthefittest': 27659, 'facetouch': 27660, 'soiled': 27661, 'moshon': 27662, 'complying': 27663, 'newswire': 27664, 'metalminer': 27665, 'metalprices': 27666, 'holbycity': 27667, 'northshields': 27668, 'impressionz': 27669, 'shii': 27670, 'hbl': 27671, 'moonshine': 27672, 'franklin': 27673, 'ceba': 27674, 'lpm': 27675, 'bff': 27676, 'betrayal': 27677, 'defendourdemocracy': 27678, 'vrheadset': 27679, 'virtualreality': 27680, 'achieving': 27681, 'calendar': 27682, 'experiential': 27683, 'sanny': 27684, 'magpie': 27685, 'pozzie': 27686, 'magpied': 27687, 'oilseed': 27688, 'togetherwecan': 27689, 'togetherwearestronger': 27690, 'maxine': 27691, 'hoffman': 27692, 'scanned': 27693, 'homa': 27694, 'zarghamee': 27695, '86thetp': 27696, 'criminalizes': 27697, 'stayathomesa': 27698, 'africansarenotlabrats': 27699, 'foodboxes': 27700, 'ob': 27701, 'swiped': 27702, 'southport': 27703, 'pabankersproud': 27704, 'elective': 27705, '35yos': 27706, 'nocontact': 27707, 'rycroft': 27708, '02': 27709, 'paymentbreaks': 27710, 'brc': 27711, 'fruitandvegetabkes': 27712, 'ukfoodsecurity': 27713, 'challenged': 27714, 'centeredness': 27715, 'willful': 27716, 'myopia': 27717, 'eater': 27718, 'mealplan': 27719, '10baje': 27720, 'm5qxkiqych': 27721, 'sanctifier': 27722, 'purgatory': 27723, 'nohoarding': 27724, 'pmo': 27725, 'narendermodi': 27726, 'tnluk': 27727, 'april2020': 27728, '290k': 27729, '60k': 27730, 'irrelevantmusik': 27731, 'tattooartist': 27732, 'inked': 27733, 'sinner': 27734, 'tattooed': 27735, 'xxl': 27736, 'wshh': 27737, 'worldstar': 27738, 'techn9ne': 27739, 'formulate': 27740, 'tues': 27741, 'nanosecond': 27742, 'polenta': 27743, 'amis': 27744, 'canalys': 27745, 'wearablebands': 27746, 'smartpersonalaudiodevices': 27747, 'smartspeakers': 27748, 'criticising': 27749, 'unkindly': 27750, 'pitching': 27751, 'cham': 27752, 'whippin': 27753, 'booker': 27754, 'lapse': 27755, 'osyth': 27756, 'clacton': 27757, 'sullivan': 27758, 'flocked': 27759, 'dodson': 27760, 's2': 27761, 'damm': 27762, 'dipshits': 27763, 'fixdebt': 27764, '245': 27765, '849': 27766, '047': 27767, 'kemi': 27768, 'olugbode': 27769, 'soapbox': 27770, 'shrunk': 27771, 'ecommerce2020': 27772, 'autosales': 27773, 'neverlikebefore': 27774, 'symposium': 27775, '580': 27776, 'unincorporated': 27777, 'toiletpapercalculator': 27778, 'partenering': 27779, 'rooftop': 27780, 'gleadless': 27781, 'gleadlessvalley': 27782, 'loosening': 27783, 'esto': 27784, 'ante': 27785, 'abrir': 27786, 'viva': 27787, 'tentative': 27788, 'discernment': 27789, 'trotter': 27790, 'bondurant': 27791, 'forcemajeure': 27792, 'marketslump': 27793, 'socialdistancingworks': 27794, 'zoa': 27795, 'malign': 27796, 'mohyelzdin': 27797, 'naish': 27798, 'backbritishfarming': 27799, 'dissapointment': 27800, 'bruv': 27801, 'fishtanktreatment': 27802, 'hydroxychoronquine': 27803, 'bannerhealth': 27804, 'wordsmatter': 27805, 'satellite': 27806, 'manmade': 27807, 'komonews': 27808, 'diffusion': 27809, 'loneliness': 27810, 'hsbc': 27811, 'ozarks': 27812, 'blethering': 27813, 'cocksprockets': 27814, 'surest': 27815, 'wasnt': 27816, 'musk': 27817, 'r86': 27818, 'reebok': 27819, 'globalist': 27820, 'justtheflu': 27821, 'shilling': 27822, 'poin': 27823, '884': 27824, 'hbrfanzone': 27825, 'feedthepoor': 27826, 'kotloyalsmusic': 27827, 'vanre': 27828, 'canre': 27829, 'col': 27830, 'cacchio': 27831, 'tanker': 27832, 'maritime': 27833, 'sundries': 27834, 'redneck': 27835, 'squared': 27836, 'readynutrition': 27837, 'thecoronaviruspreparednesshandbook': 27838, 'massy': 27839, 'packagedwater': 27840, 'f1': 27841, 'itu': 27842, 'lookingat': 27843, 'koch': 27844, 'foodmaxx': 27845, 'prescott': 27846, 'admitted': 27847, 'reliefremedies': 27848, 'steering': 27849, 'foodallergy': 27850, 'allergictraveler': 27851, 'chefcards': 27852, 'helpyourneighbours': 27853, 'hiv': 27854, 'youcantcatchavirus': 27855, 'cellpoisoning': 27856, 'copays': 27857, 'upgradefm': 27858, 'literary': 27859, 'allusion': 27860, 'almo': 27861, 'glam': 27862, 'hmrpca': 27863, 'eighteen': 27864, 'madeinchina': 27865, 'lidhell': 27866, 'panickbuyers': 27867, 'raped': 27868, 'footpath': 27869, 'idec': 27870, 'cystic': 27871, 'fibrosis': 27872, 'njtransit': 27873, 'projectkavach': 27874, 'fingerprint': 27875, 'seamless': 27876, 'intro': 27877, 'ottoman': 27878, 'synonymous': 27879, 'breeder': 27880, 'antinatalism': 27881, 'overpopulation': 27882, 'deceptively': 27883, 'overestimating': 27884, 'westhoff': 27885, 'hotelaura': 27886, 'drivesafe': 27887, 'toiling': 27888, 'gripe': 27889, 'sew': 27890, 'xxmi': 27891, 'bloggs': 27892, 'disciplined': 27893, '30days': 27894, 'sustainabilitystartswithyou': 27895, 'bourban': 27896, 'sheepish': 27897, 'dispense': 27898, 'zhenrobotics': 27899, 'tramp': 27900, 'apocalypsepaper': 27901, 'toiletpapermemes': 27902, 'vbid': 27903, 'highvaluecare': 27904, 'lowvaluecare': 27905, 'fostering': 27906, 'moong': 27907, 'urad': 27908, 'tur': 27909, 'chana': 27910, 'masoor': 27911, 'matar': 27912, 'worm': 27913, 'antioch': 27914, 'isolationselfegodriven': 27915, 'citydia': 27916, 'limbaugh': 27917, 'scarborough': 27918, 'morneau': 27919, 'aec': 27920, '682': 27921, '236': 27922, '7601': 27923, 'environmentally': 27924, 'jc': 27925, 'sustainabilitytips': 27926, 'dailyoh': 27927, 'toppled': 27928, 'digging': 27929, 'graveyard': 27930, 'andinavika': 27931, 'ye': 27932, 'neverending': 27933, 'poeple': 27934, 'isolation2020': 27935, 'scrape': 27936, 'windshield': 27937, 'youself': 27938, 'fid': 27939, 'pluto': 27940, 'behold': 27941, 'midwesttogether': 27942, 'felony': 27943, 'evenly': 27944, 'facemaskselfie': 27945, 'reworked': 27946, 'koko': 27947, 'lydia': 27948, 'forson': 27949, 'td': 27950, 'lastmile': 27951, 'wvgov': 27952, 'bentley': 27953, 'mulsanne': 27954, 'georgina': 27955, 'competitionlaw': 27956, 'cuties': 27957, 'kendallkay': 27958, 'camdendavid': 27959, 'hamper': 27960, 'flimsy': 27961, 'grocerystorescene': 27962, 'acquitted': 27963, 'detainee': 27964, 'billy': 27965, 'ftlion': 27966, 'hotcake': 27967, '899': 27968, '1049': 27969, '19australia': 27970, 'cosmeticvalley': 27971, '120ml': 27972, '00francs': 27973, 'juru': 27974, 'jesse': 27975, 'mellower': 27976, 'excruciating': 27977, 'stewardship': 27978, 'weedsmokers': 27979, 'stonerfam': 27980, 'fullsend': 27981, 'nelkboys': 27982, 'listentoyourheart': 27983, 'genconf': 27984, 'generalconference': 27985, 'covenant': 27986, 'covid2019': 27987, 'fakepandemic': 27988, 'jinks': 27989, 'milt': 27990, 'adapted': 27991, 'wee': 27992, 'krankie': 27993, 'youthvillageke': 27994, 'epc': 27995, 'oilandgasindustry': 27996, 'oilandgascompanies': 27997, 'northamerica': 27998, 'mnths': 27999, 'ashish': 28000, 'agarwal': 28001, 'onlineassistance': 28002, 'nrf': 28003, 'selfishnessvirus': 28004, 'outpaces': 28005, 'bonifacio': 28006, 'repatriation': 28007, 'navi': 28008, 'vashi': 28009, 'lockdowncomforteatinganddrinking': 28010, 'shamed': 28011, 'flagging': 28012, 'adaptable': 28013, 'restau': 28014, 'deliberation': 28015, 'crochet': 28016, 'rowing': 28017, 'sheesh': 28018, 'crm': 28019, 'milking': 28020, 'disinvestment': 28021, 'neocolonization': 28022, 'toiletpaperhunt': 28023, 'bonkeroverbogroll': 28024, 'selfisotation': 28025, 'washyourhan': 28026, 'mrp': 28027, 'openly': 28028, 'rnibcovid19': 28029, 'abc11': 28030, 'tsnpdcl': 28031, 'formal': 28032, 'formality': 28033, 'conferenceboard': 28034, 'eurusd': 28035, 'curate': 28036, 'tovolo': 28037, 'nutbutter': 28038, 'spatula': 28039, 'kitchengadgets': 28040, 'kitchenware': 28041, 'kitchentools': 28042, 'kremlin': 28043, 'rollback': 28044, 'narrow': 28045, '52rtgs': 28046, 'effat': 28047, 'rope': 28048, 'combining': 28049, 'crumble': 28050, 'shopindependent': 28051, 'aanndd': 28052, 'rebuy': 28053, 'granny': 28054, 'lampen': 28055, 'sandler': 28056, 'pinker': 28057, 'hurst': 28058, 'usb': 28059, 'woul': 28060, 'cnbcpathforward': 28061, 'arum': 28062, 'bbcboxing': 28063, 'stopthehoard': 28064, 'eggprices': 28065, 'goggle': 28066, '18569560148': 28067, 'uas': 28068, 'agncy': 28069, 'tkng': 28070, 'advntge': 28071, 'pillock': 28072, 'joyful': 28073, 'britishness': 28074, 'feedonomics': 28075, 'derbyshire': 28076, 'turnaround': 28077, 'nursewriter': 28078, 'freelancewriter': 28079, 'healthcarecontent': 28080, 'coating': 28081, 'trickier': 28082, 'blanching': 28083, 'wilson': 28084, 'shinning': 28085, 'chilly': 28086, 'lizard': 28087, 'covdi19': 28088, 'dieing': 28089, 'consumerprices': 28090, 'douglasporter': 28091, 'bankofcanada': 28092, 'shkreli': 28093, 'kantar': 28094, 'goldersgreen': 28095, 'hampsteadgardensuburb': 28096, 'nw11': 28097, 'trickling': 28098, '40lbs': 28099, '4lbs': 28100, 'grit': 28101, '10lbs': 28102, 'punching': 28103, 'gossip': 28104, 'dpd': 28105, 'hermes': 28106, 'wakethebride': 28107, 'swooping': 28108, 'spreadingthanks': 28109, 'todayin60': 28110, 'edpark': 28111, 'menwhile': 28112, 'righttorepair': 28113, 'nbnews': 28114, 'jananmeat': 28115, 'mindedly': 28116, 'detriment': 28117, 'replies0': 28118, 'retweets0': 28119, 'newyorktimes': 28120, 'orbitform': 28121, 'arsenalofhealth': 28122, '13m': 28123, 'arco': 28124, 'ny14': 28125, 'ditmars': 28126, 'nbcnews': 28127, 'mikeroman': 28128, 'boycott3m': 28129, 'peoplemagazine': 28130, 'march2020': 28131, '1637': 28132, 'tulipmania': 28133, 'tulip': 28134, '1797': 28135, 'publicis': 28136, 'sapient': 28137, 'differing': 28138, '921': 28139, '1128': 28140, 'fishandchips': 28141, 'ahab': 28142, 'yer': 28143, 'panicstations': 28144, 'theothershop': 28145, 'tamworthnsw': 28146, 'supportwhereyoucan': 28147, 'plsstophoarding': 28148, 'newblackmedia': 28149, 'redirecting': 28150, 'fallacy': 28151, 'fusilli': 28152, 'governmentstockpile': 28153, 'centralafricanrepublic': 28154, 'improves': 28155, 'fitter': 28156, 'leaner': 28157, 'bulkbuyers': 28158, 'forsyth': 28159, 'neill': 28160, 'dji': 28161, 'joc': 28162, 'selfisolationhelp': 28163, 'joyfightsfear': 28164, 'presidentialaddress': 28165, 'caprice': 28166, 'bourret': 28167, 'wifi': 28168, '7m': 28169, 'avoidable': 28170, 'thorndon': 28171, 'walmartorange': 28172, 'walmartsamess': 28173, 'orangeca': 28174, 'prohibit': 28175, 'attaching': 28176, 'nationallabs': 28177, 'sciencematters': 28178, 'akpeteshie': 28179, 'takoradi': 28180, 'epdt': 28181, 'consumerelectronics': 28182, 'futuresourceconsulting': 28183, 'dur': 28184, 'ebayseller': 28185, 'rti': 28186, 'victimized': 28187, 'daffodil': 28188, 'blooming': 28189, 'adventurous': 28190, 'fabatphoenix': 28191, 'phoenixperennials': 28192, 'narcissus': 28193, 'springbulbs': 28194, 'flowerbulbs': 28195, 'similac': 28196, 'lindsey': 28197, 'repeal': 28198, 'tutoring': 28199, 'proofreading': 28200, 'tucoopourcommunity': 28201, 'valenciacounty': 28202, 'clampdown': 28203, 'lowstock': 28204, 'goodnessgracious': 28205, 'langone': 28206, 'suman': 28207, 'xenophobia': 28208, 'enormity': 28209, 'dawning': 28210, 'abandon': 28211, 'influencermarketing': 28212, 'bh9vta8xnv': 28213, 'academy': 28214, 'oic': 28215, 'modiji': 28216, 'sensitizer': 28217, 'pf': 28218, 'innumerable': 28219, 'kahahahh': 28220, 'jeffreysprecher': 28221, 'khalili': 28222, 'cairo': 28223, 'trinket': 28224, 'oj': 28225, 'freezable': 28226, 'sneered': 28227, 'heeled': 28228, 'freeman': 28229, 'narrates': 28230, 'thbaks': 28231, 'peterson': 28232, 'leno': 28233, 'hereditarycancer': 28234, 'gcchat': 28235, 'cruiser': 28236, 'scaled': 28237, 'anarchist': 28238, 'lemming': 28239, 'handbook': 28240, 'reallys': 28241, 'coranavirus': 28242, 'fistfight': 28243, 'selena': 28244, 'sowing': 28245, 'melissa': 28246, 'katrincic': 28247, 'u45rweajus': 28248, 'impulsively': 28249, '731': 28250, 'clutter': 28251, 'chibizhub': 28252, 'deliciously': 28253, 'seafoodpasta': 28254, 'loveseafood': 28255, '2go2checkout': 28256, 'doesnt': 28257, 'twit': 28258, 'merseyside': 28259, 'saveourcarers': 28260, 'gk': 28261, 'inactivates': 28262, '93002759': 28263, 'mfa': 28264, 'documentinglife': 28265, 'greencore': 28266, 'broadly': 28267, 'tutor': 28268, 'tutee': 28269, 'd2rohkh5o4': 28270, 'browser': 28271, 'scarier': 28272, 'privatizedhealthcare': 28273, 'horray': 28274, 'submerge': 28275, '503': 28276, '378': 28277, '8442': 28278, 'virologically': 28279, 'esteelauder': 28280, 'hindering': 28281, 'recos': 28282, 'eventprofs': 28283, 'beyondcoronavirus': 28284, 'countrywide': 28285, 'undetected': 28286, 'kushner': 28287, 'intimated': 28288, 'slew': 28289, 'privateequity': 28290, 'consolidate': 28291, 'transform': 28292, 'ecomm': 28293, 'apprehensive': 28294, 'sourdough': 28295, 'avocado': 28296, 'guwahati': 28297, 'northeastindia': 28298, 'harr': 28299, 'trampled': 28300, 'outdated': 28301, 'constitution': 28302, 'debauchery': 28303, 'vintagetoiletpaper': 28304, '1987': 28305, 'selli': 28306, 'repaired': 28307, 'retrieved': 28308, 'realises': 28309, 'itch': 28310, 'beinformed': 28311, 'golfbiz': 28312, 'sportsbiz': 28313, 'communicated': 28314, 'fumigation': 28315, 'sioux': 28316, 'pbchealth': 28317, 'thefed': 28318, 'sportsman': 28319, 'gnocchi': 28320, 'julie': 28321, 'ziah': 28322, 'tinandbones': 28323, 'chanting': 28324, 'superfood': 28325, 'mybooster': 28326, 'antioxidant': 28327, 'alkalinewater': 28328, 'shopkeeprs': 28329, 'byo': 28330, 'responce': 28331, 'nintendoswitch': 28332, 'trimming': 28333, 'ketodiet': 28334, 'thrifty': 28335, 'effing': 28336, 'gazprom': 28337, 'cherish': 28338, 'slc': 28339, 'dismantled': 28340, 'sonia': 28341, 'angell': 28342, 'onlinestores': 28343, 'retailtransformation': 28344, 'socialmedia2020': 28345, 'marketingtrends2020': 28346, 'asiapacific': 28347, '200m': 28348, 'stirred': 28349, 'disguise': 28350, 'lnpfail': 28351, 'forcefield': 28352, 'govuk': 28353, 'outsider': 28354, 'commanded': 28355, 'bihar': 28356, 'futureofag': 28357, 'customerengagement': 28358, 'narendrea': 28359, 'indiabattlescoronavirus': 28360, 'emini': 28361, 'flare': 28362, 'bankofamerica': 28363, 'jesuit': 28364, 'subcontracted': 28365, 'stophooarding': 28366, 'holyhumor': 28367, 'ptsdmemes': 28368, 'recoup': 28369, 'squarefunds': 28370, 'brandtrust': 28371, 'otagoharbour': 28372, 'scrubbed': 28373, 'simptoms': 28374, 'entubation': 28375, 'spaffing': 28376, 'divisive': 28377, 'tomahawk': 28378, 'tomahawkribeye': 28379, 'grilledmeat': 28380, 'grilling': 28381, 'sousvide': 28382, 'sousvidecooking': 28383, 'ketofood': 28384, 'electrolyte': 28385, 'bulawayo': 28386, 'amref': 28387, 'psychtwitter': 28388, 'meded': 28389, 'captwitter': 28390, 'election2020': 28391, 'electionfraud': 28392, 'viewfrommywindow': 28393, 'mypandemicsurvivalplan': 28394, 'mcfc': 28395, 'unwrap': 28396, 'peachie': 28397, 'dayofcaring': 28398, 'hol': 28399, 'sbl': 28400, 'sblhomoeopathy': 28401, 'sblglobal': 28402, 'mythbuster': 28403, 'indiafightscovid19': 28404, 'amitabh': 28405, 'bachchan': 28406, 'unicef': 28407, 'stupidass': 28408, 'ignoranthumans': 28409, 'hesahero': 28410, 'rolemodel': 28411, 'dreadful': 28412, 'coventry': 28413, 'rentpayment': 28414, 'sniff': 28415, 'dontmakeasound': 28416, 'uht': 28417, 'supermarketstakeout': 28418, 'stayhomeaustralia': 28419, 'ertf': 28420, 'unveil': 28421, 'busquets': 28422, 'xuwen': 28423, 'unmarketable': 28424, 'jnt': 28425, 'dumbfuckery': 28426, 'humming': 28427, 'lament': 28428, 'thirdworldproblems': 28429, 'esepcially': 28430, 'allocating': 28431, 'cerebral': 28432, 'palsy': 28433, 'preexistingcondition': 28434, 'throttling': 28435, 'bone': 28436, 'memphis': 28437, 'shithouse': 28438, 'tonbridge': 28439, 'tethys': 28440, 'ccedoman': 28441, 'vial': 28442, 'fuelling': 28443, 'plexi': 28444, 'withregram': 28445, 'tvcwebinarseries': 28446, 'mara': 28447, 'suprising': 28448, 'anoh': 28449, 'tab': 28450, 'kurt': 28451, 'jetta': 28452, 'salam': 28453, 'dato': 28454, 'pkp': 28455, 'frugal': 28456, 'quarentine': 28457, 'hoitytoity': 28458, 'boojee': 28459, 'boojie': 28460, 'backordered': 28461, 'unleash': 28462, 'r1': 28463, '127p': 28464, '124p': 28465, 'happymothersday2020': 28466, 'insomnia': 28467, 'sustaining': 28468, 'survivers': 28469, 'sme': 28470, 'desi': 28471, 'gvmnt': 28472, 'dimension': 28473, 'marketstrategy': 28474, 'aquatic': 28475, 'kai': 28476, 'ramon': 28477, 'lopez': 28478, 'inq': 28479, 'distributer': 28480, 'castoff': 28481, 'cusp': 28482, 'apology': 28483, 'vanguard': 28484, 'vdc': 28485, 'supportsmallbiz': 28486, 'phonesoap': 28487, 'lowerdrugpricesnow': 28488, 'sorrow': 28489, 'wearegonnabeatthisvirus': 28490, 'ocvjc': 28491, 'ihaverightstoo': 28492, 'herat': 28493, 'weareafghanistan': 28494, 'barnstaple': 28495, 'torrington': 28496, 'appledore': 28497, 'instow': 28498, 'northdevon': 28499, 'broadcast': 28500, 'pounce': 28501, 'chanel': 28502, 'photojournalmonday': 28503, 'volvo': 28504, 'paniceating': 28505, 'ncing': 28506, 'chongqing': 28507, 'hotpot': 28508, 'xiaommian': 28509, 'retailresponse': 28510, 'consumercare': 28511, 'lvns': 28512, 'routed': 28513, 'myspark': 28514, 'xylospongium': 28515, 'anus': 28516, 'defecating': 28517, 'latrine': 28518, 'ancientrome': 28519, 'dontbeaasshole': 28520, 'gulfport': 28521, 'gawd': 28522, 'recreational': 28523, 'boyy': 28524, 'rou': 28525, 'kami': 28526, 'ek': 28527, 'sna': 28528, 'ila': 28529, 'ovat': 28530, 'isolators': 28531, 'carte': 28532, 'blanche': 28533, 'exterminate': 28534, 'opponent': 28535, 'marginalized': 28536, 'tommy': 28537, 'financials': 28538, 'retarded': 28539, 'tvmarket': 28540, 'abilty': 28541, 'gopinsidertrading': 28542, 'senatorloeffler': 28543, 'resignnow': 28544, 'gahan': 28545, 'oyster': 28546, 'croatia': 28547, 'utwx': 28548, 'evacuate': 28549, 'disnt': 28550, 'tty': 28551, 'designates': 28552, 'haydn': 28553, 'watters': 28554, 'shephard': 28555, 'catalogue': 28556, 'battled': 28557, 'cleaningtips': 28558, 'amazonpackages': 28559, 'hardcore': 28560, 'fetishizing': 28561, 'merchandiser': 28562, 'galvanizes': 28563, 'bartans': 28564, 'spotting': 28565, 'meumeu': 28566, 'tanked': 28567, 'manchesterunited': 28568, 'manchestercity': 28569, 'grifter': 28570, 'discouraged': 28571, 'thr': 28572, 'pansy': 28573, 'lancs': 28574, 'valueformoney': 28575, 'expatlife': 28576, 'studyhappy': 28577, 'anantapur': 28578, '20061': 28579, 'apmepma': 28580, 'apfightscovid19': 28581, 'guarding': 28582, 'thatismytown': 28583, 'dane': 28584, 'kwacha': 28585, 'characterise': 28586, 'materialism': 28587, 'albatross': 28588, 'satisfaction': 28589, 'employeexperience': 28590, 'intermodal': 28591, 'containersales': 28592, 'worldtrade': 28593, 'digitalhub': 28594, 'boxxport': 28595, 'foodchainid': 28596, 'wrongful': 28597, 'nimble': 28598, 'malpractice': 28599, 'reaalamerican': 28600, 'smallyoutubecommunity': 28601, 'coronavirsoutbreak': 28602, 'travelban': 28603, 'globalisation': 28604, 'chooses': 28605, 'toilethumor': 28606, 'etiquettefortheapocalypse': 28607, '1990s': 28608, '2030hrs': 28609, 'klaviyo': 28610, 'mcgregor': 28611, 'amids': 28612, 'rizwan': 28613, 'saraf': 28614, 'alkhidmat': 28615, 'peshawar': 28616, 'awerness': 28617, 'gulbahar': 28618, 'privaleged': 28619, 'creditreport': 28620, 'ouch': 28621, 'ingesting': 28622, 'boatload': 28623, '409': 28624, '313': 28625, '6880': 28626, 'setx': 28627, 'portarthur': 28628, 'bridgecity': 28629, 'funkeakindelebello': 28630, 'readabook': 28631, 'frontal': 28632, 'zavaapp': 28633, 'shattaday': 28634, 'gbevu': 28635, 'calibrated': 28636, 'prospectively': 28637, 'gregor': 28638, 'deltabc': 28639, 'beta': 28640, 'leena': 28641, 'matinee': 28642, 'dwelling': 28643, 'amoeba': 28644, 'resells': 28645, 'lurking': 28646, 'earns': 28647, 'urinal': 28648, 'diminishment': 28649, 'traced': 28650, 'contingenyplanning': 28651, 'rumored': 28652, 'asserts': 28653, 'reverselogistics': 28654, 'levan': 28655, 'davitashvili': 28656, 'wmata': 28657, 'onlin': 28658, 'muc': 28659, '0761749713': 28660, 'generistouch': 28661, 'sakhile': 28662, 'zengele': 28663, 'bushiri': 28664, 'contangion': 28665, 'ripvinoliamashego': 28666, 'enervis': 28667, 'energytransition': 28668, 'energiewende': 28669, 'eatingdisorders': 28670, 'herein': 28671, 'buchholz': 28672, 'cleanser': 28673, 'clene': 28674, '300ml': 28675, 'quickest': 28676, 'stayhomekenya': 28677, 'shredded': 28678, 'woh': 28679, 'naturalist': 28680, 'eaths': 28681, '1843': 28682, 'dotardalert': 28683, 'ornot': 28684, 'nogozone': 28685, 'enrich': 28686, 'resp': 28687, '4500': 28688, 'eset': 28689, 'suppression': 28690, 'rte': 28691, 'latelateshow': 28692, '342': 28693, '3736': 28694, 'wiseworks': 28695, 'oddly': 28696, 'assaulted': 28697, 'referring': 28698, 'slur': 28699, 'mattessich': 28700, 'bajans': 28701, 'lap': 28702, 'ot': 28703, 'dissects': 28704, 'wcs': 28705, 'malwarebytes': 28706, 'landmines': 28707, 'noble': 28708, 'stinky': 28709, 'rightful': 28710, 'fecker': 28711, 'badger': 28712, 'meaty': 28713, 'appointed': 28714, 'nickelsburg': 28715, 'geekwire': 28716, 'magnet': 28717, 'freq': 28718, '20sec': 28719, 'drs': 28720, 'havin': 28721, 'rey': 28722, 'pursuite': 28723, 'surgicalgown': 28724, '5ml': 28725, 'smal': 28726, 'torbay': 28727, 'wold': 28728, 'peoplebeforeprofits': 28729, 'erm': 28730, 'dimwit': 28731, 'gentrification': 28732, 'lei': 28733, 'wai': 28734, 'nong': 28735, 'mop10': 28736, 'corbyn': 28737, 'ge17': 28738, 'sabotaging': 28739, 'dodged': 28740, 'labourleaks': 28741, 'labourhq': 28742, 'labourwreckersdossier': 28743, 'adrenalin': 28744, '4a': 28745, 'petrochem': 28746, 'ceasefire': 28747, 'evanston': 28748, 'westchester': 28749, 'hbp': 28750, 'kigali': 28751, 'comparative': 28752, 'kertching': 28753, 'domesticterrorism': 28754, 'mello': 28755, 'nfid': 28756, 'schaffner': 28757, 'nopanicbuying': 28758, 'sx3': 28759, 'foodtrace': 28760, 'supplychainsecurity': 28761, 'fooddemand': 28762, 'blockchaininnovation': 28763, 'aglivexsx3': 28764, 'sx3australia': 28765, 'mumbaikers': 28766, 'welcomed': 28767, '1068': 28768, 'hyatt': 28769, 'scissors': 28770, 'griffey': 28771, 'day24inselfisolation': 28772, 'bigbasket': 28773, '07493': 28774, '586': 28775, 'cwpcathy': 28776, 'cheltenham': 28777, 'loseweight': 28778, 'getmore': 28779, 'majzoub': 28780, 'ahs': 28781, 'begs': 28782, 'r29': 28783, 'r39': 28784, 'r47': 28785, 'shreveport': 28786, 'malaga': 28787, 'truckdriver': 28788, 'longg': 28789, 'scandalous': 28790, 'usastrong': 28791, 'muted': 28792, 'cmeri': 28793, 'countering': 28794, 'menacing': 28795, 'usn': 28796, 'sipes': 28797, 'independants': 28798, 'catatonically': 28799, 'smartest': 28800, 'charlton': 28801, 'behemoth': 28802, 'numerical': 28803, 'dtn': 28804, 'comicstrip': 28805, 'comicsforquarantine': 28806, 'tulsehill': 28807, 'topmarketgainers': 28808, 'tmg': 28809, 'beefcentral': 28810, 'fakemeat': 28811, 'zoo': 28812, 'necided': 28813, 'wishful': 28814, 'wolverhampton': 28815, 'hlt': 28816, 'hilton': 28817, 'fiery': 28818, 'corporal': 28819, 'compulsive': 28820, 'kwminsights': 28821, 'drbirx': 28822, 'coronapocalyse': 28823, 'scratching': 28824, 'bathurst': 28825, 'reson': 28826, 'tucumsa': 28827, 'mep': 28828, 'herbert': 28829, 'dorfmann': 28830, 'resum': 28831, 'banksouth': 28832, 'fios': 28833, 'retirementplanning': 28834, 'pensionadvice': 28835, 'defund': 28836, '10bil': 28837, 'nameless': 28838, 'hmh': 28839, 'chilling': 28840, 'meta': 28841, 'iprice': 28842, 'arises': 28843, 'workingtogether': 28844, 'supportingfamiliesirl': 28845, 'eblast': 28846, 'optional': 28847, 'perk': 28848, 'fearfulness': 28849, 'twi': 28850, 'safteyfirst': 28851, 'nutshell': 28852, 'thistogether': 28853, 'supermkt': 28854, 'fleeting': 28855, 'luisa': 28856, 'alessandro': 28857, 'vodaphone': 28858, 'lichfield': 28859, 'stackline': 28860, 'hoa': 28861, 'bellaire': 28862, 'beechnut': 28863, 'delames': 28864, 'mamle': 28865, 'lamented': 28866, 'globalproblems': 28867, 'specifies': 28868, 'spatially': 28869, 'isntitironic': 28870, 'takeonefortheteam': 28871, 'vulnerab': 28872, 'singhdeo': 28873, 'raipur': 28874, 'oceanside': 28875, 'cglm': 28876, 'dictated': 28877, 'subedi': 28878, 'compass': 28879, 'coot': 28880, 'feckinggrandpa': 28881, 'suez': 28882, 'conditioned': 28883, 'dispersed': 28884, 'inconsistency': 28885, 'gobsmacking': 28886, 'inhaling': 28887, 'exhaled': 28888, 'vapour': 28889, 'stopthepeak': 28890, 'philosopher': 28891, 'headlight': 28892, 'ineptitude': 28893, 'mbu': 28894, 'importation': 28895, 'etcio': 28896, 'queenspasta': 28897, 'nov20': 28898, 'consumersentiment': 28899, '1gjyriluxn': 28900, 'fanny': 28901, 'odishanews': 28902, 'ambiguous': 28903, 'hubbie': 28904, 'gill': 28905, 'trex': 28906, 'decking': 28907, 'growordie': 28908, 'defends': 28909, 'butchered': 28910, 'nielsenindonesia': 28911, 'uyu': 28912, 'amenikata': 28913, 'lain': 28914, 'dtes': 28915, 'safesupply': 28916, 'gottchalks': 28917, 'mervyns': 28918, 'nocturnal': 28919, 'iterate': 28920, 'q6': 28921, 'cuff': 28922, 'buut': 28923, 'trumplieddeadpeople': 28924, 'sportswriter': 28925, 'raabs': 28926, 'wtaf': 28927, 'ww3': 28928, 'conspiracytheory': 28929, '547': 28930, 'rhonj': 28931, 'summoning': 28932, 'pinduoduo': 28933, 'spoiler': 28934, 'isolationgames': 28935, 'rajat': 28936, 'jee': 28937, 'littlethings': 28938, 'favourable': 28939, 'bgl': 28940, 'kta': 28941, 'ember': 28942, 'blossomwatch': 28943, 'ferlouginggraciously': 28944, 'sniffle': 28945, 'dammit': 28946, 'awon': 28947, 'bod': 28948, 'eyesuphere': 28949, 'dadbod': 28950, 'shopalishamarie': 28951, 'bayelsa': 28952, 'dominic': 28953, 'cummings': 28954, 'reputed': 28955, 'incrsing': 28956, 'wen': 28957, 'bmw': 28958, 'utopia': 28959, 'strack': 28960, 'hammond': 28961, 'enforcer': 28962, 'cleresponds': 28963, 'cle': 28964, 'purevpn': 28965, 'aciudadunida': 28966, 'epicentre': 28967, 'vodafonewatch': 28968, 'disappoint': 28969, 'esque': 28970, 'tyranny': 28971, 'gladice': 28972, 'headbutts': 28973, 'tbc': 28974, 'australialockdown': 28975, 'honing': 28976, 'busdrivers': 28977, 'sincerity': 28978, 'bakhat': 28979, 'mphil': 28980, 'egungunbecareful': 28981, 'carnivorous': 28982, 'anagram': 28983, 'coward': 28984, 'manipulatingamericasgullibleassholes': 28985, 'covfefe45': 28986, 'theartofthesteal': 28987, 'theartofthedeal': 28988, 'shortening': 28989, 'maesglas': 28990, 'pierogi': 28991, 'agoraphobes': 28992, 'claustrophobe': 28993, 'salesperson': 28994, 'diagram': 28995, 'btsarmy': 28996, 'condolence': 28997, 'monstrous': 28998, 'arseholic': 28999, 'handcrafted': 29000, 'cgcsa': 29001, 'patricia': 29002, 'pillay': 29003, 'thinkwithgoogle': 29004, 'marketingagency': 29005, 'creativeagency': 29006, 'marketingideas': 29007, 'marketingstrategies': 29008, 'slammarketing': 29009, 'slamteam': 29010, 'kupiec': 29011, 'lockdownnepal': 29012, 'nepallockdown': 29013, 'texascoronavirus': 29014, 'stupidstore': 29015, 'drywall': 29016, 'worldhealthorganisation': 29017, 'underdog': 29018, 'supplyshock': 29019, 'instigated': 29020, 'pledging': 29021, 'usq': 29022, 'dustcloth': 29023, 'asphyxiation': 29024, 'dismissed': 29025, 'uw': 29026, 'biology': 29027, 'day13oflockdown': 29028, 'liquorshop': 29029, 'moph': 29030, 'drinkable': 29031, 'bended': 29032, 'winningthe20s': 29033, 'bjdavisorg': 29034, 'lv': 29035, 'lovelifeandjoy189': 29036, 'gelantibacterial': 29037, 'gelantibacterien': 29038, 'bernardarnault': 29039, 'fakelvhandsanitzer': 29040, 'rtfkt': 29041, 'steepened': 29042, 'customerintelligence': 29043, 'grassphealth': 29044, 'psvs': 29045, 'notwithoutmask': 29046, 'maskeauf': 29047, 'awash': 29048, 'huel': 29049, 'inexpensive': 29050, 'nutritionally': 29051, 'manipuri': 29052, 'manipur': 29053, 'rubensteins': 29054, 'socialinclusion': 29055, 'zeedigital': 29056, 'sunrice': 29057, 'hostile': 29058, 'lalli': 29059, 'businessman': 29060, 'keells': 29061, 'kurana': 29062, 'katunayake': 29063, 'sword': 29064, 'stopconfinement': 29065, 'macronout': 29066, 'mastubate': 29067, 'gasnursejen': 29068, 'medicalfetish': 29069, 'medicalmistress': 29070, 'medicalroleplay': 29071, 'sexynurse': 29072, 'kinkynurse': 29073, 'sleepyfet': 29074, 'medicalplay': 29075, 'nurseplay': 29076, 'anesthesiafetish': 29077, 'atheist': 29078, 'spirituality': 29079, 'hospo': 29080, 'infinity': 29081, '4bn': 29082, 'monk': 29083, 'hannah': 29084, 'bloch': 29085, 'wehba': 29086, 'approving': 29087, 'vend': 29088, 'kizerandbender': 29089, 'retailblog': 29090, 'indulging': 29091, 'exosomes': 29092, 'creepsinsuits': 29093, 'billgatesofhell': 29094, 'fuckcoronavirus': 29095, 'disperses': 29096, 'globalists': 29097, 'ebayhaslotsoftoiletpaper': 29098, 'heijn': 29099, 'unification': 29100, 'rolla': 29101, 'sharjah': 29102, 'zain': 29103, 'merija': 29104, 'subhaan': 29105, 'reich': 29106, 'dunny': 29107, 'gangster': 29108, 'fitzgirls': 29109, 'sundayfitz': 29110, 'fitzgirlsrule': 29111, 'dontovercharge': 29112, 'stopstockpi': 29113, 'originated': 29114, 'defenitly': 29115, 'scroll': 29116, 'londonrestaurant': 29117, 'guardamar': 29118, 'valenciana': 29119, 'unloaded': 29120, 'audusd': 29121, 'katra': 29122, 'mahore': 29123, 'chassana': 29124, 'thuroo': 29125, 'arnas': 29126, 'pouni': 29127, 'thakrakote': 29128, 'articulating': 29129, 'bluemarlin': 29130, 'vitamind': 29131, 'theresstillhope': 29132, 'shopnormal': 29133, 'hungergames': 29134, 'nevadan': 29135, 'cabbie': 29136, 'chubby': 29137, 'energetic': 29138, 'fetishize': 29139, 'apha': 29140, 'acb': 29141, 'trul': 29142, 'cura': 29143, 'tlry': 29144, 'hexo': 29145, 'wmd': 29146, 'lh': 29147, 'tgod': 29148, 'emh': 29149, 'tbp': 29150, 'kshb': 29151, 'vff': 29152, 'mmen': 29153, 'gtii': 29154, 'harv': 29155, 'cweb': 29156, 'cchwf': 29157, 'zena': 29158, 'ogi': 29159, 'operationmasks': 29160, 'xl': 29161, 'washcloth': 29162, 'bathing': 29163, 'emergencypreparedness': 29164, 'extrasaturation': 29165, 'mythbusters': 29166, 'coronamisconceptions': 29167, 'coronamyths': 29168, 'stayballyhoo': 29169, 'undermine': 29170, 'supportspokane': 29171, 'downtownspokane': 29172, 'zen': 29173, 'councilman': 29174, 'iser': 29175, 'mouhcine': 29176, 'guettabi': 29177, 'tshrit': 29178, 'actuality': 29179, 'informational': 29180, 'hindered': 29181, 'asimo': 29182, 'hgv': 29183, 'transporting': 29184, 'pierce': 29185, 'piercing': 29186, 'pierced': 29187, 'iclwn': 29188, 'burst': 29189, 'inwards': 29190, 'confounding': 29191, 'coronatourism': 29192, 'homer': 29193, 'gfk': 29194, 'donkey': 29195, 'follw': 29196, 'enployment': 29197, 'onepulse': 29198, 'arcese': 29199, 'waisted': 29200, 'jfc': 29201, 'leary': 29202, 'whoa': 29203, 'primeday': 29204, 'extravaganza': 29205, 'nwo': 29206, 'pundit': 29207, 'immorally': 29208, 'romir': 29209, 'themarshacrawfordteam': 29210, 'marsha': 29211, 'candisteam': 29212, 'compassrealestate': 29213, 'annou': 29214, 'amnesty': 29215, 'daca': 29216, 'reside': 29217, 'unsw': 29218, 'mclaws': 29219, 'doope': 29220, 'halp': 29221, 'marshallaw': 29222, 'loser': 29223, 'unimaid': 29224, 'mog': 29225, 'yankistore': 29226, 'logisticsrules': 29227, 'bo': 29228, 'tr': 29229, 'unpreventable': 29230, 'kibra': 29231, 'vigorously': 29232, 'dailyheil': 29233, 'competently': 29234, 'panicky': 29235, 'ruing': 29236, 'mothering': 29237, 'hapless': 29238, 'efra': 29239, 'hii': 29240, 'tanya': 29241, 'fluschmann': 29242, 'instasouthafrica': 29243, 'afrikaans': 29244, 'capetown': 29245, 'vela': 29246, 'hearty': 29247, 'teambeef': 29248, 'teamsheep': 29249, 'edw': 29250, 'dwbi': 29251, 'elm': 29252, 'cdvdm': 29253, 'podclass': 29254, 'remotelearning': 29255, 'datavault': 29256, 'koenigdistillery': 29257, 'caldwell': 29258, 'idahocovid19': 29259, 'redefining': 29260, 'spate': 29261, 'datavis': 29262, 'choctaw': 29263, 'sandton': 29264, 'midrand': 29265, 'day12': 29266, 'day12oflockdown': 29267, 'rugged': 29268, 'ransacking': 29269, 'novelist': 29270, 'keepconnected': 29271, 'strangedaysindeed': 29272, 'varied': 29273, 'tagtek': 29274, 'brandawareness': 29275, 'tradeshows': 29276, 'kelantan': 29277, 'climateemergency': 29278, 'criticize': 29279, 'diverts': 29280, 'diverting': 29281, 'goner': 29282, 'vocational': 29283, 'insulting': 29284, 'philipps': 29285, '244': 29286, '887': 29287, '913': 29288, '898': 29289, '343': 29290, 'infrequent': 29291, 'putty': 29292, 'trumppressconf': 29293, 'piggly': 29294, 'wiggly': 29295, 'rebate': 29296, 'proposing': 29297, 'godigital': 29298, '4088': 29299, 'fiscalstimulus': 29300, 'navs': 29301, 'inadequacy': 29302, 'servicing': 29303, 'aptito': 29304, 'aptitopos': 29305, 'coronabonds': 29306, 'immed': 29307, 'alteration': 29308, 'tampering': 29309, 'prev': 29310, 'pol': 29311, 'ldrships': 29312, 'vested': 29313, 'lacked': 29314, 'vancouverhomes': 29315, 'vancouverrealestate': 29316, 'smartcities': 29317, 'happycities': 29318, 'abysmal': 29319, 'interestingfacts': 29320, 'poured': 29321, 'scotus': 29322, 'homeishere': 29323, 'absinthe': 29324, 'soaking': 29325, 'wormwood': 29326, 'unitedairlines': 29327, 'eggcellent': 29328, 'ozone': 29329, 'erected': 29330, '9177300445': 29331, 'sanitizationtunnel': 29332, 'ozonesmarttunnel': 29333, 'honduran': 29334, 'xzbapjoroz': 29335, 'comer': 29336, 'borde': 29337, 'ruler': 29338, 'hoaders': 29339, 'fock': 29340, 'finkle': 29341, 'realestatelaw': 29342, 'realestatelawyer': 29343, 'socialcommerce': 29344, 'mindlessly': 29345, 'parallel49': 29346, 'parallel49brewing': 29347, 'grotta': 29348, 'handsantiser': 29349, 'sel': 29350, '9today': 29351, 'datacenter': 29352, 'notebook': 29353, 'alc': 29354, 'overboard': 29355, 'atx': 29356, 'favorito': 29357, 'humped': 29358, 'usousd': 29359, 'usoil': 29360, 'sundayselfie': 29361, 'rawr': 29362, 'delfast': 29363, 'goza': 29364, 'minuscule': 29365, 'simplicity': 29366, 'cosumption': 29367, 'mahrukat': 29368, 'watan': 29369, 'reflet': 29370, 'ion': 29371, 'coronacrunch': 29372, 'luluguinness': 29373, 'storeopening': 29374, 'coventgarden': 29375, 'proteinbars': 29376, 'barrons': 29377, 'alarmingly': 29378, 'cautioned': 29379, 'consumerlaw': 29380, 'dataismoreexpensivethanrentnow': 29381, 'reduceinternetpricesnow': 29382, 'hygienically': 29383, 'parkwestvillage': 29384, 'harvard': 29385, 'cainiao': 29386, 'consumerfinance': 29387, 'disunited': 29388, 'truthhurts': 29389, 'wordstoliveby': 29390, 'whistleblower': 29391, 'getthefuckawayfromme': 29392, 'reevaluate': 29393, 'schiff': 29394, 'resemblance': 29395, 'vengeance': 29396, 'furthest': 29397, 'profite': 29398, 'accomadation': 29399, '0103641972': 29400, 'atheletic': 29401, 'resting': 29402, 'migratory': 29403, 'guestuest': 29404, 'syndicated': 29405, 'youngest': 29406, 'nearness': 29407, 'bodyguard': 29408, '1918': 29409, 'shopforyou': 29410, '0901': 29411, '454': 29412, '2974': 29413, 'yam': 29414, 'generalfood': 29415, 'tiptoeing': 29416, 'lwc': 29417, 'westchestercounty': 29418, 'garment': 29419, '2billion': 29420, '985': 29421, '2331': 29422, 'partech': 29423, 'phoney': 29424, 'morphing': 29425, 'provocation': 29426, 'bidet2020': 29427, 'mindspark': 29428, '1basketpershopper': 29429, 'ventilation': 29430, 'glue': 29431, 'dti': 29432, 'coolant': 29433, 'arrival': 29434, 'sona': 29435, 'yomi': 29436, 'mechuka': 29437, 'monigong': 29438, 'pidi': 29439, 'greenbelt': 29440, 'mcommerce': 29441, 'retailmarketing': 29442, 'reputationmarketing': 29443, 'dravely': 29444, 'kwarans': 29445, 'remuneration': 29446, 'gout': 29447, 'mysuru': 29448, 'timeforchange': 29449, 'luring': 29450, 'limittheflowofcustomers': 29451, 'pelosibill': 29452, 'pelosimustresign': 29453, '489': 29454, 'contrarian': 29455, 'vetted': 29456, 'knowyoursocial': 29457, 'stepson': 29458, 'godson': 29459, 'quakertown': 29460, 'poking': 29461, 'butthole': 29462, 'trustedsource': 29463, 'rmb2': 29464, 'rmb790': 29465, 'kir': 29466, 'emeka': 29467, 'offor': 29468, 'monetery': 29469, 'mange': 29470, 'facet': 29471, 'dhaka': 29472, 'bury': 29473, 'tunisian': 29474, 'ardene': 29475, 'shopopening': 29476, 'stumbled': 29477, 'cutout': 29478, 'musial': 29479, 'aliexpress': 29480, 'corinnavirus': 29481, 'notably': 29482, 'distorted': 29483, 'retrenchment': 29484, 'flashlight': 29485, 'survivingcovid19': 29486, 'unileverslashing': 29487, 'kennesaw': 29488, 'annemarie': 29489, 'eastbourne': 29490, 'wwf': 29491, 'stopbeingselfish': 29492, 'laboratoire': 29493, 'ganesh': 29494, 'rs30': 29495, '45days': 29496, 'legostreet': 29497, 'ishop': 29498, 'coffeeshop': 29499, 'businesswise': 29500, 'legocityscene': 29501, 'legomodulars': 29502, 'legocreatorexpert': 29503, 'sti': 29504, 'essendonfc': 29505, 'mightybombers': 29506, 'repurpose': 29507, 'millionmaskchallenge': 29508, 'miele': 29509, 'motoring': 29510, 'equaliser': 29511, 'ostracized': 29512, 'askabc2020': 29513, 'hyste': 29514, 'mngov': 29515, 'mnleg': 29516, 'drivewyze': 29517, 'ccj': 29518, 'wclo': 29519, 'agitated': 29520, 'controllable': 29521, 'concurrent': 29522, 'ntm': 29523, 'ebit': 29524, 'austrailia': 29525, 'wefilterfakenews': 29526, 'gesch': 29527, 'ftsf': 29528, 'hrer': 29529, 'vieler': 29530, 'rkte': 29531, 'rrach': 29532, 'mit': 29533, 'einem': 29534, 'alle': 29535, 'sch': 29536, 'ler': 29537, 'studenten': 29538, 'lasst': 29539, 'zusammenhalten': 29540, 'aufeinanderachten': 29541, 'forsaken': 29542, 'ransack': 29543, 'arohanui': 29544, 'thcexchange': 29545, 'zephyrhills': 29546, 'humanly': 29547, 'reload': 29548, 'shoponlineifyouhaveinternet': 29549, 'gwenniffer': 29550, 'botch': 29551, 'standupcomedy': 29552, 'poopoopaper': 29553, 'walt': 29554, 'johor': 29555, 'shopclickdrive': 29556, 'startwithtrust': 29557, 'bko': 29558, 'kampung': 29559, 'assembly': 29560, 'sampai': 29561, 'sundaymotivation': 29562, 'loki': 29563, 'goptaxscam': 29564, 'pandumbic': 29565, 'quiztimemorningswithamazon': 29566, 'hallmark': 29567, 'keepyoursenseofhumor': 29568, 'josephkiragu': 29569, 'wld': 29570, 'shave': 29571, 'dependancy': 29572, 'naturalselection': 29573, 'soju': 29574, 'disguised': 29575, 'wastepaper': 29576, 'recoveredpaper': 29577, 'onlineinteraction': 29578, 'thesofterthebetter': 29579, 'earh': 29580, 'gobiernodeespana': 29581, 'beyondfragrance': 29582, 'inr': 29583, '550': 29584, '1583916': 29585, 'ipad': 29586, 'multivitamin': 29587, '21stcentury': 29588, 'thisislife': 29589, 'powys': 29590, 'ingles': 29591, 'grantkapp': 29592, 'liquidation': 29593, 'deliveryservices': 29594, 'samedaydelivery': 29595, 'deliveryservice': 29596, 'haultail': 29597, 'thepeoplebuilder': 29598, 'grantherbert': 29599, 'emotionalintelligence': 29600, 'beyondcovid19': 29601, 'colonized': 29602, 'mahalo': 29603, 'hawai': 29604, 'smelly': 29605, 'coronac': 29606, 'ufc': 29607, 'cryptonews': 29608, 'bain': 29609, 'bainalerts': 29610, 'ey': 29611, 'pamybot': 29612, 'fxdailyfx': 29613, 'mbforex': 29614, 'achohol': 29615, 'ncdc': 29616, 'viability': 29617, 'flipping': 29618, 'steadied': 29619, 'sapped': 29620, 'payoff': 29621, 'nobuybacks': 29622, 'yeehaw': 29623, 'shu': 29624, 'flpublicpower': 29625, 'publicpower': 29626, 'amorina': 29627, 'acme': 29628, 'mover': 29629, 'ghostbikes': 29630, 'julienning': 29631, 'goingcrazy': 29632, 'homechef': 29633, 'michigander': 29634, 'whitless': 29635, '545': 29636, '6600': 29637, 'dragrace': 29638, 'affliction': 29639, 'gainer': 29640, 'telecos': 29641, 'halebonoe': 29642, 'lesotho': 29643, 'lesotholockdown': 29644, 'capitalising': 29645, '1007': 29646, 'asbury': 29647, '07712': 29648, '832': 29649, '776': 29650, '7979': 29651, 'juicy': 29652, 'kellogg': 29653, 'employes': 29654, 'bbcpm': 29655, 'xi': 29656, 'turk': 29657, 'turchia': 29658, 'worldwar3': 29659, 'respons': 29660, 'fuming': 29661, 'gro': 29662, 'usagunnation': 29663, 'detest': 29664, 'dble': 29665, 'downwards': 29666, 'reinventingretail': 29667, 'heap': 29668, 'raelyn': 29669, 'sacco': 29670, 'afghan': 29671, 'applaude': 29672, 'vampire': 29673, 'bf': 29674, 'paranaque': 29675, 'watson': 29676, 'skagit': 29677, 'zehrs': 29678, 'omera': 29679, 'canpara': 29680, 'petrovietnam': 29681, 'klima': 29682, 'wirkt': 29683, 'sich': 29684, 'positiv': 29685, 'zumindest': 29686, 'kurzfristig': 29687, 'langfristigen': 29688, 'folgen': 29689, 'hingegen': 29690, 'rften': 29691, 'alles': 29692, 'andere': 29693, 'umweltfreundlich': 29694, 'sein': 29695, 'klimawandel': 29696, 'energie': 29697, 'deplorables': 29698, 'kci': 29699, 'footballskills': 29700, 'vegetabl': 29701, 'crossword': 29702, 'fzzdj1bx8v': 29703, 'electricty': 29704, '30ml': 29705, 'indus': 29706, 'sanitz': 29707, 'beardoil': 29708, 'naturalbeardoil': 29709, 'indusvalley': 29710, 'freesanitizer': 29711, 'robocall': 29712, 'denominated': 29713, 'n100': 29714, '2yrs': 29715, 'solidarity4humanity': 29716, '44th': 29717, 'supportliclocal': 29718, 'criticise': 29719, 'maori': 29720, 'onyamag': 29721, 'ungodly': 29722, 'oilnews': 29723, 'energyindustry': 29724, 'pandemiccrisis': 29725, 'msrp': 29726, 'despises': 29727, 'intnl': 29728, 'searchable': 29729, 'athlone': 29730, 'flatmate': 29731, 'telmo': 29732, 'requisition': 29733, 'stressrelief': 29734, 'makemeasandwich': 29735, 'progressed': 29736, 'businessgrowth': 29737, 'worldbusiness': 29738, 'bind': 29739, 'clenching': 29740, 'diageo': 29741, 'demonstraion': 29742, 'digitalretailing': 29743, '0169061211': 29744, 'samuel': 29745, 'uncovid19brief': 29746, 'viralkindness': 29747, 'cerebralpalsy': 29748, 'nielson': 29749, 'treason': 29750, 'actin': 29751, 'commissioning': 29752, 'unimelbpursuit': 29753, 'mcgee': 29754, 'vaughan': 29755, 'toiletpapershortageof2020': 29756, 'huddle': 29757, 'sanford': 29758, 'unsatisfied': 29759, 'edmond': 29760, 'slippery': 29761, 'letschill': 29762, 'kaiser': 29763, 'clchan': 29764, 'reignited': 29765, 'yomestayhome': 29766, 'shiieet': 29767, 'parliamentary': 29768, 'humanrights': 29769, 'murkowski': 29770, 'capitol': 29771, 'cebu': 29772, 'naay': 29773, 'silay': 29774, 'delata': 29775, 'coronalogic': 29776, 'cottonworld': 29777, 'civilized': 29778, 'strvtin': 29779, 'cheaptravel': 29780, 'sourland': 29781, 'bch': 29782, 'alexkuptsikevich': 29783, 'avatrade': 29784, 'bitwise': 29785, 'cfgi': 29786, 'cryptofeargreedindex': 29787, 'etoro': 29788, 'extremefear': 29789, 'fxpro': 29790, 'marketupdates': 29791, 'marketsandprices': 29792, 'matthougan': 29793, 'naeemaslam': 29794, 'bergneustadt': 29795, 'nordrhein': 29796, 'westfalen': 29797, 'funnymom': 29798, 'rakuten': 29799, 'hom': 29800, 'kith': 29801, 'kin': 29802, 'kwame': 29803, 'onwuachi': 29804, 'sobriety': 29805, 'heals': 29806, 'liberalhypocrisy': 29807, 'bullshitwatch': 29808, 'sherbs': 29809, 'hig': 29810, 'coolactionsuit': 29811, 'chineseflu': 29812, 'lastly': 29813, 'whinge': 29814, 'hurriedly': 29815, 'armful': 29816, 'dailybriefing': 29817, 'cutthroat': 29818, 'wealthiest': 29819, 'deloitteer': 29820, 'rejoice': 29821, 'purportedly': 29822, 'kuwari': 29823, 'inspect': 29824, 'ache': 29825, 'evaluate': 29826, 'crucially': 29827, 'manhattanites': 29828, 'disdain': 29829, 'schull': 29830, 'sebastien': 29831, 'boyer': 29832, 'farmwise': 29833, 'penned': 29834, 'cierretotal': 29835, 'wof': 29836, 'taxcredit': 29837, 'broome': 29838, 'correspond': 29839, 'enrollonline': 29840, 'medicaredirect': 29841, 'medigap': 29842, 'medicareadvantage': 29843, 'mapd': 29844, 'bigbiz': 29845, 'sharelove': 29846, 'accrued': 29847, 'pandemicprofiteers': 29848, 'thanx': 29849, 'brah': 29850, '55gl': 29851, '99gl': 29852, 'tad': 29853, '5560': 29854, 'runtown': 29855, '5dkk': 29856, '135dkk': 29857, 'cmcsa': 29858, 'atus': 29859, 'unfunny': 29860, 'coronacomics': 29861, 'discrete': 29862, 'freelancelife': 29863, 'publicservants': 29864, 'proudlyservingcanadians': 29865, 'humanityfirst': 29866, 'saddened': 29867, 'wafflehouseindex': 29868, 'bodegaindex': 29869, 'emgtwitter': 29870, 'italianamerican': 29871, 'microorganism': 29872, '8120': 29873, 'hardeson': 29874, 'spay': 29875, 'neuter': 29876, 'uterus': 29877, 'amazonfail': 29878, 'mediawatch': 29879, 'unmanned': 29880, 'modernization': 29881, 'smartcompany': 29882, 'collegestudent': 29883, 'ollu': 29884, 'uiw': 29885, 'agtg': 29886, 'utsa': 29887, 'txsu23': 29888, 'tsuupc': 29889, 'pvamu20': 29890, 'pvamu21': 29891, 'shsu': 29892, 'txst': 29893, 'retailwork': 29894, 'terrorizing': 29895, 'rocket96': 29896, 'schizo': 29897, 'videogames': 29898, 'twitchstreamer': 29899, 'notmeus': 29900, 'videogaming': 29901, 'dallaslockdown': 29902, 'gourmet': 29903, 'niagara': 29904, 'munro': 29905, 'chopping': 29906, 'pickling': 29907, 'latina': 29908, 'lupehernandez': 29909, 'desj': 29910, 'jesurvivrai': 29911, 'prixdugaz': 29912, 'modernart': 29913, 'shriveled': 29914, 'trumpisuseless': 29915, 'confrim': 29916, 'creat': 29917, 'obeying': 29918, 'ostensibly': 29919, 'plucky': 29920, 'dunkirk': 29921, 'invasion': 29922, 'samkelo': 29923, 'jus': 29924, 'pta': 29925, 'giv': 29926, '19au': 29927, 'hazardpaynow': 29928, 'pouch': 29929, 'algernon': 29930, 'agn': 29931, 'carolin': 29932, 'xoxoxo': 29933, 'hanoi': 29934, 'timber': 29935, 'responsiblereporting': 29936, 'unhealthy': 29937, 'stockholder': 29938, 'airforceone': 29939, '7011259210': 29940, '3meds': 29941, 'orderonline': 29942, 'buynow': 29943, 'beatingcancer': 29944, 'deprtment': 29945, 'aata': 29946, 'copied': 29947, 'ethnic': 29948, 'troublemaker': 29949, 'murdoch': 29950, 'pandemickindness': 29951, 'stopthespreadofcorona': 29952, 'stayprotected': 29953, 'wallmart': 29954, 'gunshop': 29955, 'quarantena': 29956, 'cad2i129h3': 29957, 'goldfish': 29958, 'molnar': 29959, 'goldfishgod': 29960, 'ari': 29961, 'housewarming': 29962, 'ennismore': 29963, 'quandary': 29964, 'gigworker': 29965, 'boni': 29966, 'mandaluyong': 29967, 'lowie': 29968, 'quijada': 29969, 'kirill': 29970, 'panarin': 29971, 'storeclosures': 29972, 'calgarians': 29973, 'syed': 29974, 'bashed': 29975, 'nhsvscovid19': 29976, 'supermar': 29977, 'mee': 29978, 'mingle': 29979, 'passcode': 29980, '3303': 29981, 'letsfightcovid19': 29982, 'stcloud': 29983, 'stcloudmn': 29984, 'cannabisculture': 29985, 'wednesdayvibes': 29986, 'commerece': 29987, 'condictions': 29988, 'existant': 29989, 'schultz': 29990, 'creaming': 29991, 'gardencentres': 29992, 'springhead': 29993, '01474': 29994, '361370': 29995, 'poins': 29996, 'bottleneck': 29997, 'ntvnews': 29998, 'thankyouheroes': 29999, 'telethon': 30000, 'klaus': 30001, 'ller': 30002, 'url': 30003, 'firestorm': 30004, 'stayindoors': 30005, 'pmsg': 30006, 'benny': 30007, 'liban': 30008, 'pnpkakampimolabansacovid': 30009, 'stopthespreadofcovid': 30010, 'stopfraudco': 30011, 'cudifference': 30012, 'dramatised': 30013, 'mulready': 30014, '405': 30015, '521': 30016, '2828': 30017, 'wext': 30018, 'chinaliespeopledied': 30019, 'divino': 30020, 'unwittingly': 30021, 'bnecoronavirus': 30022, 'bliss': 30023, 'cornucopia': 30024, 'betta': 30025, 'whatdistrictisthemidwest': 30026, 'stepawayfromthepeanutbutterkaren': 30027, 'refreshing': 30028, 'businesscontinuity': 30029, 'r0': 30030, 'bwg': 30031, 'redemption': 30032, '785': 30033, 'fscw': 30034, 'havertys': 30035, 'wheeloffortune': 30036, 'quarentineandchill': 30037, 'dreamkitchen': 30038, 'mequedoencasa': 30039, 'multibillion': 30040, 'houstoncoronavirus': 30041, '07121288': 30042, 'pastime': 30043, 'demandandsupply': 30044, 'empirical': 30045, 'learner': 30046, 'kbblovesdesign': 30047, 'trustedblog1': 30048, 'bonfire': 30049, '17hrs': 30050, 'propertybubble': 30051, '35kworth': 30052, '227': 30053, '187': 30054, '673': 30055, '177': 30056, '226': 30057, 'moistened': 30058, 'endive': 30059, 'movethesales': 30060, 'sosmoderetail': 30061, 'thinkglobalactlocal': 30062, 'gearhart': 30063, 'petfoodshortage': 30064, 'sandstone': 30065, '4yo': 30066, 'troguh': 30067, 'goverm': 30068, 'livecoverage': 30069, 'antifa': 30070, 'iamapharmacist': 30071, 'civilorder': 30072, 'pankaj': 30073, 'kapoor': 30074, 'liases': 30075, 'foras': 30076, 'coffeefilter': 30077, 'apocalipsis': 30078, 'magavirus': 30079, 'darwinswaitingroom': 30080, 'slick': 30081, 'terra': 30082, 'catch22': 30083, 'sentieo': 30084, 'arib': 30085, 'researchdifferent': 30086, 'alternativedata': 30087, 'ecstasy': 30088, 'randomised': 30089, 'bigley': 30090, 'unanswered': 30091, 'subsidary': 30092, 'credaimchi': 30093, 'realestatemarket': 30094, 'economicsofcorona': 30095, 'invariably': 30096, 'soulless': 30097, 'pondlife': 30098, 'pendamic': 30099, 'seashell': 30100, 'demolition': 30101, 'plantbasedfood': 30102, 'veggieburger': 30103, 'beyondmeat': 30104, 'fakefood': 30105, 'realmeat': 30106, 'meatball': 30107, 'sethi': 30108, 'shopperkit': 30109, 'ahadbuilders': 30110, 'yourtrustourlegacy': 30111, 'ahadcare': 30112, 'coronasafetytips': 30113, 'reducegreednow': 30114, 'watchyourgreed': 30115, 'aba': 30116, 'carpet': 30117, 'electrifying': 30118, 'sothini': 30119, 'mcq': 30120, 'marketreport': 30121, 'energyconsultants': 30122, 'acclaimenergy': 30123, 'janowski': 30124, '516': 30125, '9591': 30126, 'cull': 30127, 'ewe': 30128, 'consumerdurable': 30129, 'revival': 30130, 'emedlife': 30131, 'expertadvise': 30132, 'coronashutdown': 30133, 'decatur': 30134, 'rebottling': 30135, 'cult45': 30136, 'foody': 30137, 'hoomans': 30138, 'gran': 30139, 'nightshift': 30140, 'brood': 30141, '287': 30142, 'ciao': 30143, 'disobeying': 30144, 'reiterated': 30145, 'natured': 30146, 'michiganross': 30147, 'aradhna': 30148, 'krishna': 30149, 'globalhealthemergency': 30150, 'ooh': 30151, 'cha': 30152, 'ching': 30153, 'digetty': 30154, 'lakeland': 30155, 'rdg': 30156, 'bbtips': 30157, 'thatcher': 30158, 'lndane': 30159, 'takia': 30160, 'azadganj': 30161, 'slave': 30162, 'turd': 30163, 'djjdhdjej': 30164, 'carpetbagging': 30165, 'kalyan': 30166, 'blob': 30167, 'queer': 30168, 'professionalism': 30169, 'wvnews247': 30170, 'gist': 30171, 'saluting': 30172, 'providng': 30173, 'bd3': 30174, 'catsoftwitter': 30175, 'mycatdoesnthalfgoon': 30176, 'thelogicalmauritian': 30177, 'publichealthcare': 30178, 'atar': 30179, 'woefully': 30180, 'projekt': 30181, 'unisex': 30182, 'shitgotreal': 30183, 'expressyourselfbydon': 30184, 'grinspoon': 30185, 'firstfieldsfamily': 30186, 'loveoneanother': 30187, 'commandment': 30188, 'preschool': 30189, 'dataprices': 30190, 'underinsured': 30191, 'likel': 30192, 'sponsoredad': 30193, 'makesnosense': 30194, 'whosagenda': 30195, 'shutdownny': 30196, 'busken': 30197, 'bloodstream': 30198, 'shoshana': 30199, 'shoshanna': 30200, 'lightweight': 30201, 'ripoffs': 30202, 'powhatan': 30203, 'saralee': 30204, 'notificati': 30205, 'thaw': 30206, 'modwyer': 30207, 'litterally': 30208, 'kra': 30209, 'siberia': 30210, 'ved': 30211, 'montrealer': 30212, 'fetish': 30213, 'rapaport': 30214, 'handyman': 30215, 'masbia': 30216, 'steinmart': 30217, 'limb': 30218, 'quicktake': 30219, 'fightcoronatogether': 30220, 'incorporates': 30221, 'interpersonal': 30222, 'iykykpodcast': 30223, 'iykyk': 30224, 'neoclassical': 30225, 'stipulates': 30226, 'mtg': 30227, 'mtgs': 30228, 'daydream': 30229, 'terraform': 30230, 'unsanitized': 30231, 'thankabanker': 30232, 'coverup': 30233, 'cnh': 30234, 'corr': 30235, 'pboc': 30236, 'cny': 30237, 'remanded': 30238, 'awaits': 30239, 'newzeland': 30240, 'goin': 30241, 'maskoff': 30242, 'loosens': 30243, 'coil': 30244, 'yesplease': 30245, 'mmbbl': 30246, 'masculine': 30247, 'pastel': 30248, 'mailpac': 30249, 'pricesmart': 30250, 'hilo': 30251, 'madiness': 30252, 'creditscores': 30253, 'persuaded': 30254, 'amer': 30255, 'buzz': 30256, 'sht': 30257, 'dagsa': 30258, 'dito': 30259, 'ambot': 30260, 'thankyoutesco': 30261, '9bn': 30262, 'swarm': 30263, 'unwavering': 30264, 'tulsa': 30265, 'bred': 30266, 'proponent': 30267, 'dalma': 30268, 'zachary': 30269, 'cefaratti': 30270, 'dalmacapital': 30271, 'haiku': 30272, 'seconded': 30273, 'wecandothis': 30274, '4months': 30275, 'lok': 30276, 'sabha': 30277, 'wlmu': 30278, 'communitymatters': 30279, 'folx': 30280, 'taxation': 30281, 'dowm': 30282, 'frighten': 30283, 'nomeat': 30284, 'nofish': 30285, 'bankcards': 30286, 'hungarian': 30287, 'dailynewshungary': 30288, 'breakingmyheart': 30289, 'ophthalmology': 30290, 'ophth': 30291, 'nrg': 30292, 'energyefficiency': 30293, 'lockdownpakistan': 30294, 'congratulate': 30295, 'copying': 30296, 'proactivity': 30297, 'rotorua': 30298, 'beekeeping': 30299, 'horriple': 30300, 'serger': 30301, 'seamstress': 30302, 'tbcb': 30303, 'digitalcommerce': 30304, 'mobilecommerce': 30305, 'uniquecommerce': 30306, 'customerfocus': 30307, 'tollroadsnews': 30308, 'trn': 30309, 'cascar': 30310, 'alley': 30311, 'mango': 30312, 'marketingdive': 30313, 'ishaan': 30314, 'bbcnewscoronavirus': 30315, 'lovewins': 30316, 'programm': 30317, 'newbedfordma': 30318, 'newbedford': 30319, 'dartmouthma': 30320, 'fairhavenma': 30321, 'fallriverma': 30322, 'henderson': 30323, '3297': 30324, 'penalised': 30325, 'mongrel': 30326, 'desperado': 30327, 'leclerc': 30328, 'lust': 30329, 'denting': 30330, 'type2': 30331, 'questionaire': 30332, '15m': 30333, 'tomi': 30334, 'abstainfromebgames': 30335, 'coronapanik': 30336, 'indianmarket': 30337, 'capitalismkills': 30338, 'srimspeak': 30339, 'stabilisation': 30340, 'glencore': 30341, 'mopani': 30342, 'motel': 30343, 'crazed': 30344, 'supermarketsemployees': 30345, 'homebody': 30346, 'ramakrishna': 30347, 'tbilisimetro': 30348, 'ringgit': 30349, 'cashflows': 30350, 'volgograd': 30351, 'stalingrad': 30352, 'eboa': 30353, 'advertised': 30354, 'broug': 30355, 'behaviourchange': 30356, 'helpyourneighbors': 30357, '2231133': 30358, '65ish': 30359, 'blankly': 30360, 'oy': 30361, 'cramming': 30362, 'nickcohen': 30363, 'gigantizing': 30364, 'kidnapped': 30365, 'ggirl': 30366, 'emetophobia': 30367, 'obsessive': 30368, 'ombud': 30369, 'summarized': 30370, 'skeptic': 30371, 'naturopathy': 30372, 'chiropractic': 30373, 'jimbakker': 30374, 'alexjones': 30375, 'islamicfinance': 30376, 'losingfamilies': 30377, 'withouthealthcare': 30378, 'closingbusonesses': 30379, 'ventilatorshortage': 30380, 'hiddenagenda': 30381, 'shoping': 30382, 'taproot': 30383, 'soulard': 30384, 'saintlouis': 30385, 'protectivegloves': 30386, 'antwholesale': 30387, 'dataset': 30388, 'makoni': 30389, 'chitungwiza': 30390, 'conflicting': 30391, 'leek': 30392, 'bravenewworld': 30393, 'pollen': 30394, 'rva': 30395, 'andromedastrain': 30396, 'obscurescifirferences': 30397, 'emory': 30398, 'brandnew': 30399, 'twotoiletrolls': 30400, 'teabags': 30401, 'sainburys': 30402, '5litre': 30403, 'antenna': 30404, 'rockspringstshirts': 30405, 'customtshirts': 30406, 'customshirts': 30407, 'ops': 30408, 'rissia': 30409, 'speculate': 30410, 'sewn': 30411, 'realitychek': 30412, 'hokum': 30413, 'peddled': 30414, 'zarqa': 30415, 'stafford': 30416, 'disburse': 30417, 'x10': 30418, 'x100': 30419, 'nathan': 30420, 'farnham': 30421, 'carepackages': 30422, 'emergencykits': 30423, 'helpingpeople': 30424, 'impactinvesting': 30425, 'rencarlton': 30426, 'whatamigoingtodow': 30427, 'burberry': 30428, 'autotrader': 30429, 'ghanaians': 30430, 'visualizing': 30431, 'darkphotography': 30432, 'dslrguru': 30433, 'photographyislife': 30434, 'lovenotlooroll': 30435, 'dairyfarmers': 30436, 'ox': 30437, '5dayisolation': 30438, 'lasvegaslockdown': 30439, 'churn': 30440, 'cium': 30441, 'tangan': 30442, 'summore': 30443, 'mnfctring': 30444, 'bodily': 30445, 'lallu': 30446, 'ecnmic': 30447, 'bina': 30448, 'jine': 30449, 'koi': 30450, 'matlab': 30451, 'rahega': 30452, 'inuvik': 30453, 'icewireless': 30454, 'inseam': 30455, 'beatles': 30456, '10years': 30457, 'molded': 30458, 'disposablefacemasks': 30459, 'fuking': 30460, 'slough': 30461, 'exploitationatitsfinest': 30462, 'sanitzfree': 30463, 'growout': 30464, 'hairoil': 30465, 'hairproblems': 30466, 'growouthairoil': 30467, 'haircare': 30468, 'haircaretips': 30469, 'naturalhairoil': 30470, 'dealoftheday': 30471, 'desylva': 30472, 'stylis': 30473, 'reused': 30474, 'athx': 30475, 'nnvc': 30476, 'codx': 30477, 'nvax': 30478, 'novn': 30479, 'nby': 30480, 'gril': 30481, 'tast': 30482, 'sxtc': 30483, 'blph': 30484, 'chainstore': 30485, 'foofighters': 30486, 'myhero': 30487, 'endorse': 30488, 'syop': 30489, 'thise': 30490, 'skimmer': 30491, 'lurk': 30492, 'sk': 30493, 'ondoor': 30494, 'dispiriting': 30495, 'bern': 30496, 'steakhouse': 30497, 'jm': 30498, 'cvnts': 30499, 'digitalads': 30500, 'digitalillustration': 30501, 'digitaldesigns': 30502, 'celheinstinodesigns': 30503, 'huang': 30504, 'equitably': 30505, 'coronago': 30506, 'lysozyme': 30507, 'chinesecommunistparty': 30508, 'psyching': 30509, 'agenda2030': 30510, 'supercomputer': 30511, 'gloving': 30512, 'lme': 30513, 'overdose': 30514, 'lockdownnigeria': 30515, 'gorey': 30516, 'madeintoronto': 30517, 'madeincanada': 30518, 'televise': 30519, 'stateattorneysgeneral': 30520, 'avacados': 30521, 'crumb': 30522, 'creedence': 30523, 'clearwater': 30524, 'coincide': 30525, 'sadtimes': 30526, 'upsettingtimes': 30527, 'helpothers': 30528, 'offerhelp': 30529, 'droppi': 30530, 'alltogether': 30531, 'pariah': 30532, 'weaning': 30533, 'goodmorningbritain': 30534, 'vermin': 30535, 'mbti': 30536, 'helena': 30537, 'safetynet': 30538, 'nieuws': 30539, 'elkbosje': 30540, 'clubquarantine': 30541, 'inte': 30542, 'reprimanded': 30543, 'frickindistant': 30544, 'succumbed': 30545, 'tacky': 30546, 'afterwork': 30547, 'keeponmoving': 30548, 'caturday': 30549, 'caturdaymorning': 30550, 'caturdaycuties': 30551, 'bnw': 30552, 'whitecat': 30553, 'whitecatsofinstagram': 30554, 'whitecatsrule': 30555, 'llabres': 30556, 'chavez': 30557, 'mckee': 30558, 'motive': 30559, 'coranovirus': 30560, 'democratshateamerica': 30561, 'wakeupamerica': 30562, 'shooter': 30563, 'despise': 30564, 'deportation': 30565, 'peoplegoing': 30566, 'emptiedin': 30567, 'repackage': 30568, 'bisaustralia': 30569, 'premature': 30570, 'missionaccomplished': 30571, 'thatgoodgood': 30572, 'badbunny': 30573, 'thingsamazonwontdeliver': 30574, 'kernel': 30575, 'pharm': 30576, 'spoofed': 30577, 'umpteenth': 30578, 'vermillion': 30579, 'fvm': 30580, 'confectionary': 30581, 'pla': 30582, 'octt': 30583, 'bicester': 30584, 'unbelievably': 30585, 'deniy': 30586, 'responsable': 30587, 'chairwoman': 30588, 'kingsbj': 30589, 'sbjunpacks': 30590, 'toulet': 30591, 'isitspringyet': 30592, 'nielsencga': 30593, 'imspoed': 30594, '45mins': 30595, 'chartoftheweek': 30596, 'customervalue': 30597, 'jb': 30598, 'carpls': 30599, 'so14': 30600, 'so15': 30601, 'so16': 30602, 'so17': 30603, 'so18': 30604, 'so19': 30605, 'interspar': 30606, 'gaugeonfoods': 30607, 'reppin': 30608, 'hustled': 30609, 'trickster': 30610, 'cna': 30611, 'lakers': 30612, 'dnt': 30613, 'disarmament': 30614, 'sworn': 30615, 'customisable': 30616, 'theviewfromeurope': 30617, '24cts': 30618, '2033620675': 30619, 'ogunrinde': 30620, 'parkinson': 30621, 'ypo': 30622, 'liang': 30623, 'meng': 30624, 'ascendent': 30625, 'flouted': 30626, 'fijitimes': 30627, 'toying': 30628, 'lookie': 30629, 'emphasized': 30630, 'cmos': 30631, 'restrictedmovementorder': 30632, 'stopairingtrumpnow': 30633, '005': 30634, 'niosh': 30635, 'scamaware': 30636, 'cussing': 30637, 'acknowledges': 30638, 'bor': 30639, 'pliz': 30640, 'cardflight': 30641, 'bluewave2020': 30642, 'penne': 30643, 'mepolitics': 30644, 'quantitatively': 30645, 'logarithmic': 30646, 'sideshow': 30647, 'gravitate': 30648, 'skipping': 30649, 'foreward': 30650, 'accts': 30651, 'idlib': 30652, 'covad19': 30653, 'craftspirits': 30654, 'whiting': 30655, 'whitingpetroleum': 30656, 'pexels': 30657, 'mortgagelender': 30658, 'animalrights': 30659, 'outsized': 30660, 'somone': 30661, 'chemistryresponds': 30662, 'njthanksyou': 30663, 'chemistrymatters': 30664, 'nha': 30665, '02890391225': 30666, 'indigo': 30667, 'rono': 30668, 'dutta': 30669, 'paycut': 30670, 'manor': 30671, '2250': 30672, 'layard': 30673, 'ilusion': 30674, 'finra': 30675, 'embassy': 30676, 'elisabetta': 30677, 'abrami': 30678, 'outgoing': 30679, 'whitmer': 30680, 'bloomfield': 30681, 'harmless': 30682, 'exploded': 30683, 'retro': 30684, 'vincenzo': 30685, 'healthandfitness': 30686, '59m': 30687, '36m': 30688, 'gobeba': 30689, 'naturaldeodorantthatworks': 30690, 'crueltyfree': 30691, 'veganbeauty': 30692, 'muntharika': 30693, 'junction': 30694, 'westseattle': 30695, 'actresponsibly': 30696, 'fathimahypermarket': 30697, 'sint': 30698, 'annaparochie': 30699, 'friesland': 30700, 'onlyfoolsandhorses': 30701, 'supoort': 30702, 'maskon': 30703, 'thegreattoiletpaperhunt': 30704, 'superspreader': 30705, 'votebluenomatterwho2020': 30706, 'retai': 30707, 'christianportermp': 30708, 'fairwork': 30709, 'jobkeeper': 30710, 'penelope': 30711, 'splendid': 30712, 'ciudadano': 30713, 'brasile': 30714, 'muestra': 30715, 'sorpresa': 30716, 'positiva': 30717, 'observar': 30718, 'medidas': 30719, 'sanitarias': 30720, 'adoptadas': 30721, 'supermercado': 30722, 'contraste': 30723, 'situaci': 30724, 'solemos': 30725, 'discriminar': 30726, 'pero': 30727, 'tenemos': 30728, 'mucho': 30729, 'aprender': 30730, 'paraguay': 30731, 'dijo': 30732, 'safespace': 30733, 'mentoring': 30734, 'shannon': 30735, 'bankrate': 30736, 'dmarts': 30737, 'naturebasket': 30738, 'fruitstalls': 30739, 'powai': 30740, 'nasik': 30741, 'vashimarket': 30742, 'vegetablevendors': 30743, 'indiadoingwell': 30744, 'oneworldunitedworld': 30745, 'usdjpy': 30746, 'gbpusd': 30747, 'usdcnh': 30748, 'unpoppable': 30749, 'meatfreemonday': 30750, 'poisonous': 30751, 'fgnews': 30752, 'ukwheat': 30753, 'mosul': 30754, 'enterances': 30755, 'mosul2020': 30756, 'hairnet': 30757, 'rioter': 30758, 'kritesh': 30759, '8097675586': 30760, 'endcoronavirustogether': 30761, 'kriteshenterprises': 30762, 'chlorinedioxide': 30763, 'chandigarh': 30764, 'rashan': 30765, 'bittertruth': 30766, 'contamos2020': 30767, 'wecount': 30768, 'bankrupting': 30769, 'affluenza': 30770, 'adnan': 30771, 'sleiman': 30772, 'industralists': 30773, 'pkr': 30774, 'pakwheels': 30775, 'chickenbreasts': 30776, 'troubleshoot': 30777, 'responsibili': 30778, 'monatary': 30779, 'pony': 30780, 'odp7': 30781, 'hahahahahaha': 30782, 'persuade': 30783, 'tpapocalypse': 30784, 'upp': 30785, '2162565118': 30786, 'fruittree': 30787, 'subscriptionbox': 30788, 'travelagency': 30789, 'delraybeachflorida': 30790, 'costarica': 30791, 'disneycruise': 30792, 'rigging': 30793, 'leveller': 30794, 'lates': 30795, 'algerian': 30796, 'n50': 30797, 'n500': 30798, 'garrett': 30799, 'callaway': 30800, 'midmo': 30801, 'introverting': 30802, 'standby': 30803, 'airasia': 30804, 'letsbesafe': 30805, 'cleanyourhandsregularly': 30806, 'maskindia': 30807, 'majeures': 30808, 'goer': 30809, 'penang': 30810, 'phase2': 30811, 'juststayathome': 30812, 'dudukrumah': 30813, 'textscore': 30814, 'companywatch': 30815, 'howmuchtoiletpaper': 30816, 'bison': 30817, 'disposablefacemask': 30818, 'leaped': 30819, '241': 30820, 'sean': 30821, 'outoftouchwithreality': 30822, 'aquavit': 30823, 'oslo': 30824, 'ndverksdestilleri': 30825, 'vm': 30826, 'botswana': 30827, 'preservative': 30828, 'bladder': 30829, 'oprah': 30830, 'releasethebuttholecut': 30831, 'berniebros': 30832, 'reddit': 30833, 'dadjokes': 30834, 'maxie': 30835, 'alphabetical': 30836, 'digitalsignage': 30837, 'bizhour': 30838, 'flock': 30839, 'ferozepur': 30840, 'implementiom': 30841, 'baidu': 30842, '100bn': 30843, 'helpingeachother': 30844, 'grief': 30845, 'kristo': 30846, 'cryowulf': 30847, 'fleecing': 30848, 'nm02': 30849, '783': 30850, 'bedridden': 30851, 'ssdi': 30852, 'beshear': 30853, 'cameron': 30854, 'kentuckian': 30855, 'mfers': 30856, 'embezzling': 30857, 'dory': 30858, 'proactively': 30859, 'solace': 30860, 'fy20': 30861, 'dhamaka': 30862, 'seatr': 30863, 'psc': 30864, 'insisting': 30865, 'erc': 30866, 'sleepwalking': 30867, 'nutella': 30868, 'cavabienaller': 30869, 'foodwales': 30870, 'y2k': 30871, 'itsrealthistime': 30872, 'falloutshelter': 30873, 'comercio': 30874, 'a1c': 30875, 'monkeybar': 30876, 'onestopshopping': 30877, 'wilton': 30878, 'tritax': 30879, 'bbox': 30880, 'fright': 30881, 'teva': 30882, 'revel': 30883, 'winstonsalem': 30884, 'kangaroo': 30885, 'chinav': 30886, 'ogden': 30887, '3075': 30888, 'airsoft': 30889, 'closin': 30890, 'fortheculture': 30891, 'airsofter': 30892, 'speedqb': 30893, 'speedsoft': 30894, 'irritating': 30895, 'searsroebuckcatalog': 30896, 'businesspeople': 30897, 'viel': 30898, 'videolinkki': 30899, 'mallinnukseen': 30900, 'tilanteesta': 30901, 'jossa': 30902, 'ihminen': 30903, 'ysk': 30904, 'isee': 30905, 'tyypillisess': 30906, 'myym': 30907, 'tilassa': 30908, 'hyllyjen': 30909, 'analysing': 30910, 'piloted': 30911, 'acquaintance': 30912, 'sthelensunited': 30913, 'therewithyou': 30914, 'gauntlet': 30915, 'thanitizer': 30916, 'ets': 30917, 'uncompetitive': 30918, 'osm': 30919, 'keepsafekeepwell': 30920, 'bravery': 30921, 'redesigning': 30922, '408': 30923, 'aircanada': 30924, 'pricego': 30925, 'mia': 30926, 'shoppercentric': 30927, 'rayner': 30928, 'eme': 30929, 'boubies': 30930, 'perezhilton': 30931, 'healthvana': 30932, 'handvana': 30933, 'hydroclean': 30934, 'swissforextrading': 30935, 'chiasson': 30936, 'handstoyourself': 30937, 'mccall': 30938, 'impct': 30939, 'civilizd': 30940, 'mjrity': 30941, 'shlvs': 30942, 'sems': 30943, 'lke': 30944, '4l': 30945, 'alliving': 30946, 'healthyhome': 30947, 'albertson': 30948, 'hinakhan': 30949, 'convened': 30950, 'kenan': 30951, 'magistrate': 30952, 'mahon': 30953, 'justinrivera': 30954, 'holla': 30955, 'eldest': 30956, 'anchor': 30957, 'nowwehavefood': 30958, 'dns': 30959, 'giveifyoucan': 30960, 'fountain': 30961, 'indulgent': 30962, 'retailinnovation': 30963, 'retailindustry': 30964, 'futureofretail': 30965, 'minh': 30966, 'phu': 30967, 'santoshhospitals': 30968, 'santoshmedicalcollege': 30969, 'ncr': 30970, 'lifeatsantosh': 30971, 'rohingya': 30972, 'variability': 30973, 'edgewater': 30974, 'aprilfools': 30975, 'beresolute': 30976, '70ml': 30977, 'chinesevirus2020': 30978, 'phillipsvision': 30979, 'goverments': 30980, 'racer': 30981, 'chucked': 30982, 'raptor': 30983, 'oiler': 30984, 'whistler': 30985, 'redvelvet': 30986, 'feminist': 30987, 'lgbta': 30988, 'vietnamleavesnoonebehind': 30989, 'ypbmf': 30990, 'ypbmfchampion': 30991, 'stayhomehealthy': 30992, 'glamorous': 30993, 'diva': 30994, 'duu': 30995, 'sportsbooks': 30996, 'nfldraftnews': 30997, 'clareb': 30998, 'capturing': 30999, 'contemporary': 31000, 'quaranturn': 31001, 'oilrig': 31002, 'oilcompanies': 31003, 'olympia': 31004, 'shied': 31005, 'dwp': 31006, 'ryu': 31007, '19with': 31008, 'spillover': 31009, 'gustin': 31010, 'bajaj': 31011, 'italiano': 31012, 'deutsch': 31013, 'lefran': 31014, 'croatian': 31015, 'varazdin': 31016, 'macau': 31017, 'westpac': 31018, '2mrw': 31019, '4b': 31020, '900m': 31021, 'austrac': 31022, 'divs': 31023, 'calcs': 31024, 'wbc': 31025, 'beautician': 31026, 'distincing': 31027, 'realization': 31028, 'buti': 31029, 'nalang': 31030, 'talaga': 31031, 'bukas': 31032, 'yun': 31033, 'ito': 31034, 'malapit': 31035, 'bahay': 31036, 'loominh': 31037, 'alwar': 31038, 'rajasthan': 31039, 'varun': 31040, 'movietwit': 31041, 'busineess': 31042, 'khamis': 31043, 'mushait': 31044, 'becase': 31045, 'indilens': 31046, 'anez': 31047, 'econimies': 31048, 'emiratis': 31049, 'considiring': 31050, 'manx': 31051, '194': 31052, 'alcohal': 31053, 'doj': 31054, 'kocakes': 31055, 'cakequeen': 31056, 'fightcorona': 31057, 'subpoena': 31058, 'sharplyy': 31059, 'wonderr': 31060, 'whyy': 31061, '828': 31062, 'suspiciously': 31063, 'immensity': 31064, 'zamaqongo': 31065, 'djsbu': 31066, 'verifiably': 31067, 'greenwashing': 31068, 'documenting': 31069, 'bebore': 31070, 'enhancer': 31071, '852': 31072, 'sentenced': 31073, 'baht': 31074, 'jade': 31075, '51st': 31076, 'kalanchoe': 31077, 'sqft': 31078, 'pandemiconomy': 31079, 'rabi': 31080, 'deficity': 31081, 'abound': 31082, 'unborn': 31083, 'begets': 31084, 'ruiru': 31085, 'runda': 31086, 'tutashindacorona': 31087, 'megastore': 31088, 'poveglia': 31089, 'mitchmcconnell': 31090, 'greasy': 31091, 'haired': 31092, 'quieter': 31093, 'tepid': 31094, 'duke': 31095, 'dsouza26': 31096, 'warzone': 31097, 'kshs': 31098, '6500': 31099, 'hostpital': 31100, 'hahahahaha': 31101, 'relay': 31102, 'toiletpaperrelay': 31103, 'medicalmarijuana': 31104, 'scrum': 31105, 'fetching': 31106, 'benifits': 31107, 'pmsir': 31108, 'sandart': 31109, 'puri': 31110, 'dillon': 31111, 'fedexground': 31112, 'lancslive': 31113, 'ambler': 31114, 'vomiting': 31115, 'ddarmers': 31116, 'whew': 31117, '81oz': 31118, 'finalised': 31119, 'brochure': 31120, 'queencreek': 31121, 'wuhanvir': 31122, '469': 31123, '544': 31124, '8316': 31125, '972': 31126, '8224': 31127, '214': 31128, '607': 31129, '8437': 31130, 'andersonsf': 31131, 'gorilla': 31132, 'delitakeout': 31133, 'affirming': 31134, 'faithfully': 31135, 'ontarioenergy': 31136, 'nbi': 31137, 'emis': 31138, 'vigour': 31139, 'preventcoronavirus': 31140, 'faraz': 31141, 'rak': 31142, 'nwt': 31143, 'whitney': 31144, 'jakob': 31145, 'toiletpeopleart': 31146, 'artistsoninstagram': 31147, 'installationart': 31148, 'horningsea': 31149, 'stank': 31150, 'raunchy': 31151, 'dutty': 31152, 'harassment': 31153, 'sheikh': 31154, 'imra': 31155, 'proliferating': 31156, 'mule': 31157, 'dearer': 31158, 'datapoint': 31159, 'nspx': 31160, 'trbo': 31161, 'decn': 31162, 'nbdr': 31163, 'underwrite': 31164, 'passuello': 31165, 'avengersassemble': 31166, 'devi': 31167, 'missedthat': 31168, 'almena': 31169, 'atvthw': 31170, 'platedemic': 31171, 'abides': 31172, 'tolerance': 31173, 'forecourt': 31174, 'stephe': 31175, 'newsradio': 31176, 'monologue': 31177, 'ausgangssperren': 31178, 'highers': 31179, 'kolata': 31180, 'icc': 31181, 'alyssa': 31182, 'defireathome': 31183, 'wahab': 31184, 'amshow': 31185, '27x': 31186, 'parisian': 31187, 'ruben': 31188, 'nazario': 31189, 'quirk': 31190, 'delf': 31191, 'omni': 31192, 'warmly': 31193, 'kryptonite': 31194, 'fillup': 31195, 'conferances': 31196, 'vox': 31197, 'heroine': 31198, 'lettercarriers': 31199, 'covit19': 31200, 'xdd': 31201, 'levelling': 31202, 'categorised': 31203, 'whaddya': 31204, 'northjersey': 31205, 'billdesk': 31206, 'paytm': 31207, 'phonepay': 31208, 'meeseva': 31209, '686': 31210, 'stranding': 31211, '40m': 31212, 'jeopardising': 31213, '120m': 31214, 'machination': 31215, 'makhura': 31216, 'beavis': 31217, 'igers': 31218, 'throughput': 31219, 'springtime': 31220, 'bbcnewsnight': 31221, 'propagation': 31222, 'nexxo': 31223, '329': 31224, 'danyel': 31225, 'surrency': 31226, 'powerhandz': 31227, 'stripe': 31228, 'raiderstrategy': 31229, 'rsecon': 31230, 'plainly': 31231, 'isolationmode': 31232, 'fmradio': 31233, 'waybackwithkmac': 31234, 'memesiveseen': 31235, 'elemental': 31236, 'fiendishly': 31237, 'resistant': 31238, 'complicate': 31239, 'hilfiker': 31240, 'fighthunger': 31241, 'panicbuyingtoiletpaper': 31242, 'dreamies': 31243, 'seder': 31244, 'cashed': 31245, 'lexingtonva': 31246, 'dismantle': 31247, 'momentary': 31248, 'rebooked': 31249, 'douchebag': 31250, 'nidhi': 31251, 'toor': 31252, 'patelshrewsbury': 31253, '2gb': 31254, '70days': 31255, 'palmsunday2020': 31256, 'cranny': 31257, 'conversion': 31258, 'duelling': 31259, 'cancelstudentdebt': 31260, 'circumventing': 31261, 'refilled': 31262, '316m': 31263, 'arounds': 31264, 'issuesofpandemic': 31265, 'iseestupidpeople': 31266, 'torn': 31267, 'isi': 31268, 'controll': 31269, 'eeriest': 31270, 'unanticipated': 31271, 'violently': 31272, 'overreact': 31273, 'trippled': 31274, 'chrisingham': 31275, 'inghamfamily': 31276, 'pervert': 31277, 'sleepover': 31278, 'cocoonmaldives': 31279, 'trumptariffs': 31280, 'predictable': 31281, 'leanintothegood': 31282, 'indiebrand': 31283, 'lpol': 31284, 'notforeverjustfornow': 31285, 'tahoe': 31286, 'dinning': 31287, '3min': 31288, 'interpreting': 31289, 'raced': 31290, 'sandiego': 31291, 'onlinedelivery': 31292, 'webster': 31293, 'gob': 31294, 'exigency': 31295, 'trapping': 31296, 'unemploymentbenefits': 31297, 'getyourmoney': 31298, 'tourhomes': 31299, 'risinggunsales': 31300, 'presently': 31301, 'hashtags': 31302, 'wecansupply': 31303, 'vikanleverera': 31304, 'svenska': 31305, 'leveranser': 31306, 'gigi': 31307, 'intubated': 31308, 'sedative': 31309, 'hitesh': 31310, 'palta': 31311, 'acronym': 31312, 'frontlinersph': 31313, 'variation': 31314, 'basiji': 31315, 'stiglich': 31316, 'canton': 31317, 'vaud': 31318, 'jena': 31319, '110k': 31320, 'thuringia': 31321, 'mandatorymasking': 31322, 'maskenpficht': 31323, 'homemademasks': 31324, 'tarek': 31325, 'aliahmad': 31326, 'ferragu': 31327, 'dickinson': 31328, 'meritasusa': 31329, 'independentlawfirms': 31330, 'subsitute': 31331, 'rifle': 31332, 'powpow': 31333, '951': 31334, 'ufcw951': 31335, 'contradictory': 31336, '2metre': 31337, 'carriage': 31338, 'eac': 31339, 'christopherwalken': 31340, 'pawquafina': 31341, 'iz': 31342, 'purrified': 31343, 'purr': 31344, 'splint': 31345, 'hooman': 31346, 'pug': 31347, 'dontbeanasshole': 31348, 'ourseniorsdeservebetter': 31349, 'betelnut': 31350, 'moresby': 31351, 'truue': 31352, 'quaratine': 31353, '174': 31354, 'delgasprices': 31355, 'naifa': 31356, 'delco': 31357, 'chk': 31358, 'jamestown': 31359, 'koolaid': 31360, 'corsair': 31361, 'comm': 31362, 'tectonic': 31363, 'vryburg': 31364, 'degradable': 31365, 'coreychen': 31366, 'coronathailand': 31367, 'michelman': 31368, 'lisce': 31369, '19italia': 31370, 'fistr': 31371, 'counterintuitively': 31372, 'afoot': 31373, 'philanthropic': 31374, '01449': 31375, '77400': 31376, 'y11s': 31377, 'y13s': 31378, 'leaver': 31379, 'prom': 31380, 'buymo': 31381, 'svcs': 31382, 'jeopardizing': 31383, 'northridge': 31384, 'tyrant': 31385, 'itsthelittlethings': 31386, 'individualistic': 31387, 'airdrop': 31388, 'nocoronavirus': 31389, 'shorting': 31390, 'weaponized': 31391, 'alluded': 31392, 'reffering': 31393, 'urbansketch': 31394, 'affectiva': 31395, '40mins': 31396, 'fairwaymarket': 31397, 'osterholm': 31398, 'cholesterol': 31399, 'hearthealth': 31400, 'phoned': 31401, 'dieforthedow': 31402, 'dying4wallstreet': 31403, 'nonsensically': 31404, 'totaljerks': 31405, 'abhimanyu': 31406, 'yas': 31407, 'lass': 31408, 'prue': 31409, 'coincidental': 31410, 'groat': 31411, 'technode': 31412, 'brigade': 31413, 'cfprobs': 31414, 'missingthings': 31415, 'nervously': 31416, 'clockwise': 31417, 'heroism': 31418, 'tutocovers': 31419, 'everyoneinthistogether': 31420, 'hauskahome': 31421, 'buyahouse': 31422, 'acceptedoffer': 31423, 'wafer': 31424, 'implores': 31425, 'bombardment': 31426, 'gateway': 31427, 'robocallers': 31428, 'nickname': 31429, 'embarked': 31430, 'terrace': 31431, 'privacylaw': 31432, 'informationgovernance': 31433, 'escarpment': 31434, 'ontariospirit': 31435, 'naturelovers': 31436, 'pharmacychecker': 31437, 'oliveoil': 31438, 'evoo': 31439, 'acietedeoliva': 31440, 'aove': 31441, 'deliverydrivers': 31442, 'socialgood': 31443, 'provincewide': 31444, 'borno': 31445, 'constricting': 31446, 'bordertown': 31447, 'pinak': 31448, 'ranjan': 31449, 'chakravarty': 31450, 'joshmchipster': 31451, 'cloutmouse': 31452, 'buster': 31453, 'teamkentucky': 31454, 'rewrite': 31455, 'buyerpersonas': 31456, 'readapt': 31457, 'grounding': 31458, 'objection': 31459, 'tireddaughter': 31460, 'hamsterkaufschlager': 31461, 'chargeback': 31462, 'rumbo': 31463, 'protejete': 31464, 'increment': 31465, 'shy': 31466, 'bestsellingauthor': 31467, 'memoir': 31468, 'wrongplacewrongtime': 31469, 'locale': 31470, 'recee': 31471, 'womenshistorymonth': 31472, 'hernandez': 31473, 'gatashe': 31474, 'cheaply': 31475, 'radiate': 31476, 'blas': 31477, 'fwyd': 31478, 'consolidated': 31479, 'pulpandpaper': 31480, 'ilr': 31481, 'icelandic': 31482, 'pooled': 31483, 'binary': 31484, 'positve': 31485, 'limeade': 31486, 'cigna': 31487, 'humana': 31488, 'insurancenews': 31489, 'pricelessaycalling': 31490, 'baka': 31491, 'nyo': 31492, 'naranasan': 31493, 'isang': 31494, 'kahig': 31495, 'tuka': 31496, 'coronahumor': 31497, 'refo': 31498, 'swabtek': 31499, 'lawenforcement': 31500, 'americaworkstogether': 31501, 'abhorent': 31502, 'somes': 31503, 'typicaltory': 31504, 'kwara': 31505, 'walloped': 31506, 'parksandrec': 31507, 'marin': 31508, 'uvlight': 31509, 'alb': 31510, 'sqm': 31511, 'nev': 31512, 'energize': 31513, 'cfc': 31514, 'idled': 31515, 'yubanet': 31516, 'ncpol': 31517, 'consisting': 31518, 'dailymail': 31519, 'panamasolidario': 31520, 'capitalistic': 31521, 'altar': 31522, 'unquenched': 31523, 'trinity': 31524, 'inhumanity': 31525, 'depravity': 31526, 'financialtimes': 31527, '400ml': 31528, 'vvhat': 31529, 'vvant': 31530, 'svvimming': 31531, 'vvell': 31532, 'westlondon': 31533, 'saltandpepper': 31534, 'bootsthechemists': 31535, 'r97': 31536, '21dayslockdownsouthafrica': 31537, 'traceable': 31538, 'broadest': 31539, 'leapfrogging': 31540, 'blockaded': 31541, 'sobras': 31542, 'juelztheking': 31543, 'muddy': 31544, 'mp3': 31545, 'wav': 31546, 'trackouts': 31547, '008': 31548, '2382': 31549, '1339': 31550, 'overstuffed': 31551, 'wrestlemania36': 31552, 'yey': 31553, 'mobilized': 31554, 'paula': 31555, 'scouser': 31556, 'tysm': 31557, 'omelet': 31558, 'zed': 31559, 'barra': 31560, 'jointly': 31561, '99k': 31562, 'nationalfragranceweek': 31563, 'scumbagcompanies': 31564, 'judson': 31565, 'kauffman': 31566, 'looby': 31567, 'wsismm': 31568, 'kalie': 31569, 'shorr': 31570, 'arcticmonkeys': 31571, 'thanksmom': 31572, 'youruaualtable': 31573, 'approvedtravel': 31574, 'thankyougrocerystoreworkers': 31575, 'turnkeyadventures': 31576, 'gohoos': 31577, 'uva': 31578, 'wahoowa': 31579, 'procted': 31580, 'fictitious': 31581, 'sars2': 31582, 'fakelimits': 31583, 'springing': 31584, 'holysaturday': 31585, 'hmcts': 31586, 'indonesian': 31587, 'archipelago': 31588, '2pts': 31589, 'indpol': 31590, 'serame': 31591, 'taukobong': 31592, 'powerbusiness': 31593, 'justnotfeesable': 31594, 'imoffshopping': 31595, 'decease': 31596, 'kohima': 31597, 'jotsoma': 31598, 'vauxhall': 31599, 'reception': 31600, 'smsf': 31601, 'goddaughter': 31602, 'woodmac': 31603, 'edgardo': 31604, 'gelsomino': 31605, 'taftan': 31606, 'sukkur': 31607, 'porch': 31608, 'fcaa': 31609, '1917': 31610, 'amazonvideo': 31611, 'stayhomeeaster': 31612, 'realoverthis': 31613, 'rad': 31614, 'molecular': 31615, 'chastising': 31616, 'organising': 31617, 'gocarona': 31618, 'duma': 31619, 'getheathy': 31620, '748': 31621, 'ukhad': 31622, 'liya': 31623, 'deke': 31624, 'pappu': 31625, '10mbd': 31626, 'patenting': 31627, 'valiquette': 31628, 'chuckled': 31629, 'marketbasket': 31630, 'religiousliberty': 31631, 'novice': 31632, 'thronging': 31633, 'discriminating': 31634, 'usemask': 31635, 'tripexperts': 31636, 'alexhospitality': 31637, 'nwanews': 31638, 'parrishable': 31639, 'reconcile': 31640, 'pasteurisation': 31641, 'bacteri': 31642, 'everyrhing': 31643, '40am': 31644, 'bossman': 31645, 'blowjob': 31646, 'igotthetolietpaperplug': 31647, 'thisislegalaid': 31648, 'scamprevention': 31649, 'trailing': 31650, 'tpocalypse': 31651, 'borrowed': 31652, 'upright': 31653, '719': 31654, '7554': 31655, 'perceive': 31656, 'babu': 31657, 'tikegi': 31658, 'brazos': 31659, 'subaru': 31660, 'woodstock': 31661, 'lakemfa': 31662, 'extraspecial': 31663, 'ooin': 31664, 'dolly': 31665, 'parton': 31666, 'whitworth': 31667, 'wethe4th': 31668, 'negligent': 31669, 'willfull': 31670, 'itsnotaboutyou': 31671, 'interceptor': 31672, 'tamiko': 31673, 'gastrointestinal': 31674, 'thankafarmer': 31675, 'randomization': 31676, 'dimas': 31677, 'envious': 31678, 'needthebasics': 31679, 'opal': 31680, 'since1832': 31681, 'bloggersrt': 31682, 'bonedrygrocerystores': 31683, 'cantfindshit': 31684, 'deathbeforebeans': 31685, 'fun2020diaries': 31686, 'bostonian': 31687, 'shockingly': 31688, 'speedup': 31689, '729': 31690, 'annabel': 31691, 'insidefgould': 31692, 'insideatkins': 31693, 'proudtobuildwhatmatters': 31694, 'lawful': 31695, 'stabilising': 31696, 'tequila925': 31697, 'divavodka': 31698, 'dalmore62': 31699, 'buckabeer': 31700, 'incidentally': 31701, 'repetition': 31702, 'addressdynamic': 31703, 'matoshree': 31704, 'thackeray': 31705, 'heiny': 31706, '989thebull': 31707, 'fitzhappens': 31708, 'supermarketqueue': 31709, 'como': 31710, 'day29': 31711, 'pepys': 31712, 'disconnection': 31713, 'optus': 31714, 'hbor': 31715, 'harborside': 31716, 'cannabisnewsdd': 31717, '3wk': 31718, 'fcked': 31719, 'thinkingaboutothers': 31720, 'eugh': 31721, 'wedge': 31722, 'comprehension': 31723, 'neverbiden': 31724, 'stooge': 31725, 'bernieforpresident': 31726, 'esteem': 31727, 'greedytarget': 31728, 'targetistargetingcoronaviruspandemic': 31729, 'hollylogan': 31730, 'hahaholly': 31731, 'hollyhittinhollywood': 31732, 'hmlthestar': 31733, 'imakepeoplelaughforfree': 31734, 'costcomeme': 31735, 'ificouldturnbacktime': 31736, 'doorbell': 31737, 'tindie': 31738, 'hollaa': 31739, 'walkout': 31740, 'egghunt2020': 31741, 'bilyonaryofeatures': 31742, 'swindon': 31743, 'cognitive': 31744, 'dissonance': 31745, 'soylentgreen': 31746, 'itspeople': 31747, 'endoftheworld': 31748, 'chic': 31749, 'corridor': 31750, 'uhmm': 31751, 'phoenixrealtor': 31752, 'realestatebroker': 31753, 'realestateinvesting': 31754, 'economyslowdown': 31755, 'economicslowdown': 31756, 'phoenixarizona': 31757, 'wickedly': 31758, 'improper': 31759, 'garnishment': 31760, 'escorted': 31761, 'fraservalley': 31762, 'roasting': 31763, 'untimely': 31764, 'defists': 31765, 'vulgories': 31766, 'prejudiced': 31767, 'sharif': 31768, 'shakira': 31769, 'locksouthafricadown': 31770, 'generationalmalpractice': 31771, 'trademarked': 31772, 'markey': 31773, 'blip': 31774, 'derelict': 31775, 'crunching': 31776, 'rebounding': 31777, 'bkk': 31778, '22mar': 31779, '12apr': 31780, 'crux': 31781, 'virusoutbreak': 31782, 'dw': 31783, 'saputo': 31784, 'anf': 31785, 'thuisisolatie': 31786, 'sanzi': 31787, 'keepdistance': 31788, 'adphc': 31789, 'nothingleft': 31790, 'uglier': 31791, 'southeastern': 31792, 'wyoming': 31793, 'roving': 31794, 'dsg9mujuhn': 31795, 'downplays': 31796, 'selkirk': 31797, 'daredevil': 31798, 'hodgens': 31799, 'archiveday': 31800, 'protesting': 31801, 'circu': 31802, 'lebanese': 31803, 'commence': 31804, 'reign': 31805, 'irrespective': 31806, 'edmotonians': 31807, 'rya': 31808, '023': 31809, '8060': 31810, '4223': 31811, 'steaming': 31812, 'chili': 31813, 'zim': 31814, '8200': 31815, '11bn': 31816, 'blubettysa': 31817, 'corporateevent': 31818, 'browardcounty': 31819, 'palmbeachcounty': 31820, 'fortlauderdalecaricatureartist': 31821, '954': 31822, '695': 31823, '6578': 31824, 'fwd': 31825, 'hockey': 31826, 'ceidy': 31827, 'jx': 31828, 'porro': 31829, 'lucked': 31830, 'inkedorganics': 31831, 'letsgetthisbread': 31832, 'yeetthiswheat': 31833, 'buttwatts': 31834, 'glutenpoweredglutes': 31835, 'wcc': 31836, 'hangingstone': 31837, 'sagd': 31838, 'undrstnd': 31839, 'tking': 31840, 'whch': 31841, 'prdcts': 31842, '1977': 31843, 'salty': 31844, 'chew': 31845, 'lockdownkenya': 31846, 'downtownkc': 31847, 'stockvisibility': 31848, 'supportingretail': 31849, 'meghan': 31850, 'salle': 31851, 'kyw': 31852, 'abramovich': 31853, 'millennium': 31854, 'poolsides': 31855, 'visualizes': 31856, 'worthit': 31857, 'ussteel': 31858, 'obscenity': 31859, 'oscar': 31860, 'fairfield': 31861, 'wearefairfield': 31862, 'godbless': 31863, 'misspelling': 31864, 'vague': 31865, 'islamic': 31866, '0540556339': 31867, 'ramnavami': 31868, 'shaheenabagh': 31869, 'carding': 31870, 'rohini': 31871, 'pitampura': 31872, 'marktuan': 31873, 'raja': 31874, 'kali': 31875, 'confounded': 31876, 'sonny': 31877, '925m': 31878, 'foy': 31879, 'navycapital': 31880, 'vccirclepremium': 31881, 'incited': 31882, 'polluted': 31883, 'kilburn': 31884, 'kom': 31885, 'meer': 31886, 'bij': 31887, 'tuning': 31888, 'dustmask': 31889, 'dutchie': 31890, 'comedysong': 31891, 'dharavi': 31892, '147': 31893, '2kg': 31894, 'breakspot': 31895, 'clothed': 31896, 'embark': 31897, 'evolved': 31898, 'letdie': 31899, 'sadday': 31900, 'nomorepeanutbutter': 31901, 'adaywithoutapeanutbutter': 31902, 'theonlythingitrulycareabout': 31903, 'asiegercares': 31904, 'asieger': 31905, 'raina': 31906, 'macintyre': 31907, 'aom': 31908, 'cannt': 31909, 'risj': 31910, 'iin': 31911, 'foodgrains': 31912, 'connectedness': 31913, 'epu': 31914, 'ssrn': 31915, 'shorona': 31916, 'zines': 31917, 'organizing': 31918, 'cra': 31919, 'crammed': 31920, 'ontariodairyboard': 31921, 'quarantineday5': 31922, 'hitchhikersguidetothegalaxy': 31923, 'thesquids': 31924, 'joeyspatafora': 31925, 'tolietpaperemergency': 31926, 'primeday2020': 31927, 'graft': 31928, 'berk': 31929, 'cretin': 31930, 'siren': 31931, 'hahahah': 31932, 'totalchaos': 31933, 'bobo': 31934, 'naive': 31935, 'landfill': 31936, 'gabon': 31937, 'pangolin': 31938, 'falter': 31939, 'ventes': 31940, 'flanchent': 31941, 'avec': 31942, 'theultimatechoice': 31943, 'redcross': 31944, 'theageofcoronavirus': 31945, 'fuckthecoronavirus': 31946, 'igettowipemyass': 31947, 'peopleoverprofits': 31948, 'pharamacy': 31949, 'goair': 31950, 'logistician': 31951, 'pang': 31952, 'nowreading': 31953, 'seneshaw': 31954, 'tamru': 31955, 'bart': 31956, 'minten': 31957, 'igc': 31958, 'haih': 31959, 'mtherfkers': 31960, 'pursuing': 31961, 'marvin': 31962, 'snowing': 31963, 'swkzwespsp': 31964, 'foregone': 31965, 'revoking': 31966, 'perscription': 31967, 'canale': 31968, 'delponti': 31969, 'sergienko': 31970, 'semiconductorsales': 31971, 'semiconductorequipment': 31972, 'analytic': 31973, 'delooroll': 31974, 'shamblesstayathome': 31975, 'packthepantries': 31976, 'syian': 31977, 'cpri': 31978, 'groveries': 31979, 'coronahassle': 31980, 'miltimore': 31981, 'flatline': 31982, 'sashaying': 31983, 'elegantly': 31984, 'scanky': 31985, 'smartkas': 31986, 'involvement': 31987, 'seeding': 31988, 'saskag': 31989, 'apas': 31990, 'urt': 31991, 'extraneous': 31992, 'nanny': 31993, 'massage': 31994, 'ensue': 31995, 'croix': 31996, 'slamming': 31997, 'restraining': 31998, 'blindly': 31999, 'natsec': 32000, 'unga': 32001, 'bae': 32002, 'prayerfully': 32003, 'penney': 32004, '5lb': 32005, 'matzah': 32006, 'ssc': 32007, 'ufm': 32008, 'hydroxychroloquine': 32009, 'n145': 32010, 'priceofoil': 32011, 'whith': 32012, 'silverlining': 32013, 'oper': 32014, 'kuehn': 32015, 'ronald': 32016, 'gorsline': 32017, 'blake': 32018, 'hurshell': 32019, 'statelaw': 32020, 'eft': 32021, 'oliver': 32022, 'alignment': 32023, 'digitalcollaboration': 32024, 'qfc': 32025, 'messager': 32026, 'ssb': 32027, 'epid': 32028, 'simulating': 32029, 'intraocular': 32030, 'wer': 32031, 'denn': 32032, 'werk': 32033, 'gestern': 32034, 'nachmittag': 32035, 'konnten': 32036, 'anwohner': 32037, 'innen': 32038, 'stadtteil': 32039, 'praunheim': 32040, 'frankfurt': 32041, 'diese': 32042, 'aktion': 32043, 'bestaunen': 32044, 'daf': 32045, 'verantwortlich': 32046, 'unklar': 32047, 'danke': 32048, 'theiss': 32049, 'zusendung': 32050, 'bild': 32051, 'mak': 32052, 'lemieux': 32053, 'econlog': 32054, 'quarantinewatchparty': 32055, 'tauranga': 32056, 'hideous': 32057, 'barriefoodbank': 32058, 'ferr': 32059, 'staysafequ': 32060, 'tpsearch': 32061, 'vermonter': 32062, 'svpol': 32063, 'cras': 32064, 'hols': 32065, 'scottcpeterson': 32066, '4hours': 32067, '1of': 32068, 'vodk': 32069, 'pew': 32070, 'susceptibility': 32071, 'gall': 32072, 'corporationssuck': 32073, 'alok': 32074, 'anthropology': 32075, 'purity': 32076, 'sneering': 32077, 'bowing': 32078, 'fbdoyzqhci': 32079, 'rememberinnovember': 32080, 'incompetentbuffoon': 32081, 'justwashyourhands': 32082, 'noi': 32083, 'paghiamo': 32084, 'carta': 32085, 'credito': 32086, 'satispay': 32087, 'molti': 32088, 'acquisti': 32089, 'desolation': 32090, 'boredinthehouse': 32091, 'mmo': 32092, 'marine': 32093, 'cftc': 32094, 'walton': 32095, 'defuniak': 32096, 'leilanijordan': 32097, 'coronachallenge': 32098, 'kaizer': 32099, 'cg': 32100, 'profitero': 32101, 'pimping': 32102, 'sarbananda': 32103, 'sonowal': 32104, 'pricerise': 32105, 'monika': 32106, 'wingate': 32107, 'oeb': 32108, 'oversees': 32109, 'elexion': 32110, 'kansan': 32111, 'essentialworkerwage': 32112, 'sofreakinhappy': 32113, '386': 32114, 'appendicitis': 32115, 'undertaker': 32116, 'tbd': 32117, 'supersavertravel': 32118, 'coronatravel': 32119, 'reccomend': 32120, 'stimulating': 32121, 'emergingmarkets': 32122, 'kildee': 32123, 'comprehending': 32124, 'empy': 32125, 'zoning': 32126, 'depiction': 32127, 'unifor': 32128, 'ubiquitous': 32129, 'patiently': 32130, 'riaz': 32131, 'quarantinecon': 32132, 'nightmarefuel': 32133, 'aviv': 32134, 'ferguson': 32135, 'quarantinestories': 32136, 'spreadreliefnotcorona': 32137, 'islam': 32138, 'mussel': 32139, 'shellfish': 32140, 'healthcarecentres': 32141, 'wearmask': 32142, 'howtocure': 32143, 'rnib': 32144, 'visually': 32145, 'islington': 32146, 'minim': 32147, 'throwbackthursday': 32148, 'stackedshelves': 32149, 'faffing': 32150, 'tysonfoods': 32151, 'kibosh': 32152, 'format': 32153, 'bewildering': 32154, 'commodaties': 32155, 'respectsupermarketstaff': 32156, 'underestimating': 32157, 'covent': 32158, 'feedinglondon': 32159, 'asfreshasitgets': 32160, 'fresdelivery': 32161, 'freshproduce': 32162, 'neutralizes': 32163, 'thicker': 32164, 'promoitems': 32165, 'chicagomade': 32166, 'fdd': 32167, 'elderlyhour': 32168, 'swanning': 32169, 'awoke': 32170, 'connects': 32171, 'centredness': 32172, 'nationalism': 32173, 'patriot': 32174, 'ayn': 32175, 'objectivism': 32176, 'galt': 32177, 'gulch': 32178, 'publi': 32179, 'ceva': 32180, 'crank': 32181, 'ieuan': 32182, 'weareone': 32183, 'hospitalstaff': 32184, 'mailcarrier': 32185, 'hotpepesoupjokes': 32186, 'hotpepesoup': 32187, 'noxworldng': 32188, 'noxworld': 32189, 'mrnox': 32190, 'soma': 32191, 'tuckercarlsontonight': 32192, 'mabs': 32193, 'dublinsouthmabs': 32194, 'moneyadvice': 32195, 'atf': 32196, '717': 32197, '3476372': 32198, 'beatingcorona': 32199, 'medicalequipement': 32200, 'redbeansandrice': 32201, 'quarantineandrelaxation': 32202, 'citygirl': 32203, 'southkitchen': 32204, 'overburdened': 32205, 'amazonfba': 32206, 'mcbroom': 32207, 'explicitly': 32208, 'toil': 32209, '9200': 32210, '2810': 32211, 'yumchina': 32212, 'servce': 32213, 'concurrence': 32214, 'gleefully': 32215, 'callin': 32216, 'tmituesday': 32217, 'sprinted': 32218, 'n5bn': 32219, 'augh': 32220, 'enforces': 32221, 'kurnool': 32222, 'quintal': 32223, 'critized': 32224, 'paralysis': 32225, 'hubei': 32226, 'crowbar': 32227, 'stayhuman': 32228, 'manlyquarantinesurvivaltips': 32229, 'seltzer': 32230, 'consortium': 32231, 'blitzspirit': 32232, 'slug': 32233, 'biso': 32234, 'zoopla': 32235, 'paralyse': 32236, 'comparatively': 32237, 'consensus': 32238, 'ampr': 32239, 'mortimer': 32240, 'callaghan': 32241, 'organizational': 32242, 'rmcoeh': 32243, 'velodomestique': 32244, 'overweegt': 32245, 'aantal': 32246, 'pakken': 32247, 'klant': 32248, 'beperken': 32249, 'descent': 32250, 'utica': 32251, 'upstate': 32252, '315': 32253, 'boreantine': 32254, 'balognavirus': 32255, 'walkingtour': 32256, 'retard': 32257, 'raping': 32258, 'probl': 32259, 'flashpoint': 32260, 'foschinigroup': 32261, 'unis': 32262, 'tupac': 32263, 'toystore': 32264, 'wereopen': 32265, 'kidstoys': 32266, 'adexchanger': 32267, 'capt': 32268, 'wei': 32269, 'newcomer': 32270, '9057325337': 32271, 'cinnamontea': 32272, 'cinnamonoil': 32273, 'conviva': 32274, 'ardmore': 32275, 'ormeau': 32276, 'moralmoney': 32277, 'evp': 32278, 'paidsocialmedia': 32279, 'serous': 32280, 'acton': 32281, 'burgled': 32282, 'plasticsnews': 32283, 'chemorbis': 32284, 'zhanfu': 32285, 'stevied': 32286, 'musicvideo': 32287, 'panera': 32288, 'nasir': 32289, 'rufai': 32290, 'poblano': 32291, '1080': 32292, 'hippy': 32293, 'blimmin': 32294, 'signalled': 32295, 'newquay': 32296, 'pasty': 32297, 'shopforessentials': 32298, 'occasionally': 32299, 'antmiddleton': 32300, 'rawlco': 32301, 'jurisdiction': 32302, 'ministery': 32303, 'bno': 32304, 'shophurstcbd': 32305, 'stayclean': 32306, 'undershoot': 32307, 'imhotep': 32308, 'gent': 32309, 'qm': 32310, 'ayesha': 32311, 'oldmargaretian': 32312, 'qmfamily': 32313, 'quitemarvellous': 32314, 'rampid': 32315, 'reed': 32316, 'monticello': 32317, 'heycoronaviruspleaseleaveus': 32318, 'crn': 32319, 'datafirst': 32320, 'flashy': 32321, 'dalandcuso': 32322, 'crytpo': 32323, 'intercession': 32324, 'stjosephprayforus': 32325, 'mouthing': 32326, 'sob': 32327, 'howdymodi': 32328, 'yogaduringlockdown': 32329, 'yogawithmodi': 32330, 'coronayoga': 32331, 'yogavideo': 32332, 'bloodyjamadi': 32333, 'whatdayisit': 32334, 'motherboard': 32335, 'freshdirect': 32336, 'animator': 32337, 'blaise': 32338, 'aladdin': 32339, 'mulan': 32340, 'mthingz': 32341, 'auditor': 32342, 'onlinecourse': 32343, 'frig': 32344, 'extrapolated': 32345, 'acm': 32346, 'kendra': 32347, 'giveback7175': 32348, 'pepper': 32349, 'touronegro': 32350, 'fujairah': 32351, 'dbn': 32352, 'psycho': 32353, 'psychobunnycomix': 32354, 'michelewitchipoo': 32355, 'witchesbrewpress': 32356, 'ebeano': 32357, 'badnickelbacksongs': 32358, 'phillip': 32359, 'wanda': 32360, 'armour': 32361, 'gazetting': 32362, 'narrating': 32363, 'priceatthepump': 32364, 'hogging': 32365, 'kitwe': 32366, 'ndola': 32367, 'hickory': 32368, 'improvised': 32369, 'wildfood': 32370, 'derail': 32371, 'enel': 32372, 'francesco': 32373, 'starace': 32374, 'brambilla': 32375, 'mandideep': 32376, 'scindiaschool': 32377, 'scindians': 32378, 'soba': 32379, 'scindiaagainstcorona': 32380, 'relatedly': 32381, 'drivethrurpg': 32382, 'miniature': 32383, 'coloringbook': 32384, 'rpg': 32385, 'ttrpg': 32386, 'emily': 32387, 'debunking': 32388, 'sherrod': 32389, 'debtcollections': 32390, 'businesslaw': 32391, 'earmarked': 32392, 'sitcom': 32393, 'nostalgia': 32394, 'kotter': 32395, 'ioannou': 32396, 'ultravioletsterilizer': 32397, 'uneccessary': 32398, 'panna': 32399, 'cotta': 32400, 'bioenergy': 32401, 'sanitisation': 32402, 'thankyouforyourservice': 32403, 'lifejackets': 32404, 'pleease': 32405, 'coveredinjesusblood': 32406, 'ffod': 32407, 'doctorate': 32408, 'incread': 32409, 'forcefully': 32410, 'milion': 32411, 'improbably': 32412, 'doordash': 32413, 'supermarketmadness': 32414, 'ayeartoremember': 32415, 'zomato': 32416, 'shaunofthedead': 32417, 'westinghouse': 32418, 'imaging': 32419, 'clambering': 32420, 'sequoia': 32421, 'useloom': 32422, 'yoyo': 32423, 'handset': 32424, 'nectoday': 32425, 'pandemy': 32426, 'coloradostrong': 32427, 'ruffle': 32428, 'tripping': 32429, 'sarcastically': 32430, 'whisky': 32431, 'martian': 32432, 'dano': 32433, 'accross': 32434, 'lgas': 32435, 'belo': 32436, 'gers': 32437, 'unworthy': 32438, '2100': 32439, 'cesarchavezday': 32440, 'ebbw': 32441, 'distinctive': 32442, 'brum': 32443, 'kling': 32444, 'beleive': 32445, 'leftfield': 32446, 'parenthood': 32447, 'parentsinlockdown': 32448, 'suffice': 32449, 'sabko': 32450, 'hina': 32451, 'isip': 32452, 'payagan': 32453, 'kayo': 32454, 'paso': 32455, 'abv': 32456, 'pepsi': 32457, 'camomile': 32458, 'echinacea': 32459, 'hdelacerda': 32460, 'buttpaper': 32461, 'jmfstudios': 32462, 'cottonelle': 32463, 'artislife': 32464, 'mentalhealthmatters': 32465, 'shoppingmalls': 32466, 'essentialshopping': 32467, 'setlimits': 32468, 'latenightthoughts': 32469, 'radish': 32470, 'gujarati': 32471, 'storytelling': 32472, '07pm': 32473, 'thurton': 32474, 'winnipeg': 32475, 'landwork': 32476, 'nestle': 32477, 'rollingstones': 32478, 'cranking': 32479, 'wildrye': 32480, '2oz': 32481, 'ste': 32482, '1e': 32483, 'bozeman': 32484, 'theresa': 32485, 'tam': 32486, 'conf': 32487, 'delicacy': 32488, 'nadia': 32489, 'rocha': 32490, 'ruta': 32491, 'paramount': 32492, 'peruvian': 32493, 'footstep': 32494, 'nodeal': 32495, 'aided': 32496, 'sycophantic': 32497, 'dumbed': 32498, 'electorate': 32499, 'poundland': 32500, 'impersonating': 32501, 'dakakeena': 32502, 'leeway': 32503, 'rubbed': 32504, 'deffeyes': 32505, '2006': 32506, 'groundwork': 32507, 'flavouring': 32508, 'kidda': 32509, 'juscome': 32510, 'worryin': 32511, 'viking': 32512, 'shortagez': 32513, 'plundered': 32514, 'healthful': 32515, 'ccfa': 32516, 'bradford': 32517, 'localheroes': 32518, 'greadybusiness': 32519, 'itsallowed': 32520, 'day11': 32521, 'lockdownespa': 32522, 'nrma': 32523, 'drip': 32524, 'shawnee': 32525, 'frederickrealestate': 32526, 'mdrealestate': 32527, 'homeforsale': 32528, 'homeownership': 32529, 'buyahome': 32530, 'implmted': 32531, 'uisce': 32532, 'beatha': 32533, 'render': 32534, 'lifehacks': 32535, 'ukretail': 32536, 'breastfeeding': 32537, 'callcenter': 32538, 'businessasusual': 32539, 'uruguay': 32540, 'butler': 32541, 'darn': 32542, 'somyszirjy': 32543, 'northkorea': 32544, 'tre45on': 32545, 'senseless': 32546, 'awakened': 32547, 'cardvalet': 32548, 'getbeyondmoney': 32549, 'riseagain': 32550, 'besafeoutthere': 32551, '35mm': 32552, 'attleboroma': 32553, 'wincanton': 32554, 'calmcovid19': 32555, 'woth': 32556, 'savethesummer': 32557, 'wiserxcard': 32558, 'prescriptiondiscountcard': 32559, 'meadow': 32560, 'justameme': 32561, 'justjokes': 32562, 'deterrent': 32563, 'slandering': 32564, 'meridian': 32565, 'kosovo': 32566, 'tmtv': 32567, 'againstcorona': 32568, 'tickled': 32569, 'stayhealthyeveryone': 32570, 'sheffieid': 32571, 'lancer': 32572, 'twill': 32573, 'coinspeaker': 32574, 'numbersas': 32575, 'franz': 32576, 'sische': 32577, 'supermarktkette': 32578, 'berweist': 32579, 'mitarbeitern': 32580, 'weil': 32581, 'trotz': 32582, 'ihre': 32583, 'pflicht': 32584, 'tun': 32585, 'regierung': 32586, 'befreit': 32587, 'zuschl': 32588, 'steuer': 32589, 'berichtet': 32590, 'schubert': 32591, '911': 32592, 'dampening': 32593, 'distri': 32594, 'tagged': 32595, 'obstruction': 32596, 'fashionnova': 32597, 'casket': 32598, 'exhibit': 32599, 'bpl': 32600, 'diycleaning': 32601, 'springcleaning': 32602, 'thn': 32603, 'comforted': 32604, 'vra': 32605, 'noshortagehere': 32606, 'getawaywithvra': 32607, 'pnw': 32608, 'cda': 32609, 'alwaysprepared': 32610, 'christoph': 32611, 'harrod': 32612, 'wwg2wga': 32613, 'whitehousepressconference': 32614, 'auspo': 32615, 'wpf': 32616, 'sheldon': 32617, 'adobeanalytics': 32618, 'krise': 32619, 'literate': 32620, 'cann': 32621, 'para': 32622, 'aque': 32623, 'buyears': 32624, 'prayforthem': 32625, 'stlcatholic': 32626, 'handsome': 32627, 'dalo': 32628, 'ncc': 32629, 'lizzy': 32630, 'ltc': 32631, 'statstory': 32632, 'tyrannosaurus': 32633, 'councilmember': 32634, 'conundrum': 32635, 'voss': 32636, 'str8': 32637, 'grubby': 32638, 'ineptness': 32639, 'grifting': 32640, 'pressers': 32641, 'commu': 32642, 'watauga': 32643, 'warmer': 32644, 'sakura': 32645, 'pharmac': 32646, 'lifeinquarantine': 32647, 'dartmouth': 32648, 'ukeleles': 32649, 'whispered': 32650, 'esposa': 32651, 'acabou': 32652, 'mascara': 32653, 'vai': 32654, 'precau': 32655, 'precaucao': 32656, 'ceu': 32657, 'agchem': 32658, 'recedes': 32659, 's3': 32660, 'azsanderson': 32661, 'barryfromwatford': 32662, 'bennyhope': 32663, 'chinwag': 32664, 'drunkshopping': 32665, 'seagull': 32666, 'gof': 32667, 'tbe': 32668, 'realuze': 32669, 'richards': 32670, 'mace': 32671, 'utwebinar': 32672, 'customerempathy': 32673, 'rhino': 32674, 'intent': 32675, 'rutgers': 32676, 'princetonu': 32677, 'tcnj': 32678, 'njit': 32679, 'thanksfordelivery': 32680, 'rutgersnewark': 32681, 'pia': 32682, 'urself': 32683, 'ingrate': 32684, 'plastered': 32685, 'infectologists': 32686, 'nwangwu': 32687, 'dailyvoice': 32688, 'ranjangogoi': 32689, 'rajyasabha': 32690, 'nbjp': 32691, 'smooking': 32692, 'tartous': 32693, '60m': 32694, 'saga': 32695, 'pid': 32696, 'rer': 32697, 'projets': 32698, 'selon': 32699, 'interval': 32700, 'salakati': 32701, 'addl': 32702, 'rani': 32703, 'sarmah': 32704, 'haggle': 32705, '392': 32706, 'grocerry': 32707, 'reoort': 32708, 'hauser': 32709, 'comprehensible': 32710, 'sandpoint': 32711, 'desktop': 32712, 'dividendstocks': 32713, 'wpg': 32714, 'halliburton': 32715, 'overvalued': 32716, 'happ': 32717, '2012': 32718, 'imold': 32719, '32isthenew22': 32720, 'homelandcu': 32721, 'batavia': 32722, 'wny': 32723, 'lest': 32724, 'img': 32725, 'displayfixtures': 32726, 'storedesign': 32727, 'retaildesign': 32728, 'bp': 32729, 'prayed': 32730, 'kylie': 32731, 'jenner': 32732, 'gracefully': 32733, 'nationalnutritionmonth': 32734, 'purityintegrativehealth': 32735, 'crust': 32736, 'doughy': 32737, 'freightforwarder': 32738, 'aircargostrong': 32739, 'mypsafortoday': 32740, 'dabble': 32741, 'mailing': 32742, 'reassert': 32743, 'farmina': 32744, 'bashing': 32745, 'thanns': 32746, 'disapproval': 32747, 'bharati': 32748, 'ak': 32749, 'babywipes': 32750, 'precondition': 32751, 'fightfoodinsecurity': 32752, 'feedingamerica': 32753, '2001': 32754, 'earle': 32755, 'hbr': 32756, 'nutri': 32757, 'marchingband': 32758, 'vacuous': 32759, 'lestwarog': 32760, 'doh': 32761, 'getwellsoon': 32762, 'inoculate': 32763, 'czar': 32764, 'biblical': 32765, 'disciple': 32766, 'brandgeek': 32767, 'paleo': 32768, 'emmie': 32769, 'towardsthesun': 32770, 'familytravelblog': 32771, 'bigusatrip': 32772, 'groundedbycovid19': 32773, 'nottravellingbecauseofcorona': 32774, 'fundraising': 32775, 'harwood': 32776, 'forwarded': 32777, 'binnie': 32778, 'wagyu': 32779, 'coronahygiene': 32780, 'nedina': 32781, 'broadens': 32782, 'crowntoyalevirus': 32783, 'mycorona': 32784, 'westridge': 32785, 'zenobia': 32786, 'shepard': 32787, 'fabs': 32788, 'primrosehill': 32789, 'supernatural': 32790, 'dimly': 32791, 'maze': 32792, 'dts': 32793, 'dw8': 32794, 'wearenotplaying': 32795, 'ff1': 32796, 'nobigoilbailout': 32797, 'futureofmobility': 32798, 'mixing': 32799, 'bailoutpeoplenotcorporations': 32800, 'biohazard': 32801, 'gwala': 32802, 'kidscare': 32803, '0ffers': 32804, 'ahps': 32805, 'mocktails': 32806, 'dived': 32807, 'norriesstories': 32808, 'xboxes': 32809, 'playstations': 32810, 'spanker': 32811, 'hershey': 32812, 'wgal': 32813, 'noidea': 32814, 'filledup': 32815, 'giddy': 32816, 'nbahalloffame': 32817, 'opener': 32818, 'sendhelpandmoney': 32819, 'sloat': 32820, 'sutton': 32821, 'tahini': 32822, 'politik': 32823, 'cmhc': 32824, '515': 32825, '9551': 32826, 'motivates': 32827, 'ukltd': 32828, 'apprehension': 32829, 'w221': 32830, 'kitsap': 32831, 'penetrated': 32832, 'weirdasspeople': 32833, 'inclination': 32834, 'peoplearestrange': 32835, 'adoptdontshop': 32836, 'boreda': 32837, '791': 32838, 'cathy': 32839, 'withstands': 32840, 'tuk': 32841, 'bingham': 32842, 'rosiemayfoundation': 32843, 'malaysiagazette': 32844, '21761': 32845, 'gou': 32846, 'specialize': 32847, 'gpclentils': 32848, 'gpcpeas': 32849, 'sanation': 32850, 'oregonproud': 32851, 'vitally': 32852, 'sani': 32853, 'mccormackmp': 32854, 'ifcci': 32855, 'enniskillen': 32856, 'pale': 32857, 'shopafternoon': 32858, 'jockstrap': 32859, 'underappreciate': 32860, 'jeep': 32861, 'rigged': 32862, 'consumable': 32863, 'verily': 32864, 'r120': 32865, 'r83': 32866, 'parting': 32867, 'majeura': 32868, 'zambian': 32869, 'sternly': 32870, 'zwd': 32871, 'misadventure': 32872, 'grata': 32873, 'craved': 32874, 'quarantini': 32875, 'ragu': 32876, 'collage': 32877, 'notability': 32878, 'schoology': 32879, 'agchatoz': 32880, '133': 32881, '157': 32882, 'zep': 32883, 'brotherhood': 32884, 'preventiontips': 32885, 'homemadesanitier': 32886, 'carifika': 32887, 'crackhead': 32888, 'drugsarebadmkay': 32889, '100cns': 32890, 'relavant': 32891, 'tweeter': 32892, 'unproportionally': 32893, 'agra': 32894, 'namaste': 32895, 'southphilly': 32896, 'tiernay': 32897, 'astro': 32898, 'amigouk': 32899, 'glee': 32900, 'nevermind': 32901, 'goodread': 32902, 'brooklynmadison': 32903, 'lalockdown': 32904, 'lockdownmemes': 32905, 'tiktokers': 32906, 'plan2020': 32907, 'eattherich': 32908, 'yorkie': 32909, 'biosecurity': 32910, 'foodservices': 32911, 'cohosted': 32912, 'parlour': 32913, 'lioh': 32914, 'module': 32915, 'lem': 32916, 'subcultured': 32917, 'brutalized': 32918, 'displeasure': 32919, 'personalspace': 32920, 'bubblesoccer': 32921, 'kuppy': 32922, 'swooped': 32923, 'gunfight': 32924, 'maruchan': 32925, 'figurative': 32926, 'embroidery': 32927, 'fuckthis': 32928, 'hangin': 32929, 'brook': 32930, 'succeeds': 32931, 'sb55': 32932, 'brexitdryrun': 32933, 'balaclava': 32934, 'santiago': 32935, 'cristobal': 32936, 'saavedra': 32937, 'bejesus': 32938, 'martinsville': 32939, 'spooking': 32940, 'stockmarkets': 32941, 'sundayreview': 32942, 'sundayintel': 32943, 'sundayreads': 32944, 'sundaymusings': 32945, 'sundaynight': 32946, 'barricade': 32947, 'okboomer': 32948, 'quarantinememes': 32949, 'huf': 32950, 'nocoronaformedagainstmeshallprosper': 32951, '103097596': 32952, 'yerwada': 32953, 'wakad': 32954, 'cylinde': 32955, 'outstripping': 32956, 'communistsliepeopledie': 32957, 'flippin': 32958, 'registrar': 32959, 'increas': 32960, 'everydollarcounts': 32961, 'killbills': 32962, 'manuf': 32963, '2be': 32964, 'nygovernor': 32965, 'bumpier': 32966, 'amg': 32967, 'tema': 32968, 'konongo': 32969, 'odumasi': 32970, 'ghananews': 32971, 'lawlessness': 32972, 'unauthorized': 32973, 'electionyear': 32974, 'northpark': 32975, 'ameri': 32976, 'rediclinic': 32977, 'foodinstitute': 32978, 'blueapron': 32979, 'mealkit': 32980, 'coronasverige': 32981, 'giveacucumberahome': 32982, 'nalanda': 32983, 'roils': 32984, 'judie': 32985, 'kuddos': 32986, '5mtrs': 32987, 'dstn': 32988, 'obsvd': 32989, 'eavh': 32990, 'wrecking': 32991, 'ecomony': 32992, 'gilet': 32993, 'jaune': 32994, 'kamaljit': 32995, 'kaur': 32996, 'onceaweek': 32997, 'runningerrands': 32998, 'sunnyday': 32999, 'warmweather': 33000, 'misstep': 33001, 'networth': 33002, 'marketcap': 33003, '165millon': 33004, 'xlf': 33005, 'alcoholicism': 33006, 'korbut': 33007, 'yoweri': 33008, 'yowerimuseveni': 33009, 'openning': 33010, 'dacing': 33011, 'resistir': 33012, 'businesslife': 33013, 'coronaspread': 33014, '48hrs': 33015, 'positivethinking': 33016, 'paragraph': 33017, 'maidstone': 33018, 'hopping': 33019, 'ps5reveal': 33020, 'playstation5': 33021, 'skintdodgers': 33022, 'crest': 33023, 'pasture': 33024, 'inexperienced': 33025, 'innitiative': 33026, 'sid': 33027, 'sidvale': 33028, 'foodbankappeal': 33029, 'progressiveenterprise': 33030, 'forgets': 33031, 'blouse': 33032, 'faltered': 33033, 'identitythiefs': 33034, 'entitlement': 33035, 'recyclable': 33036, 'onumulheres': 33037, 'mj': 33038, 'esplanadadosministerios': 33039, 'virtualgrandnational': 33040, 'itv1': 33041, 'hijacking': 33042, 'egungunbecure': 33043, 'mschf': 33044, 'antic': 33045, 'meetup': 33046, 'puredrive': 33047, 'chacunpourtous': 33048, 'silkwood': 33049, 'meryl': 33050, 'streep': 33051, 'katv7': 33052, 'robopony': 33053, 'bcwi': 33054, 'bcwine': 33055, 'lateral': 33056, 'waterless': 33057, 'fashionblogger': 33058, 'takeoffpost': 33059, 'lifestylechange': 33060, 'justincase': 33061, 'socialisolating': 33062, 'badvirusfaqs': 33063, 'worstpresidentinhistory': 33064, 'genitals': 33065, 'eternity': 33066, 'abuelos': 33067, 'okc': 33068, 'cao': 33069, 'nguyen': 33070, 'classen': 33071, '5gb': 33072, '5hours': 33073, '17mins': 33074, '45seconds': 33075, 'ableg': 33076, 'abhealth': 33077, 'banded': 33078, 'tradesagainstthevirus': 33079, 'multiplayer': 33080, 'packman': 33081, 'sadec': 33082, 'mangere': 33083, 'budgeting': 33084, 'mybigfatgreekwedding': 33085, 'everythin': 33086, 'putsomewindexonit': 33087, 'irelandvscovid': 33088, 'calcutta': 33089, 'exclaimed': 33090, 'blurting': 33091, 'safetyproducts': 33092, 'novascotia': 33093, 'hrm': 33094, 'letterbox': 33095, 'nirmalasitharaman': 33096, 'pruning': 33097, 'headcount': 33098, 'pommard': 33099, 'cane': 33100, 'madebynature': 33101, 'burgundy': 33102, 'steelmaker': 33103, 'tenaris': 33104, 'unfavorable': 33105, 'shutaustraliadown': 33106, '10mins': 33107, 'kafu': 33108, 'brekko': 33109, 'aleaprotects': 33110, 'fdi': 33111, 'fdiinindia': 33112, 'fdiindia': 33113, 'eohed': 33114, '211': 33115, 'thenoutbid': 33116, 'm2': 33117, 'bulldozed': 33118, 'scranton': 33119, 'wilkes': 33120, 'barre': 33121, 'gobankingrates': 33122, 'consumertrack': 33123, 'uklockeddown': 33124, 'sahm': 33125, 'xox': 33126, 'newsbite': 33127, 'protectyourworld': 33128, 'cyberprotect': 33129, 'nest': 33130, 'theresistance': 33131, '917': 33132, 'metairie': 33133, 'pandem': 33134, 'preoccupied': 33135, 'lgive': 33136, 'littlegiant': 33137, 'scarymask': 33138, 'indulged': 33139, 'electricvehicle': 33140, 'heightening': 33141, '263chat': 33142, 'twimbos': 33143, 'thejamesandkatahshow': 33144, 'omuntu': 33145, 'wawansi': 33146, 'lidluk': 33147, 'shamble': 33148, 'doingthedragsteroncouncilofficecarpet': 33149, 'takeadumpinasdacarpark': 33150, 'cobbler': 33151, 'civics': 33152, 'biproduct': 33153, 'notforever': 33154, 'belgiumlockdown': 33155, 'hungavirus': 33156, 'panicbuyersuk': 33157, '303k': 33158, 'carsalesman': 33159, 'protectallworkers': 33160, 'lookafter': 33161, 'fissure': 33162, 'dishrag': 33163, 'wheresdora': 33164, 'mykarenislestory': 33165, 'over70': 33166, 'selfisolat': 33167, 'rudd': 33168, 'milkpowder': 33169, 'cumming': 33170, 'tink': 33171, 'gearsoftheworld': 33172, 'conversational': 33173, 'finhealth': 33174, 'varanasi': 33175, 'notessential': 33176, 'syracuse': 33177, 'toguether': 33178, '50inch': 33179, 'suprise': 33180, '760': 33181, 'pricegouger': 33182, 'howdoyousleepatnight': 33183, 'restockers': 33184, 'imask': 33185, 'knowles': 33186, 'beawareshowyoucare': 33187, 'basyc': 33188, '6feet': 33189, 'communitylove': 33190, 'peacesign': 33191, 'kinderreminder': 33192, 'redstates': 33193, 'bluestates': 33194, 'incrementally': 33195, 'cray': 33196, 'elonmusk': 33197, 'storen': 33198, 'mailer': 33199, 'trumpmadness': 33200, 'unviable': 33201, 'lrt': 33202, 'exceptionally': 33203, '886': 33204, '011': 33205, '802': 33206, '066': 33207, 'eynon': 33208, 'nir': 33209, 'releaseing': 33210, 'busniesses': 33211, 'englishman': 33212, 'belgie': 33213, 'cher': 33214, 'leslieville': 33215, 'torontoblog': 33216, 'torontolife': 33217, 'overbearing': 33218, 'systemchange': 33219, 'sternberg': 33220, 'somaliland': 33221, 'kaahin': 33222, 'tormund': 33223, 'giantsbane': 33224, 'omo': 33225, 'limo': 33226, 'copingwithcovid': 33227, 'retailbestpractices': 33228, 'tonaton': 33229, 'gobby': 33230, 'robertjenrick': 33231, 'andrewneil': 33232, 'patrolled': 33233, 'penhill': 33234, 'marlborough': 33235, 'lamorbey': 33236, 'danson': 33237, 'suzy': 33238, 'asksuzy': 33239, 'legitimacy': 33240, 'laxman': 33241, 'klaxman': 33242, 'bfr': 33243, 'thiss': 33244, 'anaerobicdigestion': 33245, 'quantam': 33246, 'ani': 33247, 'prnewswire': 33248, 'naspers': 33249, 'nanjing': 33250, '228': 33251, 'walz': 33252, 'msme': 33253, 'stab': 33254, 'hypodermic': 33255, 'sederplate': 33256, 'jigsaw': 33257, 'clayton': 33258, 'f10': 33259, 'invoice': 33260, 'emperor': 33261, 'ahlam': 33262, 'madhoun': 33263, 'obstruct': 33264, 'fishy': 33265, 'trusttheplan': 33266, 'beckley': 33267, 'chaloo': 33268, 'ahe': 33269, 'mpp': 33270, 'kineticsquirrel': 33271, 'juss': 33272, 'sayinn': 33273, 'outofwork': 33274, 'takeabasketnotatrolley': 33275, 'provokes': 33276, 'destabilize': 33277, 'acl': 33278, 'offing': 33279, 'raked': 33280, 'parted': 33281, 'sang': 33282, 'bayarealockdown': 33283, 'fearless': 33284, 'nmgc': 33285, 'shoprespectfully': 33286, 'stoop': 33287, 'rivalry': 33288, 'screamed': 33289, 'laurent': 33290, 'lanthier': 33291, 'controller': 33292, 'dudley': 33293, 'contango': 33294, 'forwardation': 33295, 'haphazard': 33296, 'karlstefanovic': 33297, 'whim': 33298, 'aplaudoanuestrosheroes': 33299, 'usaquen': 33300, 'motiva': 33301, 'quedarse': 33302, 'bogotaencasa': 33303, 'bogotasequedaencasa': 33304, '161': 33305, 'siapai': 33306, 'disagrees': 33307, 'needtogetoutmore': 33308, 'isolationblues': 33309, 'porsche': 33310, 'panamera': 33311, 'decorated': 33312, 'porschepanamera': 33313, 'holographic': 33314, '85yr': 33315, '602': 33316, '264': 33317, '4357': 33318, 'evidently': 33319, '25million': 33320, 'hopcoms': 33321, 'mangalore': 33322, 'marnamikatte': 33323, 'comoaring': 33324, 'philosophical': 33325, 'insert': 33326, 'thelittlethings': 33327, 'virul': 33328, 'brady': 33329, 'unpayable': 33330, 'debtby': 33331, 'hudsoneven': 33332, 'cornavirusupdate': 33333, 'upturn': 33334, 'foundational': 33335, 'tambo': 33336, 'baloga': 33337, 'pfma': 33338, 'winmoreknows': 33339, 'growyourbusiness': 33340, 'hungerchallenger': 33341, 'superb': 33342, '2fi': 33343, 'quarantinechallenge': 33344, 'chung': 33345, 'cheung': 33346, 'jeane': 33347, 'perrin': 33348, 'opined': 33349, 'arty': 33350, 'oar': 33351, 'christianliving': 33352, 'fomc': 33353, 'glued': 33354, 'multipack': 33355, 'stoney': 33356, 'migrating': 33357, 'stayunitedforcorona': 33358, 'customersupport': 33359, 'ottpoli': 33360, 'nosocialdistance': 33361, 'kidsattheplayground': 33362, 'menhangingout': 33363, 'itsapartyoutthere': 33364, 'disputing': 33365, 'baron': 33366, 'fascist': 33367, 'encash': 33368, 'chugging': 33369, 'ssga': 33370, '823': 33371, 'joevs': 33372, 'cpt': 33373, 'marius': 33374, 'paun': 33375, 'cptmarkets': 33376, 'testament': 33377, 'woodwork': 33378, 'shove': 33379, 'qvm': 33380, 'staysixfeetback': 33381, 'adjuster': 33382, 'moccasin': 33383, 'gould': 33384, 'sting': 33385, 'squad20': 33386, 'kidcrafts': 33387, 'edmonds': 33388, 'awarness': 33389, 'purblic': 33390, 'jaganath': 33391, 'ancestry': 33392, '5c': 33393, 'audjpy': 33394, 'fuzzpugz': 33395, 'rapture': 33396, 'depositor': 33397, 'lirafication': 33398, '300mm': 33399, 'smallest': 33400, '118': 33401, 'prioritises': 33402, 'portability': 33403, 'dissing': 33404, 'waken': 33405, 'bacp': 33406, 'soliciting': 33407, 'suzukitamilnadu': 33408, 'suzukimotorcycle': 33409, 'smt': 33410, 'nirmala': 33411, 'sitaraman': 33412, 'seditious': 33413, 'discriminatory': 33414, 'enclosed': 33415, 'continual': 33416, 'politicising': 33417, 'imodium': 33418, 'holdingit': 33419, 'innovates': 33420, 'fiddle': 33421, 'globalwebindex': 33422, 'islandwide': 33423, 'leveragedloans': 33424, 'slaved': 33425, 'whopping': 33426, 'sas': 33427, 'shopee5878a': 33428, 'guarrantee': 33429, 'mutated': 33430, 'denim': 33431, 'thankyouthursday': 33432, 'pathmaticsexplorer': 33433, '10hr': 33434, 'wre': 33435, '212th': 33436, 'maitland': 33437, 'clay': 33438, 'bobbleheadcam': 33439, 'distinguished': 33440, 'rura': 33441, '8oz': 33442, 'awardsformillennials': 33443, 'groc': 33444, 'nung': 33445, 'nagpunta': 33446, 'mmc': 33447, 'cguro': 33448, 'maiintindihan': 33449, '20yrs': 33450, 'accustomed': 33451, 'happyeaster2020': 33452, 'weareunstoppable': 33453, 'airbnbs': 33454, 'homeaways': 33455, '725': 33456, '8869': 33457, 'northlasvegas': 33458, 'bosa': 33459, 'pranking': 33460, 'hahahaha': 33461, '793': 33462, 'couldnt': 33463, 'wherein': 33464, 'splashfm1055': 33465, 'behindtheback': 33466, 'sniping': 33467, 'lyingdown': 33468, 'glorykills': 33469, 'elroy': 33470, 'joblessness': 33471, 'bce': 33472, 'cosco': 33473, 'accordion': 33474, 'brine': 33475, 'lvr': 33476, 'stayconnectedtogether': 33477, 'kxnt': 33478, 'violent': 33479, 'sucker': 33480, 'cloromax': 33481, 'karmaisreal': 33482, 'jermyn': 33483, 'thes': 33484, 'origami': 33485, 'toiletpaperhumour': 33486, 'hampshire': 33487, 'heeding': 33488, 'gaunt': 33489, 'suzette': 33490, 'dealz': 33491, 'evidencing': 33492, 'amnesia': 33493, 'astonished': 33494, 'blatantly': 33495, 'dictating': 33496, 'jalapeno': 33497, 'inadvertent': 33498, 'fccpc': 33499, 'ndc': 33500, 'execpay': 33501, 'cannibal': 33502, 'cantkeepmyhandsofthecookiejar': 33503, 'census2020': 33504, 'deforestation': 33505, 'drawbridge': 33506, 'everydayheroes': 33507, 'healthtipoftheday': 33508, 'lowkey': 33509, 'ongc': 33510, '00cr': 33511, 'tabligijamaat': 33512, 'lockdownlessons': 33513, 'islamiccoronajehad': 33514, 'wade': 33515, '4r': 33516, '4rcommunity': 33517, 'yourworkingpartner': 33518, 'qur': 33519, 'sodastream': 33520, '60l': 33521, '30l': 33522, 'kidsactivities': 33523, 'qatarunited': 33524, 'heartlessly': 33525, 'truncation': 33526, 'oems': 33527, 'infects': 33528, 'homies': 33529, 'oregano': 33530, 'thyme': 33531, 'diyskincare': 33532, 'diyrecipes': 33533, 'aromatherapy': 33534, 'dyimasks': 33535, 'koro': 33536, 'venezueala': 33537, 'fn': 33538, 'wpa': 33539, 'comoetitive': 33540, 'eskridgelaw': 33541, '5jobs': 33542, 'buzzing': 33543, 'jubilant': 33544, 'extralarge': 33545, 'quickmaths': 33546, 'grandson': 33547, 'thiscantbelife': 33548, 'compositionbookchronicles': 33549, 'cqcomics': 33550, 'quaker': 33551, 'motherfuck': 33552, '6mo': 33553, 'lyiv': 33554, 'sanding': 33555, 'powersanding': 33556, 'fixingupthehouse': 33557, 'bestnorthamptonrealtors': 33558, 'degan': 33559, 'hygien': 33560, 'blubbery': 33561, 'globule': 33562, 'inequitable': 33563, 'panipuris': 33564, 'pav': 33565, '2099': 33566, 'weirdworld': 33567, 'cheappetrolmelbourne': 33568, 'doingmypartco': 33569, 'whiter': 33570, 'blacklivesmatter': 33571, 'weezy': 33572, 'barz': 33573, 'realshit': 33574, 'oystermen': 33575, 'tarrytown': 33576, 'amason': 33577, 'dome': 33578, 'monument': 33579, 'restauranteurs': 33580, 'covfefe19': 33581, 'o3': 33582, 'rs35': 33583, 'fenton': 33584, 'theatrical': 33585, 'retires': 33586, 'pursues': 33587, 'pjm': 33588, 'mopr': 33589, 'stavtion': 33590, 'zava': 33591, 'hemingway': 33592, 'instabeer': 33593, 'craftbeer': 33594, 'marx4congress': 33595, 'eoi': 33596, 'luckier': 33597, 'hud': 33598, 'apts': 33599, 'superglue': 33600, 'lacquer': 33601, 'bodaga': 33602, 'porportions': 33603, 'rejecting': 33604, '2349027271699': 33605, 'n5': 33606, 'n6': 33607, 'n7': 33608, 'n8': 33609, 'busting': 33610, 'playstation2': 33611, 'bludgeon': 33612, 'hitherto': 33613, 'twitterblack': 33614, 'elmo': 33615, 'faruki': 33616, 'pll': 33617, 'weareworldvision': 33618, 'wtfisthis': 33619, 'martinlewis': 33620, 'kaw': 33621, 'trumpandemic': 33622, 'trumppresser': 33623, 'nflx': 33624, 'pane': 33625, 'clamber': 33626, 'bellend': 33627, 'inventy': 33628, 'nantes': 33629, 'monoprix': 33630, 'johm': 33631, 'ealing': 33632, 'uxbridge': 33633, 'allcannedout': 33634, 'aluminumcan': 33635, 'donotforgetthecanopener': 33636, 'rea': 33637, 'smartline': 33638, 'weighted': 33639, 'gowanus': 33640, 'baruch': 33641, 'feldheim': 33642, 'yippee': 33643, 'hyping': 33644, 'dontripusoff': 33645, 'befair': 33646, 'snowmaggedon': 33647, 'worldsquare': 33648, 'coonavirusoutbreak': 33649, 'dearest': 33650, 'rican71': 33651, 'guttenberg': 33652, 'backlash': 33653, '3321b': 33654, 'thirdpartyrisk': 33655, 'supplychainattacks': 33656, 'formjacking': 33657, 'reflectiz': 33658, 'clientsidesecurity': 33659, 'appsecurity': 33660, 'supermarketsushi': 33661, 'ootd': 33662, 'darksideofthering': 33663, 'nyccoronavirus': 33664, 'stopprofiteering': 33665, 'unityinourcommunity': 33666, 'rsvp': 33667, 'interesed': 33668, 'yarn': 33669, 'britishwool': 33670, 'krisjenner': 33671, 'fondling': 33672, 'donttouch': 33673, 'csg': 33674, 'locus': 33675, 'hare': 33676, 'spreadlove': 33677, 'hydration': 33678, 'sociallistening': 33679, '14m': 33680, 'walport': 33681, 'guided': 33682, 'dollarindex': 33683, 'panicshopp': 33684, 'freshco': 33685, 'huron': 33686, 'alsofull': 33687, 'hearsay': 33688, 'mailpersons': 33689, 'norwalk': 33690, 'crchat': 33691, 'jennings': 33692, 'phy': 33693, 'defended': 33694, 'shrimadhopur': 33695, 'suranibazar': 33696, 'nil': 33697, 'pratley': 33698, 'pandemichave': 33699, 'badaun': 33700, 'okhla': 33701, 'initiating': 33702, 'exacted': 33703, 'irradadicate': 33704, 'mateo': 33705, 'apok842': 33706, 'plantain': 33707, 'coronacomedy': 33708, 'cookingwithplantains': 33709, 'tslaq': 33710, 'howtohelp': 33711, 'riskier': 33712, 'sohr': 33713, 'imadethis': 33714, 'autodistancing': 33715, 'stockmarketnews': 33716, 'davelewis': 33717, 'widened': 33718, 'goa': 33719, 'fedprimerate': 33720, 'softdata': 33721, 'economicdata': 33722, 'evacuated': 33723, 'dismissing': 33724, 'substandard': 33725, 'faceguard': 33726, 'landmark': 33727, 'showering': 33728, 'firstfightscovid': 33729, 'berkeley': 33730, 'leibniz': 33731, 'salesforce': 33732, 'stefanie': 33733, '1740': 33734, 'crossroad': 33735, 'philipp': 33736, 'kerosine': 33737, 'tallahasseerealtor': 33738, 'goodthingihaveadog': 33739, 'oreobrat': 33740, 'rancho': 33741, 'mirage': 33742, 'felde': 33743, 'capri': 33744, 'cuarentena19m': 33745, 'mw5v16htob': 33746, 'doomers': 33747, 'corrects': 33748, 'uncooked': 33749, 'skeptical': 33750, 'kitten7': 33751, 'bizconnect': 33752, 'burgess': 33753, 'ghatkopar': 33754, 'helimacroft': 33755, 'johnkilduff': 33756, '01952': 33757, '952115': 33758, 'cleaningservices': 33759, 'yourhome': 33760, 'odin': 33761, 'intercept': 33762, 'riskies': 33763, 'herwin': 33764, 'zuma': 33765, 'makassar': 33766, 'sulawesi': 33767, 'manning': 33768, 'pummeling': 33769, 'visionaid': 33770, 'dope': 33771, 'thar': 33772, 'newjob': 33773, 'pmik': 33774, 'foodiesofinstagram': 33775, 'mazarr': 33776, 'murcia': 33777, 'medco': 33778, 'goodnewsstory': 33779, 'georgetown': 33780, 'doable': 33781, 'conditioner': 33782, 'pell': 33783, 'pellawaits': 33784, 'esteban': 33785, 'publicservice': 33786, 'cameo': 33787, 'abraham': 33788, 'yonge': 33789, 'finch': 33790, 'dst': 33791, 'manufacturingnews': 33792, 'flattenthecurvewithnewphonesfromsprint': 33793, 'newhours': 33794, 'retailhours': 33795, 'shortenedhours': 33796, 'gingivitis': 33797, 'cobank': 33798, 'zation': 33799, 'borrows': 33800, 'cabrilloinn': 33801, 'whipping': 33802, 'cfp': 33803, 'syllabus': 33804, 'sittin': 33805, 'tryin': 33806, 'oximetera': 33807, 'axis': 33808, 'clivot': 33809, 'gersheim': 33810, 'parisien': 33811, 'samsclub': 33812, 'specialschool': 33813, 'fizzy': 33814, 'funneled': 33815, 'availablity': 33816, 'flammable': 33817, 'retailgazette': 33818, 'elema': 33819, 'synopsis': 33820, 'treadmill': 33821, 'neeva': 33822, 'afya': 33823, 'rekod': 33824, 'waterworks': 33825, 'bostonstrong': 33826, 'zipper': 33827, 'appintments': 33828, 'selflessness': 33829, 'danforth': 33830, '017569': 33831, 'perpetually': 33832, 'seafarer': 33833, 'onard': 33834, 'southwarwickshire': 33835, 'epipens': 33836, 'mri': 33837, 'marietta': 33838, 'cherokee': 33839, 'nagging': 33840, 'erectile': 33841, 'dysfunction': 33842, 'darkest': 33843, 'nda': 33844, 'coastalfarm': 33845, 'cfrlife': 33846, '705': 33847, '2621': 33848, 'backupdocs': 33849, 'buydocuments': 33850, 'buypassport': 33851, 'buyschooldiplomas': 33852, 'buyvaliddocuments': 33853, 'buybristispassport': 33854, 'buyfloridalicense': 33855, 'fakemoney': 33856, 'epoch': 33857, 'serv': 33858, 'formulary': 33859, 'yeay': 33860, 'housingmarke': 33861, 'laborparty': 33862, 'perseverance': 33863, 'assad': 33864, 'raab': 33865, '0345': 33866, 'us5': 33867, 'trop': 33868, 'raysup': 33869, 'progressing': 33870, 'psychopath': 33871, 'meatlover': 33872, 'foodblogger': 33873, 'freshmeat': 33874, 'thereisonlyone': 33875, 'tariqhalal': 33876, 'azz': 33877, 'apocolypse2020': 33878, 'plesse': 33879, 'hawker': 33880, 'dominoeffect': 33881, 'foil': 33882, 'givecovid19thefinger': 33883, 'abili': 33884, 'crosscontamination': 33885, 'remediate': 33886, 'availabe': 33887, 'helpmedicos': 33888, 'onemancanmakeadifference': 33889, 'wuhanflu': 33890, 'exchanged': 33891, 'cdl': 33892, 'fmcsa': 33893, '1938': 33894, 'truckdrivers': 33895, 'pandemicresponseteam': 33896, 'truckersofamerica': 33897, 'tob': 33898, 'toboffers': 33899, 'theoffersbaba': 33900, 'offeraisafreejaisa': 33901, 'affinity': 33902, 'physiologist': 33903, 'gaetano': 33904, 'ferrante': 33905, 'shortest': 33906, 'endliveexports': 33907, 'blakewearblake': 33908, 'overfishing': 33909, 'prayut': 33910, 'jakegyllenhaal': 33911, 'bubbleboy': 33912, 'projecting': 33913, 'swinford': 33914, 'childminder': 33915, '263': 33916, '585': 33917, 'jeanyuses': 33918, 'dios': 33919, 'mio': 33920, 'melaleuca': 33921, 'snagged': 33922, 'xenakis': 33923, 'loizou': 33924, 'grandview': 33925, 'communityheros': 33926, 'trading212': 33927, 'balm': 33928, 'pavillions': 33929, 'sneezeinyourarm': 33930, 'compartmentalised': 33931, 'agility': 33932, 'foodretail': 33933, 'systematic': 33934, 'sku': 33935, 'rationalisation': 33936, 'daves': 33937, 'davesbread': 33938, 'canoga': 33939, 'stayputstaysafe': 33940, 'orgasmic': 33941, 'lifechanging': 33942, 'sarcasticarepa': 33943, 'theundercoverlatino': 33944, 'bacardi': 33945, 'rum': 33946, 'cata': 33947, 'abiv': 33948, 'displaying': 33949, 'churchillian': 33950, 'disconnectedfromreality': 33951, 'theskyispink': 33952, 'surroundings': 33953, 'countervailing': 33954, '25b': 33955, '10b': 33956, 'melody': 33957, 'thornton': 33958, 'imposition': 33959, 'hav': 33960, 'wat': 33961, 'savanna': 33962, 'kno': 33963, 'revo': 33964, 'itishappening': 33965, 'stateag': 33966, 'incharge': 33967, 'doggo': 33968, 'affraid': 33969, 'yokel': 33970, 'deducted': 33971, 'commish': 33972, 'coloured': 33973, 'stockbuybacks': 33974, 'toomuchalonetime': 33975, 'enlarged': 33976, 'ruralamerica': 33977, 'eatingin': 33978, 'redshift': 33979, 'uctm': 33980, 'horrendously': 33981, 'redfin': 33982, 'kelman': 33983, 'ismp': 33984, '1b': 33985, 'byrum': 33986, 'sustainablefashion': 33987, 'commerialrealestate': 33988, 'retailrealestate': 33989, 'sevierville': 33990, 'techrepublic': 33991, 'banwarilal': 33992, 'bhardwaj': 33993, 'sown': 33994, 'agchat': 33995, 'dookie': 33996, 'magical': 33997, '6ho2yorl3v': 33998, 'budgetary': 33999, 'undead': 34000, 'epedimiologists': 34001, 'coronaculos': 34002, 'storytime': 34003, 'eventhough': 34004, 'peopleresearch': 34005, 'topramen': 34006, 'peopleresearchcoronavirus': 34007, 'whe': 34008, 'refigerator': 34009, 'careact': 34010, 'glanz': 34011, 'baelwellness': 34012, 'farmproducer': 34013, 'arline': 34014, 'ahorro': 34015, 'amounted': 34016, 'ddgs': 34017, 'widespr': 34018, 'homeworking': 34019, 'abhijit': 34020, 'torched': 34021, 'southmead': 34022, 'referendum': 34023, 'bowel': 34024, 'smartpolicy': 34025, 'iamoilandgas': 34026, 'medi': 34027, 'graffiti': 34028, 'fame': 34029, 'dontknowwhy': 34030, 'timetoshine': 34031, 'inadvance': 34032, 'kirsten': 34033, 'spokeswoman': 34034, 'derided': 34035, 'rqcomm201csuf': 34036, 'eyren': 34037, 'industrie': 34038, 'supercharger': 34039, 'aye': 34040, 'lmfaoo': 34041, '7mil': 34042, 'factoring': 34043, 'stumble': 34044, '355': 34045, 'demonetisation': 34046, 'wahsing': 34047, 'lakshman': 34048, 'rekha': 34049, 'dimout': 34050, 'skyline': 34051, 'endurance': 34052, 'grocerynews': 34053, 'odered': 34054, 'quintupled': 34055, 'booredd': 34056, 'ashleymoody': 34057, 'llcs': 34058, 'dontmakemeangry': 34059, 'youwontlikemewhenimangry': 34060, 'shehulk': 34061, 'daretoinnovate': 34062, 'futureretail': 34063, 'outform': 34064, 'pirmasens': 34065, 'kadi': 34066, 'claustrofobic': 34067, 'seizure': 34068, 'forfeit': 34069, 'qmatic': 34070, 'cfm': 34071, 'wtf2020': 34072, 'tijuana': 34073, 'enviroment': 34074, 'patreons': 34075, 'thickness': 34076, 'complementary': 34077, 'chapter13': 34078, 'cronovirus': 34079, '3rds': 34080, 'ruaka': 34081, 'wontshop': 34082, 'clearbell': 34083, 'ating': 34084, 'kababayang': 34085, 'nangangailangan': 34086, 'mukbangs': 34087, 'lana': 34088, 'whet': 34089, 'repor': 34090, 'robinhood': 34091, 'worldfightscorona': 34092, 'sedation': 34093, 'midazolam': 34094, 'propofol': 34095, 'injectable': 34096, 'emulsion': 34097, 'nursetwitter': 34098, 'foamed': 34099, 'manda': 34100, 'pinnacle': 34101, 'socialdistaning': 34102, 'lepton': 34103, '8bn': 34104, 'whatswrongwitheveryone': 34105, 'homeloans': 34106, 'quarentena': 34107, 'mukeshambani': 34108, 'shortselling': 34109, 'nolongeratravellingpa': 34110, 'timesnews': 34111, '79yo': 34112, 'bhat': 34113, 'bhateni': 34114, 'thimi': 34115, 'dashain': 34116, 'sj': 34117, 'sunset': 34118, 'danecounty': 34119, 'travelwisconsin': 34120, 'discoverwisconsin': 34121, 'bypassing': 34122, 'farm2fork': 34123, 'blurring': 34124, 'choppy': 34125, 'shabbat': 34126, 'shalom': 34127, 'zvikwereti': 34128, 'muviri': 34129, 'wese': 34130, 'hazvina': 34131, 'kumira': 34132, 'mushe': 34133, 'imiwee': 34134, 'bealert': 34135, 'petromaxevents': 34136, 'indy': 34137, 'sh15': 34138, 'tds': 34139, 'beast786': 34140, 'vadoliya': 34141, '08081': 34142, '64600': 34143, 'glaswegian': 34144, 'spout': 34145, 'atheistic': 34146, 'cvd1': 34147, 'surfeit': 34148, 'debone': 34149, 'strng': 34150, 'bck': 34151, 'quickl': 34152, 'caplan': 34153, 'mentalwellbeing': 34154, 'fortuitously': 34155, 'seneca': 34156, 'bimco': 34157, 'ingest': 34158, 'nyconstruction': 34159, 'prevailingwage': 34160, 'nyassembly': 34161, 'nysenate': 34162, 'monterey': 34163, 'peninsula': 34164, 'amazondeals': 34165, 'helensdeals': 34166, 'petroldieselprice': 34167, 'believable': 34168, 'springfield': 34169, 'warna': 34170, 'thedividebetweenrichandpoor': 34171, 'taber': 34172, 'masquerade': 34173, 'tower115': 34174, 'gearupatgearup': 34175, 'titusville': 34176, 'mims': 34177, 'rockledge': 34178, 'cocoabeach': 34179, 'merrittisland': 34180, 'palmbay': 34181, 'brevardcounty': 34182, 'uniformly': 34183, '1943': 34184, 'diverted': 34185, 'fakejournalismofmedia': 34186, 'myhandscleantho': 34187, 'eatorbeeaten': 34188, 'sexiest': 34189, 'gorsky': 34190, 'lob': 34191, 'kickups': 34192, 'lockdwn': 34193, 'lagoslockdown': 34194, 'vanguardnews': 34195, 'bromley': 34196, 'terrio': 34197, 'hoyes': 34198, 'michalos': 34199, 'universalbasicincome': 34200, 'afry': 34201, 'ruinous': 34202, 'cooleyproductwise': 34203, 'sanatizers': 34204, 'hydrocarbon': 34205, 'traderjoe': 34206, 'sympathy': 34207, 'deception': 34208, '100freegift': 34209, 'ginseng': 34210, '9x': 34211, '8g': 34212, 'insanhealing': 34213, 'unkind': 34214, 'judgy': 34215, 'sadistic': 34216, 'supercilious': 34217, 'ffsbekind': 34218, 'recalibrate': 34219, 'hanta': 34220, 'extorted': 34221, 'vcat': 34222, 'sagicorbank': 34223, 'inyourcorner': 34224, 'dox': 34225, 'myteam': 34226, 'freshii': 34227, 'lockdow': 34228, 'benicetous': 34229, 'wearestillworking': 34230, 'retailtherapy': 34231, 'hrly': 34232, 'kudlow': 34233, 'snort': 34234, 'istan': 34235, 'bananarepublic': 34236, 'hedgefund': 34237, 'mutualfunds': 34238, 'itching': 34239, 'corringham': 34240, 'peopleareidiots': 34241, 'beerruntoo': 34242, 'plainclothingstore': 34243, 'brumbabybank': 34244, 'opheusden': 34245, 'gj': 34246, 'hundal': 34247, 'pharmacology': 34248, 'magalogues': 34249, 'promos': 34250, 'goibibo': 34251, 'equitymarkets': 34252, 'merkels': 34253, 'stabilizing': 34254, 'societymarylandcoronavirusfeelgood': 34255, 'tet': 34256, 'markson': 34257, 'missionimpossible': 34258, 'amazonsellers': 34259, 'masksfordocs': 34260, 'masksformedics': 34261, 'doctoral': 34262, 'grubbing': 34263, 'profitmaking': 34264, 'satanic': 34265, 'chafe': 34266, 'troupe': 34267, 'thrashed': 34268, 'selfishmorons': 34269, 'openhouses': 34270, 'ibuyers': 34271, 'lorch': 34272, 'moroninchief': 34273, 'racistinchief': 34274, 'trashman': 34275, 'riverina': 34276, 'unfortuna': 34277, 'local5': 34278, 'incr': 34279, 'timeoff': 34280, 's1': 34281, 'foryou': 34282, 'foryoupage': 34283, 'gameofthrones': 34284, 'masksnow': 34285, 'foodmanufacture': 34286, 'ultabeauty': 34287, 'eejits': 34288, 'cdns': 34289, 'carlaw': 34290, 'imsohappy': 34291, 'theoretical': 34292, 'arkansas': 34293, 'ico': 34294, 'discharge': 34295, 'accumulated': 34296, 'unfunded': 34297, 'asse': 34298, 'homecommerce': 34299, 'lyondellbasell': 34300, 'fawning': 34301, 'itspending': 34302, 'techindustry': 34303, 'predicament': 34304, 'isour': 34305, 'ukschoolclosures': 34306, 'appleinsider': 34307, 'adjourns': 34308, 'telanganastateconsumer': 34309, 'khairthabad': 34310, 'volodymyr': 34311, 'restructure': 34312, 'cuna': 34313, 'hysteriavirus': 34314, 'psms': 34315, 'pacita': 34316, 'patroller': 34317, 'brgy': 34318, 'canyoupopoutandpickupafe': 34319, 'margarita': 34320, 'prerequisite': 34321, 'soften': 34322, 'silky': 34323, '151': 34324, 'nashp': 34325, 'judgmental': 34326, 'prefect': 34327, 'earwigscience': 34328, 'bane': 34329, 'quarantineproblems': 34330, 'jerkmerch': 34331, 'thegospelofschultz': 34332, 'tapping': 34333, 'dyson': 34334, 'retailcannabis': 34335, 'fraggang': 34336, 'repository': 34337, 'sanusi': 34338, '2348098043712': 34339, 'teary': 34340, 'clothier': 34341, 'huntvalley': 34342, 'fails2understand': 34343, 'vagary': 34344, 'fuckitall': 34345, 'imdone': 34346, 'vil': 34347, 'captive': 34348, 'rumble': 34349, 'avonlady': 34350, 'avonrep': 34351, 'nextgenavon': 34352, 'skinsosoft': 34353, 'iphones': 34354, 'ver2': 34355, 'asbestos': 34356, 'trivialising': 34357, 'grassley': 34358, 'kissel': 34359, 'climbing': 34360, 'interestrates': 34361, 'fertile': 34362, 'mnc': 34363, 'cling': 34364, 'connolly': 34365, 'perfected': 34366, 'mealtrak': 34367, 'foodtogotrends': 34368, 'disneyland': 34369, 'reopens': 34370, 'attraction': 34371, 'disneyworld': 34372, 'nextdoor': 34373, 'submerged': 34374, 'vibhishans': 34375, 'befriend': 34376, 'jorge': 34377, 'hovering': 34378, 'lotlinx': 34379, 'oem': 34380, 'chewy': 34381, 'whereyoureatthecheckoutandyouhearthebeep': 34382, 'dalewinton': 34383, 'fijisports': 34384, 'fbcsports': 34385, 'stasiek': 34386, 'czaplicki': 34387, 'cabezas': 34388, 'fakepresident': 34389, 'latinosfortrump': 34390, 'carmen': 34391, 'aldecoa': 34392, 'crisedupapiertoilette': 34393, 'mich': 34394, 'authentically': 34395, 'gasp': 34396, 'coloradoshutdown': 34397, 'financialmanagement': 34398, 'personalfinances': 34399, 'moneymanagement': 34400, 'impactful': 34401, 'ukemplaw': 34402, 'techlaw': 34403, 'raccon': 34404, 'residentevil3demo': 34405, 'proposition': 34406, 'intranet': 34407, 'flue': 34408, 'ndgs': 34409, 'greatamericantakeout': 34410, 'vloggers': 34411, 'locksley': 34412, 'accrues': 34413, '1person1trolley': 34414, 'conjecture': 34415, 'barbing': 34416, 'vaginawarriorcreations': 34417, 'somethingbeautifuleveryday': 34418, '6feetapart': 34419, 'pickuplines': 34420, 'badboys': 34421, 'suave': 34422, 'kameel': 34423, 'pancham': 34424, 'seacroft': 34425, 'broadcastmedia': 34426, 'mediaagency': 34427, 'mediaplanning': 34428, 'mediastrategy': 34429, 'digitaladvertising': 34430, 'rupert': 34431, 'diatancing': 34432, 'isa': 34433, 'bula': 34434, 'kerekere': 34435, 'kere': 34436, 'bou': 34437, 'magaijine': 34438, 'saraga': 34439, 'vinaka': 34440, '2504': 34441, '7507': 34442, '1618': 34443, 'zweli': 34444, 'mkhize': 34445, 'r1400': 34446, 'flavortown': 34447, 'violator': 34448, '0828628237': 34449, '19sa': 34450, 'flirtv': 34451, 'odka': 34452, 'sumedh': 34453, 'bivas': 34454, 'prego': 34455, 'counterintuitive': 34456, 'stater': 34457, 'bruhh': 34458, 'rhp': 34459, 'commemorative': 34460, 'saskatoon': 34461, 'dungeon': 34462, 'desinfect': 34463, 'lifematters': 34464, '688': 34465, 'bergen': 34466, 'tedesco': 34467, '336': 34468, '6400': 34469, 'ajittyagi': 34470, 'bajao': 34471, 'indo': 34472, 'aga': 34473, 'devouring': 34474, 'zumwalt': 34475, 'whataboutery': 34476, 'thumping': 34477, 'olymel': 34478, '720': 34479, '5721': 34480, 'stayhomestaystrong': 34481, 'excelled': 34482, 'immovingprovider': 34483, 'nex': 34484, 'headquartered': 34485, 'proportionally': 34486, 'lou': 34487, 'dobbs': 34488, 'bewarned': 34489, 'dwbl': 34490, 'helpingyou': 34491, 'storming': 34492, 'lifewithocd': 34493, 'anyportinastorm': 34494, 'frankenstein': 34495, 'tossing': 34496, 'supporthealthcareworkers': 34497, 'ourstreets': 34498, 'allinittogether': 34499, 'bussinesses': 34500, 'animated': 34501, 'lyric': 34502, 'xxlfreshman2020': 34503, 'hiphopmusic': 34504, 'forthelow': 34505, '2035': 34506, 'rightmove': 34507, 'crappie': 34508, 'crappiefishing': 34509, 'springdale': 34510, 'panhandler': 34511, 'grouped': 34512, 'adli': 34513, 'mrps': 34514, 'angola': 34515, 'snuffed': 34516, 'lipbalm': 34517, 'biter': 34518, 'whirlwind': 34519, 'currentstatus': 34520, 'fayz': 34521, 'houmous': 34522, 'guacamole': 34523, 'gamechanger': 34524, 'iit': 34525, 'telecommuters': 34526, 'propertyinvestment': 34527, 'mortgagebroker': 34528, 'fristhomebuyer': 34529, 'motorway': 34530, 'degraded': 34531, 'biota': 34532, '600k': 34533, '955': 34534, '0764': 34535, 'shutdownsouthafrica': 34536, 'realtalc': 34537, 'givemestrength': 34538, 'heroically': 34539, 'camo': 34540, 'lund': 34541, 'sculpture': 34542, 'strasbourg': 34543, 'savagery': 34544, 'stalking': 34545, 'totalitarian': 34546, 'barbarism': 34547, 'coronaheroes': 34548, '3mmi': 34549, 'yyz': 34550, 'zabelindimitri': 34551, 'ahy': 34552, 'helplines': 34553, 'swimwear': 34554, 'barbecue': 34555, 'rib': 34556, 'wetones': 34557, 'diyhazmat': 34558, 'celiacs': 34559, 'monmouth': 34560, 'pcmrfixesit': 34561, 'epsilon': 34562, 'conversant': 34563, 'cj': 34564, 'plante': 34565, 'onlineselling': 34566, 'semanasanta2020': 34567, 'ayers': 34568, 'tweethearts': 34569, 'mobbed': 34570, 'shuttheschoolsnow': 34571, 'andersondylan': 34572, 'kmt': 34573, 'butternut': 34574, 'squash': 34575, 'lara': 34576, 'woolfson': 34577, 'enabler': 34578, 'stks': 34579, 'tgonu': 34580, 'custome': 34581, '76yo': 34582, '12wk': 34583, '3weeks': 34584, 'warroompandemic': 34585, 'cleanshelf': 34586, '960': 34587, 'weirdtimes': 34588, 'flared': 34589, 'nhpr': 34590, 'grosserie': 34591, '5080': 34592, 'shpk': 34593, 'starvingtime': 34594, 'nojob': 34595, 'ingodwetrust': 34596, 'packnsave': 34597, 'susanne': 34598, 'refurbishing': 34599, 'boohoo': 34600, 'usher': 34601, 'katt81': 34602, 'allaz': 34603, 'aztogether': 34604, 'wefeedaz': 34605, 'revelop': 34606, 'newton': 34607, 'retailproperty': 34608, 'anchored': 34609, 'commercialproperty': 34610, 'sensationalise': 34611, 'backgroun': 34612, 'uxs': 34613, 'interface': 34614, 'hmi': 34615, 'bastamron': 34616, 'argusemissions': 34617, 'transpacific': 34618, 'ocean': 34619, 'sailing': 34620, 'feasable': 34621, 'alzheimers': 34622, 'recreates': 34623, 'nowthis': 34624, 'shophampton': 34625, 'kitchenappliances': 34626, 'gardencity': 34627, 'homegoods': 34628, 'homedesign': 34629, 'loggd': 34630, 'tryd': 34631, 'amritsari': 34632, 'cholle': 34633, 'howevr': 34634, 'crossd': 34635, '762': 34636, 'understnd': 34637, 'lyk': 34638, 'yaer': 34639, 'bandula': 34640, 'gunawardana': 34641, 'genelecsl': 34642, 'lbutchers': 34643, 'conveyan': 34644, 'conveyancing': 34645, 'movinghouse': 34646, 'wassup': 34647, 'staysave': 34648, 'vindicated': 34649, 'coban': 34650, 'burma': 34651, 'expeditious': 34652, 'chinaliespeopledie': 34653, 'unstoppable': 34654, 'fielded': 34655, 'coughingchallenge': 34656, 'grocerystorechallenge': 34657, 'nude': 34658, 'inquires': 34659, 'mnuchinmoney': 34660, 'meitzner': 34661, 'sedgwick': 34662, 'pblc': 34663, 'trnsprt': 34664, 'proritise': 34665, 'yellowvest': 34666, 'gelbenwesten': 34667, 'yellowvestsuk': 34668, 'giletsjaunes': 34669, 'chalecosamarillos': 34670, 'giletjaune': 34671, 'yellowvests': 34672, 'gervais': 34673, 'orpol': 34674, 'orleg': 34675, 'completing': 34676, 'saugus': 34677, 'nipping': 34678, 'dehydrating': 34679, 'petrifying': 34680, 'greattpdepression': 34681, 'meyers': 34682, 'althoug': 34683, 'wcpapier': 34684, 'savetheworld': 34685, 'decontaminate': 34686, 'arezki': 34687, 'dryersheets': 34688, 'wrinkle': 34689, 'dyi': 34690, 'notpnoworries': 34691, 'viruschines': 34692, 'ther': 34693, 'wn': 34694, 'rejigs': 34695, 'aligned': 34696, 'downstairs': 34697, 'spitfire': 34698, 'fusion': 34699, 'thacker': 34700, 'stacia': 34701, 'entertaining': 34702, 'corporateresponsibility': 34703, 'proudtobeakeyworker': 34704, 'nothuman': 34705, 'saulius': 34706, 'skvernelis': 34707, 'envisaged': 34708, 'whey': 34709, 'lky7': 34710, 'lky7sports': 34711, 'appliednutrition': 34712, 'wheyprotein': 34713, 'ashford': 34714, 'niagra': 34715, 'leased': 34716, '115k': 34717, 'jupiter': 34718, 'fla': 34719, 'essentia': 34720, 'supremesacrificeday': 34721, 'uvc': 34722, 'lamp': 34723, 'qualification': 34724, 'trumppandemia': 34725, 'cheffed': 34726, 'abolish': 34727, 'profitsoverpeople': 34728, '360wisemedia': 34729, 'cosumerbehaviour': 34730, 'aura': 34731, 'crystallize': 34732, '20am': 34733, 'sniffling': 34734, 'pnpgooddeed': 34735, 'pinerolo': 34736, 'mercato': 34737, 'rowling': 34738, 'blighted': 34739, 'tusupplychain': 34740, 'privatisation': 34741, 'alphabites': 34742, 'businessbecause': 34743, 'advertisin': 34744, 'persia': 34745, 'downed': 34746, 'flight752': 34747, 'babyformula': 34748, 'ridiculouslyinflated': 34749, 'whining': 34750, 'stayathomerule': 34751, 'correctional': 34752, 'shutdownsa': 34753, 'cyrilramaphosa': 34754, 'gravitas': 34755, 'wither': 34756, 'consumerdevices': 34757, 'osu': 34758, 'marrison': 34759, 'rospotrebnadsor': 34760, 'nationality': 34761, 'looter': 34762, 'atrocious': 34763, 'aalto': 34764, 'rsas': 34765, 'oodee': 34766, 'selondon': 34767, 'foodwasted': 34768, 'ginny': 34769, 'everythings': 34770, 'healtheworld2020': 34771, 'delibrately': 34772, 'borsers': 34773, 'afton': 34774, 'planing': 34775, 'museumcollections': 34776, 'unstaged': 34777, 'datcp': 34778, 'statute': 34779, 'datcphotline': 34780, '422': 34781, '7128': 34782, 'ripening': 34783, 'harvested': 34784, 'mandis': 34785, 'apartment415': 34786, 'decoration': 34787, 'cornoanvirus': 34788, 'borememore': 34789, 'standardize': 34790, 'anchorage': 34791, 'tpaas': 34792, 'remodeling': 34793, 'remodel': 34794, 'eva': 34795, 'lookit': 34796, 'weighty': 34797, 'militarylendingact': 34798, 'alcogel': 34799, 'blackrock': 34800, 'bluddy': 34801, 'corvid': 34802, 'pascha': 34803, 'pasoverdinner': 34804, 'lessening': 34805, 'sylhet': 34806, 'resultant': 34807, 'neuropathy': 34808, 'motioning': 34809, 'screenshots': 34810, 'myautosparkle': 34811, 'unremitting': 34812, 'enablement': 34813, 'ashame': 34814, 'blane': 34815, 'tedx': 34816, 'tedxuamonticello': 34817, 'disassociation': 34818, 'badactors': 34819, 'indomie': 34820, 'hypo': 34821, 'hypogowipeo': 34822, 'jamb': 34823, 'yansh': 34824, 'homecomingrewatch': 34825, 'talentcroft': 34826, 'vaxxers': 34827, 'subway': 34828, 'specializes': 34829, 'coreresearch': 34830, 'provding': 34831, 'bylaw': 34832, 'a19': 34833, 'sunderland': 34834, 'escort': 34835, 'gettingresults': 34836, 'quiche': 34837, 'quarantinekitchen': 34838, 'romaine': 34839, 'lettucerejoice': 34840, 'ezekiel': 34841, 'magog': 34842, 'gog': 34843, 'holyspirit': 34844, 'shareasquare': 34845, '12mb': 34846, 'thewisebulls': 34847, 'degloabalized': 34848, 'travolta': 34849, 'cnc': 34850, 'routing': 34851, 'tooling': 34852, 'stagnated': 34853, 'microsite': 34854, 'netbase': 34855, 'trendanalysis': 34856, 'inficted': 34857, 'guilde': 34858, 'safty': 34859, 'irosponcible': 34860, 'merge': 34861, 'diminish': 34862, 'kira': 34863, 'radinsky': 34864, 'keepcalmandreadon': 34865, 'moronbrothersky': 34866, 'shamelessly': 34867, 'sanfancisco': 34868, 'goan': 34869, 'ageing': 34870, 'lda': 34871, 'marla': 34872, 'kanal': 34873, 'waqas': 34874, '9233417716': 34875, 'cpsc': 34876, 'restocks': 34877, 'petaling': 34878, 'syaiful': 34879, 'redzuan': 34880, 'zuniga': 34881, 'stockupontoiletpaper': 34882, 'loadup': 34883, 'readyaimfire': 34884, 'hb': 34885, '596': 34886, 'beerhalls': 34887, 'thesamplelandscape': 34888, 'rangpuri': 34889, 'mahipalpur': 34890, '7006787781': 34891, 'lynkem': 34892, 'doxoinsights': 34893, 'eabl': 34894, 'performer': 34895, 'kes': 34896, 'sibresearch': 34897, 'crips': 34898, 'xom': 34899, 'ballet': 34900, 'nutcracker': 34901, 'scratchy': 34902, 'mutation': 34903, 'maryse': 34904, 'zeidler': 34905, 'biometrics': 34906, 'assert': 34907, 'lawenforcementtech': 34908, 'corker': 34909, 'lidls': 34910, 'reseller': 34911, 'coveryourcough': 34912, 'foodinstitutefocus': 34913, 'terminating': 34914, 'apeshit': 34915, 'doyourpartco': 34916, 'oigetit': 34917, 'cps': 34918, 'stubbscleaningservices': 34919, '375': 34920, '0274': 34921, 'authorizes': 34922, 'contractual': 34923, 'creativeindustries': 34924, 'grocerymarketplace': 34925, 'clusterfuck': 34926, 'mealdelivery': 34927, 'popupstores': 34928, 'thoroughfare': 34929, 'sabah': 34930, 'gasolineprice': 34931, 'pergallon': 34932, 'workingremotely': 34933, 'technologytuesday': 34934, 'financialmarket': 34935, 'getajob': 34936, 'livemorewitholx': 34937, 'stave': 34938, 'taftaan': 34939, 'flan': 34940, 'unheralded': 34941, 'spreadcalmnotpanic': 34942, 'flexipay': 34943, 'endlesspossibilities': 34944, 'willis': 34945, 'thomson': 34946, 'speculative': 34947, 'wuhanhealthorganisation': 34948, 'stayhired': 34949, 'interrupter': 34950, 'kavango': 34951, 'ecommercestore': 34952, 'ecommercetrends': 34953, 'businesstips': 34954, 'skypapers': 34955, 'bs6': 34956, 'thegomechanicblog': 34957, 'bharatstage6': 34958, 'glaa': 34959, 'recruiter': 34960, 'wkers': 34961, 'simonblack': 34962, 'michaelson': 34963, 'stophoardin': 34964, 'retailweek': 34965, 'mands': 34966, 'interesing': 34967, 'inefficent': 34968, 'nestl': 34969, 'simplified': 34970, 'grocerystorehero': 34971, 'paracetamols': 34972, 'food4less': 34973, 'hourding': 34974, 'bedding': 34975, 'eid': 34976, 'fiasco': 34977, 'rile': 34978, 'willenhall': 34979, 'trustworthy': 34980, 'mpklib': 34981, 'whel': 34982, 'europ': 34983, 'eadible': 34984, 'lpd': 34985, 'kri': 34986, 'semarang': 34987, 'changi': 34988, 'naval': 34989, 'batam': 34990, 'riau': 34991, 'lcs': 34992, 'uren': 34993, 'conglomerate': 34994, 'deglobalizing': 34995, 'medibank': 34996, 'delish': 34997, 'targetnews': 34998, 'simcoe': 34999, 'reinon': 35000, 'artificialintelligence': 35001, 'deborahbirx': 35002, 'blathered': 35003, 'morecombe': 35004, 'quidco': 35005, 'crohn': 35006, 'skybroadband': 35007, 'flightradar24': 35008, 'dixieprole': 35009, 'strangeness': 35010, 'creepier': 35011, 'isreal': 35012, 'unapproved': 35013, 'misbranded': 35014, 'albertan': 35015, 'ifmk': 35016, 'wtrh': 35017, 'digitaldollar': 35018, 'alight': 35019, 'fryer': 35020, 'coyote': 35021, 'ensued': 35022, 'bayareacoronavirus': 35023, 'saf': 35024, 'extravagantly': 35025, 'swt': 35026, 'bucs': 35027, 'qb': 35028, 'iheartconcertonfox': 35029, 'poole': 35030, 'advant': 35031, 'reneweconomy': 35032, 'amoral': 35033, 'afsc': 35034, 'geodata': 35035, 'trumpmustwatch': 35036, 'cuckold': 35037, 'jewlsmulan': 35038, 'findomme': 35039, 'whiteslave': 35040, 'savemore': 35041, 'hinted': 35042, 'financebrokerage': 35043, 'bondyields': 35044, '34s': 35045, 'shelving': 35046, 'damnidiots': 35047, 'jyot': 35048, 'mallofuaq': 35049, 'aroha': 35050, 'stigmatise': 35051, 'kegged': 35052, 'thereafter': 35053, 'givin': 35054, '636': 35055, 'xfinity': 35056, 'typography': 35057, 'sawant': 35058, 'cybernews': 35059, 'cyberawareness': 35060, 'masterchief': 35061, 'logile': 35062, 'xam': 35063, 'oku': 35064, 'arv': 35065, 'whoworeitbetter': 35066, 'coronafashion': 35067, 'blessedbethefruit': 35068, 'washthatfruit': 35069, 'knox': 35070, 'collates': 35071, 'energycontract': 35072, 'jewelosco': 35073, 'jewel': 35074, 'illinoiscoronavirus': 35075, 'pumpt': 35076, 'adv': 35077, 'nstlifestyle': 35078, 'cyberinsurance': 35079, 'enveloped': 35080, 'propped': 35081, 'mudrock': 35082, '2027': 35083, 'omar': 35084, 'inspires': 35085, '92008150': 35086, 'alsafrrat': 35087, 'vision2030': 35088, 'argenio': 35089, 'antao': 35090, 'fuk': 35091, 'misusing': 35092, 'gottafindtoiletpaper': 35093, 'gottafindflour': 35094, 'buywhatyouneed': 35095, 'salivating': 35096, 'howling': 35097, 'safoodbank': 35098, 'littlewins': 35099, 'leasepricesfall': 35100, 'automotiveleasing': 35101, 'ecowrap': 35102, 'analysed': 35103, 'inoperability': 35104, 'gove': 35105, 'turkana': 35106, 'ngamia': 35107, 'kitty': 35108, 'operatingmasks': 35109, 'outb': 35110, 'evokes': 35111, 'brexiters': 35112, 'yorker': 35113, 'nypause': 35114, 'itsnotnormal': 35115, 'tommorow': 35116, 'grouos': 35117, 'dallor': 35118, 'rockmans': 35119, 'crematory': 35120, 'eroded': 35121, 'absynth': 35122, 'idealworld': 35123, 'virusprotection': 35124, 'pricesfall': 35125, 'britian': 35126, 'packagethieves': 35127, 'porchpirates': 35128, 'thankyouworkers': 35129, 'hena': 35130, 'perla': 35131, 'jitin': 35132, 'chi': 35133, 'strategize': 35134, 'seldom': 35135, 'lambis': 35136, 'lambinsurance': 35137, 'chuckling': 35138, 'whenyouknowyouknow': 35139, 'prudence': 35140, 'northamptonshire': 35141, 'northants': 35142, 'pricehiking': 35143, 'breakingthelaw': 35144, 'cei': 35145, 'chao': 35146, 'boycottchineseproducts': 35147, 'fnb': 35148, 'instalment': 35149, 'preferential': 35150, 'mascot': 35151, 'haneda': 35152, 'cpap': 35153, 'outbrske': 35154, 'pushingtargets': 35155, 'mahfworks': 35156, 'coronafever': 35157, 'coronathoughts': 35158, 'alfonso': 35159, 'oneuse': 35160, 'greenie': 35161, 'weenie': 35162, 'breadbasket': 35163, 'fertiliser': 35164, 'pinning': 35165, 'barrelling': 35166, 'urgly': 35167, 'twinkees': 35168, 'keepcookingandcarryon': 35169, 'halfyourplate': 35170, 'rdchat': 35171, 'urbandictionary': 35172, 'coined': 35173, 'springbreakers': 35174, 'beerbusiness': 35175, 'beerblog': 35176, 'groceryshoppingtips': 35177, 'socialdisdancing': 35178, 'dancetee': 35179, '1964': 35180, 'shastri': 35181, 'slightest': 35182, 'discomfort': 35183, '297': 35184, 'overlord': 35185, 'unthinking': 35186, 'letsbreakthechain': 35187, 'expedite': 35188, 'deterred': 35189, 'reflector': 35190, '254776371271': 35191, '254720472374': 35192, 'thegreattoiletpaperscareof2020': 35193, 'againt': 35194, 'gtn': 35195, 'namicc': 35196, 'namicontracosta': 35197, 'contracostacounty': 35198, 'ultraviolet': 35199, 'sterilises': 35200, 'reliving': 35201, 'helpmepleaseiamgoingcrazyhahahahahahahahahahahahahaa': 35202, 'worthless': 35203, 'personification': 35204, 'blackstone': 35205, 'repurchase': 35206, 'centrally': 35207, 'golfing': 35208, 'scrunching': 35209, 'losangelescounty': 35210, 'refocus': 35211, 'yousuckkaren': 35212, 'peoplearestupid': 35213, 'imbalance': 35214, 'cornaviruspandemic': 35215, 'excl': 35216, '5b': 35217, 'emsworth': 35218, 'seafront': 35219, 'unrelated': 35220, 'unsalted': 35221, 'salted': 35222, 'eon': 35223, 'smhpeople': 35224, '21dayslockdownindia': 35225, 'browsjng': 35226, 'disregarding': 35227, 'celine': 35228, 'cheater': 35229, 'anoth': 35230, 'socialfun': 35231, 'q5': 35232, 'innovatively': 35233, 'cabo': 35234, 'verde': 35235, 'caboverde': 35236, '18months': 35237, 'commoditi': 35238, 'wondrously': 35239, 'shinanigans': 35240, 'atcard': 35241, 'houle': 35242, 'covd19': 35243, 'geographical': 35244, 'normalizes': 35245, 'campion': 35246, 'openforbusiness': 35247, 'acp': 35248, 'channelfutures': 35249, 'traumatised': 35250, 'methadone': 35251, 'wecandothistogether': 35252, 'bran': 35253, 'prune': 35254, 'werther': 35255, 'poupon': 35256, 'ekurhuleni': 35257, 'ebates': 35258, 'attain': 35259, 'bigfive2020': 35260, 'enthusiast': 35261, 'turin': 35262, 'durability': 35263, 'separatist': 35264, 'categorically': 35265, 'choicebird': 35266, 'wy': 35267, 'inspectr': 35268, 'bioscience': 35269, 'diagnosing': 35270, 'abta': 35271, 'talley': 35272, 'neuro': 35273, 'gastroenterologist': 35274, 'trample': 35275, 'hankerchief': 35276, 'clearfield': 35277, 'aralen': 35278, 'chloroquinephosphate': 35279, 'hydroxychloroquin': 35280, 'azithromycine': 35281, 'hydroxychloroquineandazythromyacinnow': 35282, 'jozylyn': 35283, '789': 35284, 'handicap': 35285, 'ismail': 35286, 'oppose': 35287, 'telkomconnectssa': 35288, 'scdca': 35289, '3785ml': 35290, 'metroatlanta': 35291, 'prepackage': 35292, 'goo': 35293, 'russell': 35294, 'broadening': 35295, 'colonel': 35296, 'wrt': 35297, 'unscruplous': 35298, 'glucometer': 35299, 'technicality': 35300, 'nannystate': 35301, 'commonpurpose': 35302, 'soros': 35303, 'mostexpensiveholiday': 35304, 'yyj': 35305, 'celiac': 35306, 'glutenfreeliving': 35307, 'belchingbeaver': 35308, 'peanutbuttermilkstout': 35309, 'granitecu': 35310, 'alwaysthere': 35311, 'shockwaves': 35312, 'makeinindia': 35313, 'indiafirst': 35314, 'warner': 35315, 'ignores': 35316, 'socialwork': 35317, 'wheeled': 35318, 'dtr': 35319, 'highwycombe': 35320, 'carnews': 35321, 'pontoon': 35322, 'maternity': 35323, '2020inoneword': 35324, 'toiletpaperthrone': 35325, 'ontheroad': 35326, 'wonderfulday': 35327, 'reteet': 35328, 'wouldnt': 35329, 'spdr': 35330, 'ccl': 35331, 'rcl': 35332, 'ual': 35333, 'hydroalcoholic': 35334, 'rushhour': 35335, 'twircle': 35336, 'staffie': 35337, '2506998500': 35338, 'zdnet': 35339, 'foodmanufacturing': 35340, 'ramune': 35341, 'hostess': 35342, 'hostessgift': 35343, 'debtor': 35344, 'salesians': 35345, 'wearedonbosco': 35346, 'salesian': 35347, 'centr': 35348, 'humanatm': 35349, 'mtnews': 35350, 'highwaypatrol': 35351, 'paving': 35352, 'cashlessociety': 35353, 'rentstrike2020': 35354, 'rentfreezenow': 35355, 'letsdothis': 35356, 'happythoughts': 35357, 'hmmhotmessmama': 35358, 'inaccessible': 35359, 'ottobock': 35360, 'holm': 35361, 'amputee': 35362, 'ottobockcares': 35363, 'sailor': 35364, 'pilgrim': 35365, 'forsale': 35366, 'risingrents': 35367, 'atsocialmediauk': 35368, 'rtukseller': 35369, 'uksmallbiz': 35370, 'ukhashtags': 35371, 'smeuk': 35372, 'versa': 35373, 'wilspow': 35374, 'dainfern': 35375, 'realestatelife': 35376, 'modesto': 35377, 'frito': 35378, 'pendemic': 35379, 'calf': 35380, 'painfully': 35381, 'kerosense': 35382, 'incentivising': 35383, 'retailenvironment': 35384, 'thirdchannel': 35385, 'caringisforlifenotjustforcoronavirus': 35386, 'toomanyonlycarewhenithitsthefan': 35387, 'societyproblem': 35388, 'aircross': 35389, 'nfi': 35390, 'retained': 35391, 'cleaningproducts': 35392, 'godhelpus': 35393, 'nancypelosi': 35394, 'solarpanels': 35395, 'endtimes': 35396, 'boast': 35397, 'spa': 35398, 'dermatologist': 35399, 'flaunt': 35400, 'heirloom': 35401, 'stayhomeoh': 35402, 'washyourgrocerycart': 35403, 'sanmiguel': 35404, 'ncov19': 35405, 'toolkit': 35406, 'toiletpapershortages': 35407, 'unworldly': 35408, 'afterall': 35409, 'propertymanagement': 35410, 'mullins': 35411, 'delinquent': 35412, 'organiser': 35413, 'reschedules': 35414, 'fairerworld': 35415, 'manically': 35416, 'cathrine': 35417, 'jansson': 35418, 'boyd': 35419, 'scour': 35420, 'descipline': 35421, 'shun': 35422, 'cunningness': 35423, 'butwhy': 35424, 'cleanthosetoilets': 35425, 'aewdynamite': 35426, 'jimmyhavoc': 35427, 'distansting': 35428, 'lssc': 35429, 'easyjet': 35430, 'jet2': 35431, 'britisher': 35432, 'invincible': 35433, 'irgchospitals': 35434, 'blackmarket': 35435, '702breakfast': 35436, '3rmb': 35437, 'amir': 35438, 'ghodrati': 35439, 'flatt78': 35440, 'akhirah': 35441, 'coronaawareness': 35442, 'greensynenterprises': 35443, 'aphios': 35444, 'croma': 35445, 'vijaysale': 35446, 'closetheretailstore': 35447, 'terrify': 35448, 'hendrik': 35449, 'greymouth': 35450, 'medial': 35451, 'papua': 35452, 'miamistrong': 35453, 'unearned': 35454, 'shutitdownnow': 35455, 'fl6': 35456, 'chiller': 35457, 'prioritorise': 35458, 'preferable': 35459, 'kezelee': 35460, 'hdfc': 35461, 'raga': 35462, 'stonehawk': 35463, 'imscreaming': 35464, 'queueup': 35465, 'onceinside': 35466, 'inandout': 35467, 'landin': 35468, 'crownroyal': 35469, 'extremecheapskates': 35470, 'tlc': 35471, 'cheapskate': 35472, 'survivalplanning': 35473, 'thomasfarquhar': 35474, 'transitioning': 35475, 'admarc': 35476, 'wishers': 35477, 'janeruthacheng': 35478, 'fedsoc': 35479, 'federalism': 35480, 'allison': 35481, 'hurley': 35482, 'expe': 35483, 'xylene': 35484, 'aromatics': 35485, 'wearer': 35486, 'drongos': 35487, 'counselling': 35488, 'staysafesafeothers': 35489, 'juicing': 35490, '5gcoronavirus': 35491, 'sabuwa': 35492, 'balarabe': 35493, 'sheik': 35494, 'gumi': 35495, 'wanton': 35496, 'jmfamilyimpact': 35497, 'suryashri': 35498, 'meningitis': 35499, 'tuberculosis': 35500, 'vacationrentals': 35501, 'melville': 35502, 'corporateresponibility': 35503, 'coveredcalifornia': 35504, '9700': 35505, '429': 35506, 'tito': 35507, 'titosvodka': 35508, 'monty': 35509, 'virucide': 35510, 'barbicide': 35511, 'virtualassistant': 35512, 'retailbot': 35513, 'conversationalcommerce': 35514, 'deteriorate': 35515, 'districtmagistrate': 35516, 'lko': 35517, 'pricee': 35518, 'shameshame': 35519, 'sgbudget2020': 35520, 'gbfb': 35521, 'stride': 35522, 'mainecoon': 35523, 'ukgb': 35524, 'padre': 35525, 'fishmonger': 35526, 'itsthesmallthings': 35527, 'jnjkiljhkh': 35528, 'pathological': 35529, 'unaccommodating': 35530, 'civilizing': 35531, 'aplangflashback': 35532, 'lankan': 35533, 'myhineysclean': 35534, 'narcos': 35535, 'pabloescobar': 35536, 'makemegoviral': 35537, 'asa': 35538, 'meloy': 35539, 'register4covid19safeodisha': 35540, 'guyana': 35541, 'goldcoast': 35542, 'easterholiday': 35543, 'foldable': 35544, 'respecively': 35545, 'rigati': 35546, 'marinara': 35547, 'parmigiano': 35548, 'reggiano': 35549, 'parsley': 35550, 'kvqlybdymu': 35551, 'unexpired': 35552, 'paywave': 35553, 'rueful': 35554, 'ameen': 35555, 'teeshirt': 35556, 'desiccated': 35557, 'scraping': 35558, 'weareckpublichealth': 35559, 'arranging': 35560, 'cohabiting': 35561, 'bahawalpur': 35562, 'affidavit': 35563, 'umair': 35564, 'tahir': 35565, '923219537814': 35566, 'isb': 35567, 'cognizant': 35568, 'huntingranch': 35569, 'deerranch': 35570, 'whittaildeer': 35571, 'hutchinsonrackattack': 35572, 'paintball': 35573, 'mirin': 35574, 'picknpaycycad': 35575, 'passionate': 35576, 'unfitforoffice': 35577, 'polit': 35578, 'jerke': 35579, 'conroe': 35580, 'govenment': 35581, 'microscope': 35582, 'prayforworld': 35583, 'midgley': 35584, 'musicnotation': 35585, 'heisting': 35586, 'floridia': 35587, 'savethenhs': 35588, 'donothoard': 35589, 'haan': 35590, 'mop': 35591, 'e2010y': 35592, 'aua0twjrs4': 35593, 'zoomllshop': 35594, 'fowl': 35595, 'nyash': 35596, 'fuqed': 35597, 'inventoried': 35598, 'mnwx': 35599, 'entrepreneurial': 35600, 'greedhoarders': 35601, 'glutardsmatter': 35602, 'stayhomesaving': 35603, 'hotelier': 35604, 'lowry': 35605, 'twiglets': 35606, 'predictiveprogramming': 35607, 'rfid': 35608, 'reptilian': 35609, 'iphone12pro': 35610, 'blacklist': 35611, 'karantina': 35612, 'lockdownworld': 35613, 'distaste': 35614, 'simplify': 35615, 'borax': 35616, 'moxie': 35617, 'sanborn': 35618, 'fonte': 35619, 'bagasse': 35620, 'pregnancy': 35621, 'gouvernement': 35622, 'milestone': 35623, 'socialenterprise': 35624, 'cmpcertified': 35625, 'cmp': 35626, 'crewenterprises': 35627, 'dubmagazine': 35628, 'victorli': 35629, 'outputgrowth': 35630, 'retailstrategy': 35631, 'unseasoned': 35632, 'hlsnmbbyrb': 35633, 'facilitant': 35634, 'mobilitat': 35635, 'thisistherealspain': 35636, 'tessa': 35637, 'kerry': 35638, 'valentia': 35639, 'financialhealth2020': 35640, 'servicens': 35641, 'fenns': 35642, 'breakingtoday': 35643, 'uptime': 35644, 'rhetorical': 35645, 'graciousness': 35646, 'benice': 35647, 'cockup': 35648, 'stopthedancing': 35649, 'quarantineexcuses': 35650, 'ihateithere': 35651, 'imissoutside': 35652, 'masterthecrisis': 35653, 'growthfromknowledge': 35654, 'lotto': 35655, 'tooting': 35656, 'departmentstores': 35657, 'worldfood': 35658, 'demandgeneration': 35659, 'demandgen': 35660, 'immortan': 35661, 'joebiden': 35662, 'joementum': 35663, 'gretchennomtvhits': 35664, 'gretchenwitmer': 35665, 'xxvp': 35666, 'wastelanders': 35667, 'wasteland': 35668, 'complicates': 35669, 'nursescovid19': 35670, 'lithuania': 35671, 'choking': 35672, 'caronavirusupdate': 35673, 'unhealthydeliciousfood': 35674, 'thingamajig': 35675, 'elmvale': 35676, 'tvjallangles': 35677, 'hidalgo': 35678, 'spead': 35679, 'flicking': 35680, 'teachfromhome': 35681, 'puzzleoftheday': 35682, 'validate': 35683, 'cbn': 35684, 'connivence': 35685, 'terre': 35686, 'haute': 35687, 'iger': 35688, 'forgoes': 35689, 'vallourec': 35690, 'fieri': 35691, 'fibonacci': 35692, 'stimuluscheck': 35693, 'ojiwulila': 35694, 'dewitt': 35695, 'gameplay': 35696, 'inspecting': 35697, 'overcharged': 35698, 'tsutomu': 35699, 'watanabe': 35700, '5167er': 35701, 'griftiest': 35702, 'opportunistically': 35703, 'complies': 35704, '50p': 35705, 'foodchat': 35706, 'noonlineshopping': 35707, 'fridaymorning': 35708, 'climatefriday': 35709, 'sobbing': 35710, '020': 35711, '3738': 35712, 'mairaj': 35713, 'apprised': 35714, 'squashed': 35715, 'nycprep': 35716, 'hadleygamble': 35717, 'ixworth': 35718, 'socialmediaguru365': 35719, 'respo': 35720, 'steeprise': 35721, 'meitei': 35722, 'warsaw': 35723, 'krakow': 35724, 'm65': 35725, 'stayhom': 35726, '1970s': 35727, 'puting': 35728, 'cuttlass': 35729, 'lagosunrest': 35730, 'ogununrest': 35731, 'faceface': 35732, 'maskface': 35733, 'basildon': 35734, 'lawson': 35735, 'fcaupdate': 35736, 'flattenthecurvetogether': 35737, 'udsd': 35738, 'warpaints': 35739, 'ladro': 35740, 'savehospo': 35741, 'savehospitality': 35742, 'motherfuckin': 35743, 'yea': 35744, 'familymeals': 35745, 'retooling': 35746, 'togetherfromapart': 35747, 'fijianconsumerrights': 35748, 'malignancy': 35749, 'modernism': 35750, 'vapid': 35751, 'mypandemicplandesurvival': 35752, 'emissionsreductions': 35753, 'holidayfarms': 35754, 'glenhead': 35755, 'secureteam420': 35756, 'veritas': 35757, 'commune': 35758, 'viewed': 35759, 'shittier': 35760, 'jenga': 35761, 'abolishes': 35762, 'feeder': 35763, 'steer': 35764, 'impunity': 35765, '20how': 35766, '20is': 35767, '20covid': 35768, '20changing': 35769, '20consumer': 35770, '23038': 35771, '20ecommerce': 35772, '20trends': 35773, '3f': 35774, 'japaneese': 35775, '1350': 35776, 'nonfiction': 35777, 'raving': 35778, 'brainer': 35779, '2wds': 35780, 'smmes': 35781, 'lukewarm': 35782, 'bewareofcovid19': 35783, 'logging': 35784, 'fashionista': 35785, 'sketchdaily': 35786, 'fashionillustration': 35787, 'outfitoftheday': 35788, 'fashionillustrationoftheday': 35789, '8733': 35790, 'indiadeservesbetter': 35791, 'homestuck': 35792, '1100': 35793, '1600': 35794, 'validates': 35795, 'impulse': 35796, 'shoreditch': 35797, 'vasayo': 35798, 'bstards': 35799, 'riffa': 35800, 'gutted': 35801, 'pollock': 35802, 'spectacular': 35803, 'thisisnotok': 35804, 'currencyusers': 35805, 'currencyissuer': 35806, 'learnmmt': 35807, 'thedeficitmyth': 35808, 'joomye': 35809, 'muddled': 35810, 'unrestrained': 35811, 'convene': 35812, 'njgop': 35813, 'tjx': 35814, 'chezamy': 35815, 'stayhealthymyfriends': 35816, 'roiled': 35817, 'crisisnew': 35818, 'throwback': 35819, 'sycamore': 35820, 'hamlet': 35821, 'impromptu': 35822, 'italua': 35823, 'normaly': 35824, 'donttravelanditwont': 35825, 'saute': 35826, 'modeling': 35827, 'geographic': 35828, 'staystay': 35829, 'maya': 35830, 'angelou': 35831, 'malaise': 35832, 'mastered': 35833, 'ausairmasks': 35834, 'adultdiapers': 35835, 'marsh': 35836, 'amerciaworkstogether': 35837, 'handsanitzer': 35838, 'automotivetouchup': 35839, 'lrg': 35840, 'enforceability': 35841, '32c': 35842, 'chen': 35843, 'xiaobo': 35844, 'knead': 35845, 'gonzalez': 35846, 'newengland': 35847, 'supportchewy': 35848, 'mustseetfc': 35849, 'fierce': 35850, 'iloveyou': 35851, 'jhootspharmacy': 35852, 'whimn': 35853, '8523': 35854, 'regimen': 35855, 'filmmyhospital': 35856, 'juddleg': 35857, 'andrewholnessjm': 35858, 'sweettalker': 35859, 'tworollsleft': 35860, 'intellicast': 35861, 'mrnews': 35862, 'lockdownsrilanka': 35863, 'lk': 35864, '1130593481': 35865, 'polaris': 35866, 'adebis': 35867, 'unido': 35868, 'ptg': 35869, 'rockin': 35870, 'wearin': 35871, 'hoody': 35872, 'thinkin': 35873, 'standin': 35874, 'schnitkey': 35875, 'middlesbrough': 35876, 'jamescookhospital': 35877, 'departure': 35878, 'assalam': 35879, 'alaykum': 35880, 'midpoint': 35881, 'hiace': 35882, 'n24m': 35883, '08175974345': 35884, 'sedanos': 35885, 'realnews': 35886, 'globaljournals': 35887, 'sciencefacts': 35888, 'neuclear': 35889, 'gartnersc': 35890, '2cater2': 35891, 'kalypso': 35892, 'wondercat': 35893, '20bottles': 35894, '03pm': 35895, '4got': 35896, 'breakie': 35897, 'fantini': 35898, 'khc': 35899, 'sighing': 35900, 'bloodthirsty': 35901, 'uksupermarkets': 35902, 'grassy': 35903, '617': 35904, 'luciebee': 35905, 'awry': 35906, 'indirectly': 35907, 'sundry': 35908, 'includ': 35909, '2many2selfish': 35910, 'quarantaene': 35911, 'datenight': 35912, 'selfisolationgame': 35913, 'coronadeutschland': 35914, 'quiagen': 35915, 'modular': 35916, 'pbms': 35917, 'pocketing': 35918, 'finale': 35919, 'foe': 35920, 'stop5g': 35921, '5gweapon': 35922, 'chinashutdown': 35923, 'economiccollapse': 35924, 'economicreset': 35925, 'medicalmartiallaw': 35926, 'wuhan400': 35927, 'soop': 35928, 'seema': 35929, 'shandil': 35930, 'patio': 35931, 'kissinger': 35932, 'worldmarket': 35933, 'accra': 35934, 'chink': 35935, 'cascading': 35936, 'micros': 35937, 'reaping': 35938, 'haliburton': 35939, 'pku': 35940, 'relook': 35941, 'mindminenxt': 35942, 'pleasestayhome': 35943, 'pleasestop': 35944, 'covidindex': 35945, 'feedgrains': 35946, 'yang': 35947, 'ramai': 35948, 'orang': 35949, 'artis': 35950, 'banyak': 35951, 'bolelah': 35952, 'sumbangkan': 35953, 'sedikit': 35954, 'untuk': 35955, 'pembelian': 35956, 'essentialsonly': 35957, 'slomo': 35958, 'devestating': 35959, 'cockblocked': 35960, 'michelle4il': 35961, 'willcounty': 35962, 'upsurge': 35963, 'bestselling': 35964, 'crostata': 35965, 'abbreviation': 35966, 'oaxacan': 35967, 'jargon': 35968, 'fairtrading': 35969, 'mema': 35970, 'michel': 35971, 'norfolk': 35972, 'nutcase': 35973, 'similarly': 35974, 'shelflife': 35975, 'erie': 35976, 'weapplaud': 35977, 'solarhorss': 35978, 'blenco': 35979, 'hairstyle': 35980, 'dalal': 35981, 'rink': 35982, 'summer2020': 35983, 'skipped': 35984, 'asianamericans': 35985, 'chiraq': 35986, '50cent': 35987, 'queenzflip': 35988, 'zoey': 35989, 'maraist': 35990, 'plaintiff': 35991, 'misrepresented': 35992, 'fmglaw': 35993, 'ofgem': 35994, 'homemadebread': 35995, 'bringhomeecback': 35996, 'lifeskills': 35997, 'bakingbread': 35998, 'lolli': 35999, 'gagging': 36000, 'collectivementalpower': 36001, '5x70ml': 36002, 'washandset': 36003, 'dxxkheads': 36004, 'paddymcguinness': 36005, 'barzani': 36006, 'excellency': 36007, 'contentment': 36008, 'relocalisation': 36009, 'foodsupplychains': 36010, 'brokered': 36011, 'n700': 36012, 'n1': 36013, '5pouches': 36014, 'convergence': 36015, 'googl': 36016, 'atvi': 36017, 'blinded': 36018, 'sooper': 36019, 'shill': 36020, 'lyingbiden': 36021, 'trusting': 36022, 'paywalls': 36023, 'downing': 36024, '591': 36025, 'dieselprice': 36026, 'dieselfuel': 36027, 'preside': 36028, 'comissioner': 36029, 'sajjad': 36030, 'briefed': 36031, 'nonna': 36032, 'winkwink': 36033, 'catharsus': 36034, 'magacreatedcoronaworld': 36035, 'hillyeah': 36036, 'vinvi': 36037, 'vinvicorp': 36038, 'caixin': 36039, 'lunarnewyear': 36040, 'riotinto': 36041, 'bhp': 36042, 'fortescuemetalsgroup': 36043, 'royhill': 36044, 'degenerate': 36045, 'prematurely': 36046, 'whiff': 36047, 'orgy': 36048, 'seattleu': 36049, 'deba60': 36050, 'compliant': 36051, 'ltown': 36052, 'shitbeenreal': 36053, 'tard': 36054, 'durkan': 36055, 'freakouts': 36056, 'wfpb': 36057, 'meijer': 36058, 'postive': 36059, 'wudnews': 36060, 'wudupdates': 36061, 'whatsupdoha': 36062, 'behaves': 36063, 'husbandappreciation': 36064, 'husbandlove': 36065, 'husbandoftheyear': 36066, 'besthusband': 36067, 'nationalize': 36068, 'sfightcorona': 36069, 'traction': 36070, 'sfi': 36071, 'bln': 36072, 'excused': 36073, 'eloquence': 36074, 'eloquent': 36075, 'stilled': 36076, 'hypochlorite': 36077, 'hydroxycholorquine': 36078, 'brutalize': 36079, 'regaining': 36080, 'dma': 36081, 'pall': 36082, 'pplt': 36083, 'slv': 36084, 'ivanka': 36085, 'sharekhanresearch': 36086, 'apl': 36087, 'sharekhanfna': 36088, 'gleaned': 36089, 'highwood': 36090, 'plattsoil': 36091, 'frecklington': 36092, 'fume': 36093, 'imtiaz': 36094, 'gulshan': 36095, 'iqbal': 36096, 'arsalan': 36097, '923402045318': 36098, 'lutfitrends': 36099, 'accomodations': 36100, 'seizing': 36101, 'optimally': 36102, 'emerson': 36103, 'mateus': 36104, 'loveandantennas': 36105, 'japanesebrushpen': 36106, '100armyofwoah': 36107, 'emphysema': 36108, 'enrolled': 36109, 'happyathome': 36110, 'fy': 36111, 'publiclibrary': 36112, 'hazelnut': 36113, 'creamer': 36114, 'happylife': 36115, 'mudhole': 36116, 'stomped': 36117, 'grocey': 36118, 'paloma': 36119, 'valentin': 36120, 'deforest': 36121, 'compton': 36122, '55th': 36123, 'retiring': 36124, '1300': 36125, 'cetera': 36126, 'ravindra': 36127, 'investmentspecial': 36128, 'brightest': 36129, 'thingi': 36130, 'anticlimax': 36131, 'missedopportunity': 36132, 'forbids': 36133, 'organisational': 36134, '25marzo': 36135, 'wannabe': 36136, 'hudsoncounty': 36137, 'rigorously': 36138, 'sling': 36139, 'comex': 36140, 'attendance': 36141, 'maroc': 36142, 'hyperspreading': 36143, 'presid': 36144, 'unqualified': 36145, 'endorsement': 36146, 'jakarta': 36147, 'dinomart': 36148, 'pizzaandeastereggsfordinner': 36149, 'sharpened': 36150, 'deeside': 36151, 'scalefast': 36152, 'abandonment': 36153, 'aov': 36154, 'mvb': 36155, 'drummer': 36156, 'disabilityandcovid19': 36157, 'spreadsheet': 36158, 'coronan': 36159, 'timer': 36160, 'gluttony': 36161, 'garda': 36162, 'grange': 36163, 'rented': 36164, 'groce': 36165, '37qyihjaypbuax9tnmdfro6zkdftyrvfvl': 36166, 'macho': 36167, 'staysafesta': 36168, 'tyas': 36169, 'scone': 36170, 'dairypod': 36171, 'soundcloud': 36172, '199200': 36173, 'bugy2k': 36174, 'bloor': 36175, 'lamejokethursday': 36176, 'lamejokethurs': 36177, 'lamejoke': 36178, 'jokesfordays': 36179, 'tiktokyansen': 36180, 'mcopinion': 36181, 'realisation': 36182, 'opoku': 36183, 'adum': 36184, 'kumasi': 36185, 'quarantineliving': 36186, 'yangon': 36187, 'manifestation': 36188, 'ddc': 36189, 'pusateri': 36190, 'soriana': 36191, 'fruitcake': 36192, 'notfrombeer': 36193, 'fruitloops': 36194, 'tena': 36195, 'lacto': 36196, 'africaannounces': 36197, 'capitalismistheproblem': 36198, 'responsibleretail': 36199, 'spoilt': 36200, 'omnibus': 36201, 'researchstudy': 36202, 'corona2020': 36203, 'webnair': 36204, 'tort': 36205, 'financialtips': 36206, 'creditsoup': 36207, 'hoardnado': 36208, 'danroulette': 36209, 'loven': 36210, 'downtrend': 36211, 'hemorrhoid': 36212, 'crsponsored': 36213, 'cuarentena': 36214, 'groccery': 36215, 'karcamo13': 36216, 'karcamogaming': 36217, 'callateidiota': 36218, 'karcamo': 36219, 'facepaint': 36220, 'facepainted': 36221, 'enemiesofthepeople': 36222, 'counteracted': 36223, 'vegi': 36224, 'quarantineblues': 36225, 'hoardingtoiletpaper': 36226, 'shoestring': 36227, '3billion': 36228, '357million': 36229, 'reponse': 36230, 'downloadable': 36231, 'manifesting': 36232, 'conrad': 36233, 'stateofhealth': 36234, 'thankyoupublichralth': 36235, 'mymdfarmers': 36236, 'papertowelrolls': 36237, 'bullied': 36238, 'corox': 36239, 'edchat': 36240, 'memeing': 36241, 'almighty': 36242, 'aamen': 36243, 'webdesign': 36244, '08079024516': 36245, 'modelled': 36246, 'gasolime': 36247, '414': 36248, 'posture': 36249, 'coldness': 36250, 'fearnot': 36251, 'deseo': 36252, 'mercilessly': 36253, 'coronasweden': 36254, 'everythingfromhome': 36255, 'cautionary': 36256, 'myriam': 36257, 'splurge': 36258, 'masturbatory': 36259, 'hellscape': 36260, 'pilgrimage': 36261, 'insistence': 36262, 'brutalizing': 36263, 'gazetted': 36264, 'susie': 36265, 'ncnu': 36266, 'beehivestate': 36267, 'contempt': 36268, 'bhau': 36269, 'digressed': 36270, 'compliment': 36271, 'bountypapertowels': 36272, 'multistores': 36273, 'sanjivgoenka': 36274, 'excelent': 36275, 'terible': 36276, 'specialy': 36277, 'mrigendu': 36278, 'froms': 36279, 'streetmodest': 36280, 'sociological': 36281, 'eastermassacre': 36282, 'buharitormentor': 36283, 'independant': 36284, 'mobileapps': 36285, 'nationalguard': 36286, 'thefive': 36287, 'southwestern': 36288, 'coo': 36289, 'mushtaque': 36290, 'prolonging': 36291, 'ketua': 36292, 'keluarga': 36293, 'clotted': 36294, 'informedsecurity': 36295, 'differentbydesign': 36296, 'medident': 36297, 'neil': 36298, 'bradley': 36299, 'poppy': 36300, 'forwood': 36301, '2004': 36302, 'riled': 36303, 'bummed': 36304, 'colossal': 36305, 'reasses': 36306, 'blackout': 36307, 'fot': 36308, 'seka': 36309, 'gayaza': 36310, 'folded': 36311, 'selfquarantinechallenge': 36312, 'zley': 36313, 'antalya': 36314, 'ayan': 36315, 'frans': 36316, 'rkiye': 36317, 'nin': 36318, 'ald': 36319, 'tedbirleri': 36320, 'burada': 36321, 'dezenfektan': 36322, 'maskeyi': 36323, 'cretsiz': 36324, 'veriyorlar': 36325, 'arad': 36326, 'markette': 36327, 'var': 36328, 'diyor': 36329, 'cumalar': 36330, 'cumartesi': 36331, 'paddock': 36332, 'halloweenmovies': 36333, 'halloweenmovie': 36334, 'hadonfield': 36335, 'serialkiller': 36336, '150b': 36337, 'wewillwin': 36338, 'pce': 36339, 'takeoutservice': 36340, 'syngentaproud': 36341, 'nohopeinsite': 36342, 'zmartbit': 36343, 'thoughtfully': 36344, 'votethemout': 36345, 'messi': 36346, 'superspreaders': 36347, 'madhuresorts': 36348, 'beefbiryani': 36349, 'boiled': 36350, 'namaaz': 36351, 'biryani': 36352, 'neurotic': 36353, 'proudnhs': 36354, 'enticing': 36355, 'portraying': 36356, 'nutritional': 36357, 'muma': 36358, 'oneday': 36359, 'iloveu': 36360, 'leak': 36361, 'hoodie': 36362, 'transfats': 36363, 'ruislip': 36364, 'xhb': 36365, 'weneedtoshare': 36366, 'renton': 36367, 'turmeric': 36368, 'renetrevor': 36369, 'cipla': 36370, 'sulfate': 36371, 'reut': 36372, 'combi': 36373, 'borg': 36374, 'batteryfarm': 36375, 'chickenflu': 36376, 'freerange': 36377, 'appetizing': 36378, 'campingbed': 36379, 'selfmed': 36380, 'lekki': 36381, 'resent': 36382, 'polar': 36383, 'brimming': 36384, 'faucihero': 36385, 'tablighijamaat': 36386, 'saharanpur': 36387, 'firozabad': 36388, 'infodemic': 36389, 'illuminated': 36390, 'illuminate': 36391, 'nhsthank': 36392, 'formigration': 36393, 'unpopularopinion': 36394, 'oklahomacity': 36395, 'nashvill': 36396, 'neuk': 36397, 'lln': 36398, 'kia': 36399, 'clothe': 36400, 'zooming': 36401, 'peterhead': 36402, 'fuckyoupayme': 36403, 'homecare': 36404, 'toluna': 36405, 'tolunainfluencers': 36406, 'edmontonions': 36407, 'nfha': 36408, '3215': 36409, 'onag': 36410, 'gud': 36411, 'invester': 36412, 'boycotthu': 36413, 'quarantineatvshow': 36414, 'firefauci': 36415, 'stimulusdeposit': 36416, '28brl': 36417, 'fixit': 36418, 'fence': 36419, 'cufflink': 36420, 'shifaa': 36421, 'includin': 36422, 'dumbtards': 36423, 'masspanic': 36424, 'stupidpeople': 36425, 'waltermart': 36426, 'maggi': 36427, 'gocorona': 36428, 'behishandsandfeet': 36429, 'everlasting': 36430, 'typing': 36431, 'queersinquarantine': 36432, 'everythingfloats': 36433, 'stephenking': 36434, 'zero027': 36435, 'edits': 36436, 'proofreads': 36437, 'observes': 36438, 'theweek': 36439, '615': 36440, '741': 36441, '4737': 36442, 'brahach': 36443, 'usecon': 36444, 'iheartradio': 36445, 'nbaquarantine': 36446, 'exhibition': 36447, 'faba': 36448, 'permissible': 36449, 'stunningly': 36450, 'leaderless': 36451, 'fkn': 36452, '043': 36453, 'bloodofjesus': 36454, 'eugenics': 36455, 'crystalpalace': 36456, 'digitaldivide': 36457, 'se19': 36458, 'itunes': 36459, 'uttering': 36460, 'kj': 36461, 'houseprice': 36462, 'frustating': 36463, 'mobileapp': 36464, 'softwaredevelopmentcompany': 36465, 'customsoftwaredevelopment': 36466, 'softwaredevelopment': 36467, 'buyin': 36468, 'skintness': 36469, 'bullheaded': 36470, 'vaishali': 36471, 'shopnormally': 36472, 'resalemarket': 36473, 'ottawahomes': 36474, 'howdy': 36475, 'wardrobe': 36476, 'minimalism': 36477, 'augmentedreality': 36478, 'ardor': 36479, 'ignis': 36480, 'cbg': 36481, 'inthistogetherdubai': 36482, 'fashiondesign': 36483, 'wetin': 36484, 'coronate': 36485, 'kentstreet': 36486, 'manhandle': 36487, 'wefightcovid19': 36488, 'ibc': 36489, 'gadget': 36490, 'helpdonothurt': 36491, 'ecart': 36492, 'burdensome': 36493, 'shug': 36494, 'rnb': 36495, 'rnbmusic': 36496, 'trapmusic': 36497, 'hot97': 36498, 'power105': 36499, 'mismanagement': 36500, 'daylight': 36501, 'underresourced': 36502, 'repellent': 36503, 'quaratinebubble': 36504, 'evryday': 36505, '2dys': 36506, '890': 36507, 'hilary': 36508, 'ukac': 36509, 'spouting': 36510, 'xiaomi': 36511, 'oppo': 36512, 'preda': 36513, 'employe': 36514, 'davies2019': 36515, 'legominifigures': 36516, 'ncsc': 36517, 'termed': 36518, 'weeknews': 36519, 'apocalyps': 36520, 'babaji': 36521, 'onshore': 36522, 'hover': 36523, 'personalised': 36524, 'megaphone': 36525, 'nomestleft': 36526, 'soundtrack': 36527, 'bunnyday': 36528, 'truckerlife': 36529, 'ademuyiwa': 36530, 'efiwe': 36531, 'akin1': 36532, 'jag': 36533, 'thegr8': 36534, 'ju': 36535, 'heardd': 36536, 'zombieprep': 36537, 'nmtrue': 36538, 'tao': 36539, 'lordoftherings': 36540, 'wallpaperwednesday': 36541, 'speeading': 36542, 'futako': 36543, 'epileptic': 36544, 'oilpricewars': 36545, 'oilandgastips': 36546, 'getinformed': 36547, 'postie': 36548, 'whattya': 36549, 'ycx': 36550, 'jbeil': 36551, 'seperate': 36552, '0789': 36553, '861': 36554, 'trbusiness': 36555, 'shilla': 36556, 'hkia': 36557, 'dubaipolice': 36558, 'mercutio': 36559, 'relocating': 36560, 'bumbed': 36561, 'isolationillustration': 36562, 'isolationday8': 36563, '923': 36564, '2gethertheseries': 36565, 'gmmtv': 36566, 'flagstaff': 36567, 'hmgovernment': 36568, 'poac': 36569, 'carehomes': 36570, 'approvable': 36571, 'naught': 36572, 'videocalls': 36573, 'physicalhealth': 36574, 'selfemployedmattertoo': 36575, 'selfemployment': 36576, 'deliberatly': 36577, 'noiwontstop': 36578, 'cloy': 36579, 'cloyfever': 36580, 'pacifica': 36581, 'kpixtogether': 36582, 'applesponsorme': 36583, 'opeiu': 36584, 'teepublic': 36585, 'fermanagh': 36586, 'omagh': 36587, 'northernireland': 36588, 'theorizing': 36589, 'dbdoodle': 36590, '384': 36591, 'jamecia': 36592, 'swat': 36593, 'herby': 36594, 'demonisation': 36595, 'stereotyping': 36596, 'backpacker': 36597, 'derisked': 36598, 'gotcha': 36599, 'attracts': 36600, 'regressive': 36601, 'inelastic': 36602, 'baluchestan': 36603, 'moy': 36604, 'avivian': 36605, 'relianceindustries': 36606, 'rarest': 36607, 'unc': 36608, 'icasa': 36609, 'recentlu': 36610, 'heared': 36611, 'day11oflockdow': 36612, 'rfr': 36613, 'instacool': 36614, 'instafam': 36615, 'bham': 36616, 'livepd': 36617, 'livepdnation': 36618, 'livewell': 36619, 'safeshifts4all': 36620, 'gambian': 36621, 'pandemi': 36622, 'dumpling': 36623, 'stillgottawork': 36624, 'penticton': 36625, 'isba': 36626, 'mp02': 36627, '01625': 36628, '874220': 36629, 'dar': 36630, 'ciapp': 36631, 'shoppingdeals': 36632, 'flupocalypse': 36633, 'hemel': 36634, 'vandersloot': 36635, 'jetfuel': 36636, 'storagetanks': 36637, 'frackingcrews': 36638, 'landmass': 36639, 'degrade': 36640, '800km': 36641, 'slogging': 36642, '50lbs': 36643, 'nairatwtpays': 36644, 'unbundles': 36645, 'opted': 36646, 'competiton': 36647, 'yase': 36648, 'kasie': 36649, 'quintessential': 36650, 'yaar': 36651, 'dadu': 36652, 'spaceballs': 36653, 'disperse': 36654, 'payed': 36655, 'kpk': 36656, 'awarding': 36657, 'henleaze': 36658, 'justintimecx': 36659, 'freetravelforkeyworkers': 36660, 'coverall': 36661, 'hypebeast': 36662, 'mtv': 36663, 'tmz': 36664, 'prioritycustomers': 36665, 'frenzied': 36666, 'recognises': 36667, 'wvstatejournal': 36668, 'succession': 36669, '1rm': 36670, 'technically': 36671, '620': 36672, '663': 36673, '75965': 36674, 'timberlake': 36675, 'sgh': 36676, 'aisola': 36677, 'getkart': 36678, 'alocoholbasedhandsanitizer': 36679, 'usehandsanitizer': 36680, 'getr': 36681, 'nkebranche': 36682, 'sorgt': 36683, 'ums': 36684, 'leergut': 36685, 'ruft': 36686, 'zur': 36687, 'ckgabe': 36688, 'leerer': 36689, 'mehrweg': 36690, 'flaschen': 36691, 'ein': 36692, 'gibt': 36693, 'jeden': 36694, 'leeren': 36695, 'kasten': 36696, 'rolle': 36697, 'keller': 36698, 'puebla': 36699, 'crooked': 36700, 'diming': 36701, 'ncov2019': 36702, 'thecourieruk': 36703, 'kinross': 36704, 'communitysupport': 36705, 'carbondioxide': 36706, 'immunodeficiency': 36707, 'dippstick': 36708, 'conversionia': 36709, 'deliver25': 36710, 'ahlstrom': 36711, 'munksj': 36712, 'kaveh': 36713, 'waddell': 36714, 'johnlewispartnership': 36715, 'photovoltaic': 36716, 'distilled': 36717, 'exile': 36718, 'gynecologist': 36719, 'hopelessness': 36720, '90oz': 36721, 'kenyantraffic': 36722, 'coviod19': 36723, 'agriculturalsector': 36724, 'commoditymarket': 36725, 'retrofitting': 36726, 'kelvin': 36727, 'wifey': 36728, 'goldensehunday': 36729, 'crazier': 36730, 'toasty': 36731, 'cheez': 36732, 'peopleactingcrazy': 36733, 'susans': 36734, 'shingiedailyword': 36735, 'sanitarzers': 36736, 'secretsofyoursupermarketfoods': 36737, 'awkwardly': 36738, 'asgm': 36739, 'occoquan': 36740, 'mandrilltoys': 36741, 'dogfood': 36742, 'catfood': 36743, 'birdfood': 36744, 'fishfood': 36745, 'happycat': 36746, 'happydog': 36747, 'orijen': 36748, 'acana': 36749, 'tasteofthewild': 36750, 'ziwipeak': 36751, 'serum': 36752, 'philiasolutions': 36753, 'trendline': 36754, 'teleconferencing': 36755, 'didier': 36756, 'singlemarket': 36757, 'sax': 36758, 'whatarethosewednesday': 36759, 'prideslides': 36760, 'customslides': 36761, 'stridewithpride': 36762, 'lookgoodfeelgooddogood': 36763, 'neversettle': 36764, 'spiritwear': 36765, 'teamapparel': 36766, 'teamgear': 36767, 'cocobod': 36768, 'lanxess': 36769, 'blacktwittermovement': 36770, 'tissuechallenge': 36771, 'mismatch': 36772, 'jit': 36773, '638': 36774, '2772': 36775, 'roshida': 36776, 'khanom': 36777, 'factrade': 36778, 'trendingnews': 36779, 'centralgovernment': 36780, 'sadtire': 36781, 'mragwani': 36782, 'nypost': 36783, 'each1teach1': 36784, 'tornado': 36785, 'maura': 36786, 'peeve': 36787, 'gtfo': 36788, 'tug': 36789, 'goldsbrough': 36790, 'antibac': 36791, 'southcentre': 36792, 'flexin': 36793, 'pristine': 36794, 'southaustralia': 36795, 'brevard': 36796, 'hagemann': 36797, 'capricious': 36798, 'unenforceable': 36799, 'withhold': 36800, 'dgoc': 36801, 'underpin': 36802, 'corg': 36803, 'otcmarket': 36804, 'noccp': 36805, 'zoomable': 36806, 'glossary': 36807, 'helpthosehelpingothers': 36808, 'mpgovtcrisis': 36809, 'actuallyautistic': 36810, 'petrolstations': 36811, 'officemarket': 36812, 'broth': 36813, 'selfportrait': 36814, 'lisbon': 36815, 'igersportugal': 36816, 'instagoodmyphotography': 36817, 'westphalia': 36818, 'ursula': 36819, 'heinen': 36820, 'esser': 36821, 'emeritus': 36822, 'schlesinger': 36823, 'crestview': 36824, '0016': 36825, 'parmar17': 36826, 's10': 36827, 'grassroots': 36828, 'pcmag': 36829, 'dho': 36830, 'ozium': 36831, 'odor': 36832, 'chawla': 36833, 'puree': 36834, 'trialrun': 36835, 'supremecou': 36836, 'ware': 36837, 'interrelated': 36838, 'sumitomo': 36839, '919': 36840, 'ahah': 36841, 'helpinghands': 36842, 'staysafestayhelpful': 36843, 'gujaratfightscovid19': 36844, 'baroda': 36845, 'bhavnagar': 36846, 'dontbeashitandgivebackabit': 36847, 'dontbegreedythinkoftheneedy': 36848, 'qkxp0tyusk': 36849, '45l': 36850, 'albermarle': 36851, 'pwani': 36852, 'weshallovercome': 36853, 'saludtues': 36854, 'norra': 36855, 'softener': 36856, 'poopoo': 36857, 'peepee': 36858, 'caca': 36859, 'stymy': 36860, 'ionization': 36861, 'chapelhill': 36862, 'graciously': 36863, 'whatstrending': 36864, 'crossfire': 36865, 'cambodia': 36866, 'clan': 36867, 'boggles': 36868, '5wyzwetcqg': 36869, 'illinoisan': 36870, 'stoppani': 36871, 'fea': 36872, 'demostrated': 36873, 'elisa': 36874, 'momofboys': 36875, 'maplegrov': 36876, 'disasterrelief': 36877, 'pmcares': 36878, 'rochdale': 36879, 'castleton': 36880, 'baggies': 36881, 'rollbakcs': 36882, 'wgc': 36883, 'calmlyshopping': 36884, 'sudhar': 36885, 'jaao': 36886}
#One Hot Encoding
def OHE_vector(string):
OHE_encoded =[]
for word in string.split():
temp =[0]*len(vocab)
if word in vocab:
temp[vocab[word]-1] =1
OHE_encoded.append(temp)
return OHE_encoded# the first is the text to be One Hot Encoded, the later is the vectors created for each word and the ordinal position of each word. This case present issues of sparcity
print(twitter[1])
OHE_vector(twitter[1])agreed i can tell you you have a better chance of dying driving to the grocery store to hoard tp than dying from the
[[0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
...],
[0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
...],
[0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
...],
[0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
...],
[0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
...],
[0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
...],
[0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
...],
[0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
...],
[0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
...],
[0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
...],
[0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
...],
[0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
...],
[0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
...],
[0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
...],
[0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
...],
[0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
...],
[0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
...],
[0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
...],
[0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
...],
[0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
...],
[0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
...],
[0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
...],
[0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
...],
[0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
...]]
# Bag of Words
# It will be used the library scikit learn to calculate the density (reptitions) of the words in the corpus
from sklearn.feature_extraction.text import CountVectorizer
count_vect = CountVectorizer()
#Build a BOW representation
x_train_bow_testa = count_vect.fit_transform(X_train)
x_test_bow_testa = count_vect.transform(X_test)
print('The vocab', count_vect.vocabulary_)
#BOW of the first tweet
print('First tweet', x_train_bow_testa[0].toarray())
#Representation using the vocab created
temp = count_vect.transform(['wtf trying to buy dog food amp everything out of stock online amp instore what is wrong with people this is so unfair'])
print('BOW representation of the first tweet', temp.toarray())The vocab {'im': 16505, 'fucking': 13579, 'calling': 5796, 'it': 17499, 'now': 22844, 'covid': 8330, '19': 361, 'isnt': 17456, 'gonna': 14366, 'kill': 18370, 'since': 29781, 'we': 35516, 're': 26670, 'all': 2396, 'eachother': 10842, 'due': 10725, 'to': 33100, 'food': 13073, 'shortage': 29559, 'the': 32655, 'panic': 24019, 'is': 17421, 'go': 14283, 'from': 13520, 'mere': 20849, 'virus': 35105, 'out': 23635, 'apocalypse': 2911, 'how': 16034, 'shit': 29453, 'going': 14332, 'right': 27765, 'you': 36624, 'cause': 6200, 'damn': 8963, 'downfall': 10521, 'agreed': 2165, 'can': 5856, 'tell': 32456, 'have': 15233, 'better': 4410, 'chance': 6429, 'of': 23143, 'dying': 10822, 'driving': 10638, 'grocery': 14694, 'store': 31314, 'hoard': 15720, 'tp': 33371, 'than': 32590, 'hosted': 15965, 'webinar': 35583, 'with': 36101, 'three': 32900, 'procurement': 25709, 'thought': 32885, 'leader': 18975, 'across': 1813, 'pharma': 24658, 'consumer': 7707, 'telco': 32427, 'and': 2692, 'automotive': 3544, 'this': 32843, 'week': 35614, 'discus': 10062, 'what': 35780, 'effect': 11080, 'will': 35997, 'on': 23310, 'in': 16669, 'wake': 35297, 'are': 3069, 'working': 36233, 'agency': 2128, 'secure': 28949, 'access': 1717, 'allotment': 2431, 'ensure': 11513, 'get': 14025, 'cattle': 6191, 'sheep': 29367, 'market': 20311, 'plate': 24926, 'additional': 1880, 'detail': 9665, 'be': 4112, 'shared': 29321, 'they': 32795, 'become': 4175, 'available': 3564, 'please': 24966, 'reach': 26674, 'question': 26323, 'or': 23500, 'concern': 7513, 'hello': 15444, 'complete': 7455, 'moron': 21502, 'then': 32722, 'these': 32767, 'word': 36206, 'for': 13184, 'man': 20158, 'charged': 6476, 'uk': 34040, 'selling': 29064, 'fake': 12250, 'kit': 18432, 'around': 3134, 'world': 36257, 'not': 22750, 'where': 35831, 'were': 35695, 'our': 23629, 'technology': 32390, 'still': 31157, 'fall': 12262, 'short': 29558, 'resource': 27414, 'sufficient': 31607, 'handle': 15043, 'challenge': 6417, 'lack': 18724, 'bank': 3890, 'inventory': 17291, 'stock': 31201, 'feed': 12498, 'people': 24447, 'no': 22573, 'toilet': 33141, 'paper': 24064, 'napkin': 22008, 'towel': 33357, 'following': 13059, 'limpopo': 19312, 'premier': 25477, 'visit': 35124, 'thohoyandou': 32867, 'today': 33112, 'shoprite': 29548, 'forced': 13196, 'close': 7022, 'adhering': 1907, 'lockdown': 19508, 'rule': 28128, 'madina': 19958, 'supermarket': 31739, 'wa': 35259, 'caught': 6198, 'sanitizers': 28470, 'reported': 27277, 'that': 32644, 'thulamela': 32940, 'municipality': 21755, 'had': 14913, 'purchased': 26090, 'rt': 28084, 'aston': 3332, 'nechells': 22212, 'foodbank': 13081, 'currently': 8765, 'experiencing': 12027, 'increased': 16747, 'demand': 9444, 'supply': 31789, 'help': 15449, 'if': 16397, 'continue': 7812, 'donate': 10395, 'throughout': 32923, 'ongoing': 23341, 'social': 30192, 'distancing': 10186, 'measure': 20643, 'converting': 7874, 'distillery': 10194, 'factory': 12207, 'producing': 25716, 'needed': 22220, 'hand': 15028, 'sanitizer': 28468, 'daily': 8911, 'voice': 35181, 'one': 23321, 'arrive': 3150, 'your': 36643, 'inbox': 16689, 'do': 10300, 'click': 6980, 'txsu': 33946, 'student': 31463, 'ha': 14895, 'work': 36213, 'doubled': 10495, 'being': 4259, 'online': 23347, 'just': 17973, 'me': 20613, 'like': 19283, 'feel': 12522, 'getting': 14048, 'more': 21479, 'usual': 34671, '2019': 487, 'best': 4385, 'friend': 13494, 'hide': 15589, 'body': 4863, '2020': 491, 'give': 14158, 'while': 35857, 'appreciate': 2982, 'latter': 18900, 'don': 10390, 'think': 32819, 'll': 19440, 'ever': 11839, 'meet': 20727, 'keith': 18219, 'way': 35498, 'oh': 23194, 'toiletpapercrisis': 33155, 'toiletpaperapocalypse': 33146, 'toiletpaper': 33144, 'shaky': 29281, 'ground': 14733, 'business': 5592, 'grind': 14672, 'down': 10519, 'because': 4168, 'hear': 15360, 'about': 1646, 'confidence': 7565, 'listen': 19364, 'here': 15533, 'at': 3349, '20': 456, 'able': 1632, 'procure': 25707, 'pack': 23868, 'puff': 26045, 'bag': 3776, 'flour': 12983, 'bar': 3915, 'soap': 30166, 'so': 30157, 'playing': 24946, 'lottery': 19695, 'tonight': 33228, 'wait': 35282, 'even': 11830, 'thing': 32813, 'happens': 15106, 'socialdistancing': 30202, 'report': 27275, 'created': 8458, 'hub': 16083, 'obtain': 23078, 'reliable': 27120, 'information': 16923, 'covering': 8319, 'health': 15315, 'home': 15800, 'routine': 28046, 'tech': 32372, 'exercise': 11968, 'politics': 25128, 'aside': 3245, 'incredible': 16751, 'response': 27446, 'critical': 8546, 'time': 33007, 'wow': 36322, 'everyone': 11855, 'seems': 28988, 'key': 18287, 'worker': 36219, 'day': 9097, 'delivery': 9423, 'driver': 10631, 'dog': 10339, 'walker': 35316, 'vape': 34802, 'shop': 29492, 'manager': 20163, 'staff': 30803, 'petrol': 24613, 'station': 30920, 'list': 19362, 'endless': 11405, 'keyworkersonly': 18298, 'stayhome': 30975, 'washyourhands': 35445, 'should': 29580, 'car': 5979, 'insurance': 17130, 'cost': 8197, 'le': 18971, 'stay': 30939, 'group': 14740, 'say': 28636, 'yes': 36572, 'risk': 27822, 'via': 34976, 'bringing': 5309, 'into': 17252, 'after': 2088, 've': 34856, 'taken': 32163, 'walk': 35313, 'having': 15241, 'local': 19482, 'when': 35823, 'open': 23427, 'otherwise': 23611, 'there': 32751, 'staple': 30860, 'anyone': 2868, 'done': 10403, 'sum': 31641, 'congress': 7611, 'urge': 34585, 'narendra': 22016, 'modi': 21313, 'government': 14474, 'share': 29318, 'profit': 25736, 'low': 19737, 'crude': 8617, 'oil': 23209, 'price': 25583, 'during': 10782, 'coronavirus': 8130, 'pti': 26003, 'brought': 5379, 'up': 34512, 'fact': 12201, 'jacking': 17580, 'everything': 11862, 'rate': 26615, 'remains': 27151, 'unchanged': 34142, 'despite': 9640, 'currency': 8760, 'crash': 8425, 'drop': 10646, 'announced': 2785, 'by': 5692, 'russia': 28175, 'ahk': 2196, 'liveticker': 19421, 'check': 6536, 'important': 16616, 'alert': 2344, 'incoming': 16722, 'economic': 10990, 'relief': 27125, 'payment': 24301, 'educate': 11058, 'yourself': 36657, 'prey': 25579, 'scammer': 28675, 'trick': 33593, 'my': 21832, 'buying': 5667, 'year': 36538, 'worth': 36307, 'cleaning': 6936, 'selfish': 29030, 'idiot': 16376, 'ashamed': 3226, 'news': 22363, 'nyc': 22973, 'pantry': 24054, 'pandemic': 23986, 'published': 26034, 'outbreak': 23640, 'unprecedented': 34414, 'collapse': 7214, 'service': 29183, 'forex': 13228, 'trading': 33425, 'melbourne': 20762, 'pick': 24748, 'grandmother': 14543, 'hospital': 15951, 'need': 22219, 'wear': 35536, 'mask': 20416, 'glove': 14248, 'stopthespread': 31304, 'stoppanicbuying': 31284, 'thank': 32594, 'solution': 30315, 'automates': 3538, 'co': 7105, 'branded': 5157, 'invitation': 17318, 'eligible': 11210, 'upgrade': 34527, 'candidate': 5885, 'drive': 10629, 'well': 35668, 'those': 32881, 'dealer': 9159, 'database': 9042, 'citizensadvice': 6831, 'responded': 27438, 'financialconductauthority': 12703, 'announcement': 2786, 'series': 29167, 'temporary': 32471, 'credit': 8475, 'card': 5993, 'some': 30327, 'other': 23607, 'term': 32511, 'debt': 9197, 'light': 19273, 'novel': 22833, 'transportation': 33505, 'skyrocketing': 29923, 'nigeria': 22487, 'who': 35908, 'offend': 23151, 'curious': 8757, 'real': 26705, 'estate': 11721, 'impacted': 16579, 'learn': 18998, 'insight': 17048, 'team': 32339, 'new': 22329, 'yorkers': 36619, 'asking': 3263, 'clue': 7066, 'past': 24206, 'recession': 26818, 'nycrealestate': 22979, 'realestate': 26707, 'farmer': 12328, 'warned': 35403, 'livestock': 19418, 'machinery': 19920, 'protected': 25888, 'thief': 32803, 'try': 33762, 'cash': 6119, 'amid': 2594, 'crisis': 8537, 'fill': 12666, 'take': 32155, 'fuel': 13602, 'likely': 19290, 'effected': 11081, 'explains': 12044, 'mean': 20629, 'filling': 12670, 'slowing': 29999, 'inside': 17042, 'increase': 16746, 'transmission': 33494, 'strategy': 31372, 'good': 14371, 'managing': 20165, 'extended': 12088, 'period': 24506, 'contact': 7759, 'queue': 26329, 'footfall': 13174, 'public': 26014, 'space': 30460, 'obamacare': 23032, 'consolidation': 7675, 'raising': 26490, 'patient': 24243, 'australia': 3503, 'prime': 25615, 'minister': 21121, 'stop': 31258, 'hoarding': 15727, 'shopper': 29531, 'country': 8272, 'empty': 11357, 'shelf': 29383, 'growing': 14750, 'over': 23710, 'rapid': 26596, 'spread': 30678, 'which': 35853, 'infected': 16880, 'nearly': 22199, '180': 341, '00': 0, 'worldwide': 36286, 'before': 4220, 'helped': 15453, 'distribute': 10215, 'emergency': 11283, 'an': 2657, 'average': 3577, '160': 302, 'household': 16006, 'month': 21436, 'figure': 12652, 'already': 2474, 'stand': 30843, 'total': 33300, '441': 954, 'struggling': 31453, 'keep': 18181, 'running': 28148, 'kind': 18388, 'situation': 29840, 'gun': 14846, 'correct': 8165, 'answer': 2806, 'won': 36169, 'water': 35477, 'order': 23512, 'toliet': 33200, 'see': 28975, 'any': 2863, 'reason': 26766, 'firearm': 12773, 'but': 5625, 'only': 23376, 'beginning': 4233, 'die': 9820, 'idea': 16355, 'end': 11391, 'hundred': 16159, 'thousand': 32890, 'son': 30351, 'essential': 11695, 'provider': 25941, 'practice': 25367, 'serious': 29170, 'deep': 9276, 'colorado': 7253, 'ag': 2105, 'vow': 35222, 'investigate': 17300, 'promise': 25797, 'refund': 26996, 'deliver': 9415, 'remember': 27164, 'muppets': 21763, 'went': 35691, 'few': 12578, 'back': 3718, 'acting': 1821, 'animal': 2750, 'looking': 19640, 'themselves': 32721, 'probably': 25686, 'avoid': 3594, 'madness': 19964, 'cardiff': 6001, 'central': 6325, 'fresh': 13465, 'fish': 12808, 'poultry': 25306, 'plus': 25020, 'stall': 30833, 'meat': 20647, 'fruit': 13541, 'veg': 34863, 'much': 21675, 'come': 7288, 'tomorrow': 33221, '8am': 1445, '15pm': 299, '02920': 54, '229202': 577, 'behavior': 4242, 'forget': 13237, 'meal': 20620, 'restaurant': 27463, 'them': 32714, 'without': 36115, 'exposing': 12077, 'community': 7387, 'infection': 16882, 'reduce': 26927, 'disruption': 10165, 'distribution': 10219, 'too': 33232, 'c4news': 5706, 'am': 2520, 'furious': 13671, 'doctor': 10313, 'spreading': 30681, 'lie': 19237, 'why': 35938, 'enough': 11490, 'tweet': 33903, 'logic': 19582, 'prediciton': 25444, 'boost': 4966, 'bored': 4991, 'quarantined': 26258, 'buyer': 5661, 'till': 32998, 'sofa': 30260, '15': 275, 'shopping': 29537, 'crush': 8635, 'retail': 27514, 'long': 19617, 'passed': 24193, 'resident': 27378, 'sanfrancisco': 28444, 'leave': 19016, 'appointment': 2981, 'run': 28142, 'strictest': 31414, 'policy': 25113, 'enacted': 11376, 'match': 20479, 'current': 8763, 'italy': 17505, '2nd': 724, 'hardest': 15143, 'hit': 15681, 'every': 11846, 'shift': 29426, 'lead': 18974, 'living': 19425, 'different': 9840, 'great': 14599, 'depression': 9556, 'defined': 9327, 'habit': 14903, 'decade': 9207, 'hyperinflation': 16260, 'wwii': 36422, 'haunt': 15224, 'german': 14002, 'nofood': 22601, 'toiletpapershortage': 33174, 'love': 19714, 'neighbor': 22251, 'together': 33123, 'couple': 8283, 'opened': 23430, 'free': 13414, 'earlier': 10853, 'support': 31799, 'family': 12283, 'nashville': 22035, 'paisley': 23924, 'mobilize': 21284, 'elderly': 11159, 'area': 3070, 'saying': 28641, 'sick': 29665, 'test': 32544, 'ill': 16471, 'until': 34482, 'two': 33938, 'tested': 32546, 'esp': 11678, 'cashier': 6128, 'gas': 13824, 'attendant': 3411, 'ship': 29444, 'goabay': 14285, 'goodsfromindia': 14395, 'aurveda': 3476, 'buyonlinefromindia': 5675, 'india': 16776, 'dock': 10308, 'operator': 23451, 'owner': 23822, 'winnigas': 36051, 'inquiry': 17028, 'post': 25258, 'boater': 4843, 'lakewinnipesaukee': 18764, 'lakelife': 18760, 'nh': 22431, 'boating': 4844, 'police': 25106, 'advice': 2005, 'someone': 30334, 'lean': 18989, 'shoulder': 29582, 'breathing': 5229, 'face': 12172, 'allowed': 2435, 'gift': 14111, 'him': 15637, 'knuckle': 18520, 'sandwich': 28440, 'cuyahoga': 8835, 'county': 8280, 'department': 9517, 'affair': 2042, 'warning': 35405, 'scam': 28668, 'related': 27088, 'stimulus': 31170, 'pharmacy': 24665, 'thermometer': 32763, 'also': 2479, 'protection': 25893, 'include': 16713, 'paracetamol': 24081, '16pk': 321, 'door': 10465, 'kenyan': 18254, 'startup': 30886, 'launch': 18912, 'ai': 2209, 'data': 9040, 'driven': 10630, 'platform': 24929, 'curb': 8744, 'healthtech': 15342, 'startuos': 30885, 'innovation': 17013, 'africa': 2076, 'blockchain': 4752, 'prompt': 25811, 'law': 18929, 'queensland': 26307, 'restock': 27471, 'hour': 15998, 'abc': 1598, 'australian': 3505, 'broadcasting': 5338, 'corporation': 8159, 'piling': 24797, 'booze': 4977, 'luck': 19786, 'wiping': 36068, 'arse': 3163, 'though': 32884, 'same': 28395, 'folk': 13051, 'bought': 5052, 'mountain': 21576, 'bog': 4870, 'roll': 27958, 'coronacrisis': 8026, 'dontpanicbuy': 10438, 'r102m': 26387, 'pay': 24289, 'bonus': 4937, 'imagine': 16515, 'tattoo': 32284, 'art': 3171, 'lysol': 19890, 'rose': 28004, 'happy': 15111, 'monday': 21379, 'financial': 12701, 'opec': 23422, 'output': 23684, 'cut': 8821, 'fluctuate': 12996, 'decline': 9243, 'dollar': 10366, 'slip': 29980, 'coming': 7317, 'soon': 30366, 'dia': 9768, 'spy': 30727, 'qq': 26200, 'cl': 6862, 'overcame': 23723, 'decided': 9225, 'put': 26138, 'their': 32704, 'workforce': 36227, 'first': 12793, 'evident': 11877, 'move': 21589, 'entrepreneur': 11545, 'fineos': 12739, 'announces': 2787, 'paid': 23901, 'calculator': 5765, 'answering': 2808, 'amount': 2624, 'might': 21013, 'apply': 2976, 'cautious': 6209, 'product': 25717, 'claim': 6864, 'prevent': 25564, 'treat': 33561, 'diagnose': 9773, 'cure': 8751, 'suspect': 31920, 'email': 11249, 'fraudstoppers': 13390, 'ok': 23241, 'gov': 14460, 'thread': 32893, 'checking': 6541, 'underscore': 34207, 'weight': 35640, 'start': 30878, 'fighting': 12646, 'emotion': 11314, 'sharing': 29332, 'reading': 26694, 'laterally': 18881, 'amp': 2626, 'verifying': 34935, 'source': 30407, 'senior': 29111, 'allow': 2433, 'ppl': 25359, 'safely': 28282, 'south': 30416, 'bay': 4053, 'chain': 6403, 'zanotto': 36726, 'implement': 16598, 'precaution': 25422, 'manufacturer': 20243, 'portal': 25212, 'been': 4202, 'latest': 18883, 'else': 11243, 'cool': 7908, 'hangout': 15083, 'always': 2512, 'busy': 5624, 'stayathomeandstaysafe': 30943, 'stayhomefornevada': 30984, 'socialdistance': 30200, 'very': 34960, 'worried': 36290, 'wearing': 35565, 'continually': 7810, 'sanitize': 28464, 'sure': 31850, 'protect': 25883, 'contracting': 7825, 'trouble': 33649, 'concentrating': 7509, 'sleeping': 29956, 'fraudsters': 13389, 'swindler': 32017, 'making': 20107, 'huge': 16107, 'misery': 21161, 'corona': 7999, 'victim': 34993, 'coronavillains': 8124, 'medical': 20681, 'arbitrage': 3047, 'horde': 15925, 'middleman': 20993, 'profiteer': 25742, 'dramatically': 10579, 'increasing': 16749, 'n95s': 21916, 'zero': 36762, 'hedge': 15400, 'global': 14220, 'catalyst': 6160, 'radical': 26442, 'gilbert': 14126, 'mercier': 20844, 'speaks': 30510, 'chronicle': 6760, 'glad': 14184, 'loblaws': 19479, 'superstore': 31773, 'frill': 13506, 'etc': 11743, 'taking': 32177, 'step': 31091, 'canada': 5857, 'coup': 8281, 'war': 35379, 'may': 20536, 'aimed': 2220, 'shale': 29283, 'benchmark': 4307, 'fallen': 12264, 'below': 4301, '10': 128, 'barrel': 3960, 'oott': 23417, 'convert': 7872, 'lunch': 19819, 'money': 21397, 'multiply': 21728, 'snack': 30096, 'feeding': 12504, 'child': 6636, 'biggest': 4510, 'refrigerator': 26993, 'tired': 33051, 'juice': 17937, 'danger': 8989, 'worse': 36296, 'recap': 26801, 'sentiment': 29139, 'estimate': 11729, 'weekly': 35617, 'update': 34518, 'mg': 20924, 'gold': 14339, 'safe': 28274, 'haven': 15236, 'investment': 17310, 'outlook': 23673, 'mildly': 21037, 'bullish': 5505, 'high': 15595, '1900': 363, '2021': 499, 'higher': 15596, '200': 457, 'per': 24476, 'oz': 23841, 'know': 18509, 'cunt': 8727, 'moaned': 21262, 'brexit': 5261, 'stayathome': 30942, 'china': 6657, 'role': 27955, 'wildlife': 35989, 'trade': 33413, 'under': 34177, 'greater': 14603, 'scrutiny': 28858, 'whether': 35849, 'pushing': 26133, 'entire': 11537, 'specie': 30526, 'brink': 5312, 'extinction': 12104, 'farm': 12322, 'endangered': 11393, 'prc': 25412, 'principal': 25629, 'silly': 29743, 'american': 2580, 'anything': 2870, 'hoarder': 15723, 'greenchile': 14622, 'nm': 22562, 'texas': 32560, 'heal': 15309, 'worship': 36301, 'song': 30355, 'playlist': 24947, 'ghaad': 14070, 'kinda': 18389, 'evaluating': 11816, 'whole': 35914, 'life': 19241, 'hays': 15259, 'corner': 7978, 'advantage': 1989, 'fear': 12464, 'cdc': 6258, 'flu': 12995, 'trend': 33573, 'attorney': 3425, 'michael': 20944, 'bailey': 3798, 'az': 3660, 'covid019': 8331, 'fraud': 13386, 'task': 32265, 'force': 13195, 'received': 26808, 'almost': 2453, '12k': 226, 'complaint': 7453, 'loss': 19686, '39m': 859, 'kudos': 18635, 'frontline': 13527, 'especially': 11681, 'nurse': 22923, 'wore': 36212, 'facemask': 12180, 'got': 14439, 'anxiety': 2858, 'pray': 25395, 'founded': 13322, 'star': 30863, 'brad': 5126, 'actress': 1842, 'kimberly': 18384, 'williams': 36004, 'throng': 32918, 'mulund': 21735, 'flouting': 12988, 'top': 33245, 'echoed': 10959, 'ppe': 25353, 'equipment': 11614, 'skyrocket': 29921, 'fan': 12293, 'bed': 4183, 'trump': 33681, 'mass': 20446, 'production': 25719, 'ago': 2157, 'save': 28595, 'did': 9813, 'gen': 13927, 'igen': 16417, 'affected': 2044, 'never': 22322, 'engage': 11452, 'activity': 1835, 'large': 18839, 'gathering': 13846, 'school': 28749, 'mandate': 20177, 'education': 11062, 'case': 6114, 'study': 31471, 'bango': 3884, 'quantifies': 26230, 'read': 26686, 'blog': 4757, 'provides': 25942, 'spend': 30559, 'forecast': 13206, 'based': 3987, 'initially': 16977, 'appdevelopers': 2938, 'appmarketing': 2978, 'mobilegames': 21276, 'birth': 4610, 'sh': 29249, 'lf': 19181, 'stable': 30793, 'greedily': 14612, 'person': 24550, 'action': 1822, 'consideration': 7660, 'others': 23608, 'chinese': 6672, 'lol': 19601, 'gasoline': 13831, 'yeah': 36536, 'clown': 7054, 'let': 19126, 'applaud': 2954, 'unsung': 34467, 'hero': 15548, 'tough': 33329, 'kirana': 18416, 'must': 21801, 'article': 3177, 'kiranastores': 18417, 'yost': 36623, 'warns': 35406, 'keen': 18178, 'wonder': 36170, 'many': 20252, 'carried': 6086, 'baby': 3697, 'self': 29017, 'isolating': 17464, 'least': 19013, 'another': 2802, 'yet': 36578, 'slot': 29992, 'collect': 7225, 'april': 3017, '1st': 451, 'live': 19403, '45': 959, 'min': 21081, 'neighbour': 22254, 'big': 4499, 'ask': 3253, 'supposed': 31830, 'changed': 6441, 'behaviour': 4245, 'lagosians': 18744, 'both': 5038, 'robbersvirus': 27893, 'robbery': 27894, 'everywhere': 11868, 'citizen': 6830, 'turning': 33873, 'vigilatees': 35033, 'nomoney': 22631, 'nopeaceofmind': 22675, 'cc': 6235, 'rise': 27807, 'warn': 35401, 'expert': 12032, 'double': 10494, 'whammy': 35777, 'erratic': 11648, 'rainfall': 26481, 'hammering': 15006, 'latin': 18891, 'economy': 11008, 'latam': 18869, 'plan': 24900, 'trip': 33618, 'mostly': 21535, 'talk': 32189, 'myself': 21873, 'doing': 10353, 'really': 26739, 'want': 35370, 'outside': 23690, 'bad': 3755, 'allergy': 2414, 'limited': 19307, 'tissue': 33059, 'hard': 15139, 'cbd': 6218, 'cannot': 5913, 'symptom': 32074, 'relieve': 27130, 'immune': 16560, 'system': 32099, 'act': 1817, 'natural': 22079, 'angelic': 2730, 'reduced': 26928, 'difficult': 9848, 'twitter': 33929, 'confirm': 7577, 'woolies': 36201, 'would': 36315, 'coronaaustralia': 8006, 'caused': 6201, 'robotics': 27909, 'accelerate': 1704, 'according': 1740, 'lesley': 19114, 'rohrbaugh': 27950, 'director': 9964, 'research': 27346, 'association': 3314, 'truly': 33679, 'heartbreaking': 15369, 'video': 35004, 'upset': 34555, 'everytime': 11866, 'such': 31580, 'hope': 15912, 'she': 29359, 'shown': 29601, 'lot': 19688, 'compassion': 7420, 'finally': 12695, 'found': 13319, 'provision': 25949, 'doitfordawn': 10357, 'allah': 2397, 'bring': 5304, 'blessing': 4722, 'effortlessly': 11093, 'recover': 26858, 'slow': 29995, 'cleaner': 6932, 'armed': 3115, 'whoever': 35913, 'he': 15292, 'saved': 28597, 'humanity': 16129, 'plenty': 24982, 'alarmed': 2300, 'supplier': 31787, 'retailer': 27526, 'surging': 31867, 'insist': 17052, 'strong': 31439, 'panicbuying': 24025, 'kaikohe': 18036, 'testing': 32553, 'positive': 25242, 'keine': 18218, 'wertgegenst': 35702, 'nde': 22180, 'fahrzeug': 12219, 'lassen': 18850, 'diesen': 9831, 'tipp': 33043, 'sollte': 30311, 'besten': 4388, 'immer': 16550, 'nicht': 22464, 'nur': 22920, 'zeiten': 36746, 'von': 35200, 'befolgen': 4218, 'rselen': 28079, 'wurde': 36404, 'scheibe': 28729, 'eines': 11135, 'pkw': 24884, 'eingeschlagen': 11136, 'mehrere': 20745, 'rollen': 27964, 'klopapier': 18476, 'gestohlen': 14021, 'happyeaster': 15117, 'chocolate': 6710, 'flower': 12990, 'instead': 17103, 'homeessentials': 15823, 'appreciated': 2983, 'clorox': 7020, 'bleach': 4707, 'evelynperezlarin': 11829, 'realtor': 26752, 'miami': 20940, 'fortuneinternationalrealty': 13297, 'canvasmiami': 5934, 'weareinthistogether': 35553, 'recent': 26812, 'focus': 13032, 'mintel': 21137, 'discovered': 10047, 'canadian': 5860, '54': 1089, 'percent': 24479, 'wash': 35422, 'frequently': 13461, 'heb': 15397, 'managed': 20161, 'prepared': 25490, 'turn': 33869, 'started': 30880, 'talking': 32191, 'january': 17650, 'began': 4226, 'wargaming': 35391, 'simulation': 29773, 'feb': 12479, 'closed': 7024, 'domestic': 10378, 'international': 17205, 'travel': 33527, 'banned': 3906, 'rocket': 27925, 'science': 28770, 'chinaliedpeopledie': 6662, 'mahavir': 20019, 'temple': 32469, 'trust': 33746, 'crore': 8583, 'mahamaya': 20012, 'lac': 18721, 'tibetan': 32960, 'baudhist': 4050, 'donating': 10398, 'giving': 14176, 'christianmissionaries': 6749, 'muslim': 21799, 'nothing': 22778, 'hindu': 15649, 'hindutva': 15652, 'disaster': 10002, 'disease': 10067, 'capitalism': 5949, 'produce': 25713, 'future': 13692, 'thru': 32931, 'job': 17804, 'hold': 15764, 'cbc': 6216, 'early': 10855, 'morning': 21498, 'limit': 19304, 'took': 33233, 'bc': 4091, 'hopefully': 15915, 'some1': 30328, 'approve': 3000, 'wise': 36084, 'decision': 9230, 'counter': 8254, 'depleting': 9535, 'city': 6834, 'tehachapi': 32419, 'page': 23897, 'including': 16717, 'offering': 23162, 'takeout': 32166, 'medium': 20711, 'advisory': 2014, 'bureau': 5539, 'xauusd': 36443, 'gc': 13884, 'glds': 14202, 'investor': 17313, 'refuge': 26994, 'safer': 28283, 'asset': 3300, 'fueled': 13603, 'sell': 29060, 'off': 23148, 'analyst': 2668, 'level': 19158, 'could': 8234, 'push': 26130, 'above': 1648, 'unnecessary': 34396, 'movement': 21592, 'enjoy': 11474, 'convenience': 7858, 'regularly': 27040, 'touching': 33321, 'nose': 22737, 'mouth': 21585, 'eye': 12137, 'coronavid19': 8123, 'kenya': 18253, 'index': 16774, 'fell': 12533, 'worsened': 36298, 'trying': 33765, 'spent': 30563, '30minutes': 764, 'website': 35588, 'site': 29832, 'seize': 29004, 'removed': 27190, 'cart': 6095, 'suppose': 31829, 'fail': 12220, 'quarantine': 26241, 'opening': 23434, 'commissioner': 7352, 'choice': 6715, 'sketchy': 29873, 'clean': 6928, 'line': 19319, 'difference': 9839, 'between': 4419, 'accept': 1711, 'paypal': 24308, 'usd': 34621, 'sketch': 29865, 'flat': 12887, 'color': 7251, 'shaded': 29257, '40': 905, 'mini': 21103, 'bg': 4442, '65': 1214, 'struggle': 31450, 'survive': 31900, 'add': 1872, 'burden': 5535, 'point': 25080, 'domino': 10388, 'healthemergency': 15333, 'supplychain': 31791, 'shut': 29632, 'crack': 8388, 'liquidity': 19353, 'shock': 29474, 'unemployment': 34252, '2x': 740, 'spx': 30725, 'bond': 4919, 'sbc': 28646, '3x': 903, 'fight': 12630, 'against': 2109, 'noval': 22830, 'safeguard': 28278, 'protective': 25895, '50': 1036, 'dhgate': 9758, 'onlineshopping': 23372, 'jueves': 17932, 'de': 9146, 'abril': 1656, 'buenas': 5458, 'tardes': 32247, 'mi': 20936, '041': 70, 'seguidores': 28999, 'en': 11368, 'desde': 9600, 'panam': 23966, 'thursday': 32948, 'april2nd': 3019, 'afternoon': 2096, 'follower': 13057, 'panama': 23967, 'everybody': 11848, 'cascara': 6113, 'instagram': 17087, 'qom': 26197, 'reportedly': 27278, 'diagnosed': 9774, 'said': 28320, 'blaming': 4684, 'iranian': 17376, 'official': 23168, 'responsibility': 27448, 'unfortunately': 34284, 'commission': 7350, 'digital': 9859, 'artwork': 3196, 'interested': 17183, 'amandahester': 2524, 'unt': 34477, 'edu': 11056, 'continues': 7814, 'fightcoronavirus': 12638, 'fightwithcoronavirus': 12649, 'vapesafe': 34811, 'vapeon': 34808, 'vapehealthy': 34805, 'vapelyfe': 34807, 'vapefam': 34804, 'vaping': 34813, 'vapor': 34814, 'vapedaily': 34803, 'vapelove': 34806, 'everzon': 11869, 'chased': 6501, 'away': 3624, 'rental': 27216, 'house': 16002, 'denying': 9513, 'inthe': 17241, 'african': 2079, 'young': 36638, 'feeling': 12524, 'affecting': 2045, 'mentalhealth': 20811, 'watch': 35468, 'look': 19633, '90': 1459, 'selfcare': 29018, 'told': 33195, 'anxious': 2861, 'region': 27020, 'swiftly': 32006, 'contain': 7766, 'minimise': 21109, 'mitigate': 21209, 'build': 5477, 'capability': 5939, 'roughly': 28033, '600': 1172, 'leisure': 19079, 'spending': 30561, 'priority': 25651, 'noticed': 22783, 'music': 21789, 'blaring': 4693, 'several': 29218, 'window': 36027, 'selfisolating': 29040, 'taste': 32273, 'maybe': 20539, 'headphone': 15304, 'govt': 14489, 'niceneighbour': 22458, 'niceneighbor': 22457, 'listening': 19367, 'heartbroken': 15370, 'parent': 24118, 'leilani': 19076, 'jordan': 17872, 'given': 14170, 'hydroxychloroquine': 16233, 'avail': 3561, 'disabled': 9980, 'front': 13523, 'giant': 14102, 'walmart': 35335, 'wegmans': 35630, 'failed': 12221, 'provide': 25938, 'enforce': 11444, 'strict': 31412, 'sale': 28351, 'identify': 16366, 'excess': 11934, 'stockpile': 31220, 'confiscated': 7584, 'compensation': 7430, 'largely': 18840, 'relies': 27129, 'proactive': 25681, 'boris': 4999, 'johnson': 17845, 'stophoarding': 31277, 'closure': 7040, 'mount': 21575, 'age': 2119, 'cre': 8449, 'continuing': 7815, 'closely': 7025, 'monitor': 21414, 'seeing': 28980, 'gropods': 14724, 'safety': 28291, 'desire': 9623, 'reliant': 27123, 'march': 20269, 'monthly': 21438, 'newsletter': 22373, 'scary': 28706, 'next': 22405, 'blatant': 4699, 'medicare': 20695, 'shitty': 29467, 'earth': 10870, 'planet': 24904, 'manger': 20194, 'kept': 18257, 'sister': 29828, '34': 800, 'although': 2497, 'number': 22907, 'slightly': 29975, 'indicative': 16805, 'unusually': 34490, 'transaction': 33463, 'size': 29852, 'stockpiling': 31224, 'ready': 26698, 'chicken': 6627, 'caregiving': 6021, 'mom': 21361, 'staying': 31008, 'keeping': 18197, 'wide': 35955, 'waiting': 35285, 'hoping': 15918, 'u2release': 33975, 'u2community': 33973, 'u2foru': 33974, 'whose': 35930, 'garage': 13796, 'full': 13626, 'anticipation': 2829, 'use': 34632, 'includes': 16715, 'wipe': 36062, 'sheet': 29373, 'killed': 18372, 'eat': 10911, 'little': 19389, 'cant': 5921, 'freak': 13398, 'extra': 12113, 'mine': 21094, 'walking': 35318, 'mile': 21038, 'carrying': 6091, 'old': 23257, 'git': 14153, 'knackered': 18488, 'torybritain': 33292, 'drove': 10654, 'absolutely': 1667, 'disgusted': 10079, 'golf': 14353, 'link': 19332, 'rd': 26664, 'lidl': 19234, 'wednesday': 35605, 'charted': 6495, '80': 1358, 'her': 15518, 'bubble': 5434, 'ample': 2628, 'merlot': 20862, 'camembert': 5831, 'delight': 9404, 'ignorance': 16428, 'believe': 4282, 'dairy': 8930, 'milk': 21047, 'falling': 12265, 'exponentially': 12069, 'dump': 10746, 'break': 5206, 'heart': 15366, 'hurt': 16193, 'wondering': 36175, 'affect': 2043, 'find': 12730, 'info': 16915, 'preparedness': 25491, 'shipping': 29448, 'often': 23184, 'security': 28956, 'tip': 33042, 'apple': 2960, 'lineup': 19324, 'iphone': 17353, 'left': 19039, 'buy': 5650, 'canned': 5908, 'tuna': 33840, 'coldpressedoil': 7199, 'chekkuoil': 6570, 'standardcoldpressedoil': 30846, 'fed': 12486, 'finishing': 12752, 'parcel': 24109, 'older': 23259, 'cancer': 5881, 'make': 20086, 'cry': 8644, 'mma': 21238, 'imma': 16543, 'straight': 31346, 'eastern': 10897, 'north': 22703, 'carolina': 6065, 'sparked': 30488, 'org': 23532, 'foodsafety': 13134, 'stressing': 31405, 'foodborne': 13088, 'illness': 16484, 'foodindustry': 13113, 'panicked': 24037, 'emptied': 11350, 'accumulate': 1755, 'saw': 28629, 'guy': 14876, 'paella': 23896, 'pi': 24741, 'ata': 3350, 'sombrero': 30326, 'hispanic': 15673, 'costing': 8211, 'million': 21064, 'alone': 2458, 'impact': 16578, 'easy': 10907, 'overlook': 23754, 'dismal': 10106, 'reality': 26730, 'producer': 25715, 'lockdown21': 19512, 'wtf': 36372, 'clothes': 7044, 'noni': 22646, 'katies': 18127, 'river': 27838, 'ect': 11019, 'preorders': 25485, 'seen': 28990, 'stuff': 31474, 'nail': 21949, 'gross': 14725, 'bossert': 5027, 'publishes': 26036, 'op': 23418, 'ed': 11023, 'advocate': 2018, 'contagion': 7764, 'development': 9712, 'compare': 7412, 'favorably': 12411, 'common': 7368, 'pretty': 25556, 'anyway': 2872, 'finish': 12750, 'ffs': 12592, 'tsavemyhandsfromthecookie': 33771, 'jar': 17655, 'waterstones': 35485, 'chief': 6633, 'exec': 11959, 'james': 17620, 'daunt': 9071, 'described': 9596, 'raised': 26488, 'member': 20777, 'utter': 34701, 'needle': 22226, 'gone': 14363, 'his': 15672, 'employee': 11341, 'dm': 10288, 'angry': 2742, 'bookseller': 4953, 'customer': 8798, 'sanitiser': 28458, 'quantity': 26234, 'lorri': 19672, 'conveniencestore': 7859, 'petrolforecourt': 24618, 'petrolstation': 24621, 'antibacterial': 2821, 'standard': 30845, 'voucher': 35220, 'designed': 9615, 'targeting': 32251, 'desperation': 9635, 'cloak': 7012, 'branding': 5163, 'popular': 25187, 'offer': 23158, 'second': 28934, 'carry': 6090, 'protecting': 25892, 'layer': 18950, 'travelling': 33540, 'rumor': 28139, 'require': 27326, 'scumbags': 28865, 'quite': 26367, 'simply': 29764, 'piece': 24773, 'thick': 32800, 'brain': 5137, 'cell': 6304, 'causing': 6203, 'literally': 19377, 'fuck': 13568, 'forever': 13226, 'toiletroll': 33182, 'notfakenews': 22766, 'rethink': 27572, 'adapt': 1860, 'socialize': 30226, 'change': 6439, 'vigilant': 35031, 'dc': 9132, 'abuse': 1685, 'exploitation': 12053, 'rely': 27146, 'mgmt': 20927, 'healthcare': 15321, 'loved': 19717, 'english': 11464, 'spanish': 30478, 'white': 35881, 'briefing': 5285, '25': 621, 'miss': 21177, 'opportunity': 23469, 'win': 36018, 'remarkable': 27156, 'participating': 24166, 'essay': 11689, 'competition': 7437, 'psychosocial': 25994, 'perspective': 24563, 'register': 27024, 'cutting': 8832, 'collapsing': 7218, 'plummeting': 25014, 'threaten': 32896, 'field': 12618, 'amazing': 2532, 'mind': 21083, 'discrediting': 10052, 'call': 5788, 'centre': 6334, 'telecom': 32430, 'engineer': 11459, 'infrastructure': 16935, 'examine': 11910, 'observation': 23060, 'leading': 18979, 'commerce': 7340, 'hong': 15879, 'kong': 18550, 'japan': 17651, 'korea': 18562, 'mrx': 21637, 'ecommerce': 10975, 'made': 19945, 'donation': 10399, 'through': 32922, 'panickbuyinguk': 24036, 'something': 30340, 'box': 5084, 'steal': 31061, 'perpetuate': 24534, 'clear': 6955, 'personal': 24552, 'send': 29096, 'mongolian': 21407, 'minfin': 21098, 'mn': 21245, 'loan': 19472, 'interest': 17181, 'postponed': 25283, 'rating': 26621, 'decreased': 9259, '12': 207, 'bn': 4823, 'splice': 30611, 'san': 28410, 'francisco': 13371, 'regarding': 27012, 'slowdown': 29996, 'cpl': 8374, 'philadelphia': 24677, 'btw': 5430, 'trumppandemic': 33721, 'gopbetrayedamerica': 14420, 'trumpfailedamerica': 33698, 'bloody': 4774, 'crazy': 8444, 'stuck': 31461, 'confirmed': 7580, 'book': 4944, 'anywhere': 2874, 'starvation': 30890, 'lowest': 19745, 'display': 10143, 'building': 5479, 'outdoors': 23650, 'indoor': 16829, 'spaced': 30462, 'certainly': 6356, 'pose': 25230, 'opinion': 23458, 'europe': 11792, 'rest': 27457, 'doe': 10335, 'alive': 2387, 'issue': 17488, 'gt': 14777, 'denmark': 9495, 'waited': 35283, 'yesterday': 36576, 'curbside': 8748, 'booked': 4946, 'kid': 18341, 'joke': 17856, 'lorry': 19673, 'hr': 16061, 'search': 28897, 'trolley': 33637, 'damage': 8955, 'unemployed': 34251, '100': 129, 'innocent': 17006, 'lost': 19687, 'negative': 22237, 'column': 7271, 'didn': 9816, 'immediate': 16545, 'markt': 20356, 'dow': 10515, 'jones': 17869, '6179': 1191, '21': 536, '23': 582, '390': 856, 'near': 22194, 'mumbai': 21739, 'mumbailockdown': 21743, '11': 179, 'asimanshidebut': 3249, 'coronainpakistan': 8058, 'blogging': 4762, 'bloggersrequired': 4760, 'filmtwitter': 12678, 'shopkeeper': 29512, 'immigrant': 16551, 'actor': 1838, 'teacher': 32335, 'celebrity': 6297, 'journalist': 17891, 'lefty': 19044, 'politician': 25124, 'moaning': 21263, 'sport': 30648, 'utility': 34690, 'preparing': 25494, 'rationing': 26629, 'clearly': 6964, 'aren': 3073, 'restocking': 27475, 'ocado': 23087, 'reconfiguring': 26845, 'nice': 22455, 'calm': 5804, 'chat': 6506, 'delighted': 9405, 'garden': 13804, 'entry': 11549, 'hse': 16073, 'gps': 14500, 'pharmacist': 24663, 'tesco': 32537, '00pm': 15, '17': 324, '13': 237, 'image': 16510, 'pasta': 24207, 'noodle': 22662, 'cereal': 6349, 'tea': 32332, 'unpublished': 34424, 'beer': 4204, 'trash': 33515, 'batch': 4017, 'cat': 6156, 'blond': 4765, 'potato': 25291, 'panicshopping': 24045, 'panicbuyinguk': 24027, 'bread': 5202, 'staysafestayhome': 31037, 'irelandlockdown': 17381, 'insane': 17031, 'normally': 22697, '270': 657, 'ridiculous': 27749, 'guelph': 14804, 'sundaythoughts': 31686, 'pricegouging': 25592, 'caroline': 6066, 'experience': 12025, 'reduction': 26936, 'rs15': 28069, 'liter': 19374, 'petroleum': 24615, 'approved': 3001, 'show': 29593, 'network': 22306, 'explosion': 12064, 'rocked': 27924, 'ferry': 12561, 'wirral': 36077, 'council': 8239, 'nosey': 22740, 'liverpool': 19415, 'littlewood': 19401, 'hollywood': 15786, '30pm': 768, 'bbc1': 4072, 'play': 24939, 'main': 20049, 'iran': 17375, 'hey': 15572, 'wrong': 36359, 'heard': 15361, 'hi': 15578, 'fargo': 12318, 'committed': 7358, 'helping': 15457, 'hardship': 15146, 'trained': 33446, 'specialist': 30518, 'lending': 19091, 'small': 30017, 'deposit': 9546, 'pet': 24583, 'canceled': 5870, 'autoship': 3553, 'ignorant': 16429, 'sometimes': 30344, 'suck': 31583, 'petfoodshortages': 24602, 'silver': 29744, 'lining': 19331, 'kidding': 18344, 'brutal': 5404, 'swear': 31981, 'dumb': 10738, 'condom': 7546, 'breed': 5232, 'chloroquine': 6704, 'earthquake': 10873, 'dodging': 10332, 'outlet': 23667, 'upkaar': 34536, 'stn': 31198, 'assam': 3283, 'alongwith': 2462, 'download': 10527, 'bluetooth': 4806, 'tracker': 33405, 'app': 2929, 'join': 17849, 'android': 2712, 'io': 17335, 'exposed': 12076, 'capitalist': 5952, 'hypocrisy': 16272, 'toward': 33354, 'shutting': 29654, 'west': 35709, 'inundated': 17274, 'worry': 36292, 'narrative': 22023, 'growth': 14757, 'mattered': 20504, 'stopping': 31290, 'behavioural': 4246, 'portlaoise': 25220, 'latex': 18885, 'mad': 19938, 'brilliant': 5299, 'general': 13934, 'rowed': 28052, 'behind': 4251, 'effort': 11092, 'tackle': 32121, 'ncis': 22157, 'civilian': 6845, 'enforcement': 11447, 'external': 12100, 'noted': 22764, 'multiple': 21723, 'attempt': 3406, 'convenient': 7861, 'sit': 29829, 'arm': 3111, 'adoption': 1962, 'amazonsmile': 2547, 'choose': 6725, 'charity': 6480, 'portion': 25217, 'proceeds': 25697, 'smell': 30055, 'hoax': 15732, 'propaganda': 25823, 'throw': 32925, 'cage': 5740, 'smollett': 30082, 'dangerous': 8990, 'riding': 27753, 'tube': 33798, 'gp': 14495, 'surgery': 31863, 'expect': 12008, 'criminal': 8522, 'sunbather': 31667, 'cv19': 8838, 'special': 30514, 'pensioner': 24439, 'suggestion': 31619, 'quickly': 26345, 'worked': 36218, 'mother': 21539, 'rn': 27868, 'tb': 32307, 'unit': 34334, 'smart': 30026, 'stocking': 31210, 'set': 29201, 'blame': 4682, 'poor': 25172, 'agree': 2164, 'correction': 8167, 'torontorealestate': 33279, 'tore': 33267, 'torontohomes': 33276, 'toronto': 33274, 'ontario': 23394, 'sector': 28948, 'uncertainty': 34141, 'death': 9174, 'toll': 33203, 'zimbabwe': 36782, 'ignoring': 16435, 'packing': 23879, 'truck': 33660, 'vegetable': 34874, 'virologist': 35091, 'confirms': 7582, 'surface': 31857, '32': 783, 'moment': 21365, 'define': 9326, 'lying': 19872, 'television': 32451, 'screen': 28832, 'half': 14971, 'beef': 4195, 'consumption': 7755, 'happening': 15105, 'restaurantmanagement': 27465, 'usda': 34624, '10m': 168, 'fund': 13645, 'administered': 1930, '75k': 1315, 'ma': 19900, 'nonprofit': 22654, 'part': 24157, 'mabiz': 19903, 'release': 27109, 'completely': 7457, 'sold': 30290, 'skorea': 29905, 'netherlands': 22301, 'weed': 35611, 'singapore': 29793, 'germany': 14004, 'basically': 3996, 'cuz': 8836, 'sitting': 29837, 'park': 24132, 'bbqs': 4087, 'party': 24181, 'encountered': 11383, 'iga': 16414, 'montreal': 21441, 'quebec': 26300, 'clerk': 6975, 'whilst': 35859, 'own': 23820, 'leyton': 19179, 'leytonstone': 19180, 'dealing': 9161, 'restricted': 27485, 'vulnerable': 35241, 'circumstance': 6821, 'indeed': 16764, 'bamboo': 3853, 'fiber': 12605, 'ordered': 23513, 'borne': 5006, 'drug': 10661, 'administration': 1931, 'fda': 12453, 'evidence': 11874, 'transmitted': 33497, 'consumeraff': 7708, 'bollock': 4900, 'bulk': 5491, 'masse': 20451, 'accidental': 1725, 'sent': 29135, 'n95': 21912, 'reasonable': 26767, 'welfare': 35666, 'ngo': 22427, 'facemasks': 12181, 'stayhomestaysafe': 31000, 'meant': 20638, 'abundant': 1683, 'either': 11140, 'starve': 30891, 'temp': 32463, 'vacancy': 34720, 'night': 22490, '2am': 688, 'sainsburys': 28330, 'sydenham': 32056, 'panicking': 24038, 'meanwhile': 20640, 'thailand': 32583, 'normal': 22690, 'silent': 29734, 'lazy': 18959, 'horror': 15945, 'costco': 8202, '16': 301, 'panicshopped': 24043, 'item': 17515, 'ghettoheatmovement': 14085, 'okay': 23242, 'hickson': 15584, 'care': 6008, 'mamaghettoheat': 20151, 'scene': 28717, 'hunger': 16165, 'game': 13775, 'pm0miixwtp': 25031, 'assume': 3316, 'carrier': 6087, 'cough': 8228, 'sneeze': 30123, 'elbow': 11154, 'watching': 35473, 'press': 25532, 'conference': 7557, 'load': 19467, 'heading': 15300, 'ny': 22966, 'each': 10840, 'coast': 7112, 'problem': 25690, 'solved': 30317, 'guess': 14807, 'industry': 16846, 'retailing': 27536, 'marketing': 20322, 'weakening': 35521, 'major': 20075, 'commodity': 7365, 'masksforthepeople': 20435, 'most': 21533, 'population': 25190, 'targeted': 32250, 'atlanta': 3376, 'detroit': 9694, 'orleans': 23564, 'milwaukee': 21074, 'nadad': 21930, '100m': 140, 'c19': 5705, 'suggest': 31616, 'paying': 24298, 'pharmaceutical': 24660, 'company': 7407, 'outrageous': 23687, 'winery': 36041, 'gallo': 13765, 'responder': 27440, 'officer': 23167, 'firefighter': 12778, 'gal': 13752, 'cassidyrae': 6143, 'medication': 20701, 'cancel': 5868, 'prepare': 25489, 'target': 32249, 'housewares': 16015, 'homeworld': 15865, 'predicted': 25448, 'somehow': 30333, 'film': 12672, 'except': 11926, 'bid': 4486, 'overcharging': 23727, 'capped': 5962, 'ply': 25027, 'surgical': 31864, 'respectively': 27428, 'jantacurfewchallenge': 17648, 'ban': 3858, 'sunbathing': 31668, 'socialising': 30220, 'bench': 4306, 'matt': 20502, 'hancock': 15026, 'marr': 20368, 'follow': 13054, 'pastry': 24216, 'pizza': 24871, 'base': 3985, 'four': 13327, 'fast': 12374, 'fun': 13637, 'drinklocal': 10627, 'consumerhabits': 7727, 'buyinghabits': 5669, 'mainoptmarketing': 20056, 'activist': 1833, 'filed': 12663, 'emotional': 11315, 'distress': 10210, 'lawsuit': 18941, 'fox': 13332, 'coverage': 8314, 'sought': 30394, 'replace': 27255, 'judge': 17919, 'overseeing': 23777, 'filing': 12664, 'crosspost': 8594, 'weirdstreamathon': 35652, 'raise': 26487, 'artist': 3186, 'deserved': 9605, 'conviviality': 7890, 'alonetogether': 2459, 'hollywoodjustfoundout': 15787, 'count': 8250, 'doesn': 10336, 'cape': 5943, 'worst': 36303, 'type': 33955, 'paedos': 23895, 'advent': 1990, 'reveals': 27631, 'flaw': 12912, 'frailty': 13358, 'cheap': 6524, 'transport': 33504, 'stopstockpiling': 31296, 'borisout': 5003, 'socialdistanacing': 30199, 'panicbuyers': 24022, 'harder': 15141, 'crowded': 8601, 'mentioned': 20820, 'lowly': 19749, 'ten': 32478, 'penny': 24433, 'shocked': 29475, 'true': 33672, 'battle': 4045, 'deaf': 9156, 'startling': 30883, 'abuja': 1680, 'deadly': 9154, 'boy': 5088, 'superchargechallenge': 31716, 'tale': 32184, 'rare': 26606, 'contains': 7775, '80vol': 1371, 'alcohol': 2329, '500': 1037, 'decrease': 9258, 'minor': 21133, 'ingredient': 16956, 'glycerine': 14267, 'h2o2': 14894, 'expense': 12021, 'asked': 3258, 'place': 24888, 'twitch': 33925, 'streaming': 31381, 'awhile': 3632, 'saving': 28621, 'staysafe': 31026, 'cornavirusoutbreak': 7972, 'twitchaffiliate': 33926, 'genuinely': 13972, 'british': 5321, 'prick': 25608, 'wellness': 35675, 'disinfectant': 10090, 'spray': 30672, 'cream': 8451, 'partner': 24174, 'code': 7146, 'discount': 10038, 'saturdayt': 28568, 'breaking': 5212, 'professor': 25732, 'stephen': 31098, 'powis': 25346, 'overnight': 23758, '170': 325, 'signed': 29717, 'volunteer': 35193, '189': 351, 'minute': 21142, 'yournhsneedsyou': 36652, 'street': 31387, 'riot': 27788, 'migrant': 21019, 'neutral': 22316, 'territory': 32528, 'spade': 30465, 'avoided': 3597, 'welp': 35678, 'besides': 4379, 'lab': 18698, 'using': 34655, 'proper': 25827, 'detect': 9670, 'super': 31708, 'conduct': 7549, 'shipment': 29445, 'strike': 31420, 'oatmeal': 23026, 'defense': 9307, 'bus': 5573, 'operate': 23442, 'remote': 27183, 'fluid': 12999, 'lady': 18734, 'asks': 3266, 'scared': 28698, 'repost': 27286, 'sea': 28878, 'spotted': 30663, 'noosaville': 22671, 'thanks': 32606, 'laugh': 18903, 'lisa': 19359, 'funny': 13659, 'noosa': 22670, 'sunshinecoast': 31703, 'prepayment': 25495, 'energy': 11431, 'meter': 20891, 'guidance': 14814, 'bailing': 3799, 'corruption': 8181, '101': 144, 'rewarding': 27679, 'ceo': 6344, 'airline': 2246, 'cruise': 8623, 'hotel': 15980, 'fly': 13008, 'vacation': 34722, 'gopfascists': 14421, 'campaigning': 5845, 'keyworkers': 18297, 'decree': 9261, 'state': 30901, 'retailstrong': 27551, 'signing': 29721, 'pledge': 24976, 'foreigner': 13217, 'immediately': 16546, 'inform': 16921, 'guardia': 14795, 'di': 9766, 'finanza': 12727, 'notice': 22781, 'excessively': 11936, 'apparently': 2937, 'six': 29842, 'foot': 13167, 'hell': 15441, 'hanging': 15080, 'laughing': 18907, 'quarantinelife': 26265, 'stimuluspackage2020': 31176, '50m': 1062, 'civil': 6844, 'legal': 19047, 'aid': 2211, 'afford': 2061, 'funding': 13649, 'lsc': 19767, 'client': 6986, 'facing': 12200, 'eviction': 11873, 'violence': 35077, 'touch': 33319, 'transmit': 33495, 'inspiring': 17072, 'biologist': 4585, 'statistician': 30927, 'servant': 29176, 'medic': 20678, 'logistics': 19590, 'countless': 8271, 'success': 31571, 'planted': 24917, 'seed': 28976, 'omg': 23299, 'toiletrolls': 33184, 'toiletpapergate': 33160, 'selfisolation': 29041, 'selfsufficient': 29056, 'gardening': 13807, 'growingmyown': 14751, 'hiking': 15626, 'judged': 17920, 'harshly': 15183, 'isolation': 17465, 'seriously': 29171, 'consider': 7656, 'nutrient': 22945, 'protein': 25908, 'delivered': 9417, 'wish': 36090, 'included': 16714, 'bailout': 3800, 'sanitation': 28453, 'backbone': 3720, 'gopbailoutscam': 14419, 'epidemic': 11589, 'taught': 32287, 'non': 22634, 'banker': 3892, 'executive': 11962, 'warehouse': 35387, 'professional': 25729, 'jog': 17835, 'neighborhood': 22252, 'wuhan': 36391, 'inviting': 17321, 'mishra19': 21166, 'mum': 21737, 'tin': 33026, 'rice': 27717, 'kitchen': 18434, 'handwash': 15068, 'greed': 14610, 'praising': 25380, 'convid19uk': 7883, 'vintage': 35065, 'range': 26574, 'unique': 34326, 'single': 29799, 'income': 16720, 'smallbusiness': 30020, 'weareintrouble': 35554, 'etsy': 11772, 'came': 5827, 'patrolling': 24260, 'abused': 1686, 'bekind': 4263, 'milan': 21033, 'temperature': 32466, 'mandatory': 20180, 'speaker': 30507, 'remind': 27169, 'distance': 10182, 'shall': 29285, 'kiryu': 18424, 'sorry': 30384, 'fps': 13344, 'yakuzakiwami2': 36502, 'ryugagotoku': 28211, 'reusable': 27617, 'mealie': 20622, '18th': 359, 'unity': 34348, 'society': 30244, 'lusaka': 19834, 'dctalkradio': 9138, 'visiting': 35127, 'schnucks': 28744, 'elaine': 11149, 'benes': 4320, 'cantspareasquare': 5928, 'asian': 3240, 'covered': 8316, 'socialismorbarbarism': 30222, 'cadchf': 5729, 'audchf': 3456, 'nzdchf': 23005, 'exist': 11982, 'dating': 9067, '1953': 381, '66': 1222, 'trump2020': 33683, 'maga2020': 19975, 'kag': 18026, 'ausbiz': 3479, 'device': 9720, 'notified': 22787, 'vide': 35003, 'notification': 22786, 'dated': 9063, '11th': 206, 'february': 12481, 'issued': 17489, 'ministry': 21124, 'governed': 14470, 'control': 7845, '2013': 480, 'jump': 17951, 'nz': 23003, 'newzealand': 22402, 'synthesis': 32091, 'finding': 12733, 'recommendation': 26839, 'retweet': 27606, 'message': 20872, 'physician': 24739, 'solidarity': 30305, 'tireless': 33053, 'risking': 27827, 'overworked': 23809, 'unappreciated': 34117, 'helpless': 15464, 'essentialworkers': 11707, 'owe': 23813, 'gratitude': 14580, 'stocked': 31206, 'replenished': 27261, 'importantly': 16617, 'certain': 6355, 'associate': 3312, 'deserve': 9604, 'ton': 33222, 'oadby': 23011, 'asda': 3219, 'suspending': 31924, '24': 601, 'closing': 7038, '10pm': 172, 'meps': 20828, 'cap': 5938, 'contingency': 7806, 'eu': 11774, 'arrivalist': 3149, 'pattern': 24267, 'kpvi': 18587, 'stayhomesavelives': 30996, 'marketplace': 20337, '14': 255, 'volume': 35190, '23rd': 600, 'middle': 20989, 'aisle': 2259, 'actually': 1847, 'putting': 26144, 'divide': 10254, 'combined': 7284, 'sharply': 29342, 'quarter': 26291, 'investing': 17308, 'fair': 12227, 'thankfulthursday': 32602, 'turtle': 33877, 'woe': 36150, 'spiraling': 30587, 'rubber': 28097, 'chemical': 6576, 'crudeoil': 8619, 'crudeoilprice': 8620, 'lpg': 19761, 'ethylene': 11765, 'polymer': 25144, 'chemanalyst': 6575, 'chemicaprice': 6578, 'chemicaldatabase': 6577, 'surely': 31852, 'office': 23164, 'unused': 34488, 'redistributed': 26914, 'reopen': 27227, 'jingle': 17783, 'podcast': 25065, 'youtube': 36669, 'channel': 6447, 'ringtone': 27783, 'understand': 34210, 'scarce': 28694, 'cheaper': 6525, 'luxury': 19851, 'physical': 24735, 'greedy': 14616, 'nbn': 22143, 'cope': 7936, '31st': 782, 'earliest': 10854, 'delivering': 9419, 'phone': 24704, 'elevator': 11205, 'button': 5643, 'pump': 26060, 'bottle': 5043, 'bottom': 5046, 'handbag': 15029, 'wrestlemania': 36343, 'sarika': 28535, 'contest': 7798, 'giveawayalert': 14162, 'puzzle': 26149, 'knew': 18493, 'genius': 13960, 'record': 26851, 'euro': 11788, '134': 246, 'dare': 9011, 'apocolypse': 2916, 'crone': 8576, 'caledonia': 5770, 'concerned': 7514, 'scammed': 28674, 'scamsaction': 28679, 'temporarily': 32470, 'salon': 28374, 'shampoo': 29306, 'dragged': 10568, 'refusing': 27004, 'fightcovid19': 12640, 'ghana': 14072, 'ajrnews': 2268, 'once': 23315, 'northvancouver': 22727, 'management': 20162, 'availability': 3563, 'weather': 35570, 'storm': 31332, 'amway': 2652, 'spectrum': 30537, 'basket': 4003, 'benefit': 4315, 'starting': 30882, 'veggie': 34882, 'propping': 25858, 'nutrition': 22947, 'foodsupply': 13145, 'wheat': 35812, 'egg': 11102, 'grocerybills': 14695, '3naturaln': 887, 'quietly': 26352, 'raging': 26460, 'head': 15294, 'lender': 19090, 'traditional': 33434, 'nonbank': 22636, 'player': 24942, 'sinking': 29811, 'further': 13684, 'beware': 4426, 'fraudulent': 13391, 'vaccine': 34727, 'treatment': 33564, 'evaluated': 11815, 'effectiveness': 11085, 'allowing': 2436, 'necessity': 22211, 'rip': 27792, 'disgraceful': 10074, 'vulnerability': 35240, 'outoforder': 23675, 'ebay': 10933, 'awful': 3630, 'road': 27877, 'rammed': 26538, 'seem': 28984, 'partying': 24182, 'room': 27996, 'jared': 17656, 'dad': 8895, 'kiss': 18428, 'royally': 28058, 'freaking': 13401, 'quaratinelife': 26283, 'destroy': 9657, 'useful': 34638, 'clearing': 6963, 'formaula': 13256, 'wuflu': 36390, '300th': 749, 'minnesota': 21129, 'vermont': 34944, 'classified': 6906, 'personnel': 24562, 'brussels': 5403, 'belgium': 4278, '18': 340, 'bruxelles': 5410, 'coronaoutbreak': 8076, 'togetheragainstcorona': 33124, 'preventing': 25570, 'absolute': 1666, 'selfishness': 29033, 'attack': 3399, 'president': 25529, 'packaged': 23870, 'monica': 21410, 'gellar': 13921, 'goingmental': 14334, 'usually': 34672, 'bit': 4623, 'sarcastic': 28529, 'prone': 25815, 'earnest': 10863, 'statement': 30908, 'immensely': 16548, 'proud': 25923, 'colleague': 7224, 'stepping': 31104, 'stayed': 30963, 'germaphobia': 14007, 'craziness': 8443, 'definitely': 9331, 'died': 9821, 'connecticut': 7622, 'florida': 12974, 'saturdaymorning': 28565, 'stayingalive': 31009, 'nogerms': 22605, 'supporting': 31809, 'recently': 26814, 'roundtable': 28038, 'scott': 28799, 'knaul': 18489, 'brings': 5311, 'discussion': 10065, 'tune': 33843, 'ccseries': 6252, 'canary': 5866, 'coal': 7110, 'severe': 29219, 'sink': 29809, 'remain': 27148, 'turbulence': 33856, 'boe': 4866, 'governor': 14479, 'andrew': 2707, 'holbrook': 15761, 'manchester': 20169, 'united': 34337, 'donated': 10396, 'result': 27500, 'mfm': 20923, 'heartland': 15375, 'usa': 34604, 'officially': 23169, 'pandey': 24006, 'controlling': 7851, 'costly': 8213, 'compared': 7413, 'town': 33361, 'village': 35048, 'far': 12309, 'induced': 16833, 'wife': 35968, 'inevitably': 16868, 'caring': 6037, 'herself': 15556, 'daughter': 9070, 'varying': 34833, 'degree': 9361, 'pub': 26009, 'heath': 15383, 'haywards': 15261, 'round': 28036, 'drink': 10624, 'supportlocalbusiness': 31817, 'robbing': 27895, 'york': 36617, 'manhattan': 20199, 'element': 11198, 'nearby': 22195, 'tried': 33601, 'gap': 13794, 'borisjohnson': 5001, 'nhsthankyou': 22444, 'nhsheroes': 22440, 'corvid19uk': 8188, 'joe': 17823, 'allen': 2408, 'bayhdole': 4060, 'bayh': 4059, 'dole': 10363, 'intended': 17153, 'dwindle': 10810, 'h1n1': 14892, 'sars': 28539, 'bird': 4603, 'hateful': 15212, 'telling': 32458, 'truth': 33757, 'irresponsible': 17411, 'lied': 19238, 'homeless': 15832, 'moved': 21590, 'onto': 23400, 'interview': 17237, 'gouging': 14452, 'harlem': 15158, 'olive': 23271, 'listed': 19363, 'chip': 6687, 'address': 1884, 'nation': 22048, 'committee': 7360, 'national': 22049, 'coordination': 7928, 'artificially': 3181, 'strongly': 31444, 'repress': 27298, 'prospect': 25869, 'volatile': 35185, 'mypov': 21867, 'chatter': 6511, 'background': 3728, 'lock': 19506, 'preppers': 25498, 'last': 18854, 'wks': 36131, 'peak': 24348, 'sarscov2': 28542, 'declaratory': 9237, 'ruling': 28133, 'qualifies': 26222, 'telephone': 32444, 'purpose': 26114, 'exception': 11927, 'stringent': 31424, 'consent': 7646, 'requirement': 27328, 'fixed': 12845, 'black': 4655, 'excessive': 11935, 'charge': 6473, 'incident': 16704, 'kindly': 18396, 'ep': 11578, 'honesty': 15875, 'positivity': 25250, 'soldout': 30294, 'aspect': 3274, 'spot': 30657, 'inthistogether': 17243, 'predict': 25445, 'church': 6779, 'suffer': 31600, 'unless': 34378, 'decide': 9224, 'virtual': 35094, 'psychiatrist': 25985, 'wanting': 35373, 'entertainment': 11531, 'dropping': 10651, 'story': 31336, 'adventure': 1991, 'writingcommnunity': 36355, 'forward': 13300, '10am': 157, '2pm': 729, 'bacon': 3749, 'butter': 5635, 'again': 2108, 'coronapandemic': 8078, 'planning': 24910, 'stayinformed': 31007, 'stayconnected': 30960, 'nailba2020': 21950, 'stopped': 31289, 'sliced': 29968, 'lunchmeat': 19821, '49': 1000, 'lb': 18961, 'bge': 4443, 'smokedturkey': 30079, 'ohiopreparedmeforthis': 23199, 'fridge': 13487, 'torture': 33289, 'survivor': 31906, 'fuligdi': 13625, 'terrified': 32524, 'medicine': 20703, 'djia': 10278, 'mild': 21036, 'negativity': 22239, 'trader': 33417, 'process': 25698, 'crosscurrent': 8587, 'initial': 16976, 'upward': 34573, 'spike': 30575, 'surge': 31860, 'slowly': 30000, 'grappling': 14568, 'bill': 4536, 'dont': 10414, 'panicing': 24031, 'welcome': 35660, 'melanie': 20758, 'rotating': 28020, 'selection': 29014, 'caf': 5735, 'operation': 23447, 'however': 16042, 'pre': 25414, 'cooked': 7900, 'considered': 7661, 'similar': 29749, 'interesting': 17184, 'con': 7503, 'shoukd': 29578, 'housearrest': 16003, 'freezer': 13446, 'cauliflower': 6199, 'walnut': 35341, 'taco': 32125, 'amidst': 2596, 'accelerating': 1707, 'surrounding': 31886, 'federal': 12487, 'ftc': 13559, 'refunding': 26998, 'invention': 17289, 'promotion': 25808, 'holiday': 15773, 'friday': 13480, 'sleep': 29954, 'bath': 4021, 'estimated': 11730, 'engagement': 11454, 'longer': 19621, 'benzene': 4335, 'asia': 3239, 'supported': 31804, 'solid': 30304, 'clouded': 7049, 'weak': 35518, 'icis': 16328, 'intermediate': 17197, 'solvent': 30318, 'detergent': 9679, 'lockdowneffect': 19521, 'lockdowndiaries': 19517, 'lockdownindia': 19528, 'lockdowndelhi': 19516, 'lockedindelhi': 19561, 'everyday': 11849, 'daunting': 9072, 'considerate': 7659, 'picking': 24752, 'sight': 29706, 'sign': 29709, 'petition': 24603, 'peoria': 24467, 'switching': 32031, 'example': 11914, 'ramped': 26545, 'reprogrammed': 27305, 'profiting': 25746, 'deputy': 9567, 'potential': 25294, 'oconee': 23112, 'licking': 19231, 'finger': 12742, 'section': 28946, 'decent': 9218, 'brand': 5154, 'john': 17840, 'lewis': 19172, 'debenhams': 9190, 'hmv': 15715, 'chandler': 6434, 'arizona': 3105, 'helpful': 15456, 'detailed': 9666, 'pickup': 24758, 'option': 23494, 'equinor': 11611, 'cfo': 6379, 'jesus': 17739, 'christ': 6744, 'bat': 4012, 'god': 14306, 'batsoup': 4039, 'batburger': 4016, 'batstew': 4040, 'batmeatloaf': 4034, 'batsandwich': 4038, 'batandchips': 4014, 'deepfriedbat': 9284, 'purchase': 26089, '3rd': 895, 'largest': 18842, 'position': 25236, 'hammered': 15005, 'saudia': 28576, 'arabia': 3041, 'plu': 25003, 'christmas': 6752, 'turned': 33871, 'lay': 18947, 'definately': 9325, 'imo': 16572, 'argument': 3091, 'contaminated': 7778, 'remove': 27189, 'smoke': 30077, 'eith': 11139, 'individual': 16821, 'organization': 23542, 'denver': 9511, 'rescue': 27343, 'rosengren': 28006, 'impacting': 16581, 'lane': 18816, 'notanymore': 22756, 'kroger': 18613, 'hire': 15666, 'toiletpaperpanic': 33169, 'econtwitter': 11012, 'economics': 11000, 'economicresponse': 10999, 'televangelist': 32449, 'jim': 17776, 'bakker': 3822, 'effective': 11083, 'demanding': 9449, 'prove': 25933, 'posted': 25268, 'locally': 19492, 'afraid': 2074, 'afraidinslee': 2075, 'promotes': 25806, 'calming': 5810, 'hysteria': 16279, 'fakenews': 12257, 'inslee': 17057, 'multiplies': 21727, 'encourages': 11388, 'awakening': 3615, 'qanon': 26175, 'mall': 20138, 'grab': 14503, 'refused': 27003, 'shower': 29596, 'saferathome': 28284, 'bidet': 4492, 'coping': 7939, 'gym': 14890, 'meditation': 20710, 'class': 6900, 'accounting': 1748, 'paulraftery': 24272, 'projectsrh': 25781, 'multinationalinvestment': 21720, 'soveringrisk': 30450, 'insurablerisk': 17129, 'financialreporting': 12718, 'creditrating': 8482, 'seek': 28981, 'assistant': 3308, 'outrage': 23686, 'describing': 9598, 'boomer': 4958, 'remover': 27191, 'unjustified': 34361, 'ordinary': 23520, 'passenger': 24194, 'immigration': 16554, 'custom': 8795, 'traveler': 33534, 'screening': 28835, 'protocol': 25920, 'literacy': 19375, '2u': 736, 'iplayer': 17361, 'tool': 33234, 'teach': 32334, 'wonderful': 36173, 'friendly': 13495, 'shelve': 29399, 'praised': 25379, 'note': 22762, 'newark': 22331, 'nj': 22542, 'necessary': 22209, 'newjersey': 22348, 'coronacommunity': 8023, 'hustler': 16206, 'scames': 28673, 'encourage': 11385, 'snake': 30101, 'falsely': 12271, 'touting': 33349, 'file': 12662, 'saudiarabia': 28577, 'hike': 15624, 'sha': 29252, 'riyadh': 27845, 'pandaapp': 23976, 'pakistanunitedagainstcorona': 23932, 'attitude': 3421, 'towards': 33355, 'thinking': 32826, 'optimism': 23487, 'overall': 23714, '48': 989, 'staggering': 30817, 'evading': 11811, 'harm': 15160, 'stayhomesaveli': 30993, 'curve': 8781, 'roof': 27990, 'mental': 20810, 'handsanitizer': 15055, 'pivoted': 24867, 'spirit': 30590, 'ttb': 33789, 'guideline': 14817, 'coldchain': 7196, 'magnitude': 20005, 'shining': 29439, 'bright': 5290, 'danielle': 8993, 'dimartino': 9910, 'booth': 4972, 'ex': 11896, 'reserve': 27362, 'dallas': 8943, 'author': 3517, 'sits': 29834, 'pipeline': 24839, 'shutdown': 29634, '26': 643, '51': 1066, 'anti': 2818, 'protest': 25912, 'trudeau': 33671, 'tide': 32967, 'employed': 11340, 'nov2019': 22826, 'easter': 10886, 'weekend': 35616, 'dedication': 9268, 'handy': 15073, 'expediting': 12016, 'reducing': 26934, 'eliminating': 11213, 'providing': 25943, 'residency': 27377, 'successful': 31572, 'applicant': 2971, 'worrying': 36294, 'boyfriend': 5111, 'lalo': 18771, 'na': 21917, 'ngayon': 22420, 'sa': 28222, 'taytay': 32306, 'n95mask': 21914, 'healthcareworkers': 15328, 'procedure': 25693, 'getmeppe': 14039, 'getusppe': 14053, 'deal': 9158, 'followed': 13056, 'later': 18879, '30': 742, 'sheeple': 29370, 'metre': 20902, 'pandemia': 23984, 'quedateencasa': 26303, 'qu': 26207, 'dateencasa': 9064, 'yomequedoencasa': 36610, 'pandemiacoronavirus': 23985, 'santodomingo': 28501, 'dominicanrepublic': 10387, 'riddle': 27741, 'creates': 8459, 'suspend': 31922, 'thereby': 32753, 'forcing': 13202, 'healthy': 15348, 'planned': 24907, 'surpass': 31869, 'mugged': 21691, 'grabbed': 14504, 'ran': 26550, 'lockdownuk': 19553, 'value': 34767, 'belittle': 4287, 'bin': 4551, 'bumping': 5520, 'generally': 13938, 'damned': 8965, 'bare': 3931, 'afghanistan': 2070, 'distributing': 10218, 'woman': 36163, 'displaced': 10142, 'camp': 5841, 'kabul': 18017, 'speed': 30546, 'segment': 28996, 'chilliwack': 6650, 'daventry': 9077, 'redeployed': 26899, 'overwhelmed': 23804, 'shitpocalypse': 29462, 'log': 19577, 'visited': 35126, 'regular': 27038, 'scheduled': 28726, 'frequency': 13457, 'mofos': 21326, 'twinkie': 33920, 'survival': 31892, 'woody': 36194, 'harelson': 15152, 'character': 6468, 'tallahassee': 32194, 'movie': 21598, 'zombieland': 36810, 'emptyshelves': 11359, 'biocidal': 4571, 'regulation': 27046, 'suitable': 31627, 'hygiene': 16243, 'processing': 25701, 'environment': 11558, 'catering': 6175, 'receive': 26807, 'communication': 7383, 'grant': 14551, 'exchange': 11937, 'fee': 12496, 'respond': 27437, 'carbon': 5985, 'flagship': 12865, 'slump': 30007, 'european': 11793, 'challenging': 6419, 'massive': 20455, 'ordering': 23514, 'lp': 19759, 'cd': 6256, 'independently': 16773, 'owned': 23821, 'covidiot': 8338, 'noun': 22817, 'vid': 35002, 'ee': 11070, 'ut': 34673, 'as': 3210, 'tipper': 33045, 'gigeconomy': 14120, 'quaratineandchill': 26281, 'postmates': 25279, 'wouldn': 36316, 'functional': 13640, 'supervisor': 31780, 'wh': 35771, 'required': 27327, 'irradiate': 17398, 'killing': 18377, 'ahead': 2193, 'view': 35024, 'slipped': 29982, 'side': 29681, 'crowd': 8600, 'create': 8457, 'internet': 17210, 'fulfilled': 13620, 'fcc': 12440, 'connected': 7619, 'america': 2578, 'drag': 10566, 'modernize': 21309, 'concept': 7511, 'introduced': 17264, 'urgency': 34587, 'possibly': 25257, 'goal': 14287, 'hate': 15209, 'whatsale': 35792, 'viewing': 35028, 'bst': 5417, 'fuckwits': 13593, 'complaining': 7451, 'lawsofeconomics': 18938, 'supplyanddemand': 31790, 'shortened': 29564, 'course': 8291, 'hole': 15770, 'hitting': 15691, 'observe': 23061, 'simulator': 29774, '83': 1390, 'healthyeating': 15352, 'comforteating': 7305, 'globaldata': 14223, 'debut': 9205, 'restocker': 27473, 'appearing': 2946, 'keephustling': 18195, 'keeplaughing': 18204, 'inflation': 16902, 'detention': 9677, 'dead': 9148, 'pakistan': 23928, 'kar': 18089, 'poop': 25165, 'danny': 9000, 'forevah': 13225, 'evah': 11812, 'twin': 33918, 'gave': 13857, 'forbid': 13191, 'gear': 13896, 'stopandshopdobetter': 31263, 'thankyo': 32618, 'sun': 31664, 'penetration': 24420, 'panel': 24011, 'brick': 5270, 'mortar': 21514, 'switch': 32029, 'fucker': 13575, 'embarrassing': 11262, 'charitable': 6479, 'thoughtful': 32886, 'generous': 13952, 'suppliesfor': 31788, 'corporate': 8153, 'generation': 13943, 'mba': 20555, 'badged': 3765, 'consultant': 7697, 'private': 25665, 'equiteers': 11617, 'undermining': 34197, 'resilience': 27389, 'grabbing': 14506, 'ramping': 26547, 'dobetter': 10304, 'yvr': 36704, 'disgusting': 10080, 'yyc': 36707, 'canonforcommunity': 5917, 'creator': 8468, 'sheikhhasina': 29379, 'bangladesh': 3882, 'urged': 34586, 'prison': 25654, 'cuomo': 8731, 'pledged': 24977, '35k': 823, 'coughed': 8229, 'twisted': 33923, 'prank': 25385, 'analytics': 2672, 'damaging': 8957, 'electronics': 11190, 'semiconductor': 29082, 'globally': 14235, 'wholesaler': 35919, 'diy': 10267, 'diymask': 10271, 'staysafeathome': 31027, 'facecover': 12175, 'organized': 23545, 'stayorganized': 31019, 'masks4all': 20430, 'laprotects': 18833, 'maskmabuti': 20426, 'user': 34644, 'fit': 12825, 'supermarketsweep': 31755, 'mothersday2020': 21547, 'account': 1743, 'emptying': 11358, 'paint': 23915, 'bleak': 4711, 'beyond': 4431, 'sensational': 29119, 'pull': 26048, 'becomes': 4176, 'norm': 22689, 'newhampshire': 22346, 'shoutout': 29589, 'variable': 34824, 'covid19': 8332, 'greatly': 14607, 'banish': 3886, 'wave': 35493, 'banishthebeast': 3887, 'coupon': 8285, 'added': 1873, 'emptive': 11355, 'eh': 11118, 'dollywood': 10373, 'thesmokies': 32775, 'timeline': 33016, 'eventual': 11837, 'indicator': 16806, 'improvement': 16648, 'tuned': 33844, 'shankar': 29310, 'stranded': 31352, 'evicted': 11872, 'accommodation': 1731, 'rescued': 27344, 'obvious': 23084, 'eldon': 11165, 'kinkora': 18407, 'morell': 21485, 'beat': 4134, 'queuing': 26333, 'coronavtj': 8133, 'regained': 27009, 'strength': 31394, 'lummi': 19812, 'mothersday': 21546, 'unable': 34107, 'pushed': 26132, 'east': 10882, 'exporter': 12073, 'plunging': 25019, 'glut': 14258, 'imfblog': 16532, 'significantly': 29720, 'auto': 3532, 'premium': 25481, 'reflect': 26970, 'spark': 30487, 'zealand': 36739, 'mon': 21374, '60': 1171, 'removing': 27192, 'overage': 23713, 'broadband': 5335, 'applies': 2975, 'hated': 15211, 'clarify': 6893, 'soul': 30395, 'editor': 11040, 'recycling': 26883, 'tudball': 33807, 'virgin': 35085, 'rpet': 28063, 'arent': 3075, 'sex': 29231, 'toy': 33367, 'adulttoymegastore': 1981, 'lubricant': 19782, 'vibrator': 34985, 'battery': 4043, 'requires': 27329, 'location': 19501, 'poi': 25077, 'mapping': 20260, 'rover': 28049, 'velar': 34889, 'replacement': 27257, 'engine': 11457, 'unbeatable': 34128, 'rangerover': 26575, 'uklockdownnow': 34060, 'downturn': 10548, 'nature': 22093, 'unlikely': 34381, 'negotiation': 22249, 'contract': 7823, '200330': 461, 'flight': 12940, 'club': 7059, 'wechat': 35599, 'talked': 32190, 'sneaker': 30117, 'resell': 27353, 'dropped': 10649, 'rapidly': 26597, 'jumped': 17952, 'settled': 29210, 'dinner': 9933, 'hungry': 16169, 'humane': 16125, 'hsec': 16074, 'mission': 21184, 'freeze': 13445, 'rent': 27215, 'offs': 23176, 'qualify': 26223, 'un': 34105, 'employment': 11346, 'direct': 9956, 'japanese': 17653, 'robson': 27910, 'downtown': 10541, 'vancouver': 34776, 'green': 14620, 'tape': 32236, 'marking': 20351, 'reaction': 26680, 'survivalist': 31894, 'bent': 4333, 'asshole': 3302, 'guide': 14815, 'examines': 11912, 'handling': 15046, 'disclose': 10023, 'nationwide': 22069, 'surprised': 31875, 'yelled': 36554, 'shouting': 29588, 'yell': 36553, 'hcw': 15284, 'dy': 10818, 'orphaned': 23573, 'prefer': 25459, 'nobody': 22582, 'rather': 26618, 'contamination': 7781, 'advised': 2009, '7th': 1356, 'muzak': 21825, 'awareness': 3621, 'amma': 2607, 'unavagam': 34121, 'ramanathapuram': 26526, 'coimbatore': 7174, 'ammaunavagam': 2608, 'fightagainstcoronavirus': 12632, 'anaheim': 2661, 'california': 5782, 'boycott': 5092, '1216': 214, 'magnolia': 20006, 'ave': 3570, 'ca': 5709, '92804': 1490, '714': 1285, '229': 576, '0618': 83, 'pricegougers': 25591, 'totally': 33308, 'depends': 9530, 'junk': 17962, 'prevention': 25571, 'method': 20897, 'govindia': 14484, 'indiafightscorona': 16783, 'frantic': 13381, 'scramble': 28814, 'ventilator': 34913, 'soldier': 30291, 'perfumer': 24497, 'called': 5793, 'retirement': 27578, 'moscowmitch': 21525, 'bailouts': 3802, 'fat': 12384, 'tz': 33972, 'tanzania': 32232, 'lower': 19740, 'bundle': 5523, 'bearable': 4123, 'isolated': 17462, 'hacker': 14909, 'impersonate': 16594, 'insurancefraud': 17132, 'healthcarefraud': 15324, 'threshold': 32904, 'identified': 16365, 'evolve': 11884, 'alarming': 2301, 'informative': 16927, 'particle': 24168, 'air': 2228, 'greeted': 14638, 'locked': 19559, 'reached': 26675, 'capacity': 5941, 'bradpaisley': 5130, 'st': 30778, 'louis': 19703, 'spite': 30598, 'albeit': 2311, 'unabated': 34106, 'agriculture': 2176, 'thoko': 32868, 'didiza': 9815, 'reassurance': 26775, 'democrat': 9460, 'blocking': 4756, 'assistance': 3307, 'crime': 8519, 'unrest': 34437, 'fyi': 13722, 'macon': 19927, 'bibb': 4478, 'cheney': 6588, 'brother': 5375, '478': 987, '250': 622, '3699': 836, '352': 816, '291': 680, '7800': 1331, 'prescription': 25510, 'rx': 28199, 'sunday': 31674, 'ireland': 17380, 'prohibits': 25774, 'establishment': 11718, 'dispenser': 10134, 'politely': 25121, 'picnic': 24762, 'ignore': 16432, 'reverend': 27640, 'hosting': 15971, 'dance': 8977, 'rave': 26637, 'farming': 12336, 'wedding': 35602, 'dress': 10609, 'drinking': 10626, 'wine': 36032, 'inflatable': 16897, 'unicorn': 34299, 'costume': 8216, 'kiwi': 18454, 'smiling': 30067, 'defer': 9311, 'wall': 35324, '164': 309, 'strain': 31348, 'profitability': 25737, 'nassau': 22039, 'reassure': 26776, 'countryman': 8276, 'manufacturing': 20244, 'respreators': 27455, 'clothing': 7046, 'shield': 29421, 'glass': 14196, 'auspol': 3490, 'ausgov': 3485, 'grows': 14756, 'hazard': 15262, 'tiktok': 32990, 'prompted': 25812, 'cooking': 7902, 'eating': 10919, 'accessing': 1721, 'nutritious': 22950, 'promote': 25803, 'property': 25829, 'london': 19608, 'kentucky': 18250, '99': 1533, 'gallon': 13766, 'western': 35719, 'phase': 24668, 'empathy': 11323, 'emphasizing': 11330, 'recovery': 26863, 'bounce': 5056, 'festival': 12567, 'dbrs': 9128, 'morningstar': 21499, 'downgraded': 10523, 'province': 25945, 'alberta': 2314, 'sam': 28390, 'sends': 29102, 'knowing': 18510, 'cu': 8684, 'youtuber': 36670, 'kaplamino': 18086, 'known': 18514, 'heathrobinson': 15386, 'rubegoldberg': 28102, 'contraption': 7830, 'dispensing': 10136, 'machine': 19917, 'burning': 5563, 'spring': 30696, 'housing': 16019, 'slower': 29998, 'pause': 24274, 'rabbit': 26411, 'distilling': 10195, 'led': 19028, 'paradox': 24088, 'upended': 34522, 'hum': 16121, 'along': 2460, 'dose': 10486, 'denial': 9488, 'consequence': 7648, 'sickness': 29674, 'stood': 31253, 'humor': 16147, 'stoodupjohn': 31254, 'smile': 30065, 'comedy': 7292, 'coffee': 7158, 'comic': 7310, 'merchandising': 20840, 'holding': 15768, 'shouldering': 29583, 'citizenship': 6832, '1500': 277, 'ethiopia': 11759, 'condition': 7540, 'threat': 32895, 'southernil': 30430, 'carbondale': 5986, 'littleegypt': 19392, 'southernillinois': 30431, 'illinoislockdown': 16480, 'cnn': 7100, 'legit': 19060, 'package': 23869, 'transit': 33483, 'dreading': 10602, 'shelterinplace': 29398, 'considering': 7662, 'revised': 27654, 'suite': 31629, 'advertising': 2003, 'interrupted': 17224, 'cent': 6317, 'complain': 7449, 'yourselves': 36658, 'inflicted': 16905, 'tweeting': 33907, 'ruined': 28122, 'abusing': 1687, 'hadn': 14920, 'stupid': 31486, 'washing': 35430, 'rajender': 26496, 'coronalockdown': 8064, 'shud': 29625, 'augment': 3469, 'ambulance': 2560, 'telangana': 32424, '108': 154, 'unreachable': 34428, 'hitch': 15683, 'ride': 27742, 'downlo': 10526, 'facebook': 12173, 'letting': 19151, 'washington': 35432, 'league': 18985, 'transparency': 33501, 'ethic': 11757, 'accuses': 1766, 'washlite': 35437, 'violating': 35074, 'privacy': 25660, 'margin': 20285, 'sterile': 31111, 'maximum': 20530, 'emirate': 11302, 'decontaminates': 9250, 'bruno': 5398, 'lina': 19313, 'answered': 2807, 'transfered': 33469, 'respiration': 27430, 'dear': 9167, 'sir': 29819, 'direction': 9961, 'voted': 35215, 'exploiting': 12057, 'celebrate': 6291, 'relaunch': 27096, 'sweet': 31992, 'bakery': 3817, 'damper': 8972, 'commend': 7333, 'outstanding': 23698, 'dr': 10561, 'hubert': 16090, 'minnis': 21132, 'bahamian': 3787, 'sucking': 31587, 'cock': 7128, 'ercot': 11630, 'manages': 20164, 'flow': 12989, 'electric': 11175, 'power': 25326, 'represents': 27297, 'plastic': 24923, 'reuse': 27618, 'ariadni': 3097, 'workplace': 36250, 'soared': 30172, 'predominantly': 25454, 'pair': 23919, 'isn': 17455, 'sanitary': 28451, 'tear': 32362, 'project': 25776, 'delay': 9376, 'cancellation': 5872, 'firm': 12788, 'commercial': 7342, 'dwindles': 10811, 'searching': 28902, 'differently': 9845, 'connection': 7624, 'adjusting': 1920, 'adult': 1976, 'fault': 12403, 'aged': 2121, 'uv': 34707, 'wand': 35356, 'handheld': 15037, 'ultra': 34086, 'violet': 35080, 'bacteria': 3753, 'germ': 14001, 'sterilizer': 31115, 'asos': 3272, 'plt': 25002, 'excuse': 11955, 'crappy': 8423, 'lunchboxes': 19820, 'deferral': 9313, 'collection': 7228, 'program': 25757, 'blend': 4717, 'human': 16122, '900': 1460, 'imconfusedasf': 16527, 'wherecanigo': 35836, 'californialockdown': 5784, 'assisting': 3310, 'govts': 14490, 'sourced': 30408, 'mil': 21031, 'microsoft': 20980, 'onmsft': 23384, 'hervey': 15560, 'replaced': 27256, 'toiletry': 33185, 'isle': 17449, 'filled': 12667, 'brim': 5300, '7news': 1354, 'abou': 1643, 'tq': 33394, 'dmk': 10292, 'lockdownnz': 19542, 'analysis': 2667, 'steel': 31069, 'mill': 21053, 'purchasing': 26093, 'grade': 14515, 'fine': 12737, 'sintering': 29814, 'pelletizing': 24397, 'shifting': 29428, 'lump': 19813, 'pellet': 24396, 'ironore': 17394, 'follows': 13061, 'wrecked': 36338, 'peace': 24343, 'frenzy': 13455, 'paramedic': 24100, '19uk': 420, 'hc': 15280, 'keralahighcourt': 18260, 'chinavirus': 6670, 'segovia': 28997, 'tokyo': 33193, 'reuters': 27623, 'third': 32834, 'session': 29200, 'darkened': 9018, 'triggered': 33606, 'ec': 10951, 'signal': 29711, 'sachet': 28244, 'ministryofwatergh': 21126, 'ministryofinfomation': 21125, 'ghanahealthservice': 14073, 'basic': 3995, 'nappy': 22010, 'materialising': 20488, 'disorder': 10125, 'configure': 7571, 'galen': 13756, 'weston': 35732, 'loblaw': 19478, 'sdm': 28872, 'forthecustomer': 13280, 'la': 18697, 'vega': 34864, 'lingering': 19328, 'lasvegas': 18866, 'recordnews': 26854, 'college': 7235, 'mail': 20038, 'shopoholic': 29523, 'intervention': 17236, 'entered': 11522, 'destruction': 9661, 'retailnews': 27543, 'brickandmortar': 5271, 'nestlequick': 22289, 'coca': 7125, 'cola': 7191, 'acquired': 1806, 'fewer': 12579, 'alerting': 2347, 'document': 10319, 'existed': 11984, 'uncharted': 34143, 'imposter': 16630, 'captain': 5969, '2m': 716, 'hockeyfamily': 15742, 'picture': 24766, '4yrs': 1035, 'jamming': 17628, 'checkout': 6544, 'matter': 20503, 'rotten': 28025, 'tomato': 33212, 'soup': 30405, 'screwed': 28839, 'pursuit': 26126, 'university': 34356, 'quarantinediaries': 26260, 'perfect': 24486, 'journaling': 17889, 'quarantineactivities': 26243, 'quarantinebirthday': 26248, 'masks4allchallenge': 20431, 'amwriting': 2653, 'eastersunday': 10898, 'britain': 5318, 'arrested': 3146, 'convicted': 7880, 'fined': 12738, 'failing': 12222, 'identity': 16368, 'comply': 7474, 'surprisingly': 31877, 'standing': 30851, 'announcing': 2788, 'specific': 30527, 'denied': 9489, 'bunch': 5522, 'arsehole': 3164, 'shout': 29586, 'halting': 14993, 'biofuel': 4577, 'plant': 24912, 'carers': 6028, 'keeper': 18193, 'fire': 12772, 'greatbritain': 14601, 'wanted': 35371, 'existing': 11988, 'matchstick': 20482, 'madworld': 19969, 'dip': 9946, 'earned': 10861, 'ripple': 27801, 'foodcupboards': 13095, 'swan': 31966, 'inevitable': 16867, 'rethinking': 27573, 'ive': 17552, 'kansa': 18080, 'dan': 8975, 'brien': 5287, 'updated': 34519, 'disclosure': 10026, 'senator': 29092, 'richard': 27722, 'burr': 5566, 'kelly': 18224, 'loefner': 19576, 'dianne': 9788, 'feinstein': 12527, 'ron': 27981, 'inhofe': 16968, 'tracking': 33407, 'marketer': 20319, 'commentary': 7336, 'nate': 22045, 'donnay': 10407, 'intl': 17250, 'fcstone': 12449, 'inc': 16690, 'fcm': 12445, 'division': 10260, 'quoted': 26377, 'oatt': 23028, 'center': 6319, 'provided': 25939, 'practical': 25365, 'meenal': 20721, 'sharma': 29335, 'jagtap': 17595, 'pramod': 25383, 'kumar': 18641, 'nayak': 22124, 'attended': 3412, 'webinars': 35584, 'organised': 23539, 'consulting': 7699, 'topic': 33249, 'fashion': 12362, 'mckinsey': 20593, 'gauge': 13849, 'expectation': 12009, 'survey': 31889, 'collected': 7226, 'easterbasket': 10889, 'microban': 20964, 'sprayed': 30674, 'constant': 7681, 'postcovidworld': 25266, 'newnormal': 22356, 'campaignspot': 5846, 'directly': 9963, 'paranoia': 24104, 'rumour': 28141, 'generating': 13942, 'faith': 12244, 'among': 2620, 'baseball': 3986, 'struck': 31446, 'row': 28051, 'chinesevirus': 6678, 'privilege': 25673, 'evening': 11831, 'encounter': 11382, 'dilemma': 9902, 'felt': 12538, 'breathe': 5226, 'freeverse': 13443, 'poem': 25071, 'panicattack': 24020, 'poongothai': 25164, 'aladi': 2292, 'aruna': 3200, 'grain': 14527, 'enormous': 11487, 'released': 27110, 'kg': 18304, 'cov': 8301, 'begin': 4231, 'bridge': 5273, 'wasted': 35454, 'billion': 4542, 'poverty': 25321, 'oxfam': 23828, 'waste': 35453, 'grocer': 14689, 'sheer': 29371, 'traffic': 33438, 'rural': 28165, 'northern': 22713, 'hunting': 16176, 'fishing': 12815, 'ab': 1584, 'cdnpoli': 6265, 'gurney': 14865, 'girlscoutcookies': 14151, 'woah': 36146, 'ending': 11403, 'collective': 7229, 'finland': 12755, 'certified': 6360, 'ffp2': 12589, 'expecting': 12011, 'deceived': 9213, 'era': 11622, 'hankering': 15086, 'sm': 30013, 'hypermarket': 16263, 'cubao': 8692, 'headed': 15299, 'localshops': 19494, 'exploit': 12052, 'illegal': 16472, '0203738600': 45, 'danish': 8994, 'incompetent': 16724, 'dk': 10283, 'socdem': 30189, 'kyiv': 18687, 'ukraine': 34065, 'disinfect': 10089, 'billa': 4537, 'welldone': 35672, 'perhaps': 24500, 'valley': 34763, 'arroyo': 3160, 'crossing': 8592, 'receiving': 26811, 'visitor': 35129, 'sadly': 28266, 'ketchup': 18277, 'slowthespread': 30003, 'robocalls': 27906, 'scheme': 28730, 'annoying': 2791, 'unwanted': 34497, 'hang': 15077, 'lupe': 19826, 'supplemental': 31785, 'alternative': 2491, 'overturning': 23794, 'prescribing': 25509, 'gluten': 14260, 'karma': 18105, 'none': 22638, 'posting': 25274, '70': 1266, 'curfew': 8753, 'rooah': 27989, 'sopakco': 30374, 'mre': 21625, 'ration': 26623, 'letsfightcorona': 19137, 'ignite': 16427, 'artificial': 3179, 'scarcity': 28695, 'ultimately': 34084, 'insurer': 17136, 'substantial': 31556, 'recognize': 26835, 'scriptco': 28844, 'wholesale': 35917, '10k': 165, 'taxi': 32297, 'del': 9372, 'gather': 13843, 'justify': 17982, 'armas': 3113, 'amazon': 2535, 'pricing': 25607, 'stress': 31401, 'triggering': 33607, 'heck': 15398, 'hearing': 15364, 'apart': 2884, 'elsewhere': 11244, 'thro': 32914, 'escalate': 11656, 'digest': 9852, '22': 560, 'bogus': 4881, 'snopes': 30139, 'lupus': 19828, 'arthritis': 3175, 'hyped': 16255, 'chiropractor': 6692, 'naturopath': 22098, 'plz': 25029, 'decimated': 9229, 'inflated': 16899, 'tax': 32293, 'blow': 4787, 'keg': 18216, 'packed': 23876, 'gunpowder': 14854, 'mainstream': 20057, 'republican': 27310, 'suggesting': 31618, 'sacrificed': 28252, 'gop': 14417, 'notdying4wallstreet': 22761, 'globe': 14240, 'checklist': 6543, 'cover': 8313, 'powerful': 25334, 'harmful': 15162, 'nsw': 22885, 'stepped': 31103, 'ltr': 19778, 'dettol': 9696, 'kanikakapoor': 18077, 'whatever': 35787, 'banning': 3909, 'event': 11833, 'handedly': 15034, 'undo': 34234, 'sneezing': 30126, 'centipede': 6323, 'install': 17088, 'divine': 10258, 'trumppressbriefing': 33724, 'pressconference': 25534, 'dude': 10722, 'environmental': 11559, 'sustainability': 31933, 'oilprice': 23227, 'finance': 12698, 'salute': 28383, 'aldi': 2339, 'sensibly': 29126, 'reluctant': 27144, 'expose': 12075, 'possible': 25256, 'preferred': 25464, 'swi': 32004, 'manipulation': 20217, 'uncalled': 34138, 'smack': 30015, 'bastard': 4008, 'frontliners': 13530, 'minorites': 21134, 'highly': 15609, 'lt': 19773, 'plentiful': 24981, 'spam': 30474, 'jan': 17630, 'storey': 31329, 'beaumaris': 4148, 'letter': 19147, 'william': 36003, 'hillis': 15632, 'shiller': 29434, 'responding': 27441, 'marketinsights': 20334, 'realestatetrends': 26718, 'mobile': 21270, 'van': 34774, 'jalna': 17613, '19india': 415, 'austrian': 3509, 'limiting': 19309, 'deemed': 9275, 'overstretched': 23786, 'charlotte': 6489, 'covid19uk': 8333, 'practising': 25372, 'simple': 29756, 'easyfundraising': 10908, 'taj': 32153, 'mlas': 21234, 'negotiated': 22247, 'mp': 21608, 'opposition': 23473, 'profiteering': 25744, 'feature': 12476, 'poetry': 25074, 'dalitso': 8942, 'ndlovu': 22186, 'bride': 5272, 'vain': 34740, 'sacrifice': 28251, 'elia': 11208, 'muonde': 21761, 'ink': 16990, 'oracle': 23501, 'poet': 25073, 'founder': 13323, 'joining': 17851, 'startupsvscovid19': 30888, 'ama': 2521, 'moderating': 21302, 'waynerogers': 35501, 'hilarious': 15627, 'diaper': 9789, 'wereallinthistogether': 35696, 'substitute': 31558, 'sorting': 30389, 'no10': 22575, 'armyforfooddistribution': 3123, 'seriousness': 29172, 'arduous': 3068, 'thier': 32805, 'stopit': 31280, 'houston': 16024, '30am': 756, 'sky': 29910, 'forecaster': 13208, 'doomsday': 10460, 'hnvx2ysb6b': 15716, 'sainsbury': 28329, 'halt': 14991, 'accuracy': 1759, 'flattening': 12897, 'flattenthecurve': 12900, 'skilled': 29879, 'upon': 34543, 'digitalpolice': 9887, 'soar': 30171, 'kick': 18336, 'azadpur': 3662, 'mandi': 20183, 'disrupted': 10163, 'strained': 31349, 'shed': 29364, 'fragile': 13354, 'recommend': 26838, 'gang': 13789, 'rando': 26560, 'involved': 17327, 'iowa': 17345, 'avoiding': 3598, 'mspaamericas': 21653, 'mspa': 21652, 'mysteryshopping': 21879, 'evaluator': 11818, 'lifted': 19271, 'eight': 11128, 'colombo': 7246, 'sri': 30758, 'lanka': 18823, '6am': 1246, 'vendor': 34897, 'justice': 17978, 'versova': 34956, 'natraj': 22076, 'shifa': 29424, 'yariroad': 36519, 'mumbaipolice': 21744, 'mybmc': 21837, 'cmomaharashtra': 7086, 'combat': 7277, 'richardburr': 27723, 'kellyloeffler': 18227, 'accused': 1764, 'insider': 17045, 'dumped': 10747, 'loeffler': 19575, 'suit': 31626, 'atomic': 3387, 'robot': 27908, 'lowering': 19743, 'backissueking': 3730, 'informed': 16928, 'recommended': 26840, 'postpone': 25282, 'aggressive': 2143, 'scrub': 28848, 'coat': 7115, 'plague': 24893, 'peatfree': 24360, 'compost': 7482, 'entertained': 11528, 'starbucks': 30866, 'programme': 25760, 'operated': 23443, 'licensed': 19226, 'accompaniment': 1735, 'numerous': 22913, 'genre': 13964, 'singing': 29798, 'lesson': 19123, 'swmbletin': 32036, 'discover': 10046, 'circular': 6814, 'footprint': 13179, 'cycle': 8865, 'juan': 17912, 'jos': 17875, 'argudo': 3085, 'airbnb': 2230, 'smashed': 30049, 'board': 4834, 'coughing': 8231, 'looked': 19636, 'walkingdisease': 35320, 'acquire': 1805, '100ml': 141, 'form': 13250, 'honestly': 15874, 'tricky': 33599, 'haringey': 15156, 'stepdad': 31093, 'permanent': 24515, 'er': 11621, 'pls': 24999, 'potd366': 25293, '84': 1395, 'cheer': 6551, 'potd': 25292, 'yearinphotos': 36539, 'mylifeinpictures': 21857, 'southlondon': 30437, 'northeast': 22710, 'particularly': 24170, 'mindful': 21087, 'loose': 19656, 'proposed': 25852, 'renewed': 27212, 'moratorium': 21476, 'proposal': 25850, 'classify': 6908, 'ineligible': 16858, 'leverage': 19163, 'biz': 4641, 'renter': 27218, 'homeowner': 15843, 'ph': 24649, 'grace': 14508, 'tipping': 33046, 'alaska': 2304, 'wage': 35267, '75': 1305, 'deserving': 9607, 'chunky': 6778, 'peanut': 24352, 'coronapocalypse': 8086, 'yknow': 36591, 'ryan': 28201, 'deadpool': 9155, 'nah': 21943, 'horders': 15926, 'pe': 24341, 'manufacture': 20241, 'gel': 13914, 'controlled': 7849, 'ch': 6392, 'mutiny': 21818, 'bounty': 5064, 'papertowels': 24072, 'struggled': 31451, 'revenue': 27636, 'stressed': 31403, 'vastly': 34838, 'trigger': 33604, 'tourism': 33341, 'budget': 5455, 'exorbitant': 11993, 'seller': 29061, 'shameful': 29293, 'touro': 33344, 'scruffy': 28853, 'lic': 19223, 'woodside': 36190, 'elmhurst': 11231, 'jackson': 17583, 'height': 15419, 'hamburger': 14998, 'twice': 33914, 'nystrong': 22997, 'joburg': 17817, 'luthuli': 19843, '6th': 1263, 'floor': 12967, 'sauer': 28579, 'johannesburg': 17838, 'refunded': 26997, 'develops': 9713, 'schoolclosureuk': 28754, 'inxink': 17332, 'inxnews': 17333, 'determined': 9686, 'dickhead': 9801, 'raiding': 26474, 'byham': 5694, 'ballingdon': 3840, 'operating': 23445, 'han': 15024, 'knight': 18495, 'frank': 13373, 'predicts': 25452, 'expected': 12010, 'itself': 17527, 'overblown': 23717, 'majorly': 20077, '7500': 1307, '009375': 9, 'bodega': 4856, 'sense': 29121, 'printed': 25635, 'trillion': 33610, 'partially': 24163, 'terrible': 32520, 'whereas': 35835, 'autonomy': 3550, 'printing': 25637, '3t': 899, '7b': 1346, 'upsetting': 34556, 'mailinvoting': 20044, 'vote': 35210, 'cheat': 6533, 'dublin': 10710, 'nursing': 22933, 'icw': 16345, 'ward': 35382, 'banal': 3859, 'reporting': 27281, 'fraudwatch': 13393, 'hydro': 16222, 'powering': 25338, 'thanking': 32603, 'midst': 21003, 'wednesdaymotivation': 35606, 'negatively': 22238, 'refill': 26962, 'stash': 30896, 'mondelez': 21392, 'expects': 12013, '2008': 467, 'happened': 15104, 'theft': 32686, 'deregulation': 9572, 'breakdown': 5208, 'held': 15432, 'relatively': 27095, 'surviving': 31904, 'darknet': 9021, 'checked': 6537, 'flogging': 12963, 'whom': 35920, 'villain': 35050, 'sykescottages': 32063, 'hugely': 16108, 'centric': 6339, 'sussex': 31931, 'swamped': 31965, 'braving': 5188, '55': 1094, 'easily': 10880, 'manipulated': 20214, 'react': 26677, 'leaf': 18981, 'tue': 33808, 'wed': 35601, 'butcher': 5627, 'epilepsy': 11591, 'thu': 32936, 'fri': 13476, 'sat': 28550, 'grounded': 14735, 'wild': 35978, 'portfolio': 25216, '401ks': 911, 'shelter': 29393, 'tactic': 32128, 'publix': 26038, 'mysterious': 21877, 'patch': 24223, 'forming': 13260, 'imadethisup': 16509, 'alliance': 2418, 'xu': 36480, 'ipo': 17362, 'simultaneously': 29776, 'cardiac': 5999, 'woodman': 36189, 'doings': 10355, 'bluecollarsolid': 4801, 'applause': 2959, 'serf': 29163, 'prankster': 25388, 'terror': 32529, 'convid': 7881, 'status': 30933, 'gdp': 13892, 'tn': 33094, 'borrowing': 5015, 'contraction': 7826, '2tn': 735, '136': 251, 'edible': 11034, 'dab': 8890, 'whiskey': 35874, 'ammo': 2610, 'dash': 9035, 'maker': 20098, 'coronapocalypse2020': 8087, 'wuhanvirus': 36401, 'ccp': 6246, 'father': 12392, 'separated': 29146, 'supportlocal': 31816, 'delaware': 9375, 'boutique': 5073, 'brewery': 5259, 'easier': 10878, 'totino': 33311, 'upped': 34545, '119': 198, 'patrona': 24262, 'continued': 7813, 'purdue': 26094, 'athletics': 3366, 'boilerup': 4886, '311': 773, 'wayne': 35500, 'pa': 23857, 'seafood': 28882, 'palmsunday': 23953, 'zeoliarmy': 36758, 'chemist': 6579, 'indispensable': 16819, 'dining': 9931, 'beach': 4113, 'adding': 1878, 'wastewater': 35461, 'reduces': 26932, 'dfs': 9742, 'bargain': 3935, 'michigan': 20955, 'sen': 29089, 'ruth': 28182, 'jeremy': 17720, 'moss': 21530, 'unsuspecting': 34473, 'phishing': 24696, 'downtownithaca': 10542, 'ithacany': 17519, 'investigation': 17304, 'fully': 13632, 'idling': 16384, 'feud': 12575, 'competitionalert': 7438, 'participate': 24165, 'stayhomestaysa': 30999, 'lose': 19678, 'mortgage': 21516, 'savetheeconomy': 28613, 'mess': 20871, 'obe': 23033, 'mbe': 20559, 'bezos': 4436, 'boom': 4956, 'maga': 19974, 'belive': 4288, 'shoot': 29488, 'potentialy': 25296, 'dime': 9912, 'algo': 2364, 'advocating': 2019, 'happen': 15103, 'diary': 9793, 'orpington': 23574, '4pm': 1026, 'enforced': 11446, 'leg': 19045, 'legged': 19053, 'stool': 31256, 'disappeared': 9990, 'fiat': 12603, 'prop': 25822, 'zombie': 36808, 'bamksters': 3855, 'declared': 9239, 'urging': 34590, 'failure': 12226, 'resulted': 27502, 'sharpest': 29341, 'gulf': 14838, 'coupled': 8284, 'oilpricewar': 23230, 'dentistry': 9509, 'confusion': 7599, 'furlough': 13673, 'bathandbodyworks': 4022, 'leaving': 19021, 'praise': 25378, 'ufcw': 34010, 'restriction': 27488, 'specter': 30536, 'mistrust': 21200, 'devaluation': 9701, '27': 656, 'wrenching': 36341, 'marie': 20295, 'martin': 20387, 'annoy': 2789, 'highest': 15599, 'appeal': 2940, 'forrester': 13271, 'uae': 33980, 'sample': 28403, 'businessmen': 5604, 'contribution': 7841, 'cordray': 7960, 'slammed': 29930, 'cfpb': 6381, 'cammers': 5837, 'malware': 20147, 'discounted': 10039, 'shafe': 29262, 'malicious': 20135, 'software': 30273, 'ransomware': 26588, 'lazada': 18956, 'filipino': 12665, 'worldvisionph': 36281, 'extends': 12093, 'bedbathbeyond': 4184, '33': 793, 'divert': 10249, 'superfluos': 31724, 'astroturf': 3342, 'salary': 28350, '100k': 138, 'max': 20522, 'superm': 31733, 'modrnhealthcr': 21319, 'grow': 14746, 'annual': 2793, '2028': 504, 'projection': 25779, 'heartfelt': 15373, 'mla': 21233, 'baramati': 3917, 'agro': 2179, '500ltrs': 1042, 'bhandara': 4451, 'zp': 36831, 'pigeon': 24785, 'kawaii': 18146, 'safetyfirst': 28292, 'traxxfm': 33549, 'borneo': 5007, 'rutherford': 28183, 'jayson': 17670, 'lusk': 19837, 'understanding': 34213, 'necessarily': 22208, 'intention': 17164, 'assessment': 3299, 'delegate': 9380, 'authority': 3524, 'covi': 8328, 'sanitise': 28456, 'cheflife': 6565, 'chefoninstagram': 6566, 'chefanand': 6562, 'dialysis': 9784, 'immunosuppressant': 16568, 'coll': 7205, 'humble': 16140, 'request': 27322, 'waive': 35291, 'airindia': 2244, 'impossible': 16629, 'sanwo': 28506, 'olu': 23279, 'lagos': 18743, 'sock': 30253, 'nyclockdown': 22976, 'weshouldhavebeenbetterprepared': 35707, 'ebanks': 10931, 'exacerbated': 11899, 'injustice': 16989, 'experienced': 12026, 'suggests': 31621, 'mayor': 20545, 'jerry': 17727, 'demings': 9455, 'flatten': 12895, 'teen': 32405, 'filmed': 12674, 'virginia': 35088, 'stunt': 31485, 'disturbing': 10227, 'cop': 7932, 'explain': 12041, 'identical': 16362, 'trophy': 33644, 'cleveland': 6977, 'brown': 5382, 'used': 34635, 'knowledge': 18512, 'impending': 16590, 'plummeted': 25013, 'stockmarket': 31214, 'ussenate': 34668, 'bizstrongarlva': 4647, 'copper': 7944, 'import': 16614, 'tweeted': 33904, 'sanction': 28422, 'contributed': 7838, 'creation': 8461, 'takeover': 32169, 'deliberate': 9394, 'systemic': 32103, 'bbc': 4071, 'formula': 13263, 'concerning': 7515, 'severity': 29222, 'deter': 9678, 'embrace': 11269, 'bean': 4121, 'schoolsclosure': 28759, 'wereinthistogether': 35698, 'stopfakenews': 31272, 'silicon': 29738, 'tanking': 32226, 'stevejobs': 31132, 'sort': 30386, 'thuggish': 32938, 'endure': 11421, 'drayton': 10594, 'diverse': 10242, 'plcb': 24957, 'liquor': 19354, 'randomly': 26566, 'ajimal': 2265, 'kal': 18044, 'booking': 4949, 'inconsiderate': 16728, 'dozen': 10557, 'inconvenience': 16734, 'missing': 21182, '120': 208, 'sydneyproperty': 32058, 'beauty': 4154, 'russian': 28176, 'ruble': 28105, 'putin': 26139, 'speech': 30543, 'matabichos': 20474, 'exposure': 12078, 'vocs': 35170, 'puregold': 26098, 'disinfecting': 10093, 'somewhere': 30346, 'admit': 1945, 'closet': 7030, 'cleaned': 6930, 'keto': 18278, 'sad': 28255, 'superpower': 31765, 'drying': 10679, 'hip': 15660, 'usacoronavirus': 34608, 'wonhoisback': 36180, 'onedirectionsave2020': 23323, 'dramatic': 10578, 'ensuring': 11516, 'lea': 18972, 'luger': 19797, 'occurs': 23105, 'bm': 4818, 'aprilfoolsday': 3021, 'columnist': 7272, 'administrator': 1934, 'owen': 23815, 'robert': 27897, 'pent': 24440, 'tv': 33889, 'enter': 11520, 'urgent': 34588, 'allegedly': 2406, 'saliva': 28366, 'dorset': 10482, 'bridport': 5282, 'coronacrisisuk': 8027, 'morgan': 21491, 'stanley': 30858, 'quality': 26226, 'becoming': 4177, 'needier': 22224, 'cong': 7600, 'faring': 12321, 'explore': 12059, 'accelerated': 1705, 'favorite': 12412, 'digitaleu': 9872, 'twenty': 33910, 'walked': 35315, 'neck': 22214, 'fightagainstcovid19': 12633, 'bneeditorspicks': 4826, 'kazakh': 18157, 'tenge': 32493, 'plunge': 25017, 'flounder': 12982, 'kaz': 18156, 'sank': 28482, 'bne': 4824, 'kazakhstan': 18158, 'fx': 13715, 'thankful': 32600, 'authentic': 3511, 'armstrong': 3121, 'ad': 1852, 'comrade': 7501, 'metric': 20903, 'hoaxy': 15733, 'sushi': 31917, 'careful': 6017, 'husband': 16197, '26th': 655, 'engaging': 11456, 'husain': 16196, 'ray': 26647, 'obsessed': 23066, 'offence': 23150, 'irrationality': 17400, 'learned': 18999, 'metro': 20904, 'krogers': 18614, 'bless': 4718, 'residence': 27376, 'maintain': 20060, 'saudi': 28575, 'kicking': 18338, 'slashed': 29938, 'foreign': 13216, 'cabin': 5715, 'fever': 12576, 'dragging': 10569, 'draggingmain': 10570, 'americangraffiti': 2584, 'investigated': 17301, 'prohibition': 25772, 'cpa': 8362, 'unfair': 34264, 'pas': 24183, 'holy': 15794, 'organise': 23538, 'assisted': 3309, 'apartment': 2885, 'equity': 11618, 'corvid19': 8186, 'teamusa': 32358, 'senate': 29090, 'whitehouse': 35889, 'ghs100': 14098, 'ghs1': 14097, 'photo': 24715, 'notoriously': 22799, 'microbe': 20965, 'crawling': 8437, 'advisable': 2007, 'exam': 11908, 'sma': 30014, '88': 1430, 'write': 36349, 'christian': 6746, 'infect': 16879, 'valued': 34768, 'ashba': 3227, 'located': 19498, 'ineffective': 16853, '62': 1193, 'ideally': 16358, 'algorithm': 2365, 'changing': 6444, 'nintendo': 22521, 'thepurge': 32744, 'ideal': 16356, 'grateful': 14576, 'manila': 20212, 'style': 31497, 'date': 9062, 'respect': 27420, 'mobilizing': 21286, 'minimum': 21115, 'bedevils': 4186, 'lawmaker': 18936, 'commitment': 7355, 'ilorin': 16497, 'goodtime': 14398, 'uttar': 34700, 'pradesh': 25374, 'licence': 19224, 'litre': 19385, 'bookmark': 4951, 'implicatio': 16604, 'rosa': 28003, 'believed': 4283, 'sinabi': 29778, 'mo': 21259, 'alex': 2350, 'ka': 18013, 'designer': 9616, '608': 1178, '274': 661, '8199': 1378, 'paranoid': 24105, 'wuye': 36407, 'aware': 3620, 'disposable': 10148, 'motorist': 21568, 'crashed': 8426, '56': 1105, '20p': 530, 'dathan': 9066, 'ji': 17767, 'kiranawala': 18418, 'functioned': 13643, 'stip': 31183, 'physicaldistancing': 24736, 'susanna': 31912, 'askdrh': 3257, 'cinema': 6800, 'theatre': 32662, 'num': 22905, 'persistently': 24547, 'unappealing': 34116, 'pinned': 24829, 'spitting': 30601, 'phaps': 24655, 'overtake': 23790, 'proprietor': 25860, 'envt': 11566, 'creating': 8460, 'staysafeug': 31038, 'fuelupdate': 13611, 'diesel': 9828, 'static': 30916, 'successive': 31575, 'environmentalist': 11560, 'lighting': 19278, 'dna': 10295, 'calculate': 5761, '64': 1209, 'migraine': 21018, 'pill': 24798, 'amazonprime': 2543, 'vanilla': 34792, 'apologize': 2923, 'updating': 34521, 'onlyfans': 23380, 'content': 7792, 'ayrshire': 3656, 'serving': 29194, 'pr': 25364, '53': 1086, '31': 771, 'guest': 14810, 'ninahossain': 22514, 'missed': 21178, 'clip': 7007, 'speaking': 30509, 'anonymity': 2798, 'couldn': 8236, 'nicer': 22459, 'sundaymorning': 31679, 'sundayfeels': 31675, 'abandoned': 1588, 'looting': 19665, 'pussy': 26136, 'scratch': 28823, 'fought': 13317, 'stupidity': 31490, 'socialdistancingnow': 30206, 'definit': 9329, 'ikea': 16463, 'ought': 23626, 'janitor': 17640, 'exact': 11902, 'honor': 15886, 'bogota': 4877, 'guilty': 14823, 'bbva': 4089, 'quick': 26339, 'seemed': 28986, 'brushing': 5402, 'annoyed': 2790, 'speak': 30506, 'minionworld': 21118, 'stealing': 31062, 'minion': 21117, 'meme': 20780, 'parody': 24151, 'cartoon': 6104, 'animation': 2758, 'worsening': 36299, 'unknown': 34369, 'fool': 13163, 'overstock': 23785, 'outfit': 23652, 'construction': 7693, 'island': 17446, 'corn': 7970, 'noting': 22791, 'factor': 12205, 'influencing': 16911, 'madrid': 19966, 'approval': 2998, 'convalescent': 7855, 'plasma': 24920, 'therapy': 32750, 'methodist': 20898, 'eind': 11132, 'scale': 28662, 'introduce': 17263, 'epra': 11597, 'revoke': 27665, 'license': 19225, 'hiked': 15625, 'liquefied': 19348, 'baymen': 4062, 'catch': 6165, 'boosted': 4967, 'entirely': 11538, 'wanna': 35367, 'frequented': 13459, 'skeeves': 29859, 'dmv': 10294, 'dedicated': 9265, 'getupdc': 14052, 'dhl': 9761, 'expensive': 12022, 'pass': 24190, 'lockout': 19565, 'harsh': 15180, 'penalty': 24412, 'corrupt': 8179, 'punish': 26072, 'voter': 35216, 'todo': 33118, 'est': 11713, 'mal': 20114, 'gain': 13744, 'trumpkins': 33707, 'cleared': 6959, 'aquarium': 3031, 'consuming': 7753, 'unlabeled': 34371, 'neart': 22202, 'cur': 8738, 'cheile': 6568, '9400': 1496, 'jeez': 17693, 'suburban': 31564, 'symbol': 32066, 'fitting': 12832, 'coach': 7108, 'ensemble': 11507, 'healthcareworker': 15327, 'pawed': 24285, 'tortilla': 33288, 'gurbir': 14863, 'grewal': 14648, 'supermaarket': 31734, 'thankyouecommerce': 32623, 'flipkart': 12949, 'coronabelgie': 8010, 'timing': 33023, 'ap': 2882, 'profile': 25734, 'fellow': 12535, 'rooster': 27998, 'rude': 28108, 'storefight': 31321, 'infowars': 16932, 'peddles': 24366, 'conspiracy': 7678, 'theory': 32735, 'aggressively': 2144, 'fiverr': 12840, 'greeting': 14640, 'wix': 36127, 'redesigned': 26902, 'oprahwinfrey': 23476, 'guard': 14792, 'military': 21043, 'server': 29180, 'bravely': 5184, 'coronovirus': 8140, 'ssp': 30776, 'absent': 1662, 'dis': 9975, 'adversity': 1996, 'season': 28908, 'bake': 3812, 'suddenly': 31593, 'mary': 20400, 'fuckin': 13578, 'berry': 4366, 'stopfuckingpanicbuying': 31274, 'maryberry': 20403, 'thegreatbritishbakeoff': 32694, 'tgbbo': 32574, 'gbbo': 13879, 'ethanol': 11753, 'e10': 10833, 'denatured': 9485, 'isopropyl': 17479, 'bolton': 4909, 'scientist': 28777, 'randomized': 26565, 'trial': 33587, 'participant': 24164, 'respiratory': 27432, 'worrisome': 36291, 'allied': 2419, 'unitedstates': 34342, 'sunbathe': 31666, 'bj': 4648, 'approximately': 3006, 'campaign': 5842, 'headline': 15302, 'bevigilant': 4425, 'cybersecurity': 8860, 'pinellas': 24821, 'outlier': 23668, 'tout': 33347, 'perfectly': 24489, 'combination': 7282, 'wasteful': 35455, 'throwing': 32929, 'ozharvest': 23843, 'zo': 36802, 'kan': 18069, 'het': 15569, 'ook': 23413, 'denen': 9486, 'zijn': 36777, 'gek': 13913, 'nogniet': 22606, 'kr40': 18590, 'kr100': 18589, 'dint': 9940, 'onion': 23343, 'pricey': 25605, 'frozen': 13537, 'pea': 24342, 'tmoro': 33089, 'bethoughtful': 4405, 'ended': 11399, 'essentialcommodities': 11697, 'revert': 27648, '9am': 1540, 'tine': 33032, 'replenish': 27260, 'pop': 25179, 'widespread': 35961, 'significant': 29718, 'momentum': 21369, 'amenable': 2569, 'category': 6171, 'track': 33403, 'skinca': 29888, 'autistic': 3531, 'aversion': 3579, 'autism': 3530, 'nhsfoodbanks': 22439, 'nhsstaff': 22442, 'chaos': 6457, 'approached': 2993, 'desperate': 9632, 'condiment': 7539, 'palpable': 23956, 'plannedemic': 24908, 'plandemic': 24902, 'wakeup': 35302, 'cooperation': 7923, 'prudent': 25962, 'banking': 3894, 'customerservice': 8808, 'gripevine': 14678, 'com': 7273, 'beheard': 4249, 'watchdog': 35469, 'customerfeedback': 8802, 'flcx': 12914, 'foxnews': 13339, 'coronamania': 8067, 'infinite': 16891, 'flushed': 13006, 'crap': 8420, 'pertain': 24568, 'fixing': 12846, 'cartel': 6098, 'enriches': 11502, 'enemy': 11426, 'dictator': 9809, 'inadequate': 16678, 'violate': 35071, '5g': 1143, 'billgates': 4539, 'trending': 33576, 'traderjoes': 33419, 'nut': 22937, 'gm': 14268, 'despicable': 9636, 'hording': 15927, 'softpower': 30272, 'upends': 34524, 'meredith': 20850, 'babyx': 3711, 'wasting': 35462, 'realise': 26723, 'handled': 15044, 'telehealth': 32441, 'monitoring': 21416, 'chatbots': 6507, 'hiring': 15668, 'porter': 25215, 'unskilled': 34458, 'petrified': 24608, 'nonsense': 22656, 'exercising': 11970, 'nowhere': 22847, 'policing': 25112, 'rife': 27757, 'coron': 7998, 'explaining': 12043, 'invoke': 17323, 'defenceproductionact': 9300, 'blood': 4768, 'potus': 25304, 'governorcuomo': 14482, 'catastrophic': 6163, 'rejected': 27079, 'preparation': 25488, 'dismantling': 10109, 'goodfridayreads': 14379, 'climb': 6999, 'plummet': 25012, 'restructuring': 27494, 'intel': 17147, 'defiance': 9320, 'characteristic': 6470, 'tehran': 32420, 'plunged': 25018, 'extreme': 12126, 'pressure': 25540, 'elizabeth': 11221, 'somer': 30336, 'draining': 10575, 'overtime': 23792, 'satisfy': 28558, 'sensible': 29125, 'lotl': 19692, 'piled': 24793, '700': 1267, 'suspected': 31921, 'costinflation': 8210, 'stateofemergency': 30910, 'drama': 10577, 'meghanandharry': 20742, 'infinitely': 16892, 'doomsdaypreppers': 10462, 'triple': 33621, 'digit': 9858, 'hurricane': 16187, 'flood': 12964, 'asf': 3221, 'hampered': 15012, 'stage': 30810, 'stamp': 30836, 'rocking': 27930, 'scottish': 28801, 'cable': 5719, 'intensify': 17160, 'saturday': 28564, 'ted': 32396, 'mimosa': 21079, 'insolvency': 17058, 'picked': 24749, 'marginally': 20288, 'ashley': 3231, 'tisdale': 33058, 'handed': 15033, 'ashleytisdale': 3233, 'pretect': 25549, 'stayathomeorder': 30946, 'nigerian': 22488, '1billion': 428, 'dey': 9737, 'loot': 19662, 'suffering': 31603, 'alivecor': 2388, 'expanded': 11999, 'kardiamobile': 18097, '6l': 1255, 'ecg': 10955, 'dangerously': 8991, 'prolonged': 25791, 'heartbeat': 15367, 'cyprus': 8877, 'counsellor': 8248, 'debthelp': 9201, 'debtfree': 9200, 'betting': 4415, 'tho': 32866, 'uklockdown': 34059, 'climate': 6994, 'joking': 17861, 'theyve': 32797, 'utterly': 34704, 'disappointed': 9994, 'skybroadb': 29911, 'ecosystem': 11014, 'elegance': 11193, 'odisha': 23130, 'cold': 7195, 'complication': 7470, 'gotten': 14447, 'tougher': 33331, 'manipulating': 20215, 'inappropriate': 16685, 'underestimate': 34185, 'horrible': 15938, 'refried': 26989, 'plight': 24988, 'stripping': 31430, 'hashtag': 15198, 'safest': 28288, 'transact': 33461, 'lowes': 19744, 'depot': 9549, 'entering': 11523, '03': 55, 'renting': 27220, 'kally': 18052, 'khoelcher': 18321, 'gmail': 14270, 'dot': 10487, 'goodyear': 14403, 'coldwellbanker': 7202, '269': 653, '240': 602, '8824': 1435, 'avondale': 3602, 'buckeye': 5446, 'ukitaka': 34057, 'kujua': 18638, 'ni': 22449, 'bazenga': 4067, 'zao': 36727, 'bado': 3769, 'ziko': 36778, 'juu': 18005, 'toxic': 33366, 'herb': 15522, 'peapod': 24355, 'instacart': 17081, 'amazonfresh': 2540, 'shipt': 29450, 'unavailable': 34123, 'offered': 23160, 'immunocompromised': 16566, 'hella': 15442, 'broke': 5355, 'sierra': 29698, 'otto': 23619, 'winter': 36059, 'jewelry': 17754, 'abate': 1591, 'thurs': 32947, '8pm': 1456, 'applauding': 2957, 'clapforthenhs': 6885, 'clapforcarers': 6880, 'clapforkeyworkers': 6881, 'clapforteachers': 6884, 'tolerate': 33198, 'covidabuse': 8336, 'name': 21977, 'amongst': 2621, 'lengthy': 19096, 'weird': 35646, '372': 841, '35': 809, '450': 960, 'finalise': 12689, 'password': 24205, 'actual': 1844, 'keepsafe': 18209, 'reward': 27677, 'flying': 13010, 'cruising': 8627, 'smg': 30062, 'highlight': 15606, 'boob': 4939, 'celeb': 6289, 'comment': 7335, 'catsmovie': 6187, 'butt': 5633, 'newwarriors': 22391, 'sub': 31506, 'dl': 10285, 'google': 14406, 'podcasts': 25066, 'spotify': 30659, 'pandora': 24007, 'consist': 7665, 'odd': 23124, 'exciting': 11943, 'studentnurse': 31466, 'unfortunate': 34283, 'express': 12079, 'blessed': 4719, 'specially': 30522, 'importer': 16621, 'thrive': 32911, 'unite': 34335, 'oligarchy': 23270, 'rounded': 28037, 'academic': 1696, 'inspire': 17069, 'reporter': 27279, 'historical': 15677, 'lng': 19462, 'partial': 24162, 'alternate': 2489, 'ice': 16319, 'gesture': 14023, 'communityspirit': 7391, 'emerging': 11289, 'larger': 18841, 'ausag': 3477, 'pushback': 26131, 'barwa': 3982, 'airport': 2250, 'al': 2288, 'khor': 18323, 'branch': 5153, 'pdf': 24338, 'ansar': 2803, 'ansargallery': 2804, 'qatar': 26177, 'doha': 10350, 'shoplocal': 29517, 'connecting': 7623, 'postponement': 25284, 'travelcancellations': 33531, 'chargebacks': 6475, '95': 1503, 'rationally': 26627, 'bacterial': 3754, 'becteria': 4181, 'cororonavirus': 8146, 'pgm': 24648, 'cecil': 6278, 'hometown': 15861, 'carly': 6049, 'whorton': 35928, 'foodsupplychain': 13146, 'paul': 24269, 'manly': 20222, 'nanaimo': 21991, 'ladysmith': 18735, 'blank': 4689, 'cheque': 6590, 'bail': 3796, 'technician': 32386, 'payday': 24294, 'ahold': 2202, 'spoke': 30621, 'chicago': 6621, 'stopthedebttrap': 31299, 'text': 32565, 'purporting': 26113, 'claiming': 6866, 'false': 12270, 'tree': 33566, 'njcommute': 22546, 'commuting': 7395, 'abt': 1675, 'fearing': 12468, 'liar': 19201, 'localsyr': 19496, 'graph': 14562, 'ur': 34575, 'emmudate': 11310, 'au': 3443, 'ml': 21232, 'proportion': 25845, 'hair': 14941, 'incentive': 16697, 'redkenobsessed': 26916, 'versus': 34957, 'economist': 11007, 'foodiefox': 13111, 'beverage': 4422, '0cscqx1nz5': 126, 'marketresearch': 20339, 'consumerinsights': 7730, 'victory': 35001, 'chile': 6642, 'organic': 23534, 'strawberry': 31376, 'preserve': 25522, 'nightmare': 22496, 'incarceration': 16693, 'corprorate': 8162, 'stagnation': 30820, 'quantitative': 26232, 'easing': 10881, 'humanitarian': 16126, 'bigangryphil': 4500, '153': 285, 'late': 18872, 'ana': 2658, 'arrest': 3145, 'staytuned': 31047, 'recallgavinnewsom': 26800, 'panicfear': 24030, 'blizzard': 4744, 'emailing': 11251, 'reply': 27270, 'dong': 10405, 'honorable': 15887, 'charging': 6477, 'extortionate': 12110, 'cousin': 8299, 'aunty': 3474, 'transformed': 33478, 'confused': 7597, 'rising': 27815, 'fare': 12315, 'men': 20793, 'sending': 29100, 'anymore': 2867, 'simpler': 29757, 'defending': 9303, 'joined': 17850, 'tata': 32279, 'indian': 16788, 'lucrative': 19793, 'temptation': 32474, 'susceptible': 31916, 'pumped': 26061, 'wankspangle': 35366, 'tit': 33062, 'nasty': 22043, 'cockwomble': 7134, 'broccoli': 5348, 'coronavi': 8121, 'petchems': 24590, 'tracked': 33404, 'rally': 26512, 'bbl': 4083, 'petrochemical': 24612, 'drastic': 10584, '2chainz': 697, 'atlhawks': 3382, 'quavo': 26297, 'statefarm': 30906, 'thankyou': 32619, 'healthcareheroes': 15325, 'develop': 9708, 'deferment': 9312, 'repayment': 27240, 'extension': 12094, 'pj': 24874, 'coronapocolypse': 8089, 'tandem': 32216, 'adminerrorvirus': 1928, 'sacking': 28248, 'quadrupling': 26214, 'squalid': 30736, 'administrative': 1932, 'error': 11649, 'pure': 26095, 'pacman': 23883, 'lmao': 19453, 'pic': 24746, 'raided': 26471, 'sparse': 30493, 'turmoil': 33868, 'bracing': 5123, 'wider': 35959, 'composed': 7478, 'uncertain': 34140, 'heightened': 15420, 'cmc': 7079, 'cfd': 6374, 'gallaudet': 13760, 'processor': 25703, 'belong': 4297, 'chart': 6494, 'exponential': 12067, 'baltimore': 3848, 'maryland': 20404, 'apex': 2893, 'saveourfuture': 28608, 'savehumans': 28601, 'hunter': 16175, 'orwellian': 23579, 'breathtaking': 5230, 'egging': 11105, 'wartime': 35416, 'contrived': 7843, 'naivas': 21957, 'baringo': 3940, 'commander': 7325, 'ibrahim': 16306, 'abajila': 1586, 'amina': 2598, 'mutio': 21819, 'ramadhan': 26521, 'exemplary': 11963, 'christchurch': 6745, '71': 1283, 'internetfacts': 17211, 'kloudportal': 18477, 'committedtobreakthechain': 7359, 'mealsonwheels': 20627, '73': 1299, 'squeezed': 30747, 'disability': 9977, 'scrubbing': 28850, 'universal': 34351, 'surprise': 31874, 'payer': 24296, 'laying': 18952, 'bogglingly': 4875, 'blue': 4798, 'warm': 35394, 'hot': 15973, 'runwalgroup': 28154, 'audio': 3458, 'postal': 25260, 'prepares': 25493, 'paddy': 23890, 'wagon': 35271, 'lynx': 19886, 'doorstep': 10472, 'robux': 27912, 'gfx': 14064, 'swindle': 32016, 'lookout': 19643, 'nationalized': 22062, 'defective': 9298, 'smallbusinesses': 30021, 'giftcards': 14112, '401': 909, 'richmond': 27732, 'broken': 5356, 'cbs': 6231, 'philly': 24690, 'fao': 12306, 'indicates': 16802, '172': 327, 'linked': 19334, 'wonky': 36181, 'historic': 15676, 'g20': 13726, 'critic': 8545, 'vast': 34837, 'majority': 20076, 'concrete': 7529, 'bunker': 5527, 'tinned': 33038, 'inspired': 17070, 'kuwait': 18660, 'corp': 8150, 'instructed': 17117, 'subsidiary': 31545, 'capital': 5946, 'pact': 23885, 'slay': 29949, 'comfort': 7302, 'lockdownuknow': 19554, '5baje5minute': 1135, 'lockdownsouthafrica': 19550, 'coronaupdatesinindia': 8116, 'janatacurfew': 17632, 'tribute': 33592, 'fantastic': 12301, 'football': 13169, 'resume': 27505, 'portman': 25221, 'ticket': 32963, 'honour': 15890, 'boosting': 4969, 'met': 20883, 'stretched': 31409, 'thin': 32811, 'faster': 12376, 'deciding': 9227, 'transfer': 33468, 'swipe': 32024, 'jack': 17572, 'quarantineandchill': 26245, 'zombieapocalypse': 36809, 'houstonlockdown': 16027, 'concise': 7522, 'summary': 31654, 'relation': 27092, 'consumerrights': 7742, 'deliveroo': 9420, 'vital': 35143, 'inews': 16869, 'refrain': 26983, 'grocerystore': 14708, 'milano': 21035, 'catching': 6167, 'flocking': 12962, 'shouldnt': 29585, 'km': 18478, 'wasn': 35448, '10x12': 176, 'sifted': 29703, 'moscow': 21524, 'witnessed': 36122, 'eastoffice': 10903, 'hill': 15630, 'twp': 33941, 'pave': 24278, 'township': 33363, 'isolate': 17461, 'ourselves': 23632, 'jwj': 18007, 'graduated': 14521, 'vapers': 34809, 'savvy': 28627, 'confident': 7566, 'ecigs': 10962, 'publichealth': 26016, 'adjustment': 1921, 'focuscamera': 13033, 'deterioration': 9683, 'showing': 29598, 'willing': 36005, 'homemade': 15835, 'detroitstrong': 9695, 'cashapp': 6120, 'ritualsbiinky': 27835, 'responds': 27442, 'eminating': 11299, 'livid': 19424, 'haunting': 15226, 'soundbite': 30400, 'interstellar': 17230, 'globalpandemic': 14236, 'wayspeoplearetheworst': 35503, 'toiletrollchallenge': 33183, 'toiletpaperemergency': 33157, 'xbox': 36444, 'playstation': 24950, 'steam': 31064, 'stadium': 30801, 'noballs': 22578, 'leafyishere': 18984, 'ps4': 25967, 'cbdc': 6219, 'econ': 10984, 'distributional': 10220, 'implication': 16605, 'approach': 2992, 'statue': 30930, 'dat': 9039, 'monayy': 21377, 'pearl': 24357, 'everyonespoor': 11859, 'socialism': 30221, 'qurantine': 26380, 'statueslivingbetter': 30931, 'activated': 1825, 'operational': 23448, 'mama': 20150, 'sober': 30178, 'earring': 10869, 'clair': 6867, 'hedgehog': 15404, 'hedgielove': 15406, 'makingpeoplesmile': 20109, '800': 1359, '44': 951, 'browsing': 5387, '2009': 468, 'pmd09': 25035, 'bet': 4399, 'latent': 18878, 'revealed': 27629, 'beast': 4132, 'macroeconomic': 19932, 'deepen': 9279, 'summarizes': 31653, 'occasion': 23088, 'irish': 17387, 'terriblecustomerservice': 32521, 'wiltshire': 36016, '300': 743, 'dessert': 9645, 'homedeliveries': 15819, 'helpeachother': 15452, 'cancelled': 5873, 'behalf': 4237, 'syrian': 32097, 'rushed': 28168, 'resort': 27411, 'stricter': 31413, 'ester': 11727, 'vitaminc': 35146, 'reputation': 27318, 'circle': 6810, 'sanitised': 28457, 'oriented': 23552, 'eg': 11098, 'bigpharma': 4516, 'supplement': 31784, 'rightly': 27769, 'practitioner': 25373, 'gerrity': 14013, 'kevin': 18283, 'takeaway': 32159, 'hairdresser': 14946, 'reacted': 26678, 'confluence': 7588, 'technical': 32382, 'gld': 14201, 'boneless': 4926, 'whichever': 35854, 'wing': 36043, 'flavor': 12907, 'daiquiri': 8929, '5005': 1038, 'cooper': 7920, 'arlington': 3110, 'tx': 33943, 'institute': 17107, 'beating': 4140, 'punishment': 26077, 'traitor': 33452, 'pro': 25680, 'jersey': 17728, 'tcot': 32323, 'buildthewall': 5481, 'pjnet': 24876, 'evangelicals': 11821, 'uniteblue': 34336, 'p2': 23850, 'bamy': 3856, 'merchandise': 20838, 'infrared': 16934, '3m': 881, 'bamyglobal': 3857, '861577877688': 1417, 'whatspps': 35798, '8618607740759': 1419, '07063501522': 87, '08028611855': 110, 'electricity': 11178, 'distinguish': 10199, 'rwanda': 28192, 'jacked': 17576, 'ripped': 27799, 'brit': 5317, 'moscowmitchslushfund': 21526, 'trumpslushfund': 33731, 'trumpvirus': 33739, 'trumplung': 33714, 'pandumbi': 24008, 'siraj': 29820, 'chaudhry': 6514, 'md': 20607, 'hiya': 15693, 'monster': 21429, 'liveinhope': 19408, 'raleys': 26510, 'bel': 4267, 'manage': 20160, 'hmm': 15710, 'fleeced': 12921, '449': 957, '199': 400, 'staythef': 31044, 'athome': 3368, 'capping': 5963, 'shooting': 29490, 'coronaupdatesindia': 8115, 'groceryworkers': 14717, 'bernie': 4359, 'guarantee': 14788, 'uninsured': 34317, 'insured': 17135, 'billing': 4541, '150': 276, '400': 906, '1yr': 455, 'heroic': 15549, 'selfegodrivenisolation': 29022, 'pipedown': 24838, 'importance': 16615, 'musician': 21792, 'dancer': 8980, 'model': 21295, 'apocalypse2020': 2912, 'hedging': 15407, 'workout': 36248, 'multi': 21712, 'millionaire': 21066, 'dentist': 9508, 'swimming': 32012, 'pool': 25159, 'sauna': 28584, 'mansion': 20235, 'hq': 16059, 'sweep': 31988, 'bakersfield': 3816, 'socialmediamarketing': 30236, 'networkmarketing': 22307, 'sth': 31142, 'soft': 30264, 'federation': 12491, 'merchant': 20841, 'advance': 1984, 'nerida': 22279, 'conisbee': 7614, 'tirupati': 33057, 'vegetableprices': 34877, 'italian': 17500, 'greek': 14619, 'jt': 17909, 'peter': 24593, 'whatshisname': 35796, 'lobster': 19480, 'tank': 32223, 'france': 13362, 'spain': 30470, 'austria': 3508, 'religion': 27133, 'looroll': 19654, 'madincanada': 19960, 'promotionalproducts': 25810, 'signage': 29710, 'clawed': 6920, 'writes': 36353, 'mcpro': 20603, 'marketswithmc': 20344, 'cougher': 8230, 'raymond': 26649, 'coombs': 7914, 'appears': 2947, 'court': 8292, 'lessen': 19118, '30th': 770, 'obviously': 23085, 'amend': 2570, 'massively': 20456, 'tragedy': 33439, 'hal': 14962, 'sosabowski': 30390, 'returned': 27603, 'regret': 27034, 'holder': 15767, 'requiring': 27330, '01765': 37, '680215': 1233, 'representing': 27296, 'ordinance': 23518, 'mtnwestnews': 21669, 'commits': 7356, '25m': 638, 'waived': 35292, 'promotional': 25809, 'writer': 36351, 'logit': 19592, 'discussing': 10064, 'overrun': 23773, 'rebel': 26784, 'square': 30738, 'saturdaythoughts': 28569, 'chinaliedandpeopledied': 6661, 'observer': 23063, 'typically': 33958, 'carton': 6103, 'hindustan': 15650, 'counterfeit': 8260, 'contagious': 7765, 'flip': 12948, 'flop': 12970, 'filthy': 12682, 'responsible': 27449, 'yorkshire': 36621, 'lowe': 19739, 'metering': 20892, 'customertraffic': 8810, 'assist': 3306, 'customerexperience': 8801, 'consumerbehavior': 7713, 'retailtech': 27552, 'contapersone': 7785, 'peoplecounting': 24456, 'handing': 15040, 'rationed': 26628, 'bestofpeople': 4394, 'sec': 28931, 'thoroughly': 32880, 'finished': 12751, 'sincerest': 29786, 'desk': 9627, 'nkstain': 22557, 'underlying': 34193, 'fcukin': 12451, 'highriskcovid19': 15611, 'morrison': 21511, 'frozenfood': 13538, 'nostock': 22748, 'exchanging': 11939, 'lusty': 19841, 'various': 34829, 'lately': 18875, 'export': 12070, 'groceryworkersdie': 14718, 'storeclosings': 31317, 'usbiz': 34619, 'cdnbiz': 6263, 'console': 7672, 'breakroom': 5219, 'eventually': 11838, 'crippling': 8532, 'deprived': 9559, 'episode': 11594, 'chopped': 6730, 'entitled': 11539, 'border': 4984, 'ie': 16395, 'distributor': 10221, 'digitised': 9897, 'revamp': 27626, 'sourcing': 30409, 'olympics': 23284, 'sponsor': 30632, 'tackling': 32123, 'grown': 14752, 'seasonalworkers': 28910, 'migrantlabourers': 21020, 'shutoffs': 29645, 'mike': 21028, 'poorer': 25174, 'earning': 10864, 'agricandcovid19': 2173, 'unsolicited': 34461, 'suspicious': 31929, 'massachusetts': 20447, 'exactly': 11905, 'feared': 12465, 'demanded': 9446, 'naija': 21948, 'bbnaija': 4084, '67': 1228, 'humboldtcounty': 16143, 'widely': 35956, 'latexgloves': 18886, 'relying': 27147, 'extremely': 12129, 'hoosier': 15908, 'kinyarwanda': 18413, 'invent': 17286, 'rwot': 28198, 'fortify': 13284, 'itv': 17543, 'foundation': 13320, '3layered': 880, '24ltrs': 618, 'renowned': 27214, 'gestrointrogist': 14022, 'sarin': 28536, 'santitation': 28497, 'coronawarriors': 8134, 'itvfoundation': 17545, 'tunnel': 33850, 'installed': 17091, 'narol': 22020, 'relaxed': 27101, 'vietnam': 35021, 'malaysia': 20122, 'benefited': 4316, 'yr': 36683, 'carpe': 6076, 'diem': 9825, 'bfa': 4438, 'caliber': 5778, 'male': 20129, '62yo': 1200, 'lived': 19407, 'canberra': 5867, 'practicing': 25369, 'clientes': 6988, 'carioca': 6040, 'buscando': 5574, 'prote': 25882, 'contra': 7820, 'ru': 28092, 'supermercados': 31762, 'guanabara': 14786, 'award': 3616, 'hearted': 15371, 'uhuru': 34030, 'kenyatta': 18256, 'moody': 21451, 'awori': 3638, 'radically': 26443, 'altered': 2487, 'cole': 7203, 'landscape': 18813, 'waitrose': 35289, 'creative': 8462, 'substituting': 31559, 'bestseller': 4395, 'existential': 11987, 'lifetime': 19267, 'scratchcards': 28824, 'methinks': 20896, 'altoriesgocovid19': 2499, 'occur': 23100, 'execute': 11961, 'olympics2020': 23285, 'backdrop': 3725, 'payne': 24304, 'imitate': 16540, 'tendency': 32485, 'hev': 15570, 'directed': 9958, 'pres': 25503, '100pcs': 142, 'ppes': 25356, 'egyptian': 11117, 'internal': 17200, 'affirmed': 2055, 'resign': 27386, 'insidertrading': 17046, 'chems': 6586, 'q2': 26165, 'footing': 13176, 'mood': 21449, 'obesiti': 23035, 'launder': 18915, 'french': 13452, 'emmanuel': 11308, 'macron': 19934, 'imposed': 16624, 'declaring': 9241, 'municipal': 21754, 'election': 11169, 'duty': 10799, 'mayhem': 20541, 'inspirational': 17068, 'assault': 3285, 'ear': 10850, 'shite': 29455, 'sudden': 31591, '74': 1302, 'library': 19218, 'iymi': 17565, '6trillion': 1264, 'thai': 32582, 'seven': 29215, 'anticipated': 2826, 'rival': 27836, 'teamwork': 32359, 'displayed': 10144, 'grossly': 14730, 'inflating': 16901, 'attempting': 3408, 'bragging': 5132, 'hooper': 15905, 'neda': 22216, 'aiming': 2221, 'ass': 3280, 'ecq': 11017, 'agri': 2170, 'devendra': 9714, 'furloughed': 13674, 'modification': 21315, 'trustee': 33752, 'rush': 28167, 'cannabis': 5897, 'political': 25122, 'exaggerated': 11906, 'stfu': 31141, 'evolving': 11887, 'equally': 11606, 'analyzed': 2674, 'sift': 29702, 'uncover': 34162, 'tablet': 32115, 'laptop': 18835, 'touchscreen': 33327, 'mbot': 20561, 'mrna': 21631, 'biotechnology': 4598, 'gild': 14128, 'clx': 7075, 'lake': 18758, 'zm': 36800, 'rng': 27871, 'freedom': 13417, 'nope': 22674, 'hosta': 15963, 'urban': 34578, 'millennial': 21058, 'sandeep': 28428, 'da': 8888, 'highlighting': 15608, 'pulling': 26051, 'hotfuzz': 15984, 'final': 12687, 'unrealistic': 34430, 'midwest': 21007, 'fallout': 12267, 'disinflationary': 10098, 'stronger': 31440, 'dxy': 10817, 'carbs': 5991, 'cradle': 8395, 'applied': 2973, 'henrik': 15512, 'schou': 28763, '00am': 10, 'pst': 25981, 'thursdaythoughts': 32951, 'excellent': 11925, 'permanently': 24516, 'footage': 13168, 'sweeping': 31990, 'angus': 2745, 'hoity': 15756, 'toity': 33189, 'mignon': 21017, 'thigh': 32807, 'groceryshopping': 14705, 'comms': 7375, 'infographic': 16918, 'socialmedia2day': 30233, 'swearing': 31982, 'selfless': 29045, 'londoner': 19610, 'stripped': 31427, 'suggested': 31617, 'garlic': 13812, 'chilli': 6647, 'split': 30613, 'red': 26885, 'lentil': 19104, 'muster': 21805, 'dual': 10704, 'suncor': 31672, 'curtail': 8773, 'practise': 25370, 'pavement': 24279, 'socially': 30230, 'ugh': 34019, '9th': 1550, 'five': 12837, 'expand': 11998, 'efficiency': 11088, 'risky': 27829, 'creativity': 8467, 'salad': 28346, 'energytwitter': 11439, 'crushing': 8638, 'restrict': 27484, 'cafe': 5736, 'closer': 7027, 'corpgov': 8151, 'cmo': 7085, 'esg': 11674, 'grc': 14596, 'boardofdirectors': 4839, 'directorship': 9966, 'governance': 14469, 'vc': 34851, 'cvc': 8839, 'smb': 30051, 'ux': 34712, 'cx': 8849, 'transunion': 33509, 'accessible': 1720, 'built': 5482, 'properly': 25828, 'confinement': 7573, 'demonstrated': 9475, 'fragility': 13355, 'getty': 14051, 'alleviate': 2416, '07': 86, 'nicely': 22456, 'wheel': 35814, 'sputum': 30724, 'merica': 20854, 'bigoil': 4515, 'revolt': 27668, 'revolting': 27669, 'venture': 34919, 'anyways': 2873, 'trunk': 33744, 'starving': 30893, 'clout': 7051, 'punk': 26080, 'mr': 21623, 'tasty': 32277, 'aim': 2219, 'contac': 7758, '051': 76, '5705253': 1111, '0338819977': 62, 'askari': 3256, 'complex': 7462, 'rawalpindi': 26644, 'fastfood': 12379, 'purposefully': 26115, 'spit': 30597, 'apprehended': 2988, 'analyze': 2673, 'iraq': 17377, 'proxy': 25958, 'militia': 21045, 'ability': 1628, 'suppress': 31832, 'youth': 36665, 'october': 23117, 'revolution': 27671, 'statutory': 30935, 'selfemployed': 29023, 'freelance': 13426, 'crumbled': 8630, 'accelerator': 1708, 'return': 27602, 'pointing': 25083, 'solving': 30320, 'marginal': 20286, 'apps': 3007, 'conducted': 7550, 'scamalert': 28669, 'bb': 4068, 'antiviral': 2846, 'legitimate': 19062, 'shape': 29312, 'fudging': 13601, 'degrowrth': 9362, 'correlated': 8172, 'pogrom': 25076, 'kashmir': 18110, 'boycotting': 5101, '2a': 687, 'visa': 35115, 'labor': 18707, 'bigger': 4509, 'fix': 12841, 'thrived': 32912, 'lobbying': 19476, 'exemption': 11966, 'skirting': 29903, 'accountability': 1744, 'alexander': 2352, 'galitsky': 13758, 'nyt': 22998, 'validated': 34758, 'compete': 7431, 'staycalmdontpanicbuy': 30957, 'declined': 9244, 'doorman': 10470, 'entrance': 11542, 'nominate': 22630, 'youre': 36645, 'bullshit': 5507, 'gst': 14776, 'kickstart': 18339, 'semblance': 29079, 'taxholiday': 32296, 'millennials': 21059, 'stack': 30795, '2k': 709, 'stockpilers': 31223, 'afterlife': 2094, 'beirut': 4260, 'steak': 31059, 'selfishpricks': 29037, 'faculty': 12211, 'pharmaceuticalsciences': 24661, 'formulated': 13266, 'rupure': 28163, 'handsanitizers': 15057, 'freely': 13431, 'distributed': 10216, 'ramauniversity': 26528, 'subsidized': 31549, 'ramahospitals': 26522, 'securityguards': 28958, 'particular': 24169, 'hired': 15667, 'sop': 30373, 'evil': 11879, 'pain': 23911, 'delta': 9435, 'tl': 33080, 'accessory': 1722, 'boardgames': 4837, 'ahh': 2194, 'provincial': 25947, 'inspector': 17064, 'picker': 24751, 'muchrespect': 21678, 'genomics': 13962, '23andme': 598, 'scare': 28697, 'economiccrisis': 10994, 'sbux': 28658, 'dooprime': 10464, 'buyshares': 5679, 'buystocks': 5680, 'makemoney': 20093, 'makemoneyonline': 20095, 'makemoneyfromhome': 20094, 'stressful': 31404, 'distraction': 10206, 'yolo': 36609, 'fur': 13668, 'miserably': 21160, 'crucial': 8613, 'pleased': 24967, 'gebb': 13903, 'entertain': 11527, 'diarea': 9790, 'parking': 24135, 'kijiji': 18362, '950': 1504, 'blocked': 4754, 'chose': 6738, 'motivating': 21557, 'foodforthought': 13101, 'kindness': 18397, 'atmosphere': 3385, 'wehavethis': 35633, 'prosecute': 25865, 'gobshites': 14298, 'forefront': 13213, 'socialmedia': 30231, 'strategically': 31369, 'focused': 13034, 'math': 20492, 'brian': 5267, 'passing': 24195, 'within': 36113, 'ft': 13558, 'roommate': 27997, 'beg': 4225, 'morecambe': 21481, '45pm': 973, 'lancaster': 18795, 'recognise': 26831, 'dunedin': 10756, 'pitchfork': 24856, 'firebrand': 12775, 'octagon': 23115, '7pm': 1355, 'ammunition': 2612, 'stayhomeforus': 30985, 'medtwitter': 20717, 'coloradoans': 7255, 'pinch': 24816, 'cupboard': 8734, 'anxiously': 2862, 'cloth': 7041, 'setting': 29208, 'upstream': 34562, 'foodservice': 13136, 'gimmick': 14138, 'sweat': 31983, 'yow': 36672, 'bros': 5373, 'ottawa': 23615, 'ottcity': 23617, 'techtiptuesday': 32394, 'captured': 5975, 'attention': 3415, 'hasn': 15200, 'queued': 26330, 'pulse': 26056, 'tamarind': 32200, 'shot': 29576, 'deuce': 9697, 'buffoon': 5465, 'agar': 2113, 'issey': 17487, 'bachey': 3717, 'rahey': 26464, 'toh': 33137, 'dishwasher': 10087, 'cordless': 7956, 'vaccum': 34728, 'fo': 13026, 'plain': 24896, 'scrambled': 28815, 'slice': 29967, 'cheese': 6556, 'cheesy': 6559, 'design': 9610, 'signmaking': 29723, 'crowding': 8603, 'rid': 27737, 'instrument': 17121, 'wealthy': 35530, 'wrote': 36363, 'expenditure': 12020, 'promoting': 25807, 'migration': 21023, 'present': 25514, 'unfolds': 34278, 'scrap': 28818, 'orange': 23503, 'recipe': 26822, 'glutenfree': 14261, 'pakistani': 23931, 'bangladeshi': 3883, 'eatable': 10912, 'halal': 14964, 'culprit': 8707, 'ripping': 27800, 'vaka': 34744, 'teamfiji': 32347, 'reposting': 27288, 'bos': 5018, 'booty': 4976, 'covic': 8329, 'gender': 13930, 'economically': 10992, 'hospitality': 15954, 'nonexistent': 22643, 'trendlines': 33579, 'theweeklyshop': 32790, 'vulnerablegroups': 35242, 'ally': 2444, 'stabilize': 30789, 'shaping': 29314, 'wearedtb': 35549, 'fightback': 12634, 'berger': 4346, 'spar': 30482, 'wimbledon': 36017, 'sponsorship': 30635, 'inflate': 16898, 'shame': 29291, 'walsh': 35343, 'boston': 5029, 'dazee': 9124, 'unprotected': 34421, 'ww2': 36414, 'grandchild': 14535, 'obey': 23037, 'historyinthemaking': 15680, 'launched': 18913, 'comprehensive': 7489, 'dshcovid19': 10683, '21dayslockdown': 554, 'bioweapon': 4599, 'hence': 15506, 'copd': 7935, 'bracken': 5124, 'fortunate': 13294, 'complacent': 7448, 'storage': 31312, 'depleted': 9534, 'factbox': 12202, 'bankruptcy': 3903, 'cm': 7077, 'naveen': 22109, 'luzon': 19859, 'enhanced': 11470, 'los': 19674, 'ba': 3691, 'laguna': 18750, 'barely': 3932, 'zurfi': 36841, 'appoint': 2979, 'deeply': 9285, 'fractured': 13352, 'parliament': 24145, 'discontent': 10033, 'succeed': 31568, 'emt': 11364, 'journey': 17892, 'kfc': 18302, 'spamming': 30476, 'faceless': 12179, 'buddy': 5453, 'compensate': 7428, 'independent': 16771, 'tenant': 32481, 'wasl': 35447, 'instruct': 17116, 'shebuildspeace': 29363, 'shocking': 29476, 'lockdownhouseparty': 19527, 'pretend': 25550, 'ssn': 30773, 'suspended': 31923, 'consecutive': 7644, 'dontbeaspreader': 10421, 'owns': 23825, 'charmin': 6493, 'perform': 24490, 'pg': 24646, 'financialcrisis': 12704, 'pm': 25030, 'bite': 4629, 'pourhouse': 25315, 'grill': 14664, '970': 1522, '669': 1227, '1699': 316, 'resolved': 27406, 'ryanairrefunderror': 28204, 'ryanairrefund': 28203, 'jello': 17702, '47': 982, 'tescon': 32540, 'deliberately': 9395, 'damaged': 8956, 'kent': 18245, 'fleet': 12926, 'asap': 3214, 'dedicate': 9264, 'contribute': 7837, 'missourian': 21193, 'moleg': 21357, 'realize': 26735, 'begun': 4236, 'mitch': 21206, 'zeller': 36750, 'upholding': 34534, 'scientific': 28775, 'bedrock': 4190, 'principle': 25631, 'shuts': 29646, '5k': 1150, 'behaving': 4241, 'bankruptbritain': 3902, 'realigned': 26721, 'inequality': 16863, 'zoomed': 36821, 'wrap': 36330, 'flixton': 12956, 'lovestmichaels': 19732, 'everylittlehelps': 11853, 'newsalert': 22367, 'wti': 36378, 'slumped': 30008, '2003': 460, 'slash': 29937, 'afp': 2073, 'implementing': 16601, '7am': 1345, 'allergic': 2412, 'vertical': 34958, 'afterglow': 2092, 'fade': 12213, 'stockcrash': 31205, 'seeking': 28983, 'dry': 10675, 'wheezy': 35821, 'commencing': 7332, 'moi': 21340, 'hopkins': 15919, 'interactive': 17172, 'dashboard': 9037, 'consumerist': 7733, 'culture': 8714, 'grocerystores': 14714, 'bhukari': 4471, 'unlike': 34380, 'hungar': 16161, 'collapsi': 7217, 'birthday': 4611, 'wth': 36377, 'zoom': 36818, 'meeting': 20728, 'broker': 5357, 'navigating': 22114, 'installment': 17094, 'purna': 26109, 'mishra': 21165, 'outline': 23669, 'effectively': 11084, 'trai': 33441, 'dth': 10695, 'connecti': 7621, 'tight': 32980, 'tag': 32136, 'retailhell': 27532, 'retailproblems': 27544, 'rich': 27720, 'littlebitofhumanity': 19390, 'mondel': 21391, 'hourly': 16001, '125': 220, 'representative': 27294, 'a1': 1557, 'represent': 27292, 'outsize': 23692, 'immigrantsthrive': 16553, 'outer': 23651, 'packaging': 23874, 'binned': 4562, 'shameless': 29295, 'army': 3122, 'keyworking': 18299, 'coffin': 7163, 'cycled': 8866, 'ticked': 32962, 'th': 32578, 'mavieconfinee': 20520, 'confinementjour2': 7576, 'relax': 27099, 'covfefe': 8325, 'nightreads': 22499, 'threatening': 32898, '3b': 863, 'affordable': 2063, 'kurdistan': 18652, 'perfume': 24495, 'makeup': 20101, 'garbage': 13797, 'canonspark': 5918, 'tradingstandards': 33431, 'portrayal': 25223, 'nervous': 22281, 'backtracking': 3743, 'slime': 29977, 'ball': 3835, 'tour': 33336, 'donald': 10391, 'mar': 20261, 'impostor': 16631, 'mt': 21659, 'sanitized': 28465, 'cuttaxes': 8829, 'dista': 10180, 'fetch': 12569, 'forgotten': 13247, 'staythefhome': 31045, 'thrown': 32930, 'bothering': 5041, 'gaurds': 13855, 'pretending': 25552, 'exotic': 11996, 'getaway': 14029, 'sanitisers': 28459, 'hygienic': 16246, 'dbz': 9131, 'westandwithitaly': 35711, 'bridgwater': 5281, 'helpnhstoday': 15471, 'upcountry': 34517, 'possibility': 25255, 'grandparent': 14545, '79': 1338, 'wishing': 36093, 'concert': 7516, 'gay': 13863, 'unfashionable': 34267, 'elton': 11245, 'involves': 17329, 'legislative': 19057, 'kratom': 18596, 'arvsgt': 3204, 'naughty': 22101, 'bikers': 4527, 'a36': 1562, 'a272': 1561, 'leftover': 19042, 'mac': 19907, 'overshadowed': 23779, 'theme': 32716, 'barter': 3976, 'instance': 17097, 'swap': 31969, 'loo': 19630, 'atliens': 3383, 'emts': 11365, 'directive': 9962, 'downgrade': 10522, 'ameliorate': 2567, 'map': 20255, 'cake': 5754, 'briton': 5327, 'plea': 24959, 'nicest': 22460, 'gassing': 13835, 'soaring': 30174, 'alcoholic': 2331, 'fmcg': 13012, 'stung': 31481, 'subscription': 31536, 'superior': 31730, 'pocket': 25058, 'expat': 12004, 'questionable': 26324, 'trucker': 33663, 'restocked': 27472, 'thankatrucker': 32598, 'navigate': 22111, 'history': 15679, 'remnant': 27177, 'acre': 1811, 'cucumber': 8694, 'resilient': 27391, 'bountiful': 5063, 'harvest': 15190, 'curative': 8743, 'credible': 8474, 'nasties': 22041, 'huh': 16114, 'drugmaker': 10664, 'haus': 15227, 'hanz': 15099, 'b2c': 3683, 'instore': 17113, 'showroom': 29602, 'dream': 10603, 'vehicle': 34886, 'carl': 6042, 'safina': 28298, 'ebola': 10945, '3of': 888, 'pathogen': 24237, 'originate': 23557, 'lipsman': 19345, 'digitalmarketing': 9882, 'emarketer': 11253, 'javitscenter': 17665, 'newyorkcity': 22397, 'editorial': 11041, 'bro': 5333, 'publicly': 26024, 'traded': 33414, 'lockstep': 19568, 'wineandspirits': 36033, 'rolled': 27963, 'radiofrequencies': 26447, 'destroying': 9659, 'genetic': 13954, '5gtowers': 1146, 'beaming': 4120, 'microwave': 20984, 'corona5g': 8002, 'karen': 18099, 'collecting': 7227, 'weaponsofmassdestruction': 35534, 'chyna': 6785, 'israel': 17484, 'directenergyweapons': 9959, 'cruiseships': 8626, 'jointhedots': 17853, 'girl': 14147, 'schwans': 28768, 'smartphone': 30042, 'damp': 8968, 'soapy': 30170, 'microfiber': 20970, 'earphone': 10868, '1775': 334, 'patrick': 24252, 'henry': 15513, 'infamous': 16876, 'liberty': 19216, 'satire': 28555, 'patrickhenry': 24253, 'foundingfathers': 13324, 'caravan': 5983, 'registration': 27029, 'alike': 2384, 'shoprites': 29549, 'sickened': 29668, 'workingfromhome': 36236, 'workpjs': 36249, 'iron': 17391, 'ore': 23525, '82': 1380, '92': 1478, 'vale': 34748, '350': 810, 'nikki': 22508, 'fried': 13488, 'activates': 1826, 'victoria': 34996, 'depth': 9564, 'hongkongers': 15882, 'fabric': 12164, 'childresistant': 6641, 'prerolls': 25502, 'cannabiscommunity': 5899, 'aka': 2270, 'bizarre': 4642, 'censored': 6314, 'actorcon': 1839, 'subject': 31518, 'distracting': 10205, 'kardashian': 18096, 'ac': 1693, '00s': 16, 'buckle': 5448, '5m': 1157, 'beard': 4124, 'reader': 26690, 'skyward': 29924, 'peep': 24380, 'cowvid19': 8355, 'cowvid': 8354, 'worldofcow': 36273, 'workingfromhomelife': 36237, '2011': 478, 'revived': 27660, 'suppresses': 31834, 'ash': 3224, 'resold': 27402, 'insanely': 17032, '85p': 1412, 'adequate': 1898, 'solely': 30297, 'overspending': 23783, '2k20': 710, 'cardio': 6003, 'babydoll': 3701, 'basketball': 4004, 'nfl': 22414, 'nba': 22129, 'peaceful': 24344, 'compilation': 7444, 'insightful': 17049, 'attentive': 3416, 'goddamn': 14308, 'treasure': 33558, 'hunt': 16174, 'universe': 34355, 'kate': 18119, 'telstra': 32460, 'noise': 22614, 'contributing': 7840, 'incentivize': 16699, 'deferred': 9314, 'fijinews': 12658, 'assign': 3303, 'codvid19': 7150, 'vo': 35166, 'provisioned': 25950, 'sized': 29854, 'bridgewater': 5278, 'heavily': 15394, 'dax': 9096, 'congrats': 7605, 'hedgefonds': 15402, 'bug': 5467, 'automatically': 3540, 'subtitle': 31561, 'relationship': 27093, 'optimize': 23490, 'wtutureipsos': 36385, 'prioritize': 25646, 'smaller': 30022, 'urgently': 34589, 'cb': 6215, 'mkt': 21228, 'altogether': 2498, 'rut': 28178, 'ndx': 22191, 'curtis': 8780, 'subjected': 31519, 'helpus': 15487, 'youidiot': 36634, 'jamesmaybloke': 17622, 'richardhammond': 27724, 'topgear': 33248, 'thegrandtour': 32693, 'coronabeer': 8008, 'snippet': 30134, 'learnt': 19006, '81': 1373, 'surged': 31861, 'moisturising': 21345, 'browse': 5385, 'wey': 35759, 'chop': 6729, 'unexpected': 34260, 'healthier': 15337, 'instruction': 17118, 'footmark': 13177, 'internationally': 17208, 'harmonised': 15166, 'adjusted': 1918, 'sokonews': 30283, 'courtesy': 8295, 'appreciation': 2986, 'robinson': 27903, 'eaten': 10913, 'foodbanks': 13084, 'stopukhunger': 31310, 'heri': 15542, 'ensures': 11515, 'alabama': 2289, 'insecurity': 17039, 'ultimate': 34082, 'master': 20460, 'toiletpapermagazine': 33164, 'lionelrichie': 19342, 'covd': 8305, 'presented': 25516, 'artisanal': 3184, 'mining': 21116, 'ukrainian': 34066, 'intheknow': 17242, 'taskforce': 32267, 'oakville': 23018, 'halton': 14994, 'caremongering': 6025, 'coronvirus': 8141, 'pioneer': 24834, 'cdx': 6270, '15th': 300, '1pm': 449, 'et': 11738, 'arla': 3108, 'skulduggery': 29907, 'unscrupulous': 34453, 'undervalued': 34222, 'kitconews': 18442, 'metal': 20886, 'cuban': 8691, 'versailles': 34951, 'teamed': 32345, 'sedano': 28964, 'pickled': 24755, 'ginger': 14140, 'cub': 8689, 'tnie': 33097, 'workin': 36232, 'mongs': 21409, 'lip': 19343, 'messagewrap': 20875, 'antimicrobial': 2837, 'facility': 12199, '72': 1289, '605': 1176, 'cylinder': 8873, 'bharat': 4453, 'bhushan': 4472, 'ashu': 3236, 'assuring': 3326, 'maintained': 20061, 'lingers': 19329, 'previously': 25578, 'aerosol': 2029, 'ralphs': 26515, 'growup': 14760, 'mattieuethanhandsanitizer': 20509, '3pack': 892, 'loveones': 19728, 'remotely': 27185, 'usedtomake': 34637, 'tshirts': 33776, 'makingsupplies': 20110, 'panicbuy': 24021, 'brawled': 5191, 'fmtnews': 13022, 'headwind': 15308, 'ecom': 10973, 'resulting': 27503, 'transacting': 33462, 'offline': 23171, 'feedback': 12500, 'mixed': 21217, 'unpack': 34402, 'grave': 14585, 'risen': 27810, 'former': 13258, 'maidenhead': 20035, 'queueing': 26331, 'refraining': 26984, 'tory': 33291, 'emerge': 11280, 'erupts': 11653, 'grip': 14676, 'bound': 5061, 'chinaliedpeopledied': 6663, 'pmqs': 25044, 'shareholder': 29322, 'union': 34320, 'workersunite': 36225, 'asthma': 3330, 'earn': 10860, 'function': 13639, 'compensated': 7429, 'endangering': 11394, 'creditchat': 8478, 'melissa2': 20766, 'announce': 2784, 'agoing': 2158, 'omnichannel': 23306, 'explores': 12062, 'industryperspectives': 16849, 'retailtrends': 27556, 'fashionindustry': 12368, '0808': 112, '223': 565, '1133': 189, 'foreclosure': 13211, 'restarts': 27461, 'cashflow': 6126, 'reassures': 26778, 'amac': 2522, 'salvation': 28389, 'cleanliness': 6943, 'muhammad': 21692, 'burhaan': 5550, 'fb': 12425, 'nameandshame': 21978, 'universally': 34354, 'oxford': 23829, 'sound': 30399, 'lifestyle': 19265, 'badparenting': 3770, 'gotta': 14443, 'crib': 8513, 'vanish': 34793, 'keyser': 18293, 'ser': 29160, 'resale': 27336, 'resellers': 27355, 'makeuplife': 20102, 'luara': 19780, 'anderson': 2697, 'shaw': 29354, 'mississippi': 21189, 'bcuz': 4104, 'capable': 5940, 'quote': 26376, 'stimuluschecks': 31173, 'philosophy': 24694, 'landlord': 18808, 'flooding': 12966, 'frustration': 13550, 'probily': 25688, 'supportaussiebusiness': 31800, 'fuckcovid19': 13571, 'structure': 31448, 'deluxe': 9439, 'proven': 25935, 'tradeshow': 33422, 'stepmother': 31102, 'decorate': 9253, 'cute': 8822, 'ounce': 23628, 'tablespoon': 32114, 'aloe': 2456, 'vera': 34924, 'allotted': 2432, 'district': 10222, 'apparent': 2936, 'violation': 35075, 'iceland': 16323, 'fronted': 13525, 'famous': 12292, 'singer': 29795, 'encouraging': 11389, 'indoors': 16830, 'afer': 2040, 'sunburnt': 31670, 'netflix': 22297, 'charm': 6492, 'addiction': 1877, 'loses': 19680, 'learning': 19002, 'delgro': 9390, 'smrt': 30088, 'exploring': 12063, 'alkaline': 2392, 'queen': 26305, 'flourish': 12984, 'strengthen': 31395, 'elite': 11219, 'iraqi': 17378, 'organize': 23544, 'enact': 11375, 'democratic': 9461, 'motivationmonday': 21559, 'discourage': 10041, 'supplying': 31797, 'jharkhand': 17763, 'admirable': 1938, 'verbally': 34927, 'physically': 24738, 'accepted': 1714, 'hern': 15546, 'ndez': 22182, '1966': 385, 'imagined': 16516, 'bathroom': 4028, 'fails': 12223, 'reject': 27078, 'misinformation': 21168, 'followasci': 13055, 'ayurveda': 3659, 'idd': 16354, 'bagging': 3783, '59': 1123, 'pneumonia': 25048, 'pillar': 24801, 'essentially': 11701, 'boomed': 4957, 'pennsylvania': 24431, 'trashing': 33517, '35g': 822, 'drumlake': 10669, 'eyelid': 12142, 'appear': 2943, 'conti': 7802, 'hoarded': 15722, 'indefinite': 16766, 'quran': 26379, 'khwanis': 18327, 'gouger': 14451, 'texan': 32559, '621': 1195, '0508': 75, 'confined': 7572, 'howeice': 16040, 'contracted': 7824, 'gate': 13840, 'nokidhungry': 22617, 'id': 16347, 'ramadan': 26519, 'iftar': 16410, 'traweeh': 33547, 'funnel': 13655, 'contraceptive': 7821, 'lovely': 19721, 'dull': 10735, 'chilled': 6645, 'xx': 36482, 'thearchers': 32658, 'employer': 11343, 'globalgoals': 14225, 'dumping': 10749, 'cafeteria': 5738, 'kingdom': 18402, 'horrendous': 15936, 'harrowing': 15178, 'imaginable': 16512, 'traumatized': 33525, 'vegan': 34865, 'moh': 21331, 'deyalsingh': 9738, 'scientic': 28774, 'preval': 25562, 'wiped': 36063, 'abo': 1637, 'stoppanicking': 31287, 'calmdown': 5807, 'thinkofothers': 32829, 'stream': 31378, '4k': 1018, 'hd': 15286, 'alias': 2373, 'irregular': 17402, 'smarter': 30031, 'smartmonkey': 30038, 'tackled': 32122, 'advises': 2011, 'slap': 29936, 'famine': 12290, 'janitorial': 17641, 'housekeeping': 16009, 'streamline': 31382, 'whenever': 35825, '6ft': 1250, 'sticker': 31147, 'germaphobe': 14006, 'researchlive': 27351, 'catastrophe': 6162, 'functioning': 13644, 'addressed': 1886, 'kindergarten': 18391, 'submit': 31524, 'rediscovering': 26911, 'rout': 28043, 'apac': 2883, 'latestnews': 18884, 'tuesdaynews': 33815, 'newspicks': 22379, 'coordinated': 7926, 'lifeline': 19257, 'pathetic': 24235, 'stricken': 31411, 'basis': 4002, 'prayer': 25397, 'drone': 10643, 'guessing': 14809, 'patrol': 24257, 'integral': 17144, 'sander': 28429, 'elected': 11168, 'pittsburgh': 24860, 'gazette': 13872, 'accessibility': 1719, 'discrimination': 10060, 'preach': 25415, 'deed': 9273, 'colour': 7263, 'foodshortages': 13140, 'norway': 22733, 'constantly': 7682, 'dawn': 9090, 'bilbrough': 4532, 'pleaded': 24961, 'forbidding': 13193, 'buyback': 5653, 'dividend': 10256, 'chillin': 6648, 'thenewnormal': 32724, 'governs': 14483, 'nadine': 21933, 'crackdown': 8389, 'consistent': 7668, 'overpricing': 23764, 'tampon': 32211, 'serve': 29178, 'employ': 11338, 'gladly': 14186, 'provid': 25937, 'analyzes': 2675, 'laboratory': 18709, 'regional': 27021, 'usage': 34610, 'pegged': 24388, 'disposed': 10153, 'turkey': 33864, 'boss': 5023, 'overcome': 23728, 'gripping': 14680, 'flowing': 12992, 'mandown': 20187, 'mcnally': 20596, 'egotist': 11112, 'collaborate': 7207, 'cider': 6790, 'denmarkinusa': 9496, 'getanalysis': 14028, 'significantdisruption': 29719, 'accompanying': 1737, 'rioting': 27790, 'foodsupplies': 13144, 'supplychains': 31795, 'economicshock': 11001, 'mondaythoughts': 21388, 'mondayreview': 21387, 'mondaymusings': 21385, 'mondaynight': 21386, 'lifesignals': 19262, 'biosensor': 4591, 'greenville': 14634, 'yeahthatgreenville': 36537, 'giancarlo': 14100, 'easterlunch': 10894, 'cornhall': 7985, 'deli': 9393, 'petunia': 24631, 'hassle': 15203, 'flout': 12986, 'score': 28793, 'fry': 13551, 'beacuse': 4115, 'escape': 11662, 'whatsapp': 35794, '94754284300': 1501, 'oreo': 23530, 'established': 11716, 'congo': 7604, 'lubumbashi': 19783, 'sack': 28246, 'cdf': 6260, 'marked': 20309, 'wic': 35948, 'dependent': 9528, 'lovethyneighbor': 19733, 'grocerystoreworkers': 14716, 'protectlives': 25898, 'savelives': 28602, 'stacking': 30799, 'warrioroflight': 35413, 'warrior': 35412, 'verry': 34949, 'coincidence': 7181, 'catylization': 6197, 'coldwar2020': 7201, 'snap': 30105, 'web': 35574, 'freaked': 13399, 'breitbart': 5237, 'agreement': 2167, 'insidertraitor': 17047, 'fridaythoughts': 13485, 'strange': 31355, 'saviour': 28623, 'dark': 9017, 'gratitudeganstas': 14581, 'hbu': 15279, 'collaborating': 7209, 'host': 15962, 'discussed': 10063, 'stability': 30787, 'fermoy': 12553, 'h2': 14893, 'utilising': 34689, 'label': 18701, 'kinder': 18390, 'continuous': 7817, 'cyclical': 8868, 'wool': 36198, 'mondaymotivation': 21383, 'zone': 36813, 'increasingly': 16750, 'cr': 8384, 'maureen': 20518, 'mahoney': 20028, 'combating': 7278, 'endrobocalls': 11416, 'josh': 17879, 'ross': 28014, 'witness': 36121, 'crowdinsights': 8604, 'hai': 14936, 'sy': 32049, 'jual': 17911, '60ml': 1184, 'shpn': 29604, 'screw': 28838, 'hooded': 15894, 'tyvek': 33970, 'museum': 21780, 'congressional': 7612, 'delegation': 9381, 'equip': 11612, 'outlast': 23663, 'sinister': 29808, 'nitrile': 22538, 'bizarrely': 4643, 'filter': 12680, 'rendering': 27202, 'useless': 34640, 'compulsory': 7499, 'onwards': 23406, 'obligatory': 23049, 'wherever': 35845, 'tantamount': 32229, 'blackmail': 4665, 'stormont': 31334, 'extortion': 12109, 'remunerative': 27194, 'perishable': 24510, 'crop': 8582, 'benefitting': 4319, 'railway': 26476, '109': 156, 'train': 33445, 'speedy': 30552, 'vulture': 35247, 'descending': 9592, 'prediction': 25450, 'hack': 14907, 'nifty': 22483, 'stylus': 31501, 'pen': 24405, 'pin': 24814, 'pad': 23886, 'otherw': 23610, 'catchup': 6168, 'recovered': 26859, 'fibre': 12608, 'degrading': 9360, 'infusing': 16943, 'sausage': 28586, 'jailed': 17599, 'stolen': 31242, 'amazonpantry': 2542, 'oklahoma': 23248, 'exclusive': 11951, 'barn': 3948, 'runoff': 28152, 'spoonie': 30642, 'dbtskills': 9129, 'storefront': 31323, 'shipped': 29446, 'maxi': 20523, 'strippedmaxi': 31429, 'maxilove': 20526, 'maxidress': 20524, 'nola': 22618, 'neworleans': 22358, 'houstonboutique': 16025, 'pension': 24437, 'saver': 28611, 'defraud': 9342, 'calculated': 5762, '6bn': 1247, 'legislation': 19056, 'initiative': 16981, 'expands': 12001, 'mueller': 21685, 'institutional': 17111, 'clock': 7014, 'travelchatsa': 33532, 'jerseyplug': 17730, 'yall': 36503, 'hmu': 15714, 'aide': 2213, 'ups': 34552, 'collector': 7234, 'supplied': 31786, 'jobless': 17808, '282': 671, 'gut': 14870, 'punched': 26067, 'developer': 9710, 'lumber': 19809, 'cement': 6310, 'shareknowledge': 29327, 'dcn': 9135, 'amex': 2590, 'thug': 32937, '7k': 1350, 'skyrocketed': 29922, 'original': 23555, 'protips': 25919, 'evidenced': 11875, 'barren': 3962, 'georgian': 13995, 'speechless': 30545, 'brooklyn': 5366, 'burn': 5557, 'tie': 32970, 'yoursafetyismysafety': 36656, 'forqatarstayhome': 13269, 'moci': 21289, 'livestreaming': 19420, 'taobao': 32234, 'persist': 24544, 'ailbaba': 2218, 'jeffclass': 17696, 'jeffsasiatechclass': 17701, 'hcws': 15285, 'brave': 5182, 'safeguarding': 28280, 'minority': 21135, 'misleading': 21170, 'gurugram': 14867, 'assures': 3325, 'guru': 14866, 'gram': 14529, 'defeat': 9293, 'comfortably': 7304, 'dunnes': 10762, 'leo': 19105, 'varadkars': 34818, 'repeat': 27243, 'dystopia': 10830, '851': 1406, 'pennsylvanian': 24432, 'measured': 20644, 'retaliation': 27566, 'tariff': 32254, 'gfc': 14061, 'fintech': 12765, 'govindmilk': 14485, 'happymakers': 15122, 'dailyessentials': 8916, 'itapema': 17509, 'sc': 28660, 'coro': 7996, 'hook': 15900, 'dirty': 9973, 'valet': 34755, 'unavailability': 34122, 'apr': 3014, '1203': 211, '1182': 197, '840': 1396, '646': 1211, 'atnix': 3386, 'ya': 36495, 'motto': 21570, 'goodbye': 14373, 'fuckyoucorona': 13594, 'doubt': 10498, 'ah': 2185, 'bye': 5693, 'jhoots': 17765, 'repair': 27237, 'haborfreight': 14905, 'carol': 6061, 'burnett': 5562, 'aljazeera': 2391, 'memo': 20788, '2p': 727, '11a': 201, 'pt': 25997, 'mecklenburg': 20660, 'psa': 25970, 'lather': 18887, 'ppeshortage': 25357, 'communist': 7385, 'chinacoronavirus': 6658, 'ccpvirus': 6248, 'proudly': 25925, 'equestrianrelief': 11608, 'voltaire': 35189, 'saddle': 28261, '4times': 1030, 'blamed': 4683, 'ecomomic': 10982, '416': 932, 'stitt': 31190, 'tuesday': 33812, 'meaning': 20631, 'loonatics': 19649, 'cabinfever': 5718, 'swing': 32021, 'unprepared': 34417, 'phlegm': 24698, 'disappears': 9992, 'breath': 5225, 'recovers': 26862, 'smoothly': 30086, 'secret': 28942, 'draft': 10564, 'diligent': 9903, 'prevalent': 25563, 'donaldtrump': 10393, 'dowfutures': 10516, 'nasdaqcomposite': 22031, 'overweight': 23801, 'ocd': 23106, 'borderline': 4987, 'agoraphobic': 2162, 'addicted': 1876, 'floaty': 12959, 'chair': 6406, 'purell': 26099, 'picnicking': 24763, 'ballgame': 3839, 'replicates': 27267, 'squaddies': 30735, 'bogroll': 4880, 'fired': 12776, 'bev': 4421, 'horrid': 15940, 'brampton': 5151, 'layoff': 18954, 'completetly': 7459, 'flattened': 12896, 'theirs': 32705, 'leather': 19014, 'internationa': 17204, 'extend': 12087, 'custodial': 8792, 'mention': 20819, '30moredays': 766, 'obligation': 23048, 'northmart': 22721, 'freezing': 13447, 'path': 24232, 'southcarolina': 30421, 'jokecoughing': 17857, 'imploring': 16611, 'behave': 4238, 'jostled': 17884, 'cajoled': 5753, 'bagger': 3781, 'msnbc': 21649, 'nytimes': 22999, 'wsj': 36369, 'cnbc': 7094, 'politico': 25127, 'huffpost': 16105, 'drudge': 10660, 'npr': 22863, 'dailykos': 8919, 'thehill': 32699, 'wapo': 35376, 'nbc': 22134, 'slate': 29940, 'aarp': 1582, 'sydney': 32057, 'photojournalism': 24722, 'documentary': 10320, 'documentaryphotography': 10321, 'reportage': 27276, 'phot': 24714, 'kidney': 18348, 'kidneybeans': 18349, 'tescos': 32541, 'consumables': 7704, 'trapped': 33513, 'livelihood': 19410, 'washed': 35426, 'influence': 16907, 'sl': 29925, 'unlawful': 34372, 'unsubscribing': 34466, 'durables': 10773, 'dependence': 9526, 'anger': 2735, '880': 1431, 'bullion': 5504, 'midday': 20988, 'port': 25207, 'capture': 5974, 'bioeconomy': 4575, 'mol': 21351, 'windscreen': 36029, 'brent': 5245, 'xbrusd': 36447, 'xbr': 36446, 'divorce': 10262, 'renegotiate': 27204, 'settlement': 29211, 'disadvantaged': 9985, 'rapacious': 26593, 'generalstrike': 13939, 'ladoj': 18732, 'hotline': 15985, '351': 815, '4889': 994, 'dispute': 10156, 'lalege': 18768, 'lagov': 18749, 'diminishing': 9919, 'tim': 33003, 'leunig': 19155, 'succeeded': 31569, 'adviser': 2010, 'coloring': 7260, 'lego': 19064, 'slimming': 29978, 'achievement': 1782, 'cupcake': 8735, 'dough': 10503, 'pot': 25289, 'loving': 19736, 'quiet': 26350, 'atm': 3384, 'warrant': 35408, 'consumerprotection': 7738, 'prevented': 25567, 'racism': 26429, 'hyderabad': 16219, 'facial': 12195, 'tanmay': 32227, 'mehta': 20747, 'indiafightscoronavirus': 16784, 'knock': 18502, 'application': 2972, 'developed': 9709, 'ecommercebusiness': 10977, 'woulf': 36318, 'abouttime': 1647, '14days': 270, 'spare': 30483, 'shirt': 29451, 'lowered': 19742, 'lazzaro': 18960, 'spallanzani': 30473, 'rome': 27979, 'forzaroma': 13306, 'romacares': 27972, 'charter': 6496, 'luggage': 19798, 'accommodate': 1730, 'bullard': 5498, 'regulate': 27041, 'que': 26299, 'float': 12957, 'nahh': 21944, 'optician': 23482, 'wolstanton': 36160, 'stoke': 31235, 'vandalized': 34786, 'annualised': 2794, 'robin': 27901, 'bhar': 4452, 'offset': 23177, 'oshawa': 23585, 'ont': 23391, 'bcpoli': 4100, 'chatting': 6512, 'complimentary': 7473, 'dig': 9851, 'easiest': 10879, 'fastest': 12377, 'efficient': 11089, 'karel': 18098, 'spaniard': 30477, 'rant': 26589, 'gofundme': 14323, 'monetary': 21394, 'subsided': 31543, 'heavy': 15396, '9ja': 1544, 'insulated': 17123, 'insensitive': 17040, 'unconcerned': 34154, 'vodka': 35178, 'pernod': 24527, 'ricard': 27716, 'fort': 13276, 'smith': 30069, 'tweak': 33899, 'ar': 3036, 'conormcgregor': 7632, 'visor': 35130, 'respirator': 27431, 'oxygen': 23833, 'allows': 2437, 'duplicate': 10768, 'mutualaid': 21822, 'monopolise': 21424, 'arrived': 3151, 'debate': 9183, 'naturally': 22088, 'fuss': 13689, 'didnt': 9817, 'ownership': 23823, 'decentralized': 9220, 'generational': 13944, 'reference': 26953, 'bloc': 4747, 'usnews': 34660, 'infromation': 16938, 'candy': 5888, 'glimpse': 14214, 'craze': 8439, 'korean': 18563, 'spicy': 30571, 'shootout': 29491, 'bullying': 5511, 'unsavory': 34448, 'canterbury': 5923, 'shoppingonline': 29544, 'asymptomatic': 3348, 'stocker': 31207, 'ke': 18173, 'bungoma': 5526, 'container': 7769, 'elimination': 11214, 'iq': 17371, 'block': 4749, 'gradually': 14519, 'instant': 17098, 'hy': 16215, 'vee': 34860, 'plasticbagban': 24924, 'twist': 33922, 'presumably': 25546, 'readymeals': 26701, 'hithergreen': 15688, 'lewisham': 19173, 'recipient': 26824, 'bartholow': 3978, 'loathe': 19473, 'mazon': 20552, 'wondered': 36172, 'arrow': 3157, 'race': 26419, 'sicken': 29667, 'dealt': 9164, 'foresee': 13221, 'declining': 9245, 'persistent': 24546, 'stakeholder': 30826, 'soo': 30364, 'stranger': 31359, 'acceptable': 1712, 'lockdowncanada': 19514, 'supermarketdating': 31742, 'day17': 9107, 'marc': 20268, 'schindler': 28733, 'skim': 29883, 'compromise': 7492, 'quart': 26290, 'unflushable': 34275, 'rag': 26456, 'delivers': 9421, 'dispenses': 10135, 'vanloon': 34798, 'counting': 8269, 'lifesaving': 19261, 'ck': 6856, 'ckont': 6861, 'potty': 25302, 'insecure': 17038, 'noticing': 22784, 'intake': 17141, 'bodas': 4855, 'uber': 33986, '8k': 1451, 'felicia': 12531, 'lockdownug': 19552, 'attn': 3423, 'mart': 20381, 'iqaluit': 17372, 'notchronosandcars': 22759, '5l': 1152, 'rr': 28067, 'sva': 31951, '550bhp': 1096, 'suited': 31630, 'offload': 23172, 'bonkers': 4934, 'sporting': 30649, 'matching': 20481, 'yucky': 36690, 'xenophobe': 36452, 'fatten': 12398, 'helpnothurt': 15472, 'lookaftereachother': 19635, 'holdaway': 15765, 'hantavirus': 15098, 'rodent': 27937, 'watchful': 35472, 'protezionecivile': 25916, 'airpods': 2249, 'ons': 23386, '9to5mac': 1551, 'techjunkienews': 32378, 'harper': 15170, 'wood': 36184, 'pier': 24775, 'stayhomesa': 30991, 'wallstreet': 35334, 'helppeoplefirst': 15477, 'momentous': 21368, 'benefiting': 4317, 'philanthropy': 24679, 'fest': 12566, 'jose': 17876, 'contactless': 7762, 'locate': 19497, 'shameonyou': 29301, 'accuse': 1763, 'hiding': 15591, 'tilfurthernotice': 32997, 'painting': 23918, 'africanart': 2080, 'cameroon': 5835, '38': 850, 'mailed': 20041, 'boise': 4889, 'idaho': 16349, 'iot': 17344, 'enterprise': 11524, 'royal': 28056, 'highness': 15610, 'registered': 27026, 'drunkard': 10672, 'comingyi': 7318, 'tremendous': 33569, 'veterinarian': 34967, 'exporting': 12074, 'overseas': 23775, 'suppressing': 31835, 'vunerable': 35248, 'scooter': 28791, 'dick': 9800, 'consumerawareness': 7712, '5t': 1165, '2t': 733, 'wire': 36071, 'anticipate': 2825, 'gcc': 13885, 'structural': 31447, 'vanishing': 34795, 'opposite': 23472, 'tail': 32144, 'hamilton': 15001, 'poshmark': 25232, 'shopforacause': 29502, 'mobilio': 21279, 'specifically': 30528, 'sed': 28961, 'recovering': 26861, 'rakamoto': 26501, 'crypto': 8646, 'bitcoin': 4626, 'coin': 7177, 'portugal': 25227, 'portuguese': 25229, 'sonae': 30353, 'continente': 7805, 'worten': 36306, 'antoniocosta': 2851, 'portugalst': 25228, 'spree': 30693, 'slam': 29928, 'nancy': 21992, 'pelosi': 24398, 'laundry': 18918, 'additive': 1882, 'crisp': 8541, 'linen': 19322, '41oz': 934, 'snatched': 30112, 'title': 33067, 'fantasy': 12302, 'tinkering': 33037, 'hamont': 15010, 'sarawat': 28526, 'ksa': 18620, 'jeddah': 17687, 'madinah': 19959, 'coronaupdate': 8113, 'pity': 24862, 'unforeseen': 34280, 'majeure': 20073, 'psychology': 25991, 'friking': 13505, 'payback': 24291, 'crashing': 8427, 'overhang': 23745, 'influx': 16914, 'refugee': 26995, 'protectyourworkers': 25906, 'diabetic': 9771, 'labour': 18714, '22nd': 581, 'troll': 33635, 'criticised': 8550, 'affordability': 2062, 'remarkably': 27157, 'staysafestayathome': 31033, 'naked': 21964, 'caetgories': 5734, 'sustain': 31932, 'suffered': 31601, 'marketed': 20317, 'circulating': 6819, 'wfh': 35763, 'steepest': 31076, 'deflation': 9337, 'consumerspending': 7744, 'prevailing': 25559, 'uganda': 34017, 'ugandan': 34018, 'enjoys': 11477, 'basingstoke': 4001, 'bidding': 4488, 'dovetail': 10513, 'frantically': 13382, 'teddie': 32399, 'leadership': 18977, 'precedent': 25427, 'reclassified': 26830, 'impose': 16623, 'canceling': 5871, 'securing': 28954, 'ventured': 34920, 'profusely': 25753, 'thanked': 32599, 'subsequent': 31539, 'ethical': 11758, 'beahelper': 4117, 'dietitian': 9835, 'restraint': 27483, 'poorest': 25175, 'cyber': 8850, 'magecart': 19985, 'skimming': 29885, 'cybercrime': 8853, 'cyberthreats': 8862, 'shifted': 29427, 'perception': 24481, 'newest': 22344, 'intelligence': 17150, 'unveils': 34494, 'altering': 2488, 'showmeyourshelves': 29600, 'reserved': 27363, 'dubuque': 10713, 'stayhomechallenge': 30982, 'trumpplague': 33723, 'occurring': 23104, 'arrgghh': 3147, 'instoreexperience': 17114, 'percentage': 24480, 'prople': 25842, 'nairobi': 21955, 'busia': 5586, 'somehing': 30332, 'noo': 22661, 'kot': 18571, 'utawezana': 34681, 'culinary': 8702, 'alright': 2476, 'diagnostic': 9777, 'detection': 9674, 'rock': 27923, 'fingertip': 12746, 'craft': 8396, 'version': 34955, 'graphic': 14563, 'energyco': 11432, 'nessel': 22285, '572': 1112, 'idris': 16389, 'barbershop': 3923, 'secondary': 28935, 'biden': 4490, 'sap': 28509, 'sand': 28425, 'arrives': 3153, 'intentionally': 17166, 'aolonline': 2876, 'shenanigan': 29403, 'awesome': 3629, 'taxpayer': 32302, '2018': 486, 'frightening': 13504, 'louder': 19700, 'oilpatch': 23226, 'debasish': 9182, 'cardmembers': 6006, 'flexibility': 12933, 'opt': 23478, 'rbi': 26655, 'regulatory': 27048, '1800': 342, '419': 933, '2122': 541, 'claimed': 6865, 'stroke': 31435, 'demise': 9456, 'boujee': 5053, 'rainbow': 26479, 'colored': 7259, 'immunesystem': 16563, 'immunesupport': 16562, 'knit': 18496, 'fortnight': 13289, 'favor': 12409, 'romantic': 27978, 'newly': 22352, 'mark': 20308, 'gentleman': 13967, 'quarantinedromance': 26262, 'leveraged': 19164, 'heartbreak': 15368, 'firework': 12786, 'lawn': 18937, 'legend': 19051, 'mapleholistics': 20258, 'guildford': 14821, 'eve': 11828, 'sparking': 30489, '4588221st': 968, 'incredibly': 16752, 'tpchallenge': 33374, 'stabilise': 30785, 'fishery': 12813, 'recession2020': 26819, 'cannabisproducts': 5904, 'wheeze': 35820, 'birmingham': 4608, 'calpol': 5818, 'shutthemup': 29652, 'mega': 20733, 'communism': 7384, 'younger': 36639, 'losing': 19683, 'comp': 7403, 'tec': 32371, 'safetytips': 28295, 'discard': 10013, 'jaffa': 17591, 'shri': 29610, 'gopalaiah': 14418, 'hon': 15869, 'ble': 4706, 'metrology': 20906, 'dd': 9140, 'chandana': 6431, '12pm': 232, '04': 69, '080': 106, '23542599': 592, '699': 1244, 'interact': 17168, 'recommends': 26842, 'nonmedical': 22648, 'doc': 10305, 'iaarchitects': 16284, 'remained': 27149, 'architecture': 3058, 'quarantining': 26277, 'buck': 5442, 'smarten': 30030, 'ribbon': 27713, 'modern': 21303, 'appts': 3012, 'hotmessus': 15988, 'conscious': 7641, 'chairman': 6407, 'fcb': 12439, 'googling': 14412, 'shake': 29273, 'combed': 7280, 'stats': 30928, 'snapshot': 30111, 'effecting': 11082, 'martech': 20383, 'swiss': 32026, 'syngenta': 32086, 'monthey': 21437, 'releasethesnydercut': 27113, 'batmanvsuperman': 4032, 'yamah': 36507, 'kezily': 18301, '52': 1077, 'flee': 12919, 'midnight': 21000, 'produced': 25714, 'minimize': 21111, 'dignity': 9898, 'command': 7322, 'breast': 5223, 'cabbage': 5711, 'tom': 33209, 'coburn': 7124, 'coordinate': 7925, 'spokesman': 30623, 'respectfully': 27424, 'continuation': 7811, 'dontb': 10415, '200ml': 473, 'coronastopkarona': 8098, '210': 537, 'stib': 31145, '37': 838, 'legitimately': 19063, 'bekindtoeachother': 4264, 'trumpviruscoverup': 33741, 'votebluetosaveamerica': 35214, 'voteblue2020': 35212, 'hammerkopf': 15007, 'spiv': 30604, 'reselling': 27356, 'desperately': 9633, 'staycalm': 30956, 'carefulness': 6019, 'carelessness': 6024, 'pollution': 25138, 'rudy': 28111, 'giuliani': 14156, 'disappear': 9989, 'heelcomic': 15412, 'comedian': 7290, 'steady': 31058, 'underway': 34223, 'fitted': 12829, 'sterilize': 31114, 'askgovwhitmer': 3261, 'choosing': 6728, 'masked': 20419, 'costar': 8200, 'newer': 22342, 'plexiglas': 24987, 'escaping': 11665, 'shoe': 29480, 'overwhelming': 23805, 'the6ix': 32656, 'jason': 17659, 'skypes': 29918, 'unnecessarily': 34395, 'stageit': 30814, 'blink': 4735, 'geared': 13897, 'quota': 26375, 'reminds': 27173, 'birdbox': 4604, 'togetherathome': 33127, 'criticized': 8554, 'pile': 24791, 'uncaring': 34139, 'therona': 32764, 'eua': 11775, 'enquiry': 11497, 'relating': 27091, 'postman': 25278, 'rosy': 28017, 'pleading': 24962, 'scrambling': 28816, 'med': 20661, 'trumpmeltdown': 33716, 'perfumery': 24498, 'mullin3': 21708, 'depend': 9522, 'cook': 7897, 'policethesupermarkets': 25110, 'fatal': 12385, 'indication': 16804, 'houring': 16000, 'wakefield': 35298, 'patent': 24228, 'arses': 3168, 'countermeasure': 8265, 'scolded': 28785, 'aa': 1565, 'valuable': 34765, 'new2020': 22330, 'trusted': 33747, 'iconmeals': 16339, 'prep': 25486, 'jessejames10': 17732, 'sponsored': 30633, 'dodge': 10329, 'interhill': 17191, 'adaa': 1854, 'lax': 18945, 'ruby': 28106, 'princess': 25626, 'guardian': 14796, 'dispose': 10152, 'onpoli': 23385, 'anhydrous': 2748, 'ammonia': 2611, 'input': 17023, 'downside': 10536, 'industrial': 16843, 'alarmist': 2303, 'overly': 23757, 'nih': 22502, '1bn': 429, 'nt': 22887, 'fabulous': 12169, 'scrutinised': 28857, 'collusion': 7242, 'nb': 22128, 'arising': 3104, 'secretary': 28943, 'simrandeep': 29768, 'singh': 29796, 'jammu': 17629, 'neat': 22203, 'syrup': 32098, 'biking': 4528, 'derrell': 9586, 'peel': 24376, 'agnews': 2156, 'topstory': 33261, 'cattlemarkets': 6193, 'farmincome': 12335, 'excited': 11941, 'lorain': 19668, 'battling': 4049, 'whomever': 35921, 'canon': 5916, 'temperaturecontrolsolutions': 32467, 'prolong': 25789, 'swine': 32019, 'graduate': 14520, 'ridden': 27740, 'seemingly': 28987, 'manufactured': 20242, 'realistic': 26728, 'conclusion': 7526, 'nationally': 22066, 'regionally': 27022, 'realizing': 26738, 'wind': 36021, 'heat': 15380, 'invest': 17297, 'proof': 25818, 'californian': 5785, 'caneedsyou': 5891, 'query': 26317, 'googletrends': 14411, 'searchresults': 28903, 'gl': 14181, 'chase': 6500, 'designated': 9612, 'buckscounty': 5449, '0469315906': 72, 'atanda': 3351, 'afeez': 2039, 'ademola': 1895, 'gtbank': 14779, 'hustling': 16207, 'dem': 9442, 'fooled': 13164, 'contacting': 7761, 'texting': 32568, 'minimal': 21107, 'parenting': 24120, 'envoy': 11565, 'david': 9080, 'nabarro': 21922, 'ndtv': 22189, 'commit': 7354, 'cookbook': 7899, 'alternatively': 2494, 'isolationtips': 17477, 'wellbeingtips': 35670, 'hartman': 15184, 'spotlight': 30662, 'functionalfoods': 13641, 'functionality': 13642, 'immunity': 16564, 'stigma': 31155, 'booster': 4968, 'queing': 26314, 'carpark': 6074, 'lacking': 18726, 'spiral': 30586, 'represented': 27295, 'liz': 19430, 'hallock': 14984, 'beloved': 4300, 'fossil': 13308, 'finite': 12753, 'divesting': 10253, 'dinosaur': 9937, 'skint': 29896, 'boredom': 4995, 'divorced': 10263, 'numerator': 22911, 'redmeat': 26917, 'hoardersgonnahoard': 15725, 'broad': 5334, '25th': 641, 'pleasant': 24964, 'haul': 15219, 'apologizes': 2924, 'bheki': 4464, 'cele': 6288, 'enca': 11379, 'criminalized': 8523, 'cigarette': 6793, 'threatened': 32897, 'kissing': 18430, 'abdul': 1607, 'oblivious': 23052, 'enforcing': 11450, 'lord': 19670, 'cow': 8348, 'theshoppies': 32769, 'teleworking': 32453, '12p': 231, '8ppl': 1457, 'notgoodenough': 22773, '86y': 1424, '300miles': 746, 'bluffing': 4809, 'arab': 3040, 'length': 19094, 'turner': 33872, 'andler': 2702, 'inittogether': 16982, 'goodnews': 14391, 'ruleyournest': 28132, 'screened': 28833, 'forehead': 13215, 'scanner': 28688, 'commonsense': 7373, 'uspoli': 34665, 'indianrailways': 16795, 'withdrew': 36107, 'concessional': 7518, 'precautionary': 25423, 'ians': 16296, 'colony': 7250, 'trap': 33511, 'confronting': 7595, 'mitchell': 21207, 'gilead': 14129, 'submitted': 31526, 'rescind': 27342, 'orphan': 23571, 'designation': 9614, 'granted': 14552, 'investigational': 17305, 'waiving': 35294, 'accompany': 1736, 'mentalillness': 20814, 'mentalhealthawareness': 20812, 'mentalillnessawareness': 20815, 'bandito': 3869, 'tumbled': 33834, 'booming': 4960, 'pd': 24335, 'daycare': 9118, 'govmnts': 14486, 'commodification': 7363, 'buffooninoffice': 5466, 'factual': 12210, 'laden': 18731, 'rachelmaddow': 26424, 'blathering': 4702, 'appealing': 2942, 'tneans': 33096, 'table': 32112, 'tap': 32235, '99b': 1536, 'southsudan': 30441, 'prior': 25639, 'foodinsecurity': 13115, 'freed': 13415, 'civilization': 6848, 'chinesewuhanvirus': 6682, 'chineseinfluenza': 6676, 'stunning': 31483, 'hype': 16253, 'glaring': 14194, 'brunt': 5400, 'dust': 10784, 'beaten': 4138, 'remeber': 27160, 'reminder': 27171, 'redundancy': 26937, 'recruiting': 26872, 'massow': 20457, 'agricultural': 2174, 'ease': 10876, 'weightloss': 35642, 'diet': 9832, 'quarentinelife': 26289, 'laughitthrough': 18908, 'staypositive': 31021, '492kg': 1002, 'thoughtless': 32889, 'wasteless': 35458, 'pitch': 24855, 'appalling': 2933, 'classic': 6903, '130': 238, 'heritage': 15543, 'favourite': 12417, 'nobel': 22579, 'quatantine': 26295, 'nurtricrops': 22934, 'quinoa': 26358, 'rob': 27890, 'bandana': 3863, 'mexico': 20915, 'argentina': 3080, 'ambitious': 2555, 'coronachainscare': 8017, 'accumulating': 1757, 'undoc': 34235, 'indiscriminate': 16818, 'thus': 32954, 'threatens': 32899, 'featuring': 12478, 'b2b': 3682, 'd2c': 8886, 'watershed': 35484, 'pivoting': 24868, 'linkedin': 19335, 'associated': 3313, 'proceed': 25694, 'clinical': 7004, 'pessimism': 24577, 'shanghai': 29309, 'globaltrade': 14238, 'globaleconomy': 14224, 'polis': 25117, 'copolitics': 7943, 'maskchallenge': 20417, 'yay': 36528, 'leafy': 18983, 'surrey': 31881, 'educated': 11059, 'fck': 12443, 'nhsworkers': 22448, 'starkist': 30875, 'cracker': 8391, 'birx': 4614, 'sacramento': 28249, 'bee': 4193, 'nationalemergency': 22051, 'stir': 31186, 'polluting': 25137, 'climatecrisis': 6996, 'heel': 15411, 'weary': 35567, 'realized': 26736, 'thrust': 32934, 'panick': 24032, 'vegetarian': 34879, 'ghost': 14091, 'shoppingcrazy': 29539, 'washable': 35423, 'copious': 7941, 'handwashing': 15071, 'af': 2035, 'muji': 21695, 'funded': 13648, 'shore': 29553, 'cache': 5725, 'umm': 34100, 'aussie': 3494, 'jacksonville': 17584, 'reaching': 26676, 'doyoufeelluckypunk': 10554, 'mexicanstandoff': 20914, 'ring': 27779, 'researcher': 27349, 'techforgood': 32374, 'smarttech': 30046, 'wearabletech': 35539, 'iced': 16322, 'adopt': 1957, 'summerbod2021': 31658, 'autumm': 3555, 'inconvenienc': 16733, 'nurseproblems': 22925, 'regard': 27011, 'baguio': 3786, 'observing': 23065, 'disiplinamuna': 10102, 'tatakbaguio': 32280, 'philippine': 24684, 'supermarketnews': 31744, 'injection': 16986, 'alt': 2481, 'bearish': 4129, 'equal': 11602, 'probability': 25684, 'confirming': 7581, '2460': 611, 'protectionism': 25894, 'net': 22291, 'tf': 32570, 'consumerconfidence': 7718, 'dipped': 9950, 'showed': 29595, 'anxietyindex': 2859, 'century': 6341, 'balance': 3827, 'therefore': 32754, 'alternativefacts': 2493, 'poisoning': 25088, 'pepperoni': 24473, 'tfl': 32572, 'funeral': 13653, 'storr': 31335, 'coatbridge': 7116, 'cab': 5710, '01236': 23, '421447': 938, 'casonline': 6140, 'gael': 13733, 'fashingbauer': 12361, 'nonno': 22650, 'pappou': 24075, 'southern': 30428, 'summer': 31656, 'achieve': 1780, 'reminding': 27172, 'trashed': 33516, 'introducing': 17266, 'masterclass': 20464, 'playbook': 24940, 'gary': 13823, 'vaynerchuk': 34849, 'a9': 1564, 'bolster': 4904, 'bunny': 5529, 'tooth': 33241, 'fairy': 12242, 'parentinginapandemic': 24122, 'easterbunny': 10891, 'toothfairy': 33242, 'acted': 1818, 'accepting': 1716, 'carside': 6094, 'mid': 20986, 'marianos': 20292, 'played': 24941, 'mariano': 20291, 'demonstrably': 9472, 'bt': 5421, 'logicallysummaries': 19584, 'uh': 34025, 'grimy': 14670, 'requested': 27323, 'rhapsody': 27692, 'vinyl': 35069, 'dominated': 10385, 'fog': 13039, 'horn': 15932, 'upcoming': 34516, 'quiz': 26371, 'quizetimemorningswithamazon': 26372, 'godrej': 14315, 'patanjali': 24221, 'hul': 16117, 'coronahero': 8044, 'campus': 5855, 'alhadulilah': 2368, 'reunion': 27613, 'madam': 19940, 'pmb': 25033, 'palliative': 23948, 'bvn': 5688, 'transferred': 33473, 'untapped': 34478, 'buylists': 5670, 'hunkering': 16173, 'indicating': 16803, 'screeching': 28831, 'historically': 15678, 'enewsletter': 11441, 'forest': 13224, '1per': 446, 'intend': 17152, 'workfromhome': 36230, 'bakkt': 3823, '300m': 745, 'digitalsecurities': 9890, 'seriesa': 29168, 'seriesb': 29169, 'securitytoken': 28959, 'sto': 31199, 'securitytokens': 28960, 'digitalsecurity': 9891, 'serviceindustry': 29186, '36': 827, 'laid': 18755, 'pouring': 25316, 'passion': 24196, 'writing': 36354, 'arak': 3044, 'bali': 3833, 'nationalizing': 22063, 'dolling': 10371, 'def': 9289, 'applying': 2977, 'unveiled': 34492, 'differentiate': 9843, 'closethemalls': 7031, 'token': 33191, 'blighty': 4727, 'mauritius': 20519, 'beautiful': 4152, 'paradisal': 24086, 'paradise': 24087, 'mentality': 20816, 'casually': 6153, 'jolly': 17863, 'inquire': 17026, 'sheltered': 29395, 'interaction': 17171, 'locking': 19564, 'batmeat': 4033, 'oversold': 23782, 'retracement': 27585, '2800': 669, 'dreaded': 10600, 'cbdd': 6220, 'lee': 19029, 'tennessee': 32496, 'robbed': 27891, 'burglarized': 5545, 'fca': 12434, 'specialty': 30524, 'fletcher': 12929, 'george': 13990, 'silber': 29731, 'banner': 3907, 'abundancemindset': 1682, 'unreal': 34429, 'cbob': 6229, '85': 1403, '28': 667, 'psychologist': 25990, 'yarrow': 36522, 'psyche': 25984, 'tender': 32486, 'rfp': 27688, 'disinfector': 10095, 'ethericoil': 11756, 'ether': 11754, 'ethylalcohol': 11764, 'hygienedevice': 16244, 'hygienekit': 16245, 'hygienicbag': 16248, 'rectifiedspirit': 26874, 'sanitization': 28462, 'snyders': 30155, 'centurytowers': 6342, 'shoplocalkcmo': 29518, 'snyderssupermarket': 30156, 'pickupanddelivery': 24759, 'kcmo': 18168, 'stayactive': 30940, 'stayhealthy': 30968, 'golflife': 14358, 'elk': 11222, 'grove': 14743, 'flashing': 12883, 'clarification': 6891, 'seo': 29141, 'sem': 29074, 'smo': 30074, 'smm': 30071, 'websitedesign': 35589, 'websitedevelopment': 35590, 'mobileappdevelopment': 21272, 'tirelessly': 33054, 'uninterrupted': 34319, 'tdsb': 32330, '1200': 209, 'ppv': 25363, 'ifollow': 16406, 'fhd': 12597, '07939252948': 103, 'iptv': 17366, 'firestick': 12783, 'magbox': 19984, 'ipeetv': 17351, 'interacted': 17169, 'cliamtechange': 6979, 'losangeles': 19675, 'gunsales': 14855, 'eligibility': 11209, 'cloud': 7048, 'infant': 16877, 'steelguru': 31070, 'oilpricecrash': 23228, 'brentcrude': 5246, 'squeo': 30750, 'implied': 16606, 'honest': 15873, 'depriving': 9561, 'nike': 22505, 'outfitter': 23655, 'armor': 3119, 'trajectory': 33453, 'sinha': 29807, 'portioning': 25218, 'duffex': 10729, 'losfeliz': 19682, 'ghosttown': 14094, 'loaf': 19471, 'soreen': 30378, 'parade': 24083, 'sixth': 29849, 'avenue': 3576, 'victorious': 34999, 'roman': 27975, 'debit': 9192, 'snide': 30127, 'guaranteed': 14789, 'handsoap': 15063, 'sosamerica': 30391, 'sake': 28338, 'cheering': 6554, 'petrolprice': 24620, 'americafirst': 2579, '131': 240, '882': 1434, 'dried': 10618, 'diversify': 10245, 'localbusiness': 19484, 'mobbing': 21267, 'kohl': 18537, 'excerpt': 11933, 'lasting': 18857, 'consume': 7705, 'dug': 10730, 'channelsight': 6453, 'analyse': 2664, 'cruel': 8621, 'jill': 17774, 'realizes': 26737, 'jcpenney': 17677, 'impressed': 16637, 'bowl': 5079, 'begging': 4230, 'wanker': 35364, 'preference': 25462, 'rewarded': 27678, 'chinamarketing': 6666, 'theskinny': 32772, 'worldhealthday': 36267, 'fetterhealth': 12574, 'rattled': 26631, 'ngisho': 22424, 'wena': 35683, 'depreciation': 9552, 'rand': 26556, 'slowed': 29997, 'lira': 19356, '20mbs': 527, 'notoviptesting': 22801, 'freemasstestingnowph': 13435, 'terrifying': 32526, 'floating': 12958, 'remaining': 27150, 'maintaining': 20062, 'pistachio': 24850, 'retailworkers': 27562, 'weneedrationing': 35686, 'austin': 3497, '46m': 981, 'airborne': 2232, 'itr': 17523, 'alan': 2298, 'beaulieu': 4147, 'edition': 11039, 'biweekly': 4639, 'placed': 24890, 'jennifer': 17712, 'chudy': 6773, 'portage': 25211, 'mineral': 21097, 'irreversible': 17413, 'appealed': 2941, 'revers': 27642, 'unfolding': 34277, 'advertiser': 2001, 'soil': 30279, 'spat': 30495, 'hoped': 15913, 'meltdown': 20773, 'abhishek': 1619, 'muralidharan': 21766, 'whatpackaging': 35790, 'spends': 30562, 'raw': 26643, 'material': 20486, 'angeles': 2729, 'uditraj': 34006, 'harvesting': 15192, 'exempt': 11964, 'insecticide': 17037, 'msp': 21651, 'spurred': 30721, 'strategic': 31368, 'overproduction': 23765, 'detrimental': 9693, 'venezuela': 34902, 'algeria': 2361, 'ecuador': 11020, 'steep': 31073, 'intercity': 17176, 'ganja': 13791, 'sayentrepreneur': 28638, 'nk95': 22554, '3ply': 893, 'syima': 32062, 'icymi': 16346, 'dougmcmillon': 10508, 'counted': 8253, 'essentialworker': 11706, 'cork': 7967, 'pound': 25308, 'uptick': 34566, 'yelp': 36561, 'businesstrategyandprofitability': 5611, 'financialnews': 12716, 'mobilepayments': 21278, 'onlineordering': 23363, 'admission': 1944, 'goto': 14442, 'stayathomesavelives': 30949, 'italystaystrong': 17507, 'rwandan': 28193, 'opting': 23493, 'king': 18401, 'cresskill': 8504, 'enjoyed': 11475, 'tpr': 33386, 'payitforward': 24299, 'supportsmallbusiness': 31822, 'shelteringinplace': 29397, 'discovery': 10051, 'thermal': 32762, 'detecting': 9673, 'camera': 5833, 'robust': 27911, 'stabbing': 30782, 'lg': 19185, 'mathew': 20495, 'mcconaughey': 20578, 'coronaviruses': 8131, 'morbidity': 21478, 'npa': 22859, 'rajan': 26493, 'prof': 25726, 'miguel': 21025, 'gomez': 14361, 'ebt': 10950, 'reimbursing': 27060, 'june': 17959, 'aftermath': 2095, 'chosen': 6739, 'pictured': 24767, 'bcdocs': 4092, 'gaining': 13748, '29': 678, '2017': 485, 'puppet': 26083, 'asleep': 3270, 'waking': 35305, 'censor': 6313, 'upshot': 34558, 'armageddon': 3112, 'coronageddon': 8040, 'deeper': 9282, 'egoism': 11110, 'coexistence': 7157, 'mutual': 21821, 'celebrated': 6292, 'culling': 8705, 'mitigating': 21210, 'guilt': 14822, 'carlsberg': 6046, 'ambition': 2554, 'libyan': 19222, 'improve': 16646, 'unruly': 34439, 'importing': 16622, 'worsens': 36300, 'futurefocus': 13694, 'conversation': 7867, 'switchtostandard': 32032, 'definition': 9332, 'galaxy': 13755, 'winding': 36026, 'defeated': 9294, 'parson': 24156, 'respondent': 27439, 'skill': 29878, 'posed': 25231, 'instability': 17079, 'pancake': 23972, 'sugar': 31612, 'bringmeauntjemima': 5310, 'finalstraw': 12696, 'europeanunion': 11795, 'unitedkingdom': 34340, 'wttc': 36384, 'consumerrefunds': 7741, 'manonfire': 20232, 'cod': 7144, 'modernwarfare': 21310, 'blownup': 4791, 'searchanddestroy': 28899, 'denzelwashington': 9514, 'goodmovies': 14388, 'cleanhands': 6934, 'losmanos': 19685, 'superbowl': 31713, 'playoff': 24948, 'ohio': 23197, 'bobsburgers': 4850, 'bologna': 4902, 'stepford': 31094, 'stepfordwives': 31095, 'shutitdown': 29642, 'hardy': 15150, 'plot': 24994, 'outcome': 23644, 'rajagopalan': 26492, 'yves': 36702, 'breton': 5250, 'venezuelan': 34903, 'ofall': 23145, 'circuit': 6813, 'economical': 10991, 'newz': 22401, 'chelmsford': 6571, 'easton': 10904, 'stating': 30918, 'entity': 11541, 'invalid': 17280, 'arynews': 3209, 'labourer': 18715, 'improvished': 16654, 'poonch': 25163, 'wednesdaywisdom': 35609, 'hm': 15703, 'twitterdogs': 33932, 'alien': 2378, 'fred': 13407, 'meyer': 20916, 'hoglets': 15753, 'hrc': 16062, 'rebar': 26781, 'writerslife': 36352, 'happily': 15109, 'printer': 25636, 'cartridge': 6107, 'lightbulb': 19275, 'stew': 31136, 'pse': 25973, 'intervene': 17233, 'establish': 11715, 'sneak': 30116, 'herses': 15557, 'coronatips': 8108, 'rupaul': 28157, 'rupaulsdragrace': 28158, 'dontbeshady': 10424, 'kenney': 18242, 'extinctionrebellion': 12105, 'fridaysforfuture': 13484, 'fossilfuels': 13310, 'tarsands': 32259, 'capsule': 5967, 'posterity': 25271, 'contributes': 7839, 'conventional': 7864, 'rotation': 28021, 'nitrogen': 22539, 'fixation': 12843, 'pal': 23937, 'simonyan': 29755, 'devastating': 9706, 'biochemicalwarfare': 4570, 'simpleton': 29759, 'pointless': 25084, 'operative': 23450, 'workingsmart': 36242, 'workingsafe': 36241, 'ipsos': 17364, 'mori': 21493, 'emphasis': 11325, 'franceschini': 13363, 'chill': 6644, 'anybody': 2865, 'whereamask': 35833, 'mystar991': 21876, 'proliferate': 25784, 'penn': 24427, 'reliability': 27119, 'shotoniphone': 29577, 'iphonography': 17359, 'tm': 33084, 'oldman': 23265, 'lago': 18742, 'yard': 36518, 'explicit': 12046, 'hidden': 15587, 'co2': 7106, 'sliding': 29972, 'subsidy': 31551, 'carbontax': 5990, 'collaboration': 7210, '3d': 867, 'stated': 30905, 'athanasia': 3358, 'ct': 8676, 'webcast': 35576, 'parksdata': 24141, 'attacked': 3400, 'badge': 3764, 'resolve': 27405, 'wetherspoon': 35746, 'timmartin': 33024, 'haulage': 15220, 'sewerage': 29228, 'crematorium': 8500, 'cemetery': 6312, 'teaching': 32337, 'pun': 26065, 'greatest': 14604, 'wet': 35742, 'repression': 27299, 'distracted': 10204, 'september': 29156, 'longevity': 19623, 'invisible': 17316, 'inhale': 16959, 'bam': 3851, 'disappointing': 9995, 'fortune': 13296, 'thewalkingdead': 32788, 'extending': 12092, 'menoume': 20805, 'spiti': 30600, 'greece': 14609, 'eleven': 11206, 'belief': 4280, 'generated': 13941, 'pointed': 25081, 'clarified': 6892, 'sufficiently': 31608, 'mitigation': 21211, 'jeff': 17694, 'farber': 12313, 'returning': 27605, 'skimping': 29886, 'clued': 7067, 'kke': 18459, 'backed': 3726, 'coeliacs': 7156, 'lactose': 18729, 'intolerant': 17254, 'xmas': 36470, 'troop': 33640, 'brigaid': 5289, 'trustedhelpatyourfingertips': 33750, 'lyon': 19887, '1m': 441, 'roi': 27951, 'capitalmarkets': 5956, 'winner': 36049, 'became': 4166, 'downloaded': 10529, 'overtaking': 23791, 'gaffney': 13735, 'lockdownparis': 19545, 'deserted': 9603, 'dankie': 8997, 'reassuring': 26779, 'sacrificial': 28253, 'lamb': 18774, 'wallet': 35327, 'seasonal': 28909, 'prepper': 25497, 'prepping': 25500, 'srilanka': 30759, 'lka': 19435, 'tamil': 32204, 'tamilnadu': 32205, 'detects': 9676, 'facebookads': 12174, 'ppc': 25352, 'unsettled': 34456, 'triggerchange': 33605, 'repealbillc71': 27242, 'notforsale': 22769, 'habra': 14906, 'exclusively': 11952, 'teaming': 32350, 'needy': 22231, 'charlottenc': 6490, 'makingadifference': 20108, 'sharp': 29338, 'volatility': 35186, 'separation': 29149, 'trainee': 33447, 'geriatric': 14000, 'shattered': 29348, 'interviewed': 17238, 'adapting': 1865, 'woke': 36155, 'crise': 8535, 'leipzig': 19078, 'salesman': 28359, 'vulgar': 35237, 'bil': 4530, 'natnl': 22075, 'assoc': 3311, 'tril': 33608, 'oops': 23415, 'cambridge': 5824, 'fantancy': 12299, 'githurai44': 14154, 'sterdo': 31108, 'sijasema': 29727, 'kitu': 18452, 'dharmesh': 9756, 'imabouttocooksoon': 16507, 'heaving': 15395, 'weren': 35699, 'popping': 25184, 'handler': 15045, 'overlooked': 23755, 'racist': 26431, 'blast': 4697, 'chine': 6671, 'savant': 28594, 'aignos': 2217, 'dvd': 10802, 'publisher': 26035, 'booksale': 4952, 'distrust': 10225, 'wisconsin': 36079, 'voting': 35218, 'polling': 25134, 'donning': 10409, 'november': 22837, 'negotiable': 22245, 'loong': 19650, 'gon': 14362, 'restaurateur': 27467, 'ldn': 18968, 'ours': 23631, 'microtarget': 20983, 'riskmanagement': 27828, 'sherwin': 29412, 'donates': 10397, 'georgia': 13993, 'destroyed': 9658, 'stifled': 31153, 'wreaking': 36335, 'havoc': 15242, 'gapol': 13795, 'croozefmnews': 8581, 'terribly': 32522, 'mbarara': 20557, 'refusal': 27001, 'sh100': 29250, 'hypothesis': 16276, 'mobility': 21282, 'hypocrite': 16273, 'boycotthul': 5100, 'wednesdaythoughts': 35607, 'yallaregettingonmynerves': 36504, 'signatory': 29715, 'spearheaded': 30512, 'anna': 2769, 'vailant': 34739, 'rage': 26458, 'evermore': 11844, 'relevant': 27118, 'aapka': 1577, 'apna': 2906, 'jantacurfew': 17646, 'nook': 22663, 'animalcrossing': 2751, 'acnh': 1801, 'tomnook': 33218, 'drunk': 10671, 'blono': 4767, 'putnam': 26141, 'chamber': 6423, 'partnering': 24176, 'jogger': 17836, 'luckily': 19789, 'dive': 10237, 'musing': 21796, 'traceability': 33399, 'digitalassetlive': 9863, '01': 18, 'tuesdaythoughts': 33816, 'familiesfirst': 12281, 'workmate': 36247, 'symptomatic': 32075, 'prospecting': 25871, 'prophylactic': 25840, 'hydroxychloroquineandazithromycin': 16234, 'medicaladvice': 20682, 'malaria': 20119, 'drank': 10582, 'fairprice': 12236, 'tied': 32971, 'singular': 29806, 'insightintelligence': 17050, '1k': 436, 'admits': 1946, 'calockdown': 5815, 'bold': 4895, 'foothold': 13175, 'yoy': 36675, 'pune': 26070, 'chennai': 6589, 'rtold': 28088, 'dart': 9027, 'fooddelivery': 13096, 'perpetrate': 24530, 'cyberscam': 8858, 'beready': 4341, 'donotfallforit': 10411, 'efficiently': 11090, 'x1m': 36438, 'emotionally': 11318, 'exhausted': 11974, 'empathic': 11321, 'tapped': 32239, 'ty': 33949, 'individualism': 16822, 'bengal': 4322, 'variety': 34828, 'touched': 33320, 'boycottvodafone': 5107, 'freelancer': 13428, 'contractor': 7827, 'loophole': 19653, 'ifs': 16409, 'aiding': 2216, 'shadab': 29255, 'raunheim': 26633, 'hessen': 15568, 'impression': 16638, 'granada': 14532, 'difficulty': 9849, 'infosec': 16931, 'jacket': 17577, 'cabinet': 5716, 'fond': 13067, 'wantonly': 35375, 'liable': 19199, 'breaching': 5201, 'smes': 30058, 'informal': 16922, 'cushioning': 8784, 'oahu': 23014, 'islandlife': 17447, 'hawaii': 15244, 'hog': 15749, 'pig': 24784, 'hawaiianislands': 15246, 'enrollment': 11505, 'aca': 1694, 'cobra': 7123, 'undoubtably': 34237, 'regulator': 27047, 'swarming': 31973, 'lettuce': 19152, 'seal': 28888, 'thinker': 32823, 'pandamonium': 23980, 'norespect': 22687, 'gainesville': 13747, 'landed': 18803, 'stuffccedoes': 31475, 'hofmann': 15748, 'containment': 7774, 'ramp': 26541, 'metropolitan': 20908, 'singalong': 29792, 'rain': 26477, 'defence': 9299, 'cornwall': 7995, 'lockdown2020': 19511, 'jantacurfew2020': 17647, 'hantavir': 15097, 'yesmanservices': 36573, 'narendramodi': 22017, '09': 120, 'ringd': 27780, 'shady': 29260, 'pretendingtocare': 25553, 'needing': 22225, 'vi': 34975, 'ikoyi': 16464, 'marina': 20301, 'unlimited': 34382, 'healthylifestyle': 15355, 'doculandnigeria': 10318, '19de': 412, 'racking': 26436, 'biologicalweapon': 4584, 'terrorism': 32530, 'collap': 7213, 'hayward': 15260, 'cox': 8356, 'agent': 2132, 'uphold': 34533, 'undertaking': 34221, 'valuation': 34766, 'inspection': 17063, 'maintenance': 20065, 'compliance': 7464, 'jerseyans': 17729, 'diversification': 10243, 'legislature': 19059, 'listing': 19370, '16th': 323, 'posit': 25235, 'critically': 8547, 'reputable': 27317, 'hea': 15293, 'hobby': 15735, 'emptier': 11352, 'germophobe': 14009, 'tohoku': 33138, 'influencers': 16910, 'involve': 17326, 'detached': 9664, 'fitbit': 12826, 'ace': 1769, '58': 1117, 'camelcamelcamel': 5829, 'purveyor': 26128, 'truce': 33659, 'luscious': 19835, 'vegetation': 34881, 'locust': 19573, 'grazed': 14595, 'crate': 8428, '5lines': 1154, 'mpy': 21622, 'surplus': 31873, 'roast': 27887, 'mince': 21082, 'bir': 4602, 'ddettir': 9143, 'permarketlerin': 24517, 'lojistik': 19598, 'hizmeti': 15694, 'avusturya': 3606, 'ordusu': 23524, 'deste': 9649, 'iyle': 17564, 'yap': 36517, 'yor': 36616, 'tedavisi': 32397, 'milyon': 21075, 'luk': 19802, 'ara': 3039, 'rma': 27858, 'geli': 13919, 'tirme': 33056, 'esi': 11675, 'klad': 18461, 'ge': 13893, 'hafta': 14922, 'paketi': 23927, 'klanm': 18463, 'viyana': 35154, 'haberler': 14902, 'bu': 5432, 'kadar': 18019, 'isolates': 17463, 'believing': 4285, 'himself': 15638, 'thi': 32799, 'ng': 22417, 'deploys': 9543, 'gafoodindustry': 13736, 'scarf': 28700, 'wrapped': 36331, 'pan': 23963, 'splain': 30605, 'barbie': 3925, 'doll': 10365, 'veteran': 34966, 'resisted': 27398, '46': 976, '385': 852, 'mcx': 20606, '44049': 953, 'gloom': 14242, 'sooner': 30367, 'empathetic': 11320, 'enhancing': 11473, 'holland': 15780, 'sitution': 29841, 'landal': 18801, 'rebook': 26785, 'unacceptable': 34108, 'interruption': 17226, 'nofilter': 22599, 'champagne': 6424, 'penis': 24426, 'sprayable': 30673, 'diameter': 9785, 'nozzle': 22858, 'active': 1830, 'liquidator': 19352, 'busiest': 5588, 'bac': 3713, '3a': 861, 'cannonwater': 5912, 'teamcvs': 32344, 'realheros': 26720, 'surreal': 31878, 'csis': 8667, 'ben': 4305, 'cahill': 5744, 'socialist': 30225, 'arrange': 3138, 'reservist': 27365, 'vat': 34839, 'lick': 19229, 'coronanl': 8074, 'franchise': 13365, 'photohops': 24721, 'deletes': 9385, 'sentence': 29136, 'stacker': 30798, 'humannature': 16134, 'spindini': 30584, 'greatgeneration': 14606, 'upto': 34568, 'accidently': 1727, 'rcb': 26657, 'ipl2020': 17360, 'pipe': 24836, 'plc': 24956, 'preaching': 25417, 'kaki': 18043, 'meja': 20753, 'jangan': 17639, 'tapi': 32238, 'trumpepicfailure': 33694, 'anniversary': 2780, 'temporarywork': 32473, 'temporaryvacancy': 32472, 'musicaltheatre': 21791, 'westend': 35718, 'lockdownlondon': 19534, 'newspaper': 22378, 'chancellor': 6430, 'merkel': 20860, 'berlin': 4354, 'preserving': 25524, 'chapter': 6465, 'verizon': 34940, 'cpd': 8365, 'supervising': 31778, 'fatally': 12388, 'flawed': 12913, 'nielsen': 22476, 'inclined': 16711, 'premise': 25480, 'demographic': 9465, 'cwa': 8845, 'advocacy': 2017, 'lift': 19270, 'streamer': 31380, 'shouted': 29587, 'separate': 29145, 'calgary': 5775, 'involving': 17330, 'westjet': 35726, 'intimidating': 17249, 'connectivity': 7625, 'connect': 7618, 'fortunately': 13295, '60seconds': 1185, 'becreative': 4180, 'bebetter': 4163, 'besafe': 4371, 'extortionately': 12111, 'haji': 14957, 'adulterated': 1979, 'ritual': 27834, 'meaningful': 20632, 'facetime': 12190, 'boerne': 4868, 'eatery': 10916, 'afloat': 2071, 'showcase': 29594, 'mncs': 21248, 'ranchi': 26553, 'nrlm': 22868, 'adoting': 1967, 'ayurved': 3658, 'tpi': 33379, 'timeframe': 33015, 'bang': 3876, 'harassing': 15133, 'pedestrian': 24368, 'bonding': 4921, 'moral': 21472, 'schmutz': 28740, 'performing': 24494, 'random': 26561, 'louisiana': 19705, 'satan': 28551, 'boomplay': 4961, 'rewe': 27680, 'potsdam': 25298, 'odds': 23127, 'thats': 32649, 'pilling': 24803, 'fuckoffcoronavirus': 13587, 'kindnesspandemic': 18399, 'thinkingofothers': 32828, 'hurry': 16190, 'fighttogether': 12648, 'belgavi': 4274, 'tnc': 33095, 'baseline': 3988, 'primarily': 25611, 'paycheck': 24292, 'wreck': 36337, 'fema': 12539, 'competing': 7435, 'medicalequipment': 20685, 'protectivegear': 25896, 'trumpliesamericansdie': 33712, 'eucommission': 11778, 'traveller': 33539, 'regionalsecurity': 27023, 'lcdc': 18965, 'cabby': 5713, 'mercedes': 20835, '01892': 39, '838': 1394, '619': 1192, 'salford': 28363, 'refuse': 27002, 'soybean': 30455, 'scenario': 28716, 'dtc': 10693, 'slated': 29941, 'k12': 18012, 'midtown': 21004, 'newyorklockdown': 22398, 'newyorktough': 22400, 'rang': 26572, 'career': 6013, 'meditate': 20709, 'tuesdaytreat': 33817, 'curse': 8769, 'multinational': 21719, 'whooping': 35925, 'mylan': 21856, 'nv': 22954, 'ijustwanttogobacktomynormallife': 16460, 'saudiaramco': 28578, 'comfortable': 7303, 'aramco': 3046, 'geopolitics': 13989, 'oilandgas': 23210, 'subsea': 31538, 'alxcltd': 2516, 'journalism': 17890, 'neither': 22260, 'brighton': 5295, 'lighten': 19276, 'steve': 31130, 'hendrickson': 15508, 'naturalgas': 22083, 'natgas': 22046, 'dementia': 9451, 'respected': 27422, 'login': 19586, 'essenti': 11693, 'cagnaccio': 5742, 'rubbish': 28100, 'surestwaytolegalresearch': 31855, 'supremecourt': 31839, 'scconline': 28713, 'jane': 17633, 'southworth': 30446, 'diverisfiedindustrials': 10241, 'biocide': 4572, 'lapping': 18832, 'divided': 10255, 'deployed': 9540, 'ftse': 13562, 'ursday': 34596, 'demic': 9454, 'pedro': 24373, 'perez': 24484, 'woollies': 36202, 'firing': 12787, 'copping': 7945, 'keyworker': 18295, 'unpaid': 34406, 'settle': 29209, 'intelligent': 17151, 'em': 11248, 'cnas': 7092, 'stockmarketcrash': 31215, 'signofthetimes': 29724, 'brief': 5283, 'coincides': 7183, 'rainy': 26484, 'unavoidable': 34124, 'disrupt': 10162, 'foreseeable': 13222, 'acute': 1851, 'shopify': 29508, 'slide': 29971, 'deck': 9234, 'attend': 3409, 'consultancy': 7696, 'training': 33450, 'maniac': 20204, 'smarting': 30033, 'ipa': 17347, 'pivot': 24865, 'skull': 29908, 'realitytv': 26733, 'dotheirpart': 10490, 'ironically': 17393, 'traveled': 33533, '80km': 1369, 'gasprices': 13834, 'roadtrip': 27882, 'pork': 25198, 'cordon': 7957, 'gruyere': 14771, 'sauce': 28572, 'exit': 11990, 'unloading': 34385, 'prioritise': 25640, 'sprayer': 30675, 'dental': 9505, 'hygienist': 16250, 'amber': 2552, 'sanchez': 28420, 'shadow': 29258, 'tote': 33310, 'delayed': 9377, 'finalized': 12693, 'scuffle': 28859, 'respectful': 27423, 'justsaying': 17998, 'earnings': 10865, 'ubs': 33992, 'wealth': 35528, 'claudia': 6913, 'panseri': 24051, 'preservation': 25520, 'rectify': 26875, 'brunswick': 5399, 'stat': 30899, 'southkorea': 30436, 'coli': 7204, 'botulism': 5048, 'winning': 36052, 'bruh': 5392, 'schedule': 28725, 'trickiest': 33595, 'terminal': 32513, 'pressing': 25538, 'waving': 35494, 'saleem': 28352, 'safi': 28297, 'imran': 16660, 'khan': 18314, 'ik': 16461, 'resignation': 27387, 'imf': 16531, 'ig': 16412, 'punjab': 26079, 'fazlu': 12424, 'dharna': 9757, 'chore': 6734, 'eyewear': 12144, 'sunglass': 31691, 'newyork': 22396, 'cornell': 7976, 'indie': 16807, 'approaching': 2994, 'faltering': 12275, 'category3': 6172, 'evacuation': 11808, 'devastation': 9707, 'assigned': 3304, 'dichotomy': 9799, 'thankstrump': 32614, 'tjmaxx': 33075, 'burlington': 5555, 'ko': 18523, 'olau': 23256, 'helpingothers': 15461, 'emphatically': 11331, 'nyu': 23000, 'tandon': 32217, 'expressing': 12081, 'harry': 15179, 'brennan': 5244, 'personalfinance': 24553, 'rba': 26653, 'joyce': 17896, 'mccutch': 20583, 'gujarat': 14832, 'surat': 31848, 'resorted': 27412, 'pelted': 24402, 'stone': 31246, 'detained': 9668, 'dcp': 9136, 'rakesh': 26504, 'barot': 3955, 'va': 34718, 'dept': 9563, 'partnership': 24177, 'adjusts': 1922, 'lounge': 19709, 'americanairlines': 2581, 'marketscreener': 20341, 'brawl': 5190, 'root': 27999, 'ipex': 17352, 'silk': 29739, 'scrunchies': 28855, 'wichita': 35949, 'relentlesslyoriginal': 27117, 'terfs': 32509, 'trans': 33460, 'vax': 34846, 'seat': 28913, 'boose': 4965, 'myth': 21885, 'terf': 32508, 'luxurybrand': 19852, 'luxurylifestyle': 19857, 'stockton': 31229, 'defying': 9346, 'lipstick': 19346, 'polish': 25118, 'saint': 28331, 'johnston': 17847, 'ain': 2225, 'noth': 22774, 'abc15': 1600, 'speculator': 30541, 'italylockdown': 17506, 'emi': 11296, 'tht': 32935, 'institution': 17110, 'orpenalties': 23570, 'incase': 16694, '30k': 759, 'auspol2020': 3491, 'loyalty': 19757, 'legalnews': 19049, 'robertson': 27899, 'gd': 13890, 'malaysialockdown': 20126, 'pp': 25351, 'propylene': 25862, 'sluggish': 30005, 'owing': 23818, 'clap8': 6877, 'generosity': 13951, 'thoughtfulness': 32888, 'manic': 20205, 'courteous': 8293, 'acc': 1701, '3400': 801, 'panickbuying': 24034, 'lucky': 19791, '20k': 526, 'spur': 30718, 'verified': 34933, 'gasbuddy': 13825, 'spurbp': 30719, '815': 1376, 'laurel': 18920, 'ky': 18684, '40741': 917, 'riasrd': 27709, 'weekday': 35615, 'weallneedfood': 35527, 'jessie': 17734, 'wright': 36347, 'pat': 24220, 'served': 29179, 'tweaking': 33901, 'mtn': 21667, 'southafrica': 30417, 'meatshop': 20654, 'coimbatorecorporation': 7175, 'lockdowndiary': 19518, 'thecovaipost': 32672, 'cowering': 8351, 'shoved': 29591, 'knocking': 18504, 'yelped': 36563, 'comsumption': 7502, 'premiumization': 25483, 'winetasting': 36042, 'winedrinking': 36034, 'winelover': 36037, 'wineindustry': 36035, 'dispensary': 10132, 'stance': 30842, 'stalker': 30831, 'johnlewis': 17843, 'fitch': 12827, 'sovereign': 30448, 'rmbs': 27863, 'performance': 24491, 'borrower': 5014, 'hardly': 15144, 'nor': 22679, 'disastrous': 10006, 'disrupts': 10167, 'murphy': 21776, 'humidor': 16144, 'pseudomed': 25975, 'uc': 33993, 'irvine': 17420, 'debunked': 9203, 'rejuvi': 27083, 'liver': 19414, 'attributed': 3434, 'herbalife': 15524, 'marketcrash': 20315, 'chinesecoronavirus': 6674, 'chucknorris': 6772, 'breakingnews': 5214, 'illjustorderfromthecharmery': 16483, 'laughed': 18906, 'juha': 17936, 'saarinen': 28225, 'canal': 5862, 'edit': 11036, 'selfquarantine': 29051, 'tearful': 32363, 'wary': 35419, 'skype': 29917, 'centered': 6320, 'intreo': 17259, 'quay': 26298, 'relaxing': 27103, 'quarantinis': 26278, 'dynamic': 10825, 'duo': 10766, 'review': 27650, '21st': 558, 'somalia': 30323, 'pandemic2020': 23987, 'coronapimpin': 8084, 'sexydistancing': 29236, 'sexy': 29235, 'igotyouboo': 16438, 'excitement': 11942, 'rot': 28018, 'sakal': 28335, 'sakalnews': 28337, 'viral': 35083, 'sakalmedia': 28336, 'lockdownnow': 19540, 'staffing': 30807, 'fra': 13347, 'reassured': 26777, 'ram': 26516, 'bajekal': 3810, 'fmf': 13015, 'ltd': 19775, 'oneindiapolls': 23326, 'wuhancoronavius': 36397, 'bahrain': 3792, 'lad': 18730, 'everton': 11845, 'turkish': 33865, 'edinburgh': 11035, 'legislated': 19055, 'homebuying': 15809, 'homebuyer': 15807, 'residential': 27383, 'househunters': 16007, 'cocooned': 7141, 'duration': 10776, 'poke': 25092, 'patty': 24268, 'quarantaine': 26238, 'tpshortage': 33389, 'somebody': 30329, 'cross': 8585, 'sumone': 31663, 'teresa': 32507, 'wickham': 35953, 'tunbridge': 33842, '42': 935, 'regime': 27017, 'unthinkable': 34480, 'ducking': 10718, 'bide': 4489, 'symptons': 32077, 'confusing': 7598, 'proctorgamble': 25706, 'albany': 2309, 'feedingus': 12513, 'bakingstrong': 3821, 'outflow': 23656, 'unmanageable': 34388, 'mindset': 21092, 'digitaltransformation': 9894, 'pwc': 26158, 'designthinking': 9618, 'dataanalytics': 9041, 'rpa': 28062, 'infographics': 16919, 'england': 11463, 'conflict': 7586, 'rue': 28113, 'janev3': 17638, 'bust': 5619, 'amb': 2549, 'hemp': 15501, 'adapts': 1867, 'cannabisnews': 5902, 'cannabisindustry': 5901, 'invasionofthebodysnatchers': 17284, 'pantrystaples': 24056, 'casual': 6152, 'bankrupt': 3901, 'http': 16079, 'viruschino': 35109, 'ism': 17452, 'adp': 1968, 'payroll': 24311, '27k': 664, '150k': 282, 'july': 17948, 'exploration': 12058, 'hedged': 15401, 'tullowoil': 33830, 'oilindustry': 23221, 'focusing': 13035, 'statistic': 30924, 'enthusiastic': 11533, 'wal': 35308, 'semi': 29081, 'dang': 8988, 'collapsed': 7216, 'khamenei': 18312, 'evolves': 11886, 'pilot': 24807, 'colab': 7192, 'transporter': 33507, 'computer': 7500, 'cautionyespanicno': 6208, 'brookshire': 5369, 'eldorado': 11166, 'brookshires': 5370, 'seniordiscount': 29113, 'seniorhours': 29114, 'unioncounty': 34321, 'convoy': 7893, 'randos': 26569, 'unchecked': 34144, 'humanityforward': 16131, 'silenced': 29733, 'orphanage': 23572, 'mainly': 20055, 'neighbouring': 22256, 'drc': 10596, 'unseen': 34455, 'surrounded': 31885, 'ukjay': 34058, 'pb': 24318, '1kg': 437, 'porridge': 25203, '500g': 1040, 'pleasee': 24968, 'nitrate': 22537, 'bib': 4477, 'goggles': 14327, 'smoking': 30081, 'refurbished': 26999, 'itsuperheroes': 17539, 'correctly': 8169, 'aricle': 3099, 'take3': 32156, 'devise': 9725, 'transparent': 33502, 'rcs': 26662, 'mobilemarketing': 21277, 'richcommunications': 27728, 'medcine': 20663, 'shouldn': 29584, 'fraser': 13384, 'hasnt': 15201, 'filming': 12675, 'accelerant': 1703, 'nascent': 22029, 'svod': 31954, 'avod': 3593, 'rev': 27624, 'downstream': 10539, 'heating': 15387, 'fuelled': 13606, 'cma': 7078, '115': 191, 'africanlivesmatter': 2082, 'quadruple': 26211, 'sovereignty': 30449, 'drought': 10653, 'farners': 12347, 'moussafaki': 21584, 'completed': 7456, 'selected': 29012, '630am': 1203, 'wakingdead': 35306, 'bre': 5198, 'verify': 34934, 'skin': 29887, 'arranged': 3139, '5million': 1158, 'essiantial': 11712, 'distancers': 10185, 'bryan': 5411, 'balvaneda': 3850, 'void': 35184, 'volunteering': 35195, 'katie': 18126, 'moving': 21600, 'residentevil': 27379, 'depressing': 9555, 'tribe': 33590, 'servicetechnicians': 29191, 'foodprocessing': 13131, 'niece': 22475, 'hut': 16208, 'caregiver': 6020, 'mat': 20473, 'wmt': 36139, 'amazonbasics': 2536, 'kirkland': 18422, 'roadmaps': 27880, 'prosumer': 25879, 'novak': 22829, '6pm': 1260, 'aedt': 2023, 'wark': 35393, 'middleton': 20995, 'cf': 6368, 'joint': 17852, 'expressly': 12083, 'creditunions': 8488, 'resist': 27395, 'darth': 9028, 'vader': 34732, 'compiled': 7446, 'fdic': 12457, 'tipped': 33044, 'transforming': 33479, 'growbydata': 14747, 'laborer': 18711, 'planting': 24918, 'freight': 13449, 'plane': 24903, 'upending': 34523, 'unilaterally': 34308, 'istanbul': 17495, 'mamolu': 20157, 'aryal': 3207, 'ensuing': 11512, '327': 788, '841': 1397, '482': 993, 'hospitalization': 15957, '574': 1115, '095': 124, '427': 942, 'optimistic': 23488, 'comforting': 7308, 'canibrands': 5892, 'echl': 10957, 'cleanse': 6945, 'upper': 34546, 'greg': 14641, 'courtney': 8297, 'knoll': 18506, 'uia': 34033, 'adler': 1924, 'resturaunts': 27499, 'taped': 32237, 'grey': 14649, 'bruce': 5390, 'mandating': 20179, 'poorly': 25176, 'inefficient': 16856, 'windfall': 36023, 'xenophobic': 36454, 'clickbait': 6983, 'unsanitary': 34444, 'lastinch': 18856, 'madeforcurves': 19948, 'plussizefashion': 25022, 'bodypositive': 4865, 'partweardresses': 24180, 'plussizeoutfit': 25023, 'plussizetops': 25024, 'outfitgoals': 23653, 'coronamemes': 8068, 'steelworker': 31072, '220': 561, 'female': 12540, 'drain': 10573, 'harming': 15163, 'ventolin': 34918, 'cried': 8517, 'vitamin': 35145, 'soldoitofvitamins': 30293, 'selfishpeople': 29035, 'thk': 32864, 'encouraged': 11386, 'sticking': 31148, 'deafandunarmed': 9157, 'internalized': 17202, 'notgoingout': 22772, 'entertainer': 11529, 'athlete': 3363, 'bushey': 5580, 'urine': 34593, 'rupee': 28160, 'consistency': 7667, 'routinely': 28047, 'erect': 11633, 'obstacle': 23073, 'advancement': 1986, 'demo': 9458, 'nepal': 22273, 'pitty': 24861, 'legislator': 19058, 'marble': 20267, 'revaluation': 27625, 'default': 9290, 'usmarket': 34656, 'dowjones': 10517, 'sp500': 30458, 'nasdaq': 22030, 'overpriced': 23763, 'ru0xuahilf': 28093, 'heeded': 15409, 'stockpiled': 31221, 'coonavirus': 7915, 'haunted': 15225, '401k': 910, 'liveliho': 19409, 'slept': 29964, 'powertalk': 25344, 'featured': 12477, 'furniture': 13681, 'elpasostrong': 11241, 'wesupportlocal': 35741, 'pulled': 26050, 'childcare': 6637, 'juggle': 17934, 'shuttered': 29648, 'vtequalpayday': 35234, 'topical': 33250, 'ict': 16343, 'excel': 11920, 'oversee': 23776, 'valid': 34756, 'disgrace': 10073, 'forgive': 13241, 'mikeashley': 21029, 'boycottsportsdirect': 5105, 'mailman': 20045, 'potentially': 25295, 'webcam': 35575, 'bestbuy': 4387, 'videoconferencing': 35007, 'moven': 21594, 'gained': 13745, 'warming': 35397, 'toddler': 33117, 'emarsys': 11254, 'gooddata': 14374, 'demonstrates': 9476, 'sheltering': 29396, 'westminster': 35731, 'amen': 2568, 'latraffic': 18896, 'contacted': 7760, 'sudde': 31590, 'insufficient': 17122, 'carbonmarket': 5989, 'euets': 11779, 'pant': 24053, 'awe': 3626, 'diplomacy': 9948, 'infecting': 16881, 'pappystips': 24077, 'enoughisenough': 11492, 'advanced': 1985, 'soothing': 30372, 'scent': 28719, 'fl': 12859, 'jelly': 17703, 'daffs': 8905, 'replied': 27268, 'undefeated': 34172, 'humour': 16150, 'germanycoronavirus': 14005, 'bremen': 5239, 'liberal': 19208, 'pakistanfightscorona': 23930, 'punch': 26066, 'cremona': 8502, 'andrea': 2705, 'promising': 25799, 'bait': 3805, 'circling': 6811, 'moonbeamwishes': 21454, 'megan': 20736, 'condensed': 7537, 'praying': 25408, 'champion': 6425, 'chorlton': 6736, 'backlog': 3732, 'fam': 12276, 'foodsecurity': 13135, 'morefoodmoreoften2morepeople': 21483, 'iwas': 17555, 'irrational': 17399, 'obsession': 23068, 'density': 9503, 'econsumergov': 11011, 'exceeded': 11918, 'resin': 27394, '280': 668, 'policeman': 25108, 'heavenly': 15392, 'cardiologist': 6004, 'quit': 26366, 'nearest': 22197, 'cleansing': 6948, 'kleenex': 18468, 'packet': 23878, 'utahearthquake': 34675, 'overdrive': 23737, 'flooring': 12968, 'geopolitical': 13987, 'ramification': 26536, 'fearful': 12466, 'entail': 11518, 'procured': 25708, 'skid': 29876, 'angel': 2724, 'contaminate': 7777, 'differentiated': 9844, 'agrees': 2168, 'recorded': 26852, 'elect': 11167, 'pvt': 26154, 'condo': 7544, 'sengkang': 29110, 'draw': 10587, 'hun': 16155, 'socialdistancinguk': 30208, 'racing': 26428, 'supporter': 31806, 'councilors': 8244, 'brunch': 5397, 'extensively': 12096, 'yemen': 36567, 'unaffordable': 34111, 'ja': 17570, 'den': 9484, 'demma': 9457, 'sef': 28994, 'chai': 6402, 'popup': 25192, 'attached': 3396, 'njavwa': 22544, 'simukoko': 29770, '260964905611': 644, 'nw': 22958, 'shaming': 29305, 'upping': 34547, 'bleepin': 4715, 'teenscoughingongrocerystoreproduce': 32408, 'genz': 13974, 'purcellville': 26088, 'alma': 2447, 'mater': 20485, '10th': 173, 'revive': 27659, 'pummeled': 26057, 'vino': 35064, 'wolftrap': 36159, 'thewolftrap': 32794, 'qt': 26204, 'wilkinson': 35995, 'blvd': 4815, 'clt': 7057, 'ewg': 11893, 'pesticide': 24580, 'foodnews': 13125, 'shoppinglist': 29542, '2f': 702, 'anytime': 2871, 'pric': 25582, 'penalise': 24407, 'responsibly': 27452, 'punishing': 26076, 'miscreant': 21158, 'receipt': 26806, 'exists': 11989, 'dollarama': 10367, 'unsettling': 34457, 'artforheroes': 3174, 'wellbeing': 35669, 'fil': 12661, 'bash': 3992, 'reactive': 26683, 'bcg': 4094, 'reacting': 26679, 'weighing': 35638, 'surpassed': 31870, 'crimsonagility': 8527, 'shopfromhome': 29505, 'clientsupport': 6990, 'delhi': 9392, 'bengaluru': 4323, 'unjustifiably': 34360, 'halifax': 14975, 'tactical': 32129, 'lessened': 19119, 'samsung': 28407, 's20': 28218, 'vile': 35045, 'rbc': 26654, 'deadbodies': 9149, 'hug': 16106, 'banana': 3860, 'sudanese': 31589, 'residing': 27384, 'suisse': 31625, '2400': 603, 'crony': 8578, 'palm': 23949, 'diner': 9927, 'maralagovirus': 20265, 'breadline': 5205, 'positioned': 25238, 'teepee': 32410, 'powerball': 25329, 'jackpot': 17582, 'prize': 25678, 'payouts': 24307, 'drawing': 10590, 'wisconsinpandemicvoting': 36080, 'personally': 24558, 'naww': 22122, 'pumping': 26062, 'yummy': 36695, 'dana': 8976, 'trainer': 33448, 'reminded': 27170, 'colloidal': 7239, 'takeyourselfhome': 32174, 'subhanhu': 31517, 'wataalah': 35464, 'calme': 5808, 'downward': 10550, 'ques': 26319, 'schnuck': 28743, 'reopening': 27229, 'butte': 5634, 'mix': 21216, 'liquid': 19349, 'somber': 30325, 'spacing': 30464, 'diminished': 9918, 'fringe': 13507, '2424': 607, '724244': 1292, 'nssf': 22881, 'lebanon': 19024, 'stacked': 30796, 'ceiling': 6287, 'seismic': 29003, 'cultural': 8712, 'etched': 11744, 'marker': 20310, 'investigator': 17307, 'fizzle': 12854, 'berliner': 4355, 'lends': 19092, 'skincare': 29889, 'anki': 2765, 'vector': 34858, 'therapeutic': 32748, 'vicky': 34992, 'ngyuen': 22430, 'qualified': 26221, 'justsayin': 17997, 'airy': 2255, 'ignored': 16433, 'pitying': 24863, 'ourresponsibility': 23630, 'sberesponsible': 28647, 'contemplating': 7789, 'pritzker': 25658, 'illinois': 16477, 'lgus': 19193, 'daraz': 9010, 'adopting': 1961, 'staysafeshoponline': 31031, 'vuitton': 35236, 'commonly': 7370, 'dystopian': 10831, 'fandom': 12295, 'regardless': 27013, 'steven': 31133, 'supermarketworkers': 31756, 'foodworkers': 13159, 'foodshopping': 13138, 'mounting': 21580, 'snp': 30150, 'spokesperson': 30624, 'milling': 21063, 'villainy': 35051, 'geoi': 13983, 'sdbeer': 28870, 'floridashutdown': 12977, 'helpthehelpers': 15481, 'dressed': 10610, 'cord': 7954, 'sweater': 31984, 'boot': 4971, '5986': 1128, '627': 1199, 'brescia': 5249, 'developing': 9711, 'foodstuff': 13143, 'kaduna': 18022, 'ukgoverment': 34051, 'tire': 33050, 'dealership': 9160, 'frontlines': 13532, 'naz': 22125, 'karim': 18101, 'declare': 9238, 'oldie': 23264, 'uno': 34399, 'selute': 29073, 'stayhomeindia': 30987, 'cutter': 8830, 'cigar': 6792, 'motivate': 21554, 'coronav': 8118, 'coronavir': 8125, 'mooch': 21448, 'slashing': 29939, 'gavinnewsom': 13859, 'newsom': 22376, 'calfresh': 5773, 'foreclosing': 13210, 'infectious': 16883, 'htt': 16077, 'demonstrate': 9474, 'shrink': 29613, 'deteriorating': 9682, 'whats': 35791, 'chattanooga': 6509, 'despair': 9630, 'assertive': 3295, 'jail': 17598, 'kuwaiti': 18661, 'thankingkuwaitcorona': 32604, 'howlin': 16044, 'thaler': 32585, 'sticky': 31151, 'deadlock': 9153, 'emergence': 11282, 'grocerygames': 14697, 'homebound': 15805, 'diagnosis': 9776, 'yikes': 36587, 'notpanickingyet': 22803, 'omdia': 23295, 'predicting': 25449, 'virtually': 35097, 'enoughdoing': 11491, 'givi': 14174, 'rosie': 28009, 'riveter': 27843, 'intensive': 17161, 'faced': 12176, 'besmart': 4381, 'strongest': 31442, 'cast': 6144, 'disablity': 9983, 'weakness': 35525, 'smartly': 30037, 'productivity': 25722, 'normalcy': 22691, 'unpleasant': 34410, 'ungrateful': 34291, 'sucharita': 31582, 'kodali': 18530, 'assure': 3322, 'zealander': 36740, 'allegation': 2403, 'norwegian': 22734, 'wembley': 35681, 'closest': 7029, 'icu': 16344, 'hokianga': 15758, 'fi': 12599, 'nejm': 22261, 'caveat': 6214, 'emptor': 11356, 'degrades': 9359, 'gobrowns': 14297, 'wholefoods': 35915, 'ramennoodles': 26533, 'bopis': 4978, 'halted': 14992, 'ecozones': 11016, 'economycrisis': 11009, 'ri': 27706, 'wtop': 36380, '01hr': 41, 'atleast': 3380, '03hrs': 67, 'goodman': 14385, 'bonita': 4932, 'flamingo': 12871, 'sprimg': 30695, 'crew': 8510, 'frontlineheroes': 13529, 'yieldcos': 36585, 'neighbourhood': 22255, 'intersection': 17227, 'newprofilepic': 22360, 'venue': 34922, 'ankle': 2766, 'jumpsuit': 17956, 'internally': 17203, 'sadder': 28259, 'fucked': 13572, 'borrow': 5012, 'scariest': 28703, 'diego': 9823, 'medford': 20667, 'compromised': 7493, 'destinationmedford': 9653, 'medfordnj': 20668, 'staggered': 30816, 'adherence': 1904, 'congregate': 7608, 'inter': 17167, 'shuttle': 29655, 'wncn': 36141, 'nebraskan': 22206, 'elation': 11153, 'townspeople': 33364, 'gi': 14099, 'atop': 3388, 'liberation': 19213, 'joy': 17895, 'pallet': 23947, 'jubilation': 17914, 'disproportionate': 10154, 'jeanne': 17684, 'bohlen': 4882, 'safeway': 28296, 'tragic': 33440, 'rough': 28032, 'auction': 3451, 'laboring': 18712, 'fulfill': 13619, 'intense': 17156, 'w1': 35256, 'schoolclosure': 28751, 'exhaustion': 11976, 'strangely': 31357, 'expansive': 12003, 'metaphor': 20889, 'breaker': 5209, 'lonely': 19616, 'overcrowded': 23730, 'destination': 9652, 'stratospheric': 31374, 'bedsit': 4192, 'bitter': 4633, 'fir': 12771, 'honey': 15876, 'vdacs': 34854, 'stayhometexas': 31003, 'afterthought': 2098, 'alcoholicsoap': 2333, 'beatcovid19': 4137, 'coronaphilippines': 8083, 'touchland': 33323, 'rebound': 26790, 'impoverished': 16634, 'liberia': 19214, 'cassava': 6142, 'priced': 25587, '697': 1243, '1220': 216, 'ht': 16076, 'machinelearning': 19919, 'paignton': 23909, 'teenager': 32407, 'civic': 6841, 'cbot': 6230, 'weaker': 35523, 'xinhua': 36463, 'hmrc': 15712, 'socialsecurity': 30240, 'ssa': 30765, 'garbageman': 13798, 'acknowledgement': 1794, 'dollartree': 10370, 'scream': 28828, 'jen': 17706, 'faq': 12308, 'moderate': 21299, 'breakthrough': 5222, 'timely': 33017, 'chest': 6603, 'clinic': 7003, 'ekg': 11142, 'immunosuppressed': 16569, 'fleeing': 12924, 'tinderbox': 33030, 'exacerbating': 11901, 'tension': 32499, 'cheapest': 6526, 'servo': 29196, 'fifty': 12627, 'tolietpaper': 33201, 'nit': 22535, 'snotty': 30142, 'unwashed': 34499, 'gifting': 14115, 'foodgift': 13103, 'foodgifting': 13104, 'foodandbeverage': 13079, 'democracy': 9459, 'touted': 33348, 'arena': 3074, 'weirdly': 35649, 'wasabi': 35421, 'ish': 17430, 'scooping': 28790, 'messaging': 20876, 'bayside': 4064, 'tightening': 32982, 'financing': 12726, 'disabilitysucks': 9979, 'clearer': 6960, '3p': 891, 'hardware': 15148, 'plumber': 25009, 'electrician': 11177, 'teller': 32457, 'laundromat': 18917, 'gown': 14493, 'liason': 19205, 'coronajokes': 8061, 'issuing': 17492, 'thecustomerwhisperer': 32675, 'foottraffic': 13181, 'remodels': 27180, 'withdraws': 36106, 'hanbury': 15025, 'websiteexpertsinghana': 35591, 'coronainghana': 8052, 'nanaaddo': 21990, 'acct': 1753, 'ssns': 30774, 'phishers': 24695, 'cv': 8837, 'walgreens': 35312, 'rite': 27833, 'radius': 26449, 'nada': 21929, 'backpackingbear': 3737, '3am': 862, 'eminem': 11300, 'youneedgroceries': 36637, 'conte': 7786, 'contemplate': 7787, 'consumerbehaviour': 7714, 'restaurantnews': 27466, 'mongering': 21405, 'invokes': 17324, 'purposely': 26116, 'panews': 24014, 'hanovertownship': 15095, 'luzernecounty': 19858, 'papolice': 24074, 'kelly2': 18225, 'thejake': 32707, 'sp': 30457, 'snd': 30115, 'novartis': 22831, 'dos': 10485, 'nonrefundable': 22655, 'screaming': 28830, 'financially': 12712, 'destitute': 9656, 'wiser': 36086, 'happyhour': 15120, 'toss': 33294, 'witcher': 36099, 'explained': 12042, 'sophisticated': 30376, '30m': 761, 'irresponsibly': 17412, 'dumbest': 10741, 'cleanroom': 6944, 'tiny': 33041, 'confronted': 7594, 'pleads': 24963, 'rhine': 27697, 'hall': 14976, 'pfe': 24637, 'rhinehall': 27698, 'barr': 3956, 'manipulate': 20213, 'whcovidbriefing': 35810, 'advertise': 1998, 'competitor': 7443, 'pared': 24116, 'memory': 20791, 'happiness': 15110, 'readymade': 26700, 'heineken': 15424, 'cdnecon': 6264, 'pocketbook': 25059, 'snakeoil': 30102, 'frustrated': 13548, 'uranium': 34577, 'doomed': 10456, 'embracing': 11272, 'brake': 5146, 'makeourmark': 20097, 'helpourneighbors': 15475, '30seconds': 769, 'stockingup': 31211, 'subsidising': 31547, 'frieght': 13493, 'bulky': 5496, 'n3': 21901, 'comon': 7400, 'vest': 34962, 'oo': 23409, 'jomo': 17864, 'jomotv': 17865, 'kingjomo': 18403, 'remembered': 27165, 'practiced': 25368, 'changer': 6442, 'compatriot': 7425, 'doofancy': 10453, 'enquirer': 11495, 'whatthe': 35803, 'engineered': 11460, 'selfishly': 29031, 'productive': 25720, 'congratulation': 7607, 'malaysian': 20127, 'crave': 8432, 'midwife': 21009, 'carer': 6027, 'nursery': 22926, 'clapfornhs': 6882, 'thankyounhs': 32628, 'hysterical': 16281, 'dysfunctional': 10828, 'freeing': 13424, 'mandela': 20182, 'arr': 3137, 'adi': 1909, 'enable': 11369, 'menards': 20797, 'cited': 6825, 'starmer': 30877, 'brainstorming': 5142, 'language': 18821, '903': 1463, '689': 1239, '1975': 392, 'questioned': 26326, 'mvp': 21827, 'taylor': 32305, 'nears': 22201, 'us': 34602, 'kr': 18588, 'rm16': 27853, '93': 1491, 'rm42': 27856, 'kelik': 18221, 'mekoh': 20755, 'balik': 3834, 'hari': 15153, 'desantis': 9589, 'statewide': 30915, 'grower': 14748, 'rotting': 28026, 'vine': 35060, 'lime': 19302, 'deactivated': 9147, 'canvas': 5933, '18x24cm': 360, 'sickboy': 29666, 'sickonthewall': 29677, 'disposal': 10151, 'bomb': 4910, 'stencil': 31089, 'srencilart': 30757, 'popart': 25180, 'streetart': 31389, 'planner': 24909, 'stabbings': 30783, '19th': 419, 'dial': 9780, 'referral': 26956, 'flexible': 12934, 'reusuable': 27621, 'charlie': 6486, 'baker': 3815, 'adam': 1855, 'jonas': 17867, 'tsla': 33778, 'phrase': 24729, 'competitive': 7440, 'ev': 11803, 'tesla': 32542, 'edge': 11029, 'electrification': 11183, '196': 382, 'reliance': 27121, 'ratnadeep': 26630, 'hyd': 16218, 'unlawfully': 34373, 'q4': 26168, 'delinquency': 9407, 'lagging': 18741, 'cashless': 6132, 'markofthebeast': 20353, 'bout': 5072, 'itis': 17520, 'noposguau': 22677, 'quatantineandchill': 26296, 'lovequotes': 19729, 'pierre': 24780, 'andurand': 2714, 'treated': 33562, 'reverence': 27639, 'amd': 2562, 'deserves': 9606, 'msps': 21654, 'technews': 32381, 'intervening': 17235, 'rerouted': 27334, 'cptpp': 8381, 'packer': 23877, 'profitable': 25738, 'irishman': 17389, 'happystpatricksday': 15124, 'guiness': 14827, 'corned': 7975, 'tradition': 33433, 'postoffice': 25280, 'forth': 13278, 'sealing': 28891, 'envelope': 11553, 'casting': 6147, 'ballot': 3842, 'nhpolitics': 22435, 'healey': 15311, 'debilitating': 9191, 'mome': 21364, 'menace': 20795, 'opportune': 23464, 'belly': 4295, 'quo': 26374, 'vadis': 34733, 'dennis': 9498, 'thompson': 32872, 'katsinawa': 18131, 'daura': 9073, 'unawares': 34126, 'noone': 22665, 'strangetimes': 31361, 'redballs': 26887, 'tyrone': 33966, 'stoking': 31240, 'sugary': 31615, 'route': 28044, 'eager': 10844, 'overuse': 23795, 'callous': 5801, 'taxing': 32300, 'imposing': 16626, 'excise': 11940, 'merry': 20864, 'hatred': 15217, 'emulating': 11366, 'trellis': 33568, 'ghee': 14083, 'clarifying': 6894, 'jerk': 17721, 'disregard': 10158, 'insure': 17134, 'milage': 21032, 'knowthat': 18516, 'finlit': 12756, 'thankyousomuch': 32635, 'firstresponders': 12799, 'disappointment': 9996, 'aest': 2031, '423': 941, '322': 786, '237': 595, '232': 585, 'trumpliedpeopledied': 33709, 'poster': 25269, 'fkthebs': 12858, 'trumppressconference': 33726, 'tendergreen': 32487, 'zipsak': 36794, 'spreadthelovenotthevirus': 30689, 'maskup': 20438, 'russianpresident': 28177, 'gb': 13878, 'cashpoint': 6136, 'escalator': 11661, 'rail': 26475, 'sued': 31598, 'wando': 35360, 'evans': 11823, 'suing': 31624, 'notify': 22789, 'trace': 33398, 'keepitreal': 18203, 'helpyourneighbour': 15491, '12weeks': 234, 'dogood': 10345, 'suspicion': 31928, 'nylockdown': 22987, 'ua': 33978, 'driveway': 10636, 'utilized': 34693, 'friendship': 13496, 'plowing': 24997, 'unimaginable': 34311, 'dofe': 10338, 'courage': 8287, 'blueprint': 4804, 'dwindling': 10812, 'day18oflockdown': 9109, 'scotland': 28798, 'howard': 16035, 'bombarded': 4912, 'onetime': 23333, 'bpd': 5116, 'solve': 30316, '3dprinted': 870, 'drill': 10621, 'attachment': 3398, 'spool': 30640, 'researching': 27350, 'oilprices': 23229, 'mnuchin': 21256, 'treasury': 33560, 'basemetals': 3990, 'highschool': 15612, 'inability': 16671, 'envision': 11563, '925': 1486, '957': 1515, '8608': 1415, 'reportfraud': 27280, 'permitted': 24525, 'venturing': 34921, 'socialquarantine': 30237, 'shaking': 29278, 'stretching': 31410, 'chem': 6574, 'affable': 2041, '96': 1517, 'predisposed': 25453, 'gradschool': 14517, 'graduation': 14522, 'ravaged': 26636, 'prospected': 25870, 'strictly': 31415, 'revolve': 27674, 'oneocean': 23329, 'rts': 28089, 'mickey': 20962, 'mouse': 21582, 'outta': 23700, 'titled': 33068, 'workfromhomelife': 36231, 'sanity': 28473, 'pemex': 24404, 'highway': 15615, 'bissonet': 4622, 'unleaded': 34374, 'apologise': 2921, 'relieving': 27132, 'pda': 24336, 'enters': 11526, 'cashing': 6129, 'missile': 21181, 'waning': 35361, 'saavy': 28229, 'foreignpolicy': 13219, 'fpyc': 13345, 'decimate': 9228, 'caramilk': 5982, 'separating': 29148, '4am': 1006, 'freek': 13425, 'thezi': 32798, 'mabuza': 19906, 'halo': 14989, 'aviation': 3586, '4x': 1033, 'medicalcannabis': 20683, 'feast': 12474, 'restore': 27478, 'hydropower': 16229, 'select': 29011, 'unlock': 34386, 'cooped': 7919, 'unbelievable': 34129, 'dismayed': 10110, 'glance': 14190, 'lowrate': 19750, 'buyersmarket': 5663, 'intrestrate': 17261, 'realatate': 26706, 'cronavirous': 8575, 'firsttimehomebuyer': 12801, 'winz': 36061, 'liveable': 19404, 'eastermonday': 10896, 'radiodust': 26446, 'radio': 26445, 'ballad': 3836, 'written': 36358, 'audition': 3461, 'parchment': 24113, 'houseplant': 16010, 'designate': 9611, 'eradicating': 11625, 'applepay': 2963, 'googlepay': 14409, 'learns': 19005, 'occupational': 23098, 'origin': 23554, 'antonio': 2850, 'somewhat': 30345, 'breathed': 5227, 'frontlineemployees': 13528, 'ug': 34016, 'entebbe': 11519, 'kampala': 18066, 'lyft': 19871, 'reimbursement': 27059, 'micro': 20963, 'mdma': 20610, 'decried': 9262, 'posho': 25233, 'salt': 28377, 'enyangyi': 11568, 'conspicuously': 7677, 'triage': 33586, 'forum': 13299, 'plenary': 24980, 'diarrhea': 9791, 'disrupting': 10164, 'accounted': 1747, 'policymakers': 25115, 'cynthia': 8876, 'fisher': 12811, 'pricetransparency': 25603, 'leavin': 19020, 'faceshield': 12186, 'ziplock': 36792, 'cheshire': 6601, 'punishable': 26073, 'persistence': 24545, 'unknowable': 34366, 'placing': 24892, 'keypad': 18292, 'inly': 16997, 'tobacco': 33104, 'smoker': 30080, 'mainecdc': 20051, 'shark': 29334, 'handsanitiser': 15053, 'nothappyjan': 22775, 'reel': 26945, 'cooperative': 7924, 'puppy': 26084, 'bathe': 4023, 'tourist': 33342, 'membership': 20779, 'rishi': 27812, 'sunak': 31665, 'decency': 9217, 'hibiscus': 15582, 'lone': 19613, 'beneficial': 4313, 'cryptocurrency': 8648, 'sandwell': 28439, '9news': 1546, 'woolworth': 36203, 'whitehorse': 35888, 'depletion': 9536, 'circulareconomy': 6815, 'ruthless': 28184, 'conveniently': 7862, 'nickel': 22467, 'sulphate': 31639, 'q1': 26164, 'tolerated': 33199, 'uob': 34509, 'meantime': 20639, 'stayathomechallenge': 30944, 'footy': 13183, 'disappearing': 9991, 'pending': 24417, 'abates': 1592, 'listener': 19366, 'tova': 33351, 'jessica': 17733, 'mutch': 21814, 'jenna': 17710, 'lynch': 19882, 'ncci': 22154, 'shell': 29390, 'forgot': 13246, 'quyen': 26382, 'truong': 33745, 'weighs': 35639, 'stroock': 31445, 'fold': 13045, 'kes3': 18273, 'kes38': 18274, 'potter': 25300, 'apothecary': 2928, 'homebargains': 15803, 'ukgovernment': 34052, 'dejav': 9367, 'ditto': 10233, 'utensil': 34683, 'eternal': 11747, 'begged': 4229, 'theyre': 32796, 'sue': 31597, 'racial': 26425, 'wewillgetthroughthis': 35754, 'ashtown': 3235, 'phoenix': 24700, 'ate': 3354, '14hrs': 271, 'expressed': 12080, 'arriving': 3154, 'spaghetti': 30467, 'spencer': 30558, 'mombasa': 21363, 'xd': 36448, 'magically': 19993, 'stabilized': 30790, 'randburg': 26559, '116': 193, 'coronoavirus': 8139, 'behavioral': 4243, 'harvey': 15193, 'westbank': 35713, 'goody': 14402, 'pec': 24361, 'pairing': 23921, 'lockdownextension': 19524, 'lyn88': 19881, 'naming': 21987, 'obscene': 23055, 'spglobal': 30567, 'platts': 24933, 'argo': 3083, 'oversupplied': 23788, 'sophie': 30375, 'adobe': 1953, 'clickandcollect': 6982, 'phyigital': 24732, 'outweigh': 23702, 'absurdity': 1673, 'strategist': 31370, 'ellen': 11225, 'zentner': 36757, 'statist': 30922, 'moisturize': 21346, 'irritation': 17418, 'dryness': 10680, 'pvvnl': 26155, 'transition': 33484, 'coloradocovid19': 7256, 'licked': 19230, 'beaut': 4150, 'lotion': 19691, 'retailalert': 27515, 'onward': 23405, 'workingforyou': 36235, 'uktruckdrivers': 34073, 'truckinaround': 33667, 'truckerslife': 33665, 'rdc': 26665, 'avonmouth': 3604, 'tally': 32197, '288': 676, '117': 194, 'hindsight': 15648, 'unintended': 34318, 'ebrahim': 10949, 'patel': 24226, 'stern': 31123, '21daylockdown': 550, 'spoken': 30622, '5am': 1132, 'donut': 10451, 'jockopodcast': 17820, 'jockowillink': 17821, 'futureleaders': 13695, 'dadlife': 8900, 'clash': 6898, 'idiocy': 16373, 'guise': 14829, 'proclaim': 25704, 'benzykalkoniumchloride': 4336, 'hcin': 15282, 'spanning': 30481, 'hospitalisation': 15952, 'irl': 17390, 'breeding': 5234, 'condemn': 7534, 'considerably': 7658, 'stockpilinguk': 31225, 'disbelief': 10009, 'creep': 8492, 'reshoring': 27372, 'recognition': 26834, 'offshoring': 23180, 'makechinapay': 20088, 'reshoringusa': 27373, 'littlecaesers': 19391, 'unethical': 34258, 'douchebags': 10501, 'dickmove': 9803, 'dontbeselfish': 10423, 'lsfo': 19769, 'parallel': 24093, 'angsty': 2744, 'insanity': 17034, 'echoing': 10960, 'mkg': 21225, 'shortfall': 29569, 'translate': 33487, 'deficit': 9323, 'badly': 3767, 'stellar': 31085, 'greatdepression': 14602, 'economicsinthenews': 11002, 'passionforeconomics': 24198, 'polite': 25120, 'amarinder': 2526, 'malout': 20143, 'mukatsar': 21696, 'sahib': 28315, 'bitch': 4624, 'cltnews': 7058, 'ncnews': 22160, 'wccb': 35511, 'egede': 11100, 'productively': 25721, 'audience': 3457, 'catherine': 6181, 'amato': 2529, 'wgbh': 35768, 'wht': 35936, 'navarro': 22108, 'repurposed': 27315, 'honeywell': 15878, 'gaynor': 13869, 'reid': 27052, 'overstate': 23784, 'gin': 14139, 'msnbcanswers': 21650, 'shld': 29471, 'fr': 13346, 'grape': 14560, 'instantaneously': 17099, 'adjust': 1916, 'lookoutforothers': 19644, 'neilson': 22259, '202': 490, '224': 568, '3121': 774, 'visual': 35133, 'estimating': 11731, 'alexis': 2356, 'akira': 2282, 'toda': 33111, 'idle': 16381, 'unaffected': 34110, 'ptnyf': 26005, '059': 80, 'radr': 26450, 'parcelpal': 24110, 'oxvent': 23832, 'stabilization': 30788, 'businesstransformation': 5610, 'mercari': 20833, 'declutter': 9246, 'unpacking': 34404, 'detectable': 9671, 'elder': 11157, 'errand': 11647, 'presidency': 25528, 'fre': 13397, 'drastically': 10585, 'ntv': 22891, 'journal': 17888, 'firstrespondersfirst': 12800, '50k': 1059, 'weakens': 35522, 'rinse': 27785, '0711590279': 89, 'ruto': 28186, 'mutahi': 21810, 'kagwe': 18030, 'kibe': 18333, 'kibaki': 18331, 'museveni': 21782, 'commute': 7393, 'elementary': 11200, 'lemon': 19087, 'remedy': 27163, 'callon': 5800, 'cpe': 8366, '3bln': 865, 'timed': 33011, 'acquisition': 1808, 'explorer': 12061, 'edc': 11024, 'pocketdump': 25060, 'ar15': 3037, 'ar15safespace': 3038, 'pewpewpew': 24634, 'gunsofinstagram': 14858, 'p365': 23852, 'p365sas': 23853, 'azliving': 3671, 'vairus': 34741, 'joes': 17832, 'peppermint': 24472, 'sarah': 28520, 'westall': 35710, 'pregnant': 25468, 'vaccination': 34726, 'clubhousegolfstore': 7061, 'clubhousegolf': 7060, 'kajang': 18040, 'shafwan': 29264, 'zaidon': 36715, 'introduces': 17265, 'profesionales': 25727, 'salud': 28381, 'hasta': 15204, 'empleados': 11337, 'camioneros': 5836, 'traen': 33437, 'suministros': 31648, 'gracias': 14510, 'appdome': 2939, 'tovar': 33352, 'appsec': 3008, 'mobileappsec': 21274, 'boycottrumppressconferences': 5104, 'stockup': 31230, 'remembers': 27168, 'resetyourvalues': 27367, 'torbj': 33264, 'becker': 4171, '9yes': 1554, 'carefree': 6016, 'mam': 20149, 'alzheimer': 2518, 'advise': 2008, 'nbc10responds': 22135, 'viewer': 35026, 'coworker': 8352, 'ridiculously': 27750, 'thesis': 32771, 'underground': 34189, 'land': 18800, 'commonplace': 7371, 'distiller': 10193, 'guild': 14819, 'nigga': 22489, 'takin': 32176, 'strapup': 31365, 'purgin': 26104, 'cannatech': 5906, 'cannatechtoday': 5907, 'cannabisbusiness': 5898, 'cannabisscience': 5905, 'wuhancoronavirus': 36395, 'goverment': 14466, 'unsurprisingly': 34472, 'kolkata': 18544, 'pricesindia': 25601, 'octopus': 23118, 'sandbox': 28427, 'poco': 25063, 'dreamstime': 10607, 'epochtimes': 11596, 'mailbox': 20039, 'shouldbeillegal': 29581, 'rogersripoff': 27944, 'chemistry': 6580, 'swedish': 31987, 'approvall': 2999, 'dubai': 10707, 'progression': 25766, 's7c4de5xnb': 28220, 'laura': 18919, 'pressuring': 25542, 'storeroom': 31328, 'ctv': 8682, 'phony': 24712, 'phil': 24676, 'weiser': 35655, 'alwayswatchingoutforyou': 2515, 'context': 7801, 'unleashed': 34376, 'oval': 23707, 'til': 32993, 'bbcnews': 4076, 'avoidingtheshops': 3599, 'pluckingupcourage': 25004, 'onlyforessentials': 23382, 'eoengland': 11574, 'deny': 9512, 'ffp3': 12590, 'ptocedure': 26007, 'apron': 3023, 'londonlockdown': 19611, 'lvmh': 19862, 'swapping': 31970, 'luxuryfashion': 19855, 'brandcsr': 5156, 'gartnermktg': 13819, 'reserving': 27364, 'swim': 32010, 'drowning': 10655, 'whore': 35927, 'pfgc': 24638, 'ncmi': 22159, 'plnt': 24993, 'macy': 19936, 'herald': 15519, 'solitary': 30309, 'bedlam': 4188, 'hustle': 16204, 'samaritan': 28394, 'gooders': 14376, 'huckster': 16092, 'icliniq100hrs': 16331, 'celebrateyou': 6294, 'onlinedoctor': 23356, 'solihull': 30308, 'breakfast': 5210, 'bureaucracy': 5540, 'doling': 10364, 'arrangement': 3140, 'enormously': 11488, 'repacking': 27235, 'jeffrey': 17699, 'epstein': 11600, 'alleged': 2405, 'pimp': 24811, 'ghislaine': 14087, 'maxwell': 20535, 'dakota': 8935, 'attorneygeneral': 3426, 'qeretail': 26186, 'watford': 35487, 'fridayfeeling': 13481, 'shoppingday': 29540, 'tcbasia': 32318, 'rushing': 28170, 'soniashenoy': 30357, 'batra': 4036, 'anujsinghal': 2854, 'purchasin': 26092, 'foia': 13042, 'waiver': 35293, 'fritz': 13513, 'nix': 22540, 'garmentfactories': 13814, 'wassner': 35450, 'cue': 8698, 'outlandish': 23662, 'helper': 15454, 'nationalphysiciansweek': 22068, 'consumernews': 7735, 'centralbank': 6327, 'insurancecompanies': 17131, 'phishingscams': 24697, 'irishconsumers': 17388, 'katt': 18132, 'chef': 6561, 'shes': 29414, 'lovemykids': 19722, 'treating': 33563, 'tpmelection': 33382, 'safdar': 28273, '78': 1329, 'lysolwipes': 19891, 'voluntarily': 35191, 'supportsmallbusinesses': 31823, 'mcclintock': 20576, 'evaluation': 11817, 'nke': 22555, 'azo': 3672, 'lulu': 19805, 'tgt': 32577, 'tsco': 33773, 'resiliency': 27390, 'arguing': 3090, 'shuttering': 29649, 'interrupt': 17223, 'stared': 30871, 'deteriorated': 9681, 'suburb': 31563, 'stayholmesglen': 30973, 'kew': 18286, 'mooroolbarking': 21461, 'lynn': 19885, 'hagan': 14923, 'uncommon': 34151, 'uncommonsense': 34152, 'attestation': 3417, 'carrefourmarket': 6082, 'fg': 12594, 'nysc': 22994, 'wont': 36182, 'carona': 6067, 'caronavirus': 6068, 'maximize': 20527, 'cco': 6244, 'shea': 29360, 'worstofpeople': 36304, 'mabrouq': 19904, 'maldives': 20128, '200k': 471, 'goon': 14413, 'minded': 21084, 'wea': 35517, 'sore': 30377, 'sanitizing': 28472, 'promised': 25798, 'runningfortheboarder': 28150, 'headlong': 15303, 'curtailment': 8776, 'corrected': 8166, 'dec': 9206, '2016': 483, 'pace': 23862, 'goldman': 14349, 'hampton': 15016, 'hudson': 16097, 'tripling': 33624, 'scrolling': 28847, 'profitingfrompandemics': 25747, 'sanjiv': 28479, 'ghmc': 14089, 'rythu': 28209, 'bazar': 4066, 'sai': 28319, 'baba': 3692, 'sharadanagar': 29316, 'unstable': 34463, 'chaldean': 6412, 'mensah': 20806, 'macewan': 19915, 'traveling': 33536, '10times': 174, 'reflection': 26973, 'vh1': 34974, '2030': 505, 'incl': 16709, 'nietzsche': 22481, 'pathos': 24240, 'der': 9568, 'distanz': 10190, 'menu': 20823, 'assclowns': 3289, 'lafayette': 18736, 'thenextgiantleap': 32725, 'presume': 25547, 'spreader': 30680, 'criticism': 8552, 'baked': 3813, 'throttle': 32920, 'gaseous': 13826, 'emission': 11305, 'grandfather': 14538, 'sneaking': 30119, 'oldpeoplearestubbornashell': 23267, 'offended': 23152, 'sidestepping': 29690, 'elekworld': 11195, 'elekworldjulia': 11196, 'iphonerepair': 17357, 'wk': 36129, 'revives': 27661, 'vodafoneuk': 35174, 'sympatheticcapitalism': 32069, 'custexp': 8791, 'hint': 15657, 'stick': 31146, 'b4': 3688, 'wypipo': 36432, 'santa': 28488, 'someplace': 30335, 'mcag': 20570, 'muletown': 21706, 'latte': 18898, 'latteart': 18899, 'enjoying': 11476, 'buylocal': 5671, 'citi': 6826, 'yougov': 36632, 'occurred': 23102, 'hairworld': 14953, 'paulmitchell': 24271, 'prosus': 25880, 'invested': 17298, 'swiggy': 32007, 'byju': 5695, 'helpdeskforcoronavirus': 15450, 'wutang': 36406, 'grift': 14658, 'underappreciated': 34181, 'underacknowledge': 34179, 'howtokeeppeoplehome': 16051, 'rideshare': 27745, 'cratering': 8431, '14th': 274, 'golden': 14342, 'leisurely': 19080, 'strolling': 31438, 'smartphones': 30043, 'preciousmetals': 25431, 'forbes': 13190, 'trump2020landslide': 33684, 'democratsaredestroyingamerica': 9463, 'violated': 35072, 'disseminating': 10170, 'theshopritegroup': 32770, 'r150': 26391, 'turnover': 33876, 'regenesysbusinesschool': 27014, 'monarchy': 21375, 'ape': 2889, 'ruled': 28129, 'planetoftheapes': 24905, 'judith': 17929, 'schwartz': 28769, 'consumerpr': 7736, 'crisispr': 8540, 'prtips': 25960, '12yrs': 236, 'born': 5005, '2002': 459, 'qe': 26184, 'relaunched': 27097, 'resumption': 27508, 'bernanke': 4357, 'yellen': 36555, 'medicate': 20699, 'cocktail': 7132, 'cashew': 6125, 'dhs': 9765, 'leaked': 18987, 'coloradan': 7252, 'ecological': 10971, 'obesity': 23036, 'harassed': 15132, 'quarantinechronicles': 26252, 'crazypeople': 8445, 'handrail': 15051, 'justified': 17981, 'sillah': 29742, 'detox': 9691, 'phoneaddiction': 24705, 'digitaldetox': 9869, 'bame': 3854, 'krg': 18598, 'reform': 26982, 'longterm': 19628, 'baghdad': 3784, 'adverse': 1994, 'steepen': 31074, 'grocerydelivery': 14696, 'retailstore': 27549, 'astonishing': 3334, 'kalady': 18045, 'coop': 7918, 'yup': 36698, 'marketingconsultant': 20325, 'internetmarketing': 17212, 'mondaywisdom': 21390, 'newweek': 22392, 'civility': 6847, 'limbo': 19301, 'equivalent': 11620, 'slayer': 29950, 'flickr': 12938, 'prosecution': 25868, 'prosecuted': 25866, 'underpaid': 34199, 'thursdaymotivation': 32950, 'thursdaymorning': 32949, 'secondwave': 28940, 'closeness': 7026, 'inaction': 16674, 'wander': 35358, 'nick': 22465, 'carroll': 6088, 'navigator': 22116, 'barrier': 3968, 'certificate': 6358, 'chant': 6454, 'diff': 9836, 'outsourced': 23695, 'insourced': 17060, '10x': 175, 'poo': 25157, 'layman': 18953, 'tact': 32127, 'poll': 25131, 'pers': 24539, 'sorta': 30387, 'fascinating': 12356, 'biscuit': 4618, 'stayhomebutnotsilent': 30980, 'convinced': 7886, 'hunch': 16156, 'rolling': 27966, 'defeating': 9295, 'whipps': 35870, 'unaware': 34125, 'hackney': 14912, 'conservation': 7651, '1609': 304, 'username': 34645, 'nnesico': 22570, 'testified': 32549, 'reframe': 26985, 'obsessing': 23067, 'chaotic': 6458, 'wespeechies': 35708, 'curtesy': 8778, 'affective': 2047, '0113': 22, '3781877': 847, 'atisha': 3373, 'lamrim': 18788, 'je': 17680, 'tsongkhapa': 33782, 'progress': 25763, 'enlightenment': 11481, 'carefully': 6018, 'kerala': 18259, 'pssresources': 25980, 'unsupported': 34469, 'repressive': 27300, 'orillia': 23561, 'cancelling': 5876, 'marketeers': 20318, 'jp': 17901, 'pmi': 25037, 'gloomy': 14243, 'tray': 33550, 'recognised': 26832, 'inexcusable': 16870, 'flurry': 13002, 'yb': 36529, 'agenparl': 2131, 'iorestoacasa': 17343, 'redesign': 26901, 'rat': 26612, 'mgvcl': 20929, 'tensional': 32500, '41171': 930, 'hookup': 15902, 'socialdistancingpickuplines': 30207, 'overreaction': 23769, 'mundogonemado': 21751, 'suitenoticias': 31631, 'marijuananews': 20299, 'marijuanaindustry': 20298, 'carinsurance': 6039, 'newcastle': 22338, 'dawkins': 9089, 'overturn': 23793, 'underrated': 34205, 'asshats': 3301, 'kopn': 18558, 'spawned': 30500, 'vr': 35227, 'jacob': 17585, 'driebergen': 10617, '1436': 261, '1509': 280, '1502': 279, 'motion': 21550, 'naturalhair': 22084, 'camouflaging': 5840, 'wolverine': 36162, 'brow': 5380, 'darnyourona': 9026, 'clinician': 7005, 'hipaa': 15661, 'sacdamediaadvisory': 28243, 'primary': 25613, 'giveblood': 14165, 'depressed': 9553, 'fatalistic': 12386, 'canadacovid19': 5858, 'grapple': 14567, 'bull': 5497, 'transitioned': 33485, 'bear': 4122, 'financialplanning': 12717, 'mustard': 21803, 'shortly': 29571, 'socal': 30186, 'nbcla': 22137, 'littleproudmp': 19397, 'thei': 32701, 'containing': 7773, 'preventative': 25565, '08162453243': 116, 'schael': 28723, 'cornteen': 7993, 'geez': 13907, 'tumble': 33833, '77': 1324, '7038': 1276, '97': 1521, 'stole': 31241, 'measles': 20642, 'pox': 25349, 'apollo': 2919, 'tuber': 33799, 'spice': 30568, 'bush': 5577, 'farmland': 12339, 'softened': 30267, 'fundamentally': 13647, 'evan': 11819, 'coronaout': 8075, 'pointer': 25082, 'edeka': 11026, 'appropriately': 2996, 'inoculated': 17019, 'deepening': 9280, 'medtech': 20716, 'meddevice': 20665, 'vary': 34832, 'gandhi': 13786, 'doggy': 10342, 'schoolteacher': 28762, 'sb': 28644, 'granddaughter': 14536, 'intolerance': 17253, 'transference': 33470, 'msg': 21643, 'lieu': 19240, 'reeling': 26946, 'adamneumann': 1859, 'kibbutz': 18332, 'tucker': 33802, 'carlson': 6047, 'threw': 32905, 'phd': 24672, 'poloz': 25141, 'determining': 9687, 'nab': 21921, 'cockburn': 7130, 'agribusiness': 2171, 'affirmative': 2054, '206': 514, 'teatowel': 32369, 'remark': 27155, 'pillaging': 24800, 'discounting': 10040, 'lure': 19830, 'gmv': 14279, 'cust': 8789, 'aftercare': 2090, 'complicated': 7467, 'nausea': 22102, 'inducing': 16834, 'layout': 18955, 'mgmnt': 20926, '340million': 802, 'attacking': 3401, '006': 6, 'print': 25633, 'handsanitizing': 15058, 'turnip': 33874, 'animalcrossingnewhorizons': 2753, 'closebordersnow': 7023, 'sefton': 28995, 'helpline': 15465, 'crunchy': 8634, 'smh': 30063, 'limitedsupplies': 19308, 'itchy': 17514, 'irritated': 17416, 'fulfillment': 13622, 'autonomously': 3549, 'powered': 25333, 'automated': 3537, 'hyper': 16256, 'localization': 19491, 'algos': 2367, 'int': 17139, 'unreliable': 34435, 'myer': 21846, 'drained': 10574, 'plowed': 24996, 'highstreet': 15613, 'sbinsights': 28649, 'avb': 3569, 'harnessing': 15168, 'knowns': 18515, 'dirt': 9971, 'detected': 9672, 'seoul': 29142, 'elevated': 11203, 'granter': 14553, 'lassie': 18852, 'manifest': 20207, 'reprogramming': 27306, 'disney': 10116, 'yournerdsidepodcast': 36651, 'yournerdside': 36650, 'kblx1029': 18162, 'spreaker': 30691, 'tunein': 33845, 'applepodcast': 2964, 'tmr': 33090, 'eastside': 10905, 'supervised': 31777, 'presence': 25513, 'brazil': 5194, 'globalized': 14233, 'inhumanely': 16973, 'caging': 5741, 'unsanitarily': 34443, 'butchering': 5629, 'blind': 4729, 'westside': 35739, 'itsnottheendoftheworld': 17532, 'fingernail': 12744, 'indianeconomy': 16792, 'unplanned': 34408, 'avant': 3567, 'garde': 13803, 'fabliss': 12162, 'sheila': 29380, 'sendinglove': 29101, 'samantha': 28392, 'zara': 36729, 'leon': 19106, 'fab': 12158, 'closertogetherstayingapart': 7028, 'writenow': 36350, 'grossery': 14729, 'participation': 24167, 'dmart': 10290, 'specify': 30532, 'lagar': 18739, 'extand': 12086, 'spreat': 30692, 'erbil': 11628, 'twitterkurds': 33934, 'kdka': 18171, 'eagle': 10847, 'occupancy': 23095, 'wolf': 36157, 'itwire': 17548, 'datagovernance': 9045, 'cio': 6807, 'cdo': 6267, 'overorunder': 23760, 'subsides': 31544, 'stayingpositive': 31016, 'fairly': 12234, 'pullback': 26049, 'wrought': 36364, 'daddy': 8897, 'realty': 26753, 'mitu': 21214, 'mathur': 20496, 'gpm': 14498, 'architect': 3057, 'lockdownextended': 19523, 'chevron': 6608, 'exxon': 12134, 'mobil': 21269, 'occidental': 23093, 'mb': 20554, 'extent': 12097, 'pantyhose': 24057, 'crossed': 8589, 'zz': 36849, 'iwillstayathome': 17559, 'vanessahudgens': 34789, 'louisville': 19707, 'pod': 25064, 'bathtub': 4029, 'mommy': 21372, 'recessionary': 26820, 'turbulent': 33857, 'marketimpacts': 20321, 'riveting': 27844, 'wam': 35350, 'anticipates': 2827, '03454': 66, '05': 74, '06': 81, 'allocates': 2428, 'fireman': 12779, 'thrilled': 32909, 'aerosolized': 2030, 'jama': 17615, 'fac': 12170, 'sideeffectsofquarantinelife': 29684, 'curbsidetakeout': 8750, 'ampdeliveryoptions': 2627, 's101northeatery': 28216, 'lahore': 18753, 'vault': 34842, 'suspends': 31925, 'seah': 28886, 'kian': 18330, 'peng': 24421, 'lloy': 19449, 'rb': 26652, 'barc': 3927, 'hsba': 16070, 'lloyd': 19450, 'barclays': 3929, 'fundraise': 13650, 'overwhelm': 23803, 'madison': 19962, 'smelling': 30056, 'crimestoppers': 8521, 'ink3gvurqk': 16991, 'day6': 9115, 'librarian': 19217, 'waitress': 35288, 'fortnite': 13291, 'minecraft': 21095, 'lgbtq': 19191, 'lesbian': 19113, 'catholic': 6182, 'transgender': 33480, 'diabetes': 9770, 'quickie': 26343, '3oz': 890, 'frankly': 13379, 'obnormal': 23053, 'smiled': 30066, 'supermarketapocalypse': 31740, 'dine': 9925, 'injected': 16984, 'substance': 31554, 'thc': 32653, 'nicotine': 22473, 'feta': 12568, 'mozzarella': 21607, 'khaki': 18310, 'wardi': 35384, 'guiding': 14818, 'unecessary': 34246, 'tall': 32193, 'nagpurpolice': 21942, 'colombian': 7245, 'colombia': 7244, 'gathered': 13844, 'havent': 15237, 'cardboard': 5994, 'healthcomms': 15329, 'prpros': 25959, '15gb': 295, 'africaautoinsights': 2078, 'deffo': 9319, 'ppeshortages': 25358, 'distancer': 10184, 'sidewalk': 29691, 'coronapersona': 8082, 'sixfeetapart': 29843, 'buyingagent': 5668, 'propertyfinder': 25831, 'propertysearch': 25837, 'wakemed': 35299, 'requesting': 27324, 'correlate': 8171, 'vpn': 35225, 'surprising': 31876, 'inland': 16996, 'empire': 11333, 'stayhomesavelifes': 30994, 'northwales': 22728, 'sccp': 28714, 'implemented': 16600, 'ncovid': 22165, 'servey': 29181, 'mu': 21673, 'carded': 5995, 'chap': 6459, 'knee': 18491, 'rummaging': 28138, 'vibe': 34980, 'wil': 35977, 'ticking': 32964, 'stayprivate': 31022, 'orlando': 23563, 'whengovernorsfail': 35826, 'aweful': 3627, 'weirdest': 35648, 'unpredictable': 34416, 'financialy': 12725, 'cellphone': 6306, 'allan': 2399, 'gr': 14501, 'tent': 32501, 'fifteenth': 12625, 'impressive': 16640, 'yogi': 36605, 'adityanath': 1911, 'khadi': 18308, 'upgovernment': 34526, 'permission': 24523, 'calagione': 5758, 'unilever': 34309, 'rodahidup': 27936, 'benjamin': 4328, 'soh': 30276, 'ofcourse': 23147, 'drvd': 10674, 'waitr': 35287, 'aprn': 3022, 'whtr': 35937, 'cgc': 6386, 'pennystocks': 24435, 'trampoline': 33457, 'schoolclosuresuk': 28753, 'ceased': 6273, 'boat': 4842, 'alot': 2464, 'eerily': 11076, 'bio': 4566, 'videoftheday': 35010, 'picoftheday': 24764, 'pasadena': 24184, 'miserable': 21159, 'clare': 6888, 'connors': 7630, 'levins': 19168, '587': 1121, '4272': 943, 'scan': 28683, 'telier': 32454, 'stopscango': 31293, 'helpneedy': 15469, 'limitbuying': 19306, '2020rationing': 496, 'beki': 4262, 'domestica': 10379, 'malta': 20145, 'homefurnishings': 15825, 'bespokefurniture': 4384, 'bespoke': 4383, 'freedelivery': 13416, 'wrestling': 36346, 'crzy': 8658, 'unproven': 34422, 'ven': 34893, 'unsaleable': 34441, 'admin': 1927, 'secondly': 28939, 'headquarters': 15306, 'obnoxious': 23054, 'severely': 29220, 'unionize': 34322, 'supreme': 31837, 'optical': 23481, 'ableism': 1635, 'visibly': 35120, 'stopablelism': 31260, 'jamaica': 17616, 'rm': 27852, 'rm30': 27855, 'hallelujah': 14980, 'corkscrew': 7969, 'obsolete': 23072, 'meansofproduction': 20637, 'retreat': 27589, 'mode': 21294, 'chow': 6740, 'collated': 7221, 'uptodate': 34569, 'comodities': 7398, 'in2': 16670, 'li': 19197, 'trickle': 33596, 'chin': 6656, 'kallanish': 18051, 'withme': 36114, 'superheroes': 31728, 'hardworking': 15149, 'hailed': 14940, 'bushfires': 5581, 'axed': 3641, 'trolly': 33639, 'succumbing': 31578, 'scalper': 28666, 'justeatuk': 17977, 'establishes': 11717, 'dod': 10327, 'navy': 22119, 'cnnpolitics': 7101, 'grouping': 14742, 'cf97': 6369, 'cffc': 6375, 'yep': 36569, 'mulder': 21704, 'krychek': 18618, 'gunman': 14852, 'scully': 28860, 'clearance': 6957, 'skinner': 29892, 'workshop': 36251, 'kikkerland': 18363, 'jeeturaj': 17692, 'mumbaikiawaz': 21742, '22k': 579, 'maharash': 20013, 'nothelpful': 22776, 'bellcanada': 4291, 'shpock': 29605, 'fewest': 12580, 'seattle': 28919, 'interacting': 17170, 'ueno': 34008, 'asakusa': 3213, 'shinjuku': 29440, 'innocence': 17005, 'hydrogen': 16226, 'peroxide': 24529, 'hacking': 14911, 'wisdomwednesday': 36083, 'watched': 35470, 'perpetrator': 24532, 'ethnicity': 11762, 'embarrassed': 11261, 'secretly': 28944, 'ccsa': 6249, '650': 1215, 'enraged': 11498, 'dipa': 9947, 'aguete': 2183, 'murray': 21777, 'kessler': 18276, 'cramer': 8408, 'perrigo': 24536, 'credittrends': 8487, 'perish': 24509, 'selfdiscipline': 29020, 'nourishment': 22822, 'criterion': 8544, 'sucked': 31585, 'severest': 29221, '1930s': 371, 'kristin': 18608, 'grand': 14533, 'launching': 18914, '25k': 636, 'vandal': 34784, 'vir': 35082, 'eseva': 11673, '14713': 265, '15days': 294, 'brat': 5180, 'mob983682234': 21265, 'empowering': 11348, 'likelihood': 19289, 'feral': 12549, 'peop': 24446, 'focussed': 13036, 'farmasi': 12325, 'luxurious': 19850, 'yamal': 36508, 'astrocyte': 3339, 'wb': 35504, 'smooth': 30084, 'amitav': 2605, 'roy': 28055, 'kungflu': 18645, 'sacked': 28247, 'behaved': 4239, 'accordingly': 1741, 'hubby': 16088, 'tshirt': 33775, 'followme': 13060, 'newtrend': 22390, 'welch': 35659, 'bell': 4289, 'supportdailywagers': 31802, 'thanksitcreckitthuldaburgodrej': 32612, 'scamwarning': 28680, 'asd': 3218, 'acsc': 1816, 'themed': 32717, 'scamwatch': 28682, 'photography': 24718, 'maharashtra': 20015, 'attic': 3419, 'handsanitisers': 15054, 'conscience': 7639, 'springfashion': 30703, 'evahh': 11813, 'congregation': 7610, 'cared': 6012, 'frederick': 13409, 'startagarden': 30879, 'stayhome24in48': 30976, 'switzerland': 32034, 'siew': 29700, 'defy': 9345, 'gravity': 14591, 'bouncing': 5060, 'bombard': 4911, 'impotus': 16632, 'politicizing': 25126, 'relapsing': 27086, 'decides': 9226, 'dtic': 10697, 'dodgy': 10333, 'cooling': 7913, 'zambia': 36723, 'salockdown': 28373, 'barton': 3979, 'savage': 28589, '48h': 996, 'emerged': 11281, 'fiction': 12613, 'lovenowexplorelater': 19726, 'travellater': 33538, 'glaciermt': 14183, 'joker': 17859, 'batman': 4031, 'stopbulkbuying': 31266, 'par': 24079, 'poland': 25100, 'rzeczpospolita': 28213, 'suffers': 31604, 'fibromyalgia': 12610, 'classed': 6901, 'soc': 30184, 'investigating': 17303, 'uploaded': 34540, 'hagens': 14925, 'typo': 33961, 'crazything': 8446, 'butticket': 5640, 'highlighted': 15607, 'makinde': 20106, 'upgrading': 34529, 'medica': 20679, 'alibaba': 2374, 'riseandshine': 27809, 'spanner': 30480, 'chime': 6655, 'surrogate': 31883, 'bodth': 4862, 'stein': 31082, 'gavin': 13858, 'retweeting': 27608, 'congregating': 7609, 'eustice': 11801, 'eliminate': 11211, 'chronic': 6757, 'leasing': 19012, 'arctic': 3063, 'drilling': 10623, 'precipitous': 25434, 'siege': 29695, 'aaron': 1581, 'idahoan': 16350, '208': 515, '334': 798, 'e14': 10834, 'postcruise': 25267, '98': 1528, 'telework': 32452, 'debating': 9185, '14daypostcruisecountdown': 269, 'stopcorona': 31268, 'cruiseship': 8625, 'deodorant': 9515, 'overkill': 23751, 'rundown': 28144, 'consumed': 7706, '2500': 623, 'bedroom': 4191, '1700': 326, 'sympathiser': 32070, '07708913141': 95, 'unfairly': 34265, '007': 7, 'scamming': 28676, 'aft': 2087, 'hve': 16213, 'underpaying': 34200, 'cleaningsupplies': 6940, 'netizens': 22302, 'mockery': 21290, 'melania': 20757, 'temper': 32465, 'priyanka': 25677, 'chopra': 6733, 'julianne': 17944, 'deb': 9178, 'companionship': 7406, 'whatweneed': 35807, 'careathome': 6011, 'safeathome': 28276, 'visitingangels': 35128, 'skynews': 29915, 'newsnight': 22374, 'lbc': 18962, 'fancy': 12294, 'upscale': 34553, 'maskmystery': 20427, 'blowing': 4788, 'withdrawing': 36104, 'utilize': 34692, 'acti': 1819, 'colluding': 7241, 'botched': 5037, 'additionally': 1881, 'realtime': 26751, 'nakuru': 21965, 'oldest': 23261, 'stake': 30825, 'succumb': 31576, 'superstition': 31772, 'quack': 26208, 'letsfightcoronatogether': 19138, 'coronafreeworld': 8038, 'srimspeaks': 30761, 'webpage': 35587, 'phonecall': 24706, 'clarehall': 6890, 'cyclist': 8870, 'glovo': 14253, 'eats': 10926, 'sunny': 31694, 'cycling': 8869, 'sarasota': 28523, 'manatee': 20168, 'lag': 18738, 'quid': 26348, 'supermark': 31738, 'schooling': 28757, 'fianc': 12600, 'cog': 7164, 'nativo': 22073, 'myia': 21854, 'mirror': 21151, 'lhm': 19196, 'unclean': 34147, 'synergy': 32085, 'durin': 10781, 'shoppin': 29536, 'feelin': 12523, 'thehungergames': 32700, 'carryout': 6092, 'sided': 29682, 'togetheralone': 33125, 'rotate': 28019, 'isolationlife': 17474, 'ninety': 22517, 'foodsystem': 13148, 'assuming': 3319, 'globalagenda': 14221, 'reckoned': 26828, 'incoherent': 16719, 'ecommercenews': 10979, 'asi': 3238, 'messenger': 20878, 'dumbass': 10739, 'hometasking': 15860, 'stair': 30823, 'scp': 28811, 'scpmemes': 28812, 'pubgmobile': 26012, 'pubg': 26011, 'furries': 13682, 'besave': 4374, 'dragon': 10571, 'inst': 17074, 'netto': 22305, 'rhubarb': 27704, 'custard': 8790, 'squeaking': 30744, 'freeport': 13436, '5th': 1166, 'newscentermaine': 22370, 'stoner': 31249, 'samreen': 28405, 'akdeniz': 2275, 'hoe': 15745, 'walthamstow': 35347, 'acumen': 1850, 'finest': 12740, 'antiseptic': 2843, 'instock': 17112, 'ordernow': 23516, 'highland': 15603, 'highlandlakes': 15605, 'foodpantries': 13126, 'dailytrib': 8926, 'finder': 12732, 'commandeering': 7324, 'astronomical': 3340, 'ridge': 27746, 'parkinglot': 24136, 'askusanything': 3269, '17th': 339, 'ghaziabad': 14080, 'goi': 14329, 'proportionately': 25849, 'lfk': 19184, 'maskedup': 20420, 'glovedup': 14250, 'abiding': 1625, 'maskupforothers': 20439, 'protectthevulnerable': 25902, 'needtoeat': 22229, 'dominance': 10383, 'rebounded': 26791, 'fiscal': 12805, 'tempusfx': 32477, 'forexnews': 13231, 'barrf': 3964, 'corrupttrump': 8182, 'lyinking': 19876, 'disbarbarr': 10008, 'trumpliespeopledie': 33713, 'overdosing': 23735, 'leadi': 18978, 'bulkbuying': 5494, 'opecplus': 23423, 'flavour': 12909, 'rack': 26433, 'minhas': 21102, 'indebted': 16762, 'beige': 4255, 'perdue': 24482, 'randy': 26571, 'assuage': 3315, 'loud': 19699, 'handsomely': 15065, 'testy': 32555, 'begrateful': 4234, '5pm': 1163, 'prophet': 25839, 'endometriosis': 11412, 'r1bn': 26393, 'ip': 17346, 'angelo': 2732, 'mazza': 20553, 'intellectualproperty': 17148, 'hazzard': 15271, 'harbour': 15138, 'accordance': 1739, 'swabbed': 31960, 'influenza': 16912, 'docked': 10309, 'pegging': 24389, 'ratcheting': 26614, 'facetimeing': 12192, 'mumbling': 21745, 'hahaha': 14930, 'sankey': 28483, 'mizuho': 21220, 'combo': 7286, 'lowdown': 19738, 'judd': 17917, 'legum': 19070, 'banger': 3879, 'randb': 26558, 'weeknd': 35618, 'theweeknd': 32791, 'rudygobert': 28112, 'tomhanks': 33214, 'furloughing': 13675, 'stockpilling': 31226, 'ocr': 23114, 'ce': 6271, 'kn95': 18485, 'moq': 21470, '86159929736': 1418, 'chad': 6396, 'pathanamthitta': 24233, 'asish': 3251, 'mohankumar': 21336, 'longboat': 19618, 'newfoundland': 22345, 'afterwards': 2100, 'seetheday': 28992, 'bouquet': 5066, 'foodie': 13110, 'moon': 21452, 'miracle': 21146, 'nailing': 21952, 'processed': 25699, 'refined': 26966, 'calorically': 5816, 'dense': 9501, 'conditioning': 7543, 'markettrends': 20346, 'picky': 24761, 'ole': 23268, 'escalation': 11660, 'di1tv': 9767, 'morocco': 21501, 'courthouse': 8296, 'glimmer': 14213, 'isps': 17483, 'techcrunch': 32373, 'privacymatters': 25663, 'profiling': 25735, 'recruit': 26869, 'humankind': 16132, 'ongata': 23339, 'rongai': 27986, 'kware': 18677, 'imminent': 16555, 'mercy': 20848, 'fowarding': 13329, 'gikombacorona': 14125, 'saboteur': 28238, 'btc': 5426, 'oio': 23236, 'dta': 10692, 'rcd': 26659, 'costo': 8215, 'mohammad': 21333, 'khani': 18316, 'civilised': 6846, 'nctechmember': 22173, 'membershelpingmembers': 20778, 'yours': 36655, 'getrich': 14043, 'paidfromhome': 23902, 'workfromanywhere': 36229, 'internetrich': 17214, 'jay': 17668, 'prohibited': 25770, 'washingtonian': 35435, 'fro': 13517, 'trollies': 33638, 'hunker': 16171, 'wisconsibly': 36078, 'wiunion': 36124, 'resupply': 27509, 'apocalyptic': 2915, 'arbitrary': 3049, 'punitive': 26078, 'endangers': 11395, 'mywifelife': 21890, 'bunghole': 5525, 'boo': 4938, 'luseelu': 19836, 'proved': 25934, 'cn': 7090, 'ra': 26408, '39': 855, 'sleeper': 29955, 'recalled': 26799, 'driverless': 10632, 'wariness': 35392, 'fleetmanagement': 12928, 'borisjohnsonlies': 5002, 'invaluable': 17281, '55yr': 1104, 'laughter': 18910, 'dutch': 10792, 'fluctuation': 12997, 'wisdom': 36082, 'collectiveness': 7233, 'reciprocate': 26825, 'ccot': 6245, 'teaparty': 32360, 'hannity': 15091, 'kag2020': 18027, 'nra': 22865, 'oann': 23019, 'wnd': 36142, 'gauging': 13852, 'robertson84': 27900, 'publish': 26033, 'longtime': 19629, '750': 1306, 'persists': 24548, 'cantonment': 5927, 'meerut': 20725, 'setup': 29213, 'sanitizes': 28471, 'toe': 33120, 'sirius': 29822, 'xm': 36469, 'proximity': 25957, 'carafoil': 5981, 'fachado': 12194, 'undoubtedly': 34238, 'abundantly': 1684, 'sniper': 30132, 'weapon': 35532, 'annihilate': 2778, 'pistol': 24851, 'ndia': 22184, 'soak': 30164, 'rub': 28095, 'caution': 6204, 'topsmarket': 33259, 'wherearethedeliveries': 35834, 'britney': 5326, 'abilene': 1626, 'messing': 20881, 'hidradenitissuppurativa': 15592, 'discrepancy': 10053, 'oman': 23290, 'muscat': 21778, 'pacp': 23884, 'ren': 27195, 'mnfrg': 21250, 'distrbtn': 10209, 'gutka': 14871, 'earner': 10862, 'precious': 25430, 'savetheday': 28612, 'betterthanpants': 4413, 'funnyshirt': 13663, 'racismisavirus': 26430, 'menstrual': 20807, 'goodwill': 14400, 'fairness': 12235, 'caption': 5971, 'owed': 23814, 'affiliate': 2049, 'yourenergyyourvoice': 36646, '934': 1493, 'rama': 26517, 'frequent': 13458, 'taskmanagement': 32268, 'perlis': 24514, 'kuala': 18630, 'sanglang': 28447, 'grandma': 14542, 'perintahkawalanpergerakan': 24504, 'hurdle': 16181, 'glycerin': 14266, 'perilously': 24502, 'q7': 26172, 'nebraska': 22205, 'breheny': 5236, 'freemarkets': 13434, 'probs': 25692, 'neoliberal': 22270, 'libertarian': 19215, 'invading': 17279, 'phoning': 24711, 'mana': 20159, 'skidded': 29877, 'oversupply': 23789, 'suo': 31705, 'moto': 21562, 'fauci': 12400, 'il': 16465, 'wls': 36134, 'twat': 33897, 'globalism': 14229, 'togetherness': 33130, 'counterbalanced': 8258, 'battleground': 4048, 'blitz': 4742, 'brexiteers': 5263, 'stiff': 31152, 'cahfsweeklyupdate': 5743, 'fantasygrainmarketleague': 12303, 'yield': 36584, 'thisisamess': 32851, 'undergoing': 34188, 'financialhealth': 12707, 'fcac': 12436, 'facilitate': 12197, 'mammal': 20155, '299': 685, 'cua': 8685, 'checkpoint': 6546, 'questioning': 26327, 'noon': 22664, '76': 1317, '969': 1520, 'gbp': 13882, 'aging': 2148, '1919': 366, 'patron': 24261, 'manslaughter': 20236, 'evolution': 11883, 'renewable': 27206, 'wipeyourarse': 36065, 'mate': 20483, 'morale': 21473, 'hamster': 15017, 'nonstop': 22658, 'accent': 1709, 'thomasandfriends': 32870, 'bangalore': 3877, 'antibody': 2823, 'rs2500': 28070, 'aidan': 2212, 'inf': 16875, 'yous': 36662, 'krugman': 18617, 'stonewalling': 31251, 'bielefeld': 4495, 'nrw': 22871, 'stabbed': 30781, 'knife': 18494, 'fled': 12917, 'anthony': 2814, 'fensom': 12546, 'monopoly': 21425, 'gouge': 14449, 'faulty': 12404, 'neverforget': 22325, 'exploited': 12056, 'decouplefromchina': 9257, 'abundance': 1681, 'totinosarelifenow': 33312, 'wastage': 35452, 'derry': 9588, 'londonderry': 19609, 'belfast': 4273, 'mexican': 20913, 'tamale': 32199, 'bugin': 5471, 'dinnerandamovie': 9934, 'flinn': 12946, 'qsrs': 26203, 'drivethru': 10634, 'qsr': 26202, 'pooping': 25167, 'illustrator': 16495, 'illustration': 16494, 'cartoonist': 6105, 'doodle': 10452, 'cartoonofinstagram': 6106, 'sketchbook': 29868, 'iceberg': 16320, 'testimonial': 32552, 'injecting': 16985, 'withdraw': 36102, 'protects': 25900, 'liveblog': 19405, 'reflects': 26976, 'carrot': 6089, 'infra': 16933, 'sniffed': 30129, 'flooded': 12965, 'outdoor': 23647, 'zoek': 36805, 'delirious': 9410, 'browne': 5383, '1840': 344, 'wfp': 35765, 'competiscan': 7436, 'rep': 27232, 'unli': 34379, 'patience': 24242, 'declation': 9242, 'underemployed': 34184, 'credited': 8479, 'gamestop': 13781, 'ghl': 14088, 'paradigm': 24084, 'rm2': 27854, 'extensive': 12095, 'artisan': 3183, 'buttock': 5642, 'sandpaper': 28435, 'woodworking': 36193, 'cabinetry': 5717, 'worshipping': 36302, 'madmax': 19963, 'hoodi': 15895, 'tia': 32959, 'anticipating': 2828, 'watering': 35479, '2023': 501, 'catapulted': 6161, 'ambassador': 2551, 'moncada': 21378, 'appeared': 2945, 'paterson': 24231, 'wirbleibenzuhause': 36069, 'homeoffice': 15842, 'forecasting': 13209, 'eea': 11071, 'airtravel': 2253, 'consumercomplaint': 7717, 'assured': 3323, 'thunder': 32943, 'doris': 10477, 'saino': 28327, '376': 845, 'gearing': 13900, 'jobforone': 17806, 'aretwonecessary': 3077, 'proppa': 25856, 'prebagged': 25418, 'eff': 11078, 'grass': 14570, 'shauntel': 29350, 'uneasy': 34243, 'snowstorm': 30149, 'rv': 28188, 'curtin': 8779, 'petfood': 24599, 'petfoodlidding': 24600, 'petadoption': 24585, 'guardrail': 14799, 'confidentiality': 7568, 'monetizing': 21396, 'cratered': 8430, 'poised': 25086, 'quarterly': 26292, 'financialmarkets': 12715, 'conserve': 7654, 'mlb': 21235, 'wahl': 35275, 'tsunami': 33784, 'beaver': 4159, 'arrogant': 3156, 'beatty': 4144, 'stokenewington': 31236, 'freehold': 13423, 'terroristic': 32532, 'spicier': 30570, 'parched': 24112, 'scratcher': 28825, 'buggy': 5470, 'demolished': 9466, 'alertnotanxious': 2348, 'iri': 17386, 'specializing': 30521, 'nd': 22175, 'nowplaying': 22851, 'reprogram': 27304, 'beep': 4203, 'economicterrorism': 11006, 'consumerism': 7731, 'earthhour2020': 10871, 'climatechange': 6995, 'valchoice': 34747, 'autoinsurance': 3535, 'cochrane': 7127, 'trumpgenocide': 33699, 'pasted': 24210, 'keephopealive': 18194, 'staysafesavelives': 31030, 'staysafestayhealthy': 31034, 'rudeness': 28110, 'aw': 3607, 'mackie': 19925, 'du': 10703, 'activate': 1824, 'dpa': 10558, 'gouged': 14450, 'convince': 7885, 'smallbiz': 30018, 'smallbiztips': 30019, 'extortionist': 12112, 'billionaire': 4543, 'ackman': 1792, 'hoovering': 15909, 'justification': 17980, 'soviet': 30451, 'agony': 2159, 'virtue': 35100, 'signaling': 29712, 'shopworkersunite': 29551, 'rubbing': 28099, 'masterpiece': 20466, 'teenage': 32406, 'readsteadycook': 26697, 'ainsleyharriott': 2226, 'vp': 35224, 'anand': 2678, 'siddiqui': 29680, 'oculus': 23120, 'craving': 8435, 'novelty': 22836, 'jizzed': 17789, 'binge': 4557, 'outsourcing': 23696, 'advancing': 1987, 'bolstering': 4906, 'vladimir': 35156, 'coded': 7147, 'recall': 26798, 'illegally': 16474, 'sentinel': 29140, 'scamdemic': 28672, 'baking': 3819, 'powder': 25323, 'deadliest': 9151, 'vet': 34965, 'elanco': 11151, 'jwn': 18008, 'retailapocalypse2020': 27517, 'mcas': 20571, 'linda': 19316, 'bud': 5452, 'staysa': 31025, 'toiletpaperhoarding': 33161, 'zamahni': 36721, 'boycotted': 5096, 'shitstorm': 29464, 'mortality': 21513, 'onset': 23387, 'ralph': 26514, 'koijen': 18539, 'mothiro': 21548, 'yogo': 36606, 'periodt': 24508, 'stayingathomechallenge': 31011, 'thankshealthheroes': 32611, 'oneself': 23331, 'ffodbanks': 12588, '701': 1272, 'brainless': 5140, 'yoghurt': 36604, 'inhaler': 16961, 'ventilon': 34916, 'motor': 21563, 'eaglenews': 10848, 'proceeded': 25695, 'fascism': 12358, 'grim': 14668, 'grosser': 14727, 'mummy': 21747, 'tread': 33555, '806': 1363, '464': 978, '9197': 1477, 'fightingcoronavirus': 12647, 'criticalpersonnel': 8548, 'llc': 19444, 'aegis': 2024, 'ngf': 22421, 'telecommunication': 32431, 'disbursement': 10012, 'priscillaconsolo': 25653, 'caput': 5978, 'fook': 13162, 'pissed': 24849, 'jammed': 17627, 'reckless': 26826, 'ii': 16450, 'explosive': 12065, 'expansion': 12002, 'suppressed': 31833, 'coordinating': 7927, '43': 946, 'foodbanking': 13083, 'innovative': 17015, 'kazatomprom': 18159, 'nuclear': 22896, 'reactor': 26684, 'petersburg': 24597, 'magazine': 19983, 'theglobe': 32688, 'nationalenquirer': 22052, 'newsoftheworld': 22375, 'boarder': 4836, 'declaration': 9236, 'nosedive': 22738, 'callouts': 5803, 'wto': 36379, 'reissue': 27071, 'elab': 11147, 'alumnus': 2509, 'ithaca': 17517, 'ithacaisstartups': 17518, 'bingo': 4560, 'mx': 21831, 'topstories': 33260, 'cooperate': 7921, 'eradicate': 11623, 'punished': 26074, 'chester': 6604, 'sealand': 28889, 'abpoli': 1649, 'hovers': 16033, 'danwel': 9006, 'sailed': 28323, 'sufficiency': 31606, 'gratefully': 14578, 'aapl': 1579, 'discretionary': 10056, 'monye': 21446, 'morris': 21509, 'remedial': 27161, 'expanding': 12000, 'iwanttospeaktoyourmana': 17554, 'westlake': 35727, 'junior': 17961, 'reversal': 27643, 'castle': 6148, 'tower': 33359, 'switched': 32030, 'sedalia': 28962, 'shorted': 29562, 'restored': 27479, 'grapevine': 14561, 'exceptional': 11928, 'krishnan': 18605, 'sickening': 29669, 'resorting': 27413, 'cardi': 5998, 'ontarians': 23393, 'tou': 33318, 'seasoning': 28912, 'thankthemeveryday': 32616, 'pandemonium': 24004, 'melanoma': 20759, 'subcmte': 31509, 'ing': 16944, 'pirate': 24844, 'shopped': 29530, 'loom': 19645, 'ihs': 16447, 'markit': 20352, 'stockmarketcrash2020': 31216, 'phnom': 24699, 'penh': 24423, 'cambodian': 5822, 'albertans': 2317, 'stubborn': 31457, 'chapati': 6460, 'lightly': 19279, 'saut': 28587, 'bagel': 3778, 'relative': 27094, 'twgrp': 33912, 'leadright': 18980, 'trump2020landslidevictory': 33685, 'explanation': 12045, 'betw': 4418, 'compartmentalized': 7418, 'cursed': 8770, 'cpuc': 8382, 'compile': 7445, 'bangkok': 3881, 'varies': 34827, '4usd': 1032, 'kindle': 18393, 'kolonya': 18546, 'fragrance': 13356, 'bienetre': 4496, 'yumyumsbakery': 36696, 'yqg': 36680, 'squeeze': 30746, 'seamlessly': 28894, 'digitalcapitalism': 9865, 'notmypresident': 22796, 'toiletpaperchallenge': 33152, 'favour': 12414, 'gu': 14783, 'spelling': 30556, '19why': 422, '50ft': 1056, 'blu': 4793, 'kano': 18079, 'shebi': 29362, 'chalet': 6414, 'queenston': 26309, 'dailyneeds': 8922, 'mechanical': 20657, 'literal': 19376, 'fuckery': 13576, 'youllneverwalkalone': 36636, 'ausgangssperrejetzt': 3483, 'ynwa': 36593, 'afterhours': 2093, 'davido': 9081, '1million': 442, 'destructive': 9662, 'ideology': 16370, 'exceptionalism': 11929, 'absurd': 1672, 'quadcities': 26210, 'thriving': 32913, 'traditionl': 33436, 'bankfee': 3893, 'gra': 14502, 'psychosis': 25993, 'foodshortage': 13139, 'identification': 16364, 'beleaguered': 4271, 'nowaste': 22846, 'generate': 13940, 'keyboard': 18288, 'r3m': 26399, 'retract': 27586, 'lockdownsa': 19546, 'slander': 29933, 'checkfacts': 6539, 'vision': 35121, 'ohiosafeohioworking': 23201, 'honeymoon': 15877, 'loaded': 19468, 'qui': 26336, 'sonne': 30359, 'cloche': 7013, '877': 1428, '764': 1322, '2535': 629, 'linus': 19339, 'apologizing': 2925, 'austerity': 3496, 'rancher': 26552, 'refinery': 26968, 'devised': 9726, 'duh': 10731, 'panadol': 23964, 'cotton': 8224, 'dye': 10819, 'predictably': 25447, 'marijuana': 20297, 'jobstobedone': 17816, 'whiplash': 35866, 'halfway': 14972, '996': 1535, '514': 1070, 'beggar': 4228, 'autoimmune': 3534, 'repetitive': 27253, 'cld': 6926, 'demystdata': 9483, 'datasets': 9056, 'geolocation': 13984, 'externaldata': 12101, 'unsafe': 34440, 'fart': 12352, 'thanos': 32640, 'avenger': 3573, 'funnymemes': 13661, 'sarcasm': 28528, 'dank': 8995, 'dankmemes': 8999, 'tuesdathoughts': 33811, 'advisor': 2013, 'geopolitically': 13988, 'distant': 10188, 'unravelled': 34427, 'revisit': 27657, 'paris': 24128, 'koronavirus': 18567, 'thephotohour': 32739, 'whyt': 35943, 'gotdamit': 14441, 'polowczyk': 25140, 'shopresponsibly': 29547, 'juststayhome': 18000, 'naa': 21918, 'occured': 23101, 'mobilityrevolution': 21283, 'carter': 6099, 'deceased': 9211, 'understandably': 34212, 'hung': 16160, 'refer': 26952, 'basmati': 4005, 'flyer': 13009, 'aucklanders': 3450, 'fucken': 13574, 'licensing': 19227, 'merit': 20857, 'ta': 32106, 'dependant': 9524, 'ffinancialadvisors': 12585, 'lithium': 19381, 'looming': 19646, 'electricvehicleindustry': 11182, 'departmental': 9518, 'hereby': 15536, 'obliged': 23050, 'selflessly': 29046, 'anecdote': 2718, 'yeltsin': 36566, 'amazed': 2530, 'thankfully': 32601, 'immense': 16547, 'pham': 24651, 'observed': 23062, 'anthropologist': 2816, 'margaret': 20280, 'mead': 20615, 'azeri': 3666, 'manat': 20167, '588': 1122, 'coronarvirusitalia': 8093, '492': 1001, 'agaisnt': 2112, 'angelus': 2734, 'teetering': 32417, 'tyee': 33951, 'alabanza': 2290, 'fedex': 12492, 'ali': 2371, 'naka': 21962, 'rwandatrade': 28194, 'rampage': 26542, '18bn': 353, '15bn': 293, 'opex': 23452, 'defenseag': 9308, 'alcoholsanitizer': 2335, 'landscaping': 18814, 'montco': 21433, 'magnetic': 20002, 'highlander': 15604, 'loosen': 19657, 'naturalrubber': 22091, 'nr': 22864, 'rig': 27761, 'plin': 24989, 'hrl': 16065, 'safm': 28299, 'lway': 19866, 'tsn': 33780, 'brfs': 5265, 'bsn': 5416, '4th': 1029, 'sindh': 29789, 'alhamdolillah': 2369, 'standstill': 30852, 'restricts': 27491, 'lockthemallup': 19569, 'stillrelevant': 31163, 'oneworld': 23336, 'moronic': 21505, 'numpties': 22914, 'wakeupandsmelltheconsumerism': 35304, 'portco': 25214, 'kangaroohealth': 18076, 'loosing': 19661, 'mayoroflondon': 20547, 'extenders': 12091, 'minneapolis': 21128, 'infuriates': 16940, 'cybercriminals': 8854, 'harris': 15172, 'teeter': 32416, 'peer': 24382, 'playspace': 24949, 'lid': 19232, 'conservative': 7652, 'pande': 23981, 'virus19': 35106, 'buckwheat': 5450, 'zelensky': 36748, 'scummy': 28866, 'moan': 21261, 'carp': 6072, 'hygeinic': 16240, 'sterilizing': 31116, 'washinghands': 35431, 'paknsave': 23935, 'countdown': 8251, 'newworld': 22394, 'nzlockdown': 23006, 'fencepeace': 12544, 'pple': 25360, 'upside': 34559, 'unelected': 34250, 'fisherman': 12812, 'organisation': 23536, 'pyramid': 26163, 'infused': 16942, 'vaycay': 34848, 'goddess': 14310, 'ganjagoddess': 13792, 'goddessorders': 14311, 'adulteration': 1980, 'dal': 8936, 'atta': 3394, 'rava': 26634, 'adulterate': 1978, 'bridging': 5280, 'introvert': 17268, 'lifeadjustment': 19242, 'conquered': 7635, 'tmall': 33085, 'tuebrook': 33809, 'heron': 15554, 'mortuary': 21522, 'usable': 34607, 'sanjana': 28477, '140': 256, 'mississippian': 21190, 'senfeinstein': 29109, 'kamalaharris': 18059, 'speakerpelosi': 30508, 'repadamschiff': 27236, 'ericsawell': 11639, 'californiacoronavirus': 5783, 'maggienyt': 19990, 'washingtonpost': 35436, 'latimes': 18890, 'accurate': 1760, 'lethal': 19129, 'medically': 20687, 'complicating': 7469, 'enfo': 11443, 'rishisunak': 27813, 'warehousing': 35388, 'ecopies': 11013, 'paperback': 24065, 'righteousness': 27766, 'abideth': 1624, 'icicle': 16327, 'moonbeam': 21453, 'romance': 27976, 'suspense': 31926, 'scanning': 28689, 'adqcc': 1970, 'qccabudhabi': 26183, 'abudhabi': 1678, 'inabudhabi': 16672, 'tantrum': 32230, 'cuntmom': 8728, 'seminar': 29086, 'bough': 5051, 'unreasonably': 34432, 'covdhousearrest': 8307, 'housearrestnotquarantine': 16004, 'corinahysteria': 7965, 'coronahoax': 8046, 'truffle': 33677, 'environ': 11557, 'lett': 19146, 'spewing': 30565, 'adderall': 1874, 'uttered': 34702, 'reverential': 27641, 'sympathetic': 32068, 'obama': 23031, 'sulfuric': 31637, 'saas': 28226, 'prescriptive': 25512, 'jd': 17678, 'pdd': 24337, 'tcehy': 32319, 'tcom': 32322, 'wynn': 36430, 'lvs': 19865, 'mlco': 21236, 'bili': 4535, 'yumc': 36693, 'craig': 8403, 'damning': 8967, 'tru': 33658, 'applauds': 2958, 'nyse': 22995, 'studying': 31473, 'idiotic': 16377, 'rumination': 28137, 'tele': 32428, 'hugged': 16109, 'dave': 9075, 'whamond': 35778, 'wandering': 35359, 'dontstockpile': 10444, 'timeforplanb': 33014, 'ricecrypto': 27718, 'o0dsd66xjz': 23008, 'alice': 2375, 'chan': 6427, 'bumped': 5517, 'joel': 17826, 'alicechan': 2376, 'joelchan': 17827, 'destiny': 9655, 'cosmetic': 8194, 'onlineshop': 23371, 'mustread': 21806, 'ro': 27875, 'cranberry': 8412, 'desperatetimescallfordesperatemeasures': 9634, 'technicallynolongerboxwine': 32385, 'ratapiko': 26613, 'ding': 9928, 'tonic': 33227, 'illusion': 16489, '2qfy2020': 731, 'qoq': 26198, 'totnes': 33313, 'lewisville': 19174, '225': 570, 'mound': 21574, 'dummy': 10745, '8105473545': 1374, 'healthdaynews': 15331, 'schneider': 28741, 'duality': 10705, 'jungian': 17960, 'selfie': 29027, 'invade': 17277, 'ioc': 17337, 'trench': 33572, 'brenden': 5242, 'dgp': 9747, 'karnataka': 18107, 'mf': 20919, 'cdn': 6262, 'generic': 13949, 'closetherange': 7032, 'boycottherange': 5098, 'therange': 32747, 'uaz05hc3ev': 33984, 'corovid19': 8147, 'indiaunderlockdown': 16798, 'davanagere': 9074, 'exorbitantly': 11994, 'frying': 13553, 'pricewar': 25604, 'watermelon': 35482, 'harrow': 15177, 'weald': 35526, 'albertsons': 2320, '1u': 453, 'cbsnews': 6233, 'encountering': 11384, 'coronaupdates': 8114, 'leftist': 19041, 'umarakmalquotes': 34095, 'potable': 25290, 'wud': 36387, 'watercrisis': 35478, 'ho': 15717, 'el': 11146, 'ryvita': 28212, '250ml': 627, '105': 151, '0330': 59, '124': 218, '1733': 328, 'amanda': 2523, 'prevents': 25575, 'increasin': 16748, 'shutter': 29647, 'girlfriend': 14149, 'etiquette': 11767, 'idc': 16353, 'hotchick': 15978, 'badasswoman': 3758, 'dirtypeople': 9974, 'filth': 12681, '221': 563, 'faceshields': 12187, 'preventive': 25574, 'feat': 12475, 'bojo': 4890, 'livingdead': 19426, 'otc': 23603, 'reasoned': 26769, 'named': 21979, 'jesuschristonacracker': 17741, 'totalsocial': 33309, 'consumerconversations': 7719, 'scum': 28862, 'farther': 12353, 'refreshingly': 26988, 'bewell': 4429, 'smoother': 30085, 'fm': 13011, 'tomor': 33220, 'hannaford': 15088, '301': 750, '324': 787, '9500': 1505, '681': 1234, '9797': 1527, 'pgcounty': 24647, 'visualeyes': 35135, 'rebreathing': 26793, 'esterson': 11728, 'commented': 7338, 'backlogged': 3733, 'plead': 24960, 'maisano': 20068, 'tavern': 32292, 'samorning': 28401, 'sally': 28369, 'burdett': 5538, 'xoli': 36471, 'mngambi': 21251, 'diplomatic': 9949, 'dictate': 9806, 'condominium': 7547, 'attendee': 3413, 'jesuschrist': 17740, 'religiousfreedom': 27135, 'keepput': 18207, 'starwars': 30895, 'justkidding': 17991, 'lenin': 19098, 'nonetheless': 22642, 'leavenlaw': 19017, 'onassignment': 23313, 'slope': 29991, 'jumping': 17954, 'sane': 28441, 'fairytale': 12243, 'brownie': 5384, '531': 1088, '5209': 1079, 'clientele': 6987, 'utmost': 34696, 'insult': 17125, 'injury': 16988, 'minder': 21086, 'await': 3609, 'fate': 12390, 'postcovid19': 25265, 'staythefuckhome': 31046, 'cult': 8708, 'cinephile': 6801, 'geo': 13975, 'annihilates': 2779, 'saraimrieart': 28521, 'artoftheday': 3192, 'artseries': 3194, 'toiletpaperart': 33148, 'kitchener': 18437, 'loonie': 19651, 'newswatch': 22385, 'indulges': 16838, 'macrobond': 19930, 'appetite': 2950, 'bombing': 4916, 'syria': 32096, 'pentagon': 24441, 'recourse': 26857, 'tracing': 33402, 'spider': 30572, 'roach': 27876, 'prominent': 25796, 'lappet': 18831, 'beak': 4118, 'seetheworld': 28993, 'kilimanjaro': 18369, 'safari': 28272, 'pam': 23959, 'farrare': 12351, 'wilmore': 36012, 'embraceyourcommunity': 11271, 'lecturer': 19027, 'ontpoli': 23401, '4h': 1014, 'agfunder': 2135, 'declares': 9240, 'chelsea': 6572, '80k': 1368, 'beetroot': 4213, 'getagripbritishpeople': 14026, 'masque': 20444, 'arrivent': 3152, 'dessindepresse': 9646, 'pour': 25313, 'sur': 31845, 'histoire': 15674, 'une': 34241, 'nurie': 22921, 'racont': 26437, 'ici': 16326, 'glanced': 14191, 'copy': 7946, 'meaningfully': 20634, 'haha': 14929, 'staycation': 30958, 'vince': 35055, 'troyjohnson': 33657, 'feedingsandiego': 12509, 'sandiegostrong': 28431, 'digitatmarketing': 9896, 'webdevelopment': 35580, 'glasgow': 14195, 'pondering': 25149, 'friction': 13479, 'fraudprevention': 13388, 'procuring': 25710, 'minimizing': 21114, 'goodness': 14389, 'survived': 31901, 'herdmentality': 15532, 'relaxpeople': 27104, 'thisisamerica': 32850, 'whyworry': 35944, 'freakingout': 13402, 'lovenotfear': 19724, 'redtree': 26926, 'gallery': 13762, 'sterilization': 31113, 'crosby': 8584, 'compounding': 7485, 'columbus': 7269, 'mof': 21325, 'hefty': 15415, 'mahn': 20026, 'imagery': 16511, 'baffling': 3775, 'devastate': 9704, 'lfc75': 19183, 'ultralow': 34087, 'lend': 19089, 'condemned': 7535, 'g2': 13725, 'exploding': 12051, 'movementcontrolorder': 21593, 'sustainable': 31936, 'strengthens': 31398, 'forexsignals': 13232, 'forextrader': 13233, 'preying': 25580, 'apparel': 2935, 'hid': 15585, 'spoon': 30641, 'donnie': 10408, 'patchogue': 24224, 'kullen': 18640, 'raid': 26470, 'flea': 12915, 'tick': 32961, 'paperproducts': 24068, 'experiment': 12029, '973': 1525, '504': 1049, '6240': 1198, 'njcoronavirus': 22547, 'spouse': 30665, 'bender': 4310, 'addressing': 1887, 'rutte': 28187, 'rapporteur': 26601, 'spexperts': 30566, 'csr': 8672, 'fantasized': 12300, 'consumergoods': 7726, 'carphone': 6079, 'retailapocalypse': 27516, 'superstar': 31771, 'mankind': 20221, 'prudential': 25963, 'magnanimous': 19999, 'utakaa': 34679, 'kwa': 18670, 'nyumba': 23001, 'ukule': 34074, 'nini': 22518, 'riverfront': 27839, 'cody': 7154, 'pfister': 24639, 'missouri': 21192, 'terrorist': 32531, 'patriotic': 24255, 'merciless': 20845, 'disconnected': 10030, 'commuter': 7394, 'belt': 4302, '599': 1129, 'egypt': 11116, 'senegal': 29107, 'tunisia': 33848, 'burkina': 5553, 'faso': 12373, 'decently': 9219, 'band': 3862, 'lombardia': 19605, 'distantimauniti': 10189, 'europa': 11791, 'resilienza': 27393, 'staystrong': 31042, 'cardholder': 5997, 'understands': 34214, 'aetna': 2033, 'marketing101': 20323, 'customerjourney': 8805, 'capitalize': 5954, 'aired': 2241, 'hospitalized': 15958, 'telecommuting': 32434, 'grandad': 14534, '11pm': 205, 'skillful': 29881, 'imagination': 16514, 'edward': 11069, 'hopper': 15921, 'supportyourlocals': 31828, 'conceptstore': 7512, 'restart': 27458, 'newconcept': 22340, 'conserved': 7655, 'nygobernador': 22984, 'uofchicago': 34510, 'creatives': 8466, 'ang': 2723, 'lu': 19779, 'bora': 4980, 'grooming': 14722, 'barber': 3922, 'waxing': 35497, 'mani': 20202, 'pedi': 24369, 'aesthetic': 2032, 'derma': 9581, 'kbbq': 18161, 'buffet': 5463, 'inom': 17020, 'iba': 16298, 'parasitic': 24108, 'commoning': 7369, 'longest': 19622, 'vegancupboard': 34867, 'kev': 18282, 'describe': 9595, 'pap': 24059, 'caritasuganda': 6041, 'promoted': 25804, 'onlinegrocerybusiness': 23358, 'optimum': 23492, 'utilisation': 34686, 'roti': 28023, 'sabzi': 28240, 'daal': 8889, 'chawal': 6517, 'khaao': 18307, 'biting': 4631, 'underprivileged': 34204, 'imp': 16577, 'petbarn': 24588, 'bestfriends': 4389, 'furmum': 13676, 'furbaby': 13669, 'hanes': 15076, 'problematic': 25691, 'springmarket': 30707, 'striving': 31432, 'alexa': 2351, 'overview': 23798, 'ozon': 23845, 'bronchitis': 5361, 'saturated': 28563, 'coworkers': 8353, 'accident': 1724, 'attract': 3427, 'gigantic': 14117, 'primark': 25612, 'commercialization': 7343, 'caronavirus2020': 6069, 'healthyathome': 15350, 'lung': 19825, 'organ': 23533, 'component': 7476, 'vu': 35235, 'popped': 25183, 'notright': 22806, 'pymnts': 26162, 'coronadebat': 8030, 'masksforall': 20432, 'gobills': 14296, 'buffalonian': 5461, 'resistance': 27396, 'twd': 33898, 'superbug': 31715, 'fundraiser': 13651, 'mm': 21237, 'justsa': 17996, 'flex': 12931, 'bargaining': 3936, 'kyuu': 18692, 'aree': 3072, 'milta': 21071, 'rupaye': 28159, 'aapke': 1578, 'yahan': 36498, 'kyu': 18691, 'sucha': 31581, 'cutie': 8823, 'rashamidesai': 26610, 'payout': 24306, 'vikez': 35039, 'ronn': 27987, 'torossian': 33283, '5wpr': 1167, 'dara': 9009, 'busch': 5575, 'prowl': 25955, 'collateral': 7222, 'irresponsibility': 17410, 'flame': 12869, 'purely': 26100, 'hyperbole': 16257, 'athabasca': 3357, 'oilsands': 23233, 'dire': 9955, 'comprise': 7490, 'controversial': 7852, 'israeli': 17485, 'spyware': 30728, 'nso': 22878, 'edited': 11037, 'approx': 3005, 'mco': 20598, 'bbcyourquestions': 4081, 'wm': 36135, 'petrides': 24607, 'fiji': 12655, 'fijian': 12656, 'saulevu': 28582, 'jiko': 17773, 'kada': 18018, 'ga': 13728, 'kakana': 18041, 'viti': 35149, 'dou': 10493, 'qai': 26173, 'raica': 26469, 'kina': 18387, 'anarchy': 2681, 'crtitcal': 8611, 'ger': 13997, 'nl': 22559, 'vancouvercorona': 34778, 'canadalockdown': 5859, 'leveling': 19159, '018': 38, '233': 586, 'diseasecontrol': 10068, 'outage': 23636, 'writingcommunity': 36356, 'hugging': 16110, 'authorslife': 3529, 'scar': 28691, 'scab': 28661, 'growfearless': 14749, 'dewine': 9734, 'elitist': 11220, 'craic': 8402, 'arguement': 3088, '30mins': 763, 'toast': 33101, 'actively': 1831, 'bible': 4479, 'loon': 19648, 'doin': 10352, 'tongue': 33226, 'slipping': 29985, 'medicating': 20700, '61': 1187, 'columbia': 7267, 'knowingly': 18511, 'cincinnati': 6798, 'duster': 10787, 'suffocation': 31610, 'overwhelmingly': 23806, 'myquarantineinsixwords': 21870, 'survivor40': 31908, 'bleach2020': 4708, 'youdrugstore': 36631, 'onlinepharmacy': 23365, 'canadianpharmacy': 5861, 'authorized': 3527, 'bourbon': 5068, 'frazzled': 13395, 'morrissons': 21512, 'hoc': 15739, 'compiling': 7447, 'proposes': 25853, 'averting': 3582, 'incorporating': 16739, 'antimalarial': 2836, '250mg': 626, '500mg': 1044, 'slagging': 29927, 'keepyourlocalpubalive': 18214, 'pubsclosed': 26040, 'nallan': 21969, 'suresh': 31853, 'resonating': 27410, 'adivasi': 1912, 'saira': 28333, 'hooghly': 15899, 'fightcovid': 12639, 'compounded': 7484, 'phenomenon': 24673, 'brawling': 5192, 'vinegar': 35061, 'shoppingwars': 29545, 'privileged': 25674, 'stayh': 30966, 'shutthemdown': 29651, 'macys': 19937, 'entice': 11535, 'kindleunlimited': 18395, 'kindlebook': 18394, '24hr': 615, '0200hrs': 44, 'vividly': 35152, 'mpls': 21619, 'sleuth': 29965, 'chasing': 6503, 'jeweller': 17751, 'whereabouts': 35832, 'recd': 26803, 'overhears': 23748, 'po': 25054, 'excerise': 11932, 'claw': 6919, 'kmc': 18481, 'equality': 11604, 'rio': 27786, 'byron': 5701, 'devil': 9722, 'cctv': 6254, 'resisting': 27399, 'socialresponsibility': 30238, 'naturaldisaster': 22082, '1980s': 396, 'gurgaon': 14864, 'basil': 3999, 'vacuum': 34731, 'abroad': 1658, 'nzpol': 23007, 'eroding': 11645, 'extinct': 12103, 'brokerage': 5358, 'lepage': 19109, 'experimenting': 12031, 'recording': 26853, 'vlog': 35158, 'upload': 34539, 'takeup': 32173, 'aswell': 3345, 'brace': 5122, 'suddenlyscaredofpeople': 31594, 'ghar': 14078, 'bihiv': 4522, 'te': 32331, 'nyabar': 22968, 'mah': 20010, 'neeriv': 22232, 'mumkinhaiyeh': 21746, 'bjp': 4651, 'risingprices': 27818, 'normality': 22692, 'fox5dc': 13336, 'damascusmd': 8960, 'delicious': 9402, 'norc': 22682, 'madtweets': 19967, 'reviewed': 27651, 'crushed': 8637, 'fnv': 13025, 'sbsw': 28657, 'kgc': 18305, 'btg': 5427, 'auy': 3556, 'drd': 10597, 'depository': 9548, 'chicagoland': 6622, 'ifrs': 16408, 'bothered': 5040, 'originally': 23556, 'grandpa': 14544, 'takecareofeachother': 32161, 'matty': 20511, 'stanton': 30859, 'foodwaste': 13157, 'reducewaste': 26933, 'homequarantine': 15847, 'cleanlife': 6942, 'cleancity': 6929, 'cleanworld': 6952, 'po3': 25055, 'align': 2381, 'releasing': 27114, 'owning': 23824, 'piano': 24744, 'drum': 10667, 'studio': 31468, 'tumultuous': 33838, 'rocketing': 27928, 'essary': 11688, 'farmed': 12327, 'salmon': 28372, 'shrimp': 29612, 'iu49tbeund': 17549, '2months': 722, 'biko': 4529, 'pooh': 25158, 'cornfed': 7982, 'peru': 24572, 'dejected': 9368, 'cornfedinperu': 7983, 'news204': 22365, 'tucson': 33805, 'coveryourface': 8322, 'sewage': 29225, 'hsr': 16075, 'horrific': 15941, 'grandesynthe': 14537, 'vigilante': 35032, 'lincoln': 19314, 'axiety': 3642, 'coronaquarantine': 8091, 'missyoudad': 21196, 'dontrunoutoftoiletpaper': 10441, 'dontneedatherapist': 10435, 'digiscrapthat': 9857, 'judgement': 17922, 'iamdjblaque': 16291, 'iamlegend': 16292, 'mdoc': 20611, 'horhn': 15928, 'ms65': 21638, 'prisoner': 25655, 'inhuman': 16971, 'kw': 18669, 'ality': 2386, 'amplifier': 2630, 'msleg': 21646, 'finalize': 12692, '2123': 542, 'donators': 10400, 'native': 22071, 'chickasaw': 6626, 'hardman': 15145, 'goodfriday': 14377, 'easterweekend': 10899, 'mobie': 21268, 'genie': 13957, 'folding': 13049, '2299': 578, '2699': 654, 'rizk': 27846, 'zouzou': 36830, 'shakib': 29277, '1946': 378, 'dir': 9954, 'hassan': 15202, 'imam': 16520, 'samir': 28398, 'farid': 12320, 'archive': 3059, 'brookside': 5371, '1litre': 440, 'maize': 20071, 'conned': 7627, 'stopwastingtests': 31311, 'testgrocerystoreworkers': 32548, 'fifth': 12626, 'sumer': 31647, 'previous': 25577, 'hemisphere': 15498, 'coastal': 7113, 'holidaymaker': 15775, 'victorian': 34998, 'foodhall': 13106, 'stayingopen': 31015, 'stayingassafeaswecan': 31010, 'shapiro': 29315, 'coalition': 7111, 'angie': 2737, 'kim': 18383, 'volunteered': 35194, 'humiliation': 16145, 'enduring': 11423, '2metres': 720, 'nobogroll': 22583, 'coughonmeandillnutya': 8233, 'mtr': 21670, 'davy': 9086, 'dearcustomer': 9169, 'sightx': 29708, 'automatingcuriosity': 3541, 'shedding': 29365, 'core': 7961, 'takingmore': 32179, 'mobilising': 21280, 'retrain': 27588, 'mentioning': 20821, 'petchemindustry': 24589, 'oilcrash': 23215, 'tenner': 32494, 'apiece': 2897, 'distanced': 10183, 'sneaky': 30120, 'addition': 1879, 'senatecorruption': 29091, 'binning': 4564, 'snatching': 30113, 'gird': 14146, 'coronawuhanvirus': 8135, 'afar': 2036, 'geography': 13982, 'dermatitis': 9582, 'amwalalghaden': 2651, 'octane': 23116, 'und': 34168, 'mimbling': 21077, 'lark': 18844, 'bloke': 4764, 'labeled': 18702, 'deficiency': 9322, 'daw': 9087, 'auang': 3445, 'suu': 31944, 'kyi': 18686, 'smearing': 30054, 'infectiousdisease': 16884, 'installation': 17089, 'trackingworld': 33408, 'navigation': 22115, 'feminine': 12541, 'vaunrable': 34843, 'generalinsurance': 13937, 'spurt': 30722, 'fax': 12419, 'courier': 8289, 'instituting': 17109, 'rajendras': 26497, 'namaka': 21972, 'jam': 17614, 'midway': 21005, 'brjl203': 5331, 'brjl309': 5332, 'dodgemojo': 10331, 'dispelling': 10131, 'drugstore': 10666, 'hydroxide': 16230, 'essentialoils': 11702, 'stayinghealthy': 31012, 'nstworld': 22884, 'successfully': 31573, 'concludes': 7525, 'kungfu': 18647, 'photooftheday': 24724, 'photographyeveryday': 24719, 'massacre': 20448, 'improvise': 16652, 'practically': 25366, 'shunned': 29631, 'digitalpayment': 9885, 'creditcard': 8476, 'debitcard': 9193, 'financialservices': 12720, 'dribble': 10614, 'warmup': 35399, '028': 51, 'dribbleweeklywarmup': 10615, 'luke': 19803, 'tilley': 32999, 'wilmington': 36011, 'ninja': 22520, 'keepyourdistance': 18213, 'slim': 29976, 'amused': 2647, 'dislike': 10103, 'macaroni': 19909, 'hay': 15255, 'comida': 7315, 'casa': 6109, 'tyson': 33968, 'cwt': 8848, '94': 1495, 'grid': 14651, 'acityunited': 1790, 'counterbalance': 8257, 'digitalizes': 9878, 'izberg': 17568, 'tencent': 32483, 'e3': 10836, 'momar': 21362, 'fci': 12442, 'dracula': 10563, 'countdracula': 8252, 'loveatfirstbite': 19716, 'mktgsales': 21231, 'beside': 4378, 'outlining': 23671, 'onlineclasses': 23351, 'quarantinecats': 26250, 'totallockdown': 33306, 'assignment': 3305, 'labreports': 18719, 'annotated': 2782, 'bibliography': 4482, 'venmo': 34907, 'conquer': 7634, 'touring': 33340, 'retailstong': 27548, 'blacked': 4659, 'hemsworth': 15503, 'harlow': 15159, 'homedelivery': 15820, 'bindu': 4556, 'mayi': 20542, 'expertise': 12034, 'takitaki': 32180, 'chronically': 6758, 'honored': 15888, 'sule': 31635, 'chsl': 6763, 'interlocutor': 17196, 'nicole': 22472, 'newborn': 22335, 'describes': 9597, 'mie': 21010, 'hiatus': 15580, 'googletranslate': 14410, 'digestive': 9854, 'grotesque': 14731, 'disgustingly': 10081, 'egregious': 11113, 'representation': 27293, 'inequity': 16865, 'kirkham': 18421, 'bongkhao': 4929, 'duda': 10721, 'lakh': 18765, 'tobu': 33108, 'downloads': 10531, 'surpassing': 31872, 'malawi': 20120, 'mutharika': 21816, 'andhra': 2700, 'reverse': 27644, 'visuals': 35141, 'pict': 24765, 'tinto': 33040, 'kaplan': 18087, 'federalreserve': 12490, 'richest': 27730, 'manpower': 20234, 'hema': 15494, 'theoldman': 32730, 'destined': 9654, 'letsgetafterit': 19140, 'cuomoprimetime': 8732, 'amc': 2561, 'syfy': 32060, 'logo': 19593, 'su': 31504, 'staygreetingstayathome': 30965, 'sdw': 28873, 'stagedancewearuk': 30813, 'stagedancewearonline': 30812, 'keepdancing': 18191, 'gorman': 14430, 'creatively': 8465, 'dailyfx': 8917, 'starch': 30867, 'marchmadness': 20273, 'fridayvibes': 13486, 'torkham': 33270, 'chaman': 6422, 'dawood': 9095, 'vegetarianrecipes': 34880, 'tofurkey': 33122, 'tillys': 33001, 'loyal': 19755, 'mohr': 21337, 'cascade': 6110, 'loorollgate': 19655, 'placard': 24887, 'downloading': 10530, 'teamukcbcdubai': 32357, 'mydubai': 21844, '2020undefeated': 498, 'revivetheeconomy': 27662, 'helptheearth': 15479, 'precarious': 25419, 'quail': 26216, 'newnormalisveryposh': 22357, 'leaking': 18988, 'se': 28874, 'spied': 30573, 'reaffirm': 26704, 'kotler': 18573, 'joemandese': 17829, 'meera': 20724, 'poly': 25142, 'qatarnews': 26180, 'overheard': 23747, 'stubbornaf': 31458, 'safea': 28275, 'cooky': 7907, 'celebs': 6298, 'holed': 15771, 'advert': 1997, 'bow': 5074, 'syaysafe': 32051, 'indialockdown': 16787, 'kandlasagarmala': 18073, 'kandla': 18072, 'tranship': 33481, 'cargostevedores': 6033, 'shorehandling': 29555, 'containerhandling': 7770, 'totallogistics': 33307, 'gandhidham': 13787, 'goko': 14338, 'gust': 14868, 'lastone': 18862, '59pm': 1131, 'borough': 5010, 'greenwich': 14636, 'plumstead': 25015, 'se18': 28876, 'subbed': 31508, 'elastic': 11152, 'sewing': 29229, 'janky': 17642, 'stitching': 31189, 'abating': 1593, 'unclear': 34148, 'erstwhile': 11650, 'reiwa': 27077, 'cdt': 6268, 'meadia': 20616, 'fuckthemedia': 13590, 'fucknews': 13585, 'freakin': 13400, 'coronatimes': 8107, 'spreadjoy': 30684, '16mar20': 319, 'reasor': 26771, 'profitting': 25750, 'angela': 2725, 'vanquish': 34800, 'darkness': 9020, 'unites': 34347, 'candle': 5887, 'diya': 10268, '9minutes': 1545, 'lightacandle': 19274, 'hopemed': 15917, 'hurray': 16186, 'lifebuoy': 19248, 'jai': 17596, 'hind': 15642, 'eurozone': 11798, 'clap': 6876, 'posties': 25273, 'binmen': 4561, 'sweeper': 31989, 'clapforall': 6879, 'bhagwantumhesadhbudhide': 4448, 'coronaindia': 8051, 'coronainindia': 8053, 'hungrier': 16168, 'loosened': 19658, 'toiletpanicpanic': 33143, 'nephron': 22276, 'makoya': 20112, 'mian': 20942, 'chol': 6720, 'recommending': 26841, 'despised': 9638, 'jieng': 17769, 'ssot': 30775, 'ei': 11123, 'pmmodi': 25040, 'pmoindia': 25043, 'amsterdam': 2643, 'txlege': 33944, 'flew': 12930, 'homeschoolbandandtunes': 15851, 'governorandrewcuomo': 14480, 'funniesttweets': 13658, 'funniest': 13657, 'ttxs': 33793, 'modelling': 21298, 'anticipatory': 2830, 'snakepark': 30103, 'doornkop': 10471, 'ensured': 11514, 'gogglebox': 14326, 'gilbey': 14127, 'revamping': 27627, 'mistake': 21197, 'iwaya': 17557, 'slum': 30006, 'chatted': 6510, 'monies': 21411, 'looted': 19663, 'intensifies': 17159, 'scarsdale': 28705, 'largo': 18843, 'lingo': 19330, 'empathizes': 11322, 'periodically': 24507, 'egift': 11108, 'smash': 30048, 'depending': 9529, 'transmitting': 33498, 'crud': 8616, 'endured': 11422, 'persian': 24543, 'protester': 25914, 'reunited': 27615, 'tony': 33231, 'stark': 30874, 'endgame': 11401, 'nhscovidheroes': 22437, 'fortheworld': 13282, 'cyberscout': 8859, 'schoolchildren': 28750, 'datasecurity': 9054, 'anubis': 2853, 'bushcraft': 5578, 'howtospendyourstimulus': 16054, 'extraordinary': 12120, 'backwards': 3746, 'businesstravel': 5612, 'upi': 34535, 'appropriate': 2995, 'postponing': 25286, 'faves': 12408, 'lota': 19689, 'killer': 18373, 'pinto': 24833, 'reckoning': 26829, 'ahmed': 2200, 'mukhaini': 21700, 'shalelaw': 29284, 'hotlink': 15987, 'deepens': 9281, 'widening': 35958, 'purrell': 26119, 'overhyping': 23750, 'manner': 20227, 'priti': 25657, 'roadblock': 27878, 'protectthenhs': 25901, 'trivial': 33629, 'penultimate': 24443, 'whereupon': 35844, 'cordonedbycorona': 7959, 'staring': 30873, 'nocturne': 22594, 'shinmegamitensei': 29441, 'lifting': 19272, 'paidsickleave': 23906, 'escalating': 11659, 'powerless': 25339, 'heed': 15408, 'frame': 13359, 'conveying': 7878, 'oye': 23836, 'ekiti': 11143, 'ibadan': 16299, 'avert': 3580, 'inadan': 16676, '50am': 1053, 'savagexbunni': 28591, 'veganrecipes': 34869, 'cookinginquarantine': 7904, 'garri': 13817, 'effurun': 11094, 'regulating': 27045, 'honge': 15880, 'kamiyab': 18064, 'contestalert': 7799, 'propose': 25851, 'supermarketshuffle': 31748, 'strictlycomeshopping': 31416, 'nauseating': 22103, 'pandemicprofiteering': 24000, 'improved': 16647, 'underwriting': 34229, 'hauled': 15221, 'disadvantage': 9984, 'disparity': 10127, 'avoidance': 3596, 'rendered': 27201, 'aap': 1575, 'scholarly': 28748, '5kg': 1151, '4800': 990, 'giver': 14173, 'beautifully': 4153, 'tribalism': 33589, 'circulate': 6816, 'bastion': 4009, '2good2btrue': 708, 'cyberstronghold': 8861, 'loui': 19702, 'selsey': 29070, 'clapped': 6886, 'cuppa': 8737, 'oatmilk': 23027, 'vineyard': 35062, 'leaning': 18992, 'predatory': 25442, 'heaping': 15359, 'bht': 4470, 'diversity': 10248, '568': 1108, '089': 119, '238': 596, 'smp': 30087, 'balancing': 3829, 'gibbs48': 14106, 'impotus45': 16633, 'deceive': 9212, 'traumatic': 33523, 'techinally': 32375, 'excluded': 11947, 'pkgs': 24880, 'classifie': 6905, 'drew': 10612, 'deleted': 9384, 'optic': 23480, 'audit': 3460, 'unwelcome': 34501, 'selecting': 29013, 'extract': 12114, 'desired': 9624, 'moab': 21260, 'boarded': 4835, 'steadthread': 31057, 'kallang': 18050, 'ntuc': 22890, 'yoday': 36596, 'socialdistancingfailz': 30205, 'harare': 15131, '2ply': 728, 'surgicalmask': 31866, 'consultation': 7698, 'underestimated': 34186, 'invented': 17287, 'blossom': 4783, 'cashappfriday': 6121, 'cashtag': 6137, 'telecommute': 32432, 'remotework': 27186, 'healthinsurance': 15339, 'politicaleconomy': 25123, 'medicareforall': 20698, 'bullshitjobs': 5508, 'farmar': 12324, 'ironic': 17392, 'generationz': 13947, 'thedumbestgeneration': 32679, 'theevilgeneration': 32682, 'esteemed': 11726, 'ethiopianairlines': 11760, 'q3': 26167, 'normalization': 22693, 'allocated': 2427, 'smashing': 30050, 'bowtie': 5083, 'goingout': 14335, 'eradicated': 11624, 'babawiin': 3694, 'nagasto': 21937, 'noong': 22668, 'fapri': 12307, 'univ': 34350, 'pfnews': 24644, 'nginews': 22423, 'withering': 36109, 'weaver': 35573, 'floridian': 12980, 'colonial': 7248, 'opportunist': 23466, 'decor': 9252, 'deadline': 9152, 'sep': 29143, 'supportindies': 31808, 'indiebookstores': 16808, 'pressbriefing': 25533, 'snapchat': 30106, 'installs': 17095, 'snapchatads': 30107, 'socialmediaads': 30234, 'idtheft': 16392, 'fpm2020': 13343, 'hampering': 15013, 'speculation': 30539, 'punted': 26081, 'leant': 18994, 'macabre': 19908, 'specialise': 30515, 'vacant': 34721, 'anetafelix': 2720, 'superlative': 31732, 'compassionate': 7421, 'yourcustomerssaythankyou': 36644, 'fluidity': 13000, 'nylag': 22986, 'undocumented': 34236, 'reveal': 27628, 'puraphy': 26086, 'hempoil': 15502, 'deliverydriver': 9424, 'hatfield': 15215, 'hertfordshire': 15559, 'transnsformed': 33499, 'understood': 34217, 'becki': 4172, 'batter': 4041, 'loading': 19469, 'foodstores': 13142, 'hvac': 16212, 'mcdonalds': 20585, 'r30': 26397, 'ubereats': 33987, 'bigmacza': 4514, 'reigned': 27054, 'leger': 19052, 'lg2': 19186, 'unveiling': 34493, 'bumbling': 5514, 'string': 31423, '16pm': 322, 'bourgeois': 5069, 'inconvenienced': 16735, 'ea': 10837, 'radar': 26439, 'recurring': 26878, 'dontwanttostarve': 10450, 'diligently': 9904, 'afbf': 2037, 'americanfarmbureau': 2583, 'vodaf': 35172, 'aberdeen': 1614, 'pianist': 24743, 'barcelona': 3928, 'balcony': 3831, 'saxophonist': 28635, 'neighboring': 22253, 'powell': 25325, 'mishandling': 21164, 'pamdemic': 23960, 'null': 22904, 'mandms': 20186, 'candybar': 5889, 'iphonepic': 17356, 'sawtelle': 28632, 'contrast': 7833, 'goodbadugly': 14372, 'gsma': 14775, 'deglobalization': 9353, 'falloff': 12266, 'staub': 30936, 'theater': 32661, 'moreso': 21489, 'premiering': 25478, 'cosgrove': 8192, 'uproar': 34551, 'lo': 19466, '24h': 613, 'malamjumat': 20117, 'sondurum': 30354, 'gntm': 14282, 'shopeeth': 29501, 'kiev': 18359, 'everyo': 11854, 'thriller': 32910, 'f2f': 12153, 'assc': 3288, 'marching': 20271, 'mete': 20890, 'shithole': 29457, 'iso': 17458, 'day8oflockdown': 9117, 'tauler': 32289, 'llp': 19451, 'ionic': 17341, 'herbal': 15523, 'eucalyptus': 11776, 'hocked': 15740, 'futuristic': 13704, 'irrelevant': 17403, 'hinge': 15653, 'hazemat': 15267, 'fullmoon': 13629, 'rona': 27982, 'pandemicin5words': 23994, 'strongertogether': 31441, 'oc': 23086, 'bellends': 4294, 'runny': 28151, 'busier': 5587, 'sablaka': 28235, 'vinita': 35063, 'admittedly': 1949, 'tampa': 32207, '635': 1206, 'counterfeiter': 8261, 'ig1': 16413, '265': 650, 'bats99': 4037, 'supp': 31783, 'cndns': 7098, 'cerealismyeverything': 6350, 'privateer': 25667, 'predator': 25441, 'analytica': 2671, 'intimate': 17246, 'heather': 15385, 'mallick': 20139, 'qataren': 26178, 'occupant': 23096, 'kenttonight': 18248, 'kentsays': 18246, 'auspost': 3493, 'shoplocalraleigh': 29519, 'raleigh': 26509, 'peta': 24584, 'stomach': 31243, 'burglary': 5546, 'ukbidscv19': 34042, 'idiom': 16374, 'hamsterk': 15020, 'ufe': 34012, 'blackmonday': 4669, 'hyperpoland': 16264, 'coronvirusireland': 8143, 'neptune': 22277, 'laidlaw': 18756, 'oklahoman': 23251, 'administer': 1929, 'shrtage': 29616, 'fibre2fashion': 12609, 'steeply': 31077, 'furnace': 13678, 'resuming': 27507, 'utilization': 34691, 'dampen': 8969, 'notallheroeswearcapes': 22754, 'dirkvandenbroek': 9970, 'vakkenvuller': 34746, 'naar': 21919, 'huis': 16116, 'gestuurd': 14024, 'om': 23286, 'dragen': 10567, 'mondkapje': 21393, 'jongen': 17870, 'wilde': 35982, 'hij': 15621, 'puur': 26147, 'uit': 34037, 'veiligheid': 34887, 'eigen': 11127, 'gezondheid': 14059, 'niet': 22480, 'spel': 30554, 'zetten': 36766, 'triest': 33602, 'sukuk': 31633, 'curtailed': 8774, 'nephew': 22275, 'proliferation': 25786, 'workingthefrontlines': 36243, 'ornatejewels': 23567, 'jewellery': 17752, 'savoury': 28625, 'notion': 22793, 'hyperbolic': 16258, 'stockist': 31212, 'umkc': 34099, 'kc': 18164, 'essentialgoods': 11699, 'cowboy': 8350, 'youcantseeme': 36629, 'condone': 7548, 'whr': 35934, 'override': 23771, 'twitterchat': 33931, 'publicrelations': 26028, 'greenstimulus': 14632, 'defcon': 9292, 'grew': 14647, 'flushing': 13007, 'septic': 29157, 'biohazardous': 4582, 'receptacle': 26815, 'appalachian': 2931, 'kicked': 18337, 'andrex': 2711, '9pcs': 1547, 'contained': 7768, 'covin18': 8341, 'yest': 36575, '197': 387, '4577': 966, 'evacuee': 11809, 'waf': 35263, 'carting': 6102, 'comfortfood': 7307, 'sketchlife': 29870, 'pencil': 24414, 'sketchwork': 29872, 'sketchart': 29867, 'charcoaldrawing': 6472, 'graphite': 14565, 'sketchaday': 29866, 'sketchoftheday': 29871, 'notifies': 22788, 'dlx': 10287, 'tunaweza': 33841, 'uchumi': 33996, 'hasa': 15195, 'utalii': 34680, 'wnycosh': 36144, 'bridgend': 5276, '1950': 379, 'crock': 8569, 'rohit': 27949, 'pawar': 24284, 'replicate': 27265, 'fixlethalloopholes': 12851, 'banishthebeastusa': 3888, 'womenofthesentry': 36166, 'chick': 6625, 'freiburg': 13448, 'piecemakers': 24774, 'quilting': 26355, 'shutoff': 29644, 'yearly': 36540, 'resonable': 27409, 'bestiptv': 4391, 'iptvdeals': 17368, 'hotmovies': 15989, 'iptvlinks': 17369, '18movies': 358, 'belgian': 4275, 'solicitor': 30303, 'tar': 32243, 'secured': 28950, 'greenlight': 14630, 'laughlin': 18909, 'edmontonians': 11049, 'yegcc': 36548, 'yeg': 36547, 'mirza': 21152, 'schoolfee': 28756, 'hv': 16211, 'fulf': 13617, '12m': 228, 'hostage': 15964, 'antitrust': 2844, 'imposes': 16625, 'nelson': 22265, 'avid': 3587, 'amateur': 2528, 'thisexplanation': 32848, 'flag': 12862, 'rollercoaster': 27965, 'sixflags': 29845, 'beatcorona': 4136, 'austintx': 3499, 'carlos': 6045, 'torelli': 33268, 'psychological': 25989, 'alerted': 2346, 'backwardshat': 3747, 'oakley': 23017, 'woof': 36195, 'alameda': 2296, 'specification': 30529, 'moisturizing': 21348, 'handmade': 15047, 'jeffbezos': 17695, 'payload': 24300, 'anecdotal': 2717, 'meatfree': 20649, 'dairyfree': 8932, 'ripoffbritain': 27796, 'wreaks': 36336, 'argh': 3082, 'brewed': 5257, 'granule': 14557, 'mug': 21690, 'caffeine': 5739, 'unitelive': 34345, 'steward': 31137, 'avg': 3585, 'sq': 30729, '182': 343, '388': 854, '622': 1196, 'lube': 19781, 'jk': 17790, 'stuffed': 31476, 'plush': 25021, 'teddy': 32400, 'pillow': 24806, 'candid': 5884, 'breach': 5200, 'maralago': 20264, 'sabotage': 28236, 'nk': 22553, 'retribution': 27594, 'xijingping': 36461, 'soleimani': 30296, 'cluster': 7070, 'petri': 24606, 'dish': 10082, 'hazardpay': 15264, 'cnbctv18market': 7096, 'delaying': 9378, 'bahn': 3791, 'lansing': 18825, 'msusocialscience': 21656, 'orr': 23576, 'nuisance': 22902, 'loudly': 19701, 'auspoi': 3489, 'crisiscommunications': 8538, 'fekking': 12528, 'creeping': 8494, 'supermarketbands': 31741, 'priceincrease': 25595, 'avery': 3583, 'khushabu': 18326, 'heatmap': 15388, 'jsc': 17906, '13th': 254, 'semantics': 29077, 'kor': 18559, 'nalgonda': 21968, 'ranga': 26573, 'garu': 13821, 'donthikevegetableprices': 10429, 'grubhub': 14766, 'keda': 18176, 'ceramic': 6347, 'sunda': 31673, 'cedi': 6281, 'ghc': 14081, 'lrw': 19766, 'pov': 25319, 'assembled': 3291, 'enraging': 11499, 'panchetta': 23974, 'goosebump': 14416, 'lockdownaustralia': 19513, 'socio': 30248, 'implosion': 16612, 'hastened': 15206, 'shiite': 29431, 'kurdish': 18651, 'sunni': 31693, 'independence': 16770, 'pudding': 26041, 'creepy': 8496, 'embraced': 11270, 'portland': 25219, 'pdx': 24340, 'argentinian': 3081, 'ginning': 14142, 'igd': 16416, 'regoing': 27031, 'foaming': 13029, 'celebrating': 6295, 'fuelprice': 13608, 'gazettement': 13874, 'utah': 34674, 'bottled': 5044, 'closetheschoolsnow': 7034, 'brockless': 5351, 'timberdine': 33005, 'worcester': 36205, 'icky': 16330, 'amiright': 2600, 'idiotinchief': 16378, 'portacabin': 25210, 'mob': 21264, 'contentsquare': 7796, 'tractor': 33412, 'trailer': 33443, 'fortnum': 13292, 'mason': 20442, 'auburn': 3447, 'throat': 32915, 'incarcerated': 16692, 'dade': 8898, 'rigorous': 27772, 'azerbaijani': 3665, 'smuggle': 30093, 'married': 20371, 'azerbaijan': 3664, '48oz': 998, '45uk': 975, 'amok': 2619, 'murder': 21768, 'stayhomestaysafeugadi': 31001, 'eco': 10965, 'molina': 21358, 'partnered': 24175, 'nancychokeswhilepeoplegobroke': 21993, 'obstructing': 23075, 'shielding': 29423, '21kidsandcounting': 557, 'channel4': 6448, 'abnormal': 1636, 'bfp': 4440, 'azure': 3677, 'striker': 31421, 'gunvolt': 14861, 'cullinane': 8704, 'caricature': 6035, 'southeast': 30423, 'fortlauderdale': 13287, 'westpalmbeach': 35735, 'delraybeachcaricatureartist': 9433, 'sterling': 31118, 'giftcaricatures': 14113, '561': 1107, '501': 1046, '8528': 1409, 'foodland': 13119, 'kamaainas': 18057, 'ukweli': 34075, 'mambo': 20152, 'rais': 26486, 'tujipange': 33823, 'ukweliwamambo': 34076, 'pix': 24869, 'd19': 8885, 'chit': 6695, 'gig': 14116, 'tangled': 32221, 'rapunzel': 26605, 'withholding': 36112, 'criminally': 8525, 'supposedly': 31831, 'cnp': 7102, 'kingston': 18406, 'chatham': 6508, 'brantford': 5177, 'teletown': 32448, 'onus': 23404, '5ofusathome': 1162, '402': 912, 'namibia': 21983, 'naomi': 22003, 'broady': 5347, 'tennis': 32497, 'unfit': 34273, 'conducting': 7551, 'disinfection': 10094, 'maid': 20033, '69': 1240, '702': 1274, '2706': 658, 'supersirvientas': 31768, 'anglo': 2739, 'saxon': 28634, 'dawnbilbrough': 9091, 'p7ft9ham7i': 23856, 'minishops': 21120, 'mpesa': 21614, 'whatsup': 35800, 'uhurumustgo': 34031, 'yvonne': 36703, 'alai': 2294, 'mbagathi': 20556, 'hat': 15208, 'knn': 18498, 'shelved': 29400, 'touristy': 33343, 'belongs': 4299, 'surrendered': 31880, 'folsom': 13064, 'cupcakedecorating': 8736, 'wireless': 36072, 'battered': 4042, 'sanctioned': 28423, 'revelation': 27633, 'onu': 23402, 'discriminate': 10058, 'handshake': 15062, 'fwaa': 13709, 'cohabitants': 7167, 'magic': 19991, 'magichour': 19994, 'beatboredom': 4135, 'familiar': 12279, 'bavis': 4052, '144': 262, '1425': 259, 'xijinping': 36462, 'ammex': 2609, 'boff': 4869, 'saddos': 28262, 'distinct': 10197, 'fraudalert': 13387, 'adminstration': 1936, 'reshape': 27368, 'kitted': 18448, 'stampeding': 30838, 'metrouk': 20909, 'indiavscorona': 16799, 'rightfully': 27768, 'presenter': 25517, 'sup': 31707, '5ft10': 1142, 'curly': 8759, 'pride': 25609, 'appearance': 2944, 'truckload': 33669, 'negate': 22235, 'paired': 23920, 'rake': 26502, 'objectionable': 23043, 'barrie': 3966, '3145169861': 776, 'hussle': 16202, 'stephenschork': 31100, 'telegraphed': 32440, 'br': 5120, 'devote': 9730, 'subjective': 31520, 'krone': 18615, 'tabled': 32113, 'edm': 11043, '318': 781, 'iremedy': 17383, 'alum': 2503, 'endowment': 11415, 'reasearch': 26764, 'informationagainstcovid': 16924, 'deglobalisation': 9352, 'coun': 8238, 'argued': 3087, 'unusual': 34489, 'yo': 36594, 'quest': 26322, 'hyperlink': 16261, 'translates': 33489, 'p1': 23849, 'biotech': 4597, 'wago': 35270, 'cycc': 8863, 'myeloid': 21845, 'leukemia': 19154, 'cyclacel': 8864, 'nov': 22824, 'admiration': 1940, 'singlehandedly': 29801, 'piss': 24848, 'djavad': 10276, 'salehi': 28353, 'isfahani': 17429, 'considers': 7663, 'assessed': 3297, 'windsor': 36031, 'essex': 11711, '5fm': 1140, '91': 1470, '9fm': 1542, 'unverified': 34495, 'pa14': 23858, 'notthatguy': 22811, 'demcast': 9450, 'mathaithai': 20493, 'cologne': 7243, 'scented': 28720, 'restroom': 27492, 'salem': 28354, 'socialdistancing2020': 30203, 'fightclub': 12635, 'footballer': 13171, 'gloved': 14249, 'caroffer': 6060, 'outintheworld': 23661, 'ellendegeneres': 11226, 'jimmyfallon': 17779, 'kellyclarksonshow': 18226, 'prospertx': 25877, 'dfw': 9743, 'metroplex': 20907, 'stampede': 30837, 'truedat': 33673, 'woodford': 36186, 'gvt': 14884, 'stophoard': 31275, 'coronatamilnadu': 8101, 'poitin': 25090, 'theindiansun': 32702, 'stopitplease': 31281, 'gmtv': 14278, 'gmb': 14272, 'improperly': 16645, 'logistic': 19587, 'tatter': 32283, 'perfumed': 24496, 'sparkle': 30490, 'sparklesanitizer': 30491, 'negotiating': 22248, 'sask': 28546, 'spirited': 30591, 'wit': 36097, 'kccaatwork': 18165, 'aceng': 1773, 'teampete': 32353, 'teampeteforever': 32354, 'rulesoftheroad': 28131, 'discipline': 10021, 'excellence': 11923, 'fractionalshares': 13351, 'checkitout': 6542, 'optionstrading': 23497, '1am': 425, 'mondaymorning': 21382, 'mondaymotivaton': 21384, 'mondaymood': 21381, 'novacyt': 22828, 'ncyt': 22174, 'profited': 25741, 'disinformation': 10099, 'purse': 26121, 'chiang': 6616, 'mai': 20032, 'threadbare': 32894, 'pint': 24832, 'lai': 18754, 'mohammed': 21334, 'lacasadepapel4': 18722, 'yahoo': 36499, 'diversifying': 10246, 'back2back': 3719, '363': 832, 'gmt': 14277, 'mitrade': 21212, 'pc': 24323, 'bloomberg': 4777, 'feeking': 12521, 'ingested': 16948, 'phosphate': 24713, 'q22': 26166, 'automatic': 3539, 'peeler': 24377, '0715783634': 91, 'homedecor': 15818, 'kitchendecor': 18436, 'glammyhomekenya': 14188, 'zev': 36767, 'trumpedupvirus': 33693, 'minus': 21140, '6randonl': 1261, '219': 549, '9739': 1526, 'pertaining': 24569, 'trumpcrash': 33691, 'trumptheworstpresidentever': 33736, 'cpacpatientzero': 8363, 'template': 32468, 'sharon': 29337, 'graham': 14526, 'outing': 23660, 'poetsandrhymers': 25075, 'bravo': 5189, 'coralsprings': 7950, 'jamm': 17626, 'truthabtchina': 33758, '09032144592': 122, 'osibanjothesaver': 23587, 'asuustrike': 3344, 'coronacake': 8014, 'tpocolypse': 33385, 'milkman': 21050, 'ancestor': 2684, 'stillnooatmilk': 31161, 'romania': 27977, 'consistently': 7669, 'ranked': 26582, 'tighter': 32984, 'harrogate': 15176, 'tiresome': 33055, 'schoolclosures': 28752, 'prek': 25472, 'homeschool': 15850, 'freeresources': 13438, 'biodiesel': 4574, 'snag': 30098, 'vistek': 35132, 'committal': 7357, 'maestro': 19971, 'cherished': 6594, 'ethyl': 11763, 'pleasehelp': 24969, 'quarantinecompanions': 26254, 'dogsarelove': 10346, 'doglovers': 10343, 'helpthedogs': 15478, 'bdrr': 4111, 'dented': 9506, 'accomodate': 1732, 'pc19': 24324, 'washhands': 35429, 'av': 3557, 'stimulated': 31168, 'unexpectedly': 34261, 'krasselt': 18595, 'ramin': 26537, 'toloui': 33206, 'primeminister': 25619, 'getwellboris': 14054, 'prayforboris': 25402, 'doasyouretold': 10302, 'crunch': 8631, 'deploying': 9541, 'bmtc': 4821, 'surya': 31909, 'tub': 33797, 'undelivered': 34174, 'mister': 21198, 'cessation': 6362, 'sesame': 29198, 'paraguayan': 24092, 'fuckn': 13584, 'catp': 6186, 'corona19': 8000, 'adobeexpcloud': 1955, 'ham': 14997, 'stubbornly': 31459, 'wallpaper': 35332, 'paste': 24209, 'taker': 32170, 'faithoverfear': 12247, 'loveistheanswer': 19718, 'prayerforapandemic': 25398, 'whatthefuck': 35804, 'dotard': 10488, 'misguided': 21163, 'pleb': 24975, 'pricechopper': 25585, 'market32': 20312, 'takingcareofmyparents': 32178, 'dro': 10641, 'q4withbq': 26169, 'iloveqatar': 16499, 'dohanews': 10351, 'fourth': 13328, 'housebound': 16005, 'noah': 22576, 'printable': 25634, 'chiswick': 6694, 'stretch': 31408, 'cedar': 6280, 'chrest': 6741, 'allentown': 2410, 'notch': 22758, 'spotless': 30661, 'splash': 30606, 'lehighvalley': 19071, 'mygovindia': 21849, 'freaky': 13405, 'insan': 17030, 'artmeme': 3189, 'supplychainmanagement': 31794, 'manufacturingcapability': 20245, 'scm': 28782, 'wirh': 36074, 'rs500': 28075, 'shd': 29358, 'creditworthiness': 8489, 'dinged': 9929, 'iaconelli': 16286, 'authored': 3518, 'govern': 14468, 'prototype': 25921, 'handful': 15035, 'obv': 23082, 'nowheretogo': 22848, 'pjs': 24877, 'robe': 27896, 'script': 28842, 'slumping': 30009, 'screwing': 28840, 'motorhome': 21566, 'pei': 24392, 'hottest': 15995, 'thorn': 32874, 'lauder': 18902, 'walkin': 35317, 'embargo': 11256, 'fakenewsmedia': 12258, 'tiger': 32978, 'dismisses': 10114, 'bump': 5516, 'authorian': 3519, 'etimeslifestyle': 11766, 'incomplete': 16726, 'notsick': 22808, 'ifucan': 16411, 'giveaway': 14161, 'andchanged': 2694, 'checkin': 6540, 'jefferson': 17697, 'commended': 7334, 'restuarant': 27496, 'blding': 4705, 'sanitiation': 28454, 'inspiration': 17067, 'cycleways': 8867, 'fairer': 12229, 'niniolafantasyvideo': 22519, 'sibling': 29661, '850': 1404, 'eighth': 11130, 'ravenous': 26638, 'cautioning': 6207, 'cairandale': 5748, 'legacy': 19046, 'disruptors': 10166, 'luxuryconnect': 19853, 'luxurycruxx': 19854, 'readily': 26692, 'travelinn': 33537, 'clove': 7053, 'keyfoods': 18289, 'barry': 3971, 'pleasantly': 24965, 'abusive': 1688, 'supportworkers': 31826, 'tuesdaymotivation': 33814, 'swpp2nyu': 32044, 'essence': 11691, 'retrogress': 27599, 'comatose': 7275, 'gawked': 13862, 'rodriguez': 27939, 'kismenti': 18427, 'coz': 8360, 'garcia': 13800, 'katalonski': 18118, 'biha': 4520, 'jak': 17602, 'thegame': 32687, 'openborders': 23428, 'mijatovic': 21026, 'surfacing': 31858, 'droplet': 10647, 'linger': 19326, 'transmittable': 33496, 'socializing': 30227, 'dusting': 10788, 'tranny': 33459, 'readiness': 26693, 'backtobasics': 3740, 'correspondent': 8175, 'edmonton': 11048, 'bookstore': 4955, 'forging': 13240, 'incidental': 16705, 'screenshot': 28836, 'gristle': 14681, 'arwady': 3205, 'clapping': 6887, 'ranking': 26583, 'asexuals': 3220, 'homeschoolers': 15852, 'butterfly': 5636, 'prostitute': 25878, 'pastor': 24214, 'holster': 15793, 'trumperzombieapocalypse': 33696, 'capitalizing': 5955, 'opposed': 23471, 'shipper': 29447, 'bochenek': 4852, 'contributor': 7842, 'cup': 8733, 'stimulate': 31167, 'gaither': 13750, 'subscriber': 31534, 'daera': 8902, 'farmgate': 12333, 'touchless': 33324, 'brewbird': 5255, 'freshly': 13472, 'baylegal': 4061, 'repossession': 27285, 'communicate': 7380, 'latamadvisor': 18870, 'dialogue': 9783, 'lifeguard': 19251, 'nourished': 22820, 'fairweather': 12240, 'brewing': 5260, 'gerbil': 13999, 'wrapping': 36332, 'mtrs': 21671, '2103252168': 539, 'uba': 33985, 'ngwoke': 22429, 'ifeanyi': 16401, 'retrenched': 27592, 'commenting': 7339, 'winsight': 36057, 'automobile': 3543, 'jon': 17866, '9420': 1498, 'sw': 31958, 'tutorial': 33887, 'shopifycrowd': 29509, 'nightingale': 22494, 'tee': 32404, 'mooted': 21462, 'middlehaven': 20992, 'teesside': 32414, 'thisisnotadrill': 32854, 'pearlessence': 24359, 'foto': 13314, 'nella': 22263, 'storia': 31330, 'filum': 12685, 'ordinata': 23521, 'che': 6522, 'ci': 6786, 'reso': 27401, 'cinesi': 6803, 'shitpost': 29463, 'poker': 25097, 'biganimetiddies': 4501, 'ponrhub': 25153, 'wanking': 35365, 'halloween': 14985, 'redistribution': 26915, 'redistribute': 26913, 'tonne': 33230, 'jacobreesmogg': 17586, 'abortion': 1641, 'religious': 27134, 'utilizing': 34694, 'libya': 19221, 'determine': 9685, 'cavalier': 6213, 'stepup': 31106, 'spectacularly': 30535, 'churchill': 6780, 'part1': 24158, 'dalby': 8939, 'labelled': 18705, 'scandal': 28684, 'sweepstakes': 31991, 'day17oflockdown': 9108, 'lockdownmzansi': 19537, 'pterodactyl': 26001, 'coronauk': 8112, 'superficial': 31723, 'reconsider': 26847, 'consumerinsight': 7729, 'cafecreme': 5737, 'chocolatedrink': 6711, 'kuka': 18639, 'navimumbai': 22117, 'woven': 36321, 'mahdi': 20020, '1h30': 434, 'occasional': 23089, 'nap': 22004, 'klang': 18462, 'guessed': 14808, 'theofficenbc': 32729, 'angelamartin': 2726, 'slight': 29973, 'indefensible': 16765, 'worldhappinessday': 36266, 'fajita': 12249, 'peg': 24387, 'jihad': 17771, 'azour': 3673, 'grinding': 14673, 'beautyandthebeast': 4155, 'belle': 4292, 'westwing': 35740, 'disneyclassic': 10117, 'touchpoints': 33326, 'qell': 26185, 'rear': 26760, 'posterior': 25270, 'frail': 13357, 'onl': 23345, 'strensall': 31399, '40p': 926, '90p': 1469, 'unsure': 34470, 'stonely': 31248, 'generationgame': 13946, 'contestant': 7800, 'conveyor': 7879, 'whencoronavirusisover': 35824, 'panicshop': 24041, 'wherestheprizes': 35842, 'lehman': 19072, 'appl': 2953, '08': 105, 'intc': 17142, 'msft': 21641, 'jnj': 17798, 'actionable': 1823, 'healthandsafety': 15317, 'mainin': 20054, 'burland': 5554, 'clever': 6978, 'jamie': 17625, 'keepcookingcarryon': 18190, 'flig': 12939, 'coronaquarantinechronicles': 8092, '80sbaby': 1370, 'considerable': 7657, 'reiterates': 27075, 'combatting': 7279, 'employing': 11345, 'pacific': 23864, 'seegene': 28979, 'tripled': 33623, 'celtrion': 6309, 'chugai': 6774, 'csl': 8668, 'ffm': 12586, 'nopanic': 22672, '3500': 811, 'redeem': 26892, 'polarizers': 25103, 'rod': 27935, 'sims': 29769, 'rational': 26624, 'justifiable': 17979, 'groundbreaking': 14734, 'glastonbury': 14197, 'queus': 26334, 'firends': 12780, 'incense': 16696, 'pokeball': 25093, 'pokemongo': 25095, 'moreballsplease': 21480, 'trendies': 33575, 'megachurch': 20734, 'refiner': 26967, 'osp': 23591, 'castelvolturno': 6146, 'nonconventional': 22637, 'utahns': 34677, 'hyvee': 16282, 'obtaining': 23080, 'imperative': 16591, 'uprising': 34550, 'coordinator': 7929, '866': 1420, '446': 956, '9055': 1465, 'aunt': 3472, 'interviewing': 17240, 'u6ptbqeqdr': 33977, 'blogalert': 4758, 'wildfire': 35986, 'definite': 9330, 'torros': 33286, 'naira': 21953, '145': 263, 'backing': 3729, 'pippa': 24842, 'pleasure': 24974, 'tofu': 33121, 'servsafe': 29197, 'experien': 12024, 'agewell': 2134, 'cspi': 8670, 'cookie': 7901, '570': 1110, 'rool': 27995, 'kenneth': 18241, 'copeland': 7937, 'walmartonline': 35337, 'shoponline': 29524, 'storepickup': 31327, 'outofstock': 23676, 'onlinesafetyathome': 23368, 'enabling': 11374, 'shameonsherwin': 29298, '2015': 482, 'buildingautomation': 5480, 'skillset': 29882, 'niagara4': 22451, 'easyio': 10909, 'pandemiclife': 23996, 'crook': 8579, 'brentoil': 5247, 'tradingstrategy': 33432, 'rideau': 27743, 'cottage': 8223, '10ft': 163, 'atk': 3374, '526': 1082, '3648': 833, 'obsessively': 23070, 'cineworld': 6804, 'ashworth': 3237, 'reinforcing': 27063, 'judging': 17923, 'intends': 17155, 'flatulence': 12904, 'authorises': 3522, 'gosport': 14437, 'fc': 12433, 'localfootball': 19487, 'nonleague': 22647, 'portsmouth': 25226, '10p': 171, 'lockdownzim': 19557, 'boxing': 5086, 'awkward': 3633, 'companion': 7405, 'weep': 35621, 'weighed': 35637, 'relates': 27090, 'stabilizes': 30791, 'santizer': 28498, 'santizers': 28499, 'ambo': 2558, 'journos': 17894, 'skeleton': 29860, 'usfda': 34650, 'californiashutdown': 5787, 'californiaquarantine': 5786, 'amplifying': 2632, 'incurred': 16760, 'encouragement': 11387, '946': 1499, 'astate': 3328, 'littlerock': 19398, 'tuesdayvibes': 33818, 'othe': 23606, 'nutter': 22952, 'camper': 5850, 'foster': 13311, 'edt': 11055, 'liu': 19402, 'guanguan': 14787, 'cnsphoto': 7103, 'andy': 2715, 'kanban': 18071, 'taiwan': 32151, 'anonymous': 2799, 'hood': 15893, 'commissary': 7349, 'forthood': 13283, 'usarmy': 34615, 'iicorpscovid19': 16452, 'texasstrong': 32563, 'collectively': 7230, 'neoliberalism': 22271, 'meritocracy': 20859, 'stereotype': 31109, 'lav': 18925, 'aggarwal': 2137, 'icmr': 16334, 'drawer': 10589, 'squeaky': 30745, 'enroll': 11503, 'qualifying': 26224, 'toughest': 33332, 'authorised': 3521, 'adhere': 1902, 'separately': 29147, 'performed': 24492, '24th': 620, 'beaumont': 4149, 'kfdm': 18303, 'rocio': 27922, 'fe': 12460, 'dcra': 9137, 'permit': 24524, 'oconnor': 23113, 'essentialbusiness': 11696, 'zinccafeandmarket': 36787, 'hospitalityindustry': 15955, 'beasley': 4131, 'italianfood': 17502, 'broadway': 5346, '3kg': 878, 'offprem': 23175, 'cbnnigeria': 6228, 'chickenshortage': 6630, 'sears': 28904, 'kers': 18269, 'taxman': 32301, 'perimeter': 24503, 'nvz': 22957, 'unfeasible': 34270, 'suckler': 31588, 'herd': 15528, 'welsh': 35679, 'auchan': 3448, 'invite': 17319, 'understandable': 34211, 'subsistence': 31552, 'miner': 21096, 'lastroll': 18863, 'shitjustgotreal': 29460, 'scripture': 28845, 'heathen': 15384, 'ruin': 28121, 'parked': 24133, 'redirected': 26909, 'sept': 29155, 'continent': 7803, 'exported': 12072, 'hayfever': 15258, 'versatility': 34953, 'shelie': 29389, 'miller': 21062, 'vulnerablehour': 35243, 'sakshi': 28343, 'upla': 34537, 'seinfeld': 29002, 'concluded': 7524, 'nighttime': 22501, 'donor': 10410, 'groceryretail': 14702, 'prospective': 25872, '63': 1201, 'intenders': 17154, 'desirable': 9622, '1920': 368, 'electro': 11185, 'inauguration': 16687, 'ceremony': 6353, 'healthybody': 15351, 'healthyfood': 15353, 'shorter': 29567, 'nestum': 22290, 'ceralac': 6346, 'peoplehelpingpeople': 24459, 'ageguide': 2125, 'refuted': 27006, 'wicked': 35950, 'coronatuerkiye': 8111, 'n95masks': 21915, 'enabled': 11370, 'rider': 27744, 'platinum': 24931, 'ncov': 22162, 'lolol': 19603, 'charleston': 6485, 'doomsayer': 10459, 'sewer': 29227, 'walter': 35345, 'amz': 2655, 'amazonseller': 2545, 'onlinecommerce': 23352, 'etail': 11739, 'jsbankfightscorona': 17905, 'resumed': 27506, 'seventh': 29216, 'fiascorona': 12602, 'deprive': 9558, 'scammy': 28677, 'ventillation': 34915, 'kddr': 18170, 'burgum': 5548, 'nlp': 22560, 'killerrobot': 18375, 'bot': 5034, 'cobot': 7122, 'humanoid': 16135, 'r118': 26388, '786': 1334, '0147': 30, 'mhc': 20932, 'pretoria': 25555, 'oe': 23138, 'healthtips': 15344, 'acesupermarket': 1774, 'aceeatery': 1770, 'acelounge': 1772, 'acefamily': 1771, 'oyo': 23838, 'ogbomoso': 23185, 'osogbo': 23590, 'ileife': 16468, 'ijebuode': 16456, 'abeokuta': 1612, 'sponge': 30628, 'santiser': 28496, 'retailvscorona': 27557, 'scheduling': 28727, 'derivative': 9579, 'enhance': 11469, 'schmitt': 28739, 'inanimate': 16684, 'micron': 20972, 'smog': 30076, 'aimless': 2222, 'khqa': 18325, 'tri': 33584, 'amtrak': 2644, 'cellophane': 6305, 'preparers': 25492, 'repel': 27246, 'wilko': 35996, 'firstworldproblems': 12804, 'howtoshop': 16053, 'lifesaver': 19260, 'deploy': 9539, 'portable': 25209, 'measurement': 20645, 'nyaope': 22970, 'morena': 21486, 'boloka': 4903, 'haba': 14899, 'powerfulpatientpartner': 25335, 'realised': 26724, 'lockwood': 19571, '27th': 665, 'thanksforthelove': 32609, 'timeforadrink': 33012, 'complains': 7452, 'ou': 23624, 'qualitative': 26225, 'cro': 8562, 'userresearch': 34647, 'disrespectful': 10161, 'stealth': 31063, 'strait': 31351, 'dol': 10360, 'americorps': 2589, 'promoter': 25805, 'bareshelves': 3934, 'jet': 17744, 'spicejet': 30569, 'waterloo': 35481, 'gravenhurst': 14586, 'muskoka': 21798, 'reinvesting': 27070, 'windham': 36025, 'ethan': 11752, 'ostroff': 23597, 'troutmanpepper': 33655, 'supplychainchallenge': 31793, 'sincerely': 29785, 'counselor': 8249, 'surveyed': 31890, 'indecent': 16763, 'regretted': 27035, '990': 1534, 'dmme': 10293, 'nugget': 22901, 'fucknuggets': 13586, 'burnt': 5565, 'hopeful': 15914, 'housingmarket': 16022, 'whenwillpricesfall': 35829, 'homeprices': 15846, 'luxur': 19849, 'sama': 28391, 'tingin': 33034, 'sakin': 28341, 'mga': 20925, 'kanina': 18078, 'coronavirius': 8127, 'coronanews': 8073, 'novelcorona': 22834, 'beresponsible': 4343, 'keepcalm': 18183, 'aardwolfkenya': 1580, 'sanitising': 28460, 'logistical': 19588, 'sole': 30295, 'discretion': 10055, 'verb': 34926, 'sellive': 29065, 'shoplive': 29516, 'liveshopping': 19417, 'salestool': 28361, 'kshs110': 18624, 'cocoon': 7140, 'musicindustry': 21793, 'dismiss': 10111, 'misused': 21202, 'inconclusive': 16727, 'npd': 22860, 'marshall': 20377, 'cohen': 7169, 'athletic': 3365, 'footwear': 13182, 'upswing': 34565, 'interpret': 17219, 'mounted': 21579, 'brushed': 5401, 'adhesive': 1908, 'toiletpapers': 33172, 'toiletpapercheap': 33154, 'botanaway': 5035, 'microbial': 20966, 'promptly': 25814, 'intentional': 17165, 'sunshine': 31702, 'nevada': 22319, 'casino': 6138, 'barmouth': 3946, 'stayaway': 30951, 'notwelcome': 22814, 'curated': 8742, 'nigerdeltaunrest': 22486, 'bokoharam': 4893, 'insurgency': 17137, '2016recession': 484, 'occasioned': 23091, 'unsustainability': 34474, 'gargantuan': 13808, 'toco': 33109, 'tococares': 33110, 'enoughtogoround': 11493, 'northgate': 22716, 'tuesdaymorning': 33813, 'weedlovers': 35612, 'masshole': 20452, 'snoopdogg': 30138, 'mktg': 21229, 'stimulusbill': 31171, 'rookie': 27994, 'beijing': 4256, 'urn': 34595, 'chinesevirus19': 6679, 'persona': 24551, 'lexington': 19177, 'crushcovid': 8636, 'lagossdginvest': 18747, 'pandemicbanter': 23988, 'craigdavid': 8404, '7days': 1349, 'igotthevirusonmonday': 16437, 'thenchilledonsunday': 32723, 'coronavibez': 8122, 'toiletpaperpandemic': 33168, '2020problems': 495, 'prankstarz': 25387, 'lockedinwithmom': 19562, 'plattsmetals': 24935, 'plattscommoditynews': 24934, 'undeniable': 34175, 'contentmarketing': 7794, 'rwdsu': 28195, 'criticizing': 8556, 'walkthrough': 35323, 'c5': 5707, 'daylihht': 9121, '7kg': 1351, 'backpack': 3735, 'teamgp': 32349, 'destabilized': 9648, 'cashback': 6122, 'storing': 31331, 'confidential': 7567, 'august': 3471, 'huntsville': 16179, 'selfdistancing': 29021, 'ment': 20809, 'socaildistancing': 30185, 'onlinebusiness': 23349, 'blaqsbi': 4692, 'ado': 1952, 'mightyoure': 21016, 'benson': 4332, 'cack': 5726, 'inadequately': 16679, 'miniscule': 21119, 'asthmatic': 3331, '230': 583, '1400': 257, 's9': 28221, 'retrospect': 27600, 'illuminating': 16488, 'bettson': 4416, 'bse': 5414, 'nse': 22875, 'nanking': 21997, 'scorn': 28795, 'invasive': 17285, 'boarding': 4838, 'tota': 33299, 'opportunism': 23465, 'stuart': 31456, '1993': 406, 'whispering': 35878, 'ego': 11109, 'spiritual': 30593, 'sputnik': 30723, 'rachel': 26423, 'clarke': 6897, 'chicagolockdown': 6623, '7to': 1357, 'recurrence': 26877, 'convinces': 7887, 'bayarea': 4054, 'vacillation': 34729, 'incompetence': 16723, '285': 674, 'addict': 1875, 'withheld': 36110, 'withdrawal': 36103, 'zap': 36728, 'joule': 17887, 'rebecca': 26783, 'stored': 31319, 'otp': 23614, 'yelpatlanta': 36562, 'yelpotp': 36565, 'yelpelite': 36564, 'nurofen': 22922, 'ibuprofen': 16308, 'bmj': 4819, 'explode': 12048, 'wel': 35658, 'euro2020': 11789, 'transfermarkt': 33472, 'operable': 23440, 'durable': 10772, 'vernon': 34947, 'oglala': 23189, 'sara': 28517, 'omaha': 23289, 'abourezk': 1645, 'ehlers': 11120, 'busi': 5585, 'chris': 6742, 'hayes': 15257, 'bother': 5039, 'throe': 32917, 'farmworkers': 12346, 'broda': 5352, 'dale': 8940, 'steyn': 31140, 'jyoti10': 18011, 'rnr': 27874, 'electron': 11187, 'tw': 33895, 'onlinestore': 23374, 'artnoisestore': 3191, 'ygk': 36581, 'fbcnews': 12428, 'workable': 36214, 'drillers': 10622, 'eia': 11124, 'clapforourcarers': 6883, 'curbed': 8745, 'slovakia': 29994, 'shutdownaustralia': 29635, 'stem': 31087, 'exacting': 11904, 'macro': 19929, 'cheeseplease': 6558, 'koomo': 18555, 'bandkarobazaar': 3870, 'bcos': 4098, 'interfere': 17189, 'nationalise': 22056, 'tumbling': 33835, 'commercialrealestate': 7345, 'fledged': 12918, 'dunzo': 10765, 'sharechat': 29320, 'strangled': 31362, 'hawkins': 15251, '20million': 528, 'sharmin': 29336, 'mossavar': 21532, 'rahmani': 26466, 'sachs': 28245, 'justathought': 17976, 'letsworktogether': 19145, 'deduction': 9272, 'hongkong': 15881, 'ifc': 16399, 'fooling': 13165, 'coronaalert': 8003, 'muchmind': 21676, 'reflexive': 26979, 'propitiousness': 25841, 'braided': 5135, 'inch': 16701, 'joannstores': 17803, 'domex': 10382, 'sacred': 28250, 'themselve': 32720, 'r9': 26406, 'f4f': 12155, 'likeforlikes': 19286, 'followforfollowback': 13058, 'superman': 31736, 'offender': 23153, 'adventuregame': 1992, 'showingmyage': 29599, 'vortex': 35206, 'chunk': 6777, 'disgracefully': 10075, 'deplorable': 9537, 'nots': 22807, 'espionage': 11682, 'exacerbates': 11900, 'csas': 8660, 'farmersmarkets': 12332, 'nakasero': 21963, 'bypassed': 5699, 'greengrocer': 14627, 'preferring': 25465, 'wagner': 35269, 'discouraging': 10045, 'playground': 24944, 'kakenews': 18042, 'risinguptothechallenges': 27820, 'strap': 31363, 'tester': 32547, 'swab': 31959, 'lockdownkarma': 19530, 'supervalu': 31775, 'plng': 24992, 'hurot': 16185, 'formed': 13257, 'acceptance': 1713, 'strip': 31425, 'endeavour': 11398, 'overflowing': 23744, 'uneaten': 34244, 'mouldy': 21573, 'hoarderish': 15724, 'mondayvibes': 21389, 'mondayblogs': 21380, 'towelchallenge': 33358, 'sart': 28543, 'wewillsurvive': 35756, 'illinoisprimary': 16481, 'needfood': 22221, '89': 1440, 'cpg': 8368, 'fastmovingconsumergoods': 12382, 'cpgconnectnews': 8369, 'dh': 9748, '807': 1365, 'weirdo': 35650, 'hackin': 14910, 'peloton': 24401, 'brandindex': 5162, 'stationary': 30921, 'bike': 4525, 'forage': 13185, 'ransacked': 26585, 'kait': 18038, 'turbo': 33855, 'mifi': 21012, 'injured': 16987, 'alamo': 2297, 'instagood': 17085, 'peeweeherman': 24385, 'peeweesbogadventure': 24386, 'overbuying': 23722, '407': 916, 'skewed': 29874, 'extrovert': 12132, 'juggling': 17935, 'townsville': 33365, '3pm': 894, 'restitution': 27470, 'wbab': 35506, 'weathered': 35571, 'positivetrumpspanic': 25247, 'fridaymotivation': 13483, 'positivethoughts': 25246, 'reservation': 27361, 'pityous': 24864, 'celeste': 6299, 'leatherette': 19015, 'moodboost': 21450, 'reshaping': 27371, 'pri': 25581, 'rank': 26581, 'visualization': 35137, 'civilwar': 6853, 'unwillingness': 34504, 'saddownsomewhere': 28263, 'outchea': 23643, '362': 831, 'day4': 9114, 'capitalise': 5947, 'carnage': 6051, 'sunflower': 31690, 'nine': 22516, 'tbilisi': 32313, 'escalated': 11657, 'florist': 12981, 'homo': 15868, 'nosleepgang': 22743, 'zombielife': 36811, 'teatrees': 32370, 'retweetplease': 27610, '2019cov': 488, 'viruscorona': 35110, 'joeledley': 17828, 'cpfc': 8367, 'removal': 27188, 'deepak': 9277, 'parekh': 24117, 'leash': 19011, 'cordantlovespeople': 7955, 'feedbackfriday': 12501, 'profound': 25751, 'uniqlo': 34325, 'eyeing': 12141, 'downtime': 10540, 'warwick': 35417, 'sandown': 28434, 'slack': 29926, 'cringe': 8528, '100b': 132, 'writte': 36357, 'thankyoudoctors': 32622, 'shibley': 29418, 'worthy': 36311, 'unwilling': 34503, 'dispatch': 10128, 'societyandculture': 30245, 'columbusohio': 7270, 'netflixparty': 22299, 'jihadist': 17772, 'suicide': 31623, 'bemoaning': 4304, 'tuition': 33822, 'expatriate': 12006, 'thorough': 32878, 'autonomous': 3548, 'hibinate': 15581, 'homealone': 15801, 'sobored': 30181, 'bigbox': 4504, 'coronaus': 8117, 'funnyshirts': 13664, 'whitechapel': 35885, '512': 1068, 'toiletpapermath': 33165, 'homework': 15862, 'crowdfunding': 8602, 'wiring': 36075, 'unconscionable': 34155, 'everclear': 11840, '190': 362, 'saveournurses': 28610, 'projected': 25777, 'granting': 14555, 'thorny': 32877, 'gh': 14069, 'allw': 2443, 'salina': 28364, 'nob': 22577, 'prognosis': 25756, 'agitate': 2149, 'reversed': 27645, 'redress': 26923, 'sag': 28303, 'eveyone': 11870, 'fiver': 12839, 'betty': 4417, 'pie': 24772, 'saveourgrowers': 28609, 'growyourown': 14762, 'concession': 7517, 'continuity': 7816, 'personality': 24556, 'intensely': 17157, 'used2': 34636, 'prioritised4': 25642, 'due2': 10726, 'sympathize': 32071, 'unsold': 34460, 'stelvio': 31086, 'ftcscambingo': 13560, 'bilateral': 4531, 'assessing': 3298, 'retaliatory': 27567, 'sanauto': 28418, 'spraying': 30676, 'coronafighters': 8036, 'tv9': 33891, 'homeneeds': 15841, 'doug': 10502, 'ford': 13203, 'eb': 10930, 'unneeded': 34397, 'westmidland': 35730, '57': 1109, 'shoplifting': 29515, 'midland': 20998, 'militarized': 21042, 'bitterly': 4634, 'outrageously': 23688, 'cunningham': 8725, 'oldglorydistilling': 23262, 'hesitate': 15564, 'destroys': 9660, 'janeeyre': 17634, '6ftplease': 1252, 'strategia': 31367, 'epa': 11579, 'microsure': 20982, 'horrifying': 15943, 'airfare': 2242, 'roundtrip': 28039, 'vegasshutdown': 34871, 'askforhelp': 3259, 'offersomehelp': 23163, 'edemame': 11027, 'sighting': 29707, 'loch': 19504, 'ness': 22284, 'frenetic': 13453, 'babysitter': 3708, 'geneva': 13956, 'avengersendgame': 3575, 'untransformed': 34486, 'coining': 7186, 'confiscatory': 7585, 'blackfriday': 4661, 'greedybastards': 14617, 'personalized': 24557, 'harriscounty': 15173, 'constable': 7680, 'm8': 19899, 'laser': 18848, 'newburgh': 22336, 'saturdaymotivation': 28566, 'tweaked': 33900, 'confront': 7592, 'sf': 29239, 'skillet': 29880, 'gibb': 14105, 'hitendra': 15686, 'chaturvedi': 6513, 'huffing': 16104, 'haribos': 15154, 'altruism': 2501, 'vanderbilt': 34787, 'goldsmith': 14352, 'topahov': 33246, 'hoardingvirus': 15729, 'exponentialgrowth': 12068, 'flatteningthecurve': 12898, 'toiletpaperwars': 33179, 'mint': 21136, '1oz': 444, 'apmex': 2905, 'sterlingjacksonrealestate': 31120, 'sterjackre': 31117, 'sterlingjackson': 31119, 'realestateisgreat': 26712, 'worldwarc': 36283, 'doyourpart': 10555, 'goodjob': 14382, 'ransom': 26587, 'fellowship': 12536, 'condemning': 7536, 'setlife': 29205, 'filmcrew': 12673, 'intial': 17245, 'iif': 16453, 'cor': 7948, 'needful': 22222, 'overdoses': 23734, 'brutalised': 5405, 'confrontational': 7593, 'cultured': 8715, 'populated': 25189, 'savehowie': 28600, 'empowerment': 11349, 'burial': 5551, 'rocketed': 27927, 'nyers': 22983, 'kixies': 18455, 'preliminary': 25474, 'etauto': 11742, 'communicable': 7379, 'nicd': 22454, '0800': 107, '029': 53, 'transurban': 33510, 'tollroads': 33204, 'trucking': 33668, 'bondi': 4920, 'oag': 23013, '442': 955, '9854': 1531, 'altruistic': 2502, 'emphasise': 11326, 'bankingindustry': 3895, 'spook': 30638, 'bandwidth': 3873, 'horrified': 15942, 'ugt': 34023, 'mercandise': 20832, 'listened': 19365, 'quah': 26215, 'aggregate': 2140, 'jaw': 17666, 'seclusion': 28933, 'roundy': 28041, 'consumes': 7752, 'hpqm77pgsd': 16058, 'indiana': 16790, 'laborecon': 18710, 'tpselfies': 33388, 'scaring': 28704, 'wuarantinememe': 36386, 'irony': 17395, 'bun': 5521, 'litter': 19386, 'amreeka': 2636, 'lifeblood': 19246, 'cashisking': 6131, 'sixoclock': 29847, 'glitch': 14215, 'slows': 30001, 'denis': 9493, 'n95facemask': 21913, 'mature': 20512, 'sikh': 29728, 'cater': 6173, 'proudsikhs': 25929, 'bramley': 5150, 'messichallenge': 20880, 'cringeworthy': 8529, 'fealty': 12463, 'x3': 36440, 'a2': 1560, 'adorable': 1964, 'activitiesforchildren': 1834, 'dfwparents': 9744, 'handmaid': 15049, 'figured': 12653, 'heist': 15429, 'captiva': 5972, 'statebaroftexas': 30904, 'violates': 35073, 'deceptive': 9222, 'epi': 11583, 'demi': 9453, 'lirics': 19358, 'epic': 11584, 'overrated': 23766, 'literature': 19380, 'orderly': 23515, 'perspex': 24564, 'imperial': 16593, 'figgered': 12629, 'december': 9216, 'ripoff': 27795, 'beset': 4376, 'enlink': 11482, 'enlc': 11480, '1929': 369, 'googled': 14408, 'signup': 29726, 'realmafiapparel': 26741, 'cripthevote': 8534, 'phasing': 24671, 'speeding': 30547, 'startof': 30884, 'ehsan': 11121, 'ul': 34078, 'haq': 15127, 'roger': 27942, 'hirst': 15671, 'datanow': 9048, 'trusteddata': 33749, 'thestar': 32779, '306': 753, '664': 1226, '1190': 199, 'pademic': 23892, 'kaffy': 18024, 'idealist': 16357, 'susan': 31911, 'zumbuehl': 36836, 'umbrella': 34097, 'consern': 7650, 'sincere': 29784, 'kprc2': 18586, 'click2houston': 6981, 'nonperforming': 22652, 'npls': 22861, 'withstand': 36119, 'utm': 34695, 'disabilites': 9976, 'mystery': 21878, 'couch': 8227, 'newsest': 22372, 'marcoisland': 20275, 'bettertogether': 4414, 'paducah': 23894, 'geocaching': 13976, 'byop': 5698, 'boycottchina': 5094, 'solicit': 30301, 'centred': 6335, 'wig': 35971, 'thang': 32592, 'unitednations': 34341, 'touchpoint': 33325, 'skip': 29899, 'bleeding': 4713, 'plaster': 24921, 'cuddle': 8696, 'pressured': 25541, 'propublica': 25861, 'lauren': 18921, 'verno': 34946, 'investigative': 17306, 'visualised': 35136, 'consists': 7671, 'shorten': 29563, 'ssm': 30772, 'baraboo': 3916, 'janesville': 17637, 'reedsburg': 26943, 'prairie': 25377, 'sac': 28241, 'overreacting': 23768, 'aircraft': 2237, 'overwing': 23808, 'shutterstock': 29650, 'boon': 4962, 'hurting': 16195, 'regulated': 27042, 'lifeles': 19256, 'ancient': 2689, 'conchshells': 7519, 'ringing': 27782, 'jantacurfewmarch22': 17649, 'modicoronamessage': 21314, 'indiacometogether': 16779, 'theinfiniteage': 32703, 'evaporated': 11825, 'gulval': 14842, 'penzance': 24444, 'wewillfightcorona': 35753, 'lexicon': 19176, 'oat': 23025, 'hp': 16056, 'governer': 14472, 'tennessean': 32495, 'containcovid19': 7767, 'jpak': 17902, 'shippingtoja': 29449, 'takeouttuesday': 32168, 'lse': 19768, 'uknews': 34063, 'kane': 18074, 'pirie': 24845, 'subscribing': 31535, '18c': 354, 'toothpaste': 33243, 'bubblegum': 5436, 'umassmed': 34096, 'reflected': 26971, 'confess': 7560, 'time4change': 33008, 'sickofwinning': 29676, 'cliff': 6992, 'dev': 9700, 'koboko': 18527, 'bloodsucker': 4772, 'shs3': 29620, 'bartholomew': 3977, 'sebastian': 28929, '3onyourside': 889, 'stupidisasstupiddoes': 31489, 'gerrityssupermarket': 14014, 'trumpincompetence': 33701, 'trumpjoke': 33706, 'trumpsucks': 33732, 'rif': 27756, 'foreignexchange': 13218, 'cary': 6108, 'zimmerman': 36784, 'sia': 29658, 'wilding': 35988, 'shook': 29487, 'exp': 11997, 'retaillife': 27539, 'honcho': 15870, 'appreciates': 2984, '19nz': 417, 'sd': 28868, 'interestingly': 17186, 'album': 2321, 'nycshutdown': 22981, 'disinfected': 10092, '508': 1051, '9032': 1464, 'braver': 5186, 'helpthemtohelpusall': 15482, 'myallotment': 21833, 'freefood': 13421, 'calamity': 5759, 'icantwork': 16314, 'icantgetpaid': 16311, 'thee': 32680, 'txu': 33948, 'paused': 24275, 'disconnect': 10029, 'rieux': 27755, 'nutrisciences': 22946, 'adel': 1893, 'karina': 18102, 'isliationhelp': 17450, 'newsong': 22377, 'albuterol': 2323, 'bolivia': 4899, 'vegpower': 34885, 'unsustainable': 34475, 'curbedny': 8746, 'editing': 11038, 'hoppon': 15923, 'veetilirimyre': 34862, 'tailor': 32145, 'implementation': 16599, 'mbbs': 20558, 'rmc': 27864, 'msc': 21639, 'lsh': 19770, 'karachi': 18090, 'llb': 19443, 'burton': 5569, 'restrain': 27481, 'utilise': 34687, 'coincome': 7184, 'affiliated': 2050, 'ftw': 13565, 'vimtotweets': 35053, 'luxembourg': 19847, 'poorcustomerservice': 25173, 'immoral': 16556, 'aryeh': 3208, 'boim': 4888, 'osher': 23586, 'caters': 6176, 'orthodox': 23578, 'jewish': 17755, 'cram': 8407, 'cain': 5746, 'chcnewsflash': 6521, 'mentally': 20817, 'stagflation': 30815, 'mayo': 20543, 'dressing': 10611, 'otipy': 23613, 'ipas': 17349, 'ksh': 18621, 'pharmacie': 24662, 'conceivably': 7506, 'chorus': 6737, 'invited': 17320, 'passle': 24199, '017': 34, 'kwh': 18679, 'solar': 30287, 'comparable': 7409, 'piped': 24837, 'greatgame': 14605, 'renewables': 27208, 'aliceinwonderland': 2377, 'gonearoundthebend': 14364, 'spermarketprofitsforgood': 30564, 'stevencain': 31134, 'shutdownma': 29636, 'refining': 26969, 'handsanitizerleash': 15056, 'victoriabc': 34997, 'sah': 28310, 'policie': 25111, 'proti': 25917, 'spekulant': 30553, 'roukami': 28034, 'popud': 25186, 'hejtman': 15431, 'steck': 31068, 'kraje': 18592, 'spolupr': 30626, 'podle': 25070, 'krizov': 18612, 'kona': 18549, 'zajistil': 36717, 'ti': 32958, 'rouek': 28030, 'od': 23122, 'firmy': 12791, 'kter': 18627, 'dodat': 10328, 'zdravotn': 36738, 'ale': 2341, 'posledn': 25253, 'chv': 6784, 'snaila': 30100, 'navyovat': 22121, 'cenu': 6343, 'spolutozvladneme': 30627, 'forager': 13186, 'maine': 20050, 'feedme': 12516, 'eatlocal': 10923, 'spongebob': 30629, 'spongebobmemes': 30631, 'spongebobmeme': 30630, 'memesdaily': 20785, 'dankmeme': 8998, 'ol': 23253, 'edgymemes': 11033, 'dailymemes': 8921, 'offensivememes': 23157, 'topshop': 33258, 'topman': 33251, 'arcadia': 3052, 'creditor': 8481, 'nora': 22680, 'lamontagne': 18784, 'supervision': 31779, 'creg': 8497, 'concordia': 7528, 'sawchuk': 28631, 'inkling': 16994, 'exploitative': 12055, 'fury': 13686, 'offloaded': 23173, '11m': 204, 'feb2020': 12480, 'frustrating': 13549, 'iv': 17550, 'eep': 11073, 'bifurcated': 4498, 'bt21': 5425, 'wts': 36383, 'sg': 29245, 'sgd': 29247, 'foodbusiness': 13090, 'awaiting': 3611, '4m': 1022, 'brentwood': 5248, 'haveing': 15235, 'saveworkers': 28619, 'stlblues': 31194, 'stlouis': 31196, 'stl': 31193, 'maxing': 20532, 'ovation': 23709, 'paralyzes': 24099, 'outhouse': 23659, 'swoop': 32038, 'finglas': 12747, 'knocked': 18503, 'nincompoop': 22515, 'indefinitely': 16767, '2lbs': 715, 'eastfruit': 10900, 'mez': 20918, 'cornelldyson': 7977, 'officedelivery': 23165, 'channel4news': 6449, 'eurospin': 11796, 'flint': 12947, 'alpinia': 2470, 'galanga': 13754, 'mosquito': 21529, 'repelling': 27248, 'shallot': 29286, 'anise': 2761, 'boil': 4884, 'thirsty': 32840, 'respite': 27433, 'applestore': 2968, 'extendedreturn': 12090, 'underline': 34191, 'internationaldayofhappiness': 17206, 'outtake': 23701, 'phylogenetic': 24733, 'adaptation': 1862, 'transmissible': 33493, 'excedrin': 11916, 'cornavirus': 7971, 'inner': 17002, 'sahloul': 28316, 'primavera': 25614, 'infuriating': 16941, 'allowance': 2434, 'coke': 7189, 'substantially': 31557, 'quits': 26369, 'wi': 35947, 'disabledcovid19': 9981, 'fuck3n': 13569, 'bi': 4475, 'slob': 29987, 'r3tards': 26400, 'heartless': 15376, 'preventionoverpanic': 25572, 'unified': 34304, 'framework': 13360, 'rouble': 28029, 'tailspin': 32148, 'readingrussia': 26695, 'patented': 24229, 'remdesivir': 27159, 'feline': 12532, 'fip': 12769, 'luis': 19800, 'obispo': 23040, '186': 348, 'commerceiq': 7341, 'whyyoucantbuytp': 35946, 'paxton': 24288, 'southwest': 30444, 'magnify': 20004, 'etretail': 11770, 'grumpy': 14769, '2keep': 711, 'unionized': 34323, 'unionstrong': 34324, 'tidy': 32969, 'digitalization': 9877, 'digitalworkplace': 9895, 'jesussaves': 17743, 'repentnownations': 27250, 'godwins': 14318, 'marketcrash2020': 20316, 'todayistheday': 33115, 'weigh': 35636, 'bushel': 5579, 'apnea': 2907, 'converted': 7873, 'pulmonologists': 26053, 'competent': 7433, 'supt': 31844, 'eased': 10877, 'aftershock': 2097, 'technologynews': 32391, 'niki': 22506, 'megalomaniac': 20735, 'everyones': 11858, 'christucker': 6756, '2c': 694, 'aint': 2227, 'urselves': 34598, 'freedom2out': 13418, 'food2eat': 13074, 'place2call': 24889, 'christopher': 6754, 'adequately': 1899, 'mddc': 20609, '1199': 200, 'brandon': 5167, 'montr': 21440, 'coloradoan': 7254, 'takecare': 32160, 'emergencyfood': 11284, 'assassin': 3284, 'citrus': 6833, 'behealthy': 4248, 'texasbeardsman': 32561, 'securely': 28951, 'creditcards': 8477, 'ucriverside': 34001, 'epidemiologist': 11590, 'freemarket': 13433, 'rearranging': 26763, 'opportunistic': 23467, 'socioeconomic': 30249, 'myanmar': 21834, 'nbsupdates': 22146, 'imnext': 16571, 'absorbed': 1669, 'pee': 24374, 'philipkotler': 24682, 'worldeconomy': 36262, 'prevententive': 25568, 'inhumane': 16972, 'longs': 19627, 'litigation': 19384, 'ballard': 3837, 'spahr': 30469, 'synthesize': 32092, 'internalize': 17201, 'adoration': 1966, 'haggling': 14928, 'restrictive': 27489, 'hogue': 15754, 'casper': 6141, 'cspr': 8671, 'huddling': 16096, 'multitude': 21733, 'rooted': 28000, 'cushion': 8783, 'usecof': 34633, 'inflationary': 16903, 'attribute': 3433, 'cutoff': 8827, 'royalmail': 28059, 'thismorning': 32861, 'pilers': 24794, 'ln': 19460, 'ytd': 36685, 'retain': 27563, 'hsd': 16072, 'eps': 11598, 'imb': 16523, 'imco': 16526, 'tacke': 32120, 'gripped': 14679, 'pimprichinchwad': 24813, 'undue': 34240, 'burdene': 5536, 'mash': 20414, 'puertorico': 26044, 'mandated': 20178, 'vistalworks': 35131, 'signlanguage': 29722, 'bsl': 5415, 'nxt': 22965, 'marico': 20293, 'gupta': 14862, 'opines': 23457, 'eas': 10875, 'richa': 27721, 'arora': 3132, 'usacovid19': 34609, 'compelling': 7427, 'wonderous': 36176, 'bowen': 5077, 'iconic': 16338, 'outcry': 23645, 'worldwarii': 36284, 'aluminum': 2507, 'awaaz': 3608, 'theu': 32784, 'teepeeformybunghole': 32411, 'siena': 29696, 'roster': 28016, 'attests': 3418, 'frm': 13515, 'cornershop': 7980, 'restricting': 27487, 'passage': 24191, 'doubling': 10497, 'affordably': 2065, 'farmboy': 12326, 'ibiza': 16303, 'eularia': 11785, 'verity': 34938, 'ibiza2020': 16304, 'telemedicine': 32442, 'muddappa': 21679, 'deresinski': 9576, 'dislocated': 10104, 'impaired': 16584, 'pimco': 24809, 'amundi': 2646, 'ashmore': 3234, 'accusation': 1762, 'scomovirus': 28787, 'outlests': 23666, 'evacuating': 11807, 'guzzles': 14879, 'multicultural': 21714, 'asylum': 3347, 'seeker': 28982, 'aspencard': 3275, 'hostileenvironment': 15970, 'veros': 34948, 'suddenchange': 31592, '3day': 868, 'justintime': 17987, '7day': 1348, 'normalsupply': 22698, 'unfreezing': 34286, 'fox43findsout': 13335, '25am': 634, 'illiterate': 16482, 'kcr': 18169, 'jagan': 17593, 'bombshell': 4917, 'ugly': 34022, 'absence': 1661, 'practises': 25371, 'cultu': 8711, 'ensues': 11511, 'scope': 28792, 'posing': 25234, 'pricehike': 25593, 'mumbaiker': 21740, 'arranges': 3141, 'almaty': 2448, 'askhat': 3262, 'zheksebayev': 36772, 'equipped': 11615, 'relaxation': 27100, 'merger': 20852, 'pretext': 25554, 'oligarch': 23269, 'dt': 10691, 'cused': 8782, 'sumantra': 31644, 'supermarketowners': 31745, 'suspension': 31927, 'napier': 22007, 'pak': 23926, 'nsave': 22873, 'westbaluchistan': 35712, 'innovated': 17010, 'balochistan': 3845, 'pmimrankhan': 25039, 'stillwithher': 31164, 'topeka': 33247, 'derek': 9573, 'schmidt': 28738, 'beneficiary': 4314, 'compound': 7483, 'sho': 29473, 'tuck': 33801, 'crab': 8387, 'lmic': 19459, 'btwn': 5431, 'osha': 23584, 'northam': 22704, 'tuscan': 33878, 'kale': 18047, 'smoked': 30078, 'chorizo': 6735, 'mirepoix': 21149, 'familytime': 12288, 'compelled': 7426, 'sly': 30012, 'infringement': 16937, 'flavonoid': 12906, 'tseng': 33774, 'daria': 9016, 'weissman': 35656, 'beemit': 4201, 'keyword': 18294, 'noworries': 22850, 'brewer': 5258, 'adedayo': 1890, 'ayeni': 3651, 'saharan': 28312, 'discloses': 10025, 'thecable': 32667, 'virsuse': 35093, 'unpredictability': 34415, 'cletus': 6976, 'memes2riches': 20784, 'heybitch': 15573, 'casulty': 6155, 'herculean': 15527, 'keepcalmgodigitalbanking': 18187, 'inukasme': 17273, '12km': 227, '1km': 438, 'expiring': 12039, 'contr': 7819, 'technique': 32387, 'homecooking': 15817, 'healhtycooking': 15312, 'versatile': 34952, 'risked': 27823, 'jackie': 17578, 'interstate': 17229, 'uplifting': 34538, 'babybel': 3698, 'penalize': 24411, 'indicate': 16800, 'drfauci': 10613, 'tying': 33952, 'firstdayofspring': 12794, 'warrenton': 35411, 'pupil': 26082, 'fsm': 13555, 'bzun': 5704, 'cfa': 6370, 'agenda': 2129, 'weakened': 35520, 'corporates': 8158, 'attractive': 3431, 'viet': 35020, 'nam': 21970, 'fork': 13249, 'quittrippin': 26370, 'roar': 27885, 'torontohousingmarket': 33277, 'housesforsale': 16014, 'attracted': 3428, 'hooptie': 15906, 'chinaflu': 6659, 'familiaspnf': 12280, 'salvage': 28388, 'margareta': 20281, 'sneezed': 30124, 'multiplied': 21726, 'deem': 9274, 'veneer': 34898, 'craven': 8434, 'diseased': 10069, 'dormer': 10481, 'quarenteen': 26284, 'ebook': 10947, 'stayhomeandread': 30977, 'olden': 23258, 'breadfail': 5204, 'selfservatism': 29055, 'holocaust': 15790, 'surveillance': 31888, 'innovate': 17009, 'constraint': 7690, 'upheld': 34532, 'andre': 2704, 'voiced': 35182, 'assaulting': 3287, 'margo': 20289, 'barbara': 3919, 'triplebottomline': 33622, 'iam': 16288, 'bachelor': 3716, 'djt': 10282, 'unfill': 34271, 'mosaic': 21523, 'moz': 21606, 'kitco': 18441, 'usdollar': 34630, 'republic': 27309, 'contrary': 7832, 'clearest': 6961, 'barometer': 3952, 'peterborough': 24594, 'kawartha': 18148, 'crushline': 8639, 'athletecrush': 3364, 'dems': 9482, 'admonishes': 1950, 'gouvernance': 14458, 'squad': 30733, 'illicit': 16476, 'uncontrolled': 34158, 'bamako': 3852, 'concentration': 7510, 'gaza': 13871, 'unde': 34170, 'apzweb': 3029, 'ordeal': 23511, 'workstream': 36254, 'hrtech': 16069, 'gigworkers': 14124, 'sage': 28307, 'seventy': 29217, 'moira': 21342, 'welikanna': 35667, 'fulham': 13624, 'bogof': 4876, 'curry': 8768, 'dhamki': 9753, 'sushma': 31918, 'swaraj': 31971, 'shaykh': 29357, 'mohamed': 21332, 'hoblos': 15736, 'zhengzhou': 36773, 'subtly': 31562, 'strenuous': 31400, 'shel': 29381, 'rolex': 27957, 'swatch': 31977, 'cartier': 6101, 'michigancoronavirus': 20956, 'sweetheart': 31998, 'lobbyist': 19477, 'cimas': 6797, 'togetherwemakeadifference': 33134, '03237979660': 58, 'jhagra': 17759, 'geonews': 13986, 'asad': 3212, 'umar': 34094, 'zfrmrza': 36769, 'dawnnews': 9094, 'ndma': 22187, 'hamidmir': 15000, 'downsizing': 10537, 'cancelledflights': 5875, 'cancelledevents': 5874, 'seatravel': 28918, 'packageholidays': 23872, 'drdo': 10598, 'patanjaliyogpeeth': 24222, 'santoor': 28502, 'othr': 23612, 'reducng': 26935, 'whn': 35907, 'inexorably': 16871, 'northward': 22729, 'mimic': 21078, 'perth': 24570, 'reckon': 26827, 'imagining': 16518, 'justanotherdayinwa': 17975, '9r': 1549, 'stopcoronamadness': 31269, 'tatanic': 32281, 'hymn': 16252, 'braved': 5183, 'lasagna': 18847, 'shrugged': 29617, 'nolasagna': 22619, 'sbi': 28648, 'amaravati': 2525, 'guntur': 14860, 'ducey': 10714, 'daretobe': 9014, 'nigel': 22485, 'malnutrition': 20142, 'winelands': 36036, 'msm': 21647, 'optometrist': 23498, 'veterinary': 34968, 'resurgence': 27510, 'draya': 10593, 'firetrump': 12785, 'brenda': 5240, 'sensitizing': 29133, 'fox10phoenix': 13333, 'fullest': 13628, 'pajama': 23925, 'hairy': 14954, 'vege': 34872, 'skyrim': 29919, 'seductivesunday': 28974, 'reconsidering': 26848, 'gosh': 14434, 'awfully': 3631, 'gagged': 13739, 'woeful': 36151, '100x': 143, 'chadha': 6397, '20something': 532, 'fella': 12534, 'lawd': 18931, 'b1g1': 3679, 'aust': 3495, 'lockeddown': 19560, 'jerkin': 17723, 'squirtin': 30754, 'emma': 11307, 'fowle': 13331, 'lymeregis': 19879, 'engulf': 11468, 'golibar': 14359, 'santacruz': 28490, '21dayschallenge': 553, 'reset': 27366, 'nespresso': 22283, 'peets': 24383, 'mountainlife': 21578, 'authenticarkansas': 3513, 'arpreservation': 3136, 'wearemainstreet': 35555, 'naturalresouces': 22090, 'russi': 28174, 'imon': 16576, '4u': 1031, 'like4likes': 19284, 'homemadesanitizer': 15839, 'tahlequahtdp': 32142, 'iodised': 17339, 'washingtondc': 35433, 'marshalled': 20379, '780': 1330, '453': 963, '0101': 19, 'weareopen': 35558, 'blissbakedgoods': 4740, 'spire': 30589, 'theblaze': 32666, 'midia': 20997, 'veliaj': 34890, 'stopthevirus': 31308, 'statistically': 30926, 'petrobras': 24610, 'lockdownnsw': 19541, 'tizer': 33074, 'oregon': 23527, 'cali': 5777, 'ronarants': 27985, 'smug': 30092, 'gem': 13925, 'polk': 25130, 'quarantineselfie': 26271, 'meaningless': 20635, 'busine': 5589, 'traditionally': 33435, 'ravitz': 26642, 'shade': 29256, 'sour': 30406, 'chive': 6698, 'frickin': 13477, 'fwps': 13713, 'amy': 2654, 'davis': 9084, 'brin': 5302, 'sodding': 30257, 'diagnostics': 9778, 'hospitalised': 15953, 'fave': 12407, 'exaggeration': 11907, 'eww': 11895, 'hypochondriac': 16271, 'petty': 24629, 'zitapewa': 36796, 'matajiri': 20475, 'watu': 35491, 'wanajua': 35354, 'ulafi': 34079, 'tyler': 33954, 'perry': 24538, 'nhk': 22433, 'reschedule': 27338, 'centralised': 6331, 'wtrg': 36381, 'kmb': 18480, 'csco': 8662, 'ibm': 16305, 'getthehellawayfromme': 14046, 'exceeds': 11919, 'businessnews': 5605, 'rahul': 26467, 'kansal': 18081, 'sinclair': 29788, 'euclid': 11777, 'shopassistants': 29495, 'shelfstacking': 29388, 'exhausting': 11975, 'punishes': 26075, 'ruthlessly': 28185, 'fasting': 12380, 'supremecourtofindia': 31840, 'mannkibaa': 20229, 'arnews': 3126, 'skellig': 29861, 'kilometer': 18381, 'skelligcoast2kms': 29862, 'southkerry': 30434, 'healer': 15310, 'detain': 9667, 'scored': 28794, 'arielle': 3101, 'trzcinski': 33769, 'optimises': 23486, 'staking': 30827, 'pseudoscience': 25976, 'laughably': 18905, 'evade': 11810, 'malibu': 20133, '593': 1125, '822': 1384, 'undermines': 34196, 'chs': 6762, 'manhandling': 20198, 'introduction': 17267, 'softer': 30269, 'andratuttobene': 2703, 'tuscany': 33879, 'pecker': 24362, 'ami': 2593, 'survives': 31903, 'alcoholism': 2334, 'crafting': 8399, 'customizing': 8813, 'fipi': 12770, 'lele': 19082, 'toiletpaperrolls': 33171, 'toiletpaperseeds': 33173, 'teapot': 32361, 'explodes': 12050, 'keynes': 18290, 'tempted': 32475, 'unjust': 34358, 'inds': 16832, 'outperforming': 23683, 'reit': 27072, 'etf': 11750, 'tasked': 32266, 'inconsistent': 16731, 'audaciously': 3454, 'dispatched': 10129, 'zenith': 36755, '101553042': 145, 'fudgiechunks': 13600, 'fudge': 13598, 'fudgeislife': 13599, 'keepcalmandcarryon': 18184, 'chocolatefudge': 6712, 'chocandmint': 6709, 'humpday': 16153, 'svp': 31955, 'a5': 1563, 'saddening': 28258, 'maddensmethods': 19944, 'mbrx': 20563, '2022': 500, 'mycovidstory': 21843, 'comorbidities': 7401, 'ppum': 25362, 'fukin': 13615, 'magarollercoaster': 19979, 'trumppence2020': 33722, '2ashallnotbeinfringed': 689, 'slaughter': 29943, 'zoonotic': 36827, 'govegan': 14462, 'patronising': 24265, 'sologenic': 30313, 'solo': 30312, 'onslaught': 23390, 'hammer': 15004, 'koronafi': 18566, 'protested': 25913, 'faro': 12350, 'warranty': 35409, 'renewal': 27209, 'calibration': 5780, 'markherringva': 20350, 'vawx': 34845, 'agbarr': 2115, 'prosecuting': 25867, 'wwg1wga': 36419, 'preserved': 25523, '1960': 383, 'centeris': 6322, 'agfundernews': 2136, 'financialwellbeing': 12724, 'pascal': 24186, 'montagne': 21431, 'p40': 23854, 'livestream': 19419, 'cet': 6364, 'sfbayarea': 29241, 'x2': 36439, 'breakthechain': 5221, 'teesta': 32415, 'lahag': 18752, 'hotella': 15983, 'flashback': 12882, 'childhood': 6638, 'tumblr': 33836, 'delving': 9441, 'libtard': 19220, 'blown': 4790, 'popularity': 25188, 'touchitsafe': 33322, 'canttouchthis': 5929, 'shoppingcart': 29538, 'ushered': 34652, 'disciplinary': 10020, 'walkaroundthingsday': 35314, 'wba': 35505, 'gammon': 13785, 'snowdon': 30145, 'cynical': 8875, 'truckloads': 33670, 'decouple': 9256, 'esm': 11677, 'linking': 19337, 'privatization': 25671, 'fitness': 12828, 'contemplated': 7788, 'astounds': 3337, 'fag': 12217, 'gerard': 13998, 'object': 23041, 'furiously': 13672, 'aud': 3453, 'kwiknews': 18680, 'dickwad': 9804, 'audacity': 3455, 'sidestep': 29689, 'newstart': 22383, 'lifework': 19269, '3700': 839, '78704': 1335, 'deferring': 9315, 'universalcredit': 34353, 'goodwin': 14401, 'crestline': 8506, 'danced': 8978, 'bonnie': 4936, 'duvet': 10801, 'liability': 19198, 'lawyerkenneth': 18943, 'protecti': 25891, 'damascus': 8959, 'sodium': 30259, 'chlorite': 6703, 'naclo': 21927, 'acid': 1787, 'activator': 1829, 'mixture': 21219, 'chlorine': 6701, 'dioxide': 9945, 'clo': 7011, 'salux': 28385, 'pasar': 24185, 'jaya': 17669, 'jakpost': 17608, 'weasel': 35569, 'lte': 19776, 'alva': 2510, 'demonstrating': 9477, 'nettle': 22304, 'teamfamily': 32346, 'supportingdreams': 31810, 'liberating': 19212, 'tradesman': 33424, 'heartwarming': 15378, 'ghoul': 14095, 'didntdolist': 9818, 'gallbladder': 13761, 'freedumb': 13419, 'scunthorpe': 28867, 'strapped': 31364, 'sensor': 29134, 'dailydrawing': 8915, 'dailysketches': 8925, 'artwithfriends': 3195, 'artchallenge': 3173, 'wordoftheday': 36208, 'wordofthedaychallenge': 36209, 'aldershot': 2338, 'winged': 36045, 'mph': 21616, 'alphabet': 2467, '952': 1509, '5225': 1081, 'raking': 26505, 'owhealth': 23817, 'culturally': 8713, 'vibrant': 34983, 'equilibrium': 11610, 'dwarf': 10805, 'untouched': 34485, 'yee': 36543, 'fulwood': 13633, 'adhered': 1903, '2metredistance': 719, 'respectit': 27426, 'dailydoseofdonna1979': 8914, 'kiri': 18419, 'hannafin': 15087, 'fadhil': 12214, 'nabi': 21923, '480k': 991, '358m': 820, 'cbcnl': 6217, 'refinance': 26965, '6556': 1218, 'brandimage': 5161, 'eur': 11787, 'unissued': 34333, '1500rs': 278, 'ajeeb': 2264, 'kamal': 18058, 'mazibuk0': 20551, 'cking': 6860, 'thanet': 32591, 'serviced': 29184, 'broadstairs': 5345, '246': 610, '1988': 399, 'quarantinedqueers': 26261, 'hygienicpaper': 16249, 'papertowel': 24070, 'tha': 32579, 'sensitivity': 29129, 'paytech': 24312, 'lendtech': 19093, 'ach': 1776, 'vice': 34988, 'mera': 20830, 'minibus': 21105, 'outskirt': 23694, 'ygn': 36582, 'dha': 9749, 'paygrade': 24297, 'backup': 3744, 'agrisa': 2177, 'yoo': 36614, '200s': 475, 'viruspandemic': 35113, 'internship': 17216, 'differ': 9837, 'thomas': 32869, 'ldnont': 18969, 'selloff': 29066, 'shaken': 29274, 'costlier': 8212, 'pierrecardin': 24781, 'nelly': 22264, 'maintains': 20063, 'spainlockdown': 30472, 'inventorymanagement': 17292, 'thinkwhyitmatters': 32830, 'jobseekerswednesday': 17812, 'hiringnow': 15669, 'jobsearch': 17811, 'jobalert': 17805, 'affordabledrugsnow': 2064, 'grocerystoreemployees': 14712, 'rollout': 27969, 'plaything': 24954, 'scattered': 28709, 'yellow': 36557, 'horribly': 15939, 'ofa': 23144, 'whithin': 35896, 'rydertwts': 28207, 'rarely': 26608, 'ellie': 11227, 'tmt': 33091, 'actuarial': 1849, 'annuity': 2796, 'boycottwetherspoon': 5108, 'boycottvirgin': 5106, 'nowt': 22853, 'aggravate': 2138, 'repent': 27249, 'panicshoppers': 24044, 'mulberry': 21703, 'stare': 30870, 'iffat': 16402, 'ridiculousness': 27752, 'yoga': 36597, 'namastehome': 21975, 'inhibited': 16966, 'dareme': 9013, 'uncivilized': 34145, 'isiolo': 17435, 'nfd': 22410, 'myrrh': 21872, 'khat': 18318, 'profession': 25728, 'gvn': 14883, 'forbidden': 13192, 'kuti': 18658, 'meru': 20867, 'debbiedowner': 9188, 'hellerup': 15443, 'foodmarket': 13123, 'kpi6': 18578, 'recognized': 26836, 'csgpolls': 8666, 'flush': 13004, 'classical': 6904, 'coronacast': 8015, 'passover': 24200, 'bstrong': 5419, 'outpacing': 23681, 'smoff': 30075, 'madhouse': 19955, 'counsel': 8245, 'stayhomemn': 30989, 'oversight': 23781, 'serbia': 29162, '2212168': 564, 'cohort': 7170, 'halla': 14977, 'hallafoodfight': 14978, 'foodismedicine': 13118, 'bulletin': 5501, 'thatshowweroll': 32650, 'epicfail': 11587, 'setback': 29202, 'eswatini': 11737, 'farmlife': 12340, 'hotbed': 15976, 'sigh': 29704, 'limitation': 19305, 'mourn': 21581, 'gravesides': 14587, 'numb': 22906, 'clumsy': 7069, 'ghosted': 14093, 'rocco': 27915, 'roccosudano': 27916, 'gsd': 14774, 'milton': 21073, 'austr': 3500, 'governing': 14473, 'dismissal': 10112, 'ecolog': 10970, 'indigenous': 16811, 'earthling': 10872, 'tingle': 33035, 'tightest': 32985, 'stard': 30868, '1p': 445, 'googlealerts': 14407, 'adengage': 1897, 'panicbuyi': 24024, 'busted': 5620, 'feelinggood': 12525, 'mindfulness': 21088, 'sicko': 29675, 'eng': 11451, 'cityoffrederick': 6837, 'frederickmd': 13410, 'eschother': 11668, 'corrugated': 8178, 'rabobank': 26414, 'xinnan': 36464, 'astoria': 3335, 'illegaldancerave': 16473, 'fulfilling': 13621, 'healthforall': 15335, 'supermakets': 31735, '110': 180, 'syd': 32055, 'dub': 10706, 'sardine': 28532, 'thien': 32804, 'escalates': 11658, 'suicidal': 31622, 'emailed': 11250, 'eliot': 11215, 'hannafords': 15089, 'stayawarestaysafe': 30950, 'frb': 13396, '1980': 395, 'pronounced': 25817, 'covod19': 8344, 'delipac': 9409, 'savetheplanet': 28616, 'consciously': 7642, 'delhaize': 9391, 'privatelabel': 25668, 'fraudulently': 13392, 'pragmatic': 25376, 'mena': 20794, 'goorganicnyc': 14415, 'imperfectfoods': 16592, 'eic': 11125, 'swot': 32043, 'enables': 11373, 'bigdata': 4507, 'cto': 8678, 'roaring': 27886, 'sapiens': 28511, '594': 1126, 'messaged': 20873, 'excursion': 11954, 'aplenty': 2903, 'morrisey': 21510, 'swathe': 31979, 'organizer': 23546, 'deport': 9544, 'alcoholbrands': 2330, 'helpingbrands': 15458, 'zerowaste': 36765, 'isl': 17439, 'coronaeconomics': 8033, 'greene': 14625, '1340': 247, 'wgrv': 35770, 'census': 6315, 'strengthening': 31397, 'coralee': 7949, 'colluded': 7240, 'shadowy': 29259, 'nudge': 22898, 'psyop': 25996, 'profiteered': 25743, 'fist': 12822, 'primed': 25616, 'disinterested': 10100, 'elpaso': 11240, 'supportelpaso': 31805, 'curtailing': 8775, 'kansascity': 18083, 'zillow': 36780, 'recruited': 26870, 'czech': 8883, 'broadcaster': 5337, 'biodegradable': 4573, 'crona': 8574, 'saheb': 28314, 'kaya': 18150, 'chahty': 6401, 'hen': 15504, 'kahan': 18033, 'rahy': 26468, 'sari': 28534, 'dolat': 10361, 'ptigovernment': 26004, 'pto': 26006, 'utd': 34682, 'girasol': 14145, 'shelford': 29387, 'legally': 19048, 'policed': 25107, 'precedence': 25426, 'shelfish': 29384, 'wipfliag': 36067, 'irresponsable': 17408, 'kamloops': 18065, 'orgs': 23549, 'franking': 13377, 'baronship': 3954, 'spacex': 30463, 'flagellation': 12863, 'harsher': 15181, 'undertake': 34218, 'sewed': 29226, '3dxchat': 872, 'imvu': 16668, 'secondlife': 28938, 'winco': 36020, 'definitive': 9333, 'dcwp': 9139, 'digitally': 9880, 'overcharge': 23725, 'jenkins': 17709, 'unbs': 34135, 'genuine': 13971, 'jumia': 17950, 'gcse': 13888, '2052': 513, 'civicscience': 6843, 'constituent': 7685, 'maria': 20290, 'tampico': 32210, 'chefsanantonio': 6567, 'quarantinecuisine': 26257, 'starter': 30881, 'causeway': 6202, 'wizard': 36128, 'deflated': 9336, 'hotspot': 15993, 'lobby': 19475, 'dbvt': 9130, 'wtfutureipsos': 36376, 'dryhands': 10678, 'handicapped': 15039, 'myt': 21881, 'mytbusiness': 21883, 'mytaxation': 21882, 'isoation': 17459, 'hungryathome': 16170, 'coronalockdownuk': 8065, 'darwinawards': 9032, 'moldy': 21354, 'tremorogenic': 33571, 'mycotoxin': 21842, 'needlessly': 22227, 'ushering': 34653, '4ir': 1016, 'classroom': 6910, 'latch': 18871, 'handrils': 15052, 'thepublicwillremember': 32743, 'greedmongers': 14614, 'frightened': 13503, 'rina': 27778, 'yashayeva': 36526, 'buhari': 5474, 'lagosschoolclosure': 18746, 'day23': 9110, 'salvadoran': 28387, 'quesadilla': 26320, 'reprieve': 27301, 'figuratively': 12651, 'wenotoutside': 35690, 'westernbeefisstacked': 35720, 'proportionate': 25848, 'despondency': 9641, 'unjustifiable': 34359, 'knw': 18522, 'craazy': 8386, 'upheavel': 34531, 'defenseproductionact': 9309, 'stressor': 31406, 'lil': 19294, 'kayla': 18152, 'simpson': 29766, 'enoug': 11489, 'upheaval': 34530, 'fogged': 13040, 'prescribed': 25507, 'nc': 22148, 'atty': 3436, 'wisely': 36085, 'avoidscams': 3601, 'financialhelp': 12709, 'gartner': 13818, 'discovers': 10049, 'notok': 22798, 'fueling': 13605, 'bv9twvpqkb': 5686, 'fba': 12426, 'fbaops': 12427, 'stroll': 31436, 'raindrop': 26480, 'ordination': 23523, 'jug': 17933, 'cooler': 7911, 'unopened': 34401, 'refrigerated': 26990, 'memorial': 20790, 'bigcommerce': 4506, 'mackle': 19926, 'drawn': 10592, 'mick': 20961, 'mulvaney': 21736, 'downplayed': 10532, 'phi': 24675, 'aghotline': 2145, 'bogg': 4872, 'publication': 26015, 'photograph': 24716, 'folkestone': 13052, 'streetphotography': 31393, 'nordstrom': 22686, 'forgo': 13244, 'smmc': 30072, 'uisedu': 34036, 'uiuc': 34038, 'uic': 34034, 'realme': 26742, 'realmetv': 26746, 'mitv5': 21215, 'mi10': 20937, 'mi10pro': 20938, 'realmenarzo': 26744, 'realmenarzo10': 26745, 'alarm': 2299, 'sounded': 30402, 'squandered': 30737, 'goldprice': 14350, 'goldfutures': 14348, 'stimulusplan': 31177, 'medlife': 20714, 'extorting': 12108, 'collar': 7220, 'ojek': 23238, 'mehra': 20744, 'relieved': 27131, 'poopourri': 25170, 'founditonamazon': 13325, 'poopchallenge': 25166, 'forgiven': 13242, 'flatbread': 12889, 'preaches': 25416, 'thankyoucheckoutworkers': 32621, 'thankyoushelfstackers': 32633, 'thankyoushopworkers': 32634, 'fastsigns': 12383, 'inglewood': 16952, '310': 772, '2177': 547, '403': 914, 'brea': 5199, 'jurupa': 17969, 'mold': 21352, 'nowican': 22849, 'immunosuppressedwife': 16570, 'itw': 17547, 'hartness': 15186, 'shiver': 29469, 'proving': 25948, 'leavenoonebehind': 19018, 'anastasia': 2682, 'purina': 26106, 'rollison': 27968, 'adelaide': 1894, 'htta': 16078, 'girlguiding': 14150, 'nee': 22218, 'durham': 10780, 'oswald': 23599, 'simultaneous': 29775, 'daniel': 8992, 'egel': 11101, 'ries': 27754, 'talent': 32185, 'drake': 10576, 'malema': 20131, 'koike': 18540, '1995': 407, 'applauded': 2956, 'ppekit': 25354, 'getmeds': 14038, 'presumed': 25548, 'virtuous': 35101, 'makati': 20084, 'bicycle': 4484, 'leel': 19032, 'casher': 6124, 'tokyolockdown': 33194, 'bazaar': 4065, 'boulevard': 5055, 'navigated': 22112, 'tightly': 32986, 'fascinated': 12355, 'pronged': 25816, 'abeg': 1610, 'prog': 25754, 'journorequest': 17893, 'underperformance': 34202, 'bookmaker': 4950, 'sape': 28510, 'nak': 21961, 'buat': 5433, 'duit': 10732, 'secara': 28932, 'boleh': 4897, 'lah': 18751, 'cuba': 8690, 'kitajagakita': 18433, 'rm5': 27857, 'pearled': 24358, 'barley': 3945, 'tostada': 33297, 'ps5': 25968, 'capgemini': 5945, 'ofc': 23146, 'shawsdoesntcare': 29356, 'lockdownsaextended': 19547, 'day16oflockdown': 9106, 'bucketlist': 5445, 'bosqf': 5022, 'submits': 31525, 'dusttricks': 10790, 'thelockdown': 32711, 'magictrick': 19995, 'hillside': 15633, 'ava': 3558, 'lousy': 19713, 'floral': 12972, 'madeinengland': 19952, 'moroccan': 21500, 'stoppanickbuying': 31286, 'lockdownsl': 19549, 'extremist': 12130, 'cvd': 8840, 'sweating': 31985, 'custys': 8820, 'mmt': 21244, 'committing': 7361, 'julia': 17942, 'makeadifference': 20087, 'pegnato': 24390, 'roofing': 27991, 'destin': 9650, 'dietary': 9833, 'foodallergies': 13077, 'subscribe': 31532, 'drawingoftheday': 10591, 'spinach': 30583, 'nac': 21925, 'nacsdaily': 21928, 'cstores': 8675, 'conveniencestores': 7860, 'cstore': 8674, 'averted': 3581, 'helen': 15435, 'wheres': 35840, 'dildo': 9901, 'buttplugs': 5645, 'forgottenheroes': 13248, 'cyclone': 8871, 'remapest': 27154, 'guaranteedservices': 14790, 'ulvcoldfogger': 34091, 'publichealthprotection': 26018, 'fogsprayer': 13041, 'killvirus': 18379, 'bestoffer': 4393, '24hours': 614, 'jakartaquarantine': 17604, 'avacado': 3559, 'bestsupermarket': 4398, 'replenishment': 27264, 'interfered': 17190, 'creek': 8491, 'convid19': 7882, 'nostril': 22749, 'snugly': 30152, 'frontier': 13526, 'aerion': 2027, 'jens': 17714, 'spahn': 30468, 'deutschland': 9699, 'ist': 17493, 'vorbereitet': 35204, 'auf': 3465, 'wochen': 36148, 'ter': 32505, 'bbcbayuno': 4073, 'sirpatrickvallance': 29823, 'spec': 30513, 'spp': 30668, '24p': 619, '163': 307, '39p': 860, 'porkmarketnews': 25199, 'pigprices': 24788, 'togo': 33135, '100daysofcode': 136, 'undefined': 34173, 'admins': 1935, 'sendtp': 29103, '519weddings': 1075, 'nocorporatewelfare': 22591, 'sherwinwilliams': 29413, 'unconscious': 34156, 'subnormal': 31528, 'dountoothers': 10509, 'preplife': 25496, 'eldercare': 11158, 'babyboomers': 3700, 'realestateagent': 26708, 'wana': 35353, 'gettn': 14050, '2d': 698, 'pvc': 26153, 'cgi': 6388, 'sprucing': 30715, 'gremlin': 14644, 'labyrinth': 18720, 'moonrise': 21457, 'rabun': 26416, 'cath': 6178, 'kidston': 18356, 'volunteersagainstcovid19': 35196, 'leonard': 19107, 'eastkilbride': 10901, 'controversy': 7853, 'mainstreamed': 20058, 'hungary': 16163, 'hu': 16080, 'solene': 30300, 'weaken': 35519, 'murderous': 21772, 'celebration': 6296, 'secrecy': 28941, 'tesbih': 32536, 'habbal': 14900, 'tango': 32222, 'apologising': 2922, 'spell': 30555, 'torontoshoeshow': 33281, 'retailtips': 27554, 'retailmanagement': 27540, 'expiration': 12035, 'datamustfall': 9047, 'expire': 12036, 'comporium': 7477, '2667': 652, 'achilles': 1784, 'russher': 28173, 'einstein': 11137, 'futureofwork': 13700, 'cal': 5757, 'faraway': 12311, 'howe': 16039, 'marconi': 20276, 'ski': 29875, 'helm': 15446, 'satara': 28553, 'solapur': 30286, '273': 660, 'maharashta': 20014, 'advisorymandi': 2015, 'clemen': 6966, 'suburbia': 31565, 'iptvnew': 17370, 'iptv2020': 17367, 'labeling': 18704, 'councillor': 8240, 'schooler': 28755, 'goodmania': 14386, 'jumper': 17953, 'protecttheworker': 25903, 'erdington': 11631, 'remembering': 27166, 'marney41': 20365, 'sitrep': 29833, 'rhodeisland': 27701, 'stopthemadness': 31302, 'dubbed': 10709, '1970': 388, 'titlemax': 33069, 'locality': 19490, 'commonwealth': 7374, 'depreciated': 9551, 'draconian': 10562, 'congested': 7601, 'cornoabollocks': 7988, 'calmness': 5813, 'tannoy': 32228, '41': 927, 'programmatic': 25759, 'amazingly': 2533, 'wishshopping': 36096, 'blasting': 4698, 'zayd': 36736, 'embarrased': 11259, 'atlantic': 3378, 'netde': 22294, 'wawa': 35495, 'disembarking': 10071, 'africanhistoryclass': 2081, 'taxidrivershow': 32298, 'taxijam': 32299, 'blackpot': 4672, 'evangelist3': 11822, 'tabata': 32110, 'zumba': 36835, 'mengeratkan': 20801, 'hubungan': 16091, 'silaturahim': 29729, 'inhouse': 16969, 'compromising': 7494, 'stayaway6feet': 30952, 'providence': 25940, 'rhode': 27700, 'isolationessentials': 17470, 'vikramch': 35041, 'qr': 26201, 'shielded': 29422, '22341': 567, 'nationalised': 22057, 'wurst': 36405, 'humous': 16151, 'taramasalata': 32245, 'signalling': 29714, 'attending': 3414, 'sobeys': 30180, '879': 1429, '057': 79, '034': 63, 'chapel': 6461, 'worn': 36289, 'stayinthehoose': 31018, 'tescodelivery': 32538, 'marksandspencer': 20354, 'onlinelearning': 23361, 'droz': 10656, 'amzn': 2656, 'prelim': 25473, 'domain': 10375, 'melb': 20761, 'ausecon': 3481, 'assumption': 3320, 'gleaner': 14206, '3175932400': 780, '52014': 1078, 'oes': 23142, 'hudsonvalley': 16100, 'taxtherich': 32304, 'icmktg': 16333, 'utoledomarketing': 34697, 'uakronmarketing': 33981, 'wvu389': 36412, 'nky205': 22558, 'uabmktg': 33979, 'lwu482strat': 19868, 'illustrate': 16491, 'nager': 21938, 'builtwithmapbox': 5483, 'nycstrong': 22982, 'killeya': 18376, 'receives': 26810, 'healthcanada': 15320, 'potstocks': 25299, 'reimbursed': 27058, 'deductible': 9270, 'usaa': 34605, 'curing': 8755, 'stayathomechllenge': 30945, 'adolescent': 1956, 'whippet': 35867, 'souring': 30411, 'canister': 5894, 'onlineclass': 23350, 'shuffle': 29626, 'wilder': 35983, 'birthdaygirl': 4612, 'sportsdirect': 30652, 'bald': 3832, 'hairbrush': 14942, 'dawie': 9088, 'eldersburg': 11162, 'demonstration': 9478, 'holesinsky': 15772, 'buhl': 5476, 'zionsbanker': 36790, 'idahome': 16352, 'appliance': 2969, 'relaxes': 27102, 'sensex': 29124, 'rbigovernor': 26656, 'lockdowndown': 19519, 'samurthi': 28409, '94754': 1500, 'douglas': 10506, 'channeling': 6451, 'ohgod': 23195, 'prevail': 25558, 'unknowing': 34367, 'detective': 9675, 'brixton': 5330, '428': 944, 'knell': 18492, 'moderna': 21304, 'endoftimes': 11411, 'drap': 10583, 'mocking': 21291, 'runner': 28146, 'amazes': 2531, 'ponytail': 25156, 'bramalea': 5148, 'granville': 14558, 'glucose': 14255, 'isp': 17481, 'thehackersnews': 32697, 'revision': 27656, 'zinc': 36786, 'aluminium': 2506, 'fy21': 13720, 'bore': 4989, 'lion': 19341, 'cornflakes': 7984, 'contentworks': 7797, 'essentialfoodbox': 11698, 'foodessentialbox': 13099, '8m': 1452, '103': 148, 'wastereduction': 35460, 'ecoconscious': 10966, 'ecofriendly': 10967, 'gelii': 13920, 'citigroup': 6828, 'pessimistic': 24578, 'turi': 33860, 'ryder': 28206, 'shesaidwhat': 29415, 'rogan': 27941, 'reacts': 26685, 'firstworld': 12802, 'firstworldpandemicproblems': 12803, 'joeroganpodcast': 17831, 'selftaught': 29057, 'timebomb': 33010, 'swath': 31978, 'afterward': 2099, 'deity': 9365, 'receiver': 26809, '2metresapart': 721, 'factsnotfear': 12209, 'kitili': 18445, 'shag': 29265, 'impossibility': 16628, 'ghetto': 14084, 'kawangware': 18147, 'plug': 25006, 'winwin': 36060, 'therichcantlose': 32761, 'lmaoo': 19454, 'tryna': 33767, 'sturdy': 31494, 'workspace': 36252, 'solidaritywithhospitality': 30307, 'hospitalitystrong': 15956, 'katto': 18135, 'jeopardy': 17719, 'matatu': 20477, 'gok': 14337, 'messed': 20877, 'rescheduled': 27339, 'overbooked': 23719, 'yeh': 36552, 'washhand': 35428, 'bonnbread': 4935, 'dollargeneral': 10368, 'itsupport': 17540, '2bn': 693, 'trim': 33611, 'outlay': 23665, 'theeconomist': 32681, 'g20saudiarabia': 13727, 'oilwar': 23235, 'fighter': 12641, 'peple': 24469, 'monitored': 21415, 'igetit': 16424, 'multiplesclerosis': 21724, 'chronicillness': 6759, 'invercargill': 17294, 'hectic': 15399, 'hqsn': 16060, 'bidder': 4487, 'cheeseheads': 6557, 'downtownomaha': 10544, 'paperless': 24067, 'rothschild': 28022, 'heated': 15381, 'hinder': 15643, 'trendy': 33580, 'sephora': 29153, 'smuggling': 30094, 'growthop': 14759, '700k': 1270, 'aitkin': 2261, 'sheriff': 29409, 'vomming': 35199, 'cosatu': 8190, '014': 28, 'summed': 31655, 'ludicrous': 19796, 'rallying': 26513, 'zorb': 36829, 'sinkie': 29810, 'pwn': 26159, 'ijs': 16457, 'boostyourimmunesystem': 4970, 'nutraburst': 22942, 'recognizing': 26837, 'bitching': 4625, 'agressive': 2169, 'allyouneedislove': 2445, 'sometime': 30343, 'cheep': 6550, 'boi': 4883, 'famillies': 12282, 'standtogether': 30853, 'spiked': 30576, '198': 394, '817': 1377, 'croaking': 8564, 'melting': 20774, 'acrylic': 1814, 'etsyshop': 11773, 'keyworkerheroes': 18296, 'helpnhs': 15470, 'inhabitant': 16958, 'couponers': 8286, 'vibing': 34982, 'cracking': 8393, 'sleaze': 29952, 'upcharging': 34515, 'infested': 16889, 'unl': 34370, 'nuforne': 22900, 'nubiz': 22895, 'thanksgiving': 32610, 'shaped': 29313, 'kplccustomercare': 18582, 'moreover': 21487, 'hydrogeneration': 16227, 'dam': 8954, 'incriminated': 16755, 'scapegoat': 28690, 'escaped': 11663, 'miraculously': 21147, 'emerges': 11288, 'clark': 6896, 'orchestrated': 23509, 'lnk': 19463, 'pummels': 26059, 'saket': 28339, 'fiirreedduh': 12654, 'squirt': 30753, 'humberfloob': 16139, 'catinthehat': 6185, 'mrhumberfloob': 21628, 'sanitizepeople': 28467, 'expiry': 12040, 'trumpy': 33742, 'neglect': 22240, 'lodge': 19574, 'newsupdate': 22384, 'flash': 12881, 'unitedagainstdementia': 34338, 'cont': 7757, 'onsite': 23389, 'cookathome': 7898, 'deceiving': 9214, 'denies': 9491, 'gag': 13738, 'shopsmall': 29550, 'beginnerin': 4232, 'cov2': 8303, 'tract': 33410, 'shiva': 29468, 'checker': 6538, 'stillneedbeer': 31160, 'pharmacynsupermarket': 24667, '2348107219389': 590, 'warren': 35410, 'buffett': 5464, 'directorate': 9965, 'dhofar': 9763, 'governorate': 14481, 'cracked': 8390, 'tailoring': 32147, 'residue': 27385, 'bz': 5703, 'rupture': 28162, 'nunavut': 22916, 'som': 30321, 'rec': 26796, 'conscientious': 7640, 'endanger': 11392, 'authorize': 3526, 'affluent': 2059, 'bleakest': 4712, 'workingfromthefrontlines': 36238, 'wff': 35762, 'distracts': 10207, 'depicted': 9531, 'lauded': 18901, 'savior': 28622, 'lawyer': 18942, 'delive': 9414, 'dancing': 8983, 'greeter': 14639, '435': 948, '7203': 1291, 'diversified': 10244, 'corporategreed': 8155, 'essentialservices': 11703, 'servic': 29182, '1990': 401, 'favoured': 12416, 'lfc': 19182, 'youngster': 36642, 'fuckmillenials': 13583, 'helptheelderly': 15480, 'helpthevulnerable': 15484, 'subscribed': 31533, 'liarinchief': 19202, 'lurch': 19829, 'occurrence': 23103, 'elisabeth': 11217, 'selk': 29058, 'underperform': 34201, 'ratio': 26622, 'normalized': 22695, 'sheffield': 29375, 'meadowhall': 20618, 'indifference': 16810, 'pcc': 24325, 'scottoiletpaper': 28803, 'megaroll': 20739, 'demoting': 9481, 'misinfo': 21167, 'telepathy': 32443, 'sanitizeeverything': 28466, 'stayindoorsclub': 31006, 'medrabbits': 20715, '11am': 202, 'walmartgroceries': 35336, 'martial': 20384, 'defra': 9341, 'georgeeustice': 13991, 'sobering': 30179, 'indigent': 16812, 'ogun': 23191, 'regularize': 27039, 'bekindtogether': 4265, 'grabber': 14505, 'vodafone': 35173, 'retired': 27576, 'seaman': 28892, 'fido': 12617, 'dogsoftwitter': 10348, 'cheek': 6549, 'hyphenated': 16267, 'angst': 2743, 'workathomemomcoletta': 36216, 'wahmc': 35276, 'momlife': 21371, 'operanewshub': 23441, 'stillworking': 31165, 'retailworker': 27561, 'thankyougoselongway': 32625, 'bombaykitchen': 4914, 'allinthistogether': 2421, 'prevails': 25561, 'koebler': 18531, '3mouth': 886, 'northwest': 22730, 'uco': 33998, 'thinning': 32832, 'congressman': 7613, 'rew': 27676, 'allisonsflour': 2423, 'yeast': 36541, 'mercenary': 20836, 'worldnews': 36272, 'spca': 30502, 'uni': 34297, 'milo': 21069, 'newsagent': 22366, 'panickbuyings': 24035, 'mcdonald': 20584, 'mcrib': 20605, 'hubai': 16084, 'melt': 20772, 'amendment': 2572, 'selfiestick': 29029, 'rubberglove': 28098, 'socialslapping': 30241, 'cerb': 6348, 'coronachella': 8020, 'papajohns': 24061, 'vocation': 35168, 'scc': 28712, 'emphasizes': 11329, 'authenticity': 3515, 'anticounterfeit': 2832, 'mantra': 20237, 'cadiflus': 5731, 'influenzavaccine': 16913, 'preventflu': 25569, 'cadila': 5732, 'vlp': 35161, 'fightflunow': 12642, 'pushkargupta': 26135, 'recieved': 26821, 'notley': 22794, 'metlife': 20901, 'sanatiser': 28415, 'becognizant': 4174, 'tottenham': 33315, 'arsenal': 3166, 'tottenhamhotspur': 33316, 'gooners': 14414, 'todd': 33116, 'hubbs': 16087, 'eugene': 11782, 'consumerwarning': 7751, '500m': 1043, '8b': 1446, 'spared': 30485, 'multimedia': 21718, 'adriana': 1973, 'heldiz': 15433, 'documented': 10323, 'lassens': 18851, 'ncbeer': 22152, 'gf': 14060, 'randalls': 26557, 'interim': 17192, 'patonthebackforfeeders': 24248, 'stylist': 31500, 'hollering': 15781, 'warby': 35381, 'parker': 24134, 'biway': 4638, 'eaton': 10924, 'zellers': 36751, 'engaged': 11453, 'rap': 26592, 'championship': 6426, 'rerun': 27335, 'educational': 11063, 'programming': 25762, 'rohatgi': 27946, 'bunnings': 5528, 'seedling': 28978, 'helpfight': 15455, 'fmi': 13017, 'masscrowd': 20450, 'hadenoughofcustomers': 14916, 'securityguard': 28957, '13hourdays': 252, 'bum': 5512, 'denier': 9490, 'electronic': 11188, 'tithe': 33066, 'forebodes': 13205, 'feedstock': 12519, '40kr': 922, '100kr': 139, 'imported': 16620, 'ngn': 22426, '50kg': 1060, '466': 979, 'pmt': 25047, 'twitchmusic': 33927, 'masnou': 20441, 'albert': 2313, 'gea': 13895, 'lovekeyworkers': 19719, 'creditscore': 8484, 'undertaken': 34219, 'brightfield': 5294, 'indicated': 16801, 'yoda': 36595, 'r2': 26394, 'r2d2': 26396, 'intrusive': 17271, 'fabricated2': 12166, 'credential': 8471, 'pii': 24789, 'bjams2am': 4649, 'belindaus': 4286, 'hb415': 15273, 'notoiletpaper': 22797, 'nohandshakes': 22609, 'nohandsanitizer': 22608, 'modus': 21323, 'empower': 11347, 'avalanche': 3566, 'biogas': 4579, 'sohnaasim': 30277, 'gocoronacoronago': 14304, 'dhinchakpooja': 9759, 'indiapaysafe': 16797, 'wames': 35351, 'cymraeg': 8874, 'usability': 34606, 'unsociable': 34459, 'yeehaa': 36544, 'sustainably': 31938, 'wsfcu': 36366, 'financialeducation': 12705, 'composition': 7480, 'dynata': 10826, 'togetherapart': 33126, '677': 1231, 'mbtu': 20565, 'neurotypicals': 22314, 'coroma': 7997, 'imbecile': 16525, 'batflu': 4020, 'diabeetus': 9769, 'wilfordbrimley': 35992, 'econo': 10988, 'confirman': 7578, 'empleado': 11336, 'administrativo': 1933, 'centro': 6340, 'distribuci': 10214, 'entrega': 11544, 'cadena': 5730, 'isla': 17440, 'dio': 9941, 'positivo': 25251, 'llevaba': 19447, 'trabajando': 33397, 'forma': 13251, 'remota': 27182, 'publishing': 26037, 'yogaforcorona': 36599, 'crea': 8450, 'hydroponic': 16228, 'choke': 6717, 'onlyessentials': 23379, 'annually': 2795, 'calmly': 5811, 'dexter': 9736, 'thillien': 32808, 'transformative': 33477, 'netelixir': 22295, 'subsequently': 31540, 'vod': 35171, 'multiroom': 21731, 'sorted': 30388, 'smarttv': 30047, 'jeopardize': 17716, 'willingness': 36007, 'gatto': 13848, 'badboy': 3760, 'impracticaljokers': 16636, 'cocaine': 7126, 'pok': 25091, 'pokemonswordshield': 25096, 'petco': 24591, 'referred': 26957, 'goerge': 14320, 'troy': 33656, 'matthew': 20506, 'overpay': 23761, 'responsiveness': 27454, 'introverted': 17269, 'boring': 4998, 'empath': 11319, 'positivevibes': 25248, 'estrange': 11735, 'soapandestrange': 30167, 'washtocare': 35439, 'socialdistancingworksstaysafe': 30210, 'astronomically': 3341, 'infarm': 16878, 'evita': 11881, 'agtech': 2181, 'agritech': 2178, 'f3tech': 12154, 'parksville': 24142, 'arrowsmith': 3159, 'givinghopetoday': 14178, 'dtrump': 10701, 'sufferer': 31602, 'foodwars': 13156, 'mwananchi': 21829, '3h': 874, 'careless': 6023, 'grump': 14768, 'widowed': 35966, 'jaime': 17600, 'harrison': 15174, 'rearrange': 26762, 'kask': 18114, 'bs3': 5412, 'whiskeybusiness': 35875, 'haram': 15130, 'uneducatedscrotes': 34249, 'farmersareessential': 12330, 'blackandwhite': 4656, 'iphoneography': 17355, 'protectandsurvive': 25886, 'blackandwhitephotography': 4657, 'nbcdconditionzulu': 22136, 'rerack': 27333, '2025': 502, 'jawnz': 17667, 'knob': 18500, 'comeuppance': 7300, 'retirementlife': 27579, 'ageingwell': 2127, 'grumpyoldman': 14770, 'negligence': 22242, 'spurious': 30720, 'stitch': 31188, 'jun': 17957, 'celebrates': 6293, 'departing': 9516, 'antidote': 2833, 'revolutionary': 27672, 'garcetti': 13799, 'fucoronavirus': 13596, 'clogging': 7018, 'exempted': 11965, 'sorrynotsorry': 30385, 'anxietytherapy': 2860, 'mpe': 21613, 'fwp': 13712, 'jillian': 17775, 'macbryde': 19911, 'malvern': 20146, 'peoplearedumb': 24449, 'tadcaster': 32132, 'fivefold': 12838, 'irctc': 17379, 'platformticketprice': 24930, 'travelnews': 33541, 'travelobiz': 33542, 'applicable': 2970, 'idsa': 16390, 'misconception': 21157, 'smbs': 30052, 'marketingtools': 20332, 'admire': 1941, 'decisiveness': 9232, 'wholesaled': 35918, 'tone': 33225, 'poirier': 25085, 'unh': 34292, 'homelessness': 15833, 'chapple': 6464, 'occassions': 23092, 'yipes': 36588, 'innocuous': 17008, 'burying': 5571, 'graf': 14523, 'cremating': 8498, 'marssai': 20380, 'translated': 33488, 'brisk': 5314, 'middleeast': 20990, 'verticalfarming': 34959, 'kung': 18644, 'wala': 35309, 'naman': 21973, 'kayong': 18155, 'bilhin': 4534, 'labas': 18699, 'papa': 24060, 'carrefour': 6081, 'typical': 33957, 'anthrax': 2815, 'bayer': 4058, 'hhs': 15577, 'airplane': 2248, 'adopts': 1963, 'stopairingtrump': 31261, 'ramen': 26532, 'boyardee': 5089, 'thelordprovides': 32713, 'taiwanese': 32152, 'exportation': 12071, 'formation': 13255, 'owcovid19': 23812, 'exclude': 11946, 'flattenthe': 12899, 'fossilfuel': 13309, 'beforehand': 4221, 'stophoardingtoiletpaper': 31278, 'youaretheproblem': 36625, 'shamibrahim': 29303, 'habe': 14901, '2014': 481, 'lifeboat': 19247, 'videoeditor': 35009, 'videoediting': 35008, 'bookboost': 4945, 'iartg': 16297, 'mybookagents': 21838, 'itc': 17510, 'preston': 25545, 'itvnews': 17546, 'relate': 27087, 'washyourself': 35446, 'costner': 8214, 'thepostman': 32740, 'kevincostner': 18284, 'retailmatters': 27542, 'apocaliptic': 2909, 'bob': 4846, 'habitat': 14904, 'wheresthetoiletpaper': 35843, 'countered': 8259, 'carrie': 6085, 'underwood': 34227, 'newworldorder': 22395, 'caseysthoughts': 6118, 'homestead': 15855, 'eastereggs': 10892, 'sparsely': 30494, 'trail': 33442, 'overshoot': 23780, 'delistings': 9412, '148': 266, 'realestatenews': 26717, 'expedition': 12017, 'useyourkokote': 34649, 'undeniably': 34176, 'kpmg': 18583, 'schmeling': 28737, 'kashish': 18109, 'fol': 13044, 'essentias': 11709, 'abrupt': 1659, 'textile': 32567, 'shoemaking': 29481, 'mindless': 21089, 'pursued': 26123, 'shopbarefoot': 29496, 'gonoles': 14367, 'fsu': 13557, 'floridastateuniversity': 12978, 'seminole': 29087, 'fleece': 12920, 'masking': 20425, 'makeshift': 20099, 'mmnewstv': 21242, 'supportnurses': 31820, 'kyliejenner': 18689, 'lucas': 19784, 'fuess': 13612, 'highground': 15601, 'housekeeper': 16008, 'reup': 27616, 'fvcking': 13707, 'excluding': 11949, 'dallasnativeteam': 8947, 'dpmre': 10560, 'dallasrealestate': 8948, 'peoplefirst': 24457, 'elevatingrealestate': 11204, 'lastingrelationships': 18858, 'dallasnativelife': 8946, 'antivaxxers': 2845, 'maharashtrasainik': 20016, 'hallandale': 14979, 'socialdista': 30197, 'uncrustables': 34166, 'coronatime': 8106, 'sova': 30447, 'nsa': 22872, 'cryptologist': 8651, 'mathematician': 20494, 'onlineshoppingapps': 23373, 'lockdownshoppingapps': 19548, 'sip': 29817, 'pulp': 26054, 'barmy': 3947, 'chilloutforfucksake': 6652, 'equation': 11607, 'comeonboris': 7294, 'fml': 13018, 'foodproduction': 13132, 'collaborated': 7208, 'rj': 27848, 'deriving': 9580, 'highered': 15597, 'readjust': 26696, 'ftse100': 13563, 'singleton': 29805, 'wooden': 36185, 'shopnaw': 29520, 'safeshop': 28286, 'mikayla': 21027, 'torwards': 33290, 'replaces': 27258, '360': 828, 'hortons': 15947, 'hybrid': 16217, 'underweighting': 34225, 'overweighting': 23802, 'lombardy': 19606, 'hesitated': 15565, 'czkrapgyfg': 8884, 'alrea': 2473, 'outoftoiletpaper': 23677, 'wellcrap': 35671, 'ohshittheregoestheplanet': 23204, 'suitcase': 31628, 'moco': 21293, 'algorithmic': 2366, 'systemically': 32104, 'streamed': 31379, 'sheep365': 29368, 'farminguk': 12338, 'nationalistic': 22059, 'tearing': 32365, 'jokingly': 17862, 'yelling': 36556, 'frazis': 13394, 'getyourtribble': 14057, 'hatecrime': 15210, 'dwnews': 10813, 'grieving': 14656, 'haulier': 15222, 'quarentined': 26288, 'beautybrands': 4156, 'rethinkretail': 27574, 'fu': 13567, 'flowy': 12993, 'swamp': 31964, 'velocity': 34891, 'mural': 21764, 'chalk': 6415, '2019ncov': 489, 'washingtonheights': 35434, 'nstnation': 22883, 'jalan': 17609, 'tuanku': 33796, 'rahman': 26465, 'masjidindia': 20415, 'underwent': 34226, 'jalantar': 17611, 'disheartening': 10083, 'podesta': 25068, 'smithfield': 30070, 'dieseas': 9827, 'francis': 13370, 'purposewash': 26117, 'bluff': 4808, 'workersoftheworldunite': 36223, 'za': 36710, '304': 752, 'distressed': 10211, 'sttaconsulting': 31455, 'waitlist': 35286, 'sd13': 28869, 'district13': 10223, '10kg': 166, 'tamma': 32206, 'shelterathome': 29394, 'prayforourhealthcareworkers': 25404, 'indianexpress': 16793, 'enzymatic': 11570, 'biosensors': 4592, 'restarted': 27459, 'recycled': 26882, 'squeezing': 30749, 'flatearth': 12890, 'vids': 35016, 'fentanyl': 12547, 'wuhancoronavirusoutbreak': 36396, 'microbiologist': 20967, 'weathering': 35572, 'alosra': 2463, 'sar': 28516, 'najibi': 21960, 'perplexing': 24535, 'feasible': 12473, 'technological': 32389, 'blocker': 4755, 'topper': 33254, 'resolution': 27404, 'circulation': 6820, 'fascination': 12357, 'ingenuity': 16946, 'illusory': 16490, 'wpost': 36328, 'reprinted': 27303, 'retur': 27601, 'geometry': 13985, 'exhaust': 11973, 'esa': 11655, 'pip': 24835, 'justin': 17984, 'wedged': 35604, 'giggle': 14121, 'reimburse': 27057, 'reshaped': 27369, 'reinforced': 27062, 'j3gxbg5kj1': 17569, 'hdhpqoqsiu': 15290, 'cooronavirus': 7930, 'generator': 13948, 'duly': 10736, 'tylenol': 33953, 'horizon': 15929, 'bradco': 5127, 'refrigeration': 26992, 'imee': 16530, 'marcos': 20277, 'hasten': 15205, 'hairstore': 14951, 'togetherky': 33129, 'downtownrochestermn': 10545, 'frequenting': 13460, 'rochester': 27920, 'samoa': 28400, 'frankie': 13376, 'designing': 9617, 'anjalilai': 2763, 'pandemicex': 23992, 'roadshow': 27881, 'instructional': 17119, 'refilling': 26964, 'generously': 13953, 'stoppanicbuyingsouthafrica': 31285, 'yu': 36686, 'wellnesswednesday': 35676, 'quarantinezone': 26275, '24hrs': 616, '500ml': 1045, '02268443322': 48, '9186958': 1475, '86958': 1422, 'doldrums': 10362, 'frisco': 13509, 'markethive': 20320, 'ctsi': 8679, 'appalled': 2932, '08082231133': 114, 'lothians': 19690, 'sociology': 30251, 'inexplicable': 16874, 'reprehen': 27291, 'bglutenfree': 4445, 'simplygf': 29765, 'gfcommunity': 14062, 'gemcityfinefoods': 13926, 'jalanalanakanakakak': 17610, 'newreality': 22362, 'humpdaayy': 16152, 'gervasi': 14018, 'panda': 23975, 'unclerich': 34149, 'sepan': 29144, 'gatewaycityradio': 13842, 'laredoaf': 18838, 'fromthebordertotheworld': 13522, 'washyohands': 35441, 'washyoass': 35440, 'tpforthebunghole': 33378, 'garland': 13811, 'adfarm': 1901, 'nourish': 22819, 'annmcarthur': 2781, 'widji': 35964, 'widji20': 35965, 'itsmycamp': 17528, 'resilientyouth': 27392, 'comprises': 7491, 'cegeps': 6284, 'warfare': 35390, 'carnal': 6052, 'mighty': 21014, 'actsofkindness': 1843, 'unsurprising': 34471, 'seth': 29203, 'mendelson': 20799, 'storebrands': 31315, 'diversion': 10247, 'wager': 35268, 'compact': 7404, 'tater': 32282, 'tot': 33298, 'kafayat': 18023, 'shafau': 29261, 'ameh': 2566, 'edun': 11066, 'lingards': 19325, 'colruyt': 7266, 'marriage': 20369, 'wilm': 36010, 'installers': 17092, 'lulumallfujairah': 19808, 'electricitymarkets': 11179, 'renewableenergy': 27207, 'ttf': 33790, 'vaporisation': 34815, 'craigslist': 8406, 'dean': 9166, 'amler': 2606, 'bon': 4918, 'apetit': 2892, 'reconvene': 26850, 'ubi': 33988, 'optimal': 23483, 'washyourbutt': 35442, 'lynette': 19883, 'holmes': 15789, 'financiallaws': 12710, 'finnish': 12760, 'finn': 12757, 'jealous': 17681, 'whacked': 35773, 'shovel': 29592, 'corpse': 8163, 'oblivion': 23051, 'skinnywine': 29894, 'skinnybooze': 29893, 'economiclaws': 10997, 'chestnut': 6605, 'keepitonthehill': 18202, 'chestnuthillpa': 6606, 'eastlondon': 10902, 'calgaryalberta': 5776, 'famers': 12278, 'diamond': 9786, 'medicaid': 20680, '432': 947, '9257': 1487, 'shine': 29437, 'exhoberent': 11979, 'cargill': 6031, 'hazleton': 15268, 'riodejaneiro': 27787, 'brasil': 5178, 'chinaisasshoe': 6660, 'ripponden': 27805, 'levity': 19170, 'jest': 17736, 'palmer': 23952, 'nailed': 21951, 'rooivleis': 27993, 'quadrupled': 26212, 'yen': 36568, 'straightforward': 31347, 'angle': 2738, 'feedingkindness': 12506, 'understocked': 34216, '275m': 662, 'syndrome': 32084, 'haller': 14981, 'motivation': 21558, 'sunshinecoastbc': 31704, 'knockitoff': 18505, 'ann': 2768, 'hui': 16115, 'kathryn': 18124, 'blaze': 4703, 'baum': 4051, 'symbolic': 32067, 'hove': 16028, 'devoid': 9728, 'twix': 33936, 'livingwage': 19427, 'trumpers': 33695, 'struggleisreal': 31452, 'dsnap': 10685, 'farce': 12314, 'obtuse': 23081, 'quarantineonlineparty': 26268, 'calderaarriba': 5767, 'usps': 34666, 'reconstruction': 26849, 'murdering': 21771, 'trooper': 33641, 'sync': 32078, 'wwd': 36416, 'eyeglass': 12140, 'abyss': 1691, 'refers': 26959, 'probable': 25685, 'mov': 21588, 'simmons': 29751, 'certainty': 6357, 'hmart': 15704, 'stephanie': 31096, 'meier': 20749, 'pacheco': 23863, 'housingcrisis': 16020, 'bersesak': 4367, 'kat': 18117, 'hancur': 15027, 'hajj': 14958, 'umrah': 34102, 'tera': 32506, 'kya': 18685, 'hoga': 15750, 'kaalia': 18015, 'unreasonable': 34431, 'edged': 11030, 'littlehelp': 19395, 'vent': 34909, 'sixfeetaway': 29844, 'wegotthiswa': 35632, 'this2020': 32844, 'lifeinthetimeofcorona': 19254, 'transfering': 33471, 'jessyelevators': 17735, 'tescoklong4': 32539, 'schindlerelevator': 28734, 'bureaucratic': 5541, 'paperwork': 24073, 'propertynews': 25835, 'canteen': 5922, 'scho': 28745, 'vit': 35142, 'enriched': 11501, 'guin': 14824, 'quantify': 26231, 'identifying': 16367, 'gwinnett': 14888, 'replenishes': 27262, 'deliverwho': 9422, 'srvc': 30763, 'saa': 28223, 'gauteng': 13856, 'amharic': 2592, 'vietnamese': 35022, 'notable': 22752, 'newmr': 22354, 'upsers': 34554, 'santizing': 28500, 'mack': 19923, 'cik': 6796, 'anne': 2775, 'akka': 2283, 'stan': 30841, 'delusional': 9438, 'invoking': 17325, 'aimsinternational': 2224, 'globalconsumerpractice': 14222, 'findandgrowleaders': 12731, 'vanished': 34794, 'cnb': 7093, 'bokakhat': 4891, 'quilted': 26354, 'ecb': 10953, 'azhar': 3668, 'markup': 20358, 'deffer': 9317, 'sbp': 28655, 'perssuer': 24565, 'alrighty': 2477, 'richardson': 27727, '6yrs': 1265, 'onevoice': 23335, 'ageconcern': 2120, 'dwpcrimes': 10815, 'magmt': 19998, 'siete': 29699, 'degli': 9350, 'animali': 2754, 'corvid19fr': 8187, 'retweeted': 27607, 'napa': 22005, 'bubl': 5439, 'mek': 20754, 'tek': 32421, 'notsponsored': 22810, 'bx': 5691, 'thisiswhy': 32859, 'noonedoesnothing': 22666, 'constructed': 7692, 'bandanna': 3864, 'convo': 7891, 'stateswoman': 30914, 'bulandshahr': 5486, 'buried': 5552, 'keepmoving': 18205, 'breakcorona': 5207, 'jaunt': 17663, 'deviated': 9719, 'trackie': 33406, 'dacks': 8894, 'fleecy': 12923, 'hoodies': 15897, 'crocheted': 8568, 'rug': 28118, 'investigates': 17302, 'excercise': 11931, 'lautoka': 18924, 'greenford': 14626, 'spreadtheword': 30690, 'parkmead': 24138, 'pmg': 25036, 'uckfield': 33997, 'coronaviru': 8129, 'abyssals': 1692, 'thingsiwontapologizefor': 32817, 'armesdeutschland': 3117, 'thoug': 32883, 'quedateentucasa': 26304, 'escena': 11667, 'repite': 27254, 'alrededor': 2475, 'mundo': 21750, 'estados': 11719, 'unidos': 34302, 'francia': 13369, 'espa': 11679, 'dejado': 9366, 'vac': 34719, 'estantes': 11720, 'destinados': 9651, 'papel': 24063, 'higi': 15619, 'nico': 22470, 'medio': 20708, 'por': 25194, 'nuevo': 22899, 'healthday': 15330, 'galore': 13767, 'fulfil': 13618, 'polythene': 25146, 'reiterating': 27076, 'fjunited': 12856, 'geoff': 13979, 'toiletpapier': 33180, 'odishafightscorona': 23131, 'escapee': 11664, 'stain': 30821, 'coveryourmouth': 8323, 'mouthwash': 21587, 'closeup': 7035, '114': 190, 'manuka': 20247, 'westbury': 35715, 'trym': 33766, 'ilford': 16469, 'doncaster': 10401, 'mccolls': 20577, 'berth': 4368, 'incorrectly': 16741, 'powderedface': 25324, 'stuckathome': 31462, 'artistinresidence': 3187, 'interiordesignideas': 17195, 'interiordesign': 17194, 'tweeps': 33902, 'vestibule': 34964, 'usdot': 34631, 'olderadults': 23260, 'emojis': 11312, 'fringing': 13508, 'carparks': 6075, 'waiter': 35284, 'mettitilamascherinacazzo': 20911, '892': 1442, 'foodhoaders': 13107, 'coronainnyc': 8057, 'coronainny': 8056, 'regulatethe': 27044, '50ml': 1063, 'r100': 26386, 'humanrightsday': 16138, 'savelivesstayhome': 28603, 'realising': 26726, 'ccpa': 6247, 'clarity': 6895, '462001': 977, 'insulin': 17124, 'lilly': 19296, 'killerkyl88': 18374, 'healthylivinginsideandout': 15357, 'ravioli': 26641, 'cancelthat': 5880, 'coa': 7107, 'crim': 8518, 'lawyerly': 18944, 'uncovered': 34163, 'reputationmanagement': 27319, 'reptrak': 27308, 'groovy': 14723, 'whoopi': 35924, 'goldberg': 14340, 'thali': 32586, 'dedicating': 9267, 'debated': 9184, 'shithouses': 29459, 'covidma': 8339, 'scavenge': 28710, 'benfeldman': 4321, 'smartkid': 30035, 'superjewflair': 31731, 'flair': 12867, 'bartender': 3975, 'liqour': 19347, 'rockstar': 27934, 'therainking': 32746, 'necessitate': 22210, 'chickpea': 6632, 'foo': 13072, 'alexandria': 2353, 'microwaveable': 20985, 'um': 34092, 'babe': 3695, 'hotdog': 15979, 'bmovie': 4820, 'disastermovie': 10003, 'moonpies': 21456, 'emptiest': 11353, '30p': 767, 'albanian': 2308, 'albania': 2307, 'tirana': 33049, 'attracting': 3429, 'artnaturals': 3190, '236ml': 594, 'jojoba': 17855, 'alovera': 2465, 'fashionisland': 12369, 'thepromenade': 32742, 'bigc': 4505, 'gourmetmarket': 14456, 'asphalt9': 3276, 'asphalt9legends': 3277, 'rimacctwo': 27777, 'koronawirus': 18568, 'kwaichungmysupport': 18672, 'usconsumers': 34620, 'consumersurvey': 7745, 'voiceofthecustomer': 35183, 'singaporean': 29794, 'photographed': 24717, 'welcomehome': 35662, 'longday': 19620, '519': 1074, '738': 1301, '2241': 569, 'bowlinggreen': 5081, '5x': 1169, 'offense': 23155, 'codice': 7148, 'penale': 24406, '501bis': 1047, 'moderated': 21300, 'alchohol': 2325, 'irs': 17419, 'agsiw': 2180, 'nasser': 22040, 'saidi': 28321, 'mogielnicki': 21330, 'panelist': 24012, 'myopinion': 21864, '149': 268, 'costa': 8198, 'luminosa': 19811, 'marseille': 20374, 'disembark': 10070, 'barred': 3959, 'docking': 10311, 'costaluminosa': 8199, 'instantly': 17100, 'devalued': 9703, 'manure': 20249, 'pit': 24853, 'sucka': 31584, 'wishlist': 36094, 'pregga': 25466, 'gsa': 14773, 'governmentcont': 14476, 'geezus': 13908, 'cocooning': 7142, 'charles': 6484, 'secondhand': 28937, 'pawn': 24286, 'fiberglass': 12606, 'inground': 16957, 'snyder': 30154, '013': 25, 'wors': 36295, 'jo': 17801, 'isolat': 17460, 'grimsby': 14669, 'publicpanic': 26026, 'socialsafety': 30239, 'luckyducker': 19792, 'silenthill2': 29736, 'silenthill': 29735, 'basf': 3991, 'belongatbasf': 4298, 'mousemat': 21583, 'rallied': 26511, 'alongside': 2461, '1650': 311, 'hail': 14939, 'socoialism': 30254, 'ramgarh': 26535, 'kris': 18601, 'hamer': 14999, 'xander': 36442, 'friedl': 13491, 'nder': 22181, 'rodewayinnla': 27938, 'trumpadministration': 33687, 'trumpslump': 33730, 'goc': 14301, 'borro': 5011, 'chch': 6519, 'bomber': 4915, 'sunnyside': 31696, 'greenpoint': 14631, '1104': 182, '718': 1287, '752': 1312, '1931': 372, 'sustenance': 31941, 'incomed': 16721, 'lastmanstanding': 18860, 'enfield': 11442, '143': 260, 'yarra': 36521, 'dinsdale': 9939, 'battlefield': 4047, 'genocide': 13961, 'atrocity': 3391, 'aerial': 2026, 'manna': 20226, 'quant': 26228, 'quake': 26217, 'knowwhentowearamask': 18517, 'wearecput': 35546, 'wearecputmedia': 35547, 'bb20': 4069, 'tbt': 32316, 'hgtv': 15575, 'milaniplumbing': 21034, 'plumbing': 25010, 'airconditioning': 2236, 'tonite': 33229, 'eventful': 11834, 'unicornday': 34300, 'reasi': 26765, 'fcs': 12448, 'whatsapp70067': 35795, '47305': 984, '94192': 1497, '45670': 965, 'adcapdrsi': 1871, 'ww': 36413, 'drafted': 10565, 'kagame': 18028, 'jameson': 17623, 'whitman': 35900, 'plaza': 24955, 'uniquetimes': 34330, 'sol': 30284, 'eccentricgin': 10954, 'welshgin': 35680, 'badbusiness': 3763, 'wale': 35310, 'yielding': 36586, 'exceed': 11917, 'baton': 4035, 'rouge': 28031, 'sayin': 28640, 'youthful': 36666, 'builder': 5478, 'indiafightcorona': 16782, 'graphzoid': 14566, 'courageous': 8288, 'intrepid': 17260, 'stockman': 31213, 'dice': 9797, 'charisma': 6478, 'frontlineworkers': 13533, 'bendthecurve': 4311, 'confessionsofashopaholic': 7563, 'adorables': 1965, '19fr': 413, 'pimentel': 24810, 'gettested': 14044, 'coronapanic': 8080, 'martiallaw': 20385, 'ghs': 14096, 'villieria': 35052, 'r1600': 26392, 'attire': 3420, 'salette': 28362, 'centrelink': 6337, 'scottmorrison': 28802, 'lnp': 19464, 'inaugural': 16686, 'modify': 21316, 'stayhomestayhealthy': 30998, 'visible': 35119, 'acknowledge': 1793, 'beeton': 4212, 'benefitted': 4318, 'rosneft': 28012, 'elliot': 11228, 'abrams': 1654, 'sidelining': 29686, 'guaido': 14785, 'maduro': 19968, 'gentles': 13968, 'fmr': 13019, 'shameonsky': 29299, 'purchaselimits': 26091, 'essentialliving': 11700, 'ripoffmerchant': 27797, 'moisturiser': 21344, 'unbritish': 34134, 'inferred': 16888, 'borisajoke': 5000, 'parttimeprimeminister': 24179, 'backdoorboris': 3724, 'sacrificing': 28254, 'grieve': 14655, '122': 215, 'wegman': 35629, 'proverbs31': 25936, 'riseup': 27811, 'spiritualfamily': 30594, 'fybne4vlyh': 13721, 'desinfections': 9621, 'havefun': 15234, 'uotech': 34511, 'senseofhumor': 29123, 'concentrated': 7508, 'cairn': 5749, 'methanol': 20895, 'aggravates': 2139, 'unprovoked': 34423, 'disfigured': 10072, 'supermarkt': 31757, 'koeln': 18533, 'deployment': 9542, 'coupla': 8282, 'jemima': 17705, 'pedigree': 24371, 'focussing': 13037, 'aglaw': 2151, 'disagree': 9986, 'aspiration': 3279, 'expectmore': 12012, 'nipped': 22525, 'dogma': 10344, 'consumertrends': 7749, 'therein': 32755, 'financialassistance': 12702, 'financialliteracy': 12711, 'ineedppenow': 16852, 'maskshortage': 20436, 'militray': 21046, 'bein': 4257, 'comin': 7316, 'somethin': 30339, 'stink': 31180, 'puttin': 26143, 'xtra': 36478, 'reg': 27007, 'misfit': 21162, 'promo': 25800, 'cookwme': 7906, 'fe8vlt': 12461, 'stayinghome': 31013, '4400': 952, 'liartrump': 19203, 'flatly': 12892, 'soopers': 30371, 'thirdly': 32836, 'bwcdeals': 5689, 'carluccios': 6048, 'ehbot': 11119, 'forbearance': 13189, 'overdraft': 23736, 'diclemente': 9805, 'carp01': 6073, 'thirteen': 32841, 'msgulfcoast': 21644, 'abc730': 1601, 'credibility': 8473, 'wearestillhereforyou': 35560, 'gachibowli': 13730, 'manikonda': 20211, 'alkapur': 2394, 'narsingi': 22025, 'rort': 28002, 'viable': 34978, 'preview': 25576, 'comme': 7328, 'raoult': 26591, 'beaucoup': 4146, 'lui': 19799, 'font': 13069, 'confiance': 7564, 'tends': 32489, 'grainger': 14528, 'capitel': 5958, 'nexus': 22408, 'clearair': 6956, 'morphed': 21507, 'positional': 25237, 'makarna': 20082, 'worldcorona': 36260, '630pm': 1204, 'yegfood': 36549, 'yegvegan': 36551, 'keepingclean': 18199, 'freshbread': 13466, 'muffin': 21688, 'feedingoursouls': 12508, 'feedingthepublic': 12511, 'demerit': 9452, 'bristol': 5316, 'euf': 11780, 'bleeds': 4714, 'elephant': 11201, 'elderlyperson': 11161, 'comorbids': 7402, 'cobbcounty': 7120, 'complexity': 7463, 'aerodynamics': 2028, 'troubled': 33650, '2020is': 493, 'hotlines': 15986, 'apupdates': 3028, 'responsive': 27453, 'scaling': 28665, 'undignified': 34233, 'groepsimmuniteit': 14720, 'fixitnow': 12850, 'telanganafightscorona': 32425, 'thankatruckdriver': 32597, 'authorisation': 3520, 'mkinsights': 21227, 'trilby': 33609, 'lundberg': 19824, 'monium': 21418, 'hastings': 15207, 'eggplant': 11106, 'apricot': 3016, 'harissa': 15157, 'roasted': 27888, 'malay': 20121, 'ncat': 22149, '3dprinting': 871, 'precautionsofcoronavirus': 25424, 'handwashchallenge': 15069, 'keephygine': 18196, 'coronajihad': 8060, 'eiplinfra': 11138, 'lapaloma': 18829, 'apila': 2898, 'luxuryhomes': 19856, 'nasal': 22027, 'gpn': 14499, 'gvc': 14880, 'inquest': 17025, 'inevit': 16866, 'stagnant': 30818, 'staydistance': 30962, 'pakistanarmy': 23929, 'respective': 27427, 'constituency': 7684, 'meandering': 20630, 'hindquarter': 15647, 'englishmuffins': 11466, 'alaga4040': 2293, 'cameltoechallenge': 5830, 'fatihportakalyalnizdegildir': 12397, 'reshapes': 27370, 'delores': 9431, 'ncsolutions': 22171, 'craziest': 8442, 'stunned': 31482, 'dj': 10275, 'djlife': 10280, 'burger': 5543, 'pullman': 26052, 'foodpodcast': 13129, 'easterathome': 10888, 'liner': 19323, 'holidaytrip': 15776, 'ronaldo': 27984, 'leonardodicaprio': 19108, 'worldchange': 36259, 'abelmoreno': 1611, 'heman': 15495, 'mastersoftheuniverse': 20468, 'melonseta': 20770, 'princeadam': 25625, 'berkshire': 4353, 'dinosaurextinction': 9938, 'toiletpaperchaos': 33153, 'dampened': 8970, 'wor': 36204, 'nhl': 22434, 'pealways': 24351, 'stamptheworld': 30840, 'patna': 24246, 'singled': 29800, 'rees': 26949, 'mogg': 21329, 'seating': 28916, 'drugdealers': 10662, 'n8tronic40': 21911, 'dimebags': 9914, 'dimebag': 9913, 'food4thought': 13076, 'prioritizing': 25649, 'meaningfulgrowth': 20633, 'geniouxmg': 13958, 'crushthecurve': 8640, 'geltwo': 13924, '86': 1414, 'streak': 31377, 'lima': 19298, 'polyester': 25143, 'admired': 1942, 'prawn': 25394, 'squid': 30751, 'caterer': 6174, 'kam': 18056, 'directory': 9967, 'confirmation': 7579, 'ucat': 33994, '234': 588, 'southwark': 30442, 'se16': 28875, '3rw': 898, 'homebuyers': 15808, 'homesellers': 15854, 'cheadle': 6523, 'vaisman': 34743, 'guaranteeing': 14791, 'reversing': 27647, 'onlinepayment': 23364, 'pretended': 25551, 'mania': 20203, 'extendedlockdown': 12089, '4ish': 1017, 'idontusetwittermuch': 16387, 'professorcj': 25733, 'internment': 17215, 'gmp': 14275, '19920': 404, 'qty': 26206, 'dissertation': 10172, 'authoritarian': 3523, 'dictatorship': 9810, 'marxist': 20399, 'critique': 8557, 'utahn': 34676, 'farnworth': 12349, 'columbians': 7268, 'bcleg': 4097, '00th': 17, 'overused': 23796, 'disagreement': 9987, 'overload': 23752, 'naples': 22009, 'perceived': 24478, 'hull': 16118, 'invests': 17314, 'njbanks': 22545, 'oregonian': 23528, 'yogalesson': 36600, 'sexlife': 29233, 'talktoeachother': 32192, '12th': 233, 'barcode': 3930, 'customary': 8796, '530': 1087, 'x121': 36437, 'usausausa': 34617, 'every1': 11847, 'sickleave': 29673, 'srpeading': 30762, 'ramaphosa': 26527, 'mysouthafricans': 21874, 'summarize': 31651, 'multifamily': 21715, 'northumberland': 22726, 'viligant': 35046, 'p35gzkdnn7': 23851, 'illogical': 16485, 'lit': 19371, 'curt': 8772, 'larson': 18846, 'productdescriptions': 25718, 'toiletpapermeme': 33166, 'hartzell': 15187, 'cranga': 8414, 'barrett': 3963, 'nutraceuticals': 22943, 'allstate': 2438, 'geico': 13911, 'progressive': 25767, 'agreeing': 2166, 'policyholder': 25114, 'tpci': 33375, 'wecare': 35598, 'zuku': 36833, 'blueberry': 4800, 'caronavirusaus': 6070, 'royalty': 28060, 'palace': 23938, 'cricketer': 8516, 'cam': 5820, 'richardism': 27725, 'believer': 4284, 'endthelockdown': 11418, 'stopthestupid': 31307, 'coronaapocalypse': 8004, 'humorcoronavirus': 16148, 'factcheck': 12203, 'landfall': 18804, '0541296': 78, 'uselessness': 34641, 'staysafestayhom': 31036, 'boc': 4851, 'intensified': 17158, '0214996028': 47, 'nan': 21988, 'facetimed': 12191, 'womenpeacebuilders': 36167, 'ctu': 8681, 'paridaias': 24127, 'obtained': 23079, 'munch': 21748, 'boldly': 4896, 'privately': 25669, 'huawei': 16082, '553': 1098, '790': 1339, 'stemming': 31088, 'redoubled': 26921, 'coronavisurs': 8132, 'mustapha': 21802, 'allamin': 2398, 'opelika': 23426, 'fuller': 13627, 'snappy': 30110, 'slogan': 29988, 'messy': 20882, 'handwashes': 15070, 'hindustanunilever': 15651, 'albuquerque': 2322, 'abq': 1650, 'newmexico': 22353, 'reluctantly': 27145, 'ravage': 26635, 'overcoming': 23729, 'tpmp': 33383, 'tpshortage2020': 33390, 'pietre': 24783, 'holistic': 15777, '1968': 386, 'doomsdayprepper': 10461, 'apologetically': 2920, 'cosumerbehavior': 8218, 'isolationism': 17473, 'advertisingtrends': 2004, 'superbrugsen': 31714, 'ndby': 22178, 'spill': 30578, 'dontpanic': 10437, 'saturdayvibes': 28570, 'akash': 2273, 'smethwick': 30059, 'dusty': 10791, 'gearhard': 13898, 'homeland': 15830, 'richiet': 27731, 'unemploymentinsurance': 34254, 'ohiolockdown': 23198, 'imune': 16667, 'buliders': 5490, 'gojo': 14336, 'jhalakbollywood': 17760, 'jhalakkollywood': 17761, 'jhalaktollywood': 17762, 'shavedonatenominate': 29353, 'marcus': 20278, 'unnoticed': 34398, 'mapoli': 20259, 'wef20': 35623, 'besieged': 4380, 'thetechinfinite': 32782, 'assembles': 3292, 'mzansi': 21893, 'namc': 21976, 'sifiso': 29701, 'ntombela': 22889, 'nu': 22893, 'simon': 29753, 'ttravelandyouwon': 33791, 'tdoit': 32328, 'dundalk': 10754, 'homeschooling': 15853, 'wheeler': 35817, 'callofduty': 5799, 'atv': 3438, 'rtv': 28091, 'recreation': 26867, 'strengthened': 31396, 'vincentian': 35056, '901': 1462, 'braker': 5147, '78758': 1336, 'onlinemarketing': 23362, 'customersatisfaction': 8807, 'electronicsindustry': 11191, 'investmentbanking': 17311, 'settling': 29212, 'infocoronavirus': 16916, 'foodvaluechain': 13154, 'underwear': 34224, 'lingerie': 19327, 'wearyourmask': 35568, 'econmic': 10987, 'fundamental': 13646, 'lifelong': 19258, 'salvador': 28386, 'alternating': 2490, 'no1': 22574, 'bouncer': 5059, 'ebaypricegouging': 10935, 'discovering': 10048, '128': 223, 'tfeu': 32571, 'softest': 30270, 'postpandemic': 25281, 'killit': 18378, 'jasmine': 17658, 'rvaca': 28190, 'starlingbank': 30876, 'paywall': 24314, 'castlevania': 6150, 'dispatcher': 10130, 'resturants': 27498, 'peckham': 24363, 'erdogan': 11632, 'ramesh': 26534, 'ind': 16761, 'verma': 34941, 'cornholio': 7986, 'beavisandbutthead': 4161, 'pineapple': 24819, 'thediamondloupe': 32677, 'tier': 32974, 'petra': 24605, 'fdacs': 12454, 'sny': 30153, '87': 1425, 'ifa': 16398, 'mymoney': 21861, 'reviewing': 27652, 'superblue': 31712, 'sham': 29288, 'charlatan': 6483, 'curtain': 8777, 'buenos': 5459, 'aire': 2240, 'yasky': 36527, 'sappy': 28514, 'proje': 25775, 'simulates': 29771, 'pathogenic': 24238, 'continuously': 7818, 'altercation': 2486, 'globalization': 14232, 'magento': 19988, 'magedia': 19987, 'icmyi': 16335, 'nat': 22044, 'fresno': 13475, 'interpol': 17218, 'unfamiliar': 34266, 'ferocity': 12554, 'witnessing': 36123, 'northsomerset': 22725, 'westonsupermare': 35733, 'exerciseathome': 11969, 'bustling': 5623, 'deborah': 9195, 'callingwood': 5797, 'ridiculed': 27748, 'upmost': 34542, 'downhill': 10524, 'doorknob': 10469, 'moisturizer': 21347, 'virology': 35092, 'interior': 17193, 'didyouknow': 9819, 'moistwipes': 21349, 'disinfectantwipes': 10091, 'wheels24': 35819, 'completes': 7458, 'basement': 3989, 'penguin': 24422, 'whale': 35776, 'installing': 17093, 'wpi': 36326, 'wpidata': 36327, 'digitalbanking': 9864, 'mountaineer': 21577, 'maryannfishing': 20402, 'allnatural': 2425, 'dearbernie': 9168, 'maslow': 20440, 'hierarchy': 15593, 'vigorous': 35034, 'silverlinings': 29746, 'nay': 22123, 'sayers': 28639, 'mjt': 21223, 'vegetableoils': 34876, 'freakonomics': 13403, 'podium': 25069, 'impractical': 16635, 'differs': 9847, 'wildly': 35990, 'improving': 16650, 'buybooks': 5655, 'stockwell': 31233, 'ada': 1853, 'millenials': 21057, 'genx': 13973, 'zoomers': 36822, 'spin': 30582, 'tolerable': 33196, 'idshield': 16391, 'privacymanagement': 25662, 'wecanhelp': 35596, 'namely': 21981, 'shrewd': 29609, 'manoeuvre': 20230, 'optimizing': 23491, 'beautymatter': 4157, 'humbled': 16141, 'appreciative': 2987, 'mechanic': 20656, 'antibiotic': 2822, 'jackinthebox': 17581, 'studiocity': 31469, 'canyon': 5935, 'mistreat': 21199, 'jackbox': 17574, 'substitution': 31560, 'dontbuythesun': 10426, 'mha': 20930, 'lager': 18740, 'mattieu': 20508, 'stouffers': 31340, 'entree': 11543, 'kn95mask': 18486, 'medicalmask': 20690, 'rampaging': 26543, 'akan': 2272, 'dekat': 9369, 'stesen': 31128, 'balai': 3826, 'dasani': 9034, 'arrowhead': 3158, 'receptionist': 26817, 'kindnesscounts': 18398, 'cone': 7552, 'slavery': 29948, 'plaquenil': 24919, 'prohibitive': 25773, 'nottingham': 22812, 'casualty': 6154, 'flapol': 12876, 'shopclub': 29498, 'staywell': 31049, 'kitten': 18449, 'uhh': 34026, 'nv04': 22955, 'brewdog': 5256, 'seaside': 28907, 'accusing': 1767, 'coneyisland': 7553, 'revise': 27653, 'stalling': 30835, 'wept': 35692, 'dundas': 10755, 'hurontario': 16184, 'stayhomesave': 30992, 'dispersion': 10140, 'informing': 16930, 'attempted': 3407, 'subprime': 31530, 'instinct': 17106, '34kfwlbmsd': 807, 'fvck': 13706, 'sidneysmithcre8tiv': 29692, 'quadruplethreatstar': 26213, 'standup': 30854, 'nuke': 22903, 'grau': 14584, 'naphtha': 22006, 'languishing': 18822, 'recondition': 26844, 'eod': 11573, 'retraction': 27587, 'westbiloxi': 35714, 'walmarts': 35339, 'behaviorchange': 4244, 'pisano': 24847, 'liberally': 19211, 'foodstorage': 13141, '320': 784, '330': 794, 'zealot': 36741, 'magnified': 20003, 'fct': 12450, 'gently': 13969, 'directing': 9960, '4p': 1024, 'prioritized': 25647, 'littering': 19388, 'recyclables': 26880, 'eastenders': 10885, 'ohtogobacktonormal': 23206, 'texpirg': 32564, 'absentee': 1663, 'equifax': 11609, 'experian': 12023, 'idly': 16385, 'voluntary': 35192, 'helicopter': 15438, 'uncontrollable': 34157, 'perso': 24549, 'estonian': 11733, 'engrossed': 11467, 'labelling': 18706, 'gail': 13743, 'sahar': 28311, 'kolobi': 18545, 'knackdown': 18487, 'upandan': 34513, 'brandsvscovid19': 5171, 'changingmarkets': 6446, 'changingconsumers': 6445, 'agmarketingiq': 2153, 'pspcl': 25979, 'csa': 8659, 'ndash': 22177, 'housework': 16018, 'summerlin': 31659, 'boulder': 5054, 'ccsd': 6250, 'ccsdnews': 6251, 'vegasnews': 34870, 'scaremongering': 28699, 'magatrain': 19980, 'magats': 19981, 'gianourmous': 14101, 'falsepanic': 12272, 'worldshutdown': 36276, 'cleric': 6974, 'patreon': 24249, 'icon': 16337, 'discord': 10037, 'nsfw': 22876, 'nerd': 22278, 'appalachia': 2930, 'retaining': 27565, 'kpis': 18579, 'sanitzer': 28475, 'someday': 30330, 'valueless': 34770, 'betterment': 4411, 'itsnottheapocalypse': 17531, 'stoptakingeverything': 31297, 'thinkbeforeyoubuy': 32821, 'adversely': 1995, 'chartered': 6497, 'feedly': 12515, 'hawaiian': 15245, 'foodmanufacturers': 13121, 'esselunga': 11690, 'prato': 25391, 'os': 23580, 'buoyed': 5532, '132': 241, 'umhlanga': 34098, 'euficoemcasa': 11781, 'futile': 13691, 'kcet': 18166, 'sanantonio': 28412, 'bookshop': 4954, 'cbse': 6232, 'ahsec': 2207, 'examscancelled': 11915, 'puremichigan': 26101, 'restarting': 27460, 'rebooting': 26788, 'yum': 36691, 'fatigue': 12396, '410': 928, '528': 1084, '8662': 1421, 'heau': 15389, 'working4md': 36234, 'alerta': 2345, 'shitting': 29466, 'mobo': 21287, 'keepcalmandstoppanicbuying': 18186, 'rhe': 27693, 'centennial': 6318, 'motivated': 21555, 'raining': 26483, 'angelenos': 2728, 'pumpkin': 26063, 'bordering': 4986, 'vulnrable': 35246, 'vari': 34822, 'meetingthechallenges': 20729, 'lessens': 19121, 'fhe': 12598, 'tropic': 33645, 'dengue': 9487, 'stalk': 30830, 'hygene': 16241, 'r4today': 26402, 'mufc': 21687, 'cutts': 8834, 'notgalleryinventory': 22771, 'instaart': 17076, 'instaartist': 17077, 'attoftheday': 3424, 'stevecutts': 31131, 'vicki': 34991, 'clc': 6924, 'walgreen': 35311, 'sycophant': 32053, 'oap': 23020, 'bizitalk': 4646, 'initiate': 16978, 'etailers': 11741, 'fuckpanicbuyers': 13588, 'toilettenpapier': 33186, 'mediziner': 20712, 'nennt': 22267, 'symptome': 32076, 'durchfall': 10779, 'sei': 29000, 'selten': 29071, 'gewesen': 14058, 'streeck': 31385, 'squarely': 30741, 'biman': 4549, 'basu': 4010, 'honkhonk': 15884, 'saks': 28342, '6ftapart': 1251, 'siddiqi': 29679, 'socialisolation': 30224, 'comeback': 7289, 'survivalmode': 31896, 'hornsby': 15934, 'illustrates': 16493, 'bl': 4654, 'argusoil': 3094, 'shaft': 29263, 'stopthegreed': 31300, 'classy': 6912, 'groveroes': 14745, 'animalcrossingnewhorizon': 2752, 'mygolfspy': 21848, 'superheros': 31729, 'becauze': 4169, 'surpasses': 31871, 'despot': 9642, 'obsolescent': 23071, 'disproportionately': 10155, 'blackcab': 4658, 'blockade': 4750, 'advising': 2012, 'buoyant': 5531, 'jetty': 17748, 'homebuilder': 15806, 'cattleman': 6192, 'bitdefender': 4628, 'inflammatory': 16896, 'scourge': 28808, 'firmly': 12790, 'scardina': 28696, 'elaborates': 11148, 'rebuild': 26794, 'gracie': 14511, 'heraldsun': 15520, 'petsofinsta': 24625, 'dogsofinstagram': 10347, 'nikonphotography': 22509, 'petphotography': 24604, 'canine': 5893, '9pm': 1548, 'pardeeprofs': 24114, 'latinamerica': 18893, 'straining': 31350, 'nahi': 21945, 'haldi': 14968, 'pani': 24018, 'peenay': 24379, 'nai': 21946, 'marta': 20382, 'neatly': 22204, 'tart': 32260, 'whatthehelldoyouhavetolose': 35805, 'trumptweet': 33738, 'trumptradewar': 33737, 'imi': 16538, 'marketingstrategy': 20331, 'marketingonline': 20328, 'sousa': 30413, 'foolish': 13166, 'accomplished': 1738, 'idontunerstand': 16386, 'turbine': 33854, 'renews': 27213, 'gencorpower': 13929, 'powergen': 25336, 'hinoo': 15655, 'blackmarketing': 4668, 'swil': 32008, 'professionally': 25731, 'retailgraph': 27531, 'supermarketsoftware': 31749, 'swilsoftware': 32009, 'snazzy': 30114, 'hepa': 15516, 'chipped': 6689, 'auckland': 3449, 'prestige': 25543, 'louise': 19704, 'ame': 2564, 'spx500': 30726, '2421': 606, 'nas100': 22026, '7288': 1296, '1485': 267, '165': 310, 'incorrect': 16740, 'ryanair': 28202, 'lewk': 19175, 'makeupnoob': 20103, 'jeffreestarcosmetics': 17698, 'facetattoos': 12189, 'wwll': 36424, 'bbcqt': 4080, 'peston': 24582, 'disgust': 10078, 'obese': 23034, 'fsr': 13556, 'normsl': 22700, 'expires': 12038, 'scriptchat': 28843, 'trumpistheworstpresidentever': 33704, 'trumpliesaboutcoronavirus': 33711, 'kinsa': 18411, 'quickcare': 26340, 'bitte': 4632, 'anschauen': 2805, 'emotionaler': 11316, 'aufruf': 3467, 'gehard': 13909, 'bosselmann': 5026, 'hannover': 15092, 'gehen': 13910, 'sie': 29694, 'zu': 36832, 'ihrem': 16446, 'cker': 6857, 'ecke': 10963, 'schei': 28728, 'egal': 11099, 'wie': 35967, 'hei': 15418, 'hin': 15639, 'mittelstand': 21213, 'handwerk': 15072, 'landb': 18802, 'ckereibosselmann': 6858, 'emsland': 11362, '9629': 1519, 'upbeat': 34514, 'p500': 23855, 'nzd': 23004, 'owor': 23826, 'clickers': 6984, 'overcapacity': 23724, 'vigilance': 35030, 'alr': 2472, 'accurately': 1761, 'provoke': 25952, 'icco': 16318, 'hollow': 15783, '368': 835, '8808': 1432, 'grilled': 14665, 'resturant': 27497, '69th': 1245, 'astounding': 3336, 'thanksvodafone': 32615, 'airlinebailout': 2247, 'baggage': 3779, 'preece': 25455, 'wheelchair': 35815, 'chuck': 6766, 'pricecycle': 25586, 'publictransport': 26032, 'graphical': 14564, 'enlisted': 11483, 'pdmac': 24339, 'prince': 25624, 'wiwt': 36126, 'arcing': 3061, 'plateau': 24927, 'charliebaker': 6487, 'weareallinthistogether': 35544, 'bostonathlete': 5030, 'bostonathletemagazine': 5031, 'icke': 16329, 'day11oflockdown': 9101, 'greenhouse': 14628, 'adrian': 1972, 'agege': 2123, 'lga': 19187, 'oseni': 23583, 'olamide': 23255, '0026691661': 3, 'gayrunner': 13870, 'thisiswhattranslookslike': 32858, 'mastersathlete': 20467, 'transathlete': 33464, 'lgbt': 19189, 'geodoinggeothings': 13978, 'runnerslife': 28147, 'runloverock': 28145, 'stapler': 30862, 'allergen': 2411, 'fashioned': 12365, 'cliffe': 6993, '2007': 466, 'multilateral': 21717, 'novop': 22842, 'abode': 1638, 'segregation': 28998, 'wymondham': 36429, 'normalize': 22694, 'scrapped': 28822, 'undermined': 34195, 'raboresearch': 26415, 'barking': 3944, 'dagenham': 8908, 'springboot': 30698, 'somegoodnews': 30331, 'brandprotection': 5169, 'ohh': 23196, 'charliemackesy': 6488, 'gratefulforournhs': 14577, 'nhsengland': 22438, 'supermarketsuperstars': 31753, 'foam': 13027, 'ola': 23254, 'chloroquineinn': 6705, 'godssake': 14317, 'ogemgo3qw7': 23187, 'stalled': 30834, 'trashmen': 33519, 'sheen': 29366, 'numbing': 22910, 'finewineandgoodspirts': 12741, 'wildaf': 35979, 'oppression': 23474, 'sellout': 29067, 'mdc': 20608, 'distract': 10203, 'dunno': 10763, 'grr': 14763, 'alizeh': 2389, 'shah': 29267, 'noman': 22624, 'sami': 28397, 'trolled': 33636, 'alizehshah': 2390, 'nomansami': 22625, 'extort': 12106, 'youbeneathyourskin': 36626, 'ebooks': 10948, 'si': 29657, 'brisket': 5315, 'whoo': 35922, 'hoo': 15892, 'passoverdinner': 24202, 'craigs': 8405, 'statista': 30923, 'nimmo': 22512, 'diarrhoea': 9792, 'cantwin': 5931, 'countryrisk': 8277, 'ororo': 23569, 'transistor': 33482, 'melaye': 20760, 'gordon': 14425, 'stayhomecanada': 30981, 'apcoinsight': 2888, 'flavoured': 12910, 'sparkling': 30492, 'description': 9599, '30a': 755, '8p': 1455, 'bridgeport': 5277, 'cern': 6354, 'lhc': 19195, 'physic': 24734, 'infectiousdiseases': 16885, 'scoffing': 28784, 'ne': 22192, 'zillion': 36779, 'ncovsupply': 22167, 'ncovsupplies': 22166, 'sensitize': 29130, 'accompanied': 1734, 'pestilence': 24581, 'assurance': 3321, 'bescom': 4375, 'uniterrupted': 34346, 'betwinnervirtual': 4420, 'deputized': 9566, 'gratuitous': 14583, 'petulant': 24630, 'momentarily': 21366, '927': 1489, 'whereisjoebiden': 35839, 'm4a': 19895, 'forgiveness': 13243, 'handout': 15050, 'atp': 3389, 'forgetting': 13239, 'hamsteren': 15018, 'katrina': 18129, 'rita': 27831, 'ike': 16462, 'mres': 21627, 'herded': 15529, 'likeit': 19287, 'gallinago': 13763, 'sturgeon': 31495, 'junky': 17965, 'junkie': 17963, 'yk': 36590, 'incapable': 16691, 'tigerking': 32979, 'carolebaskin': 6063, 'twitterdoyourthing': 33933, 'armyselcaday': 3124, 'arsd': 3162, 'retention': 27571, 'offsetting': 23178, 'heartening': 15372, 'humanitas': 16128, 'reflex': 26978, 'worktogether': 36255, 'ukcoronavirus': 34043, '750bn': 1309, 'bowed': 5075, 'cheered': 6552, 'babyessentials': 3702, 'cleanhandssavelives': 6935, 'thankyoupost': 32629, 'lakelyn': 18761, 'babylake': 3706, 'noviruswanted': 22839, 'cartersbaby': 6100, 'unfollowed': 34279, 'insta': 17075, 'boasting': 4841, 'gunjan': 14850, 'alpha': 2466, 'morl': 21495, 'mrrl': 21636, 'reml': 27176, 'dork': 10478, 'visitation': 35125, 'leaflet': 18982, 'teampnp': 32355, 'weserveandprotect': 35705, 'pnpkakampimo': 25051, 'conmen': 7617, 'bahrami': 3793, 'uniteideas': 34344, 'heaven': 15391, 'hades': 14917, 'foodpantry': 13127, 'aia': 2210, 'trenton': 33581, 'princeton': 25627, 'feedamerica': 12499, 'frogger': 13519, 'europeansagainstcovid19': 11794, 'investing101': 17309, 'forexinvestment': 13229, 'forexmarket': 13230, 'crown': 8607, 'barnet': 3949, 'conway3': 7894, 'mccormick': 20582, 'kbra': 18163, 'securitizations': 28955, 'suffolk': 31611, 'healthinnovations': 15338, 'blacklisting': 4663, 'faithful': 12245, 'noma': 22622, 'sana': 28411, 'kitengela': 18443, 'kobil': 18526, 'ku': 18629, 'mzalendo': 21892, 'chezaclean': 6612, 'changamka': 6438, '708': 1279, 'liking': 19292, 'immuno': 16565, 'ibd': 16301, 'foraging': 13187, 'boxed': 5085, 'mukesh': 21698, 'ambani': 2550, 'vaka98': 34745, 'anakkalege': 2662, 'ilmez': 16496, 'clubtwitter': 7063, 'centrex': 6338, '65s': 1221, 'postcode': 25264, 'b8': 3689, 'b9': 3690, 'b23': 3680, 'b24': 3681, 'b34': 3684, 'b35': 3685, 'b36': 3686, 'b37': 3687, 'seattlecartoonist': 28920, 'seattleillustrator': 28923, 'dailycomic': 8913, 'seattlescene': 28925, 'sensation': 29118, 'forecasted': 13207, '14k': 272, 'quar': 26236, 'wwe': 36417, 'wrestler': 36345, 'merch': 20837, 'slaughterhouse': 29944, 'porc': 25195, 'comb': 7276, 'braiding': 5136, '0800203033': 109, '080010066': 108, '0782909153': 100, '0772460297': 97, '0772469323': 98, 'ian': 16295, 'telecare': 32429, 'tc': 32317, 'raider': 26472, 'uspol': 34664, 'froze': 13536, 'mths': 21665, 'federally': 12489, 'besmartbesafe': 4382, 'saath': 28227, 'bhi': 4465, 'gayi': 13867, 'ki': 18328, 'baniyawaalas': 3889, 'incendiary': 16695, 'biological': 4583, 'peopleareselfish': 24452, 'incubation': 16757, 'ordinated': 23522, 'invaded': 17278, 'foodhoard': 13108, 'antivirus': 2847, 'norton': 22731, 'mcafee': 20569, 'kaspersky': 18115, 'rsr': 28080, 'jukebox': 17941, 'pubclosures': 26010, 'shutdownuk': 29640, 'fuckingidiots': 13581, 'workbook': 36217, 'bullet': 5500, 'hydroxycoroquine': 16239, 'marylander': 20406, 'reduceinternetprices': 26930, 'mynewnormal': 21862, 'michele': 20950, 'satisfying': 28559, 'oliverscampaign': 23274, 'bethesda': 4404, 'julii': 17947, 'supportlocalrestaurants': 31818, 'inept': 16860, 'boyc': 5090, '366': 834, '357': 818, 'nevasa': 22321, 'sedate': 28966, 'santabarbara': 28489, 'forcedsmiles': 13197, 'stayawayfromme': 30953, 'worsen': 36297, 'hurried': 16188, 'gulzar': 14843, 'zafar': 36713, 'unsatisfactory': 34446, 'motu': 21571, 'awaited': 3610, 'gamify': 13782, 'scavenger': 28711, 'pickle': 24754, 'stockyard': 31234, 'divergence': 10240, 'holcomb': 15763, 'hawking': 15250, 'intensively': 17162, 'nurture': 22935, 'trimmed': 33612, '854': 1410, 'undernourished': 34198, 'morally': 21474, 'portrays': 25225, '400k': 907, 'm25': 19894, 'pandamicsays': 23979, 'wipeyourwayout': 36066, 'lunathi': 19818, 'hlakanyane': 15699, 'farmers4change': 12329, 'pandamic': 23978, 'foodbiznews': 13085, 'foodtrends': 13153, 'mandarino': 20176, 'queenvictotia': 26310, '551': 1097, '827': 1388, 'airing': 2245, 'helpourelderly': 15474, 'inconvenient': 16736, 'ashland': 3230, 'instituted': 17108, 'luxemburg': 19848, 'webinarwednesdays': 35585, 'striking': 31422, 'reiterate': 27073, 'overdue': 23739, 'sampling': 28404, 'sprout': 30714, 'gelson': 13923, 'vallarta': 34762, 'ommcomnews': 23303, 'kelowna': 18229, 'gamble': 13773, 'coffeetime': 7162, 'improvisation': 16651, 'wv': 36408, 'jesusfails': 17742, 'dread': 10599, 'historian': 15675, 'sportsdirectshame': 30653, 'arkansan': 3106, 'sanctuary': 28424, 'rainforest': 26482, 'offspring': 23181, 'duct': 10719, 'ducttape': 10720, 'pws': 26160, 'hereforyou': 15538, 'plumbingproblems': 25011, 'pipework': 24841, '102': 147, 'maxmotives': 20533, 'idk': 16380, 'deer': 9286, 'merci': 20843, 'madame': 19941, 'vous': 35221, 'vos': 35208, 'gues': 14806, 'nous': 22823, 'pouvons': 25318, 'tous': 33346, 'lutter': 19845, 'contre': 7836, 'assurer': 3324, 'votre': 35219, 'curit': 8758, 'dans': 9003, 'sans': 28487, 'dent': 9504, 'produire': 25724, 'pandemicquestions': 24002, 'fwitts': 13711, 'spluttering': 30616, '90mins': 1467, 'staticair': 30917, 'movefaster': 21591, 'lenana': 19088, 'rudely': 28109, 'nurses2020': 22927, 'nursesunite': 22930, 'laughteristhebestmedicine': 18911, 'paton': 24247, 'tasmania': 32269, 'meager': 20619, 'menial': 20803, 'dist': 10179, 'maricopa': 20294, '242': 605, '630': 1202, '112': 185, 'collier': 7238, 'dunkin': 10759, 'endhunger': 11402, 'averaged': 3578, 'ffpi': 12591, '4pc': 1025, 'nationwidelockdown': 22070, 'ausp': 3486, 'blazing': 4704, 'uniquely': 34329, 'luna': 19815, 'harness': 15167, 'vender': 34895, 'allege': 2404, 'ingenious': 16945, 'placement': 24891, 'welcoming': 35663, 'scorpion': 28796, 'womeninstem': 36165, 'socialj': 30228, 'brittain': 5328, 'freelancing': 13430, 'digitalnomad': 9884, 'entrepreneurship': 11547, 'onlineretail': 23366, 'sales': 28355, 'brianelderroofing': 5268, 'ebitda': 10941, 'stockstowatch': 31228, 'stockbags': 31202, 'exacerbate': 11898, 'joysms': 17899, 'tease': 32367, 'polio': 25116, 'eradication': 11626, 'linear': 19320, 'unfinished': 34272, 'puzzels': 26148, 'recruitment': 26873, 'bowling': 5080, 'comptroller': 7497, 'glenn': 14212, 'hegar': 15416, 'focal': 13030, 'mpa': 21611, 'presided': 25527, 'ghaffar': 14071, 'soomro': 30365, 'adeel': 1892, 'chandio': 6433, 'examined': 11911, 'noshame': 22741, 'nosense': 22739, 'cancelsky': 5878, 'clamp': 6871, 'sisolak': 29826, 'peo': 24445, 'chucklevision': 6770, 'chucklebrothers': 6768, 'oxfordshire': 23830, 'estrella': 11736, 'dhirajsons': 9760, 'soapandwater': 30168, 'theshinning': 32768, 'comeplaywithus': 7296, 'comeplay': 7295, 'coronaviral': 8126, 'shabby': 29254, 'milliona': 21065, 'misread': 21175, 'regulates': 27043, 'cytokine': 8880, 'modest': 21311, 'tierras': 32976, 'aztecas': 3675, 'sube': 31514, 'consults': 7700, 'radiation': 26441, 'yajuj': 36501, 'majuj': 20078, 'schoolsout': 28760, 'ggp': 14067, 'pours': 25317, 'videotaped': 35014, 'respectable': 27421, 'rosekart': 28005, 'joann': 17802, 'loungewear': 19710, 'couscous': 8298, 'gigantifying': 14118, 'kitkat': 18446, 'disclosed': 10024, '774': 1325, 'kempston': 18233, 'stayhomebesafe': 30979, 'freeshipping': 13441, 'eustace': 11800, 'presser': 25536, '0300': 56, '123': 217, '2040': 510, 'scamwarnings': 28681, 'ihatetheinternet': 16440, 'whodidthis': 35912, 'ptcares': 26000, 'vlogger': 35159, 'blogger': 4759, 'lmbo': 19455, 'ihti': 16449, 'currentevents': 8764, 'wuhanchina': 36393, 'wuhancorona': 36394, 'primer': 25620, 'irrigation20': 17415, 'coulditbeworsethan2019': 8235, 'paraphrase': 24106, 'prosper': 25874, 'farewell': 12317, 'postapocalyptic': 25261, 'llap': 19442, 'regs': 27037, 'offshore': 23179, 'delicate': 9401, 'zakatify': 36719, 'sixteen': 29848, 'rescuing': 27345, 'staten': 30909, 'ramadanstrong': 26520, 'haa': 14896, 'winny': 36055, 'bint': 4565, 'partly': 24173, 'mischief': 21156, 'automation': 3542, 'furnish': 13679, 'obvi': 23083, 'sender': 29097, 'caller': 5794, 'renewannewithane': 27210, 'discarded': 10014, 'vinylgloves': 35070, 'encroaching': 11390, 'shi': 29417, 'ting': 33033, 'corson': 8184, 'holliewoodandfriends': 15782, 'helmet': 15447, 'skateboard': 29858, 'keepactive': 18182, 'newscaster': 22369, 'drumettes': 10668, 'tumeric': 33837, 'cumin': 8719, '15mins': 298, 'saddest': 28260, 'signofthetines': 29725, 'worldgonemad': 36265, 'aisi': 2258, 'taisi': 32149, 'inspects': 17066, 'tobruk': 33107, 'corrupted': 8180, 'eliminated': 11212, '188': 350, '135': 248, 'ipc': 17350, 'shahibaugh': 29272, 'malegaon': 20130, 'chineseviruscorona': 6681, 'ethereum': 11755, 'commoditymarkets': 7367, 'usdbitstamp': 34626, 'ripplexrp': 27803, 'befairtoall': 4216, 'photoshoot': 24725, 'studioshoot': 31470, 'coronaart': 8005, 'halving': 14996, 'businessoutlook': 5606, '6m': 1256, '3days': 869, 'decit': 9233, 'wickedness': 35952, 'wahala': 35274, 'idio': 16372, 'hackathon': 14908, 'titanhacks': 33064, 'submission': 31523, 'arsewipe': 3170, 'implies': 16607, 'herding': 15531, 'coronvirusaus': 8142, 'bandipora': 3867, 'shahbaz': 29268, 'ahmad': 2199, 'constituted': 7686, '99p': 1539, 'fuckingchancers': 13580, 'jr': 17904, 'ankara': 2764, '156': 287, 'viruscoronaupdate': 35111, 'updateviruscorona': 34520, 'vilains': 35044, 'nonessential': 22641, 'hawthorn': 15254, 'reposition': 27283, 'jordanian': 17873, '604': 1175, '9802': 1529, 'bergamo': 4344, 'cremation': 8499, 'morgue': 21492, 'stoptouchingyourface': 31309, 'phillyascleo': 24691, 'thetwiddleofficial': 32783, 'gantz': 13793, 'omwanvu': 23309, 'wakuffa': 35307, 'topped': 33253, 'pickins': 24753, 'ebmt': 10943, 'biopharma': 4588, 'andrewyang': 2710, 'shopowner': 29527, 'asiyah': 3252, 'javed': 17664, 'gaugers': 13851, 'musical': 21790, 'germx': 14011, 'beervirus': 4211, 'damnbeervirus': 8964, 'coronabeervirus': 8009, 'bedford': 4187, 'abide': 1622, 'snitch': 30135, 'hereafter': 15535, 'tangentially': 32220, 'yuma': 36692, 'covied19': 8340, 'financialempowerment': 12706, 'folder': 13048, 'oxygenators': 23834, 'sin': 29777, 'unsungheroes': 34468, 'furry': 13683, 'outlined': 23670, 'alleging': 2407, 'honoring': 15889, 'yourpoorcolon': 36653, 'yourpoortoilet': 36654, 'senitizer': 29116, 'wfhtips': 35764, 'lsuhfno': 19772, 'shiseido': 29452, 'gambling': 13774, 'hamstering': 15019, 'daytime': 9123, 'adbuy': 1870, 'adsense': 1974, 'advertisement': 2000, 'productplacement': 25723, 'backbreaking': 3721, 'heaux': 15390, 'catsofthequarantine': 6189, 'catsofinstagram': 6188, 'scenery': 28718, 'jackig': 17579, 'mth': 21662, 'reopened': 27228, 'maxvalue': 20534, 'safestore': 28289, 'snacking': 30097, 'sensical': 29127, 'rex': 27684, 'dander': 8984, 'everyonematters': 11857, 'correlation': 8173, 'unctad': 34167, 'rylan': 28208, 'annadominic12345': 2772, 'mehtaa3': 20748, 'caresact': 6029, 'fcra': 12447, 'mainzer': 20066, 'peaked': 24349, 'rs4': 28074, 'hussain': 16201, '3hrs': 877, 'notinthistogether': 22792, 'tame': 32202, 'palate': 23940, 'fin': 12686, 'blanket': 4690, '30day': 757, 'crucified': 8615, 'resurrection': 27511, 'goodfriday2020': 14378, 'montana': 21432, 'hitchens': 15684, 'feckin': 12484, 'dunce': 10753, 'nicola': 22471, 'lacetera': 18723, 'hobnobbing': 15737, 'stayinside': 31017, 'trumph': 33700, 'sinceivebeenquarantined': 29783, 'scalping': 28667, 'frescogrocers': 13463, 'trivia': 33628, 'impair': 16583, 'postitive': 25275, 'biobarrier': 4568, 'customersafety': 8806, 'annoys': 2792, 'riversidecounty': 27842, 'marvelous': 20396, 'iodine': 17338, 'arrears': 3144, 'daft': 8906, 'groaning': 14684, 'riice': 27774, 'pastaa': 24208, 'campbell9': 5849, 'rediscovery': 26912, 'notouchy': 22800, 'kuzco': 18664, 'shaggy': 29266, '800ksh': 1361, '00ksh': 14, 'housewear': 16017, 'save0745927128': 28596, '0787370387': 101, 'ecommercebytes': 10978, 'nightclub': 22491, 'reprediction': 27290, 'imho': 16536, 'governmental': 14475, 'moj': 21350, 'constitutes': 7687, 'brainwashed': 5144, 'icantstayhomeiamanure': 16312, 'nursesareheroes': 22928, 'fuckfaces': 13577, 'occupied': 23099, 'incontrovertible': 16732, 'handclap': 15031, 'fitz': 12833, 'lancashire': 18793, 'lancashirehour': 18794, 'lifeatprime': 19244, 'attauthorizedretailer': 3404, 'law360': 18930, 'oped': 23424, 'experimental': 12030, 'omgg': 23300, 'labatt': 18700, 'cautiously': 6210, 'veto': 34969, 'choked': 6718, 'racialization': 26426, 'attach': 3395, 'notalwaysaboutyou': 22755, 'compassioninads': 7423, 'compassionatecommunity': 7422, 'dallascounty': 8944, 'pertinent': 24571, 'infront': 16939, 'nightly': 22495, 'andalucia': 2693, 'sanlucar': 28484, 'desert': 9602, 'biitches': 4523, 'jumanji': 17949, 'tinted': 33039, 'hater': 15214, 'golub': 14360, 'stroller': 31437, 'retailbusiness': 27521, 'omfg': 23298, 'eulogy': 11786, 'tamper': 32208, 'rmo': 27866, 'amrusha': 2639, 'amrushafightscovid19': 2641, 'amrushaeradicatinghunger': 2640, 'nijobs': 22504, 'sweeting': 31999, 'kyoto': 18690, 'macrobusiness': 19931, 'goodlettsville': 14383, 'southeastasian': 30424, 'middleeastern': 20991, 'bloom': 4776, 'precenting': 25429, '226k': 573, '54k': 1093, 'taunt': 32290, 'hoardershaming': 15726, '25thamendmentnow': 642, 'bunga': 5524, 'revoked': 27666, 'jfk': 17758, 'popeyes': 25182, 'coachj': 7109, 'submitting': 31527, 'impatient': 16586, 'descend': 9590, 'ditch': 10230, 'dampf': 8973, 'paramus': 24102, 'niche': 22461, 'precipitate': 25433, 'payworkersfairly': 24317, 'thrus': 32933, 'negligible': 22244, 'covoid19': 8345, 'emptystore': 11360, 'homesteading': 15857, 'homesteader': 15856, 'countryliving': 8275, 'countrylifestyle': 8274, 'countrylife': 8273, 'outdoorliving': 23649, 'outdoorlife': 23648, 'zoonosis': 36826, 'lancet': 18797, 'ecology': 10972, 'unnatural': 34394, 'ifmarkwatneycoulddoit': 16404, 'actualfacts': 1845, 'taliban': 32188, 'afghani': 2069, 'stronghold': 31443, 'valve': 34771, '2089': 516, 'amusement': 2648, 'suv': 31945, 'systematically': 32101, 'suoermarket': 31706, 'outlive': 23672, 'zatural': 36733, 'mgnrega': 20928, 'deceleration': 9215, 'statcan': 30900, 'ded': 9263, 'peut': 24632, 'palisade': 23944, 'nicholas': 22463, 'bertram': 4369, 'suggestive': 31620, 'singlepoint': 29804, 'otcqb': 23605, 'sing': 29791, 'klen': 18471, '505': 1050, 'succumbs': 31579, 'cookinginacrisis': 7903, 'lighter': 19277, 'banter': 3912, 'gaming': 13783, 'aahh': 1567, 'c920s': 5708, 'secureyourinfo': 28953, 'alfred': 2360, 'dupuy': 10769, 'sono': 30362, 'hop': 15910, 'hehe': 15417, 'apt': 3024, 'unapologetic': 34115, 'comedic': 7291, 'downright': 10535, 'laughable': 18904, 'allender': 2409, 'stampitout': 30839, 'uktogether': 34072, 'integrated': 17145, 'dilutes': 9908, 'decreasing': 9260, 'xrp': 36476, 'spear': 30511, 'villager': 35049, 'gatsi': 13847, 'mutasa': 21811, 'searchenginemarketing': 28901, 'arguably': 3084, 'enthusiastically': 11534, 'wt': 36370, 'vessel': 34961, 'landingpage': 18807, 'contentcreator': 7793, 'inmate': 16998, 'zeppelin10': 36761, 'overloaded': 23753, 'roche': 27919, 'couriered': 8290, 'everydayimhustlin': 11851, 'snapped': 30109, 'outweighs': 23705, 'abd': 1605, 'contaminating': 7780, 'specimen': 30533, 'doom': 10455, 'undeserving': 34231, 'bubbly': 5438, 'belgique': 4277, 'ensemblecontrecorona': 11508, 'forextrading': 13234, 'marketnews': 20335, 'toyota': 33369, 'nissan': 22533, 'honda': 15871, 'automaker': 3536, 'fmcy': 13014, 'boksburg': 4894, 'axios': 3643, 'coronavaccine': 8119, 'hateisavirus': 15213, 'aapi': 1576, 'amplify': 2631, 'sasse': 28549, 'amdmt': 2563, 'bipartisan': 4600, 'hadda': 14914, 'heldmybreaththewholetime': 15434, 'lihue': 19282, '09093052802': 123, 'ehub': 11122, 'node': 22596, 'reinforce': 27061, 'cgiar': 6389, 'maximizes': 20528, 'captaintrips': 5970, 'tpformybunghole': 33377, 'emphasised': 11327, 'picturesof': 24769, 'naiwan': 21959, 'ay': 3645, 'nissin': 22534, 'hpcl': 16057, 'cmd': 7081, 'mk': 21224, 'surana': 31846, 'dicuss': 9812, 'homedepot': 15821, 'etailer': 11740, 'mongolia': 21406, 'abruptly': 1660, 'northeastern': 22711, 'chipchirps': 6688, 'vlsiresearch': 35163, 'vlsi': 35162, 'ic': 16310, 'tmas': 33086, 'slid': 29970, 'influenced': 16908, 'cheerful': 6553, 'firebomb': 12774, 'ncb': 22150, 'tina': 33027, 'glnrtoday': 14218, 'inherently': 16964, 'unequal': 34256, 'microprocessing': 20974, 'digitallife': 9879, 'fueledby': 13604, 'damanding': 8958, 'pitiful': 24858, 'ohioprimary': 23200, 'jake': 17605, 'commenced': 7331, 'fbi': 12431, 'possession': 25254, 'cleaningmachine': 6937, 'leap': 18995, 'legco': 19050, 'virtuallybartable': 35098, 'oakland': 23016, 'dovish': 10514, 'datuk': 9069, 'jhawk': 17764, 'willfully': 36002, 'precise': 25436, 'hazmat': 15269, 'duck': 10716, 'revealing': 27630, 'elevate': 11202, 'consciousness': 7643, 'collectivemindpower': 7232, 'tov': 33350, 'vienna': 35019, 'motiongraphics': 21551, 'aftereffect': 2091, 'digitalart': 9862, 'visualeffects': 35134, 'vfx': 34973, 'cannon': 5911, 'realitycheck': 26731, 'telescope': 32446, 'examination': 11909, 'aways': 3625, 'unimpressed': 34314, 'mailorder': 20046, 'unpopular': 34412, 'amenity': 2574, 'rentstrike': 27224, 'rentrelief': 27223, 'greedoverpe': 14615, 'shal': 29282, 'frnds': 13516, 'lymphoma': 19880, 'chemotherapy': 6585, 'servicers': 29190, 'bulgaria': 5489, 'restoring': 27480, 'fav': 12406, 'rescheduling': 27341, 'bursting': 5568, 'sizeable': 29853, 'coronated': 8103, 'eyed': 12139, 'fixture': 12852, 'adulation': 1975, 'payphones': 24309, 'littlefireseverywhere': 19393, 'civet': 6840, 'kilowatt': 18382, 'lifespan': 19264, 'mustardoil': 21804, 'enginemustardoil': 11462, 'enginebrand': 11458, 'stayfit': 30964, 'hedger': 15405, 'feedlot': 12514, 'diverge': 10239, 'buffer': 5462, 'tasmanian': 32270, 'subsidised': 31546, 'ccea': 6237, 'approves': 3003, 'hogan': 15751, 'sagamore': 28305, 'aopportunities': 2878, 'industryanalysisadsmurai': 16848, 'kvoenews': 18667, 'butting': 5641, 'teeth': 32418, 'noonegoeshungry': 22667, 'evangelical': 11820, 'judaism': 17916, 'adopted': 1960, 'delimitation': 9406, 'isolationdiaries': 17469, 'coding': 7149, 'dnd': 10296, 'requiermasksworn': 27325, 'wearamask': 35541, 'zelle': 36749, '1952': 380, 'trauma': 33522, 'thankunext': 32617, 'selfquarantined': 29054, 'guyzz': 14878, 'thepeople': 32737, 'anyhow': 2866, 'coronakrise': 8063, 'decontamination': 9251, 'coronavarkenruhhalim': 8120, 'waterpeacesecurity': 35483, 'debbie': 9187, 'dougherty': 10504, 'defecate': 9296, 'trinitysswellness': 33616, 'donegal': 10404, 'reassess': 26774, 'scarfacediary': 28701, 'worldhealthday2020': 36268, 'subzeroflow': 31567, 'relearn2020': 27107, 'toiletpaper911': 33145, 'desinfection': 9620, 'cineplex': 6802, 'pcl': 24329, 'bt13': 5423, 'bt12': 5422, 'soarin': 30173, 'toiletpaperblues': 33149, 'stenographer': 31090, 'spoof': 30636, 'sendhelp': 29098, 'coronaplus': 8085, 'polypropylene': 25145, 'decon': 9248, 'gorollick': 14431, 'powersports': 25343, 'jlmco': 17792, 'jlmcobrand': 17793, 'overcrowding': 23731, 'spre': 30677, 'cheapgas': 6528, 'precisely': 25437, 'deluge': 9437, 'marketwatch': 20348, 'brough': 5378, '1person': 447, 'entryway': 11550, 'leveraging': 19166, 'methodology': 20899, 'bareshares': 3933, 'measuring': 20646, 'hkt': 15697, 'milkdumping': 21048, 'accentuated': 1710, 'jubilee': 17915, 'orchard': 23508, 'clavey': 6918, 'paddlesports': 23888, '826': 1387, 'contaminatedwithstupid': 7779, 'dontbeadick': 10417, 'monkey': 21420, 'lockedupwithatoddler': 19563, 'elbowing': 11155, 'collapsitarian': 7219, 'lasted': 18855, 'adidas': 1910, 'collab': 7206, 'ggsm': 14068, 'progess': 25755, 'ftxp': 13566, 'ewll': 11894, 'abce': 1603, 'biel': 4494, 'gcgx': 13887, 'tptw': 33392, 'fonu': 13071, 'pctl': 24334, 'fuelpricehike': 13609, 'scot': 28797, 'chihuahua': 6634, 'shortcrust': 29561, 'ukfood': 34048, 'lockdownmalaysia': 19535, 'prejudice': 25470, 'misperceptions': 21174, 'stupidly': 31491, 'nascar': 22028, 'deprivation': 9557, 'bootleg': 4973, 'reorganizing': 27231, 'redecorating': 26891, 'bucket': 5444, 'pibfactcheck': 24745, 'agoraphobia': 2161, 'justly': 17992, 'allocate': 2426, 'unjustly': 34362, 'illustrated': 16492, 'digitalmedia': 9883, 'digitalmarketers': 9881, 'whodat': 35911, 'cer': 6345, 'foremost': 13220, 'thx': 32955, 'givingback': 14177, 'guerlain': 14805, 'parfumschristiandior': 24125, 'diorparfums': 9943, 'dior': 9942, 'givenchybeauty': 14172, 'givenchy': 14171, 'optionalize': 23496, 'pilea': 24792, 'prayerplant': 25400, 'overwhelms': 23807, 'ope': 23421, 'pleasesomeonehelp': 24970, 'arvin': 3203, 'irrigation': 17414, 'hose': 15948, 'wefeedyou': 35625, 'davinci': 9083, 'gelato': 13917, 'operates': 23444, 'yegfoodie': 36550, 'edmontonlocal': 11051, 'stalbert': 30828, 'relearn': 27106, 'trinidad': 33614, 'tobago': 33105, 'qild': 26188, 'australiansbeingaustralians': 3507, 'hurtin': 16194, 'rotunden': 28027, 'dkk': 10284, 'smfh': 30061, 'docente': 10306, 'tiempos': 32972, 'enkil': 11478, 'michelle': 20952, 'louisvuitton': 19708, 'eczema': 11022, 'psoriasis': 25978, 'southbeachsymposium': 30420, 'dermatology': 9584, 'hinshaw': 15656, 'quarantinethoughts': 26273, 'crazytimes': 8447, 'sinc': 29780, 'foodprices': 13130, 'cursing': 8771, 'scrappage': 28821, '72m': 1298, 'heater': 15382, 'hct': 15283, 'oll': 23276, 'spilling': 30580, 'kohat': 18535, 'kp': 18577, 'dampness': 8974, 'kubwa': 18632, 'wan': 35352, 'spoil': 30617, 'aedc': 2022, 'kay': 18149, 'ducing': 10715, 'beautynews': 4158, 'welding': 35665, 'pfizer': 24640, 'lease': 19008, 'atl': 3375, 'nyy': 23002, 'harmed': 15161, 'preclude': 25438, 'relitigating': 27137, 'santamonica': 28492, 'trumprecession': 33729, 'verge': 34929, 'archaeologist': 3055, 'nash': 22032, 'l1jhx4wml': 18695, 'socialdistancehumor': 30201, 'stimuluspackage': 31175, 'dove': 10511, 'coronabullshit': 8012, 'cvirus': 8842, 'bloomin': 4780, 'pannier': 24050, 'flatbattery': 12888, 'itscoronatime': 17526, 'over40andfabulous': 23711, 'kevinhart': 18285, 'boredaf': 4993, 'bitcoins': 4627, 'iwasthinking': 17556, 'comical': 7311, 'interconnected': 17177, 'rampant': 26544, 'fatbergs': 12389, 'moovers': 21463, 'movingday': 21601, '458': 967, 'dumbteens': 10744, 'lite': 19372, 'eau': 10928, 'parfum': 24124, 'restezchezvous': 27468, 'rafaelgonzalezesq': 26453, 'workerscompensation': 36222, 'mosque': 21528, 'kishon': 18425, 'quantum': 26235, 'fiatcurrency': 12604, 'samanthaellenlambert': 28393, 'businessfair': 5598, 'cludger': 7065, 'paradigmatic': 24085, 'netfl': 22296, 'prakash': 25382, 'statistical': 30925, 'importbills': 16619, '6months': 1259, 'courteously': 8294, 'reasoning': 26770, 'ongt': 23342, 'gwa': 14885, 'upfront': 34525, 'taro': 32256, 'aso': 3271, 'taroaso': 32257, 'consumptiontax': 7756, 'financeministry': 12700, 'bandit': 3868, 'midweek': 21006, 'weber': 35581, 'shandwick': 29308, 'bcw': 4105, 'amo': 2617, 'constellation': 7683, 'onlywith': 23383, 'retailwire': 27559, 'braintrust': 5143, 'ken': 18235, 'dialog': 9782, 'idiopathic': 16375, 'aggression': 2142, 'suriname': 31868, 'sao': 28508, 'tome': 33213, 'principe': 25630, 'everlywell': 11843, 'donaldjtrump': 10392, 'trumpdemic': 33692, 'cellular': 6308, 'saar': 28224, 'devon': 9729, 'phillips66': 24688, 'continental': 7804, 'harold': 15169, 'hamm': 15003, 'swachhabit': 31962, 'swasthbharat': 31975, 'cvoid19': 8844, 'coronakodhona': 8062, 'interpreted': 17220, 'vt': 35232, 'seized': 29005, 'spiritedaway': 30592, 'steroplast': 31127, 'tsos': 33783, 'positioning': 25239, 'clipper': 7008, '2b': 690, 'outbid': 23638, 'almost800': 2454, 'eway': 11891, 'stayingintouch': 31014, 'puttingclientsfirst': 26145, 'casemanagement': 6116, 'oriental': 23551, 'tsar': 33770, '345': 805, 'negotiate': 22246, 'abc7ny': 1602, 'abcnews': 1604, 'propertymarket': 25834, 'circulated': 6817, 'zionist': 36789, 'naturalproducts': 22089, 'lavender': 18927, 'naturalhandsanitizer': 22086, 'nushratbharucha': 22936, 'bandra': 3871, 'neologism': 22272, 'troopermarket': 33642, 'guarded': 14794, 'deliverer': 9418, '00hrs': 13, 'inadvertently': 16682, 'contageous': 7763, 'echoshow': 10961, 'echo': 10958, 'smartome': 30040, 'nationalbeerday': 22050, 'hipster': 15665, 'dreamed': 10604, 'frozenfoods': 13539, 'refrigeratedfoods': 26991, 'tt21csatoh': 33788, 'falcone': 12261, 'wanstead': 35369, 'pairwise': 23922, 'choosehope': 6726, 'abortionisessential': 1642, 'wound': 36319, 'teargasing': 32364, 'tfw': 32573, 'happiest': 15108, 'truerfacts': 33675, 'amnotwriting': 2616, 'php5': 24727, 'php8': 24728, 'yoorekka': 36615, 'socialimprovement': 30216, 'clique': 7009, 'deadlier': 9150, 'madeinamerica': 19949, 'weknowplay': 35657, 'alqesieei': 2471, 'mbz': 20567, 'irreparable': 17405, 'steroid': 31126, 'dramatise': 10580, 'nuance': 22894, 'hodl': 15744, 'xrpcommunity': 36477, 'pw': 26156, 'childpoverty': 6640, 'defining': 9328, 'manoj': 20231, 'jinia': 17784, 'sarkar': 28537, 'prativa': 25389, 'adamas': 1856, 'adamasuniversity': 1857, 'educationplus': 11064, 'soonest': 30368, 'demon': 9469, 'phased': 24670, 'peoplearelosingtheirminds': 24451, 'straw': 31375, 'camel': 5828, 'mami': 20153, 'mammoth': 20156, 'here2help': 15534, 'remoteworking': 27187, 'premierleague': 25479, 'homecoming': 15813, '8nn': 1453, 'upmarket': 34541, 'ezinne': 12150, 'aja': 2262, 'yan': 36509, 'supportive': 31813, '2w': 737, 'hooked': 15901, 'maw': 20521, 'bhagat': 4447, 'shaktikanta': 29280, 'realistically': 26729, 'nerve': 22280, 'economicimpact': 10996, 'onlinesales': 23369, 'blyth': 4817, 'queses': 26321, 'activating': 1827, 'trumpet': 33697, 'convincing': 7888, 'delete': 9383, 'peopleoverprofit': 24461, 'precipitously': 25435, 'attrition': 3435, 'thame': 32589, 'haddenham': 14915, 'longcrendon': 19619, 'chinnor': 6685, '250rs': 628, 'villa': 35047, '6km': 1254, 'ghanaian': 14074, 'mechanism': 20658, 'citic': 6827, 'emblematic': 11268, 'instill': 17105, 'promach': 25795, 'labelers': 18703, 'comix': 7320, '480ml': 992, 'l902': 18696, 'riaa': 27707, 'soccer': 30188, 'moines': 21341, 'ia': 16283, 'mahesh': 20022, 'vyas': 35255, 'cmie': 7084, 'buxton': 5649, 'brooke': 5365, 'deloitte': 9428, 'toriesout': 33269, 'depresses': 9554, 'outweighing': 23704, 'randomness': 26567, 'wilderness': 35984, 'vanity': 34796, 'brainier': 5139, 'oddball': 23125, 'gnc': 14280, 'shoppe': 29529, 'cornered': 7979, 'pac': 23861, 'clements': 6967, 'weymouth': 35761, 'gargle': 13809, 'throatinfection': 32916, 'bushy': 5584, 'bearded': 4125, 'abdulaziz': 1608, 'keepingbritainmoving': 18198, 'paperindustry': 24066, 'transformation': 33476, 'infirm': 16895, 'dashing': 9038, 'bvi': 5687, 'raygun': 26648, 'tan': 32215, 'beforethe90days': 4222, '692692': 1241, 'usmc': 34657, 'usmilitary': 34658, 'uptrend': 34571, 'gliumedia': 14216, 'stpete': 31342, 'juststop': 18001, 'stayoutofthestore': 31020, 'askskynews': 3267, 'amvca': 2650, 'err': 11646, 'quarantiners': 26270, 'jib': 17768, 'offending': 23154, 'extremly': 12131, 'cud': 8695, 'freefall': 13420, 'crewe': 8511, 'trainfailure': 33449, 'm6': 19897, 'wobble': 36147, 'douse': 10510, 'pantryrecipes': 24055, 'sidedish': 29683, 'motherly': 21545, 'annabelle': 2771, 'doometernal': 10458, 'gadbookclub': 13731, 'kidkrow': 18346, 'ventilated': 34911, 'kmu': 18484, 'panay': 23971, 'piston': 24852, 'repack': 27233, 'kamudirumahya': 18068, 'csnewsonline': 8669, 'rcmp': 26661, 'shoplifter': 29514, 'toiletpapercastle': 33151, 'toiletpaperfort': 33159, 'parasite': 24107, 'fatherdmw': 12393, 'asuu': 3343, 'mc': 20568, 'olumo': 23281, 'ozzy': 23848, 'efcc': 11077, 'agegeunrest': 2124, 'johnclive': 17841, 'hypothetically': 16277, '700cr': 1269, '100cr': 135, '200cr': 470, 'jln': 17794, '500cr': 1039, 'rajiv': 26498, 'whitehousebriefing': 35890, 'implented': 16603, 'positively': 25243, 'synclarity': 32080, 'flipped': 12951, 'richer': 27729, 'yeswaystores': 36577, 'loyalist': 19756, 'cargo': 6032, 'slippin': 29984, 'lamu': 18789, 'bra': 5121, 'aquaman': 3030, 'ressurected': 27456, '12am': 224, 'existent': 11986, 'gafoors': 13737, 'imcresed': 16528, 'plss': 25000, 'bugging': 5469, 'departmentofhealth': 9519, 'rdp': 26669, 'tidbit': 32966, 'elcome': 11156, 'admiralty': 1939, 'nautical': 22105, 'swift': 32005, 'stmarysco': 31197, 'whig': 35856, '68': 1232, 'gta': 14778, 'lockdownontario': 19543, '8th': 1458, 'grader': 14516, 'publicized': 26021, 'a00': 1555, 'ingot': 16954, 'rmb570': 27861, 'alumina': 2504, 'rmb32': 27860, 'a00aluminium': 1556, 'aluminaprice': 2505, 'alcircle': 2326, 'chilloraspitter': 6651, 'spittingonfruit': 30602, 'spreadingvirus': 30683, 'spittingonproduce': 30603, 'lowtrust': 19753, 'waffle': 35265, 'stomping': 31245, 'untill': 34483, 'incourage': 16742, 'proudest': 25924, 'pacificcolorgraphics': 23866, 'ping': 24823, 'pong': 25152, 'ancillaries': 2691, 'hoardshaming': 15731, 'lockdown2': 19510, 'meatpackers': 20653, 'ff7r': 12583, 'dumper': 10748, 'memestagram': 20787, 'whoslaughingnow': 35931, 'masshysteria': 20454, 'notsofunny': 22809, 'mull': 21707, 'carb': 5984, 'cca': 6236, 'protecteveryone': 25889, 'ranging': 26576, 'microsoftads': 20981, 'cincy': 6799, 'ludacris': 19794, 'postbox': 25262, 'roundup': 28040, 'beconsiderate': 4178, 'wearamaskinpublic': 35542, 'donttouchyourface': 10448, 'dontstandtoclosetome': 10443, 'banegaswasthindia': 3875, 'minimizes': 21113, 'rambling': 26529, 'countryside': 8278, 'drie': 10616, 'bettel': 4409, 'truthout': 33760, 'sherlock': 29410, 'ref': 26951, 'wildalaskapollock': 35980, 'elusive': 11246, 'nautic': 22104, 'saucer': 28573, 'retreated': 27590, 'rabid': 26413, 'faux': 12405, 'neglected': 22241, 'groceryindustry': 14698, 'onlinegrocery': 23357, 'localstores': 19495, 'fooddeliveryapp': 13097, 'thalis': 32588, 'frog': 13518, 'fayville': 12422, 'kinlaw': 18409, 'leavitt': 19022, 'prod': 25711, 'yogurt': 36607, 'maneuvered': 20191, 'vogel': 35179, 'jeopardized': 17717, 'news12': 22364, 'nycs': 22980, 'cumberland': 8718, 'becuase': 4182, 'wyt': 36433, 'consumerpsychology': 7740, 'disasterpreparedness': 10004, 'morton': 21520, 'ultimatum': 34085, 'recreate': 26864, 'clapat8': 6878, 'shoddy': 29479, 'sencorp': 29095, 'calmed': 5809, 'askreuters': 3265, 'selfisolate': 29039, '3months': 885, 'tactile': 32130, 'makazoti': 20085, 'mabcp': 19902, 'enyu': 11569, 'akamira': 2271, '855': 1411, '9507': 1506, 'pete': 24592, 'stayho': 30972, '21days': 552, 'treacherous': 33554, 'thur': 32944, 'shortness': 29572, 'discharged': 10018, 'mahindra': 20024, 'beverly': 4423, '192': 367, 'pct': 24333, 'siouxland': 29816, 'fortinos': 13286, 'ruining': 28124, 'bolted': 4908, 'randpaul': 26570, 'haiti': 14955, 'pandaemonium': 23977, 'nationalexpress': 22053, 'wbz': 35509, 'eo': 11571, 'chittagong': 6696, 'chakaria': 6409, 'coxsbazar': 8357, 'surefire': 31851, 'henk': 15510, 'zwoferink': 36848, 'rgl': 27691, 'workinghard': 36239, 'respecting': 27425, 'dedicatedpeople': 9266, 'millenniumbug': 21061, 'argy': 3095, 'bargy': 3938, 'y2kbug': 36494, 'y2k2dpanic': 36493, 'broendby': 5353, 'pictureeditor': 24768, 'ida': 16348, 'guldbaek': 14837, 'arentsen': 3076, 'murderer': 21770, 'handkerchief': 15042, 'stoppage': 31282, 'nrtnews': 22870, 'workaround': 36215, 'vpns': 35226, 'dataprotection': 9052, 'hallway': 14988, 'insurtech': 17138, 'materialised': 20487, 'digitalisation': 9876, 'howtoloseaguyintendays': 16052, 'howtokeepaguyfortendays': 16050, 'quilton': 26356, 'tinder': 33029, 'netflixandchill': 22298, 'cest': 6363, 'futureconsumernow': 13693, 'branson': 5174, 'artofthewipe': 3193, 'helpushelpyou': 15488, 'bekindtooneanother': 4266, 'babysitting': 3709, 'seaborne': 28879, 'sequentially': 29158, 'incentivizing': 16700, 'wildcard': 35981, 'stopstocking': 31294, 'latenightstudio': 18876, 'edmfam': 11044, 'edmlife': 11045, 'deathmetal': 9177, 'pineda230': 24820, 'druggist': 10663, 'flirting': 12954, 'prolly': 25788, 'hullootrahihai': 16119, 'pausing': 24276, 'accumulation': 1758, 'portrait': 25222, '155': 286, '709': 1280, 'workera': 36220, 'documentation': 10322, 'twitterstorians': 33935, 'endsnow': 11417, 'blindingly': 4732, 'frivolous': 13514, 'garibay': 13810, 'outspoken': 23697, 'geissler': 13912, 'scumbag': 28863, 'painkiller': 23914, 'brandenburg': 5158, 'quicker': 26341, 'meh': 20743, 'webiar': 35582, 'wrawp': 36333, 'healthyandtasty': 15349, 'nomeatnoproblem': 22627, 'plantbased': 24914, 'collaborative': 7211, 'disarray': 10000, 'r80': 26403, 're3': 26671, 'valentine': 34753, 'unplayable': 34409, 'residentevil3remake': 27381, 'mooc': 21447, '140k': 258, 'trifold': 33603, 'keepingup': 18201, 'positivenews': 25244, 'spammer': 30475, 'protectyourfamily': 25904, 'personalprotectionequipments': 24559, 'commando': 7327, 'aacounty': 1566, 'teleprompter': 32445, 'staffer': 30805, 'coconut': 7139, 'gilligansisland': 14135, 'theprofessoe': 32741, 'gilligan': 14134, 'theskipper': 32773, 'themillionaireandhiswife': 32718, 'themoviestar': 32719, 'maryann': 20401, 'castaway': 6145, 'hopped': 15920, 'pear': 24356, 'shameonhul': 29297, 'minnetonka': 21131, 'seahawks': 28887, 'celebfcfamily': 6290, 'impervious': 16597, '510k': 1067, 'yantongtech': 36516, 'funnycomic': 13660, 'phall': 24650, 'intervenes': 17234, 'curbing': 8747, 'sensitive': 29128, 'har': 15128, 'superdrugs': 31721, 'pizzeria': 24873, 'arise': 3102, 'enacting': 11377, 'longlines': 19626, 'videoconferencecallicebreaker': 35006, 'buybandmerch': 5654, 'supportlivemu': 31815, 'seater': 28915, 'prayfornigeria': 25403, 'watiyankha': 35488, 'soy': 30454, 'letsplayagame': 19144, 'mushy': 21787, 'retailheroes': 27533, 'dialing': 9781, 'bruceleroy': 5391, 'thelastdragon': 32709, 'shonuff': 29485, 'shogunofharlem': 29483, 'sundayfunday': 31677, 'liveyourbestlife': 19423, 'locates': 19499, 'erased': 11627, 'munya': 21760, 'unwarranted': 34498, 'bt19': 5424, 'talented': 32187, 'bogart': 4871, 'exert': 11971, 'extracted': 12115, 'carcase': 5992, 'distort': 10201, 'truman': 33680, 'inherent': 16963, 'jbarreralaw': 17672, 'endemic': 11400, 'ratehub': 26617, '23k': 599, 'korang': 18560, 'berpusu': 4365, 'pusu': 26137, 'beratur': 4340, 'tu': 33795, 'chishimba': 6693, 'kopalasmostloved': 18557, 'emptiness': 11354, 'egoistic': 11111, 'weakest': 35524, 'hamstern': 15023, '1945': 377, 'babyboom2020': 3699, 'diced': 9798, 'furn': 13677, 'shebbak': 29361, 'sollom': 30310, 'unfold': 34276, 'whoateallthepies': 35910, 'brocklebank': 5350, 'hers': 15555, 'beerforkeir': 4207, 'keepingtheukconnected': 18200, 'argues': 3089, 'redid': 26907, 'creature': 8469, 'vsp': 35231, 'wigamesnightcaribbean': 35972, 'specified': 30530, 'kotak': 18572, 'nbfcs': 22140, 'comparti': 7416, 'esta': 11714, 'nosotros': 22746, 'donde': 10402, 'trabajaba': 33396, 'fresas': 13462, 'despu': 9643, 'lluvia': 19452, 'semana': 29075, 'frontpage': 13534, 'flourishing': 12985, 'reunite': 27614, 'cfc84': 6373, 'freddy': 13408, 'krueger': 18616, '19950101': 408, 'studentloans': 31465, 'fayettevillear': 12421, 'nwark': 22962, 'precedented': 25428, 'docket': 10310, 'wholeheartedly': 35916, 'tt': 33787, 'inconsideration': 16729, 'myers': 21847, 'michaelmyers': 20946, 'evdekal': 11827, 'careaboutotherpeople': 6009, 'lover': 19730, 'indipendents': 16815, 'lunchtime': 19822, 'teammate': 32352, 'nopee': 22676, 'regretting': 27036, 'bisleri': 4619, 'combine': 7283, 'fincen': 12728, 'chadwick': 6398, 'bps': 5119, 'stayhealthstayathome': 30967, 'milled': 21055, 'avesta': 3584, 'srapionov': 30756, 'uzbekistan': 34716, 'anx': 2857, 'confessing': 7561, 'brainstorm': 5141, 'capitec': 5957, 'kerzner': 18271, 'busines': 5591, 'electrosan': 11192, 'cheshirebusiness': 6602, 'cripple': 8531, '2cchpszvpk': 696, 'lyckszozqf': 19869, 'closeyourdoors': 7036, 'levitation': 19169, 'denton': 9510, 'deflationary': 9338, 'erupted': 11652, 'trav': 33526, 'kidstogether': 18355, 'youngrappers': 36641, 'funnyvideo': 13665, 'doublestandards': 10496, 'stopbeingdicks': 31264, 'teasmith': 32368, '2kill': 713, '2the': 734, 'martini': 20388, 'krisiallen': 18606, 'shieet': 29420, 'naga': 21936, 'imt': 16665, 'adheres': 1906, 'nec': 22207, 'aoc': 2875, 'mushroom': 21785, 'remake': 27152, 'affiliation': 2052, 'forty': 13298, 'pincher': 24817, 'pond': 25148, 'disturbed': 10226, '1t': 452, 'saud': 28574, 'especial': 11680, 'hdmotors': 15291, 'kathmandu': 18123, 'heeley': 15414, 'tilt': 33002, 'cleantech': 6949, 'cleanenergy': 6931, 'ceausescu': 6275, 'tempting': 32476, 'clog': 7016, 'ufifas': 34013, 'aquilo': 3035, 'venho': 34905, 'sofrer': 30263, 'janeiro': 17635, 'snood': 30137, 'externality': 12102, 'pigouviantax': 24787, 'wordcloud': 36207, 'americanconsumers': 2582, 'socialintelligence': 30218, 'socialanalytics': 30193, 'fishbulb': 12810, 'cheddar': 6548, 'rst': 28081, 'zew': 36768, 'rstjokeimdaswelt': 28082, 'solves': 30319, 'hunkerdown': 16172, 'pervasive': 24574, 'semiconductoranalytics': 29083, 'defensive': 9310, 'microchip': 20968, 'infinitesimal': 16893, 'programmed': 25761, 'bioahazard': 4567, 'biohazardband': 4581, 'lopsided': 19667, 'pandemicpreparedness': 23998, 'rollstp': 27971, 'filt': 12679, 'counseling': 8246, '5124': 1069, 'zip': 36791, 'trumpsupporters': 33733, 'existence': 11985, 'sauntered': 28585, 'usain': 34612, 'bolt': 4907, 'galway': 13770, '937': 1494, 'thinkbig': 32822, 'cryptoc': 8647, 'outbidding': 23639, 'tagging': 32138, 'savile': 28620, 'jacuzzi': 17588, 'anheuserbusch': 2747, 'relentlessly': 27116, 'flexed': 12932, 'sticktogether': 31150, 'andreas': 2706, '3yr': 904, 'pl': 24885, 'thosewerethedays': 32882, 'ijustwantedtomakebreakfast': 16458, 'donttouchme': 10447, 'blindspot': 4734, 'truestory': 33676, 'minxy': 21144, 'kearneymea': 18174, 'commissioned': 7351, 'blinking': 4736, 'devoe': 9727, 'owl': 23819, 'brighter': 5292, 'dim': 9909, 'orbit': 23506, 'maddening': 19943, 'renamed': 27197, 'jackass': 17573, 'tosser': 33295, 'bbcbreakfast': 4075, 'selfcaresunday': 29019, 'auntie': 3473, 'pedophile': 24372, 'keenly': 18180, 'knucklehead': 18521, 'collapse2020': 7215, 'brix': 5329, 'ofori': 23183, '5bn': 1136, 'agric': 2172, 'tv3newday': 33890, 'buzzer': 5684, 'defend': 9301, 'blew': 4724, 'cuffing': 8700, 'deleting': 9386, 'takemeback': 32162, 'ayuk': 3657, 'unofficial': 34400, 'bts': 5428, 'bighit': 4511, 'twt': 33942, 'hereos': 15540, 'sau': 28571, 'whpresser': 35933, 'healthcaretech': 15326, 'digitalhealth': 9873, 'directs': 9968, 'homepage': 15845, 'casey': 6117, 'critter': 8559, 'sitter': 29835, '844': 1399, '9554': 1514, 'diluted': 9907, 'lindsayfield': 19317, 'kilbride': 18364, 'manasarovar': 20166, 'ushodyay': 34654, 'knos': 18507, 'convid9': 7884, 'benifit': 4326, 'globalising': 14228, 'phanish': 24652, 'puranam': 26085, 'plano': 24911, 'flushable': 13005, 'wetwipes': 35750, '35bn': 821, '316day': 778, 'servicedog': 29185, 'hardtimes': 15147, 'furbabylove': 13670, 'cbdofri': 6222, 'canamed': 5865, 'boomerconsumer': 4959, 'whatwouldmojodo': 35808, 'istandwiththepresident': 17497, 'cashinginonacrisis': 6130, 'boycot': 5091, 'alhamdulillah': 2370, 'failsworth': 12225, 'oldham': 23263, 'foodparcel': 13128, 'mancity': 20172, 'needhelp': 22223, 'evisceration': 11880, 'ministerial': 21122, 'blunder': 4812, 'dropoff': 10648, 'ngl': 22425, 'theoffice': 32728, 'brevity': 5253, 'dawned': 9092, 'watcher': 35471, 'switzer': 32033, 'stapledon': 30861, 'houseprices': 16012, 'barging': 3937, '2ft': 704, 'dietician': 9834, 'gunna': 14853, 'nonporous': 22653, '18k': 356, 'tamu': 32213, 'jackdaniels': 17575, 'hughes': 16111, '15b': 292, 'impairment': 16585, 'citing': 6829, 'mor': 21471, 'communal': 7377, 'westmemphis': 35729, 'mcclendon': 20575, 'wapuu': 35377, 'americanheroes': 2585, 'trademe': 33416, 'harbinger': 15135, 'fatality': 12387, 'tryplants': 33768, 'goplantbased': 14423, 'vegandiet': 34868, 'headache': 15295, 'lunacy': 19816, 'ebolavirus': 10946, 'snl': 30136, 'follome': 13053, 'retweetme': 27609, '411': 929, 'shoppi': 29535, 'drift': 10619, 'drongo': 10644, 'mogadon': 21328, 'basicincome': 3997, 'counteract': 8255, 'strive': 31431, 'styrene': 31503, 'quezon': 26335, 'profitably': 25739, 'giveanditshallbegiven': 14160, 'heavenseconomy': 15393, 'blessedbeyondmeasure': 4721, 'rationality': 26626, 'objectivity': 23046, 'economicstimulus': 11005, 'defiant': 9321, 'gourav': 14454, 'vishwakarma': 35117, 'berkhera': 4352, 'pathani': 24234, 'bhopal': 4468, 'madhya': 19957, 'expedited': 12015, 'innovating': 17012, 'resentment': 27360, '1986': 397, 'cautiousness': 6211, 'cemented': 6311, '10c': 162, 'acetaminophen': 1775, 'kwality': 18673, 'ludhiana': 19795, 'unbearable': 34127, 'datascience': 9053, 'abi': 1621, 'wooglobe': 36197, 'spiralling': 30588, 'grossed': 14726, 'curiosity': 8756, 'bathrobe': 4027, 'speedo': 30548, 'dreamt': 10608, 'hemorrhage': 15499, 'everyting': 11867, 'bigshop': 4517, 'cyberbullying': 8852, 'concealer': 7504, 'chewing': 6610, 'gum': 14844, 'pringles': 25632, 'manual': 20238, 'loop': 19652, 'pakistnai': 23933, 'gridlock': 14652, 'nea': 22193, 'sidelined': 29685, 'contaminant': 7776, 'saturdayshoutout': 28567, '5amwritersclub': 1133, 'matched': 20480, 'caseload': 6115, 'adviceline': 2006, '0344': 64, '477': 986, '1171': 195, 'hyperdrive': 16259, 'onitsha': 23344, 'sensitized': 29131, 'bbdelivers': 4082, 'justritehomedelivery': 17995, '218': 548, 'germtransfer': 14010, 'healthworkers': 15347, 'curbsidepickup': 8749, 'trumpcountry': 33689, 'grandforksfinest': 14539, 'grandforksstrong': 14540, '371': 840, '159': 291, 'selfquarantineandchill': 29052, 'ucr': 34000, 'hazardous': 15263, 'antiaging': 2819, 'gether': 14035, 'roaming': 27884, 'kilcock': 18366, 'kildare': 18367, 'bleaching': 4710, 'rick': 27734, 'buybritish': 5657, 'sustained': 31939, 'seemslegit': 28989, 'westernjournal': 35722, 'thewesternjournal': 32792, 'nastiness': 22042, 'elnenythings': 11236, 'relied': 27124, 'simplest': 29758, 'formulation': 13267, '1gal': 431, 'comfy': 7309, 'ferret': 12560, 'dontforgetyourpets': 10428, 'whipsawed': 35872, 'psych': 25983, 'hoboken': 15738, '255': 633, 'paidleaveforall': 23904, 'overhear': 23746, 'classless': 6909, 'academictwitter': 1697, 'bagged': 3780, 'derrick': 9587, 'chubbs': 6764, 'waay': 35260, 'pressrelease': 25539, 'ktv': 18628, 'moring': 21494, 'day8': 9116, 'bnm': 4828, 'dimmed': 9922, 'axaltabrightfutures': 3640, 'chemistryfightscovid': 6581, 'medicinal': 20702, 'chn': 6708, 'edutwitter': 11067, 'shakeup': 29276, 'montgomery': 21435, 'angelamerkel': 2727, 'shrinking': 29614, 'nig': 22484, 'oilfield': 23217, 'analystopinion': 2669, 'levy': 19171, 'humbly': 16142, 'dag': 8907, 'rippling': 27804, 'societal': 30243, 'crimp': 8526, 'cherry': 6597, 'goettingen': 14321, 'skyrock': 29920, 'worldpoetryday': 36275, 'juststopit': 18002, 'preexisting': 25456, '438': 950, 'trebilcock': 33565, '60th': 1186, 'thinblueline': 32812, 'whip': 35865, 'durbin': 10778, 'luminate': 19810, 'seattlecovid19': 28922, 'seattlelockdown': 28924, 'truely': 33674, 'acknowledging': 1796, 'gentle': 13966, 'franchisees': 13367, 'leniency': 19097, 'murdered': 21769, 'avenge': 3572, 'losangeleslockdown': 19677, 'thisisnuts': 32856, 'inverness': 17295, 'presenting': 25518, 'roe': 27940, '845': 1401, '651': 1217, '4025': 913, 'orangecounty': 23505, 'warwickny': 35418, 'floridany': 12976, 'goshenny': 14435, 'almond': 2452, '6t': 1262, 'macdill': 19913, 'breakout': 5218, 'gradual': 14518, 'cuarentenaobligatoriaya': 8688, 'withdrawn': 36105, 'thisisww3': 32860, 'koka': 18541, 'happybirthday': 15113, 'sweet16': 31993, 'gene': 13932, 'plauge': 24937, 'gunk': 14851, 'wiggle': 35974, 'ohtobebacktonormal': 23205, 'easter2020': 10887, 'overnights': 23759, 'findthegood': 12736, 'brightside': 5297, 'overdirty': 23732, 'grievance': 14654, 'claire': 6868, 'piper1': 24840, 'norwich': 22735, 'ipswich': 17365, 'burystedmunds': 5572, 'cozy': 8361, 'dyk': 10824, 'depts': 9565, 'budens': 5454, '15k': 296, 'chang': 6437, 'bailed': 3797, 'voteblue': 35211, 'presentation': 25515, 'sessi': 29199, 'khopoli': 18322, 'maharastra': 20017, 'hamsterkauf': 15021, 'kaufen': 18138, 'brazen': 5193, 'kootenay': 18556, 'actresponsible': 1840, 'broz': 5389, '07767164246': 99, 'salmafoodbank': 28370, 'beardedbroz': 4126, 'chek': 6569, 'staywoke': 31050, 'lever': 19162, 'spoonsub': 30647, 'spoonspig': 30644, 'spoonssub': 30646, 'spoonslave': 30643, 'spoonsslave': 30645, 'findom': 12734, 'finsub': 12764, 'paypig': 24310, 'walletrinse': 35328, 'moneyslave': 21401, 'humanotm': 16136, 'cashpig': 6135, 'namin': 21986, 'shamin': 29304, 'callitout': 5798, 'fbpe': 12432, 'endlessly': 11406, 'cpp': 8375, 'scoop': 28789, 'xdna': 36450, '16645': 313, '16973': 315, 'idyllwild': 16394, 'joshua': 17881, 'toughness': 33333, 'itchey': 17512, 'hangnail': 15082, 'buffalo': 5460, 'mutton': 21820, '560': 1106, 'piccard': 24747, 'viruschina': 35107, 'uninfected': 34316, 'meepl': 20722, 'fision': 12820, 'coronanederland': 8072, 'obscure': 23057, 'mesh': 20870, 'synthetic': 32093, 'filtratio': 12683, 'starved': 30892, 'pragati': 25375, 'bhawan': 4463, 'totalitarianism': 33304, 'debashish': 9181, 'mukherjee': 21701, 'mea': 20614, 'determination': 9684, '610': 1188, 'crtuck': 8612, 'apperantly': 2949, 'tightens': 32983, 'grinning': 14674, 'outreach': 23689, 'mole': 21355, 'jock': 17819, 'youcantaskthat': 36627, 'devastated': 9705, '2005': 463, 'studied': 31467, 'rollouts': 27970, 'yahuah': 36500, 'henryk': 15514, 'borawski': 4981, 'wikimedia': 35976, 'cosigned': 8193, 'decisively': 9231, 'derby': 9570, 'lib': 19206, 'ajit': 2266, 'atwal': 3441, 'karl': 18103, 'racine': 26427, 'briefly': 5286, 'devics': 9721, 'finrite': 12762, 'lockdownextention': 19525, 'indian2': 16789, 'seniors2020': 29115, 'buggered': 5468, 'webstore': 35593, 'patriotism': 24256, 'jaihind': 17597, 'twas': 33896, 'southendclt': 30427, 'faggot': 12218, 'abbott': 1596, 'marythuoreality': 20409, 'cooperating': 7922, 'malaysia2020': 20123, 'homeworker': 15863, 'quarantineaintsobad': 26244, 'newsyoucanuse': 22387, 'isitok': 17437, 'maintan': 20064, 'hash': 15197, 'prolongs': 25793, 'judicial': 17927, 'becerra': 4170, 'kiddo': 18345, 'momhack': 21370, 'groceryrun': 14704, 'gratitudeistheattitude': 14582, 'agile': 2146, 'marmite': 20362, 'somkid': 30347, 'vanpoli': 34799, 'evict': 11871, 'lockdownghana': 19526, 'troubling': 33653, 'shitload': 29461, 'maher': 20021, 'azfaal': 3667, 'alter': 2484, 'mongerer': 21404, 'competitively': 7441, 'leaned': 18990, 'emergencyubi': 11287, 'peoplevspelosi': 24465, 'peoplevsschumer': 24466, 'yanggang': 36511, 'homecarers': 15811, 'toryshambles': 33293, 'nmdc': 22564, 'spud': 30717, 'ecogarden': 10968, 'azamax': 3663, 'parryamerica': 24153, 'organicpesticides': 23535, 'outnumber': 23674, 'mcconnell': 20579, 'blasio': 4696, 'angrily': 2741, 'crusty': 8642, 'lens': 19101, 'tweezer': 33908, 'holdchinaaccountable': 15766, 'overflow': 23743, 'amazonprimenow': 2544, 'publixdelivery': 26039, 'readerscommunity': 26691, 'calculation': 5764, 'ididnothoard': 16371, 'ispellzgood': 17482, 'whille': 35858, 'splatoon2': 30609, 'splatoon': 30608, 'wiggers': 35973, 'mcobooktitles': 20599, 'roulette': 28035, 'baffled': 3774, 'shepherd': 29407, 'electrical': 11176, 'unknowingly': 34368, 'explored': 12060, 'unconventional': 34159, 'legging': 19054, 'mazal': 20548, 'uncle': 34146, 'ranch': 26551, 'ishouldntbringthisup': 17433, 'outbreak247': 23641, 'redeploy': 26898, 'missive': 21191, 'ubiquity': 33990, 'thao': 32642, 'gaslighting': 13827, 'anthem': 2813, 'thingstodowithkids': 32818, 'teamboss': 32343, 'jobsite': 17814, 'bosscrane': 5024, 'localfoodtrucks': 19486, 'cranelife': 8413, 'windfarm': 36024, 'ontag': 23392, 'threeseashells': 32903, 'demolitionman': 9468, '10yrs': 178, 'translation': 33491, 'fleer': 12925, 'classwarfare': 6911, 'hawke': 15247, 'innate': 17000, 'laziness': 18957, 'overrules': 23772, 'mingling': 21100, 'sprung': 30716, 'spender': 30560, 'pittis': 24859, 'confuse': 7596, 'nymc': 22988, 'nymcshsp': 22989, 'letsnotbecomeitaly': 19143, 'spoiled': 30618, 'anc': 2683, 'trepidation': 33582, 'gmsd': 14276, 'repurchased': 27313, 'loius': 19596, 'gucci': 14802, 'hugo': 16113, 'blvgari': 4816, 'coronainafrica': 8050, 'drphil': 10657, 'tafara': 32133, 'simms': 29752, 'median': 20672, '193': 370, '271': 659, 'langoliers': 18819, 'newjobs': 22350, 'shenley': 29404, 'superdry': 31722, 'fashionnews': 12371, 'athens': 3362, 'scentiva': 28721, 'foodhoarding': 13109, 'medieval': 20706, 'streamlined': 31383, 'nycidiots': 22975, 'longisland': 19625, 'southampton': 30418, 'blacktwitter': 4675, 'sicker': 29670, 'postpones': 25285, 'engineering': 11461, 'emaswati': 11255, 'bcz': 4108, 'chakkar': 6410, 'raha': 26462, 'dekhke': 9371, 'ayega': 3650, 'mette': 20910, 'frederiksen': 13412, 'lined': 19321, 'shakeout': 29275, 'pcr': 24332, 'classifies': 6907, 'consumerdata': 7720, 'regina': 27019, 'yqr': 36682, 'workload': 36246, 'eastanglia': 10883, 'gronks': 14721, 'pnp': 25049, 'qldpol': 26192, 'costessey': 8209, 'askmeanything': 3264, 'heiliger': 15423, 'strohsack': 31434, 'pehle': 24391, 'thestruggleisreal': 32781, 'aisect': 2256, 'initiated': 16979, 'talaiya': 32183, 'aisectfamily': 2257, 'ifpri': 16407, 'friedman': 13492, 'fightagainstcorona': 12631, 'savlon': 28624, 'protekt': 25911, 'lawstudentsuog': 18940, 'muralart': 21765, 'tdoc': 32327, 'onem': 23327, 'amn': 2613, 'bilton': 4547, '175': 331, 'irgc': 17384, 'worldpandemic': 36274, 'wewillovercome': 35755, 'stepmom': 31101, 'amish': 2602, 'supermarketstaff': 31750, 'uniform': 34306, 'iamchichi': 16290, 'campaignforhappiness': 5844, 'unessential': 34257, 'gillingham': 14136, 'rende': 27199, 'mheshimiwa': 20934, 'wanjiku': 35363, '4g': 1012, 'balloon': 3841, 'uhuruto': 34032, 'educa': 11057, 'wisewednesday': 36088, 'pennycook': 24434, 'wetaskiwin': 35744, 'cory': 8189, 'downplaying': 10533, 'huff': 16103, 'saycuf': 28637, 'dema': 9443, 'thegoat': 32689, 'careersuccess': 6015, 'dumpster': 10751, 'signature': 29716, 'inditex': 16820, 'fash': 12360, 'altrincham': 2500, 'descended': 9591, 'power2cap': 25328, 'refusing2': 27005, 'platte': 24932, 'shevles': 29416, 'seaweed': 28928, 'coldpressoil': 7200, 'standardcoldpressoil': 30847, 'complained': 7450, 'tenfold': 32492, 'docsneedgear': 10312, 'abdulla': 1609, 'logodesign': 19594, 'undateable': 34169, 'disinfecant': 10088, 'askgovnortham': 3260, 'dstv': 10690, 'inky': 16995, 'pinky': 24827, 'blinky': 4737, 'clyde': 7076, 'tertiary': 32535, 'snapchatdown': 30108, 'pinkmoon': 24826, 'bernieisourhope': 4362, 'addtl': 1888, '01392576476': 27, 'ast77': 3327, 'dgf': 9745, 'langar': 18817, 'scholar': 28747, 'locating': 19500, 'rms': 27867, 'replenishing': 27263, 'twentyfivedollarhandsanitizer': 33911, 'subsidization': 31548, '20mins': 529, 'kobe': 18525, 'partition': 24172, 'howell': 16041, 'statesman': 30913, 'pivotal': 24866, 'redicoulous': 26906, 'revolves': 27675, 'weredoomedmrmannering': 35697, 'agai': 2107, 'devious': 9724, 'wbu': 35508, 'transported': 33506, 'blonde': 4766, 'margaretcirko': 20282, 'mccormack': 20580, 'pereira': 24483, 'magnatestrategies': 20000, 'ple': 24958, 'fattyforlife': 12399, 'quarantinecomedy': 26253, 'directbanking': 9957, 'highinterestsavingsproducts': 15602, 'tilapia': 32995, 'rapper': 26599, 'durant': 10775, 'wearehereforyou': 35552, 'mhanj': 20931, 'xtratalk': 36479, 'wetalkajax': 35743, 'ajax': 2263, 'eredivisie': 11637, 'snow': 30143, 'wellplayedcolorado': 35677, 'rwjbarnabas': 28196, 'guinness': 14828, 'foodchain': 13091, 'nuneaton': 22917, 'coeliac': 7155, 'yeaa': 36535, 'haaibo': 14897, 'iyoh': 17566, 'dweller': 10808, 'fmtlifestyle': 13021, 'provoking': 25954, 'foodethics': 13100, 'vinceremo': 35058, 'apostle': 2927, 'devs': 9732, 'crowdsources': 8606, 'densest': 9502, 'covet': 8324, 'awol': 3636, 'gregory': 14643, 'abbey': 1595, 'tukums': 33826, 'southflorida': 30432, 'winndixie': 36048, 'notp': 22802, 'nogas': 22604, 'dotherightthing': 10491, 'krino': 18600, 'hiphop': 15662, 'newera': 22343, 'socialise': 30219, '12news': 230, 'gvmc': 14881, 'vizag': 35155, '204': 509, 'seattletogether': 28926, 'confidentially': 7569, 'armedforces': 3116, 'camping': 5852, 'leeds': 19030, 'eagerly': 10845, 'sexworkersnz': 29234, 'lockdowndrama': 19520, 'outperform': 23682, 'kerosene': 18264, 'rs3': 28071, 'stipend': 31184, 'innocently': 17007, 'huntsman': 16178, 'cpistrong': 8373, 'dillard': 9905, 'sciencewitch': 28773, 'schenectady': 28731, 'coldlinkafrica': 7197, '21daynationallockdown': 551, '0600': 82, '0645': 84, 'firstly': 12798, 'heppenstall': 15517, 'croissant': 8571, 'violinist': 35081, 'reenact': 26947, 'titanic': 33065, 'wanataka': 35355, 'kifonikifo': 18360, 'iwe': 17558, 'njaa': 22543, 'selfishpoliticians': 29036, 'forno': 13268, 'siciliano': 29664, 'elmhursthospital': 11232, 'homie': 15866, 'jellybean': 17704, 'paw': 24283, 'owes': 23816, '775': 1327, '727': 1294, '6223': 1197, 'cushy': 8785, 'reposted': 27287, 'resolving': 27407, 'knitting': 18497, 'reinventing': 27067, 'brandmarketing': 5165, 'tend': 32484, 'trait': 33451, 'paragon': 24089, 'texted': 32566, '45am': 969, 'revera': 27638, 'mckenzie': 20592, 'towne': 33362, 'strafford': 31345, 'albertafireflood': 2315, 'restoration': 27477, 'sanatizing': 28417, 'heretohelp': 15541, 'mayorbowser': 20546, 'bowser': 5082, 'counterpart': 8266, 'govnortham': 14487, 'reinvest': 27069, 'haraam': 15129, 'concurrently': 7533, 'multifold': 21716, 'halaal': 14963, '3507': 813, 'michiganshutdown': 20960, 'michiganlockdown': 20958, 'odaat': 23123, 'nhssafeguarding': 22441, 'karonakuch': 18108, 'marathon': 20266, 'bruna': 5396, 'kadletz': 18021, 'randomactsofkindness': 26562, 'implying': 16613, 'singleparents': 29803, 'haveyoursay': 15239, 'msftads': 21642, 'cleanest': 6933, 'healtheducation': 15332, 'healthpromotion': 15341, 'std': 31053, 'bratter': 5181, 'sharethenews': 29330, 'jadirigamer': 17590, 'dz': 10832, 'sanitiz': 28461, '2resale': 732, 'characterize': 6471, 'erythromycin': 11654, 'thiocynate': 32833, 'azithromycin': 3669, '185': 346, '2010': 477, 'dibs': 9796, 'ulta': 34080, 'discontinues': 10035, 'cambonzola': 5823, 'dontpanicbuyyouselfishgreedyfucks': 10439, 'convey': 7875, 'alim': 2385, 'farmside': 12342, 'sommelier': 30348, 'torontorestaurants': 33280, 'dineinathome': 9926, 'gme': 14273, 'misuse': 21201, 'bleachbag': 4709, 'squirting': 30755, 'swimmingpool': 32013, 'admittance': 1947, 'overbuy': 23721, 'blaser': 4695, 'hating': 15216, '2020sofar': 497, '2020iscancelled': 494, 'webcomic': 35577, 'webcomics': 35578, 'teleconference': 32435, 'esports': 11684, 'conpanies': 7633, 'scat': 28708, 'unitedweride': 34343, 'sadness': 28267, '0707': 88, '151515': 284, 'apocalypsenow': 2913, 'judgedredd': 17921, 'nightofthelivingdead': 22498, 'ausboost': 3480, 'worldwarz': 36285, 'instacar': 17080, 'foodtech': 13150, 'eerie': 11074, '881': 1433, 'fabretto': 12163, 'todayinpooping': 33114, 'mag': 19973, 'peddle': 24364, 'lasttuesday': 18864, '660': 1223, 'goat': 14289, '470': 983, 'lethality': 19130, 'trumplies': 33710, 'callousrepublicans': 5802, 'indusrey': 16841, 'farmtank': 12343, 'ghebreyesus': 14082, 'wayout': 35502, 'intercultural': 17178, 'summit': 31660, 'voi': 35180, 'taivas': 32150, 'varjele': 34830, 'kvasac': 18665, '50g': 1057, 'countertop': 8267, 'rewrote': 27683, 'sprite': 30713, 'wendell': 35685, 'steavenson': 31067, 'motivator': 21560, 'sneakerheads': 30118, 'saratoga': 28524, 'eoc': 11572, 'giveback': 14163, 'saratogany': 28525, 'wwv': 36426, 'centralflorida': 6328, 'transplant': 33503, 'firesale': 12782, 'fyp': 13723, 'under21': 34178, 'fingerlakes': 12743, 'calvin': 5819, 'klein': 18470, 'unexplainable': 34263, 'eric': 11638, 'riverside': 27841, 'facemasks4all': 12182, 'hartmann': 15185, 'pursue': 26122, 'youthtravel': 36667, 'prioritised': 25641, 'modifying': 21317, 'monitorupdates': 21417, 'coronapandemie': 8079, 'luluatvconnected': 19806, 'quartz': 26294, 'nightgown': 22493, 'donttouchface': 10446, 'absorb': 1668, 'transdermally': 33466, 'notwithstanding': 22816, 'wtfentanyl': 36374, 'retweets': 27611, 'knobheads': 18501, 'jerky': 17725, 'primitive': 25621, 'timpsons': 33025, 'blackwells': 4677, 'horizontal': 15930, 'eatfarmnow': 10917, 'hesitant': 15563, 'broader': 5342, 'coiming': 7176, 'wcvb': 35515, 'nypd': 22992, 'topping': 33255, 'huddled': 16095, 'gy': 14889, 'cst': 8673, 'respawn': 27417, 'dipping': 9951, 'northbayinn': 22708, 'eyebrow': 12138, 'retort': 27584, 'ssd': 30768, 'warmed': 35395, 'stashed': 30897, 'emea': 11276, 'unregulated': 34433, 'risingnepal': 27817, 'bhatbhateni': 4459, 'dearmrpresident': 9173, 'educating': 11061, 'sangam': 28446, 'veb': 34857, 'clueless': 7068, 'grifterinchief': 14660, 'coronaidiots': 8049, 'consumerprotections': 7739, 'nclc': 22158, 'medicalsupplies': 20694, '16oz': 320, 'aosafety': 2879, 'selective': 29015, 'lockdownitaly': 19529, 'cutlery': 8825, 'oaf': 23012, 'sunrise': 31699, 'sv': 31950, 'businessadvice': 5593, 'sum1': 31642, 'rippled': 27802, 'mufgs': 21689, 'stinking': 31181, 'cornoravirus': 7990, 'coronafreepakistan': 8037, 'prayersforcoronafreeworld': 25401, 'bpcl': 5115, 'gaya': 13864, 'germanefficiency': 14003, 'uneven': 34259, 'phillips': 24687, 'alehouse': 2343, 'monrovia': 21428, 'buyreal': 5677, 'footballagainstfakes': 13170, 'punerains': 26071, 'swell': 32002, 'nofrills': 22603, 'rcss': 26663, 'saveonfoods': 28606, 'wevision': 35751, 'lat': 18868, 'hutcheson': 16209, 'australianbusiness': 3506, 'activation': 1828, '3bn': 866, 'costed': 8208, 'combustion': 7287, 'proofing': 25819, 'unpacked': 34403, 'ockerman': 23111, 'relocated': 27141, 'totaling': 33302, 'adland': 1923, 'realeyes': 26719, 'storekeeper': 31324, 'changeclosings': 6440, '5262': 1083, 'bilo': 4546, 'jdw': 17679, 'inversely': 17296, 'proportional': 25846, 'asx': 3346, 'sagged': 28308, 'barked': 3942, 'panagis': 23965, 'galiatsatos': 13757, 'tomo': 33219, 'surgeon': 31862, 'appreciating': 2985, 'accelerates': 1706, 'lecture': 19026, 'tranformed': 33458, 'womanspeaking': 36164, 'teachyourboys': 32338, 'hamms': 15009, 'bather': 4024, 'claus': 6914, 'zoombombing': 36820, 'meekmill': 20720, 'governmentofbritishcolumbia': 14477, 'reinstate': 27065, 'unhappy': 34293, 'udit': 34005, 'animalistic': 2755, 'cct320': 6253, 'mossad': 21531, 'couture': 8300, 'sinaloa': 29779, 'sixfold': 29846, 'meth': 20893, 'mow': 21603, 'patrone': 24263, 'borderclosure': 4985, 'caledon': 5769, 'mississauga': 21188, 'peelregion': 24378, 'sauga960am': 28580, 'why1': 35939, 'why2': 35940, 'why3': 35941, 'expendable': 12019, 'agedcare': 2122, 'cse': 8663, 'madacide': 19939, 'fd': 12452, 'loitering': 19595, 'tat': 32278, 'insatiable': 17035, 'thirst': 32839, 'eatertainment': 10915, 'incorporate': 16737, 'lemay': 19084, 'monger': 21403, 'tremendously': 33570, 'stayth': 31043, 'jasonkenney': 17660, 'eyy': 12148, 'pollybites': 25139, 'kosher': 18569, 'automotives': 3546, 'hd5d6zdgs8': 15287, 'asparagus': 3273, 'cisa': 6824, 'ughh': 34020, 'hotstar': 15994, 'anothe': 2801, 'timeshavechanged': 33020, 'majzub': 20080, 'uncoordinated': 34161, 'whitstable': 35903, 'erecting': 11636, 'concierge': 7521, 'churning': 6783, 'crafter': 8398, 'manitoba': 20220, 'farmersmarket': 12331, 'bullsh': 5506, 'retire': 27575, 'caretaker': 6030, 'oncnbctv18': 23318, 'venkatesh': 34906, 'dsouza': 10686, 'fox43': 13334, 'penalities': 24410, 'climbed': 7000, 'outweighed': 23703, 'sweetener': 31995, 'corporatist': 8161, 'ridicule': 27747, 'rated': 26616, 'madrasah': 19965, 'halaqat': 14965, 'ramad': 26518, 'pranayam': 25384, 'cramped': 8411, 'workstation': 36253, 'reef': 26944, 'okey': 23245, 'aand': 1572, 'governement': 14471, 'ookey': 23414, 'stoc': 31200, 'sweetened': 31994, 'whyarepeoplelikethat': 35942, 'revenuegrowth': 27637, 'woodland': 36187, 'shaved': 29352, 'ovr': 23810, 'lanarkshire': 18792, 'snaking': 30104, 'striding': 31419, 'unanimously': 34112, 'balanced': 3828, 'babyganics': 3704, 'babysanitizer': 3707, 'babyhygiene': 3705, 'deviant': 9717, 'civlisation': 6854, 'ord': 23510, 'smishing': 30068, 'reportspam': 27282, 'nnewi': 22571, 'endofthefuckingworld': 11409, 'imgonnastarve': 16535, 'bhai': 4449, 'haufiku': 15218, 'kieran': 18358, 'clancy': 6874, 'giffen': 14110, 'prospering': 25875, 'nowadays': 22845, 'fantasyland': 12304, 'teensy': 32409, 'lotta': 19694, 'incubator': 16758, 'shameonstockpilers': 29300, 'tpe': 33376, 'burned': 5561, '01273': 24, '293117': 682, 'thinkagain': 32820, 'blinder': 4731, 'reconnection': 26846, 'ext': 12085, 'prophecy': 25838, 'waragainstvirus': 35380, 'urbanfresh': 34580, 'fuckwit': 13592, 'mahatma': 20018, 'ghandi': 14077, 'harshest': 15182, 'quarticon': 26293, 'breakingonrt': 5215, 'belated': 4269, 'sabino': 28233, 'siders': 29687, 'unmatched': 34391, 'surround': 31884, 'boeing': 4867, 'newbusinesstrends': 22337, 'masterchef': 20461, 'nodal': 22595, 'thankretailworkers': 32605, 'mylocal': 21858, 'ritchies': 27832, 'onlybuywhatyouneed': 23378, 'noneedtopanic': 22640, 'pediatric': 24370, 'mopng': 21468, 'albertheijn': 2318, 'befo': 4217, 'sunbed': 31669, 'taxscam': 32303, 'luzonlockdown': 19860, 'boschetto': 5020, 'manzil': 20253, 'ccm': 6243, 'bhojpur': 4467, 'banging': 3880, 'stoppanicshopping': 31288, 'stopreselling': 31292, 'wewilldefeatcorona': 35752, 'gobsmacked': 14299, 'kebab': 18175, 'lesser': 19122, 'moneycontrol': 21399, 'roseville': 28007, 'sociopath': 30252, 'coronashopping': 8095, 'plentyfull': 24983, 'icra': 16340, 'icraviews': 16342, 'icrainnews': 16341, 'sugarindustry': 31613, 'sugarprice': 31614, 'medley': 20713, 'rehydrated': 27050, 'pandemicchopped': 23989, 'paidsurvey': 23908, 'enterprising': 11525, 'embed': 11265, 'fairway': 12238, 'gobbled': 14292, 'fintweets': 12766, 'airway': 2254, 'fco': 12446, 'creamery': 8454, 'nearing': 22198, 'elvis': 11247, 'ufo': 34015, 'nonursehungry': 22660, 'stupidcustomers': 31488, 'widget': 35963, 'hyperlocal': 16262, 'ddj': 9145, 'dataviz': 9059, 'opendata': 23429, 'reflecting': 26972, 'nyah': 22969, 'unwell': 34502, 'aeco': 2021, 'differential': 9842, 'fading': 12215, 'erode': 11642, 'sweeter': 31996, 'turkishhandsanitizer': 33866, 'kattk81': 18134, 'cooney': 7917, 'marvel': 20395, 'situatio': 29839, 'familycarehospitals': 12285, 'tending': 32488, 'twelve': 33909, 'flake': 12868, 'bourgie': 5070, 'chia': 6615, 'inflection': 16904, 'marco': 20274, 'lauro': 18923, 'setterfield': 29207, 'lintao': 19338, 'zhang': 36771, 'guatemala': 14801, 'coronainkenya': 8054, 'deviate': 9718, 'darling': 9024, 'satisfied': 28557, 'jcdcmotors': 17676, 'woolerontario': 36199, 'fordmustang': 13204, 'masturbate': 20471, 'criticizes': 8555, 'letsbuildbettertomorrow': 19134, 'quinsam': 26359, 'estore': 11734, 'adapter': 1864, 'headset': 15307, 'wearable': 35537, 'wolfofwallstreet': 36158, 'sellersville': 29062, 'finserv': 12763, 'bias': 4476, 'babyyoda': 3712, 'hasbro': 15196, 'pipping': 24843, 'booger': 4940, 'stockbroker': 31203, 'glives': 14217, 'backseat': 3738, 'minivan': 21127, 'dharma': 9755, 'superstores': 31774, 'parcelshipping': 24111, 'lincsfoodchainjobs': 19315, 'austintexas': 3498, 'accesstocash': 1723, 'bankofengland': 3899, 'fani': 12297, 'kayode': 18154, 'jonathan': 17868, 'reap': 26755, 'socialcare': 30194, 'quetion': 26328, 'fanforever': 12296, 'overeating': 23740, 'abandoning': 1589, 'lifeaftercovid': 19243, 'moderately': 21301, 'hindman': 15646, 'knott': 18508, 'eyvallah': 12147, 'thehandmaidstale': 32698, 'swasthabharat': 31974, 'helpustohelpyou': 15489, 'helptosave': 15486, 'poortiming': 25178, 'maturity': 20513, 'cota': 8221, 'discontinuing': 10036, 'redner': 26920, 'marry': 20373, 'wino': 36056, 'winemaking': 36038, 'jogging': 17837, 'procession': 25702, 'ultimateloveng': 34083, 'cov19game': 8302, 'dancegan': 8979, 'terry': 32534, 'edmund': 11053, 'obilo': 23039, 'tunic': 33846, 'workwear': 36256, 'helpthenhs': 15483, 'menstunics': 20808, 'tabard': 32109, 'onlinediacount': 23355, 'scrubtrousers': 28852, 'scrubtops': 28851, 'proceeding': 25696, 'swimsuit': 32014, 'tripathy': 33619, 'edgy': 11032, '3thingstoknow': 900, 'dung': 10757, 'kilo': 18380, 'coronapakistan': 8077, 'tor': 33262, 'grap': 14559, 'handgel': 15036, 'tasneemnaturel': 32271, 'bbw': 4090, 'cfbath': 6371, 'bugsaway': 5472, 'kleenzy': 18469, 'bacout': 3750, 'calmbath': 5805, 'ibumengandung': 16307, 'nontoxic': 22659, 'sleeptime': 29958, 'calmtime': 5814, 'corovnavirus': 8148, 'qpay': 26199, 'qatari': 26179, 'arch': 3054, 'ker': 18258, 'getbeer': 14031, 'tldr': 33082, 'clause': 6915, 'binding': 4555, 'arbitration': 3050, 'arbitrator': 3051, 'unbiased': 34131, 'resolute': 27403, 'electronically': 11189, 'quell': 26315, 'oversaturation': 23774, 'konga': 18551, 'n10m': 21896, 'solosafe': 30314, 'kidsathome': 18352, 'gooddaydc': 14375, 'hulu': 16120, 'disneyplus': 10120, 'amazo': 2534, 'raffat': 26454, 'altekrete': 2483, 'apel': 2890, 'withrefugees': 36117, 'abdijan': 1606, 'abu': 1677, 'dhabi': 9750, 'identifiable': 16363, 'latino': 18894, 'carnicerias': 6056, 'tienditas': 32973, 'thisisacrisis': 32849, 'oklahomahasnomandatorytestingfoepeoples': 23250, 'infor': 16920, 'cranleigh': 8418, 'indirect': 16816, 'juliab1978': 17943, 'stuffing': 31477, '19gr': 414, '19usa': 421, 'foxnuts': 13340, 'puffed': 26046, 'lotus': 19697, 'onlinegrocerystore': 23359, 'sharethelove': 29329, 'foodgasm': 13102, 'indianstreetfood': 16796, 'localgrocerystore': 19488, 'bridgford': 5279, 'incidence': 16703, 'lockup': 19570, 'rafael': 26452, 'lourenco': 19711, 'clientwin': 6991, 'croak': 8563, 'purple': 26110, 'pink': 24824, 'peach': 24346, 'phew': 24674, 'pickens': 24750, 'storydam': 31337, 'winnie': 36050, 'cantveven': 5930, 'deprives': 9560, 'ilifemedical': 16470, 'testkits': 32554, 'interve': 17232, '17701': 333, 'coronvirusuk': 8144, 'hlor0729': 15700, 'vocabulary': 35167, 'bend': 4308, '205': 511, 'bulkcarriers': 5495, 'cultivated': 8710, 'sweetest': 31997, 'novv': 22843, 'lavv': 18928, 'frieda': 13489, 'faye': 12420, 'befor': 4219, 'trastra': 33520, 'spaincoronavirus': 30471, 'conferencing': 7559, 'peppa': 24470, 'disobedience': 10123, 'ward23': 35383, 'scarbto': 28693, 'fracking': 13348, 'lookforthehelpers': 19637, 'crawler': 8436, 'prowling': 25956, 'newperspective': 22359, 'crackling': 8394, 'creamed': 8452, 'glazed': 14200, 'parsnip': 24155, 'gravy': 14592, 'consummation': 7754, 'coronainmaharashtra': 8055, '8500': 1405, 'hoarde': 15721, 'tasted': 32274, 'expired': 12037, 'dissolve': 10176, 'abattoir': 1594, 'campaigner': 5843, 'exclusion': 11950, 'nsduh': 22874, 'taproom': 32241, 'emmy': 11311, 'shute': 29641, 'remorse': 27181, 'layed': 18949, 'drogheda': 10642, 'undercut': 34182, 'learningathome': 19003, 'learnfromhome': 19001, 'joseph': 17877, 'ghg': 14086, 'nppa': 22862, 'kpmru': 18584, 'crystal': 8654, 'socalstrong': 30187, 'beverlyhills': 4424, 'vons': 35203, 'educateyourself': 11060, 'protectyourself': 25905, 'jotted': 17886, '29th': 686, '2km': 714, 'paralyzed': 24098, 'revising': 27655, 'nofear': 22598, 'area51': 3071, 'survivability': 31891, 'grocersapp': 14693, 'grocerapp': 14690, 'grocerystoreapp': 14709, 'bingeshopping': 4558, 'onlyasuggestion': 23377, 'noneed': 22639, 'peek': 24375, 'dependency': 9527, 'madani': 19942, 'atiku': 3370, 'sprinting': 30712, 'afyarekod': 2104, 'cii': 6795, 'channelised': 6452, 'masterchefau': 20462, 'brooklynpodcast': 5368, 'caribbean': 6034, 'applepodcasts': 2965, 'spotifypodcast': 30660, 'inflates': 16900, 'maula': 20516, 'imamali': 16521, 'happyfriday': 15119, 'noluxury': 22621, 'herdimmunity': 15530, 'yday': 36532, 'morn': 21496, 'cryptocurreny': 8649, 'reliefbill': 27126, 'permaroute': 24518, 'visibility': 35118, 'heskins': 15567, 'floormarking': 12969, 'lustful': 19839, 'tik': 32988, 'tok': 33190, 'cardib': 6000, 'helsinki': 15493, 'muniland': 21756, 'safehands': 28281, 'fintwits': 12767, 'comparing': 7414, 'redefine': 26894, 'thirty': 32842, 'cpif': 8371, 'bicyclesastransport': 4485, 'yhis': 36583, 'mackenzie': 19924, 'windenergy': 36022, 'powerdemand': 25332, 'powerconsumption': 25331, 'energymarket': 11437, 'fairing': 12233, 'germy': 14012, 'bracket': 5125, 'reactivation': 26682, 'crossover': 8593, 'pestering': 24579, 'wonderwall': 36178, 'oasis': 23024, 'reasonably': 26768, 'zoe': 36804, 'curfewinkenya': 8754, 'whatsoever': 35797, 'merging': 20853, 'composer': 7479, 'repertoire': 27251, 'soldiering': 30292, 'rehearse': 27049, 'pep': 24468, 'theatrically': 32664, 'veering': 34861, 'spareasquare': 30484, 'omaginsiders': 23288, 'authenticbecky': 3514, 'warewolf': 35389, 'colouring': 7265, 'understaffed': 34209, '95123': 1508, 'smartnews': 30039, 'staffed': 30804, 'qld': 26191, 'jeannette': 17685, 'minnesotan': 21130, 'sunrisers': 31700, 'bumper': 5518, 'ch1': 6393, '4lt': 1021, 'contrastingly': 7835, 'repeated': 27244, 'clicking': 6985, 'chrysler': 6761, 'unload': 34383, 'ageuk': 2133, 'uptown': 34570, 'protip': 25918, 'survivaltips': 31899, 'effectvemp': 11086, 'envy': 11567, 'chomping': 6723, 'realism': 26727, 'time8news': 33009, 'imgflip': 16534, 'homesale': 15849, 'housesale': 16013, 'idiotsb': 16379, 'facade': 12171, 'specialises': 30517, 'sleeve': 29962, 'subdued': 31513, 'foreseen': 13223, 'yext': 36579, 'publicizing': 26022, 'researched': 27348, 'kwawesome': 18678, 'cheryl': 6600, 'idell': 16361, 'carolburnett': 6062, 'fillet': 12669, 'achieved': 1781, 'gendered': 13931, 'dutchies': 10794, 'fuckedup': 13573, 'codvid19espana': 7151, 'codvid19italia': 7152, 'shiny': 29443, 'exxonmobil': 12135, 'naturo': 22097, 'vaccinated': 34725, 'nii': 22503, 'tak': 32154, 'nspoli': 22879, 'ombudsman': 23294, 'consumertalk': 7746, 'campervan': 5851, 'freshies': 13470, 'handmadehour': 15048, 'letterboxfriendly': 19149, 'uniquegifts': 34328, 'campathome': 5847, 'vw': 35253, 'preceded': 25425, 'gardai': 13802, 'indonesia': 16827, 'businessimpact': 5600, 'jbs': 17674, 'achive': 1785, 'intra': 17255, 'digested': 9853, 'varcoe': 34821, 'mintz': 21139, 'toiletpaperfight': 33158, 'survivalguide': 31893, 'toiletpapersurvivalguide': 33177, 'embrassd': 11273, 'strippedbare': 31428, 'dontbothergoing': 10425, 'mageddon': 19986, 'gloriously': 14245, 'circa': 6809, '1996': 409, 'iwillsurvive': 17560, 'campbell': 5848, 'bpo': 5118, 'dorm': 10479, 'philip': 24681, 'nite': 22536, 'sustliving': 31942, 'shaheenbaghcoronathreat': 29270, 'nomoreloot': 22632, 'whoop': 35923, 'carbonemission': 5988, 'elliottwave': 11229, 'misa': 21153, 'vila': 35043, 'paswan': 24219, 'custodian': 8793, 'paperrecycling': 24069, 'packagingcompany': 23875, 'recyclingindustry': 26884, 'trumpvirus2020': 33740, 'mann': 20225, 'engages': 11455, 'gata': 13838, 'negra17': 22250, 'shareifwoke': 29323, 'mattress': 20510, 'feverish': 12577, 'newtoday': 22388, 'okla': 23247, '2worksforyou': 739, 'consumeralert': 7710, 'blackmarketears': 4667, 'reinstated': 27066, 'welldonesky': 35673, 'faulkner': 12402, 'pottyaboutmyplanet': 25303, 'navajo': 22106, 'chilchinbeto': 6635, 'spr': 30669, 'sprau': 30670, 'charitytuesday': 6482, 'softly': 30271, 'disregarded': 10159, 'imaginary': 16513, 'bef': 4214, 'tpt': 33391, 'educator': 11065, 'communicating': 7382, 'tabletop': 32116, 'pces': 24327, '50billion': 1054, 'whereisbernie': 35838, 'joebuck': 17825, 'medal': 20662, 'joked': 17858, 'opioid': 23459, 'adherent': 1905, 'moonshot': 21459, 'pattaya': 24266, 'makro': 20113, 'lapdog': 18830, '2050': 512, 'tissuepaperchallenge': 33061, 'ineos': 16859, 'firmenich': 12789, 'qmu': 26196, 'costcofinds': 8205, 'costcobuys': 8203, 'costcodeals': 8204, 'ivl9txzrtm': 17553, 'ahram': 2205, 'vacationer': 34723, 'snowbird': 30144, 'lcbo': 18964, 'pmmodioncorona': 25041, 'mbpd': 20562, 'carling': 6044, 'stella': 31084, 'birra': 4609, 'moretti': 21490, '179': 335, '09p': 125, 'strangest': 31360, 'arose': 3133, 'scottyfrommarketing': 28804, 'lathicharge': 18888, 'sbry': 28656, 'countires': 8270, '4apeoplesparty': 1007, 'footed': 13173, 'ploughed': 24995, 'twizzlers': 33937, 'orrin': 23577, 'statio': 30919, 'imlearningfx': 16542, 'farage': 12310, 'mayfair': 20540, 'peddling': 24367, 'briljante': 5298, 'rathod': 26619, 'marylandlockdown': 20407, 'marylandcoronavirus': 20405, 'useyourheadmd': 34648, 'deepest': 9283, 'chocolatiers': 6713, 'awarded': 3617, 'laffer': 18737, 'presidential': 25530, 'keynesian': 18291, 'telegraph': 32439, 'integrity': 17146, 'fasten': 12375, 'seatbelt': 28914, 'tidied': 32968, 'shelled': 29391, 'extraordinarily': 12119, 'inpex': 17022, 'optimise': 23485, 'wod': 36149, 'utilised': 34688, 'stingy': 31179, 'guinea': 14826, 'stockholm': 31209, 'sweden': 31986, 'internationallabourorganisation': 17207, 'oilmarket': 23222, 'antiplastic': 2841, 'conclusive': 7527, 'recycle': 26881, 'insisted': 17053, 'thiers': 32806, '106': 152, 'getoutofmybubble': 14041, 'fucovid19': 13597, 'dew': 9733, 'arun': 3199, 'servicepublic': 29188, 'keenan': 18179, 'frown': 13535, 'supersedes': 31767, 'gifted': 14114, 'coinage': 7178, 'comparison': 7415, 'cornershops': 7981, 'laundrettes': 18916, 'vonhrp': 35202, 'bottoming': 5047, 'gaiss': 13749, 'tought': 33334, 'leach': 18973, 'christine': 6751, 'kintu': 18412, 'wanjara': 35362, 'lutimba': 19844, 'socialdistan': 30198, 'foxboro': 13337, 'fabiana': 12161, 'bisceglia': 4617, 'donata': 10394, 'cordone': 7958, 'shopp': 29528, 'overridden': 23770, 'reusing': 27620, 'bringbackthebag': 5306, '1h': 433, 'alajuela': 2295, 'tcrn': 32325, 'kaufman': 18140, 'finna': 12758, 'ctfu': 8677, '80bn': 1367, 'sparingly': 30486, 'bodied': 4858, 'lamuscle': 18790, 'superfoods': 31726, 'processedfood': 25700, 'muscle': 21779, 'immunehealth': 16561, 'republik': 27311, 'precipice': 25432, 'sixty': 29850, 'rpmalamo': 28065, 'sanantoniopropertymanagement': 28413, 'newlistingsanantonio': 22351, 'bulb': 5488, 'stayhomesaveliv': 30995, 'v12': 34717, 'anders': 2696, 'ekman': 11144, 'charting': 6498, '16m': 318, 'devalue': 9702, 'whenthisisallover': 35827, 'trawl': 33548, 'stockpiler': 31222, 'askadoctor': 3255, 'doctoronline': 10316, 'healthyliving': 15356, 'beelearners': 4200, 'uki': 34056, 'cornoravirusus': 7992, 'trump2020nowmorethanever': 33686, 'redmeatmatters': 26918, 'loneliest': 19614, 'patronise': 24264, 'barilla': 3939, 'maida': 20034, 'dahi': 8910, 'amul': 2645, 'safal': 28271, 'nofoodbank': 22602, 'nocrisispayment': 22592, 'nochanceofsurvival': 22586, 'ucpeoplestarve': 33999, 'icantwaittofuckingdie': 16313, 'leicester': 19075, 'bathon': 4026, 'tasered': 32264, 'xjo': 36465, 'gull': 14840, 'whangarei': 35779, 'willingly': 36006, 'irrationally': 17401, 'relearning': 27108, 'democraticsocialism': 9462, 'adjustable': 1917, 'biocarohk': 4569, 'greendisinfectant': 14624, 'chloridedioxide': 6700, 'miso': 21173, 'powermarket': 25340, 'circulates': 6818, 'mortonwilliams': 21521, 'abridged': 1655, 'haggadah': 14926, 'cluck': 7064, 'motherclucker': 21541, 'manup': 20248, 'omgisitonlyme': 23301, 'hohberger': 15755, 'scientifically': 28776, 'filtration': 12684, '200nm': 474, 'quelling': 26316, 'registry': 27030, 'tpisthenewgold': 33380, 'conclude': 7523, 'scout': 28810, 'lolwut': 19604, 'differe': 9838, '799': 1343, 'cunty': 8729, 'icecream': 16321, 'thankschina': 32607, 'xr': 36475, 'machined': 19918, 'rochesterny': 27921, 'disbelieving': 10010, 'finney': 12759, 'givemeacovidbreak': 14168, 'vending': 34896, 'dirtiest': 9972, 'sickest': 29671, 'thrift': 32907, 'zoolert': 36817, 'logged': 19580, 'solemn': 30298, 'rafter': 26455, 'mememe': 20782, 'foodarmy': 13080, 'feedingthenation': 12510, 'feedingthevulnerable': 12512, 'elko': 11224, 'shordy': 29552, 'gettin': 14047, 'valerie': 34754, 'nannery': 21998, 'slaughtering': 29945, 'lockdown101': 19509, 'dissemination': 10171, 'veneto': 34900, 'husted': 16203, 'intact': 17140, 'aldis': 2340, 'biglots': 4513, 'youdamvp': 36630, 'poopy': 25171, 'sunk': 31692, 'maukepechauka': 20515, 'ripe': 27793, 'theflipguyskitchen': 32685, 'homecook': 15816, 'shahenshah': 29271, 'bollywood': 4901, 'amitabhbachchan': 2604, 'policastro': 25105, 'streatham': 31384, 'halved': 14995, 'fishyfun': 12819, 'keepsmiling': 18212, 'charityshopfind': 6481, 'stafflinegroup': 30808, 'constructive': 7694, 'covid2020': 8335, 'ecoli': 10969, 'mwh': 21830, 'stuffyouneed': 31478, 'wiv': 36125, 'trumpisalyingsackofshit': 33702, 'panicroom': 24040, 'homeswithdiane': 15859, 'servingyourfamily': 29195, 'remax': 27158, 'centralindiana': 6330, 'plagued': 24894, 'completion': 7461, 'kuhn': 18637, 'moore': 21460, 'concentrate': 7507, 'respe': 27418, 'bec': 4165, 'thestorm': 32780, 'drpolcino': 10658, 'jumpstart': 17955, 'thecrew2': 32673, 'ubisoft': 33991, 'bassmasters': 4006, 'walkingdead': 35319, 'cancelrent': 5877, 'cancelation': 5869, 'dortmund': 10483, 'ultras': 34088, 'vfb': 34971, 'stuttgart': 31496, 'env': 11552, 'humanitarianaid': 16127, 'notary': 22757, '8daystogo': 1448, 'megapowerstar': 20738, 'ramcharan': 26530, 'seetharamarajucharan': 28991, 'prompting': 25813, 'raccoon': 26418, 'rogers': 27943, 'duterte': 10795, 'hesitation': 15566, 'ahi': 2195, 'firenze': 12781, 'florence': 12973, 'fotografia': 13315, 'paololodebole': 24058, 'instapic': 17101, 'instafoto': 17084, 'igerstuscany': 16423, 'igersflorence': 16420, 'igersitalia': 16421, 'fic': 12612, 'examining': 11913, 'grammar': 14530, 'yqgstandsstrong': 36681, 'bdo': 4110, '6min': 1257, 'manifested': 20209, 'credentialled': 8472, 'usdaw': 34625, 'tel': 32423, 'querying': 26318, 'goofy': 14404, 'brandingwithutility': 5164, 'postitnotecart': 25276, 'moneysmartweek': 21402, 'reengaging': 26948, 'msw2021': 21658, 'msw2020': 21657, 'cleanyourscreen': 6954, 'expression': 12082, 'meetthefarmersconference': 20730, 'crenov8': 8503, 'freshchoice': 13467, 'supervalue': 31776, 'foodinsecure': 13114, 'groceryshortage': 14707, 'christianity': 6747, 'uneconomic': 34247, 'negates': 22236, 'modulates': 21321, 'ariel': 3100, '201': 476, 'vic': 34986, 'streetnewsau': 31392, 'streetadvocate': 31388, 'realestateau': 26709, 'melbre': 20763, 'obligated': 23047, 'embarrass': 11260, 'glutinous': 14264, 'fa4g': 12156, 'earlyriser': 10857, 'earlybirdgetsthenecessities': 10856, 'dover': 10512, 'fcawa': 12438, 'coronacontrol': 8024, 'whack': 35772, 'supportdg': 31803, 'nsfwtwitter': 22877, 'parlous': 24148, 'concumer': 7530, 'adamie': 1858, 'worthwhile': 36310, 'overdu': 23738, 'shoul': 29579, 'tui': 33821, 'anita': 2762, '113': 187, 'sarscov19': 28541, 'consumerimpact': 7728, 'bernstein': 4363, 'larne': 18845, 'carrick': 6084, 'ballymena': 3843, 'subcommittee': 31510, 'worldhealthorganization': 36270, 'fulfilment': 13623, 'arrogance': 3155, 'kesa': 18275, 'maglalalabas': 19997, 'gamit': 13784, 'utak': 34678, 'hk': 15695, 'minimized': 21112, 'annd': 2774, 'salisbury': 28365, 'councilor': 8243, 'savry': 28626, 'ouk': 23627, 'vlns': 35157, 'irreponsible': 17406, 'sprighlty': 30694, 'inefficiency': 16855, 'imrankhan': 16661, 'pastorosagieizeiyamu': 24215, 'colchester': 7194, 'margarine': 20283, 'springboardfutures': 30697, 'bagp': 3785, 'baristas': 3941, 'conronavirus': 7638, '24in48': 617, 'grasp': 14569, 'selfies': 29028, 'ranching': 26554, 'wotw': 36313, 'livesafety': 19416, 'brant': 5176, 'elmira': 11233, 'gimme': 14137, 'cannedfood': 5909, 'cosplay': 8196, 'lovillea': 19735, '675': 1230, 'tig': 32977, 'welder': 35664, 'liquidating': 19350, 'guitar': 14830, 'hanger': 15078, 'boonie': 4963, 'vulnerablepopulations': 35244, '4all': 1005, 'gutless': 14872, 'kdrama': 18172, 'blossoming': 4784, 'sonng': 30360, 'ost': 23592, 'exolselcaday': 11992, 'flopping': 12971, '1326': 243, 'implore': 16609, 'cornoravirusuk': 7991, 'sail': 28322, 'unscathed': 34450, 'lenscrafters': 19102, 'boggling': 4874, 'standalone': 30844, 'coy': 8358, 'renee': 27203, 'arbitrarily': 3048, 'ploy': 24998, 'milky': 21052, 'treasured': 33559, 'ilovemyhusband': 16498, 'trojan': 33634, 'horse': 15946, 'thecomedypost': 32668, 'thecomedypostsg': 32669, 'tpweightlosschallenge': 33393, 'southgate': 30433, 'swimmer': 32011, 'accessed': 1718, 'manhatten': 20201, 'readysteadycook': 26703, 'redacted': 26886, 'disinfects': 10096, 'migrated': 21021, '60bn': 1180, 'akhira': 2276, 'blooded': 4769, 'germkilling': 14008, 'carnaval': 6053, 'kentuky': 18252, 'tenessee': 32491, 'repurposing': 27316, 'wineoclock': 36039, 'extraction': 12116, 'vix': 35153, 'vxx': 35254, 'coronaproblems': 8090, 'nupes': 22919, 'conjunction': 7616, 'accidentally': 1726, 'linkage': 19333, 'upstreamcosts': 34563, 'wmconsulting': 36137, 'southend': 30426, 'chaplain': 6463, 'therapist': 32749, 'clergy': 6973, 'fge': 12595, 'fesharaki': 12565, 'oncoming': 23319, 'maximizing': 20529, 'fulltimervers': 13631, 'rvlife': 28191, 'vanlife': 34797, 'nomadlife': 22623, 'cbdoil': 6223, 'coma': 7274, 'incisive': 16707, 'mudit': 21683, 'jaju': 17601, 'thalibharona': 32587, 'clang': 6875, 'cpiml': 8372, 'foodsystems': 13149, 'lengthen': 19095, 'runway': 28155, 'matrix': 20501, 'redrawn': 26922, 'chinesephones': 6677, 'kmfmnews': 18482, 'xly': 36468, 'redefined': 26895, 'imprint': 16641, 'paisa': 23923, 'rathore': 26620, 'butchery': 5630, 'olivia': 23275, 'guinaugh': 14825, 'nocommonsense': 22587, 'auctioning': 3452, 'myquarantineinagif': 21869, 'flattenthecuve': 12903, 'toilettissue': 33187, 'notimeforjokes': 22790, 'priciest': 25606, 'skinned': 29891, 'gaw': 13860, 'x1': 36434, 'gaymer': 13868, 'riskiest': 27826, 'quarantin': 26240, 'facilitating': 12198, 'allocation': 2430, 'bahar': 3788, 'khana': 18315, 'ima': 16506, 'makin': 20105, 'lochnessmonster': 19505, 'libs': 19219, 'getgo': 14033, 'may3': 20537, 'tnx': 33099, 'kzn': 18694, 'burna': 5558, 'zlatan': 36798, 'ini': 16975, 'beatz': 4145, 'ibile': 16302, 'hooray': 15907, 'adaptive': 1866, '8336': 1393, 'sounding': 30403, 'deathknell': 9176, 'ssi': 30771, 'clouding': 7050, 'glorious': 14244, 'analyzing': 2676, 'revolutio': 27670, 'sultanate': 31640, 'omanobserver': 23291, 'pandemiccovid19': 23990, 'innovationst': 17014, 'newsroom': 22381, 'josie': 17882, 'bounceback': 5057, 'contingent': 7807, '350k': 814, '500k': 1041, 'savemoney': 28604, 'saynotosingleuse': 28643, 'littleproud': 19396, 'beneath': 4312, 'sainsb': 28328, 'genetics': 13955, 'nefarious': 22234, 'whitepaper': 35892, 'kgp': 18306, 'threeitemsonly': 32902, 'wallace': 35325, 'ebayuk': 10937, '18ct': 355, 'westerner': 35721, 'kashmirlockdown': 18112, 'kashmiri': 18111, 'issuer': 17490, 'icanwaitanotherweek': 16315, 'refresher': 26986, 'noschool': 22736, 'pma': 25032, 'bartuska': 3980, 'rickygervais': 27735, '750ml': 1310, '1l': 439, 'belarus': 4268, 'whatnot': 35789, 'weneedsensitivemedia': 35687, 'redeploying': 26900, 'goodthinking': 14397, 'swagbucks': 31963, 'earnmoney': 10866, 'ary': 3206, 'sahulat': 28318, '021': 46, '00162': 2, '166981': 314, 'buyonline': 5674, 'offensive': 23156, 'immigrantsong': 16552, 'ohiounemployment': 23202, 'openohio': 23438, 'gasolina': 13830, 'redundant': 26938, 'whatsap08115981930': 35793, 'rccg': 26658, 'boko': 4892, 'bodija': 4859, 'seyi': 29238, 'healthathome': 15318, 'positivit': 25249, 'bannon': 3910, 'unlucky': 34387, 'flank': 12875, 'inclusive': 16718, 'stards': 30869, 'snorkel': 30140, '284': 673, '1321': 242, 'heinz': 15427, 'meanz': 20641, 'abit': 1630, 'recreating': 26866, 'madebystudiojq': 19947, 'ahahahaha': 2191, 'chck': 6520, 'tippingpoint': 33047, 'weinstein': 35645, 'publicise': 26020, 'nageswara': 21939, 'rao': 26590, 'pil': 24790, 'zoomuniversity': 36825, 'ukhousing': 34055, 'bronx': 5362, 'inspite': 17073, 'efficacy': 11087, 'workflow': 36226, 'verification': 34932, 'anambra': 2677, 'bubonic': 5440, 'leningrad': 19099, 'calorie': 5817, '575': 1116, 'clasping': 6899, 'bootstrap': 4975, 'socia': 30191, 'pk': 24879, 'makemytrip': 20096, 'cheating': 6535, 'caito': 5751, 'instructor': 17120, 'disabling': 9982, 'pornography': 25201, 'reboot': 26787, 'mareeba': 20279, 'njlockdown': 22550, 'unforgivable': 34281, 'govs': 14488, 'fpa': 13342, 'consult': 7695, 'superannuation': 31709, 'adjacent': 1913, 'skinless': 29890, 'bead': 4116, 'honolulu': 15885, 'savannah': 28593, 'peaking': 24350, 'dontbeapartoftheproblem': 10419, 'prayfortheworld': 25406, 'trustinthelord': 33754, 'danceswithrain': 8981, 'wwg1wgaworldwide': 36420, 'dearly': 9172, 'pavilion': 24280, 'viscelli': 35116, 'noticeably': 22782, 'documetry': 10326, 'urbanphotography': 34581, 'urbex': 34583, '5fold': 1141, 'usernames': 34646, 'faa': 12157, 'undeserved': 34230, 'eternally': 11748, 'donthoard': 10430, 'terrific': 32523, 'garwood': 13822, 'brightens': 5291, 'spreadkindness': 30685, 'cpi': 8370, '200bps': 469, '330ml': 796, 'boycottesco': 5097, 'wounder': 36320, 'synonym': 32088, 'fielding': 12620, 'poundage': 25309, 'dislocation': 10105, 'avishek': 3588, 'curable': 8740, 'nonationforfarmers': 22635, 'wid': 35954, 'yogendrayadav': 36603, 'vulnerbale': 35245, 'trumpisanidiot': 33703, 'trumpneedstoshutup': 33718, 'piersmorgan': 24782, 'techjunkieinvest': 32377, 'lizzie': 19432, 'gif': 14109, 'bushwick': 5583, 'sealed': 28890, 'n16': 21898, 'stokey': 31238, 'stokie': 31239, 'stokenewingtonchurchstreet': 31237, 'aakubosan': 1569, 'protectfrontliners': 25890, '03344859556': 60, '03065659733': 57, 'autosanitizergate': 3552, 'freeschoolmeals': 13440, 'schoolsuk': 28761, 'birla': 4607, 'industrialist': 16844, 'ov': 23706, 'onehealth': 23325, 'anheuser': 2746, 'wrench': 36340, 'notclear': 22760, 'dingle': 9930, 'golfatlanta': 14354, 'atlantagolf': 3377, 'golfgeorgia': 14356, 'georgiagolf': 13994, 'poorshowtesco': 25177, 'bossed': 5025, '3l': 879, 'prosecco': 25864, 'sendwine': 29104, 'amble': 2556, 'worklife': 36245, 'delet': 9382, 'pricerises': 25599, 'inventing': 17288, 'revolutionizing': 27673, 'motif': 21549, 'businessesandcompanies': 5597, 'este': 11722, 'aplausonacional': 2902, 'debe': 9189, 'ir': 17374, 'acompa': 1802, 'conciencia': 7520, 'todos': 33119, 'quedarnos': 26301, 'sirve': 29824, 'homenaje': 15840, 'vamos': 34772, 'poner': 25151, 'peligro': 24393, 'siendo': 29697, 'irresponsables': 17409, 'transcombiexpress': 33465, 'yourlogisticspartner': 36649, 'covoid19greece': 8346, 'kathandkim': 18120, 'kathkim': 18122, 'layered': 18951, 'nlpoli': 22561, '763': 1321, 'enacts': 11378, 'osceola': 23582, 'ucf': 33995, 'semester': 29080, 'passport': 24203, 'skipthedishes': 29902, 'swmnewsletter': 32037, 'swisspost': 32028, 'northland': 22719, 'everett': 11841, 'ihss': 16448, 'frigging': 13500, 'aubergine': 3446, 'fearmongering': 12470, 'endeavor': 11397, 'grabi': 14507, 'nga': 22418, 'gakaon': 13751, 'lami': 18783, 'matooke': 20499, 'jimmy': 17778, 'quiroga': 26365, 'abled': 1633, 'stocknbecayse': 31219, 'commentator': 7337, 'acknowledgment': 1797, 'oilfieldservices': 23218, 'oilgas': 23220, 'epicenter': 11585, 'mcphotography': 20602, 'csbs': 8661, 'novokuznetsk': 22841, 'badass': 3757, 'spiking': 30577, 'wireline': 36073, 'alluarjun': 2440, 'cbid': 6226, 'untested': 34479, 'karenrebels': 18100, 'alm': 2446, 'zit': 36795, 'replicated': 27266, 'resi': 27374, 'subside': 31542, 'futurestarr': 13703, 'workforyourself': 36228, 'pressed': 25535, 'dotr': 10492, 'congestion': 7602, 'sonic': 30358, 'grin': 14671, 'morbid': 21477, 'gonzales': 14368, 'centralnews': 6333, 'cleanupyourmess': 6951, 'ppelitter': 25355, 'affording': 2066, 'pillitteri': 24804, 'tasting': 32276, 'tense': 32498, 'plausible': 24938, 'springnews': 30708, 'taradome22': 32244, 'cloroxwipes': 7021, '5mn': 1160, 'unprofitable': 34419, 'globa': 14219, 'gdc': 13891, 'assumes': 3318, 'vivek': 35151, 'gambhir': 13771, 'breather': 5228, 'mainer': 20053, 'pokemon': 25094, 'domenic': 10377, 'primucci': 25623, 'nova': 22827, 'ctxs': 8683, 'bntx': 4830, 'gazing': 13876, 'prodigal': 25712, 'onefight': 23324, 'earlyserviceleavers': 10858, 'jobsforveterans': 17813, '3hr': 876, '2days': 699, 'banknote': 3896, '4days': 1011, 'stainless': 30822, 'exterior': 12098, 'socialidistancing': 30215, 'penrith': 24436, 'bluemountains': 4803, 'publicmedia': 26025, 'euthanasia': 11802, 'plutocrat': 25026, 'containerstore': 7772, '9honey': 1543, 'headden': 15298, 'hajjar': 14959, 'seasoned': 28911, 'hajjarpetersllp': 14960, 'netskope': 22303, 'sanjay': 28478, 'beri': 4348, 'rdguk': 26668, 'savy': 28628, 'retiree': 27577, 'ottnews': 23618, 'covud19': 8347, 'terminate': 32514, 'ff': 12581, 'pail': 23910, 'zonrox': 36815, 'distraught': 10208, 'aen': 2025, 'jvvnl': 18006, 'nazi': 22127, 'betfred': 4402, 'vandalism': 34785, 'armchair': 3114, 'testifies': 32550, 'deza': 9739, 'perfecting': 24488, 'hre': 16063, 'wwouldn': 36425, 'rubbishing': 28101, '25kg': 637, 'galling': 13764, '0042': 4, 'pinpoint': 24831, 'hadleigh': 14918, 'hillary': 15631, 'clinton': 7006, 'embarrassment': 11263, 'buybuybuy': 5658, 'justquarantings': 17994, 'winer': 36040, 'bcs': 4102, '01756986': 36, 'peterdutton': 24595, 'syndicate': 32082, 'chainsaw': 6404, 'maconsumer': 19928, 'spotascam': 30658, 'natter': 22078, 'belting': 4303, 'checkoutgirl': 6545, 'selfemployedsurvival': 29025, 'regain': 27008, 'chandrashekhar': 6435, 'tufaa': 33819, 'weyayu': 35760, 'whiteclaw': 35886, 'drizly': 10639, 'cheapestholidays': 6527, 'virginatlantic': 35086, 'virginholidays': 35087, 'impt': 16655, 'resourceful': 27415, 'howto': 16047, 'bhutan': 4473, 'bhutanese': 4474, 'thimphu': 32810, 'nightcrawler': 22492, 'thespot': 32777, 'bepositive': 4338, 'blackedout': 4660, 'wipeout': 36064, 'burningrubber': 5564, 'khatamkarona': 18319, 'listentomusic': 19368, 'emerg': 11279, 'disservice': 10173, 'tasawwuq': 32262, 'baitik': 3806, 'crater': 8429, 'trumpreces': 33728, 'hofbrauhaus': 15746, 'suds': 31596, 'clveland': 7074, 'confiscate': 7583, 'funtimes': 13666, 'reven': 27635, 'cbdmd': 6221, 'ycbd': 36530, 'cannabidiol': 5896, 'nireland': 22529, 'gameballymena': 13776, 'psalm': 25971, 'ccu': 6255, 'cardiotwitter': 6005, 'fixingthecountry': 12847, 'helo': 15448, 'certification': 6359, 'usd0': 34622, 'exw': 12133, 'usd1': 34623, 'sabcnews': 28231, 'hydoxychloroquine': 16220, 'triad': 33585, 'parish': 24129, 'donts': 10442, 'hausa': 15228, 'takeresponsibility': 32171, 'franchisenewsaustralia': 13368, 'franchisebusines': 13366, 'ggfc': 14065, 'johnsonmustgo': 17846, 'borisresign': 5004, 'ukstayhome': 34070, 'riced': 27719, 'livonia': 19428, 'jl': 17791, 'prot': 25881, 'inbound': 16688, 'innacurate': 16999, 'motorcycle': 21565, 'fuelprices': 13610, 'moronavirus': 21503, 'jst': 17908, 'aimlessly': 2223, '75ml': 1316, 'orihuelacosta': 23559, 'adminstrators': 1937, 'superarket': 31710, 'flinching': 12945, 'robber': 27892, 'protectothers': 25899, 'shulman': 29629, 'vicious': 34989, 'analogy': 2663, 'dissuade': 10178, 'profoundly': 25752, '1973': 390, 'sedan': 28963, 'hanover': 15094, 'cirko': 6823, 'bhargab': 4457, 'maitra': 20070, 'boycottpepsi': 5103, 'wishlistediting': 36095, 'hrlaw': 16066, 'emplaw': 11335, 'dueregard': 10728, 'whately': 35786, '2discriminatory': 700, 'psed': 25974, 'senatorshehusani': 29094, 'lifecycle': 19250, 'brandverse': 5173, 'katherine': 18121, 'figatner': 12628, 'whippy': 35871, 'dominate': 10384, 'intimes': 17248, 'equiping': 11613, 'hosptals': 15961, 'mahsood': 20031, 'telegram': 32438, 'mpc': 21612, 'hundo': 16158, 'clutching': 7072, 'natively': 22072, 'hospice': 15950, 'blissfully': 4741, 'hoverboard': 16030, 'backtothefuture': 3741, 'martymcfly': 20392, 'hoverboards': 16031, 'zelda': 36747, 'pfoa': 24645, 'insulted': 17126, 'chickenwings': 6631, 'meatonthebone': 20652, 'boundary': 5062, 'squeezethecharmin': 30748, 'diasorin': 9794, 'authorization': 3525, 'simplexa': 29760, 'opp': 23461, 'cricket': 8515, 'mcfuku': 20588, 'disorganized': 10126, 'speech1': 30544, 'framing': 13361, 'kennyrogers': 18244, 'kenny': 18243, 'harig': 15155, 'coddle': 7145, 'whitecoats': 35887, 'screengrabs': 28834, 'harbor': 15136, 'respnders': 27434, 'haley': 14970, 'reviving': 27663, 'attaining': 3403, 'nichemarket': 22462, 'cleo': 6971, 'cherryflowers': 6599, 'hawkes': 15249, 'glendale': 14210, 'locationdata': 19502, 'likewise': 19291, 'mealprep': 20626, 'zimo': 36785, 'toi': 33139, 'mfgs': 20922, 'searched': 28900, 'reappear': 26758, 'inherited': 16965, 'larder': 18837, 'keepsafeeveryone': 18210, 'keepreadingencasa': 18208, 'gunbacker': 14848, 'becouse': 4179, 'fould': 13318, 'meanness': 20636, 'malice': 20134, 'repeating': 27245, 'unashamed': 34119, 'actofkindness': 1836, 'goodsamaritan': 14394, 'thecurve': 32674, 'ecurve': 11021, 'mutiaradamansara': 21817, 'petalingjaya': 24587, 'restrictivemovementorder': 27490, 'melee': 20764, 'parentingfail': 24121, 'monroe': 21427, 'perinton': 24505, 'challah': 6416, 'bakeoff': 3814, 'easterbreadtradition': 10890, 'pflugerville': 24642, 'vapes': 34810, 'equalizer': 11605, 'publicsafety': 26029, 'hydroxychloronquine': 16231, 'supportyorkcounty': 31827, 'matatus': 20478, 'playin': 24945, 'puerto': 26043, 'rico': 27736, 'bangor': 3885, 'thrice': 32906, 'lucknow': 19790, 'liberalismisamentaldisorder': 19210, 'usdcad': 34627, '4200': 937, 'cad': 5727, 'kvbprime': 18666, 'stickley': 31149, 'interviewee': 17239, 'silence': 29732, 'burgeoning': 5542, 'cherryblossoms': 6598, 'birthdayiscancelled': 4613, 'biked': 4526, 'conceivable': 7505, 'seniorcare': 29112, 'rida': 27738, 'yucat': 36689, 'dicte': 9811, 'desrus': 9644, 'avitoonz': 3589, 'propcos': 25826, 'proprietary': 25859, 'jpm': 17903, '49k': 1003, 'chinaproperty': 6667, 'toughen': 33330, 'snowflake': 30146, 'gmaz': 14271, 'mealimeal': 20623, 'boycottmcdonalds': 5102, 'fightfor15': 12644, 'jse': 17907, 'hobart': 15734, 'brisbane': 5313, 'darwin': 9031, 'prolongation': 25790, 'roskill': 28011, 'survivalkit': 31895, 'collide': 7237, 'dorabjees': 10475, 'bangani': 3878, 'ngicela': 22422, 'niyeke': 22541, 'cease': 6272, 'desist': 9625, 'calculates': 5763, 'subramani': 31531, 'populationcontrol': 25191, 'structured': 31449, 'backyard': 3748, 'anlaby': 2767, 'marol': 20367, 'udhavthackeray': 34004, 'div': 10234, 'excludes': 11948, 'lilburn': 19295, 'wearadamnmask': 35540, 'blumhouse': 4811, 'blum': 4810, 'somethings': 30342, 'asianshares': 3242, 'bolstered': 4905, 'crip': 8530, '1017challenge': 146, 'worldstarhiphop': 36279, 'kushupchallenge': 18657, 'newmusic': 22355, 'thursdayvibes': 32952, 'goverened': 14464, 'scoundrel': 28806, 'accountable': 1745, 'stopcoronavirus': 31270, 'mythical': 21888, 'roadie': 27879, 'randomrapha': 26568, 'deducting': 9271, 'upstatement': 34561, 'consultwithtsb': 7701, 'tsb': 33772, 'fathom': 12395, 'bridgecard': 5274, 'bibleverse': 4480, 'elan': 11150, 'deplete': 9533, 'fischerjordan': 12807, 'meetthepress': 20731, 'sharper': 29340, 'acquiring': 1807, 'raredisease': 26607, 'cbdoilbenefitz': 6224, 'homegrow': 15827, 'buyinbulk': 5666, 'beprepared': 4339, '420': 936, 'usalockdown': 34613, 'auspicious': 3487, 'karaknath': 18091, 'kamalnath': 18061, 'mppoliticalcrisis': 21621, 'subsidizing': 31550, 'sanit': 28449, 'adede': 1891, 'derep': 9575, 'ruoth': 28156, 'nemesis': 22266, 'reactivate': 26681, 'brightram': 5296, 'protectconsumers': 25887, 'protectallpeople': 25884, 'cocoa': 7135, 'coffeelover': 7160, 'probe': 25687, 'ent': 11517, 'overwatch': 23799, 'junkrat': 17964, 'postwoman': 25288, 'perished': 24511, 'purport': 26111, 'residentevil4': 27382, 'capcom': 5942, 'gratification': 14579, 'spilled': 30579, 'chiaroscurist': 6617, 'spelt': 30557, 'unmet': 34392, 'francois': 13372, 'candelon': 5883, 'massholes': 20453, 'paidsickdays': 23905, 'ffcra': 12584, 'paidleave': 23903, '1942': 375, 'munich': 21753, 'ncba': 22151, 'marty': 20391, 'netflixth': 22300, 'survivor2020': 31907, 'zandi': 36725, 'mend': 20798, 'hitman': 15690, 'sportswear': 30655, '254': 630, '110922066': 183, 'prioritization': 25645, 'reapply': 26759, 'trumpcovidfails': 33690, 'preferably': 25461, 'latecapitalism': 18873, 'dutton': 10797, 'rhyming': 27705, 'slang': 29935, 'auspolsocorrupt': 3492, 'achat': 1778, 'cois': 7188, 'faire': 12228, 'leur': 19156, 'aider': 2215, 'entreprises': 11548, 'ciblant': 6789, 'produits': 25725, 'chaque': 6467, 'compte': 7495, 'appuyer': 3013, 'locaux': 19503, 'stimulant': 31166, 'notre': 22805, 'conomie': 7631, 'hangry': 15084, 'gee': 13904, 'quackery': 26209, 'gray': 14593, 'doorstop': 10473, 'nami': 21982, 'yuu': 36701, 'asikho': 3248, 'finalising': 12691, 'thrum': 32932, 'ominous': 23302, 'wetmarket': 35748, 'individually': 16824, 'polled': 25132, 'supervisory': 31781, 'lavallee': 18926, 'bhlrkqtp1z': 4466, 'consisted': 7666, 'disturbingly': 10228, 'salsa': 28376, 'weirdstockups': 35651, 'auth': 3510, 'lustre': 19840, 'hitachi': 15682, 'intereste': 17182, 'rhetoric': 27695, 'antisemitism': 2842, 'ayman': 3654, 'mohyeldin': 21338, 'painful': 23912, 'pleasestophoarding': 24973, 'merchantserviceinnovations': 20842, 'roadwarrior': 27883, 'memer': 20783, 'watchout': 35475, 'cttoncorona': 8680, 'wwinsights': 36423, 'thankyouretailworkers': 32632, 'ramvilaspaswan': 26549, 'unsolidarity': 34462, 'costumer': 8217, 'cooed': 7896, 'dtla': 10698, 'sta': 30779, 'prix': 25675, 'petrolhead': 24619, 'otherside': 23609, 'ribeye': 27714, 'carnivore': 6058, 'squirrel': 30752, 'docilians': 10307, 'pampered': 23961, 'testify': 32551, 'absolut': 1665, 'nordic': 22683, 'nordicinnovation': 22684, 'comeswith': 7299, 'responibility': 27443, 'delibirately': 9398, 'expo': 12066, 'soka': 30282, 'kma': 18479, 'yasa': 36524, 'ilde': 16467, 'kuyla': 18663, 'kutlan': 18659, 'betheissue': 4403, 'consumerismreform': 7732, 'rs96': 28076, 'gianteagle': 14103, '126': 221, 'ukeconomy': 34045, 'tcpa': 32324, 'staranded': 30865, 'strandedbrits': 31353, 'bringflightsback': 5307, 'redirect': 26908, 'csforall': 8664, 'convention': 7863, 'eagerness': 10846, 'distanc': 10181, 'youllbeaiight': 36635, 'waityourturn': 35290, 'stayback': 30954, 'atleast6feet': 3381, 'sledgehammer': 29953, 'bonesaw': 4927, 'outlawing': 23664, 'delve': 9440, 'constrained': 7689, 'arundel': 3201, 'marubeni': 20393, 'chera': 6592, 'titan': 33063, 'parlayed': 24144, 'reaped': 26756, 'revew': 27649, 'businesswoman': 5614, 'affiliatemarketing': 2051, 'branston': 5175, 'antiflu': 2835, 'feeble': 12497, 'fittest': 12831, 'att': 3393, 'rhea': 27694, 'whacking': 35774, 'lon': 19607, 'fraction': 13350, 'arnold': 3127, 'convos': 7892, 'insignificant': 17051, 'scmp': 28783, 'costcos': 8207, 'adjourned': 1914, 'nonpayment': 22651, 'dropshipping': 10652, 'vegetableoil': 34875, 'dukem': 10734, 'trumpownseverydeath': 33719, 'toiletpaperapocolypse': 33147, 'schuermann': 28765, 'fixates': 12842, 'oilfinance': 23219, 'forge': 13236, 'pager': 23898, '1974': 391, 'swcycle': 31980, 'tightened': 32981, 'bounced': 5058, 'replay': 27259, 'italytravel': 17508, 'riddance': 27739, 'poison': 25087, 'n2': 21899, 'bettersafethansorry': 4412, 'fertilizer': 12564, 'navigates': 22113, 'marketoutlook': 20336, 'wo': 36145, 'berojgar': 4364, 'achanak': 1777, 'gayee': 13866, 'ane': 2716, 'ziddi': 36776, 'supermarts': 31760, 'lumpur': 19814, 'greediness': 14613, 'etenergyworld': 11746, 'sprint': 30710, 'nounemployment': 22818, 'goodie': 14381, 'cbtt': 6234, 'somerset': 30337, 'helpp': 15476, 'authentik': 3516, 'soulmatez': 30398, 'watchmenhbo': 35474, 'bobblehead': 4847, 'mcm': 20595, 'freegiveaway': 13422, 'mancrushmonday': 20173, 'reared': 26761, 'skymiles': 29914, 'teamams': 32340, 'audiology': 3459, 'togetherwearebetter': 33131, 'louse': 19712, 'phantom': 24653, 'clawing': 6921, 'multiplying': 21729, 'apparatus': 2934, 'peanutbutter': 24353, 'backtrack': 3742, 'letpanic': 19131, 'followtherules': 13062, 'ignorantaustralians': 16430, 'beachgoers': 4114, 'brazilian': 5195, 'styling': 31498, 'backside': 3739, 'pandemicproblems': 23999, 'day15': 9105, 'discgolfcenter': 10016, 'califor': 5781, 'roc': 27914, 'fabricated': 12165, 'whstsapp': 35935, '08121156706': 115, 'cristiano': 8542, 'yoruba': 36622, 'guardiola': 14798, 'torres': 33284, 'day3': 9113, 'grocerypickup': 14701, 'wegotthis': 35631, 'safeguarded': 28279, 'sunoco': 31697, 'diane': 9787, 'drifting': 10620, 'willowy': 36009, 'luxary': 19846, 'afflicted': 2057, 'array': 3143, 'gracious': 14512, 'blandin': 4687, 'shemeantcondoms': 29402, 'impeachedts': 16588, 'regrann': 27032, 'victor': 34995, 'catalog': 6158, 'makeithappen': 20090, 'odyssey': 23137, 'scambritain': 28671, 'raisethebar': 26489, 'workersrights': 36224, 'prosperity': 25876, 'handinhand': 15041, 'soda': 30255, 'coronafunny': 8039, 'presto': 25544, 'akinbamidele': 2280, 'akintola': 2281, 'dink': 9932, 'serviette': 29193, 'socents': 30190, 'underlining': 34192, 'coronacri': 8025, 'furnishing': 13680, 'acikmayasa': 1789, 'salonetwitter': 28375, 'cakeshop': 5756, 'lent': 19103, 'qkjj': 26189, 'doubter': 10499, 'objective': 23044, 'petroleumreserve': 24617, 'aggregator': 2141, 'wallis': 35329, 'slippage': 29981, 'contro': 7844, 'surf': 31856, 'supermarketsuperheroes': 31752, 'servicer': 29189, '609': 1179, '292': 681, '7272': 1295, 'gma': 14269, 'drjashton': 10640, 'michaelkekesara': 20945, 'syncrude': 32081, 'ymm': 36592, 'rwmb': 28197, 'coronaireland': 8059, 'denounce': 9500, 'nbachinalapdogs': 22131, 'iab': 16285, 'mung': 21752, 'mayonnaise': 20544, 'lightning': 19280, 'nabou': 21924, 'takesavillage': 32172, 'friendslikefamily': 13497, 'dffnt': 9741, 'hermanita': 15544, 'mngr': 21253, 'safedistancing': 28277, 'ayatollah': 3647, 'sistani': 29827, 'silently': 29737, 'justifying': 17983, 'ijustwantsomemilk': 16459, 'prioritising': 25644, 'parecetomol': 24115, 'seperates': 29152, 'lowincomes': 19747, 'sfchron': 29242, 'postcard': 25263, 'newssuite': 22382, '80yo': 1372, 'distressing': 10212, 'sharara': 29317, 'ordinarily': 23519, 'onboarding': 23314, 'ilovereading': 16500, 'hca': 15281, 'prolific': 25787, 'ramanan': 26525, 'krishnamoorti': 18604, 'khou': 18324, 'louistv': 19706, 'shatter': 29347, 'shattawale': 29346, 'bayonne': 4063, 'popcorn': 25181, 'glancingly': 14192, 'amusing': 2649, 'broiler': 5354, 'fritos': 13512, 'plaguing': 24895, 'ferrer': 12559, 'antoinette': 2849, 'number2': 22908, 'quarantine2020': 26242, 'verse': 34954, 'hubbard': 16085, 'dunne': 10761, 'ocha': 23109, 'iic': 16451, 'idp': 16388, 'acce': 1702, 'digitalservicesact': 9892, '50th': 1065, 'copayments': 7933, 'proudmuslim': 25927, 'bateman': 4018, 'translating': 33490, 'inv': 17276, 'consum': 7702, 'maan': 19901, 'haitian': 14956, 'satu': 28561, 'satunya': 28562, 'tempat': 32464, 'aku': 2287, 'kena': 18236, 'exodus': 11991, 'passover2020': 24201, 'chagsameach': 6400, '64gb': 1213, '704': 1277, 'stature': 30932, 'unfounded': 34285, 'ktaka': 18626, 'washer': 35427, 'validity': 34760, 'brendan': 5241, 'formorenews': 13262, 'shoo': 29486, 'dom': 10374, 'occupation': 23097, 'perpetrated': 24531, 'guitarsolo': 14831, 'shred': 29606, 'humorous': 16149, 'propertyprices': 25836, 'ukproperty': 34064, 'housingsupply': 16023, 'internetretailing': 17213, 'ukcovidlunacy': 34044, 'avoids': 3600, 'tottering': 33317, 'impedance': 16589, 'harmonicretail': 15165, 'retailevolution': 27527, 'retailchanges': 27523, 'retailexperience': 27528, 'sprawling': 30671, 'multiplication': 21725, 'asic': 3244, 'financialsystem': 12721, 'viciously': 34990, 'wisconsinprimary': 36081, 'oak': 23015, 'thatcherism': 32646, 'vicar': 34987, 'tcm': 32320, 'kathy': 18125, 'bates': 4019, 'splitting': 30614, 'myus': 21889, 'internationalshipping': 17209, 'mcnamme': 20597, 'iain': 16287, 'duncan': 10752, 'uncovers': 34164, 'trump20': 33682, 'priv': 25659, 'padding': 23887, 'homegym': 15828, 'swinnen': 32023, 'surcharge': 31849, 'sindharamsanwarmalmewawala': 29790, 'dryfruits': 10677, 'peril': 24501, 'coronachaos': 8019, 'overhyped': 23749, 'biosurveillance': 4594, 'atlas': 3379, 'debacle': 9180, 'americastrong': 2587, 'tokre': 33192, 'pci': 24328, 'flippant': 12950, 'smarta': 30027, 'quinine': 26357, 'jean': 17682, 'coronacation': 8016, 'transferring': 33474, 'mercado': 20831, '20th': 533, '55pm': 1102, 'deepdale': 9278, 'duopoly': 10767, 'toorak': 33240, 'wellington': 35674, 'wildest': 35985, 'foxbusiness': 13338, 'dc15': 9133, 'sbm': 28654, 'wheatoffal': 35813, 'microdroplets': 20969, 'inhaled': 16960, 'mreade': 21626, 'dermott': 9585, 'jewell': 17750, 'cai': 5745, 'taanz': 32107, 'olsen': 23278, 'swinging': 32022, 'travelagents': 33529, 'kerrydigest': 18268, 'oaps': 23021, 'shuffling': 29627, 'flinch': 12944, 'newsdesk': 22371, 'prioritizes': 25648, 'rebalancing': 26780, 'prayingforall': 25409, 'millenial': 21056, 'ontariotogether': 23398, 'theoretically': 32733, 'protracted': 25922, '8216': 1382, '8217': 1383, 'cathedral': 6180, 'stpatricksday': 31341, 'selfprotect': 29050, 'durban': 10777, 'jio': 17786, 'happier': 15107, 'storeclerks': 31316, 'grocerystoreclerksstaysafe': 14711, 'cambridgeuniversity': 5825, 'openingtimes': 23435, 'rogue': 27945, 'robyn': 27913, '5livebreakfast': 1156, 'ugx': 34024, 'bospoli': 5021, 'dormant': 10480, 'mcdonaldscoffee': 20586, 'oyedepo': 23837, 'bifrons': 4497, 'arsetralia': 3169, 'mislead': 21169, 'nisa': 22532, 'salman': 28371, 'mohammedbinsalman': 21335, 'atim': 3371, 'streetbees': 31390, 'vidisha': 35015, 'gaglani': 13741, 'oju': 23240, 'koba': 18524, 'istandwithpastorchris': 17496, 'toto': 33314, 'oas': 23023, 'bcrea': 4101, 'brendon': 5243, 'ogmundson': 23190, 'universityofmichigan': 34357, 'akp': 2284, 'mhp': 20935, 'downvote': 10549, 'spatial': 30497, 'motorbike': 21564, 'indiabulls': 16778, 'deffecult': 9316, 'virues': 35103, 'nip': 22524, 'bbq': 4086, 'recipeoftheday': 26823, 'marmalade': 20361, 'glaze': 14199, 'marmoreresearch': 20363, 'emilia': 11297, 'romagna': 27973, 'lazio': 18958, 'nun': 22915, 'panicdemic': 24028, 'zimbabwean': 36783, 'looe': 19632, 'discontinue': 10034, 'tplocator': 33381, 'betrayed': 4407, 'disband': 10007, 'crudeexports': 8618, 'arguscrude': 3092, 'groceryretailers': 14703, 'consequent': 7649, 'barron': 3969, 'insists': 17056, 'crafty': 8401, 'absorbent': 1670, 'geek': 13905, 'domestically': 10380, 'enquiring': 11496, 'familybusiness': 12284, 'happytohelp': 15126, 'industry2020': 16847, 'traveltrends': 33544, 'nba2k20': 22130, 'cranky': 8417, 'colaboration': 7193, 'confidently': 7570, 'fixturescloseup': 12853, 'storefixtures': 31322, 'retailfixtures': 27529, 'brandexperience': 5159, 'shoppermarketing': 29534, 'aircon': 2235, 'cured': 8752, 'palestinian': 23943, 'swept': 32003, 'wench': 35684, 'attemped': 3405, 'stockroom': 31227, 'biy': 4640, 'dontcare': 10427, 'grueling': 14767, 'bulkbuy': 5492, 'uppity': 34548, 'offbrands': 23149, 'confession': 7562, 'annie': 2777, 'buttermilk': 5637, 'porn': 25200, 'gatherer': 13845, 'defaulting': 9291, 'erodes': 11644, 'nationallockdown': 22065, 'shelfisolation': 29385, 'kavacik': 18142, 'arthur': 3176, 'smalltownpride': 30024, 'slowthecurve': 30002, 'moreira': 21484, '1991': 403, 'smucker': 30091, 'section144is': 28947, 'nana': 21989, 'horlicks': 15931, 'illegals': 16475, 'marketingstats': 20329, 'potion': 25297, 'lozenge': 19758, 'intraday': 17256, 'gameface': 13778, 'accountant': 1746, 'disapprove': 9998, 'consumerbusiness': 7715, 'resuscitate': 27512, 'dnr': 10297, 'ceemea': 6282, 'maritimes': 20306, 'kungflufighting': 18646, 'qutting': 26381, 'suncontract': 31671, 'custumers': 8819, 'eth': 11751, 'nadu': 21934, 'jacoby': 17587, 'itstime': 17538, 'socialdistancingdiaries': 30204, 'greet': 14637, 'istayhome': 17498, 'breeze': 5235, 'powerofpositivity': 25341, 'burndiya': 5560, 'specialised': 30516, 'koel': 18532, 'aajeevika': 1568, 'palamu': 23939, 'haircut': 14945, 'whm': 35906, 'cocoapost': 7137, 'minworth': 21143, 'tbh': 32312, 'exempts': 11967, 'mccarthy': 20574, 'trault': 33521, 'fining': 12749, 'dishonest': 10084, 'eldery': 11163, 'floridalockdown': 12975, 'dataprivacy': 9051, 'digitalpolicy': 9888, 'fastestgrowing': 12378, 'kozak': 18576, 'eastvan': 10906, 'foodblog': 13086, 'vancouverbc': 34777, 'yvreats': 36705, 'vancity': 34775, 'yvrfoodies': 36706, 'vancouverfood': 34779, 'vancouverfoodie': 34780, 'vancouverfoodies': 34781, 'burnaby': 5559, 'newwest': 22393, 'surreybc': 31882, 'richmondbc': 27733, 'canuck': 5932, 'depended': 9525, 'cundy': 8723, 'joblessclaims': 17809, '0337210852': 61, 'sholanke': 29484, 'goriola': 14429, 'sodiq': 30258, 'sofi': 30261, 'prescient': 25505, 'abetterpharmacy': 1615, 'fastmarkets': 12381, 'risi': 27814, 'viewpoint': 35029, 'qantas': 26176, 'returnees': 27604, 'day1': 9098, 'disconcerting': 10028, 'lastword': 18865, '261': 645, 'phantomflights': 24654, 'playfair': 24943, 'stewart': 31139, 'grandjunction': 14541, 'santafe': 28491, 'nmpol': 22567, 'nmleg': 22566, 'nmsen': 22568, 'farmington': 12337, 'sanjuanbasin': 28481, 'durango': 10774, 'permian': 24520, 'permianbasin': 24521, 'curriculum': 8767, 'zerohedge': 36764, 'favorable': 12410, 'reignite': 27055, 'oilpaintings': 23225, 'cecilia': 6279, 'tacoli': 32126, 'windowless': 36028, 'fad': 12212, 'guesting': 14811, 'birdsall': 4606, 'localnews': 19493, 'sdg2': 28871, 'farmtofork': 12344, 'iamwanda': 16294, 'biden2020': 4491, 'cfi': 6377, 'acrylonitrile': 1815, 'butadiene': 5626, 'nhsvolunteerresponder': 22445, 'nhsvolunteers': 22446, 'cryptos': 8653, 'litecoin': 19373, 'foodcrisis': 13094, 'stillnotolietpaper': 31162, 'w7alvtqwij': 35258, 'familydocs': 12286, '1hr': 435, 'wilful': 35993, 'throwaway': 32926, 'pratt': 25392, 'rachael': 26422, 'indianapolis': 16791, 'customorders': 8814, 'naptown': 22011, 'linkinbio': 19336, 'wakanda': 35296, 'manenoz': 20190, 'tembeakenya': 32462, 'painter': 23917, 'tukwila': 33827, 'youreself': 36647, 'dishonesty': 10085, 'brandstrategy': 5170, 'brandpostitioning': 5168, 'consumervalues': 7750, 'consumerdemands': 7721, 'cdclied': 6259, 'applestock': 2967, '1alvxcdray': 424, 'meticulous': 20900, 'thumb': 32941, 'controled': 7846, 'monumental': 21445, 't1d': 32105, 'cadillac': 5733, 'relieffordiabetics': 27127, 'lillysaveslives': 19297, 'hosp': 15949, 'mediavataarindia': 20675, 'nopurellanywhere': 22678, 'thisadvicewasdumb': 32845, 'latics': 18889, 'clemt': 6968, 'tuskys': 33880, 'sendy': 29105, 'sens': 29117, 'chilltheeffout': 6653, 'strathalbyn': 31373, 'evaporation': 11826, 'vonderleyen': 35201, 'futureofeurope': 13697, 'natl': 22074, 'staged': 30811, 'kisi': 18426, 'milne': 21068, 'jau': 17661, 'mujhe': 21694, 'kaha': 18031, 'milega': 21039, 'tkt': 33079, 'potts': 25301, 'venting': 34917, 'flaring': 12879, 'cutmethane': 8826, 'hinting': 15659, 'indextrading': 16775, 'tradingemas': 33428, 'tradingforliving': 33429, 'tradingsignal': 33430, 'traderlife': 33420, 'tradingblog': 33427, 'dontlooseyourshirt': 10432, 'janta': 17645, 'mundane': 21749, 'wracking': 36329, 'nikkei': 22507, 'carnival': 6057, 'barker': 3943, 'srz': 30764, 'beerstogo': 4210, 'artbarsc': 3172, 'murica': 21774, 'inflight': 16906, 'hirings': 15670, 'kingsoopers': 18405, 'fredmeyer': 13413, 'whenwe': 35828, 'amply': 2633, 'pillaged': 24799, 'bsvirus': 5420, '1899': 352, 'digitalpayments': 9886, 'paymentportal': 24303, 'norbert': 22681, 'highfalutin': 15600, 'gitwitter': 14155, 'mainstreet': 20059, 'emailmarketing': 11252, 'deg': 9347, 'pjvogt': 24878, 'mario': 20304, 'blackops3': 4670, 'bo3zombies': 4833, 'steamworkshop': 31066, '16am': 317, 'woofer': 36196, 'adayinthelifeofselfisolation': 1868, 'yannathan': 36514, 'workerhealth': 36221, 'stepupcarolinas': 31107, 'nomi': 22629, 'mtl': 21666, 'britishcolumbia': 5322, 'justintrudeau': 17989, 'kwikspar': 18681, 'kempton': 18234, 'akin': 2278, 'leftwing': 19043, 'girl45': 14148, 'fleabag': 12916, 'tix': 33073, '948373rd': 1502, 'feck': 12482, 'toucj': 33328, 'superdrug': 31720, 'upwards': 34574, 'bearmarket': 4130, 'lmfao': 19457, 'ochanja': 23110, '4cayurveda': 1010, 'goodlife': 14384, 'goodhealth': 14380, 'cancerayurveda': 5882, 'kidneyrevival': 18350, 'mers': 20865, 'healthnews': 15340, 'hypertension': 16266, 'excusing': 11957, 'confinementdiary': 7574, 'confinementg': 7575, 'ral': 26508, 'comicbook': 7312, 'mafia': 19972, 'dustbunnymafia': 10785, 'bookie': 4948, '573': 1114, '751': 1311, 'prohibiting': 25771, 'rectum': 26876, 'remission': 27174, 'jimmykimmel': 17781, 'forreal': 13270, 'forcein': 13200, 'culpable': 8706, 'doktari': 10359, 'likoni': 19293, 'juja': 17940, 'narok': 22019, 'uhunye': 34029, 'roussin': 28042, 'discourages': 10044, 'unbranded': 34133, 'plugin': 25007, 'maccabi': 19912, 'bnei': 4827, 'brak': 5145, 'bennett': 4329, 'toured': 33337, 'anime': 2760, 'kentuckyfriedchicken': 18251, 'friedchicken': 13490, 'capitulation': 5960, 'starfishclub': 30872, 'bullwhip': 5510, '1x': 454, 'ndis': 22185, 'shopee': 29499, 'zalora': 36720, 'ahmedabad': 2201, 'kk': 18458, 'nirala': 22528, 'unleashes': 34377, 'chmura': 6707, '7bn': 1347, 'afdb': 2038, 'papaya': 24062, 'tang': 32218, 'yuan': 36687, 'helix': 15440, 'opco': 23420, 'myheritage': 21851, 'pathway': 24241, 'microscholarship': 20976, 'nadeem': 21931, 'turabi': 33853, 'oringinally': 23562, 'marrickville': 20370, 'nswpol': 22886, 'healing': 15313, 'logical': 19583, 'korona': 18565, 'movevan': 21597, 'usnscomfort': 34661, 'blight': 4725, 'gcw': 13889, 'permitting': 24526, 'crimesagainsthumanity': 8520, 'inhistogether': 16967, 'argue': 3086, 'rugby': 28119, 'wresting': 36342, 'boro': 5009, 'synced': 32079, 'boding': 4861, 'rapprochement': 26602, 'retreating': 27591, 'summa': 31650, 'biotches': 4596, 'torontostrong': 33282, 'traveltips': 33543, 'healthawareness': 15319, 'travelguide': 33535, 'tourguide': 33338, 'salar': 28349, 'millat': 21054, 'akbaruddin': 2274, 'owaisi': 23811, 'rapping': 26600, 'venom': 34908, 'malevolent': 20132, 'spinning': 30585, 'fabriziocorona': 12167, 'letshavefun': 19142, 'shareit': 29324, 'eine': 11133, 'wahre': 35278, 'coronageschichte': 8041, 'wenn': 35689, 'supermarktkasse': 31758, 'ohne': 23203, 'vorwarnung': 35207, 'taschent': 32263, 'cherpaket': 6596, 'weg': 35628, 'genommen': 13963, 'wird': 36070, 'deine': 9364, 'schokoladen': 28746, 'ostereiert': 23594, 'aber': 1613, 'halbiert': 14967, 'werden': 35694, 'vorgang': 35205, 'coronadi': 8032, 'feelthejr': 12526, 'litigating': 19383, 'faizan': 12248, 'yusuf': 36700, 'danube': 9005, 'salaam': 28345, 'jedhha': 17689, 'famliy': 12291, 'sepreding': 29154, 'steadily': 31056, 'microscopy': 20978, 'zafrul': 36714, 'muhyiddin': 21693, 'judgment': 17924, 'backdoor': 3723, 'nearer': 22196, 'qtr': 26205, 'preppertalk': 25499, 'shtf': 29623, 'lieing': 19239, 'tailored': 32146, 'unfathomable': 34268, 'appt': 3010, 'pt1': 25998, 'grocerers': 14691, 'cunning': 8724, 'degradation': 9356, 'financ': 12697, 'plethora': 24985, 'bucking': 5447, 'santions': 28495, 'hota': 15975, 'halat': 14966, 'baray': 3918, 'letay': 19127, '266': 651, '300each': 744, 'conservativeparty': 7653, 'permeated': 24519, 'lyingnewsom': 19875, 'mna': 21246, 'godown': 14314, 'toiletpaperdoor': 33156, 'mktg131': 21230, 'teksi': 32422, 'intern': 17199, 'dealmakers': 9162, 'restructurings': 27495, 'doctorsarehumans': 10317, 'enhances': 11472, 'kagan': 18029, 'cornish': 7987, '48yr': 999, '47yr': 988, 'carabinieri': 5980, 'custody': 8794, 'prio': 25638, 'seattlecoronavirus': 28921, 'plum': 25008, 'innit': 17003, 'devinjohnson445': 9723, 'optimistically': 23489, 'pocketed': 25061, 'copmpany': 7942, 'ucsf': 34002, 'scripps': 28841, 'translational': 33492, 'mhealth': 20933, 'crowdsource': 8605, 'biostatistics': 4593, 'amplified': 2629, 'bako': 3824, 'lalong': 18773, 'relentless': 27115, 'farhan': 12319, 'yusoff': 36699, 'gala': 13753, 'scrabbling': 28813, 'amending': 2571, 'sizable': 29851, 'repo': 27271, 'cheerio': 6555, 'uneducated': 34248, 'bcus': 4103, 'hughs': 16112, 'nosociallife': 22745, 'careerchange': 6014, 'rosslare': 28015, 'tillman': 33000, 'minimising': 21110, 'thebestrun': 32665, 'o2': 23009, 'sbwl': 28659, 'wyatt': 36428, 'widespreadpanic': 35962, 'vta': 35233, 'mortem': 21515, 'disinflation': 10097, 'sickle': 29672, 'consumeraffairs': 7709, 'registering': 27027, 'skolars': 29904, 'rl': 27851, 'hw': 16214, 'oilments': 23223, 'swanson': 31968, 'hoquiam': 15924, 'lockdownusa': 19555, 'graysharbor': 14594, 'scomo': 28786, 'msia': 21645, 'econom': 10989, 'islamabad': 17442, 'bannu': 3911, '2ndamendment': 725, 'gunstores': 14859, 'praytogether': 25410, 'rakmall': 26506, 'qanda': 26174, 'sleepy': 29960, 'uncomfortable': 34150, 'asteroid': 3329, 'nuys': 22953, 'vibration': 34984, 'vitc': 35148, 'goodvibes': 14399, 'alexas': 2354, 'fotos': 13316, 'pixabay': 24870, 'venerable': 34899, 'hakim': 14961, 'coronazombies': 8137, 'coronazombiesmovie': 8138, 'cashlesspayments': 6134, 'consumertrend': 7748, 'micromarkets': 20971, 'royale': 28057, 'checkstand': 6547, 'wantin': 35372, 'myluck': 21859, 'missiouri': 21187, 'divorcing': 10264, 'youhadonejob1': 36633, 'witch': 36098, 'lame': 18777, 'redeemer': 26893, 'brew': 5254, 'biofuels': 4578, 'unpacks': 34405, '3hours': 875, '220ml': 562, 'unscented': 34451, 'crosshairs': 8591, 'santapola': 28493, 'stopcovid19': 31271, 'activesports': 1832, 'trekking': 33567, 'sfa': 29240, 'consequen': 7647, 'indulge': 16835, 'modernbazaar': 21306, 'inhouseproducts': 16970, 'premiumbrands': 25482, 'bringbackbritishbrains': 5305, 'renaissance': 27196, 'threefold': 32901, 'penalising': 24409, 'readability': 26687, 'leper': 19110, 'policestate': 25109, 'macroeconomics': 19933, 'meny': 20825, 'petstore': 24626, 'petsupplies': 24627, 'tack': 32119, 'fortifying': 13285, 'impersonation': 16596, 'rusia': 28171, 'corornamadness': 8145, 'firsthand': 12797, 'crunched': 8632, 'coincided': 7180, 'billionsatplay': 4544, 'cribdelacurse': 8514, 'besafeeveryone': 4372, 'roland': 27954, 'kape': 18085, 'nian': 22453, 'henryqc': 15515, 'honouring': 15891, 'cuny': 8730, 'multipurpose': 21730, 'discouragement': 10043, 'retailinsider': 27538, 'northerner': 22714, 'southerner': 30429, 'chavs': 6516, 'sweetsandsnacksexpo': 32000, 'bandcamp': 3865, 'anyanswers': 2864, 'heromasks': 15553, 'flaming': 12870, 'torch': 33265, 'spiilttle': 30574, '700m': 1271, 'healthwise': 15346, 'crouching': 8598, 'duckers': 10717, 'dissipate': 10175, 'remittance': 27175, 'businessowner': 5607, 'parknshop': 24139, 'facto': 12204, 'nourishing': 22821, 'consumerattitudes': 7711, 'assumed': 3317, 'aguh': 2184, 'pah': 23900, 'wuhanvirusmadeinchina': 36403, 'wuhanvirusismadeinchina': 36402, 'unsc': 34449, 'doorbuster': 10467, 'suffocate': 31609, 'zakat': 36718, 'invisibleenemy': 17317, 'decal': 9208, 'boiling': 4887, 'ussenators': 34669, 'whine': 35862, 'hijack': 15622, 'rift': 27760, 'hl': 15698, 'whethe': 35848, '1200shs': 210, '4500shs': 962, 'shs': 29619, 'kayiso': 18151, '3500shs': 812, 'nbsamasengejje': 22145, 'clogged': 7017, 'insur': 17128, 'retroactive': 27597, 'muppet': 21762, 'espousing': 11686, 'nothin': 22777, 'idtwitter': 16393, 'fareshare': 12316, '0131': 26, '554': 1099, '3900': 857, 'hostel': 15966, 'exd': 11958, 'postage': 25259, 'lalamove': 18767, '10bottles': 161, 'kkm': 18460, 'malaysiabebascovid19': 20124, 'sanitizerkl': 28469, 'kualalumpur': 18631, 'reynders': 27686, 'dirittideiviaggiatori': 9969, 'stairclimbers': 30824, 'manualhandling': 20239, 'filmmaker': 12676, 'hawley': 15252, 'wallenpaupack': 35326, 'raggedman': 26459, 'n40k': 21902, 'bribe': 5269, 'shamefully': 29294, 'gs1connect19': 14772, 'startuplab19': 30887, 'locai': 19481, 'quarantinecooking': 26256, 'fremont': 13451, 'ong': 23338, 'tribunecovid19watch': 33591, 'gunsandammo': 14856, 'racketeerinent': 26435, '8ish': 1450, 'palladium': 23946, 'lockdownlife': 19533, 'petroleumprice': 24616, 'tussle': 33881, 'gocoronago': 14305, 'mustwearmask': 21809, 'mustweargloves': 21808, 'stayalive': 30941, 'ramdasatwale': 26531, 'supportlockdown': 31819, 'fatehgunj': 12391, 'tenancy': 32480, 'accuser': 1765, 'whatif': 35788, '633': 1205, 'verifiable': 34930, 'tricol': 33600, 'propagating': 25824, 'patchwork': 24225, 'bigthreeconsulting': 4518, 'demoted': 9480, 'speads': 30505, 'finalizing': 12694, 'kaltenboeck': 18053, 'manuscript': 20250, 'coi': 7172, 'klew': 18472, 'eurotrucksimulator': 11797, 'americantrucksimulator': 2586, 'dlc': 10286, 'goldfill': 14345, 'sterlingsilverjewelry': 31122, 'sterlingsilver': 31121, 'britches': 5319, 'chaser': 6502, 'bearing': 4128, 'envisioned': 11564, 'sarge': 28533, 'mimaskchallenge': 21076, 'incumbent': 16759, 'squabble': 30732, 'aha': 2186, 'liked': 19285, 'plymouth': 25028, 'pyjama': 26161, 'ausgangssperre': 3482, 'overarching': 23715, '1585': 290, 'cuss': 8787, 'carney': 6055, 'yallnasty': 36505, 'savethemasksforhealthcareworkers': 28614, 'glovesdontprotectyouiflickyourfingers': 14251, 'apptopia': 3011, 'exabel': 11897, 'eatlikekings': 10922, 'hawtdawgs': 15253, 'bloombergintelligence': 4778, 'goshh': 14436, 'worldd': 36261, 'unnamed': 34393, 'angered': 2736, 'virion': 35089, 'netanyahu': 22292, 'stanfield': 30856, 'slathering': 29942, 'bbalert': 4070, 'trumpsvirus': 33734, 'fortnightly': 13290, '30min': 762, 'admiring': 1943, 'gorgeous': 14427, 'stresseating': 31402, 'kimkardashianisoverparty': 18385, 'thankyoupresidenttrump': 32630, 'kpop': 18585, 'vmin': 35165, 'ateez': 3355, 'nct': 22172, 'bcoz': 4099, 'onlineretailing': 23367, 'dca': 9134, 'prescribers': 25508, 'wrongfully': 36361, 'referenced': 26954, 'thy': 32956, 'jobsnewsuk': 17815, 'quirky': 26364, 'awake': 3613, 'racked': 26434, 'thankyoubakedpotato': 32620, 'feednhs': 12517, 'landon': 18812, 'tropical': 33646, 'meedha': 20719, 'vunna': 35249, 'prajala': 25381, 'pettakandi': 24628, 'reporrts': 27274, 'alters': 2495, 'dhroa': 9764, 'competence': 7432, 'rial': 27708, 'jamaican': 17617, 'survivalofthefittest': 31897, 'facetouch': 12193, 'soiled': 30280, 'moshon': 21527, 'complying': 7475, 'newswire': 22386, 'metalminer': 20887, 'metalprices': 20888, 'holbycity': 15762, 'northshields': 22724, 'impressionz': 16639, 'shii': 29429, 'hbl': 15274, 'moonshine': 21458, 'franklin': 13378, 'ceba': 6276, 'lpm': 19762, 'bff': 4439, 'betrayal': 4406, 'defendourdemocracy': 9304, 'vrheadset': 35229, 'virtualreality': 35099, 'achieving': 1783, 'calendar': 5771, 'experiential': 12028, 'sanny': 28486, 'magpie': 20008, 'pozzie': 25350, 'magpied': 20009, 'oilseed': 23234, 'togetherwecan': 33133, 'togetherwearestronger': 33132, 'maxine': 20531, 'hoffman': 15747, 'scanned': 28687, 'homa': 15799, 'zarghamee': 36730, '86thetp': 1423, 'criminalizes': 8524, 'stayathomesa': 30948, 'africansarenotlabrats': 2083, 'foodboxes': 13089, 'ob': 23030, 'swiped': 32025, 'southport': 30440, 'pabankersproud': 23859, 'elective': 11173, '35yos': 826, 'nocontact': 22588, 'rycroft': 28205, '02': 42, 'paymentbreaks': 24302, 'brc': 5197, 'fruitandvegetabkes': 13542, 'ukfoodsecurity': 34049, 'challenged': 6418, 'centeredness': 6321, 'willful': 36000, 'myopia': 21863, 'eater': 10914, 'mealplan': 20625, '10baje': 159, 'm5qxkiqych': 19896, 'sanctifier': 28421, 'purgatory': 26103, 'nohoarding': 22610, 'pmo': 25042, 'narendermodi': 22015, 'tnluk': 33098, 'april2020': 3018, '290k': 679, '60k': 1181, 'irrelevantmusik': 17404, 'tattooartist': 32285, 'inked': 16992, 'sinner': 29812, 'tattooed': 32286, 'xxl': 36483, 'wshh': 36367, 'worldstar': 36278, 'techn9ne': 32380, 'formulate': 13265, 'tues': 33810, 'nanosecond': 22001, 'polenta': 25104, 'amis': 2601, 'canalys': 5864, 'wearablebands': 35538, 'smartpersonalaudiodevices': 30041, 'smartspeakers': 30045, 'criticising': 8551, 'unkindly': 34364, 'pitching': 24857, 'cham': 6421, 'whippin': 35868, 'booker': 4947, 'lapse': 18834, 'osyth': 23600, 'clacton': 6863, 'sullivan': 31638, 'flocked': 12961, 'dodson': 10334, 's2': 28217, 'damm': 8961, 'dipshits': 9953, 'fixdebt': 12844, '245': 609, '849': 1402, '047': 73, 'kemi': 18232, 'olugbode': 23280, 'soapbox': 30169, 'shrunk': 29618, 'ecommerce2020': 10976, 'autosales': 3551, 'neverlikebefore': 22326, 'symposium': 32073, '580': 1118, 'unincorporated': 34315, 'toiletpapercalculator': 33150, 'partenering': 24161, 'rooftop': 27992, 'gleadless': 14203, 'gleadlessvalley': 14204, 'loosening': 19659, 'esto': 11732, 'ante': 2811, 'abrir': 1657, 'viva': 35150, 'tentative': 32502, 'discernment': 10015, 'trotter': 33647, 'bondurant': 4922, 'forcemajeure': 13201, 'marketslump': 20342, 'socialdistancingworks': 30209, 'zoa': 36803, 'malign': 20136, 'mohyelzdin': 21339, 'naish': 21956, 'backbritishfarming': 3722, 'dissapointment': 10168, 'bruv': 5409, 'fishtanktreatment': 12817, 'hydroxychoronquine': 16237, 'bannerhealth': 3908, 'wordsmatter': 36210, 'satellite': 28554, 'manmade': 20224, 'komonews': 18548, 'diffusion': 9850, 'loneliness': 19615, 'hsbc': 16071, 'ozarks': 23842, 'blethering': 4723, 'cocksprockets': 7131, 'surest': 31854, 'wasnt': 35449, 'musk': 21797, 'r86': 26405, 'reebok': 26941, 'globalist': 14230, 'justtheflu': 18003, 'shilling': 29435, 'poin': 25078, '884': 1436, 'hbrfanzone': 15278, 'feedthepoor': 12520, 'kotloyalsmusic': 18574, 'vanre': 34801, 'canre': 5920, 'col': 7190, 'cacchio': 5724, 'tanker': 32225, 'maritime': 20305, 'sundries': 31688, 'redneck': 26919, 'squared': 30739, 'readynutrition': 26702, 'thecoronaviruspreparednesshandbook': 32670, 'massy': 20459, 'packagedwater': 23871, 'f1': 12151, 'itu': 17541, 'lookingat': 19641, 'koch': 18529, 'foodmaxx': 13124, 'prescott': 25506, 'admitted': 1948, 'reliefremedies': 27128, 'steering': 31080, 'foodallergy': 13078, 'allergictraveler': 2413, 'chefcards': 6563, 'helpyourneighbours': 15492, 'hiv': 15692, 'youcantcatchavirus': 36628, 'cellpoisoning': 6307, 'copays': 7934, 'upgradefm': 34528, 'literary': 19378, 'allusion': 2442, 'almo': 2451, 'glam': 14187, 'hmrpca': 15713, 'eighteen': 11129, 'madeinchina': 19951, 'lidhell': 19233, 'panickbuyers': 24033, 'raped': 26595, 'footpath': 13178, 'idec': 16360, 'cystic': 8879, 'fibrosis': 12611, 'njtransit': 22552, 'projectkavach': 25780, 'fingerprint': 12745, 'seamless': 28893, 'intro': 17262, 'ottoman': 23622, 'synonymous': 32089, 'breeder': 5233, 'antinatalism': 2838, 'overpopulation': 23762, 'deceptively': 9223, 'overestimating': 23741, 'westhoff': 35724, 'hotelaura': 15981, 'drivesafe': 10633, 'toiling': 33188, 'gripe': 14677, 'sew': 29224, 'xxmi': 36485, 'bloggs': 4763, 'disciplined': 10022, '30days': 758, 'sustainabilitystartswithyou': 31934, 'bourban': 5067, 'sheepish': 29369, 'dispense': 10133, 'zhenrobotics': 36774, 'tramp': 33454, 'apocalypsepaper': 2914, 'toiletpapermemes': 33167, 'vbid': 34850, 'highvaluecare': 15614, 'lowvaluecare': 19754, 'fostering': 13312, 'moong': 21455, 'urad': 34576, 'tur': 33852, 'chana': 6428, 'masoor': 20443, 'matar': 20476, 'worm': 36287, 'antioch': 2839, 'isolationselfegodriven': 17476, 'citydia': 6835, 'limbaugh': 19300, 'scarborough': 28692, 'morneau': 21497, 'aec': 2020, '682': 1235, '236': 593, '7601': 1319, 'environmentally': 11561, 'jc': 17675, 'sustainabilitytips': 31935, 'dailyoh': 8924, 'toppled': 33256, 'digging': 9856, 'graveyard': 14588, 'andinavika': 2701, 'ye': 36533, 'neverending': 22324, 'poeple': 25072, 'isolation2020': 17466, 'scrape': 28819, 'windshield': 36030, 'youself': 36663, 'fid': 12615, 'pluto': 25025, 'behold': 4254, 'midwesttogether': 21008, 'felony': 12537, 'evenly': 11832, 'facemaskselfie': 12183, 'reworked': 27681, 'koko': 18542, 'lydia': 19870, 'forson': 13274, 'td': 32326, 'lastmile': 18861, 'wvgov': 36409, 'bentley': 4334, 'mulsanne': 21711, 'georgina': 13996, 'competitionlaw': 7439, 'cuties': 8824, 'kendallkay': 18238, 'camdendavid': 5826, 'hamper': 15011, 'flimsy': 12943, 'grocerystorescene': 14715, 'acquitted': 1810, 'detainee': 9669, 'billy': 4545, 'ftlion': 13561, 'hotcake': 15977, '899': 1444, '1049': 150, '19australia': 411, 'cosmeticvalley': 8195, '120ml': 213, '00francs': 12, 'juru': 17968, 'jesse': 17731, 'mellower': 20768, 'excruciating': 11953, 'stewardship': 31138, 'weedsmokers': 35613, 'stonerfam': 31250, 'fullsend': 13630, 'nelkboys': 22262, 'listentoyourheart': 19369, 'genconf': 13928, 'generalconference': 13935, 'covenant': 8309, 'covid2019': 8334, 'fakepandemic': 12259, 'jinks': 17785, 'milt': 21070, 'adapted': 1863, 'wee': 35610, 'krankie': 18594, 'youthvillageke': 36668, 'epc': 11580, 'oilandgasindustry': 23212, 'oilandgascompanies': 23211, 'northamerica': 22705, 'mnths': 21255, 'ashish': 3229, 'agarwal': 2114, 'onlineassistance': 23348, 'nrf': 22866, 'selfishnessvirus': 29034, 'outpaces': 23680, 'bonifacio': 4931, 'repatriation': 27239, 'navi': 22110, 'vashi': 34835, 'lockdowncomforteatinganddrinking': 19515, 'shamed': 29292, 'flagging': 12864, 'adaptable': 1861, 'restau': 27462, 'deliberation': 9396, 'crochet': 8567, 'rowing': 28053, 'sheesh': 29372, 'crm': 8560, 'milking': 21049, 'disinvestment': 10101, 'neocolonization': 22269, 'toiletpaperhunt': 33163, 'bonkeroverbogroll': 4933, 'selfisotation': 29044, 'washyourhan': 35444, 'mrp': 21634, 'openly': 23436, 'rnibcovid19': 27873, 'abc11': 1599, 'tsnpdcl': 33781, 'formal': 13252, 'formality': 13253, 'conferenceboard': 7558, 'eurusd': 11799, 'curate': 8741, 'tovolo': 33353, 'nutbutter': 22938, 'spatula': 30499, 'kitchengadgets': 18438, 'kitchenware': 18440, 'kitchentools': 18439, 'kremlin': 18597, 'rollback': 27960, 'narrow': 22024, '52rtgs': 1085, 'effat': 11079, 'rope': 28001, 'combining': 7285, 'crumble': 8629, 'shopindependent': 29510, 'aanndd': 1573, 'rebuy': 26795, 'granny': 14550, 'lampen': 18787, 'sandler': 28433, 'pinker': 24825, 'hurst': 16192, 'usb': 34618, 'woul': 36314, 'cnbcpathforward': 7095, 'arum': 3198, 'bbcboxing': 4074, 'stopthehoard': 31301, 'eggprices': 11107, 'goggle': 14325, '18569560148': 347, 'uas': 33983, 'agncy': 2155, 'tkng': 33078, 'advntge': 2016, 'pillock': 24805, 'joyful': 17898, 'britishness': 5324, 'feedonomics': 12518, 'derbyshire': 9571, 'turnaround': 33870, 'nursewriter': 22932, 'freelancewriter': 13429, 'healthcarecontent': 15323, 'coating': 7117, 'trickier': 33594, 'blanching': 4686, 'wilson': 36013, 'shinning': 29442, 'chilly': 6654, 'lizard': 19431, 'covdi19': 8308, 'dieing': 9824, 'consumerprices': 7737, 'douglasporter': 10507, 'bankofcanada': 3898, 'shkreli': 29470, 'kantar': 18084, 'goldersgreen': 14344, 'hampsteadgardensuburb': 15015, 'nw11': 22959, 'trickling': 33597, '40lbs': 923, '4lbs': 1020, 'grit': 14682, '10lbs': 167, 'punching': 26068, 'gossip': 14438, 'dpd': 10559, 'hermes': 15545, 'wakethebride': 35301, 'swooping': 32040, 'spreadingthanks': 30682, 'todayin60': 33113, 'edpark': 11054, 'menwhile': 20824, 'righttorepair': 27771, 'nbnews': 22144, 'jananmeat': 17631, 'mindedly': 21085, 'detriment': 9692, 'replies0': 27269, 'retweets0': 27612, 'newyorktimes': 22399, 'orbitform': 23507, 'arsenalofhealth': 3167, '13m': 253, 'arco': 3062, 'ny14': 22967, 'ditmars': 10231, 'nbcnews': 22138, 'mikeroman': 21030, 'boycott3m': 5093, 'peoplemagazine': 24460, 'march2020': 20270, '1637': 308, 'tulipmania': 33829, 'tulip': 33828, '1797': 336, 'publicis': 26019, 'sapient': 28512, 'differing': 9846, '921': 1481, '1128': 186, 'fishandchips': 12809, 'ahab': 2187, 'yer': 36570, 'panicstations': 24046, 'theothershop': 32736, 'tamworthnsw': 32214, 'supportwhereyoucan': 31825, 'plsstophoarding': 25001, 'newblackmedia': 22334, 'redirecting': 26910, 'fallacy': 12263, 'fusilli': 13687, 'governmentstockpile': 14478, 'centralafricanrepublic': 6326, 'improves': 16649, 'fitter': 12830, 'leaner': 18991, 'bulkbuyers': 5493, 'forsyth': 13275, 'neill': 22258, 'dji': 10277, 'joc': 17818, 'selfisolationhelp': 29043, 'joyfightsfear': 17897, 'presidentialaddress': 25531, 'caprice': 5965, 'bourret': 5071, 'wifi': 35970, '7m': 1352, 'avoidable': 3595, 'thorndon': 32875, 'walmartorange': 35338, 'walmartsamess': 35340, 'orangeca': 23504, 'prohibit': 25769, 'attaching': 3397, 'nationallabs': 22064, 'sciencematters': 28772, 'akpeteshie': 2285, 'takoradi': 32181, 'epdt': 11581, 'consumerelectronics': 7724, 'futuresourceconsulting': 13702, 'dur': 10770, 'ebayseller': 10936, 'rti': 28087, 'victimized': 34994, 'daffodil': 8904, 'blooming': 4781, 'adventurous': 1993, 'fabatphoenix': 12160, 'phoenixperennials': 24702, 'narcissus': 22013, 'springbulbs': 30700, 'flowerbulbs': 12991, 'similac': 29748, 'lindsey': 19318, 'repeal': 27241, 'tutoring': 33888, 'proofreading': 25820, 'tucoopourcommunity': 33804, 'valenciacounty': 34749, 'clampdown': 6872, 'lowstock': 19752, 'goodnessgracious': 14390, 'langone': 18820, 'suman': 31643, 'xenophobia': 36453, 'enormity': 11486, 'dawning': 9093, 'abandon': 1587, 'influencermarketing': 16909, 'bh9vta8xnv': 4446, 'academy': 1698, 'oic': 23207, 'modiji': 21318, 'sensitizer': 29132, 'pf': 24636, 'innumerable': 17017, 'kahahahh': 18032, 'jeffreysprecher': 17700, 'khalili': 18311, 'cairo': 5750, 'trinket': 33617, 'oj': 23237, 'freezable': 13444, 'sneered': 30121, 'heeled': 15413, 'freeman': 13432, 'narrates': 22021, 'thbaks': 32652, 'peterson': 24598, 'leno': 19100, 'hereditarycancer': 15537, 'gcchat': 13886, 'cruiser': 8624, 'scaled': 28663, 'anarchist': 2680, 'lemming': 19086, 'handbook': 15030, 'reallys': 26740, 'coranavirus': 7951, 'fistfight': 12823, 'selena': 29016, 'sowing': 30452, 'melissa': 20765, 'katrincic': 18130, 'u45rweajus': 33976, 'impulsively': 16657, '731': 1300, 'clutter': 7073, 'chibizhub': 6619, 'deliciously': 9403, 'seafoodpasta': 28883, 'loveseafood': 19731, '2go2checkout': 707, 'doesnt': 10337, 'twit': 33924, 'merseyside': 20866, 'saveourcarers': 28607, 'gk': 14180, 'inactivates': 16675, '93002759': 1492, 'mfa': 20920, 'documentinglife': 10325, 'greencore': 14623, 'broadly': 5344, 'tutor': 33886, 'tutee': 33884, 'd2rohkh5o4': 8887, 'browser': 5386, 'scarier': 28702, 'privatizedhealthcare': 25672, 'horray': 15935, 'submerge': 31521, '503': 1048, '378': 846, '8442': 1400, 'virologically': 35090, 'esteelauder': 11724, 'hindering': 15645, 'recos': 26855, 'eventprofs': 11836, 'beyondcoronavirus': 4432, 'countrywide': 8279, 'undetected': 34232, 'kushner': 18656, 'intimated': 17247, 'slew': 29966, 'privateequity': 25666, 'consolidate': 7673, 'transform': 33475, 'ecomm': 10974, 'apprehensive': 2990, 'sourdough': 30410, 'avocado': 3592, 'guwahati': 14875, 'northeastindia': 22712, 'harr': 15171, 'trampled': 33456, 'outdated': 23646, 'constitution': 7688, 'debauchery': 9186, 'vintagetoiletpaper': 35066, '1987': 398, 'selli': 29063, 'repaired': 27238, 'retrieved': 27595, 'realises': 26725, 'itch': 17511, 'beinformed': 4258, 'golfbiz': 14355, 'sportsbiz': 30650, 'communicated': 7381, 'fumigation': 13635, 'sioux': 29815, 'pbchealth': 24319, 'thefed': 32683, 'sportsman': 30654, 'gnocchi': 14281, 'julie': 17945, 'ziah': 36775, 'tinandbones': 33028, 'chanting': 6455, 'superfood': 31725, 'mybooster': 21839, 'antioxidant': 2840, 'alkalinewater': 2393, 'shopkeeprs': 29513, 'byo': 5697, 'responce': 27436, 'nintendoswitch': 22522, 'trimming': 33613, 'ketodiet': 18279, 'thrifty': 32908, 'effing': 11091, 'gazprom': 13877, 'cherish': 6593, 'slc': 29951, 'dismantled': 10108, 'sonia': 30356, 'angell': 2731, 'onlinestores': 23375, 'retailtransformation': 27555, 'socialmedia2020': 30232, 'marketingtrends2020': 20333, 'asiapacific': 3243, '200m': 472, 'stirred': 31187, 'disguise': 10076, 'lnpfail': 19465, 'forcefield': 13198, 'govuk': 14491, 'outsider': 23691, 'commanded': 7323, 'bihar': 4521, 'futureofag': 13696, 'customerengagement': 8800, 'narendrea': 22018, 'indiabattlescoronavirus': 16777, 'emini': 11301, 'flare': 12877, 'bankofamerica': 3897, 'jesuit': 17737, 'subcontracted': 31511, 'stophooarding': 31279, 'holyhumor': 15795, 'ptsdmemes': 26008, 'recoup': 26856, 'squarefunds': 30740, 'brandtrust': 5172, 'otagoharbour': 23602, 'scrubbed': 28849, 'simptoms': 29767, 'entubation': 11551, 'spaffing': 30466, 'divisive': 10261, 'tomahawk': 33210, 'tomahawkribeye': 33211, 'grilledmeat': 14666, 'grilling': 14667, 'sousvide': 30414, 'sousvidecooking': 30415, 'ketofood': 18280, 'electrolyte': 11186, 'bulawayo': 5487, 'amref': 2637, 'psychtwitter': 25995, 'meded': 20666, 'captwitter': 5977, 'election2020': 11170, 'electionfraud': 11171, 'viewfrommywindow': 35027, 'mypandemicsurvivalplan': 21866, 'mcfc': 20587, 'unwrap': 34508, 'peachie': 24347, 'dayofcaring': 9122, 'hol': 15760, 'sbl': 28651, 'sblhomoeopathy': 28653, 'sblglobal': 28652, 'mythbuster': 21886, 'indiafightscovid19': 16785, 'amitabh': 2603, 'bachchan': 3715, 'unicef': 34298, 'stupidass': 31487, 'ignoranthumans': 16431, 'hesahero': 15562, 'rolemodel': 27956, 'dreadful': 10601, 'coventry': 8312, 'rentpayment': 27222, 'sniff': 30128, 'dontmakeasound': 10433, 'uht': 34028, 'supermarketstakeout': 31751, 'stayhomeaustralia': 30978, 'ertf': 11651, 'unveil': 34491, 'busquets': 5617, 'xuwen': 36481, 'unmarketable': 34390, 'jnt': 17800, 'dumbfuckery': 10742, 'humming': 16146, 'lament': 18781, 'thirdworldproblems': 32838, 'esepcially': 11671, 'allocating': 2429, 'cerebral': 6351, 'palsy': 23957, 'preexistingcondition': 25457, 'throttling': 32921, 'bone': 4924, 'memphis': 20792, 'shithouse': 29458, 'tonbridge': 33224, 'tethys': 32557, 'ccedoman': 6238, 'vial': 34979, 'fuelling': 13607, 'plexi': 24986, 'withregram': 36118, 'tvcwebinarseries': 33892, 'mara': 20262, 'suprising': 31843, 'anoh': 2797, 'tab': 32108, 'kurt': 18654, 'jetta': 17747, 'salam': 28348, 'dato': 9068, 'pkp': 24881, 'frugal': 13540, 'quarentine': 26286, 'hoitytoity': 15757, 'boojee': 4942, 'boojie': 4943, 'backordered': 3734, 'unleash': 34375, 'r1': 26385, '127p': 222, '124p': 219, 'happymothersday2020': 15123, 'insomnia': 17059, 'sustaining': 31940, 'survivers': 31902, 'sme': 30053, 'desi': 9608, 'gvmnt': 14882, 'dimension': 9915, 'marketstrategy': 20343, 'aquatic': 3032, 'kai': 18035, 'ramon': 26540, 'lopez': 19666, 'inq': 17024, 'distributer': 10217, 'castoff': 6151, 'cusp': 8786, 'apology': 2926, 'vanguard': 34790, 'vdc': 34855, 'supportsmallbiz': 31821, 'phonesoap': 24709, 'lowerdrugpricesnow': 19741, 'sorrow': 30383, 'wearegonnabeatthisvirus': 35551, 'ocvjc': 23121, 'ihaverightstoo': 16441, 'herat': 15521, 'weareafghanistan': 35543, 'barnstaple': 3950, 'torrington': 33285, 'appledore': 2961, 'instow': 17115, 'northdevon': 22709, 'broadcast': 5336, 'pounce': 25307, 'chanel': 6436, 'photojournalmonday': 24723, 'volvo': 35197, 'paniceating': 24029, 'ncing': 22156, 'chongqing': 6724, 'hotpot': 15992, 'xiaommian': 36460, 'retailresponse': 27547, 'consumercare': 7716, 'lvns': 19863, 'routed': 28045, 'myspark': 21875, 'xylospongium': 36488, 'anus': 2855, 'defecating': 9297, 'latrine': 18897, 'ancientrome': 2690, 'dontbeaasshole': 10416, 'gulfport': 14839, 'gawd': 13861, 'recreational': 26868, 'boyy': 5112, 'rou': 28028, 'kami': 18063, 'ek': 11141, 'sna': 30095, 'ila': 16466, 'ovat': 23708, 'isolators': 17478, 'carte': 6097, 'blanche': 4685, 'exterminate': 12099, 'opponent': 23463, 'marginalized': 20287, 'tommy': 33217, 'financials': 12719, 'retarded': 27569, 'tvmarket': 33894, 'abilty': 1629, 'gopinsidertrading': 14422, 'senatorloeffler': 29093, 'resignnow': 27388, 'gahan': 13742, 'oyster': 23839, 'croatia': 8565, 'utwx': 34706, 'evacuate': 11805, 'disnt': 10122, 'tty': 33794, 'designates': 9613, 'haydn': 15256, 'watters': 35490, 'shephard': 29406, 'catalogue': 6159, 'battled': 4046, 'cleaningtips': 6941, 'amazonpackages': 2541, 'hardcore': 15140, 'fetishizing': 12573, 'merchandiser': 20839, 'galvanizes': 13769, 'bartans': 3974, 'spotting': 30664, 'meumeu': 20912, 'tanked': 32224, 'manchesterunited': 20171, 'manchestercity': 20170, 'grifter': 14659, 'discouraged': 10042, 'thr': 32891, 'pansy': 24052, 'lancs': 18798, 'valueformoney': 34769, 'expatlife': 12005, 'studyhappy': 31472, 'anantapur': 2679, '20061': 465, 'apmepma': 2904, 'apfightscovid19': 2894, 'guarding': 14797, 'thatismytown': 32648, 'dane': 8985, 'kwacha': 18671, 'characterise': 6469, 'materialism': 20489, 'albatross': 2310, 'satisfaction': 28556, 'employeexperience': 11342, 'intermodal': 17198, 'containersales': 7771, 'worldtrade': 36280, 'digitalhub': 9874, 'boxxport': 5087, 'foodchainid': 13092, 'wrongful': 36360, 'nimble': 22511, 'malpractice': 20144, 'reaalamerican': 26673, 'smallyoutubecommunity': 30025, 'coronavirsoutbreak': 8128, 'travelban': 33530, 'globalisation': 14227, 'chooses': 6727, 'toilethumor': 33142, 'etiquettefortheapocalypse': 11768, '1990s': 402, '2030hrs': 506, 'klaviyo': 18466, 'mcgregor': 20590, 'amids': 2595, 'rizwan': 27847, 'saraf': 28518, 'alkhidmat': 2395, 'peshawar': 24576, 'awerness': 3628, 'gulbahar': 14835, 'privaleged': 25664, 'creditreport': 8483, 'ouch': 23625, 'ingesting': 16949, 'boatload': 4845, '409': 920, '313': 775, '6880': 1238, 'setx': 29214, 'portarthur': 25213, 'bridgecity': 5275, 'funkeakindelebello': 13654, 'readabook': 26688, 'frontal': 13524, 'zavaapp': 36735, 'shattaday': 29345, 'gbevu': 13880, 'calibrated': 5779, 'prospectively': 25873, 'gregor': 14642, 'deltabc': 9436, 'beta': 4400, 'leena': 19033, 'matinee': 20497, 'dwelling': 10809, 'amoeba': 2618, 'resells': 27357, 'lurking': 19833, 'earns': 10867, 'urinal': 34592, 'diminishment': 9920, 'traced': 33401, 'contingenyplanning': 7808, 'rumored': 28140, 'asserts': 3296, 'reverselogistics': 27646, 'levan': 19157, 'davitashvili': 9085, 'wmata': 36136, 'onlin': 23346, 'muc': 21674, '0761749713': 93, 'generistouch': 13950, 'sakhile': 28340, 'zengele': 36754, 'bushiri': 5582, 'contangion': 7783, 'ripvinoliamashego': 27806, 'enervis': 11440, 'energytransition': 11438, 'energiewende': 11429, 'eatingdisorders': 10920, 'herein': 15539, 'buchholz': 5441, 'cleanser': 6946, 'clene': 6970, '300ml': 747, 'quickest': 26342, 'stayhomekenya': 30988, 'shredded': 29607, 'woh': 36154, 'naturalist': 22087, 'eaths': 10918, '1843': 345, 'dotardalert': 10489, 'ornot': 23568, 'nogozone': 22607, 'enrich': 11500, 'resp': 27416, '4500': 961, 'eset': 11672, 'suppression': 31836, 'rte': 28085, 'latelateshow': 18874, '342': 803, '3736': 842, 'wiseworks': 36089, 'oddly': 23126, 'assaulted': 3286, 'referring': 26958, 'slur': 30010, 'mattessich': 20505, 'bajans': 3808, 'lap': 18828, 'ot': 23601, 'dissects': 10169, 'wcs': 35514, 'malwarebytes': 20148, 'landmines': 18811, 'noble': 22581, 'stinky': 31182, 'rightful': 27767, 'fecker': 12483, 'badger': 3766, 'meaty': 20655, 'appointed': 2980, 'nickelsburg': 22468, 'geekwire': 13906, 'magnet': 20001, 'freq': 13456, '20sec': 531, 'drs': 10659, 'havin': 15240, 'rey': 27685, 'pursuite': 26127, 'surgicalgown': 31865, '5ml': 1159, 'smal': 30016, 'torbay': 33263, 'wold': 36156, 'peoplebeforeprofits': 24455, 'erm': 11641, 'dimwit': 9924, 'gentrification': 13970, 'lei': 19073, 'wai': 35280, 'nong': 22645, 'mop10': 21465, 'corbyn': 7953, 'ge17': 13894, 'sabotaging': 28237, 'dodged': 10330, 'labourleaks': 18717, 'labourhq': 18716, 'labourwreckersdossier': 18718, 'adrenalin': 1971, '4a': 1004, 'petrochem': 24611, 'ceasefire': 6274, 'evanston': 11824, 'westchester': 35716, 'hbp': 15276, 'kigali': 18361, 'comparative': 7410, 'kertching': 18270, 'domesticterrorism': 10381, 'mello': 20767, 'nfid': 22413, 'schaffner': 28724, 'nopanicbuying': 22673, 'sx3': 32046, 'foodtrace': 13152, 'supplychainsecurity': 31796, 'fooddemand': 13098, 'blockchaininnovation': 4753, 'aglivexsx3': 2152, 'sx3australia': 32047, 'mumbaikers': 21741, 'welcomed': 35661, '1068': 153, 'hyatt': 16216, 'scissors': 28781, 'griffey': 14657, 'day24inselfisolation': 9111, 'bigbasket': 4502, '07493': 92, '586': 1120, 'cwpcathy': 8847, 'cheltenham': 6573, 'loseweight': 19681, 'getmore': 14040, 'majzoub': 20079, 'ahs': 2206, 'begs': 4235, 'r29': 26395, 'r39': 26398, 'r47': 26401, 'shreveport': 29608, 'malaga': 20115, 'truckdriver': 33661, 'longg': 19624, 'scandalous': 28685, 'usastrong': 34616, 'muted': 21815, 'cmeri': 7082, 'countering': 8262, 'menacing': 20796, 'usn': 34659, 'sipes': 29818, 'independants': 16769, 'catatonically': 6164, 'smartest': 30032, 'charlton': 6491, 'behemoth': 4250, 'numerical': 22912, 'dtn': 10699, 'comicstrip': 7314, 'comicsforquarantine': 7313, 'tulsehill': 33832, 'topmarketgainers': 33252, 'tmg': 33087, 'beefcentral': 4197, 'fakemeat': 12255, 'zoo': 36816, 'necided': 22213, 'wishful': 36092, 'wolverhampton': 36161, 'hlt': 15702, 'hilton': 15636, 'fiery': 12624, 'corporal': 8152, 'compulsive': 7498, 'kwminsights': 18682, 'drbirx': 10595, 'coronapocalyse': 8088, 'scratching': 28826, 'bathurst': 4030, 'reson': 27408, 'tucumsa': 33806, 'mep': 20826, 'herbert': 15525, 'dorfmann': 10476, 'resum': 27504, 'banksouth': 3905, 'fios': 12768, 'retirementplanning': 27580, 'pensionadvice': 24438, 'defund': 9343, '10bil': 160, 'nameless': 21980, 'hmh': 15707, 'chilling': 6649, 'meta': 20884, 'iprice': 17363, 'arises': 3103, 'workingtogether': 36244, 'supportingfamiliesirl': 31811, 'eblast': 10942, 'optional': 23495, 'perk': 24512, 'fearfulness': 12467, 'twi': 33913, 'safteyfirst': 28301, 'nutshell': 22951, 'thistogether': 32863, 'supermkt': 31763, 'fleeting': 12927, 'luisa': 19801, 'alessandro': 2349, 'vodaphone': 35176, 'lichfield': 19228, 'stackline': 30800, 'hoa': 15718, 'bellaire': 4290, 'beechnut': 4194, 'delames': 9373, 'mamle': 20154, 'lamented': 18782, 'globalproblems': 14237, 'specifies': 30531, 'spatially': 30498, 'isntitironic': 17457, 'takeonefortheteam': 32165, 'vulnerab': 35239, 'singhdeo': 29797, 'raipur': 26485, 'oceanside': 23108, 'cglm': 6390, 'dictated': 9807, 'subedi': 31515, 'compass': 7419, 'coot': 7931, 'feckinggrandpa': 12485, 'suez': 31599, 'conditioned': 7541, 'dispersed': 10138, 'inconsistency': 16730, 'gobsmacking': 14300, 'inhaling': 16962, 'exhaled': 11972, 'vapour': 34816, 'stopthepeak': 31303, 'philosopher': 24692, 'headlight': 15301, 'ineptitude': 16861, 'mbu': 20566, 'importation': 16618, 'etcio': 11745, 'queenspasta': 26308, 'nov20': 22825, 'consumersentiment': 7743, '1gjyriluxn': 432, 'fanny': 12298, 'odishanews': 23132, 'ambiguous': 2553, 'hubbie': 16086, 'gill': 14133, 'trex': 33583, 'decking': 9235, 'growordie': 14753, 'defends': 9305, 'butchered': 5628, 'nielsenindonesia': 22478, 'uyu': 34715, 'amenikata': 2573, 'lain': 18757, 'dtes': 10694, 'safesupply': 28290, 'gottchalks': 14446, 'mervyns': 20868, 'nocturnal': 22593, 'iterate': 17516, 'q6': 26171, 'cuff': 8699, 'buut': 5648, 'trumplieddeadpeople': 33708, 'sportswriter': 30656, 'raabs': 26410, 'wtaf': 36371, 'ww3': 36415, 'conspiracytheory': 7679, '547': 1092, 'rhonj': 27702, 'summoning': 31661, 'pinduoduo': 24818, 'spoiler': 30619, 'isolationgames': 17471, 'rajat': 26495, 'jee': 17690, 'littlethings': 19399, 'favourable': 12415, 'bgl': 4444, 'kta': 18625, 'ember': 11266, 'blossomwatch': 4785, 'ferlouginggraciously': 12551, 'sniffle': 30130, 'dammit': 8962, 'awon': 3637, 'bod': 4853, 'eyesuphere': 12143, 'dadbod': 8896, 'shopalishamarie': 29494, 'bayelsa': 4057, 'dominic': 10386, 'cummings': 8721, 'reputed': 27321, 'incrsing': 16756, 'wen': 35682, 'bmw': 4822, 'utopia': 34698, 'strack': 31344, 'hammond': 15008, 'enforcer': 11448, 'cleresponds': 6972, 'cle': 6927, 'purevpn': 26102, 'aciudadunida': 1791, 'epicentre': 11586, 'vodafonewatch': 35175, 'disappoint': 9993, 'esque': 11687, 'tyranny': 33964, 'gladice': 14185, 'headbutts': 15296, 'tbc': 32308, 'australialockdown': 3504, 'honing': 15883, 'busdrivers': 5576, 'sincerity': 29787, 'bakhat': 3818, 'mphil': 21617, 'egungunbecareful': 11114, 'carnivorous': 6059, 'anagram': 2660, 'coward': 8349, 'manipulatingamericasgullibleassholes': 20216, 'covfefe45': 8327, 'theartofthesteal': 32660, 'theartofthedeal': 32659, 'shortening': 29566, 'maesglas': 19970, 'pierogi': 24779, 'agoraphobes': 2160, 'claustrophobe': 6917, 'salesperson': 28360, 'diagram': 9779, 'btsarmy': 5429, 'condolence': 7545, 'monstrous': 21430, 'arseholic': 3165, 'handcrafted': 15032, 'cgcsa': 6387, 'patricia': 24251, 'pillay': 24802, 'thinkwithgoogle': 32831, 'marketingagency': 20324, 'creativeagency': 8463, 'marketingideas': 20327, 'marketingstrategies': 20330, 'slammarketing': 29929, 'slamteam': 29932, 'kupiec': 18648, 'lockdownnepal': 19538, 'nepallockdown': 22274, 'texascoronavirus': 32562, 'stupidstore': 31493, 'drywall': 10681, 'worldhealthorganisation': 36269, 'underdog': 34183, 'supplyshock': 31798, 'instigated': 17104, 'pledging': 24978, 'usq': 34667, 'dustcloth': 10786, 'asphyxiation': 3278, 'dismissed': 10113, 'uw': 34711, 'biology': 4586, 'day13oflockdown': 9104, 'liquorshop': 19355, 'moph': 21467, 'drinkable': 10625, 'bended': 4309, 'winningthe20s': 36053, 'bjdavisorg': 4650, 'lv': 19861, 'lovelifeandjoy189': 19720, 'gelantibacterial': 13915, 'gelantibacterien': 13916, 'bernardarnault': 4358, 'fakelvhandsanitzer': 12254, 'rtfkt': 28086, 'steepened': 31075, 'customerintelligence': 8804, 'grassphealth': 14572, 'psvs': 25982, 'notwithoutmask': 22815, 'maskeauf': 20418, 'awash': 3623, 'huel': 16101, 'inexpensive': 16872, 'nutritionally': 22949, 'manipuri': 20219, 'manipur': 20218, 'rubensteins': 28104, 'socialinclusion': 30217, 'zeedigital': 36743, 'sunrice': 31698, 'hostile': 15969, 'lalli': 18769, 'businessman': 5603, 'keells': 18177, 'kurana': 18650, 'katunayake': 18136, 'sword': 32041, 'stopconfinement': 31267, 'macronout': 19935, 'mastubate': 20470, 'gasnursejen': 13828, 'medicalfetish': 20686, 'medicalmistress': 20691, 'medicalroleplay': 20693, 'sexynurse': 29237, 'kinkynurse': 18408, 'sleepyfet': 29961, 'medicalplay': 20692, 'nurseplay': 22924, 'anesthesiafetish': 2719, 'atheist': 3359, 'spirituality': 30595, 'hospo': 15960, 'infinity': 16894, '4bn': 1009, 'monk': 21419, 'hannah': 15090, 'bloch': 4748, 'wehba': 35634, 'approving': 3004, 'vend': 34894, 'kizerandbender': 18456, 'retailblog': 27519, 'indulging': 16839, 'exosomes': 11995, 'creepsinsuits': 8495, 'billgatesofhell': 4540, 'fuckcoronavirus': 13570, 'disperses': 10139, 'globalists': 14231, 'ebayhaslotsoftoiletpaper': 10934, 'heijn': 15422, 'unification': 34303, 'rolla': 27959, 'sharjah': 29333, 'zain': 36716, 'merija': 20856, 'subhaan': 31516, 'reich': 27051, 'dunny': 10764, 'gangster': 13790, 'fitzgirls': 12834, 'sundayfitz': 31676, 'fitzgirlsrule': 12835, 'dontovercharge': 10436, 'stopstockpi': 31295, 'originated': 23558, 'defenitly': 9306, 'scroll': 28846, 'londonrestaurant': 19612, 'guardamar': 14793, 'valenciana': 34750, 'unloaded': 34384, 'audusd': 3464, 'katra': 18128, 'mahore': 20029, 'chassana': 6504, 'thuroo': 32946, 'arnas': 3125, 'pouni': 25311, 'thakrakote': 32584, 'articulating': 3178, 'bluemarlin': 4802, 'vitamind': 35147, 'theresstillhope': 32759, 'shopnormal': 29521, 'hungergames': 16167, 'nevadan': 22320, 'cabbie': 5712, 'chubby': 6765, 'energetic': 11427, 'fetishize': 12572, 'apha': 2895, 'acb': 1700, 'trul': 33678, 'cura': 8739, 'tlry': 33083, 'hexo': 15571, 'wmd': 36138, 'lh': 19194, 'tgod': 32575, 'emh': 11295, 'tbp': 32315, 'kshb': 18622, 'vff': 34972, 'mmen': 21241, 'gtii': 14781, 'harv': 15188, 'cweb': 8846, 'cchwf': 6240, 'zena': 36753, 'ogi': 23188, 'operationmasks': 23449, 'xl': 36466, 'washcloth': 35425, 'bathing': 4025, 'emergencypreparedness': 11286, 'extrasaturation': 12122, 'mythbusters': 21887, 'coronamisconceptions': 8069, 'coronamyths': 8070, 'stayballyhoo': 30955, 'undermine': 34194, 'supportspokane': 31824, 'downtownspokane': 10546, 'zen': 36752, 'councilman': 8241, 'iser': 17428, 'mouhcine': 21572, 'guettabi': 14813, 'tshrit': 33777, 'actuality': 1846, 'informational': 16925, 'hindered': 15644, 'asimo': 3250, 'hgv': 15576, 'transporting': 33508, 'pierce': 24776, 'piercing': 24778, 'pierced': 24777, 'iclwn': 16332, 'burst': 5567, 'inwards': 17331, 'confounding': 7590, 'coronatourism': 8109, 'homer': 15848, 'gfk': 14063, 'donkey': 10406, 'follw': 13063, 'enployment': 11494, 'onepulse': 23330, 'arcese': 3053, 'waisted': 35281, 'jfc': 17757, 'leary': 19007, 'whoa': 35909, 'primeday': 25617, 'extravaganza': 12125, 'nwo': 22963, 'pundit': 26069, 'immorally': 16557, 'romir': 27980, 'themarshacrawfordteam': 32715, 'marsha': 20376, 'candisteam': 5886, 'compassrealestate': 7424, 'annou': 2783, 'amnesty': 2615, 'daca': 8892, 'reside': 27375, 'unsw': 34476, 'mclaws': 20594, 'doope': 10463, 'halp': 14990, 'marshallaw': 20378, 'loser': 19679, 'unimaid': 34312, 'mog': 21327, 'yankistore': 36513, 'logisticsrules': 19591, 'bo': 4832, 'tr': 33395, 'unpreventable': 34418, 'kibra': 18335, 'vigorously': 35035, 'dailyheil': 8918, 'competently': 7434, 'panicky': 24039, 'ruing': 28123, 'mothering': 21544, 'hapless': 15101, 'efra': 11096, 'hii': 15620, 'tanya': 32231, 'fluschmann': 13003, 'instasouthafrica': 17102, 'afrikaans': 2084, 'capetown': 5944, 'vela': 34888, 'hearty': 15379, 'teambeef': 32342, 'teamsheep': 32356, 'edw': 11068, 'dwbi': 10806, 'elm': 11230, 'cdvdm': 6269, 'podclass': 25067, 'remotelearning': 27184, 'datavault': 9057, 'koenigdistillery': 18534, 'caldwell': 5768, 'idahocovid19': 16351, 'redefining': 26896, 'spate': 30496, 'datavis': 9058, 'choctaw': 6714, 'sandton': 28438, 'midrand': 21002, 'day12': 9102, 'day12oflockdown': 9103, 'rugged': 28120, 'ransacking': 26586, 'novelist': 22835, 'keepconnected': 18188, 'strangedaysindeed': 31356, 'varied': 34826, 'tagtek': 32139, 'brandawareness': 5155, 'tradeshows': 33423, 'kelantan': 18220, 'climateemergency': 6997, 'criticize': 8553, 'diverts': 10252, 'diverting': 10251, 'goner': 14365, 'vocational': 35169, 'insulting': 17127, 'philipps': 24685, '244': 608, '887': 1439, '913': 1472, '898': 1443, '343': 804, 'infrequent': 16936, 'putty': 26146, 'trumppressconf': 33725, 'piggly': 24786, 'wiggly': 35975, 'rebate': 26782, 'proposing': 25854, 'godigital': 14313, '4088': 919, 'fiscalstimulus': 12806, 'navs': 22118, 'inadequacy': 16677, 'servicing': 29192, 'aptito': 3025, 'aptitopos': 3026, 'coronabonds': 8011, 'immed': 16544, 'alteration': 2485, 'tampering': 32209, 'prev': 25557, 'pol': 25099, 'ldrships': 18970, 'vested': 34963, 'lacked': 18725, 'vancouverhomes': 34782, 'vancouverrealestate': 34783, 'smartcities': 30028, 'happycities': 15115, 'abysmal': 1690, 'interestingfacts': 17185, 'poured': 25314, 'scotus': 28805, 'homeishere': 15829, 'absinthe': 1664, 'soaking': 30165, 'wormwood': 36288, 'unitedairlines': 34339, 'eggcellent': 11103, 'ozone': 23846, 'erected': 11634, '9177300445': 1474, 'sanitizationtunnel': 28463, 'ozonesmarttunnel': 23847, 'honduran': 15872, 'xzbapjoroz': 36489, 'comer': 7297, 'borde': 4983, 'ruler': 28130, 'hoaders': 15719, 'fock': 13031, 'finkle': 12754, 'realestatelaw': 26713, 'realestatelawyer': 26714, 'socialcommerce': 30195, 'mindlessly': 21090, 'parallel49': 24094, 'parallel49brewing': 24095, 'grotta': 14732, 'handsantiser': 15060, 'sel': 29009, '9today': 1552, 'datacenter': 9043, 'notebook': 22763, 'alc': 2324, 'overboard': 23718, 'atx': 3442, 'favorito': 12413, 'humped': 16154, 'usousd': 34663, 'usoil': 34662, 'sundayselfie': 31685, 'rawr': 26646, 'delfast': 9388, 'goza': 14494, 'minuscule': 21141, 'simplicity': 29761, 'cosumption': 8220, 'mahrukat': 20030, 'watan': 35465, 'reflet': 26977, 'ion': 17340, 'coronacrunch': 8028, 'luluguinness': 19807, 'storeopening': 31326, 'coventgarden': 8311, 'proteinbars': 25909, 'barrons': 3970, 'alarmingly': 2302, 'cautioned': 6206, 'consumerlaw': 7734, 'dataismoreexpensivethanrentnow': 9046, 'reduceinternetpricesnow': 26931, 'hygienically': 16247, 'parkwestvillage': 24143, 'harvard': 15189, 'cainiao': 5747, 'consumerfinance': 7725, 'disunited': 10229, 'truthhurts': 33759, 'wordstoliveby': 36211, 'whistleblower': 35879, 'getthefuckawayfromme': 14045, 'reevaluate': 26950, 'schiff': 28732, 'resemblance': 27358, 'vengeance': 34904, 'furthest': 13685, 'profite': 25740, 'accomadation': 1729, '0103641972': 20, 'atheletic': 3361, 'resting': 27469, 'migratory': 21024, 'guestuest': 14812, 'syndicated': 32083, 'youngest': 36640, 'nearness': 22200, 'bodyguard': 4864, '1918': 365, 'shopforyou': 29504, '0901': 121, '454': 964, '2974': 684, 'yam': 36506, 'generalfood': 13936, 'tiptoeing': 33048, 'lwc': 19867, 'westchestercounty': 35717, 'garment': 13813, '2billion': 692, '985': 1530, '2331': 587, 'partech': 24159, 'phoney': 24710, 'morphing': 21508, 'provocation': 25951, 'bidet2020': 4493, 'mindspark': 21093, '1basketpershopper': 427, 'ventilation': 34912, 'glue': 14256, 'dti': 10696, 'coolant': 7910, 'arrival': 3148, 'sona': 30352, 'yomi': 36612, 'mechuka': 20659, 'monigong': 21412, 'pidi': 24771, 'greenbelt': 14621, 'mcommerce': 20600, 'retailmarketing': 27541, 'reputationmarketing': 27320, 'dravely': 10586, 'kwarans': 18676, 'remuneration': 27193, 'gout': 14457, 'mysuru': 21880, 'timeforchange': 33013, 'luring': 19831, 'limittheflowofcustomers': 19310, 'pelosibill': 24399, 'pelosimustresign': 24400, '489': 995, 'contrarian': 7831, 'vetted': 34970, 'knowyoursocial': 18518, 'stepson': 31105, 'godson': 14316, 'quakertown': 26219, 'poking': 25098, 'butthole': 5639, 'trustedsource': 33751, 'rmb2': 27859, 'rmb790': 27862, 'kir': 18414, 'emeka': 11278, 'offor': 23174, 'monetery': 21395, 'mange': 20193, 'facet': 12188, 'dhaka': 9751, 'bury': 5570, 'tunisian': 33849, 'ardene': 3065, 'shopopening': 29526, 'stumbled': 31480, 'cutout': 8828, 'musial': 21788, 'aliexpress': 2379, 'corinnavirus': 7966, 'notably': 22753, 'distorted': 10202, 'retrenchment': 27593, 'flashlight': 12884, 'survivingcovid19': 31905, 'unileverslashing': 34310, 'kennesaw': 18240, 'annemarie': 2776, 'eastbourne': 10884, 'wwf': 36418, 'stopbeingselfish': 31265, 'laboratoire': 18708, 'ganesh': 13788, 'rs30': 28072, '45days': 970, 'legostreet': 19069, 'ishop': 17432, 'coffeeshop': 7161, 'businesswise': 5613, 'legocityscene': 19065, 'legomodulars': 19068, 'legocreatorexpert': 19066, 'sti': 31144, 'essendonfc': 11692, 'mightybombers': 21015, 'repurpose': 27314, 'millionmaskchallenge': 21067, 'miele': 21011, 'motoring': 21567, 'equaliser': 11603, 'ostracized': 23596, 'askabc2020': 3254, 'hyste': 16278, 'mngov': 21252, 'mnleg': 21254, 'drivewyze': 10637, 'ccj': 6241, 'wclo': 35512, 'agitated': 2150, 'controllable': 7848, 'concurrent': 7532, 'ntm': 22888, 'ebit': 10940, 'austrailia': 3502, 'wefilterfakenews': 35627, 'gesch': 14019, 'ftsf': 13564, 'hrer': 16064, 'vieler': 35018, 'rkte': 27850, 'rrach': 28068, 'mit': 21204, 'einem': 11134, 'alle': 2402, 'sch': 28722, 'ler': 19112, 'studenten': 31464, 'lasst': 18853, 'zusammenhalten': 36842, 'aufeinanderachten': 3466, 'forsaken': 13272, 'ransack': 26584, 'arohanui': 3129, 'thcexchange': 32654, 'zephyrhills': 36760, 'humanly': 16133, 'reload': 27139, 'shoponlineifyouhaveinternet': 29525, 'gwenniffer': 14887, 'botch': 5036, 'standupcomedy': 30855, 'poopoopaper': 25169, 'walt': 35344, 'johor': 17848, 'shopclickdrive': 29497, 'startwithtrust': 30889, 'bko': 4653, 'kampung': 18067, 'assembly': 3293, 'sampai': 28402, 'sundaymotivation': 31680, 'loki': 19600, 'goptaxscam': 14424, 'pandumbic': 24009, 'quiztimemorningswithamazon': 26373, 'hallmark': 14983, 'keepyoursenseofhumor': 18215, 'josephkiragu': 17878, 'wld': 36132, 'shave': 29351, 'dependancy': 9523, 'naturalselection': 22092, 'soju': 30281, 'disguised': 10077, 'wastepaper': 35459, 'recoveredpaper': 26860, 'onlineinteraction': 23360, 'thesofterthebetter': 32776, 'earh': 10851, 'gobiernodeespana': 14295, 'beyondfragrance': 4434, 'inr': 17029, '550': 1095, '1583916': 289, 'ipad': 17348, 'multivitamin': 21734, '21stcentury': 559, 'thisislife': 32853, 'powys': 25348, 'ingles': 16951, 'grantkapp': 14556, 'liquidation': 19351, 'deliveryservices': 9427, 'samedaydelivery': 28396, 'deliveryservice': 9426, 'haultail': 15223, 'thepeoplebuilder': 32738, 'grantherbert': 14554, 'emotionalintelligence': 11317, 'beyondcovid19': 4433, 'colonized': 7249, 'mahalo': 20011, 'hawai': 15243, 'smelly': 30057, 'coronac': 8013, 'ufc': 34009, 'cryptonews': 8652, 'bain': 3803, 'bainalerts': 3804, 'ey': 12136, 'pamybot': 23962, 'fxdailyfx': 13716, 'mbforex': 20560, 'achohol': 1786, 'ncdc': 22155, 'viability': 34977, 'flipping': 12953, 'steadied': 31055, 'sapped': 28513, 'payoff': 24305, 'nobuybacks': 22584, 'yeehaw': 36545, 'shu': 29624, 'flpublicpower': 12994, 'publicpower': 26027, 'amorina': 2623, 'acme': 1800, 'mover': 21595, 'ghostbikes': 14092, 'julienning': 17946, 'goingcrazy': 14333, 'homechef': 15812, 'michigander': 20957, 'whitless': 35899, '545': 1091, '6600': 1224, 'dragrace': 10572, 'affliction': 2058, 'gainer': 13746, 'telecos': 32437, 'halebonoe': 14969, 'lesotho': 19116, 'lesotholockdown': 19117, 'capitalising': 5948, '1007': 130, 'asbury': 3216, '07712': 96, '832': 1392, '776': 1328, '7979': 1342, 'juicy': 17939, 'kellogg': 18223, 'employes': 11344, 'bbcpm': 4079, 'xi': 36457, 'turk': 33862, 'turchia': 33858, 'worldwar3': 36282, 'respons': 27444, 'fuming': 13636, 'gro': 14683, 'usagunnation': 34611, 'detest': 9690, 'dble': 9126, 'downwards': 10551, 'reinventingretail': 27068, 'heap': 15358, 'raelyn': 26451, 'sacco': 28242, 'afghan': 2068, 'applaude': 2955, 'vampire': 34773, 'bf': 4437, 'paranaque': 24103, 'watson': 35489, 'skagit': 29857, 'zehrs': 36744, 'omera': 23297, 'canpara': 5919, 'petrovietnam': 24624, 'klima': 18473, 'wirkt': 36076, 'sich': 29663, 'positiv': 25240, 'zumindest': 36837, 'kurzfristig': 18655, 'langfristigen': 18818, 'folgen': 13050, 'hingegen': 15654, 'rften': 27690, 'alles': 2415, 'andere': 2695, 'umweltfreundlich': 34104, 'sein': 29001, 'klimawandel': 18474, 'energie': 11428, 'deplorables': 9538, 'kci': 18167, 'footballskills': 13172, 'vegetabl': 34873, 'crossword': 8596, 'fzzdj1bx8v': 13724, 'electricty': 11180, '30ml': 765, 'indus': 16840, 'sanitz': 28474, 'beardoil': 4127, 'naturalbeardoil': 22080, 'indusvalley': 16850, 'freesanitizer': 13439, 'robocall': 27904, 'denominated': 9499, 'n100': 21895, '2yrs': 741, 'solidarity4humanity': 30306, '44th': 958, 'supportliclocal': 31814, 'criticise': 8549, 'maori': 20254, 'onyamag': 23408, 'ungodly': 34290, 'oilnews': 23224, 'energyindustry': 11436, 'pandemiccrisis': 23991, 'msrp': 21655, 'despises': 9639, 'intnl': 17251, 'searchable': 28898, 'athlone': 3367, 'flatmate': 12893, 'telmo': 32459, 'requisition': 27331, 'stressrelief': 31407, 'makemeasandwich': 20091, 'progressed': 25764, 'businessgrowth': 5599, 'worldbusiness': 36258, 'bind': 4554, 'clenching': 6969, 'diageo': 9772, 'demonstraion': 9473, 'digitalretailing': 9889, '0169061211': 33, 'samuel': 28408, 'uncovid19brief': 34165, 'viralkindness': 35084, 'cerebralpalsy': 6352, 'nielson': 22479, 'treason': 33557, 'actin': 1820, 'commissioning': 7353, 'unimelbpursuit': 34313, 'mcgee': 20589, 'vaughan': 34841, 'toiletpapershortageof2020': 33175, 'huddle': 16094, 'sanford': 28443, 'unsatisfied': 34447, 'edmond': 11046, 'slippery': 29983, 'letschill': 19135, 'kaiser': 18037, 'clchan': 6925, 'reignited': 27056, 'yomestayhome': 36611, 'shiieet': 29430, 'parliamentary': 24146, 'humanrights': 16137, 'murkowski': 21775, 'capitol': 5959, 'cebu': 6277, 'naay': 21920, 'silay': 29730, 'delata': 9374, 'coronalogic': 8066, 'cottonworld': 8226, 'civilized': 6850, 'strvtin': 31454, 'cheaptravel': 6532, 'sourland': 30412, 'bch': 4095, 'alexkuptsikevich': 2358, 'avatrade': 3568, 'bitwise': 4636, 'cfgi': 6376, 'cryptofeargreedindex': 8650, 'etoro': 11769, 'extremefear': 12128, 'fxpro': 13717, 'marketupdates': 20347, 'marketsandprices': 20340, 'matthougan': 20507, 'naeemaslam': 21935, 'bergneustadt': 4347, 'nordrhein': 22685, 'westfalen': 35723, 'funnymom': 13662, 'rakuten': 26507, 'hom': 15798, 'kith': 18444, 'kin': 18386, 'kwame': 18674, 'onwuachi': 23407, 'sobriety': 30183, 'heals': 15314, 'liberalhypocrisy': 19209, 'bullshitwatch': 5509, 'sherbs': 29408, 'hig': 15594, 'coolactionsuit': 7909, 'chineseflu': 6675, 'lastly': 18859, 'whinge': 35863, 'hurriedly': 16189, 'armful': 3118, 'dailybriefing': 8912, 'cutthroat': 8831, 'wealthiest': 35529, 'deloitteer': 9429, 'rejoice': 27082, 'purportedly': 26112, 'kuwari': 18662, 'inspect': 17061, 'ache': 1779, 'evaluate': 11814, 'crucially': 8614, 'manhattanites': 20200, 'disdain': 10066, 'schull': 28766, 'sebastien': 28930, 'boyer': 5110, 'farmwise': 12345, 'penned': 24429, 'cierretotal': 6791, 'wof': 36153, 'taxcredit': 32295, 'broome': 5372, 'correspond': 8174, 'enrollonline': 11506, 'medicaredirect': 20697, 'medigap': 20707, 'medicareadvantage': 20696, 'mapd': 20256, 'bigbiz': 4503, 'sharelove': 29328, 'accrued': 1751, 'pandemicprofiteers': 24001, 'thanx': 32641, 'brah': 5133, '55gl': 1101, '99gl': 1537, 'tad': 32131, '5560': 1100, 'runtown': 28153, '5dkk': 1139, '135dkk': 250, 'cmcsa': 7080, 'atus': 3437, 'unfunny': 34288, 'coronacomics': 8022, 'discrete': 10054, 'freelancelife': 13427, 'publicservants': 26030, 'proudlyservingcanadians': 25926, 'humanityfirst': 16130, 'saddened': 28257, 'wafflehouseindex': 35266, 'bodegaindex': 4857, 'emgtwitter': 11294, 'italianamerican': 17501, 'microorganism': 20973, '8120': 1375, 'hardeson': 15142, 'spay': 30501, 'neuter': 22315, 'uterus': 34684, 'amazonfail': 2538, 'mediawatch': 20676, 'unmanned': 34389, 'modernization': 21308, 'smartcompany': 30029, 'collegestudent': 7236, 'ollu': 23277, 'uiw': 34039, 'agtg': 2182, 'utsa': 34699, 'txsu23': 33947, 'tsuupc': 33786, 'pvamu20': 26151, 'pvamu21': 26152, 'shsu': 29621, 'txst': 33945, 'retailwork': 27560, 'terrorizing': 32533, 'rocket96': 27926, 'schizo': 28735, 'videogames': 35011, 'twitchstreamer': 33928, 'notmeus': 22795, 'videogaming': 35012, 'dallaslockdown': 8945, 'gourmet': 14455, 'niagara': 22450, 'munro': 21758, 'chopping': 6731, 'pickling': 24756, 'latina': 18892, 'lupehernandez': 19827, 'desj': 9626, 'jesurvivrai': 17738, 'prixdugaz': 25676, 'modernart': 21305, 'shriveled': 29615, 'trumpisuseless': 33705, 'confrim': 7591, 'creat': 8456, 'obeying': 23038, 'ostensibly': 23593, 'plucky': 25005, 'dunkirk': 10760, 'invasion': 17283, 'samkelo': 28399, 'jus': 17970, 'pta': 25999, 'giv': 14157, '19au': 410, 'hazardpaynow': 15265, 'pouch': 25305, 'algernon': 2363, 'agn': 2154, 'carolin': 6064, 'xoxoxo': 36474, 'hanoi': 15093, 'timber': 33004, 'responsiblereporting': 27450, 'unhealthy': 34294, 'stockholder': 31208, 'airforceone': 2243, '7011259210': 1273, '3meds': 882, 'orderonline': 23517, 'buynow': 5673, 'beatingcancer': 4141, 'deprtment': 9562, 'aata': 1583, 'copied': 7938, 'ethnic': 11761, 'troublemaker': 33651, 'murdoch': 21773, 'pandemickindness': 23995, 'stopthespreadofcorona': 31305, 'stayprotected': 31023, 'wallmart': 35330, 'gunshop': 14857, 'quarantena': 26239, 'cad2i129h3': 5728, 'goldfish': 14346, 'molnar': 21359, 'goldfishgod': 14347, 'ari': 3096, 'housewarming': 16016, 'ennismore': 11485, 'quandary': 26227, 'gigworker': 14123, 'boni': 4930, 'mandaluyong': 20175, 'lowie': 19746, 'quijada': 26353, 'kirill': 18420, 'panarin': 23970, 'storeclosures': 31318, 'calgarians': 5774, 'syed': 32059, 'bashed': 3993, 'nhsvscovid19': 22447, 'supermar': 31737, 'mee': 20718, 'mingle': 21099, 'passcode': 24192, '3303': 795, 'letsfightcovid19': 19139, 'stcloud': 31051, 'stcloudmn': 31052, 'cannabisculture': 5900, 'wednesdayvibes': 35608, 'commerece': 7346, 'condictions': 7538, 'existant': 11983, 'schultz': 28767, 'creaming': 8455, 'gardencentres': 13805, 'springhead': 30705, '01474': 31, '361370': 830, 'poins': 25079, 'bottleneck': 5045, 'ntvnews': 22892, 'thankyouheroes': 32627, 'telethon': 32447, 'klaus': 18465, 'ller': 19446, 'url': 34594, 'firestorm': 12784, 'stayindoors': 31005, 'pmsg': 25045, 'benny': 4330, 'liban': 19207, 'pnpkakampimolabansacovid': 25052, 'stopthespreadofcovid': 31306, 'stopfraudco': 31273, 'cudifference': 8697, 'dramatised': 10581, 'mulready': 21710, '405': 915, '521': 1080, '2828': 672, 'wext': 35758, 'chinaliespeopledied': 6665, 'divino': 10259, 'unwittingly': 34505, 'bnecoronavirus': 4825, 'bliss': 4739, 'cornucopia': 7994, 'betta': 4408, 'whatdistrictisthemidwest': 35785, 'stepawayfromthepeanutbutterkaren': 31092, 'refreshing': 26987, 'businesscontinuity': 5596, 'r0': 26384, 'bwg': 5690, 'redemption': 26897, '785': 1333, 'fscw': 13554, 'havertys': 15238, 'wheeloffortune': 35818, 'quarentineandchill': 26287, 'dreamkitchen': 10606, 'mequedoencasa': 20829, 'multibillion': 21713, 'houstoncoronavirus': 16026, '07121288': 90, 'pastime': 24213, 'demandandsupply': 9445, 'empirical': 11334, 'learner': 19000, 'kbblovesdesign': 18160, 'trustedblog1': 33748, 'bonfire': 4928, '17hrs': 337, 'propertybubble': 25830, '35kworth': 824, '227': 574, '187': 349, '673': 1229, '177': 332, '226': 572, 'moistened': 21343, 'endive': 11404, 'movethesales': 21596, 'sosmoderetail': 30392, 'thinkglobalactlocal': 32824, 'gearhart': 13899, 'petfoodshortage': 24601, 'sandstone': 28437, '4yo': 1034, 'troguh': 33633, 'goverm': 14465, 'livecoverage': 19406, 'antifa': 2834, 'iamapharmacist': 16289, 'civilorder': 6852, 'pankaj': 24048, 'kapoor': 18088, 'liases': 19204, 'foras': 13188, 'coffeefilter': 7159, 'apocalipsis': 2908, 'magavirus': 19982, 'darwinswaitingroom': 9033, 'slick': 29969, 'terra': 32516, 'catch22': 6166, 'sentieo': 29138, 'arib': 3098, 'researchdifferent': 27347, 'alternativedata': 2492, 'ecstasy': 11018, 'randomised': 26563, 'bigley': 4512, 'unanswered': 34113, 'subsidary': 31541, 'credaimchi': 8470, 'realestatemarket': 26716, 'economicsofcorona': 11004, 'invariably': 17282, 'soulless': 30397, 'pondlife': 25150, 'pendamic': 24415, 'seashell': 28906, 'demolition': 9467, 'plantbasedfood': 24915, 'veggieburger': 34883, 'beyondmeat': 4435, 'fakefood': 12251, 'realmeat': 26743, 'meatball': 20648, 'sethi': 29204, 'shopperkit': 29533, 'ahadbuilders': 2188, 'yourtrustourlegacy': 36659, 'ahadcare': 2189, 'coronasafetytips': 8094, 'reducegreednow': 26929, 'watchyourgreed': 35476, 'aba': 1585, 'carpet': 6077, 'electrifying': 11184, 'sothini': 30393, 'mcq': 20604, 'marketreport': 20338, 'energyconsultants': 11433, 'acclaimenergy': 1728, 'janowski': 17643, '516': 1072, '9591': 1516, 'cull': 8703, 'ewe': 11892, 'consumerdurable': 7723, 'revival': 27658, 'emedlife': 11277, 'expertadvise': 12033, 'coronashutdown': 8096, 'decatur': 9209, 'rebottling': 26789, 'cult45': 8709, 'foody': 13160, 'hoomans': 15904, 'gran': 14531, 'nightshift': 22500, 'brood': 5363, '287': 675, 'ciao': 6787, 'disobeying': 10124, 'reiterated': 27074, 'natured': 22095, 'michiganross': 20959, 'aradhna': 3043, 'krishna': 18603, 'globalhealthemergency': 14226, 'ooh': 23411, 'cha': 6394, 'ching': 6683, 'digetty': 9855, 'lakeland': 18759, 'rdg': 26667, 'bbtips': 4088, 'thatcher': 32645, 'lndane': 19461, 'takia': 32175, 'azadganj': 3661, 'slave': 29946, 'turd': 33859, 'djjdhdjej': 10279, 'carpetbagging': 6078, 'kalyan': 18054, 'blob': 4746, 'queer': 26312, 'professionalism': 25730, 'wvnews247': 36410, 'gist': 14152, 'saluting': 28384, 'providng': 25944, 'bd3': 4109, 'catsoftwitter': 6190, 'mycatdoesnthalfgoon': 21840, 'thelogicalmauritian': 32712, 'publichealthcare': 26017, 'atar': 3352, 'woefully': 36152, 'projekt': 25782, 'unisex': 34332, 'shitgotreal': 29456, 'expressyourselfbydon': 12084, 'grinspoon': 14675, 'firstfieldsfamily': 12795, 'loveoneanother': 19727, 'commandment': 7326, 'preschool': 25504, 'dataprices': 9050, 'underinsured': 34190, 'likel': 19288, 'sponsoredad': 30634, 'makesnosense': 20100, 'whosagenda': 35929, 'shutdownny': 29637, 'busken': 5615, 'bloodstream': 4771, 'shoshana': 29574, 'shoshanna': 29575, 'lightweight': 19281, 'ripoffs': 27798, 'powhatan': 25345, 'saralee': 28522, 'notificati': 22785, 'thaw': 32651, 'modwyer': 21324, 'litterally': 19387, 'kra': 18591, 'siberia': 29660, 'ved': 34859, 'montrealer': 21442, 'fetish': 12571, 'rapaport': 26594, 'handyman': 15074, 'masbia': 20410, 'steinmart': 31083, 'limb': 19299, 'quicktake': 26347, 'fightcoronatogether': 12637, 'incorporates': 16738, 'interpersonal': 17217, 'iykykpodcast': 17563, 'iykyk': 17562, 'neoclassical': 22268, 'stipulates': 31185, 'mtg': 21660, 'mtgs': 21661, 'daydream': 9119, 'terraform': 32518, 'unsanitized': 34445, 'thankabanker': 32595, 'coverup': 8320, 'cnh': 7099, 'corr': 8164, 'pboc': 24322, 'cny': 7104, 'remanded': 27153, 'awaits': 3612, 'newzeland': 22403, 'goin': 14331, 'maskoff': 20428, 'loosens': 19660, 'coil': 7173, 'yesplease': 36574, 'mmbbl': 21239, 'masculine': 20413, 'pastel': 24211, 'mailpac': 20047, 'pricesmart': 25602, 'hilo': 15635, 'madiness': 19961, 'creditscores': 8485, 'persuaded': 24567, 'amer': 2575, 'buzz': 5683, 'sht': 29622, 'dagsa': 8909, 'dito': 10232, 'ambot': 2559, 'thankyoutesco': 32636, '9bn': 1541, 'swarm': 31972, 'unwavering': 34500, 'tulsa': 33831, 'bred': 5231, 'proponent': 25844, 'dalma': 8950, 'zachary': 36712, 'cefaratti': 6283, 'dalmacapital': 8951, 'haiku': 14938, 'seconded': 28936, 'wecandothis': 35594, '4months': 1023, 'lok': 19599, 'sabha': 28232, 'wlmu': 36133, 'communitymatters': 7390, 'folx': 13065, 'taxation': 32294, 'dowm': 10518, 'frighten': 13502, 'nomeat': 22626, 'nofish': 22600, 'bankcards': 3891, 'hungarian': 16162, 'dailynewshungary': 8923, 'breakingmyheart': 5213, 'ophthalmology': 23455, 'ophth': 23454, 'nrg': 22867, 'energyefficiency': 11435, 'lockdownpakistan': 19544, 'congratulate': 7606, 'copying': 7947, 'proactivity': 25683, 'rotorua': 28024, 'beekeeping': 4199, 'horriple': 15944, 'serger': 29164, 'seamstress': 28895, 'tbcb': 32309, 'digitalcommerce': 9867, 'mobilecommerce': 21275, 'uniquecommerce': 34327, 'customerfocus': 8803, 'tollroadsnews': 33205, 'trn': 33631, 'cascar': 6112, 'alley': 2417, 'mango': 20196, 'marketingdive': 20326, 'ishaan': 17431, 'bbcnewscoronavirus': 4077, 'lovewins': 19734, 'programm': 25758, 'newbedfordma': 22333, 'newbedford': 22332, 'dartmouthma': 9030, 'fairhavenma': 12232, 'fallriverma': 12269, 'henderson': 15507, '3297': 790, 'penalised': 24408, 'mongrel': 21408, 'desperado': 9631, 'leclerc': 19025, 'lust': 19838, 'denting': 9507, 'type2': 33956, 'questionaire': 26325, '15m': 297, 'tomi': 33215, 'abstainfromebgames': 1671, 'coronapanik': 8081, 'indianmarket': 16794, 'capitalismkills': 5951, 'srimspeak': 30760, 'stabilisation': 30784, 'glencore': 14209, 'mopani': 21466, 'motel': 21538, 'crazed': 8440, 'supermarketsemployees': 31747, 'homebody': 15804, 'ramakrishna': 26524, 'tbilisimetro': 32314, 'ringgit': 27781, 'cashflows': 6127, 'volgograd': 35187, 'stalingrad': 30829, 'eboa': 10944, 'advertised': 1999, 'broug': 5377, 'behaviourchange': 4247, 'helpyourneighbors': 15490, '2231133': 566, '65ish': 1220, 'blankly': 4691, 'oy': 23835, 'cramming': 8410, 'nickcohen': 22466, 'gigantizing': 14119, 'kidnapped': 18347, 'ggirl': 14066, 'emetophobia': 11293, 'obsessive': 23069, 'ombud': 23293, 'summarized': 31652, 'skeptic': 29863, 'naturopathy': 22099, 'chiropractic': 6691, 'jimbakker': 17777, 'alexjones': 2357, 'islamicfinance': 17445, 'losingfamilies': 19684, 'withouthealthcare': 36116, 'closingbusonesses': 7039, 'ventilatorshortage': 34914, 'hiddenagenda': 15588, 'shoping': 29511, 'taproot': 32242, 'soulard': 30396, 'saintlouis': 28332, 'protectivegloves': 25897, 'antwholesale': 2852, 'dataset': 9055, 'makoni': 20111, 'chitungwiza': 6697, 'conflicting': 7587, 'leek': 19031, 'bravenewworld': 5185, 'pollen': 25133, 'rva': 28189, 'andromedastrain': 2713, 'obscurescifirferences': 23058, 'emory': 11313, 'brandnew': 5166, 'twotoiletrolls': 33940, 'teabags': 32333, 'sainburys': 28326, '5litre': 1155, 'antenna': 2812, 'rockspringstshirts': 27933, 'customtshirts': 8818, 'customshirts': 8815, 'ops': 23477, 'rissia': 27830, 'speculate': 30538, 'sewn': 29230, 'realitychek': 26732, 'hokum': 15759, 'peddled': 24365, 'zarqa': 36731, 'stafford': 30809, 'disburse': 10011, 'x10': 36435, 'x100': 36436, 'nathan': 22047, 'farnham': 12348, 'carepackages': 6026, 'emergencykits': 11285, 'helpingpeople': 15462, 'impactinvesting': 16582, 'rencarlton': 27198, 'whatamigoingtodow': 35782, 'burberry': 5534, 'autotrader': 3554, 'ghanaians': 14075, 'visualizing': 35139, 'darkphotography': 9022, 'dslrguru': 10684, 'photographyislife': 24720, 'lovenotlooroll': 19725, 'dairyfarmers': 8931, 'ox': 23827, '5dayisolation': 1138, 'lasvegaslockdown': 18867, 'churn': 6782, 'cium': 6839, 'tangan': 32219, 'summore': 31662, 'mnfctring': 21249, 'bodily': 4860, 'lallu': 18770, 'ecnmic': 10964, 'bina': 4552, 'jine': 17782, 'koi': 18538, 'matlab': 20498, 'rahega': 26463, 'inuvik': 17275, 'icewireless': 16325, 'inseam': 17036, 'beatles': 4143, '10years': 177, 'molded': 21353, 'disposablefacemasks': 10150, 'fuking': 13616, 'slough': 29993, 'exploitationatitsfinest': 12054, 'sanitzfree': 28476, 'growout': 14754, 'hairoil': 14949, 'hairproblems': 14950, 'growouthairoil': 14755, 'haircare': 14943, 'haircaretips': 14944, 'naturalhairoil': 22085, 'dealoftheday': 9163, 'desylva': 9663, 'stylis': 31499, 'reused': 27619, 'athx': 3369, 'nnvc': 22572, 'codx': 7153, 'nvax': 22956, 'novn': 22840, 'nby': 22147, 'gril': 14663, 'tast': 32272, 'sxtc': 32048, 'blph': 4792, 'chainstore': 6405, 'foofighters': 13161, 'myhero': 21852, 'endorse': 11413, 'syop': 32094, 'thise': 32847, 'skimmer': 29884, 'lurk': 19832, 'sk': 29856, 'ondoor': 23320, 'dispiriting': 10141, 'bern': 4356, 'steakhouse': 31060, 'jm': 17795, 'cvnts': 8843, 'digitalads': 9860, 'digitalillustration': 9875, 'digitaldesigns': 9868, 'celheinstinodesigns': 6300, 'huang': 16081, 'equitably': 11616, 'coronago': 8042, 'lysozyme': 19892, 'chinesecommunistparty': 6673, 'psyching': 25986, 'agenda2030': 2130, 'supercomputer': 31719, 'gloving': 14252, 'lme': 19456, 'overdose': 23733, 'lockdownnigeria': 19539, 'gorey': 14426, 'madeintoronto': 19953, 'madeincanada': 19950, 'televise': 32450, 'stateattorneysgeneral': 30903, 'avacados': 3560, 'crumb': 8628, 'creedence': 8490, 'clearwater': 6965, 'coincide': 7179, 'sadtimes': 28268, 'upsettingtimes': 34557, 'helpothers': 15473, 'offerhelp': 23161, 'droppi': 10650, 'alltogether': 2439, 'pariah': 24126, 'weaning': 35531, 'goodmorningbritain': 14387, 'vermin': 34943, 'mbti': 20564, 'helena': 15436, 'safetynet': 28293, 'nieuws': 22482, 'elkbosje': 11223, 'clubquarantine': 7062, 'inte': 17143, 'reprimanded': 27302, 'frickindistant': 13478, 'succumbed': 31577, 'tacky': 32124, 'afterwork': 2101, 'keeponmoving': 18206, 'caturday': 6194, 'caturdaymorning': 6196, 'caturdaycuties': 6195, 'bnw': 4831, 'whitecat': 35882, 'whitecatsofinstagram': 35883, 'whitecatsrule': 35884, 'llabres': 19441, 'chavez': 6515, 'mckee': 20591, 'motive': 21561, 'coranovirus': 7952, 'democratshateamerica': 9464, 'wakeupamerica': 35303, 'shooter': 29489, 'despise': 9637, 'deportation': 9545, 'peoplegoing': 24458, 'emptiedin': 11351, 'repackage': 27234, 'bisaustralia': 4616, 'premature': 25475, 'missionaccomplished': 21185, 'thatgoodgood': 32647, 'badbunny': 3762, 'thingsamazonwontdeliver': 32816, 'kernel': 18263, 'pharm': 24657, 'spoofed': 30637, 'umpteenth': 34101, 'vermillion': 34942, 'fvm': 13708, 'confectionary': 7555, 'pla': 24886, 'octt': 23119, 'bicester': 4483, 'unbelievably': 34130, 'deniy': 9494, 'responsable': 27445, 'chairwoman': 6408, 'kingsbj': 18404, 'sbjunpacks': 28650, 'toulet': 33335, 'isitspringyet': 17438, 'nielsencga': 22477, 'imspoed': 16664, '45mins': 972, 'chartoftheweek': 6499, 'customervalue': 8811, 'jb': 17671, 'carpls': 6080, 'so14': 30158, 'so15': 30159, 'so16': 30160, 'so17': 30161, 'so18': 30162, 'so19': 30163, 'interspar': 17228, 'gaugeonfoods': 13850, 'reppin': 27289, 'hustled': 16205, 'trickster': 33598, 'cna': 7091, 'lakers': 18763, 'dnt': 10299, 'disarmament': 9999, 'sworn': 32042, 'customisable': 8812, 'theviewfromeurope': 32787, '24cts': 612, '2033620675': 507, 'ogunrinde': 23192, 'parkinson': 24137, 'ypo': 36679, 'liang': 19200, 'meng': 20800, 'ascendent': 3217, 'flouted': 12987, 'fijitimes': 12660, 'toying': 33368, 'lookie': 19639, 'emphasized': 11328, 'cmos': 7087, 'restrictedmovementorder': 27486, 'stopairingtrumpnow': 31262, '005': 5, 'niosh': 22523, 'scamaware': 28670, 'cussing': 8788, 'acknowledges': 1795, 'bor': 4979, 'pliz': 24990, 'cardflight': 5996, 'bluewave2020': 4807, 'penne': 24428, 'mepolitics': 20827, 'quantitatively': 26233, 'logarithmic': 19578, 'sideshow': 29688, 'gravitate': 14590, 'skipping': 29901, 'foreward': 13227, 'accts': 1754, 'idlib': 16383, 'covad19': 8304, 'craftspirits': 8400, 'whiting': 35897, 'whitingpetroleum': 35898, 'pexels': 24635, 'mortgagelender': 21518, 'animalrights': 2756, 'outsized': 23693, 'somone': 30349, 'chemistryresponds': 6583, 'njthanksyou': 22551, 'chemistrymatters': 6582, 'nha': 22432, '02890391225': 52, 'indigo': 16813, 'rono': 27988, 'dutta': 10796, 'paycut': 24293, 'manor': 20233, '2250': 571, 'layard': 18948, 'ilusion': 16504, 'finra': 12761, 'embassy': 11264, 'elisabetta': 11218, 'abrami': 1652, 'outgoing': 23658, 'whitmer': 35901, 'bloomfield': 4779, 'harmless': 15164, 'exploded': 12049, 'retro': 27596, 'vincenzo': 35057, 'healthandfitness': 15316, '59m': 1130, '36m': 837, 'gobeba': 14294, 'naturaldeodorantthatworks': 22081, 'crueltyfree': 8622, 'veganbeauty': 34866, 'muntharika': 21759, 'junction': 17958, 'westseattle': 35738, 'actresponsibly': 1841, 'fathimahypermarket': 12394, 'sint': 29813, 'annaparochie': 2773, 'friesland': 13498, 'onlyfoolsandhorses': 23381, 'supoort': 31782, 'maskon': 20429, 'thegreattoiletpaperhunt': 32695, 'superspreader': 31769, 'votebluenomatterwho2020': 35213, 'retai': 27513, 'christianportermp': 6750, 'fairwork': 12241, 'jobkeeper': 17807, 'penelope': 24418, 'splendid': 30610, 'ciudadano': 6838, 'brasile': 5179, 'muestra': 21686, 'sorpresa': 30382, 'positiva': 25241, 'observar': 23059, 'medidas': 20704, 'sanitarias': 28450, 'adoptadas': 1958, 'supermercado': 31761, 'contraste': 7834, 'situaci': 29838, 'solemos': 30299, 'discriminar': 10057, 'pero': 24528, 'tenemos': 32490, 'mucho': 21677, 'aprender': 3015, 'paraguay': 24091, 'dijo': 9900, 'safespace': 28287, 'mentoring': 20822, 'shannon': 29311, 'bankrate': 3900, 'dmarts': 10291, 'naturebasket': 22094, 'fruitstalls': 13545, 'powai': 25322, 'nasik': 22036, 'vashimarket': 34836, 'vegetablevendors': 34878, 'indiadoingwell': 16781, 'oneworldunitedworld': 23337, 'usdjpy': 34629, 'gbpusd': 13883, 'usdcnh': 34628, 'unpoppable': 34411, 'meatfreemonday': 20650, 'poisonous': 25089, 'fgnews': 12596, 'ukwheat': 34077, 'mosul': 21536, 'enterances': 11521, 'mosul2020': 21537, 'hairnet': 14948, 'rioter': 27789, 'kritesh': 18610, '8097675586': 1366, 'endcoronavirustogether': 11396, 'kriteshenterprises': 18611, 'chlorinedioxide': 6702, 'chandigarh': 6432, 'rashan': 26611, 'bittertruth': 4635, 'contamos2020': 7782, 'wecount': 35600, 'bankrupting': 3904, 'affluenza': 2060, 'adnan': 1951, 'sleiman': 29963, 'industralists': 16842, 'pkr': 24882, 'pakwheels': 23936, 'chickenbreasts': 6628, 'troubleshoot': 33652, 'responsibili': 27447, 'monatary': 21376, 'pony': 25155, 'odp7': 23135, 'hahahahahaha': 14934, 'persuade': 24566, 'tpapocalypse': 33373, 'upp': 34544, '2162565118': 545, 'fruittree': 13546, 'subscriptionbox': 31537, 'travelagency': 33528, 'delraybeachflorida': 9434, 'costarica': 8201, 'disneycruise': 10118, 'rigging': 27764, 'leveller': 19160, 'lates': 18882, 'algerian': 2362, 'n50': 21904, 'n500': 21905, 'garrett': 13816, 'callaway': 5791, 'midmo': 20999, 'introverting': 17270, 'standby': 30849, 'airasia': 2229, 'letsbesafe': 19132, 'cleanyourhandsregularly': 6953, 'maskindia': 20424, 'majeures': 20074, 'goer': 14319, 'penang': 24413, 'phase2': 24669, 'juststayathome': 17999, 'dudukrumah': 10724, 'textscore': 32569, 'companywatch': 7408, 'howmuchtoiletpaper': 16046, 'bison': 4621, 'disposablefacemask': 10149, 'leaped': 18996, '241': 604, 'sean': 28896, 'outoftouchwithreality': 23678, 'aquavit': 3033, 'oslo': 23588, 'ndverksdestilleri': 22190, 'vm': 35164, 'botswana': 5042, 'preservative': 25521, 'bladder': 4678, 'oprah': 23475, 'releasethebuttholecut': 27112, 'berniebros': 4360, 'reddit': 26890, 'dadjokes': 8899, 'maxie': 20525, 'alphabetical': 2468, 'digitalsignage': 9893, 'bizhour': 4645, 'flock': 12960, 'ferozepur': 12555, 'implementiom': 16602, 'baidu': 3795, '100bn': 133, 'helpingeachother': 15459, 'grief': 14653, 'kristo': 18609, 'cryowulf': 8645, 'fleecing': 12922, 'nm02': 22563, '783': 1332, 'bedridden': 4189, 'ssdi': 30769, 'beshear': 4377, 'cameron': 5834, 'kentuckian': 18249, 'mfers': 20921, 'embezzling': 11267, 'dory': 10484, 'proactively': 25682, 'solace': 30285, 'fy20': 13719, 'dhamaka': 9752, 'seatr': 28917, 'psc': 25972, 'insisting': 17055, 'erc': 11629, 'sleepwalking': 29959, 'nutella': 22941, 'cavabienaller': 6212, 'foodwales': 13155, 'y2k': 36492, 'itsrealthistime': 17535, 'falloutshelter': 12268, 'comercio': 7298, 'a1c': 1559, 'monkeybar': 21421, 'onestopshopping': 23332, 'wilton': 36015, 'tritax': 33627, 'bbox': 4085, 'fright': 13501, 'teva': 32558, 'revel': 27632, 'winstonsalem': 36058, 'kangaroo': 18075, 'chinav': 6669, 'ogden': 23186, '3075': 754, 'airsoft': 2251, 'closin': 7037, 'fortheculture': 13279, 'airsofter': 2252, 'speedqb': 30549, 'speedsoft': 30550, 'irritating': 17417, 'searsroebuckcatalog': 28905, 'businesspeople': 5608, 'viel': 35017, 'videolinkki': 35013, 'mallinnukseen': 20140, 'tilanteesta': 32994, 'jossa': 17883, 'ihminen': 16444, 'ysk': 36684, 'isee': 17426, 'tyypillisess': 33971, 'myym': 21891, 'tilassa': 32996, 'hyllyjen': 16251, 'analysing': 2666, 'piloted': 24808, 'acquaintance': 1804, 'sthelensunited': 31143, 'therewithyou': 32760, 'gauntlet': 13854, 'thanitizer': 32593, 'ets': 11771, 'uncompetitive': 34153, 'osm': 23589, 'keepsafekeepwell': 18211, 'bravery': 5187, 'redesigning': 26903, '408': 918, 'aircanada': 2233, 'pricego': 25589, 'mia': 20939, 'shoppercentric': 29532, 'rayner': 26650, 'eme': 11275, 'boubies': 5050, 'perezhilton': 24485, 'healthvana': 15345, 'handvana': 15067, 'hydroclean': 16225, 'swissforextrading': 32027, 'chiasson': 6618, 'handstoyourself': 15066, 'mccall': 20573, 'impct': 16587, 'civilizd': 6849, 'mjrity': 21222, 'shlvs': 29472, 'sems': 29088, 'lke': 19436, '4l': 1019, 'alliving': 2424, 'healthyhome': 15354, 'albertson': 2319, 'hinakhan': 15641, 'convened': 7857, 'kenan': 18237, 'magistrate': 19996, 'mahon': 20027, 'justinrivera': 17986, 'holla': 15778, 'eldest': 11164, 'anchor': 2686, 'nowwehavefood': 22855, 'dns': 10298, 'giveifyoucan': 14167, 'fountain': 13326, 'indulgent': 16837, 'retailinnovation': 27537, 'retailindustry': 27535, 'futureofretail': 13699, 'minh': 21101, 'phu': 24730, 'santoshhospitals': 28503, 'santoshmedicalcollege': 28504, 'ncr': 22169, 'lifeatsantosh': 19245, 'rohingya': 27947, 'variability': 34823, 'edgewater': 11031, 'aprilfools': 3020, 'beresolute': 4342, '70ml': 1282, 'chinesevirus2020': 6680, 'phillipsvision': 24689, 'goverments': 14467, 'racer': 26421, 'chucked': 6767, 'raptor': 26603, 'oiler': 23216, 'whistler': 35880, 'redvelvet': 26939, 'feminist': 12542, 'lgbta': 19190, 'vietnamleavesnoonebehind': 35023, 'ypbmf': 36677, 'ypbmfchampion': 36678, 'stayhomehealthy': 30986, 'glamorous': 14189, 'diva': 10235, 'duu': 10800, 'sportsbooks': 30651, 'nfldraftnews': 22415, 'clareb': 6889, 'capturing': 5976, 'contemporary': 7790, 'quaranturn': 26279, 'oilrig': 23232, 'oilcompanies': 23214, 'olympia': 23283, 'shied': 29419, 'dwp': 10814, 'ryu': 28210, '19with': 423, 'spillover': 30581, 'gustin': 14869, 'bajaj': 3807, 'italiano': 17503, 'deutsch': 9698, 'lefran': 19038, 'croatian': 8566, 'varazdin': 34820, 'macau': 19910, 'westpac': 35734, '2mrw': 723, '4b': 1008, '900m': 1461, 'austrac': 3501, 'divs': 10265, 'calcs': 5760, 'wbc': 35507, 'beautician': 4151, 'distincing': 10196, 'realization': 26734, 'buti': 5631, 'nalang': 21967, 'talaga': 32182, 'bukas': 5484, 'yun': 36697, 'ito': 17522, 'malapit': 20118, 'bahay': 3790, 'loominh': 19647, 'alwar': 2511, 'rajasthan': 26494, 'varun': 34831, 'movietwit': 21599, 'busineess': 5590, 'khamis': 18313, 'mushait': 21783, 'becase': 4167, 'indilens': 16814, 'anez': 2721, 'econimies': 10985, 'emiratis': 11303, 'considiring': 7664, 'manx': 20251, '194': 374, 'alcohal': 2328, 'doj': 10358, 'kocakes': 18528, 'cakequeen': 5755, 'fightcorona': 12636, 'subpoena': 31529, 'sharplyy': 29343, 'wonderr': 36177, 'whyy': 35945, '828': 1389, 'suspiciously': 31930, 'immensity': 16549, 'zamaqongo': 36722, 'djsbu': 10281, 'verifiably': 34931, 'greenwashing': 14635, 'documenting': 10324, 'bebore': 4164, 'enhancer': 11471, '852': 1407, 'sentenced': 29137, 'baht': 3794, 'jade': 17589, '51st': 1076, 'kalanchoe': 18046, 'sqft': 30730, 'pandemiconomy': 23997, 'rabi': 26412, 'deficity': 9324, 'abound': 1644, 'unborn': 34132, 'begets': 4227, 'ruiru': 28126, 'runda': 28143, 'tutashindacorona': 33883, 'megastore': 20740, 'poveglia': 25320, 'mitchmcconnell': 21208, 'greasy': 14598, 'haired': 14947, 'quieter': 26351, 'tepid': 32503, 'duke': 10733, 'dsouza26': 10687, 'warzone': 35420, 'kshs': 18623, '6500': 1216, 'hostpital': 15972, 'hahahahaha': 14933, 'relay': 27105, 'toiletpaperrelay': 33170, 'medicalmarijuana': 20688, 'scrum': 28854, 'fetching': 12570, 'benifits': 4327, 'pmsir': 25046, 'sandart': 28426, 'puri': 26105, 'dillon': 9906, 'fedexground': 12493, 'lancslive': 18799, 'ambler': 2557, 'vomiting': 35198, 'ddarmers': 9141, 'whew': 35850, '81oz': 1379, 'finalised': 12690, 'brochure': 5349, 'queencreek': 26306, 'wuhanvir': 36400, '469': 980, '544': 1090, '8316': 1391, '972': 1524, '8224': 1385, '214': 544, '607': 1177, '8437': 1398, 'andersonsf': 2699, 'gorilla': 14428, 'delitakeout': 9413, 'affirming': 2056, 'faithfully': 12246, 'ontarioenergy': 23396, 'nbi': 22141, 'emis': 11304, 'vigour': 35036, 'preventcoronavirus': 25566, 'faraz': 12312, 'rak': 26500, 'nwt': 22964, 'whitney': 35902, 'jakob': 17607, 'toiletpeopleart': 33181, 'artistsoninstagram': 3188, 'installationart': 17090, 'horningsea': 15933, 'stank': 30857, 'raunchy': 26632, 'dutty': 10798, 'harassment': 15134, 'sheikh': 29378, 'imra': 16659, 'proliferating': 25785, 'mule': 21705, 'dearer': 9170, 'datapoint': 9049, 'nspx': 22880, 'trbo': 33551, 'decn': 9247, 'nbdr': 22139, 'underwrite': 34228, 'passuello': 24204, 'avengersassemble': 3574, 'devi': 9716, 'missedthat': 21180, 'almena': 2449, 'atvthw': 3440, 'platedemic': 24928, 'abides': 1623, 'tolerance': 33197, 'forecourt': 13212, 'stephe': 31097, 'newsradio': 22380, 'monologue': 21423, 'ausgangssperren': 3484, 'highers': 15598, 'kolata': 18543, 'icc': 16317, 'alyssa': 2517, 'defireathome': 9334, 'wahab': 35273, 'amshow': 2642, '27x': 666, 'parisian': 24130, 'ruben': 28103, 'nazario': 22126, 'quirk': 26363, 'delf': 9387, 'omni': 23304, 'warmly': 35398, 'kryptonite': 18619, 'fillup': 12671, 'conferances': 7556, 'vox': 35223, 'heroine': 15551, 'lettercarriers': 19150, 'covit19': 8343, 'xdd': 36449, 'levelling': 19161, 'categorised': 6170, 'whaddya': 35775, 'northjersey': 22717, 'billdesk': 4538, 'paytm': 24313, 'phonepay': 24708, 'meeseva': 20726, '686': 1236, 'stranding': 31354, '40m': 924, 'jeopardising': 17715, '120m': 212, 'machination': 19916, 'makhura': 20104, 'beavis': 4160, 'igers': 16419, 'throughput': 32924, 'springtime': 30709, 'bbcnewsnight': 4078, 'propagation': 25825, 'nexxo': 22409, '329': 789, 'danyel': 9007, 'surrency': 31879, 'powerhandz': 25337, 'stripe': 31426, 'raiderstrategy': 26473, 'rsecon': 28078, 'plainly': 24898, 'isolationmode': 17475, 'fmradio': 13020, 'waybackwithkmac': 35499, 'memesiveseen': 20786, 'elemental': 11199, 'fiendishly': 12621, 'resistant': 27397, 'complicate': 7466, 'hilfiker': 15629, 'fighthunger': 12645, 'panicbuyingtoiletpaper': 24026, 'dreamies': 10605, 'seder': 28969, 'cashed': 6123, 'lexingtonva': 19178, 'dismantle': 10107, 'momentary': 21367, 'rebooked': 26786, 'douchebag': 10500, 'nidhi': 22474, 'toor': 33239, 'patelshrewsbury': 24227, '2gb': 705, '70days': 1281, 'palmsunday2020': 23954, 'cranny': 8419, 'conversion': 7870, 'duelling': 10727, 'cancelstudentdebt': 5879, 'circumventing': 6822, 'refilled': 26963, '316m': 779, 'arounds': 3135, 'issuesofpandemic': 17491, 'iseestupidpeople': 17427, 'torn': 33272, 'isi': 17434, 'controll': 7847, 'eeriest': 11075, 'unanticipated': 34114, 'violently': 35079, 'overreact': 23767, 'trippled': 33626, 'chrisingham': 6743, 'inghamfamily': 16950, 'pervert': 24575, 'sleepover': 29957, 'cocoonmaldives': 7143, 'trumptariffs': 33735, 'predictable': 25446, 'leanintothegood': 18993, 'indiebrand': 16809, 'lpol': 19763, 'notforeverjustfornow': 22768, 'tahoe': 32143, 'dinning': 9935, '3min': 883, 'interpreting': 17221, 'raced': 26420, 'sandiego': 28430, 'onlinedelivery': 23354, 'webster': 35592, 'gob': 14290, 'exigency': 11980, 'trapping': 33514, 'unemploymentbenefits': 34253, 'getyourmoney': 14056, 'tourhomes': 33339, 'risinggunsales': 27816, 'presently': 25519, 'hashtags': 15199, 'wecansupply': 35597, 'vikanleverera': 35038, 'svenska': 31953, 'leveranser': 19167, 'gigi': 14122, 'intubated': 17272, 'sedative': 28968, 'hitesh': 15687, 'palta': 23958, 'acronym': 1812, 'frontlinersph': 13531, 'variation': 34825, 'basiji': 3998, 'stiglich': 31154, 'canton': 5926, 'vaud': 34840, 'jena': 17707, '110k': 184, 'thuringia': 32945, 'mandatorymasking': 20181, 'maskenpficht': 20421, 'homemademasks': 15837, 'tarek': 32248, 'aliahmad': 2372, 'ferragu': 12557, 'dickinson': 9802, 'meritasusa': 20858, 'independentlawfirms': 16772, 'subsitute': 31553, 'rifle': 27759, 'powpow': 25347, '951': 1507, 'ufcw951': 34011, 'contradictory': 7829, '2metre': 718, 'carriage': 6083, 'eac': 10839, 'christopherwalken': 6755, 'pawquafina': 24287, 'iz': 17567, 'purrified': 26120, 'purr': 26118, 'splint': 30612, 'hooman': 15903, 'pug': 26047, 'dontbeanasshole': 10418, 'ourseniorsdeservebetter': 23633, 'betelnut': 4401, 'moresby': 21488, 'truue': 33761, 'quaratine': 26280, '174': 329, 'delgasprices': 9389, 'naifa': 21947, 'delco': 9379, 'chk': 6699, 'jamestown': 17624, 'koolaid': 18554, 'corsair': 8183, 'comm': 7321, 'tectonic': 32395, 'vryburg': 35230, 'degradable': 9355, 'coreychen': 7963, 'coronathailand': 8104, 'michelman': 20954, 'lisce': 19361, '19italia': 416, 'fistr': 12824, 'counterintuitively': 8264, 'afoot': 2072, 'philanthropic': 24678, '01449': 29, '77400': 1326, 'y11s': 36490, 'y13s': 36491, 'leaver': 19019, 'prom': 25794, 'buymo': 5672, 'svcs': 31952, 'jeopardizing': 17718, 'northridge': 22723, 'tyrant': 33965, 'itsthelittlethings': 17536, 'individualistic': 16823, 'airdrop': 2239, 'nocoronavirus': 22590, 'shorting': 29570, 'weaponized': 35533, 'alluded': 2441, 'reffering': 26960, 'urbansketch': 34582, 'affectiva': 2046, '40mins': 925, 'fairwaymarket': 12239, 'osterholm': 23595, 'cholesterol': 6721, 'hearthealth': 15374, 'phoned': 24707, 'dieforthedow': 9822, 'dying4wallstreet': 10823, 'nonsensically': 22657, 'totaljerks': 33305, 'abhimanyu': 1618, 'yas': 36523, 'lass': 18849, 'prue': 25964, 'coincidental': 7182, 'groat': 14685, 'technode': 32388, 'brigade': 5288, 'cfprobs': 6382, 'missingthings': 21183, 'nervously': 22282, 'clockwise': 7015, 'heroism': 15552, 'tutocovers': 33885, 'everyoneinthistogether': 11856, 'hauskahome': 15230, 'buyahouse': 5652, 'acceptedoffer': 1715, 'wafer': 35264, 'implores': 16610, 'bombardment': 4913, 'gateway': 13841, 'robocallers': 27905, 'nickname': 22469, 'embarked': 11258, 'terrace': 32517, 'privacylaw': 25661, 'informationgovernance': 16926, 'escarpment': 11666, 'ontariospirit': 23397, 'naturelovers': 22096, 'pharmacychecker': 24666, 'oliveoil': 23272, 'evoo': 11888, 'acietedeoliva': 1788, 'aove': 2881, 'deliverydrivers': 9425, 'socialgood': 30214, 'provincewide': 25946, 'borno': 5008, 'constricting': 7691, 'bordertown': 4988, 'pinak': 24815, 'ranjan': 26579, 'chakravarty': 6411, 'joshmchipster': 17880, 'cloutmouse': 7052, 'buster': 5621, 'teamkentucky': 32351, 'rewrite': 27682, 'buyerpersonas': 5662, 'readapt': 26689, 'grounding': 14737, 'objection': 23042, 'tireddaughter': 33052, 'hamsterkaufschlager': 15022, 'chargeback': 6474, 'rumbo': 28136, 'protejete': 25910, 'increment': 16753, 'shy': 29656, 'bestsellingauthor': 4397, 'memoir': 20789, 'wrongplacewrongtime': 36362, 'locale': 19485, 'recee': 26805, 'womenshistorymonth': 36168, 'hernandez': 15547, 'gatashe': 13839, 'cheaply': 6529, 'radiate': 26440, 'blas': 4694, 'fwyd': 13714, 'consolidated': 7674, 'pulpandpaper': 26055, 'ilr': 16503, 'icelandic': 16324, 'pooled': 25161, 'binary': 4553, 'positve': 25252, 'limeade': 19303, 'cigna': 6794, 'humana': 16123, 'insurancenews': 17133, 'pricelessaycalling': 25596, 'baka': 3811, 'nyo': 22990, 'naranasan': 22012, 'isang': 17423, 'kahig': 18034, 'tuka': 33825, 'coronahumor': 8047, 'refo': 26980, 'swabtek': 31961, 'lawenforcement': 18932, 'americaworkstogether': 2588, 'abhorent': 1620, 'somes': 30338, 'typicaltory': 33959, 'kwara': 18675, 'walloped': 35331, 'parksandrec': 24140, 'marin': 20300, 'uvlight': 34710, 'alb': 2306, 'sqm': 30731, 'nev': 22318, 'energize': 11430, 'cfc': 6372, 'idled': 16382, 'yubanet': 36688, 'ncpol': 22168, 'consisting': 7670, 'dailymail': 8920, 'panamasolidario': 23968, 'capitalistic': 5953, 'altar': 2482, 'unquenched': 34426, 'trinity': 33615, 'inhumanity': 16974, 'depravity': 9550, 'financialtimes': 12722, '400ml': 908, 'vvhat': 35252, 'vvant': 35250, 'svvimming': 31957, 'vvell': 35251, 'westlondon': 35728, 'saltandpepper': 28378, 'bootsthechemists': 4974, 'r97': 26407, '21dayslockdownsouthafrica': 556, 'traceable': 33400, 'broadest': 5343, 'leapfrogging': 18997, 'blockaded': 4751, 'sobras': 30182, 'juelztheking': 17931, 'muddy': 21681, 'mp3': 21610, 'wav': 35492, 'trackouts': 33409, '008': 8, '2382': 597, '1339': 245, 'overstuffed': 23787, 'wrestlemania36': 36344, 'yey': 36580, 'mobilized': 21285, 'paula': 24270, 'scouser': 28809, 'tysm': 33967, 'omelet': 23296, 'zed': 36742, 'barra': 3957, 'jointly': 17854, '99k': 1538, 'nationalfragranceweek': 22054, 'scumbagcompanies': 28864, 'judson': 17930, 'kauffman': 18139, 'looby': 19631, 'wsismm': 36368, 'kalie': 18049, 'shorr': 29557, 'arcticmonkeys': 3064, 'thanksmom': 32613, 'youruaualtable': 36660, 'approvedtravel': 3002, 'thankyougrocerystoreworkers': 32626, 'turnkeyadventures': 33875, 'gohoos': 14328, 'uva': 34708, 'wahoowa': 35277, 'procted': 25705, 'fictitious': 12614, 'sars2': 28540, 'fakelimits': 12253, 'springing': 30706, 'holysaturday': 15796, 'hmcts': 15705, 'indonesian': 16828, 'archipelago': 3056, '2pts': 730, 'indpol': 16831, 'serame': 29161, 'taukobong': 32288, 'powerbusiness': 25330, 'justnotfeesable': 17993, 'imoffshopping': 16574, 'decease': 9210, 'kohima': 18536, 'jotsoma': 17885, 'vauxhall': 34844, 'reception': 26816, 'smsf': 30089, 'goddaughter': 14309, 'woodmac': 36188, 'edgardo': 11028, 'gelsomino': 13922, 'taftan': 32135, 'sukkur': 31632, 'porch': 25196, 'fcaa': 12435, '1917': 364, 'amazonvideo': 2548, 'stayhomeeaster': 30983, 'realoverthis': 26748, 'rad': 26438, 'molecular': 21356, 'chastising': 6505, 'organising': 23541, 'gocarona': 14302, 'duma': 10737, 'getheathy': 14034, '748': 1304, 'ukhad': 34053, 'liya': 19429, 'deke': 9370, 'pappu': 24076, '10mbd': 169, 'patenting': 24230, 'valiquette': 34761, 'chuckled': 6769, 'marketbasket': 20313, 'religiousliberty': 27136, 'novice': 22838, 'thronging': 32919, 'discriminating': 10059, 'usemask': 34643, 'tripexperts': 33620, 'alexhospitality': 2355, 'nwanews': 22960, 'parrishable': 24152, 'reconcile': 26843, 'pasteurisation': 24212, 'bacteri': 3752, 'everyrhing': 11860, '40am': 921, 'bossman': 5028, 'blowjob': 4789, 'igotthetolietpaperplug': 16436, 'thisislegalaid': 32852, 'scamprevention': 28678, 'trailing': 33444, 'tpocalypse': 33384, 'borrowed': 5013, 'upright': 34549, '719': 1288, '7554': 1313, 'perceive': 24477, 'babu': 3696, 'tikegi': 32989, 'brazos': 5196, 'subaru': 31507, 'woodstock': 36191, 'lakemfa': 18762, 'extraspecial': 12123, 'ooin': 23412, 'dolly': 10372, 'parton': 24178, 'whitworth': 35905, 'wethe4th': 35745, 'negligent': 22243, 'willfull': 36001, 'itsnotaboutyou': 17529, 'interceptor': 17174, 'tamiko': 32203, 'gastrointestinal': 13837, 'thankafarmer': 32596, 'randomization': 26564, 'dimas': 9911, 'envious': 11555, 'needthebasics': 22228, 'opal': 23419, 'since1832': 29782, 'bloggersrt': 4761, 'bonedrygrocerystores': 4925, 'cantfindshit': 5924, 'deathbeforebeans': 9175, 'fun2020diaries': 13638, 'bostonian': 5032, 'shockingly': 29477, 'speedup': 30551, '729': 1297, 'annabel': 2770, 'insidefgould': 17044, 'insideatkins': 17043, 'proudtobuildwhatmatters': 25931, 'lawful': 18934, 'stabilising': 30786, 'tequila925': 32504, 'divavodka': 10236, 'dalmore62': 8952, 'buckabeer': 5443, 'incidentally': 16706, 'repetition': 27252, 'addressdynamic': 1885, 'matoshree': 20500, 'thackeray': 32581, 'heiny': 15426, '989thebull': 1532, 'fitzhappens': 12836, 'supermarketqueue': 31746, 'como': 7396, 'day29': 9112, 'pepys': 24475, 'disconnection': 10032, 'optus': 23499, 'hbor': 15275, 'harborside': 15137, 'cannabisnewsdd': 5903, '3wk': 902, 'fcked': 12444, 'thinkingaboutothers': 32827, 'eugh': 11784, 'wedge': 35603, 'comprehension': 7488, 'neverbiden': 22323, 'stooge': 31255, 'bernieforpresident': 4361, 'esteem': 11725, 'greedytarget': 14618, 'targetistargetingcoronaviruspandemic': 32252, 'hollylogan': 15785, 'hahaholly': 14935, 'hollyhittinhollywood': 15784, 'hmlthestar': 15709, 'imakepeoplelaughforfree': 16519, 'costcomeme': 8206, 'ificouldturnbacktime': 16403, 'doorbell': 10466, 'tindie': 33031, 'hollaa': 15779, 'walkout': 35322, 'egghunt2020': 11104, 'bilyonaryofeatures': 4548, 'swindon': 32018, 'cognitive': 7165, 'dissonance': 10177, 'soylentgreen': 30456, 'itspeople': 17534, 'endoftheworld': 11410, 'chic': 6620, 'corridor': 8176, 'uhmm': 34027, 'phoenixrealtor': 24703, 'realestatebroker': 26710, 'realestateinvesting': 26711, 'economyslowdown': 11010, 'economicslowdown': 11003, 'phoenixarizona': 24701, 'wickedly': 35951, 'improper': 16644, 'garnishment': 13815, 'escorted': 11670, 'fraservalley': 13385, 'roasting': 27889, 'untimely': 34484, 'defists': 9335, 'vulgories': 35238, 'prejudiced': 25471, 'sharif': 29331, 'shakira': 29279, 'locksouthafricadown': 19567, 'generationalmalpractice': 13945, 'trademarked': 33415, 'markey': 20349, 'blip': 4738, 'derelict': 9574, 'crunching': 8633, 'rebounding': 26792, 'bkk': 4652, '22mar': 580, '12apr': 225, 'crux': 8643, 'virusoutbreak': 35112, 'dw': 10803, 'saputo': 28515, 'anf': 2722, 'thuisisolatie': 32939, 'sanzi': 28507, 'keepdistance': 18192, 'adphc': 1969, 'nothingleft': 22779, 'uglier': 34021, 'southeastern': 30425, 'wyoming': 36431, 'roving': 28050, 'dsg9mujuhn': 10682, 'downplays': 10534, 'selkirk': 29059, 'daredevil': 9012, 'hodgens': 15743, 'archiveday': 3060, 'protesting': 25915, 'circu': 6812, 'lebanese': 19023, 'commence': 7330, 'reign': 27053, 'irrespective': 17407, 'edmotonians': 11052, 'rya': 28200, '023': 49, '8060': 1364, '4223': 940, 'steaming': 31065, 'chili': 6643, 'zim': 36781, '8200': 1381, '11bn': 203, 'blubettysa': 4795, 'corporateevent': 8154, 'browardcounty': 5381, 'palmbeachcounty': 23951, 'fortlauderdalecaricatureartist': 13288, '954': 1511, '695': 1242, '6578': 1219, 'fwd': 13710, 'hockey': 15741, 'ceidy': 6286, 'jx': 18009, 'porro': 25204, 'lucked': 19787, 'inkedorganics': 16993, 'letsgetthisbread': 19141, 'yeetthiswheat': 36546, 'buttwatts': 5646, 'glutenpoweredglutes': 14263, 'wcc': 35510, 'hangingstone': 15081, 'sagd': 28306, 'undrstnd': 34239, 'tking': 33077, 'whch': 35809, 'prdcts': 25413, '1977': 393, 'salty': 28380, 'chew': 6609, 'lockdownkenya': 19531, 'downtownkc': 10543, 'stockvisibility': 31232, 'supportingretail': 31812, 'meghan': 20741, 'salle': 28368, 'kyw': 18693, 'abramovich': 1653, 'millennium': 21060, 'poolsides': 25162, 'visualizes': 35138, 'worthit': 36308, 'ussteel': 34670, 'obscenity': 23056, 'oscar': 23581, 'fairfield': 12231, 'wearefairfield': 35550, 'godbless': 14307, 'misspelling': 21194, 'vague': 34737, 'islamic': 17443, '0540556339': 77, 'ramnavami': 26539, 'shaheenabagh': 29269, 'carding': 6002, 'rohini': 27948, 'pitampura': 24854, 'marktuan': 20357, 'raja': 26491, 'kali': 18048, 'confounded': 7589, 'sonny': 30361, '925m': 1488, 'foy': 13341, 'navycapital': 22120, 'vccirclepremium': 34853, 'incited': 16708, 'polluted': 25136, 'kilburn': 18365, 'kom': 18547, 'meer': 20723, 'bij': 4524, 'tuning': 33847, 'dustmask': 10789, 'dutchie': 10793, 'comedysong': 7293, 'dharavi': 9754, '147': 264, '2kg': 712, 'breakspot': 5220, 'clothed': 7043, 'embark': 11257, 'evolved': 11885, 'letdie': 19128, 'sadday': 28256, 'nomorepeanutbutter': 22633, 'adaywithoutapeanutbutter': 1869, 'theonlythingitrulycareabout': 32731, 'asiegercares': 3247, 'asieger': 3246, 'raina': 26478, 'macintyre': 19922, 'aom': 2877, 'cannt': 5914, 'risj': 27821, 'iin': 16454, 'foodgrains': 13105, 'connectedness': 7620, 'epu': 11601, 'ssrn': 30777, 'shorona': 29556, 'zines': 36788, 'organizing': 23547, 'cra': 8385, 'crammed': 8409, 'ontariodairyboard': 23395, 'quarantineday5': 26259, 'hitchhikersguidetothegalaxy': 15685, 'thesquids': 32778, 'joeyspatafora': 17834, 'tolietpaperemergency': 33202, 'primeday2020': 25618, 'graft': 14525, 'berk': 4350, 'cretin': 8508, 'siren': 29821, 'hahahah': 14931, 'totalchaos': 33301, 'bobo': 4849, 'naive': 21958, 'landfill': 18805, 'gabon': 13729, 'pangolin': 24016, 'falter': 12273, 'ventes': 34910, 'flanchent': 12874, 'avec': 3571, 'theultimatechoice': 32785, 'redcross': 26889, 'theageofcoronavirus': 32657, 'fuckthecoronavirus': 13589, 'igettowipemyass': 16425, 'peopleoverprofits': 24462, 'pharamacy': 24656, 'goair': 14286, 'logistician': 19589, 'pang': 24015, 'nowreading': 22852, 'seneshaw': 29108, 'tamru': 32212, 'bart': 3973, 'minten': 21138, 'igc': 16415, 'haih': 14937, 'mtherfkers': 21663, 'pursuing': 26125, 'marvin': 20397, 'snowing': 30147, 'swkzwespsp': 32035, 'foregone': 13214, 'revoking': 27667, 'perscription': 24540, 'canale': 5863, 'delponti': 9432, 'sergienko': 29165, 'semiconductorsales': 29085, 'semiconductorequipment': 29084, 'analytic': 2670, 'delooroll': 9430, 'shamblesstayathome': 29290, 'packthepantries': 23882, 'syian': 32061, 'cpri': 8376, 'groveries': 14744, 'coronahassle': 8043, 'miltimore': 21072, 'flatline': 12891, 'sashaying': 28545, 'elegantly': 11194, 'scanky': 28686, 'smartkas': 30034, 'involvement': 17328, 'seeding': 28977, 'saskag': 28547, 'apas': 2887, 'urt': 34600, 'extraneous': 12118, 'nanny': 21999, 'massage': 20449, 'ensue': 11509, 'croix': 8572, 'slamming': 29931, 'restraining': 27482, 'blindly': 4733, 'natsec': 22077, 'unga': 34289, 'bae': 3772, 'prayerfully': 25399, 'penney': 24430, '5lb': 1153, 'matzah': 20514, 'ssc': 30767, 'ufm': 34014, 'hydroxychroloquine': 16238, 'n145': 21897, 'priceofoil': 25597, 'whith': 35895, 'silverlining': 29745, 'oper': 23439, 'kuehn': 18636, 'ronald': 27983, 'gorsline': 14433, 'blake': 4680, 'hurshell': 16191, 'statelaw': 30907, 'eft': 11097, 'oliver': 23273, 'alignment': 2383, 'digitalcollaboration': 9866, 'qfc': 26187, 'messager': 20874, 'ssb': 30766, 'epid': 11588, 'simulating': 29772, 'intraocular': 17258, 'wer': 35693, 'denn': 9497, 'werk': 35701, 'gestern': 14020, 'nachmittag': 21926, 'konnten': 18552, 'anwohner': 2856, 'innen': 17001, 'stadtteil': 30802, 'praunheim': 25393, 'frankfurt': 13375, 'diese': 9826, 'aktion': 2286, 'bestaunen': 4386, 'daf': 8903, 'verantwortlich': 34925, 'unklar': 34365, 'danke': 8996, 'theiss': 32706, 'zusendung': 36844, 'bild': 4533, 'mak': 20081, 'lemieux': 19085, 'econlog': 10986, 'quarantinewatchparty': 26274, 'tauranga': 32291, 'hideous': 15590, 'barriefoodbank': 3967, 'ferr': 12556, 'staysafequ': 31028, 'tpsearch': 33387, 'vermonter': 34945, 'svpol': 31956, 'cras': 8424, 'hols': 15792, 'scottcpeterson': 28800, '4hours': 1015, '1of': 443, 'vodk': 35177, 'pew': 24633, 'susceptibility': 31915, 'gall': 13759, 'corporationssuck': 8160, 'alok': 2457, 'anthropology': 2817, 'purity': 26107, 'sneering': 30122, 'bowing': 5078, 'fbdoyzqhci': 12430, 'rememberinnovember': 27167, 'incompetentbuffoon': 16725, 'justwashyourhands': 18004, 'noi': 22612, 'paghiamo': 23899, 'carta': 6096, 'credito': 8480, 'satispay': 28560, 'molti': 21360, 'acquisti': 1809, 'desolation': 9629, 'boredinthehouse': 4994, 'mmo': 21243, 'marine': 20303, 'cftc': 6384, 'walton': 35348, 'defuniak': 9344, 'leilanijordan': 19077, 'coronachallenge': 8018, 'kaizer': 18039, 'cg': 6385, 'profitero': 25745, 'pimping': 24812, 'sarbananda': 28527, 'sonowal': 30363, 'pricerise': 25598, 'monika': 21413, 'wingate': 36044, 'oeb': 23139, 'oversees': 23778, 'elexion': 11207, 'kansan': 18082, 'essentialworkerwage': 11708, 'sofreakinhappy': 30262, '386': 853, 'appendicitis': 2948, 'undertaker': 34220, 'tbd': 32310, 'supersavertravel': 31766, 'coronatravel': 8110, 'reccomend': 26802, 'stimulating': 31169, 'emergingmarkets': 11290, 'kildee': 18368, 'comprehending': 7486, 'empy': 11361, 'zoning': 36814, 'depiction': 9532, 'unifor': 34305, 'ubiquitous': 33989, 'patiently': 24244, 'riaz': 27711, 'quarantinecon': 26255, 'nightmarefuel': 22497, 'aviv': 3590, 'ferguson': 12550, 'quarantinestories': 26272, 'spreadreliefnotcorona': 30687, 'islam': 17441, 'mussel': 21800, 'shellfish': 29392, 'healthcarecentres': 15322, 'wearmask': 35566, 'howtocure': 16048, 'rnib': 27872, 'visually': 35140, 'islington': 17451, 'minim': 21106, 'throwbackthursday': 32928, 'stackedshelves': 30797, 'faffing': 12216, 'tysonfoods': 33969, 'kibosh': 18334, 'format': 13254, 'bewildering': 4430, 'commodaties': 7362, 'respectsupermarketstaff': 27429, 'underestimating': 34187, 'covent': 8310, 'feedinglondon': 12507, 'asfreshasitgets': 3222, 'fresdelivery': 13464, 'freshproduce': 13474, 'neutralizes': 22317, 'thicker': 32801, 'promoitems': 25801, 'chicagomade': 6624, 'fdd': 12455, 'elderlyhour': 11160, 'swanning': 31967, 'awoke': 3635, 'connects': 7626, 'centredness': 6336, 'nationalism': 22058, 'patriot': 24254, 'ayn': 3655, 'objectivism': 23045, 'galt': 13768, 'gulch': 14836, 'publi': 26013, 'ceva': 6367, 'crank': 8415, 'ieuan': 16396, 'weareone': 35557, 'hospitalstaff': 15959, 'mailcarrier': 20040, 'hotpepesoupjokes': 15991, 'hotpepesoup': 15990, 'noxworldng': 22857, 'noxworld': 22856, 'mrnox': 21633, 'soma': 30322, 'tuckercarlsontonight': 33803, 'mabs': 19905, 'dublinsouthmabs': 10711, 'moneyadvice': 21398, 'atf': 3356, '717': 1286, '3476372': 806, 'beatingcorona': 4142, 'medicalequipement': 20684, 'redbeansandrice': 26888, 'quarantineandrelaxation': 26246, 'citygirl': 6836, 'southkitchen': 30435, 'overburdened': 23720, 'amazonfba': 2539, 'mcbroom': 20572, 'explicitly': 12047, 'toil': 33140, '9200': 1479, '2810': 670, 'yumchina': 36694, 'servce': 29177, 'concurrence': 7531, 'gleefully': 14208, 'callin': 5795, 'tmituesday': 33088, 'sprinted': 30711, 'n5bn': 21906, 'augh': 3468, 'enforces': 11449, 'kurnool': 18653, 'quintal': 26360, 'critized': 8558, 'paralysis': 24097, 'hubei': 16089, 'crowbar': 8599, 'stayhuman': 31004, 'manlyquarantinesurvivaltips': 20223, 'seltzer': 29072, 'consortium': 7676, 'blitzspirit': 4743, 'slug': 30004, 'biso': 4620, 'zoopla': 36828, 'paralyse': 24096, 'comparatively': 7411, 'consensus': 7645, 'ampr': 2634, 'mortimer': 21519, 'callaghan': 5789, 'organizational': 23543, 'rmcoeh': 27865, 'velodomestique': 34892, 'overweegt': 23800, 'aantal': 1574, 'pakken': 23934, 'klant': 18464, 'beperken': 4337, 'descent': 9593, 'utica': 34685, 'upstate': 34560, '315': 777, 'boreantine': 4990, 'balognavirus': 3847, 'walkingtour': 35321, 'retard': 27568, 'raping': 26598, 'probl': 25689, 'flashpoint': 12885, 'foschinigroup': 13307, 'unis': 34331, 'tupac': 33851, 'toystore': 33370, 'wereopen': 35700, 'kidstoys': 18357, 'adexchanger': 1900, 'capt': 5968, 'wei': 35635, 'newcomer': 22339, '9057325337': 1466, 'cinnamontea': 6806, 'cinnamonoil': 6805, 'conviva': 7889, 'ardmore': 3066, 'ormeau': 23566, 'moralmoney': 21475, 'evp': 11889, 'paidsocialmedia': 23907, 'serous': 29173, 'acton': 1837, 'burgled': 5547, 'plasticsnews': 24925, 'chemorbis': 6584, 'zhanfu': 36770, 'stevied': 31135, 'musicvideo': 21795, 'panera': 24013, 'nasir': 22037, 'rufai': 28115, 'poblano': 25057, '1080': 155, 'hippy': 15664, 'blimmin': 4728, 'signalled': 29713, 'newquay': 22361, 'pasty': 24218, 'shopforessentials': 29503, 'occasionally': 23090, 'antmiddleton': 2848, 'rawlco': 26645, 'jurisdiction': 17967, 'ministery': 21123, 'bno': 4829, 'shophurstcbd': 29507, 'stayclean': 30959, 'undershoot': 34208, 'imhotep': 16537, 'gent': 13965, 'qm': 26193, 'ayesha': 3653, 'oldmargaretian': 23266, 'qmfamily': 26195, 'quitemarvellous': 26368, 'rampid': 26546, 'reed': 26942, 'monticello': 21439, 'heycoronaviruspleaseleaveus': 15574, 'crn': 8561, 'datafirst': 9044, 'flashy': 12886, 'dalandcuso': 8938, 'crytpo': 8657, 'intercession': 17175, 'stjosephprayforus': 31191, 'mouthing': 21586, 'sob': 30175, 'howdymodi': 16038, 'yogaduringlockdown': 36598, 'yogawithmodi': 36602, 'coronayoga': 8136, 'yogavideo': 36601, 'bloodyjamadi': 4775, 'whatdayisit': 35784, 'motherboard': 21540, 'freshdirect': 13469, 'animator': 2759, 'blaise': 4679, 'aladdin': 2291, 'mulan': 21702, 'mthingz': 21664, 'auditor': 3462, 'onlinecourse': 23353, 'frig': 13499, 'extrapolated': 12121, 'acm': 1799, 'kendra': 18239, 'giveback7175': 14164, 'pepper': 24471, 'touronegro': 33345, 'fujairah': 13613, 'dbn': 9127, 'psycho': 25987, 'psychobunnycomix': 25988, 'michelewitchipoo': 20951, 'witchesbrewpress': 36100, 'ebeano': 10939, 'badnickelbacksongs': 3768, 'phillip': 24686, 'wanda': 35357, 'armour': 3120, 'gazetting': 13875, 'narrating': 22022, 'priceatthepump': 25584, 'hogging': 15752, 'kitwe': 18453, 'ndola': 22188, 'hickory': 15583, 'improvised': 16653, 'wildfood': 35987, 'derail': 9569, 'enel': 11424, 'francesco': 13364, 'starace': 30864, 'brambilla': 5149, 'mandideep': 20184, 'scindiaschool': 28780, 'scindians': 28779, 'soba': 30176, 'scindiaagainstcorona': 28778, 'relatedly': 27089, 'drivethrurpg': 10635, 'miniature': 21104, 'coloringbook': 7261, 'rpg': 28064, 'ttrpg': 33792, 'emily': 11298, 'debunking': 9204, 'sherrod': 29411, 'debtcollections': 9199, 'businesslaw': 5601, 'earmarked': 10859, 'sitcom': 29831, 'nostalgia': 22747, 'kotter': 18575, 'ioannou': 17336, 'ultravioletsterilizer': 34090, 'uneccessary': 34245, 'panna': 24049, 'cotta': 8222, 'bioenergy': 4576, 'sanitisation': 28455, 'thankyouforyourservice': 32624, 'lifejackets': 19255, 'pleease': 24979, 'coveredinjesusblood': 8318, 'ffod': 12587, 'doctorate': 10315, 'incread': 16744, 'forcefully': 13199, 'milion': 21041, 'improbably': 16642, 'doordash': 10468, 'supermarketmadness': 31743, 'ayeartoremember': 3649, 'zomato': 36807, 'shaunofthedead': 29349, 'westinghouse': 35725, 'imaging': 16517, 'clambering': 6870, 'sequoia': 29159, 'useloom': 34642, 'yoyo': 36676, 'handset': 15061, 'nectoday': 22215, 'pandemy': 24005, 'coloradostrong': 7258, 'ruffle': 28116, 'tripping': 33625, 'sarcastically': 28530, 'whisky': 35876, 'martian': 20386, 'dano': 9001, 'accross': 1750, 'lgas': 19188, 'belo': 4296, 'gers': 14015, 'unworthy': 34507, '2100': 538, 'cesarchavezday': 6361, 'ebbw': 10938, 'distinctive': 10198, 'brum': 5394, 'kling': 18475, 'beleive': 4272, 'leftfield': 19040, 'parenthood': 24119, 'parentsinlockdown': 24123, 'suffice': 31605, 'sabko': 28234, 'hina': 15640, 'isip': 17436, 'payagan': 24290, 'kayo': 18153, 'paso': 24188, 'abv': 1689, 'pepsi': 24474, 'camomile': 5839, 'echinacea': 10956, 'hdelacerda': 15288, 'buttpaper': 5644, 'jmfstudios': 17797, 'cottonelle': 8225, 'artislife': 3185, 'mentalhealthmatters': 20813, 'shoppingmalls': 29543, 'essentialshopping': 11704, 'setlimits': 29206, 'latenightthoughts': 18877, 'radish': 26448, 'gujarati': 14834, 'storytelling': 31338, '07pm': 104, 'thurton': 32953, 'winnipeg': 36054, 'landwork': 18815, 'nestle': 22288, 'rollingstones': 27967, 'cranking': 8416, 'wildrye': 35991, '2oz': 726, 'ste': 31054, '1e': 430, 'bozeman': 5113, 'theresa': 32757, 'tam': 32198, 'conf': 7554, 'delicacy': 9400, 'nadia': 21932, 'rocha': 27917, 'ruta': 28179, 'paramount': 24101, 'peruvian': 24573, 'footstep': 13180, 'nodeal': 22597, 'aided': 2214, 'sycophantic': 32054, 'dumbed': 10740, 'electorate': 11174, 'poundland': 25310, 'impersonating': 16595, 'dakakeena': 8934, 'leeway': 19037, 'rubbed': 28096, 'deffeyes': 9318, '2006': 464, 'groundwork': 14738, 'flavouring': 12911, 'kidda': 18343, 'juscome': 17971, 'worryin': 36293, 'viking': 35040, 'shortagez': 29560, 'plundered': 25016, 'healthful': 15336, 'ccfa': 6239, 'bradford': 5128, 'localheroes': 19489, 'greadybusiness': 14597, 'itsallowed': 17524, 'day11': 9099, 'lockdownespa': 19522, 'nrma': 22869, 'drip': 10628, 'shawnee': 29355, 'frederickrealestate': 13411, 'mdrealestate': 20612, 'homeforsale': 15824, 'homeownership': 15844, 'buyahome': 5651, 'implmted': 16608, 'uisce': 34035, 'beatha': 4139, 'render': 27200, 'lifehacks': 19252, 'ukretail': 34067, 'breastfeeding': 5224, 'callcenter': 5792, 'businessasusual': 5594, 'uruguay': 34601, 'butler': 5632, 'darn': 9025, 'somyszirjy': 30350, 'northkorea': 22718, 'tre45on': 33553, 'senseless': 29122, 'awakened': 3614, 'cardvalet': 6007, 'getbeyondmoney': 14032, 'riseagain': 27808, 'besafeoutthere': 4373, '35mm': 825, 'attleboroma': 3422, 'wincanton': 36019, 'calmcovid19': 5806, 'woth': 36312, 'savethesummer': 28617, 'wiserxcard': 36087, 'prescriptiondiscountcard': 25511, 'meadow': 20617, 'justameme': 17974, 'justjokes': 17990, 'deterrent': 9689, 'slandering': 29934, 'meridian': 20855, 'kosovo': 18570, 'tmtv': 33092, 'againstcorona': 2110, 'tickled': 32965, 'stayhealthyeveryone': 30969, 'sheffieid': 29374, 'lancer': 18796, 'twill': 33916, 'coinspeaker': 7187, 'numbersas': 22909, 'franz': 13383, 'sische': 29825, 'supermarktkette': 31759, 'berweist': 4370, 'mitarbeitern': 21205, 'weil': 35644, 'trotz': 33648, 'ihre': 16445, 'pflicht': 24641, 'tun': 33839, 'regierung': 27016, 'befreit': 4223, 'zuschl': 36843, 'steuer': 31129, 'berichtet': 4349, 'schubert': 28764, '911': 1471, 'dampening': 8971, 'distri': 10213, 'tagged': 32137, 'obstruction': 23076, 'fashionnova': 12372, 'casket': 6139, 'exhibit': 11977, 'bpl': 5117, 'diycleaning': 10269, 'springcleaning': 30701, 'thn': 32865, 'comforted': 7306, 'vra': 35228, 'noshortagehere': 22742, 'getawaywithvra': 14030, 'pnw': 25053, 'cda': 6257, 'alwaysprepared': 2513, 'christoph': 6753, 'harrod': 15175, 'wwg2wga': 36421, 'whitehousepressconference': 35891, 'auspo': 3488, 'wpf': 36324, 'sheldon': 29382, 'adobeanalytics': 1954, 'krise': 18602, 'literate': 19379, 'cann': 5895, 'para': 24080, 'aque': 3034, 'buyears': 5660, 'prayforthem': 25405, 'stlcatholic': 31195, 'handsome': 15064, 'dalo': 8953, 'ncc': 22153, 'lizzy': 19433, 'ltc': 19774, 'statstory': 30929, 'tyrannosaurus': 33963, 'councilmember': 8242, 'conundrum': 7854, 'voss': 35209, 'str8': 31343, 'grubby': 14765, 'ineptness': 16862, 'grifting': 14662, 'pressers': 25537, 'commu': 7376, 'watauga': 35467, 'warmer': 35396, 'sakura': 28344, 'pharmac': 24659, 'lifeinquarantine': 19253, 'dartmouth': 9029, 'ukeleles': 34046, 'whispered': 35877, 'esposa': 11685, 'acabou': 1695, 'mascara': 20411, 'vai': 34738, 'precau': 25420, 'precaucao': 25421, 'ceu': 6366, 'agchem': 2118, 'recedes': 26804, 's3': 28219, 'azsanderson': 3674, 'barryfromwatford': 3972, 'bennyhope': 4331, 'chinwag': 6686, 'drunkshopping': 10673, 'seagull': 28885, 'gof': 14322, 'tbe': 32311, 'realuze': 26754, 'richards': 27726, 'mace': 19914, 'utwebinar': 34705, 'customerempathy': 8799, 'rhino': 27699, 'intent': 17163, 'rutgers': 28180, 'princetonu': 25628, 'tcnj': 32321, 'njit': 22549, 'thanksfordelivery': 32608, 'rutgersnewark': 28181, 'pia': 24742, 'urself': 34597, 'ingrate': 16955, 'plastered': 24922, 'infectologists': 16886, 'nwangwu': 22961, 'dailyvoice': 8927, 'ranjangogoi': 26580, 'rajyasabha': 26499, 'nbjp': 22142, 'smooking': 30083, 'tartous': 32261, '60m': 1183, 'saga': 28304, 'pid': 24770, 'rer': 27332, 'projets': 25783, 'selon': 29068, 'interval': 17231, 'salakati': 28347, 'addl': 1883, 'rani': 26578, 'sarmah': 28538, 'haggle': 14927, '392': 858, 'grocerry': 14692, 'reoort': 27226, 'hauser': 15229, 'comprehensible': 7487, 'sandpoint': 28436, 'desktop': 9628, 'dividendstocks': 10257, 'wpg': 36325, 'halliburton': 14982, 'overvalued': 23797, 'happ': 15102, '2012': 479, 'imold': 16575, '32isthenew22': 792, 'homelandcu': 15831, 'batavia': 4015, 'wny': 36143, 'lest': 19124, 'img': 16533, 'displayfixtures': 10145, 'storedesign': 31320, 'retaildesign': 27524, 'bp': 5114, 'prayed': 25396, 'kylie': 18688, 'jenner': 17711, 'gracefully': 14509, 'nationalnutritionmonth': 22067, 'purityintegrativehealth': 26108, 'crust': 8641, 'doughy': 10505, 'freightforwarder': 13450, 'aircargostrong': 2234, 'mypsafortoday': 21868, 'dabble': 8891, 'mailing': 20043, 'reassert': 26772, 'farmina': 12334, 'bashing': 3994, 'thanns': 32639, 'disapproval': 9997, 'bharati': 4454, 'ak': 2269, 'babywipes': 3710, 'precondition': 25439, 'fightfoodinsecurity': 12643, 'feedingamerica': 12505, '2001': 458, 'earle': 10852, 'hbr': 15277, 'nutri': 22944, 'marchingband': 20272, 'vacuous': 34730, 'lestwarog': 19125, 'doh': 10349, 'getwellsoon': 14055, 'inoculate': 17018, 'czar': 8882, 'biblical': 4481, 'disciple': 10019, 'brandgeek': 5160, 'paleo': 23942, 'emmie': 11309, 'towardsthesun': 33356, 'familytravelblog': 12289, 'bigusatrip': 4519, 'groundedbycovid19': 14736, 'nottravellingbecauseofcorona': 22813, 'fundraising': 13652, 'harwood': 15194, 'forwarded': 13302, 'binnie': 4563, 'wagyu': 35272, 'coronahygiene': 8048, 'nedina': 22217, 'broadens': 5341, 'crowntoyalevirus': 8609, 'mycorona': 21841, 'westridge': 35737, 'zenobia': 36756, 'shepard': 29405, 'fabs': 12168, 'primrosehill': 25622, 'supernatural': 31764, 'dimly': 9921, 'maze': 20550, 'dts': 10702, 'dw8': 10804, 'wearenotplaying': 35556, 'ff1': 12582, 'nobigoilbailout': 22580, 'futureofmobility': 13698, 'mixing': 21218, 'bailoutpeoplenotcorporations': 3801, 'biohazard': 4580, 'gwala': 14886, 'kidscare': 18354, '0ffers': 127, 'ahps': 2204, 'mocktails': 21292, 'dived': 10238, 'norriesstories': 22702, 'xboxes': 36445, 'playstations': 24953, 'spanker': 30479, 'hershey': 15558, 'wgal': 35767, 'noidea': 22613, 'filledup': 12668, 'giddy': 14108, 'nbahalloffame': 22132, 'opener': 23431, 'sendhelpandmoney': 29099, 'sloat': 29986, 'sutton': 31943, 'tahini': 32140, 'politik': 25129, 'cmhc': 7083, '515': 1071, '9551': 1513, 'motivates': 21556, 'ukltd': 34062, 'apprehension': 2989, 'w221': 35257, 'kitsap': 18447, 'penetrated': 24419, 'weirdasspeople': 35647, 'inclination': 16710, 'peoplearestrange': 24453, 'adoptdontshop': 1959, 'boreda': 4992, '791': 1340, 'cathy': 6184, 'withstands': 36120, 'tuk': 33824, 'bingham': 4559, 'rosiemayfoundation': 28010, 'malaysiagazette': 20125, '21761': 546, 'gou': 14448, 'specialize': 30519, 'gpclentils': 14496, 'gpcpeas': 14497, 'sanation': 28414, 'oregonproud': 23529, 'vitally': 35144, 'sani': 28448, 'mccormackmp': 20581, 'ifcci': 16400, 'enniskillen': 11484, 'pale': 23941, 'shopafternoon': 29493, 'jockstrap': 17822, 'underappreciate': 34180, 'jeep': 17691, 'rigged': 27763, 'consumable': 7703, 'verily': 34936, 'r120': 26389, 'r83': 26404, 'parting': 24171, 'majeura': 20072, 'zambian': 36724, 'sternly': 31125, 'zwd': 36846, 'misadventure': 21154, 'grata': 14575, 'craved': 8433, 'quarantini': 26276, 'ragu': 26461, 'collage': 7212, 'notability': 22751, 'schoology': 28758, 'agchatoz': 2117, '133': 244, '157': 288, 'zep': 36759, 'brotherhood': 5376, 'preventiontips': 25573, 'homemadesanitier': 15838, 'carifika': 6036, 'crackhead': 8392, 'drugsarebadmkay': 10665, '100cns': 134, 'relavant': 27098, 'tweeter': 33905, 'unproportionally': 34420, 'agra': 2163, 'namaste': 21974, 'southphilly': 30439, 'tiernay': 32975, 'astro': 3338, 'amigouk': 2597, 'glee': 14207, 'nevermind': 22327, 'goodread': 14393, 'brooklynmadison': 5367, 'lalockdown': 18772, 'lockdownmemes': 19536, 'tiktokers': 32991, 'plan2020': 24901, 'eattherich': 10927, 'yorkie': 36620, 'biosecurity': 4590, 'foodservices': 13137, 'cohosted': 7171, 'parlour': 24147, 'lioh': 19340, 'module': 21322, 'lem': 19083, 'subcultured': 31512, 'brutalized': 5407, 'displeasure': 10147, 'personalspace': 24560, 'bubblesoccer': 5437, 'kuppy': 18649, 'swooped': 32039, 'gunfight': 14849, 'maruchan': 20394, 'figurative': 12650, 'embroidery': 11274, 'fuckthis': 13591, 'hangin': 15079, 'brook': 5364, 'succeeds': 31570, 'sb55': 28645, 'brexitdryrun': 5262, 'balaclava': 3825, 'santiago': 28494, 'cristobal': 8543, 'saavedra': 28228, 'bejesus': 4261, 'martinsville': 20390, 'spooking': 30639, 'stockmarkets': 31218, 'sundayreview': 31684, 'sundayintel': 31678, 'sundayreads': 31683, 'sundaymusings': 31681, 'sundaynight': 31682, 'barricade': 3965, 'okboomer': 23243, 'quarantinememes': 26267, 'huf': 16102, 'nocoronaformedagainstmeshallprosper': 22589, '103097596': 149, 'yerwada': 36571, 'wakad': 35295, 'cylinde': 8872, 'outstripping': 23699, 'communistsliepeopledie': 7386, 'flippin': 12952, 'registrar': 27028, 'increas': 16745, 'everydollarcounts': 11852, 'killbills': 18371, 'manuf': 20240, '2be': 691, 'nygovernor': 22985, 'bumpier': 5519, 'amg': 2591, 'tema': 32461, 'konongo': 18553, 'odumasi': 23136, 'ghananews': 14076, 'lawlessness': 18935, 'unauthorized': 34120, 'electionyear': 11172, 'northpark': 22722, 'ameri': 2577, 'rediclinic': 26905, 'foodinstitute': 13116, 'blueapron': 4799, 'mealkit': 20624, 'coronasverige': 8099, 'giveacucumberahome': 14159, 'nalanda': 21966, 'roils': 27953, 'judie': 17928, 'kuddos': 18633, '5mtrs': 1161, 'dstn': 10689, 'obsvd': 23077, 'eavh': 10929, 'wrecking': 36339, 'ecomony': 10983, 'gilet': 14130, 'jaune': 17662, 'kamaljit': 18060, 'kaur': 18141, 'onceaweek': 23316, 'runningerrands': 28149, 'sunnyday': 31695, 'warmweather': 35400, 'misstep': 21195, 'networth': 22308, 'marketcap': 20314, '165millon': 312, 'xlf': 36467, 'alcoholicism': 2332, 'korbut': 18561, 'yoweri': 36673, 'yowerimuseveni': 36674, 'openning': 23437, 'dacing': 8893, 'resistir': 27400, 'businesslife': 5602, 'coronaspread': 8097, '48hrs': 997, 'positivethinking': 25245, 'paragraph': 24090, 'maidstone': 20036, 'hopping': 15922, 'ps5reveal': 25969, 'playstation5': 24952, 'skintdodgers': 29897, 'crest': 8505, 'pasture': 24217, 'inexperienced': 16873, 'innitiative': 17004, 'sid': 29678, 'sidvale': 29693, 'foodbankappeal': 13082, 'progressiveenterprise': 25768, 'forgets': 13238, 'blouse': 4786, 'faltered': 12274, 'identitythiefs': 16369, 'entitlement': 11540, 'recyclable': 26879, 'onumulheres': 23403, 'mj': 21221, 'esplanadadosministerios': 11683, 'virtualgrandnational': 35096, 'itv1': 17544, 'hijacking': 15623, 'egungunbecure': 11115, 'mschf': 21640, 'antic': 2824, 'meetup': 20732, 'puredrive': 26096, 'chacunpourtous': 6395, 'silkwood': 29740, 'meryl': 20869, 'streep': 31386, 'katv7': 18137, 'robopony': 27907, 'bcwi': 4106, 'bcwine': 4107, 'lateral': 18880, 'waterless': 35480, 'fashionblogger': 12363, 'takeoffpost': 32164, 'lifestylechange': 19266, 'justincase': 17985, 'socialisolating': 30223, 'badvirusfaqs': 3771, 'worstpresidentinhistory': 36305, 'genitals': 13959, 'eternity': 11749, 'abuelos': 1679, 'okc': 23244, 'cao': 5937, 'nguyen': 22428, 'classen': 6902, '5gb': 1144, '5hours': 1148, '17mins': 338, '45seconds': 974, 'ableg': 1634, 'abhealth': 1616, 'banded': 3866, 'tradesagainstthevirus': 33421, 'multiplayer': 21722, 'packman': 23880, 'sadec': 28264, 'mangere': 20195, 'budgeting': 5457, 'mybigfatgreekwedding': 21836, 'everythin': 11861, 'putsomewindexonit': 26142, 'irelandvscovid': 17382, 'calcutta': 5766, 'exclaimed': 11945, 'blurting': 4814, 'safetyproducts': 28294, 'novascotia': 22832, 'hrm': 16068, 'letterbox': 19148, 'nirmalasitharaman': 22531, 'pruning': 25966, 'headcount': 15297, 'pommard': 25147, 'cane': 5890, 'madebynature': 19946, 'burgundy': 5549, 'steelmaker': 31071, 'tenaris': 32482, 'unfavorable': 34269, 'shutaustraliadown': 29633, '10mins': 170, 'kafu': 18025, 'brekko': 5238, 'aleaprotects': 2342, 'fdi': 12456, 'fdiinindia': 12459, 'fdiindia': 12458, 'eohed': 11575, '211': 540, 'thenoutbid': 32726, 'm2': 19893, 'bulldozed': 5499, 'scranton': 28817, 'wilkes': 35994, 'barre': 3958, 'gobankingrates': 14291, 'consumertrack': 7747, 'uklockeddown': 34061, 'sahm': 28317, 'xox': 36473, 'newsbite': 22368, 'protectyourworld': 25907, 'cyberprotect': 8857, 'nest': 22286, 'theresistance': 32758, '917': 1473, 'metairie': 20885, 'pandem': 23982, 'preoccupied': 25484, 'lgive': 19192, 'littlegiant': 19394, 'scarymask': 28707, 'indulged': 16836, 'electricvehicle': 11181, 'heightening': 15421, '263chat': 648, 'twimbos': 33917, 'thejamesandkatahshow': 32708, 'omuntu': 23308, 'wawansi': 35496, 'lidluk': 19236, 'shamble': 29289, 'doingthedragsteroncouncilofficecarpet': 10356, 'takeadumpinasdacarpark': 32158, 'cobbler': 7121, 'civics': 6842, 'biproduct': 4601, 'notforever': 22767, 'belgiumlockdown': 4279, 'hungavirus': 16164, 'panicbuyersuk': 24023, '303k': 751, 'carsalesman': 6093, 'protectallworkers': 25885, 'lookafter': 19634, 'fissure': 12821, 'dishrag': 10086, 'wheresdora': 35841, 'mykarenislestory': 21855, 'over70': 23712, 'selfisolat': 29038, 'rudd': 28107, 'milkpowder': 21051, 'cumming': 8720, 'tink': 33036, 'gearsoftheworld': 13901, 'conversational': 7868, 'finhealth': 12748, 'varanasi': 34819, 'notessential': 22765, 'syracuse': 32095, 'toguether': 33136, '50inch': 1058, 'suprise': 31842, '760': 1318, 'pricegouger': 25590, 'howdoyousleepatnight': 16036, 'restockers': 27474, 'imask': 16522, 'knowles': 18513, 'beawareshowyoucare': 4162, 'basyc': 4011, '6feet': 1248, 'communitylove': 7389, 'peacesign': 24345, 'kinderreminder': 18392, 'redstates': 26925, 'bluestates': 4805, 'incrementally': 16754, 'cray': 8438, 'elonmusk': 11237, 'storen': 31325, 'mailer': 20042, 'trumpmadness': 33715, 'unviable': 34496, 'lrt': 19765, 'exceptionally': 11930, '886': 1437, '011': 21, '802': 1362, '066': 85, 'eynon': 12145, 'nir': 22527, 'releaseing': 27111, 'busniesses': 5616, 'englishman': 11465, 'belgie': 4276, 'cher': 6591, 'leslieville': 19115, 'torontoblog': 33275, 'torontolife': 33278, 'overbearing': 23716, 'systemchange': 32102, 'sternberg': 31124, 'somaliland': 30324, 'kaahin': 18014, 'tormund': 33271, 'giantsbane': 14104, 'omo': 23307, 'limo': 19311, 'copingwithcovid': 7940, 'retailbestpractices': 27518, 'tonaton': 33223, 'gobby': 14293, 'robertjenrick': 27898, 'andrewneil': 2709, 'patrolled': 24258, 'penhill': 24424, 'marlborough': 20360, 'lamorbey': 18785, 'danson': 9004, 'suzy': 31949, 'asksuzy': 3268, 'legitimacy': 19061, 'laxman': 18946, 'klaxman': 18467, 'bfr': 4441, 'thiss': 32862, 'anaerobicdigestion': 2659, 'quantam': 26229, 'ani': 2749, 'prnewswire': 25679, 'naspers': 22038, 'nanjing': 21996, '228': 575, 'walz': 35349, 'msme': 21648, 'stab': 30780, 'hypodermic': 16274, 'sederplate': 28970, 'jigsaw': 17770, 'clayton': 6923, 'f10': 12152, 'invoice': 17322, 'emperor': 11324, 'ahlam': 2197, 'madhoun': 19954, 'obstruct': 23074, 'fishy': 12818, 'trusttheplan': 33755, 'beckley': 4173, 'chaloo': 6420, 'ahe': 2192, 'mpp': 21620, 'kineticsquirrel': 18400, 'juss': 17972, 'sayinn': 28642, 'outofwork': 23679, 'takeabasketnotatrolley': 32157, 'provokes': 25953, 'destabilize': 9647, 'acl': 1798, 'offing': 23170, 'raked': 26503, 'parted': 24160, 'sang': 28445, 'bayarealockdown': 4056, 'fearless': 12469, 'nmgc': 22565, 'shoprespectfully': 29546, 'stoop': 31257, 'rivalry': 27837, 'screamed': 28829, 'laurent': 18922, 'lanthier': 18826, 'controller': 7850, 'dudley': 10723, 'contango': 7784, 'forwardation': 13301, 'haphazard': 15100, 'karlstefanovic': 18104, 'whim': 35860, 'aplaudoanuestrosheroes': 2901, 'usaquen': 34614, 'motiva': 21553, 'quedarse': 26302, 'bogotaencasa': 4878, 'bogotasequedaencasa': 4879, '161': 305, 'siapai': 29659, 'disagrees': 9988, 'needtogetoutmore': 22230, 'isolationblues': 17467, 'porsche': 25205, 'panamera': 23969, 'decorated': 9254, 'porschepanamera': 25206, 'holographic': 15791, '85yr': 1413, '602': 1174, '264': 649, '4357': 949, 'evidently': 11878, '25million': 640, 'hopcoms': 15911, 'mangalore': 20192, 'marnamikatte': 20364, 'comoaring': 7397, 'philosophical': 24693, 'insert': 17041, 'thelittlethings': 32710, 'virul': 35104, 'brady': 5131, 'unpayable': 34407, 'debtby': 9198, 'hudsoneven': 16099, 'cornavirusupdate': 7974, 'upturn': 34572, 'foundational': 13321, 'tambo': 32201, 'baloga': 3846, 'pfma': 24643, 'winmoreknows': 36047, 'growyourbusiness': 14761, 'hungerchallenger': 16166, 'superb': 31711, '2fi': 703, 'quarantinechallenge': 26251, 'chung': 6776, 'cheung': 6607, 'jeane': 17683, 'perrin': 24537, 'opined': 23456, 'arty': 3197, 'oar': 23022, 'christianliving': 6748, 'fomc': 13066, 'glued': 14257, 'multipack': 21721, 'stoney': 31252, 'migrating': 21022, 'stayunitedforcorona': 31048, 'customersupport': 8809, 'ottpoli': 23623, 'nosocialdistance': 22744, 'kidsattheplayground': 18353, 'menhangingout': 20802, 'itsapartyoutthere': 17525, 'disputing': 10157, 'baron': 3953, 'fascist': 12359, 'encash': 11380, 'chugging': 6775, 'ssga': 30770, '823': 1386, 'joevs': 17833, 'cpt': 8379, 'marius': 20307, 'paun': 24273, 'cptmarkets': 8380, 'testament': 32545, 'woodwork': 36192, 'shove': 29590, 'qvm': 26383, 'staysixfeetback': 31040, 'adjuster': 1919, 'moccasin': 21288, 'gould': 14453, 'sting': 31178, 'squad20': 30734, 'kidcrafts': 18342, 'edmonds': 11047, 'awarness': 3622, 'purblic': 26087, 'jaganath': 17594, 'ancestry': 2685, '5c': 1137, 'audjpy': 3463, 'fuzzpugz': 13705, 'rapture': 26604, 'depositor': 9547, 'lirafication': 19357, '300mm': 748, 'smallest': 30023, '118': 196, 'prioritises': 25643, 'portability': 25208, 'dissing': 10174, 'waken': 35300, 'bacp': 3751, 'soliciting': 30302, 'suzukitamilnadu': 31948, 'suzukimotorcycle': 31947, 'smt': 30090, 'nirmala': 22530, 'sitaraman': 29830, 'seditious': 28973, 'discriminatory': 10061, 'enclosed': 11381, 'continual': 7809, 'politicising': 25125, 'imodium': 16573, 'holdingit': 15769, 'innovates': 17011, 'fiddle': 12616, 'globalwebindex': 14239, 'islandwide': 17448, 'leveragedloans': 19165, 'slaved': 29947, 'whopping': 35926, 'sas': 28544, 'shopee5878a': 29500, 'guarrantee': 14800, 'mutated': 21812, 'denim': 9492, 'thankyouthursday': 32637, 'pathmaticsexplorer': 24236, '10hr': 164, 'wre': 36334, '212th': 543, 'maitland': 20069, 'clay': 6922, 'bobbleheadcam': 4848, 'distinguished': 10200, 'rura': 28164, '8oz': 1454, 'awardsformillennials': 3619, 'groc': 14686, 'nung': 22918, 'nagpunta': 21941, 'mmc': 21240, 'cguro': 6391, 'maiintindihan': 20037, '20yrs': 535, 'accustomed': 1768, 'happyeaster2020': 15118, 'weareunstoppable': 35562, 'airbnbs': 2231, 'homeaways': 15802, '725': 1293, '8869': 1438, 'northlasvegas': 22720, 'bosa': 5019, 'pranking': 25386, 'hahahaha': 14932, '793': 1341, 'couldnt': 8237, 'wherein': 35837, 'splashfm1055': 30607, 'behindtheback': 4252, 'sniping': 30133, 'lyingdown': 19874, 'glorykills': 14246, 'elroy': 11242, 'joblessness': 17810, 'bce': 4093, 'cosco': 8191, 'accordion': 1742, 'brine': 5303, 'lvr': 19864, 'stayconnectedtogether': 30961, 'kxnt': 18683, 'violent': 35078, 'sucker': 31586, 'cloromax': 7019, 'karmaisreal': 18106, 'jermyn': 17726, 'thes': 32765, 'origami': 23553, 'toiletpaperhumour': 33162, 'hampshire': 15014, 'heeding': 15410, 'gaunt': 13853, 'suzette': 31946, 'dealz': 9165, 'evidencing': 11876, 'amnesia': 2614, 'astonished': 3333, 'blatantly': 4700, 'dictating': 9808, 'jalapeno': 17612, 'inadvertent': 16681, 'fccpc': 12441, 'ndc': 22179, 'execpay': 11960, 'cannibal': 5910, 'cantkeepmyhandsofthecookiejar': 5925, 'census2020': 6316, 'deforestation': 9340, 'drawbridge': 10588, 'everydayheroes': 11850, 'healthtipoftheday': 15343, 'lowkey': 19748, 'ongc': 23340, '00cr': 11, 'tabligijamaat': 32118, 'lockdownlessons': 19532, 'islamiccoronajehad': 17444, 'wade': 35262, '4r': 1027, '4rcommunity': 1028, 'yourworkingpartner': 36661, 'qur': 26378, 'sodastream': 30256, '60l': 1182, '30l': 760, 'kidsactivities': 18351, 'qatarunited': 26181, 'heartlessly': 15377, 'truncation': 33743, 'oems': 23141, 'infects': 16887, 'homies': 15867, 'oregano': 23526, 'thyme': 32957, 'diyskincare': 10274, 'diyrecipes': 10273, 'aromatherapy': 3130, 'dyimasks': 10821, 'koro': 18564, 'venezueala': 34901, 'fn': 13023, 'wpa': 36323, 'comoetitive': 7399, 'eskridgelaw': 11676, '5jobs': 1149, 'buzzing': 5685, 'jubilant': 17913, 'extralarge': 12117, 'quickmaths': 26346, 'grandson': 14546, 'thiscantbelife': 32846, 'compositionbookchronicles': 7481, 'cqcomics': 8383, 'quaker': 26218, 'motherfuck': 21542, '6mo': 1258, 'lyiv': 19877, 'sanding': 28432, 'powersanding': 25342, 'fixingupthehouse': 12848, 'bestnorthamptonrealtors': 4392, 'degan': 9348, 'hygien': 16242, 'blubbery': 4794, 'globule': 14241, 'inequitable': 16864, 'panipuris': 24047, 'pav': 24277, '2099': 517, 'weirdworld': 35654, 'cheappetrolmelbourne': 6530, 'doingmypartco': 10354, 'whiter': 35893, 'blacklivesmatter': 4664, 'weezy': 35622, 'barz': 3983, 'realshit': 26749, 'oystermen': 23840, 'tarrytown': 32258, 'amason': 2527, 'dome': 10376, 'monument': 21444, 'restauranteurs': 27464, 'covfefe19': 8326, 'o3': 23010, 'rs35': 28073, 'fenton': 12548, 'theatrical': 32663, 'retires': 27581, 'pursues': 26124, 'pjm': 24875, 'mopr': 21469, 'stavtion': 30938, 'zava': 36734, 'hemingway': 15497, 'instabeer': 17078, 'craftbeer': 8397, 'marx4congress': 20398, 'eoi': 11576, 'luckier': 19788, 'hud': 16093, 'apts': 3027, 'superglue': 31727, 'lacquer': 18727, 'bodaga': 4854, 'porportions': 25202, 'rejecting': 27080, '2349027271699': 591, 'n5': 21903, 'n6': 21907, 'n7': 21908, 'n8': 21910, 'busting': 5622, 'playstation2': 24951, 'bludgeon': 4797, 'hitherto': 15689, 'twitterblack': 33930, 'elmo': 11234, 'faruki': 12354, 'pll': 24991, 'weareworldvision': 35563, 'wtfisthis': 36375, 'martinlewis': 20389, 'kaw': 18145, 'trumpandemic': 33688, 'trumppresser': 33727, 'nflx': 22416, 'pane': 24010, 'clamber': 6869, 'bellend': 4293, 'inventy': 17293, 'nantes': 22002, 'monoprix': 21426, 'johm': 17839, 'ealing': 10849, 'uxbridge': 34713, 'allcannedout': 2401, 'aluminumcan': 2508, 'donotforgetthecanopener': 10412, 'rea': 26672, 'smartline': 30036, 'weighted': 35641, 'gowanus': 14492, 'baruch': 3981, 'feldheim': 12530, 'yippee': 36589, 'hyping': 16268, 'dontripusoff': 10440, 'befair': 4215, 'snowmaggedon': 30148, 'worldsquare': 36277, 'coonavirusoutbreak': 7916, 'dearest': 9171, 'rican71': 27715, 'guttenberg': 14874, 'backlash': 3731, '3321b': 797, 'thirdpartyrisk': 32837, 'supplychainattacks': 31792, 'formjacking': 13261, 'reflectiz': 26974, 'clientsidesecurity': 6989, 'appsecurity': 3009, 'supermarketsushi': 31754, 'ootd': 23416, 'darksideofthering': 9023, 'nyccoronavirus': 22974, 'stopprofiteering': 31291, 'unityinourcommunity': 34349, 'rsvp': 28083, 'interesed': 17179, 'yarn': 36520, 'britishwool': 5325, 'krisjenner': 18607, 'fondling': 13068, 'donttouch': 10445, 'csg': 8665, 'locus': 19572, 'hare': 15151, 'spreadlove': 30686, 'hydration': 16221, 'sociallistening': 30229, '14m': 273, 'walport': 35342, 'guided': 14816, 'dollarindex': 10369, 'panicshopp': 24042, 'freshco': 13468, 'huron': 16183, 'alsofull': 2480, 'hearsay': 15365, 'mailpersons': 20048, 'norwalk': 22732, 'crchat': 8448, 'jennings': 17713, 'phy': 24731, 'defended': 9302, 'shrimadhopur': 29611, 'suranibazar': 31847, 'nil': 22510, 'pratley': 25390, 'pandemichave': 23993, 'badaun': 3759, 'okhla': 23246, 'initiating': 16980, 'exacted': 11903, 'irradadicate': 17397, 'mateo': 20484, 'apok842': 2918, 'plantain': 24913, 'coronacomedy': 8021, 'cookingwithplantains': 7905, 'tslaq': 33779, 'howtohelp': 16049, 'riskier': 27824, 'sohr': 30278, 'imadethis': 16508, 'autodistancing': 3533, 'stockmarketnews': 31217, 'davelewis': 9076, 'widened': 35957, 'goa': 14284, 'fedprimerate': 12494, 'softdata': 30265, 'economicdata': 10995, 'evacuated': 11806, 'dismissing': 10115, 'substandard': 31555, 'faceguard': 12178, 'landmark': 18809, 'showering': 29597, 'firstfightscovid': 12796, 'berkeley': 4351, 'leibniz': 19074, 'salesforce': 28356, 'stefanie': 31081, '1740': 330, 'crossroad': 8595, 'philipp': 24683, 'kerosine': 18266, 'tallahasseerealtor': 32195, 'goodthingihaveadog': 14396, 'oreobrat': 23531, 'rancho': 26555, 'mirage': 21148, 'felde': 12529, 'capri': 5964, 'cuarentena19m': 8687, 'mw5v16htob': 21828, 'doomers': 10457, 'corrects': 8170, 'uncooked': 34160, 'skeptical': 29864, 'kitten7': 18450, 'bizconnect': 4644, 'burgess': 5544, 'ghatkopar': 14079, 'helimacroft': 15439, 'johnkilduff': 17842, '01952': 40, '952115': 1510, 'cleaningservices': 6939, 'yourhome': 36648, 'odin': 23129, 'intercept': 17173, 'riskies': 27825, 'herwin': 15561, 'zuma': 36834, 'makassar': 20083, 'sulawesi': 31634, 'manning': 20228, 'pummeling': 26058, 'visionaid': 35123, 'dope': 10474, 'thar': 32643, 'newjob': 22349, 'pmik': 25038, 'foodiesofinstagram': 13112, 'mazarr': 20549, 'murcia': 21767, 'medco': 20664, 'goodnewsstory': 14392, 'georgetown': 13992, 'doable': 10301, 'conditioner': 7542, 'pell': 24394, 'pellawaits': 24395, 'esteban': 11723, 'publicservice': 26031, 'cameo': 5832, 'abraham': 1651, 'yonge': 36613, 'finch': 12729, 'dst': 10688, 'manufacturingnews': 20246, 'flattenthecurvewithnewphonesfromsprint': 12902, 'newhours': 22347, 'retailhours': 27534, 'shortenedhours': 29565, 'gingivitis': 14141, 'cobank': 7119, 'zation': 36732, 'borrows': 5016, 'cabrilloinn': 5722, 'whipping': 35869, 'cfp': 6380, 'syllabus': 32065, 'sittin': 29836, 'tryin': 33764, 'oximetera': 23831, 'axis': 3644, 'clivot': 7010, 'gersheim': 14016, 'parisien': 24131, 'samsclub': 28406, 'specialschool': 30523, 'fizzy': 12855, 'funneled': 13656, 'availablity': 3565, 'flammable': 12872, 'retailgazette': 27530, 'elema': 11197, 'synopsis': 32090, 'treadmill': 33556, 'neeva': 22233, 'afya': 2103, 'rekod': 27085, 'waterworks': 35486, 'bostonstrong': 5033, 'zipper': 36793, 'appintments': 2952, 'selflessness': 29047, 'danforth': 8987, '017569': 35, 'perpetually': 24533, 'seafarer': 28881, 'onard': 23312, 'southwarwickshire': 30443, 'epipens': 11593, 'mri': 21629, 'marietta': 20296, 'cherokee': 6595, 'nagging': 21940, 'erectile': 11635, 'dysfunction': 10827, 'darkest': 9019, 'nda': 22176, 'coastalfarm': 7114, 'cfrlife': 6383, '705': 1278, '2621': 646, 'backupdocs': 3745, 'buydocuments': 5659, 'buypassport': 5676, 'buyschooldiplomas': 5678, 'buyvaliddocuments': 5681, 'buybristispassport': 5656, 'buyfloridalicense': 5664, 'fakemoney': 12256, 'epoch': 11595, 'serv': 29175, 'formulary': 13264, 'yeay': 36542, 'housingmarke': 16021, 'laborparty': 18713, 'perseverance': 24541, 'assad': 3281, 'raab': 26409, '0345': 65, 'us5': 34603, 'trop': 33643, 'raysup': 26651, 'progressing': 25765, 'psychopath': 25992, 'meatlover': 20651, 'foodblogger': 13087, 'freshmeat': 13473, 'thereisonlyone': 32756, 'tariqhalal': 32255, 'azz': 3678, 'apocolypse2020': 2917, 'plesse': 24984, 'hawker': 15248, 'dominoeffect': 10389, 'foil': 13043, 'givecovid19thefinger': 14166, 'abili': 1627, 'crosscontamination': 8586, 'remediate': 27162, 'availabe': 3562, 'helpmedicos': 15467, 'onemancanmakeadifference': 23328, 'wuhanflu': 36398, 'exchanged': 11938, 'cdl': 6261, 'fmcsa': 13013, '1938': 373, 'truckdrivers': 33662, 'pandemicresponseteam': 24003, 'truckersofamerica': 33666, 'tob': 33103, 'toboffers': 33106, 'theoffersbaba': 32727, 'offeraisafreejaisa': 23159, 'affinity': 2053, 'physiologist': 24740, 'gaetano': 13734, 'ferrante': 12558, 'shortest': 29568, 'endliveexports': 11408, 'blakewearblake': 4681, 'overfishing': 23742, 'prayut': 25411, 'jakegyllenhaal': 17606, 'bubbleboy': 5435, 'projecting': 25778, 'swinford': 32020, 'childminder': 6639, '263': 647, '585': 1119, 'jeanyuses': 17686, 'dios': 9944, 'mio': 21145, 'melaleuca': 20756, 'snagged': 30099, 'xenakis': 36451, 'loizou': 19597, 'grandview': 14547, 'communityheros': 7388, 'trading212': 33426, 'balm': 3844, 'pavillions': 24281, 'sneezeinyourarm': 30125, 'compartmentalised': 7417, 'agility': 2147, 'foodretail': 13133, 'systematic': 32100, 'sku': 29906, 'rationalisation': 26625, 'daves': 9078, 'davesbread': 9079, 'canoga': 5915, 'stayputstaysafe': 31024, 'orgasmic': 23548, 'lifechanging': 19249, 'sarcasticarepa': 28531, 'theundercoverlatino': 32786, 'bacardi': 3714, 'rum': 28134, 'cata': 6157, 'abiv': 1631, 'displaying': 10146, 'churchillian': 6781, 'disconnectedfromreality': 10031, 'theskyispink': 32774, 'surroundings': 31887, 'countervailing': 8268, '25b': 635, '10b': 158, 'melody': 20769, 'thornton': 32876, 'imposition': 16627, 'hav': 15232, 'wat': 35463, 'savanna': 28592, 'kno': 18499, 'revo': 27664, 'itishappening': 17521, 'stateag': 30902, 'incharge': 16702, 'doggo': 10341, 'affraid': 2067, 'yokel': 36608, 'deducted': 9269, 'commish': 7348, 'coloured': 7264, 'stockbuybacks': 31204, 'toomuchalonetime': 33238, 'enlarged': 11479, 'ruralamerica': 28166, 'eatingin': 10921, 'redshift': 26924, 'uctm': 34003, 'horrendously': 15937, 'redfin': 26904, 'kelman': 18228, 'ismp': 17454, '1b': 426, 'byrum': 5702, 'sustainablefashion': 31937, 'commerialrealestate': 7347, 'retailrealestate': 27546, 'sevierville': 29223, 'techrepublic': 32393, 'banwarilal': 3913, 'bhardwaj': 4456, 'sown': 30453, 'agchat': 2116, 'dookie': 10454, 'magical': 19992, '6ho2yorl3v': 1253, 'budgetary': 5456, 'undead': 34171, 'epedimiologists': 11582, 'coronaculos': 8029, 'storytime': 31339, 'eventhough': 11835, 'peopleresearch': 24463, 'topramen': 33257, 'peopleresearchcoronavirus': 24464, 'whe': 35811, 'refigerator': 26961, 'careact': 6010, 'glanz': 14193, 'baelwellness': 3773, 'farmproducer': 12341, 'arline': 3109, 'ahorro': 2203, 'amounted': 2625, 'ddgs': 9144, 'widespr': 35960, 'homeworking': 15864, 'abhijit': 1617, 'torched': 33266, 'southmead': 30438, 'referendum': 26955, 'bowel': 5076, 'smartpolicy': 30044, 'iamoilandgas': 16293, 'medi': 20669, 'graffiti': 14524, 'fame': 12277, 'dontknowwhy': 10431, 'timetoshine': 33022, 'inadvance': 16680, 'kirsten': 18423, 'spokeswoman': 30625, 'derided': 9577, 'rqcomm201csuf': 28066, 'eyren': 12146, 'industrie': 16845, 'supercharger': 31717, 'aye': 3648, 'lmfaoo': 19458, '7mil': 1353, 'factoring': 12206, 'stumble': 31479, '355': 817, 'demonetisation': 9470, 'wahsing': 35279, 'lakshman': 18766, 'rekha': 27084, 'dimout': 9923, 'skyline': 29913, 'endurance': 11420, 'grocerynews': 14700, 'odered': 23128, 'quintupled': 26362, 'booredd': 4964, 'ashleymoody': 3232, 'llcs': 19445, 'dontmakemeangry': 10434, 'youwontlikemewhenimangry': 36671, 'shehulk': 29376, 'daretoinnovate': 9015, 'futureretail': 13701, 'outform': 23657, 'pirmasens': 24846, 'kadi': 18020, 'claustrofobic': 6916, 'seizure': 29007, 'forfeit': 13235, 'qmatic': 26194, 'cfm': 6378, 'wtf2020': 36373, 'tijuana': 32987, 'enviroment': 11556, 'patreons': 24250, 'thickness': 32802, 'complementary': 7454, 'chapter13': 6466, 'cronovirus': 8577, '3rds': 896, 'ruaka': 28094, 'wontshop': 36183, 'clearbell': 6958, 'ating': 3372, 'kababayang': 18016, 'nangangailangan': 21995, 'mukbangs': 21697, 'lana': 18791, 'whet': 35847, 'repor': 27273, 'robinhood': 27902, 'worldfightscorona': 36263, 'sedation': 28967, 'midazolam': 20987, 'propofol': 25843, 'injectable': 16983, 'emulsion': 11367, 'nursetwitter': 22931, 'foamed': 13028, 'manda': 20174, 'pinnacle': 24828, 'socialdistaning': 30211, 'lepton': 19111, '8bn': 1447, 'whatswrongwitheveryone': 35802, 'homeloans': 15834, 'quarentena': 26285, 'mukeshambani': 21699, 'shortselling': 29573, 'nolongeratravellingpa': 22620, 'timesnews': 33021, '79yo': 1344, 'bhat': 4458, 'bhateni': 4460, 'thimi': 32809, 'dashain': 9036, 'sj': 29855, 'sunset': 31701, 'danecounty': 8986, 'travelwisconsin': 33545, 'discoverwisconsin': 10050, 'bypassing': 5700, 'farm2fork': 12323, 'blurring': 4813, 'choppy': 6732, 'shabbat': 29253, 'shalom': 29287, 'zvikwereti': 36845, 'muviri': 21824, 'wese': 35704, 'hazvina': 15270, 'kumira': 18643, 'mushe': 21784, 'imiwee': 16541, 'bealert': 4119, 'petromaxevents': 24623, 'indy': 16851, 'sh15': 29251, 'tds': 32329, 'beast786': 4133, 'vadoliya': 34734, '08081': 113, '64600': 1212, 'glaswegian': 14198, 'spout': 30666, 'atheistic': 3360, 'cvd1': 8841, 'surfeit': 31859, 'debone': 9194, 'strng': 31433, 'bck': 4096, 'quickl': 26344, 'caplan': 5961, 'mentalwellbeing': 20818, 'fortuitously': 13293, 'seneca': 29106, 'bimco': 4550, 'ingest': 16947, 'nyconstruction': 22977, 'prevailingwage': 25560, 'nyassembly': 22972, 'nysenate': 22996, 'monterey': 21434, 'peninsula': 24425, 'amazondeals': 2537, 'helensdeals': 15437, 'petroldieselprice': 24614, 'believable': 4281, 'springfield': 30704, 'warna': 35402, 'thedividebetweenrichandpoor': 32678, 'taber': 32111, 'masquerade': 20445, 'tower115': 33360, 'gearupatgearup': 13902, 'titusville': 33072, 'mims': 21080, 'rockledge': 27931, 'cocoabeach': 7136, 'merrittisland': 20863, 'palmbay': 23950, 'brevardcounty': 5252, 'uniformly': 34307, '1943': 376, 'diverted': 10250, 'fakejournalismofmedia': 12252, 'myhandscleantho': 21850, 'eatorbeeaten': 10925, 'sexiest': 29232, 'gorsky': 14432, 'lob': 19474, 'kickups': 18340, 'lockdwn': 19558, 'lagoslockdown': 18745, 'vanguardnews': 34791, 'bromley': 5360, 'terrio': 32527, 'hoyes': 16055, 'michalos': 20948, 'universalbasicincome': 34352, 'afry': 2085, 'ruinous': 28125, 'cooleyproductwise': 7912, 'sanatizers': 28416, 'hydrocarbon': 16224, 'traderjoe': 33418, 'sympathy': 32072, 'deception': 9221, '100freegift': 137, 'ginseng': 14144, '9x': 1553, '8g': 1449, 'insanhealing': 17033, 'unkind': 34363, 'judgy': 17926, 'sadistic': 28265, 'supercilious': 31718, 'ffsbekind': 12593, 'recalibrate': 26797, 'hanta': 15096, 'extorted': 12107, 'vcat': 34852, 'sagicorbank': 28309, 'inyourcorner': 17334, 'dox': 10552, 'myteam': 21884, 'freshii': 13471, 'lockdow': 19507, 'benicetous': 4325, 'wearestillworking': 35561, 'retailtherapy': 27553, 'hrly': 16067, 'kudlow': 18634, 'snort': 30141, 'istan': 17494, 'bananarepublic': 3861, 'hedgefund': 15403, 'mutualfunds': 21823, 'itching': 17513, 'corringham': 8177, 'peopleareidiots': 24450, 'beerruntoo': 4209, 'plainclothingstore': 24897, 'brumbabybank': 5395, 'opheusden': 23453, 'gj': 14179, 'hundal': 16157, 'pharmacology': 24664, 'magalogues': 19978, 'promos': 25802, 'goibibo': 14330, 'equitymarkets': 11619, 'merkels': 20861, 'stabilizing': 30792, 'societymarylandcoronavirusfeelgood': 30246, 'tet': 32556, 'markson': 20355, 'missionimpossible': 21186, 'amazonsellers': 2546, 'masksfordocs': 20433, 'masksformedics': 20434, 'doctoral': 10314, 'grubbing': 14764, 'profitmaking': 25748, 'satanic': 28552, 'chafe': 6399, 'troupe': 33654, 'thrashed': 32892, 'selfishmorons': 29032, 'openhouses': 23433, 'ibuyers': 16309, 'lorch': 19669, 'moroninchief': 21506, 'racistinchief': 26432, 'trashman': 33518, 'riverina': 27840, 'unfortuna': 34282, 'local5': 19483, 'incr': 16743, 'timeoff': 33018, 's1': 28214, 'foryou': 13304, 'foryoupage': 13305, 'gameofthrones': 13779, 'masksnow': 20437, 'foodmanufacture': 13120, 'ultabeauty': 34081, 'eejits': 11072, 'cdns': 6266, 'carlaw': 6043, 'imsohappy': 16663, 'theoretical': 32732, 'arkansas': 3107, 'ico': 16336, 'discharge': 10017, 'accumulated': 1756, 'unfunded': 34287, 'asse': 3290, 'homecommerce': 15815, 'lyondellbasell': 19888, 'fawning': 12418, 'itspending': 17533, 'techindustry': 32376, 'predicament': 25443, 'isour': 17480, 'ukschoolclosures': 34068, 'appleinsider': 2962, 'adjourns': 1915, 'telanganastateconsumer': 32426, 'khairthabad': 18309, 'volodymyr': 35188, 'restructure': 27493, 'cuna': 8722, 'hysteriavirus': 16280, 'psms': 25977, 'pacita': 23867, 'patroller': 24259, 'brgy': 5266, 'canyoupopoutandpickupafe': 5936, 'margarita': 20284, 'prerequisite': 25501, 'soften': 30266, 'silky': 29741, '151': 283, 'nashp': 22033, 'judgmental': 17925, 'prefect': 25458, 'earwigscience': 10874, 'bane': 3874, 'quarantineproblems': 26269, 'jerkmerch': 17724, 'thegospelofschultz': 32691, 'tapping': 32240, 'dyson': 10829, 'retailcannabis': 27522, 'fraggang': 13353, 'repository': 27284, 'sanusi': 28505, '2348098043712': 589, 'teary': 32366, 'clothier': 7045, 'huntvalley': 16180, 'fails2understand': 12224, 'vagary': 34735, 'fuckitall': 13582, 'imdone': 16529, 'vil': 35042, 'captive': 5973, 'rumble': 28135, 'avonlady': 3603, 'avonrep': 3605, 'nextgenavon': 22407, 'skinsosoft': 29895, 'iphones': 17358, 'ver2': 34923, 'asbestos': 3215, 'trivialising': 33630, 'grassley': 14571, 'kissel': 18429, 'climbing': 7001, 'interestrates': 17187, 'fertile': 12562, 'mnc': 21247, 'cling': 7002, 'connolly': 7629, 'perfected': 24487, 'mealtrak': 20628, 'foodtogotrends': 13151, 'disneyland': 10119, 'reopens': 27230, 'attraction': 3430, 'disneyworld': 10121, 'nextdoor': 22406, 'submerged': 31522, 'vibhishans': 34981, 'befriend': 4224, 'jorge': 17874, 'hovering': 16032, 'lotlinx': 19693, 'oem': 23140, 'chewy': 6611, 'whereyoureatthecheckoutandyouhearthebeep': 35846, 'dalewinton': 8941, 'fijisports': 12659, 'fbcsports': 12429, 'stasiek': 30898, 'czaplicki': 8881, 'cabezas': 5714, 'fakepresident': 12260, 'latinosfortrump': 18895, 'carmen': 6050, 'aldecoa': 2337, 'crisedupapiertoilette': 8536, 'mich': 20943, 'authentically': 3512, 'gasp': 13833, 'coloradoshutdown': 7257, 'financialmanagement': 12713, 'personalfinances': 24554, 'moneymanagement': 21400, 'impactful': 16580, 'ukemplaw': 34047, 'techlaw': 32379, 'raccon': 26417, 'residentevil3demo': 27380, 'proposition': 25855, 'intranet': 17257, 'flue': 12998, 'ndgs': 22183, 'greatamericantakeout': 14600, 'vloggers': 35160, 'locksley': 19566, 'accrues': 1752, '1person1trolley': 448, 'conjecture': 7615, 'barbing': 3926, 'vaginawarriorcreations': 34736, 'somethingbeautifuleveryday': 30341, '6feetapart': 1249, 'pickuplines': 24760, 'badboys': 3761, 'suave': 31505, 'kameel': 18062, 'pancham': 23973, 'seacroft': 28880, 'broadcastmedia': 5339, 'mediaagency': 20670, 'mediaplanning': 20673, 'mediastrategy': 20674, 'digitaladvertising': 9861, 'rupert': 28161, 'diatancing': 9795, 'isa': 17422, 'bula': 5485, 'kerekere': 18262, 'kere': 18261, 'bou': 5049, 'magaijine': 19977, 'saraga': 28519, 'vinaka': 35054, '2504': 624, '7507': 1308, '1618': 306, 'zweli': 36847, 'mkhize': 21226, 'r1400': 26390, 'flavortown': 12908, 'violator': 35076, '0828628237': 118, '19sa': 418, 'flirtv': 12955, 'odka': 23133, 'sumedh': 31646, 'bivas': 4637, 'prego': 25469, 'counterintuitive': 8263, 'stater': 30912, 'bruhh': 5393, 'rhp': 27703, 'commemorative': 7329, 'saskatoon': 28548, 'dungeon': 10758, 'desinfect': 9619, 'lifematters': 19259, '688': 1237, 'bergen': 4345, 'tedesco': 32401, '336': 799, '6400': 1210, 'ajittyagi': 2267, 'bajao': 3809, 'indo': 16825, 'aga': 2106, 'devouring': 9731, 'zumwalt': 36838, 'whataboutery': 35781, 'thumping': 32942, 'olymel': 23282, '720': 1290, '5721': 1113, 'stayhomestaystrong': 31002, 'excelled': 11922, 'immovingprovider': 16559, 'nex': 22404, 'headquartered': 15305, 'proportionally': 25847, 'lou': 19698, 'dobbs': 10303, 'bewarned': 4428, 'dwbl': 10807, 'helpingyou': 15463, 'storming': 31333, 'lifewithocd': 19268, 'anyportinastorm': 2869, 'frankenstein': 13374, 'tossing': 33296, 'supporthealthcareworkers': 31807, 'ourstreets': 23634, 'allinittogether': 2420, 'bussinesses': 5618, 'animated': 2757, 'lyric': 19889, 'xxlfreshman2020': 36484, 'hiphopmusic': 15663, 'forthelow': 13281, '2035': 508, 'rightmove': 27770, 'crappie': 8421, 'crappiefishing': 8422, 'springdale': 30702, 'panhandler': 24017, 'grouped': 14741, 'adli': 1925, 'mrps': 21635, 'angola': 2740, 'snuffed': 30151, 'lipbalm': 19344, 'biter': 4630, 'whirlwind': 35873, 'currentstatus': 8766, 'fayz': 12423, 'houmous': 15997, 'guacamole': 14784, 'gamechanger': 13777, 'iit': 16455, 'telecommuters': 32433, 'propertyinvestment': 25832, 'mortgagebroker': 21517, 'fristhomebuyer': 13510, 'motorway': 21569, 'degraded': 9358, 'biota': 4595, '600k': 1173, '955': 1512, '0764': 94, 'shutdownsouthafrica': 29639, 'realtalc': 26750, 'givemestrength': 14169, 'heroically': 15550, 'camo': 5838, 'lund': 19823, 'sculpture': 28861, 'strasbourg': 31366, 'savagery': 28590, 'stalking': 30832, 'totalitarian': 33303, 'barbarism': 3920, 'coronaheroes': 8045, '3mmi': 884, 'yyz': 36709, 'zabelindimitri': 36711, 'ahy': 2208, 'helplines': 15466, 'swimwear': 32015, 'barbecue': 3921, 'rib': 27712, 'wetones': 35749, 'diyhazmat': 10270, 'celiacs': 6302, 'monmouth': 21422, 'pcmrfixesit': 24331, 'epsilon': 11599, 'conversant': 7866, 'cj': 6855, 'plante': 24916, 'onlineselling': 23370, 'semanasanta2020': 29076, 'ayers': 3652, 'tweethearts': 33906, 'mobbed': 21266, 'shuttheschoolsnow': 29653, 'andersondylan': 2698, 'kmt': 18483, 'butternut': 5638, 'squash': 30742, 'lara': 18836, 'woolfson': 36200, 'enabler': 11372, 'stks': 31192, 'tgonu': 32576, 'custome': 8797, '76yo': 1323, '12wk': 235, '3weeks': 901, 'warroompandemic': 35414, 'cleanshelf': 6947, '960': 1518, 'weirdtimes': 35653, 'flared': 12878, 'nhpr': 22436, 'grosserie': 14728, '5080': 1052, 'shpk': 29603, 'starvingtime': 30894, 'nojob': 22616, 'ingodwetrust': 16953, 'packnsave': 23881, 'susanne': 31913, 'refurbishing': 27000, 'boohoo': 4941, 'usher': 34651, 'katt81': 18133, 'allaz': 2400, 'aztogether': 3676, 'wefeedaz': 35624, 'revelop': 27634, 'newton': 22389, 'retailproperty': 27545, 'anchored': 2688, 'commercialproperty': 7344, 'sensationalise': 29120, 'backgroun': 3727, 'uxs': 34714, 'interface': 17188, 'hmi': 15708, 'bastamron': 4007, 'argusemissions': 3093, 'transpacific': 33500, 'ocean': 23107, 'sailing': 28324, 'feasable': 12472, 'alzheimers': 2519, 'recreates': 26865, 'nowthis': 22854, 'shophampton': 29506, 'kitchenappliances': 18435, 'gardencity': 13806, 'homegoods': 15826, 'homedesign': 15822, 'loggd': 19579, 'tryd': 33763, 'amritsari': 2638, 'cholle': 6722, 'howevr': 16043, 'crossd': 8588, '762': 1320, 'understnd': 34215, 'lyk': 19878, 'yaer': 36497, 'bandula': 3872, 'gunawardana': 14847, 'genelecsl': 13933, 'lbutchers': 18963, 'conveyan': 7876, 'conveyancing': 7877, 'movinghouse': 21602, 'wassup': 35451, 'staysave': 31039, 'vindicated': 35059, 'coban': 7118, 'burma': 5556, 'expeditious': 12018, 'chinaliespeopledie': 6664, 'unstoppable': 34465, 'fielded': 12619, 'coughingchallenge': 8232, 'grocerystorechallenge': 14710, 'nude': 22897, 'inquires': 17027, 'mnuchinmoney': 21257, 'meitzner': 20752, 'sedgwick': 28971, 'pblc': 24320, 'trnsprt': 33632, 'proritise': 25863, 'yellowvest': 36558, 'gelbenwesten': 13918, 'yellowvestsuk': 36560, 'giletsjaunes': 14132, 'chalecosamarillos': 6413, 'giletjaune': 14131, 'yellowvests': 36559, 'gervais': 14017, 'orpol': 23575, 'orleg': 23565, 'completing': 7460, 'saugus': 28581, 'nipping': 22526, 'dehydrating': 9363, 'petrifying': 24609, 'greattpdepression': 14608, 'meyers': 20917, 'althoug': 2496, 'wcpapier': 35513, 'savetheworld': 28618, 'decontaminate': 9249, 'arezki': 3078, 'dryersheets': 10676, 'wrinkle': 36348, 'dyi': 10820, 'notpnoworries': 22804, 'viruschines': 35108, 'ther': 32745, 'wn': 36140, 'rejigs': 27081, 'aligned': 2382, 'downstairs': 10538, 'spitfire': 30599, 'fusion': 13688, 'thacker': 32580, 'stacia': 30794, 'entertaining': 11530, 'corporateresponsibility': 8157, 'proudtobeakeyworker': 25930, 'nothuman': 22780, 'saulius': 28583, 'skvernelis': 29909, 'envisaged': 11562, 'whey': 35851, 'lky7': 19438, 'lky7sports': 19439, 'appliednutrition': 2974, 'wheyprotein': 35852, 'ashford': 3228, 'niagra': 22452, 'leased': 19009, '115k': 192, 'jupiter': 17966, 'fla': 12861, 'essentia': 11694, 'supremesacrificeday': 31841, 'uvc': 34709, 'lamp': 18786, 'qualification': 26220, 'trumppandemia': 33720, 'cheffed': 6564, 'abolish': 1639, 'profitsoverpeople': 25749, '360wisemedia': 829, 'cosumerbehaviour': 8219, 'aura': 3475, 'crystallize': 8655, '20am': 518, 'sniffling': 30131, 'pnpgooddeed': 25050, 'pinerolo': 24822, 'mercato': 20834, 'rowling': 28054, 'blighted': 4726, 'tusupplychain': 33882, 'privatisation': 25670, 'alphabites': 2469, 'businessbecause': 5595, 'advertisin': 2002, 'persia': 24542, 'downed': 10520, 'flight752': 12941, 'babyformula': 3703, 'ridiculouslyinflated': 27751, 'whining': 35864, 'stayathomerule': 30947, 'correctional': 8168, 'shutdownsa': 29638, 'cyrilramaphosa': 8878, 'gravitas': 14589, 'wither': 36108, 'consumerdevices': 7722, 'osu': 23598, 'marrison': 20372, 'rospotrebnadsor': 28013, 'nationality': 22060, 'looter': 19664, 'atrocious': 3390, 'aalto': 1570, 'rsas': 28077, 'oodee': 23410, 'selondon': 29069, 'foodwasted': 13158, 'ginny': 14143, 'everythings': 11865, 'healtheworld2020': 15334, 'delibrately': 9399, 'borsers': 5017, 'afton': 2102, 'planing': 24906, 'museumcollections': 21781, 'unstaged': 34464, 'datcp': 9060, 'statute': 30934, 'datcphotline': 9061, '422': 939, '7128': 1284, 'ripening': 27794, 'harvested': 15191, 'mandis': 20185, 'apartment415': 2886, 'decoration': 9255, 'cornoanvirus': 7989, 'borememore': 4996, 'standardize': 30848, 'anchorage': 2687, 'tpaas': 33372, 'remodeling': 27179, 'remodel': 27178, 'eva': 11804, 'lookit': 19642, 'weighty': 35643, 'militarylendingact': 21044, 'alcogel': 2327, 'blackrock': 4673, 'bluddy': 4796, 'corvid': 8185, 'pascha': 24187, 'pasoverdinner': 24189, 'lessening': 19120, 'sylhet': 32064, 'resultant': 27501, 'neuropathy': 22312, 'motioning': 21552, 'screenshots': 28837, 'myautosparkle': 21835, 'unremitting': 34436, 'enablement': 11371, 'ashame': 3225, 'blane': 4688, 'tedx': 32402, 'tedxuamonticello': 32403, 'disassociation': 10001, 'badactors': 3756, 'indomie': 16826, 'hypo': 16269, 'hypogowipeo': 16275, 'jamb': 17618, 'yansh': 36515, 'homecomingrewatch': 15814, 'talentcroft': 32186, 'vaxxers': 34847, 'subway': 31566, 'specializes': 30520, 'coreresearch': 7962, 'provding': 25932, 'bylaw': 5696, 'a19': 1558, 'sunderland': 31687, 'escort': 11669, 'gettingresults': 14049, 'quiche': 26338, 'quarantinekitchen': 26264, 'romaine': 27974, 'lettucerejoice': 19153, 'ezekiel': 12149, 'magog': 20007, 'gog': 14324, 'holyspirit': 15797, 'shareasquare': 29319, '12mb': 229, 'thewisebulls': 32793, 'degloabalized': 9351, 'travolta': 33546, 'cnc': 7097, 'routing': 28048, 'tooling': 33235, 'stagnated': 30819, 'microsite': 20979, 'netbase': 22293, 'trendanalysis': 33574, 'inficted': 16890, 'guilde': 14820, 'safty': 28302, 'irosponcible': 17396, 'merge': 20851, 'diminish': 9917, 'kira': 18415, 'radinsky': 26444, 'keepcalmandreadon': 18185, 'moronbrothersky': 21504, 'shamelessly': 29296, 'sanfancisco': 28442, 'goan': 14288, 'ageing': 2126, 'lda': 18967, 'marla': 20359, 'kanal': 18070, 'waqas': 35378, '9233417716': 1484, 'cpsc': 8378, 'restocks': 27476, 'petaling': 24586, 'syaiful': 32050, 'redzuan': 26940, 'zuniga': 36839, 'stockupontoiletpaper': 31231, 'loadup': 19470, 'readyaimfire': 26699, 'hb': 15272, '596': 1127, 'beerhalls': 4208, 'thesamplelandscape': 32766, 'rangpuri': 26577, 'mahipalpur': 20025, '7006787781': 1268, 'lynkem': 19884, 'doxoinsights': 10553, 'eabl': 10838, 'performer': 24493, 'kes': 18272, 'sibresearch': 29662, 'crips': 8533, 'xom': 36472, 'ballet': 3838, 'nutcracker': 22940, 'scratchy': 28827, 'mutation': 21813, 'maryse': 20408, 'zeidler': 36745, 'biometrics': 4587, 'assert': 3294, 'lawenforcementtech': 18933, 'corker': 7968, 'lidls': 19235, 'reseller': 27354, 'coveryourcough': 8321, 'foodinstitutefocus': 13117, 'terminating': 32515, 'apeshit': 2891, 'doyourpartco': 10556, 'oigetit': 23208, 'cps': 8377, 'stubbscleaningservices': 31460, '375': 844, '0274': 50, 'authorizes': 3528, 'contractual': 7828, 'creativeindustries': 8464, 'grocerymarketplace': 14699, 'clusterfuck': 7071, 'mealdelivery': 20621, 'popupstores': 25193, 'thoroughfare': 32879, 'sabah': 28230, 'gasolineprice': 13832, 'pergallon': 24499, 'workingremotely': 36240, 'technologytuesday': 32392, 'financialmarket': 12714, 'getajob': 14027, 'livemorewitholx': 19411, 'stave': 30937, 'taftaan': 32134, 'flan': 12873, 'unheralded': 34296, 'spreadcalmnotpanic': 30679, 'flexipay': 12936, 'endlesspossibilities': 11407, 'willis': 36008, 'thomson': 32873, 'speculative': 30540, 'wuhanhealthorganisation': 36399, 'stayhired': 30971, 'interrupter': 17225, 'kavango': 18143, 'ecommercestore': 10980, 'ecommercetrends': 10981, 'businesstips': 5609, 'skypapers': 29916, 'bs6': 5413, 'thegomechanicblog': 32690, 'bharatstage6': 4455, 'glaa': 14182, 'recruiter': 26871, 'wkers': 36130, 'simonblack': 29754, 'michaelson': 20947, 'stophoardin': 31276, 'retailweek': 27558, 'mands': 20189, 'interesing': 17180, 'inefficent': 16854, 'nestl': 22287, 'simplified': 29762, 'grocerystorehero': 14713, 'paracetamols': 24082, 'food4less': 13075, 'hourding': 15999, 'bedding': 4185, 'eid': 11126, 'fiasco': 12601, 'rile': 27775, 'willenhall': 35999, 'trustworthy': 33756, 'mpklib': 21618, 'whel': 35822, 'europ': 11790, 'eadible': 10843, 'lpd': 19760, 'kri': 18599, 'semarang': 29078, 'changi': 6443, 'naval': 22107, 'batam': 4013, 'riau': 27710, 'lcs': 18966, 'uren': 34584, 'conglomerate': 7603, 'deglobalizing': 9354, 'medibank': 20677, 'delish': 9411, 'targetnews': 32253, 'simcoe': 29747, 'reinon': 27064, 'artificialintelligence': 3180, 'deborahbirx': 9196, 'blathered': 4701, 'morecombe': 21482, 'quidco': 26349, 'crohn': 8570, 'skybroadband': 29912, 'flightradar24': 12942, 'dixieprole': 10266, 'strangeness': 31358, 'creepier': 8493, 'isreal': 17486, 'unapproved': 34118, 'misbranded': 21155, 'albertan': 2316, 'ifmk': 16405, 'wtrh': 36382, 'digitaldollar': 9871, 'alight': 2380, 'fryer': 13552, 'coyote': 8359, 'ensued': 11510, 'bayareacoronavirus': 4055, 'saf': 28270, 'extravagantly': 12124, 'swt': 32045, 'bucs': 5451, 'qb': 26182, 'iheartconcertonfox': 16442, 'poole': 25160, 'advant': 1988, 'reneweconomy': 27211, 'amoral': 2622, 'afsc': 2086, 'geodata': 13977, 'trumpmustwatch': 33717, 'cuckold': 8693, 'jewlsmulan': 17756, 'findomme': 12735, 'whiteslave': 35894, 'savemore': 28605, 'hinted': 15658, 'financebrokerage': 12699, 'bondyields': 4923, '34s': 808, 'shelving': 29401, 'damnidiots': 8966, 'jyot': 18010, 'mallofuaq': 20141, 'aroha': 3128, 'stigmatise': 31156, 'kegged': 18217, 'thereafter': 32752, 'givin': 14175, '636': 1207, 'xfinity': 36455, 'typography': 33962, 'sawant': 28630, 'cybernews': 8856, 'cyberawareness': 8851, 'masterchief': 20463, 'logile': 19585, 'xam': 36441, 'oku': 23252, 'arv': 3202, 'whoworeitbetter': 35932, 'coronafashion': 8034, 'blessedbethefruit': 4720, 'washthatfruit': 35438, 'knox': 18519, 'collates': 7223, 'energycontract': 11434, 'jewelosco': 17753, 'jewel': 17749, 'illinoiscoronavirus': 16479, 'pumpt': 26064, 'adv': 1983, 'nstlifestyle': 22882, 'cyberinsurance': 8855, 'enveloped': 11554, 'propped': 25857, 'mudrock': 21684, '2027': 503, 'omar': 23292, 'inspires': 17071, '92008150': 1480, 'alsafrrat': 2478, 'vision2030': 35122, 'argenio': 3079, 'antao': 2810, 'fuk': 13614, 'misusing': 21203, 'gottafindtoiletpaper': 14445, 'gottafindflour': 14444, 'buywhatyouneed': 5682, 'salivating': 28367, 'howling': 16045, 'safoodbank': 28300, 'littlewins': 19400, 'leasepricesfall': 19010, 'automotiveleasing': 3545, 'ecowrap': 11015, 'analysed': 2665, 'inoperability': 17021, 'gove': 14461, 'turkana': 33863, 'ngamia': 22419, 'kitty': 18451, 'operatingmasks': 23446, 'outb': 23637, 'evokes': 11882, 'brexiters': 5264, 'yorker': 36618, 'nypause': 22991, 'itsnotnormal': 17530, 'tommorow': 33216, 'grouos': 14739, 'dallor': 8949, 'rockmans': 27932, 'crematory': 8501, 'eroded': 11643, 'absynth': 1674, 'idealworld': 16359, 'virusprotection': 35114, 'pricesfall': 25600, 'britian': 5320, 'packagethieves': 23873, 'porchpirates': 25197, 'thankyouworkers': 32638, 'hena': 15505, 'perla': 24513, 'jitin': 17788, 'chi': 6614, 'strategize': 31371, 'seldom': 29010, 'lambis': 18776, 'lambinsurance': 18775, 'chuckling': 6771, 'whenyouknowyouknow': 35830, 'prudence': 25961, 'northamptonshire': 22706, 'northants': 22707, 'pricehiking': 25594, 'breakingthelaw': 5216, 'cei': 6285, 'chao': 6456, 'boycottchineseproducts': 5095, 'fnb': 13024, 'instalment': 17096, 'preferential': 25463, 'mascot': 20412, 'haneda': 15075, 'cpap': 8364, 'outbrske': 23642, 'pushingtargets': 26134, 'mahfworks': 20023, 'coronafever': 8035, 'coronathoughts': 8105, 'alfonso': 2359, 'oneuse': 23334, 'greenie': 14629, 'weenie': 35620, 'breadbasket': 5203, 'fertiliser': 12563, 'pinning': 24830, 'barrelling': 3961, 'urgly': 34591, 'twinkees': 33919, 'keepcookingandcarryon': 18189, 'halfyourplate': 14973, 'rdchat': 26666, 'urbandictionary': 34579, 'coined': 7185, 'springbreakers': 30699, 'beerbusiness': 4206, 'beerblog': 4205, 'groceryshoppingtips': 14706, 'socialdisdancing': 30196, 'dancetee': 8982, '1964': 384, 'shastri': 29344, 'slightest': 29974, 'discomfort': 10027, '297': 683, 'overlord': 23756, 'unthinking': 34481, 'letsbreakthechain': 19133, 'expedite': 12014, 'deterred': 9688, 'reflector': 26975, '254776371271': 632, '254720472374': 631, 'thegreattoiletpaperscareof2020': 32696, 'againt': 2111, 'gtn': 14782, 'namicc': 21984, 'namicontracosta': 21985, 'contracostacounty': 7822, 'ultraviolet': 34089, 'sterilises': 31112, 'reliving': 27138, 'helpmepleaseiamgoingcrazyhahahahahahahahahahahahahaa': 15468, 'worthless': 36309, 'personification': 24561, 'blackstone': 4674, 'repurchase': 27312, 'centrally': 6332, 'golfing': 14357, 'scrunching': 28856, 'losangelescounty': 19676, 'refocus': 26981, 'yousuckkaren': 36664, 'peoplearestupid': 24454, 'imbalance': 16524, 'cornaviruspandemic': 7973, 'excl': 11944, '5b': 1134, 'emsworth': 11363, 'seafront': 28884, 'unrelated': 34434, 'unsalted': 34442, 'salted': 28379, 'eon': 11577, 'smhpeople': 30064, '21dayslockdownindia': 555, 'browsjng': 5388, 'disregarding': 10160, 'celine': 6303, 'cheater': 6534, 'anoth': 2800, 'socialfun': 30213, 'q5': 26170, 'innovatively': 17016, 'cabo': 5720, 'verde': 34928, 'caboverde': 5721, '18months': 357, 'commoditi': 7364, 'wondrously': 36179, 'shinanigans': 29436, 'atcard': 3353, 'houle': 15996, 'covd19': 8306, 'geographical': 13981, 'normalizes': 22696, 'campion': 5854, 'openforbusiness': 23432, 'acp': 1803, 'channelfutures': 6450, 'traumatised': 33524, 'methadone': 20894, 'wecandothistogether': 35595, 'bran': 5152, 'prune': 25965, 'werther': 35703, 'poupon': 25312, 'ekurhuleni': 11145, 'ebates': 10932, 'attain': 3402, 'bigfive2020': 4508, 'enthusiast': 11532, 'turin': 33861, 'durability': 10771, 'separatist': 29150, 'categorically': 6169, 'choicebird': 6716, 'wy': 36427, 'inspectr': 17065, 'bioscience': 4589, 'diagnosing': 9775, 'abta': 1676, 'talley': 32196, 'neuro': 22311, 'gastroenterologist': 13836, 'trample': 33455, 'hankerchief': 15085, 'clearfield': 6962, 'aralen': 3045, 'chloroquinephosphate': 6706, 'hydroxychloroquin': 16232, 'azithromycine': 3670, 'hydroxychloroquineandazythromyacinnow': 16235, 'jozylyn': 17900, '789': 1337, 'handicap': 15038, 'ismail': 17453, 'oppose': 23470, 'telkomconnectssa': 32455, 'scdca': 28715, '3785ml': 848, 'metroatlanta': 20905, 'prepackage': 25487, 'goo': 14370, 'russell': 28172, 'broadening': 5340, 'colonel': 7247, 'wrt': 36365, 'unscruplous': 34452, 'glucometer': 14254, 'technicality': 32383, 'nannystate': 22000, 'commonpurpose': 7372, 'soros': 30381, 'mostexpensiveholiday': 21534, 'yyj': 36708, 'celiac': 6301, 'glutenfreeliving': 14262, 'belchingbeaver': 4270, 'peanutbuttermilkstout': 24354, 'granitecu': 14549, 'alwaysthere': 2514, 'shockwaves': 29478, 'makeinindia': 20089, 'indiafirst': 16786, 'warner': 35404, 'ignores': 16434, 'socialwork': 30242, 'wheeled': 35816, 'dtr': 10700, 'highwycombe': 15618, 'carnews': 6054, 'pontoon': 25154, 'maternity': 20490, '2020inoneword': 492, 'toiletpaperthrone': 33178, 'ontheroad': 23399, 'wonderfulday': 36174, 'reteet': 27570, 'wouldnt': 36317, 'spdr': 30503, 'ccl': 6242, 'rcl': 26660, 'ual': 33982, 'hydroalcoholic': 16223, 'rushhour': 28169, 'twircle': 33921, 'staffie': 30806, '2506998500': 625, 'zdnet': 36737, 'foodmanufacturing': 13122, 'ramune': 26548, 'hostess': 15967, 'hostessgift': 15968, 'debtor': 9202, 'salesians': 28358, 'wearedonbosco': 35548, 'salesian': 28357, 'centr': 6324, 'humanatm': 16124, 'mtnews': 21668, 'highwaypatrol': 15616, 'paving': 24282, 'cashlessociety': 6133, 'rentstrike2020': 27225, 'rentfreezenow': 27219, 'letsdothis': 19136, 'happythoughts': 15125, 'hmmhotmessmama': 15711, 'inaccessible': 16673, 'ottobock': 23620, 'holm': 15788, 'amputee': 2635, 'ottobockcares': 23621, 'sailor': 28325, 'pilgrim': 24795, 'forsale': 13273, 'risingrents': 27819, 'atsocialmediauk': 3392, 'rtukseller': 28090, 'uksmallbiz': 34069, 'ukhashtags': 34054, 'smeuk': 30060, 'versa': 34950, 'wilspow': 36014, 'dainfern': 8928, 'realestatelife': 26715, 'modesto': 21312, 'frito': 13511, 'pendemic': 24416, 'calf': 5772, 'painfully': 23913, 'kerosense': 18265, 'incentivising': 16698, 'retailenvironment': 27525, 'thirdchannel': 32835, 'caringisforlifenotjustforcoronavirus': 6038, 'toomanyonlycarewhenithitsthefan': 33237, 'societyproblem': 30247, 'aircross': 2238, 'nfi': 22412, 'retained': 27564, 'cleaningproducts': 6938, 'godhelpus': 14312, 'nancypelosi': 21994, 'solarpanels': 30289, 'endtimes': 11419, 'boast': 4840, 'spa': 30459, 'dermatologist': 9583, 'flaunt': 12905, 'heirloom': 15428, 'stayhomeoh': 30990, 'washyourgrocerycart': 35443, 'sanmiguel': 28485, 'ncov19': 22163, 'toolkit': 33236, 'toiletpapershortages': 33176, 'unworldly': 34506, 'afterall': 2089, 'propertymanagement': 25833, 'mullins': 21709, 'delinquent': 9408, 'organiser': 23540, 'reschedules': 27340, 'fairerworld': 12230, 'manically': 20206, 'cathrine': 6183, 'jansson': 17644, 'boyd': 5109, 'scour': 28807, 'descipline': 9594, 'shun': 29630, 'cunningness': 8726, 'butwhy': 5647, 'cleanthosetoilets': 6950, 'aewdynamite': 2034, 'jimmyhavoc': 17780, 'distansting': 10187, 'lssc': 19771, 'easyjet': 10910, 'jet2': 17745, 'britisher': 5323, 'invincible': 17315, 'irgchospitals': 17385, 'blackmarket': 4666, '702breakfast': 1275, '3rmb': 897, 'amir': 2599, 'ghodrati': 14090, 'flatt78': 12894, 'akhirah': 2277, 'coronaawareness': 8007, 'greensynenterprises': 14633, 'aphios': 2896, 'croma': 8573, 'vijaysale': 35037, 'closetheretailstore': 7033, 'terrify': 32525, 'hendrik': 15509, 'greymouth': 14650, 'medial': 20671, 'papua': 24078, 'miamistrong': 20941, 'unearned': 34242, 'shutitdownnow': 29643, 'fl6': 12860, 'chiller': 6646, 'prioritorise': 25650, 'preferable': 25460, 'kezelee': 18300, 'hdfc': 15289, 'raga': 26457, 'stonehawk': 31247, 'imscreaming': 16662, 'queueup': 26332, 'onceinside': 23317, 'inandout': 16683, 'landin': 18806, 'crownroyal': 8608, 'extremecheapskates': 12127, 'tlc': 33081, 'cheapskate': 6531, 'survivalplanning': 31898, 'thomasfarquhar': 32871, 'transitioning': 33486, 'admarc': 1926, 'wishers': 36091, 'janeruthacheng': 17636, 'fedsoc': 12495, 'federalism': 12488, 'allison': 2422, 'hurley': 16182, 'expe': 12007, 'xylene': 36487, 'aromatics': 3131, 'wearer': 35559, 'drongos': 10645, 'counselling': 8247, 'staysafesafeothers': 31029, 'juicing': 17938, '5gcoronavirus': 1145, 'sabuwa': 28239, 'balarabe': 3830, 'sheik': 29377, 'gumi': 14845, 'wanton': 35374, 'jmfamilyimpact': 17796, 'suryashri': 31910, 'meningitis': 20804, 'tuberculosis': 33800, 'vacationrentals': 34724, 'melville': 20775, 'corporateresponibility': 8156, 'coveredcalifornia': 8317, '9700': 1523, '429': 945, 'tito': 33070, 'titosvodka': 33071, 'monty': 21443, 'virucide': 35102, 'barbicide': 3924, 'virtualassistant': 35095, 'retailbot': 27520, 'conversationalcommerce': 7869, 'deteriorate': 9680, 'districtmagistrate': 10224, 'lko': 19437, 'pricee': 25588, 'shameshame': 29302, 'sgbudget2020': 29246, 'gbfb': 13881, 'stride': 31417, 'mainecoon': 20052, 'ukgb': 34050, 'padre': 23893, 'fishmonger': 12816, 'itsthesmallthings': 17537, 'jnjkiljhkh': 17799, 'pathological': 24239, 'unaccommodating': 34109, 'civilizing': 6851, 'aplangflashback': 2900, 'lankan': 18824, 'myhineysclean': 21853, 'narcos': 22014, 'pabloescobar': 23860, 'makemegoviral': 20092, 'asa': 3211, 'meloy': 20771, 'register4covid19safeodisha': 27025, 'guyana': 14877, 'goldcoast': 14341, 'easterholiday': 10893, 'foldable': 13046, 'respecively': 27419, 'rigati': 27762, 'marinara': 20302, 'parmigiano': 24150, 'reggiano': 27015, 'parsley': 24154, 'kvqlybdymu': 18668, 'unexpired': 34262, 'paywave': 24316, 'rueful': 28114, 'ameen': 2565, 'teeshirt': 32413, 'desiccated': 9609, 'scraping': 28820, 'weareckpublichealth': 35545, 'arranging': 3142, 'cohabiting': 7168, 'bahawalpur': 3789, 'affidavit': 2048, 'umair': 34093, 'tahir': 32141, '923219537814': 1483, 'isb': 17424, 'cognizant': 7166, 'huntingranch': 16177, 'deerranch': 9287, 'whittaildeer': 35904, 'hutchinsonrackattack': 16210, 'paintball': 23916, 'mirin': 21150, 'picknpaycycad': 24757, 'passionate': 24197, 'unfitforoffice': 34274, 'polit': 25119, 'jerke': 17722, 'conroe': 7637, 'govenment': 14463, 'microscope': 20977, 'prayforworld': 25407, 'midgley': 20996, 'musicnotation': 21794, 'heisting': 15430, 'floridia': 12979, 'savethenhs': 28615, 'donothoard': 10413, 'haan': 14898, 'mop': 21464, 'e2010y': 10835, 'aua0twjrs4': 3444, 'zoomllshop': 36824, 'fowl': 13330, 'nyash': 22971, 'fuqed': 13667, 'inventoried': 17290, 'mnwx': 21258, 'entrepreneurial': 11546, 'greedhoarders': 14611, 'glutardsmatter': 14259, 'stayhomesaving': 30997, 'hotelier': 15982, 'lowry': 19751, 'twiglets': 33915, 'predictiveprogramming': 25451, 'rfid': 27687, 'reptilian': 27307, 'iphone12pro': 17354, 'blacklist': 4662, 'karantina': 18092, 'lockdownworld': 19556, 'distaste': 10191, 'simplify': 29763, 'borax': 4982, 'moxie': 21604, 'sanborn': 28419, 'fonte': 13070, 'bagasse': 3777, 'pregnancy': 25467, 'gouvernement': 14459, 'milestone': 21040, 'socialenterprise': 30212, 'cmpcertified': 7089, 'cmp': 7088, 'crewenterprises': 8512, 'dubmagazine': 10712, 'victorli': 35000, 'outputgrowth': 23685, 'retailstrategy': 27550, 'unseasoned': 34454, 'hlsnmbbyrb': 15701, 'facilitant': 12196, 'mobilitat': 21281, 'thisistherealspain': 32857, 'tessa': 32543, 'kerry': 18267, 'valentia': 34751, 'financialhealth2020': 12708, 'servicens': 29187, 'fenns': 12545, 'breakingtoday': 5217, 'uptime': 34567, 'rhetorical': 27696, 'graciousness': 14514, 'benice': 4324, 'cockup': 7133, 'stopthedancing': 31298, 'quarantineexcuses': 26263, 'ihateithere': 16439, 'imissoutside': 16539, 'masterthecrisis': 20469, 'growthfromknowledge': 14758, 'lotto': 19696, 'tooting': 33244, 'departmentstores': 9520, 'worldfood': 36264, 'demandgeneration': 9448, 'demandgen': 9447, 'immortan': 16558, 'joebiden': 17824, 'joementum': 17830, 'gretchennomtvhits': 14645, 'gretchenwitmer': 14646, 'xxvp': 36486, 'wastelanders': 35457, 'wasteland': 35456, 'complicates': 7468, 'nursescovid19': 22929, 'lithuania': 19382, 'choking': 6719, 'caronavirusupdate': 6071, 'unhealthydeliciousfood': 34295, 'thingamajig': 32814, 'elmvale': 11235, 'tvjallangles': 33893, 'hidalgo': 15586, 'spead': 30504, 'flicking': 12937, 'teachfromhome': 32336, 'puzzleoftheday': 26150, 'validate': 34757, 'cbn': 6227, 'connivence': 7628, 'terre': 32519, 'haute': 15231, 'iger': 16418, 'forgoes': 13245, 'vallourec': 34764, 'fieri': 12623, 'fibonacci': 12607, 'stimuluscheck': 31172, 'ojiwulila': 23239, 'dewitt': 9735, 'gameplay': 13780, 'inspecting': 17062, 'overcharged': 23726, 'tsutomu': 33785, 'watanabe': 35466, '5167er': 1073, 'griftiest': 14661, 'opportunistically': 23468, 'complies': 7471, '50p': 1064, 'foodchat': 13093, 'noonlineshopping': 22669, 'fridaymorning': 13482, 'climatefriday': 6998, 'sobbing': 30177, '020': 43, '3738': 843, 'mairaj': 20067, 'apprised': 2991, 'squashed': 30743, 'nycprep': 22978, 'hadleygamble': 14919, 'ixworth': 17561, 'socialmediaguru365': 30235, 'respo': 27435, 'steeprise': 31078, 'meitei': 20751, 'warsaw': 35415, 'krakow': 18593, 'm65': 19898, 'stayhom': 30974, '1970s': 389, 'puting': 26140, 'cuttlass': 8833, 'lagosunrest': 18748, 'ogununrest': 23193, 'faceface': 12177, 'maskface': 20423, 'basildon': 4000, 'lawson': 18939, 'fcaupdate': 12437, 'flattenthecurvetogether': 12901, 'udsd': 34007, 'warpaints': 35407, 'ladro': 18733, 'savehospo': 28599, 'savehospitality': 28598, 'motherfuckin': 21543, 'yea': 36534, 'familymeals': 12287, 'retooling': 27583, 'togetherfromapart': 33128, 'fijianconsumerrights': 12657, 'malignancy': 20137, 'modernism': 21307, 'vapid': 34812, 'mypandemicplandesurvival': 21865, 'emissionsreductions': 11306, 'holidayfarms': 15774, 'glenhead': 14211, 'secureteam420': 28952, 'veritas': 34937, 'commune': 7378, 'viewed': 35025, 'shittier': 29465, 'jenga': 17708, 'abolishes': 1640, 'feeder': 12502, 'steer': 31079, 'impunity': 16658, '20how': 524, '20is': 525, '20covid': 522, '20changing': 520, '20consumer': 521, '23038': 584, '20ecommerce': 523, '20trends': 534, '3f': 873, 'japaneese': 17652, '1350': 249, 'nonfiction': 22644, 'raving': 26640, 'brainer': 5138, '2wds': 738, 'smmes': 30073, 'lukewarm': 19804, 'bewareofcovid19': 4427, 'logging': 19581, 'fashionista': 12370, 'sketchdaily': 29869, 'fashionillustration': 12366, 'outfitoftheday': 23654, 'fashionillustrationoftheday': 12367, '8733': 1426, 'indiadeservesbetter': 16780, 'homestuck': 15858, '1100': 181, '1600': 303, 'validates': 34759, 'impulse': 16656, 'shoreditch': 29554, 'vasayo': 34834, 'bstards': 5418, 'riffa': 27758, 'gutted': 14873, 'pollock': 25135, 'spectacular': 30534, 'thisisnotok': 32855, 'currencyusers': 8762, 'currencyissuer': 8761, 'learnmmt': 19004, 'thedeficitmyth': 32676, 'joomye': 17871, 'muddled': 21680, 'unrestrained': 34438, 'convene': 7856, 'njgop': 22548, 'tjx': 33076, 'chezamy': 6613, 'stayhealthymyfriends': 30970, 'roiled': 27952, 'crisisnew': 8539, 'throwback': 32927, 'sycamore': 32052, 'hamlet': 15002, 'impromptu': 16643, 'italua': 17504, 'normaly': 22699, 'donttravelanditwont': 10449, 'saute': 28588, 'modeling': 21296, 'geographic': 13980, 'staystay': 31041, 'maya': 20538, 'angelou': 2733, 'malaise': 20116, 'mastered': 20465, 'ausairmasks': 3478, 'adultdiapers': 1977, 'marsh': 20375, 'amerciaworkstogether': 2576, 'handsanitzer': 15059, 'automotivetouchup': 3547, 'lrg': 19764, 'enforceability': 11445, '32c': 791, 'chen': 6587, 'xiaobo': 36458, 'knead': 18490, 'gonzalez': 14369, 'newengland': 22341, 'supportchewy': 31801, 'mustseetfc': 21807, 'fierce': 12622, 'iloveyou': 16502, 'jhootspharmacy': 17766, 'whimn': 35861, '8523': 1408, 'regimen': 27018, 'filmmyhospital': 12677, 'juddleg': 17918, 'andrewholnessjm': 2708, 'sweettalker': 32001, 'tworollsleft': 33939, 'intellicast': 17149, 'mrnews': 21632, 'lockdownsrilanka': 19551, 'lk': 19434, '1130593481': 188, 'polaris': 25102, 'adebis': 1889, 'unido': 34301, 'ptg': 26002, 'rockin': 27929, 'wearin': 35564, 'hoody': 15898, 'thinkin': 32825, 'standin': 30850, 'schnitkey': 28742, 'middlesbrough': 20994, 'jamescookhospital': 17621, 'departure': 9521, 'assalam': 3282, 'alaykum': 2305, 'midpoint': 21001, 'hiace': 15579, 'n24m': 21900, '08175974345': 117, 'sedanos': 28965, 'realnews': 26747, 'globaljournals': 14234, 'sciencefacts': 28771, 'neuclear': 22309, 'gartnersc': 13820, '2cater2': 695, 'kalypso': 18055, 'wondercat': 36171, '20bottles': 519, '03pm': 68, '4got': 1013, 'breakie': 5211, 'fantini': 12305, 'khc': 18320, 'sighing': 29705, 'bloodthirsty': 4773, 'uksupermarkets': 34071, 'grassy': 14574, '617': 1190, 'luciebee': 19785, 'awry': 3639, 'indirectly': 16817, 'sundry': 31689, 'includ': 16712, '2many2selfish': 717, 'quarantaene': 26237, 'datenight': 9065, 'selfisolationgame': 29042, 'coronadeutschland': 8031, 'quiagen': 26337, 'modular': 21320, 'pbms': 24321, 'pocketing': 25062, 'finale': 12688, 'foe': 13038, 'stop5g': 31259, '5gweapon': 1147, 'chinashutdown': 6668, 'economiccollapse': 10993, 'economicreset': 10998, 'medicalmartiallaw': 20689, 'wuhan400': 36392, 'soop': 30369, 'seema': 28985, 'shandil': 29307, 'patio': 24245, 'kissinger': 18431, 'worldmarket': 36271, 'accra': 1749, 'chink': 6684, 'cascading': 6111, 'micros': 20975, 'reaping': 26757, 'haliburton': 14974, 'pku': 24883, 'relook': 27143, 'mindminenxt': 21091, 'pleasestayhome': 24971, 'pleasestop': 24972, 'covidindex': 8337, 'feedgrains': 12503, 'yang': 36510, 'ramai': 26523, 'orang': 23502, 'artis': 3182, 'banyak': 3914, 'bolelah': 4898, 'sumbangkan': 31645, 'sedikit': 28972, 'untuk': 34487, 'pembelian': 24403, 'essentialsonly': 11705, 'slomo': 29990, 'devestating': 9715, 'cockblocked': 7129, 'michelle4il': 20953, 'willcounty': 35998, 'upsurge': 34564, 'bestselling': 4396, 'crostata': 8597, 'abbreviation': 1597, 'oaxacan': 23029, 'jargon': 17657, 'fairtrading': 12237, 'mema': 20776, 'michel': 20949, 'norfolk': 22688, 'nutcase': 22939, 'similarly': 29750, 'shelflife': 29386, 'erie': 11640, 'weapplaud': 35535, 'solarhorss': 30288, 'blenco': 4716, 'hairstyle': 14952, 'dalal': 8937, 'rink': 27784, 'summer2020': 31657, 'skipped': 29900, 'asianamericans': 3241, 'chiraq': 6690, '50cent': 1055, 'queenzflip': 26311, 'zoey': 36806, 'maraist': 20263, 'plaintiff': 24899, 'misrepresented': 21176, 'fmglaw': 13016, 'ofgem': 23182, 'homemadebread': 15836, 'bringhomeecback': 5308, 'lifeskills': 19263, 'bakingbread': 3820, 'lolli': 19602, 'gagging': 13740, 'collectivementalpower': 7231, '5x70ml': 1170, 'washandset': 35424, 'dxxkheads': 10816, 'paddymcguinness': 23891, 'barzani': 3984, 'excellency': 11924, 'contentment': 7795, 'relocalisation': 27140, 'foodsupplychains': 13147, 'brokered': 5359, 'n700': 21909, 'n1': 21894, '5pouches': 1164, 'convergence': 7865, 'googl': 14405, 'atvi': 3439, 'blinded': 4730, 'sooper': 30370, 'shill': 29432, 'lyingbiden': 19873, 'trusting': 33753, 'paywalls': 24315, 'downing': 10525, '591': 1124, 'dieselprice': 9830, 'dieselfuel': 9829, 'preside': 25526, 'comissioner': 7319, 'sajjad': 28334, 'briefed': 5284, 'nonna': 22649, 'winkwink': 36046, 'catharsus': 6179, 'magacreatedcoronaworld': 19976, 'hillyeah': 15634, 'vinvi': 35067, 'vinvicorp': 35068, 'caixin': 5752, 'lunarnewyear': 19817, 'riotinto': 27791, 'bhp': 4469, 'fortescuemetalsgroup': 13277, 'royhill': 28061, 'degenerate': 9349, 'prematurely': 25476, 'whiff': 35855, 'orgy': 23550, 'seattleu': 28927, 'deba60': 9179, 'compliant': 7465, 'ltown': 19777, 'shitbeenreal': 29454, 'tard': 32246, 'durkan': 10783, 'freakouts': 13404, 'wfpb': 35766, 'meijer': 20750, 'postive': 25277, 'wudnews': 36388, 'wudupdates': 36389, 'whatsupdoha': 35801, 'behaves': 4240, 'husbandappreciation': 16198, 'husbandlove': 16199, 'husbandoftheyear': 16200, 'besthusband': 4390, 'nationalize': 22061, 'sfightcorona': 29244, 'traction': 33411, 'sfi': 29243, 'bln': 4745, 'excused': 11956, 'eloquence': 11238, 'eloquent': 11239, 'stilled': 31158, 'hypochlorite': 16270, 'hydroxycholorquine': 16236, 'brutalize': 5406, 'regaining': 27010, 'dma': 10289, 'pall': 23945, 'pplt': 25361, 'slv': 30011, 'ivanka': 17551, 'sharekhanresearch': 29326, 'apl': 2899, 'sharekhanfna': 29325, 'gleaned': 14205, 'highwood': 15617, 'plattsoil': 24936, 'frecklington': 13406, 'fume': 13634, 'imtiaz': 16666, 'gulshan': 14841, 'iqbal': 17373, 'arsalan': 3161, '923402045318': 1485, 'lutfitrends': 19842, 'accomodations': 1733, 'seizing': 29006, 'optimally': 23484, 'emerson': 11292, 'mateus': 20491, 'loveandantennas': 19715, 'japanesebrushpen': 17654, '100armyofwoah': 131, 'emphysema': 11332, 'enrolled': 11504, 'happyathome': 15112, 'fy': 13718, 'publiclibrary': 26023, 'hazelnut': 15266, 'creamer': 8453, 'happylife': 15121, 'mudhole': 21682, 'stomped': 31244, 'grocey': 14719, 'paloma': 23955, 'valentin': 34752, 'deforest': 9339, 'compton': 7496, '55th': 1103, 'retiring': 27582, '1300': 239, 'cetera': 6365, 'ravindra': 26639, 'investmentspecial': 17312, 'brightest': 5293, 'thingi': 32815, 'anticlimax': 2831, 'missedopportunity': 21179, 'forbids': 13194, 'organisational': 23537, '25marzo': 639, 'wannabe': 35368, 'hudsoncounty': 16098, 'rigorously': 27773, 'sling': 29979, 'comex': 7301, 'attendance': 3410, 'maroc': 20366, 'hyperspreading': 16265, 'presid': 25525, 'unqualified': 34425, 'endorsement': 11414, 'jakarta': 17603, 'dinomart': 9936, 'pizzaandeastereggsfordinner': 24872, 'sharpened': 29339, 'deeside': 9288, 'scalefast': 28664, 'abandonment': 1590, 'aov': 2880, 'mvb': 21826, 'drummer': 10670, 'disabilityandcovid19': 9978, 'spreadsheet': 30688, 'coronan': 8071, 'timer': 33019, 'gluttony': 14265, 'garda': 13801, 'grange': 14548, 'rented': 27217, 'groce': 14688, '37qyihjaypbuax9tnmdfro6zkdftyrvfvl': 849, 'macho': 19921, 'staysafesta': 31032, 'tyas': 33950, 'scone': 28788, 'dairypod': 8933, 'soundcloud': 30401, '199200': 405, 'bugy2k': 5473, 'bloor': 4782, 'lamejokethursday': 18780, 'lamejokethurs': 18779, 'lamejoke': 18778, 'jokesfordays': 17860, 'tiktokyansen': 32992, 'mcopinion': 20601, 'realisation': 26722, 'opoku': 23460, 'adum': 1982, 'kumasi': 18642, 'quarantineliving': 26266, 'yangon': 36512, 'manifestation': 20208, 'ddc': 9142, 'pusateri': 26129, 'soriana': 30380, 'fruitcake': 13543, 'notfrombeer': 22770, 'fruitloops': 13544, 'tena': 32479, 'lacto': 18728, 'africaannounces': 2077, 'capitalismistheproblem': 5950, 'responsibleretail': 27451, 'spoilt': 30620, 'omnibus': 23305, 'researchstudy': 27352, 'corona2020': 8001, 'webnair': 35586, 'tort': 33287, 'financialtips': 12723, 'creditsoup': 8486, 'hoardnado': 15730, 'danroulette': 9002, 'loven': 19723, 'downtrend': 10547, 'hemorrhoid': 15500, 'crsponsored': 8610, 'cuarentena': 8686, 'groccery': 14687, 'karcamo13': 18094, 'karcamogaming': 18095, 'callateidiota': 5790, 'karcamo': 18093, 'facepaint': 12184, 'facepainted': 12185, 'enemiesofthepeople': 11425, 'counteracted': 8256, 'vegi': 34884, 'quarantineblues': 26249, 'hoardingtoiletpaper': 15728, 'shoestring': 29482, '3billion': 864, '357million': 819, 'reponse': 27272, 'downloadable': 10528, 'manifesting': 20210, 'conrad': 7636, 'stateofhealth': 30911, 'thankyoupublichralth': 32631, 'mymdfarmers': 21860, 'papertowelrolls': 24071, 'bullied': 5503, 'corox': 8149, 'edchat': 11025, 'memeing': 20781, 'almighty': 2450, 'aamen': 1571, 'webdesign': 35579, '08079024516': 111, 'modelled': 21297, 'gasolime': 13829, '414': 931, 'posture': 25287, 'coldness': 7198, 'fearnot': 12471, 'deseo': 9601, 'mercilessly': 20846, 'coronasweden': 8100, 'everythingfromhome': 11864, 'cautionary': 6205, 'myriam': 21871, 'splurge': 30615, 'masturbatory': 20472, 'hellscape': 15445, 'pilgrimage': 24796, 'insistence': 17054, 'brutalizing': 5408, 'gazetted': 13873, 'susie': 31919, 'ncnu': 22161, 'beehivestate': 4198, 'contempt': 7791, 'bhau': 4461, 'digressed': 9899, 'compliment': 7472, 'bountypapertowels': 5065, 'multistores': 21732, 'sanjivgoenka': 28480, 'excelent': 11921, 'terible': 32510, 'specialy': 30525, 'mrigendu': 21630, 'froms': 13521, 'streetmodest': 31391, 'sociological': 30250, 'eastermassacre': 10895, 'buharitormentor': 5475, 'independant': 16768, 'mobileapps': 21273, 'nationalguard': 22055, 'thefive': 32684, 'southwestern': 30445, 'coo': 7895, 'mushtaque': 21786, 'prolonging': 25792, 'ketua': 18281, 'keluarga': 18230, 'clotted': 7047, 'informedsecurity': 16929, 'differentbydesign': 9841, 'medident': 20705, 'neil': 22257, 'bradley': 5129, 'poppy': 25185, 'forwood': 13303, '2004': 462, 'riled': 27776, 'bummed': 5515, 'colossal': 7262, 'reasses': 26773, 'blackout': 4671, 'fot': 13313, 'seka': 29008, 'gayaza': 13865, 'folded': 13047, 'selfquarantinechallenge': 29053, 'zley': 36799, 'antalya': 2809, 'ayan': 3646, 'frans': 13380, 'rkiye': 27849, 'nin': 22513, 'ald': 2336, 'tedbirleri': 32398, 'burada': 5533, 'dezenfektan': 9740, 'maskeyi': 20422, 'cretsiz': 8509, 'veriyorlar': 34939, 'arad': 3042, 'markette': 20345, 'var': 34817, 'diyor': 10272, 'cumalar': 8716, 'cumartesi': 8717, 'paddock': 23889, 'halloweenmovies': 14987, 'halloweenmovie': 14986, 'hadonfield': 14921, 'serialkiller': 29166, '150b': 281, 'wewillwin': 35757, 'pce': 24326, 'takeoutservice': 32167, 'syngentaproud': 32087, 'nohopeinsite': 22611, 'zmartbit': 36801, 'thoughtfully': 32887, 'votethemout': 35217, 'messi': 20879, 'superspreaders': 31770, 'madhuresorts': 19956, 'beefbiryani': 4196, 'boiled': 4885, 'namaaz': 21971, 'biryani': 4615, 'neurotic': 22313, 'proudnhs': 25928, 'enticing': 11536, 'portraying': 25224, 'nutritional': 22948, 'muma': 21738, 'oneday': 23322, 'iloveu': 16501, 'leak': 18986, 'hoodie': 15896, 'transfats': 33467, 'ruislip': 28127, 'xhb': 36456, 'weneedtoshare': 35688, 'renton': 27221, 'turmeric': 33867, 'renetrevor': 27205, 'cipla': 6808, 'sulfate': 31636, 'reut': 27622, 'combi': 7281, 'borg': 4997, 'batteryfarm': 4044, 'chickenflu': 6629, 'freerange': 13437, 'appetizing': 2951, 'campingbed': 5853, 'selfmed': 29048, 'lekki': 19081, 'resent': 27359, 'polar': 25101, 'brimming': 5301, 'faucihero': 12401, 'tablighijamaat': 32117, 'saharanpur': 28313, 'firozabad': 12792, 'infodemic': 16917, 'illuminated': 16487, 'illuminate': 16486, 'nhsthank': 22443, 'formigration': 13259, 'unpopularopinion': 34413, 'oklahomacity': 23249, 'nashvill': 22034, 'neuk': 22310, 'lln': 19448, 'kia': 18329, 'clothe': 7042, 'zooming': 36823, 'peterhead': 24596, 'fuckyoupayme': 13595, 'homecare': 15810, 'toluna': 33207, 'tolunainfluencers': 33208, 'edmontonions': 11050, 'nfha': 22411, '3215': 785, 'onag': 23311, 'gud': 14803, 'invester': 17299, 'boycotthu': 5099, 'quarantineatvshow': 26247, 'firefauci': 12777, 'stimulusdeposit': 31174, '28brl': 677, 'fixit': 12849, 'fence': 12543, 'cufflink': 8701, 'shifaa': 29425, 'includin': 16716, 'dumbtards': 10743, 'masspanic': 20458, 'stupidpeople': 31492, 'waltermart': 35346, 'maggi': 19989, 'gocorona': 14303, 'behishandsandfeet': 4253, 'everlasting': 11842, 'typing': 33960, 'queersinquarantine': 26313, 'everythingfloats': 11863, 'stephenking': 31099, 'zero027': 36763, 'edits': 11042, 'proofreads': 25821, 'observes': 23064, 'theweek': 32789, '615': 1189, '741': 1303, '4737': 985, 'brahach': 5134, 'usecon': 34634, 'iheartradio': 16443, 'nbaquarantine': 22133, 'exhibition': 11978, 'faba': 12159, 'permissible': 24522, 'stunningly': 31484, 'leaderless': 18976, 'fkn': 12857, '043': 71, 'bloodofjesus': 4770, 'eugenics': 11783, 'crystalpalace': 8656, 'digitaldivide': 9870, 'se19': 28877, 'itunes': 17542, 'uttering': 34703, 'kj': 18457, 'houseprice': 16011, 'frustating': 13547, 'mobileapp': 21271, 'softwaredevelopmentcompany': 30275, 'customsoftwaredevelopment': 8817, 'softwaredevelopment': 30274, 'buyin': 5665, 'skintness': 29898, 'bullheaded': 5502, 'vaishali': 34742, 'shopnormally': 29522, 'resalemarket': 27337, 'ottawahomes': 23616, 'howdy': 16037, 'wardrobe': 35385, 'minimalism': 21108, 'augmentedreality': 3470, 'ardor': 3067, 'ignis': 16426, 'cbg': 6225, 'inthistogetherdubai': 17244, 'fashiondesign': 12364, 'wetin': 35747, 'coronate': 8102, 'kentstreet': 18247, 'manhandle': 20197, 'wefightcovid19': 35626, 'ibc': 16300, 'gadget': 13732, 'helpdonothurt': 15451, 'ecart': 10952, 'burdensome': 5537, 'shug': 29628, 'rnb': 27869, 'rnbmusic': 27870, 'trapmusic': 33512, 'hot97': 15974, 'power105': 25327, 'mismanagement': 21171, 'daylight': 9120, 'underresourced': 34206, 'repellent': 27247, 'quaratinebubble': 26282, 'evryday': 11890, '2dys': 701, '890': 1441, 'hilary': 15628, 'ukac': 34041, 'spouting': 30667, 'xiaomi': 36459, 'oppo': 23462, 'preda': 25440, 'employe': 11339, 'davies2019': 9082, 'legominifigures': 19067, 'ncsc': 22170, 'termed': 32512, 'weeknews': 35619, 'apocalyps': 2910, 'babaji': 3693, 'onshore': 23388, 'hover': 16029, 'personalised': 24555, 'megaphone': 20737, 'nomestleft': 22628, 'soundtrack': 30404, 'bunnyday': 5530, 'truckerlife': 33664, 'ademuyiwa': 1896, 'efiwe': 11095, 'akin1': 2279, 'jag': 17592, 'thegr8': 32692, 'ju': 17910, 'heardd': 15362, 'zombieprep': 36812, 'nmtrue': 22569, 'tao': 32233, 'lordoftherings': 19671, 'wallpaperwednesday': 35333, 'speeading': 30542, 'futako': 13690, 'epileptic': 11592, 'oilpricewars': 23231, 'oilandgastips': 23213, 'getinformed': 14036, 'postie': 25272, 'whattya': 35806, 'ycx': 36531, 'jbeil': 17673, 'seperate': 29151, '0789': 102, '861': 1416, 'trbusiness': 33552, 'shilla': 29433, 'hkia': 15696, 'dubaipolice': 10708, 'mercutio': 20847, 'relocating': 27142, 'bumbed': 5513, 'isolationillustration': 17472, 'isolationday8': 17468, '923': 1482, '2gethertheseries': 706, 'gmmtv': 14274, 'flagstaff': 12866, 'hmgovernment': 15706, 'poac': 25056, 'carehomes': 6022, 'approvable': 2997, 'naught': 22100, 'videocalls': 35005, 'physicalhealth': 24737, 'selfemployedmattertoo': 29024, 'selfemployment': 29026, 'deliberatly': 9397, 'noiwontstop': 22615, 'cloy': 7055, 'cloyfever': 7056, 'pacifica': 23865, 'kpixtogether': 18580, 'applesponsorme': 2966, 'opeiu': 23425, 'teepublic': 32412, 'fermanagh': 12552, 'omagh': 23287, 'northernireland': 22715, 'theorizing': 32734, 'dbdoodle': 9125, '384': 851, 'jamecia': 17619, 'swat': 31976, 'herby': 15526, 'demonisation': 9471, 'stereotyping': 31110, 'backpacker': 3736, 'derisked': 9578, 'gotcha': 14440, 'attracts': 3432, 'regressive': 27033, 'inelastic': 16857, 'baluchestan': 3849, 'moy': 21605, 'avivian': 3591, 'relianceindustries': 27122, 'rarest': 26609, 'unc': 34137, 'icasa': 16316, 'recentlu': 26813, 'heared': 15363, 'day11oflockdow': 9100, 'rfr': 27689, 'instacool': 17082, 'instafam': 17083, 'bham': 4450, 'livepd': 19412, 'livepdnation': 19413, 'livewell': 19422, 'safeshifts4all': 28285, 'gambian': 13772, 'pandemi': 23983, 'dumpling': 10750, 'stillgottawork': 31159, 'penticton': 24442, 'isba': 17425, 'mp02': 21609, '01625': 32, '874220': 1427, 'dar': 9008, 'ciapp': 6788, 'shoppingdeals': 29541, 'flupocalypse': 13001, 'hemel': 15496, 'vandersloot': 34788, 'jetfuel': 17746, 'storagetanks': 31313, 'frackingcrews': 13349, 'landmass': 18810, 'degrade': 9357, '800km': 1360, 'slogging': 29989, '50lbs': 1061, 'nairatwtpays': 21954, 'unbundles': 34136, 'opted': 23479, 'competiton': 7442, 'yase': 36525, 'kasie': 18113, 'quintessential': 26361, 'yaar': 36496, 'dadu': 8901, 'spaceballs': 30461, 'disperse': 10137, 'payed': 24295, 'kpk': 18581, 'awarding': 3618, 'henleaze': 15511, 'justintimecx': 17988, 'freetravelforkeyworkers': 13442, 'coverall': 8315, 'hypebeast': 16254, 'mtv': 21672, 'tmz': 33093, 'prioritycustomers': 25652, 'frenzied': 13454, 'recognises': 26833, 'wvstatejournal': 36411, 'succession': 31574, '1rm': 450, 'technically': 32384, '620': 1194, '663': 1225, '75965': 1314, 'timberlake': 33006, 'sgh': 29248, 'aisola': 2260, 'getkart': 14037, 'alocoholbasedhandsanitizer': 2455, 'usehandsanitizer': 34639, 'getr': 14042, 'nkebranche': 22556, 'sorgt': 30379, 'ums': 34103, 'leergut': 19036, 'ruft': 28117, 'zur': 36840, 'ckgabe': 6859, 'leerer': 19035, 'mehrweg': 20746, 'flaschen': 12880, 'ein': 11131, 'gibt': 14107, 'jeden': 17688, 'leeren': 19034, 'kasten': 18116, 'rolle': 27962, 'keller': 18222, 'puebla': 26042, 'crooked': 8580, 'diming': 9916, 'ncov2019': 22164, 'thecourieruk': 32671, 'kinross': 18410, 'communitysupport': 7392, 'carbondioxide': 5987, 'immunodeficiency': 16567, 'dippstick': 9952, 'conversionia': 7871, 'deliver25': 9416, 'ahlstrom': 2198, 'munksj': 21757, 'kaveh': 18144, 'waddell': 35261, 'johnlewispartnership': 17844, 'photovoltaic': 24726, 'distilled': 10192, 'exile': 11981, 'gynecologist': 14891, 'hopelessness': 15916, '90oz': 1468, 'kenyantraffic': 18255, 'coviod19': 8342, 'agriculturalsector': 2175, 'commoditymarket': 7366, 'retrofitting': 27598, 'kelvin': 18231, 'wifey': 35969, 'goldensehunday': 14343, 'crazier': 8441, 'toasty': 33102, 'cheez': 6560, 'peopleactingcrazy': 24448, 'susans': 31914, 'shingiedailyword': 29438, 'sanitarzers': 28452, 'secretsofyoursupermarketfoods': 28945, 'awkwardly': 3634, 'asgm': 3223, 'occoquan': 23094, 'mandrilltoys': 20188, 'dogfood': 10340, 'catfood': 6177, 'birdfood': 4605, 'fishfood': 12814, 'happycat': 15114, 'happydog': 15116, 'orijen': 23560, 'acana': 1699, 'tasteofthewild': 32275, 'ziwipeak': 36797, 'serum': 29174, 'philiasolutions': 24680, 'trendline': 33578, 'teleconferencing': 32436, 'didier': 9814, 'singlemarket': 29802, 'sax': 28633, 'whatarethosewednesday': 35783, 'prideslides': 25610, 'customslides': 8816, 'stridewithpride': 31418, 'lookgoodfeelgooddogood': 19638, 'neversettle': 22328, 'spiritwear': 30596, 'teamapparel': 32341, 'teamgear': 32348, 'cocobod': 7138, 'lanxess': 18827, 'blacktwittermovement': 4676, 'tissuechallenge': 33060, 'mismatch': 21172, 'jit': 17787, '638': 1208, '2772': 663, 'roshida': 28008, 'khanom': 18317, 'factrade': 12208, 'trendingnews': 33577, 'centralgovernment': 6329, 'sadtire': 28269, 'mragwani': 21624, 'nypost': 22993, 'each1teach1': 10841, 'tornado': 33273, 'maura': 20517, 'peeve': 24384, 'gtfo': 14780, 'tug': 33820, 'goldsbrough': 14351, 'antibac': 2820, 'southcentre': 30422, 'flexin': 12935, 'pristine': 25656, 'southaustralia': 30419, 'brevard': 5251, 'hagemann': 14924, 'capricious': 5966, 'unenforceable': 34255, 'withhold': 36111, 'dgoc': 9746, 'underpin': 34203, 'corg': 7964, 'otcmarket': 23604, 'noccp': 22585, 'zoomable': 36819, 'glossary': 14247, 'helpthosehelpingothers': 15485, 'mpgovtcrisis': 21615, 'actuallyautistic': 1848, 'petrolstations': 24622, 'officemarket': 23166, 'broth': 5374, 'selfportrait': 29049, 'lisbon': 19360, 'igersportugal': 16422, 'instagoodmyphotography': 17086, 'westphalia': 35736, 'ursula': 34599, 'heinen': 15425, 'esser': 11710, 'emeritus': 11291, 'schlesinger': 28736, 'crestview': 8507, '0016': 1, 'parmar17': 24149, 's10': 28215, 'grassroots': 14573, 'pcmag': 24330, 'dho': 9762, 'ozium': 23844, 'odor': 23134, 'chawla': 6518, 'puree': 26097, 'trialrun': 33588, 'supremecou': 31838, 'ware': 35386, 'interrelated': 17222, 'sumitomo': 31649, '919': 1476, 'ahah': 2190, 'helpinghands': 15460, 'staysafestayhelpful': 31035, 'gujaratfightscovid19': 14833, 'baroda': 3951, 'bhavnagar': 4462, 'dontbeashitandgivebackabit': 10420, 'dontbegreedythinkoftheneedy': 10422, 'qkxp0tyusk': 26190, '45l': 971, 'albermarle': 2312, 'pwani': 26157, 'weshallovercome': 35706, 'saludtues': 28382, 'norra': 22701, 'softener': 30268, 'poopoo': 25168, 'peepee': 24381, 'caca': 5723, 'stymy': 31502, 'ionization': 17342, 'chapelhill': 6462, 'graciously': 14513, 'whatstrending': 35799, 'crossfire': 8590, 'cambodia': 5821, 'clan': 6873, 'boggles': 4873, '5wyzwetcqg': 1168, 'illinoisan': 16478, 'stoppani': 31283, 'fea': 12462, 'demostrated': 9479, 'elisa': 11216, 'momofboys': 21373, 'maplegrov': 20257, 'disasterrelief': 10005, 'pmcares': 25034, 'rochdale': 27918, 'castleton': 6149, 'baggies': 3782, 'rollbakcs': 27961, 'wgc': 35769, 'calmlyshopping': 5812, 'sudhar': 31595, 'jaao': 17571}
First tweet [[0 0 0 ... 0 0 0]]
BOW representation of the first tweet [[0 0 0 ... 0 0 0]]
print(x_train_bow_testa.shape)
print(x_test_bow_testa.shape)(36060, 36850)
(12020, 36850)
It will be created more cases of different number of features to check is there exists any dirt or fuzziness with having all the dictionary words.
count_vect_testb = CountVectorizer(max_features = 25000)
x_train_bow_testb = count_vect_testb.fit_transform(X_train)
x_test_bow_testb = count_vect_testb.transform(X_test)
count_vect_testc = CountVectorizer(max_features = 10000)
x_train_bow_testc = count_vect_testc.fit_transform(X_train)
x_test_bow_testc = count_vect_testc.transform(X_test)
count_vect_testd = CountVectorizer(max_features = 5000)
x_train_bow_testd = count_vect_testd.fit_transform(X_train)
x_test_bow_testd = count_vect_testd.transform(X_test)36 thousand words exists in the corpus that we are handling
len(count_vect.vocabulary_)36850
# Bag of N-grams: in this case the modification is in that the n-gram is going to agglutine words to catch the relationship between them
# this feature importance depends on the number of n-grams defined
count_vect_ngram = CountVectorizer(ngram_range=(1,3))
x_train_ngram_testa = count_vect_ngram.fit_transform(X_train)
x_test_ngram_testa = count_vect_ngram.transform(X_test)
#vOCAB OF N-GRAMS
print('vocab',count_vect_ngram.vocabulary_)vocab {'im': 416499, 'fucking': 339793, 'calling': 156504, 'it': 456163, 'now': 573887, 'covid': 212547, '19': 4697, 'isnt': 454773, 'gonna': 356460, 'kill': 474317, 'since': 770402, 'we': 970262, 're': 698164, 'all': 41886, 'eachother': 264346, 'due': 261634, 'to': 899406, 'food': 313005, 'shortage': 764794, 'the': 847849, 'panic': 637237, 'is': 445137, 'go': 353232, 'from': 334147, 'mere': 529084, 'virus': 957882, 'out': 625515, 'apocalypse': 81505, 'how': 407255, 'shit': 759042, 'going': 354977, 'right': 721729, 'you': 1016738, 'cause': 167487, 'damn': 225304, 'downfall': 257541, 'im fucking': 416532, 'fucking calling': 339820, 'calling it': 156583, 'it now': 459947, 'now covid': 574473, 'covid 19': 212550, '19 isnt': 8099, 'isnt gonna': 454781, 'gonna kill': 356566, 'kill since': 474491, 'since we': 770972, 'we re': 972812, 're all': 698205, 'all gonna': 42966, 'kill eachother': 474387, 'eachother due': 264347, 'due to': 261690, 'to fucking': 906285, 'fucking food': 339866, 'food shortage': 316551, 'shortage the': 765251, 'the panic': 863181, 'panic is': 638213, 'is gonna': 448125, 'gonna go': 356541, 'go from': 353584, 'from mere': 336420, 'mere virus': 529093, 'virus to': 958919, 'fucking all': 339796, 'all out': 43837, 'out apocalypse': 625723, 'apocalypse due': 81524, 'to how': 908015, 'how shit': 408664, 'shit is': 759136, 'is going': 448085, 'going right': 355431, 'right now': 722013, 'now you': 576498, 'you re': 1020553, 'gonna cause': 356493, 'cause damn': 167533, 'damn downfall': 225342, 'im fucking calling': 416533, 'fucking calling it': 339821, 'calling it now': 156590, 'it now covid': 459950, 'now covid 19': 574474, 'covid 19 isnt': 213294, '19 isnt gonna': 8101, 'isnt gonna kill': 454782, 'gonna kill since': 356569, 'kill since we': 474492, 'since we re': 770983, 'we re all': 972818, 're all gonna': 698219, 'all gonna kill': 42970, 'gonna kill eachother': 356567, 'kill eachother due': 474388, 'eachother due to': 264348, 'due to fucking': 261791, 'to fucking food': 906287, 'fucking food shortage': 339868, 'food shortage the': 316610, 'shortage the panic': 765257, 'the panic is': 863210, 'panic is gonna': 638216, 'is gonna go': 448129, 'gonna go from': 356543, 'go from mere': 353586, 'from mere virus': 336421, 'mere virus to': 529094, 'virus to fucking': 958921, 'to fucking all': 906286, 'fucking all out': 339797, 'all out apocalypse': 43838, 'out apocalypse due': 625724, 'apocalypse due to': 81525, 'due to how': 261818, 'to how shit': 908024, 'how shit is': 408665, 'shit is going': 759143, 'is going right': 448099, 'going right now': 355432, 'right now you': 722192, 'now you re': 576516, 'you re all': 1020561, 'all gonna cause': 42967, 'gonna cause damn': 356494, 'cause damn downfall': 167534, 'agreed': 38689, 'can': 157339, 'tell': 836892, 'have': 379065, 'better': 128169, 'chance': 171698, 'of': 579290, 'dying': 263773, 'driving': 259887, 'grocery': 364193, 'store': 806014, 'hoard': 398747, 'tp': 927722, 'than': 840130, 'agreed can': 38700, 'can tell': 159918, 'tell you': 837144, 'you you': 1022476, 'you have': 1019007, 'have better': 379773, 'better chance': 128228, 'chance of': 171747, 'of dying': 582891, 'dying driving': 263808, 'driving to': 260016, 'to the': 916468, 'the grocery': 856799, 'grocery store': 365164, 'store to': 810750, 'to hoard': 907862, 'hoard tp': 398897, 'tp than': 927967, 'than dying': 840530, 'dying from': 263816, 'from the': 337580, 'agreed can tell': 38701, 'can tell you': 159926, 'tell you you': 837160, 'you you have': 1022483, 'you have better': 1019017, 'have better chance': 379774, 'better chance of': 128229, 'chance of dying': 171753, 'of dying driving': 582892, 'dying driving to': 263809, 'driving to the': 260022, 'to the grocery': 916754, 'the grocery store': 856827, 'grocery store to': 365868, 'store to hoard': 810777, 'to hoard tp': 907883, 'hoard tp than': 398898, 'tp than dying': 927968, 'than dying from': 840531, 'dying from the': 263828, 'hosted': 404912, 'webinar': 975006, 'with': 996919, 'three': 893868, 'procurement': 680102, 'thought': 892952, 'leader': 483406, 'across': 29213, 'pharma': 654012, 'consumer': 195977, 'telco': 836647, 'and': 57334, 'automotive': 104032, 'this': 886141, 'week': 975784, 'discus': 244819, 'what': 980951, 'effect': 268962, 'will': 992174, 'on': 598956, 'hosted webinar': 404927, 'webinar with': 975139, 'with three': 1001757, 'three procurement': 894043, 'procurement thought': 680125, 'thought leader': 893110, 'leader across': 483411, 'across pharma': 29427, 'pharma consumer': 654025, 'consumer telco': 199241, 'telco and': 836648, 'and automotive': 58538, 'automotive this': 104052, 'this week': 891177, 'week to': 977065, 'to discus': 904370, 'discus what': 244941, 'what effect': 981400, 'effect covid': 268986, '19 will': 12075, 'will have': 993609, 'have on': 381762, 'on procurement': 602937, 'procurement procurement': 680122, 'hosted webinar with': 404929, 'webinar with three': 975143, 'with three procurement': 1001759, 'three procurement thought': 894044, 'procurement thought leader': 680126, 'thought leader across': 893111, 'leader across pharma': 483412, 'across pharma consumer': 29428, 'pharma consumer telco': 654026, 'consumer telco and': 199242, 'telco and automotive': 836649, 'and automotive this': 58539, 'automotive this week': 104053, 'this week to': 891284, 'week to discus': 977078, 'to discus what': 904384, 'discus what effect': 244942, 'what effect covid': 981401, 'effect covid 19': 268987, 'covid 19 will': 214077, '19 will have': 12094, 'will have on': 993662, 'have on procurement': 381774, 'on procurement procurement': 602938, 'in': 419670, 'wake': 964578, 'are': 84094, 'working': 1008455, 'agency': 37976, 'secure': 744423, 'access': 28096, 'allotment': 45899, 'ensure': 277879, 'get': 346450, 'cattle': 167333, 'sheep': 756533, 'market': 515891, 'plate': 658901, 'additional': 31759, 'detail': 239142, 'be': 113403, 'shared': 755390, 'they': 881080, 'become': 119904, 'available': 104199, 'please': 659627, 'reach': 699867, 'question': 693488, 'or': 614170, 'concern': 192883, 'in the': 428938, 'the wake': 871033, 'wake of': 964585, 'of covid': 582091, '19 we': 11915, 'we are': 970461, 'are working': 91683, 'working with': 1009048, 'with agency': 997119, 'agency to': 38086, 'to secure': 913963, 'secure access': 744424, 'access to': 28210, 'to allotment': 900320, 'allotment and': 45900, 'and ensure': 62161, 'ensure get': 277952, 'get cattle': 346749, 'cattle and': 167336, 'and sheep': 71436, 'sheep get': 756547, 'get to': 348457, 'to market': 909847, 'market and': 515949, 'and to': 74147, 'to consumer': 903259, 'consumer plate': 198371, 'plate additional': 658902, 'additional detail': 31809, 'detail will': 239277, 'will be': 992335, 'be shared': 117122, 'shared they': 755455, 'they become': 881538, 'become available': 119929, 'available please': 104557, 'please reach': 660349, 'reach out': 699964, 'out with': 627860, 'with question': 1000380, 'question or': 693686, 'or concern': 614788, 'in the wake': 429652, 'the wake of': 871035, 'wake of covid': 964595, 'of covid 19': 582092, 'covid 19 we': 214051, '19 we are': 11919, 'we are working': 970767, 'are working with': 91728, 'working with agency': 1009049, 'with agency to': 997120, 'agency to secure': 38091, 'to secure access': 913964, 'secure access to': 744425, 'access to allotment': 28217, 'to allotment and': 900321, 'allotment and ensure': 45901, 'and ensure get': 62165, 'ensure get cattle': 277953, 'get cattle and': 346750, 'cattle and sheep': 167340, 'and sheep get': 71439, 'sheep get to': 756548, 'get to market': 348478, 'to market and': 909848, 'market and to': 516000, 'and to consumer': 74157, 'to consumer plate': 903322, 'consumer plate additional': 198372, 'plate additional detail': 658903, 'additional detail will': 31811, 'detail will be': 239278, 'will be shared': 992676, 'be shared they': 117125, 'shared they become': 755456, 'they become available': 881539, 'become available please': 119931, 'available please reach': 104560, 'please reach out': 660350, 'reach out with': 699971, 'out with question': 627872, 'with question or': 1000382, 'question or concern': 693687, 'hello': 389119, 'complete': 192058, 'moron': 541575, 'then': 876953, 'these': 879561, 'word': 1004438, 'for': 318596, 'hello are': 389128, 'are you': 91757, 'you complete': 1018004, 'complete fucking': 192096, 'fucking moron': 339952, 'moron then': 541639, 'then these': 877646, 'these word': 880985, 'word are': 1004453, 'are for': 86643, 'for you': 328028, 'hello are you': 389129, 'are you complete': 91777, 'you complete fucking': 1018005, 'complete fucking moron': 192097, 'fucking moron then': 339956, 'moron then these': 541640, 'then these word': 877648, 'these word are': 880986, 'word are for': 1004454, 'are for you': 86651, 'man': 511959, 'charged': 173358, 'uk': 938140, 'selling': 749128, 'fake': 296563, 'kit': 475478, 'around': 93089, 'world': 1009247, 'man charged': 512019, 'charged in': 173395, 'the uk': 870185, 'uk for': 938379, 'for selling': 325436, 'selling fake': 749232, 'fake kit': 296646, 'kit around': 475499, 'around the': 93520, 'the world': 871798, 'man charged in': 512022, 'charged in the': 173398, 'in the uk': 429635, 'the uk for': 870218, 'uk for selling': 938382, 'for selling fake': 325440, 'selling fake kit': 749236, 'fake kit around': 296647, 'kit around the': 475500, 'around the world': 93570, 'not': 567984, 'where': 984707, 'were': 979247, 'our': 621974, 'technology': 836252, 'still': 800150, 'fall': 296785, 'short': 764594, 'resource': 714693, 'sufficient': 817373, 'handle': 376156, 'challenge': 171381, 'lack': 478586, 'bank': 109537, 'inventory': 443640, 'stock': 801751, 'feed': 302263, 'people': 646720, 'no': 563553, 'toilet': 921120, 'paper': 639754, 'napkin': 551852, 'towel': 927285, 'are not': 88307, 'not where': 572493, 'where we': 985334, 'we thought': 973540, 'thought we': 893298, 'we were': 973778, 'were our': 979949, 'our technology': 625113, 'technology still': 836374, 'still fall': 800516, 'fall short': 297050, 'short our': 764668, 'our resource': 624612, 'resource are': 714710, 'not sufficient': 571798, 'sufficient to': 817403, 'to handle': 907122, 'handle our': 376247, 'our challenge': 622354, 'challenge we': 171590, 'we lack': 972168, 'lack sufficient': 478674, 'sufficient food': 817378, 'food bank': 313508, 'bank and': 109601, 'and food': 63023, 'food inventory': 315100, 'inventory stock': 443713, 'stock to': 802985, 'to feed': 905714, 'feed our': 302350, 'our people': 624305, 'people still': 649581, 'still no': 800864, 'no toilet': 565755, 'toilet paper': 921171, 'paper no': 640493, 'no napkin': 564843, 'napkin no': 551855, 'no paper': 565057, 'paper towel': 640980, 'we are not': 970638, 'are not where': 88497, 'not where we': 572496, 'where we thought': 985352, 'we thought we': 973542, 'thought we were': 893302, 'we were our': 973801, 'were our technology': 979950, 'our technology still': 625114, 'technology still fall': 836375, 'still fall short': 800517, 'fall short our': 297052, 'short our resource': 764670, 'our resource are': 624613, 'resource are not': 714714, 'are not sufficient': 88477, 'not sufficient to': 571799, 'sufficient to handle': 817404, 'to handle our': 907130, 'handle our challenge': 376248, 'our challenge we': 622355, 'challenge we lack': 171593, 'we lack sufficient': 972169, 'lack sufficient food': 478675, 'sufficient food bank': 817379, 'food bank and': 313517, 'bank and food': 109610, 'and food inventory': 63061, 'food inventory stock': 315102, 'inventory stock to': 443715, 'stock to feed': 802995, 'to feed our': 905729, 'feed our people': 302353, 'our people still': 624313, 'people still no': 649601, 'still no toilet': 800881, 'no toilet paper': 565757, 'toilet paper no': 921367, 'paper no napkin': 640498, 'no napkin no': 564844, 'napkin no paper': 551856, 'no paper towel': 565060, 'following': 312663, 'limpopo': 492899, 'premier': 669885, 'visit': 959166, 'thohoyandou': 891699, 'today': 919117, 'shoprite': 764536, 'forced': 328552, 'close': 182483, 'adhering': 32231, 'lockdown': 499091, 'rule': 727166, 'madina': 508117, 'supermarket': 818720, 'wa': 961339, 'caught': 167405, 'sanitizers': 736176, 'reported': 712444, 'that': 842423, 'thulamela': 895293, 'municipality': 546098, 'had': 372794, 'purchased': 689743, 'following limpopo': 312775, 'limpopo premier': 492902, 'premier visit': 669910, 'visit to': 959408, 'to thohoyandou': 917485, 'thohoyandou today': 891700, 'today shoprite': 920178, 'shoprite store': 764555, 'store were': 811217, 'were forced': 979653, 'forced to': 328614, 'to close': 902853, 'close for': 182639, 'for not': 323920, 'not adhering': 568060, 'adhering to': 32233, 'to covid': 903668, '19 lockdown': 8366, 'lockdown rule': 499868, 'rule madina': 727290, 'madina supermarket': 508118, 'supermarket wa': 823685, 'wa caught': 961792, 'caught selling': 167455, 'fake sanitizers': 296703, 'sanitizers and': 736191, 'and it': 65476, 'it wa': 462051, 'wa reported': 963086, 'reported that': 712536, 'that thulamela': 847029, 'thulamela municipality': 895294, 'municipality had': 546101, 'had purchased': 373435, 'purchased sanitizers': 689806, 'sanitizers from': 736282, 'from madina': 336299, 'following limpopo premier': 312777, 'limpopo premier visit': 492903, 'premier visit to': 669911, 'visit to thohoyandou': 959418, 'to thohoyandou today': 917486, 'thohoyandou today shoprite': 891701, 'today shoprite store': 920179, 'shoprite store were': 764556, 'store were forced': 811220, 'were forced to': 979654, 'forced to close': 328622, 'to close for': 902873, 'close for not': 182643, 'for not adhering': 323921, 'not adhering to': 568062, 'adhering to covid': 32235, 'to covid 19': 903669, 'covid 19 lockdown': 213367, '19 lockdown rule': 8423, 'lockdown rule madina': 499870, 'rule madina supermarket': 727291, 'madina supermarket wa': 508119, 'supermarket wa caught': 823693, 'wa caught selling': 961796, 'caught selling fake': 167456, 'selling fake sanitizers': 749237, 'fake sanitizers and': 296704, 'sanitizers and it': 736200, 'and it wa': 65597, 'it wa reported': 462178, 'wa reported that': 963087, 'reported that thulamela': 712542, 'that thulamela municipality': 847030, 'thulamela municipality had': 895295, 'municipality had purchased': 546102, 'had purchased sanitizers': 373437, 'purchased sanitizers from': 689807, 'sanitizers from madina': 736283, 'rt': 726728, 'aston': 97226, 'nechells': 554299, 'foodbank': 317752, 'currently': 221442, 'experiencing': 291623, 'increased': 433165, 'demand': 234893, 'supply': 824649, 'help': 389279, 'if': 413760, 'continue': 200981, 'donate': 254140, 'throughout': 894930, 'ongoing': 607589, 'social': 779418, 'distancing': 246936, 'measure': 525065, 'please rt': 660424, 'rt aston': 726743, 'aston and': 97227, 'and nechells': 67464, 'nechells foodbank': 554302, 'foodbank are': 317753, 'are currently': 85653, 'currently experiencing': 221525, 'experiencing increased': 291668, 'increased demand': 433258, 'demand and': 234947, 'and are': 58290, 'are short': 90067, 'short of': 764654, 'of supply': 590468, 'supply please': 825713, 'please help': 660060, 'help if': 389883, 'if you': 415384, 'you can': 1017611, 'can and': 157494, 'and continue': 60490, 'continue to': 201160, 'to donate': 904639, 'donate if': 254189, 'can throughout': 159997, 'throughout ongoing': 894952, 'ongoing social': 607692, 'social distancing': 779540, 'distancing measure': 247313, 'please rt aston': 660428, 'rt aston and': 726744, 'aston and nechells': 97228, 'and nechells foodbank': 67466, 'nechells foodbank are': 554303, 'foodbank are currently': 317754, 'are currently experiencing': 85663, 'currently experiencing increased': 221527, 'experiencing increased demand': 291670, 'increased demand and': 433260, 'demand and are': 234951, 'and are short': 58361, 'are short of': 90069, 'short of supply': 764662, 'of supply please': 590493, 'supply please help': 825716, 'please help if': 660071, 'help if you': 389889, 'if you can': 415403, 'you can and': 1017620, 'can and continue': 157495, 'and continue to': 60493, 'continue to donate': 201182, 'to donate if': 904647, 'donate if you': 254190, 'you can throughout': 1017813, 'can throughout ongoing': 159998, 'throughout ongoing social': 894953, 'ongoing social distancing': 607693, 'social distancing measure': 779660, 'converting': 202566, 'distillery': 247720, 'factory': 295916, 'producing': 680731, 'needed': 556278, 'hand': 374715, 'sanitizer': 734273, 'daily': 224478, 'voice': 959971, '19 converting': 6033, 'converting distillery': 202567, 'distillery to': 247819, 'to factory': 905598, 'factory producing': 295981, 'producing needed': 680795, 'needed hand': 556378, 'hand sanitizer': 375277, 'sanitizer daily': 734723, 'daily voice': 224870, 'covid 19 converting': 212859, '19 converting distillery': 6034, 'converting distillery to': 202568, 'distillery to factory': 247820, 'to factory producing': 905600, 'factory producing needed': 295982, 'producing needed hand': 680796, 'needed hand sanitizer': 556379, 'hand sanitizer daily': 375363, 'sanitizer daily voice': 734724, 'one': 605845, 'arrive': 93899, 'your': 1022706, 'inbox': 431251, 'do': 249014, 'click': 181879, 'had one': 373366, 'one of': 606730, 'of these': 591807, 'these arrive': 879651, 'arrive in': 93918, 'in your': 431053, 'your inbox': 1024466, 'inbox do': 431253, 'do not': 249652, 'not click': 568768, 'click 19': 181880, 'had one of': 373370, 'one of these': 606767, 'of these arrive': 591808, 'these arrive in': 879652, 'arrive in your': 93922, 'in your inbox': 431097, 'your inbox do': 1024468, 'inbox do not': 431254, 'do not click': 249696, 'not click 19': 568769, 'txsu': 937470, 'student': 814631, 'ha': 369384, 'work': 1004685, 'doubled': 256097, 'being': 124800, 'online': 607750, 'just': 468093, 'me': 522319, 'like': 489676, 'feel': 302541, 'getting': 348816, 'more': 538472, 'usual': 950874, 'txsu student': 937471, 'student ha': 814694, 'ha all': 369480, 'all work': 45489, 'work doubled': 1005061, 'doubled since': 256140, 'since being': 770528, 'being online': 125493, 'online or': 608647, 'or is': 615825, 'is it': 449005, 'it just': 459213, 'just me': 469237, 'me like': 523078, 'like feel': 490228, 'feel like': 302696, 'like getting': 490306, 'getting more': 349118, 'more work': 541004, 'work than': 1005791, 'than usual': 841387, 'txsu student ha': 937472, 'student ha all': 814695, 'ha all work': 369486, 'all work doubled': 45492, 'work doubled since': 1005062, 'doubled since being': 256141, 'since being online': 770529, 'being online or': 125494, 'online or is': 608658, 'or is it': 615832, 'is it just': 449034, 'it just me': 459233, 'just me like': 469244, 'me like feel': 523080, 'like feel like': 490229, 'feel like getting': 302714, 'like getting more': 490307, 'getting more work': 349128, 'more work than': 541005, 'work than usual': 1005793, '2019': 13914, 'best': 127557, 'friend': 333478, 'hide': 394825, 'body': 133814, '2020': 14076, 'give': 350350, 'while': 986551, 'appreciate': 82701, 'latter': 481672, 'don': 253315, 'think': 885058, 'll': 496536, 'ever': 285179, 'meet': 527401, 'keith': 472698, 'way': 969418, 'oh': 596344, 'toiletpapercrisis': 923001, 'toiletpaperapocalypse': 922895, 'toiletpaper': 921666, '2019 best': 13945, 'best friend': 127698, 'friend help': 333635, 'help you': 390948, 'you hide': 1019215, 'hide the': 394842, 'the body': 849821, 'body 2020': 133815, '2020 best': 14174, 'friend give': 333618, 'give you': 350846, 'you toilet': 1021869, 'paper while': 641090, 'while appreciate': 986613, 'appreciate the': 82754, 'the latter': 859160, 'latter more': 481683, 'more don': 539066, 'don think': 253969, 'think ll': 885375, 'll ever': 496741, 'ever get': 285318, 'to meet': 910013, 'meet keith': 527519, 'keith this': 472699, 'this way': 891124, 'way oh': 969776, 'oh or': 596433, 'or will': 617803, 'will toiletpapercrisis': 995210, 'toiletpapercrisis toiletpaperapocalypse': 923089, 'toiletpaperapocalypse toiletpaper': 922928, '2019 best friend': 13946, 'best friend help': 127701, 'friend help you': 333636, 'help you hide': 390975, 'you hide the': 1019216, 'hide the body': 394843, 'the body 2020': 849822, 'body 2020 best': 133816, '2020 best friend': 14175, 'best friend give': 127699, 'friend give you': 333619, 'give you toilet': 350873, 'you toilet paper': 1021870, 'toilet paper while': 921527, 'paper while appreciate': 641091, 'while appreciate the': 986614, 'appreciate the latter': 82760, 'the latter more': 859165, 'latter more don': 481684, 'more don think': 539067, 'don think ll': 253979, 'think ll ever': 885378, 'll ever get': 496742, 'ever get to': 285321, 'get to meet': 348480, 'to meet keith': 910034, 'meet keith this': 527520, 'keith this way': 472700, 'this way oh': 891133, 'way oh or': 969777, 'oh or will': 596434, 'or will toiletpapercrisis': 617814, 'will toiletpapercrisis toiletpaperapocalypse': 995211, 'toiletpapercrisis toiletpaperapocalypse toiletpaper': 923090, 'shaky': 754480, 'ground': 366474, 'business': 143201, 'grind': 363986, 'down': 256366, 'because': 118903, 'hear': 387867, 'about': 24626, 'confidence': 193801, 'listen': 494656, 'here': 392638, 'at': 97345, '20': 12851, 'consumer are': 196277, 'are on': 88712, 'on shaky': 603387, 'shaky ground': 754483, 'ground business': 366483, 'business grind': 143797, 'grind down': 363987, 'down because': 256551, 'because of': 119302, 'we ll': 972229, 'll hear': 496838, 'hear about': 387868, 'about consumer': 24994, 'consumer confidence': 196879, 'confidence from': 193869, 'from listen': 336233, 'listen here': 494681, 'here at': 392777, 'at 20': 97495, 'consumer are on': 196301, 'are on shaky': 88734, 'on shaky ground': 603388, 'shaky ground business': 754484, 'ground business grind': 366484, 'business grind down': 143798, 'grind down because': 363988, 'down because of': 256553, 'because of covid': 119327, '19 we ll': 11938, 'we ll hear': 972255, 'll hear about': 496839, 'hear about consumer': 387869, 'about consumer confidence': 24998, 'consumer confidence from': 196898, 'confidence from listen': 193870, 'from listen here': 336234, 'listen here at': 494685, 'here at 20': 392778, 'able': 24418, 'procure': 680091, 'pack': 633007, 'puff': 688829, 'bag': 108206, 'flour': 311056, 'bar': 110662, 'soap': 778886, 'so': 776448, 'playing': 659373, 'lottery': 504448, 'tonight': 924348, 'wait': 964059, 'even': 283794, 'thing': 884076, 'happens': 377444, 'socialdistancing': 780180, 'wa able': 961404, 'able to': 24441, 'to procure': 912179, 'procure three': 680094, 'three pack': 894018, 'pack of': 633080, 'of puff': 588598, 'puff bag': 688830, 'bag of': 108343, 'of flour': 583593, 'flour and': 311064, 'and bar': 58692, 'bar soap': 110766, 'soap at': 778943, 'at the': 100864, 'store today': 810829, 'today so': 920188, 'so playing': 778013, 'playing the': 659452, 'the lottery': 859747, 'lottery tonight': 504466, 'tonight wait': 924517, 'wait is': 964145, 'is the': 452714, 'lottery still': 504460, 'still even': 800495, 'even thing': 284682, 'thing that': 884794, 'that happens': 844179, 'happens socialdistancing': 377498, 'wa able to': 961405, 'able to procure': 24523, 'to procure three': 912180, 'procure three pack': 680095, 'three pack of': 894019, 'pack of puff': 633108, 'of puff bag': 588599, 'puff bag of': 688831, 'bag of flour': 108352, 'of flour and': 583595, 'flour and bar': 311065, 'and bar soap': 58703, 'bar soap at': 110767, 'soap at the': 778945, 'at the grocery': 100968, 'grocery store today': 365869, 'store today so': 810866, 'today so playing': 920192, 'so playing the': 778014, 'playing the lottery': 659453, 'the lottery tonight': 859754, 'lottery tonight wait': 504467, 'tonight wait is': 924518, 'wait is the': 964146, 'is the lottery': 452853, 'the lottery still': 859751, 'lottery still even': 504461, 'still even thing': 800498, 'even thing that': 284684, 'thing that happens': 884810, 'that happens socialdistancing': 844181, 'report': 711767, 'created': 215772, 'hub': 409783, 'obtain': 578728, 'reliable': 709190, 'information': 437693, 'covering': 212452, 'health': 386093, 'home': 400531, 'routine': 726489, 'tech': 836023, 'exercise': 290020, 'consumer report': 198694, 'report ha': 711990, 'ha created': 370263, 'created covid': 215813, '19 resource': 10127, 'resource hub': 714811, 'hub where': 409843, 'where people': 985092, 'people can': 647377, 'can obtain': 159077, 'obtain reliable': 578739, 'reliable information': 709208, 'information covering': 437790, 'covering health': 212468, 'health home': 386500, 'home daily': 400984, 'daily routine': 224785, 'routine tech': 726535, 'tech food': 836092, 'food exercise': 314425, 'consumer report ha': 198711, 'report ha created': 711991, 'ha created covid': 370269, 'created covid 19': 215814, 'covid 19 resource': 213699, '19 resource hub': 10132, 'resource hub where': 714815, 'hub where people': 409844, 'where people can': 985096, 'people can obtain': 647401, 'can obtain reliable': 159078, 'obtain reliable information': 578740, 'reliable information covering': 709209, 'information covering health': 437791, 'covering health home': 212469, 'health home daily': 386502, 'home daily routine': 400985, 'daily routine tech': 224791, 'routine tech food': 726537, 'tech food exercise': 836093, 'politics': 663775, 'aside': 95393, 'incredible': 433810, 'response': 715609, 'critical': 218512, 'time': 896177, 'politics aside': 663778, 'aside this': 95442, 'this is': 888160, 'is incredible': 448874, 'incredible and': 433815, 'and the': 73227, 'the right': 865802, 'right response': 722252, 'response in': 715727, 'in this': 429895, 'this critical': 887116, 'critical time': 218695, 'politics aside this': 663779, 'aside this is': 95443, 'this is incredible': 888291, 'is incredible and': 448875, 'incredible and the': 433818, 'and the right': 73556, 'the right response': 865823, 'right response in': 722253, 'response in this': 715733, 'in this critical': 429928, 'this critical time': 887122, 'wow': 1012535, 'everyone': 286666, 'seems': 746748, 'key': 473221, 'worker': 1006177, 'day': 227080, 'delivery': 233609, 'driver': 259381, 'dog': 252025, 'walker': 964989, 'vape': 952450, 'shop': 759788, 'manager': 512655, 'staff': 792068, 'petrol': 653705, 'station': 796317, 'list': 494256, 'endless': 276218, 'keyworkersonly': 473614, 'stayhome': 797927, 'washyourhands': 967852, 'wow everyone': 1012550, 'everyone seems': 287354, 'seems to': 746875, 'to be': 901078, 'be key': 115599, 'key worker': 473461, 'worker these': 1007956, 'these day': 879864, 'day delivery': 227513, 'delivery driver': 233886, 'driver dog': 259515, 'dog walker': 252182, 'walker vape': 965001, 'vape shop': 952454, 'shop manager': 760444, 'manager supermarket': 512791, 'supermarket staff': 822808, 'staff petrol': 792745, 'petrol station': 653788, 'station staff': 796510, 'staff bank': 792247, 'bank manager': 109993, 'manager the': 512805, 'the list': 859464, 'list is': 494372, 'is endless': 447493, 'endless keyworkersonly': 276234, 'keyworkersonly stayhome': 473615, 'stayhome washyourhands': 798226, 'wow everyone seems': 1012551, 'everyone seems to': 287355, 'seems to be': 746877, 'to be key': 901352, 'be key worker': 115601, 'key worker these': 473520, 'worker these day': 1007957, 'these day delivery': 879869, 'day delivery driver': 227515, 'delivery driver dog': 233899, 'driver dog walker': 259516, 'dog walker vape': 252185, 'walker vape shop': 965002, 'vape shop manager': 952455, 'shop manager supermarket': 760445, 'manager supermarket staff': 512793, 'supermarket staff petrol': 822873, 'staff petrol station': 792746, 'petrol station staff': 653800, 'station staff bank': 796511, 'staff bank manager': 792248, 'bank manager the': 109994, 'manager the list': 512806, 'the list is': 859468, 'list is endless': 494374, 'is endless keyworkersonly': 447495, 'endless keyworkersonly stayhome': 276235, 'keyworkersonly stayhome washyourhands': 473616, 'should': 765467, 'car': 162971, 'insurance': 440659, 'cost': 207806, 'le': 482815, 'stay': 796732, 'group': 366589, 'say': 738361, 'yes': 1015362, 'should car': 765820, 'car insurance': 163142, 'insurance cost': 440706, 'cost le': 207995, 'le driver': 482937, 'driver stay': 259752, 'stay home': 796932, 'home because': 400778, 'of consumer': 581700, 'consumer group': 197653, 'group say': 366876, 'say yes': 739506, 'should car insurance': 765821, 'car insurance cost': 163146, 'insurance cost le': 440708, 'cost le driver': 207996, 'le driver stay': 482938, 'driver stay home': 259753, 'stay home because': 796944, 'home because of': 400782, 'because of consumer': 119321, 'of consumer group': 581744, 'consumer group say': 197665, 'group say yes': 366879, 'risk': 723343, 'via': 955769, 'bringing': 140141, 'into': 442347, 'after': 35258, 've': 952801, 'taken': 832929, 'walk': 964723, 'having': 383958, 'local': 497658, 'when': 983102, 'open': 611997, 'otherwise': 621819, 'there': 877935, 'staple': 793889, 'anyone': 80164, 'done': 254749, 'sum': 817864, 'what is': 981674, 'the risk': 865870, 'risk of': 723720, 'of getting': 584118, 'getting covid': 348914, '19 via': 11756, 'via bringing': 955832, 'bringing virus': 140215, 'virus into': 958355, 'into your': 443315, 'your home': 1024335, 'home after': 400563, 'after you': 36605, 'you ve': 1022022, 've taken': 953619, 'taken the': 833068, 'the dog': 853491, 'dog for': 252097, 'for walk': 327609, 'walk the': 964876, 'of having': 584479, 'having to': 384330, 'to go': 906756, 'go to': 354267, 'the local': 859532, 'local supermarket': 498494, 'supermarket when': 823796, 'when it': 983623, 'it open': 460119, 'open because': 612118, 'because otherwise': 119451, 'otherwise there': 621879, 'there no': 878793, 'no staple': 565571, 'staple anyone': 793904, 'anyone done': 80252, 'done the': 255039, 'the sum': 868403, 'what is the': 981731, 'is the risk': 452924, 'the risk of': 865877, 'risk of getting': 723750, 'of getting covid': 584120, 'getting covid 19': 348915, 'covid 19 via': 214026, '19 via bringing': 11757, 'via bringing virus': 955833, 'bringing virus into': 140216, 'virus into your': 958357, 'into your home': 443321, 'your home after': 1024336, 'home after you': 400574, 'after you ve': 36610, 'you ve taken': 1022069, 've taken the': 953622, 'taken the dog': 833074, 'the dog for': 853493, 'dog for walk': 252098, 'for walk the': 327627, 'walk the risk': 964881, 'risk of having': 723752, 'of having to': 584487, 'having to go': 384349, 'to go to': 906872, 'go to the': 354369, 'to the local': 916853, 'the local supermarket': 859574, 'local supermarket when': 498613, 'supermarket when it': 823800, 'when it open': 983643, 'it open because': 460121, 'open because otherwise': 612120, 'because otherwise there': 119452, 'otherwise there no': 621880, 'there no staple': 878842, 'no staple anyone': 565572, 'staple anyone done': 793905, 'anyone done the': 80253, 'done the sum': 255045, 'congress': 194482, 'urge': 948146, 'narendra': 551907, 'modi': 535441, 'government': 359805, 'share': 754901, 'profit': 682638, 'low': 505075, 'crude': 219497, 'oil': 596581, 'price': 672095, 'during': 262395, 'coronavirus': 205432, 'pti': 687636, 'congress urge': 194545, 'urge the': 948225, 'the narendra': 861202, 'narendra modi': 551908, 'modi government': 535453, 'government to': 360697, 'to share': 914333, 'share profit': 755193, 'profit from': 682729, 'from low': 336284, 'low crude': 505220, 'crude oil': 219549, 'oil price': 597025, 'price with': 677601, 'with people': 1000130, 'people during': 647740, 'during the': 263075, 'the coronavirus': 851796, 'coronavirus lockdown': 206237, 'lockdown report': 499855, 'report pti': 712200, 'congress urge the': 194547, 'urge the narendra': 948228, 'the narendra modi': 861203, 'narendra modi government': 551909, 'modi government to': 535454, 'government to share': 360735, 'to share profit': 914361, 'share profit from': 755194, 'profit from low': 682737, 'from low crude': 336285, 'low crude oil': 505221, 'crude oil price': 219567, 'oil price with': 597325, 'price with people': 677621, 'with people during': 1000146, 'people during the': 647744, 'during the coronavirus': 263104, 'the coronavirus lockdown': 851877, 'coronavirus lockdown report': 206250, 'lockdown report pti': 499856, 'brought': 141129, 'up': 944105, 'fact': 295668, 'jacking': 464174, 'everything': 287666, 'ha anyone': 369576, 'anyone brought': 80203, 'brought up': 141209, 'up the': 946152, 'the fact': 854813, 'fact that': 295786, 'that grocery': 844083, 'store are': 806452, 'are jacking': 87597, 'jacking up': 464183, 'the price': 864326, 'price on': 675642, 'on everything': 600643, 'ha anyone brought': 369579, 'anyone brought up': 80204, 'brought up the': 141210, 'up the fact': 946171, 'the fact that': 854832, 'fact that grocery': 295799, 'that grocery store': 844090, 'grocery store are': 365214, 'store are jacking': 806489, 'are jacking up': 87598, 'jacking up the': 464188, 'up the price': 946204, 'the price on': 864392, 'price on everything': 675672, 'rate': 697141, 'remains': 709985, 'unchanged': 939781, 'despite': 238658, 'currency': 221003, 'crash': 214945, 'drop': 260093, 'announced': 76896, 'by': 151499, 'russia': 728411, 'ahk': 39235, 'liveticker': 496296, 'the key': 858751, 'key rate': 473382, 'rate remains': 697356, 'remains unchanged': 710077, 'unchanged at': 939782, 'at despite': 98430, 'despite the': 238871, 'the currency': 852601, 'currency crash': 221020, 'crash and': 214952, 'the drop': 853706, 'drop in': 260223, 'in oil': 426082, 'price this': 676908, 'this wa': 891047, 'wa announced': 961542, 'announced by': 76927, 'by the': 154253, 'the of': 862047, 'of russia': 589185, 'russia today': 728591, 'today ahk': 919165, 'ahk liveticker': 39236, 'the key rate': 858762, 'key rate remains': 473383, 'rate remains unchanged': 697357, 'remains unchanged at': 710078, 'unchanged at despite': 939783, 'at despite the': 98431, 'despite the currency': 238876, 'the currency crash': 852603, 'currency crash and': 221021, 'crash and the': 214953, 'and the drop': 73336, 'the drop in': 853709, 'drop in oil': 260263, 'in oil price': 426087, 'oil price this': 597290, 'price this wa': 676925, 'this wa announced': 891053, 'wa announced by': 961544, 'announced by the': 76929, 'by the of': 154395, 'the of russia': 862055, 'of russia today': 589190, 'russia today ahk': 728592, 'today ahk liveticker': 919166, 'check': 174352, 'important': 418724, 'alert': 41333, 'incoming': 432512, 'economic': 266952, 'relief': 709264, 'payment': 645535, 'educate': 268748, 'yourself': 1026496, 'prey': 672066, 'scammer': 740516, 'trick': 931688, 'check out': 174531, 'out this': 627557, 'this important': 888019, 'important consumer': 418769, 'consumer alert': 196132, 'alert from': 41430, 'from on': 336659, 'on covid': 600143, '19 and': 4976, 'the incoming': 858050, 'incoming economic': 432513, 'economic relief': 267245, 'relief payment': 709429, 'payment educate': 645607, 'educate yourself': 268776, 'yourself so': 1026702, 'so you': 778831, 'you don': 1018304, 'don fall': 253500, 'fall prey': 297031, 'prey to': 672076, 'to scammer': 913872, 'scammer trick': 740633, 'check out this': 174583, 'out this important': 627571, 'this important consumer': 888021, 'important consumer alert': 418770, 'consumer alert from': 196146, 'alert from on': 41434, 'from on covid': 336663, 'on covid 19': 600144, 'covid 19 and': 212630, '19 and the': 5119, 'and the incoming': 73422, 'the incoming economic': 858051, 'incoming economic relief': 432514, 'economic relief payment': 267249, 'relief payment educate': 709430, 'payment educate yourself': 645608, 'educate yourself so': 268779, 'yourself so you': 1026703, 'so you don': 778839, 'you don fall': 1018312, 'don fall prey': 253502, 'fall prey to': 297032, 'prey to scammer': 672079, 'to scammer trick': 913873, 'my': 547124, 'buying': 149831, 'year': 1014326, 'worth': 1011317, 'cleaning': 180886, 'selfish': 747975, 'idiot': 413441, 'ashamed': 95036, 'my friend': 548418, 'friend if': 333643, 'you are': 1017045, 'are panic': 88957, 'panic buying': 637623, 'buying year': 151396, 'year worth': 1015119, 'worth of': 1011405, 'supply of': 825611, 'of cleaning': 581451, 'cleaning supply': 181072, 'supply tp': 826045, 'tp or': 927893, 'or food': 615337, 'food you': 317702, 'are selfish': 89933, 'selfish idiot': 748133, 'idiot and': 413447, 'and you': 76001, 'you should': 1021179, 'should be': 765539, 'be ashamed': 113691, 'ashamed 19': 95037, 'my friend if': 548435, 'friend if you': 333645, 'if you are': 415393, 'you are panic': 1017193, 'are panic buying': 88959, 'panic buying year': 637974, 'buying year worth': 151398, 'year worth of': 1015120, 'worth of supply': 1011417, 'of supply of': 590490, 'supply of cleaning': 825616, 'of cleaning supply': 581453, 'cleaning supply tp': 181088, 'supply tp or': 826046, 'tp or food': 927894, 'or food you': 615354, 'food you are': 317705, 'you are selfish': 1017228, 'are selfish idiot': 89935, 'selfish idiot and': 748134, 'idiot and you': 413451, 'and you should': 76046, 'you should be': 1021184, 'should be ashamed': 765558, 'be ashamed 19': 113692, 'news': 560172, 'nyc': 577952, 'pantry': 639505, 'pandemic': 634760, 'coronavirus news': 206315, 'news demand': 560361, 'demand for': 235370, 'for nyc': 324003, 'nyc food': 577982, 'food pantry': 315763, 'pantry ha': 639598, 'ha doubled': 370428, 'doubled during': 256107, 'during covid': 262542, '19 pandemic': 9245, 'coronavirus news demand': 206318, 'news demand for': 560362, 'demand for nyc': 235463, 'for nyc food': 324004, 'nyc food pantry': 577984, 'food pantry ha': 315782, 'pantry ha doubled': 639599, 'ha doubled during': 370430, 'doubled during covid': 256108, 'during covid 19': 262543, 'covid 19 pandemic': 213550, 'published': 688639, 'outbreak': 627935, 'unprecedented': 943068, 'collapse': 185952, 'service': 752017, 'forex': 329164, 'trading': 928826, 'published covid': 688644, '19 outbreak': 9071, 'outbreak cause': 628088, 'cause unprecedented': 167781, 'unprecedented collapse': 943094, 'collapse in': 186009, 'in consumer': 421678, 'consumer service': 198937, 'service forex': 752400, 'forex trading': 329176, 'published covid 19': 688645, 'covid 19 outbreak': 213533, '19 outbreak cause': 9095, 'outbreak cause unprecedented': 628089, 'cause unprecedented collapse': 167782, 'unprecedented collapse in': 943095, 'collapse in consumer': 186013, 'in consumer service': 421719, 'consumer service forex': 198944, 'service forex trading': 752401, 'melbourne': 527919, 'pick': 655638, 'grandmother': 361922, 'hospital': 404253, 'need': 554327, 'wear': 974281, 'mask': 518249, 'glove': 352525, 'stopthespread': 805905, 'stoppanicbuying': 805543, 'going to': 355516, 'to melbourne': 910072, 'melbourne today': 527944, 'today to': 920346, 'to pick': 911717, 'pick up': 655697, 'up my': 945417, 'my grandmother': 548548, 'grandmother from': 361930, 'from hospital': 335943, 'hospital do': 404371, 'do need': 249635, 'need to': 555846, 'to wear': 918419, 'wear mask': 974373, 'mask and': 518302, 'and glove': 63707, 'glove stopthespread': 352932, 'stopthespread stoppanicbuying': 805921, 'going to melbourne': 355653, 'to melbourne today': 910073, 'melbourne today to': 527945, 'today to pick': 920362, 'to pick up': 911730, 'pick up my': 655737, 'up my grandmother': 945428, 'my grandmother from': 548550, 'grandmother from hospital': 361931, 'from hospital do': 335947, 'hospital do need': 404373, 'do need to': 249640, 'need to wear': 556116, 'to wear mask': 918434, 'wear mask and': 974374, 'mask and glove': 518329, 'and glove stopthespread': 63737, 'glove stopthespread stoppanicbuying': 352933, 'thank': 841528, 'solution': 781981, 'automates': 103968, 'co': 184795, 'branded': 138089, 'invitation': 444262, 'eligible': 271408, 'upgrade': 947528, 'candidate': 161290, 'drive': 258966, 'well': 977986, 'those': 891767, 'dealer': 229592, 'database': 226511, 'thank you': 841681, 'you the': 1021585, 'the consumer': 851487, 'consumer buying': 196699, 'buying solution': 151051, 'solution automates': 781997, 'automates the': 103969, 'the delivery': 853058, 'delivery of': 234219, 'of co': 581489, 'co branded': 184817, 'branded invitation': 138094, 'invitation to': 444265, 'to eligible': 904984, 'eligible upgrade': 271436, 'upgrade candidate': 947531, 'candidate in': 161300, 'in service': 427817, 'service drive': 752308, 'drive well': 259257, 'well those': 978691, 'those in': 892091, 'in dealer': 422039, 'dealer database': 229600, 'thank you the': 841826, 'you the consumer': 1021591, 'the consumer buying': 851504, 'consumer buying solution': 196709, 'buying solution automates': 151052, 'solution automates the': 781998, 'automates the delivery': 103970, 'the delivery of': 853069, 'delivery of co': 234220, 'of co branded': 581490, 'co branded invitation': 184818, 'branded invitation to': 138095, 'invitation to eligible': 444266, 'to eligible upgrade': 904986, 'eligible upgrade candidate': 271437, 'upgrade candidate in': 947532, 'candidate in service': 161301, 'in service drive': 427818, 'service drive well': 752309, 'drive well those': 259258, 'well those in': 978692, 'those in dealer': 892092, 'in dealer database': 422040, 'citizensadvice': 179011, 'responded': 715340, 'financialconductauthority': 306636, 'announcement': 77123, 'series': 751223, 'temporary': 837571, 'credit': 216290, 'card': 163440, 'some': 782234, 'other': 619791, 'term': 838049, 'debt': 230401, 'consumer news': 198210, 'news citizensadvice': 560316, 'citizensadvice ha': 179012, 'ha responded': 371742, 'responded to': 715361, 'the financialconductauthority': 855232, 'financialconductauthority announcement': 306637, 'announcement of': 77174, 'of series': 589516, 'series of': 751264, 'of temporary': 590658, 'temporary measure': 837662, 'measure to': 525380, 'to help': 907437, 'help those': 390741, 'those with': 892710, 'with credit': 997846, 'credit card': 216326, 'card and': 163446, 'and some': 71949, 'some other': 783474, 'other short': 620906, 'short term': 764722, 'term debt': 838113, 'debt during': 230474, 'the outbreak': 862584, 'consumer news citizensadvice': 198211, 'news citizensadvice ha': 560317, 'citizensadvice ha responded': 179013, 'ha responded to': 371744, 'responded to the': 715365, 'to the financialconductauthority': 916712, 'the financialconductauthority announcement': 855233, 'financialconductauthority announcement of': 306638, 'announcement of series': 77177, 'of series of': 589517, 'series of temporary': 751279, 'of temporary measure': 590660, 'temporary measure to': 837667, 'measure to help': 525395, 'to help those': 907652, 'help those with': 390755, 'those with credit': 892715, 'with credit card': 997848, 'credit card and': 216327, 'card and some': 163457, 'and some other': 71974, 'some other short': 783481, 'other short term': 620907, 'short term debt': 764731, 'term debt during': 838114, 'debt during the': 230475, 'during the outbreak': 263166, 'light': 489508, 'novel': 573739, 'transportation': 929984, 'skyrocketing': 773400, 'nigeria': 562705, 'who': 988008, 'offend': 594463, 'in light': 424721, 'light of': 489547, 'of the': 590757, 'the novel': 861904, 'novel covid': 573769, '19 transportation': 11550, 'transportation price': 930023, 'price are': 672624, 'are skyrocketing': 90159, 'skyrocketing in': 773430, 'in nigeria': 425873, 'nigeria who': 562822, 'who we': 989937, 'we offend': 972621, 'in light of': 424722, 'light of the': 489564, 'of the novel': 591279, 'the novel covid': 861910, 'novel covid 19': 573770, 'covid 19 transportation': 213978, '19 transportation price': 11551, 'transportation price are': 930024, 'price are skyrocketing': 672736, 'are skyrocketing in': 90165, 'skyrocketing in nigeria': 773433, 'in nigeria who': 425892, 'nigeria who we': 562823, 'who we offend': 989939, 'curious': 220969, 'real': 701015, 'estate': 282086, 'impacted': 418062, 'learn': 483927, 'insight': 439494, 'team': 835567, 'new': 558308, 'yorkers': 1016696, 'asking': 95925, 'clue': 184524, 'past': 643483, 'recession': 704197, 'nycrealestate': 578089, 'realestate': 701472, 'curious how': 220976, 'how nyc': 408417, 'nyc real': 578033, 'real estate': 701132, 'estate price': 282172, 'price will': 677550, 'be impacted': 115369, 'impacted by': 418074, 'by coronavirus': 152226, 'coronavirus learn': 206217, 'learn insight': 483998, 'insight from': 439544, 'the team': 869199, 'team on': 835747, 'on question': 603052, 'question new': 693660, 'new yorkers': 559962, 'yorkers are': 1016699, 'are asking': 84632, 'asking and': 95940, 'and what': 75446, 'what clue': 981223, 'clue we': 184561, 'we can': 970897, 'can learn': 158847, 'learn from': 483959, 'from past': 336859, 'past recession': 643591, 'recession via': 704390, 'via nycrealestate': 956122, 'nycrealestate realestate': 578090, 'curious how nyc': 220978, 'how nyc real': 408418, 'nyc real estate': 578034, 'real estate price': 701160, 'estate price will': 282186, 'price will be': 677553, 'will be impacted': 992508, 'be impacted by': 115370, 'impacted by coronavirus': 418078, 'by coronavirus learn': 152232, 'coronavirus learn insight': 206218, 'learn insight from': 483999, 'insight from the': 439557, 'from the team': 337896, 'the team on': 869211, 'team on question': 835751, 'on question new': 603053, 'question new yorkers': 693661, 'new yorkers are': 559964, 'yorkers are asking': 1016700, 'are asking and': 84634, 'asking and what': 95942, 'and what clue': 75454, 'what clue we': 981224, 'clue we can': 184562, 'we can learn': 970971, 'can learn from': 158850, 'learn from past': 483969, 'from past recession': 336860, 'past recession via': 643593, 'recession via nycrealestate': 704391, 'via nycrealestate realestate': 956123, 'farmer': 299233, 'warned': 966983, 'livestock': 496256, 'machinery': 507433, 'protected': 685116, 'thief': 884000, 'try': 934431, 'cash': 166143, 'amid': 52368, 'crisis': 216951, 'farmer warned': 299565, 'warned to': 967043, 'to ensure': 905138, 'ensure livestock': 277981, 'livestock and': 496259, 'and machinery': 66501, 'machinery are': 507436, 'are protected': 89292, 'protected thief': 685155, 'thief try': 884015, 'try to': 934598, 'to cash': 902477, 'cash in': 166252, 'in on': 426111, 'on demand': 600271, 'for food': 321543, 'food amid': 313115, 'amid the': 52679, 'the covid': 852228, '19 crisis': 6205, 'farmer warned to': 299566, 'warned to ensure': 967045, 'to ensure livestock': 905171, 'ensure livestock and': 277982, 'livestock and machinery': 496261, 'and machinery are': 66502, 'machinery are protected': 507437, 'are protected thief': 89297, 'protected thief try': 685156, 'thief try to': 884016, 'try to cash': 934610, 'to cash in': 902478, 'cash in on': 166255, 'in on demand': 426115, 'on demand for': 600280, 'demand for food': 235419, 'for food amid': 321547, 'food amid the': 313119, 'amid the covid': 52688, 'the covid 19': 852229, 'covid 19 crisis': 212890, 'fill': 305449, 'take': 831861, 'fuel': 340112, 'likely': 491937, 'effected': 269168, 'explains': 292199, 'mean': 524345, 'filling': 305593, 'how do': 407705, 'do fill': 249297, 'fill up': 305509, 'my car': 547593, 'car during': 163067, 'the pandemic': 862886, 'pandemic from': 635466, 'from what': 338337, 'what to': 982448, 'to take': 916146, 'take with': 832803, 'with you': 1002139, 'you to': 1021745, 'how fuel': 407898, 'fuel price': 340215, 'are likely': 87799, 'likely to': 492124, 'be effected': 114647, 'effected explains': 269176, 'explains what': 292247, 'what the': 982291, 'pandemic mean': 635950, 'mean for': 524430, 'for filling': 321476, 'filling up': 305640, 'up your': 946730, 'your car': 1023123, 'car at': 163011, 'at fuel': 98722, 'fuel station': 340282, 'how do fill': 407713, 'do fill up': 249298, 'fill up my': 305513, 'up my car': 945422, 'my car during': 547599, 'car during the': 163068, 'during the pandemic': 263168, 'the pandemic from': 862970, 'pandemic from what': 635475, 'from what to': 338344, 'what to take': 982466, 'to take with': 916261, 'take with you': 832805, 'with you to': 1002169, 'you to how': 1021789, 'to how fuel': 908021, 'how fuel price': 407899, 'fuel price are': 340220, 'price are likely': 672693, 'are likely to': 87807, 'likely to be': 492130, 'to be effected': 901230, 'be effected explains': 114648, 'effected explains what': 269177, 'explains what the': 292252, 'what the pandemic': 982347, 'the pandemic mean': 863024, 'pandemic mean for': 635951, 'mean for filling': 524437, 'for filling up': 321477, 'filling up your': 305644, 'up your car': 946733, 'your car at': 1023126, 'car at fuel': 163013, 'at fuel station': 98723, 'slowing': 774522, 'inside': 439207, 'increase': 432648, 'transmission': 929723, 'strategy': 812588, 'good': 356671, 'managing': 512846, 'extended': 293143, 'period': 651698, 'contact': 199984, 'queue': 693846, 'footfall': 318535, 'public': 687825, 'space': 787041, 'by slowing': 154042, 'slowing people': 774566, 'people down': 647719, 'down inside': 256879, 'inside supermarket': 439394, 'supermarket by': 819477, 'by socialdistancing': 154062, 'socialdistancing is': 780457, 'to increase': 908265, 'increase the': 433100, 'the transmission': 869907, 'transmission rate': 929761, 'rate of': 697308, 'the strategy': 868201, 'strategy is': 812665, 'is good': 448137, 'good for': 357069, 'for managing': 323185, 'managing transmission': 512915, 'transmission during': 929738, 'during extended': 262637, 'extended period': 293179, 'period of': 651831, 'of social': 589835, 'social contact': 779472, 'contact in': 200102, 'in queue': 427216, 'queue and': 693857, 'and for': 63133, 'managing footfall': 512872, 'footfall inside': 318543, 'inside public': 439366, 'public space': 688324, 'by slowing people': 154043, 'slowing people down': 774567, 'people down inside': 647722, 'down inside supermarket': 256880, 'inside supermarket by': 439395, 'supermarket by socialdistancing': 819482, 'by socialdistancing is': 154063, 'socialdistancing is going': 780465, 'is going to': 448104, 'going to increase': 355627, 'to increase the': 908305, 'increase the transmission': 433116, 'the transmission rate': 869909, 'transmission rate of': 929762, 'rate of the': 697323, 'of the strategy': 591500, 'the strategy is': 868204, 'strategy is good': 812667, 'is good for': 448142, 'good for managing': 357080, 'for managing transmission': 323191, 'managing transmission during': 512916, 'transmission during extended': 929739, 'during extended period': 262638, 'extended period of': 293180, 'period of social': 651852, 'of social contact': 589836, 'social contact in': 779476, 'contact in queue': 200106, 'in queue and': 427218, 'queue and for': 693861, 'and for managing': 63146, 'for managing footfall': 323188, 'managing footfall inside': 512873, 'footfall inside public': 318544, 'inside public space': 439367, 'obamacare': 578339, 'consolidation': 195547, 'raising': 696061, 'patient': 644118, 'obamacare drive': 578344, 'drive hospital': 259072, 'hospital consolidation': 404354, 'consolidation raising': 195555, 'raising price': 696105, 'price for': 673916, 'for patient': 324415, 'obamacare drive hospital': 578345, 'drive hospital consolidation': 259073, 'hospital consolidation raising': 404356, 'consolidation raising price': 195556, 'raising price for': 696112, 'price for patient': 674021, 'australia': 103210, 'prime': 678100, 'minister': 533320, 'stop': 804412, 'hoarding': 399163, 'shopper': 761325, 'country': 210399, 'empty': 274733, 'shelf': 756669, 'growing': 367118, 'over': 629746, 'rapid': 696893, 'spread': 790381, 'which': 985636, 'infected': 436520, 'nearly': 553746, '180': 4611, '00': 0, 'worldwide': 1010302, 'australia prime': 103353, 'prime minister': 678129, 'minister ha': 533375, 'ha warned': 372450, 'warned people': 967021, 'people to': 649870, 'to stop': 915495, 'stop hoarding': 804722, 'hoarding shopper': 399516, 'shopper across': 761337, 'across the': 29478, 'the country': 852038, 'country empty': 210611, 'empty supermarket': 275154, 'supermarket shelf': 822416, 'shelf amid': 756705, 'amid growing': 52491, 'growing concern': 367138, 'concern over': 193045, 'over the': 630689, 'the rapid': 865144, 'rapid spread': 696932, 'spread of': 790646, 'novel coronavirus': 573753, 'coronavirus which': 207070, 'which ha': 985872, 'ha infected': 370965, 'infected nearly': 436604, 'nearly 180': 553764, '180 00': 4612, '00 people': 405, 'people worldwide': 650524, 'australia prime minister': 103354, 'prime minister ha': 678137, 'minister ha warned': 533376, 'ha warned people': 372456, 'warned people to': 967025, 'people to stop': 649948, 'to stop hoarding': 915536, 'stop hoarding shopper': 804737, 'hoarding shopper across': 399517, 'shopper across the': 761338, 'across the country': 29491, 'the country empty': 852070, 'country empty supermarket': 210612, 'empty supermarket shelf': 275164, 'supermarket shelf amid': 822424, 'shelf amid growing': 756706, 'amid growing concern': 52493, 'growing concern over': 367142, 'concern over the': 193053, 'over the rapid': 630757, 'the rapid spread': 865151, 'rapid spread of': 696933, 'spread of the': 790715, 'the novel coronavirus': 861908, 'novel coronavirus which': 573766, 'coronavirus which ha': 207071, 'which ha infected': 985886, 'ha infected nearly': 370968, 'infected nearly 180': 436605, 'nearly 180 00': 553765, '180 00 people': 4613, '00 people worldwide': 424, 'before': 122582, 'helped': 391044, 'distribute': 247953, 'emergency': 272577, 'an': 55015, 'average': 104789, '160': 4202, 'household': 406730, 'month': 537510, 'figure': 305181, 'already': 47172, 'stand': 793479, 'total': 926116, '441': 19037, 'struggling': 814416, 'keep': 471276, 'running': 727886, 'before covid': 122722, '19 helped': 7502, 'helped distribute': 391061, 'distribute emergency': 247968, 'emergency food': 272697, 'food to': 317227, 'to an': 900435, 'an average': 55493, 'average of': 104874, 'of 160': 579372, '160 household': 4210, 'household month': 406879, 'month this': 538065, 'this month': 888895, 'month that': 538033, 'that figure': 843864, 'figure already': 305184, 'already stand': 47674, 'stand at': 793494, 'at total': 101347, 'total of': 926205, 'of 441': 579588, '441 we': 19040, 're struggling': 699624, 'struggling to': 814494, 'to keep': 908746, 'keep up': 472168, 'up with': 946614, 'with the': 1001183, 'the demand': 853082, 'demand we': 236457, 'we need': 972458, 'need your': 556268, 'your help': 1024296, 'help to': 390761, 'keep our': 471722, 'our service': 624725, 'service running': 752780, 'before covid 19': 122723, 'covid 19 helped': 213200, '19 helped distribute': 7503, 'helped distribute emergency': 391062, 'distribute emergency food': 247969, 'emergency food to': 272717, 'food to an': 317231, 'to an average': 900443, 'an average of': 55497, 'average of 160': 104876, 'of 160 household': 579373, '160 household month': 4211, 'household month this': 406880, 'month this month': 538068, 'this month that': 888917, 'month that figure': 538035, 'that figure already': 843865, 'figure already stand': 305185, 'already stand at': 47675, 'stand at total': 793496, 'at total of': 101348, 'total of 441': 926208, 'of 441 we': 579589, '441 we re': 19041, 'we re struggling': 972976, 're struggling to': 699625, 'struggling to keep': 814506, 'to keep up': 908874, 'keep up with': 472182, 'up with the': 946692, 'with the demand': 1001262, 'the demand we': 853118, 'demand we need': 236460, 'we need your': 972570, 'need your help': 556271, 'your help to': 1024310, 'help to keep': 390780, 'to keep our': 908821, 'keep our service': 471747, 'our service running': 624730, 'kind': 474792, 'situation': 772155, 'gun': 368679, 'correct': 207496, 'answer': 77997, 'won': 1003728, 'water': 968840, 'order': 617974, 'toliet': 923818, 'see': 744856, 'any': 78889, 'reason': 702860, 'firearm': 308137, 'but': 145024, 'only': 609958, 've kind': 953318, 'kind of': 474869, 'of created': 582122, 'created situation': 215891, 'situation where': 772576, 'where gun': 984897, 'gun is': 368704, 'the correct': 851964, 'correct answer': 207501, 'answer covid': 78031, '19 won': 12159, 'won effect': 1003793, 'effect the': 269120, 'the water': 871123, 'water supply': 969182, 'supply and': 824698, 'can order': 159166, 'order food': 618211, 'food and': 313164, 'and toliet': 74263, 'toliet paper': 923819, 'paper online': 640539, 'online don': 608126, 'don see': 253889, 'see any': 744914, 'any reason': 79729, 'reason to': 703018, 'to stock': 915424, 'stock up': 803048, 'up on': 945517, 'on firearm': 600804, 'firearm but': 308142, 'but they': 147488, 'they are': 881185, 'are the': 90791, 'the only': 862285, 'only one': 610864, 'you ve kind': 1022048, 've kind of': 953319, 'kind of created': 474884, 'of created situation': 582123, 'created situation where': 215893, 'situation where gun': 772577, 'where gun is': 984898, 'gun is the': 368705, 'is the correct': 452755, 'the correct answer': 851966, 'correct answer covid': 207502, 'answer covid 19': 78032, 'covid 19 won': 214085, '19 won effect': 12162, 'won effect the': 1003794, 'effect the water': 269125, 'the water supply': 871128, 'water supply and': 969184, 'supply and you': 824766, 'and you can': 76006, 'you can order': 1017739, 'can order food': 159170, 'order food and': 618212, 'food and toliet': 313367, 'and toliet paper': 74264, 'toliet paper online': 923820, 'paper online don': 640541, 'online don see': 608128, 'don see any': 253890, 'see any reason': 744922, 'any reason to': 79732, 'reason to stock': 703037, 'to stock up': 915457, 'stock up on': 803103, 'up on firearm': 945563, 'on firearm but': 600805, 'firearm but they': 308143, 'but they are': 147491, 'they are the': 881430, 'are the only': 90874, 'the only one': 862323, 'only one of': 610881, 'one of the': 606764, 'beginning': 123615, 'die': 241290, 'grocery worker': 366158, 'worker are': 1006363, 'are beginning': 84813, 'beginning to': 123662, 'to die': 904268, 'die of': 241410, 'of coronavirus': 581913, 'grocery worker are': 366162, 'worker are beginning': 1006371, 'are beginning to': 84814, 'beginning to die': 123666, 'to die of': 904278, 'die of coronavirus': 241418, 'idea': 412994, 'end': 275752, 'hundred': 410976, 'thousand': 893370, 'son': 785340, 'essential': 280741, 'provider': 686681, 'practice': 668511, 'serious': 751323, 'deep': 231837, 'have no': 381606, 'no idea': 564460, 'idea how': 413071, 'how this': 408942, 'this will': 891400, 'will end': 993302, 'end other': 275928, 'other than': 621057, 'than hundred': 840766, 'hundred of': 410993, 'of thousand': 592135, 'thousand of': 893419, 'of people': 587867, 'people dying': 647747, 'dying we': 263881, 'we do': 971322, 'do what': 250508, 'what we': 982538, 'can because': 157723, 'because my': 119255, 'my son': 550148, 'son work': 785460, 'work in': 1005292, 'in supermarket': 428551, 'supermarket and': 818922, 'and is': 65387, 'is an': 445631, 'an essential': 55816, 'essential service': 281494, 'service provider': 752723, 'provider we': 686815, 'we practice': 972724, 'practice serious': 668651, 'serious socialdistancing': 751476, 'socialdistancing and': 780204, 'and deep': 61042, 'deep cleaning': 231858, 'cleaning is': 180970, 'have no idea': 381634, 'no idea how': 564465, 'idea how this': 413079, 'how this will': 408959, 'this will end': 891414, 'will end other': 993306, 'end other than': 275929, 'other than hundred': 621069, 'than hundred of': 840767, 'hundred of thousand': 411017, 'of thousand of': 592137, 'thousand of people': 893458, 'of people dying': 587900, 'people dying we': 647753, 'dying we do': 263882, 'we do what': 971360, 'do what we': 250518, 'what we can': 982544, 'we can because': 970914, 'can because my': 157725, 'because my son': 119264, 'my son work': 550171, 'son work in': 785463, 'work in supermarket': 1005346, 'in supermarket and': 428558, 'supermarket and is': 819007, 'and is an': 65390, 'is an essential': 445656, 'an essential service': 55834, 'essential service provider': 281521, 'service provider we': 752739, 'provider we practice': 686816, 'we practice serious': 972725, 'practice serious socialdistancing': 668652, 'serious socialdistancing and': 751477, 'socialdistancing and deep': 780207, 'and deep cleaning': 61043, 'deep cleaning is': 231862, 'colorado': 186773, 'ag': 36768, 'vow': 960690, 'investigate': 443790, 'promise': 683662, 'refund': 706860, 'deliver': 233080, 'colorado ag': 186774, 'ag vow': 36852, 'vow to': 960693, 'to investigate': 908487, 'investigate business': 443797, 'business who': 144666, 'who promise': 989459, 'promise refund': 683689, 'refund and': 706863, 'and don': 61623, 'don deliver': 253451, 'colorado ag vow': 186776, 'ag vow to': 36853, 'vow to investigate': 960696, 'to investigate business': 908490, 'investigate business who': 443798, 'business who promise': 144672, 'who promise refund': 989460, 'promise refund and': 683690, 'refund and don': 706865, 'and don deliver': 61628, 'remember': 710152, 'muppets': 546129, 'went': 978946, 'few': 303703, 'back': 106814, 'acting': 29860, 'animal': 76539, 'looking': 502770, 'themselves': 876736, 'probably': 679194, 'remember when': 710407, 'when all': 983125, 'all those': 45156, 'those muppets': 892230, 'muppets went': 546136, 'went panic': 979098, 'buying toilet': 151246, 'paper and': 639800, 'food few': 314459, 'few week': 304128, 'week back': 975973, 'back acting': 106823, 'acting like': 29876, 'like animal': 489800, 'animal they': 76667, 'they will': 883824, 'be looking': 115819, 'looking back': 502833, 'back at': 106883, 'at that': 100852, 'that and': 842649, 'and be': 58743, 'be so': 117247, 'so ashamed': 776548, 'ashamed of': 95056, 'of themselves': 591781, 'themselves or': 876863, 'or probably': 616706, 'probably not': 679331, 'remember when all': 710409, 'when all those': 983136, 'all those muppets': 45171, 'those muppets went': 892232, 'muppets went panic': 546137, 'went panic buying': 979099, 'panic buying toilet': 637940, 'buying toilet paper': 151247, 'toilet paper and': 921185, 'paper and food': 639823, 'and food few': 63047, 'food few week': 314460, 'few week back': 304135, 'week back acting': 975974, 'back acting like': 106824, 'acting like animal': 29878, 'like animal they': 489802, 'animal they will': 76668, 'they will be': 883829, 'will be looking': 992545, 'be looking back': 115822, 'looking back at': 502834, 'back at that': 106893, 'at that and': 100853, 'that and be': 842651, 'and be so': 58767, 'be so ashamed': 117248, 'so ashamed of': 776550, 'ashamed of themselves': 95066, 'of themselves or': 591786, 'themselves or probably': 876864, 'or probably not': 616707, 'avoid': 104991, 'madness': 508149, 'cardiff': 163758, 'central': 169355, 'fresh': 332901, 'fish': 309283, 'poultry': 667303, 'plus': 661552, 'stall': 793354, 'meat': 525463, 'fruit': 339050, 'veg': 953706, 'much': 544663, 'come': 187173, 'tomorrow': 923996, '8am': 23119, '15pm': 4032, '02920': 835, '229202': 15324, 'avoid the': 105316, 'the supermarket': 868438, 'supermarket madness': 821423, 'madness cardiff': 508168, 'cardiff central': 163759, 'central market': 169410, 'market ha': 516480, 'ha our': 371461, 'our fresh': 623172, 'fresh fish': 332949, 'fish and': 309286, 'and poultry': 69272, 'poultry plus': 667334, 'plus stall': 661680, 'stall with': 793384, 'with meat': 999464, 'meat fruit': 525588, 'fruit and': 339057, 'and veg': 74854, 'veg and': 953713, 'and much': 67305, 'much more': 545093, 'more local': 539707, 'local home': 498080, 'home delivery': 401005, 'delivery available': 233733, 'available come': 104297, 'come and': 187211, 'and see': 71128, 'see tomorrow': 745976, 'tomorrow open': 924151, 'open 8am': 612011, '8am to': 23160, 'to 15pm': 899514, '15pm 02920': 4033, '02920 229202': 836, 'avoid the supermarket': 105335, 'the supermarket madness': 868689, 'supermarket madness cardiff': 821428, 'madness cardiff central': 508169, 'cardiff central market': 163760, 'central market ha': 169412, 'market ha our': 516486, 'ha our fresh': 371462, 'our fresh fish': 623173, 'fresh fish and': 332950, 'fish and poultry': 309290, 'and poultry plus': 69273, 'poultry plus stall': 667335, 'plus stall with': 661681, 'stall with meat': 793385, 'with meat fruit': 999466, 'meat fruit and': 525589, 'fruit and veg': 339065, 'and veg and': 74856, 'veg and much': 953714, 'and much more': 67307, 'much more local': 545115, 'more local home': 539710, 'local home delivery': 498081, 'home delivery available': 401011, 'delivery available come': 233734, 'available come and': 104298, 'come and see': 187220, 'and see tomorrow': 71148, 'see tomorrow open': 745977, 'tomorrow open 8am': 924152, 'open 8am to': 612012, '8am to 15pm': 23161, 'to 15pm 02920': 899515, '15pm 02920 229202': 4034, 'behavior': 123849, 'key insight': 473323, 'insight into': 439579, 'into the': 443092, 'the effect': 854063, 'effect of': 269040, '19 on': 8925, 'on consumer': 600022, 'consumer behavior': 196430, 'key insight into': 473327, 'insight into the': 439584, 'into the effect': 443121, 'the effect of': 854067, 'effect of covid': 269045, 'covid 19 on': 213515, '19 on consumer': 8937, 'on consumer behavior': 600028, 'forget': 329217, 'meal': 524081, 'restaurant': 716256, 'them': 875296, 'without': 1002470, 'exposing': 292918, 'community': 189685, 'infection': 436703, 'reduce': 705781, 'disruption': 246431, 'distribution': 248101, 'too': 924555, 'c4news': 154845, 'not forget': 569505, 'forget to': 329315, 'to order': 911058, 'order in': 618308, 'in meal': 425207, 'meal from': 524163, 'from those': 338022, 'those restaurant': 892394, 'restaurant now': 716594, 'now it': 575101, 'it ll': 459415, 'll keep': 496864, 'keep them': 472101, 'them in': 875890, 'in business': 421068, 'business without': 144710, 'without exposing': 1002626, 'exposing the': 292936, 'the community': 851264, 'community to': 190171, 'to risk': 913589, 'of infection': 585157, 'infection and': 436708, 'll reduce': 496968, 'reduce panic': 705889, 'buying disruption': 150190, 'disruption of': 246509, 'of food': 583632, 'food distribution': 314222, 'distribution too': 248243, 'too c4news': 924638, 'do not forget': 249741, 'not forget to': 569518, 'forget to order': 329327, 'to order in': 911073, 'order in meal': 618317, 'in meal from': 425208, 'meal from those': 524167, 'from those restaurant': 338032, 'those restaurant now': 892395, 'restaurant now it': 716595, 'now it ll': 575122, 'it ll keep': 459427, 'll keep them': 496866, 'keep them in': 472111, 'them in business': 875895, 'in business without': 421088, 'business without exposing': 144711, 'without exposing the': 1002627, 'exposing the community': 292937, 'the community to': 851302, 'community to risk': 190178, 'to risk of': 913601, 'risk of infection': 723757, 'of infection and': 585158, 'infection and it': 436711, 'and it ll': 65548, 'it ll reduce': 459430, 'll reduce panic': 496969, 'reduce panic buying': 705891, 'panic buying disruption': 637703, 'buying disruption of': 150191, 'disruption of food': 246513, 'of food distribution': 583679, 'food distribution too': 314239, 'distribution too c4news': 248244, 'am': 49829, 'furious': 341850, 'doctor': 250799, 'spreading': 790911, 'lie': 488323, 'why': 990713, 'enough': 277304, 'tweet': 936305, 'logic': 500642, 'news am': 560216, 'am furious': 50069, 'furious that': 341861, 'that doctor': 843574, 'doctor are': 250835, 'are spreading': 90334, 'spreading lie': 790996, 'lie why': 488395, 'why do': 990927, 'not you': 572604, 'you just': 1019412, 'just tell': 469964, 'tell the': 837080, 'the public': 864782, 'public you': 688503, 'you do': 1018243, 'not have': 569808, 'have enough': 380436, 'enough glove': 277453, 'glove tweet': 352991, 'tweet me': 936382, 'me and': 522402, 'and ll': 66265, 'll give': 496801, 'you logic': 1019690, 'news am furious': 560217, 'am furious that': 50070, 'furious that doctor': 341862, 'that doctor are': 843576, 'doctor are spreading': 250840, 'are spreading lie': 90337, 'spreading lie why': 790997, 'lie why do': 488397, 'why do not': 990934, 'do not you': 249896, 'not you just': 572612, 'you just tell': 1019434, 'just tell the': 469966, 'tell the public': 837090, 'the public you': 864878, 'public you do': 688505, 'you do not': 1018263, 'do not have': 249753, 'not have enough': 569827, 'have enough glove': 380451, 'enough glove tweet': 277455, 'glove tweet me': 352992, 'tweet me and': 936383, 'me and ll': 522415, 'and ll give': 66269, 'll give you': 496804, 'give you logic': 350861, 'prediciton': 669544, 'boost': 134926, 'bored': 135326, 'quarantined': 692813, 'buyer': 149547, 'till': 895967, 'sofa': 781437, '15': 3628, 'shopping': 761861, 'crush': 219766, 'retail': 717793, 'long': 501313, 'passed': 643244, 'prediciton not': 669545, 'not that': 571964, 'that it': 844691, 'it need': 459751, 'need boost': 554557, 'boost but': 134929, 'but after': 145064, 'after bored': 35425, 'bored quarantined': 135368, 'quarantined buyer': 692835, 'buyer shop': 149745, 'shop till': 760936, 'till they': 896109, 'they drop': 882020, 'drop on': 260346, 'on the': 603948, 'the sofa': 867447, 'sofa for': 781442, 'for 15': 318662, '15 day': 3692, 'day online': 228158, 'online shopping': 609006, 'shopping will': 764409, 'will crush': 993078, 'crush retail': 219787, 'retail for': 718126, 'for long': 323073, 'long after': 501317, 'after the': 36280, '19 ha': 7320, 'ha passed': 371473, 'prediciton not that': 669546, 'not that it': 571972, 'that it need': 844727, 'it need boost': 459752, 'need boost but': 554558, 'boost but after': 134930, 'but after bored': 145066, 'after bored quarantined': 35426, 'bored quarantined buyer': 135369, 'quarantined buyer shop': 692836, 'buyer shop till': 149746, 'shop till they': 760937, 'till they drop': 896110, 'they drop on': 882021, 'drop on the': 260349, 'on the sofa': 604372, 'the sofa for': 867448, 'sofa for 15': 781443, 'for 15 day': 318664, '15 day online': 3694, 'day online shopping': 228160, 'online shopping will': 609347, 'shopping will crush': 764413, 'will crush retail': 993079, 'crush retail for': 219788, 'retail for long': 718127, 'for long after': 323074, 'long after the': 501320, 'after the covid': 36302, 'covid 19 ha': 213176, '19 ha passed': 7372, 'resident': 714237, 'sanfrancisco': 733773, 'leave': 484721, 'appointment': 82654, 'run': 727539, 'strictest': 813677, 'policy': 663309, 'enacted': 275501, 'match': 520279, 'current': 221081, 'italy': 462749, '2nd': 16747, 'hardest': 378202, 'hit': 398082, 'new lockdown': 559057, 'lockdown resident': 499857, 'resident of': 714333, 'of sanfrancisco': 589270, 'sanfrancisco can': 733774, 'can only': 159115, 'only leave': 610706, 'leave home': 484818, 'home for': 401214, 'for doctor': 320790, 'doctor appointment': 250828, 'appointment or': 82677, 'or run': 616931, 'run to': 727841, 'store it': 808562, 'it the': 461508, 'the strictest': 868284, 'strictest new': 813678, 'new policy': 559297, 'policy enacted': 663391, 'enacted in': 275504, 'the and': 848677, 'and match': 66785, 'match the': 520305, 'the current': 852607, 'current rule': 221348, 'rule in': 727261, 'in italy': 424285, 'italy the': 462939, 'the 2nd': 848072, '2nd hardest': 16779, 'hardest hit': 378214, 'hit country': 398204, 'country in': 210771, 'new lockdown resident': 559058, 'lockdown resident of': 499858, 'resident of sanfrancisco': 714344, 'of sanfrancisco can': 589271, 'sanfrancisco can only': 733775, 'can only leave': 159130, 'only leave home': 610707, 'leave home for': 484819, 'home for doctor': 401226, 'for doctor appointment': 320792, 'doctor appointment or': 250831, 'appointment or run': 82678, 'or run to': 616935, 'run to the': 727846, 'grocery store it': 365494, 'store it the': 808595, 'it the strictest': 461578, 'the strictest new': 868285, 'strictest new policy': 813679, 'new policy enacted': 559300, 'policy enacted in': 663392, 'enacted in the': 275505, 'in the and': 428979, 'the and match': 848708, 'and match the': 66786, 'match the current': 520306, 'the current rule': 852662, 'current rule in': 221349, 'rule in italy': 727265, 'in italy the': 424319, 'italy the 2nd': 462940, 'the 2nd hardest': 848076, '2nd hardest hit': 16780, 'hardest hit country': 378217, 'hit country in': 398205, 'country in the': 210781, 'in the world': 429692, 'every': 285636, 'shift': 758212, 'lead': 483259, 'living': 496308, 'different': 241884, 'great': 362477, 'depression': 237619, 'defined': 232280, 'habit': 372537, 'decade': 230658, 'hyperinflation': 412306, 'wwii': 1013687, 'haunt': 379024, 'german': 346194, 'every economic': 285882, 'economic shift': 267272, 'shift lead': 758345, 'lead to': 483323, 'to new': 910550, 'new way': 559852, 'way of': 969737, 'of living': 585907, 'living covid': 496338, 'pandemic will': 636998, 'be no': 116089, 'no different': 564013, 'different the': 242090, 'the great': 856713, 'great depression': 362623, 'depression defined': 237637, 'defined consumer': 232283, 'consumer habit': 197679, 'habit for': 372614, 'for decade': 320604, 'decade hyperinflation': 230684, 'hyperinflation after': 412307, 'after wwii': 36591, 'wwii still': 1013698, 'still haunt': 800637, 'haunt german': 379025, 'german policy': 346238, 'every economic shift': 285884, 'economic shift lead': 267273, 'shift lead to': 758346, 'lead to new': 483370, 'to new way': 910581, 'new way of': 559855, 'way of living': 969761, 'of living covid': 585911, 'living covid 19': 496339, '19 pandemic will': 9525, 'pandemic will be': 636999, 'will be no': 992574, 'be no different': 116093, 'no different the': 564016, 'different the great': 242091, 'the great depression': 856718, 'great depression defined': 362625, 'depression defined consumer': 237638, 'defined consumer habit': 232284, 'consumer habit for': 197686, 'habit for decade': 372615, 'for decade hyperinflation': 320606, 'decade hyperinflation after': 230685, 'hyperinflation after wwii': 412308, 'after wwii still': 36593, 'wwii still haunt': 1013699, 'still haunt german': 800638, 'haunt german policy': 379026, 'nofood': 566133, 'toiletpapershortage': 923316, 'love': 504580, 'neighbor': 556969, 'together': 920658, 'our local': 623763, 'local hoarding': 498078, 'hoarding nofood': 399442, 'nofood toiletpapershortage': 566181, 'toiletpapershortage please': 923325, 'please friend': 660013, 'friend love': 333704, 'love your': 504889, 'your neighbor': 1024946, 'neighbor do': 556999, 'do it': 249459, 'it together': 461772, 'together hello': 920822, 'our local hoarding': 623777, 'local hoarding nofood': 498079, 'hoarding nofood toiletpapershortage': 399443, 'nofood toiletpapershortage please': 566182, 'toiletpapershortage please friend': 923326, 'please friend love': 660014, 'friend love your': 333705, 'love your neighbor': 504890, 'your neighbor do': 1024952, 'neighbor do it': 557000, 'do it together': 249520, 'it together hello': 461774, 'couple': 211551, 'opened': 612698, 'free': 331607, 'earlier': 264415, 'support': 826314, 'family': 297543, 'nashville': 552009, 'paisley': 634366, 'mobilize': 535103, 'elderly': 270557, 'area': 91905, 'the couple': 852201, 'couple opened': 211654, 'opened free': 612729, 'free grocery': 331880, 'store earlier': 807418, 'earlier this': 264492, 'this year': 891559, 'year to': 1015033, 'to support': 915898, 'support family': 826486, 'family in': 297914, 'in need': 425720, 'need in': 555040, 'in nashville': 425679, 'nashville now': 552022, 'now paisley': 575503, 'paisley ha': 634383, 'ha announced': 369554, 'announced that': 77058, 'that the': 846653, 'the store': 867970, 'store will': 811325, 'will mobilize': 994120, 'mobilize week': 535106, 'week delivery': 976139, 'of grocery': 584341, 'grocery to': 366047, 'to elderly': 904966, 'elderly resident': 270871, 'resident in': 714312, 'the area': 848875, 'the couple opened': 852205, 'couple opened free': 211655, 'opened free grocery': 612730, 'free grocery store': 331883, 'grocery store earlier': 365354, 'store earlier this': 807423, 'earlier this year': 264496, 'this year to': 891601, 'year to support': 1015049, 'to support family': 915928, 'support family in': 826488, 'family in need': 297923, 'in need in': 425749, 'need in nashville': 555045, 'in nashville now': 425684, 'nashville now paisley': 552023, 'now paisley ha': 575505, 'paisley ha announced': 634384, 'ha announced that': 369568, 'announced that the': 77070, 'that the store': 846842, 'the store will': 868146, 'store will mobilize': 811336, 'will mobilize week': 994122, 'mobilize week delivery': 535107, 'week delivery of': 976141, 'delivery of grocery': 234226, 'of grocery to': 584361, 'grocery to elderly': 366051, 'to elderly resident': 904977, 'elderly resident in': 270872, 'resident in the': 714319, 'in the area': 428984, 'saying': 739541, 'sick': 768349, 'test': 838895, 'ill': 416093, 'until': 943632, 'two': 936762, 'tested': 839254, 'esp': 280379, 'cashier': 166433, 'gas': 343750, 'attendant': 102330, 'do you': 250610, 'you keep': 1019443, 'keep saying': 471902, 'saying if': 739611, 're sick': 699514, 'sick get': 768459, 'get test': 348179, 'test people': 839119, 'people do': 647676, 'not feel': 569382, 'feel ill': 302674, 'ill until': 416182, 'until two': 943912, 'two week': 937315, 'week past': 976731, 'past infection': 643553, 'infection more': 436791, 'more people': 540004, 'people tested': 649739, 'tested the': 839373, 'the better': 849570, 'better esp': 128278, 'esp anyone': 280380, 'anyone going': 80335, 'to work': 918676, 'work with': 1006021, 'with public': 1000355, 'public supermarket': 688342, 'supermarket cashier': 819547, 'cashier gas': 166533, 'gas station': 344099, 'station attendant': 796355, 'why do you': 990945, 'do you keep': 250641, 'you keep saying': 1019449, 'keep saying if': 471904, 'saying if you': 739613, 'if you re': 415498, 'you re sick': 1020746, 're sick get': 699518, 'sick get test': 768460, 'get test people': 348182, 'test people do': 839120, 'people do not': 647679, 'do not feel': 249734, 'not feel ill': 569383, 'feel ill until': 302675, 'ill until two': 416183, 'until two week': 943913, 'two week past': 937351, 'week past infection': 976732, 'past infection more': 643555, 'infection more people': 436792, 'more people tested': 540042, 'people tested the': 649741, 'tested the better': 839374, 'the better esp': 849574, 'better esp anyone': 128279, 'esp anyone going': 280381, 'anyone going to': 80336, 'going to work': 355762, 'to work with': 918806, 'work with public': 1006040, 'with public supermarket': 1000359, 'public supermarket cashier': 688343, 'supermarket cashier gas': 819557, 'cashier gas station': 166534, 'gas station attendant': 344101, 'ship': 758646, 'goabay': 354544, 'goodsfromindia': 358086, 'aurveda': 103027, 'buyonlinefromindia': 151447, 'india': 434266, 'shopping online': 763401, 'online with': 609740, 'with we': 1002039, 'we ship': 973237, 'ship worldwide': 758737, 'worldwide goabay': 1010359, 'goabay goodsfromindia': 354545, 'goodsfromindia aurveda': 358087, 'aurveda buyonlinefromindia': 103028, 'buyonlinefromindia india': 151448, 'shopping online with': 763510, 'online with we': 609755, 'with we ship': 1002043, 'we ship worldwide': 973240, 'ship worldwide goabay': 758738, 'worldwide goabay goodsfromindia': 1010360, 'goabay goodsfromindia aurveda': 354546, 'goodsfromindia aurveda buyonlinefromindia': 358088, 'aurveda buyonlinefromindia india': 103029, 'dock': 250770, 'operator': 613337, 'owner': 632361, 'winnigas': 996055, 'inquiry': 439005, 'post': 665965, 'boater': 133732, 'lakewinnipesaukee': 479089, 'lakelife': 479077, 'nh': 561862, 'boating': 133735, 'gas dock': 343823, 'dock operator': 250783, 'operator owner': 613386, 'owner winnigas': 632609, 'winnigas is': 996056, 'is getting': 448021, 'getting inquiry': 349066, 'inquiry if': 439010, 'if fuel': 414133, 'fuel dock': 340161, 'dock are': 250773, 'are open': 88780, '19 concern': 5914, 'concern please': 193055, 'please post': 660322, 'post your': 666422, 'your current': 1023395, 'current fuel': 221206, 'price to': 676952, 'to this': 917398, 'will alert': 992225, 'alert boater': 41366, 'boater that': 133733, 'that you': 847706, 'open lakewinnipesaukee': 612351, 'lakewinnipesaukee fuel': 479090, 'fuel lakelife': 340193, 'lakelife nh': 479078, 'nh boating': 561902, 'gas dock operator': 343824, 'dock operator owner': 250784, 'operator owner winnigas': 613387, 'owner winnigas is': 632610, 'winnigas is getting': 996057, 'is getting inquiry': 448028, 'getting inquiry if': 349067, 'inquiry if fuel': 439011, 'if fuel dock': 414134, 'fuel dock are': 340162, 'dock are open': 250774, 'are open because': 88786, 'open because of': 612119, 'covid 19 concern': 212836, '19 concern please': 5923, 'concern please post': 193056, 'please post your': 660323, 'post your current': 666423, 'your current fuel': 1023396, 'current fuel price': 221207, 'fuel price to': 340255, 'price to this': 677056, 'to this will': 917482, 'this will alert': 891403, 'will alert boater': 992226, 'alert boater that': 41367, 'boater that you': 133734, 'that you are': 847713, 'you are open': 1017189, 'are open lakewinnipesaukee': 88792, 'open lakewinnipesaukee fuel': 612352, 'lakewinnipesaukee fuel lakelife': 479091, 'fuel lakelife nh': 340194, 'lakelife nh boating': 479079, 'police': 662882, 'advice': 33291, 'someone': 784351, 'lean': 483869, 'shoulder': 766687, 'breathing': 139214, 'face': 294274, 'allowed': 46129, 'gift': 349923, 'him': 396517, 'knuckle': 477277, 'sandwich': 733730, '19 police': 9738, 'police advice': 662888, 'advice needed': 33435, 'needed please': 556462, 'please if': 660097, 'if someone': 414848, 'someone lean': 784552, 'lean over': 483884, 'over my': 630418, 'my shoulder': 550070, 'shoulder in': 766694, 'supermarket breathing': 819421, 'breathing in': 139232, 'in my': 425527, 'my face': 548147, 'face am': 294288, 'am allowed': 49859, 'allowed to': 46224, 'to gift': 906661, 'gift him': 349987, 'him knuckle': 396649, 'knuckle sandwich': 477278, '19 police advice': 9739, 'police advice needed': 662889, 'advice needed please': 33436, 'needed please if': 556463, 'please if someone': 660102, 'if someone lean': 414856, 'someone lean over': 784554, 'lean over my': 483885, 'over my shoulder': 630424, 'my shoulder in': 550071, 'shoulder in the': 766695, 'in the supermarket': 429586, 'the supermarket breathing': 868495, 'supermarket breathing in': 819422, 'breathing in my': 139233, 'in my face': 425572, 'my face am': 548149, 'face am allowed': 294289, 'am allowed to': 49860, 'allowed to gift': 46231, 'to gift him': 906662, 'gift him knuckle': 349988, 'him knuckle sandwich': 396650, 'cuyahoga': 223792, 'county': 211309, 'department': 237180, 'affair': 33983, 'warning': 967062, 'scam': 739952, 'related': 708371, 'stimulus': 801496, 'the cuyahoga': 852752, 'cuyahoga county': 223793, 'county department': 211359, 'department of': 237230, 'consumer affair': 196072, 'affair is': 34057, 'is warning': 453757, 'warning resident': 967187, 'resident about': 714238, 'about scam': 26135, 'scam related': 740327, 'related to': 708590, 'and government': 63871, 'government stimulus': 360636, 'stimulus check': 801519, 'the cuyahoga county': 852753, 'cuyahoga county department': 223794, 'county department of': 211360, 'department of consumer': 237236, 'of consumer affair': 581702, 'consumer affair is': 196094, 'affair is warning': 34059, 'is warning resident': 453763, 'warning resident about': 967188, 'resident about scam': 714240, 'about scam related': 26141, 'scam related to': 740328, 'related to covid': 708600, '19 and government': 5034, 'and government stimulus': 63889, 'government stimulus check': 360637, 'pharmacy': 654195, 'thermometer': 879503, 'also': 47798, 'protection': 685265, 'include': 431500, 'paracetamol': 641213, '16pk': 4275, 'door': 255493, 'coronavirus crisis': 205736, 'crisis our': 217837, 'our pharmacy': 624336, 'pharmacy have': 654333, 'have supply': 382858, 'of thermometer': 591805, 'thermometer we': 879553, 'can also': 157449, 'also supply': 48934, 'supply protection': 825743, 'protection pack': 685549, 'pack which': 633195, 'which include': 985953, 'include mask': 431591, 'mask glove': 518722, 'glove sanitizer': 352899, 'sanitizer paracetamol': 735535, 'paracetamol 16pk': 641214, '16pk delivery': 4276, 'delivery to': 234649, 'to your': 918948, 'your door': 1023568, 'door contact': 255554, 'contact via': 200251, 'coronavirus crisis our': 205763, 'crisis our pharmacy': 217841, 'our pharmacy have': 624338, 'pharmacy have supply': 654338, 'have supply of': 382862, 'supply of thermometer': 825652, 'of thermometer we': 591806, 'thermometer we can': 879554, 'we can also': 970906, 'can also supply': 157470, 'also supply protection': 48935, 'supply protection pack': 825744, 'protection pack which': 685550, 'pack which include': 633196, 'which include mask': 985955, 'include mask glove': 431593, 'mask glove sanitizer': 518745, 'glove sanitizer paracetamol': 352904, 'sanitizer paracetamol 16pk': 735536, 'paracetamol 16pk delivery': 641215, '16pk delivery to': 4277, 'delivery to your': 234677, 'to your door': 918972, 'your door contact': 1023572, 'door contact via': 255555, 'kenyan': 472952, 'startup': 795081, 'launch': 481853, 'ai': 39289, 'data': 226110, 'driven': 259269, 'platform': 658934, 'curb': 220545, 'healthtech': 387475, 'startuos': 795078, 'innovation': 438850, 'africa': 35038, 'blockchain': 132813, 'coronavirus kenyan': 206199, 'kenyan health': 472970, 'health tech': 386894, 'tech startup': 836149, 'startup launch': 795118, 'launch ai': 481858, 'ai consumer': 39308, 'consumer data': 197050, 'data driven': 226194, 'driven platform': 259341, 'platform to': 659037, 'to curb': 903795, 'curb the': 220578, 'pandemic healthtech': 635606, 'healthtech startuos': 387480, 'startuos innovation': 795079, 'innovation technology': 438901, 'technology africa': 836255, 'africa blockchain': 35054, 'coronavirus kenyan health': 206200, 'kenyan health tech': 472973, 'health tech startup': 386895, 'tech startup launch': 836151, 'startup launch ai': 795119, 'launch ai consumer': 481859, 'ai consumer data': 39309, 'consumer data driven': 197052, 'data driven platform': 226197, 'driven platform to': 259342, 'platform to curb': 659040, 'to curb the': 903806, 'curb the pandemic': 220584, 'the pandemic healthtech': 862984, 'pandemic healthtech startuos': 635607, 'healthtech startuos innovation': 387481, 'startuos innovation technology': 795080, 'innovation technology africa': 438902, 'technology africa blockchain': 836256, 'prompt': 683895, 'law': 482194, 'queensland': 693404, 'restock': 716857, 'hour': 405340, 'abc': 24253, 'australian': 103434, 'broadcasting': 140746, 'corporation': 207379, '19 panic': 9537, 'buying prompt': 150932, 'prompt new': 683906, 'new law': 559011, 'law so': 482397, 'so queensland': 778095, 'queensland supermarket': 693410, 'supermarket can': 819495, 'can restock': 159468, 'restock all': 716860, 'all hour': 43151, 'hour abc': 405353, 'abc news': 24262, 'news australian': 560259, 'australian broadcasting': 103450, 'broadcasting corporation': 140747, 'covid 19 panic': 213552, '19 panic buying': 9541, 'panic buying prompt': 637853, 'buying prompt new': 150933, 'prompt new law': 683907, 'new law so': 559015, 'law so queensland': 482399, 'so queensland supermarket': 778096, 'queensland supermarket can': 693411, 'supermarket can restock': 819511, 'can restock all': 159469, 'restock all hour': 716861, 'all hour abc': 43152, 'hour abc news': 405354, 'abc news australian': 24263, 'news australian broadcasting': 560260, 'australian broadcasting corporation': 103451, 'piling': 656566, 'booze': 135152, 'luck': 506435, 'wiping': 996500, 'arse': 94066, 'though': 892766, 'same': 732946, 'folk': 312080, 'bought': 136466, 'mountain': 543413, 'bog': 133942, 'roll': 725150, 'coronacrisis': 204490, 'dontpanicbuy': 255384, 'people piling': 649115, 'piling in': 656601, 'the booze': 849863, 'booze now': 135169, 'now at': 574120, 'supermarket good': 820540, 'good luck': 357351, 'luck wiping': 506482, 'wiping your': 996536, 'your arse': 1022832, 'arse with': 94079, 'with that': 1001166, 'that though': 847017, 'though they': 892919, 'they re': 882983, 're probably': 699307, 'probably the': 679396, 'the same': 866190, 'same folk': 733066, 'folk who': 312296, 'who ve': 989875, 've already': 952819, 'already bought': 47238, 'bought mountain': 136647, 'mountain of': 543423, 'of bog': 580761, 'bog roll': 133945, 'roll coronacrisis': 725253, 'coronacrisis dontpanicbuy': 204589, 'people piling in': 649116, 'piling in on': 656603, 'in on the': 426129, 'on the booze': 603995, 'the booze now': 849864, 'booze now at': 135170, 'now at the': 574139, 'at the supermarket': 101116, 'the supermarket good': 868613, 'supermarket good luck': 820545, 'good luck wiping': 357360, 'luck wiping your': 506483, 'wiping your arse': 996537, 'your arse with': 1022834, 'arse with that': 94080, 'with that though': 1001181, 'that though they': 847019, 'though they re': 892923, 'they re probably': 883100, 're probably the': 699314, 'probably the same': 679403, 'the same folk': 866226, 'same folk who': 733068, 'folk who ve': 312304, 'who ve already': 989876, 've already bought': 952821, 'already bought mountain': 47240, 'bought mountain of': 136648, 'mountain of bog': 543424, 'of bog roll': 580762, 'bog roll coronacrisis': 133949, 'roll coronacrisis dontpanicbuy': 725254, 'r102m': 695055, 'pay': 644694, 'bonus': 134338, 'cashier get': 166535, 'get r102m': 347877, 'r102m pay': 695058, 'pay bonus': 644788, 'bonus for': 134369, 'for covid': 320430, '19 work': 12166, 'supermarket cashier get': 819558, 'cashier get r102m': 166536, 'get r102m pay': 347879, 'r102m pay bonus': 695059, 'pay bonus for': 644790, 'bonus for covid': 134371, 'for covid 19': 320431, 'covid 19 work': 214086, 'imagine': 416687, 'tattoo': 834856, 'art': 94126, 'lysol': 507156, 'rose': 726037, 'imagine this': 416810, 'wa your': 963759, 'your tattoo': 1026109, 'tattoo tattoo': 834871, 'tattoo art': 834857, 'art lysol': 94168, 'lysol toiletpaper': 507202, 'toiletpaper rose': 922423, 'imagine this wa': 416813, 'this wa your': 891099, 'wa your tattoo': 963761, 'your tattoo tattoo': 1026112, 'tattoo tattoo art': 834872, 'tattoo art lysol': 834858, 'art lysol toiletpaper': 94169, 'lysol toiletpaper rose': 507203, '19 coronavirus': 6087, 'coronavirus see': 206739, 'see the': 745806, 'the best': 849483, 'best time': 127932, 'time to': 897936, 'to avoid': 900865, 'avoid queue': 105250, 'queue at': 693880, 'at your': 101669, 'your local': 1024675, 'supermarket via': 823644, 'covid 19 coronavirus': 212867, '19 coronavirus see': 6124, 'coronavirus see the': 206740, 'see the best': 745812, 'the best time': 849559, 'best time to': 127934, 'time to avoid': 897948, 'to avoid queue': 900934, 'avoid queue at': 105251, 'queue at your': 693893, 'at your local': 101683, 'your local supermarket': 1024721, 'local supermarket via': 498607, 'happy': 377570, 'monday': 536217, 'financial': 306311, 'opec': 611833, 'output': 629223, 'cut': 223205, 'fluctuate': 311502, 'decline': 231291, 'dollar': 252943, 'slip': 774003, 'coming': 187976, 'soon': 785609, 'dia': 240149, 'spy': 791395, 'qq': 691588, 'cl': 179672, 'happy monday': 377653, 'monday here': 536298, 'here are': 392729, 'are my': 88173, 'my in': 548831, 'in financial': 422887, 'financial market': 306494, 'market opec': 516803, 'opec output': 611932, 'output cut': 629247, 'cut oil': 223449, 'price fluctuate': 673897, 'fluctuate news': 311508, 'news stock': 560822, 'stock decline': 802037, 'decline dollar': 231323, 'dollar slip': 253075, 'slip coming': 774012, 'coming soon': 188193, 'soon dia': 785689, 'dia spy': 240152, 'spy qq': 791403, 'qq cl': 691589, 'happy monday here': 377655, 'monday here are': 536299, 'here are my': 392746, 'are my in': 88179, 'my in financial': 548833, 'in financial market': 422890, 'financial market opec': 306511, 'market opec output': 516804, 'opec output cut': 611933, 'output cut oil': 629256, 'cut oil price': 223451, 'oil price fluctuate': 597134, 'price fluctuate news': 673898, 'fluctuate news stock': 311509, 'news stock decline': 560823, 'stock decline dollar': 802038, 'decline dollar slip': 231324, 'dollar slip coming': 253076, 'slip coming soon': 774013, 'coming soon dia': 188195, 'soon dia spy': 785690, 'dia spy qq': 240153, 'spy qq cl': 791404, 'overcame': 631081, 'decided': 230858, 'put': 690485, 'their': 872411, 'workforce': 1008336, 'first': 308477, 'evident': 288410, 'move': 543592, 'entrepreneur': 278924, 'people who': 650253, 'who overcame': 989394, 'overcame panic': 631082, 'panic and': 637291, 'and have': 64218, 'have decided': 380194, 'decided to': 230897, 'to put': 912576, 'put their': 690874, 'their workforce': 875225, 'workforce so': 1008385, 'so that': 778359, 'that all': 842536, 'all of': 43675, 'of can': 581066, 'can have': 158571, 'have food': 380646, 'and supply': 72771, 'of first': 583551, 'first need': 308794, 'critical situation': 218661, 'situation it': 772357, 'it is': 458852, 'is evident': 447604, 'evident who': 288423, 'who are': 988092, 'the one': 862185, 'one who': 607431, 'who move': 989298, 'move the': 543736, 'world the': 1010046, 'the entrepreneur': 854390, 'entrepreneur and': 278925, 'the worker': 871746, 'people who overcame': 650326, 'who overcame panic': 989395, 'overcame panic and': 631083, 'panic and have': 637315, 'and have decided': 64231, 'have decided to': 380197, 'decided to put': 230929, 'to put their': 912618, 'put their workforce': 690887, 'their workforce so': 875231, 'workforce so that': 1008386, 'so that all': 778360, 'that all of': 842557, 'all of can': 43681, 'of can have': 581070, 'can have food': 158577, 'have food and': 380649, 'food and supply': 313352, 'and supply of': 72806, 'supply of first': 825625, 'of first need': 583553, 'first need in': 308795, 'need in this': 555052, 'this critical situation': 887121, 'critical situation it': 218663, 'situation it is': 772361, 'it is evident': 458948, 'is evident who': 447606, 'evident who are': 288424, 'who are the': 988239, 'are the one': 90872, 'the one who': 862233, 'one who move': 607455, 'who move the': 989299, 'move the world': 543740, 'the world the': 871984, 'world the entrepreneur': 1010048, 'the entrepreneur and': 854391, 'entrepreneur and the': 278926, 'and the worker': 73661, 'fineos': 307767, 'announces': 77229, 'paid': 633937, 'calculator': 155323, 'answering': 78197, 'amount': 53156, 'might': 530856, 'apply': 82544, 'fineos announces': 307768, 'announces the': 77295, 'the launch': 859171, 'launch of': 481929, '19 paid': 9237, 'paid leave': 634051, 'leave calculator': 484761, 'calculator by': 155324, 'by answering': 151869, 'answering few': 78198, 'few question': 304025, 'question the': 693766, 'consumer can': 196719, 'learn the': 484065, 'the amount': 848649, 'amount of': 53202, 'of paid': 587662, 'leave that': 484956, 'that might': 845153, 'might apply': 530868, 'apply to': 82606, '19 leave': 8302, 'leave reason': 484915, 'fineos announces the': 307769, 'announces the launch': 77297, 'the launch of': 859172, 'launch of covid': 481931, 'covid 19 paid': 213545, '19 paid leave': 9238, 'paid leave calculator': 634053, 'leave calculator by': 484762, 'calculator by answering': 155325, 'by answering few': 151870, 'answering few question': 78199, 'few question the': 304026, 'question the consumer': 693767, 'the consumer can': 851506, 'consumer can learn': 196725, 'can learn the': 158854, 'learn the amount': 484066, 'the amount of': 848653, 'amount of paid': 53243, 'of paid leave': 587664, 'paid leave that': 634065, 'leave that might': 484958, 'that might apply': 845154, 'might apply to': 530869, 'apply to covid': 82613, 'covid 19 leave': 213347, '19 leave reason': 8303, 'cautious': 168206, 'product': 680821, 'claim': 179681, 'prevent': 671573, 'treat': 930793, 'diagnose': 240211, 'cure': 220690, 'suspect': 829460, 'email': 272091, 'fraudstoppers': 331444, 'ok': 597759, 'gov': 359527, 'scam alert': 739973, 'alert be': 41361, 'be cautious': 114031, 'cautious of': 168224, 'of anyone': 580277, 'anyone selling': 80521, 'selling product': 749414, 'product that': 681685, 'that claim': 843236, 'claim to': 179845, 'to prevent': 912042, 'prevent treat': 671752, 'treat diagnose': 930825, 'diagnose or': 240216, 'or cure': 614867, 'cure covid': 220728, '19 if': 7655, 'you suspect': 1021495, 'suspect scam': 829489, 'scam report': 740329, 'report it': 712058, 'it at': 456607, 'at or': 99987, 'or email': 615141, 'email fraudstoppers': 272177, 'fraudstoppers ok': 331445, 'ok gov': 597812, 'scam alert be': 739974, 'alert be cautious': 41363, 'be cautious of': 114034, 'cautious of anyone': 168225, 'of anyone selling': 580283, 'anyone selling product': 80522, 'selling product that': 749419, 'product that claim': 681688, 'that claim to': 843238, 'claim to prevent': 179853, 'to prevent treat': 912096, 'prevent treat diagnose': 671753, 'treat diagnose or': 930826, 'diagnose or cure': 240217, 'or cure covid': 614869, 'cure covid 19': 220729, 'covid 19 if': 213244, '19 if you': 7669, 'if you suspect': 415533, 'you suspect scam': 1021497, 'suspect scam report': 829492, 'scam report it': 740330, 'report it at': 712060, 'it at or': 456622, 'at or email': 99992, 'or email fraudstoppers': 615145, 'email fraudstoppers ok': 272178, 'fraudstoppers ok gov': 331446, 'thread': 893510, 'checking': 174808, 'underscore': 940562, 'weight': 977694, 'start': 794182, 'fighting': 305021, 'emotion': 273255, 'sharing': 755507, 'reading': 700728, 'laterally': 481184, 'amp': 53305, 'verifying': 954804, 'source': 786436, 'important thread': 419039, 'thread by': 893527, 'by critical': 152267, 'critical fact': 218557, 'fact checking': 295695, 'checking service': 174843, 'service that': 752914, 'that underscore': 847166, 'underscore the': 940565, 'the weight': 871352, 'weight of': 977705, 'of remember': 588920, 'remember fact': 710192, 'checking start': 174845, 'start with': 794646, 'consumer give': 197583, 'give fact': 350483, 'fact fighting': 295719, 'fighting chance': 305047, 'chance by': 171707, 'by checking': 152114, 'checking your': 174863, 'your emotion': 1023647, 'emotion before': 273258, 'before sharing': 123067, 'sharing reading': 755579, 'reading laterally': 700782, 'laterally amp': 481185, 'amp verifying': 54781, 'verifying source': 954807, 'important thread by': 419040, 'thread by critical': 893528, 'by critical fact': 152268, 'critical fact checking': 218558, 'fact checking service': 295697, 'checking service that': 174844, 'service that underscore': 752926, 'that underscore the': 847167, 'underscore the weight': 940568, 'the weight of': 871354, 'weight of remember': 977709, 'of remember fact': 588921, 'remember fact checking': 710193, 'fact checking start': 295698, 'checking start with': 174846, 'start with the': 794650, 'with the consumer': 1001244, 'the consumer give': 851540, 'consumer give fact': 197584, 'give fact fighting': 350484, 'fact fighting chance': 295720, 'fighting chance by': 305048, 'chance by checking': 171708, 'by checking your': 152116, 'checking your emotion': 174864, 'your emotion before': 1023648, 'emotion before sharing': 273259, 'before sharing reading': 123068, 'sharing reading laterally': 755580, 'reading laterally amp': 700783, 'laterally amp verifying': 481186, 'amp verifying source': 54782, 'senior': 750172, 'allow': 45905, 'ppl': 668145, 'safely': 730251, 'south': 786643, 'bay': 112901, 'chain': 170430, 'zanotto': 1027225, 'implement': 418370, 'great idea': 362723, 'idea here': 413068, 'here senior': 393544, 'senior only': 750370, 'only grocery': 610545, 'grocery shopping': 364988, 'shopping hour': 762908, 'hour first': 405585, 'first thing': 309073, 'thing in': 884426, 'in am': 420207, 'am to': 50499, 'to allow': 900322, 'allow ppl': 46037, 'ppl to': 668349, 'to shop': 914444, 'shop more': 760467, 'more safely': 540297, 'safely during': 730277, 'during time': 263343, 'time south': 897727, 'south bay': 786696, 'bay grocery': 112939, 'store chain': 806909, 'chain zanotto': 171282, 'zanotto implement': 1027226, 'implement senior': 418426, 'only hour': 610614, 'great idea here': 362729, 'idea here senior': 413070, 'here senior only': 393545, 'senior only grocery': 750372, 'only grocery shopping': 610548, 'grocery shopping hour': 365036, 'shopping hour first': 762917, 'hour first thing': 405586, 'first thing in': 309075, 'thing in am': 884429, 'in am to': 420208, 'am to allow': 50503, 'to allow ppl': 900354, 'allow ppl to': 46038, 'ppl to shop': 668353, 'to shop more': 914474, 'shop more safely': 760470, 'more safely during': 540298, 'safely during time': 730280, 'during time south': 263349, 'time south bay': 897728, 'south bay grocery': 786697, 'bay grocery store': 112941, 'grocery store chain': 365277, 'store chain zanotto': 806942, 'chain zanotto implement': 171283, 'zanotto implement senior': 1027228, 'implement senior only': 418427, 'senior only hour': 750373, 'precaution': 669260, 'manufacturer': 513414, 'portal': 664938, 'been': 120579, 'latest': 481188, 'more covid': 538913, '19 precaution': 9772, 'precaution taken': 669363, 'taken kenyan': 833019, 'kenyan manufacturer': 472976, 'manufacturer launch': 513484, 'launch online': 481936, 'shopping portal': 763652, 'portal ha': 664954, 'ha been': 369701, 'been published': 121736, 'published on': 688671, 'on latest': 601798, 'latest nigeria': 481462, 'nigeria news': 562773, 'more covid 19': 538914, 'covid 19 precaution': 213601, '19 precaution taken': 9775, 'precaution taken kenyan': 669364, 'taken kenyan manufacturer': 833020, 'kenyan manufacturer launch': 472977, 'manufacturer launch online': 513485, 'launch online shopping': 481938, 'online shopping portal': 609228, 'shopping portal ha': 763657, 'portal ha been': 664955, 'ha been published': 369883, 'been published on': 121738, 'published on latest': 688677, 'on latest nigeria': 601799, 'latest nigeria news': 481463, 'else': 271609, 'cool': 202978, 'hangout': 376981, 'always': 49450, 'busy': 144857, 'stayathomeandstaysafe': 797720, 'stayhomefornevada': 798299, 'socialdistance': 780129, 'anyone else': 80254, 'else feel': 271688, 'like the': 491342, 'store is': 808457, 'the new': 861468, 'new cool': 558539, 'cool hangout': 203012, 'hangout it': 376982, 'it always': 456440, 'always so': 49742, 'so busy': 776658, 'busy stayathomeandstaysafe': 144961, 'stayathomeandstaysafe stayhomefornevada': 797726, 'stayhomefornevada socialdistance': 798300, 'socialdistance socialdistancing': 780160, 'anyone else feel': 80261, 'else feel like': 271690, 'feel like the': 302751, 'like the grocery': 491371, 'grocery store is': 365491, 'store is the': 808541, 'is the new': 452872, 'the new cool': 861483, 'new cool hangout': 558540, 'cool hangout it': 203013, 'hangout it always': 376983, 'it always so': 456444, 'always so busy': 49743, 'so busy stayathomeandstaysafe': 776661, 'busy stayathomeandstaysafe stayhomefornevada': 144962, 'stayathomeandstaysafe stayhomefornevada socialdistance': 797727, 'stayhomefornevada socialdistance socialdistancing': 798301, 'very': 954973, 'worried': 1010473, 'wearing': 974578, 'continually': 200963, 'sanitize': 734160, 'sure': 827477, 'protect': 684753, 'contracting': 201752, 'trouble': 932586, 'concentrating': 192837, 'sleeping': 773815, 'getting very': 349429, 'very worried': 955670, 'worried when': 1010602, 'when go': 983472, 'work at': 1004855, 'store wearing': 811192, 'wearing glove': 974626, 'glove continually': 352644, 'continually sanitize': 200972, 'sanitize my': 734197, 'my cashier': 547638, 'cashier area': 166477, 'area but': 91965, 'but not': 146522, 'not sure': 571831, 'sure it': 827592, 'it enough': 457822, 'enough to': 277685, 'to protect': 912288, 'protect me': 684864, 'me the': 523636, 'the other': 862506, 'other cashier': 619930, 'cashier from': 166530, 'from contracting': 334989, 'contracting covid': 201768, '19 having': 7460, 'having trouble': 384384, 'trouble concentrating': 932599, 'concentrating sleeping': 192838, 'getting very worried': 349433, 'very worried when': 955673, 'worried when go': 1010603, 'when go to': 983479, 'go to work': 354385, 'to work at': 918690, 'work at the': 1004905, 'grocery store wearing': 365938, 'store wearing glove': 811194, 'wearing glove continually': 974630, 'glove continually sanitize': 352645, 'continually sanitize my': 200973, 'sanitize my cashier': 734198, 'my cashier area': 547639, 'cashier area but': 166478, 'area but not': 91967, 'but not sure': 146568, 'not sure it': 571841, 'sure it enough': 827599, 'it enough to': 457827, 'enough to protect': 277717, 'to protect me': 912315, 'protect me the': 684866, 'me the other': 523654, 'the other cashier': 862515, 'other cashier from': 619931, 'cashier from contracting': 166532, 'from contracting covid': 334990, 'contracting covid 19': 201769, 'covid 19 having': 213191, '19 having trouble': 7463, 'having trouble concentrating': 384386, 'trouble concentrating sleeping': 932600, 'fraudsters': 331393, 'swindler': 830379, 'making': 510937, 'huge': 409969, 'misery': 534003, 'corona': 203776, 'victim': 956452, 'coronavillains': 205407, 'medical': 526027, 'arbitrage': 84004, 'horde': 403990, 'middleman': 530704, 'profiteer': 682945, 'dramatically': 258317, 'increasing': 433543, 'n95s': 551276, 'zero': 1027397, 'hedge': 388714, 'fraudsters swindler': 331431, 'swindler and': 830380, 'and fraudsters': 63258, 'fraudsters making': 331423, 'making huge': 511117, 'huge profit': 410147, 'the misery': 860680, 'misery of': 534014, 'of sick': 589708, 'sick and': 768359, 'and ill': 64972, 'ill people': 416161, 'dying corona': 263793, 'corona victim': 204274, 'victim coronavillains': 956462, 'coronavillains medical': 205411, 'medical supply': 526424, 'supply arbitrage': 824775, 'arbitrage how': 84005, 'how horde': 408011, 'horde of': 403997, 'of middleman': 586485, 'middleman profiteer': 530711, 'profiteer scammer': 682979, 'scammer are': 740526, 'are dramatically': 85987, 'dramatically increasing': 258356, 'increasing the': 433705, 'price of': 675391, 'of n95s': 586847, 'n95s zero': 551279, 'zero hedge': 1027459, 'fraudsters swindler and': 331432, 'swindler and fraudsters': 830381, 'and fraudsters making': 63259, 'fraudsters making huge': 331424, 'making huge profit': 511118, 'huge profit from': 410150, 'profit from the': 682740, 'from the misery': 337791, 'the misery of': 860681, 'misery of sick': 534015, 'of sick and': 589709, 'sick and ill': 768367, 'and ill people': 64973, 'ill people dying': 416163, 'people dying corona': 647748, 'dying corona victim': 263794, 'corona victim coronavillains': 204275, 'victim coronavillains medical': 956463, 'coronavillains medical supply': 205412, 'medical supply arbitrage': 526427, 'supply arbitrage how': 824776, 'arbitrage how horde': 84006, 'how horde of': 408012, 'horde of middleman': 404001, 'of middleman profiteer': 586486, 'middleman profiteer scammer': 530712, 'profiteer scammer are': 682980, 'scammer are dramatically': 740531, 'are dramatically increasing': 85988, 'dramatically increasing the': 258357, 'increasing the price': 433710, 'the price of': 864391, 'price of n95s': 675515, 'of n95s zero': 586848, 'n95s zero hedge': 551280, 'global': 351725, 'catalyst': 166920, 'radical': 695397, 'gilbert': 350099, 'mercier': 529064, 'speaks': 787784, 'chronicle': 178251, 'global or': 352058, 'or catalyst': 614685, 'catalyst of': 166926, 'of radical': 588715, 'radical gilbert': 695403, 'gilbert mercier': 350104, 'mercier speaks': 529065, 'speaks on': 787797, 'on collapse': 599965, 'collapse chronicle': 185985, 'chronicle 19': 178252, 'global or catalyst': 352059, 'or catalyst of': 614686, 'catalyst of radical': 166927, 'of radical gilbert': 588716, 'radical gilbert mercier': 695404, 'gilbert mercier speaks': 350105, 'mercier speaks on': 529066, 'speaks on collapse': 787798, 'on collapse chronicle': 599966, 'collapse chronicle 19': 185986, 'glad': 351478, 'loblaws': 497620, 'superstore': 824340, 'frill': 334074, 'etc': 282384, 'taking': 833239, 'step': 799484, 'glad to': 351522, 'to see': 913978, 'chain loblaws': 170899, 'loblaws superstore': 497638, 'superstore no': 824350, 'no frill': 564311, 'frill etc': 334075, 'etc taking': 282785, 'taking these': 833608, 'these step': 880722, 'glad to see': 351532, 'to see the': 914081, 'see the grocery': 745839, 'store chain loblaws': 806928, 'chain loblaws superstore': 170900, 'loblaws superstore no': 497639, 'superstore no frill': 824351, 'no frill etc': 564312, 'frill etc taking': 334076, 'etc taking these': 282786, 'taking these step': 833610, 'canada': 160344, 'coup': 211543, 'war': 966332, 'may': 520866, 'aimed': 39564, 'shale': 754491, 'benchmark': 126829, 'fallen': 297122, 'below': 126546, '10': 1185, 'barrel': 111188, 'oott': 611759, 'canada coup': 160407, 'coup the': 211544, 'the oil': 862102, 'price war': 677346, 'war may': 966486, 'may be': 520940, 'be aimed': 113536, 'aimed at': 39565, 'at shale': 100496, 'shale but': 754492, 'but the': 147307, 'the first': 855275, 'first victim': 309159, 'victim is': 956480, 'is canada': 446359, 'canada where': 160609, 'where benchmark': 984757, 'benchmark price': 126847, 'price have': 674408, 'have already': 379183, 'already fallen': 47345, 'fallen below': 297133, 'below 10': 126554, '10 barrel': 1331, 'barrel oott': 111261, 'oott oil': 611768, 'war via': 966584, 'canada coup the': 160408, 'coup the oil': 211545, 'the oil price': 862115, 'oil price war': 597314, 'price war may': 677362, 'war may be': 966487, 'may be aimed': 520943, 'be aimed at': 113537, 'aimed at shale': 39576, 'at shale but': 100497, 'shale but the': 754493, 'but the first': 147339, 'the first victim': 855363, 'first victim is': 309160, 'victim is canada': 956481, 'is canada where': 446361, 'canada where benchmark': 160610, 'where benchmark price': 984758, 'benchmark price have': 126849, 'price have already': 674410, 'have already fallen': 379188, 'already fallen below': 47346, 'fallen below 10': 297134, 'below 10 barrel': 126555, '10 barrel oott': 1332, 'barrel oott oil': 111262, 'oott oil price': 611770, 'price war via': 677382, 'convert': 202526, 'lunch': 506703, 'money': 536564, 'multiply': 545828, 'snack': 775999, 'feeding': 302449, 'child': 175986, 'biggest': 130183, 'refrigerator': 706800, 'tired': 899023, 'juice': 467725, 'danger': 225630, 'worse': 1010849, 'convert lunch': 202533, 'lunch money': 506734, 'money to': 537083, 'to grocery': 907003, 'store money': 808979, 'money and': 536589, 'and multiply': 67318, 'multiply by': 545829, 'by for': 152619, 'for snack': 325685, 'snack only': 776021, 'only feeding': 610431, 'feeding the': 302480, 'the child': 850812, 'child during': 176067, 'the crisis': 852336, 'crisis is': 217557, 'the biggest': 849639, 'biggest challenge': 130192, 'challenge since': 171550, 'since covid': 770551, '19 the': 11165, 'the refrigerator': 865408, 'refrigerator door': 706808, 'door is': 255627, 'is tired': 453169, 'tired juice': 899034, 'juice and': 467728, 'and water': 75228, 'water are': 968898, 'are now': 88514, 'now in': 574990, 'in danger': 421968, 'danger even': 225644, 'even worse': 284819, 'worse there': 1011031, 'there is': 878515, 'is no': 449908, 'convert lunch money': 202534, 'lunch money to': 506735, 'money to grocery': 537102, 'to grocery store': 907010, 'grocery store money': 365574, 'store money and': 808980, 'money and multiply': 536601, 'and multiply by': 67319, 'multiply by for': 545831, 'by for snack': 152625, 'for snack only': 325686, 'snack only feeding': 776022, 'only feeding the': 610432, 'feeding the child': 302482, 'the child during': 850816, 'child during the': 176068, 'during the crisis': 263108, 'the crisis is': 852394, 'crisis is the': 217591, 'is the biggest': 452739, 'the biggest challenge': 849644, 'biggest challenge since': 130194, 'challenge since covid': 171551, 'since covid 19': 770552, 'covid 19 the': 213931, '19 the refrigerator': 11242, 'the refrigerator door': 865409, 'refrigerator door is': 706809, 'door is tired': 255629, 'is tired juice': 453170, 'tired juice and': 899035, 'juice and water': 467729, 'and water are': 75232, 'water are now': 968901, 'are now in': 88560, 'now in danger': 574996, 'in danger even': 421972, 'danger even worse': 225645, 'even worse there': 284834, 'worse there is': 1011032, 'there is no': 878595, 'recap': 703372, 'sentiment': 750885, 'estimate': 282227, 'weekly': 977463, 'update': 946828, 'mg': 530079, 'market recap': 516960, 'recap consumer': 703375, 'consumer sentiment': 198901, 'sentiment supply': 751003, 'and demand': 61136, 'demand estimate': 235299, 'estimate 19': 282228, 'and more': 67136, 'more in': 539505, 'this weekly': 891328, 'weekly livestock': 977511, 'livestock market': 496275, 'market update': 517282, 'update with': 947324, 'with mg': 999489, 'market recap consumer': 516961, 'recap consumer sentiment': 703376, 'consumer sentiment supply': 198928, 'sentiment supply and': 751004, 'supply and demand': 824710, 'and demand estimate': 61152, 'demand estimate 19': 235300, 'estimate 19 and': 282229, '19 and more': 5063, 'and more in': 67181, 'more in this': 539528, 'in this weekly': 430046, 'this weekly livestock': 891329, 'weekly livestock market': 977512, 'livestock market update': 496276, 'market update with': 517288, 'update with mg': 947326, 'gold': 355843, 'safe': 729402, 'haven': 383735, 'investment': 443955, 'outlook': 629127, 'mildly': 531358, 'bullish': 142456, 'high': 394895, '1900': 12303, '2021': 14760, 'higher': 395536, '200': 13436, 'per': 650663, 'oz': 632707, 'gold is': 355912, 'is safe': 451613, 'safe haven': 729736, 'haven investment': 383845, 'investment in': 444009, 'in time': 430073, 'time of': 897306, 'of global': 584147, 'global recession': 352151, 'recession long': 704317, 'long term': 501670, 'term outlook': 838233, 'outlook mildly': 629171, 'mildly bullish': 531359, 'bullish 2020': 142457, '2020 with': 14728, 'with first': 998447, 'first test': 309051, 'test of': 839104, 'of all': 579917, 'all time': 45215, 'time high': 896926, 'high around': 394934, 'around 1900': 93117, '1900 and': 12304, 'more bullish': 538734, 'bullish 2021': 142459, '2021 with': 14805, 'with price': 1000296, 'price higher': 674515, 'higher than': 395747, 'than 200': 840197, '200 per': 13530, 'per oz': 650964, 'gold is safe': 355913, 'is safe haven': 451619, 'safe haven investment': 729739, 'haven investment in': 383847, 'investment in time': 444014, 'in time of': 430087, 'time of global': 897336, 'of global recession': 584157, 'global recession long': 352159, 'recession long term': 704318, 'long term outlook': 501702, 'term outlook mildly': 838234, 'outlook mildly bullish': 629172, 'mildly bullish 2020': 531360, 'bullish 2020 with': 142458, '2020 with first': 14730, 'with first test': 998448, 'first test of': 309052, 'test of all': 839105, 'of all time': 579989, 'all time high': 45220, 'time high around': 896928, 'high around 1900': 394935, 'around 1900 and': 93118, '1900 and more': 12305, 'and more bullish': 67152, 'more bullish 2021': 538735, 'bullish 2021 with': 142460, '2021 with price': 14806, 'with price higher': 1000307, 'price higher than': 674519, 'higher than 200': 395749, 'than 200 per': 840199, '200 per oz': 13531, 'know': 476201, 'cunt': 220353, 'moaned': 534892, 'brexit': 139484, 'stayathome': 797422, 'just know': 469104, 'know the': 476805, 'same cunt': 733010, 'cunt that': 220373, 'that moaned': 845194, 'moaned about': 534893, 'about food': 25249, 'shortage due': 764919, 'to brexit': 902014, 'brexit are': 139488, 'cunt panic': 220370, 'buying everything': 150251, 'everything coronacrisis': 287738, 'coronacrisis stayathome': 204767, 'you just know': 1019427, 'just know the': 469109, 'know the same': 476847, 'the same cunt': 866212, 'same cunt that': 733012, 'cunt that moaned': 220374, 'that moaned about': 845195, 'moaned about food': 534894, 'about food shortage': 25264, 'food shortage due': 316570, 'shortage due to': 764920, 'due to brexit': 261713, 'to brexit are': 902015, 'brexit are the': 139489, 'are the same': 90902, 'same cunt panic': 733011, 'cunt panic buying': 220371, 'panic buying everything': 637722, 'buying everything coronacrisis': 150253, 'everything coronacrisis stayathome': 287741, 'china': 176435, 'role': 725062, 'wildlife': 992131, 'trade': 928394, 'under': 939953, 'greater': 363135, 'scrutiny': 742946, 'whether': 985482, 'pushing': 690393, 'entire': 278643, 'specie': 788176, 'brink': 140292, 'extinction': 293364, 'farm': 299072, 'endangered': 276092, 'prc': 669127, 'principal': 678221, 'thread china': 893531, 'china role': 176918, 'role in': 725087, 'in wildlife': 430914, 'wildlife trade': 992141, 'trade should': 928573, 'should come': 765840, 'come under': 187641, 'under greater': 940098, 'greater scrutiny': 363235, 'scrutiny whether': 742955, 'whether pushing': 985553, 'pushing entire': 690412, 'entire specie': 278739, 'specie to': 788193, 'the brink': 850010, 'brink of': 140293, 'of extinction': 583340, 'extinction or': 293365, 'or running': 616938, 'running animal': 727908, 'animal farm': 76588, 'farm for': 299115, 'for endangered': 321052, 'endangered specie': 276095, 'specie prc': 788189, 'prc is': 669128, 'the principal': 864461, 'principal consumer': 678229, 'consumer in': 197814, 'the wildlife': 871563, 'trade 19': 928395, 'thread china role': 893532, 'china role in': 176919, 'role in wildlife': 725105, 'in wildlife trade': 430916, 'wildlife trade should': 992143, 'trade should come': 928574, 'should come under': 765846, 'come under greater': 187644, 'under greater scrutiny': 940099, 'greater scrutiny whether': 363236, 'scrutiny whether pushing': 742956, 'whether pushing entire': 985554, 'pushing entire specie': 690413, 'entire specie to': 278740, 'specie to the': 788194, 'to the brink': 916529, 'the brink of': 850011, 'brink of extinction': 140297, 'of extinction or': 583341, 'extinction or running': 293366, 'or running animal': 616939, 'running animal farm': 727909, 'animal farm for': 76589, 'farm for endangered': 299116, 'for endangered specie': 321053, 'endangered specie prc': 276096, 'specie prc is': 788190, 'prc is the': 669129, 'is the principal': 452906, 'the principal consumer': 864463, 'principal consumer in': 678230, 'consumer in the': 197835, 'in the wildlife': 429681, 'the wildlife trade': 871564, 'wildlife trade 19': 992142, 'silly': 769743, 'american': 51760, 'anything': 80673, 'hoarder': 398976, 'greenchile': 363725, 'nm': 563517, 'texas': 839734, 'silly american': 769746, 'american if': 52040, 'you were': 1022238, 'were going': 979686, 'hoard anything': 398758, 'anything it': 80801, 'it should': 461030, 'be this': 117699, 'this don': 887277, 'don be': 253351, 'be hoarder': 115272, 'hoarder toiletpaper': 399129, 'toiletpaper greenchile': 922034, 'greenchile nm': 363726, 'nm texas': 563522, 'silly american if': 769747, 'american if you': 52041, 'if you were': 415560, 'you were going': 1022247, 'were going to': 979689, 'going to hoard': 355623, 'to hoard anything': 907865, 'hoard anything it': 398759, 'anything it should': 80804, 'it should be': 461032, 'should be this': 765752, 'be this don': 117701, 'this don be': 887278, 'don be hoarder': 253361, 'be hoarder toiletpaper': 115273, 'hoarder toiletpaper greenchile': 399132, 'toiletpaper greenchile nm': 922035, 'greenchile nm texas': 363727, 'heal': 386068, 'worship': 1011123, 'song': 785475, 'playlist': 659479, 'ghaad': 349541, 'kinda': 475035, 'evaluating': 283724, 'whole': 990133, 'life': 488433, 'hays': 384532, 'while panic': 987142, 'buying at': 149961, 'local grocery': 498046, 'grocery earlier': 364486, 'earlier heal': 264450, 'heal the': 386071, 'world and': 1009275, 'and worship': 75922, 'worship song': 1011126, 'song were': 785523, 'were on': 979933, 'supermarket playlist': 822002, 'playlist and': 659480, 'and ghaad': 63632, 'ghaad wa': 349542, 'wa kinda': 962495, 'kinda re': 475071, 're evaluating': 698624, 'evaluating my': 283725, 'my whole': 550575, 'whole life': 990251, 'life during': 488615, 'during this': 263257, 'this crisis': 887014, 'crisis hays': 217469, 'hays covid': 384533, 'while panic buying': 987143, 'panic buying at': 637648, 'buying at the': 149972, 'at the local': 101008, 'the local grocery': 859551, 'local grocery earlier': 498048, 'grocery earlier heal': 364487, 'earlier heal the': 264451, 'heal the world': 386072, 'the world and': 871811, 'world and worship': 1009294, 'and worship song': 75923, 'worship song were': 1011127, 'song were on': 785524, 'were on the': 979937, 'on the supermarket': 604392, 'the supermarket playlist': 868755, 'supermarket playlist and': 822003, 'playlist and ghaad': 659481, 'and ghaad wa': 63633, 'ghaad wa kinda': 349544, 'wa kinda re': 962497, 'kinda re evaluating': 475072, 're evaluating my': 698625, 'evaluating my whole': 283726, 'my whole life': 550579, 'whole life during': 990253, 'life during this': 488618, 'during this crisis': 263274, 'this crisis hays': 887048, 'crisis hays covid': 217470, 'hays covid 19': 384534, 'corner': 203634, 'advantage': 32954, 'fear': 300997, 'cdc': 168539, 'flu': 311372, 'trend': 931253, 'consumer corner': 196978, 'corner scammer': 203664, 'scammer taking': 740624, 'taking advantage': 833251, 'advantage of': 32982, 'of 19': 579380, '19 fear': 6951, 'fear cdc': 301085, 'cdc flu': 168561, 'flu trend': 311481, 'trend alert': 931257, 'consumer corner scammer': 196980, 'corner scammer taking': 203665, 'scammer taking advantage': 740625, 'taking advantage of': 833255, 'advantage of 19': 32983, 'of 19 fear': 579390, '19 fear cdc': 6954, 'fear cdc flu': 301086, 'cdc flu trend': 168562, 'flu trend alert': 311482, 'attorney': 102611, 'michael': 530216, 'bailey': 108603, 'az': 106368, 'covid019': 214255, 'fraud': 331212, 'task': 834661, 'force': 328320, 'received': 703576, 'almost': 46467, '12k': 3103, 'complaint': 191922, 'loss': 503625, '39m': 18194, 'new attorney': 558363, 'attorney michael': 102676, 'michael bailey': 530217, 'bailey az': 108606, 'az ag': 106371, 'ag launch': 36805, 'launch covid019': 481882, 'covid019 fraud': 214256, 'fraud task': 331353, 'task force': 834677, 'force the': 328509, 'the say': 866391, 'say it': 738829, 'it received': 460661, 'received almost': 703585, 'almost 12k': 46479, '12k consumer': 3104, 'consumer complaint': 196847, 'complaint related': 192021, '19 in': 7728, 'in just': 424411, 'just three': 470072, 'three month': 893990, 'month with': 538130, 'with total': 1001819, 'total loss': 926193, 'loss to': 503795, 'consumer around': 196325, 'around 39m': 93146, '39m how': 18195, 'how to': 408973, 'to report': 913264, 'report related': 712211, 'related scam': 708542, 'new attorney michael': 558364, 'attorney michael bailey': 102677, 'michael bailey az': 530218, 'bailey az ag': 108607, 'az ag launch': 106372, 'ag launch covid019': 36806, 'launch covid019 fraud': 481883, 'covid019 fraud task': 214257, 'fraud task force': 331354, 'task force the': 834700, 'force the say': 328511, 'the say it': 866394, 'say it received': 738859, 'it received almost': 460662, 'received almost 12k': 703586, 'almost 12k consumer': 46480, '12k consumer complaint': 3105, 'consumer complaint related': 196859, 'complaint related to': 192022, 'covid 19 in': 213253, '19 in just': 7758, 'in just three': 424425, 'just three month': 470073, 'three month with': 894004, 'month with total': 538133, 'with total loss': 1001820, 'total loss to': 926194, 'loss to consumer': 503796, 'to consumer around': 903267, 'consumer around 39m': 196326, 'around 39m how': 93147, '39m how to': 18196, 'how to report': 409071, 'to report related': 913282, 'report related scam': 712212, 'kudos': 477874, 'frontline': 338701, 'especially': 280421, 'nurse': 577178, 'wore': 1004639, 'facemask': 295062, 'got': 358360, 'anxiety': 78641, 'pray': 668985, 'huge kudos': 410080, 'kudos to': 477879, 'to all': 900229, 'all frontline': 42882, 'frontline worker': 338856, 'worker especially': 1006855, 'especially nurse': 280567, 'nurse doctor': 577281, 'doctor wore': 251167, 'wore facemask': 1004654, 'facemask at': 295066, 'store and': 806190, 'and got': 63841, 'got anxiety': 358411, 'anxiety just': 78737, 'just from': 468779, 'from wearing': 338311, 'wearing it': 974661, 'it for': 458064, 'for an': 319264, 'an hour': 56072, 'hour please': 405860, 'please be': 659691, 'be kind': 115607, 'kind to': 475002, 'your grocery': 1024116, 'worker please': 1007586, 'please continue': 659846, 'continue socialdistancing': 201135, 'socialdistancing please': 780608, 'please pray': 660324, 'pray for': 668994, 'doctor and': 250812, 'and nurse': 67882, 'nurse 19': 577179, 'huge kudos to': 410081, 'kudos to all': 477880, 'to all frontline': 900251, 'all frontline worker': 42885, 'frontline worker especially': 338863, 'worker especially nurse': 1006856, 'especially nurse doctor': 280568, 'nurse doctor wore': 577311, 'doctor wore facemask': 251168, 'wore facemask at': 1004655, 'facemask at the': 295067, 'grocery store and': 365197, 'store and got': 806250, 'and got anxiety': 63844, 'got anxiety just': 358412, 'anxiety just from': 78739, 'just from wearing': 468782, 'from wearing it': 338313, 'wearing it for': 974662, 'it for an': 458070, 'for an hour': 319297, 'an hour please': 56098, 'hour please be': 405861, 'please be kind': 659705, 'be kind to': 115633, 'kind to your': 475016, 'to your grocery': 918989, 'your grocery worker': 1024140, 'grocery worker please': 366186, 'worker please continue': 1007588, 'please continue socialdistancing': 659848, 'continue socialdistancing please': 201136, 'socialdistancing please pray': 780610, 'please pray for': 660325, 'pray for doctor': 668997, 'for doctor and': 320791, 'doctor and nurse': 250820, 'and nurse 19': 67883, 'founded': 330516, 'star': 794021, 'brad': 137518, 'actress': 30613, 'kimberly': 474771, 'williams': 995440, 'store in': 808259, 'nashville founded': 552014, 'founded by': 330517, 'by country': 152244, 'country star': 211074, 'star brad': 794030, 'brad paisley': 137525, 'paisley and': 634367, 'and actress': 57649, 'actress kimberly': 30614, 'kimberly williams': 474778, 'williams paisley': 995447, 'paisley will': 634393, 'will deliver': 993144, 'deliver grocery': 233141, 'the elderly': 854102, 'elderly in': 270713, 'grocery store in': 365483, 'store in nashville': 808349, 'in nashville founded': 425682, 'nashville founded by': 552015, 'founded by country': 330518, 'by country star': 152247, 'country star brad': 211076, 'star brad paisley': 794031, 'brad paisley and': 137526, 'paisley and actress': 634368, 'and actress kimberly': 57650, 'actress kimberly williams': 30615, 'kimberly williams paisley': 474780, 'williams paisley will': 995450, 'paisley will deliver': 634395, 'will deliver grocery': 993145, 'deliver grocery to': 233143, 'grocery to the': 366061, 'to the elderly': 916668, 'the elderly in': 854127, 'elderly in the': 270716, 'wake of the': 964608, 'of the covid': 590904, 'throng': 894261, 'mulund': 545857, 'flouting': 311217, 'people throng': 649857, 'throng grocery': 894262, 'in mulund': 425508, 'mulund flouting': 545858, 'flouting all': 311218, 'all rule': 44210, 'rule of': 727306, 'of with': 593202, 'with more': 999548, 'horde of people': 404002, 'of people throng': 588004, 'people throng grocery': 649858, 'throng grocery store': 894263, 'store in mulund': 808347, 'in mulund flouting': 425509, 'mulund flouting all': 545859, 'flouting all rule': 311219, 'all rule of': 44212, 'rule of with': 727309, 'of with more': 593207, 'top': 925511, 'echoed': 266633, 'ppe': 667885, 'equipment': 279672, 'skyrocket': 773281, 'fan': 298498, 'bed': 120372, 'trump': 933359, 'mass': 519731, 'production': 681887, 'ago': 38314, 'save': 737458, 'did': 240534, 'the top': 869769, 'top need': 925619, 'need echoed': 554730, 'echoed by': 266636, 'by hospital': 152830, 'hospital across': 404258, 'country ppe': 210970, 'ppe supply': 668064, 'and equipment': 62223, 'equipment covid': 279712, 'covid is': 214180, 'is about': 445264, 'about to': 26705, 'to skyrocket': 914700, 'skyrocket there': 773337, 'there are': 878050, 'not enough': 569178, 'enough mask': 277514, 'glove fan': 352679, 'fan bed': 298507, 'bed etc': 120394, 'etc to': 282830, 'to treat': 917740, 'treat people': 930870, 'people trump': 650023, 'trump needed': 933720, 'needed to': 556526, 'order mass': 618376, 'mass production': 519838, 'production more': 682129, 'more than': 540540, 'than week': 841435, 'week ago': 975831, 'ago to': 38512, 'to save': 913772, 'save life': 737530, 'life it': 488822, 'it did': 457529, 'did not': 240707, 'the top need': 869785, 'top need echoed': 925620, 'need echoed by': 554731, 'echoed by hospital': 266637, 'by hospital across': 152831, 'hospital across the': 404259, 'the country ppe': 852133, 'country ppe supply': 210971, 'ppe supply and': 668065, 'supply and equipment': 824717, 'and equipment covid': 62224, 'equipment covid is': 279713, 'covid is about': 214181, 'is about to': 445280, 'about to skyrocket': 26738, 'to skyrocket there': 914709, 'skyrocket there are': 773338, 'there are not': 878131, 'are not enough': 88357, 'not enough mask': 569186, 'enough mask glove': 277516, 'mask glove fan': 518733, 'glove fan bed': 352680, 'fan bed etc': 298508, 'bed etc to': 120395, 'etc to treat': 282841, 'to treat people': 917755, 'treat people trump': 930872, 'people trump needed': 650024, 'trump needed to': 933721, 'needed to order': 556544, 'to order mass': 911076, 'order mass production': 618377, 'mass production more': 519839, 'production more than': 682130, 'more than week': 540696, 'than week ago': 841437, 'week ago to': 975862, 'ago to save': 38518, 'to save life': 913783, 'save life it': 737546, 'life it did': 488823, 'it did not': 457532, 'gen': 345206, 'igen': 415701, 'affected': 34280, 'never': 557840, 'engage': 276843, 'activity': 30355, 'large': 479584, 'gathering': 344427, 'school': 741667, 'mandate': 512991, 'education': 268798, 'how will': 409216, 'will gen': 993489, 'gen igen': 345217, 'igen be': 415702, 'be affected': 113509, 'affected by': 34300, 'by covid': 152250, 'pandemic they': 636730, 'will never': 994156, 'never walk': 558258, 'walk out': 964854, 'out of': 626664, 'store without': 811417, 'without buying': 1002531, 'paper two': 641034, 'two they': 937259, 'be le': 115667, 'le likely': 483010, 'to engage': 905121, 'engage in': 276855, 'in activity': 420018, 'activity with': 30541, 'with large': 999169, 'large gathering': 479668, 'gathering school': 344505, 'school will': 741984, 'will mandate': 994098, 'mandate education': 512996, 'education on': 268848, 'on how': 601380, 'how virus': 409141, 'virus are': 957957, 'are spread': 90333, 'how will gen': 409227, 'will gen igen': 993490, 'gen igen be': 345218, 'igen be affected': 415703, 'be affected by': 113511, 'affected by covid': 34310, 'by covid 19': 152251, '19 pandemic they': 9497, 'pandemic they will': 636739, 'they will never': 883867, 'will never walk': 994176, 'never walk out': 558260, 'walk out of': 964855, 'out of grocery': 626748, 'of grocery store': 584358, 'grocery store without': 365963, 'store without buying': 811419, 'without buying toilet': 1002533, 'toilet paper two': 921509, 'paper two they': 641035, 'two they will': 937261, 'will be le': 992532, 'be le likely': 115672, 'le likely to': 483011, 'likely to engage': 492148, 'to engage in': 905123, 'engage in activity': 276856, 'in activity with': 420020, 'activity with large': 30542, 'with large gathering': 999171, 'large gathering school': 479673, 'gathering school will': 344507, 'school will mandate': 741987, 'will mandate education': 994099, 'mandate education on': 512997, 'education on how': 268849, 'on how virus': 601430, 'how virus are': 409142, 'virus are spread': 957963, 'case': 165572, 'study': 814855, 'bango': 109516, 'quantifies': 691889, 'read': 700248, 'blog': 132894, 'provides': 686824, 'spend': 788547, 'forecast': 328799, 'based': 111494, 'initially': 438564, 'appdevelopers': 82043, 'appmarketing': 82640, 'mobilegames': 535055, 'case study': 166040, 'study bango': 814867, 'bango quantifies': 109519, 'quantifies increase': 691890, 'increase to': 433133, 'to stay': 915263, 'stay at': 796767, 'at home': 98926, 'home behavior': 400794, 'behavior read': 124162, 'read our': 700494, 'our latest': 623650, 'latest blog': 481231, 'blog where': 133044, 'where bango': 984751, 'bango provides': 109517, 'provides consumer': 686838, 'consumer spend': 199030, 'spend forecast': 788609, 'forecast based': 328808, 'based on': 111664, 'on behavior': 599614, 'behavior from': 124039, 'from market': 336358, 'market initially': 516587, 'initially impacted': 438567, '19 appdevelopers': 5178, 'appdevelopers appmarketing': 82044, 'appmarketing mobilegames': 82641, 'case study bango': 166041, 'study bango quantifies': 814868, 'bango quantifies increase': 109520, 'quantifies increase to': 691891, 'increase to stay': 433138, 'to stay at': 915272, 'stay at home': 796770, 'at home behavior': 98948, 'home behavior read': 400795, 'behavior read our': 124164, 'read our latest': 700513, 'our latest blog': 623654, 'latest blog where': 481241, 'blog where bango': 133045, 'where bango provides': 984752, 'bango provides consumer': 109518, 'provides consumer spend': 686839, 'consumer spend forecast': 199034, 'spend forecast based': 788610, 'forecast based on': 328809, 'based on behavior': 111670, 'on behavior from': 599615, 'behavior from market': 124040, 'from market initially': 336361, 'market initially impacted': 516588, 'initially impacted by': 438568, 'impacted by covid': 418079, 'covid 19 appdevelopers': 212643, '19 appdevelopers appmarketing': 5179, 'appdevelopers appmarketing mobilegames': 82045, 'birth': 131393, 'sh': 754284, 'lf': 487876, 'stable': 791886, 'greedily': 363453, 'person': 652284, 'action': 29918, 'consideration': 195240, 'others': 621230, 'give birth': 350413, 'birth to': 131406, 'new word': 559882, 'word sh': 1004569, 'sh lf': 754295, 'lf shelf': 487881, 'shelf stable': 757542, 'stable greedily': 791919, 'greedily empty': 363454, 'shelf panic': 757396, 'buying thing': 151204, 'thing you': 885028, 'not even': 569234, 'even need': 284403, 'need person': 555430, 'person or': 652560, 'or action': 614252, 'action lack': 30058, 'lack of': 478601, 'of consideration': 581687, 'consideration for': 195247, 'for others': 324181, 'others please': 621586, 'please think': 660669, 'think of': 885432, 'of others': 587380, 'give birth to': 350415, 'birth to new': 131407, 'to new word': 910582, 'new word sh': 559884, 'word sh lf': 1004570, 'sh lf shelf': 754297, 'lf shelf stable': 487882, 'shelf stable greedily': 757546, 'stable greedily empty': 791920, 'greedily empty supermarket': 363455, 'supermarket shelf panic': 822508, 'shelf panic buying': 757397, 'panic buying thing': 637931, 'buying thing you': 151211, 'thing you do': 885032, 'do not even': 249727, 'not even need': 569266, 'even need person': 284404, 'need person or': 555431, 'person or action': 652561, 'or action lack': 614253, 'action lack of': 30059, 'lack of consideration': 478613, 'of consideration for': 581688, 'consideration for others': 195251, 'for others please': 324197, 'others please think': 621591, 'please think of': 660673, 'think of others': 885453, 'chinese': 177181, 'lol': 500860, 'gasoline': 344214, 'yeah': 1014229, 'clown': 184352, 'chinese virus': 177374, 'virus lol': 958467, 'lol you': 500982, 'you mean': 1019821, 'mean well': 524767, 'well trump': 978713, 'trump on': 933736, 'the good': 856425, 'for the': 326278, 'consumer gasoline': 197571, 'gasoline price': 344251, 'price coming': 673192, 'coming down': 188031, 'down yeah': 257516, 'yeah you': 1014319, 'you clown': 1017980, 'chinese virus lol': 177381, 'virus lol you': 958468, 'lol you mean': 500983, 'you mean well': 1019828, 'mean well trump': 524768, 'well trump on': 978714, 'trump on the': 933740, 'on the good': 604144, 'the good for': 856436, 'good for the': 357089, 'for the consumer': 326356, 'the consumer gasoline': 851539, 'consumer gasoline price': 197572, 'gasoline price coming': 344254, 'price coming down': 673193, 'coming down yeah': 188038, 'down yeah you': 257517, 'yeah you clown': 1014320, 'let': 486533, 'applaud': 82246, 'unsung': 943550, 'hero': 393916, 'tough': 926786, 'kirana': 475399, 'must': 546449, 'article': 94223, 'kiranastores': 475411, 'let applaud': 486605, 'applaud the': 82253, 'the unsung': 870467, 'unsung hero': 943552, 'hero during': 393980, 'during these': 263228, 'these tough': 880869, 'tough time': 926844, 'time the': 897841, 'local kirana': 498136, 'kirana store': 475404, 'store owner': 809421, 'owner must': 632501, 'must read': 546829, 'read article': 700291, 'article retail': 94444, 'retail kiranastores': 718261, 'let applaud the': 486606, 'applaud the unsung': 82258, 'the unsung hero': 870468, 'unsung hero during': 943555, 'hero during these': 393983, 'during these tough': 263243, 'these tough time': 880871, 'tough time the': 926865, 'time the local': 897858, 'the local kirana': 859559, 'local kirana store': 498137, 'kirana store owner': 475406, 'store owner must': 809434, 'owner must read': 632503, 'must read article': 546831, 'read article retail': 700295, 'article retail kiranastores': 94446, 'yost': 1016735, 'warns': 967239, 'ag yost': 36860, 'yost warns': 1016736, 'warns of': 967263, 'of an': 580097, 'an outbreak': 56732, 'outbreak of': 628474, 'of scam': 589354, 'ag yost warns': 36861, 'yost warns of': 1016737, 'warns of an': 967264, 'of an outbreak': 580128, 'an outbreak of': 56734, 'outbreak of scam': 628485, 'of scam related': 589364, 'keen': 471261, 'lol just': 500917, 'just making': 469219, 'making sure': 511372, 'sure need': 827626, 'the shop': 866973, 'shop not': 760501, 'not keen': 570270, 'keen but': 471262, 'but must': 146424, 'lol just making': 500918, 'just making sure': 469222, 'making sure need': 511382, 'sure need to': 827627, 'need to go': 555953, 'to the shop': 917059, 'the shop not': 867015, 'shop not keen': 760504, 'not keen but': 570271, 'keen but must': 471263, 'wonder': 1003937, 'many': 513708, 'carried': 164931, 'wonder how': 1003949, 'how many': 408239, 'many supermarket': 514753, 'supermarket shop': 822582, 'shop worker': 761079, 'worker have': 1007081, 'have caught': 379912, 'caught the': 167461, 'the virus': 870790, 'virus since': 958756, 'since they': 770926, 'they have': 882287, 'have carried': 379901, 'carried on': 164936, 'on working': 605373, 'wonder how many': 1003954, 'how many supermarket': 408284, 'many supermarket shop': 514765, 'supermarket shop worker': 822602, 'shop worker have': 761088, 'worker have caught': 1007083, 'have caught the': 379915, 'caught the virus': 167464, 'the virus since': 870890, 'virus since they': 958757, 'since they have': 770929, 'they have carried': 882299, 'have carried on': 379902, 'carried on working': 164937, 'baby': 106556, 'self': 747540, 'isolating': 455048, 'least': 484321, 'another': 77464, 'yet': 1015969, 'slot': 774090, 'collect': 186258, 'april': 83387, '1st': 12704, 'live': 495696, '45': 19055, 'min': 532505, 'neighbour': 557178, 'big': 129608, 'ask': 95470, 'supposed': 827341, 'are couple': 85591, 'couple with': 211719, 'with baby': 997348, 'baby self': 106691, 'self isolating': 747709, 'isolating due': 455084, '19 infection': 7846, 'infection for': 436756, 'for at': 319514, 'at least': 99436, 'least another': 484389, 'another week': 77970, 'week yet': 977292, 'yet there': 1016264, 'are no': 88239, 'no delivery': 563981, 'delivery slot': 234501, 'slot or': 774249, 'or even': 615186, 'even click': 283952, 'click collect': 181893, 'collect until': 186336, 'until april': 943687, 'april 1st': 83439, '1st we': 12828, 'we live': 972210, 'live 45': 495699, '45 min': 19110, 'min from': 532539, 'from supermarket': 337471, 'supermarket so': 822725, 'so asking': 776557, 'asking neighbour': 96029, 'neighbour is': 557223, 'is big': 446167, 'big ask': 129627, 'ask what': 95658, 'what are': 981052, 'are we': 91555, 'we supposed': 973462, 'supposed to': 827348, 'to do': 904472, 'we are couple': 970516, 'are couple with': 85593, 'couple with baby': 211721, 'with baby self': 997350, 'baby self isolating': 106692, 'self isolating due': 747720, 'isolating due to': 455085, 'due to covid': 261745, 'covid 19 infection': 213267, '19 infection for': 7850, 'infection for at': 436757, 'for at least': 319518, 'at least another': 99463, 'least another week': 484391, 'another week yet': 77977, 'week yet there': 977293, 'yet there are': 1016265, 'there are no': 878130, 'are no delivery': 88252, 'no delivery slot': 563992, 'delivery slot or': 234535, 'slot or even': 774251, 'or even click': 615193, 'even click collect': 283954, 'click collect until': 181901, 'collect until april': 186337, 'until april 1st': 943691, 'april 1st we': 83445, '1st we live': 12829, 'we live 45': 972211, 'live 45 min': 495700, '45 min from': 19113, 'min from supermarket': 532540, 'from supermarket so': 337503, 'supermarket so asking': 822726, 'so asking neighbour': 776558, 'asking neighbour is': 96030, 'neighbour is big': 557224, 'is big ask': 446168, 'big ask what': 129628, 'ask what are': 95659, 'what are we': 981071, 'are we supposed': 91595, 'we supposed to': 973463, 'supposed to do': 827355, 'changed': 172423, 'behaviour': 124344, 'ha changed': 370115, 'changed behaviour': 172443, 'behaviour here': 124443, 'here all': 392665, 'all you': 45530, 'you need': 1019958, 'to know': 908969, 'know by': 476320, 'by read': 153727, 'ha changed behaviour': 370119, 'changed behaviour here': 172444, 'behaviour here all': 124444, 'here all you': 392668, 'all you need': 45548, 'you need to': 1020053, 'need to know': 555981, 'to know by': 908976, 'know by read': 476322, 'lagosians': 478957, 'both': 135829, 'robbersvirus': 724658, 'robbery': 724661, 'everywhere': 288164, 'citizen': 178811, 'turning': 935902, 'vigilatees': 957268, 'nomoney': 566284, 'nopeaceofmind': 566919, 'cc': 168387, 'is fighting': 447787, 'fighting while': 305155, 'while lagosians': 986996, 'lagosians are': 478958, 'are fighting': 86539, 'fighting both': 305041, 'both and': 135846, 'and robbersvirus': 70581, 'robbersvirus robbery': 724659, 'robbery everywhere': 724665, 'everywhere citizen': 288186, 'citizen turning': 178990, 'turning to': 935961, 'to vigilatees': 918178, 'vigilatees nofood': 957269, 'nofood nomoney': 566165, 'nomoney nopeaceofmind': 566289, 'nopeaceofmind cc': 566920, 'is fighting while': 447796, 'fighting while lagosians': 305156, 'while lagosians are': 986997, 'lagosians are fighting': 478959, 'are fighting both': 86544, 'fighting both and': 305042, 'both and robbersvirus': 135850, 'and robbersvirus robbery': 70582, 'robbersvirus robbery everywhere': 724660, 'robbery everywhere citizen': 724666, 'everywhere citizen turning': 288188, 'citizen turning to': 178991, 'turning to vigilatees': 935980, 'to vigilatees nofood': 918179, 'vigilatees nofood nomoney': 957270, 'nofood nomoney nopeaceofmind': 566166, 'nomoney nopeaceofmind cc': 566290, 'rise': 722760, 'warn': 966919, 'expert': 291756, 'double': 255968, 'whammy': 980929, 'erratic': 280212, 'rainfall': 695780, 'food price': 315916, 'price in': 674643, 'in india': 424018, 'india are': 434312, 'to rise': 913549, 'rise soon': 723006, 'soon warn': 785889, 'warn expert': 966933, 'expert farmer': 291835, 'farmer in': 299419, 'country face': 210630, 'face the': 294790, 'the double': 853608, 'double whammy': 256087, 'whammy of': 980939, 'of erratic': 583150, 'erratic rainfall': 280217, 'rainfall and': 695781, 'and lockdown': 66318, 'food price in': 315948, 'price in india': 674698, 'in india are': 424023, 'india are likely': 434313, 'likely to rise': 492172, 'to rise soon': 913577, 'rise soon warn': 723007, 'soon warn expert': 785890, 'warn expert farmer': 966935, 'expert farmer in': 291836, 'farmer in the': 299423, 'in the country': 429101, 'the country face': 852075, 'country face the': 210636, 'face the double': 294793, 'the double whammy': 853612, 'double whammy of': 256091, 'whammy of erratic': 980941, 'of erratic rainfall': 583151, 'erratic rainfall and': 280218, 'rainfall and lockdown': 695782, 'hammering': 374584, 'latin': 481640, 'economy': 267596, 'latam': 480820, 'is hammering': 448257, 'hammering latin': 374585, 'latin american': 481643, 'american economy': 51931, 'economy latam': 268033, 'latam 19': 480821, '19 coronacrisis': 6061, 'is hammering latin': 448258, 'hammering latin american': 374586, 'latin american economy': 481644, 'american economy latam': 51934, 'economy latam 19': 268034, 'latam 19 coronacrisis': 480822, 'plan': 658035, 'trip': 932038, 'mostly': 542933, 'talk': 833723, 'myself': 550811, 'doing': 252246, 'really': 701946, 'want': 965685, 'outside': 629356, 'bad': 107739, 'allergy': 45765, 'limited': 492593, 'tissue': 899111, 'hard': 377852, 'so it': 777454, 'it taken': 461435, 'taken me': 833027, 'me two': 523843, 'two day': 936860, 'day to': 228554, 'to plan': 911762, 'plan trip': 658334, 'trip the': 932173, 'store mostly': 808996, 'mostly to': 543025, 'to talk': 916277, 'talk myself': 833821, 'myself into': 550885, 'into doing': 442522, 'doing it': 252478, 'it really': 460623, 'really don': 702138, 'don want': 254034, 'want to': 965980, 'go outside': 354006, 'outside but': 629385, 'but having': 145893, 'having bad': 383984, 'bad allergy': 107753, 'allergy with': 45797, 'with limited': 999229, 'limited tissue': 492763, 'tissue is': 899163, 'getting hard': 349023, 'hard pandemic': 377990, 'so it taken': 777479, 'it taken me': 461437, 'taken me two': 833029, 'me two day': 523844, 'two day to': 936867, 'day to plan': 228575, 'to plan trip': 911770, 'plan trip the': 658336, 'trip the grocery': 932174, 'grocery store mostly': 365578, 'store mostly to': 808997, 'mostly to talk': 543028, 'to talk myself': 916285, 'talk myself into': 833822, 'myself into doing': 550886, 'into doing it': 442523, 'doing it really': 252490, 'it really don': 460635, 'really don want': 702146, 'don want to': 254048, 'want to go': 966042, 'to go outside': 906839, 'go outside but': 354009, 'outside but having': 629387, 'but having bad': 145894, 'having bad allergy': 383985, 'bad allergy with': 107754, 'allergy with limited': 45798, 'with limited tissue': 999235, 'limited tissue is': 492764, 'tissue is getting': 899164, 'is getting hard': 448025, 'getting hard pandemic': 349024, 'cbd': 168289, 'cannot': 161579, 'symptom': 830799, 'relieve': 709525, 'immune': 417302, 'system': 831071, 'act': 29575, 'natural': 552803, 'angelic': 76396, 'reduced': 706016, 'difficult': 242182, 'cbd cannot': 168292, 'cannot cure': 161737, 'cure but': 220712, 'but it': 146093, 'it can': 457005, 'can cure': 158030, 'cure coronavirus': 220723, 'coronavirus symptom': 206862, 'symptom relieve': 830906, 'relieve your': 709544, 'your anxiety': 1022792, 'anxiety boost': 78673, 'boost the': 135020, 'the immune': 857916, 'immune system': 417331, 'system act': 831074, 'act like': 29678, 'like natural': 490837, 'natural angelic': 552808, 'angelic price': 76397, 'have been': 379454, 'been reduced': 121794, 'reduced during': 706066, 'this difficult': 887224, 'difficult time': 242273, 'help everyone': 389659, 'cbd cannot cure': 168293, 'cannot cure but': 161738, 'cure but it': 220714, 'but it can': 146107, 'it can cure': 457012, 'can cure coronavirus': 158031, 'cure coronavirus symptom': 220726, 'coronavirus symptom relieve': 206868, 'symptom relieve your': 830907, 'relieve your anxiety': 709545, 'your anxiety boost': 1022794, 'anxiety boost the': 78675, 'boost the immune': 135022, 'the immune system': 857918, 'immune system act': 417332, 'system act like': 831075, 'act like natural': 29683, 'like natural angelic': 490838, 'natural angelic price': 552809, 'angelic price have': 76398, 'price have been': 674414, 'have been reduced': 379657, 'been reduced during': 121798, 'reduced during this': 706067, 'during this difficult': 263277, 'this difficult time': 887227, 'difficult time to': 242314, 'time to help': 897995, 'to help everyone': 907508, 'twitter': 936626, 'confirm': 194092, 'woolies': 1004364, 'would': 1011488, 'coronaaustralia': 204436, 'can anyone': 157508, 'anyone on': 80442, 'on twitter': 604914, 'twitter confirm': 936646, 'confirm if': 194095, 'if got': 414164, 'got up': 359000, 'up and': 944300, 'and went': 75427, 'went to': 979133, 'to woolies': 918673, 'woolies at': 1004367, 'at 8am': 97779, '8am there': 23154, 'there would': 879375, 'would be': 1011540, 'be any': 113643, 'any toilet': 79982, 'paper or': 640544, 'or ha': 615539, 'ha it': 371010, 'it all': 456332, 'all run': 44213, 'run out': 727750, 'out toiletpaper': 627711, 'toiletpaper coronaaustralia': 921878, 'can anyone on': 157512, 'anyone on twitter': 80446, 'on twitter confirm': 604917, 'twitter confirm if': 936647, 'confirm if got': 194096, 'if got up': 414166, 'got up and': 359001, 'up and went': 944388, 'and went to': 75430, 'went to woolies': 979204, 'to woolies at': 918674, 'woolies at 8am': 1004368, 'at 8am there': 97787, '8am there would': 23155, 'there would be': 879376, 'would be any': 1011552, 'be any toilet': 113655, 'any toilet paper': 79983, 'toilet paper or': 921379, 'paper or ha': 640551, 'or ha it': 615542, 'ha it all': 371011, 'it all run': 456370, 'all run out': 44214, 'run out toiletpaper': 727770, 'out toiletpaper coronaaustralia': 627714, 'caused': 167817, 'robotics': 724812, 'accelerate': 27824, 'according': 28511, 'lesley': 486425, 'rohrbaugh': 725049, 'director': 243599, 'research': 713644, 'association': 96939, 'pandemic ha': 635529, 'ha caused': 370074, 'caused robotics': 167946, 'robotics innovation': 724815, 'innovation to': 438906, 'to accelerate': 899926, 'accelerate according': 27825, 'according to': 28514, 'to lesley': 909186, 'lesley rohrbaugh': 486426, 'rohrbaugh the': 725050, 'the director': 853317, 'director of': 243645, 'of research': 588961, 'research for': 713719, 'consumer technology': 199234, 'technology association': 836261, '19 pandemic ha': 9342, 'pandemic ha caused': 635534, 'ha caused robotics': 370097, 'caused robotics innovation': 167947, 'robotics innovation to': 724816, 'innovation to accelerate': 438907, 'to accelerate according': 899927, 'accelerate according to': 27826, 'according to lesley': 28560, 'to lesley rohrbaugh': 909187, 'lesley rohrbaugh the': 486427, 'rohrbaugh the director': 725051, 'the director of': 853319, 'director of research': 243654, 'of research for': 588964, 'research for the': 713723, 'the consumer technology': 851606, 'consumer technology association': 199235, 'truly': 933256, 'heartbreaking': 388370, 'video': 956593, 'upset': 947794, 'everytime': 288150, 'such': 816303, 'hope': 403405, 'she': 755839, 'shown': 767570, 'lot': 503963, 'compassion': 191480, 'finally': 305928, 'found': 330136, 'provision': 687244, 'doitfordawn': 252901, 'truly heartbreaking': 933309, 'heartbreaking video': 388426, 'video it': 956792, 'it upset': 461978, 'upset me': 947809, 'me everytime': 522705, 'everytime see': 288157, 'see it': 745323, 'it but': 456944, 'but such': 147209, 'such good': 816522, 'good response': 357659, 'response from': 715691, 'from twitter': 338161, 'twitter hope': 936671, 'hope she': 403618, 'she ha': 756067, 'been shown': 121955, 'shown lot': 767605, 'lot of': 504131, 'of love': 586030, 'love and': 504594, 'and compassion': 60205, 'compassion in': 191490, 'the real': 865205, 'real world': 701462, 'and finally': 62858, 'finally found': 305995, 'found some': 330375, 'some provision': 783668, 'provision doitfordawn': 687256, 'truly heartbreaking video': 933310, 'heartbreaking video it': 388427, 'video it upset': 956796, 'it upset me': 461979, 'upset me everytime': 947811, 'me everytime see': 522707, 'everytime see it': 288158, 'see it but': 745325, 'it but such': 456955, 'but such good': 147210, 'such good response': 816525, 'good response from': 357660, 'response from twitter': 715699, 'from twitter hope': 338162, 'twitter hope she': 936672, 'hope she ha': 403619, 'she ha been': 756069, 'ha been shown': 369920, 'been shown lot': 121956, 'shown lot of': 767606, 'lot of love': 504221, 'of love and': 586031, 'love and compassion': 504597, 'and compassion in': 60208, 'compassion in the': 191491, 'in the real': 429500, 'the real world': 865249, 'real world and': 701463, 'world and finally': 1009277, 'and finally found': 62859, 'finally found some': 306001, 'found some provision': 330381, 'some provision doitfordawn': 783670, 'allah': 45591, 'bring': 139912, 'blessing': 132640, 'effortlessly': 269675, 'recover': 705157, 'slow': 774317, 'cleaner': 180734, 'armed': 92934, 'whoever': 990089, 'he': 384701, 'saved': 737722, 'humanity': 410697, 'may allah': 520900, 'allah bring': 45594, 'bring blessing': 139937, 'blessing to': 132652, 'to those': 917491, 'those who': 892611, 'who work': 990027, 'work effortlessly': 1005085, 'effortlessly to': 269678, 'help others': 390206, 'others recover': 621607, 'recover and': 705162, 'and slow': 71747, 'slow the': 774396, 'the spread': 867612, 'the medical': 860392, 'medical staff': 526381, 'staff cleaner': 792320, 'cleaner delivery': 180769, 'driver supermarket': 259761, 'supermarket worker': 823976, 'worker armed': 1006442, 'armed force': 92935, 'force and': 328325, 'and many': 66664, 'many more': 514294, 'more whoever': 540977, 'whoever save': 990110, 'it would': 462578, 'be if': 115347, 'if he': 414207, 'he saved': 385385, 'saved all': 737725, 'all humanity': 43167, 'may allah bring': 520901, 'allah bring blessing': 45595, 'bring blessing to': 139938, 'blessing to those': 132654, 'to those who': 917532, 'those who work': 892698, 'who work effortlessly': 990033, 'work effortlessly to': 1005086, 'effortlessly to help': 269679, 'to help others': 907578, 'help others recover': 390214, 'others recover and': 621608, 'recover and slow': 705163, 'and slow the': 71753, 'slow the spread': 774401, 'the spread of': 867635, 'of the medical': 591232, 'the medical staff': 860404, 'medical staff cleaner': 526388, 'staff cleaner delivery': 792321, 'cleaner delivery driver': 180770, 'delivery driver supermarket': 233940, 'driver supermarket worker': 259768, 'supermarket worker armed': 823991, 'worker armed force': 1006443, 'armed force and': 92936, 'force and many': 328327, 'and many more': 66676, 'many more whoever': 514325, 'more whoever save': 540978, 'whoever save life': 990111, 'life it would': 488827, 'it would be': 462583, 'would be if': 1011604, 'be if he': 115349, 'if he saved': 414219, 'he saved all': 385386, 'saved all humanity': 737727, 'plenty': 660904, 'alarmed': 40687, 'supplier': 824481, 'retailer': 718938, 'surging': 828399, 'insist': 439690, 'strong': 813958, 'panicbuying': 638890, 'is plenty': 450903, 'plenty of': 660937, 'food in': 314920, 'country american': 210424, 'american have': 52017, 'been alarmed': 120634, 'alarmed by': 40690, 'by empty': 152478, 'empty grocery': 274894, 'grocery shelf': 364953, 'shelf but': 756898, 'but while': 147845, 'while food': 986845, 'food supplier': 316914, 'supplier retailer': 824605, 'retailer say': 719303, 'say they': 739332, 'are struggling': 90580, 'struggling with': 814530, 'with surging': 1001093, 'surging demand': 828416, 'demand they': 236371, 'they insist': 882463, 'insist the': 439701, 'the supply': 868938, 'supply chain': 824898, 'chain remains': 171042, 'remains strong': 710063, 'strong panicbuying': 814082, 'there is plenty': 878606, 'is plenty of': 450905, 'plenty of food': 660949, 'of food in': 583717, 'food in the': 314975, 'the country american': 852044, 'country american have': 210425, 'american have been': 52018, 'have been alarmed': 379463, 'been alarmed by': 120635, 'alarmed by empty': 40691, 'by empty grocery': 152479, 'empty grocery shelf': 274896, 'grocery shelf but': 364955, 'shelf but while': 756910, 'but while food': 147846, 'while food supplier': 986850, 'food supplier retailer': 316921, 'supplier retailer say': 824606, 'retailer say they': 719305, 'say they are': 739333, 'they are struggling': 881421, 'are struggling with': 90595, 'struggling with surging': 814546, 'with surging demand': 1001094, 'surging demand they': 828421, 'demand they insist': 236374, 'they insist the': 882465, 'insist the supply': 439702, 'the supply chain': 868942, 'supply chain remains': 825021, 'chain remains strong': 171043, 'remains strong panicbuying': 710064, 'kaikohe': 470660, 'testing': 839413, 'positive': 665239, 'kaikohe local': 470663, 'local queue': 498322, 'queue for': 693922, '19 testing': 11092, 'testing after': 839424, 'after supermarket': 36260, 'worker positive': 1007608, 'positive case': 665274, 'kaikohe local queue': 470666, 'local queue for': 498323, 'queue for covid': 693926, 'covid 19 testing': 213922, '19 testing after': 11095, 'testing after supermarket': 839425, 'after supermarket worker': 36263, 'supermarket worker positive': 824072, 'worker positive case': 1007609, 'keine': 472695, 'wertgegenst': 980431, 'nde': 553402, 'fahrzeug': 296081, 'lassen': 480072, 'diesen': 241706, 'tipp': 898969, 'sollte': 781967, 'besten': 128023, 'immer': 417204, 'nicht': 562568, 'nur': 577169, 'zeiten': 1027347, 'von': 960414, 'befolgen': 122578, 'rselen': 726714, 'wurde': 1013603, 'scheibe': 741541, 'eines': 270234, 'pkw': 657269, 'eingeschlagen': 270237, 'mehrere': 527861, 'rollen': 725650, 'klopapier': 475931, 'gestohlen': 346425, 'keine wertgegenst': 472696, 'wertgegenst nde': 980432, 'nde im': 553403, 'im fahrzeug': 416529, 'fahrzeug lassen': 296082, 'lassen diesen': 480073, 'diesen tipp': 241707, 'tipp sollte': 898970, 'sollte man': 781968, 'man am': 511985, 'am besten': 49941, 'besten immer': 128024, 'immer nicht': 417205, 'nicht nur': 562571, 'nur in': 577170, 'in zeiten': 431151, 'zeiten von': 1027348, 'von corona': 960415, 'corona befolgen': 203826, 'befolgen in': 122579, 'in rselen': 427565, 'rselen wurde': 726715, 'wurde die': 1013604, 'die scheibe': 241448, 'scheibe eines': 741542, 'eines pkw': 270235, 'pkw eingeschlagen': 657270, 'eingeschlagen mehrere': 270238, 'mehrere rollen': 527862, 'rollen klopapier': 725651, 'klopapier gestohlen': 475932, 'keine wertgegenst nde': 472697, 'wertgegenst nde im': 980433, 'nde im fahrzeug': 553404, 'im fahrzeug lassen': 416530, 'fahrzeug lassen diesen': 296083, 'lassen diesen tipp': 480074, 'diesen tipp sollte': 241708, 'tipp sollte man': 898971, 'sollte man am': 781969, 'man am besten': 511986, 'am besten immer': 49942, 'besten immer nicht': 128025, 'immer nicht nur': 417206, 'nicht nur in': 562572, 'nur in zeiten': 577171, 'in zeiten von': 431152, 'zeiten von corona': 1027349, 'von corona befolgen': 960416, 'corona befolgen in': 203827, 'befolgen in rselen': 122580, 'in rselen wurde': 427566, 'rselen wurde die': 726716, 'wurde die scheibe': 1013605, 'die scheibe eines': 241449, 'scheibe eines pkw': 741543, 'eines pkw eingeschlagen': 270236, 'pkw eingeschlagen mehrere': 657271, 'eingeschlagen mehrere rollen': 270239, 'mehrere rollen klopapier': 527863, 'rollen klopapier gestohlen': 725652, 'happyeaster': 377753, 'chocolate': 177654, 'flower': 311271, 'instead': 440144, 'homeessentials': 402692, 'appreciated': 82808, 'clorox': 182451, 'bleach': 132466, 'evelynperezlarin': 283791, 'realtor': 702775, 'miami': 530159, 'fortuneinternationalrealty': 329932, 'canvasmiami': 162394, 'weareinthistogether': 974544, 'happyeaster no': 377756, 'no chocolate': 563803, 'chocolate or': 177696, 'or flower': 615331, 'flower instead': 311299, 'instead homeessentials': 440204, 'homeessentials appreciated': 402693, 'appreciated clorox': 82812, 'clorox bleach': 182454, 'bleach toiletpaper': 132524, 'toiletpaper stayhome': 922521, 'stayhome socialdistancing': 798113, 'socialdistancing evelynperezlarin': 780350, 'evelynperezlarin realtor': 283792, 'realtor miami': 702792, 'miami fortuneinternationalrealty': 530180, 'fortuneinternationalrealty canvasmiami': 329933, 'canvasmiami weareinthistogether': 162395, 'happyeaster no chocolate': 377757, 'no chocolate or': 563804, 'chocolate or flower': 177697, 'or flower instead': 615332, 'flower instead homeessentials': 311300, 'instead homeessentials appreciated': 440205, 'homeessentials appreciated clorox': 402694, 'appreciated clorox bleach': 82813, 'clorox bleach toiletpaper': 182455, 'bleach toiletpaper stayhome': 132525, 'toiletpaper stayhome socialdistancing': 922525, 'stayhome socialdistancing evelynperezlarin': 798114, 'socialdistancing evelynperezlarin realtor': 780351, 'evelynperezlarin realtor miami': 283793, 'realtor miami fortuneinternationalrealty': 702793, 'miami fortuneinternationalrealty canvasmiami': 530181, 'fortuneinternationalrealty canvasmiami weareinthistogether': 329934, 'recent': 703814, 'focus': 311829, 'mintel': 533668, 'discovered': 244676, 'canadian': 160628, '54': 20308, 'percent': 651105, 'wash': 967420, 'frequently': 332838, 'in recent': 427313, 'recent focus': 703900, 'focus study': 311925, 'study on': 814936, 'on canada': 599790, 'canada by': 160382, 'by mintel': 153229, 'mintel they': 533675, 'they discovered': 881945, 'discovered that': 244695, 'that of': 845440, 'of 00': 579291, '00 canadian': 102, 'canadian 54': 160629, '54 percent': 20330, 'percent say': 651179, 'they wash': 883725, 'wash their': 967547, 'their hand': 873467, 'hand more': 375089, 'more frequently': 539291, 'in recent focus': 427316, 'recent focus study': 703901, 'focus study on': 311926, 'study on canada': 814937, 'on canada by': 599792, 'canada by mintel': 160383, 'by mintel they': 153230, 'mintel they discovered': 533676, 'they discovered that': 881946, 'discovered that of': 244699, 'that of 00': 845441, 'of 00 canadian': 579293, '00 canadian 54': 103, 'canadian 54 percent': 160630, '54 percent say': 20331, 'percent say they': 651180, 'say they wash': 739353, 'they wash their': 883726, 'wash their hand': 967549, 'their hand more': 873480, 'hand more frequently': 375090, 'heb': 388668, 'managed': 512475, 'prepared': 670159, 'turn': 935631, 'started': 794667, 'talking': 833953, 'january': 464614, 'began': 123371, 'wargaming': 966861, 'simulation': 770353, 'feb': 301612, 'were curious': 979501, 'how heb': 407990, 'heb managed': 388681, 'managed to': 512489, 'so prepared': 778065, 'prepared for': 670189, 'coronavirus so': 206778, 'so and': 776504, 'and found': 63224, 'found out': 330318, 'out it': 626441, 'it turn': 461879, 'turn out': 935733, 'out they': 627541, 'they started': 883443, 'started talking': 794846, 'talking with': 834059, 'with chinese': 997636, 'chinese retailer': 177341, 'retailer in': 719197, 'in january': 424351, 'january to': 464688, 'to learn': 909125, 'from them': 337954, 'them and': 875371, 'and began': 58824, 'began wargaming': 123460, 'wargaming pandemic': 966862, 'pandemic simulation': 636472, 'simulation on': 770354, 'on feb': 600765, 'we were curious': 973787, 'were curious how': 979502, 'curious how heb': 220977, 'how heb managed': 407991, 'heb managed to': 388682, 'managed to be': 512492, 'to be so': 901549, 'be so prepared': 117263, 'so prepared for': 778066, 'prepared for the': 670203, 'for the coronavirus': 326363, 'the coronavirus so': 851916, 'coronavirus so and': 206779, 'so and found': 776506, 'and found out': 63230, 'found out it': 330324, 'out it turn': 626453, 'it turn out': 461880, 'turn out they': 935743, 'out they started': 627551, 'they started talking': 883445, 'started talking with': 794848, 'talking with chinese': 834060, 'with chinese retailer': 997637, 'chinese retailer in': 177343, 'retailer in january': 719201, 'in january to': 424364, 'january to learn': 464689, 'to learn from': 909129, 'learn from them': 483973, 'from them and': 337956, 'them and began': 875373, 'and began wargaming': 58827, 'began wargaming pandemic': 123461, 'wargaming pandemic simulation': 966863, 'pandemic simulation on': 636473, 'simulation on feb': 770355, 'closed': 182950, 'domestic': 253162, 'international': 441747, 'travel': 930228, 'banned': 110556, 'rocket': 724947, 'science': 742076, 'chinaliedpeopledie': 177107, 'but you': 147974, 'you haven': 1019144, 'haven closed': 383772, 'closed everything': 183103, 'everything down': 287754, 'down domestic': 256687, 'domestic and': 253166, 'and international': 65325, 'international travel': 441863, 'travel should': 930506, 'be banned': 113808, 'banned or': 110588, 'or we': 617736, 'we will': 973828, 'will become': 992787, 'become italy': 120042, 'italy it': 462864, 'it not': 459853, 'not rocket': 571398, 'rocket science': 724951, 'science week': 742149, 'week of': 976600, 'of only': 587273, 'shopping and': 761960, 'and we': 75275, 'we be': 970814, 'be out': 116281, 'of it': 585356, 'it chinaliedpeopledie': 457130, 'but you haven': 147987, 'you haven closed': 1019146, 'haven closed everything': 383773, 'closed everything down': 183104, 'everything down domestic': 287758, 'down domestic and': 256688, 'domestic and international': 253168, 'and international travel': 65326, 'international travel should': 441866, 'travel should be': 930507, 'should be banned': 765567, 'be banned or': 113811, 'banned or we': 110589, 'or we will': 617743, 'we will become': 973837, 'will become italy': 992797, 'become italy it': 120043, 'italy it not': 462865, 'it not rocket': 459915, 'not rocket science': 571399, 'rocket science week': 724952, 'science week of': 742150, 'week of only': 976632, 'of only grocery': 587275, 'grocery shopping and': 364996, 'shopping and we': 762041, 'and we be': 75282, 'we be out': 970820, 'be out of': 116287, 'out of it': 626766, 'of it chinaliedpeopledie': 585378, 'mahavir': 508496, 'temple': 837421, 'trust': 934231, 'crore': 218952, 'mahamaya': 508470, 'lac': 478565, 'tibetan': 895570, 'baudhist': 112892, 'donating': 254407, 'giving': 351223, 'christianmissionaries': 178139, 'muslim': 546410, 'nothing': 572917, 'hindu': 396859, 'hindutva': 396885, 'mahavir temple': 508497, 'temple trust': 837428, 'trust crore': 934256, 'crore mahamaya': 218962, 'mahamaya temple': 508471, 'trust lac': 934283, 'lac tibetan': 478578, 'tibetan baudhist': 895571, 'baudhist temple': 112893, 'temple donating': 837424, 'donating giving': 254460, 'giving food': 351286, 'food stock': 316773, 'stock door': 802053, 'door to': 255747, 'to door': 904663, 'door what': 255779, 'what christianmissionaries': 981214, 'christianmissionaries muslim': 178140, 'muslim group': 546423, 'group doing': 366672, 'doing nothing': 252556, 'nothing but': 572954, 'but only': 146681, 'only spreading': 611183, 'spreading panic': 791022, 'panic to': 638715, 'to convert': 903466, 'convert hindu': 202529, 'hindu hindutva': 396862, 'hindutva india': 396886, 'mahavir temple trust': 508498, 'temple trust crore': 837429, 'trust crore mahamaya': 934257, 'crore mahamaya temple': 218963, 'mahamaya temple trust': 508472, 'temple trust lac': 837430, 'trust lac tibetan': 934284, 'lac tibetan baudhist': 478579, 'tibetan baudhist temple': 895572, 'baudhist temple donating': 112894, 'temple donating giving': 837425, 'donating giving food': 254461, 'giving food stock': 351288, 'food stock door': 316785, 'stock door to': 802054, 'door to door': 255751, 'to door what': 904677, 'door what christianmissionaries': 255780, 'what christianmissionaries muslim': 981215, 'christianmissionaries muslim group': 178141, 'muslim group doing': 546424, 'group doing nothing': 366673, 'doing nothing but': 252559, 'nothing but only': 572960, 'but only spreading': 146694, 'only spreading panic': 611184, 'spreading panic to': 791028, 'panic to convert': 638718, 'to convert hindu': 903467, 'convert hindu hindutva': 202530, 'hindu hindutva india': 396863, 'disaster': 244181, 'disease': 245068, 'capitalism': 162712, 'produce': 680150, 'future': 342247, 'is cure': 446978, 'cure for': 220734, '19 virus': 11783, 'virus for': 958197, 'for all': 319106, 'all the': 44654, 'other disaster': 620111, 'disaster that': 244252, 'the disease': 853356, 'disease of': 245190, 'of capitalism': 581119, 'capitalism ha': 162757, 'ha brought': 370033, 'brought into': 141168, 'into this': 443208, 'this world': 891502, 'and which': 75552, 'which it': 986073, 'is still': 452258, 'still producing': 801071, 'producing but': 680745, 'but even': 145664, 'worse that': 1011023, 'it will': 462366, 'will produce': 994472, 'produce in': 680311, 'the future': 856064, 'there is cure': 878542, 'is cure for': 446979, 'cure for the': 220747, 'for the covid': 326366, 'covid 19 virus': 214033, '19 virus for': 11800, 'virus for all': 958199, 'for all the': 319175, 'all the other': 44852, 'the other disaster': 862522, 'other disaster that': 620112, 'disaster that the': 244254, 'that the disease': 846705, 'the disease of': 853369, 'disease of capitalism': 245192, 'of capitalism ha': 581121, 'capitalism ha brought': 162758, 'ha brought into': 370036, 'brought into this': 141169, 'into this world': 443228, 'this world and': 891503, 'world and which': 1009293, 'and which it': 75560, 'which it is': 986076, 'it is still': 459091, 'is still producing': 452306, 'still producing but': 801072, 'producing but even': 680746, 'but even worse': 145673, 'even worse that': 284832, 'worse that it': 1011025, 'that it will': 844758, 'it will produce': 462423, 'will produce in': 994475, 'produce in the': 680319, 'in the future': 429225, 'thru': 895160, 'job': 465587, 'hold': 399880, 'cbc': 168267, 'bank drive': 109790, 'drive thru': 259188, 'thru in': 895197, 'in demand': 422097, 'demand job': 235769, 'job on': 466047, 'on hold': 601337, 'hold amid': 399889, 'amid covid': 52431, 'pandemic cbc': 635116, 'cbc news': 168278, 'food bank drive': 313558, 'bank drive thru': 109791, 'drive thru in': 259200, 'thru in demand': 895198, 'in demand job': 422133, 'demand job on': 235770, 'job on hold': 466049, 'on hold amid': 601338, 'hold amid covid': 399890, 'amid covid 19': 52432, '19 pandemic cbc': 9289, 'pandemic cbc news': 635117, 'early': 264521, 'morning': 541125, 'limit': 492271, 'took': 925189, 'bc': 113218, 'hopefully': 403838, 'some1': 784244, 'finally got': 306026, 'got some': 358843, 'some toiletpaper': 784087, 'toiletpaper got': 922032, 'got there': 358926, 'there early': 878348, 'early in': 264619, 'the morning': 860907, 'morning already': 541141, 'already the': 47714, 'the shelf': 866818, 'shelf were': 757761, 'were almost': 979293, 'almost empty': 46602, 'empty limit': 274937, 'limit wa': 492551, 'wa per': 962921, 'per household': 650885, 'household but': 406746, 'but just': 146193, 'just took': 470129, 'took bc': 925214, 'bc that': 113288, 'that enough': 843712, 'enough hopefully': 277470, 'hopefully some1': 403879, 'some1 else': 784245, 'else will': 271991, 'be able': 113440, 'able get': 24434, 'get some': 348039, 'some now': 783369, 'finally got some': 306029, 'got some toiletpaper': 358858, 'some toiletpaper got': 784090, 'toiletpaper got there': 922033, 'got there early': 358927, 'there early in': 878349, 'early in the': 264624, 'in the morning': 429372, 'the morning already': 860908, 'morning already the': 541142, 'already the shelf': 47717, 'the shelf were': 866897, 'shelf were almost': 757763, 'were almost empty': 979295, 'almost empty limit': 46609, 'empty limit wa': 274939, 'limit wa per': 492552, 'wa per household': 962923, 'per household but': 650887, 'household but just': 406748, 'but just took': 146204, 'just took bc': 470130, 'took bc that': 925215, 'bc that enough': 113290, 'that enough hopefully': 843713, 'enough hopefully some1': 277471, 'hopefully some1 else': 403880, 'some1 else will': 784246, 'else will be': 271992, 'will be able': 992339, 'be able get': 113442, 'able get some': 24436, 'get some now': 348067, 'approve': 83102, 'wise': 996666, 'decision': 230994, 'counter': 210185, 'depleting': 237420, 'opec russia': 611956, 'russia approve': 728437, 'approve biggest': 83103, 'biggest ever': 130225, 'ever oil': 285439, 'oil cut': 596724, 'cut to': 223594, 'support price': 826765, 'price amid': 672307, 'amid pandemic': 52566, 'pandemic wise': 637018, 'wise decision': 996675, 'decision to': 231098, 'to counter': 903622, 'counter depleting': 210207, 'depleting oil': 237425, 'opec russia approve': 611960, 'russia approve biggest': 728438, 'approve biggest ever': 83104, 'biggest ever oil': 130228, 'ever oil cut': 285440, 'oil cut to': 596726, 'cut to support': 223610, 'to support price': 915962, 'support price amid': 826766, 'price amid pandemic': 672315, 'amid pandemic wise': 52580, 'pandemic wise decision': 637019, 'wise decision to': 996676, 'decision to counter': 231103, 'to counter depleting': 903624, 'counter depleting oil': 210208, 'depleting oil price': 237426, 'city': 179029, 'tehachapi': 836611, 'page': 633824, 'including': 431837, 'offering': 594993, 'takeout': 833136, 'the city': 850913, 'city of': 179277, 'of tehachapi': 590639, 'tehachapi ha': 836612, 'created great': 215830, 'great covid': 362597, 'covid resource': 214217, 'resource page': 714850, 'page including': 633860, 'including restaurant': 432131, 'restaurant offering': 716600, 'offering takeout': 595270, 'takeout delivery': 833147, 'delivery grocery': 234069, 'store hour': 808185, 'hour and': 405387, 'and senior': 71252, 'senior hour': 750320, 'hour business': 405467, 'business resource': 144316, 'resource health': 714806, 'health resource': 386793, 'resource and': 714698, 'the city of': 850949, 'city of tehachapi': 179294, 'of tehachapi ha': 590640, 'tehachapi ha created': 836613, 'ha created great': 370271, 'created great covid': 215831, 'great covid resource': 362598, 'covid resource page': 214218, 'resource page including': 714854, 'page including restaurant': 633862, 'including restaurant offering': 432133, 'restaurant offering takeout': 716601, 'offering takeout delivery': 595272, 'takeout delivery grocery': 833151, 'delivery grocery store': 234072, 'grocery store hour': 365473, 'store hour and': 808187, 'hour and senior': 405417, 'and senior hour': 71255, 'senior hour business': 750323, 'hour business resource': 405468, 'business resource health': 144319, 'resource health resource': 714807, 'health resource and': 386794, 'resource and more': 714704, 'medium': 526963, 'advisory': 33751, 'bureau': 142771, 'medium advisory': 526975, 'advisory consumer': 33756, 'consumer financial': 197487, 'financial protection': 306544, 'protection bureau': 685358, 'bureau resource': 142809, 'resource for': 714775, 'for consumer': 320236, 'consumer during': 197268, 'pandemic via': 636893, 'medium advisory consumer': 526976, 'advisory consumer financial': 33757, 'consumer financial protection': 197489, 'financial protection bureau': 306545, 'protection bureau resource': 685369, 'bureau resource for': 142810, 'resource for consumer': 714778, 'for consumer during': 320253, 'consumer during covid': 197269, '19 pandemic via': 9517, 'xauusd': 1013768, 'gc': 344807, 'glds': 351664, 'investor': 444092, 'refuge': 706824, 'safer': 730336, 'asset': 96409, 'fueled': 340319, 'sell': 748604, 'off': 593588, 'analyst': 57095, 'level': 487481, 'could': 208784, 'push': 690238, 'above': 27028, 'xauusd gc': 1013773, 'gc glds': 344810, 'glds gold': 351665, 'gold price': 355949, 'price hit': 674554, 'hit year': 398517, 'year high': 1014619, 'high investor': 395140, 'investor take': 444214, 'take refuge': 832538, 'refuge in': 706831, 'in safer': 427621, 'safer asset': 730341, 'asset amid': 96410, 'amid fueled': 52485, 'fueled sell': 340336, 'sell off': 748812, 'off some': 594174, 'some analyst': 782291, 'analyst say': 57173, 'say the': 739262, 'the level': 859310, 'level of': 487624, 'of fear': 583451, 'fear in': 301165, 'the market': 860082, 'market could': 516233, 'could push': 209543, 'push gold': 690275, 'to above': 899920, 'above 00': 27029, 'xauusd gc glds': 1013774, 'gc glds gold': 344811, 'glds gold price': 351666, 'gold price hit': 355959, 'price hit year': 674566, 'hit year high': 398518, 'year high investor': 1014622, 'high investor take': 395141, 'investor take refuge': 444215, 'take refuge in': 832539, 'refuge in safer': 706832, 'in safer asset': 427622, 'safer asset amid': 730342, 'asset amid fueled': 96411, 'amid fueled sell': 52486, 'fueled sell off': 340337, 'sell off some': 748818, 'off some analyst': 594175, 'some analyst say': 782292, 'analyst say the': 57179, 'say the level': 739286, 'the level of': 859312, 'level of fear': 487635, 'of fear in': 583456, 'fear in the': 301168, 'in the market': 429341, 'the market could': 860099, 'market could push': 516237, 'could push gold': 209544, 'push gold price': 690276, 'gold price to': 355976, 'price to above': 676962, 'to above 00': 899921, 'unnecessary': 942885, 'movement': 543846, 'enjoy': 277117, 'convenience': 202313, 'regularly': 707901, 'touching': 926654, 'nose': 567864, 'mouth': 543478, 'eye': 293993, 'coronavid19': 205370, 'kenya': 472873, 'please avoid': 659685, 'avoid unnecessary': 105372, 'unnecessary movement': 942914, 'movement and': 543851, 'and enjoy': 62145, 'enjoy the': 277184, 'the convenience': 851699, 'convenience of': 202330, 'of online': 587249, 'shopping wash': 764341, 'wash your': 967580, 'your hand': 1024156, 'hand regularly': 375195, 'regularly and': 707904, 'and avoid': 58558, 'avoid touching': 105353, 'touching your': 926752, 'your nose': 1025032, 'nose mouth': 567900, 'mouth and': 543481, 'and eye': 62570, 'eye coronavid19': 294032, 'coronavid19 kenya': 205384, 'kenya washyourhands': 472949, 'please avoid unnecessary': 659688, 'avoid unnecessary movement': 105375, 'unnecessary movement and': 942915, 'movement and enjoy': 543854, 'and enjoy the': 62151, 'enjoy the convenience': 277186, 'the convenience of': 851701, 'convenience of online': 202331, 'of online shopping': 587263, 'online shopping wash': 609336, 'shopping wash your': 764342, 'wash your hand': 967589, 'your hand regularly': 1024215, 'hand regularly and': 375196, 'regularly and avoid': 707905, 'and avoid touching': 58578, 'avoid touching your': 105359, 'touching your nose': 926755, 'your nose mouth': 1025036, 'nose mouth and': 567901, 'mouth and eye': 543484, 'and eye coronavid19': 62572, 'eye coronavid19 kenya': 294033, 'coronavid19 kenya washyourhands': 205385, 'index': 434165, 'fell': 303146, 'worsened': 1011078, 'stock index': 802290, 'index future': 434198, 'future global': 342338, 'global stock': 352217, 'stock and': 801796, 'and oil': 68021, 'price fell': 673841, 'fell at': 303169, 'the start': 867733, 'start of': 794405, 'the week': 871291, 'week trading': 977118, 'trading the': 928941, 'pandemic worsened': 637056, 'stock index future': 802291, 'index future global': 434199, 'future global stock': 342339, 'global stock and': 352218, 'stock and oil': 801822, 'and oil price': 68024, 'oil price fell': 597129, 'price fell at': 673844, 'fell at the': 303170, 'at the start': 101106, 'the start of': 867735, 'start of the': 794415, 'of the week': 591611, 'the week trading': 871319, 'week trading the': 977119, 'trading the pandemic': 928942, 'the pandemic worsened': 863162, 'trying': 934702, 'spent': 789079, '30minutes': 17486, 'website': 975175, 'site': 771856, 'seize': 747425, 'removed': 710855, 'cart': 165238, 'suppose': 827301, 'fail': 296084, 'quarantine': 691982, 'trying to': 934759, 'do the': 250232, 'right thing': 722305, 'thing stay': 884761, 'stay out': 797169, 'store but': 806780, 'but spent': 147134, 'spent 30minutes': 789088, '30minutes shopping': 17487, 'shopping at': 762078, 'the website': 871272, 'website only': 975376, 'only to': 611353, 'the site': 867228, 'site seize': 772007, 'seize up': 747432, 'and everything': 62416, 'everything removed': 287977, 'removed from': 710860, 'from my': 336496, 'my cart': 547623, 'cart off': 165342, 'off to': 594315, 'to try': 917810, 'try suppose': 934575, 'suppose delivery': 827306, 'delivery fail': 233988, 'fail quarantine': 296098, 'quarantine socialdistancing': 692549, 'trying to do': 934797, 'to do the': 904568, 'do the right': 250258, 'the right thing': 865830, 'right thing stay': 722315, 'thing stay out': 884762, 'stay out of': 797171, 'out of the': 626850, 'of the grocery': 591081, 'grocery store but': 365260, 'store but spent': 806810, 'but spent 30minutes': 147135, 'spent 30minutes shopping': 789089, '30minutes shopping at': 17488, 'shopping at the': 762114, 'at the website': 101147, 'the website only': 871281, 'website only to': 975377, 'only to see': 611368, 'see the site': 745885, 'the site seize': 867234, 'site seize up': 772008, 'seize up and': 747433, 'up and everything': 944321, 'and everything removed': 62425, 'everything removed from': 287978, 'removed from my': 710863, 'from my cart': 336500, 'my cart off': 547626, 'cart off to': 165343, 'off to try': 594332, 'to try suppose': 917821, 'try suppose delivery': 934576, 'suppose delivery fail': 827307, 'delivery fail quarantine': 233989, 'fail quarantine socialdistancing': 296099, 'opening': 612791, 'commissioner': 188930, 'choice': 177721, 'sketchy': 772916, 'clean': 180443, 'line': 492924, 'difference': 241804, 'between': 128662, 'accept': 27935, 'paypal': 645804, 'usd': 948896, 'sketch': 772872, 'flat': 310056, 'color': 186721, 'shaded': 754330, '40': 18508, 'mini': 532994, 'bg': 129311, '65': 21331, 'my work': 550636, 'work is': 1005364, 'is closed': 446569, 'closed due': 183086, '19 so': 10632, 'so am': 776484, 'am opening': 50290, 'opening commissioner': 612817, 'commissioner get': 188947, 'get choice': 346772, 'choice of': 177796, 'of sketchy': 589754, 'sketchy or': 772919, 'or clean': 614730, 'clean line': 180578, 'line no': 493281, 'no price': 565180, 'price difference': 673440, 'difference between': 241811, 'between the': 128919, 'the two': 870141, 'two accept': 936767, 'accept paypal': 27989, 'paypal and': 645805, 'and price': 69434, 'are in': 87350, 'in usd': 430499, 'usd sketch': 948935, 'sketch flat': 772883, 'flat color': 310069, 'color 15': 186722, '15 shaded': 3834, 'shaded 40': 754332, '40 shaded': 18656, 'shaded with': 754334, 'with mini': 999513, 'mini bg': 532995, 'bg 65': 129312, 'my work is': 550642, 'work is closed': 1005368, 'is closed due': 446575, 'closed due to': 183087, 'covid 19 so': 213825, '19 so am': 10633, 'so am opening': 776493, 'am opening commissioner': 50292, 'opening commissioner get': 612818, 'commissioner get choice': 188948, 'get choice of': 346773, 'choice of sketchy': 177797, 'of sketchy or': 589755, 'sketchy or clean': 772920, 'or clean line': 614732, 'clean line no': 180579, 'line no price': 493282, 'no price difference': 565181, 'price difference between': 673441, 'difference between the': 241817, 'between the two': 128937, 'the two accept': 870142, 'two accept paypal': 936768, 'accept paypal and': 27990, 'paypal and price': 645806, 'and price are': 69438, 'price are in': 672681, 'are in usd': 87459, 'in usd sketch': 430501, 'usd sketch flat': 948936, 'sketch flat color': 772884, 'flat color 15': 310070, 'color 15 shaded': 186723, '15 shaded 40': 3835, 'shaded 40 shaded': 754333, '40 shaded with': 18657, 'shaded with mini': 754335, 'with mini bg': 999514, 'mini bg 65': 532996, 'struggle': 814322, 'survive': 829114, 'add': 31379, 'burden': 142729, 'point': 662399, 'is complete': 446691, 'complete madness': 192120, 'madness so': 508209, 'so many': 777634, 'many business': 513839, 'business will': 144676, 'will struggle': 995012, 'struggle to': 814380, 'to survive': 916013, 'survive due': 829153, 'and they': 73887, 'they want': 883704, 'to continue': 903377, 'to add': 900047, 'add additional': 31388, 'additional burden': 31778, 'burden to': 142762, 'to business': 902126, 'business and': 143284, 'and cause': 59635, 'cause more': 167655, 'more supply': 540506, 'supply shortage': 825828, 'shortage at': 764842, 'at some': 100573, 'some point': 783580, 'point where': 662698, 'where supermarket': 985192, 'shelf are': 756784, 'are empty': 86133, 'this is complete': 888212, 'is complete madness': 446695, 'complete madness so': 192122, 'madness so many': 508210, 'so many business': 777639, 'many business will': 513852, 'business will struggle': 144689, 'will struggle to': 995014, 'struggle to survive': 814395, 'to survive due': 916025, 'survive due to': 829154, '19 and they': 5123, 'and they want': 73948, 'they want to': 883717, 'want to continue': 966018, 'to continue to': 903410, 'continue to add': 201162, 'to add additional': 900050, 'add additional burden': 31389, 'additional burden to': 31779, 'burden to business': 142763, 'to business and': 902129, 'business and cause': 143291, 'and cause more': 59639, 'cause more supply': 167665, 'more supply shortage': 540507, 'supply shortage at': 825829, 'shortage at some': 764845, 'at some point': 100578, 'some point where': 783593, 'point where supermarket': 662702, 'where supermarket shelf': 985195, 'supermarket shelf are': 822428, 'shelf are empty': 756797, 'domino': 253294, 'healthemergency': 387445, 'supplychain': 826156, 'shut': 767778, 'crack': 214690, 'liquidity': 494119, 'shock': 759409, 'unemployment': 941148, '2x': 16882, 'spx': 791370, 'bond': 134221, 'sbc': 739796, '3x': 18481, 'the domino': 853536, 'domino fall': 253305, 'fall world': 297113, 'world healthemergency': 1009635, 'healthemergency consumer': 387446, 'consumer and': 196196, 'and supplychain': 72826, 'supplychain resource': 826217, 'resource shut': 714879, 'shut down': 767795, 'down economy': 256713, 'economy stall': 268226, 'stall credit': 793358, 'credit crack': 216367, 'crack cc': 214694, 'cc liquidity': 168395, 'liquidity shock': 494152, 'shock unemployment': 759533, 'unemployment 2x': 941149, '2x cc': 16887, 'cc spx': 168409, 'spx and': 791371, 'and bond': 59056, 'bond crash': 134235, 'crash sbc': 215029, 'sbc 3x': 739799, '3x sbc': 18494, 'sbc 2x': 739797, 'cc domino': 168391, 'the domino fall': 853537, 'domino fall world': 253307, 'fall world healthemergency': 297114, 'world healthemergency consumer': 1009636, 'healthemergency consumer and': 387447, 'consumer and supplychain': 196248, 'and supplychain resource': 72829, 'supplychain resource shut': 826219, 'resource shut down': 714880, 'shut down economy': 767820, 'down economy stall': 256716, 'economy stall credit': 268227, 'stall credit crack': 793359, 'credit crack cc': 216368, 'crack cc liquidity': 214695, 'cc liquidity shock': 168396, 'liquidity shock unemployment': 494154, 'shock unemployment 2x': 759534, 'unemployment 2x cc': 941150, '2x cc spx': 16889, 'cc spx and': 168410, 'spx and bond': 791372, 'and bond crash': 59057, 'bond crash sbc': 134236, 'crash sbc 3x': 215030, 'sbc 3x sbc': 739800, '3x sbc 2x': 18495, 'sbc 2x cc': 739798, '2x cc domino': 16888, 'fight': 304593, 'against': 37297, 'noval': 573722, 'safeguard': 730185, 'protective': 685706, '50': 19568, 'dhgate': 240107, 'onlineshopping': 609880, 'fight against': 304602, 'against noval': 37557, 'noval safeguard': 573723, 'safeguard your': 730221, 'your family': 1023771, 'family with': 298383, 'with protective': 1000345, 'protective product': 685801, 'product up': 681792, 'up to': 946314, 'to 50': 899734, '50 off': 19777, 'off at': 593665, 'at dhgate': 98432, 'dhgate online': 240108, 'portal corona': 664944, 'corona stayathome': 204191, 'stayathome dhgate': 797471, 'dhgate onlineshopping': 240110, 'fight against noval': 304632, 'against noval safeguard': 37558, 'noval safeguard your': 573724, 'safeguard your family': 730222, 'your family with': 1023806, 'family with protective': 298389, 'with protective product': 1000349, 'protective product up': 685802, 'product up to': 681794, 'up to 50': 946340, 'to 50 off': 899742, '50 off at': 19779, 'off at dhgate': 593668, 'at dhgate online': 98433, 'dhgate online shopping': 240109, 'shopping portal corona': 763654, 'portal corona stayathome': 664945, 'corona stayathome dhgate': 204192, 'stayathome dhgate onlineshopping': 797472, 'jueves': 467702, 'de': 229034, 'abril': 27140, 'buenas': 141844, 'tardes': 834420, 'mi': 530125, '041': 928, 'seguidores': 747406, 'en': 275366, 'desde': 237986, 'panam': 634678, 'thursday': 895324, 'april2nd': 83728, 'afternoon': 36669, 'follower': 312627, 'panama': 634681, 'everybody': 286397, 'cascara': 165569, 'instagram': 439950, 'jueves de': 467703, 'de abril': 229037, 'abril de': 27141, 'de 2020': 229035, '2020 buenas': 14199, 'buenas tardes': 141845, 'tardes mi': 834421, 'mi 041': 530126, '041 seguidores': 931, 'seguidores en': 747407, 'en twitter': 275411, 'twitter desde': 936648, 'desde panam': 237991, 'panam thursday': 634679, 'thursday april2nd': 895355, 'april2nd 2020': 83729, '2020 good': 14341, 'good afternoon': 356697, 'afternoon for': 36687, 'for my': 323664, 'my 041': 547125, '041 follower': 929, 'follower on': 312646, 'on from': 601023, 'from panama': 336837, 'panama how': 634686, 'how see': 408631, 'see everybody': 745087, 'everybody when': 286503, 'to supermarket': 915766, 'supermarket cascara': 819543, 'cascara instagram': 165570, 'instagram 19': 439951, 'jueves de abril': 467704, 'de abril de': 229038, 'abril de 2020': 27142, 'de 2020 buenas': 229036, '2020 buenas tardes': 14200, 'buenas tardes mi': 141846, 'tardes mi 041': 834422, 'mi 041 seguidores': 530127, '041 seguidores en': 932, 'seguidores en twitter': 747408, 'en twitter desde': 275412, 'twitter desde panam': 936649, 'desde panam thursday': 237992, 'panam thursday april2nd': 634680, 'thursday april2nd 2020': 895356, 'april2nd 2020 good': 83730, '2020 good afternoon': 14342, 'good afternoon for': 356698, 'afternoon for my': 36689, 'for my 041': 323665, 'my 041 follower': 547126, '041 follower on': 930, 'follower on from': 312647, 'on from panama': 601029, 'from panama how': 336838, 'panama how see': 634687, 'how see everybody': 408632, 'see everybody when': 745088, 'everybody when go': 286504, 'go to supermarket': 354366, 'to supermarket cascara': 915780, 'supermarket cascara instagram': 819544, 'cascara instagram 19': 165571, 'qom': 691575, 'reportedly': 712566, 'diagnosed': 240222, 'said': 730941, 'blaming': 132325, 'iranian': 444723, 'official': 595739, 'responsibility': 715929, 'some 20': 782239, '20 staff': 13359, 'staff of': 792701, 'of supermarket': 590406, 'supermarket in': 820854, 'of qom': 588636, 'qom where': 691578, 'where the': 985212, 'the 19': 847907, 'outbreak started': 628652, 'started are': 794686, 'are reportedly': 89594, 'reportedly diagnosed': 712571, 'diagnosed with': 240235, 'virus said': 958711, 'said the': 731422, 'the manager': 859992, 'manager of': 512755, 'market blaming': 516111, 'blaming iranian': 132338, 'iranian official': 444730, 'official for': 595812, 'for their': 326795, 'their luck': 873899, 'luck of': 506468, 'of responsibility': 589006, 'responsibility during': 715940, 'some 20 staff': 782241, '20 staff of': 13360, 'staff of supermarket': 792704, 'of supermarket in': 590429, 'supermarket in the': 820990, 'in the city': 429070, 'city of qom': 179290, 'of qom where': 588637, 'qom where the': 691579, 'where the 19': 985213, 'the 19 outbreak': 847922, '19 outbreak started': 9191, 'outbreak started are': 628653, 'started are reportedly': 794687, 'are reportedly diagnosed': 89595, 'reportedly diagnosed with': 712572, 'diagnosed with the': 240242, 'with the virus': 1001537, 'the virus said': 870886, 'virus said the': 958712, 'said the manager': 731437, 'the manager of': 860000, 'manager of the': 512766, 'of the market': 591222, 'the market blaming': 860093, 'market blaming iranian': 516112, 'blaming iranian official': 132339, 'iranian official for': 444731, 'official for their': 595814, 'for their luck': 326847, 'their luck of': 873900, 'luck of responsibility': 506469, 'of responsibility during': 589008, 'responsibility during the': 715941, 'unfortunately': 941572, 'commission': 188782, 'digital': 242492, 'artwork': 94658, 'interested': 441439, 'amandahester': 50598, 'unt': 943612, 'edu': 268742, 'hello everyone': 389150, 'everyone due': 286832, '19 am': 4939, 'am unfortunately': 50521, 'unfortunately out': 941633, 'of job': 585524, 'job because': 465690, 'of this': 591931, 'this ve': 890954, 've decided': 953027, 'to open': 910983, 'open up': 612630, 'up commission': 944617, 'commission for': 188822, 'for digital': 320705, 'digital artwork': 242508, 'artwork if': 94663, 're interested': 698906, 'interested in': 441451, 'work please': 1005613, 'please contact': 659827, 'contact me': 200133, 'me at': 522462, 'at amandahester': 97941, 'amandahester unt': 50599, 'unt edu': 943613, 'edu if': 268745, 're not': 699071, 'not interested': 570159, 'interested appreciate': 441440, 'appreciate rt': 82747, 'rt price': 726803, 'hello everyone due': 389151, 'everyone due to': 286833, 'covid 19 am': 212619, '19 am unfortunately': 4945, 'am unfortunately out': 50522, 'unfortunately out of': 941634, 'out of job': 626769, 'of job because': 585529, 'job because of': 465691, 'because of this': 119417, 'of this ve': 592062, 'this ve decided': 890955, 've decided to': 953031, 'decided to open': 230925, 'to open up': 911013, 'open up commission': 612632, 'up commission for': 944618, 'commission for digital': 188824, 'for digital artwork': 320706, 'digital artwork if': 242509, 'artwork if you': 94664, 'you re interested': 1020656, 're interested in': 698910, 'interested in my': 441463, 'in my work': 425648, 'my work please': 550644, 'work please contact': 1005614, 'please contact me': 659838, 'contact me at': 200135, 'me at amandahester': 522467, 'at amandahester unt': 97942, 'amandahester unt edu': 50600, 'unt edu if': 943614, 'edu if you': 268746, 'you re not': 1020683, 're not interested': 699100, 'not interested appreciate': 570160, 'interested appreciate rt': 441441, 'appreciate rt price': 82748, 'continues': 201374, 'fightcoronavirus': 304976, 'fightwithcoronavirus': 305172, 'vapesafe': 952484, 'vapeon': 952472, 'vapehealthy': 952464, 'vapelyfe': 952469, 'vapefam': 952461, 'vaping': 952490, 'vapor': 952498, 'vapedaily': 952458, 'vapelove': 952467, 'everzon': 288294, 'what will': 982590, 'will you': 995378, 'you stock': 1021419, 'up if': 945133, 'if the': 414949, 'virus continues': 958077, 'continues to': 201457, 'to spread': 915049, 'spread mask': 790620, 'mask food': 518660, 'food toilet': 317315, 'paper juice': 640387, 'juice stayhome': 467761, 'stayhome fightcoronavirus': 798000, 'fightcoronavirus fightwithcoronavirus': 304977, 'fightwithcoronavirus vapesafe': 305173, 'vapesafe vape': 952485, 'vape vapeon': 952456, 'vapeon vapehealthy': 952473, 'vapehealthy vapelyfe': 952465, 'vapelyfe vapefam': 952470, 'vapefam vaping': 952462, 'vaping vapor': 952496, 'vapor vapedaily': 952501, 'vapedaily vapelove': 952459, 'vapelove everzon': 952468, 'what will you': 982613, 'will you stock': 995400, 'you stock up': 1021421, 'stock up if': 803088, 'up if the': 945136, 'if the virus': 415044, 'the virus continues': 870816, 'virus continues to': 958080, 'continues to spread': 201498, 'to spread mask': 915069, 'spread mask food': 790621, 'mask food toilet': 518662, 'food toilet paper': 317316, 'toilet paper juice': 921328, 'paper juice stayhome': 640388, 'juice stayhome fightcoronavirus': 467762, 'stayhome fightcoronavirus fightwithcoronavirus': 798001, 'fightcoronavirus fightwithcoronavirus vapesafe': 304978, 'fightwithcoronavirus vapesafe vape': 305174, 'vapesafe vape vapeon': 952486, 'vape vapeon vapehealthy': 952457, 'vapeon vapehealthy vapelyfe': 952474, 'vapehealthy vapelyfe vapefam': 952466, 'vapelyfe vapefam vaping': 952471, 'vapefam vaping vapor': 952463, 'vaping vapor vapedaily': 952497, 'vapor vapedaily vapelove': 952502, 'vapedaily vapelove everzon': 952460, 'chased': 173892, 'away': 105756, 'rental': 711209, 'house': 406151, 'denying': 237146, 'inthe': 442304, 'african': 35166, 'you even': 1018445, 'even know': 284275, 'know what': 476937, 'what you': 982657, 'are talking': 90741, 'talking about': 833954, 'about how': 25420, 'you quarantine': 1020520, 'quarantine if': 692274, 'are being': 84825, 'being chased': 124941, 'chased away': 173893, 'away from': 105855, 'from your': 338470, 'your rental': 1025566, 'rental house': 711231, 'house denying': 406265, 'denying you': 237163, 'you access': 1016788, 'shop supermarket': 760859, 'many other': 514424, 'other thing': 621099, 'thing inthe': 884454, 'inthe same': 442305, 'same time': 733344, 'time you': 898398, 'are saying': 89819, 'saying it': 739621, 'it african': 456294, 'african that': 35230, 'do you even': 250626, 'you even know': 1018450, 'even know what': 284282, 'know what you': 476991, 'what you are': 982662, 'you are talking': 1017252, 'are talking about': 90742, 'talking about how': 833973, 'about how will': 25484, 'how will you': 409248, 'will you quarantine': 995395, 'you quarantine if': 1020521, 'quarantine if you': 692278, 'you are being': 1017073, 'are being chased': 84836, 'being chased away': 124942, 'chased away from': 173894, 'away from your': 105926, 'from your rental': 338492, 'your rental house': 1025567, 'rental house denying': 711232, 'house denying you': 406266, 'denying you access': 237164, 'you access to': 1016789, 'access to shop': 28277, 'to shop supermarket': 914489, 'shop supermarket and': 760860, 'supermarket and many': 819014, 'and many other': 66678, 'many other thing': 514444, 'other thing inthe': 621108, 'thing inthe same': 884455, 'inthe same time': 442306, 'same time you': 733380, 'time you are': 898400, 'you are saying': 1017223, 'are saying it': 89822, 'saying it african': 739622, 'it african that': 456295, 'young': 1022556, 'feeling': 302957, 'affecting': 34474, 'mentalhealth': 528673, 'watch': 968351, 'look': 502217, '90': 23262, 'selfcare': 747931, 'told': 923513, 'anxious': 78825, 'many child': 513895, 'child young': 176283, 'young people': 1022636, 'people could': 647553, 'could be': 208834, 'be feeling': 114818, 'feeling worried': 303116, 'worried about': 1010474, 'about this': 26627, 'this could': 886916, 'be affecting': 113521, 'affecting their': 34577, 'their mentalhealth': 873947, 'mentalhealth watch': 528692, 'watch our': 968496, 'our video': 625267, 'video have': 956772, 'have look': 381373, 'look at': 502250, 'at over': 100048, 'over 90': 629938, '90 selfcare': 23337, 'selfcare strategy': 747936, 'strategy that': 812722, 'that young': 847758, 'people have': 648156, 'have told': 383360, 'told help': 923562, 'help them': 390696, 'them when': 876606, 'when they': 984240, 're feeling': 698678, 'feeling anxious': 302964, 'many child young': 513897, 'child young people': 176284, 'young people could': 1022640, 'people could be': 647554, 'could be feeling': 208869, 'be feeling worried': 114821, 'feeling worried about': 303117, 'worried about this': 1010524, 'about this could': 26633, 'this could be': 886919, 'could be affecting': 208839, 'be affecting their': 113522, 'affecting their mentalhealth': 34579, 'their mentalhealth watch': 873948, 'mentalhealth watch our': 528693, 'watch our video': 968499, 'our video have': 625269, 'video have look': 956773, 'have look at': 381375, 'look at over': 502282, 'at over 90': 100049, 'over 90 selfcare': 629940, '90 selfcare strategy': 23338, 'selfcare strategy that': 747937, 'strategy that young': 812725, 'that young people': 847760, 'young people have': 1022644, 'people have told': 648208, 'have told help': 383362, 'told help them': 923563, 'help them when': 390719, 'them when they': 876607, 'when they re': 984275, 'they re feeling': 883035, 're feeling anxious': 698679, 'region': 707383, 'swiftly': 830324, 'contain': 200458, 'minimise': 533075, 'mitigate': 534522, 'build': 141942, 'capability': 162461, 'the region': 865423, 'region must': 707438, 'must act': 546450, 'act swiftly': 29780, 'swiftly to': 830333, 'to contain': 903361, 'contain and': 200463, 'and minimise': 67046, 'minimise the': 533087, 'the disruption': 853401, 'disruption mitigate': 246505, 'mitigate risk': 534533, 'risk and': 723364, 'and build': 59238, 'build capability': 141955, 'capability for': 162464, 'the region must': 865433, 'region must act': 707439, 'must act swiftly': 546456, 'act swiftly to': 29781, 'swiftly to contain': 830334, 'to contain and': 903362, 'contain and minimise': 200464, 'and minimise the': 67047, 'minimise the disruption': 533088, 'the disruption mitigate': 853406, 'disruption mitigate risk': 246506, 'mitigate risk and': 534534, 'risk and build': 723365, 'and build capability': 59239, 'build capability for': 141956, 'capability for the': 162465, 'for the future': 326456, 'roughly': 726269, '600': 21054, 'leisure': 486133, 'spending': 788706, 'priority': 678497, 'roughly 600': 726283, '600 consumer': 21075, 'consumer tell': 199249, 'tell how': 836976, 'how ha': 407941, 'ha affected': 369459, 'affected their': 34447, 'their work': 875198, 'work leisure': 1005425, 'leisure activity': 486134, 'activity and': 30372, 'and spending': 72091, 'spending priority': 788958, 'roughly 600 consumer': 726284, '600 consumer tell': 21076, 'consumer tell how': 199250, 'tell how ha': 836980, 'how ha affected': 407942, 'ha affected their': 369468, 'affected their work': 34448, 'their work leisure': 875204, 'work leisure activity': 1005426, 'leisure activity and': 486135, 'activity and spending': 30377, 'and spending priority': 72095, 'noticed': 573419, 'music': 546289, 'blaring': 132394, 'several': 753787, 'window': 995656, 'selfisolating': 748407, 'taste': 834770, 'maybe': 521633, 'headphone': 386019, 'govt': 361058, 'niceneighbour': 562541, 'niceneighbor': 562540, 'on trip': 604855, 'trip to': 932184, 'supermarket noticed': 821658, 'noticed music': 573458, 'music blaring': 546293, 'blaring from': 132395, 'from several': 337221, 'several window': 753966, 'window just': 995684, 'just in': 469025, 'in case': 421252, 'case selfisolating': 166005, 'selfisolating neighbour': 748419, 'neighbour do': 557196, 'have the': 382955, 'same taste': 733320, 'taste in': 834777, 'in music': 425519, 'music maybe': 546316, 'maybe wear': 521875, 'wear headphone': 974360, 'headphone do': 386020, 'not need': 570648, 'to wait': 918253, 'wait for': 964105, 'the govt': 856650, 'govt to': 361304, 'to tell': 916332, 'it niceneighbour': 459809, 'niceneighbour niceneighbor': 562542, 'on trip to': 604856, 'trip to the': 932204, 'to the supermarket': 917109, 'the supermarket noticed': 868718, 'supermarket noticed music': 821659, 'noticed music blaring': 573459, 'music blaring from': 546294, 'blaring from several': 132397, 'from several window': 337222, 'several window just': 753967, 'window just in': 995685, 'just in case': 469029, 'in case selfisolating': 421272, 'case selfisolating neighbour': 166006, 'selfisolating neighbour do': 748420, 'neighbour do not': 557197, 'not have the': 569881, 'have the same': 383023, 'the same taste': 866305, 'same taste in': 733321, 'taste in music': 834778, 'in music maybe': 425520, 'music maybe wear': 546317, 'maybe wear headphone': 521877, 'wear headphone do': 974361, 'headphone do not': 386021, 'do not need': 249787, 'not need to': 570675, 'need to wait': 556112, 'to wait for': 918262, 'wait for the': 964123, 'for the govt': 326464, 'the govt to': 856677, 'govt to tell': 361319, 'to tell you': 916352, 'tell you to': 837156, 'you to do': 1021769, 'to do it': 904525, 'do it niceneighbour': 249493, 'it niceneighbour niceneighbor': 459810, 'listening': 494787, 'heartbroken': 388428, 'parent': 641558, 'leilani': 486112, 'jordan': 467271, 'given': 350933, 'hydroxychloroquine': 411993, 'avail': 104102, 'disabled': 243868, 'front': 338513, 'giant': 349728, 'walmart': 965263, 'wegmans': 977634, 'failed': 296121, 'provide': 686193, 'listening to': 494804, 'to heartbroken': 907426, 'heartbroken parent': 388431, 'parent of': 641687, 'of leilani': 585772, 'leilani jordan': 486115, 'jordan given': 467282, 'given hydroxychloroquine': 351022, 'hydroxychloroquine several': 412012, 'several time': 753944, 'to no': 910614, 'no avail': 563642, 'avail leilani': 104110, 'leilani wa': 486126, 'wa disabled': 961977, 'disabled front': 243911, 'front line': 338555, 'line worker': 493594, 'worker at': 1006455, 'at giant': 98754, 'giant food': 349773, 'food which': 317583, 'which like': 986110, 'like walmart': 491756, 'walmart wegmans': 965466, 'wegmans others': 977639, 'others failed': 621391, 'failed to': 296170, 'to provide': 912372, 'provide worker': 686548, 'worker mask': 1007356, 'glove or': 352836, 'or sanitizer': 616946, 'listening to heartbroken': 494806, 'to heartbroken parent': 907427, 'heartbroken parent of': 388432, 'parent of leilani': 641689, 'of leilani jordan': 585773, 'leilani jordan given': 486118, 'jordan given hydroxychloroquine': 467283, 'given hydroxychloroquine several': 351024, 'hydroxychloroquine several time': 412013, 'several time to': 753946, 'time to no': 898020, 'to no avail': 910615, 'no avail leilani': 563643, 'avail leilani wa': 104111, 'leilani wa disabled': 486127, 'wa disabled front': 961978, 'disabled front line': 243912, 'front line worker': 338624, 'line worker at': 493598, 'worker at giant': 1006462, 'at giant food': 98755, 'giant food which': 349777, 'food which like': 317587, 'which like walmart': 986111, 'like walmart wegmans': 491759, 'walmart wegmans others': 965467, 'wegmans others failed': 977640, 'others failed to': 621392, 'failed to provide': 296185, 'to provide worker': 912452, 'provide worker mask': 686549, 'worker mask glove': 1007357, 'mask glove or': 518741, 'glove or sanitizer': 352845, 'enforce': 276655, 'strict': 813609, 'sale': 732008, 'identify': 413353, 'excess': 289325, 'stockpile': 803713, 'confiscated': 194250, 'compensation': 191544, 'largely': 479834, 'relies': 709514, 'proactive': 679143, 'boris': 135436, 'johnson': 466577, 'stophoarding': 805343, 'store should': 810155, 'should enforce': 765959, 'enforce strict': 276685, 'strict limit': 813630, 'limit on': 492406, 'on sale': 603260, 'sale they': 732574, 'they should': 883350, 'should also': 765498, 'also help': 48345, 'help identify': 389880, 'identify hoarder': 413360, 'hoarder and': 398977, 'and those': 74017, 'those hoarder': 892062, 'hoarder should': 399104, 'should have': 766059, 'have excess': 380511, 'excess stockpile': 289369, 'stockpile confiscated': 803729, 'confiscated without': 194256, 'without compensation': 1002552, 'compensation but': 191551, 'but that': 147279, 'that largely': 844839, 'largely relies': 479862, 'relies on': 709517, 'on proactive': 602930, 'proactive govt': 679160, 'govt not': 361219, 'not boris': 568593, 'boris johnson': 135464, 'johnson stophoarding': 466626, 'store should enforce': 810161, 'should enforce strict': 765961, 'enforce strict limit': 276686, 'strict limit on': 813631, 'limit on sale': 492427, 'on sale they': 603275, 'sale they should': 732575, 'they should also': 883353, 'should also help': 765506, 'also help identify': 48346, 'help identify hoarder': 389881, 'identify hoarder and': 413361, 'hoarder and those': 398981, 'and those hoarder': 74026, 'those hoarder should': 892064, 'hoarder should have': 399105, 'should have excess': 766075, 'have excess stockpile': 380512, 'excess stockpile confiscated': 289370, 'stockpile confiscated without': 803730, 'confiscated without compensation': 194257, 'without compensation but': 1002553, 'compensation but that': 191552, 'but that largely': 147292, 'that largely relies': 844841, 'largely relies on': 479863, 'relies on proactive': 709520, 'on proactive govt': 602932, 'proactive govt not': 679161, 'govt not boris': 361220, 'not boris johnson': 568594, 'boris johnson stophoarding': 135475, 'closure': 183819, 'mount': 543394, 'age': 37783, 'cre': 215501, '19 store': 10881, 'store update': 811016, 'update temporary': 947236, 'temporary store': 837701, 'store closure': 807081, 'closure mount': 183942, 'mount chain': 543399, 'chain store': 171129, 'store age': 806094, 'age retail': 37893, 'retail cre': 718015, 'covid 19 store': 213872, '19 store update': 10886, 'store update temporary': 811019, 'update temporary store': 947238, 'temporary store closure': 837703, 'store closure mount': 807099, 'closure mount chain': 183944, 'mount chain store': 543400, 'chain store age': 171130, 'store age retail': 806099, 'age retail cre': 37894, 'continuing': 201519, 'closely': 183459, 'monitor': 537273, 'seeing': 746193, 'gropods': 366429, 'safety': 730442, 'desire': 238414, 'reliant': 709249, 'march': 515048, 'monthly': 538157, 'newsletter': 561018, 'are continuing': 85545, 'continuing to': 201554, 'to closely': 902910, 'closely monitor': 183464, 'monitor covid': 537281, 'are seeing': 89881, 'seeing an': 746215, 'an increase': 56236, 'increase in': 432814, 'for gropods': 322066, 'gropods from': 366430, 'from consumer': 334949, 'consumer over': 198310, 'over food': 630217, 'food safety': 316263, 'safety concern': 730502, 'concern and': 192914, 'and desire': 61251, 'desire to': 238424, 'be self': 117048, 'self reliant': 747887, 'reliant check': 709250, 'out our': 626964, 'our march': 623860, 'march monthly': 515413, 'monthly newsletter': 538184, 'we are continuing': 970513, 'are continuing to': 85549, 'continuing to closely': 201557, 'to closely monitor': 902911, 'closely monitor covid': 183465, 'monitor covid 19': 537282, '19 and are': 4987, 'and are seeing': 58356, 'are seeing an': 89887, 'seeing an increase': 746218, 'an increase in': 56238, 'increase in demand': 432829, 'in demand for': 422125, 'demand for gropods': 235435, 'for gropods from': 322067, 'gropods from consumer': 366431, 'from consumer over': 334966, 'consumer over food': 198312, 'over food safety': 630224, 'food safety concern': 316266, 'safety concern and': 730503, 'concern and desire': 192916, 'and desire to': 61253, 'desire to be': 238426, 'to be self': 901525, 'be self reliant': 117052, 'self reliant check': 747888, 'reliant check out': 709251, 'check out our': 174566, 'out our march': 626981, 'our march monthly': 623861, 'march monthly newsletter': 515414, 'scary': 741124, 'next': 561254, 'blatant': 132429, 'medicare': 526566, 'shitty': 759365, 'your product': 1025435, 'product really': 681567, 'really everything': 702168, 'everything is': 287861, 'is fucking': 447957, 'fucking scary': 339989, 'scary but': 741139, 'real danger': 701101, 'danger is': 225658, 'the people': 863448, 'people you': 650566, 'you stand': 1021345, 'stand next': 793553, 'next to': 561613, 'to in': 908216, 'the blatant': 849755, 'blatant lack': 132434, 'of medicare': 586405, 'medicare for': 526575, 'all in': 43192, 'this shitty': 890097, 'shitty country': 759370, 'country 19': 210400, 'wash your product': 967591, 'your product really': 1025445, 'product really everything': 681568, 'really everything is': 702169, 'everything is fucking': 287872, 'is fucking scary': 447963, 'fucking scary but': 339990, 'scary but the': 741140, 'but the real': 147393, 'the real danger': 865214, 'real danger is': 701103, 'danger is the': 225659, 'is the people': 452889, 'the people you': 863524, 'people you stand': 650579, 'you stand next': 1021348, 'stand next to': 793554, 'next to in': 561623, 'to in the': 908234, 'in the grocery': 429245, 'store and the': 806371, 'and the blatant': 73262, 'the blatant lack': 849756, 'blatant lack of': 132435, 'lack of medicare': 478636, 'of medicare for': 586406, 'medicare for all': 526576, 'for all in': 319138, 'all in this': 43208, 'in this shitty': 430011, 'this shitty country': 890098, 'shitty country 19': 759371, 'earth': 264964, 'planet': 658392, 'earth toiletpaper': 265007, 'toiletpaper lol': 922200, 'lol planet': 500941, 'planet earth': 658399, 'earth toiletpaper lol': 265008, 'toiletpaper lol planet': 922201, 'lol planet earth': 500942, 'manger': 513113, 'kept': 473013, 'sister': 771713, 'the owner': 862803, 'owner and': 632370, 'and manager': 66627, 'of my': 586726, 'my local': 549093, 'supermarket have': 820676, 'have tested': 382942, 'tested positive': 839343, 'positive for': 665314, 'the manger': 860014, 'manger kept': 513114, 'kept working': 473098, 'working for': 1008631, 'the past': 863341, 'past week': 643639, 'week or': 976697, 'or so': 617122, 'so even': 776964, 'even though': 284699, 'though she': 892882, 'she had': 756088, 'had symptom': 373590, 'symptom of': 830878, 'virus my': 958514, 'my sister': 550102, 'sister work': 771801, 'work there': 1005824, 'there too': 879196, 'the owner and': 862804, 'owner and manager': 632377, 'and manager of': 66628, 'manager of my': 512763, 'of my local': 586787, 'my local supermarket': 549144, 'local supermarket have': 498533, 'supermarket have tested': 820709, 'have tested positive': 382943, 'tested positive for': 839349, 'positive for covid': 665319, '19 the manger': 11217, 'the manger kept': 860015, 'manger kept working': 513115, 'kept working for': 473101, 'working for the': 1008648, 'for the past': 326614, 'the past week': 863369, 'past week or': 643649, 'week or so': 976702, 'or so even': 617126, 'so even though': 776965, 'even though she': 284715, 'though she had': 892883, 'she had symptom': 756103, 'had symptom of': 373591, 'symptom of the': 830888, 'of the virus': 591592, 'the virus my': 870862, 'virus my sister': 958516, 'my sister work': 550120, 'sister work there': 771806, 'work there too': 1005835, '34': 17794, 'although': 49300, 'number': 576798, 'slightly': 773936, 'indicative': 435036, 'unusually': 944001, 'transaction': 929433, 'size': 772751, 'stockpiling': 803897, 'store spending': 810274, 'spending in': 788853, 'the ha': 856978, 'ha increased': 370939, 'increased by': 433222, 'by about': 151725, 'about 34': 24700, '34 although': 17802, 'although the': 49357, 'the number': 861950, 'number of': 576918, 'grocery visit': 366104, 'visit is': 959282, 'is up': 453565, 'up only': 945660, 'only slightly': 611152, 'slightly indicative': 773963, 'indicative of': 435037, 'of unusually': 592674, 'unusually high': 944002, 'high transaction': 395487, 'transaction size': 929467, 'size stockpiling': 772801, 'stockpiling activity': 803898, 'grocery store spending': 365788, 'store spending in': 810276, 'spending in the': 788865, 'in the ha': 429250, 'the ha increased': 856996, 'ha increased by': 370945, 'increased by about': 433229, 'by about 34': 151730, 'about 34 although': 24701, '34 although the': 17803, 'although the number': 49364, 'the number of': 861957, 'number of grocery': 576945, 'of grocery visit': 584362, 'grocery visit is': 366105, 'visit is up': 959284, 'is up only': 453579, 'up only slightly': 945665, 'only slightly indicative': 611153, 'slightly indicative of': 773964, 'indicative of unusually': 435040, 'of unusually high': 592675, 'unusually high transaction': 944004, 'high transaction size': 395488, 'transaction size stockpiling': 929468, 'size stockpiling activity': 772802, 'ready': 700836, 'chicken': 175728, 'all ready': 44122, 'ready to': 700936, 'store for': 807780, 'for some': 325726, 'some tp': 784100, 'tp and': 927738, 'and chicken': 59815, 'all ready to': 44124, 'ready to go': 700959, 'grocery store for': 365409, 'store for some': 807838, 'for some tp': 325774, 'some tp and': 784101, 'tp and chicken': 927740, 'caregiving': 164519, 'mom': 535671, 'staying': 798562, 'keeping': 472357, 'wide': 991700, 'waiting': 964283, 'hoping': 403916, 'u2release': 937720, 'u2community': 937717, 'u2foru': 937719, 'another day': 77563, 'day of': 228046, 'of caregiving': 581151, 'caregiving for': 164523, 'my mom': 549251, 'mom sanitizer': 535798, 'sanitizer and': 734375, 'glove and': 352551, 'and hope': 64712, 'hope of': 403562, 'of not': 587079, 'not getting': 569621, 'getting the': 349338, 'the just': 858716, 'just staying': 469892, 'staying safe': 798687, 'safe and': 729432, 'and keeping': 65792, 'keeping very': 472615, 'very wide': 955668, 'wide socialdistance': 991759, 'socialdistance waiting': 780176, 'waiting and': 964288, 'and hoping': 64731, 'hoping for': 403921, 'for that': 326246, 'that next': 845336, 'next u2release': 561650, 'u2release u2community': 937721, 'u2community u2foru': 937718, 'another day of': 77569, 'day of caregiving': 228057, 'of caregiving for': 581152, 'caregiving for my': 164524, 'for my mom': 323723, 'my mom sanitizer': 549279, 'mom sanitizer and': 535799, 'sanitizer and glove': 734406, 'and glove and': 63710, 'glove and hope': 352565, 'and hope of': 64717, 'hope of not': 403572, 'of not getting': 587082, 'not getting the': 569631, 'getting the just': 349350, 'the just staying': 858720, 'just staying safe': 469895, 'staying safe and': 798688, 'safe and keeping': 729457, 'and keeping very': 65801, 'keeping very wide': 472616, 'very wide socialdistance': 955669, 'wide socialdistance waiting': 991760, 'socialdistance waiting and': 780177, 'waiting and hoping': 964290, 'and hoping for': 64732, 'hoping for that': 403927, 'for that next': 326263, 'that next u2release': 845339, 'next u2release u2community': 561651, 'u2release u2community u2foru': 937722, 'whose': 990614, 'garage': 343476, 'full': 340464, 'anticipation': 78486, 'use': 949000, 'includes': 431711, 'wipe': 996158, 'sheet': 756591, 'please please': 660294, 'please share': 660477, 'share this': 755278, 'this all': 886261, 'those whose': 892701, 'whose garage': 990635, 'garage is': 343490, 'is full': 447971, 'full of': 340698, 'of in': 585016, 'in anticipation': 420414, 'anticipation of': 78489, 'the use': 870566, 'use this': 949718, 'this calculator': 886665, 'calculator includes': 155338, 'includes wipe': 431830, 'wipe trip': 996406, 'trip sheet': 932151, 'sheet wipe': 756633, 'wipe how': 996292, 'many day': 513981, 'day do': 227527, 'please please please': 660308, 'please please share': 660312, 'please share this': 660495, 'share this all': 755279, 'this all those': 886274, 'all those whose': 45194, 'those whose garage': 892702, 'whose garage is': 990636, 'garage is full': 343491, 'is full of': 447976, 'full of in': 340731, 'of in anticipation': 585020, 'in anticipation of': 420415, 'anticipation of the': 78497, 'of the use': 591578, 'the use this': 870569, 'use this calculator': 949721, 'this calculator includes': 886666, 'calculator includes wipe': 155339, 'includes wipe trip': 431831, 'wipe trip sheet': 996407, 'trip sheet wipe': 932153, 'sheet wipe how': 756634, 'wipe how many': 996293, 'how many day': 408255, 'many day do': 513984, 'day do you': 227529, 'do you have': 250637, 'killed': 474560, 'eat': 265833, 'little': 495218, 'cant': 162260, 'just found': 468767, 'found the': 330404, 'the cure': 852585, 'virus is': 958358, 'is killed': 449197, 'killed by': 474565, 'by soap': 154056, 'soap sanitizer': 779103, 'sanitizer right': 735659, 'right so': 722273, 'so if': 777349, 'if we': 415261, 'we eat': 971430, 'eat little': 265969, 'little soap': 495573, 'soap and': 778905, 'and sanitizer': 70855, 'sanitizer after': 734322, 'after long': 35886, 'long day': 501387, 'day cant': 227428, 'cant that': 162342, 'that kill': 844819, 'kill the': 474508, 'just found the': 468774, 'found the cure': 330406, 'the cure for': 852588, 'for the virus': 326765, 'the virus is': 870851, 'virus is killed': 958385, 'is killed by': 449198, 'killed by soap': 474574, 'by soap sanitizer': 154059, 'soap sanitizer right': 779112, 'sanitizer right so': 735660, 'right so if': 722275, 'so if we': 777357, 'if we eat': 415279, 'we eat little': 971433, 'eat little soap': 265970, 'little soap and': 495574, 'soap and sanitizer': 778925, 'and sanitizer after': 70857, 'sanitizer after long': 734326, 'after long day': 35887, 'long day cant': 501389, 'day cant that': 227429, 'cant that kill': 162343, 'that kill the': 844825, 'kill the virus': 474525, 'freak': 331505, 'extra': 293419, 'mine': 532865, 'walking': 965006, 'mile': 531365, 'carrying': 165166, 'old': 598115, 'git': 350331, 'knackered': 475989, 'torybritain': 926077, 'any exercise': 79200, 'exercise freak': 290057, 'freak need': 331510, 'need an': 554400, 'an extra': 55998, 'extra period': 293604, 'period you': 651937, 'can use': 160084, 'use mine': 949371, 'mine walking': 532937, 'walking mile': 965069, 'mile and': 531368, 'and back': 58613, 'back to': 107345, 'and carrying': 59585, 'carrying the': 165215, 'the bag': 849172, 'bag back': 108236, 'back is': 107118, 'is more': 449694, 'than enough': 840551, 'enough for': 277426, 'an old': 56584, 'old git': 598269, 'git like': 350332, 'like me': 490736, 'me knackered': 523036, 'knackered if': 475990, 'if they': 415088, 'they can': 881603, 'can kill': 158820, 'kill me': 474436, 'me one': 523267, 'one way': 607363, 'way they': 969950, 'they ll': 882583, 'll kill': 496869, 'me another': 522439, 'another torybritain': 77917, 'torybritain 19': 926078, 'any exercise freak': 79201, 'exercise freak need': 290058, 'freak need an': 331511, 'need an extra': 554406, 'an extra period': 56016, 'extra period you': 293605, 'period you can': 651938, 'you can use': 1017821, 'can use mine': 160099, 'use mine walking': 949372, 'mine walking mile': 532938, 'walking mile and': 965070, 'mile and back': 531369, 'and back to': 58621, 'back to the': 107399, 'the supermarket and': 868460, 'supermarket and carrying': 818955, 'and carrying the': 59589, 'carrying the bag': 165216, 'the bag back': 849175, 'bag back is': 108237, 'back is more': 107121, 'is more than': 449728, 'more than enough': 540614, 'than enough for': 840553, 'enough for an': 277430, 'for an old': 319304, 'an old git': 56588, 'old git like': 598270, 'git like me': 350333, 'like me knackered': 490747, 'me knackered if': 523037, 'knackered if they': 475991, 'if they can': 415097, 'they can kill': 881647, 'can kill me': 158823, 'kill me one': 474441, 'me one way': 523270, 'one way they': 607382, 'way they ll': 969959, 'they ll kill': 882602, 'll kill me': 496870, 'kill me another': 474437, 'me another torybritain': 522441, 'another torybritain 19': 77918, 'drove': 260779, 'absolutely': 27310, 'disgusted': 245356, 'golf': 356109, 'link': 493773, 'rd': 698128, 'lidl': 488273, 'agreed drove': 38706, 'drove passed': 260806, 'passed going': 643267, 'going coming': 355083, 'coming from': 188053, 'and wa': 75071, 'wa absolutely': 961418, 'absolutely disgusted': 27335, 'disgusted were': 245379, 'were at': 979350, 'at golf': 98777, 'golf link': 356137, 'link rd': 493891, 'rd when': 698147, 'when went': 984484, 'went into': 979043, 'into lidl': 442696, 'lidl which': 488316, 'which is': 985973, 'is great': 448185, 'agreed drove passed': 38707, 'drove passed going': 260807, 'passed going coming': 643268, 'going coming from': 355085, 'coming from the': 188063, 'from the supermarket': 337893, 'supermarket and wa': 819098, 'and wa absolutely': 75074, 'wa absolutely disgusted': 961420, 'absolutely disgusted were': 27339, 'disgusted were at': 245380, 'were at golf': 979353, 'at golf link': 98779, 'golf link rd': 356138, 'link rd when': 493892, 'rd when went': 698148, 'when went into': 984487, 'went into lidl': 979047, 'into lidl which': 442697, 'lidl which is': 488317, 'which is great': 986012, 'wednesday': 975594, 'charted': 173858, '80': 22535, 'her': 391806, 'bubble': 141579, 'ample': 54875, 'merlot': 529187, 'camembert': 157099, 'delight': 233035, 'it took': 461799, 'took while': 925379, 'while to': 987465, 'to get': 906398, 'get them': 348350, 'them all': 875334, 'all but': 42243, 'but here': 145919, 'are all': 84285, 'of wednesday': 592987, 'wednesday number': 975671, 'number charted': 576846, 'charted time': 173859, 'supermarket now': 821660, 'now so': 575845, 'so can': 776699, 'can keep': 158802, 'keep an': 471312, 'an 80': 55022, '80 year': 22647, 'year old': 1014806, 'old safe': 598454, 'safe in': 729765, 'in her': 423646, 'her bubble': 391898, 'bubble with': 141623, 'with ample': 997196, 'ample merlot': 54886, 'merlot amp': 529188, 'amp camembert': 53489, 'camembert her': 157100, 'her shopping': 392369, 'shopping list': 763178, 'list are': 494278, 'are delight': 85756, 'it took while': 461808, 'took while to': 925380, 'while to get': 987467, 'to get them': 906614, 'get them all': 348352, 'them all but': 875338, 'all but here': 42249, 'but here are': 145921, 'here are all': 392732, 'are all of': 84329, 'all of wednesday': 43724, 'of wednesday number': 592990, 'wednesday number charted': 975672, 'number charted time': 576847, 'charted time to': 173860, 'time to go': 897993, 'the supermarket now': 868719, 'supermarket now so': 821674, 'now so can': 575846, 'so can keep': 776712, 'can keep an': 158804, 'keep an 80': 471313, 'an 80 year': 55023, '80 year old': 22648, 'year old safe': 1014864, 'old safe in': 598455, 'safe in her': 729766, 'in her bubble': 423651, 'her bubble with': 391899, 'bubble with ample': 141624, 'with ample merlot': 997197, 'ample merlot amp': 54887, 'merlot amp camembert': 529189, 'amp camembert her': 53490, 'camembert her shopping': 157101, 'her shopping list': 392377, 'shopping list are': 763181, 'list are delight': 494279, 'ignorance': 415741, 'believe': 126235, 'dairy': 224943, 'milk': 531534, 'falling': 297190, 'exponentially': 292589, 'dump': 262151, 'break': 138665, 'heart': 388256, 'hurt': 411538, 'oh the': 596455, 'the ignorance': 857860, 'ignorance do': 415750, 'not believe': 568553, 'believe everything': 126265, 'everything you': 288127, 'you see': 1021020, 'see folk': 745117, 'folk covid': 312134, 'ha closed': 370167, 'closed school': 183319, 'school and': 741682, 'and limited': 66186, 'limited food': 492630, 'food supply': 316926, 'supply demand': 825148, 'for dairy': 320534, 'dairy and': 224950, 'and milk': 67010, 'milk future': 531688, 'future are': 342260, 'are falling': 86457, 'falling exponentially': 297252, 'exponentially dairy': 292594, 'dairy farmer': 224973, 'farmer are': 299267, 'are forced': 86652, 'to dump': 904796, 'dump it': 262164, 'it break': 456912, 'break the': 138801, 'the heart': 857206, 'heart of': 388313, 'of dairy': 582322, 'farmer to': 299533, 'do this': 250334, 'this more': 888925, 'than it': 840795, 'it hurt': 458663, 'oh the ignorance': 596456, 'the ignorance do': 857862, 'ignorance do not': 415751, 'do not believe': 249679, 'not believe everything': 568554, 'believe everything you': 126266, 'everything you see': 288139, 'you see folk': 1021037, 'see folk covid': 745118, 'folk covid 19': 312135, '19 ha closed': 7334, 'ha closed school': 370175, 'closed school and': 183320, 'school and limited': 741686, 'and limited food': 66187, 'limited food supply': 492633, 'food supply demand': 316946, 'supply demand for': 825152, 'demand for dairy': 235400, 'for dairy and': 320535, 'dairy and milk': 224955, 'and milk future': 67014, 'milk future are': 531689, 'future are falling': 342262, 'are falling exponentially': 86463, 'falling exponentially dairy': 297253, 'exponentially dairy farmer': 292595, 'dairy farmer are': 224975, 'farmer are forced': 299277, 'are forced to': 86653, 'forced to dump': 328631, 'to dump it': 904798, 'dump it break': 262165, 'it break the': 456913, 'break the heart': 138807, 'the heart of': 857207, 'heart of dairy': 388316, 'of dairy farmer': 582323, 'dairy farmer to': 224986, 'farmer to do': 299535, 'to do this': 904572, 'do this more': 250358, 'this more than': 888927, 'more than it': 540636, 'than it hurt': 840798, 'wondering': 1004146, 'affect': 34102, 'find': 306752, 'info': 437395, 'preparedness': 670272, 'shipping': 758819, 'often': 596150, 'are business': 85090, 'business owner': 144174, 'owner you': 632615, 'are probably': 89236, 'probably wondering': 679424, 'wondering how': 1004153, 'how covid': 407636, '19 might': 8649, 'might affect': 530861, 'affect your': 34273, 'your business': 1023044, 'business find': 143738, 'find info': 306976, 'info related': 437572, 'to preparedness': 912012, 'preparedness workforce': 670299, 'workforce shipping': 1008383, 'shipping disruption': 758842, 'disruption consumer': 246453, 'consumer demand': 197106, 'demand forecast': 235523, 'forecast more': 328844, 'more check': 538805, 'check the': 174641, 'the resource': 865591, 'resource often': 714839, 'often for': 596194, 'the latest': 859071, 'latest update': 481585, 'you are business': 1017078, 'are business owner': 85092, 'business owner you': 144196, 'owner you are': 632616, 'you are probably': 1017203, 'are probably wondering': 89244, 'probably wondering how': 679425, 'wondering how covid': 1004156, 'how covid 19': 407637, 'covid 19 might': 213434, '19 might affect': 8650, 'might affect your': 530865, 'affect your business': 34274, 'your business find': 1023055, 'business find info': 143739, 'find info related': 306978, 'info related to': 437573, 'related to preparedness': 708615, 'to preparedness workforce': 912013, 'preparedness workforce shipping': 670300, 'workforce shipping disruption': 1008384, 'shipping disruption consumer': 758843, 'disruption consumer demand': 246454, 'consumer demand forecast': 197135, 'demand forecast more': 235524, 'forecast more check': 328845, 'more check the': 538807, 'check the resource': 174652, 'the resource often': 865594, 'resource often for': 714840, 'often for the': 596196, 'for the latest': 326525, 'the latest update': 859154, 'security': 744518, 'tip': 898684, 'online security': 608951, 'security tip': 744776, 'tip for': 898758, 'for working': 327945, 'working from': 1008653, 'from home': 335834, 'online security tip': 608954, 'security tip for': 744778, 'tip for working': 898790, 'for working from': 327950, 'working from home': 1008655, 'apple': 82298, 'lineup': 493655, 'iphone': 444554, 'left': 485370, 'buy': 148239, 'canned': 161492, 'tuna': 935369, 'right apple': 721771, 'apple store': 82365, 'store lineup': 808763, 'lineup to': 493679, 'get the': 348219, 'latest iphone': 481415, 'iphone left': 444575, 'left grocery': 485482, 'to buy': 902162, 'buy canned': 148467, 'canned tuna': 161562, 'tuna mask': 935383, 'mask difference': 518573, 'difference only': 241865, 'only few': 610433, 'few month': 303921, 'month 19': 537511, 'right apple store': 721772, 'apple store lineup': 82369, 'store lineup to': 808766, 'lineup to get': 493681, 'to get the': 906612, 'get the latest': 348260, 'the latest iphone': 859123, 'latest iphone left': 481416, 'iphone left grocery': 444576, 'left grocery store': 485483, 'grocery store lineup': 365528, 'lineup to buy': 493680, 'to buy canned': 902200, 'buy canned tuna': 148468, 'canned tuna mask': 161563, 'tuna mask difference': 935384, 'mask difference only': 518574, 'difference only few': 241866, 'only few month': 610438, 'few month 19': 303922, 'coldpressedoil': 185819, 'chekkuoil': 175300, 'standardcoldpressedoil': 793723, 'did sanitizer': 240788, 'sanitizer kill': 735254, 'kill virus': 474545, 'virus the': 958878, 'the answer': 848764, 'answer is': 78060, 'no read': 565273, 'read out': 700524, 'out why': 627844, 'why coldpressedoil': 990885, 'coldpressedoil chekkuoil': 185820, 'chekkuoil standardcoldpressedoil': 175301, 'did sanitizer kill': 240789, 'sanitizer kill virus': 735261, 'kill virus the': 474547, 'virus the answer': 958879, 'the answer is': 848769, 'answer is no': 78063, 'is no read': 449963, 'no read out': 565274, 'read out why': 700525, 'out why coldpressedoil': 627845, 'why coldpressedoil chekkuoil': 990886, 'coldpressedoil chekkuoil standardcoldpressedoil': 185821, 'fed': 301771, 'finishing': 307929, 'parcel': 641473, 'older': 598560, 'cancer': 161241, 'make': 509625, 'cry': 219836, 'am fed': 50043, 'fed up': 301921, 'up of': 945494, 'of finishing': 583547, 'finishing work': 307942, 'work and': 1004756, 'and there': 73826, 'is nothing': 450229, 'nothing left': 573080, 'left on': 485584, 'shelf all': 756693, 'all want': 45388, 'do is': 249439, 'is get': 448018, 'get together': 348507, 'together food': 920786, 'food parcel': 315808, 'parcel of': 641513, 'of essential': 583159, 'essential for': 281053, 'for older': 324049, 'older neighbour': 598628, 'neighbour who': 557254, 'who ha': 988828, 'ha cancer': 370053, 'cancer make': 161261, 'make me': 510125, 'me want': 523906, 'to cry': 903780, 'am fed up': 50044, 'fed up of': 301923, 'up of finishing': 945497, 'of finishing work': 583548, 'finishing work and': 307943, 'work and there': 1004817, 'and there is': 73840, 'there is nothing': 878600, 'is nothing left': 450238, 'nothing left on': 573086, 'left on the': 485591, 'the supermarket shelf': 868793, 'supermarket shelf all': 822422, 'shelf all want': 756697, 'all want to': 45391, 'want to do': 966025, 'to do is': 904524, 'do is get': 249444, 'is get together': 448020, 'get together food': 348510, 'together food parcel': 920788, 'food parcel of': 315819, 'parcel of essential': 641514, 'of essential for': 583168, 'essential for older': 281060, 'for older neighbour': 324054, 'older neighbour who': 598629, 'neighbour who ha': 557257, 'who ha cancer': 988834, 'ha cancer make': 370056, 'cancer make me': 161262, 'make me want': 510152, 'me want to': 523907, 'want to cry': 966020, 'mma': 534765, 'imma': 416942, 'straight': 812199, 'those supermarket': 892505, 'supermarket delivery': 819913, 'driver best': 259460, 'best know': 127752, 'know mma': 476598, 'mma because': 534766, 'because imma': 119154, 'imma coming': 416943, 'coming for': 188047, 'for them': 326888, 'them straight': 876339, 'straight up': 812249, 'those supermarket delivery': 892507, 'supermarket delivery driver': 819920, 'delivery driver best': 233892, 'driver best know': 259461, 'best know mma': 127753, 'know mma because': 476599, 'mma because imma': 534767, 'because imma coming': 119155, 'imma coming for': 416944, 'coming for them': 188051, 'for them straight': 326921, 'them straight up': 876341, 'eastern': 265570, 'north': 567597, 'carolina': 164829, 'the food': 855527, 'bank of': 110044, 'of central': 581238, 'central and': 169359, 'and eastern': 61864, 'eastern north': 265593, 'north carolina': 567626, 'carolina continues': 164834, 'to distribute': 904438, 'distribute food': 247972, 'food for': 314512, 'for those': 327096, 'those that': 892525, 'that are': 842710, 'need during': 554716, 'the food bank': 855534, 'food bank of': 313607, 'bank of central': 110049, 'of central and': 581239, 'central and eastern': 169360, 'and eastern north': 61865, 'eastern north carolina': 265594, 'north carolina continues': 567629, 'carolina continues to': 164835, 'continues to distribute': 201468, 'to distribute food': 904440, 'distribute food for': 247974, 'food for those': 314581, 'for those that': 327144, 'those that are': 892527, 'that are in': 842763, 'are in need': 87413, 'in need during': 425739, 'need during covid': 554718, 'sparked': 787568, 'org': 619174, 'foodsafety': 318050, 'stressing': 813530, 'foodborne': 317867, 'illness': 416333, 'foodindustry': 317966, 'while coronavirus': 986717, 'coronavirus covid': 205720, 'ha sparked': 372009, 'sparked some': 787588, 'some consumer': 782587, 'consumer concern': 196864, 'over fresh': 630235, 'fresh food': 332955, 'food org': 315687, 'org foodsafety': 619181, 'foodsafety is': 318060, 'is stressing': 452374, 'stressing that': 813542, 'that covid': 843383, '19 is': 7927, 'is not': 450020, 'not foodborne': 569476, 'foodborne illness': 317872, 'illness foodsafety': 416361, 'foodsafety foodindustry': 318058, 'while coronavirus covid': 986718, 'coronavirus covid 19': 205721, '19 ha sparked': 7390, 'ha sparked some': 372012, 'sparked some consumer': 787589, 'some consumer concern': 782592, 'consumer concern over': 196869, 'concern over fresh': 193049, 'over fresh food': 630236, 'fresh food org': 332974, 'food org foodsafety': 315688, 'org foodsafety is': 619182, 'foodsafety is stressing': 318061, 'is stressing that': 452376, 'stressing that covid': 813543, 'that covid 19': 843384, 'covid 19 is': 213292, '19 is not': 8012, 'is not foodborne': 450087, 'not foodborne illness': 569479, 'foodborne illness foodsafety': 317873, 'illness foodsafety foodindustry': 416362, 'panicked': 639242, 'emptied': 274669, 'accumulate': 28846, 'selfish panicked': 748197, 'panicked shopper': 639278, 'shopper have': 761538, 'have emptied': 380423, 'emptied the': 274699, 'shelf of': 757354, 'of uk': 592563, 'uk supermarket': 938754, 'supermarket do': 819978, 'you think': 1021639, 'think people': 885484, 'right to': 722332, 'to accumulate': 899981, 'accumulate stophoarding': 28856, 'stophoarding coronacrisis': 805376, 'selfish panicked shopper': 748198, 'panicked shopper have': 639283, 'shopper have emptied': 761541, 'have emptied the': 380424, 'emptied the shelf': 274702, 'the shelf of': 866862, 'shelf of uk': 757373, 'of uk supermarket': 592579, 'uk supermarket do': 938762, 'supermarket do you': 819984, 'do you think': 250689, 'you think people': 1021672, 'think people have': 885488, 'people have the': 648205, 'have the right': 383020, 'the right to': 865832, 'right to accumulate': 722333, 'to accumulate stophoarding': 899982, 'accumulate stophoarding coronacrisis': 28857, 'saw': 738041, 'guy': 368879, 'paella': 633817, 'pi': 655547, 'ata': 101702, 'sombrero': 782231, 'hispanic': 397930, 'just been': 468297, 'been to': 122208, 'supermarket saw': 822319, 'saw guy': 738123, 'guy buy': 368942, 'buy paella': 149077, 'paella pi': 633822, 'pi ata': 655548, 'ata and': 101703, 'and sombrero': 71947, 'sombrero thought': 782232, 'thought to': 893273, 'to myself': 910455, 'myself hispanic': 550873, 'hispanic buying': 397931, 'just been to': 468309, 'been to the': 122231, 'the supermarket saw': 868783, 'supermarket saw guy': 822320, 'saw guy buy': 738125, 'guy buy paella': 368943, 'buy paella pi': 149078, 'paella pi ata': 633823, 'pi ata and': 655549, 'ata and sombrero': 101704, 'and sombrero thought': 71948, 'sombrero thought to': 782233, 'thought to myself': 893278, 'to myself hispanic': 910457, 'myself hispanic buying': 550874, 'costing': 208321, 'million': 532044, 'alone': 46798, 'ha received': 371660, 'received more': 703649, 'than 15': 840176, '15 00': 3629, '00 related': 461, 'related consumer': 708395, 'complaint of': 191998, 'of and': 580137, 'and in': 65039, 'in 2020': 419814, '2020 costing': 14253, 'costing more': 208332, 'than million': 840892, 'million in': 532183, 'in april': 420462, 'april alone': 83537, 'the ha received': 857013, 'ha received more': 371665, 'received more than': 703650, 'more than 15': 540547, 'than 15 00': 840177, '15 00 related': 3634, '00 related consumer': 462, 'related consumer complaint': 708397, 'consumer complaint of': 196855, 'complaint of and': 191999, 'of and in': 580162, 'and in 2020': 65040, 'in 2020 costing': 419829, '2020 costing more': 14254, 'costing more than': 208333, 'more than million': 540647, 'than million in': 840894, 'million in april': 532184, 'in april alone': 420465, 'impact': 417529, 'easy': 265640, 'overlook': 631280, 'dismal': 245973, 'reality': 701683, 'producer': 680542, 'lockdown21': 500199, 'oil crash': 596712, 'crash due': 214968, 'the impact': 857927, 'impact of': 417749, 'it easy': 457739, 'easy to': 265775, 'to overlook': 911306, 'overlook an': 631281, 'an even': 55865, 'even more': 284338, 'more dismal': 539049, 'dismal reality': 245978, 'reality for': 701732, 'for producer': 324768, 'producer the': 680699, 'real price': 701312, 'price they': 676890, 're getting': 698725, 'getting for': 348991, 'their barrel': 872556, 'barrel are': 111202, 'are worse': 91742, 'worse still': 1010999, 'still lockdown21': 800804, 'oil crash due': 596713, 'crash due to': 214969, 'due to the': 261992, 'to the impact': 916796, 'the impact of': 857942, 'impact of it': 417783, 'of it easy': 585387, 'it easy to': 457745, 'easy to overlook': 265787, 'to overlook an': 911307, 'overlook an even': 631282, 'an even more': 55868, 'even more dismal': 284352, 'more dismal reality': 539050, 'dismal reality for': 245979, 'reality for producer': 701733, 'for producer the': 324769, 'producer the real': 680700, 'the real price': 865232, 'real price they': 701316, 'price they re': 676898, 'they re getting': 883042, 're getting for': 698729, 'getting for their': 348993, 'for their barrel': 326800, 'their barrel are': 872557, 'barrel are worse': 111203, 'are worse still': 91743, 'worse still lockdown21': 1011001, 'wtf': 1013266, 'clothes': 184129, 'noni': 566645, 'katies': 471055, 'river': 724175, 'ect': 268413, 'preorders': 669990, 'seen': 746902, 'stuff': 814998, 'nail': 551440, 'gross': 366432, 'wtf clothes': 1013275, 'clothes store': 184210, 'store noni': 809092, 'noni katies': 566646, 'katies river': 471058, 'river ect': 724183, 'ect are': 268418, 'are doing': 85880, 'doing preorders': 252607, 'preorders on': 669991, 'on hand': 601225, 'and mask': 66737, 'mask for': 518663, 'for high': 322254, 'high price': 395226, 'price ve': 677296, 've never': 953380, 'never seen': 558171, 'seen them': 747303, 'them sell': 876263, 'sell this': 748913, 'this stuff': 890388, 'stuff before': 815024, 'before look': 122924, 'look like': 502456, 'like they': 491445, 're trying': 699737, 'on while': 605283, 'while nail': 987078, 'nail tech': 551465, 'tech are': 836039, 'being told': 125963, 'told to': 923743, 'save their': 737672, 'their mask': 873924, 'doctor gross': 250938, 'wtf clothes store': 1013276, 'clothes store noni': 184211, 'store noni katies': 809093, 'noni katies river': 566647, 'katies river ect': 471059, 'river ect are': 724184, 'ect are doing': 268419, 'are doing preorders': 85919, 'doing preorders on': 252608, 'preorders on hand': 669992, 'on hand sanitizer': 601234, 'hand sanitizer and': 375301, 'sanitizer and mask': 734417, 'and mask for': 66749, 'mask for high': 518680, 'for high price': 322258, 'high price ve': 395289, 'price ve never': 677297, 've never seen': 953389, 'never seen them': 558182, 'seen them sell': 747308, 'them sell this': 876264, 'sell this stuff': 748917, 'this stuff before': 890389, 'stuff before look': 815025, 'before look like': 122925, 'look like they': 502517, 'like they re': 491455, 'they re trying': 883146, 're trying to': 699739, 'trying to cash': 934776, 'in on while': 426132, 'on while nail': 605288, 'while nail tech': 987079, 'nail tech are': 551466, 'tech are being': 836040, 'are being told': 84937, 'being told to': 125970, 'told to save': 923760, 'to save their': 913796, 'save their mask': 737676, 'their mask for': 873926, 'mask for doctor': 518672, 'for doctor gross': 320794, 'bossert': 135771, 'publishes': 688730, 'op': 611789, 'ed': 268440, 'advocate': 33813, 'contagion': 200395, 'development': 239802, 'compare': 191386, 'favorably': 300477, 'common': 189354, '2020 bossert': 14182, 'bossert publishes': 135772, 'publishes an': 688731, 'an op': 56645, 'op ed': 611795, 'ed saying': 268460, 'is now': 450248, 'now or': 575466, 'or never': 616235, 'never to': 558238, 'to act': 900006, 'act he': 29649, 'he advocate': 384715, 'advocate for': 33834, 'for social': 325700, 'distancing and': 246961, 'and school': 71071, 'school closure': 741744, 'closure to': 184046, 'to slow': 914737, 'the contagion': 851644, 'contagion trump': 200426, 'trump say': 933818, 'say that': 739225, 'that development': 843517, 'development are': 239804, 'are good': 86922, 'and compare': 60201, 'compare covid': 191393, '19 favorably': 6947, 'favorably to': 300478, 'the common': 851247, 'common flu': 189382, '2020 bossert publishes': 14183, 'bossert publishes an': 135773, 'publishes an op': 688732, 'an op ed': 56646, 'op ed saying': 611798, 'ed saying it': 268461, 'saying it is': 739624, 'it is now': 459025, 'is now or': 450311, 'now or never': 575474, 'or never to': 616236, 'never to act': 558239, 'to act he': 900013, 'act he advocate': 29650, 'he advocate for': 384716, 'advocate for social': 33836, 'for social distancing': 325703, 'social distancing and': 779553, 'distancing and school': 246994, 'and school closure': 71074, 'school closure to': 741755, 'closure to slow': 184052, 'to slow the': 914742, 'of the contagion': 590887, 'the contagion trump': 851646, 'contagion trump say': 200427, 'trump say that': 933825, 'say that development': 739232, 'that development are': 843518, 'development are good': 239805, 'are good for': 86924, 'the consumer and': 851492, 'consumer and compare': 196203, 'and compare covid': 60202, 'compare covid 19': 191394, 'covid 19 favorably': 213078, '19 favorably to': 6948, 'favorably to the': 300479, 'to the common': 916574, 'the common flu': 851250, 'pretty': 671351, 'anyway': 80978, 'if other': 414570, 'other country': 620011, 'country are': 210455, 'are anything': 84584, 'anything to': 80910, 'go by': 353396, 'by you': 154781, 'you ll': 1019638, 'll still': 497037, 'still be': 800241, 'be allowed': 113559, 'allowed out': 46199, 'out to': 627617, 'work help': 1005247, 'others or': 621569, 'or shop': 617052, 'shop for': 760179, 'food or': 315644, 'or medical': 616103, 'supply pretty': 825726, 'pretty much': 671442, 'much all': 544702, 'need anyway': 554466, 'anyway right': 81029, 'right not': 722007, 'not like': 570391, 'like you': 491865, 'up year': 946714, 'year food': 1014557, 'food at': 313437, 'home idiot': 401393, 'if other country': 414571, 'other country are': 620012, 'country are anything': 210457, 'are anything to': 84585, 'anything to go': 80914, 'to go by': 906781, 'go by you': 353402, 'by you ll': 154783, 'you ll still': 1019672, 'll still be': 497038, 'still be allowed': 800244, 'be allowed out': 113564, 'allowed out to': 46205, 'out to work': 627698, 'to work help': 918732, 'work help others': 1005248, 'help others or': 390213, 'others or shop': 621570, 'or shop for': 617054, 'shop for food': 760187, 'for food or': 321609, 'food or medical': 315660, 'or medical supply': 616105, 'medical supply pretty': 526456, 'supply pretty much': 825727, 'pretty much all': 671443, 'much all you': 544704, 'you need anyway': 1019965, 'need anyway right': 554467, 'anyway right not': 81030, 'right not like': 722010, 'not like you': 570407, 'like you need': 491875, 'need to stock': 556088, 'stock up year': 803136, 'up year food': 946715, 'year food at': 1014558, 'food at home': 313446, 'at home idiot': 99010, 'finish': 307844, 'ffs': 304290, 'tsavemyhandsfromthecookie': 934918, 'jar': 464807, 'still buy': 800312, 'buy food': 148629, 'the house': 857587, 'house but': 406221, 'but still': 147154, 'still finish': 800534, 'finish it': 307857, 'all ffs': 42778, 'ffs can': 304293, 'can tsavemyhandsfromthecookie': 160062, 'tsavemyhandsfromthecookie jar': 934919, 'jar food': 464810, 'still buy food': 800314, 'buy food for': 148647, 'food for the': 314576, 'for the house': 326484, 'the house but': 857598, 'house but still': 406224, 'but still finish': 147163, 'still finish it': 800535, 'finish it all': 307858, 'it all ffs': 456345, 'all ffs can': 42779, 'ffs can tsavemyhandsfromthecookie': 304294, 'can tsavemyhandsfromthecookie jar': 160063, 'tsavemyhandsfromthecookie jar food': 934920, 'waterstones': 969306, 'chief': 175904, 'exec': 289809, 'james': 464389, 'daunt': 226932, 'described': 237935, 'raised': 695982, 'member': 527997, 'utter': 951406, 'needle': 556642, 'gone': 356181, 'his': 397160, 'employee': 273504, 'dm': 248864, 'angry': 76449, 'bookseller': 134774, 'waterstones chief': 969310, 'chief exec': 175922, 'exec james': 289820, 'james daunt': 464390, 'daunt ha': 226937, 'ha described': 370360, 'described concern': 237940, 'concern raised': 193062, 'raised by': 695993, 'by member': 153198, 'member of': 528136, 'of staff': 590014, 'staff utter': 793035, 'utter shit': 951429, 'shit needle': 759174, 'needle to': 556649, 'to say': 913802, 'not gone': 569708, 'gone down': 356260, 'down well': 257454, 'well with': 978756, 'with his': 998827, 'his employee': 397387, 'employee who': 274419, 'my dm': 548008, 'dm and': 248867, 'and email': 62024, 'email angry': 272116, 'angry and': 76457, 'and disgusted': 61430, 'disgusted say': 245373, 'say one': 739023, 'one senior': 607003, 'senior bookseller': 750231, 'waterstones chief exec': 969311, 'chief exec james': 175924, 'exec james daunt': 289821, 'james daunt ha': 464393, 'daunt ha described': 226938, 'ha described concern': 370361, 'described concern raised': 237941, 'concern raised by': 193063, 'raised by member': 695995, 'by member of': 153199, 'member of staff': 528150, 'of staff utter': 590028, 'staff utter shit': 793036, 'utter shit needle': 951431, 'shit needle to': 759175, 'needle to say': 556650, 'to say it': 913826, 'say it not': 738852, 'it not gone': 459881, 'not gone down': 569709, 'gone down well': 356265, 'down well with': 257455, 'well with his': 978758, 'with his employee': 998833, 'his employee who': 397390, 'employee who are': 274421, 'who are in': 988161, 'are in my': 87412, 'in my dm': 425565, 'my dm and': 548009, 'dm and email': 248868, 'and email angry': 62025, 'email angry and': 272117, 'angry and disgusted': 76458, 'and disgusted say': 61433, 'disgusted say one': 245374, 'say one senior': 739028, 'one senior bookseller': 607004, 'customer': 222007, 'sanitiser': 733904, 'quantity': 691905, 'lorri': 503327, 'conveniencestore': 202374, 'petrolforecourt': 653847, 'petrolstation': 653865, 'antibacterial': 78346, 'keep staff': 471961, 'staff customer': 792346, 'customer safe': 222782, 'and happy': 64172, 'happy mask': 377649, 'and sanitiser': 70828, 'sanitiser available': 733928, 'available in': 104428, 'in quantity': 427170, 'quantity please': 691948, 'contact lorri': 200129, 'lorri co': 503328, 'co uk': 184992, 'uk 19': 938143, '19 supermarket': 10946, 'supermarket conveniencestore': 819773, 'conveniencestore petrolforecourt': 202375, 'petrolforecourt petrolstation': 653848, 'petrolstation shop': 653866, 'shop sanitiser': 760736, 'sanitiser facemask': 733953, 'facemask antibacterial': 295065, 'keep staff customer': 471963, 'staff customer safe': 792348, 'customer safe and': 222783, 'safe and happy': 729451, 'and happy mask': 64178, 'happy mask and': 377650, 'mask and sanitiser': 518366, 'and sanitiser available': 70830, 'sanitiser available in': 733930, 'available in quantity': 104451, 'in quantity please': 427171, 'quantity please contact': 691949, 'please contact lorri': 659837, 'contact lorri co': 200130, 'lorri co uk': 503329, 'co uk 19': 184993, 'uk 19 supermarket': 938145, '19 supermarket conveniencestore': 10951, 'supermarket conveniencestore petrolforecourt': 819774, 'conveniencestore petrolforecourt petrolstation': 202376, 'petrolforecourt petrolstation shop': 653849, 'petrolstation shop sanitiser': 653867, 'shop sanitiser facemask': 760737, 'sanitiser facemask antibacterial': 733954, 'standard': 793621, 'voucher': 960625, 'designed': 238332, 'targeting': 834555, 'desperation': 238589, 'cloak': 182389, 'branding': 138121, 'popular': 664531, 'offer': 594493, 'trading standard': 928923, 'standard ha': 793667, 'received an': 703587, 'an online': 56608, 'online voucher': 609685, 'voucher scam': 960666, 'scam designed': 740126, 'designed to': 238348, 'to targeting': 916305, 'targeting people': 834570, 'people desperation': 647634, 'desperation during': 238590, 'pandemic quarantine': 636265, 'quarantine scammer': 692505, 'scammer cloak': 740553, 'cloak the': 182390, 'the email': 854206, 'email in': 272208, 'the branding': 849947, 'branding of': 138132, 'of popular': 588230, 'popular supermarket': 664605, 'and offer': 67968, 'offer money': 594699, 'money off': 536919, 'off voucher': 594368, 'trading standard ha': 928928, 'standard ha received': 793668, 'ha received an': 371661, 'received an online': 703591, 'an online voucher': 56641, 'online voucher scam': 609687, 'voucher scam designed': 960667, 'scam designed to': 740127, 'designed to targeting': 238367, 'to targeting people': 916306, 'targeting people desperation': 834571, 'people desperation during': 647635, 'desperation during the': 238591, 'the pandemic quarantine': 863069, 'pandemic quarantine scammer': 636270, 'quarantine scammer cloak': 692506, 'scammer cloak the': 740554, 'cloak the email': 182391, 'the email in': 854210, 'email in the': 272210, 'in the branding': 429036, 'the branding of': 849948, 'branding of popular': 138133, 'of popular supermarket': 588234, 'popular supermarket and': 664606, 'supermarket and offer': 819028, 'and offer money': 67970, 'offer money off': 594700, 'money off voucher': 536923, 'second': 743650, 'carry': 165063, 'protecting': 685175, 'layer': 482620, 'travelling': 930681, 'rumor': 727473, 'require': 713292, 'hand with': 376001, 'with soap': 1000788, 'soap for': 779006, 'for 20': 318725, '20 second': 13322, 'second carry': 743676, 'carry tissue': 165160, 'tissue paper': 899193, 'and use': 74766, 'use it': 949296, 'it protecting': 460536, 'protecting layer': 685204, 'layer while': 482643, 'while travelling': 987479, 'travelling don': 930684, 'don panic': 253791, 'panic don': 638041, 'don spread': 253923, 'spread rumor': 790775, 'rumor stock': 727498, 'stock food': 802120, 'and essential': 62240, 'for week': 327688, 'week if': 976351, 'you require': 1020913, 'require to': 713337, 'to self': 914120, 'self quarantine': 747844, 'your hand with': 1024246, 'hand with soap': 376016, 'with soap for': 1000797, 'soap for 20': 779007, 'for 20 second': 318731, '20 second carry': 13326, 'second carry tissue': 743677, 'carry tissue paper': 165161, 'tissue paper and': 899194, 'paper and use': 639862, 'and use it': 74776, 'use it protecting': 949309, 'it protecting layer': 460537, 'protecting layer while': 685205, 'layer while travelling': 482644, 'while travelling don': 987480, 'travelling don panic': 930685, 'don panic don': 253799, 'panic don spread': 638043, 'don spread rumor': 253926, 'spread rumor stock': 790777, 'rumor stock food': 727499, 'stock food and': 802123, 'food and essential': 313222, 'and essential for': 62252, 'essential for week': 281066, 'for week if': 327718, 'week if you': 976359, 'if you require': 415510, 'you require to': 1020914, 'require to self': 713338, 'to self quarantine': 914124, 'scumbags': 742998, 'quite': 694821, 'simply': 770171, 'piece': 656255, 'thick': 883980, 'brain': 137581, 'cell': 168937, 'causing': 167984, 'literally': 494948, 'fuck': 339506, 'forever': 329092, 'toiletroll': 923361, 'notfakenews': 572887, 'you scumbags': 1021018, 'scumbags panic': 743005, 'toilet roll': 921546, 'roll because': 725212, 'because you': 119858, 're quite': 699346, 'quite simply': 694918, 'simply old': 770249, 'old piece': 598427, 'piece of': 656325, 'of thick': 591885, 'thick shit': 883989, 'shit without': 759300, 'without brain': 1002523, 'brain cell': 137587, 'cell between': 168944, 'between you': 128962, 'you all': 1016862, 'all causing': 42322, 'causing this': 168128, 'this literally': 888669, 'literally no': 495044, 'no point': 565132, 'point in': 662512, 'in you': 431045, 'you being': 1017436, 'being on': 125485, 'on this': 604600, 'this planet': 889605, 'planet fuck': 658402, 'fuck off': 339612, 'off forever': 593839, 'forever toiletpaper': 329151, 'toiletpaper toiletroll': 922729, 'toiletroll notfakenews': 923372, 'all you scumbags': 45552, 'you scumbags panic': 1021019, 'scumbags panic buying': 743006, 'buying toilet roll': 151248, 'toilet roll because': 921553, 'roll because you': 725214, 'because you re': 119876, 'you re quite': 1020718, 're quite simply': 699347, 'quite simply old': 694919, 'simply old piece': 770250, 'old piece of': 598428, 'piece of thick': 656349, 'of thick shit': 591886, 'thick shit without': 883991, 'shit without brain': 759301, 'without brain cell': 1002524, 'brain cell between': 137588, 'cell between you': 168945, 'between you all': 128963, 'you all causing': 1016868, 'all causing this': 42323, 'causing this literally': 168132, 'this literally no': 888670, 'literally no point': 495047, 'no point in': 565136, 'point in you': 662529, 'in you being': 431047, 'you being on': 1017438, 'being on this': 125490, 'on this planet': 604628, 'this planet fuck': 889606, 'planet fuck off': 658403, 'fuck off forever': 339614, 'off forever toiletpaper': 593840, 'forever toiletpaper toiletroll': 329152, 'toiletpaper toiletroll notfakenews': 922731, 'rethink': 719641, 'adapt': 31243, 'socialize': 781026, 'change': 171876, 'for thought': 327155, 'thought when': 893311, 'when china': 983249, 'china wa': 177042, 'wa under': 963600, 'under lockdown': 940146, 'lockdown for': 499389, 'for over': 324321, 'over month': 630405, 'month people': 537953, 'people had': 648137, 'had to': 373656, 'to rethink': 913463, 'rethink and': 719642, 'and adapt': 57660, 'adapt the': 31272, 'the way': 871138, 'they live': 882576, 'live work': 496128, 'and socialize': 71912, 'socialize which': 781029, 'which change': 985746, 'change will': 172396, 'will likely': 993990, 'likely stay': 492104, 'stay which': 797399, 'which won': 986510, 'won via': 1003930, 'food for thought': 314582, 'for thought when': 327165, 'thought when china': 893313, 'when china wa': 983250, 'china wa under': 177047, 'wa under lockdown': 963602, 'under lockdown for': 940149, 'lockdown for over': 499398, 'for over month': 324330, 'over month people': 630409, 'month people had': 537955, 'people had to': 648143, 'had to rethink': 373720, 'to rethink and': 913464, 'rethink and adapt': 719643, 'and adapt the': 57662, 'adapt the way': 31273, 'the way they': 871196, 'way they live': 969958, 'they live work': 882582, 'live work and': 496129, 'work and socialize': 1004807, 'and socialize which': 71914, 'socialize which change': 781030, 'which change will': 985747, 'change will likely': 172398, 'will likely stay': 994013, 'likely stay which': 492105, 'stay which won': 797400, 'which won via': 986511, 'vigilant': 957223, 'dc': 228935, 'abuse': 27611, 'exploitation': 292375, 'rely': 709625, 'mgmt': 530094, 'healthcare': 387010, 'loved': 504895, 'english': 277046, 'spanish': 787404, 'now is': 575058, 'the time': 869571, 'be vigilant': 117996, 'vigilant cautious': 957239, 'cautious dc': 168216, 'dc senior': 228972, 'senior are': 750214, 'are especially': 86239, 'especially at': 280442, 'at risk': 100331, 'of abuse': 579721, 'abuse and': 27616, 'and exploitation': 62518, 'exploitation many': 292385, 'many rely': 514629, 'rely on': 709632, 'on others': 602563, 'others for': 621405, 'for help': 322171, 'help money': 390107, 'money mgmt': 536889, 'mgmt healthcare': 530095, 'healthcare daily': 387082, 'daily task': 224824, 'task protect': 834727, 'protect yourself': 685075, 'yourself loved': 1026662, 'loved one': 504900, 'one during': 606219, 'during tip': 263351, 'tip in': 898822, 'in english': 422582, 'english spanish': 277062, 'now is the': 575085, 'is the time': 452961, 'the time to': 869625, 'time to be': 897951, 'to be vigilant': 901622, 'be vigilant cautious': 118000, 'vigilant cautious dc': 957240, 'cautious dc senior': 168217, 'dc senior are': 228973, 'senior are especially': 750216, 'are especially at': 86240, 'especially at risk': 280445, 'at risk of': 100381, 'risk of abuse': 723723, 'of abuse and': 579722, 'abuse and exploitation': 27617, 'and exploitation many': 62519, 'exploitation many rely': 292386, 'many rely on': 514630, 'rely on others': 709646, 'on others for': 602565, 'others for help': 621408, 'for help money': 322183, 'help money mgmt': 390108, 'money mgmt healthcare': 536890, 'mgmt healthcare daily': 530096, 'healthcare daily task': 387083, 'daily task protect': 224826, 'task protect yourself': 834728, 'protect yourself loved': 685098, 'yourself loved one': 1026663, 'loved one during': 504909, 'one during tip': 606221, 'during tip in': 263352, 'tip in english': 898823, 'in english spanish': 422583, 'white': 987809, 'briefing': 139690, 'watch live': 968463, 'live daily': 495781, 'daily white': 224892, 'white house': 987843, 'house task': 406591, 'force briefing': 328344, 'watch live daily': 968464, 'live daily white': 495783, 'daily white house': 224893, 'white house task': 987862, 'house task force': 406592, 'task force briefing': 834681, '25': 15784, 'miss': 534129, 'opportunity': 613580, 'win': 995528, 'remarkable': 710112, 'participating': 642563, 'essay': 280700, 'competition': 191652, 'psychosocial': 687591, 'perspective': 653178, 'register': 707537, 'you between': 1017472, 'the age': 848433, 'age of': 37853, 'of 15': 579358, '15 25': 3650, '25 year': 15995, 'year then': 1015004, 'then do': 877126, 'not miss': 570585, 'miss out': 534174, 'out the': 627344, 'the opportunity': 862397, 'opportunity to': 613693, 'to win': 918607, 'win remarkable': 995571, 'remarkable price': 710115, 'price by': 673000, 'by participating': 153530, 'participating in': 642568, 'the essay': 854489, 'essay competition': 280701, 'competition on': 191716, 'on 19': 599026, '19 mentalhealth': 8631, 'mentalhealth and': 528674, 'and psychosocial': 69731, 'psychosocial perspective': 687592, 'perspective to': 653238, 'to register': 913097, 'register visit': 707624, 'are you between': 91768, 'you between the': 1017474, 'between the age': 128920, 'the age of': 848434, 'age of 15': 37854, 'of 15 25': 579360, '15 25 year': 3651, '25 year then': 15998, 'year then do': 1015006, 'then do not': 877128, 'do not miss': 249786, 'not miss out': 570588, 'miss out the': 534177, 'out the opportunity': 627401, 'the opportunity to': 862405, 'opportunity to win': 613736, 'to win remarkable': 918615, 'win remarkable price': 995572, 'remarkable price by': 710116, 'price by participating': 673030, 'by participating in': 153532, 'participating in the': 642575, 'in the essay': 429175, 'the essay competition': 854490, 'essay competition on': 280702, 'competition on 19': 191717, 'on 19 mentalhealth': 599031, '19 mentalhealth and': 8632, 'mentalhealth and psychosocial': 528675, 'and psychosocial perspective': 69732, 'psychosocial perspective to': 687593, 'perspective to register': 653239, 'to register visit': 913107, 'cutting': 223709, 'collapsing': 186123, 'plummeting': 661362, 'threaten': 893752, 'field': 304445, 'the is': 858471, 'is cutting': 447010, 'cutting it': 223737, 'it 2020': 456194, '2020 oil': 14473, 'oil production': 597358, 'production forecast': 682048, 'forecast by': 328810, 'by more': 153243, 'million barrel': 532081, 'barrel per': 111268, 'per day': 650791, 'day collapsing': 227459, 'collapsing price': 186145, 'price and': 672352, 'and plummeting': 69125, 'plummeting demand': 661372, 'demand due': 235267, 'pandemic threaten': 636756, 'threaten the': 893760, 'country biggest': 210518, 'biggest oil': 130280, 'oil field': 596792, 'field oott': 304497, 'the is cutting': 858487, 'is cutting it': 447013, 'cutting it 2020': 223738, 'it 2020 oil': 456198, '2020 oil production': 14474, 'oil production forecast': 597368, 'production forecast by': 682049, 'forecast by more': 328811, 'by more than': 153247, 'than million barrel': 840893, 'million barrel per': 532087, 'barrel per day': 111269, 'per day collapsing': 650798, 'day collapsing price': 227460, 'collapsing price and': 186146, 'price and plummeting': 672498, 'and plummeting demand': 69127, 'plummeting demand due': 661373, 'demand due to': 235268, 'to the pandemic': 916939, 'the pandemic threaten': 863126, 'pandemic threaten the': 636757, 'threaten the country': 893761, 'the country biggest': 852052, 'country biggest oil': 210520, 'biggest oil field': 130281, 'oil field oott': 596793, 'amazing': 50633, 'mind': 532609, 'discrediting': 244741, 'call': 155668, 'centre': 169473, 'telecom': 836670, 'engineer': 276953, 'infrastructure': 438183, 'there some': 879067, 'some amazing': 782281, 'amazing work': 50816, 'work going': 1005214, 'going on': 355292, 'on in': 601521, 'world of': 1009848, 'of that': 590705, 'that people': 845682, 'not always': 568175, 'always have': 49607, 'have front': 380726, 'front of': 338634, 'of mind': 586541, 'mind not': 532695, 'not discrediting': 569044, 'discrediting doctor': 244742, 'doctor nurse': 250994, 'nurse supermarket': 577488, 'worker or': 1007499, 'or delivery': 614930, 'driver but': 259471, 'but think': 147526, 'think call': 885175, 'call centre': 155819, 'centre worker': 169568, 'worker the': 1007919, 'the telecom': 869254, 'telecom engineer': 836677, 'engineer people': 276971, 'people keeping': 648585, 'keeping our': 472498, 'our infrastructure': 623547, 'infrastructure going': 438199, 'there some amazing': 879068, 'some amazing work': 782282, 'amazing work going': 50817, 'work going on': 1005217, 'going on in': 355322, 'on in the': 601538, 'the world of': 871927, 'world of that': 1009855, 'of that people': 590735, 'that people do': 845692, 'do not always': 249664, 'not always have': 568180, 'always have front': 49610, 'have front of': 380727, 'front of mind': 338644, 'of mind not': 586545, 'mind not discrediting': 532696, 'not discrediting doctor': 569045, 'discrediting doctor nurse': 244743, 'doctor nurse supermarket': 251034, 'nurse supermarket worker': 577491, 'supermarket worker or': 824060, 'worker or delivery': 1007503, 'or delivery driver': 614934, 'delivery driver but': 233894, 'driver but think': 259473, 'but think call': 147528, 'think call centre': 885176, 'call centre worker': 155822, 'centre worker the': 169569, 'worker the telecom': 1007941, 'the telecom engineer': 869255, 'telecom engineer people': 836678, 'engineer people keeping': 276972, 'people keeping our': 648586, 'keeping our infrastructure': 472505, 'our infrastructure going': 623548, 'examine': 288813, 'observation': 578528, 'leading': 483673, 'commerce': 188504, 'hong': 403196, 'kong': 477379, 'japan': 464700, 'korea': 477450, 'mrx': 544468, 'ecommerce': 266698, 'examine nearly': 288818, 'nearly million': 553841, 'million daily': 532123, 'daily data': 224572, 'data observation': 226314, 'observation across': 578529, 'across leading': 29373, 'leading commerce': 483692, 'commerce retailer': 188621, 'in china': 421383, 'china hong': 176716, 'hong kong': 403197, 'kong japan': 477394, 'japan south': 464756, 'south korea': 786734, 'korea and': 477455, 'and italy': 65612, 'italy consumer': 462794, 'consumer mrx': 198167, 'mrx ecommerce': 544477, 'examine nearly million': 288819, 'nearly million daily': 553843, 'million daily data': 532124, 'daily data observation': 224573, 'data observation across': 226315, 'observation across leading': 578530, 'across leading commerce': 29374, 'leading commerce retailer': 483693, 'commerce retailer in': 188622, 'retailer in china': 719200, 'in china hong': 421405, 'china hong kong': 176717, 'hong kong japan': 403202, 'kong japan south': 477395, 'japan south korea': 464757, 'south korea and': 786736, 'korea and italy': 477456, 'and italy consumer': 65615, 'italy consumer mrx': 462795, 'consumer mrx ecommerce': 198168, 'made': 507604, 'donation': 254528, 'through': 894283, 'panickbuyinguk': 639230, 'something': 784825, 'box': 136994, 'this morning': 888930, 'morning we': 541533, 'we made': 972315, 'made donation': 507718, 'donation to': 254704, 'to through': 917556, 'through their': 894781, 'their website': 875167, 'website while': 975481, 'while you': 987584, 're out': 699219, 'out panickbuyinguk': 627013, 'panickbuyinguk remember': 639236, 'remember to': 710363, 'put something': 690829, 'something in': 784943, 'the foodbank': 855628, 'foodbank box': 317758, 'box you': 137206, 'you leave': 1019573, 'leave the': 484959, 'supermarket you': 824185, 'you might': 1019848, 'might help': 531026, 'help someone': 390544, 'someone worse': 784800, 'worse off': 1010980, 'off than': 594218, 'than you': 841485, 'you like': 1019604, 'like health': 490406, 'health worker': 386962, 'this morning we': 889036, 'morning we made': 541536, 'we made donation': 972319, 'made donation to': 507719, 'donation to through': 254718, 'to through their': 917557, 'through their website': 894788, 'their website while': 875172, 'website while you': 975483, 'while you re': 987591, 'you re out': 1020695, 're out panickbuyinguk': 699225, 'out panickbuyinguk remember': 627014, 'panickbuyinguk remember to': 639237, 'remember to put': 710381, 'to put something': 912613, 'put something in': 690830, 'something in the': 784946, 'in the foodbank': 429208, 'the foodbank box': 855630, 'foodbank box you': 317759, 'box you leave': 137207, 'you leave the': 1019578, 'leave the supermarket': 484979, 'the supermarket you': 868924, 'supermarket you might': 824199, 'you might help': 1019853, 'might help someone': 531035, 'help someone worse': 390549, 'someone worse off': 784801, 'worse off than': 1010981, 'off than you': 594220, 'than you like': 841493, 'you like health': 1019608, 'like health worker': 490409, 'steal': 799169, 'perpetuate': 652227, 'clear': 181206, 'personal': 652773, 'send': 749807, 'county consumer': 211344, 'consumer protection': 198497, 'protection warning': 685675, 'about scammer': 26147, 'scammer who': 740652, 'who may': 989267, 'may try': 521585, 'to steal': 915358, 'steal stimulus': 799200, 'check or': 174519, 'or perpetuate': 616554, 'perpetuate other': 652228, 'other related': 620826, 'related fraud': 708446, 'fraud county': 331252, 'county ha': 211397, 'ha clear': 370159, 'clear warning': 181382, 'warning for': 967124, 'consumer don': 197238, 'don give': 253551, 'give out': 350633, 'out personal': 627036, 'personal or': 652930, 'or financial': 615308, 'financial information': 306462, 'information don': 437800, 'don send': 253903, 'send money': 749907, 'county consumer protection': 211345, 'consumer protection warning': 198576, 'protection warning resident': 685676, 'resident about scammer': 714241, 'about scammer who': 26149, 'scammer who may': 740655, 'who may try': 989281, 'may try to': 521586, 'try to steal': 934670, 'to steal stimulus': 915366, 'steal stimulus check': 799201, 'stimulus check or': 801524, 'check or perpetuate': 174522, 'or perpetuate other': 616555, 'perpetuate other related': 652229, 'other related fraud': 620828, 'related fraud county': 708450, 'fraud county ha': 331253, 'county ha clear': 211398, 'ha clear warning': 370160, 'clear warning for': 181383, 'warning for consumer': 967126, 'for consumer don': 320252, 'consumer don give': 197239, 'don give out': 253555, 'give out personal': 350635, 'out personal or': 627037, 'personal or financial': 652931, 'or financial information': 615312, 'financial information don': 306463, 'information don send': 437802, 'don send money': 253904, 'mongolian': 537240, 'minfin': 532976, 'mn': 534788, 'loan': 497383, 'interest': 441322, 'postponed': 666791, 'rating': 697581, 'decreased': 231617, 'mongolian gov': 537241, 'gov economic': 359579, 'economic counter': 267026, 'counter measure': 210233, 'measure during': 525187, '19 action': 4801, 'action minfin': 30070, 'minfin and': 532977, 'and mn': 67090, 'mn consumer': 534791, 'consumer loan': 198054, 'loan and': 497386, 'it interest': 458810, 'interest re': 441407, 're payment': 699254, 'payment is': 645660, 'is postponed': 450963, 'postponed for': 666810, 'for 90': 318945, '90 day': 23283, 'day and': 227251, 'and credit': 60728, 'credit rating': 216473, 'rating will': 697606, 'will not': 994183, 'not be': 568345, 'be decreased': 114364, 'decreased during': 231631, 'this period': 889512, 'mongolian gov economic': 537242, 'gov economic counter': 359580, 'economic counter measure': 267027, 'counter measure during': 210234, 'measure during the': 525188, 'during the covid': 263106, 'covid 19 action': 212578, '19 action minfin': 4803, 'action minfin and': 30071, 'minfin and mn': 532978, 'and mn consumer': 67091, 'mn consumer loan': 534792, 'consumer loan and': 198055, 'loan and it': 497389, 'and it interest': 65541, 'it interest re': 458812, 'interest re payment': 441408, 're payment is': 699255, 'payment is postponed': 645662, 'is postponed for': 450964, 'postponed for 90': 666811, 'for 90 day': 318947, '90 day and': 23284, 'day and credit': 227258, 'and credit rating': 60733, 'credit rating will': 216476, 'rating will not': 697607, 'will not be': 994188, 'not be decreased': 568368, 'be decreased during': 114365, 'decreased during this': 231632, 'during this period': 263308, '12': 2755, 'bn': 133564, 'splice': 789645, 'san': 733513, 'francisco': 331093, 'regarding': 707166, 'slowdown': 774415, '12 bn': 2827, 'bn usd': 133573, 'usd to': 948941, 'market splice': 517093, 'splice bn': 789646, 'business in': 143873, 'in san': 427680, 'san francisco': 733532, 'francisco and': 331094, 'and bn': 59033, 'to san': 913743, 'francisco consumer': 331105, 'consumer for': 197517, 'for day': 320563, 'of loss': 586024, 'loss regarding': 503774, 'regarding covid': 707199, '19 slowdown': 10610, 'slowdown to': 774475, 'do panic': 249959, '12 bn usd': 2828, 'bn usd to': 133574, 'usd to market': 948944, 'to market splice': 909859, 'market splice bn': 517094, 'splice bn usd': 789647, 'usd to business': 948942, 'to business in': 902132, 'business in san': 143901, 'in san francisco': 427683, 'san francisco and': 733533, 'francisco and bn': 331095, 'and bn usd': 59034, 'usd to san': 948945, 'to san francisco': 913744, 'san francisco consumer': 733538, 'francisco consumer for': 331106, 'consumer for day': 197519, 'for day of': 320580, 'day of loss': 228081, 'of loss regarding': 586025, 'loss regarding covid': 503775, 'regarding covid 19': 707200, 'covid 19 slowdown': 213815, '19 slowdown to': 10612, 'slowdown to do': 774476, 'to do panic': 904542, 'cpl': 214638, 'philadelphia': 654687, 'btw': 141527, 'trumppandemic': 934107, 'gopbetrayedamerica': 358304, 'trumpfailedamerica': 934045, 'from local': 336245, 'supermarket we': 823740, 're cpl': 698480, 'cpl mile': 214639, 'mile outside': 531406, 'outside of': 629498, 'of philadelphia': 588093, 'philadelphia btw': 654688, 'btw trumppandemic': 141554, 'trumppandemic gopbetrayedamerica': 934110, 'gopbetrayedamerica trumpfailedamerica': 358305, 'from local supermarket': 336259, 'local supermarket we': 498609, 'supermarket we re': 823751, 'we re cpl': 972849, 're cpl mile': 698481, 'cpl mile outside': 214640, 'mile outside of': 531407, 'outside of philadelphia': 629512, 'of philadelphia btw': 588094, 'philadelphia btw trumppandemic': 654689, 'btw trumppandemic gopbetrayedamerica': 141555, 'trumppandemic gopbetrayedamerica trumpfailedamerica': 934111, 'bloody': 133166, 'crazy': 215235, 'stuck': 814576, 'confirmed': 194125, 'book': 134452, 'anywhere': 81081, 'starvation': 795148, 'bloody crazy': 133189, 'crazy currently': 215275, 'currently stuck': 221682, 'stuck at': 814579, 'home with': 402516, 'with confirmed': 997727, 'confirmed trying': 194211, 'to book': 901887, 'book food': 134523, 'food delivery': 314102, 'delivery from': 234041, 'from any': 334543, 'any supermarket': 79887, 'supermarket for': 820378, 'for contact': 320309, 'contact free': 200083, 'free delivery': 331750, 'delivery and': 233654, 'nothing anywhere': 572930, 'anywhere right': 81147, 'right into': 721964, 'into april': 442411, 'april starvation': 83689, 'starvation choice': 795160, 'bloody crazy currently': 133190, 'crazy currently stuck': 215276, 'currently stuck at': 221683, 'stuck at home': 814580, 'at home with': 99174, 'home with confirmed': 402519, 'with confirmed trying': 997730, 'confirmed trying to': 194212, 'trying to book': 934772, 'to book food': 901893, 'book food delivery': 134524, 'food delivery from': 314126, 'delivery from any': 234045, 'from any supermarket': 334555, 'any supermarket for': 79896, 'supermarket for contact': 820385, 'for contact free': 320310, 'contact free delivery': 200085, 'free delivery and': 331751, 'delivery and there': 233683, 'is nothing anywhere': 450230, 'nothing anywhere right': 572931, 'anywhere right into': 81148, 'right into april': 721965, 'into april starvation': 442414, 'april starvation choice': 83690, 'lowest': 506147, 'display': 246182, 'building': 142036, 'outdoors': 628914, 'indoor': 435343, 'spaced': 787205, 'certainly': 170132, 'pose': 665084, 'opinion': 613440, 'update we': 947305, 'we believe': 970847, 'believe we': 126406, 'are one': 88745, 'the lowest': 859804, 'lowest risk': 506221, 'risk site': 723881, 'site all': 771864, 'all our': 43795, 'our display': 622768, 'display building': 246183, 'building are': 142049, 'are outdoors': 88893, 'outdoors and': 628915, 'and our': 68473, 'our indoor': 623530, 'indoor shop': 435359, 'shop is': 760353, 'is large': 449230, 'large and': 479591, 'and well': 75398, 'well spaced': 978573, 'spaced it': 787210, 'would certainly': 1011709, 'certainly pose': 170176, 'pose more': 665103, 'more of': 539865, 'of risk': 589124, 'risk shopping': 723871, 'shopping in': 762950, 'in our': 426257, 'our opinion': 624169, 'update we believe': 947307, 'we believe we': 970851, 'believe we are': 126407, 'we are one': 970645, 'are one of': 88748, 'of the lowest': 591205, 'the lowest risk': 859821, 'lowest risk site': 506222, 'risk site all': 723882, 'site all our': 771865, 'all our display': 43804, 'our display building': 622769, 'display building are': 246184, 'building are outdoors': 142050, 'are outdoors and': 88894, 'outdoors and our': 628916, 'and our indoor': 68496, 'our indoor shop': 623531, 'indoor shop is': 435360, 'shop is large': 760360, 'is large and': 449231, 'large and well': 479593, 'and well spaced': 75409, 'well spaced it': 978574, 'spaced it would': 787211, 'it would certainly': 462586, 'would certainly pose': 1011712, 'certainly pose more': 170177, 'pose more of': 665104, 'more of risk': 539879, 'of risk shopping': 589126, 'risk shopping in': 723872, 'shopping in supermarket': 762989, 'in supermarket in': 428617, 'supermarket in our': 820954, 'in our opinion': 426322, 'europe': 283387, 'rest': 716141, 'doe': 251315, 'spread across': 790387, 'across europe': 29322, 'europe and': 283394, 'the rest': 865630, 'rest of': 716179, 'world so': 1009981, 'so do': 776879, 'do change': 249187, 'change in': 172104, 'behavior but': 123944, 'but what': 147779, 'what doe': 981357, 'doe this': 251629, 'this mean': 888800, 'for our': 324209, 'our economy': 622836, 'economy and': 267635, 'and ecommerce': 61893, 'ecommerce whole': 266895, 'spread across europe': 790389, 'across europe and': 29323, 'europe and the': 283401, 'and the rest': 73549, 'the rest of': 865636, 'rest of the': 716205, 'of the world': 591630, 'the world so': 871967, 'world so do': 1009982, 'so do change': 776880, 'do change in': 249188, 'change in consumer': 172111, 'in consumer behavior': 421684, 'consumer behavior but': 196452, 'behavior but what': 123947, 'but what doe': 147785, 'what doe this': 981372, 'doe this mean': 251639, 'this mean for': 888807, 'mean for our': 524447, 'for our economy': 324231, 'our economy and': 622839, 'economy and ecommerce': 267641, 'and ecommerce whole': 61896, 'alive': 41795, 'issue': 455634, 'gt': 367566, 'say system': 739201, 'system is': 831215, 'is alive': 445446, 'alive and': 41796, 'well call': 978088, 'call worker': 156240, 'worker hero': 1007122, 'hero if': 394009, 'see empty': 745074, 'empty shelf': 275041, 'shelf that': 757636, 'that demand': 843490, 'demand issue': 235750, 'issue not': 455847, 'not supply': 571812, 'supply issue': 825462, 'issue gt': 455772, 'gt gt': 367599, 'say system is': 739202, 'system is alive': 831217, 'is alive and': 445447, 'alive and well': 41801, 'and well call': 75404, 'well call worker': 978089, 'call worker hero': 156241, 'worker hero if': 1007124, 'hero if you': 394010, 'if you see': 415516, 'you see empty': 1021033, 'see empty shelf': 745075, 'empty shelf that': 275095, 'shelf that demand': 757638, 'that demand issue': 843494, 'demand issue not': 235752, 'issue not supply': 455848, 'not supply issue': 571817, 'supply issue gt': 825464, 'issue gt gt': 455773, 'gt gt gt': 367601, 'denmark': 237001, 'in denmark': 422181, 'denmark come': 237008, 'come with': 187673, 'with novel': 999830, 'novel idea': 573785, 'idea to': 413200, 'stop people': 804903, 'people from': 647979, 'from hoarding': 335826, 'hoarding hand': 399350, 'hand sanitizers': 375678, 'supermarket in denmark': 820888, 'in denmark come': 422185, 'denmark come with': 237010, 'come with novel': 187686, 'with novel idea': 999832, 'novel idea to': 573787, 'idea to stop': 413209, 'to stop people': 915554, 'stop people from': 804904, 'people from hoarding': 647994, 'from hoarding hand': 335830, 'hoarding hand sanitizers': 399353, 'waited': 964261, 'yesterday': 1015637, 'curbside': 220612, 'booked': 134652, 'kid': 473841, 'waited almost': 964266, 'almost an': 46545, 'hour yesterday': 406114, 'yesterday in': 1015770, 'in line': 424741, 'line to': 493477, 'get inside': 347341, 'inside the': 439408, 'store socialdistancing': 810248, 'socialdistancing curbside': 780303, 'curbside grocery': 220625, 'grocery service': 364946, 'service are': 752130, 'are booked': 85013, 'booked week': 134689, 'week out': 976710, 'out worried': 627889, 'how front': 407888, 'worker people': 1007555, 'people with': 650429, 'with kid': 999142, 'kid etc': 473938, 'etc are': 282415, 'are supposed': 90666, 'get grocery': 347161, 'grocery these': 366037, 'waited almost an': 964267, 'almost an hour': 46547, 'an hour yesterday': 56110, 'hour yesterday in': 406115, 'yesterday in line': 1015777, 'in line to': 424778, 'line to get': 493485, 'to get inside': 906510, 'get inside the': 347350, 'inside the grocery': 439414, 'grocery store socialdistancing': 365782, 'store socialdistancing curbside': 810250, 'socialdistancing curbside grocery': 780304, 'curbside grocery service': 220627, 'grocery service are': 364948, 'service are booked': 752133, 'are booked week': 85015, 'booked week out': 134691, 'week out worried': 976713, 'out worried about': 627890, 'worried about how': 1010497, 'about how front': 25436, 'how front line': 407889, 'line worker people': 493605, 'worker people with': 1007560, 'people with kid': 650454, 'with kid etc': 999144, 'kid etc are': 473939, 'etc are supposed': 282425, 'are supposed to': 90667, 'supposed to get': 827358, 'to get grocery': 906495, 'get grocery these': 347171, 'grocery these day': 366038, 'joke': 467042, 'lorry': 503330, 'hr': 409590, 'search': 743218, 'trolley': 932352, 'people are': 646913, 'are joke': 87602, 'joke lorry': 467106, 'lorry supermarket': 503354, 'supermarket driver': 820029, 'driver we': 259839, 'are filling': 86555, 'filling the': 305625, 'shelf some': 757532, 'some of': 783387, 'of working': 593293, 'working 15': 1008460, '15 hr': 3732, 'hr day': 409605, 'no time': 565723, 'to search': 913950, 'search supermarket': 743288, 'supermarket stop': 822988, 'stop filling': 804649, 'filling your': 305647, 'your trolley': 1026216, 'trolley it': 932438, 'not needed': 570682, 'needed we': 556575, 'will carry': 992880, 'carry on': 165115, 'hr shift': 409661, 'shift but': 758258, 'but if': 145984, 'if there': 415060, 'left for': 485461, 'for then': 326950, 'people are joke': 647005, 'are joke lorry': 87603, 'joke lorry supermarket': 467107, 'lorry supermarket driver': 503355, 'supermarket driver we': 820031, 'driver we are': 259840, 'we are filling': 970563, 'are filling the': 86558, 'filling the shelf': 305627, 'the shelf some': 866878, 'shelf some of': 757533, 'some of working': 783418, 'of working 15': 593294, 'working 15 hr': 1008462, '15 hr day': 3734, 'hr day and': 409606, 'day and have': 227264, 'and have no': 64260, 'have no time': 381659, 'no time to': 565728, 'time to search': 898059, 'to search supermarket': 913953, 'search supermarket stop': 743289, 'supermarket stop filling': 822990, 'stop filling your': 804652, 'filling your trolley': 305649, 'your trolley it': 1026219, 'trolley it not': 932439, 'it not needed': 459900, 'not needed we': 570684, 'needed we will': 556576, 'we will carry': 973841, 'will carry on': 992882, 'carry on working': 165132, 'on working 15': 605374, '15 hr shift': 3737, 'hr shift but': 409662, 'shift but if': 758260, 'but if there': 145999, 'if there is': 415070, 'nothing left for': 573084, 'left for then': 485470, 'damage': 225172, 'unemployed': 941098, '100': 1777, 'innocent': 438821, 'lost': 503806, 'negative': 556730, 'column': 186899, 'didn': 240968, 'immediate': 416956, 'markt': 517939, 'dow': 256313, 'jones': 467236, '6179': 21209, '21': 14944, '23': 15350, '390': 18183, 'trump damage': 933503, 'damage the': 225226, 'country continues': 210556, 'continues million': 201419, 'million unemployed': 532402, 'unemployed 100': 941099, '100 of': 1977, 'of innocent': 585210, 'innocent life': 438822, 'life lost': 488858, 'lost consumer': 503835, 'consumer spending': 199040, 'the negative': 861416, 'negative column': 556739, 'column he': 186903, 'he didn': 384878, 'didn take': 241224, 'take immediate': 832212, 'immediate action': 416960, 'action on': 30092, '19 protect': 9851, 'protect the': 684962, 'the markt': 860198, 'markt but': 517940, 'but dow': 145608, 'dow jones': 256326, 'jones is': 467251, 'still down': 800459, 'down 6179': 256431, '6179 point': 21210, 'point since': 662622, 'since feb': 770583, 'feb or': 301656, 'is 21': 445187, '21 down': 14998, 'down at': 256533, 'at 23': 97535, '23 390': 15371, 'trump damage the': 933504, 'damage the country': 225227, 'the country continues': 852059, 'country continues million': 210557, 'continues million unemployed': 201420, 'million unemployed 100': 532403, 'unemployed 100 of': 941100, '100 of innocent': 1984, 'of innocent life': 585211, 'innocent life lost': 438823, 'life lost consumer': 488859, 'lost consumer spending': 503836, 'consumer spending in': 199070, 'in the negative': 429386, 'the negative column': 861417, 'negative column he': 556740, 'column he didn': 186904, 'he didn take': 384885, 'didn take immediate': 241225, 'take immediate action': 832213, 'immediate action on': 416962, 'action on the': 30096, 'on the covid': 604048, 'covid 19 protect': 213622, '19 protect the': 9852, 'protect the markt': 684975, 'the markt but': 860199, 'markt but dow': 517941, 'but dow jones': 145609, 'dow jones is': 256329, 'jones is still': 467252, 'is still down': 452273, 'still down 6179': 800460, 'down 6179 point': 256432, '6179 point since': 21211, 'point since feb': 662625, 'since feb or': 770586, 'feb or is': 301657, 'or is 21': 615826, 'is 21 down': 445188, '21 down at': 14999, 'down at 23': 256534, 'at 23 390': 97537, 'near': 553448, 'mumbai': 545988, 'mumbailockdown': 546042, 'shelf in': 757183, 'in every': 422671, 'every grocery': 285919, 'store near': 809034, 'near me': 553535, 'me next': 523214, 'to empty': 905027, 'empty after': 274741, 'the announcement': 848755, 'announcement that': 77205, 'that mumbai': 845254, 'mumbai is': 546008, 'on lockdown': 601902, 'lockdown mumbailockdown': 499677, 'shelf in every': 757193, 'in every grocery': 422679, 'every grocery store': 285920, 'grocery store near': 365585, 'store near me': 809037, 'near me next': 553541, 'me next to': 523215, 'next to empty': 561618, 'to empty after': 905028, 'empty after the': 274742, 'after the announcement': 36283, 'the announcement that': 848761, 'announcement that mumbai': 77208, 'that mumbai is': 845255, 'mumbai is going': 546009, 'is going on': 448096, 'going on lockdown': 355327, 'on lockdown mumbailockdown': 601917, '11': 2428, 'asimanshidebut': 95454, 'coronainpakistan': 205003, 'blogging': 133068, 'bloggersrequired': 133062, 'filmtwitter': 305745, '11 safe': 2590, 'safe online': 729852, 'shopping tip': 764152, 'tip onlineshopping': 898866, 'onlineshopping asimanshidebut': 609883, 'asimanshidebut coronainpakistan': 95455, 'coronainpakistan blogging': 205004, 'blogging bloggersrequired': 133073, 'bloggersrequired filmtwitter': 133063, 'filmtwitter corona': 305746, '11 safe online': 2591, 'safe online shopping': 729854, 'online shopping tip': 609311, 'shopping tip onlineshopping': 764159, 'tip onlineshopping asimanshidebut': 898867, 'onlineshopping asimanshidebut coronainpakistan': 609884, 'asimanshidebut coronainpakistan blogging': 95456, 'coronainpakistan blogging bloggersrequired': 205005, 'blogging bloggersrequired filmtwitter': 133074, 'bloggersrequired filmtwitter corona': 133064, 'shopkeeper': 761167, 'immigrant': 417207, 'actor': 30556, 'teacher': 835417, 'celebrity': 168870, 'journalist': 467418, 'lefty': 485795, 'politician': 663697, 'moaning': 534896, 'sport': 789893, 'utility': 951255, 'who bad': 988292, 'bad and': 107758, 'and who': 75581, 'who good': 988803, 'good bad': 356809, 'bad muslim': 107944, 'muslim muslim': 546433, 'muslim shopkeeper': 546440, 'shopkeeper immigrant': 761180, 'immigrant medium': 417229, 'medium actor': 526973, 'actor teacher': 30599, 'teacher celebrity': 835442, 'celebrity journalist': 168890, 'journalist lefty': 467443, 'lefty politician': 485796, 'politician some': 663741, 'some moaning': 783301, 'moaning sport': 534907, 'sport people': 789962, 'people good': 648110, 'good supermarket': 357798, 'worker nh': 1007435, 'nh staff': 562073, 'staff engineer': 792408, 'engineer distribution': 276960, 'distribution staff': 248226, 'staff lorry': 792630, 'lorry driver': 503338, 'driver utility': 259825, 'utility etc': 951283, 'who bad and': 988293, 'bad and who': 107763, 'and who good': 75587, 'who good bad': 988804, 'good bad muslim': 356810, 'bad muslim muslim': 107945, 'muslim muslim shopkeeper': 546434, 'muslim shopkeeper immigrant': 546441, 'shopkeeper immigrant medium': 761181, 'immigrant medium actor': 417230, 'medium actor teacher': 526974, 'actor teacher celebrity': 30600, 'teacher celebrity journalist': 835443, 'celebrity journalist lefty': 168891, 'journalist lefty politician': 467444, 'lefty politician some': 485797, 'politician some moaning': 663742, 'some moaning sport': 783302, 'moaning sport people': 534908, 'sport people good': 789963, 'people good supermarket': 648112, 'good supermarket worker': 357800, 'supermarket worker nh': 824054, 'worker nh staff': 1007440, 'nh staff engineer': 562088, 'staff engineer distribution': 792409, 'engineer distribution staff': 276961, 'distribution staff lorry': 248227, 'staff lorry driver': 792631, 'lorry driver utility': 503345, 'driver utility etc': 259826, 'preparing': 670319, 'rationing': 697785, 'clearly': 181481, 'aren': 92301, 'restocking': 716979, 'ocado': 578877, 'reconfiguring': 704870, 'govt preparing': 361241, 'preparing for': 670325, 'for rationing': 324967, 'rationing supermarket': 697874, 'supermarket clearly': 819708, 'clearly aren': 181486, 'aren restocking': 92507, 'restocking ocado': 717012, 'ocado is': 578901, 'is reconfiguring': 451357, 'reconfiguring their': 704871, 'their system': 874937, 'system rationing': 831297, 'is the govt': 452811, 'the govt preparing': 856670, 'govt preparing for': 361242, 'preparing for rationing': 670334, 'for rationing supermarket': 324968, 'rationing supermarket clearly': 697875, 'supermarket clearly aren': 819709, 'clearly aren restocking': 181487, 'aren restocking ocado': 92508, 'restocking ocado is': 717013, 'ocado is reconfiguring': 578902, 'is reconfiguring their': 451358, 'reconfiguring their system': 704872, 'their system rationing': 874938, 'nice': 562330, 'calm': 156674, 'chat': 173922, 'nice calm': 562361, 'calm chat': 156709, 'chat toiletpaper': 173968, 'nice calm chat': 562362, 'calm chat toiletpaper': 156710, 'delighted': 233044, 'garden': 343571, 'entry': 278980, 'hse': 409723, 'gps': 361431, 'pharmacist': 654104, 'are delighted': 85757, 'delighted to': 233047, 'to offer': 910821, 'offer free': 594623, 'free garden': 331868, 'garden entry': 343587, 'entry for': 278994, 'for hse': 322429, 'hse staff': 409730, 'staff and': 792121, 'and covid': 60662, '19 frontline': 7145, 'worker including': 1007219, 'including but': 431895, 'not limited': 570412, 'limited to': 492765, 'to gps': 906952, 'gps pharmacist': 361441, 'pharmacist and': 654109, 'and supermarket': 72700, 'supermarket employee': 820106, 'employee while': 274416, 'while the': 987370, 'crisis continues': 217246, 'continues more': 201421, 'more info': 539543, 'we are delighted': 970523, 'are delighted to': 85758, 'delighted to offer': 233050, 'to offer free': 910834, 'offer free garden': 594625, 'free garden entry': 331869, 'garden entry for': 343588, 'entry for hse': 278995, 'for hse staff': 322430, 'hse staff and': 409732, 'staff and covid': 792134, 'and covid 19': 60663, 'covid 19 frontline': 213127, '19 frontline worker': 7148, 'frontline worker including': 338867, 'worker including but': 1007221, 'including but not': 431896, 'but not limited': 146544, 'not limited to': 570415, 'limited to gps': 492772, 'to gps pharmacist': 906954, 'gps pharmacist and': 361442, 'pharmacist and supermarket': 654115, 'and supermarket employee': 72717, 'supermarket employee while': 820150, 'employee while the': 274418, 'while the crisis': 987380, 'the crisis continues': 852360, 'crisis continues more': 217249, 'continues more info': 201422, 'tesco': 838648, '00pm': 688, '17': 4294, '13': 3150, 'image': 416616, 'pasta': 643665, 'noodle': 566778, 'cereal': 169913, 'tea': 835328, 'unpublished': 943272, 'beer': 122421, 'trash': 930123, 'batch': 112574, 'cat': 166824, 'blond': 133089, 'potato': 666898, 'panicshopping': 639413, 'panicbuyinguk': 639127, 'local tesco': 498638, 'tesco at': 838674, 'at 00pm': 97361, '00pm on': 695, 'on 17': 599021, '17 march': 4354, 'march 2020': 515142, '2020 took': 14672, 'took 13': 925192, '13 image': 3218, 'image of': 416643, 'of empty': 583087, 'of toilet': 592248, 'paper paper': 640576, 'towel pasta': 927366, 'pasta noodle': 643762, 'noodle cereal': 566790, 'cereal tea': 169944, 'tea unpublished': 835381, 'unpublished beer': 943273, 'beer trash': 122524, 'trash bag': 930131, 'bag two': 108438, 'two batch': 936797, 'batch of': 112577, 'of canned': 581105, 'canned cat': 161500, 'cat food': 166858, 'food blond': 313758, 'blond beer': 133090, 'beer and': 122424, 'and potato': 69248, 'potato panicshopping': 666961, 'panicshopping panicbuyinguk': 639445, 'panicbuyinguk panic': 639141, 'panic toiletpaper': 638726, 'my local tesco': 549147, 'local tesco at': 498639, 'tesco at 00pm': 838675, 'at 00pm on': 97364, '00pm on 17': 696, 'on 17 march': 599023, '17 march 2020': 4355, 'march 2020 took': 515167, '2020 took 13': 14673, 'took 13 image': 925193, '13 image of': 3219, 'image of empty': 416644, 'of empty shelf': 583093, 'empty shelf of': 275081, 'shelf of toilet': 757372, 'of toilet paper': 592252, 'toilet paper paper': 921386, 'paper paper towel': 640577, 'paper towel pasta': 641007, 'towel pasta noodle': 927368, 'pasta noodle cereal': 643763, 'noodle cereal tea': 566791, 'cereal tea unpublished': 169946, 'tea unpublished beer': 835382, 'unpublished beer trash': 943274, 'beer trash bag': 122525, 'trash bag two': 930135, 'bag two batch': 108439, 'two batch of': 936798, 'batch of canned': 112578, 'of canned cat': 581106, 'canned cat food': 161501, 'cat food blond': 166861, 'food blond beer': 313759, 'blond beer and': 133091, 'beer and potato': 122430, 'and potato panicshopping': 69251, 'potato panicshopping panicbuyinguk': 666962, 'panicshopping panicbuyinguk panic': 639447, 'panicbuyinguk panic toiletpaper': 639142, 'bread': 138377, 'staysafestayhome': 798988, 'irelandlockdown': 444856, 'me going': 522821, 'going down': 355112, 'down the': 257261, 'supermarket earlier': 820070, 'earlier for': 264444, 'some bread': 782429, 'bread milk': 138526, 'milk selfisolating': 531809, 'selfisolating coronacrisis': 748412, 'coronacrisis staysafestayhome': 204779, 'staysafestayhome irelandlockdown': 798999, 'me going down': 522823, 'going down the': 355123, 'down the local': 257287, 'local supermarket earlier': 498520, 'supermarket earlier for': 820071, 'earlier for some': 264445, 'for some bread': 325732, 'some bread milk': 782430, 'bread milk selfisolating': 138535, 'milk selfisolating coronacrisis': 531810, 'selfisolating coronacrisis staysafestayhome': 748413, 'coronacrisis staysafestayhome irelandlockdown': 204780, 'insane': 439023, 'normally': 567475, '270': 16324, 'ridiculous': 721507, 'guelph': 367940, 'sundaythoughts': 818335, 'pricegouging': 677781, 'grocery price': 364869, 'are insane': 87544, 'insane normally': 439052, 'normally spend': 567540, 'spend 180': 788554, '180 200': 4614, '200 week': 13556, 'week for': 976220, 'my family': 548182, 'family of': 298091, 'of just': 585566, 'just spent': 469845, 'spent 270': 789084, '270 this': 16329, 'is without': 454018, 'buying meat': 150709, 'meat fucking': 525591, 'fucking ridiculous': 339984, 'ridiculous guelph': 721546, 'guelph grocery': 367941, 'grocery sundaythoughts': 365989, 'sundaythoughts pricegouging': 818344, 'grocery price are': 364870, 'price are insane': 672686, 'are insane normally': 87545, 'insane normally spend': 439053, 'normally spend 180': 567541, 'spend 180 200': 788555, '180 200 week': 4615, '200 week for': 13557, 'week for my': 976231, 'for my family': 323705, 'my family of': 548216, 'family of just': 298100, 'of just spent': 585576, 'just spent 270': 469846, 'spent 270 this': 789085, '270 this is': 16330, 'this is without': 888470, 'is without buying': 454019, 'without buying meat': 1002532, 'buying meat fucking': 150711, 'meat fucking ridiculous': 525592, 'fucking ridiculous guelph': 339985, 'ridiculous guelph grocery': 721547, 'guelph grocery sundaythoughts': 367942, 'grocery sundaythoughts pricegouging': 365990, 'caroline': 164854, 'experience': 291301, 'caroline share': 164857, 'share her': 755020, 'her first': 392045, 'first online': 308833, 'online grocery': 608310, 'shopping experience': 762604, 'experience with': 291540, 'caroline share her': 164858, 'share her first': 755023, 'her first online': 392047, 'first online grocery': 308834, 'online grocery shopping': 608331, 'grocery shopping experience': 365020, 'shopping experience with': 762622, 'reduction': 706345, 'rs15': 726682, 'liter': 494916, 'petroleum': 653807, 'approved': 83123, 'reduction of': 706384, 'of rs15': 589169, 'rs15 per': 726685, 'per liter': 650915, 'liter in': 494925, 'in price': 426943, 'of petroleum': 588081, 'petroleum product': 653833, 'product also': 680846, 'also approved': 47876, 'approved 19': 83124, 'reduction of rs15': 706392, 'of rs15 per': 589170, 'rs15 per liter': 726686, 'per liter in': 650918, 'liter in price': 494927, 'in price of': 426976, 'price of petroleum': 675534, 'of petroleum product': 588083, 'petroleum product also': 653834, 'product also approved': 680847, 'also approved 19': 47877, 'show': 766834, 'network': 557690, 'explosion': 292556, 'rocked': 724935, 'ferry': 303570, 'wirral': 996593, 'council': 209953, 'nosey': 567953, 'liverpool': 496236, 'littlewood': 495690, 'hollywood': 400446, '30pm': 17500, 'bbc1': 113113, 'monday show': 536381, 'show covid': 766912, 'of panic': 587715, 'buying on': 150806, 'on our': 602568, 'our food': 623097, 'distribution network': 248167, 'network year': 557784, 'year after': 1014342, 'after gas': 35697, 'gas explosion': 343843, 'explosion rocked': 292564, 'rocked new': 724943, 'new ferry': 558731, 'ferry local': 303573, 'local say': 498368, 'they ve': 883634, 've been': 952858, 'been let': 121451, 'let down': 486688, 'down by': 256588, 'by wirral': 154754, 'wirral council': 996594, 'council and': 209958, 'and nosey': 67708, 'nosey around': 567954, 'around liverpool': 93382, 'liverpool littlewood': 496248, 'littlewood building': 495691, 'building future': 142082, 'future hollywood': 342356, 'hollywood of': 400464, 'the north': 861869, 'north 30pm': 567598, '30pm bbc1': 17505, 'monday show covid': 536382, 'show covid 19': 766913, '19 the impact': 11208, 'impact of panic': 417792, 'of panic buying': 587723, 'panic buying on': 637828, 'buying on our': 150809, 'on our food': 602600, 'our food distribution': 623106, 'food distribution network': 314231, 'distribution network year': 248168, 'network year after': 557785, 'year after gas': 1014344, 'after gas explosion': 35698, 'gas explosion rocked': 343844, 'explosion rocked new': 292565, 'rocked new ferry': 724944, 'new ferry local': 558732, 'ferry local say': 303574, 'local say they': 498369, 'say they ve': 739351, 'they ve been': 883638, 've been let': 952902, 'been let down': 121452, 'let down by': 486689, 'down by wirral': 256607, 'by wirral council': 154755, 'wirral council and': 996595, 'council and nosey': 209959, 'and nosey around': 67709, 'nosey around liverpool': 567955, 'around liverpool littlewood': 93383, 'liverpool littlewood building': 496249, 'littlewood building future': 495692, 'building future hollywood': 142083, 'future hollywood of': 342357, 'hollywood of the': 400465, 'of the north': 591278, 'the north 30pm': 861870, 'north 30pm bbc1': 567599, 'play': 659110, 'main': 508723, 'iran': 444663, 'hey': 394307, 'wrong': 1012982, 'heard': 388042, 'yes covid': 1015412, '19 doe': 6603, 'doe play': 251555, 'play into': 659177, 'the the': 869370, 'the gas': 856166, 'gas price': 343922, 'price little': 675073, 'little but': 495276, 'the main': 859897, 'main reason': 508807, 'reason is': 702941, 'is because': 446016, 'of oil': 587174, 'oil war': 597500, 'war between': 966374, 'between iran': 128807, 'iran and': 444668, 'and russia': 70658, 'russia hey': 728495, 'hey could': 394354, 'be wrong': 118167, 'wrong but': 1013004, 'that what': 847454, 'what heard': 981593, 'yes covid 19': 1015413, 'covid 19 doe': 212971, '19 doe play': 6606, 'doe play into': 251556, 'play into the': 659178, 'into the the': 443180, 'the the gas': 869382, 'the gas price': 856171, 'gas price little': 343989, 'price little but': 675074, 'little but the': 495278, 'but the main': 147356, 'the main reason': 859911, 'main reason is': 508810, 'reason is because': 702942, 'is because of': 446019, 'because of oil': 119382, 'of oil war': 587196, 'oil war between': 597502, 'war between iran': 966377, 'between iran and': 128808, 'iran and russia': 444671, 'and russia hey': 70671, 'russia hey could': 728496, 'hey could be': 394355, 'could be wrong': 208945, 'be wrong but': 118168, 'wrong but that': 1013008, 'but that what': 147304, 'that what heard': 847462, 'hi': 394583, 'fargo': 299049, 'committed': 189028, 'helping': 391256, 'hardship': 378268, 'trained': 929294, 'specialist': 788112, 'lending': 486267, 'small': 774770, 'deposit': 237490, 'hi there': 394748, 'there well': 879301, 'well fargo': 978236, 'fargo is': 299054, 'is committed': 446672, 'committed to': 189035, 'to helping': 907673, 'helping customer': 391299, 'customer experiencing': 222358, 'experiencing hardship': 291653, 'hardship from': 378292, 'from covid': 335048, 'you or': 1020220, 'or someone': 617154, 'someone you': 784806, 'you know': 1019476, 'know need': 476618, 'need support': 555684, 'support trained': 826964, 'trained specialist': 929301, 'specialist are': 788116, 'are available': 84703, 'available to': 104637, 'discus consumer': 244835, 'consumer lending': 198029, 'lending small': 486292, 'small business': 774832, 'and deposit': 61225, 'deposit product': 237510, 'product at': 680960, 'hi there well': 394757, 'there well fargo': 879302, 'well fargo is': 978239, 'fargo is committed': 299055, 'is committed to': 446673, 'committed to helping': 189040, 'to helping customer': 907674, 'helping customer experiencing': 391300, 'customer experiencing hardship': 222359, 'experiencing hardship from': 291655, 'hardship from covid': 378293, 'from covid 19': 335049, 'if you or': 415487, 'you or someone': 1020226, 'or someone you': 617158, 'someone you know': 784807, 'you know need': 1019512, 'know need support': 476622, 'need support trained': 555692, 'support trained specialist': 826965, 'trained specialist are': 929303, 'specialist are available': 788117, 'are available to': 84721, 'available to discus': 104642, 'to discus consumer': 904372, 'discus consumer lending': 244839, 'consumer lending small': 198033, 'lending small business': 486296, 'small business and': 774837, 'business and deposit': 143296, 'and deposit product': 61227, 'deposit product at': 237511, 'pet': 653346, 'canceled': 160911, 'autoship': 104079, 'ignorant': 415767, 'sometimes': 785183, 'suck': 816885, 'petfoodshortages': 653582, 'do people': 249966, 'have to': 383146, 'be idiot': 115345, 'and hoard': 64630, 'hoard pet': 398850, 'pet supply': 653462, 'supply canceled': 824882, 'canceled my': 160941, 'my monthly': 549303, 'monthly autoship': 538160, 'autoship order': 104080, 'order because': 618073, 'because ignorant': 119148, 'ignorant people': 415791, 'people bought': 647293, 'bought all': 136486, 'all my': 43536, 'my cat': 547642, 'wa out': 962875, 'of stock': 590133, 'stock for': 802161, 'least week': 484693, 'week sometimes': 976899, 'sometimes people': 785225, 'can really': 159386, 'really suck': 702630, 'suck petfoodshortages': 816917, 'why do people': 990935, 'do people have': 249972, 'people have to': 648207, 'have to be': 383161, 'to be idiot': 901321, 'be idiot and': 115346, 'idiot and hoard': 413450, 'and hoard pet': 64635, 'hoard pet supply': 398851, 'pet supply canceled': 653463, 'supply canceled my': 824883, 'canceled my monthly': 160943, 'my monthly autoship': 549304, 'monthly autoship order': 538161, 'autoship order because': 104081, 'order because ignorant': 618074, 'because ignorant people': 119149, 'ignorant people bought': 415792, 'people bought all': 647294, 'bought all my': 136487, 'all my cat': 43545, 'my cat food': 547645, 'cat food and': 166860, 'food and it': 313262, 'it wa out': 462167, 'wa out of': 962879, 'out of stock': 626840, 'of stock for': 590164, 'stock for at': 802164, 'at least week': 99566, 'least week sometimes': 484699, 'week sometimes people': 976900, 'sometimes people can': 785226, 'people can really': 647406, 'can really suck': 159390, 'really suck petfoodshortages': 702632, 'silver': 769782, 'lining': 493726, 'kidding': 474199, 'brutal': 141398, 'ha silver': 371944, 'silver lining': 769818, 'lining petrol': 493752, 'petrol price': 653756, 'are low': 87916, 'low are': 505142, 'you kidding': 1019461, 'kidding me': 474204, 'me brutal': 522530, '19 ha silver': 7388, 'ha silver lining': 371945, 'silver lining petrol': 769827, 'lining petrol price': 493753, 'petrol price are': 653758, 'price are low': 672695, 'are low are': 87921, 'low are you': 505144, 'are you kidding': 91816, 'you kidding me': 1019462, 'kidding me brutal': 474205, 'swear': 830022, 'dumb': 262090, 'condom': 193597, 'breed': 139263, 'chloroquine': 177582, 'earthquake': 265033, 'plus will': 661723, 'will there': 995170, 'there be': 878208, 'be anywhere': 113656, 'anywhere open': 81137, 'open to': 612588, 'cash them': 166344, 'them swear': 876358, 'swear people': 830037, 'are dumb': 86020, 'dumb next': 262103, 'next time': 561601, 'are at': 84659, 'store please': 809580, 'please panic': 660272, 'panic buy': 637457, 'buy some': 149193, 'some condom': 782584, 'condom so': 193611, 'not breed': 568617, 'breed stayathome': 139274, 'stayathome toiletpapercrisis': 797688, 'toiletpapercrisis toiletpaper': 923078, 'toiletpaper 19': 921667, '19 chloroquine': 5806, 'chloroquine stayhome': 177628, 'stayhome earthquake': 797992, 'earthquake iran': 265039, 'plus will there': 661724, 'will there be': 995171, 'there be anywhere': 878211, 'be anywhere open': 113657, 'anywhere open to': 81138, 'open to cash': 612590, 'to cash them': 902481, 'cash them swear': 166345, 'them swear people': 876359, 'swear people are': 830038, 'people are dumb': 646959, 'are dumb next': 86023, 'dumb next time': 262104, 'next time you': 561611, 'you are at': 1017066, 'are at the': 84685, 'at the store': 101112, 'the store please': 868082, 'store please panic': 809590, 'please panic buy': 660273, 'panic buy some': 637529, 'buy some condom': 149200, 'some condom so': 782586, 'condom so you': 193612, 'so you do': 778838, 'do not breed': 249684, 'not breed stayathome': 568618, 'breed stayathome toiletpapercrisis': 139275, 'stayathome toiletpapercrisis toiletpaper': 797689, 'toiletpapercrisis toiletpaper 19': 923079, 'toiletpaper 19 chloroquine': 921670, '19 chloroquine stayhome': 5807, 'chloroquine stayhome earthquake': 177629, 'stayhome earthquake iran': 797993, 'dodging': 251292, 'dodging at': 251295, 'supermarket today': 823427, 'dodging at the': 251296, 'the supermarket today': 868863, 'outlet': 629018, 'upkaar': 947580, 'stn': 801741, 'assam': 96292, 'alongwith': 47114, 'download': 257574, 'bluetooth': 133508, 'tracker': 928257, 'app': 81664, 'join': 466655, 'android': 76223, 'io': 444421, 'our retail': 624629, 'retail outlet': 718367, 'outlet upkaar': 629070, 'upkaar filling': 947581, 'filling stn': 305623, 'stn in': 801742, 'in assam': 420535, 'assam alongwith': 96293, 'alongwith many': 47115, 'more others': 539969, 'others across': 621240, 'are helping': 87089, 'customer to': 222953, 'to download': 904690, 'download bluetooth': 257584, 'bluetooth based': 133509, 'based covid': 111548, '19 tracker': 11534, 'tracker app': 928262, 'app download': 81697, 'download amp': 257577, 'amp join': 54034, 'join against': 466665, 'against 19': 37298, '19 android': 5145, 'android io': 76230, 'our retail outlet': 624636, 'retail outlet upkaar': 718371, 'outlet upkaar filling': 629071, 'upkaar filling stn': 947582, 'filling stn in': 305624, 'stn in assam': 801743, 'in assam alongwith': 420536, 'assam alongwith many': 96294, 'alongwith many more': 47116, 'many more others': 514312, 'more others across': 539970, 'others across the': 621241, 'the country are': 852049, 'country are helping': 210467, 'are helping customer': 87092, 'helping customer to': 391302, 'customer to download': 222960, 'to download bluetooth': 904691, 'download bluetooth based': 257585, 'bluetooth based covid': 133510, 'based covid 19': 111549, 'covid 19 tracker': 213973, '19 tracker app': 11535, 'tracker app download': 928263, 'app download amp': 81698, 'download amp join': 257578, 'amp join against': 54035, 'join against 19': 466666, 'against 19 android': 37300, '19 android io': 5146, 'exposed': 292824, 'capitalist': 162794, 'hypocrisy': 412396, 'toward': 927101, 'shutting': 768241, 'west': 980447, 'inundated': 443540, 'worry': 1010621, 'narrative': 551935, 'growth': 367332, 'mattered': 520675, 'stopping': 805791, 'the exposed': 854746, 'exposed the': 292874, 'the capitalist': 850364, 'capitalist system': 162819, 'system and': 831091, 'our hypocrisy': 623499, 'hypocrisy toward': 412403, 'toward instead': 927133, 'instead of': 440226, 'of business': 580941, 'business shutting': 144380, 'shutting down': 768250, 'down we': 257441, 'we in': 972066, 'capitalist west': 162827, 'west were': 980548, 'were inundated': 979804, 'inundated with': 443545, 'with worry': 1002128, 'worry about': 1010623, 'about the': 26327, 'the narrative': 861204, 'narrative growth': 551943, 'growth and': 367339, 'and consumer': 60341, 'sentiment if': 750941, 'if those': 415175, 'those mattered': 892196, 'mattered more': 520676, 'than stopping': 841172, 'stopping pandemic': 805819, 'the exposed the': 854747, 'exposed the capitalist': 292875, 'the capitalist system': 850366, 'capitalist system and': 162820, 'system and our': 831101, 'and our hypocrisy': 68494, 'our hypocrisy toward': 623500, 'hypocrisy toward instead': 412404, 'toward instead of': 927134, 'instead of business': 440240, 'of business shutting': 580968, 'business shutting down': 144381, 'shutting down we': 768280, 'down we in': 257446, 'we in the': 972069, 'in the capitalist': 429055, 'the capitalist west': 850367, 'capitalist west were': 162828, 'west were inundated': 980549, 'were inundated with': 979805, 'inundated with worry': 443549, 'with worry about': 1002129, 'worry about the': 1010656, 'about the narrative': 26457, 'the narrative growth': 861205, 'narrative growth and': 551944, 'growth and consumer': 367342, 'and consumer sentiment': 60428, 'consumer sentiment if': 198914, 'sentiment if those': 750942, 'if those mattered': 415177, 'those mattered more': 892197, 'mattered more than': 520677, 'more than stopping': 540677, 'than stopping pandemic': 841173, 'behavioural': 124570, 'portlaoise': 665044, 'latex': 481611, 'mad': 507514, 'brilliant': 139834, 'general': 345270, 'rowed': 726593, 'behind': 124588, 'effort': 269458, 'tackle': 831555, 'there behavioural': 878241, 'behavioural change': 124571, 'change and': 171911, 'and then': 73736, 'then there': 877633, 'there 80': 877947, '80 of': 22601, 'of customer': 582263, 'customer in': 222487, 'in portlaoise': 426845, 'portlaoise supermarket': 665045, 'supermarket wearing': 823762, 'wearing latex': 974671, 'latex glove': 481614, 'glove doing': 352656, 'doing their': 252732, 'their shopping': 874709, 'shopping according': 761880, 'to one': 910909, 'friend anyway': 333518, 'anyway mad': 81025, 'mad but': 507532, 'but brilliant': 145316, 'brilliant how': 139853, 'how the': 408798, 'the general': 856202, 'general public': 345443, 'public have': 688051, 'have rowed': 382361, 'rowed in': 726594, 'in behind': 420762, 'behind the': 124706, 'the government': 856501, 'government effort': 360053, 'effort to': 269608, 'to tackle': 916122, 'there behavioural change': 878242, 'behavioural change and': 124572, 'change and then': 171926, 'and then there': 73816, 'then there 80': 877634, 'there 80 of': 877948, '80 of customer': 22603, 'of customer in': 582274, 'customer in portlaoise': 222502, 'in portlaoise supermarket': 426846, 'portlaoise supermarket wearing': 665046, 'supermarket wearing latex': 823764, 'wearing latex glove': 974672, 'latex glove doing': 481618, 'glove doing their': 352657, 'doing their shopping': 252740, 'their shopping according': 874710, 'shopping according to': 761881, 'according to one': 28572, 'to one of': 910916, 'one of my': 606755, 'of my friend': 586772, 'my friend anyway': 548421, 'friend anyway mad': 333519, 'anyway mad but': 81026, 'mad but brilliant': 507533, 'but brilliant how': 145317, 'brilliant how the': 139854, 'how the general': 408827, 'the general public': 856206, 'general public have': 345451, 'public have rowed': 688056, 'have rowed in': 382362, 'rowed in behind': 726595, 'in behind the': 420763, 'behind the government': 124714, 'the government effort': 856531, 'government effort to': 360055, 'effort to tackle': 269652, 'ncis': 553323, 'civilian': 179569, 'enforcement': 276731, 'external': 293346, 'noted': 572866, 'multiple': 545725, 'attempt': 102213, 'ncis civilian': 553324, 'civilian law': 179572, 'law enforcement': 482262, 'enforcement well': 276796, 'well external': 978232, 'external government': 293347, 'government agency': 359842, 'agency have': 38019, 'have noted': 381702, 'noted multiple': 572869, 'multiple attempt': 545728, 'attempt to': 102234, 'to scam': 913861, 'scam the': 740402, 'public regarding': 688265, '19 learn': 8295, 'learn more': 484010, 'more about': 538493, 'avoid covid': 105063, '19 related': 10040, 'scam at': 740062, 'ncis civilian law': 553325, 'civilian law enforcement': 179573, 'law enforcement well': 482280, 'enforcement well external': 276797, 'well external government': 978233, 'external government agency': 293348, 'government agency have': 359844, 'agency have noted': 38020, 'have noted multiple': 381703, 'noted multiple attempt': 572870, 'multiple attempt to': 545729, 'attempt to scam': 102258, 'to scam the': 913869, 'scam the public': 740406, 'the public regarding': 864851, 'public regarding covid': 688266, 'covid 19 learn': 213344, '19 learn more': 8297, 'learn more about': 484013, 'more about how': 538510, 'about how to': 25482, 'how to avoid': 408979, 'to avoid covid': 900883, 'avoid covid 19': 105064, 'covid 19 related': 213681, '19 related scam': 10067, 'related scam at': 708547, 'convenient': 202386, 'sit': 771807, 'arm': 92874, 'adoption': 32711, 'amazonsmile': 51258, 'choose': 177874, 'charity': 173556, 'portion': 665017, 'proceeds': 679848, 'online is': 608429, 'is so': 451993, 'so convenient': 776791, 'convenient especially': 202398, 'especially we': 280654, 'we sit': 973327, 'sit out': 771836, 'the you': 872197, 'can help': 158601, 'help open': 390194, 'open arm': 612091, 'arm adoption': 92878, 'adoption every': 32714, 'every time': 286299, 'you shop': 1021156, 'shop through': 760931, 'through amazonsmile': 894315, 'amazonsmile and': 51261, 'and choose': 59874, 'choose your': 177925, 'your charity': 1023184, 'charity will': 173719, 'will donate': 993237, 'donate portion': 254220, 'portion of': 665020, 'the proceeds': 864541, 'proceeds to': 679860, 'shopping online is': 763449, 'online is so': 608434, 'is so convenient': 451999, 'so convenient especially': 776792, 'convenient especially we': 202399, 'especially we sit': 280655, 'we sit out': 973329, 'sit out the': 771837, 'out the you': 627444, 'the you can': 872198, 'you can help': 1017692, 'can help open': 158641, 'help open arm': 390195, 'open arm adoption': 612092, 'arm adoption every': 92879, 'adoption every time': 32715, 'every time you': 286328, 'time you shop': 898418, 'you shop through': 1021168, 'shop through amazonsmile': 760933, 'through amazonsmile and': 894316, 'amazonsmile and choose': 51262, 'and choose your': 59876, 'choose your charity': 177926, 'your charity will': 1023186, 'charity will donate': 173720, 'will donate portion': 993243, 'donate portion of': 254221, 'portion of the': 665024, 'of the proceeds': 591368, 'the proceeds to': 864544, 'smell': 775599, 'hoax': 399692, 'propaganda': 684055, 'throw': 895004, 'cage': 155158, 'smollett': 775919, 'smell like': 775604, 'like hoax': 490445, 'hoax to': 399744, 'to me': 909912, 'me would': 524025, 'be nice': 116077, 'nice if': 562417, 'someone would': 784802, 'would investigate': 1011960, 'investigate this': 443808, 'this if': 887995, 'if it': 414283, 'it propaganda': 460528, 'propaganda throw': 684071, 'throw her': 895026, 'her in': 392138, 'in cage': 421129, 'cage with': 155176, 'with smollett': 1000778, 'smell like hoax': 775605, 'like hoax to': 490446, 'hoax to me': 399745, 'to me would': 909973, 'me would be': 524026, 'would be nice': 1011623, 'be nice if': 116083, 'nice if someone': 562421, 'if someone would': 414862, 'someone would investigate': 784803, 'would investigate this': 1011961, 'investigate this if': 443809, 'this if it': 887997, 'if it propaganda': 414332, 'it propaganda throw': 460529, 'propaganda throw her': 684072, 'throw her in': 895027, 'her in cage': 392139, 'in cage with': 421131, 'cage with smollett': 155177, 'dangerous': 225717, 'riding': 721664, 'tube': 935028, 'gp': 361395, 'surgery': 828327, 'expect': 290595, 'criminal': 216819, 'sunbather': 818109, 'cv19': 223861, 'yes supermarket': 1015540, 'supermarket shopping': 822626, 'shopping is': 763029, 'is almost': 445493, 'almost dangerous': 46588, 'dangerous riding': 225767, 'riding the': 721673, 'the tube': 870101, 'tube or': 935041, 'or going': 615492, 'going into': 355228, 'into hospital': 442641, 'hospital or': 404534, 'or gp': 615512, 'gp surgery': 361416, 'surgery you': 828339, 'you cannot': 1017843, 'cannot expect': 161812, 'expect the': 290744, 'the police': 863911, 'police to': 663249, 'do anything': 249086, 'anything about': 80674, 'about it': 25565, 'it they': 461624, 'have their': 383044, 'hand full': 374966, 'full with': 340982, 'with criminal': 997853, 'criminal walker': 216889, 'walker and': 964990, 'and sunbather': 72682, 'sunbather cv19': 818112, 'yes supermarket shopping': 1015541, 'supermarket shopping is': 822639, 'shopping is almost': 763031, 'is almost dangerous': 445498, 'almost dangerous riding': 46589, 'dangerous riding the': 225768, 'riding the tube': 721675, 'the tube or': 870103, 'tube or going': 935042, 'or going into': 615495, 'going into hospital': 355237, 'into hospital or': 442643, 'hospital or gp': 404539, 'or gp surgery': 615513, 'gp surgery you': 361418, 'surgery you cannot': 828340, 'you cannot expect': 1017859, 'cannot expect the': 161814, 'expect the police': 290753, 'the police to': 863934, 'police to do': 663250, 'to do anything': 904481, 'do anything about': 249087, 'anything about it': 80676, 'about it they': 25599, 'it they have': 461629, 'they have their': 882389, 'have their hand': 383052, 'their hand full': 873475, 'hand full with': 374968, 'full with criminal': 340983, 'with criminal walker': 997854, 'criminal walker and': 216890, 'walker and sunbather': 964991, 'and sunbather cv19': 72683, 'probably buying': 679224, 'buying too': 151254, 'too much': 924910, 'much toilet': 545395, 'paper stoppanicbuying': 640843, 'probably buying too': 679225, 'buying too much': 151256, 'too much toilet': 924950, 'much toilet paper': 545396, 'toilet paper stoppanicbuying': 921474, 'special': 787835, 'pensioner': 646673, 'suggestion': 817622, 'quickly': 694448, 'worked': 1006087, 'special shopping': 788055, 'hour for': 405595, 'for pensioner': 324435, 'pensioner wa': 646695, 'wa great': 962249, 'great suggestion': 363017, 'suggestion by': 817631, 'by our': 153475, 'our online': 624141, 'online community': 608027, 'community and': 189713, 'we very': 973723, 'very quickly': 955443, 'quickly worked': 694645, 'worked with': 1006169, 'with our': 999974, 'our store': 624938, 'to make': 909613, 'make this': 510630, 'this reality': 889816, 'special shopping hour': 788056, 'shopping hour for': 762920, 'hour for pensioner': 405613, 'for pensioner wa': 324438, 'pensioner wa great': 646696, 'wa great suggestion': 962253, 'great suggestion by': 363018, 'suggestion by our': 817632, 'by our online': 153485, 'our online community': 624142, 'online community and': 608028, 'community and we': 189731, 'and we very': 75330, 'we very quickly': 973724, 'very quickly worked': 955446, 'quickly worked with': 694646, 'worked with our': 1006172, 'with our store': 1000020, 'our store to': 624956, 'store to make': 810786, 'to make this': 909755, 'make this reality': 510648, 'mother': 543045, 'rn': 724304, 'tb': 835228, 'unit': 942030, 'smart': 775325, 'stocking': 803538, 'set': 753334, 'blame': 132239, 'poor': 664100, 'agree': 38590, 'my mother': 549320, 'mother is': 543125, 'an rn': 56785, 'rn she': 724337, 'she worked': 756478, 'worked many': 1006128, 'many year': 514903, 'year in': 1014647, 'in tb': 428828, 'tb unit': 835235, 'unit she': 942089, 'she wa': 756405, 'wa smart': 963244, 'smart enough': 775375, 'to start': 915185, 'start stocking': 794520, 'stocking food': 803557, 'supply week': 826081, 'ago long': 38421, 'long before': 501345, 'before panic': 123000, 'panic set': 638532, 'set in': 753396, 'in she': 427872, 'she blame': 755891, 'blame our': 132282, 'our current': 622640, 'current poor': 221304, 'poor response': 664274, 'response to': 715823, 'on trump': 604861, 'trump agree': 933388, 'agree we': 38669, 'my mother is': 549334, 'mother is an': 543126, 'is an rn': 445690, 'an rn she': 56786, 'rn she worked': 724338, 'she worked many': 756481, 'worked many year': 1006129, 'many year in': 514904, 'year in tb': 1014655, 'in tb unit': 428829, 'tb unit she': 835236, 'unit she wa': 942090, 'she wa smart': 756427, 'wa smart enough': 963245, 'smart enough to': 775376, 'enough to start': 277724, 'to start stocking': 915227, 'start stocking food': 794521, 'stocking food and': 803558, 'and supply week': 72823, 'supply week ago': 826082, 'week ago long': 975852, 'ago long before': 38422, 'long before panic': 501352, 'before panic set': 123002, 'panic set in': 638533, 'set in she': 753404, 'in she blame': 427873, 'she blame our': 755892, 'blame our current': 132283, 'our current poor': 622644, 'current poor response': 221306, 'poor response to': 664275, 'response to covid': 715840, '19 on trump': 8970, 'on trump agree': 604862, 'trump agree we': 933389, 'agree we are': 38670, 'correction': 207550, 'torontorealestate': 926019, 'tore': 925886, 'torontohomes': 926010, 'toronto': 925912, 'ontario': 611578, 'if covid': 414012, '19 lead': 8286, 'to home': 907923, 'home price': 401888, 'price correction': 673266, 'correction then': 207574, 'then it': 877278, 'it may': 459545, 'may take': 521554, 'take decade': 832054, 'decade for': 230677, 'for price': 324710, 'to recover': 912984, 'recover torontorealestate': 705213, 'torontorealestate tore': 926020, 'tore torontohomes': 925889, 'torontohomes toronto': 926011, 'toronto ontario': 925972, 'if covid 19': 414013, 'covid 19 lead': 213340, '19 lead to': 8287, 'lead to home': 483351, 'to home price': 907936, 'home price correction': 401897, 'price correction then': 673270, 'correction then it': 207575, 'then it may': 877283, 'it may take': 459555, 'may take decade': 521556, 'take decade for': 832055, 'decade for price': 230678, 'for price to': 324732, 'price to recover': 677030, 'to recover torontorealestate': 912991, 'recover torontorealestate tore': 705214, 'torontorealestate tore torontohomes': 926021, 'tore torontohomes toronto': 925890, 'torontohomes toronto ontario': 926012, 'sector': 744067, 'uncertainty': 939637, 'death': 229941, 'toll': 923828, 'zimbabwe': 1027572, 'ignoring': 415895, 'packing': 633725, 'truck': 932715, 'they said': 883237, 'said this': 731493, 'this would': 891530, 'would cause': 1011707, 'cause panic': 167689, 'panic in': 638194, 'the security': 866623, 'security sector': 744741, 'sector and': 744077, 'and add': 57669, 'add to': 31514, 'current uncertainty': 221420, 'uncertainty regarding': 939749, 'regarding food': 707211, 'food security': 316334, 'security and': 744532, 'coronavirus death': 205794, 'death toll': 230245, 'toll in': 923845, 'in zimbabwe': 431157, 'zimbabwe many': 1027588, 'many are': 513749, 'are ignoring': 87299, 'ignoring social': 415918, 'and packing': 68621, 'packing people': 633732, 'people into': 648496, 'into police': 442877, 'police truck': 663254, 'they said this': 883249, 'said this would': 731500, 'this would cause': 891535, 'would cause panic': 1011708, 'cause panic in': 167694, 'panic in the': 638206, 'in the security': 429534, 'the security sector': 866627, 'security sector and': 744742, 'sector and add': 744078, 'and add to': 57673, 'add to the': 31523, 'to the current': 916618, 'the current uncertainty': 852676, 'current uncertainty regarding': 221421, 'uncertainty regarding food': 939752, 'regarding food security': 707212, 'food security and': 316338, 'security and the': 744543, 'and the coronavirus': 73299, 'the coronavirus death': 851829, 'coronavirus death toll': 205801, 'death toll in': 230249, 'toll in zimbabwe': 923846, 'in zimbabwe many': 431160, 'zimbabwe many are': 1027589, 'many are ignoring': 513763, 'are ignoring social': 87300, 'ignoring social distancing': 415919, 'distancing and packing': 246987, 'and packing people': 68622, 'packing people into': 633733, 'people into police': 648506, 'into police truck': 442878, 'vegetable': 953911, 'virologist': 957693, 'confirms': 194229, 'surface': 827979, 'why you': 991584, 'to wash': 918343, 'your fruit': 1023989, 'and vegetable': 74874, 'vegetable with': 954127, 'soap virologist': 779150, 'virologist confirms': 957696, 'confirms that': 194238, '19 can': 5602, 'can survive': 159869, 'survive on': 829207, 'on fresh': 600991, 'fresh supermarket': 333080, 'supermarket produce': 822067, 'produce just': 680335, 'just like': 469138, 'like any': 489808, 'any other': 79581, 'other surface': 621046, 'why you need': 991594, 'need to wash': 556115, 'to wash your': 918353, 'wash your fruit': 967587, 'your fruit and': 1023990, 'fruit and vegetable': 339066, 'and vegetable with': 74900, 'vegetable with soap': 954128, 'with soap virologist': 1000808, 'soap virologist confirms': 779151, 'virologist confirms that': 957697, 'confirms that covid': 194239, 'covid 19 can': 212753, '19 can survive': 5616, 'can survive on': 159876, 'survive on fresh': 829212, 'on fresh supermarket': 600994, 'fresh supermarket produce': 333081, 'supermarket produce just': 822069, 'produce just like': 680336, 'just like any': 469139, 'like any other': 489812, 'any other surface': 79609, '32': 17654, 'moment': 535866, 'define': 232268, 'hello have': 389173, 'have you': 383651, 'you got': 1018892, 'got any': 358413, 'any paracetamol': 79626, 'paracetamol in': 641246, 'in still': 428273, 'still which': 801408, 'which one': 986192, 'one just': 606546, 'just standard': 469864, 'standard paracetamol': 793690, 'paracetamol do': 641236, 'do have': 249365, 'have pack': 381862, 'of 32': 579571, '32 how': 17674, 'how much': 408336, 'much are': 544728, 'are they': 90984, 'they at': 881503, 'the moment': 860739, 'moment the': 536059, 'have gone': 380784, 'gone up': 356408, 'up slightly': 946007, 'slightly define': 773950, 'define slightly': 232271, 'slightly they': 773978, 've gone': 953156, 'to wow': 918857, 'hello have you': 389174, 'have you got': 383669, 'you got any': 1018894, 'got any paracetamol': 358416, 'any paracetamol in': 79627, 'paracetamol in still': 641249, 'in still which': 428274, 'still which one': 801409, 'which one just': 986199, 'one just standard': 606549, 'just standard paracetamol': 469865, 'standard paracetamol do': 793691, 'paracetamol do have': 641237, 'do have pack': 249374, 'have pack of': 381864, 'pack of 32': 633084, 'of 32 how': 579572, '32 how much': 17675, 'how much are': 408339, 'much are they': 544729, 'are they at': 90990, 'they at the': 881505, 'at the moment': 101026, 'the moment the': 860781, 'moment the price': 536061, 'the price have': 864360, 'price have gone': 674429, 'have gone up': 380799, 'gone up slightly': 356430, 'up slightly define': 946008, 'slightly define slightly': 773951, 'define slightly they': 232272, 'slightly they ve': 773979, 'they ve gone': 883653, 've gone up': 953161, 'gone up to': 356434, 'up to wow': 946450, 'lying': 507057, 'television': 836850, 'screen': 742671, 'buying because': 149995, 'because they': 119683, 'they do': 881952, 'not trust': 572283, 'trust the': 934317, 'government they': 360689, 'they see': 883290, 'see politician': 745588, 'politician lying': 663719, 'lying every': 507073, 'every day': 285786, 'day on': 228141, 'on their': 604466, 'their television': 874961, 'television screen': 836865, 'screen politician': 742717, 'politician say': 663737, 'say there': 739317, 'is lot': 449464, 'food but': 313807, 'they also': 881138, 'also say': 48827, 'are increasing': 87476, 'increasing testing': 433701, 'testing something': 839643, 'something that': 785070, 'that everyone': 843760, 'everyone who': 287580, 'ha covid': 370255, '19 symptom': 11011, 'symptom know': 830863, 'know is': 476504, 'is lie': 449291, 'lie stophoarding': 488376, 'people are panic': 647042, 'panic buying because': 637652, 'buying because they': 150002, 'because they do': 119698, 'they do not': 881969, 'do not trust': 249875, 'not trust the': 572287, 'trust the government': 934318, 'the government they': 856612, 'government they see': 360690, 'they see politician': 883294, 'see politician lying': 745589, 'politician lying every': 663721, 'lying every day': 507074, 'every day on': 285834, 'day on their': 228149, 'on their television': 604515, 'their television screen': 874962, 'television screen politician': 836866, 'screen politician say': 742718, 'politician say there': 663738, 'say there is': 739320, 'there is lot': 878587, 'is lot of': 449467, 'lot of food': 504192, 'of food but': 583662, 'food but they': 313836, 'but they also': 147489, 'they also say': 881156, 'also say they': 48832, 'they are increasing': 881306, 'are increasing testing': 87491, 'increasing testing something': 433702, 'testing something that': 839644, 'something that everyone': 785075, 'that everyone who': 843775, 'everyone who ha': 287591, 'who ha covid': 988837, 'ha covid 19': 370256, 'covid 19 symptom': 213905, '19 symptom know': 11018, 'symptom know is': 830864, 'know is lie': 476509, 'is lie stophoarding': 449292, 'half': 374133, 'beef': 120474, 'consumption': 199816, 'happening': 377308, 'restaurantmanagement': 716834, 'usda': 948956, 'what restaurant': 982098, 'restaurant need': 716586, 'survive the': 829238, 'crisis with': 218422, 'with about': 997078, 'about half': 25337, 'half of': 374215, 'of total': 592327, 'total beef': 926133, 'beef consumption': 120498, 'consumption happening': 199884, 'happening outside': 377394, 'outside the': 629585, 'the home': 857442, 'home how': 401378, '19 affect': 4828, 'affect restaurant': 34216, 'restaurant can': 716352, 'can affect': 157388, 'affect the': 34236, 'for beef': 319613, 'beef restaurant': 120550, 'restaurant restaurantmanagement': 716665, 'restaurantmanagement meat': 716837, 'meat meat': 525651, 'meat food': 525575, 'food usda': 317410, 'usda livestock': 948963, 'what restaurant need': 982099, 'restaurant need to': 716587, 'need to survive': 556096, 'to survive the': 916048, 'survive the covid': 829245, '19 crisis with': 6355, 'crisis with about': 218423, 'with about half': 997083, 'about half of': 25339, 'half of total': 374238, 'of total beef': 592328, 'total beef consumption': 926134, 'beef consumption happening': 120499, 'consumption happening outside': 199885, 'happening outside the': 377395, 'outside the home': 629594, 'the home how': 857446, 'home how covid': 401380, 'covid 19 affect': 212589, '19 affect restaurant': 4836, 'affect restaurant can': 34217, 'restaurant can affect': 716353, 'can affect the': 157392, 'affect the demand': 34242, 'the demand for': 853094, 'demand for beef': 235384, 'for beef restaurant': 319615, 'beef restaurant restaurantmanagement': 120551, 'restaurant restaurantmanagement meat': 716667, 'restaurantmanagement meat meat': 716838, 'meat meat food': 525652, 'meat food usda': 525578, 'food usda livestock': 317411, '10m': 2346, 'fund': 341344, 'administered': 32438, '75k': 22213, 'ma': 507247, 'nonprofit': 566672, 'part': 642220, 'mabiz': 507295, 'release': 708915, 'announces 10m': 77232, '10m loan': 2351, 'loan fund': 497442, 'fund administered': 341347, 'administered by': 32439, 'by to': 154552, 'provide financial': 686290, 'financial relief': 306552, 'relief up': 709491, 'to 75k': 899831, '75k to': 22218, 'to ma': 909535, 'ma based': 507254, 'based business': 111522, 'business including': 143914, 'including nonprofit': 432076, 'nonprofit with': 566714, 'with 50': 997028, '50 full': 19700, 'full part': 340796, 'part time': 642441, 'time employee': 896610, 'employee impacted': 273951, 'by mabiz': 153116, 'mabiz release': 507296, 'release apply': 708922, 'announces 10m loan': 77233, '10m loan fund': 2352, 'loan fund administered': 497443, 'fund administered by': 341348, 'administered by to': 32441, 'by to provide': 154557, 'to provide financial': 912393, 'provide financial relief': 686293, 'financial relief up': 306555, 'relief up to': 709492, 'up to 75k': 946349, 'to 75k to': 899832, '75k to ma': 22219, 'to ma based': 909536, 'ma based business': 507255, 'based business including': 111524, 'business including nonprofit': 143917, 'including nonprofit with': 432077, 'nonprofit with 50': 566715, 'with 50 full': 997031, '50 full part': 19701, 'full part time': 340797, 'part time employee': 642446, 'time employee impacted': 896614, 'employee impacted by': 273952, 'impacted by mabiz': 418083, 'by mabiz release': 153117, 'mabiz release apply': 507297, 'completely': 192206, 'sold': 781611, 'skorea': 773164, 'netherlands': 557654, 'weed': 975753, 'singapore': 771094, 'germany': 346263, 'basically': 112105, 'cuz': 223795, 'sitting': 772093, 'park': 641851, 'bbqs': 113202, 'party': 642965, 'thing being': 884188, 'being completely': 124974, 'completely sold': 192357, 'sold out': 781723, 'out due': 625982, 'to skorea': 914697, 'skorea face': 773165, 'face mask': 294508, 'mask netherlands': 518998, 'netherlands weed': 557676, 'weed singapore': 975766, 'singapore condom': 771112, 'condom germany': 193604, 'germany toilet': 346351, 'paper basically': 639929, 'basically everything': 112126, 'everything the': 288037, 'supermarket ha': 820612, 'ha to': 372287, 'to over': 911283, 'over cuz': 630135, 'cuz people': 223815, 'people think': 649827, 'think they': 885676, 'they need': 882712, 'save while': 737700, 'while sitting': 987278, 'sitting in': 772118, 'in park': 426506, 'park having': 641924, 'having bbqs': 383990, 'bbqs and': 113205, 'and party': 68735, 'thing being completely': 884189, 'being completely sold': 124976, 'completely sold out': 192358, 'sold out due': 781731, 'out due to': 625984, 'due to skorea': 261955, 'to skorea face': 914698, 'skorea face mask': 773166, 'face mask netherlands': 294567, 'mask netherlands weed': 518999, 'netherlands weed singapore': 557677, 'weed singapore condom': 975767, 'singapore condom germany': 771113, 'condom germany toilet': 193605, 'germany toilet paper': 346352, 'toilet paper basically': 921200, 'paper basically everything': 639930, 'basically everything the': 112128, 'everything the supermarket': 288041, 'the supermarket ha': 868618, 'supermarket ha to': 820653, 'ha to over': 372311, 'to over cuz': 911291, 'over cuz people': 630136, 'cuz people think': 223816, 'people think they': 649837, 'think they need': 885684, 'they need to': 882765, 'need to save': 556057, 'to save while': 913797, 'save while sitting': 737701, 'while sitting in': 987280, 'sitting in park': 772120, 'in park having': 426510, 'park having bbqs': 641925, 'having bbqs and': 383992, 'bbqs and party': 113206, 'encountered': 275547, 'iga': 415679, 'montreal': 538228, 'quebec': 693334, 'just encountered': 468670, 'encountered this': 275562, 'this on': 889208, 'on my': 602257, 'supermarket iga': 820842, 'iga website': 415695, 'website montreal': 975355, 'montreal quebec': 538232, 'quebec canada': 693339, 'just encountered this': 468671, 'encountered this on': 275563, 'this on my': 889216, 'on my local': 602294, 'local supermarket iga': 498541, 'supermarket iga website': 820843, 'iga website montreal': 415696, 'website montreal quebec': 975356, 'montreal quebec canada': 538233, 'clerk': 181622, 'store clerk': 806990, 'clerk are': 181652, 'the front': 855840, 'line of': 493287, '19 they': 11299, 'are essential': 86242, 'essential and': 280773, 'and need': 67467, 'need protection': 555486, 'grocery store clerk': 365285, 'store clerk are': 806996, 'clerk are on': 181656, 'are on the': 88737, 'on the front': 604134, 'the front line': 855848, 'front line of': 338594, 'line of covid': 493295, 'covid 19 they': 213937, '19 they are': 11301, 'they are essential': 881263, 'are essential and': 86243, 'essential and need': 280784, 'and need protection': 67478, 'whilst': 987606, 'own': 631859, 'leyton': 487868, 'leytonstone': 487871, 'dealing': 229636, 'restricted': 717127, 'vulnerable': 960832, 'circumstance': 178699, 'indeed': 433977, 'especially whilst': 280665, 'whilst tesco': 987691, 'tesco own': 838775, 'own worker': 632313, 'worker in': 1007161, 'in store': 428377, 'store such': 810434, 'such leyton': 816595, 'leyton and': 487869, 'and leytonstone': 66121, 'leytonstone are': 487874, 'the frontline': 855857, 'frontline dealing': 338721, 'dealing with': 229652, 'with covid': 997836, '19 restricted': 10170, 'restricted stock': 717163, 'and getting': 63617, 'getting food': 348976, 'food out': 315708, 'to vulnerable': 918243, 'vulnerable people': 961078, 'people in': 648341, 'in very': 430562, 'very difficult': 955118, 'difficult circumstance': 242199, 'circumstance every': 178722, 'every little': 285979, 'little help': 495382, 'help indeed': 389920, 'especially whilst tesco': 280666, 'whilst tesco own': 987692, 'tesco own worker': 838777, 'own worker in': 632314, 'worker in store': 1007201, 'in store such': 428461, 'store such leyton': 810437, 'such leyton and': 816596, 'leyton and leytonstone': 487870, 'and leytonstone are': 66122, 'leytonstone are on': 487875, 'on the frontline': 604135, 'the frontline dealing': 855864, 'frontline dealing with': 338722, 'dealing with covid': 229658, 'with covid 19': 997837, 'covid 19 restricted': 213703, '19 restricted stock': 10171, 'restricted stock and': 717164, 'stock and getting': 801813, 'and getting food': 63620, 'getting food out': 348986, 'food out to': 315711, 'out to vulnerable': 627696, 'to vulnerable people': 918248, 'vulnerable people in': 961095, 'people in very': 648448, 'in very difficult': 430568, 'very difficult circumstance': 955119, 'difficult circumstance every': 242201, 'circumstance every little': 178723, 'every little help': 285981, 'little help indeed': 495385, 'bamboo': 109143, 'fiber': 304384, 'ordered': 618811, 'like this': 491461, 'this but': 886637, 'it that': 461483, 'that case': 843167, 'case of': 165882, 'of bamboo': 580529, 'bamboo fiber': 109144, 'fiber ordered': 304387, 'ordered 10': 618812, '10 day': 1378, 'day ago': 227194, 'like this but': 491475, 'this but it': 886643, 'but it that': 146170, 'it that case': 461486, 'that case of': 843170, 'case of bamboo': 165891, 'of bamboo fiber': 580530, 'bamboo fiber ordered': 109145, 'fiber ordered 10': 304388, 'ordered 10 day': 618813, '10 day ago': 1380, 'borne': 135569, 'drug': 260841, 'administration': 32444, 'fda': 300820, 'evidence': 288344, 'transmitted': 929795, 'consumeraff': 199591, 'not food': 569468, 'food borne': 313766, 'borne illness': 135570, 'illness according': 416334, 'food drug': 314300, 'drug administration': 260849, 'administration fda': 32465, 'fda there': 300932, 'no evidence': 564142, 'evidence covid': 288354, 'is transmitted': 453338, 'transmitted by': 929798, 'by food': 152612, 'for question': 324908, 'question concern': 693563, 'concern about': 192885, 'about your': 26984, 'product please': 681525, 'contact consumer': 200051, 'affair at': 34002, 'at consumeraff': 98325, 'is not food': 450086, 'not food borne': 569469, 'food borne illness': 313767, 'borne illness according': 135571, 'illness according to': 416335, 'according to the': 28595, 'to the food': 916719, 'the food drug': 855546, 'food drug administration': 314302, 'drug administration fda': 260851, 'administration fda there': 32467, 'fda there no': 300933, 'there no evidence': 878807, 'no evidence covid': 564143, 'evidence covid 19': 288355, '19 is transmitted': 8071, 'is transmitted by': 453340, 'transmitted by food': 929799, 'by food for': 152614, 'food for question': 314568, 'for question concern': 324909, 'question concern about': 693564, 'concern about your': 192904, 'about your product': 27008, 'your product please': 1025444, 'product please contact': 681526, 'please contact consumer': 659833, 'contact consumer affair': 200053, 'consumer affair at': 196078, 'affair at consumeraff': 34005, 'bollock': 134113, 'bulk': 142235, 'masse': 519948, 'accidental': 28403, 'sent': 750735, 'bollock no': 134114, 'no there': 565701, 'are number': 88619, 'people going': 648091, 'into shop': 442978, 'shop daily': 760083, 'daily bulk': 224530, 'bulk buying': 142268, 'everything it': 287892, 'not person': 571013, 'person per': 652575, 'household it': 406857, 'it several': 460992, 'several en': 753838, 'en masse': 275388, 'masse which': 519949, 'which then': 986384, 'then cause': 877065, 'cause the': 167756, 'rest to': 716234, 'daily accidental': 224485, 'accidental hoarder': 28406, 'hoarder causing': 399001, 'causing supermarket': 168104, 'supermarket shortage': 822663, 'shortage sent': 765207, 'sent via': 750851, 'bollock no there': 134115, 'no there are': 565702, 'there are number': 878133, 'are number of': 88620, 'number of people': 576972, 'of people going': 587919, 'people going into': 648097, 'going into shop': 355243, 'into shop daily': 442980, 'shop daily bulk': 760085, 'daily bulk buying': 224531, 'bulk buying everything': 142273, 'buying everything it': 150256, 'everything it not': 287894, 'it not person': 459910, 'not person per': 571014, 'person per household': 652578, 'per household it': 650888, 'household it several': 406858, 'it several en': 460993, 'several en masse': 753839, 'en masse which': 275389, 'masse which then': 519950, 'which then cause': 986385, 'then cause the': 877066, 'cause the rest': 167765, 'the rest to': 865639, 'rest to shop': 716235, 'to shop daily': 914453, 'shop daily accidental': 760084, 'daily accidental hoarder': 224486, 'accidental hoarder causing': 28407, 'hoarder causing supermarket': 399002, 'causing supermarket shortage': 168106, 'supermarket shortage sent': 822671, 'shortage sent via': 765208, 'n95': 551156, 'reasonable': 703077, 'welfare': 977939, 'ngo': 561840, 'facemasks': 295118, 'stayhomestaysafe': 798500, 'n95 mask': 551184, 'mask hand': 518774, 'and face': 62580, 'mask are': 518394, 'available at': 104240, 'at very': 101443, 'very reasonable': 955458, 'reasonable price': 703112, 'price welfare': 677419, 'welfare trust': 977975, 'trust and': 934234, 'and ngo': 67578, 'ngo can': 561843, 'can contact': 157966, 'contact for': 200077, 'for bulk': 319812, 'bulk order': 142333, 'order facemasks': 618201, 'facemasks mask': 295150, 'mask sanitizer': 519216, 'sanitizer stayhome': 735800, 'stayhome stayhomestaysafe': 798158, 'stayhomestaysafe corona': 798503, 'corona 19': 203779, 'n95 mask hand': 551196, 'mask hand sanitizers': 518779, 'hand sanitizers and': 375681, 'sanitizers and face': 736195, 'and face mask': 62584, 'face mask are': 294516, 'mask are available': 518395, 'are available at': 84705, 'available at very': 104264, 'at very reasonable': 101449, 'very reasonable price': 955459, 'reasonable price welfare': 703130, 'price welfare trust': 677421, 'welfare trust and': 977976, 'trust and ngo': 934236, 'and ngo can': 67579, 'ngo can contact': 561844, 'can contact for': 157968, 'contact for bulk': 200079, 'for bulk order': 319814, 'bulk order facemasks': 142334, 'order facemasks mask': 618202, 'facemasks mask sanitizer': 295151, 'mask sanitizer stayhome': 519228, 'sanitizer stayhome stayhomestaysafe': 735801, 'stayhome stayhomestaysafe corona': 798159, 'stayhomestaysafe corona 19': 798504, 'meant': 524878, 'abundant': 27596, 'never run': 558158, 'of good': 584208, 'good thing': 357839, 'thing because': 884184, 'because there': 119665, 'there more': 878764, 'go around': 353304, 'around for': 93290, 'for everyone': 321193, 'everyone life': 287159, 'life is': 488798, 'is meant': 449610, 'meant to': 524905, 'be abundant': 113455, 'we will never': 973883, 'will never run': 994169, 'never run out': 558159, 'run out of': 727763, 'out of good': 626745, 'of good thing': 584240, 'good thing because': 357842, 'thing because there': 884187, 'because there more': 119674, 'there more than': 878767, 'than enough to': 840555, 'enough to go': 277705, 'to go around': 906771, 'go around for': 353312, 'around for everyone': 93291, 'for everyone life': 321221, 'everyone life is': 287160, 'life is meant': 488812, 'is meant to': 449612, 'meant to be': 524906, 'to be abundant': 901087, 'either': 270246, 'starve': 795186, 'either will': 270415, 'will kill': 993910, 'kill or': 474465, 'will starve': 994951, 'starve online': 795209, 'is also': 445544, 'also in': 48398, 'in crisis': 421871, 'either will kill': 270416, 'will kill or': 993920, 'kill or we': 474467, 'we will starve': 973909, 'will starve online': 994953, 'starve online shopping': 795210, 'online shopping is': 609160, 'shopping is also': 763032, 'is also in': 445561, 'also in crisis': 48399, 'temp': 837314, 'vacancy': 951554, 'night': 562916, '2am': 16546, 'sainsburys': 731747, 'sydenham': 830677, 'hey guy': 394401, 'guy ve': 369187, 've got': 953163, 'got more': 358710, 'more temp': 540530, 'temp vacancy': 837339, 'vacancy for': 951560, 'for night': 323878, 'night shift': 563067, 'shift 2am': 758215, '2am 8am': 16547, '8am online': 23142, 'shopping amp': 761950, 'amp online': 54221, 'online driver': 608131, 'driver sainsburys': 259731, 'sainsburys sydenham': 731791, 'sydenham hit': 830678, 'hit me': 398318, 'me up': 523855, 'up amp': 944287, 'amp rt': 54414, 'hey guy ve': 394406, 'guy ve got': 369188, 've got more': 953188, 'got more temp': 358713, 'more temp vacancy': 540532, 'temp vacancy for': 837340, 'vacancy for night': 951562, 'for night shift': 323879, 'night shift 2am': 563068, 'shift 2am 8am': 758216, '2am 8am online': 16548, '8am online shopping': 23143, 'online shopping amp': 609027, 'shopping amp online': 761953, 'amp online driver': 54222, 'online driver sainsburys': 608132, 'driver sainsburys sydenham': 259732, 'sainsburys sydenham hit': 731792, 'sydenham hit me': 830679, 'hit me up': 398322, 'me up amp': 523856, 'up amp rt': 944290, 'panicking': 639306, 'meanwhile': 524942, 'thailand': 840085, 'normal': 567067, 'it crazy': 457388, 'crazy how': 215318, 'much everyone': 544864, 'everyone in': 287032, 'world is': 1009682, 'is panicking': 450791, 'panicking about': 639307, 'this covid': 886992, '19 but': 5487, 'but meanwhile': 146382, 'meanwhile here': 524982, 'here in': 393127, 'in thailand': 428898, 'thailand it': 840098, 'it calm': 456997, 'calm like': 156764, 'any normal': 79522, 'normal day': 567127, 'day they': 228515, 'they still': 883456, 'still have': 800641, 'have toilet': 383348, 'paper hand': 640246, 'sanitizer food': 734884, 'everything in': 287845, 'in stock': 428275, 'stock but': 801941, 'but yet': 147963, 'yet the': 1016251, 'store shelf': 810054, 'it crazy how': 457390, 'crazy how much': 215322, 'how much everyone': 408346, 'much everyone in': 544865, 'everyone in the': 287050, 'the world is': 871899, 'world is panicking': 1009712, 'is panicking about': 450792, 'panicking about this': 639312, 'about this covid': 26634, 'this covid 19': 886993, 'covid 19 but': 212744, '19 but meanwhile': 5512, 'but meanwhile here': 146383, 'meanwhile here in': 524983, 'here in thailand': 393187, 'in thailand it': 428901, 'thailand it calm': 840099, 'it calm like': 456998, 'calm like any': 156765, 'like any normal': 489810, 'any normal day': 79523, 'normal day they': 567133, 'day they still': 228523, 'they still have': 883464, 'still have toilet': 800667, 'have toilet paper': 383350, 'toilet paper hand': 921298, 'paper hand sanitizer': 640248, 'hand sanitizer food': 375409, 'sanitizer food and': 734885, 'food and everything': 313226, 'and everything in': 62422, 'everything in stock': 287855, 'in stock but': 428289, 'stock but yet': 801952, 'but yet the': 147968, 'yet the store': 1016260, 'the store shelf': 868101, 'store shelf are': 810058, 'silent': 769706, 'lazy': 482740, 'horror': 404188, 'costco': 208192, '16': 4050, 'panicshopped': 639407, 'item': 463015, 'ok ve': 597932, 'been too': 122248, 'too silent': 925064, 'silent and': 769707, 'and too': 74269, 'too lazy': 924845, 'lazy for': 482747, 'for too': 327280, 'too long': 924861, 'long so': 501638, 'so to': 778531, 'to my': 910368, 'my horror': 548712, 'horror on': 404208, 'on 11': 599002, '11 costco': 2508, 'costco wa': 208286, 'paper on': 640528, 'on 16': 599015, '16 we': 4187, 'we panicshopped': 972691, 'panicshopped for': 639408, 'for toiletpaper': 327251, 'toiletpaper other': 922292, 'other item': 620442, 'item part': 463546, 'part of': 642325, 'of many': 586167, 'ok ve been': 597933, 've been too': 952948, 'been too silent': 122249, 'too silent and': 925065, 'silent and too': 769708, 'and too lazy': 74273, 'too lazy for': 924846, 'lazy for too': 482748, 'for too long': 327282, 'too long so': 924866, 'long so to': 501640, 'so to my': 778537, 'to my horror': 910407, 'my horror on': 548713, 'horror on 11': 404209, 'on 11 costco': 599003, '11 costco wa': 2509, 'costco wa out': 208288, 'out of toilet': 626860, 'toilet paper on': 921376, 'paper on 16': 640529, 'on 16 we': 599018, '16 we panicshopped': 4188, 'we panicshopped for': 972692, 'panicshopped for toiletpaper': 639409, 'for toiletpaper other': 327260, 'toiletpaper other item': 922293, 'other item part': 620449, 'item part of': 463547, 'part of many': 642358, 'ghettoheatmovement': 349642, 'okay': 597954, 'hickson': 394796, 'care': 163777, 'mamaghettoheat': 511932, 'scene': 741299, 'hunger': 411067, 'game': 343107, 'pm0miixwtp': 662029, 'ghettoheatmovement worldwide': 349645, 'worldwide is': 1010381, 'is everyone': 447581, 'everyone okay': 287226, 'okay out': 597994, 'the hickson': 857311, 'hickson is': 394797, 'is inside': 448935, 'inside taking': 439402, 'taking care': 833297, 'care of': 164090, 'the mamaghettoheat': 859969, 'mamaghettoheat behind': 511933, 'the scene': 866458, 'scene during': 741318, 'this outbreak': 889317, 'outbreak shopping': 628623, 'the daily': 852770, 'daily supermarket': 224815, 'supermarket feeling': 820294, 'feeling like': 303008, 'the hunger': 857744, 'hunger game': 411113, 'game here': 343181, 'here bought': 392826, 'bought 20': 136473, '20 pm0miixwtp': 13268, 'ghettoheatmovement worldwide is': 349647, 'worldwide is everyone': 1010383, 'is everyone okay': 447587, 'everyone okay out': 287227, 'okay out the': 597995, 'out the hickson': 627377, 'the hickson is': 857312, 'hickson is inside': 394799, 'is inside taking': 448936, 'inside taking care': 439403, 'taking care of': 833298, 'care of the': 164117, 'of the mamaghettoheat': 591216, 'the mamaghettoheat behind': 859970, 'mamaghettoheat behind the': 511934, 'behind the scene': 124725, 'the scene during': 866465, 'scene during this': 741319, 'during this outbreak': 263305, 'this outbreak shopping': 889327, 'outbreak shopping at': 628624, 'at the daily': 100921, 'the daily supermarket': 852785, 'daily supermarket feeling': 224816, 'supermarket feeling like': 820295, 'feeling like the': 303014, 'like the hunger': 491373, 'the hunger game': 857746, 'hunger game here': 411116, 'game here bought': 343182, 'here bought 20': 392827, 'bought 20 pm0miixwtp': 136475, 'assume': 96998, 'carrier': 164944, 'cough': 208440, 'sneeze': 776224, 'elbow': 270502, 'not hoarding': 569993, 'hoarding mask': 399419, 'mask only': 519064, 'only have': 610571, 'have one': 381782, 'one and': 605893, 'and wear': 75350, 'wear it': 974366, 'it when': 462333, 'supermarket don': 819998, 'don have': 253586, 'have symptom': 382891, 'symptom but': 830824, 'but some': 147089, 'some people': 783500, 'have covid': 380135, 'symptom we': 830944, 'we should': 973251, 'should assume': 765526, 'assume we': 97034, 'we may': 972348, 'be carrier': 114010, 'carrier and': 164945, 'use hand': 949252, 'sanitizer wear': 736056, 'mask cough': 518543, 'cough sneeze': 208551, 'sneeze into': 776248, 'into our': 442814, 'our elbow': 622859, 'elbow when': 270517, 'when we': 984427, 'we go': 971645, 'supermarket or': 821792, 'or for': 615360, 'not hoarding mask': 569996, 'hoarding mask only': 399420, 'mask only have': 519065, 'only have one': 610584, 'have one and': 381783, 'one and wear': 605910, 'and wear it': 75353, 'wear it when': 974372, 'it when go': 462336, 'to supermarket don': 915789, 'supermarket don have': 819999, 'don have symptom': 253618, 'have symptom but': 382892, 'symptom but some': 830827, 'but some people': 147102, 'some people have': 783516, 'people have covid': 648172, 'have covid 19': 380136, '19 symptom we': 11023, 'symptom we should': 830946, 'we should assume': 973258, 'should assume we': 765527, 'assume we may': 97035, 'we may be': 972350, 'may be carrier': 520956, 'be carrier and': 114011, 'carrier and use': 164949, 'and use hand': 74775, 'use hand sanitizer': 949255, 'hand sanitizer wear': 375654, 'sanitizer wear mask': 736057, 'wear mask cough': 974380, 'mask cough sneeze': 518544, 'cough sneeze into': 208553, 'sneeze into our': 776251, 'into our elbow': 442817, 'our elbow when': 622860, 'elbow when we': 270518, 'when we go': 984445, 'we go to': 971655, 'to supermarket or': 915823, 'supermarket or for': 821806, 'or for walk': 615371, 'watching': 968692, 'press': 671001, 'conference': 193715, 'load': 497238, 'heading': 385924, 'ny': 577826, 'each': 263981, 'coast': 185090, 'problem': 679440, 'solved': 782173, 'guess': 367961, 'watching daily': 968723, 'daily press': 224747, 'press conference': 671025, 'conference so': 193754, 'to recap': 912905, 'recap trump': 703383, 'trump main': 933693, 'main talking': 508837, 'talking point': 834032, 'point there': 662653, 'there truck': 879204, 'truck load': 932828, 'load of': 497257, 'of hand': 584422, 'sanitizer heading': 735064, 'heading to': 385956, 'to ny': 910770, 'ny and': 577834, 'and hospital': 64741, 'hospital ship': 404607, 'ship on': 758697, 'on each': 600450, 'each coast': 264010, 'coast so': 185117, 'so problem': 778079, 'problem solved': 679675, 'solved guess': 782177, 'watching daily press': 968724, 'daily press conference': 224748, 'press conference so': 671034, 'conference so to': 193755, 'so to recap': 778541, 'to recap trump': 912906, 'recap trump main': 703384, 'trump main talking': 933694, 'main talking point': 508838, 'talking point there': 834034, 'point there truck': 662654, 'there truck load': 879205, 'truck load of': 932829, 'load of hand': 497269, 'of hand sanitizer': 584433, 'hand sanitizer heading': 375437, 'sanitizer heading to': 735065, 'heading to ny': 385962, 'to ny and': 910771, 'ny and hospital': 577836, 'and hospital ship': 64749, 'hospital ship on': 404610, 'ship on each': 758699, 'on each coast': 600452, 'each coast so': 264011, 'coast so problem': 185118, 'so problem solved': 778080, 'problem solved guess': 679676, 'industry': 435587, 'retailing': 719471, 'marketing': 517508, 'will change': 992903, 'change the': 172286, 'the face': 854798, 'face of': 294644, 'shopping coronavirus': 762402, 'coronavirus will': 207080, 'grocery industry': 364624, 'industry forever': 435835, 'forever retailing': 329142, 'retailing marketing': 719478, 'how will change': 409221, 'will change the': 992920, 'change the face': 172293, 'the face of': 854806, 'face of grocery': 294657, 'of grocery shopping': 584356, 'grocery shopping coronavirus': 365010, 'shopping coronavirus will': 762403, 'coronavirus will change': 207084, 'change the grocery': 172299, 'the grocery industry': 856813, 'grocery industry forever': 364626, 'industry forever retailing': 435836, 'forever retailing marketing': 329143, 'weakening': 974078, 'major': 509230, 'commodity': 189106, 'weakening demand': 974081, 'and falling': 62637, 'falling oil': 297304, 'price due': 673611, 'the global': 856285, 'global covid': 351833, 'ha driven': 370449, 'driven down': 259308, 'down international': 256881, 'international price': 441842, 'for major': 323163, 'major commodity': 509270, 'commodity ha': 189182, 'weakening demand and': 974082, 'demand and falling': 234964, 'and falling oil': 62643, 'falling oil price': 297305, 'oil price due': 597113, 'price due to': 673614, 'to the global': 916744, 'the global covid': 856295, 'global covid 19': 351834, 'pandemic ha driven': 635541, 'ha driven down': 370450, 'driven down international': 259309, 'down international price': 256882, 'international price for': 441843, 'price for major': 673995, 'for major commodity': 323164, 'major commodity ha': 509271, 'commodity ha announced': 189183, 'masksforthepeople': 519689, 'most': 542053, 'population': 664635, 'targeted': 834531, 'atlanta': 101820, 'detroit': 239495, 'orleans': 619638, 'milwaukee': 532481, 'masksforthepeople will': 519690, 'will distribute': 993214, 'distribute mask': 247994, 'sanitizer to': 735904, 'to our': 911145, 'our elderly': 622863, 'elderly and': 270567, 'and most': 67260, 'most vulnerable': 542863, 'vulnerable population': 961123, 'population in': 664688, 'in targeted': 428820, 'targeted city': 834542, 'city that': 179395, 'that include': 844466, 'include atlanta': 431522, 'atlanta detroit': 101835, 'detroit new': 239507, 'new orleans': 559234, 'orleans miami': 619643, 'miami and': 530162, 'and milwaukee': 67032, 'milwaukee donate': 532486, 'donate here': 254188, 'masksforthepeople will distribute': 519691, 'will distribute mask': 993216, 'distribute mask and': 247995, 'mask and sanitizer': 518368, 'and sanitizer to': 70889, 'sanitizer to our': 735940, 'to our elderly': 911173, 'our elderly and': 622864, 'elderly and most': 270580, 'and most vulnerable': 67278, 'most vulnerable population': 542891, 'vulnerable population in': 961127, 'population in targeted': 664696, 'in targeted city': 428821, 'targeted city that': 834543, 'city that include': 179399, 'that include atlanta': 844467, 'include atlanta detroit': 431523, 'atlanta detroit new': 101836, 'detroit new orleans': 239508, 'new orleans miami': 559237, 'orleans miami and': 619644, 'miami and milwaukee': 530163, 'and milwaukee donate': 67033, 'milwaukee donate here': 532487, 'nadad': 551374, '100m': 2186, 'c19': 154840, 'suggest': 817504, 'paying': 645364, 'pharmaceutical': 654053, 'company': 190338, 'outrageous': 629313, 'nadad 100m': 551375, '100m for': 2189, 'for c19': 319868, 'c19 great': 154841, 'idea but': 413019, 'but suggest': 147211, 'suggest you': 817555, 'you look': 1019693, 'at paying': 100081, 'paying local': 645437, 'local pharmaceutical': 498270, 'pharmaceutical company': 654062, 'company to': 191218, 'to produce': 912181, 'produce more': 680363, 'more sanitizers': 540311, 'sanitizers to': 736420, 'to supply': 915873, 'supply for': 825258, 'for free': 321701, 'free the': 332215, 'the sanitizers': 866359, 'sanitizers price': 736370, 'price is': 674853, 'is outrageous': 450672, 'nadad 100m for': 551376, '100m for c19': 2190, 'for c19 great': 319869, 'c19 great idea': 154842, 'great idea but': 362726, 'idea but suggest': 413022, 'but suggest you': 147212, 'suggest you look': 817557, 'you look at': 1019694, 'look at paying': 502283, 'at paying local': 100082, 'paying local pharmaceutical': 645438, 'local pharmaceutical company': 498271, 'pharmaceutical company to': 654070, 'company to produce': 191236, 'to produce more': 912201, 'produce more sanitizers': 680367, 'more sanitizers to': 540312, 'sanitizers to supply': 736428, 'to supply for': 915881, 'supply for free': 825265, 'for free the': 321731, 'free the sanitizers': 332218, 'the sanitizers price': 866362, 'sanitizers price is': 736372, 'price is outrageous': 674881, 'supermarket right': 822246, 'supermarket right now': 822247, 'winery': 995948, 'gallo': 342957, 'responder': 715395, 'officer': 595613, 'firefighter': 308191, 'the winery': 871606, 'winery company': 995949, 'company work': 191354, 'work for': 1005135, 'for gallo': 321837, 'gallo is': 342958, 'is making': 449533, 'making hand': 511100, 'and donating': 61658, 'donating them': 254514, 'them to': 876450, 'to first': 905977, 'first responder': 308923, 'responder such': 715524, 'such police': 816680, 'police officer': 663110, 'officer firefighter': 595655, 'firefighter and': 308194, 'and health': 64344, 'health care': 386217, 'care worker': 164274, 'worker love': 1007336, 'love this': 504825, 'this company': 886818, 'the winery company': 871607, 'winery company work': 995950, 'company work for': 191355, 'work for gallo': 1005150, 'for gallo is': 321838, 'gallo is making': 342959, 'is making hand': 449544, 'making hand sanitizer': 511103, 'sanitizer and donating': 734403, 'and donating them': 61663, 'donating them to': 254515, 'them to first': 876472, 'to first responder': 905979, 'first responder such': 308964, 'responder such police': 715525, 'such police officer': 816681, 'police officer firefighter': 663118, 'officer firefighter and': 595656, 'firefighter and health': 308195, 'and health care': 64349, 'health care worker': 386255, 'care worker love': 164295, 'worker love this': 1007338, 'love this company': 504827, 'gal': 342898, 'cassidyrae': 166753, 'gal cassidyrae': 342902, 'medication': 526615, 'cancel': 160830, 'prepare': 670052, 'outbreak ha': 628262, 'ha got': 370743, 'got you': 359026, 'you checking': 1017940, 'checking the': 174851, 'the news': 861599, 'news little': 560583, 'little more': 495458, 'more often': 539896, 'often or': 596247, 'or asking': 614437, 'asking yourself': 96118, 'yourself whether': 1026751, 'whether it': 985518, 'it time': 461690, 'on food': 600834, 'or medication': 616110, 'medication cancel': 526636, 'cancel travel': 160901, 'travel or': 930453, 'or prepare': 616675, 'prepare to': 670135, 'work from': 1005192, 'home you': 402579, 'not alone': 568156, 'if the covid': 414964, '19 outbreak ha': 9130, 'outbreak ha got': 628268, 'ha got you': 370746, 'got you checking': 359028, 'you checking the': 1017941, 'checking the news': 174853, 'the news little': 861617, 'news little more': 560584, 'little more often': 495468, 'more often or': 539905, 'often or asking': 596248, 'or asking yourself': 614438, 'asking yourself whether': 96119, 'yourself whether it': 1026752, 'whether it time': 985534, 'it time to': 461700, 'time to stock': 898077, 'up on food': 945565, 'on food or': 600892, 'food or medication': 315661, 'or medication cancel': 616112, 'medication cancel travel': 526637, 'cancel travel or': 160903, 'travel or prepare': 930455, 'or prepare to': 616676, 'prepare to work': 670144, 'to work from': 918724, 'work from home': 1005193, 'from home you': 335935, 'home you re': 402587, 're not alone': 699075, 'target': 834426, 'housewares': 407028, 'homeworld': 403017, 'boost safety': 135004, 'safety measure': 730616, 'measure retail': 525322, 'retail target': 718760, 'target consumer': 834453, 'consumer housewares': 197780, 'housewares homeworld': 407029, 'boost safety measure': 135005, 'safety measure retail': 730628, 'measure retail target': 525323, 'retail target consumer': 718761, 'target consumer housewares': 834455, 'consumer housewares homeworld': 197781, 'predicted': 669599, 'somehow': 784305, 'film': 305654, 'except': 289122, 'they predicted': 882900, 'predicted somehow': 669616, 'somehow everything': 784317, 'everything about': 287668, 'about in': 25509, 'in film': 422885, 'film contagion': 305670, 'contagion except': 200405, 'except the': 289230, 'the high': 857314, 'of toiletpaper': 592255, 'toiletpaper mask': 922223, 'sanitizer stayathome': 735797, 'stayathome staysafestayhome': 797667, 'they predicted somehow': 882901, 'predicted somehow everything': 669617, 'somehow everything about': 784318, 'everything about in': 287669, 'about in film': 25510, 'in film contagion': 422886, 'film contagion except': 305671, 'contagion except the': 200406, 'except the high': 289232, 'the high price': 857320, 'high price of': 395262, 'price of toiletpaper': 675595, 'of toiletpaper mask': 592272, 'toiletpaper mask and': 922224, 'and sanitizer stayathome': 70886, 'sanitizer stayathome staysafestayhome': 735799, 'bid': 129457, 'overcharging': 631096, 'capped': 162866, 'ply': 661754, 'surgical': 828341, 'respectively': 715162, 'jantacurfewchallenge': 464608, 'in bid': 420819, 'bid to': 129483, 'the overcharging': 862777, 'overcharging amid': 631097, 'amid panic': 52581, 'buying due': 150210, 'novel the': 573819, 'government of': 360392, 'of india': 585094, 'india ha': 434437, 'ha capped': 370057, 'capped the': 162882, 'of ply': 588181, 'ply and': 661759, 'and ply': 69137, 'ply surgical': 661782, 'surgical mask': 828347, 'mask at': 518408, 'at and': 97994, 'and 10': 57341, '10 respectively': 1654, 'respectively jantacurfewchallenge': 715172, 'in bid to': 420820, 'bid to curb': 129488, 'curb the overcharging': 220583, 'the overcharging amid': 862778, 'overcharging amid panic': 631098, 'amid panic buying': 52582, 'panic buying due': 637712, 'buying due to': 150211, 'to the novel': 916907, 'the novel the': 861925, 'novel the government': 573820, 'the government of': 856571, 'government of india': 360395, 'of india ha': 585104, 'india ha capped': 434439, 'ha capped the': 370058, 'capped the price': 162883, 'price of ply': 675536, 'of ply and': 588183, 'ply and ply': 661760, 'and ply surgical': 69139, 'ply surgical mask': 661783, 'surgical mask at': 828351, 'mask at and': 518413, 'at and 10': 97995, 'and 10 respectively': 57348, '10 respectively jantacurfewchallenge': 1656, 'ban': 109160, 'sunbathing': 818113, 'socialising': 780945, 'bench': 126820, 'matt': 520512, 'hancock': 374701, 'marr': 517984, 'follow': 312332, 'new the': 559742, 'government will': 360806, 'will ban': 992327, 'ban exercise': 109196, 'exercise under': 290109, 'under the': 940288, 'the lockdown': 859587, 'lockdown if': 499487, 'if people': 414605, 'people keep': 648569, 'keep flouting': 471510, 'flouting the': 311220, 'the rule': 866037, 'rule by': 727219, 'by sunbathing': 154162, 'sunbathing socialising': 818124, 'socialising sitting': 780946, 'sitting on': 772131, 'on bench': 599618, 'bench matt': 126821, 'matt hancock': 520520, 'hancock say': 374706, 'say he': 738725, 'he tell': 385502, 'tell marr': 837002, 'marr that': 517986, 'that if': 844413, 'not want': 572433, 'to ban': 901016, 'exercise then': 290104, 'then you': 877777, 'have got': 380811, 'got to': 358948, 'to follow': 906042, 'follow the': 312520, 'new the government': 559744, 'the government will': 856629, 'government will ban': 360808, 'will ban exercise': 992329, 'ban exercise under': 109199, 'exercise under the': 290110, 'under the lockdown': 940318, 'the lockdown if': 859604, 'lockdown if people': 499488, 'if people keep': 414622, 'people keep flouting': 648571, 'keep flouting the': 471511, 'flouting the rule': 311222, 'the rule by': 866043, 'rule by sunbathing': 727220, 'by sunbathing socialising': 154163, 'sunbathing socialising sitting': 818125, 'socialising sitting on': 780947, 'sitting on bench': 772132, 'on bench matt': 599619, 'bench matt hancock': 126822, 'matt hancock say': 520522, 'hancock say he': 374707, 'say he tell': 738738, 'he tell marr': 385503, 'tell marr that': 837003, 'marr that if': 517987, 'that if you': 844427, 'if you do': 415423, 'do not want': 249887, 'not want to': 572447, 'want to ban': 965993, 'to ban exercise': 901020, 'ban exercise then': 109198, 'exercise then you': 290105, 'then you have': 877786, 'you have got': 1019052, 'have got to': 380816, 'got to follow': 358955, 'to follow the': 906065, 'follow the rule': 312544, 'pastry': 643893, 'pizza': 657145, 'base': 111430, 'four': 330576, 'fast': 299900, 'fun': 341122, 'and at': 58470, 'at first': 98652, 'first wa': 309166, 'wa all': 961464, 'all other': 43777, 'other stuff': 621002, 'stuff like': 815117, 'like toilet': 491641, 'toilet and': 921125, 'and long': 66347, 'long life': 501486, 'life milk': 488874, 'milk but': 531611, 'but now': 146596, 'now all': 573958, 'all puff': 44092, 'puff pastry': 688836, 'pastry pizza': 643898, 'pizza base': 657151, 'base and': 111432, 'and four': 63237, 'four think': 330679, 'are bored': 85025, 'bored and': 135331, 'and no': 67599, 'no fast': 564194, 'fast food': 299953, 'food open': 315635, 'open so': 612501, 'it fun': 458184, 'fun thing': 341224, 'thing to': 884875, 'do with': 250541, 'supermarket and at': 818934, 'and at first': 58473, 'at first wa': 98660, 'first wa all': 309167, 'wa all other': 961467, 'all other stuff': 43789, 'other stuff like': 621004, 'stuff like toilet': 815123, 'like toilet and': 491642, 'toilet and long': 921126, 'and long life': 66349, 'long life milk': 501488, 'life milk but': 488875, 'milk but now': 531614, 'but now all': 146597, 'now all puff': 573964, 'all puff pastry': 44093, 'puff pastry pizza': 688837, 'pastry pizza base': 643899, 'pizza base and': 657152, 'base and four': 111434, 'and four think': 63239, 'four think people': 330680, 'think people are': 885485, 'people are bored': 646939, 'are bored and': 85026, 'bored and no': 135332, 'and no fast': 67614, 'no fast food': 564195, 'fast food open': 299970, 'food open so': 315636, 'open so it': 612503, 'so it fun': 777461, 'it fun thing': 458186, 'fun thing to': 341227, 'thing to do': 884883, 'to do with': 904592, 'do with kid': 250556, 'drinklocal': 258955, 'wa happy': 962276, 'happy to': 377704, 'see these': 745928, 'these show': 880690, 'show up': 767251, 'up in': 945142, 'store quarantine': 809714, 'quarantine drinklocal': 692162, 'wa happy to': 962277, 'happy to see': 377720, 'to see these': 914085, 'see these show': 745930, 'these show up': 880691, 'show up in': 767258, 'up in the': 945184, 'grocery store quarantine': 365693, 'store quarantine drinklocal': 809715, 'consumerhabits': 199688, 'buyinghabits': 151425, 'mainoptmarketing': 508902, 'will the': 995126, 'consumer change': 196774, 'change after': 171885, 'passed consumerhabits': 643258, 'consumerhabits marketing': 199689, 'marketing buyinghabits': 517540, 'buyinghabits mainoptmarketing': 151426, 'how will the': 409242, 'will the consumer': 995130, 'the consumer change': 851508, 'consumer change after': 196775, 'change after the': 171889, 'after the pandemic': 36340, 'the pandemic ha': 862978, 'pandemic ha passed': 635559, 'ha passed consumerhabits': 371475, 'passed consumerhabits marketing': 643259, 'consumerhabits marketing buyinghabits': 199690, 'marketing buyinghabits mainoptmarketing': 517541, 'activist': 30336, 'filed': 305387, 'emotional': 273271, 'distress': 247925, 'lawsuit': 482518, 'fox': 330739, 'coverage': 212328, 'sought': 786203, 'replace': 711578, 'judge': 467614, 'overseeing': 631500, 'filing': 305416, 'crosspost': 219094, 'an activist': 55085, 'activist group': 30343, 'group which': 366967, 'which filed': 985854, 'filed consumer': 305398, 'protection and': 685313, 'and emotional': 62046, 'emotional distress': 273280, 'distress lawsuit': 247930, 'lawsuit against': 482519, 'against fox': 37452, 'fox news': 330760, 'news for': 560422, 'for it': 322688, 'it coverage': 457381, 'coverage of': 212364, 'ha sought': 372007, 'sought to': 786215, 'to replace': 913250, 'replace the': 711585, 'the judge': 858698, 'judge overseeing': 467626, 'overseeing it': 631501, 'it claim': 457143, 'claim one': 179778, 'one week': 607404, 'week after': 975821, 'after filing': 35661, 'filing it': 305426, 'it crosspost': 457420, 'an activist group': 55086, 'activist group which': 30344, 'group which filed': 366969, 'which filed consumer': 985855, 'filed consumer protection': 305399, 'consumer protection and': 198505, 'protection and emotional': 685317, 'and emotional distress': 62048, 'emotional distress lawsuit': 273281, 'distress lawsuit against': 247931, 'lawsuit against fox': 482520, 'against fox news': 37453, 'fox news for': 330763, 'news for it': 560436, 'for it coverage': 322700, 'it coverage of': 457382, 'coverage of the': 212369, 'pandemic ha sought': 635572, 'ha sought to': 372008, 'sought to replace': 786218, 'to replace the': 913251, 'replace the judge': 711588, 'the judge overseeing': 858699, 'judge overseeing it': 467627, 'overseeing it claim': 631502, 'it claim one': 457144, 'claim one week': 179779, 'one week after': 607407, 'week after filing': 975825, 'after filing it': 35662, 'filing it crosspost': 305427, 'weirdstreamathon': 977843, 'raise': 695805, 'artist': 94582, 'deserved': 238147, 'conviviality': 202688, 'alonetogether': 46959, 'the weirdstreamathon': 871366, 'weirdstreamathon is': 977844, 'is on': 450456, 'on join': 601735, 'join to': 466883, 'help raise': 390399, 'raise fund': 695853, 'fund for': 341402, 'for artist': 319493, 'artist affected': 94583, 'by and': 151830, 'enjoy well': 277207, 'well deserved': 978148, 'deserved moment': 238156, 'moment of': 536010, 'online conviviality': 608052, 'conviviality alonetogether': 202689, 'the weirdstreamathon is': 871367, 'weirdstreamathon is on': 977845, 'is on join': 450471, 'on join to': 601736, 'join to help': 466887, 'to help raise': 907599, 'help raise fund': 390401, 'raise fund for': 695854, 'fund for artist': 341403, 'for artist affected': 319494, 'artist affected by': 94584, 'affected by and': 34303, 'by and enjoy': 151837, 'and enjoy well': 62152, 'enjoy well deserved': 277208, 'well deserved moment': 978152, 'deserved moment of': 238157, 'moment of online': 536016, 'of online conviviality': 587252, 'online conviviality alonetogether': 608053, 'hollywoodjustfoundout': 400472, 'count': 210092, 'doesn': 251684, 'cape': 162611, 'hollywoodjustfoundout the': 400473, 'the hero': 857291, 'hero that': 394109, 'that count': 843373, 'count doesn': 210113, 'doesn wear': 251993, 'wear cape': 974299, 'hollywoodjustfoundout the hero': 400474, 'the hero that': 857299, 'hero that count': 394110, 'that count doesn': 843375, 'count doesn wear': 210114, 'doesn wear cape': 251994, 'worst': 1011137, 'type': 937507, 'paedos': 633816, 'worst type': 1011295, 'type of': 937543, 'world in': 1009654, 'in order': 426209, 'order selfish': 618564, 'selfish supermarket': 748280, 'supermarket shopper': 822607, 'shopper people': 761643, 'who take': 989727, 'take the': 832634, 'the low': 859772, 'low offer': 505441, 'offer on': 594717, 'on paedos': 602675, 'worst type of': 1011296, 'type of people': 937573, 'of people in': 587927, 'people in the': 648436, 'the world in': 871893, 'world in order': 1009662, 'in order selfish': 426218, 'order selfish supermarket': 618565, 'selfish supermarket shopper': 748281, 'supermarket shopper people': 822619, 'shopper people who': 761644, 'people who take': 650346, 'who take the': 989732, 'take the low': 832660, 'the low offer': 859780, 'low offer on': 505442, 'offer on paedos': 594719, 'advent': 33076, 'reveals': 720300, 'flaw': 310257, 'frailty': 330934, 'cheap': 174070, 'transport': 929864, 'the advent': 848372, 'advent of': 33079, '19 reveals': 10217, 'reveals flaw': 720318, 'flaw in': 310259, 'food system': 317039, 'system frailty': 831177, 'frailty that': 330935, 'that for': 843932, 'the most': 860938, 'most part': 542601, 'part cheap': 642257, 'cheap transport': 174221, 'transport and': 929865, 'and global': 63690, 'global supply': 352229, 'supply network': 825584, 'network have': 557722, 'been able': 120588, 'to mask': 909874, 'the advent of': 848373, 'advent of covid': 33081, 'covid 19 reveals': 213712, '19 reveals flaw': 10218, 'reveals flaw in': 720319, 'flaw in our': 310261, 'in our food': 426292, 'our food system': 623135, 'food system frailty': 317045, 'system frailty that': 831178, 'frailty that for': 330936, 'that for the': 843938, 'for the most': 326569, 'the most part': 861014, 'most part cheap': 542602, 'part cheap transport': 642258, 'cheap transport and': 174222, 'transport and global': 929866, 'and global supply': 63701, 'global supply network': 352237, 'supply network have': 825585, 'network have been': 557723, 'have been able': 379456, 'been able to': 120589, 'able to mask': 24504, 'stopstockpiling': 805860, 'borisout': 135542, 'socialdistanacing': 780039, 'panicbuyers': 638846, 'harder': 378154, 'panicshopping coronacrisis': 639423, 'coronacrisis stopstockpiling': 204794, 'stopstockpiling borisout': 805861, 'borisout stoppanicbuying': 135545, 'stoppanicbuying panicshopping': 805595, 'panicbuyinguk socialdistanacing': 639159, 'socialdistanacing have': 780063, 'have panicbuyers': 381881, 'panicbuyers made': 638864, 'made your': 508080, 'your life': 1024625, 'life harder': 488716, 'harder than': 378181, 'it needed': 459756, 'panicshopping coronacrisis stopstockpiling': 639424, 'coronacrisis stopstockpiling borisout': 204795, 'stopstockpiling borisout stoppanicbuying': 805862, 'borisout stoppanicbuying panicshopping': 135546, 'stoppanicbuying panicshopping panicbuyinguk': 805596, 'panicshopping panicbuyinguk socialdistanacing': 639448, 'panicbuyinguk socialdistanacing have': 639165, 'socialdistanacing have panicbuyers': 780064, 'have panicbuyers made': 381882, 'panicbuyers made your': 638866, 'made your life': 508081, 'your life harder': 1024635, 'life harder than': 488717, 'harder than it': 378184, 'than it needed': 840801, 'it needed to': 459761, 'needed to be': 556528, 'crowded': 219286, 'mentioned': 528814, 'lowly': 506251, 'ten': 837761, 'penny': 646602, 'shocked': 759551, 'been ill': 121320, 'ill for': 416120, 'day with': 228774, 'with what': 1002066, 'what can': 981165, 'only assume': 610123, 'assume wa': 97032, 'wa covid': 961887, 'in crowded': 421912, 'crowded supermarket': 219354, 'supermarket with': 823906, 'with no': 999732, 'no protection': 565226, 'protection from': 685453, 'from this': 337984, 'this disease': 887249, 'disease nothing': 245188, 'nothing is': 573055, 'is ever': 447569, 'ever mentioned': 285409, 'mentioned about': 528817, 'the lowly': 859825, 'lowly paid': 506252, 'paid staff': 634135, 'staff co': 792329, 'co we': 185001, 'are ten': 90771, 'ten penny': 837799, 'penny am': 646603, 'am shocked': 50388, 'shocked at': 759554, 'have been ill': 379574, 'been ill for': 121321, 'ill for day': 416121, 'for day with': 320594, 'day with what': 228788, 'with what can': 1002067, 'what can only': 981176, 'can only assume': 159116, 'only assume wa': 610125, 'assume wa covid': 97033, 'wa covid 19': 961888, '19 work in': 12170, 'work in crowded': 1005302, 'in crowded supermarket': 421920, 'crowded supermarket with': 219364, 'supermarket with no': 823932, 'with no protection': 999781, 'no protection from': 565230, 'protection from this': 685461, 'from this disease': 337994, 'this disease nothing': 887253, 'disease nothing is': 245189, 'nothing is ever': 573059, 'is ever mentioned': 447571, 'ever mentioned about': 285410, 'mentioned about the': 528818, 'about the lowly': 26442, 'the lowly paid': 859826, 'lowly paid staff': 506253, 'paid staff co': 634136, 'staff co we': 792331, 'co we are': 185003, 'we are ten': 970734, 'are ten penny': 90773, 'ten penny am': 837800, 'penny am shocked': 646604, 'am shocked at': 50389, 'shocked at the': 759557, 'true': 933027, 'are grocery': 86965, 'store spreading': 810289, 'spreading covid': 790956, 'if true': 415193, 'true we': 933209, 'we got': 971667, 'got problem': 358800, 'are grocery store': 86968, 'grocery store spreading': 365793, 'store spreading covid': 810290, 'spreading covid 19': 790957, '19 if true': 7666, 'if true we': 415196, 'true we got': 933213, 'we got problem': 971675, 'battle': 112771, 'deaf': 229318, 'startling': 795072, 'abuja': 27567, 'deadly': 229243, 'the huge': 857695, 'huge battle': 409981, 'battle with': 112842, 'the deaf': 852953, 'deaf dumb': 229319, 'dumb noticed': 262105, 'noticed something': 573471, 'something startling': 785064, 'startling at': 795073, 'at popular': 100160, 'popular abuja': 664532, 'abuja supermarket': 27583, 'supermarket old': 821714, 'old habit': 598285, 'habit die': 372598, 'die hard': 241366, 'hard they': 378020, 'they say': 883259, 'say but': 738471, 'but when': 147811, 'when such': 984089, 'such habit': 816534, 'habit is': 372642, 'is dangerous': 447025, 'dangerous and': 225718, 'and deadly': 60971, 'deadly to': 229297, 'public then': 688362, 'it could': 457350, 'and the huge': 73411, 'the huge battle': 857696, 'huge battle with': 409982, 'battle with the': 112845, 'with the deaf': 1001261, 'the deaf dumb': 852954, 'deaf dumb noticed': 229320, 'dumb noticed something': 262106, 'noticed something startling': 573472, 'something startling at': 785065, 'startling at popular': 795074, 'at popular abuja': 100161, 'popular abuja supermarket': 664533, 'abuja supermarket old': 27584, 'supermarket old habit': 821715, 'old habit die': 598286, 'habit die hard': 372599, 'die hard they': 241367, 'hard they say': 378021, 'they say but': 883261, 'say but when': 738474, 'but when such': 147823, 'when such habit': 984091, 'such habit is': 816535, 'habit is dangerous': 372643, 'is dangerous and': 447026, 'dangerous and deadly': 225719, 'and deadly to': 60972, 'deadly to the': 229298, 'to the public': 916992, 'the public then': 864859, 'public then it': 688364, 'then it could': 877280, 'boy': 137237, 'superchargechallenge': 818633, 'will use': 995277, 'it to': 461703, 'get food': 347027, 'up for': 944911, 'for this': 327006, '19 period': 9640, 'period help': 651781, 'help your': 391012, 'your boy': 1023008, 'boy to': 137292, 'survive this': 829258, 'period please': 651865, 'please superchargechallenge': 660607, 'will use it': 995286, 'use it to': 949317, 'it to get': 461717, 'to get food': 906484, 'get food stock': 347066, 'food stock up': 316815, 'stock up for': 803085, 'up for this': 944968, 'for this covid': 327018, 'covid 19 period': 213569, '19 period help': 9643, 'period help your': 651783, 'help your boy': 391013, 'your boy to': 1023009, 'boy to survive': 137293, 'to survive this': 916051, 'survive this period': 829267, 'this period please': 889529, 'period please superchargechallenge': 651866, 'tale': 833689, 'rare': 697072, 'contains': 200616, '80vol': 22766, 'alcohol': 40889, '500': 19925, 'decrease': 231545, 'minor': 533629, 'ingredient': 438341, 'glycerine': 353162, 'h2o2': 369381, 'expense': 291172, 'the tale': 869133, 'tale of': 833698, 'of rare': 588746, 'rare good': 697085, 'good contains': 356913, 'contains 80vol': 200621, '80vol alcohol': 22767, 'alcohol where': 41177, 'where doe': 984836, 'doe the': 251602, 'the increase': 858063, 'price come': 673187, 'come from': 187299, 'from in': 336018, 'in up': 430457, 'to 500': 899751, '500 global': 19995, 'global price': 352134, 'price decrease': 673408, 'decrease since': 231599, 'since month': 770743, 'month minor': 537863, 'minor ingredient': 533636, 'ingredient glycerine': 438372, 'glycerine h2o2': 353163, 'h2o2 are': 369382, 'the expense': 854715, 'expense of': 291202, 'of life': 585813, 'the tale of': 869135, 'tale of rare': 833702, 'of rare good': 588747, 'rare good contains': 697086, 'good contains 80vol': 356914, 'contains 80vol alcohol': 200622, '80vol alcohol where': 22768, 'alcohol where doe': 41178, 'where doe the': 984840, 'doe the increase': 251612, 'the increase in': 858065, 'increase in price': 432859, 'in price come': 426956, 'price come from': 673189, 'come from in': 187305, 'from in up': 336029, 'in up to': 430461, 'up to 500': 946341, 'to 500 global': 899756, '500 global price': 19996, 'global price decrease': 352135, 'price decrease since': 673411, 'decrease since month': 231600, 'since month minor': 770744, 'month minor ingredient': 537864, 'minor ingredient glycerine': 533637, 'ingredient glycerine h2o2': 438373, 'glycerine h2o2 are': 353164, 'h2o2 are available': 369383, 'available at the': 104261, 'at the expense': 100940, 'the expense of': 854717, 'expense of life': 291204, 'asked': 95708, 'place': 657285, 'twitch': 936610, 'streaming': 812804, 'awhile': 106259, 'saving': 737840, 'staysafe': 798776, 'cornavirusoutbreak': 203613, 'twitchaffiliate': 936621, 'we have': 971737, 'have now': 381724, 'now been': 574222, 'been asked': 120693, 'asked to': 95856, 'mask in': 518826, 'in public': 427068, 'public place': 688224, 'place to': 657743, 'store etc': 807627, 'etc no': 282671, 'no twitch': 565813, 'twitch streaming': 936613, 'streaming for': 812819, 'for me': 323303, 'me for': 522744, 'for awhile': 319549, 'awhile while': 106268, 'while saving': 987235, 'saving the': 737965, 'world staysafe': 1010002, 'staysafe out': 798859, 'out there': 627464, 'there stayhome': 879093, 'stayhome cornavirusoutbreak': 797968, 'cornavirusoutbreak twitchaffiliate': 203619, 'we have now': 971880, 'have now been': 381726, 'now been asked': 574223, 'been asked to': 120696, 'asked to wear': 95881, 'wear mask in': 974390, 'mask in public': 518834, 'in public place': 427095, 'public place to': 688237, 'place to the': 657777, 'grocery store etc': 365376, 'store etc no': 807630, 'etc no twitch': 282672, 'no twitch streaming': 565814, 'twitch streaming for': 936614, 'streaming for me': 812820, 'for me for': 323314, 'me for awhile': 522746, 'for awhile while': 319553, 'awhile while saving': 106269, 'while saving the': 987236, 'saving the world': 737967, 'the world staysafe': 871972, 'world staysafe out': 1010003, 'staysafe out there': 798860, 'out there stayhome': 627512, 'there stayhome cornavirusoutbreak': 879094, 'stayhome cornavirusoutbreak twitchaffiliate': 797969, 'genuinely': 345873, 'british': 140486, 'prick': 678002, 'am genuinely': 50071, 'genuinely worried': 345913, 'worried that': 1010581, 'the british': 850019, 'british public': 140574, 'public will': 688483, 'kill more': 474448, 'people than': 649742, 'than covid': 840471, '19 after': 4852, 'after seeing': 36156, 'seeing the': 746486, 'shelf today': 757707, 'today stop': 920225, 'hoarding you': 399669, 'you prick': 1020429, 'am genuinely worried': 50072, 'genuinely worried that': 345914, 'worried that the': 1010587, 'that the british': 846672, 'the british public': 850031, 'british public will': 140580, 'public will kill': 688484, 'will kill more': 993918, 'kill more people': 474451, 'more people than': 540043, 'people than covid': 649743, 'than covid 19': 840472, 'covid 19 after': 212593, '19 after seeing': 4856, 'after seeing the': 36160, 'seeing the supermarket': 746506, 'supermarket shelf today': 822549, 'shelf today stop': 757708, 'today stop hoarding': 920226, 'stop hoarding you': 804754, 'hoarding you prick': 399677, 'wellness': 978823, 'disinfectant': 245592, 'spray': 790251, 'cream': 215520, 'partner': 642752, 'code': 185324, 'discount': 244438, 'saturdayt': 737109, 'ha wellness': 372468, 'wellness set': 978854, 'set available': 753352, 'available that': 104616, 'that includes': 844472, 'includes hand': 431754, 'sanitizer wipe': 736113, 'wipe disinfectant': 996224, 'disinfectant spray': 245755, 'spray and': 790260, 'and hand': 64136, 'hand cream': 374886, 'cream available': 215530, 'available on': 104524, 'their site': 874735, 'site do': 771904, 'have partner': 381895, 'partner code': 642801, 'code april': 185333, 'april that': 83693, 'that give': 844009, 'you an': 1016964, 'extra 20': 293430, '20 discount': 13034, 'discount saturdayt': 244530, 'ha wellness set': 372469, 'wellness set available': 978855, 'set available that': 753353, 'available that includes': 104617, 'that includes hand': 844477, 'includes hand sanitizer': 431755, 'hand sanitizer wipe': 375670, 'sanitizer wipe disinfectant': 736116, 'wipe disinfectant spray': 996227, 'disinfectant spray and': 245756, 'spray and hand': 790261, 'and hand cream': 64138, 'hand cream available': 374887, 'cream available on': 215531, 'available on their': 104536, 'on their site': 604508, 'their site do': 874737, 'site do have': 771905, 'do have partner': 249376, 'have partner code': 381896, 'partner code april': 642802, 'code april that': 185334, 'april that give': 83694, 'that give you': 844013, 'give you an': 350849, 'you an extra': 1016966, 'an extra 20': 56003, 'extra 20 discount': 293431, '20 discount saturdayt': 13037, 'breaking': 138908, 'professor': 682535, 'stephen': 799729, 'powis': 667848, 'overnight': 631321, '170': 4413, 'signed': 769350, 'volunteer': 960202, '189': 4664, 'minute': 533702, 'yournhsneedsyou': 1026443, 'breaking professor': 139034, 'professor stephen': 682592, 'stephen powis': 799739, 'powis announces': 667849, 'announces on': 77272, 'on that': 603927, 'that overnight': 845622, 'overnight 170': 631322, '170 00': 4414, '00 of': 379, 'of you': 593367, 'already signed': 47664, 'signed up': 769387, 'to volunteer': 918229, 'volunteer to': 960348, 'your nh': 1025011, 'nh that': 562133, 'that 189': 842439, '189 people': 4665, 'people every': 647826, 'every minute': 286010, 'minute yournhsneedsyou': 533908, 'breaking professor stephen': 139035, 'professor stephen powis': 682593, 'stephen powis announces': 799740, 'powis announces on': 667850, 'announces on that': 77274, 'on that overnight': 603944, 'that overnight 170': 845623, 'overnight 170 00': 631323, '170 00 of': 4415, '00 of you': 388, 'of you have': 593389, 'you have already': 1019012, 'have already signed': 379203, 'already signed up': 47665, 'signed up to': 769390, 'up to volunteer': 946445, 'to volunteer to': 918235, 'volunteer to help': 960353, 'to help your': 907671, 'help your nh': 391025, 'your nh that': 1025012, 'nh that 189': 562134, 'that 189 people': 842440, '189 people every': 4666, 'people every minute': 647828, 'every minute yournhsneedsyou': 286014, 'street': 812880, 'riot': 722594, 'migrant': 531194, 'neutral': 557814, 'territory': 838553, 'spade': 787233, 'avoided': 105410, 'child are': 176006, 'are dying': 86037, 'dying of': 263847, 'of hunger': 584904, 'hunger patient': 411166, 'patient are': 644140, 'the street': 868215, 'street instead': 813003, 'the hospital': 857514, 'hospital and': 404275, 'are food': 86632, 'food riot': 316240, 'riot the': 722624, 'the migrant': 860586, 'migrant are': 531201, 'on neutral': 602370, 'neutral territory': 557817, 'territory let': 838568, 'let call': 486638, 'call spade': 156110, 'spade spade': 787234, 'spade this': 787239, 'this government': 887734, 'government ha': 360137, 'ha failed': 370578, 'failed because': 296132, 'because all': 118914, 'all this': 45089, 'could have': 209238, 'been avoided': 120715, 'child are dying': 176008, 'are dying of': 86050, 'dying of hunger': 263849, 'of hunger patient': 584917, 'hunger patient are': 411167, 'patient are on': 644144, 'on the street': 604388, 'the street instead': 868233, 'street instead of': 813004, 'instead of in': 440279, 'of in the': 585048, 'in the hospital': 429272, 'the hospital and': 857515, 'hospital and there': 404288, 'and there are': 73829, 'there are food': 878108, 'are food riot': 86636, 'food riot the': 316243, 'riot the migrant': 722625, 'the migrant are': 860587, 'migrant are on': 531203, 'are on neutral': 88726, 'on neutral territory': 602371, 'neutral territory let': 557818, 'territory let call': 838569, 'let call spade': 486640, 'call spade spade': 156111, 'spade spade this': 787236, 'spade this government': 787240, 'this government ha': 887737, 'government ha failed': 360151, 'ha failed because': 370579, 'failed because all': 296133, 'because all this': 118920, 'all this could': 45096, 'this could have': 886925, 'could have been': 209241, 'have been avoided': 379472, 'welp': 978865, 'besides': 127487, 'lab': 478244, 'using': 950364, 'proper': 684082, 'detect': 239325, 'super': 818463, 'conduct': 193632, 'shipment': 758739, 'strike': 813719, 'oatmeal': 578307, 'welp besides': 978866, 'besides the': 127523, 'panic that': 638672, 'that our': 845568, 'our region': 624570, 'region lab': 707430, 'lab are': 478248, 'not using': 572374, 'using the': 950685, 'the proper': 864671, 'proper kit': 684117, 'kit to': 475650, 'to detect': 904225, 'detect covid': 239326, 'the stock': 867902, 'stock on': 802555, 'supermarket are': 819142, 'are running': 89758, 'running super': 728083, 'super low': 818534, 'low bc': 505154, 'bc the': 113291, 'the ppl': 864172, 'ppl how': 668251, 'how conduct': 407577, 'conduct the': 193650, 'the shipment': 866944, 'shipment are': 758740, 'on strike': 603723, 'strike ppl': 813761, 'ppl send': 668321, 'send food': 749856, 'food oatmeal': 315575, 'oatmeal would': 578310, 'welp besides the': 978867, 'besides the panic': 127527, 'the panic that': 863225, 'panic that our': 638677, 'that our region': 845591, 'our region lab': 624571, 'region lab are': 707431, 'lab are not': 478249, 'are not using': 88493, 'not using the': 572379, 'using the proper': 950710, 'the proper kit': 864676, 'proper kit to': 684118, 'kit to detect': 475652, 'to detect covid': 904226, 'detect covid 19': 239327, '19 the stock': 11250, 'the stock on': 867919, 'stock on the': 802566, 'the supermarket are': 868467, 'supermarket are running': 819183, 'are running super': 89773, 'running super low': 728084, 'super low bc': 818535, 'low bc the': 505155, 'bc the ppl': 113292, 'the ppl how': 864174, 'ppl how conduct': 668252, 'how conduct the': 407578, 'conduct the shipment': 193651, 'the shipment are': 866945, 'shipment are on': 758741, 'are on strike': 88735, 'on strike ppl': 603726, 'strike ppl send': 813762, 'ppl send food': 668322, 'send food oatmeal': 749858, 'food oatmeal would': 315576, 'oatmeal would be': 578311, 'defense': 232126, 'trump must': 933714, 'must use': 546972, 'use the': 949649, 'the defense': 853032, 'defense production': 232141, 'production act': 681892, 'act to': 29794, 'produce hundred': 680304, 'of million': 586531, 'million of': 532257, 'the protective': 864710, 'protective equipment': 685722, 'equipment we': 279867, 'need our': 555395, 'our health': 623365, 'protected we': 685163, 'we must': 972398, 'must also': 546471, 'also focus': 48218, 'focus on': 311860, 'on all': 599217, 'all worker': 45498, 'risk including': 723630, 'including member': 432056, 'member exposed': 528075, 'exposed every': 292848, 'trump must use': 933716, 'must use the': 546976, 'use the defense': 949660, 'the defense production': 853033, 'defense production act': 232142, 'production act to': 681900, 'act to produce': 29800, 'to produce hundred': 912197, 'produce hundred of': 680305, 'hundred of million': 411002, 'of million of': 586535, 'million of the': 532289, 'of the protective': 591375, 'the protective equipment': 864711, 'protective equipment we': 685741, 'equipment we need': 279868, 'we need our': 972524, 'need our health': 555397, 'our health care': 623370, 'care worker are': 164277, 'worker are protected': 1006416, 'are protected we': 89298, 'protected we must': 685164, 'we must also': 972401, 'must also focus': 546473, 'also focus on': 48219, 'focus on all': 311862, 'on all worker': 599257, 'all worker at': 45500, 'worker at risk': 1006473, 'at risk including': 100371, 'risk including member': 723631, 'including member exposed': 432057, 'member exposed every': 528076, 'exposed every day': 292849, 'everybody keep': 286455, 'keep strong': 471983, 'strong we': 814154, 'have toiletpaper': 383352, 'everybody keep strong': 286456, 'keep strong we': 471984, 'strong we have': 814156, 'we have toiletpaper': 971970, 'bus': 142988, 'operate': 612971, 'remote': 710690, 'will bus': 992864, 'bus service': 143078, 'service still': 752869, 'still operate': 800988, 'operate over': 613010, 'the next': 861642, 'next few': 561360, 'those of': 892259, 'of who': 593124, 'who live': 989212, 'live in': 495843, 'in remote': 427378, 'remote area': 710693, 'area and': 91928, 'and rely': 70207, 'on your': 605450, 'your bus': 1023040, 'bus to': 143096, 'get thing': 348397, 'thing from': 884343, '19 will bus': 12080, 'will bus service': 992865, 'bus service still': 143081, 'service still operate': 752870, 'still operate over': 800990, 'operate over the': 613011, 'over the next': 630743, 'the next few': 861665, 'next few week': 561364, 'few week for': 304146, 'week for those': 976240, 'for those of': 327126, 'those of who': 892271, 'of who live': 593132, 'who live in': 989215, 'live in remote': 495883, 'in remote area': 427379, 'remote area and': 710694, 'area and rely': 91942, 'and rely on': 70208, 'rely on your': 709659, 'on your bus': 605451, 'your bus to': 1023041, 'bus to get': 143099, 'to get thing': 906617, 'get thing from': 348398, 'thing from the': 884349, 'fluid': 311528, 'lady': 478730, 'asks': 96127, 'scared': 740932, 'wa in': 962357, 'line yesterday': 493616, 'yesterday watching': 1015929, 'watching worker': 968825, 'in ppe': 426891, 'ppe spray': 668054, 'spray fluid': 790292, 'fluid on': 311534, 'on shelf': 603398, 'shelf cart': 756929, 'cart food': 165298, 'food case': 313882, 'case lady': 165847, 'lady asks': 478738, 'asks can': 96130, 'can you': 160270, 'you spray': 1021335, 'spray some': 790331, 'some in': 783091, 'my hand': 548600, 'hand this': 375844, 'this isnt': 888498, 'isnt sanitizer': 454785, 'sanitizer it': 735224, 'it bleach': 456887, 'bleach please': 132511, 'please little': 660198, 'little others': 495508, 'others asked': 621287, 'asked him': 95761, 'him the': 396730, 'same that': 733324, 'that how': 844378, 'how scared': 408627, 'scared people': 741005, 'wa in line': 962372, 'in line yesterday': 424787, 'line yesterday watching': 493617, 'yesterday watching worker': 1015930, 'watching worker in': 968826, 'worker in ppe': 1007194, 'in ppe spray': 426893, 'ppe spray fluid': 668055, 'spray fluid on': 790293, 'fluid on shelf': 311535, 'on shelf cart': 603402, 'shelf cart food': 756930, 'cart food case': 165299, 'food case lady': 313883, 'case lady asks': 165848, 'lady asks can': 478739, 'asks can you': 96131, 'can you spray': 160335, 'you spray some': 1021336, 'spray some in': 790332, 'some in my': 783093, 'in my hand': 425582, 'my hand this': 548616, 'hand this isnt': 375848, 'this isnt sanitizer': 888500, 'isnt sanitizer it': 454786, 'sanitizer it bleach': 735225, 'it bleach please': 456888, 'bleach please little': 132512, 'please little others': 660199, 'little others asked': 495509, 'others asked him': 621288, 'asked him the': 95763, 'him the same': 396733, 'the same that': 866306, 'same that how': 733325, 'that how scared': 844384, 'how scared people': 408628, 'scared people are': 741006, 'people are now': 647028, 'repost': 712804, 'sea': 743075, 'spotted': 790173, 'noosaville': 566884, 'thanks': 842002, 'laugh': 481699, 'lisa': 494237, 'funny': 341695, 'noosa': 566882, 'sunshinecoast': 818448, 'repost don': 712810, 'don mind': 253739, 'mind me': 532692, 'me just': 523028, 'just deep': 468564, 'deep sea': 231924, 'sea shopping': 743102, 'shopping spotted': 763947, 'spotted at': 790181, 'at supermarket': 100693, 'in noosaville': 425928, 'noosaville whoever': 566885, 'whoever you': 990128, 'are thanks': 90786, 'thanks for': 842046, 'the laugh': 859168, 'laugh lisa': 481743, 'lisa wise': 494248, 'wise funny': 996681, 'funny noosa': 341772, 'noosa sunshinecoast': 566883, 'repost don mind': 712811, 'don mind me': 253741, 'mind me just': 532693, 'me just deep': 523031, 'just deep sea': 468565, 'deep sea shopping': 231925, 'sea shopping spotted': 743103, 'shopping spotted at': 763948, 'spotted at supermarket': 790184, 'at supermarket in': 100735, 'supermarket in noosaville': 820946, 'in noosaville whoever': 425929, 'noosaville whoever you': 566886, 'whoever you are': 990129, 'you are thanks': 1017258, 'are thanks for': 90787, 'thanks for the': 842080, 'for the laugh': 326526, 'the laugh lisa': 859169, 'laugh lisa wise': 481744, 'lisa wise funny': 494249, 'wise funny noosa': 996682, 'funny noosa sunshinecoast': 341773, 'prepayment': 670370, 'energy': 276379, 'meter': 529679, 'guidance': 368192, 'you struggling': 1021455, 'to top': 917633, 'top up': 925746, 'your prepayment': 1025379, 'prepayment energy': 670371, 'energy meter': 276502, 'meter due': 529711, 'outbreak follow': 628220, 'the link': 859433, 'link below': 493796, 'below for': 126641, 'for advice': 319042, 'advice guidance': 33397, 'are you struggling': 91863, 'you struggling to': 1021456, 'struggling to top': 814522, 'to top up': 917638, 'top up your': 925753, 'up your prepayment': 946749, 'your prepayment energy': 1025380, 'prepayment energy meter': 670372, 'energy meter due': 276503, 'meter due to': 529712, 'to the covid': 916606, '19 outbreak follow': 9123, 'outbreak follow the': 628221, 'follow the link': 312535, 'the link below': 859435, 'link below for': 493800, 'below for advice': 126642, 'for advice guidance': 319045, 'bailing': 108612, 'corruption': 207679, '101': 2216, 'rewarding': 720813, 'ceo': 169627, 'airline': 39907, 'cruise': 219687, 'hotel': 405098, 'fly': 311596, 'vacation': 951577, 'gopfascists': 358306, 'bailing out': 108615, 'out corporation': 625902, 'corporation is': 207433, 'is just': 449115, 'just corruption': 468527, 'corruption 101': 207680, '101 congress': 2221, 'congress rewarding': 194523, 'rewarding ceo': 720814, 'ceo with': 169890, 'public fund': 688023, 'fund to': 341519, 'save the': 737651, 'the airline': 848494, 'airline cruise': 39939, 'cruise line': 219697, 'line hotel': 493181, 'hotel or': 405175, 'or any': 614336, 'any consumer': 79052, 'consumer business': 196666, 'business give': 143782, 'give the': 350730, 'people the': 649788, 'the fucking': 855986, 'fucking money': 339947, 'll spend': 497020, 'spend it': 788623, 'to fly': 906030, 'fly cruise': 311602, 'cruise vacation': 219716, 'vacation trump': 951605, 'trump gopfascists': 933584, 'bailing out corporation': 108616, 'out corporation is': 625903, 'corporation is just': 207434, 'is just corruption': 449125, 'just corruption 101': 468528, 'corruption 101 congress': 207681, '101 congress rewarding': 2223, 'congress rewarding ceo': 194524, 'rewarding ceo with': 720815, 'ceo with public': 169891, 'with public fund': 1000356, 'public fund to': 688024, 'fund to save': 341528, 'to save the': 913795, 'save the airline': 737652, 'the airline cruise': 848497, 'airline cruise line': 39941, 'cruise line hotel': 219698, 'line hotel or': 493182, 'hotel or any': 405176, 'or any consumer': 614339, 'any consumer business': 79053, 'consumer business give': 196672, 'business give the': 143783, 'give the people': 350746, 'the people the': 863509, 'people the fucking': 649790, 'the fucking money': 855991, 'fucking money and': 339948, 'money and they': 536606, 'and they ll': 73916, 'they ll spend': 882611, 'll spend it': 497022, 'spend it to': 788625, 'it to fly': 461714, 'to fly cruise': 906031, 'fly cruise vacation': 311604, 'cruise vacation trump': 219717, 'vacation trump gopfascists': 951606, 'campaigning': 157281, 'keyworkers': 473594, 'decree': 231667, 'state': 795326, 'start campaigning': 794247, 'campaigning for': 157282, 'for supermarket': 325996, 'worker to': 1007993, 'get paid': 347759, 'paid more': 634085, 'more keyworkers': 539649, 'keyworkers coronacrisis': 473595, 'coronacrisis the': 204810, 'government decree': 360014, 'decree state': 231671, 'state so': 795940, 'time to start': 898073, 'to start campaigning': 915190, 'start campaigning for': 794248, 'campaigning for supermarket': 157283, 'for supermarket worker': 326037, 'supermarket worker to': 824100, 'worker to get': 1008006, 'to get paid': 906554, 'get paid more': 347774, 'paid more keyworkers': 634088, 'more keyworkers coronacrisis': 539650, 'keyworkers coronacrisis the': 473596, 'coronacrisis the government': 204812, 'the government decree': 856524, 'government decree state': 360015, 'decree state so': 231672, 'retailstrong': 719551, 'signing': 769628, 'pledge': 660835, 'retailstrong join': 719552, 'join by': 466687, 'by signing': 154016, 'signing this': 769649, 'this pledge': 889620, 'pledge to': 660854, 'support our': 826723, 'local retailer': 498350, 'retailer during': 719124, 'closure we': 184060, 'we love': 972305, 'love local': 504719, 'local retail': 498345, 'retail via': 718837, 'retailstrong join by': 719553, 'join by signing': 466689, 'by signing this': 154019, 'signing this pledge': 769652, 'this pledge to': 889621, 'pledge to support': 660860, 'to support our': 915956, 'support our local': 826735, 'our local retailer': 623785, 'local retailer during': 498352, 'retailer during covid': 719125, '19 store closure': 10883, 'store closure we': 807113, 'closure we love': 184062, 'we love local': 972308, 'love local retail': 504720, 'local retail via': 498349, 'foreigner': 329018, 'immediately': 417046, 'inform': 437655, 'guardia': 367880, 'di': 240135, 'finanza': 306743, 'notice': 573242, 'excessively': 289426, 'call all': 155750, 'all foreigner': 42857, 'foreigner who': 329029, 'currently in': 221563, 'italy to': 462951, 'to immediately': 908136, 'immediately inform': 417110, 'inform the': 437666, 'the guardia': 856903, 'guardia di': 367881, 'di finanza': 240138, 'finanza if': 306744, 'they notice': 882793, 'notice that': 573361, 'that mask': 845052, 'or hand': 615553, 'sanitizers are': 736210, 'are sold': 90245, 'sold at': 781624, 'at excessively': 98583, 'excessively high': 289429, 'price thanks': 676786, 'thanks italy': 842122, 'call all foreigner': 155751, 'all foreigner who': 42858, 'foreigner who are': 329030, 'who are currently': 988128, 'are currently in': 85665, 'currently in italy': 221567, 'in italy to': 424321, 'italy to immediately': 462952, 'to immediately inform': 908141, 'immediately inform the': 417111, 'inform the guardia': 437667, 'the guardia di': 856904, 'guardia di finanza': 367882, 'di finanza if': 240139, 'finanza if they': 306745, 'if they notice': 415120, 'they notice that': 882794, 'notice that mask': 573362, 'that mask glove': 845056, 'glove or hand': 352839, 'or hand sanitizers': 615558, 'hand sanitizers are': 375682, 'sanitizers are sold': 736219, 'are sold at': 90246, 'sold at excessively': 781630, 'at excessively high': 98584, 'excessively high price': 289430, 'high price thanks': 395278, 'price thanks italy': 676788, 'apparently': 81902, 'six': 772620, 'foot': 318338, 'hell': 388974, 'hanging': 376959, 'laughing': 481802, 'quarantinelife': 692926, 'get few': 347002, 'few thing': 304091, 'thing right': 884719, 'right apparently': 721769, 'apparently the': 82011, 'the keep': 858739, 'keep six': 471934, 'six foot': 772634, 'foot away': 318355, 'from someone': 337348, 'someone and': 784362, 'and staying': 72315, 'staying at': 798571, 'home still': 402144, 'still doesn': 800439, 'doesn apply': 251705, 'to people': 911609, 'people why': 650371, 'why the': 991407, 'the hell': 857235, 'hell are': 388980, 'you hanging': 1018995, 'hanging out': 376971, 'out at': 625735, 'at grocery': 98811, 'store just': 808614, 'just laughing': 469114, 'laughing and': 481804, 'and talking': 73011, 'talking quarantinelife': 834036, 'went to the': 979196, 'store to get': 810771, 'to get few': 906478, 'get few thing': 347008, 'few thing right': 304102, 'thing right apparently': 884720, 'right apparently the': 721770, 'apparently the keep': 82017, 'the keep six': 858741, 'keep six foot': 471935, 'six foot away': 772636, 'foot away from': 318356, 'away from someone': 105910, 'from someone and': 337349, 'someone and staying': 784363, 'and staying at': 72317, 'staying at home': 798572, 'at home still': 99122, 'home still doesn': 402145, 'still doesn apply': 800440, 'doesn apply to': 251707, 'apply to people': 82618, 'to people why': 911647, 'people why the': 650376, 'why the hell': 991421, 'the hell are': 857236, 'hell are you': 388983, 'are you hanging': 91802, 'you hanging out': 1018996, 'hanging out at': 376972, 'out at grocery': 625743, 'at grocery store': 98815, 'grocery store just': 365498, 'store just laughing': 808618, 'just laughing and': 469115, 'laughing and talking': 481807, 'and talking quarantinelife': 73013, 'stimuluspackage2020': 801649, '50m': 20176, 'civil': 179508, 'legal': 485832, 'aid': 39350, 'afford': 34665, 'funding': 341581, 'lsc': 506347, 'client': 181984, 'facing': 295393, 'eviction': 288305, 'violence': 957534, 'stimuluspackage2020 give': 801652, 'give an': 350379, 'extra 50m': 293444, '50m to': 20179, 'to for': 906126, 'for civil': 320094, 'civil legal': 179524, 'legal aid': 485840, 'aid for': 39385, 'for million': 323434, 'of american': 580049, 'american who': 52301, 'who can': 988368, 'can afford': 157393, 'afford legal': 34723, 'legal help': 485868, 'help funding': 389788, 'funding can': 341586, 'help lsc': 390024, 'lsc client': 506348, 'client facing': 182033, 'facing job': 295514, 'job loss': 465963, 'loss eviction': 503669, 'eviction domestic': 288312, 'domestic violence': 253244, 'violence consumer': 957543, 'consumer scam': 198865, 'scam from': 740172, 'from crisis': 335055, 'stimuluspackage2020 give an': 801653, 'give an extra': 350381, 'an extra 50m': 56007, 'extra 50m to': 293445, '50m to for': 20180, 'to for civil': 906133, 'for civil legal': 320095, 'civil legal aid': 179525, 'legal aid for': 485841, 'aid for million': 39386, 'for million of': 323437, 'million of american': 532258, 'of american who': 580081, 'american who can': 52303, 'who can afford': 988369, 'can afford legal': 157402, 'afford legal help': 34724, 'legal help funding': 485869, 'help funding can': 389789, 'funding can help': 341587, 'can help lsc': 158634, 'help lsc client': 390025, 'lsc client facing': 506349, 'client facing job': 182034, 'facing job loss': 295515, 'job loss eviction': 465973, 'loss eviction domestic': 503670, 'eviction domestic violence': 288313, 'domestic violence consumer': 253246, 'violence consumer scam': 957544, 'consumer scam from': 198869, 'scam from crisis': 740174, 'touch': 926440, 'transmit': 929782, 'you touch': 1021893, 'touch at': 926460, 'store that': 810542, 'that could': 843338, 'could transmit': 209784, 'transmit coronavirus': 929783, 'thing you touch': 885042, 'you touch at': 1021895, 'touch at the': 926461, 'grocery store that': 365848, 'store that could': 810546, 'that could transmit': 843367, 'could transmit coronavirus': 209785, 'inspiring': 439858, 'biologist': 131233, 'statistician': 796606, 'servant': 751830, 'medic': 525988, 'logistics': 500717, 'countless': 210370, 'it ha': 458372, 'been inspiring': 121391, 'inspiring to': 439866, 'world come': 1009434, 'come together': 187619, 'together to': 920982, 'help fight': 389703, 'fight this': 304913, 'this pandemic': 889363, 'pandemic whether': 636982, 'whether they': 985590, 'are biologist': 84979, 'biologist statistician': 131234, 'statistician engineer': 796607, 'engineer civil': 276958, 'civil servant': 179540, 'servant medic': 751841, 'medic supermarket': 526005, 'staff logistics': 792627, 'logistics manager': 500771, 'manager manufacturer': 512743, 'manufacturer or': 513500, 'or one': 616380, 'of countless': 582025, 'countless other': 210384, 'other role': 620858, 'it ha been': 458380, 'ha been inspiring': 369835, 'been inspiring to': 121392, 'inspiring to see': 439867, 'see the world': 745897, 'the world come': 871842, 'world come together': 1009436, 'come together to': 187633, 'together to help': 920992, 'to help fight': 907514, 'help fight this': 389718, 'fight this pandemic': 304919, 'this pandemic whether': 889446, 'pandemic whether they': 636983, 'whether they are': 985591, 'they are biologist': 881213, 'are biologist statistician': 84980, 'biologist statistician engineer': 131235, 'statistician engineer civil': 796608, 'engineer civil servant': 276959, 'civil servant medic': 179544, 'servant medic supermarket': 751842, 'medic supermarket staff': 526006, 'supermarket staff logistics': 822865, 'staff logistics manager': 792629, 'logistics manager manufacturer': 500772, 'manager manufacturer or': 512744, 'manufacturer or one': 513501, 'or one of': 616381, 'one of countless': 606737, 'of countless other': 582026, 'countless other role': 210385, 'success': 816177, 'planted': 658746, 'seed': 746129, 'omg': 598893, 'toiletrolls': 923398, 'toiletpapergate': 923154, 'selfisolation': 748430, 'selfsufficient': 748593, 'gardening': 343640, 'growingmyown': 367265, 'success planted': 816214, 'planted toilet': 658747, 'paper seed': 640737, 'seed roll': 746164, 'roll and': 725170, 'and omg': 68048, 'omg they': 598914, 're growing': 698775, 'growing and': 367121, 'some even': 782767, 'even have': 284162, 'have little': 381346, 'little flower': 495341, 'flower soon': 311330, 'soon we': 785891, 'll have': 496824, 'have more': 381496, 'more tp': 540818, 'tp stock': 927955, 'stock toiletrolls': 803011, 'toiletrolls toiletpapergate': 923401, 'toiletpapergate toiletpaper': 923162, 'toiletpaper selfisolation': 922442, 'selfisolation selfsufficient': 748478, 'selfsufficient gardening': 748595, 'gardening growingmyown': 343645, 'success planted toilet': 816215, 'planted toilet paper': 658748, 'toilet paper seed': 921439, 'paper seed roll': 640738, 'seed roll and': 746165, 'roll and omg': 725179, 'and omg they': 68049, 'omg they re': 598916, 'they re growing': 883049, 're growing and': 698776, 'growing and some': 367123, 'and some even': 71959, 'some even have': 782770, 'even have little': 284168, 'have little flower': 381348, 'little flower soon': 495342, 'flower soon we': 311331, 'soon we ll': 785895, 'we ll have': 972254, 'll have more': 496830, 'have more tp': 381509, 'more tp stock': 540819, 'tp stock toiletrolls': 927957, 'stock toiletrolls toiletpapergate': 803012, 'toiletrolls toiletpapergate toiletpaper': 923402, 'toiletpapergate toiletpaper selfisolation': 923165, 'toiletpaper selfisolation selfsufficient': 922443, 'selfisolation selfsufficient gardening': 748479, 'selfsufficient gardening growingmyown': 748596, 'hiking': 396364, 'judged': 467643, 'harshly': 378575, 'are report': 89589, 'report of': 712103, 'business making': 144025, 'making serious': 511328, 'serious profit': 751456, 'profit off': 682819, 'off the': 594226, 'the back': 849139, 'back of': 107164, 'of by': 581020, 'by either': 152462, 'either hiking': 270320, 'hiking price': 396388, 'price or': 675764, 'or in': 615747, 'they treat': 883584, 'treat their': 930893, 'their staff': 874786, 'staff this': 792970, 'crisis will': 218401, 'end when': 276069, 'it doe': 457609, 'doe those': 251647, 'those business': 891848, 'be judged': 115581, 'judged harshly': 467644, 'harshly do': 378578, 'thing today': 884907, 'today for': 919533, 'for better': 319654, 'better tomorrow': 128577, 'there are report': 878154, 'are report of': 89590, 'report of business': 712106, 'of business making': 580961, 'business making serious': 144028, 'making serious profit': 511329, 'serious profit off': 751457, 'profit off the': 682822, 'off the back': 594231, 'the back of': 849148, 'back of by': 107165, 'of by either': 581023, 'by either hiking': 152463, 'either hiking price': 270321, 'hiking price or': 396404, 'price or in': 675780, 'or in the': 615763, 'in the way': 429664, 'way they treat': 969964, 'they treat their': 883585, 'treat their staff': 930894, 'their staff this': 874802, 'staff this crisis': 792971, 'this crisis will': 887111, 'crisis will end': 218410, 'will end when': 993309, 'end when it': 276070, 'when it doe': 983628, 'it doe those': 457619, 'doe those business': 251648, 'those business will': 891849, 'business will be': 144677, 'will be judged': 992524, 'be judged harshly': 115582, 'judged harshly do': 467645, 'harshly do the': 378579, 'right thing today': 722318, 'thing today for': 884908, 'today for better': 919534, 'for better tomorrow': 319662, 'isolation': 455176, 'seriously': 751520, 'consider': 194938, 'nutrient': 577698, 'protein': 685877, 'delivered': 233282, 'anyone worried': 80659, 'supply during': 825192, 'during self': 262995, 'self isolation': 747750, 'isolation should': 455429, 'should seriously': 766458, 'seriously consider': 751563, 'consider all': 194947, 'the nutrient': 861991, 'nutrient you': 577703, 'survive full': 829175, 'of protein': 588562, 'protein to': 685894, 'help heal': 389848, 'heal you': 386073, 'you easy': 1018387, 'on and': 599344, 'and store': 72499, 'and delivered': 61093, 'delivered to': 233421, 'to minimise': 910151, 'anyone worried about': 80660, 'worried about food': 1010489, 'about food supply': 25265, 'food supply during': 316950, 'supply during self': 825195, 'during self isolation': 262996, 'self isolation should': 747798, 'isolation should seriously': 455430, 'should seriously consider': 766459, 'seriously consider all': 751564, 'consider all the': 194949, 'all the nutrient': 44846, 'the nutrient you': 861992, 'nutrient you need': 577704, 'to survive full': 916030, 'survive full of': 829176, 'full of protein': 340752, 'of protein to': 588564, 'protein to help': 685895, 'to help heal': 907536, 'help heal you': 389849, 'heal you easy': 386074, 'you easy to': 1018388, 'easy to stock': 265792, 'up on and': 945524, 'on and store': 599373, 'and store and': 72500, 'store and delivered': 806226, 'and delivered to': 61098, 'delivered to your': 233428, 'your door to': 1023580, 'door to minimise': 255753, 'to minimise the': 910155, 'minimise the spread': 533090, 'spread of covid': 790662, 'wish': 996740, 'included': 431667, 'bailout': 108620, 'sanitation': 733828, 'backbone': 107500, 'gopbailoutscam': 358303, 'wish included': 996771, 'included in': 431686, 'the bailout': 849190, 'bailout wa': 108670, 'wa huge': 962342, 'huge cash': 409995, 'cash bonus': 166184, 'all medical': 43486, 'medical worker': 526498, 'worker grocery': 1007060, 'store employee': 807449, 'employee first': 273848, 'responder sanitation': 715517, 'sanitation worker': 733869, 'worker everyone': 1006879, 'who is': 989054, 'the backbone': 849154, 'backbone of': 107503, 'of keeping': 585587, 'our country': 622579, 'country running': 211024, 'running and': 727903, 'and safe': 70704, 'safe right': 729911, 'now gopbailoutscam': 574809, 'wish included in': 996772, 'included in the': 431690, 'in the bailout': 429005, 'the bailout wa': 849192, 'bailout wa huge': 108671, 'wa huge cash': 962343, 'huge cash bonus': 409996, 'cash bonus for': 166185, 'bonus for all': 134370, 'for all medical': 319149, 'all medical worker': 43496, 'medical worker grocery': 526504, 'worker grocery store': 1007063, 'grocery store employee': 365362, 'store employee first': 807489, 'employee first responder': 273849, 'first responder sanitation': 308961, 'responder sanitation worker': 715518, 'sanitation worker everyone': 733874, 'worker everyone who': 1006880, 'everyone who is': 287595, 'who is the': 989121, 'is the backbone': 452733, 'the backbone of': 849155, 'backbone of keeping': 107504, 'of keeping our': 585592, 'keeping our country': 472500, 'our country running': 622602, 'country running and': 211026, 'running and safe': 727905, 'and safe right': 70720, 'safe right now': 729912, 'right now gopbailoutscam': 722071, 'epidemic': 279322, 'taught': 834885, 'non': 566296, 'banker': 110338, 'executive': 289850, 'warehouse': 966669, 'professional': 682392, '19 epidemic': 6801, 'epidemic ha': 279371, 'ha taught': 372161, 'taught anything': 834888, 'is that': 452627, 'the non': 861838, 'non essential': 566328, 'essential people': 281377, 'are banker': 84754, 'banker hedge': 110367, 'hedge fund': 388719, 'fund manager': 341451, 'manager and': 512667, 'oil executive': 596774, 'executive while': 289950, 'the essential': 854493, 'clerk warehouse': 181811, 'warehouse worker': 966814, 'worker delivery': 1006740, 'delivery truck': 234689, 'truck driver': 932760, 'driver and': 259406, 'and medical': 66869, 'medical professional': 526326, 'covid 19 epidemic': 213031, '19 epidemic ha': 6805, 'epidemic ha taught': 279374, 'ha taught anything': 372162, 'taught anything it': 834889, 'anything it is': 80803, 'it is that': 459097, 'is that the': 452695, 'that the non': 846782, 'the non essential': 861839, 'non essential people': 566349, 'essential people are': 281378, 'people are banker': 646933, 'are banker hedge': 84755, 'banker hedge fund': 110368, 'hedge fund manager': 388722, 'fund manager and': 341453, 'manager and oil': 512671, 'and oil executive': 68022, 'oil executive while': 596777, 'executive while the': 289951, 'while the essential': 987384, 'the essential people': 854517, 'people are grocery': 646992, 'store clerk warehouse': 807037, 'clerk warehouse worker': 181812, 'warehouse worker delivery': 966817, 'worker delivery truck': 1006749, 'delivery truck driver': 234695, 'truck driver and': 932764, 'driver and medical': 259419, 'and medical professional': 66881, 'jog': 466490, 'neighborhood': 557100, 'not working': 572545, 'for one': 324074, 'these essential': 879971, 'essential business': 280837, 'business if': 143865, 'not out': 570861, 'out taking': 627292, 'taking walk': 833663, 'walk or': 964843, 'or jog': 615863, 'jog in': 466491, 'the neighborhood': 861429, 'neighborhood foot': 557114, 'from everybody': 335330, 'everybody else': 286429, 'else or': 271823, 'store or': 809310, 'or the': 617365, 'the doctor': 853455, 'doctor you': 251173, 'should not': 766231, 're not working': 699130, 'not working for': 572548, 'working for one': 1008643, 'for one of': 324088, 'of these essential': 591823, 'these essential business': 879972, 'essential business if': 280849, 'business if you': 143866, 're not out': 699109, 'not out taking': 570865, 'out taking walk': 627294, 'taking walk or': 833664, 'walk or jog': 964849, 'or jog in': 615864, 'jog in the': 466492, 'in the neighborhood': 429387, 'the neighborhood foot': 861430, 'neighborhood foot away': 557115, 'away from everybody': 105879, 'from everybody else': 335331, 'everybody else or': 286431, 'else or going': 271825, 'or going to': 615499, 'going to the': 355741, 'grocery store or': 365623, 'store or the': 809376, 'or the doctor': 617371, 'the doctor you': 853477, 'doctor you should': 251174, 'you should not': 1021208, 'should not be': 766234, 'not be out': 568427, 'wuhan': 1013458, 'inviting': 444286, 'mishra19': 534050, 'sanitizer italy': 735234, 'italy wuhan': 462965, 'wuhan grocery': 1013484, 'grocery inviting': 364634, 'inviting mishra19': 444289, 'sanitizer italy wuhan': 735236, 'italy wuhan grocery': 462967, 'wuhan grocery inviting': 1013489, 'grocery inviting mishra19': 364635, 'mum': 545863, 'tin': 898532, 'rice': 720982, 'kitchen': 475685, 'handwash': 376746, 'greed': 363354, 'went shopping': 979104, 'shopping for': 762653, 'my mum': 549365, 'mum and': 545871, 'and today': 74220, 'today shelf': 920169, 'shelf with': 757815, 'with long': 999303, 'term food': 838145, 'food tin': 317220, 'tin rice': 898557, 'rice etc': 721037, 'etc empty': 282510, 'empty also': 274751, 'also bread': 47976, 'milk meat': 531724, 'meat toilet': 525781, 'roll kitchen': 725366, 'kitchen roll': 475743, 'roll handwash': 725332, 'handwash soap': 376795, 'soap wipe': 779183, 'wipe and': 996183, 'and antibacterial': 58177, 'antibacterial wash': 78385, 'wash product': 967531, 'product empty': 681158, 'empty stoppanicbuying': 275144, 'stoppanicbuying greed': 805565, 'went shopping for': 979107, 'shopping for my': 762694, 'for my mum': 323726, 'my mum and': 549367, 'mum and today': 545873, 'and today shelf': 74226, 'today shelf with': 920170, 'shelf with long': 757819, 'with long term': 999306, 'long term food': 501685, 'term food tin': 838146, 'food tin rice': 317221, 'tin rice etc': 898558, 'rice etc empty': 721039, 'etc empty also': 282511, 'empty also bread': 274752, 'also bread milk': 47977, 'bread milk meat': 138530, 'milk meat toilet': 531726, 'meat toilet roll': 525783, 'toilet roll kitchen': 921579, 'roll kitchen roll': 725367, 'kitchen roll handwash': 475745, 'roll handwash soap': 725333, 'handwash soap wipe': 376796, 'soap wipe and': 779184, 'wipe and antibacterial': 996184, 'and antibacterial wash': 58180, 'antibacterial wash product': 78387, 'wash product empty': 967532, 'product empty stoppanicbuying': 681159, 'empty stoppanicbuying greed': 275145, 'praising': 668897, 'convid19uk': 202612, 'the point': 863899, 'in praising': 426904, 'praising nh': 668900, 'staff when': 793077, 'when you': 984532, 'leave no': 484875, 'no food': 564247, 'buy at': 148376, 'supermarket at': 819222, 'the end': 854296, 'end of': 275885, 'of shift': 589591, 'shift convid19uk': 758268, 'convid19uk nh': 202621, 'is the point': 452897, 'the point in': 863900, 'point in praising': 662524, 'in praising nh': 426905, 'praising nh staff': 668901, 'nh staff when': 562111, 'staff when you': 793078, 'when you leave': 984575, 'you leave no': 1019575, 'leave no food': 484876, 'no food to': 564279, 'food to buy': 317237, 'to buy at': 902183, 'buy at the': 148387, 'the supermarket at': 868474, 'supermarket at the': 819253, 'at the end': 100935, 'the end of': 854304, 'end of shift': 275914, 'of shift convid19uk': 589592, 'shift convid19uk nh': 758269, 'vintage': 957456, 'range': 696684, 'unique': 941967, 'single': 771236, 'income': 432269, 'smallbusiness': 775208, 'weareintrouble': 974555, 'etsy': 283184, 'are small': 90183, 'small family': 774943, 'family business': 297668, 'in nyc': 426014, 'nyc and': 577958, 'we sell': 973191, 'sell vintage': 748938, 'vintage item': 957457, 'item of': 463486, 'many kind': 514222, 'kind and': 474799, 'and wide': 75641, 'wide range': 991748, 'range of': 696711, 'of price': 588393, 'is our': 450610, 'our unique': 625227, 'unique single': 941998, 'single source': 771399, 'source of': 786516, 'of income': 585064, 'income we': 432492, 'in trouble': 430294, 'trouble visit': 932655, 'visit at': 959187, 'at nyc': 99930, 'nyc smallbusiness': 578049, 'smallbusiness weareintrouble': 775234, 'weareintrouble etsy': 974556, 'we are small': 970714, 'are small family': 90185, 'small family business': 774944, 'family business in': 297670, 'business in nyc': 143890, 'in nyc and': 426016, 'nyc and we': 577960, 'and we sell': 75319, 'we sell vintage': 973199, 'sell vintage item': 748939, 'vintage item of': 957458, 'item of many': 463492, 'of many kind': 586180, 'many kind and': 514223, 'kind and wide': 474816, 'and wide range': 75642, 'wide range of': 991749, 'range of price': 696718, 'of price this': 588417, 'price this is': 676912, 'this is our': 888348, 'is our unique': 450650, 'our unique single': 625228, 'unique single source': 941999, 'single source of': 771400, 'source of income': 786525, 'of income we': 585074, 'income we are': 432493, 'we are in': 970596, 'are in trouble': 87455, 'in trouble visit': 430298, 'trouble visit at': 932656, 'visit at nyc': 959191, 'at nyc smallbusiness': 99931, 'nyc smallbusiness weareintrouble': 578050, 'smallbusiness weareintrouble etsy': 775235, 'came': 156956, 'patrolling': 644401, 'abused': 27680, 'bekind': 126088, 'just came': 468421, 'came back': 156972, 'back from': 107002, 'from had': 335717, 'go and': 353277, 'and get': 63557, 'some food': 782852, 'food my': 315492, 'ha nothing': 371380, 'left when': 485727, 'when finish': 983422, 'finish my': 307859, 'my shift': 550034, 'shift working': 758469, 'for nh': 323861, 'nh two': 562152, 'two lot': 937018, 'of police': 588196, 'officer patrolling': 595695, 'patrolling the': 644404, 'store making': 808856, 'sure staff': 827680, 'staff were': 793067, 'were not': 979911, 'getting abused': 348824, 'abused please': 27698, 'please people': 660280, 'people be': 647220, 'kind bekind': 474819, 'just came back': 468422, 'came back from': 156976, 'back from had': 107009, 'from had to': 335718, 'had to go': 373694, 'to go and': 906769, 'go and get': 353280, 'and get some': 63601, 'get some food': 348053, 'some food my': 782864, 'food my local': 315495, 'local supermarket ha': 498531, 'supermarket ha nothing': 820639, 'ha nothing left': 371384, 'nothing left when': 573093, 'left when finish': 485728, 'when finish my': 983423, 'finish my shift': 307860, 'my shift working': 550037, 'shift working for': 758470, 'working for nh': 1008642, 'for nh two': 323865, 'nh two lot': 562153, 'two lot of': 937019, 'lot of police': 504251, 'of police officer': 588199, 'police officer patrolling': 663127, 'officer patrolling the': 595696, 'patrolling the store': 644406, 'the store making': 868055, 'store making sure': 808859, 'making sure staff': 511388, 'sure staff were': 827681, 'staff were not': 793072, 'were not getting': 979918, 'not getting abused': 569622, 'getting abused please': 348825, 'abused please people': 27699, 'please people be': 660282, 'people be kind': 647228, 'be kind bekind': 115613, 'milan': 531307, 'temperature': 837357, 'mandatory': 513030, 'speaker': 787734, 'remind': 710477, 'distance': 246616, 'shall': 754514, 'in milan': 425311, 'milan customer': 531310, 'customer have': 222435, 'been taken': 122125, 'the temperature': 869276, 'temperature and': 837358, 'and given': 63673, 'given glove': 351004, 'glove mask': 352769, 'mask covering': 518549, 'covering are': 212457, 'are mandatory': 88020, 'mandatory in': 513039, 'city in': 179196, 'store speaker': 810270, 'speaker remind': 787744, 'remind customer': 710482, 'customer of': 222635, 'keeping the': 472572, 'the safety': 866145, 'safety distance': 730510, 'distance shall': 246821, 'shall we': 754558, 'same in': 733120, 'supermarket in milan': 820936, 'in milan customer': 425313, 'milan customer have': 531311, 'customer have been': 222438, 'have been taken': 379709, 'been taken the': 122130, 'taken the temperature': 833075, 'the temperature and': 869277, 'temperature and given': 837360, 'and given glove': 63674, 'given glove mask': 351005, 'glove mask covering': 352772, 'mask covering are': 518550, 'covering are mandatory': 212458, 'are mandatory in': 88021, 'mandatory in the': 513040, 'the city in': 850940, 'city in store': 179203, 'in store speaker': 428458, 'store speaker remind': 810271, 'speaker remind customer': 787745, 'remind customer of': 710483, 'customer of keeping': 222637, 'of keeping the': 585593, 'keeping the safety': 472584, 'the safety distance': 866147, 'safety distance shall': 730511, 'distance shall we': 246822, 'shall we do': 754559, 'we do the': 971354, 'do the same': 250260, 'the same in': 866245, 'same in the': 733124, 'kiryu': 475432, 'sorry': 786003, 'fps': 330831, 'yakuzakiwami2': 1014059, 'ryugagotoku': 728837, 'when kiryu': 983665, 'kiryu saw': 475433, 'saw selfish': 738232, 'selfish people': 748203, 'supermarket sorry': 822784, 'sorry for': 786039, 'the fps': 855748, 'fps drop': 330832, 'drop yakuzakiwami2': 260455, 'yakuzakiwami2 ryugagotoku': 1014060, 'when kiryu saw': 983666, 'kiryu saw selfish': 475434, 'saw selfish people': 738233, 'selfish people in': 748214, 'the supermarket sorry': 868815, 'supermarket sorry for': 822786, 'sorry for the': 786046, 'for the fps': 326450, 'the fps drop': 855749, 'fps drop yakuzakiwami2': 330833, 'drop yakuzakiwami2 ryugagotoku': 260456, 'reusable': 720142, 'we continue': 971184, 'to battle': 901070, 'battle the': 112823, 'of is': 585313, 'it still': 461245, 'still safe': 801132, 'safe to': 730041, 'to bring': 902027, 'bring your': 140127, 'your reusable': 1025614, 'reusable shopping': 720171, 'shopping bag': 762137, 'bag to': 108421, 'we continue to': 971186, 'continue to battle': 201164, 'to battle the': 901075, 'battle the spread': 112830, 'spread of is': 790681, 'of is it': 585320, 'is it still': 449062, 'it still safe': 461258, 'still safe to': 801133, 'safe to bring': 730046, 'to bring your': 902059, 'bring your reusable': 140131, 'your reusable shopping': 1025617, 'reusable shopping bag': 720172, 'shopping bag to': 762148, 'bag to the': 108432, 'mealie': 524323, '18th': 4687, 'unity': 942314, 'society': 781139, 'lusaka': 506846, 'dctalkradio': 229002, 'cut discus': 223304, 'discus world': 244954, 'world consumer': 1009441, 'consumer right': 198804, 'right day': 721861, 'day corona': 227479, 'corona mealie': 204062, 'mealie meal': 524324, 'meal price': 524258, 'price today': 677066, 'today 18th': 919124, '18th march': 4692, '2020 the': 14631, 'consumer unity': 199420, 'unity trust': 942327, 'trust society': 934307, 'society lusaka': 781263, 'lusaka will': 506851, 'be on': 116185, 'on dctalkradio': 600231, 'dctalkradio 90': 229003, '90 to': 23350, 'day covid': 227499, '19 mealie': 8596, 'cut discus world': 223305, 'discus world consumer': 244955, 'world consumer right': 1009444, 'consumer right day': 198809, 'right day corona': 721862, 'day corona mealie': 227481, 'corona mealie meal': 204063, 'mealie meal price': 524325, 'meal price today': 524259, 'price today 18th': 677067, 'today 18th march': 919125, '18th march 2020': 4693, 'march 2020 the': 515164, '2020 the consumer': 14634, 'the consumer unity': 851617, 'consumer unity trust': 199421, 'unity trust society': 942328, 'trust society lusaka': 934308, 'society lusaka will': 781264, 'lusaka will be': 506852, 'will be on': 992587, 'be on dctalkradio': 116191, 'on dctalkradio 90': 600232, 'dctalkradio 90 to': 229004, '90 to discus': 23351, 'to discus world': 904386, 'right day covid': 721863, 'day covid 19': 227500, 'covid 19 mealie': 213416, '19 mealie meal': 8597, 'worker tip': 1007989, 'for shopping': 325575, 'shopping during': 762529, 'during crisis': 262548, 'grocery worker tip': 366192, 'worker tip for': 1007990, 'tip for shopping': 898783, 'for shopping during': 325579, 'shopping during crisis': 762534, 'visiting': 959511, 'schnucks': 741648, 'elaine': 270477, 'benes': 127186, 'cantspareasquare': 162378, 'after visiting': 36494, 'visiting my': 959534, 'local schnucks': 498370, 'schnucks store': 741651, 'store can': 806848, 'can clearly': 157915, 'clearly see': 181561, 'see that': 745782, 'that will': 847552, 'to become': 901668, 'become elaine': 119976, 'elaine benes': 270478, 'benes very': 127187, 'very soon': 955562, 'soon cantspareasquare': 785672, 'after visiting my': 36496, 'visiting my local': 959535, 'my local schnucks': 549139, 'local schnucks store': 498371, 'schnucks store can': 741652, 'store can clearly': 806851, 'can clearly see': 157917, 'clearly see that': 181563, 'see that will': 745804, 'that will have': 847582, 'will have to': 993679, 'have to become': 383162, 'to become elaine': 901672, 'become elaine benes': 119977, 'elaine benes very': 270479, 'benes very soon': 127188, 'very soon cantspareasquare': 955564, 'asian': 95244, 'covered': 212397, 'wa just': 962447, 'just at': 468245, 'supermarket target': 823139, 'target and': 834433, 'and walmart': 75155, 'walmart all': 965270, 'all cashier': 42317, 'cashier are': 166468, 'not protected': 571128, 'protected think': 685157, 'they all': 881108, 'all need': 43594, 'glove it': 352745, 'is to': 453174, 'protect themselves': 685015, 'themselves look': 876849, 'the asian': 848961, 'asian supermarket': 95354, 'cashier who': 166662, 'are covered': 85594, 'covered we': 212446, 'store open': 809249, 'so please': 778015, 'please protect': 660332, 'protect them': 685002, 'wa just at': 962453, 'just at supermarket': 468248, 'at supermarket target': 100777, 'supermarket target and': 823140, 'target and walmart': 834436, 'and walmart all': 75156, 'walmart all cashier': 965271, 'all cashier are': 42318, 'cashier are not': 166475, 'are not protected': 88445, 'not protected think': 571130, 'protected think they': 685158, 'think they all': 885677, 'they all need': 881118, 'all need to': 43610, 'and glove it': 63727, 'glove it is': 352746, 'it is to': 459106, 'is to protect': 453234, 'to protect themselves': 912340, 'protect themselves look': 685020, 'themselves look at': 876850, 'look at the': 502298, 'at the asian': 100878, 'the asian supermarket': 848967, 'asian supermarket cashier': 95358, 'supermarket cashier who': 819576, 'cashier who are': 166663, 'who are covered': 988125, 'are covered we': 85596, 'covered we need': 212447, 'we need to': 972562, 'need to keep': 555980, 'keep our store': 471754, 'our store open': 624949, 'store open so': 809264, 'open so please': 612505, 'so please protect': 778025, 'please protect them': 660334, 'socialismorbarbarism': 780995, 'capitalism is': 162766, 'is death': 447052, 'death socialismorbarbarism': 230199, 'capitalism is death': 162768, 'is death socialismorbarbarism': 447054, 'cadchf': 155058, 'audchf': 102899, 'nzdchf': 578222, 'exist': 290221, 'dating': 226794, '1953': 12393, '66': 21412, 'trump2020': 934000, 'maga2020': 508303, 'kag': 470611, 'ausbiz': 103035, 'cadchf and': 155059, 'and audchf': 58517, 'audchf and': 102900, 'and nzdchf': 67917, 'nzdchf current': 578223, 'current price': 221308, 'price do': 673470, 'not exist': 569322, 'exist dating': 290228, 'dating back': 226797, 'to 1953': 899559, '1953 or': 12394, 'or 66': 614218, '66 year': 21433, 'year trump2020': 1015052, 'trump2020 maga2020': 934006, 'maga2020 kag': 508305, 'kag usd': 470617, 'usd china': 948910, 'china ausbiz': 176511, 'cadchf and audchf': 155060, 'and audchf and': 58518, 'audchf and nzdchf': 102901, 'and nzdchf current': 67918, 'nzdchf current price': 578224, 'current price do': 221311, 'price do not': 673472, 'do not exist': 249729, 'not exist dating': 569323, 'exist dating back': 290229, 'dating back to': 226798, 'back to 1953': 107346, 'to 1953 or': 899560, '1953 or 66': 12395, 'or 66 year': 614219, '66 year trump2020': 21434, 'year trump2020 maga2020': 1015053, 'trump2020 maga2020 kag': 934007, 'maga2020 kag usd': 508307, 'kag usd china': 470618, 'usd china ausbiz': 948911, 'device': 239888, 'notified': 573550, 'vide': 956590, 'notification': 573521, 'dated': 226767, '11th': 2744, 'february': 301667, 'issued': 456034, 'ministry': 533521, 'governed': 359788, 'control': 201956, '2013': 13782, 'medical device': 526128, 'device notified': 239924, 'notified drug': 573551, 'drug 1st': 260842, '1st april': 12714, 'april 2020': 83453, '2020 vide': 14693, 'vide notification': 956591, 'notification dated': 573522, 'dated 11th': 226768, '11th february': 2751, 'february 2020': 301674, '2020 issued': 14409, 'issued by': 456041, 'by ministry': 153227, 'ministry of': 533538, 'of health': 584501, 'health amp': 386117, 'amp family': 53774, 'family welfare': 298364, 'welfare to': 977973, 'be governed': 115080, 'governed under': 359792, 'the provision': 864740, 'provision of': 687274, 'of drug': 582842, 'drug price': 261034, 'price control': 673234, 'control order': 202085, 'order 2013': 617985, 'medical device notified': 526129, 'device notified drug': 239925, 'notified drug 1st': 573552, 'drug 1st april': 260843, '1st april 2020': 12715, 'april 2020 vide': 83480, '2020 vide notification': 14694, 'vide notification dated': 956592, 'notification dated 11th': 573523, 'dated 11th february': 226769, '11th february 2020': 2752, 'february 2020 issued': 301678, '2020 issued by': 14410, 'issued by ministry': 456042, 'by ministry of': 153228, 'ministry of health': 533548, 'of health amp': 584502, 'health amp family': 386119, 'amp family welfare': 53776, 'family welfare to': 298366, 'welfare to be': 977974, 'to be governed': 901280, 'be governed under': 115081, 'governed under the': 359793, 'under the provision': 940325, 'the provision of': 864742, 'provision of drug': 687277, 'of drug price': 582850, 'drug price control': 261038, 'price control order': 673239, 'control order 2013': 202086, 'jump': 467829, 'shock set': 759506, 'set to': 753500, 'to drive': 904727, 'drive jump': 259088, 'jump in': 467860, 'consumer credit': 197012, 'credit loss': 216427, 'shock set to': 759507, 'set to drive': 753511, 'to drive jump': 904739, 'drive jump in': 259089, 'jump in consumer': 467862, 'in consumer credit': 421690, 'consumer credit loss': 197021, 'nz': 578172, 'newzealand': 561235, 'people panic': 649052, 'panic shopping': 638560, 'shopping yesterday': 764479, 'yesterday bought': 1015694, 'bought enough': 136543, 'enough food': 277379, 'for 10': 318608, '10 million': 1523, 'million people': 532303, 'people ffs': 647899, 'ffs nz': 304314, 'nz for': 578186, 'for population': 324619, 'population of': 664722, 'million newzealand': 532252, 'people panic shopping': 649062, 'panic shopping yesterday': 638596, 'shopping yesterday bought': 764480, 'yesterday bought enough': 1015695, 'bought enough food': 136545, 'enough food for': 277397, 'food for 10': 314513, 'for 10 million': 318617, '10 million people': 1529, 'million people ffs': 532306, 'people ffs nz': 647900, 'ffs nz for': 304315, 'nz for population': 578188, 'for population of': 324620, 'population of million': 664724, 'of million newzealand': 586534, 'synthesis': 831014, 'finding': 307428, 'recommendation': 704730, 'synthesis of': 831015, 'income related': 432444, 'related finding': 708440, 'finding and': 307437, 'and recommendation': 70053, 'recommendation for': 704744, 'for mrx': 323638, 'mrx related': 544494, 'synthesis of income': 831016, 'of income related': 585069, 'income related finding': 432445, 'related finding and': 708441, 'finding and recommendation': 307438, 'and recommendation for': 70055, 'recommendation for mrx': 704748, 'for mrx related': 323639, 'mrx related to': 544495, 'retweet': 720035, 'message': 529248, 'physician': 655531, 'solidarity': 781924, 'tireless': 899060, 'risking': 724055, 'overworked': 631783, 'unappreciated': 939414, 'helpless': 391574, 'essentialworkers': 281948, 'celebrity should': 168899, 'should retweet': 766420, 'retweet message': 720063, 'message from': 529311, 'local doctor': 497903, 'and physician': 69005, 'physician first': 655537, 'responder in': 715482, 'in solidarity': 428070, 'solidarity with': 781947, 'with their': 1001556, 'their tireless': 874998, 'tireless effort': 899061, 'effort risking': 269577, 'risking themselves': 724098, 'themselves for': 876803, 'health protection': 386771, 'protection it': 685498, 'can mean': 158979, 'mean lot': 524537, 'lot to': 504386, 'an overworked': 56771, 'overworked nurse': 631792, 'worker who': 1008192, 'who feel': 988730, 'feel unappreciated': 302905, 'unappreciated helpless': 939421, 'helpless essentialworkers': 391583, 'celebrity should retweet': 168900, 'should retweet message': 766421, 'retweet message from': 720064, 'message from local': 529319, 'from local doctor': 336248, 'local doctor and': 497904, 'doctor and physician': 250823, 'and physician first': 69006, 'physician first responder': 655538, 'first responder in': 308950, 'responder in solidarity': 715483, 'in solidarity with': 428074, 'solidarity with their': 781950, 'with their tireless': 1001604, 'their tireless effort': 874999, 'tireless effort risking': 899062, 'effort risking themselves': 269578, 'risking themselves for': 724100, 'themselves for our': 876804, 'for our health': 324255, 'our health protection': 623378, 'health protection it': 386774, 'protection it can': 685499, 'it can mean': 457025, 'can mean lot': 158982, 'mean lot to': 524541, 'lot to an': 504387, 'to an overworked': 900471, 'an overworked nurse': 56772, 'overworked nurse supermarket': 631794, 'supermarket worker who': 824123, 'worker who feel': 1008210, 'who feel unappreciated': 988737, 'feel unappreciated helpless': 302906, 'unappreciated helpless essentialworkers': 939422, 'owe': 631808, 'gratitude': 362351, 'watching on': 968771, 'on talking': 603879, 'about grocery': 25328, 'store worker': 811442, 'worker may': 1007360, 'may we': 521603, 'we all': 970308, 'all take': 44589, 'take moment': 832328, 'moment to': 536077, 'to pray': 911974, 'them their': 876397, 'their family': 873242, 'family they': 298306, 'are part': 88983, 'line we': 493551, 'we owe': 972675, 'owe all': 631809, 'you debt': 1018157, 'debt of': 230526, 'of gratitude': 584308, 'watching on talking': 968772, 'on talking about': 603880, 'talking about grocery': 833969, 'about grocery store': 25331, 'grocery store worker': 365970, 'store worker may': 811543, 'worker may we': 1007363, 'may we all': 521604, 'we all take': 970369, 'all take moment': 44593, 'take moment to': 832331, 'moment to pray': 536086, 'to pray for': 911976, 'pray for them': 669007, 'for them their': 326923, 'them their family': 876398, 'their family they': 873272, 'family they are': 298307, 'they are part': 881356, 'are part of': 88985, 'part of the': 642388, 'of the front': 591045, 'front line we': 338620, 'line we owe': 493553, 'we owe all': 972676, 'owe all of': 631810, 'all of you': 43727, 'of you debt': 593380, 'you debt of': 1018158, 'debt of gratitude': 230528, 'stocked': 803244, 'replenished': 711660, 'importantly': 419118, 'certain': 169966, 'associate': 96837, 'deserve': 238017, 'ton': 924255, 'well done': 978174, 'local whole': 498702, 'whole food': 990208, 'food wa': 317442, 'wa well': 963688, 'well stocked': 978589, 'stocked replenished': 803378, 'replenished and': 711661, 'most importantly': 542417, 'importantly the': 419149, 'store set': 810044, 'set limit': 753418, 'on certain': 599855, 'certain key': 170044, 'key item': 473332, 'item that': 463687, 'that help': 844294, 'help folk': 389736, 'folk get': 312159, 'get what': 348619, 'what they': 982390, 'need kudos': 555139, 'the hard': 857101, 'hard working': 378136, 'working store': 1008923, 'store associate': 806558, 'associate who': 96907, 'who deserve': 988567, 'deserve ton': 238140, 'ton of': 924264, 'of credit': 582129, 'credit grocery': 216399, 'well done the': 978203, 'done the local': 255041, 'the local whole': 859580, 'local whole food': 498703, 'whole food wa': 990217, 'food wa well': 317447, 'wa well stocked': 963690, 'well stocked replenished': 978603, 'stocked replenished and': 803379, 'replenished and most': 711662, 'and most importantly': 67269, 'most importantly the': 542428, 'importantly the store': 419150, 'the store set': 868100, 'store set limit': 810045, 'set limit on': 753421, 'limit on certain': 492409, 'on certain key': 599859, 'certain key item': 170045, 'key item that': 473335, 'item that help': 463694, 'that help folk': 844298, 'help folk get': 389737, 'folk get what': 312164, 'get what they': 348623, 'what they need': 982411, 'they need kudos': 882747, 'need kudos to': 555140, 'kudos to the': 477886, 'to the hard': 916765, 'the hard working': 857107, 'hard working store': 378147, 'working store associate': 1008924, 'store associate who': 806567, 'associate who deserve': 96908, 'who deserve ton': 988570, 'deserve ton of': 238141, 'ton of credit': 924268, 'of credit grocery': 582133, 'oadby': 578239, 'asda': 94899, 'suspending': 829644, '24': 15525, 'closing': 183567, '10pm': 2369, 'although there': 49368, 'no problem': 565188, 'problem with': 679750, 'with supply': 1001075, 'chain demand': 170642, 'demand mean': 235849, 'mean that': 524672, 'that local': 844923, 'are taking': 90709, 'taking step': 833576, 'step to': 799638, 'prevent hoarding': 671644, 'hoarding of': 399448, 'food during': 314315, 'outbreak oadby': 628472, 'oadby asda': 578240, 'asda is': 94935, 'is one': 450499, 'store suspending': 810488, 'suspending 24': 829645, '24 hr': 15630, 'hr opening': 409651, 'opening closing': 612813, 'closing at': 183592, 'at 10pm': 97430, '10pm to': 2382, 'allow re': 46041, 're stocking': 699613, 'although there are': 49369, 'are no problem': 88276, 'no problem with': 565203, 'problem with supply': 679763, 'with supply chain': 1001079, 'supply chain demand': 824945, 'chain demand mean': 170645, 'demand mean that': 235851, 'mean that local': 524683, 'that local supermarket': 844927, 'local supermarket are': 498500, 'supermarket are taking': 819187, 'are taking step': 90734, 'taking step to': 833577, 'step to prevent': 799659, 'to prevent hoarding': 912067, 'prevent hoarding of': 671646, 'hoarding of food': 399451, 'of food during': 583683, 'food during the': 314327, '19 outbreak oadby': 9159, 'outbreak oadby asda': 628473, 'oadby asda is': 578241, 'asda is one': 94937, 'is one of': 450506, 'of the store': 591496, 'the store suspending': 868115, 'store suspending 24': 810489, 'suspending 24 hr': 829646, '24 hr opening': 15633, 'hr opening closing': 409652, 'opening closing at': 612814, 'closing at 10pm': 183593, 'at 10pm to': 97433, '10pm to allow': 2384, 'to allow re': 900356, 'allow re stocking': 46042, 'meps': 528917, 'cap': 162404, 'contingency': 200943, 'eu': 283191, 'meps demand': 528918, 'demand cap': 235109, 'cap contingency': 162415, 'contingency plan': 200950, 'plan part': 658199, 'of eu': 583202, 'eu response': 283262, 'meps demand cap': 528919, 'demand cap contingency': 235110, 'cap contingency plan': 162416, 'contingency plan part': 200952, 'plan part of': 658200, 'part of eu': 642347, 'of eu response': 583206, 'eu response to': 283263, 'arrivalist': 93896, 'pattern': 644442, 'kpvi': 477609, 'stayhomesavelives': 798330, 'travel news': 930435, 'news arrivalist': 560246, 'arrivalist announces': 93897, 'announces travel': 77298, 'travel industry': 930397, 'industry first': 435830, 'first and': 308497, 'and only': 68129, 'only daily': 610309, 'daily measure': 224693, 'measure of': 525266, 'consumer travel': 199359, 'travel pattern': 930461, 'pattern kpvi': 644482, 'kpvi news': 477610, 'news news': 560633, 'news stayhomesavelives': 560820, 'travel news arrivalist': 930436, 'news arrivalist announces': 560247, 'arrivalist announces travel': 93898, 'announces travel industry': 77299, 'travel industry first': 930399, 'industry first and': 435831, 'first and only': 308504, 'and only daily': 68134, 'only daily measure': 610310, 'daily measure of': 224694, 'measure of consumer': 525267, 'of consumer travel': 581781, 'consumer travel pattern': 199360, 'travel pattern kpvi': 930462, 'pattern kpvi news': 644483, 'kpvi news news': 477611, 'news news stayhomesavelives': 560634, 'marketplace': 517797, '14': 3372, 'volume': 960113, '23rd': 15509, 'consumer after': 196111, 'after ecommerce': 35609, 'ecommerce marketplace': 266804, 'marketplace saw': 517833, 'saw 14': 738042, '14 increase': 3488, 'in volume': 430617, 'volume from': 960137, 'the 23rd': 848043, '23rd march': 15517, 'the consumer after': 851490, 'consumer after ecommerce': 196113, 'after ecommerce marketplace': 35610, 'ecommerce marketplace saw': 266805, 'marketplace saw 14': 517834, 'saw 14 increase': 738043, '14 increase in': 3489, 'increase in volume': 432880, 'in volume from': 430618, 'volume from the': 960138, 'from the 23rd': 337586, 'the 23rd march': 848044, 'middle': 530615, 'aisle': 40180, 'actually': 30720, 'here an': 392689, 'an idea': 56124, 'idea why': 413244, 'you clear': 1017969, 'clear the': 181357, 'the middle': 860565, 'middle aisle': 530621, 'aisle out': 40339, 'out and': 625640, 'area for': 92011, 'for more': 323551, 'more food': 539235, 'stock that': 802919, 'people actually': 646766, 'actually need': 30896, 'need sure': 555696, 'sure you': 827845, 'you could': 1018073, 'could sell': 209646, 'sell all': 748621, 'aisle stuff': 40381, 'stuff when': 815250, 'when the': 984123, 'lockdown is': 499537, 'is over': 450678, 'here an idea': 392692, 'an idea why': 56137, 'idea why do': 413245, 'not you clear': 572607, 'you clear the': 1017970, 'clear the middle': 181361, 'the middle aisle': 860566, 'middle aisle out': 530622, 'aisle out and': 40340, 'out and use': 625706, 'and use the': 74786, 'use the area': 949652, 'the area for': 848881, 'area for more': 92015, 'for more food': 323573, 'more food stock': 539253, 'food stock that': 316810, 'stock that people': 802924, 'that people actually': 845683, 'people actually need': 646769, 'actually need sure': 30904, 'need sure you': 555697, 'sure you could': 827854, 'you could sell': 1018100, 'could sell all': 209647, 'sell all the': 748623, 'all the middle': 44829, 'middle aisle stuff': 530623, 'aisle stuff when': 40382, 'stuff when the': 815252, 'when the lockdown': 984172, 'the lockdown is': 859610, 'lockdown is over': 499552, 'putting': 691078, 'divide': 248583, 'company pharmaceutical': 190956, 'pharmaceutical putting': 654088, 'putting price': 691205, 'price up': 677216, 'up by': 944537, 'by over': 153493, 'over 500': 629863, '500 covid': 19969, '19 should': 10497, 'should of': 766281, 'of brought': 580912, 'brought the': 141191, 'world together': 1010095, 'together in': 920831, 'in trying': 430309, 'get through': 348428, 'through the': 894714, 'pandemic instead': 635738, 'instead it': 440212, 'it created': 457397, 'created more': 215852, 'of divide': 582734, 'divide then': 248591, 'then before': 877023, 'company pharmaceutical putting': 190957, 'pharmaceutical putting price': 654089, 'putting price up': 691206, 'price up by': 677227, 'up by over': 944558, 'by over 500': 153498, 'over 500 covid': 629866, '500 covid 19': 19970, 'covid 19 should': 213792, '19 should of': 10502, 'should of brought': 766282, 'of brought the': 580913, 'brought the world': 141197, 'the world together': 871993, 'world together in': 1010096, 'together in trying': 920839, 'in trying to': 430310, 'trying to get': 934813, 'to get through': 906619, 'get through the': 348439, 'through the pandemic': 894762, 'the pandemic instead': 863000, 'pandemic instead it': 635739, 'instead it created': 440213, 'it created more': 457398, 'created more of': 215853, 'more of divide': 539872, 'of divide then': 582735, 'divide then before': 248592, 'combined': 187117, 'sharply': 755727, 'quarter': 693228, 'investing': 443913, 'market have': 516496, 'have not': 381677, 'not been': 568501, 'been immune': 121324, 'immune to': 417361, 'panic driven': 638046, 'driven selling': 259351, 'selling and': 749151, 'the uncertainty': 870337, 'uncertainty of': 939725, 'of our': 587417, 'our new': 624023, 'new economic': 558663, 'economic reality': 267220, 'reality combined': 701719, 'combined to': 187132, 'drive asset': 258990, 'asset price': 96451, 'price down': 673510, 'down sharply': 257179, 'sharply in': 755743, 'first quarter': 308891, 'quarter market': 693251, 'market investing': 516607, 'financial market have': 306506, 'market have not': 516505, 'have not been': 381678, 'not been immune': 568512, 'been immune to': 121325, 'immune to the': 417370, 'to the effect': 916666, 'effect of the': 269065, 'of the panic': 591317, 'the panic driven': 863200, 'panic driven selling': 638047, 'driven selling and': 259353, 'selling and the': 749155, 'and the uncertainty': 73631, 'the uncertainty of': 870341, 'uncertainty of our': 939729, 'of our new': 587521, 'our new economic': 624028, 'new economic reality': 558664, 'economic reality combined': 267221, 'reality combined to': 701720, 'combined to drive': 187133, 'to drive asset': 904729, 'drive asset price': 258991, 'asset price down': 96456, 'price down sharply': 673530, 'down sharply in': 257181, 'sharply in the': 755748, 'in the first': 429204, 'the first quarter': 855337, 'first quarter market': 308894, 'quarter market investing': 693252, 'fair': 296305, 'thankfulthursday': 841971, 'turtle': 936021, 'have personal': 381919, 'personal reusable': 652948, 'reusable protective': 720167, 'protective face': 685745, 'mask if': 518817, 'or anyone': 614368, 'anyone you': 80666, 'need fair': 554764, 'fair price': 296366, 'price color': 673183, 'color available': 186726, 'available go': 104407, 'go here': 353643, 'here protective': 393483, 'mask protective': 519161, 'protective reusable': 685805, 'reusable facemask': 720160, 'facemask 19': 295063, '19 personal': 9662, 'personal facemasks': 652839, 'facemasks thankfulthursday': 295168, 'thankfulthursday turtle': 841973, 'we have personal': 971896, 'have personal reusable': 381920, 'personal reusable protective': 652949, 'reusable protective face': 720168, 'protective face mask': 685746, 'face mask if': 294549, 'mask if you': 518820, 'you or anyone': 1020222, 'or anyone you': 614372, 'anyone you know': 80668, 'know need fair': 476620, 'need fair price': 554765, 'fair price color': 296370, 'price color available': 673184, 'color available go': 186727, 'available go here': 104408, 'go here protective': 353645, 'here protective face': 393484, 'face mask protective': 294578, 'mask protective reusable': 519164, 'protective reusable facemask': 685806, 'reusable facemask 19': 720161, 'facemask 19 personal': 295064, '19 personal facemasks': 9663, 'personal facemasks thankfulthursday': 652840, 'facemasks thankfulthursday turtle': 295169, 'woe': 1003328, 'spiraling': 789434, 'rubber': 726928, 'chemical': 175329, 'crudeoil': 219627, 'crudeoilprice': 219658, 'lpg': 506314, 'ethylene': 283140, 'polymer': 663940, 'chemanalyst': 175326, 'chemicaprice': 175395, 'chemicaldatabase': 175394, 'woe spiraling': 1003338, 'spiraling crude': 789435, 'crude and': 219503, 'and rubber': 70616, 'rubber chemical': 726932, 'chemical impact': 175356, 'impact the': 417991, 'the chemical': 850791, 'chemical industry': 175363, 'industry oil': 436022, 'price crudeoil': 673359, 'crudeoil crudeoilprice': 219633, 'crudeoilprice lpg': 219659, 'lpg price': 506322, 'price rubber': 676277, 'rubber ethylene': 726934, 'ethylene polymer': 283143, 'polymer gas': 663945, 'price chemanalyst': 673123, 'chemanalyst chemicaprice': 175327, 'chemicaprice database': 175396, 'database chemicaldatabase': 226515, 'woe spiraling crude': 1003339, 'spiraling crude and': 789436, 'crude and rubber': 219506, 'and rubber chemical': 70617, 'rubber chemical impact': 726933, 'chemical impact the': 175357, 'impact the chemical': 417993, 'the chemical industry': 850793, 'chemical industry oil': 175364, 'industry oil price': 436024, 'oil price crudeoil': 597098, 'price crudeoil crudeoilprice': 673360, 'crudeoil crudeoilprice lpg': 219634, 'crudeoilprice lpg price': 219660, 'lpg price rubber': 506325, 'price rubber ethylene': 676278, 'rubber ethylene polymer': 726935, 'ethylene polymer gas': 283144, 'polymer gas price': 663946, 'gas price chemanalyst': 343943, 'price chemanalyst chemicaprice': 673124, 'chemanalyst chemicaprice database': 175328, 'chemicaprice database chemicaldatabase': 175397, 'surely': 827890, 'office': 595338, 'unused': 943966, 'redistributed': 705739, 'surely co': 827899, 'co working': 185018, 'working space': 1008918, 'space and': 787046, 'and office': 67994, 'office building': 595380, 'building must': 142116, 'must have': 546691, 'have plenty': 381962, 'paper currently': 640074, 'currently going': 221548, 'going unused': 355774, 'unused maybe': 943973, 'maybe it': 521719, 'be redistributed': 116733, 'redistributed to': 705740, 'to healthcare': 907377, 'healthcare support': 387300, 'support emergency': 826474, 'emergency worker': 273055, 'who don': 988645, 'have time': 383134, 'to queue': 912666, 'queue hour': 693946, 'hour to': 406009, 'get into': 347359, 'into supermarket': 443032, 'supermarket just': 821218, 'just to': 470080, 'to find': 905873, 'find it': 306981, 'it empty': 457812, 'empty coronacrisis': 274846, 'surely co working': 827900, 'co working space': 185020, 'working space and': 1008919, 'space and office': 787049, 'and office building': 67995, 'office building must': 595381, 'building must have': 142117, 'must have plenty': 546704, 'have plenty of': 381967, 'plenty of toilet': 660986, 'toilet paper currently': 921248, 'paper currently going': 640075, 'currently going unused': 221549, 'going unused maybe': 355775, 'unused maybe it': 943974, 'maybe it could': 521722, 'it could be': 457352, 'could be redistributed': 208914, 'be redistributed to': 116734, 'redistributed to healthcare': 705741, 'to healthcare support': 907384, 'healthcare support emergency': 387301, 'support emergency worker': 826476, 'emergency worker who': 273069, 'worker who don': 1008207, 'who don have': 988648, 'don have time': 253621, 'have time to': 383138, 'time to queue': 898037, 'to queue hour': 912670, 'queue hour to': 693947, 'hour to get': 406023, 'to get into': 906514, 'get into supermarket': 347374, 'into supermarket just': 443049, 'supermarket just to': 821233, 'just to find': 470091, 'to find it': 905912, 'find it empty': 306991, 'it empty coronacrisis': 457813, 'reopen': 711345, 'jingle': 465523, 'podcast': 662248, 'youtube': 1026885, 'channel': 172851, 'ringtone': 722562, 'understand': 940581, 'scarce': 740774, 'cheaper': 174241, 'because going': 119079, 'of work': 593236, 'for couple': 320419, 'couple of': 211632, 'of week': 592993, 'week ve': 977158, 'to reopen': 913236, 'reopen commission': 711350, 'commission if': 188840, 'you want': 1022126, 'want jingle': 965838, 'jingle for': 465524, 'for podcast': 324597, 'podcast youtube': 662330, 'youtube channel': 1026890, 'channel or': 172913, 'even just': 284263, 'just ringtone': 469647, 'ringtone my': 722563, 'my door': 548028, 'door are': 255516, 'open understand': 612619, 'understand money': 940680, 'money is': 536842, 'be scarce': 117014, 'scarce due': 740779, 'so my': 777831, 'my price': 549842, 'be cheaper': 114073, 'because going to': 119080, 'going to be': 355533, 'to be out': 901427, 'out of work': 626879, 'of work for': 593249, 'work for couple': 1005144, 'for couple of': 320421, 'couple of week': 211651, 'of week ve': 593009, 'week ve decided': 977160, 'decided to reopen': 230930, 'to reopen commission': 913239, 'reopen commission if': 711352, 'commission if you': 188841, 'if you want': 415555, 'you want jingle': 1022144, 'want jingle for': 965839, 'jingle for podcast': 465525, 'for podcast youtube': 324598, 'podcast youtube channel': 662331, 'youtube channel or': 1026892, 'channel or even': 172914, 'or even just': 615204, 'even just ringtone': 284269, 'just ringtone my': 469648, 'ringtone my door': 722564, 'my door are': 548029, 'door are open': 255517, 'are open understand': 88808, 'open understand money': 612620, 'understand money is': 940681, 'money is going': 536844, 'to be scarce': 901522, 'be scarce due': 117015, 'scarce due to': 740780, '19 so my': 10646, 'so my price': 777845, 'my price will': 549846, 'will be cheaper': 992395, 'luxury': 506908, 'physical': 655366, 'luxury department': 506928, 'department store': 237264, 'store announced': 806409, 'announced the': 77074, 'the temporary': 869281, 'temporary closure': 837592, 'closure of': 183954, 'all it': 43262, 'it physical': 460322, 'physical retail': 655447, 'retail store': 718600, 'store amid': 806162, 'luxury department store': 506929, 'department store announced': 237266, 'store announced the': 806412, 'announced the temporary': 77084, 'the temporary closure': 869282, 'temporary closure of': 837595, 'closure of all': 183955, 'of all it': 579950, 'all it physical': 43273, 'it physical retail': 460324, 'physical retail store': 655448, 'retail store amid': 718605, 'store amid the': 806167, 'amid the 19': 52680, 'greedy': 363463, 'everyone we': 287558, 'stay calm': 796803, 'calm this': 156817, 'is difficult': 447170, 'time for': 896686, 'the worst': 872037, 'worst thing': 1011280, 'thing we': 884956, 'can do': 158089, 'is panic': 450784, 'get greedy': 347147, 'greedy hoarding': 363527, 'hoarding food': 399298, 'and other': 68277, 'other important': 620399, 'important item': 418854, 'item do': 463209, 'do your': 250699, 'your part': 1025208, 'part and': 642227, 'and stay': 72286, 'stay safe': 797205, 'safe we': 730112, 'will get': 993493, 'through this': 894802, 'this together': 890755, 'everyone we all': 287559, 'we all need': 970345, 'need to stay': 556082, 'to stay calm': 915277, 'stay calm this': 796819, 'calm this is': 156818, 'this is difficult': 888234, 'is difficult time': 447174, 'difficult time for': 242287, 'time for all': 896688, 'for all of': 319154, 'all of the': 43715, 'of the worst': 591631, 'the worst thing': 872077, 'worst thing we': 1011287, 'thing we can': 884959, 'we can do': 970934, 'can do is': 158107, 'do is panic': 249452, 'is panic and': 450785, 'panic and get': 637311, 'and get greedy': 63576, 'get greedy hoarding': 347149, 'greedy hoarding food': 363528, 'hoarding food and': 399299, 'food and other': 313298, 'and other important': 68345, 'other important item': 620402, 'important item do': 418855, 'item do your': 463212, 'do your part': 250710, 'your part and': 1025209, 'part and stay': 642231, 'and stay safe': 72301, 'stay safe we': 797294, 'safe we will': 730120, 'we will get': 973865, 'will get through': 993522, 'get through this': 348441, 'through this together': 894850, 'nbn': 553266, 'cope': 203302, 'from with': 338390, 'with latest': 999179, 'latest coronavirus': 481270, 'coronavirus three': 206938, 'three health': 893948, 'in wa': 430636, 'wa consumer': 961868, 'protection take': 685633, 'take your': 832813, 'your call': 1023104, 'call will': 156225, 'the nbn': 861335, 'nbn cope': 553267, 'cope with': 203339, 'more australian': 538687, 'australian working': 103582, 'from with latest': 338391, 'with latest coronavirus': 999180, 'latest coronavirus three': 481275, 'coronavirus three health': 206939, 'three health worker': 893950, 'health worker have': 386980, 'worker have tested': 1007092, '19 in wa': 7796, 'in wa consumer': 430637, 'wa consumer protection': 961870, 'consumer protection take': 198566, 'protection take your': 685634, 'take your call': 832814, 'your call will': 1023111, 'call will the': 156227, 'will the nbn': 995146, 'the nbn cope': 861336, 'nbn cope with': 553268, 'cope with more': 203350, 'with more australian': 999551, 'more australian working': 538690, 'australian working from': 103583, 'think this': 885695, 'is really': 451286, 'really great': 702243, 'great panicbuying': 362871, 'panicbuying responsibility': 639039, 'think this is': 885700, 'this is really': 888373, 'is really great': 451300, 'really great panicbuying': 702246, 'great panicbuying responsibility': 362872, '31st': 17643, 'earliest': 264514, 'in quarantine': 427172, 'quarantine until': 692666, 'until 31st': 943659, '31st march': 17644, 'march and': 515268, 'and earliest': 61838, 'earliest available': 264517, 'available online': 104541, 'shopping delivery': 762454, 'slot is': 774220, 'is 2nd': 445197, '2nd april': 16750, 'april coronacrisis': 83562, 'coronacrisis any': 204512, 'any idea': 79336, 'in quarantine until': 427194, 'quarantine until 31st': 692667, 'until 31st march': 943660, '31st march and': 17645, 'march and earliest': 515270, 'and earliest available': 61839, 'earliest available online': 264518, 'available online shopping': 104545, 'online shopping delivery': 609088, 'shopping delivery slot': 762464, 'delivery slot is': 234530, 'slot is 2nd': 774221, 'is 2nd april': 445198, '2nd april coronacrisis': 16752, 'april coronacrisis any': 83563, 'coronacrisis any idea': 204513, 'delivering': 233462, 'paisley free': 634380, 'nashville is': 552020, 'is delivering': 447099, 'delivering to': 233555, 'elderly amid': 270560, 'brad paisley free': 137528, 'paisley free grocery': 634381, 'in nashville is': 425683, 'nashville is delivering': 552021, 'is delivering to': 447105, 'delivering to the': 233559, 'the elderly amid': 854104, 'elderly amid the': 270564, 'phone': 654874, 'elevator': 271374, 'button': 148199, 'pump': 689016, 'bottle': 136156, 'bottom': 136386, 'handbag': 376035, 'wrestlemania': 1012733, '40 thing': 18672, 'you never': 1020075, 'never touch': 558240, 'touch due': 926466, 'store cart': 806876, 'cart handle': 165315, 'handle your': 376290, 'your cell': 1023169, 'cell phone': 168955, 'phone elevator': 654947, 'elevator button': 271375, 'button the': 148213, 'the pump': 864894, 'pump on': 689075, 'sanitizer bottle': 734581, 'bottle the': 136330, 'the bottom': 849901, 'bottom of': 136416, 'of your': 593440, 'your handbag': 1024248, 'handbag staysafe': 376047, 'staysafe wrestlemania': 798962, 'wrestlemania quarantinelife': 1012736, '40 thing you': 18673, 'thing you never': 885038, 'you never touch': 1020083, 'never touch due': 558241, 'touch due to': 926467, 'due to grocery': 261795, 'grocery store cart': 365270, 'store cart handle': 806878, 'cart handle your': 165317, 'handle your cell': 376291, 'your cell phone': 1023170, 'cell phone elevator': 168960, 'phone elevator button': 654948, 'elevator button the': 271378, 'button the pump': 148214, 'the pump on': 864904, 'pump on hand': 689076, 'hand sanitizer bottle': 375327, 'sanitizer bottle the': 734588, 'bottle the bottom': 136331, 'the bottom of': 849910, 'bottom of your': 136422, 'of your handbag': 593480, 'your handbag staysafe': 1024249, 'handbag staysafe wrestlemania': 376048, 'staysafe wrestlemania quarantinelife': 798963, 'sarika': 736772, 'contest': 200871, 'giveawayalert': 350918, 'puzzle': 691311, 'sarika sanitizer': 736775, 'grocery contest': 364398, 'contest alert': 200872, 'alert giveawayalert': 41439, 'giveawayalert competition': 350919, 'competition puzzle': 191729, 'puzzle join': 691322, 'sarika sanitizer italy': 736776, 'wuhan grocery contest': 1013487, 'grocery contest alert': 364399, 'contest alert giveawayalert': 200873, 'alert giveawayalert competition': 41440, 'giveawayalert competition puzzle': 350920, 'competition puzzle join': 191732, 'knew': 476022, 'genius': 345764, 'record': 704896, 'euro': 283345, '134': 3326, 'dare': 225927, 'already knew': 47493, 'knew about': 476023, 'about some': 26224, 'some genius': 782945, 'genius in': 345786, 'denmark but': 237004, 'but this': 147540, 'this supermarket': 890424, 'supermarket set': 822390, 'set the': 753485, 'the record': 865358, 'record first': 704963, 'first hand': 308700, 'sanitizer you': 736162, 'you buy': 1017560, 'buy is': 148833, 'about 50': 24717, '50 euro': 19683, 'euro second': 283370, 'second is': 743744, 'about 134': 24644, '134 that': 3331, 'that way': 847338, 'way to': 969981, 'stop the': 805119, 'the hoarding': 857413, 'hoarding well': 399651, 'done who': 255112, 'who dare': 988539, 'dare to': 225932, 'be next': 116074, 'already knew about': 47494, 'knew about some': 476025, 'about some genius': 26227, 'some genius in': 782946, 'genius in denmark': 345787, 'in denmark but': 422183, 'denmark but this': 237005, 'but this supermarket': 147560, 'this supermarket set': 890435, 'supermarket set the': 822391, 'set the record': 753491, 'the record first': 865362, 'record first hand': 704964, 'first hand sanitizer': 308702, 'hand sanitizer you': 375677, 'sanitizer you buy': 736163, 'you buy is': 1017574, 'buy is about': 148834, 'is about 50': 445267, 'about 50 euro': 24720, '50 euro second': 19684, 'euro second is': 283371, 'second is about': 743745, 'is about 134': 445265, 'about 134 that': 24645, '134 that way': 3332, 'that way to': 847351, 'way to stop': 970105, 'to stop the': 915585, 'stop the hoarding': 805135, 'the hoarding well': 857419, 'hoarding well done': 399652, 'well done who': 978208, 'done who dare': 255113, 'who dare to': 988540, 'dare to be': 225933, 'to be next': 901406, 'apocolypse': 81606, 'crone': 218857, 'caledonia': 155383, 'long there': 501735, 'are bubble': 85072, 'bubble in': 141600, 'sanitizer will': 736101, 'never be': 557873, 'be bored': 113886, 'bored in': 135352, 'the apocalypse': 848802, 'apocalypse coronavid19': 81521, 'coronavid19 corona': 205374, 'corona apocolypse': 203810, 'apocolypse crone': 81607, 'crone caledonia': 218858, 'caledonia ontario': 155384, 'long there are': 501736, 'there are bubble': 878072, 'are bubble in': 85073, 'bubble in my': 141601, 'my hand sanitizer': 548614, 'hand sanitizer will': 375668, 'sanitizer will never': 736106, 'will never be': 994159, 'never be bored': 557874, 'be bored in': 113888, 'bored in the': 135354, 'in the apocalypse': 428980, 'the apocalypse coronavid19': 848806, 'apocalypse coronavid19 corona': 81522, 'coronavid19 corona apocolypse': 205375, 'corona apocolypse crone': 203811, 'apocolypse crone caledonia': 81608, 'crone caledonia ontario': 218859, 'concerned': 193146, 'scammed': 740505, 'scamsaction': 740682, 'people out': 649013, 'there may': 878753, 'take advantage': 831913, 'people concerned': 647519, 'concerned about': 193147, 'about if': 25497, 'think you': 885807, 'been scammed': 121884, 'scammed online': 740514, 'online our': 608719, 'our scamsaction': 624680, 'scamsaction service': 740683, 'service can': 752203, 'help and': 389346, 'and provide': 69687, 'provide support': 686501, 'support on': 826702, 'the issue': 858570, 'issue you': 456030, 'might be': 530876, 'be facing': 114776, 'some people out': 783528, 'people out there': 649027, 'out there may': 627501, 'there may try': 878755, 'try to take': 934672, 'to take advantage': 916155, 'take advantage of': 831917, 'advantage of people': 33025, 'of people concerned': 587889, 'people concerned about': 647520, 'concerned about if': 193159, 'about if you': 25500, 'if you think': 415540, 'you think you': 1021694, 'think you ve': 885819, 'you ve been': 1022027, 've been scammed': 952924, 'been scammed online': 121885, 'scammed online our': 740515, 'online our scamsaction': 608720, 'our scamsaction service': 624681, 'scamsaction service can': 740684, 'service can help': 752205, 'can help and': 158604, 'help and provide': 389356, 'and provide support': 69699, 'provide support on': 686502, 'support on the': 826705, 'on the issue': 604190, 'the issue you': 858580, 'issue you might': 456032, 'you might be': 1019849, 'might be facing': 530895, 'temporarily': 837431, 'salon': 732773, 'shampoo': 754766, 'time ha': 896878, 'ha come': 370199, 'come we': 187658, 'must temporarily': 546949, 'temporarily close': 837445, 'close the': 182832, 'the salon': 866184, 'salon to': 732787, 'to fight': 905771, 'fight but': 304685, 'but we': 147735, 'are still': 90387, 'still selling': 801159, 'product amp': 680859, 'amp you': 54867, 'order online': 618463, 'online we': 609696, 'we hope': 972030, 'hope you': 403786, 'you will': 1022322, 'will continue': 993007, 'support amp': 826346, 'amp not': 54188, 'not buy': 568643, 'buy cheap': 148483, 'cheap supermarket': 174207, 'supermarket shampoo': 822399, 'shampoo read': 754782, 'read more': 700414, 'more here': 539411, 'the time ha': 869591, 'time ha come': 896881, 'ha come we': 370207, 'come we must': 187659, 'we must temporarily': 972446, 'must temporarily close': 546950, 'temporarily close the': 837454, 'close the salon': 182845, 'the salon to': 866185, 'salon to help': 732788, 'to help to': 907654, 'help to fight': 390773, 'to fight but': 905781, 'fight but we': 304687, 'but we are': 147738, 'we are still': 970723, 'are still selling': 90477, 'still selling product': 801160, 'selling product amp': 749415, 'product amp you': 680864, 'amp you can': 54868, 'can order online': 159178, 'order online we': 618482, 'online we hope': 609698, 'we hope you': 972040, 'hope you will': 403814, 'you will continue': 1022327, 'will continue to': 993020, 'continue to support': 201270, 'to support amp': 915903, 'support amp not': 826347, 'amp not buy': 54191, 'not buy cheap': 568647, 'buy cheap supermarket': 148485, 'cheap supermarket shampoo': 174208, 'supermarket shampoo read': 822400, 'shampoo read more': 754783, 'read more here': 700437, 'dragged': 258173, 'refusing': 707078, 'fightcovid19': 304984, 'ghana': 349548, 'ajrnews': 40465, 'foreigner dragged': 329019, 'dragged out': 258182, 'supermarket after': 818796, 'after refusing': 36115, 'refusing to': 707087, 'to use': 918003, 'sanitizer yet': 736158, 'yet touching': 1016300, 'touching item': 926686, 'item on': 463499, 'shelf watch': 757746, 'watch fightcovid19': 968403, 'fightcovid19 ghana': 304991, 'ghana ajrnews': 349552, 'ajrnews stopthespread': 40466, 'foreigner dragged out': 329020, 'dragged out of': 258183, 'out of supermarket': 626846, 'of supermarket after': 590408, 'supermarket after refusing': 818807, 'after refusing to': 36116, 'refusing to use': 707101, 'to use hand': 918033, 'hand sanitizer yet': 375676, 'sanitizer yet touching': 736159, 'yet touching item': 1016301, 'touching item on': 926689, 'item on shelf': 463509, 'on shelf watch': 603413, 'shelf watch fightcovid19': 757747, 'watch fightcovid19 ghana': 968404, 'fightcovid19 ghana ajrnews': 304992, 'ghana ajrnews stopthespread': 349553, 'once': 605549, 'northvancouver': 567821, 'management': 512519, 'availability': 104125, 'once week': 605787, 'week go': 976274, 'go grocery': 353625, 'at our': 100005, 'local store': 498451, 'in northvancouver': 425959, 'northvancouver have': 567822, 'the staff': 867679, 'and management': 66621, 'management have': 512575, 'been great': 121230, 'great there': 363042, 'there have': 878465, 'been lot': 121491, 'of socialdistancing': 589844, 'socialdistancing measure': 780527, 'measure in': 525225, 'in place': 426718, 'place and': 657308, 'importantly lot': 419131, 'food some': 316688, 'some product': 783644, 'product have': 681249, 'have limited': 381318, 'limited availability': 492604, 'availability but': 104131, 'but do': 145556, 'not panic': 570890, 'panic here': 638169, 'once week go': 605791, 'week go grocery': 976275, 'go grocery shopping': 353626, 'grocery shopping at': 364997, 'shopping at our': 762108, 'at our local': 100019, 'our local store': 623789, 'local store in': 498465, 'store in northvancouver': 808356, 'in northvancouver have': 425960, 'northvancouver have to': 567823, 'have to say': 383290, 'to say the': 913844, 'say the staff': 739305, 'the staff and': 867681, 'staff and management': 792147, 'and management have': 66625, 'management have been': 512576, 'have been great': 379561, 'been great there': 121231, 'great there have': 363043, 'there have been': 878466, 'have been lot': 379602, 'been lot of': 121493, 'lot of socialdistancing': 504284, 'of socialdistancing measure': 589854, 'socialdistancing measure in': 780529, 'measure in place': 525230, 'in place and': 426720, 'place and most': 657316, 'most importantly lot': 542420, 'importantly lot of': 419132, 'of food some': 583781, 'food some product': 316690, 'some product have': 783647, 'product have limited': 681253, 'have limited availability': 381320, 'limited availability but': 492605, 'availability but do': 104132, 'but do not': 145560, 'do not panic': 249794, 'not panic here': 570914, 'weather': 974842, 'storm': 811783, 'amway': 54975, 'spectrum': 788329, 'basket': 112289, 'thanks to': 842201, 'local business': 497745, 'helping our': 391413, 'our community': 622446, 'community we': 190204, 'we weather': 973768, 'weather this': 974905, 'this storm': 890354, 'storm together': 811853, 'together amway': 920678, 'amway make': 54976, 'make free': 509920, 'free hand': 331887, 'sanitizer for': 734889, 'for spectrum': 325819, 'spectrum health': 788332, 'health kid': 386591, 'kid food': 473955, 'food basket': 313686, 'thanks to our': 842249, 'to our local': 911205, 'our local business': 623766, 'local business who': 497783, 'business who are': 144667, 'who are helping': 988152, 'are helping our': 87103, 'helping our community': 391415, 'our community we': 622488, 'community we weather': 190211, 'we weather this': 973769, 'weather this storm': 974909, 'this storm together': 890356, 'storm together amway': 811854, 'together amway make': 920679, 'amway make free': 54977, 'make free hand': 509922, 'free hand sanitizer': 331888, 'hand sanitizer for': 375410, 'sanitizer for spectrum': 734922, 'for spectrum health': 325820, 'spectrum health kid': 788333, 'health kid food': 386592, 'kid food basket': 473956, 'benefit': 126906, 'starting': 794929, 'veggie': 954158, 'propping': 684581, 'nutrition': 577708, 'foodsupply': 318198, 'wheat': 982964, 'egg': 269742, 'grocerybills': 366203, '3naturaln': 18364, 'there clear': 878277, 'clear benefit': 181229, 'benefit to': 127110, 'to not': 910680, 'not only': 570773, 'only starting': 611189, 'starting garden': 794961, 'garden growing': 343595, 'growing your': 367262, 'your own': 1025121, 'own veggie': 632286, 'veggie fruit': 954184, 'fruit but': 339082, 'but also': 145095, 'also propping': 48700, 'propping up': 684582, 'the dollar': 853512, 'dollar and': 252948, 'and stock': 72400, 'stock market': 802375, 'market nutrition': 516771, 'nutrition foodsupply': 577720, 'foodsupply wheat': 318212, 'wheat egg': 982982, 'egg beef': 269794, 'beef grocery': 120510, 'grocery grocerybills': 364567, 'grocerybills supplychain': 366204, 'supplychain lockdown': 826200, 'lockdown 3naturaln': 499099, 'there clear benefit': 878278, 'clear benefit to': 181230, 'benefit to not': 127119, 'to not only': 910701, 'not only starting': 570827, 'only starting garden': 611190, 'starting garden growing': 794962, 'garden growing your': 343596, 'growing your own': 367264, 'your own veggie': 1025168, 'own veggie fruit': 632287, 'veggie fruit but': 954185, 'fruit but also': 339083, 'but also propping': 145134, 'also propping up': 48701, 'propping up the': 684586, 'up the dollar': 946165, 'the dollar and': 853513, 'dollar and stock': 252951, 'and stock market': 72408, 'stock market nutrition': 802416, 'market nutrition foodsupply': 516772, 'nutrition foodsupply wheat': 577721, 'foodsupply wheat egg': 318213, 'wheat egg beef': 982983, 'egg beef grocery': 269795, 'beef grocery grocerybills': 120511, 'grocery grocerybills supplychain': 364568, 'grocerybills supplychain lockdown': 366205, 'supplychain lockdown 3naturaln': 826201, 'quietly': 694718, 'raging': 695555, 'head': 385713, 'lender': 486209, 'traditional': 928988, 'nonbank': 566535, 'player': 659295, 'sinking': 771498, 'further': 341984, 'the will': 871565, 'will bring': 992852, 'bring quietly': 140056, 'quietly raging': 694723, 'raging consumer': 695556, 'consumer debt': 197073, 'debt crisis': 230461, 'crisis to': 218242, 'to head': 907357, 'head online': 385800, 'online lender': 608476, 'lender and': 486212, 'other more': 620548, 'more traditional': 540820, 'traditional nonbank': 929005, 'nonbank player': 566536, 'player are': 659300, 'are sinking': 90143, 'sinking further': 771499, 'further into': 342074, 'into trouble': 443259, 'trouble weakening': 932659, 'weakening economy': 974084, 'economy take': 268248, 'take it': 832239, 'it toll': 461784, 'and the will': 73656, 'the will bring': 871567, 'will bring quietly': 992859, 'bring quietly raging': 140057, 'quietly raging consumer': 694724, 'raging consumer debt': 695557, 'consumer debt crisis': 197077, 'debt crisis to': 230463, 'crisis to head': 218246, 'to head online': 907360, 'head online lender': 385801, 'online lender and': 608477, 'lender and other': 486214, 'and other more': 68366, 'other more traditional': 620550, 'more traditional nonbank': 540821, 'traditional nonbank player': 929006, 'nonbank player are': 566537, 'player are sinking': 659303, 'are sinking further': 90144, 'sinking further into': 771500, 'further into trouble': 342079, 'into trouble weakening': 443260, 'trouble weakening economy': 932660, 'weakening economy take': 974086, 'economy take it': 268251, 'take it toll': 832256, 'beware': 129063, 'fraudulent': 331447, 'vaccine': 951641, 'treatment': 931026, 'evaluated': 283719, 'effectiveness': 269381, 'via fda': 955969, 'fda beware': 300841, 'beware of': 129072, 'of fraudulent': 583901, 'fraudulent test': 331475, 'test vaccine': 839222, 'vaccine treatment': 951782, 'treatment these': 931154, 'these fraudulent': 880026, 'fraudulent product': 331466, 'to cure': 903815, 'cure treat': 220838, 'treat or': 930856, 'or prevent': 616683, 'prevent haven': 671638, 'haven been': 383744, 'been evaluated': 121094, 'evaluated by': 283722, 'the fda': 855012, 'fda for': 300856, 'for safety': 325301, 'safety and': 730447, 'and effectiveness': 61957, 'effectiveness might': 269388, 'be dangerous': 114329, 'dangerous to': 225794, 'to you': 918886, 'you your': 1022493, 'via fda beware': 955970, 'fda beware of': 300842, 'beware of fraudulent': 129081, 'of fraudulent test': 583904, 'fraudulent test vaccine': 331476, 'test vaccine treatment': 839225, 'vaccine treatment these': 951785, 'treatment these fraudulent': 931155, 'these fraudulent product': 880027, 'fraudulent product that': 331470, 'claim to cure': 179847, 'to cure treat': 903819, 'cure treat or': 220839, 'treat or prevent': 930859, 'or prevent haven': 616685, 'prevent haven been': 671639, 'haven been evaluated': 383750, 'been evaluated by': 121095, 'evaluated by the': 283723, 'by the fda': 154326, 'the fda for': 855016, 'fda for safety': 300857, 'for safety and': 325302, 'safety and effectiveness': 730451, 'and effectiveness might': 61958, 'effectiveness might be': 269389, 'might be dangerous': 530887, 'be dangerous to': 114333, 'dangerous to you': 225796, 'to you your': 918944, 'you your family': 1022495, 'of corona': 581884, 'corona will': 204396, 'be your': 118172, 'your sanitizer': 1025675, 'world of corona': 1009851, 'of corona will': 581903, 'corona will be': 204397, 'will be your': 992778, 'be your sanitizer': 118179, 'your sanitizer stayhome': 1025678, 'allowing': 46263, 'necessity': 554155, 'rip': 722645, 'disgraceful': 245321, 'vulnerability': 960805, 'outoforder': 629198, 'ebay': 266416, 'why are': 990758, 'are allowing': 84384, 'allowing people': 46317, 'to sell': 914137, 'sell necessity': 748803, 'necessity at': 554174, 'at ridiculous': 100315, 'ridiculous price': 721586, 'price during': 673615, 'during difficult': 262599, 'time allowing': 896232, 'allowing them': 46353, 'to rip': 913543, 'rip people': 722673, 'people off': 648933, 'off disgraceful': 593769, 'disgraceful vulnerability': 245336, 'vulnerability outoforder': 960823, 'outoforder ebay': 629199, 'why are allowing': 990761, 'are allowing people': 84386, 'allowing people to': 46318, 'people to sell': 649939, 'to sell necessity': 914162, 'sell necessity at': 748804, 'necessity at ridiculous': 554175, 'at ridiculous price': 100316, 'ridiculous price during': 721588, 'price during difficult': 673619, 'during difficult time': 262600, 'difficult time allowing': 242276, 'time allowing them': 896233, 'allowing them to': 46356, 'them to rip': 876502, 'to rip people': 913546, 'rip people off': 722674, 'people off disgraceful': 648935, 'off disgraceful vulnerability': 593770, 'disgraceful vulnerability outoforder': 245337, 'vulnerability outoforder ebay': 960824, 'awful': 106217, 'road': 724386, 'rammed': 696416, 'seem': 746666, 'also there': 48992, 'there seems': 879026, 'seems an': 746755, 'an awful': 55514, 'awful lot': 106233, 'of car': 581128, 'car still': 163297, 'still on': 800931, 'the road': 865913, 'road many': 724479, 'many with': 514887, 'with family': 998374, 'family full': 297835, 'people supermarket': 649695, 'supermarket car': 819525, 'car park': 163210, 'park rammed': 641970, 'rammed it': 696419, 'it doesn': 457621, 'doesn seem': 251936, 'seem like': 746669, 'this advice': 886215, 'advice is': 33413, 'is working': 454030, 'working madness': 1008769, 'madness lockdown': 508187, 'also there seems': 48993, 'there seems an': 879027, 'seems an awful': 746756, 'an awful lot': 55515, 'awful lot of': 106234, 'lot of car': 504150, 'of car still': 581133, 'car still on': 163298, 'still on the': 800935, 'on the road': 604338, 'the road many': 865933, 'road many with': 724480, 'many with family': 514888, 'with family full': 998377, 'family full of': 297836, 'full of people': 340746, 'of people supermarket': 587995, 'people supermarket car': 649696, 'supermarket car park': 819526, 'car park rammed': 163232, 'park rammed it': 641971, 'rammed it doesn': 696420, 'it doesn seem': 457640, 'doesn seem like': 251937, 'seem like this': 746673, 'like this advice': 491464, 'this advice is': 886218, 'advice is working': 33421, 'is working madness': 454042, 'working madness lockdown': 1008770, 'partying': 643067, 'room': 725869, 'jared': 464821, 'dad': 224275, 'kiss': 475445, 'royally': 726642, 'hey while': 394544, 're partying': 699246, 'partying with': 643071, 'the kid': 858776, 'kid in': 474011, 'your living': 1024669, 'living room': 496443, 'room the': 725974, 'of are': 580337, 'are waiting': 91516, 'waiting in': 964350, 'store give': 807933, 'give jared': 350554, 'jared and': 464822, 'and dad': 60898, 'dad kiss': 224364, 'kiss from': 475453, 'from for': 335524, 'for fucking': 321793, 'fucking this': 340034, 'this up': 890927, 'up so': 946012, 'so royally': 778136, 'hey while you': 394545, 'you re partying': 1020700, 're partying with': 699247, 'partying with the': 643073, 'with the kid': 1001357, 'the kid in': 858789, 'kid in your': 474020, 'in your living': 431102, 'your living room': 1024670, 'living room the': 496445, 'room the rest': 725975, 'rest of are': 716184, 'of are waiting': 580358, 'are waiting in': 91520, 'waiting in line': 964352, 'get into the': 347376, 'into the grocery': 443133, 'grocery store give': 365429, 'store give jared': 807934, 'give jared and': 350555, 'jared and dad': 464823, 'and dad kiss': 60902, 'dad kiss from': 224366, 'kiss from for': 475454, 'from for fucking': 335528, 'for fucking this': 321795, 'fucking this up': 340035, 'this up so': 890935, 'up so royally': 946017, 'freaking': 331534, 'quaratinelife': 693116, 'reason south': 702989, 'south asian': 786685, 'asian aren': 95251, 'aren freaking': 92411, 'freaking out': 331541, 'out about': 625546, 'about toilet': 26745, 'paper toiletpaper': 640943, 'toiletpaper quaratinelife': 922385, 'main reason south': 508811, 'reason south asian': 702990, 'south asian aren': 786686, 'asian aren freaking': 95252, 'aren freaking out': 92412, 'freaking out about': 331542, 'out about toilet': 625564, 'about toilet paper': 26746, 'toilet paper toiletpaper': 921497, 'paper toiletpaper quaratinelife': 640953, 'destroy': 239004, 'useful': 950137, 'household product': 406910, 'that destroy': 843511, 'destroy novel': 239021, 'novel consumer': 573746, 'report useful': 712409, 'useful info': 950164, 'info on': 437522, 'on which': 605276, 'one will': 607471, 'will work': 995362, 'one won': 607498, 'household product that': 406916, 'product that destroy': 681689, 'that destroy novel': 843512, 'destroy novel consumer': 239022, 'novel consumer report': 573747, 'consumer report useful': 198736, 'report useful info': 712410, 'useful info on': 950166, 'info on which': 437542, 'on which one': 605281, 'which one will': 986203, 'one will work': 607477, 'will work and': 995363, 'work and which': 1004824, 'and which one': 75562, 'which one won': 986204, 'clearing': 181453, 'formaula': 329596, 'wuflu': 1013453, 'and that': 73174, 'that is': 844546, 'say nothing': 738997, 'nothing of': 573122, 'of clearing': 581454, 'clearing baby': 181456, 'baby formaula': 106613, 'formaula off': 329597, 'off our': 594037, 'our supermarket': 625005, 'shelf every': 757055, 'every other': 286062, 'other time': 621127, 'time wuflu': 898390, 'and that is': 73196, 'that is to': 844668, 'is to say': 453237, 'to say nothing': 913832, 'say nothing of': 738999, 'nothing of clearing': 573123, 'of clearing baby': 581455, 'clearing baby formaula': 181457, 'baby formaula off': 106614, 'formaula off our': 329598, 'off our supermarket': 594044, 'our supermarket shelf': 625027, 'supermarket shelf every': 822464, 'shelf every other': 757056, 'every other time': 286075, 'other time wuflu': 621129, 'hold on': 399976, 'on to': 604723, 'your roll': 1025646, 'roll boy': 725222, 'hold on to': 399981, 'on to your': 604770, 'to your roll': 919024, 'your roll boy': 1025647, '300th': 17373, 'for 300th': 318809, '300th time': 17376, 'time cause': 896455, 'cause that': 167753, 'only fucking': 610492, 'fucking place': 339970, 'place we': 657810, 'can go': 158487, 'go now': 353858, 'me going to': 522824, 'store for 300th': 807784, 'for 300th time': 318810, '300th time cause': 17377, 'time cause that': 896456, 'cause that the': 167755, 'that the only': 846789, 'the only fucking': 862307, 'only fucking place': 610493, 'fucking place we': 339971, 'place we can': 657813, 'we can go': 970956, 'can go now': 158505, 'minnesota': 533591, 'vermont': 954843, 'classified': 180343, 'personnel': 653071, 'minnesota and': 533592, 'and vermont': 74929, 'vermont have': 954852, 'have classified': 379974, 'classified grocery': 180355, 'worker emergency': 1006838, 'emergency personnel': 272859, 'personnel during': 653101, 'the period': 863562, 'period to': 651908, 'provide them': 686514, 'them with': 876642, 'with essential': 998253, 'essential benefit': 280829, 'benefit like': 127022, 'like free': 490281, 'free child': 331705, 'child care': 176033, 'minnesota and vermont': 533593, 'and vermont have': 74931, 'vermont have classified': 954853, 'have classified grocery': 379975, 'classified grocery store': 180356, 'store worker emergency': 811489, 'worker emergency personnel': 1006840, 'emergency personnel during': 272862, 'personnel during the': 653104, 'during the period': 263173, 'the period to': 863568, 'period to provide': 651911, 'to provide them': 912441, 'provide them with': 686517, 'them with essential': 876647, 'with essential benefit': 998254, 'essential benefit like': 280830, 'benefit like free': 127024, 'like free child': 490282, 'free child care': 331706, 'brussels': 141376, 'belgium': 126174, '18': 4477, 'bruxelles': 141425, 'coronaoutbreak': 205100, 'togetheragainstcorona': 921057, 'man wear': 512308, 'wear protective': 974449, 'protective mask': 685777, 'mask he': 518792, 'he carry': 384826, 'carry toilet': 165162, 'paper outside': 640563, 'outside supermarket': 629563, 'in brussels': 421008, 'brussels belgium': 141381, 'belgium march': 126175, 'march 18': 515106, '18 2020': 4491, '2020 bruxelles': 14190, 'bruxelles brussels': 141426, 'belgium stayhome': 126188, 'stayhome coronaoutbreak': 797974, 'coronaoutbreak 19': 205101, '19 togetheragainstcorona': 11479, 'man wear protective': 512309, 'wear protective mask': 974451, 'protective mask he': 685781, 'mask he carry': 518793, 'he carry toilet': 384828, 'carry toilet paper': 165163, 'toilet paper outside': 921381, 'paper outside supermarket': 640565, 'outside supermarket in': 629572, 'supermarket in brussels': 820871, 'in brussels belgium': 421009, 'brussels belgium march': 141382, 'belgium march 18': 126176, 'march 18 2020': 515107, '18 2020 bruxelles': 4494, '2020 bruxelles brussels': 14191, 'bruxelles brussels belgium': 141428, 'brussels belgium stayhome': 141384, 'belgium stayhome coronaoutbreak': 126189, 'stayhome coronaoutbreak 19': 797975, 'coronaoutbreak 19 togetheragainstcorona': 205105, 'preventing': 671797, 'absolute': 27220, 'selfishness': 748325, 'please just': 660140, 'just buy': 468381, 'buy what': 149452, 'need he': 554962, 'he will': 385661, 'not die': 569016, 'hunger this': 411200, 'this panic': 889455, 'buying is': 150560, 'is preventing': 451013, 'preventing key': 671816, 'the sick': 867146, 'sick from': 768450, 'from getting': 335623, 'wa cry': 961906, 'cry in': 219877, 'the absolute': 848252, 'absolute selfishness': 27282, 'selfishness of': 748366, 'please just buy': 660141, 'just buy what': 468389, 'buy what you': 149458, 'what you need': 982684, 'you need he': 1019998, 'need he will': 554963, 'he will not': 385672, 'will not die': 994207, 'not die of': 569023, 'die of hunger': 241424, 'of hunger this': 584921, 'hunger this panic': 411202, 'this panic buying': 889459, 'panic buying is': 637778, 'buying is preventing': 150575, 'is preventing key': 451015, 'preventing key worker': 671817, 'key worker the': 473519, 'worker the elderly': 1007925, 'the elderly and': 854106, 'elderly and the': 270588, 'and the sick': 73583, 'the sick from': 867150, 'sick from getting': 768452, 'from getting food': 335628, 'getting food wa': 348989, 'food wa cry': 317443, 'wa cry in': 961908, 'cry in my': 219879, 'in my local': 425596, 'local supermarket at': 498501, 'at the absolute': 100869, 'the absolute selfishness': 848255, 'absolute selfishness of': 27283, 'selfishness of people': 748369, 'attack': 102075, 'president': 670746, 'country is': 210794, 'is under': 453456, 'under attack': 940014, 'attack and': 102080, 'no president': 565179, 'our country is': 622596, 'country is under': 210825, 'is under attack': 453457, 'under attack and': 940015, 'attack and we': 102083, 'and we have': 75296, 'we have no': 971876, 'have no president': 381646, 'packaged': 633464, 'monica': 537249, 'gellar': 345188, 'goingmental': 355830, 'doe anyone': 251335, 'else clean': 271662, 'clean packaged': 180612, 'packaged food': 633476, 'food after': 313036, 'after bringing': 35435, 'bringing it': 140174, 'it home': 458610, 'home from': 401256, 'supermarket turning': 823592, 'turning into': 935925, 'into monica': 442767, 'monica gellar': 537254, 'gellar my': 345189, 'sanitizer ha': 735009, 'ha hand': 370810, 'sanitizer in': 735123, 'in it': 424223, 'it goingmental': 458285, 'doe anyone else': 251337, 'anyone else clean': 80259, 'else clean packaged': 271663, 'clean packaged food': 180613, 'packaged food after': 633477, 'food after bringing': 313040, 'after bringing it': 35436, 'bringing it home': 140175, 'it home from': 458614, 'home from the': 401273, 'the supermarket turning': 868878, 'supermarket turning into': 823593, 'turning into monica': 935928, 'into monica gellar': 442768, 'monica gellar my': 537255, 'gellar my hand': 345190, 'hand sanitizer ha': 375425, 'sanitizer ha hand': 735014, 'ha hand sanitizer': 370812, 'hand sanitizer in': 375451, 'sanitizer in it': 735141, 'in it goingmental': 424248, 'usually': 951075, 'bit': 131524, 'sarcastic': 736746, 'prone': 683971, 'earnest': 264851, 'statement': 796152, 'immensely': 417194, 'proud': 686018, 'colleague': 186175, 'stepping': 799791, 'am usually': 50528, 'usually bit': 951095, 'bit sarcastic': 131691, 'sarcastic and': 736747, 'and not': 67710, 'not prone': 571117, 'prone to': 683972, 'to earnest': 904841, 'earnest statement': 264858, 'statement but': 796165, 'but am': 145156, 'am so': 50401, 'so immensely': 777369, 'immensely proud': 417197, 'proud of': 686023, 'my colleague': 547729, 'colleague in': 186215, 'the also': 848601, 'also and': 47849, 'and all': 57853, 'the especially': 854487, 'especially supermarket': 280614, 'are stepping': 90384, 'stepping up': 799811, 'getting thing': 349377, 'thing done': 884283, 'done 19': 254750, 'am usually bit': 50529, 'usually bit sarcastic': 951096, 'bit sarcastic and': 131692, 'sarcastic and not': 736748, 'and not prone': 67765, 'not prone to': 571118, 'prone to earnest': 683975, 'to earnest statement': 904842, 'earnest statement but': 264859, 'statement but am': 796166, 'but am so': 145165, 'am so immensely': 50407, 'so immensely proud': 777370, 'immensely proud of': 417198, 'proud of my': 686035, 'of my colleague': 586746, 'my colleague in': 547733, 'colleague in the': 186216, 'in the also': 428976, 'the also and': 848602, 'also and all': 47850, 'and all the': 57896, 'all the especially': 44737, 'the especially supermarket': 854488, 'especially supermarket employee': 280615, 'supermarket employee who': 820151, 'who are stepping': 988224, 'are stepping up': 90386, 'stepping up and': 799812, 'up and getting': 944326, 'and getting thing': 63628, 'getting thing done': 349378, 'thing done 19': 884284, 'stayed': 797854, 'germaphobia': 346378, 'craziness': 215216, 'definitely': 232304, 'died': 241499, 'connecticut': 194676, 'florida': 310886, 'saturdaymorning': 737087, 'stayingalive': 798729, 'nogerms': 566197, 'store well': 811204, 'well my': 978410, 'mom is': 535754, 'is stayed': 452243, 'stayed in': 797864, 'the car': 850371, 'car have': 163118, 'have germaphobia': 380759, 'germaphobia the': 346379, 'the craziness': 852287, 'craziness ha': 215221, 'ha definitely': 370341, 'definitely died': 232325, 'died down': 241530, 'down wondering': 257507, 'how connecticut': 407584, 'connecticut and': 194677, 'and florida': 62980, 'florida are': 310902, 'are connecticut': 85498, 'connecticut florida': 194679, 'florida saturdaymorning': 310980, 'saturdaymorning stayingalive': 737096, 'stayingalive nogerms': 798730, 'grocery store well': 365941, 'store well my': 811207, 'well my mom': 978413, 'my mom is': 549275, 'mom is stayed': 535760, 'is stayed in': 452244, 'stayed in the': 797865, 'in the car': 429056, 'the car have': 850377, 'car have germaphobia': 163119, 'have germaphobia the': 380760, 'germaphobia the craziness': 346380, 'the craziness ha': 852289, 'craziness ha definitely': 215222, 'ha definitely died': 370342, 'definitely died down': 232326, 'died down wondering': 241532, 'down wondering how': 257508, 'wondering how connecticut': 1004155, 'how connecticut and': 407585, 'connecticut and florida': 194678, 'and florida are': 62982, 'florida are connecticut': 310903, 'are connecticut florida': 85499, 'connecticut florida saturdaymorning': 194680, 'florida saturdaymorning stayingalive': 310981, 'saturdaymorning stayingalive nogerms': 737097, 'supporting': 827103, 'chain restaurant': 171048, 'restaurant large': 716545, 'large retailer': 479776, 'retailer if': 719194, 'not supporting': 571826, 'supporting your': 827238, 'your employee': 1023649, 'employee right': 274159, 'the problem': 864506, 'chain restaurant large': 171050, 'restaurant large retailer': 716546, 'large retailer if': 479778, 'retailer if you': 719196, 're not supporting': 699121, 'not supporting your': 571828, 'supporting your employee': 827240, 'your employee right': 1023662, 'employee right now': 274160, 'now you are': 576500, 'you are part': 1017195, 'of the problem': 591366, 'recently': 704038, 'roundtable': 726394, 'scott': 742437, 'knaul': 475992, 'brings': 140225, 'discussion': 245012, 'tune': 935397, 'ccseries': 168509, 'workforce insight': 1008369, 'insight recently': 439625, 'recently had': 704105, 'had roundtable': 373464, 'roundtable with': 726408, 'with retailer': 1000505, 'retailer of': 719256, 'of different': 582595, 'different size': 242060, 'size across': 772752, 'across industry': 29353, 'industry scott': 436089, 'scott knaul': 742451, 'knaul brings': 475993, 'brings those': 140278, 'those insight': 892124, 'insight to': 439646, 'to today': 917603, 'today discussion': 919451, 'discussion and': 245015, 'and talk': 73005, 'talk about': 833726, 'about what': 26876, 'what retailer': 982105, 'retailer did': 719105, 'did are': 240553, 'doing and': 252286, 'and will': 75654, 'will do': 993220, 'do in': 249422, '19 tune': 11597, 'tune in': 935400, 'in now': 425983, 'now ccseries': 574367, 'workforce insight recently': 1008370, 'insight recently had': 439626, 'recently had roundtable': 704106, 'had roundtable with': 373465, 'roundtable with retailer': 726409, 'with retailer of': 1000507, 'retailer of different': 719257, 'of different size': 582599, 'different size across': 242061, 'size across industry': 772753, 'across industry scott': 29356, 'industry scott knaul': 436090, 'scott knaul brings': 742452, 'knaul brings those': 475994, 'brings those insight': 140279, 'those insight to': 892125, 'insight to today': 439649, 'to today discussion': 917608, 'today discussion and': 919452, 'discussion and talk': 245017, 'and talk about': 73006, 'talk about what': 833767, 'about what retailer': 26895, 'what retailer did': 982106, 'retailer did are': 719106, 'did are doing': 240554, 'are doing and': 85886, 'doing and will': 252292, 'and will do': 75664, 'will do in': 993223, 'do in light': 249427, 'light of covid': 489551, 'covid 19 tune': 213988, '19 tune in': 11598, 'tune in now': 935406, 'in now ccseries': 425985, 'canary': 160803, 'coal': 185050, 'severe': 753979, 'sink': 771462, 'canary in': 160804, 'the coal': 851110, 'coal mine': 185059, 'mine said': 532919, 'said to': 731511, 'be having': 115154, 'having severe': 384263, 'severe impact': 754024, 'impact on': 417814, 'credit market': 216428, 'market online': 516798, 'online lending': 608479, 'lending sink': 486290, 'canary in the': 160805, 'in the coal': 429076, 'the coal mine': 851111, 'coal mine said': 185062, 'mine said to': 532921, 'said to be': 731512, 'to be having': 901294, 'be having severe': 115158, 'having severe impact': 384265, 'severe impact on': 754025, 'impact on consumer': 417833, 'on consumer credit': 600037, 'consumer credit market': 197022, 'credit market online': 216431, 'market online lending': 516799, 'online lending sink': 608480, 'remain': 709689, 'turbulence': 935501, 'boe': 133923, 'governor': 360852, 'andrew': 76176, 'long we': 501830, 'we don': 971373, 'see market': 745395, 'market spiraling': 517090, 'spiraling out': 789439, 'of control': 581840, 'control it': 202039, 'it important': 458706, 'important to': 419047, 'them open': 876107, 'open financial': 612225, 'market must': 516739, 'must remain': 546849, 'remain open': 709797, 'open despite': 612181, 'despite further': 238745, 'further related': 342146, 'related turbulence': 708628, 'turbulence for': 935506, 'for currency': 320490, 'currency and': 221008, 'and share': 71382, 'share price': 755157, 'price new': 675325, 'new boe': 558411, 'boe governor': 133924, 'governor andrew': 360860, 'andrew bailey': 76179, 'bailey ha': 108610, 'ha said': 371790, 'long we don': 501833, 'we don see': 971393, 'don see market': 253893, 'see market spiraling': 745396, 'market spiraling out': 517091, 'spiraling out of': 789440, 'out of control': 626706, 'of control it': 581843, 'control it important': 202041, 'it important to': 458712, 'important to keep': 419055, 'to keep them': 908865, 'keep them open': 472112, 'them open financial': 876108, 'open financial market': 612226, 'financial market must': 306509, 'market must remain': 516741, 'must remain open': 546852, 'remain open despite': 709806, 'open despite further': 612182, 'despite further related': 238746, 'further related turbulence': 342147, 'related turbulence for': 708629, 'turbulence for currency': 935507, 'for currency and': 320491, 'currency and share': 221010, 'and share price': 71393, 'share price new': 755177, 'price new boe': 675326, 'new boe governor': 558412, 'boe governor andrew': 133925, 'governor andrew bailey': 360861, 'andrew bailey ha': 76180, 'bailey ha said': 108611, 'holbrook': 399871, 'rationing chicken': 697801, 'chicken holbrook': 175795, 'holbrook april': 399872, 'april 10': 83390, '10 2020': 1253, '2020 panic': 14501, 'buying continues': 150137, 'continues rationing': 201427, 'chicken supermarket': 175864, 'rationing chicken holbrook': 697802, 'chicken holbrook april': 175796, 'holbrook april 10': 399873, 'april 10 2020': 83391, '10 2020 panic': 1256, '2020 panic buying': 14502, 'panic buying continues': 637685, 'buying continues rationing': 150138, 'continues rationing chicken': 201428, 'rationing chicken supermarket': 697803, 'manchester': 512932, 'united': 942135, 'donated': 254294, 'result': 717469, 'mfm': 530076, 'heartland': 388457, 'manchester city': 512938, 'city and': 179044, 'and manchester': 66634, 'manchester united': 512960, 'united have': 942168, 'have donated': 380316, 'donated combined': 254327, 'combined 100': 187118, '100 00': 1778, '00 to': 533, 'help food': 389740, 'bank in': 109913, 'in greater': 423415, 'greater manchester': 363202, 'manchester meet': 512950, 'meet increased': 527509, 'demand from': 235529, 'from vulnerable': 338271, 'people result': 649296, 'result of': 717579, 'pandemic what': 636968, 'is mfm': 449646, 'mfm and': 530077, 'and heartland': 64419, 'heartland doing': 388458, 'doing for': 252409, 'manchester city and': 512939, 'city and manchester': 179048, 'and manchester united': 66636, 'manchester united have': 512965, 'united have donated': 942169, 'have donated combined': 380317, 'donated combined 100': 254328, 'combined 100 00': 187119, '100 00 to': 1799, '00 to help': 543, 'to help food': 907520, 'help food bank': 389741, 'food bank in': 313588, 'bank in greater': 109919, 'in greater manchester': 423417, 'greater manchester meet': 363203, 'manchester meet increased': 512951, 'meet increased demand': 527511, 'increased demand from': 433274, 'demand from vulnerable': 235550, 'from vulnerable people': 338273, 'vulnerable people result': 961106, 'people result of': 649297, 'result of the': 717617, 'of the coronavirus': 590897, 'the coronavirus covid': 851824, '19 pandemic what': 9521, 'pandemic what is': 636971, 'what is mfm': 981708, 'is mfm and': 449647, 'mfm and heartland': 530078, 'and heartland doing': 64420, 'heartland doing for': 388459, 'usa': 948563, 'officially': 595981, 'the usa': 870533, 'usa ha': 948655, 'be they': 117690, 'have officially': 381759, 'officially passed': 596017, 'passed italy': 643277, 'italy and': 462761, 'and china': 59842, 'china with': 177077, 'the total': 869810, 'total number': 926202, 'of case': 581164, 'the usa ha': 870543, 'usa ha to': 948658, 'ha to be': 372289, 'to be they': 901590, 'be they have': 117691, 'they have officially': 882354, 'have officially passed': 381761, 'officially passed italy': 596018, 'passed italy and': 643278, 'italy and china': 462762, 'and china with': 59858, 'china with the': 177078, 'with the total': 1001522, 'the total number': 869819, 'total number of': 926203, 'number of case': 576925, 'pandey': 637148, 'controlling': 202270, 'costly': 208343, 'compared': 191416, 'town': 927425, 'village': 957326, 'pandey will': 637149, 'will controlling': 993030, 'controlling vegetable': 202286, 'vegetable price': 954068, 'price at': 672781, 'at this': 101219, 'this point': 889628, 'point help': 662504, 'help such': 390601, 'such people': 816672, 'people situation': 649477, 'situation would': 772607, 'be worse': 118152, 'worse in': 1010951, 'in city': 421475, 'city thing': 179412, 'thing are': 884146, 'are costly': 85583, 'costly compared': 208344, 'compared to': 191419, 'to town': 917660, 'town village': 927574, 'village wish': 957387, 'wish people': 996805, 'die due': 241319, 'to starvation': 915240, 'starvation lockdown': 795174, 'pandey will controlling': 637150, 'will controlling vegetable': 993031, 'controlling vegetable price': 202287, 'vegetable price at': 954070, 'price at this': 672816, 'at this point': 101249, 'this point help': 889635, 'point help such': 662505, 'help such people': 390602, 'such people situation': 816675, 'people situation would': 649478, 'situation would be': 772608, 'would be worse': 1011672, 'be worse in': 118154, 'worse in city': 1010952, 'in city thing': 421485, 'city thing are': 179413, 'thing are costly': 884150, 'are costly compared': 85584, 'costly compared to': 208345, 'compared to town': 191442, 'to town village': 917663, 'town village wish': 927575, 'village wish people': 957388, 'wish people do': 996806, 'do not die': 249715, 'not die due': 569019, 'die due to': 241320, 'due to starvation': 261971, 'to starvation lockdown': 915241, 'far': 298686, 'induced': 435446, 'ha had': 370786, 'had little': 373249, 'little impact': 495401, 'global food': 351944, 'chain so': 171116, 'so far': 777005, 'far but': 298730, 'but fear': 145702, 'fear induced': 301169, 'induced panic': 435481, 'panic could': 638018, 'could change': 209006, 'change that': 172277, 'pandemic ha had': 635546, 'ha had little': 370791, 'had little impact': 373251, 'little impact on': 495402, 'impact on the': 417894, 'on the global': 604141, 'the global food': 856304, 'global food supply': 351951, 'food supply chain': 316941, 'supply chain so': 825038, 'chain so far': 171119, 'so far but': 777015, 'far but fear': 298731, 'but fear induced': 145703, 'fear induced panic': 301170, 'induced panic could': 435484, 'panic could change': 638019, 'could change that': 209013, 'wife': 991885, 'inevitably': 436417, 'caring': 164693, 'herself': 394229, 'daughter': 226818, 'varying': 952675, 'degree': 232562, 'find food': 306900, 'for due': 320879, 'to panic': 911377, 'buying and': 149898, 'and hoarding': 64646, 'hoarding my': 399432, 'my wife': 550580, 'wife will': 992008, 'will inevitably': 993840, 'inevitably end': 436422, 'end up': 276021, 'up caring': 944582, 'caring for': 164711, 'for people': 324441, 'people struggling': 649675, '19 which': 12036, 'which will': 986480, 'will mean': 994108, 'mean isolating': 524504, 'isolating herself': 455108, 'herself in': 394232, 'our home': 623441, 'from me': 336390, 'me our': 523292, 'our daughter': 622699, 'daughter and': 226821, 'our dog': 622793, 'dog this': 252175, 'will affect': 992209, 'affect all': 34109, 'in varying': 430540, 'varying degree': 952682, 'degree but': 232565, 'to find food': 905897, 'find food for': 306905, 'food for due': 314528, 'for due to': 320880, 'due to panic': 261897, 'to panic buying': 911390, 'panic buying and': 637643, 'buying and hoarding': 149912, 'and hoarding my': 64660, 'hoarding my wife': 399433, 'my wife will': 550609, 'wife will inevitably': 992009, 'will inevitably end': 993841, 'inevitably end up': 436423, 'end up caring': 276025, 'up caring for': 944583, 'caring for people': 164717, 'for people struggling': 324464, 'people struggling with': 649677, 'struggling with covid': 814532, 'covid 19 which': 214069, '19 which will': 12042, 'which will mean': 986498, 'will mean isolating': 994110, 'mean isolating herself': 524505, 'isolating herself in': 455109, 'herself in our': 394233, 'in our home': 426302, 'our home from': 623449, 'home from me': 401268, 'from me our': 336399, 'me our daughter': 523293, 'our daughter and': 622700, 'daughter and our': 226823, 'and our dog': 68484, 'our dog this': 622794, 'dog this will': 252176, 'this will affect': 891401, 'will affect all': 992211, 'affect all in': 34111, 'all in varying': 43209, 'in varying degree': 430541, 'varying degree but': 952683, 'degree but it': 232566, 'but it is': 146133, 'it is going': 458963, 'pub': 687656, 'heath': 388507, 'haywards': 384538, 'round': 726310, 'drink': 258788, 'supportlocalbusiness': 827273, 'is my': 449776, 'local pub': 498307, 'pub the': 687777, 'the heath': 857216, 'heath in': 388512, 'in haywards': 423581, 'haywards heath': 384539, 'heath so': 388514, 're in': 698862, 'area fed': 92004, 'with fighting': 998432, 'fighting your': 305164, 'your way': 1026312, 'way round': 969848, 'round the': 726359, 'supermarket collect': 819733, 'collect your': 186342, 'your drink': 1023600, 'drink from': 258827, 'from here': 335773, 'here supportlocalbusiness': 393626, 'this is my': 888325, 'is my local': 449801, 'my local pub': 549134, 'local pub the': 498310, 'pub the heath': 687779, 'the heath in': 857217, 'heath in haywards': 388513, 'in haywards heath': 423582, 'haywards heath so': 384540, 'heath so if': 388515, 'so if you': 777359, 'you re in': 1020652, 're in the': 698889, 'the area fed': 848880, 'area fed up': 92005, 'fed up with': 301926, 'up with fighting': 946637, 'with fighting your': 998433, 'fighting your way': 305165, 'your way round': 1026318, 'way round the': 969850, 'round the supermarket': 726364, 'the supermarket collect': 868522, 'supermarket collect your': 819734, 'collect your drink': 186344, 'your drink from': 1023601, 'drink from here': 258828, 'from here supportlocalbusiness': 335784, 'robbing': 724681, 'york': 1016567, 'manhattan': 513128, 'element': 271339, 'some criminal': 782639, 'criminal are': 216820, 'are robbing': 89733, 'robbing grocery': 724686, 'in new': 425816, 'new york': 559915, 'york in': 1016623, 'in manhattan': 425031, 'manhattan mask': 513137, 'are useful': 91400, 'useful for': 950155, 'for such': 325970, 'such element': 816466, 'element to': 271346, 'to hide': 907726, 'face at': 294319, 'at time': 101280, 'some criminal are': 782640, 'criminal are robbing': 216822, 'are robbing grocery': 89734, 'robbing grocery store': 724687, 'store in new': 808351, 'in new york': 425835, 'new york in': 559934, 'york in manhattan': 1016625, 'in manhattan mask': 425033, 'manhattan mask are': 513138, 'mask are useful': 518403, 'are useful for': 91401, 'useful for such': 950156, 'for such element': 325971, 'such element to': 816467, 'element to hide': 271347, 'to hide the': 907730, 'hide the face': 394844, 'the face at': 854801, 'face at time': 294325, 'nearby': 553651, 'tried': 931754, 'gap': 343427, 'borisjohnson': 135508, 'live alone': 495708, 'alone do': 46841, 'have family': 380578, 'family nearby': 298065, 'nearby not': 553670, 'not old': 570743, 'old need': 598385, 'need fresh': 554886, 'fresh fruit': 332994, 'vegetable tried': 954116, 'tried my': 931795, 'for online': 324100, 'online order': 608673, 'order no': 618412, 'no gap': 564334, 'gap for': 343442, 'week tried': 977122, 'tried click': 931766, 'click and': 181883, 'and collect': 60078, 'collect no': 186303, 'week government': 976284, 'government borisjohnson': 359942, 'live alone do': 495711, 'alone do not': 46842, 'not have family': 569833, 'have family nearby': 380581, 'family nearby not': 298066, 'nearby not old': 553671, 'not old need': 570744, 'old need fresh': 598386, 'need fresh fruit': 554888, 'fresh fruit and': 332996, 'and vegetable tried': 74898, 'vegetable tried my': 954117, 'tried my local': 931796, 'local supermarket for': 498527, 'supermarket for online': 820410, 'for online order': 324109, 'online order no': 608695, 'order no gap': 618413, 'no gap for': 564335, 'gap for week': 343444, 'for week tried': 327757, 'week tried click': 977123, 'tried click and': 931767, 'click and collect': 181884, 'and collect no': 60086, 'collect no gap': 186304, 'for week government': 327711, 'week government borisjohnson': 976286, 'nhsthankyou': 562265, 'nhsheroes': 562227, 'corvid19uk': 207742, 'the nh': 861720, 'nh and': 561874, 'nh nhsthankyou': 562016, 'nhsthankyou nhsheroes': 562268, 'nhsheroes corvid19uk': 562231, 'to all the': 900292, 'all the nh': 44842, 'the nh and': 861724, 'nh and supermarket': 561883, 'and supermarket worker': 72753, 'worker nh nhsthankyou': 1007438, 'nh nhsthankyou nhsheroes': 562017, 'nhsthankyou nhsheroes corvid19uk': 562269, 'joe': 466395, 'allen': 45736, 'bayhdole': 112999, 'bayh': 112996, 'dole': 252922, 'intended': 441047, 'dwindle': 263661, 'executive director': 289880, 'of joe': 585545, 'joe allen': 466398, 'allen talk': 45745, 'talk to': 833866, 'to about': 899908, 'about bayhdole': 24852, 'bayhdole and': 113000, 'and treatment': 74432, 'treatment research': 931134, 'research he': 713752, 'he explains': 384944, 'explains that': 292222, 'that bayh': 842938, 'bayh dole': 112997, 'dole march': 252923, 'march in': 515390, 'in provision': 427058, 'provision wa': 687289, 'wa never': 962698, 'never intended': 558079, 'intended to': 441054, 'to control': 903440, 'control price': 202110, 'price funding': 674137, 'funding would': 341638, 'would dwindle': 1011780, 'dwindle if': 263664, 'if that': 414930, 'that were': 847435, 'were the': 980234, 'the case': 850455, 'executive director of': 289885, 'director of joe': 243651, 'of joe allen': 585546, 'joe allen talk': 466399, 'allen talk to': 45746, 'talk to about': 833867, 'to about bayhdole': 899909, 'about bayhdole and': 24853, 'bayhdole and treatment': 113001, 'and treatment research': 74442, 'treatment research he': 931135, 'research he explains': 713753, 'he explains that': 384945, 'explains that bayh': 292223, 'that bayh dole': 842939, 'bayh dole march': 112998, 'dole march in': 252924, 'march in provision': 515394, 'in provision wa': 427060, 'provision wa never': 687290, 'wa never intended': 962702, 'never intended to': 558080, 'intended to control': 441057, 'to control price': 903451, 'control price funding': 202114, 'price funding would': 674139, 'funding would dwindle': 341639, 'would dwindle if': 1011781, 'dwindle if that': 263665, 'if that were': 414947, 'that were the': 847448, 'were the case': 980236, 'h1n1': 369368, 'sars': 736790, 'bird': 131321, 'hateful': 378955, 'telling': 837173, 'truth': 934375, 'irresponsible': 445032, 'lied': 488401, 'h1n1 sars': 369374, 'sars bird': 736795, 'bird flu': 131334, 'flu asian': 311379, 'asian flu': 95281, 'flu all': 311373, 'all came': 42276, 'came from': 156993, 'from china': 334846, 'china covid': 176593, '19 chinese': 5797, 'chinese flu': 177259, 'flu came': 311391, 'china the': 176980, 'the whole': 871476, 'whole world': 990380, 'world need': 1009822, 'need surgical': 555698, 'mask to': 519389, 'supermarket because': 819330, 'of china': 581355, 'china calling': 176535, 'calling people': 156624, 'people ignorant': 648323, 'ignorant and': 415770, 'and hateful': 64214, 'hateful for': 378956, 'for telling': 326187, 'telling the': 837263, 'the truth': 870086, 'truth is': 934393, 'is irresponsible': 448985, 'irresponsible china': 445047, 'china lied': 176793, 'lied people': 488416, 'people died': 647655, 'h1n1 sars bird': 369375, 'sars bird flu': 736796, 'bird flu asian': 131335, 'flu asian flu': 311380, 'asian flu all': 95282, 'flu all came': 311374, 'all came from': 42277, 'came from china': 156994, 'from china covid': 334855, 'china covid 19': 176594, 'covid 19 chinese': 212796, '19 chinese flu': 5799, 'chinese flu came': 177260, 'flu came from': 311392, 'from china the': 334870, 'china the whole': 176989, 'the whole world': 871516, 'whole world need': 990385, 'world need surgical': 1009827, 'need surgical mask': 555699, 'surgical mask to': 828370, 'mask to go': 519404, 'the supermarket because': 868482, 'supermarket because of': 819335, 'because of china': 119316, 'of china calling': 581359, 'china calling people': 176536, 'calling people ignorant': 156625, 'people ignorant and': 648325, 'ignorant and hateful': 415772, 'and hateful for': 64215, 'hateful for telling': 378957, 'for telling the': 326191, 'telling the truth': 837269, 'the truth is': 870090, 'truth is irresponsible': 934395, 'is irresponsible china': 448988, 'irresponsible china lied': 445048, 'china lied people': 176795, 'lied people died': 488417, 'homeless': 402721, 'moved': 543792, 'onto': 611651, 'interview': 442201, 'the big': 849593, 'big issue': 129834, 'issue british': 455694, 'british paper': 140556, 'paper sold': 640799, 'sold by': 781649, 'by homeless': 152825, 'homeless and': 402722, 'and vulnerable': 75046, 'people ha': 648130, 'ha moved': 371300, 'moved off': 543818, 'street and': 812890, 'and onto': 68158, 'onto supermarket': 611676, 'shelf for': 757092, 'first time': 309090, 'time interview': 897041, 'the big issue': 849610, 'big issue british': 129835, 'issue british paper': 455695, 'british paper sold': 140557, 'paper sold by': 640800, 'sold by homeless': 781652, 'by homeless and': 152826, 'homeless and vulnerable': 402730, 'and vulnerable people': 75058, 'vulnerable people ha': 961093, 'people ha moved': 648134, 'ha moved off': 371301, 'moved off the': 543819, 'off the street': 594272, 'the street and': 868216, 'street and onto': 812898, 'and onto supermarket': 68159, 'onto supermarket shelf': 611678, 'supermarket shelf for': 822472, 'shelf for the': 757096, 'for the first': 326436, 'the first time': 855358, 'first time interview': 309102, 'gouging': 359227, 'harlem': 378374, 'olive': 598731, 'listed': 494607, 'chip': 177496, 'first trip': 309134, 'in two': 430354, 'week and': 975898, 'disgusted by': 245363, 'price gouging': 674249, 'gouging in': 359344, 'in harlem': 423552, 'harlem new': 378376, 'new and': 558339, 'and old': 68032, 'old olive': 598399, 'olive oil': 598739, 'price listed': 675065, 'listed and': 494610, 'and on': 68050, 'on what': 605208, 'what planet': 982033, 'planet have': 658409, 'have chocolate': 379962, 'chocolate chip': 177662, 'chip ever': 177510, 'ever been': 285213, 'been bag': 120721, 'bag complaint': 108254, 'complaint to': 192040, 'to ha': 907082, 'been made': 121506, 'first trip to': 309136, 'store in two': 808409, 'in two week': 430359, 'two week and': 937318, 'week and disgusted': 975908, 'and disgusted by': 61432, 'disgusted by the': 245365, 'by the price': 154414, 'the price gouging': 864357, 'price gouging in': 674288, 'gouging in harlem': 359345, 'in harlem new': 423553, 'harlem new and': 378377, 'new and old': 558343, 'and old olive': 68034, 'old olive oil': 598400, 'olive oil price': 598741, 'oil price listed': 597181, 'price listed and': 675066, 'listed and on': 494611, 'and on what': 68074, 'on what planet': 605236, 'what planet have': 982034, 'planet have chocolate': 658410, 'have chocolate chip': 379963, 'chocolate chip ever': 177663, 'chip ever been': 177511, 'ever been bag': 285214, 'been bag complaint': 120722, 'bag complaint to': 108255, 'complaint to ha': 192041, 'to ha been': 907083, 'ha been made': 369851, 'address': 31939, 'nation': 552088, 'committee': 189055, 'national': 552401, 'coordination': 203211, 'artificially': 94540, 'strongly': 814211, 'repress': 712969, 'address the': 32031, 'the nation': 861212, 'nation two': 552357, 'two committee': 936842, 'committee have': 189067, 'been created': 120899, 'created national': 215855, 'national coordination': 552459, 'coordination committee': 203216, 'committee economic': 189063, 'economic committee': 267015, 'committee say': 189087, 'that we': 847357, 'will ensure': 993321, 'ensure that': 278050, 'that hoarder': 844356, 'hoarder do': 399014, 'not artificially': 568249, 'artificially increase': 94547, 'increase price': 432994, 'price we': 677394, 'will strongly': 995010, 'strongly repress': 814239, 'repress hoarder': 712970, 'address the nation': 32042, 'the nation two': 861271, 'nation two committee': 552358, 'two committee have': 936843, 'committee have been': 189068, 'have been created': 379498, 'been created national': 120900, 'created national coordination': 215856, 'national coordination committee': 552460, 'coordination committee economic': 203217, 'committee economic committee': 189064, 'economic committee say': 267017, 'committee say that': 189088, 'say that we': 739257, 'that we will': 847406, 'we will ensure': 973859, 'will ensure that': 993325, 'ensure that hoarder': 278061, 'that hoarder do': 844357, 'hoarder do not': 399015, 'do not artificially': 249670, 'not artificially increase': 568250, 'artificially increase price': 94549, 'increase price we': 433014, 'price we will': 677413, 'we will strongly': 973911, 'will strongly repress': 995011, 'strongly repress hoarder': 814240, 'prospect': 684662, 'volatile': 960030, 'the long': 859674, 'term prospect': 838249, 'prospect for': 684675, 'for gold': 321919, 'gold remain': 355986, 'remain strong': 709868, 'strong price': 814092, 'price could': 673274, 'be volatile': 118023, 'volatile over': 960052, 'next month': 561448, 'while the long': 987401, 'the long term': 859684, 'long term prospect': 501706, 'term prospect for': 838250, 'prospect for gold': 684677, 'for gold remain': 321922, 'gold remain strong': 355987, 'remain strong price': 709871, 'strong price could': 814093, 'price could be': 673275, 'could be volatile': 208937, 'be volatile over': 118024, 'volatile over the': 960053, 'the next month': 861679, 'mypov': 550784, 'chatter': 173995, 'background': 107545, 'lock': 499015, 'preppers': 670394, 'last': 480082, 'wks': 1003232, 'peak': 646045, 'sarscov2': 736831, 'mypov chatter': 550787, 'chatter in': 173999, 'the background': 849158, 'background is': 107548, 'full lock': 340668, 'lock down': 499020, 'down in': 256852, 'in week': 430743, 'if this': 415147, 'is true': 453363, 'true folk': 933081, 'folk will': 312306, 'will want': 995314, 'make plan': 510331, 'plan and': 658056, 'food water': 317505, 'water thing': 969205, 'do cash': 249183, 'cash etc': 166221, 'etc preppers': 282720, 'preppers are': 670395, 'are already': 84397, 'already there': 47718, 'there but': 878261, 'could last': 209370, 'last wks': 480710, 'wks during': 1003244, 'during peak': 262916, 'peak transmission': 646107, 'transmission sarscov2': 929768, 'mypov chatter in': 550788, 'chatter in the': 174000, 'in the background': 429002, 'the background is': 849159, 'background is full': 107549, 'is full lock': 447975, 'full lock down': 340670, 'lock down in': 499036, 'down in week': 256874, 'in week if': 430753, 'week if this': 976358, 'if this is': 415158, 'this is true': 888437, 'is true folk': 453365, 'true folk will': 933082, 'folk will want': 312308, 'will want to': 995315, 'want to make': 966067, 'to make plan': 909719, 'make plan and': 510332, 'plan and stock': 658065, 'and stock up': 72419, 'on food water': 600927, 'food water thing': 317515, 'water thing to': 969206, 'to do cash': 904495, 'do cash etc': 249184, 'cash etc preppers': 166223, 'etc preppers are': 282721, 'preppers are already': 670396, 'are already there': 84428, 'already there but': 47720, 'there but this': 878262, 'but this could': 147545, 'this could last': 886927, 'could last wks': 209374, 'last wks during': 480711, 'wks during peak': 1003245, 'during peak transmission': 262917, 'peak transmission sarscov2': 646108, 'declaratory': 231176, 'ruling': 727445, 'qualifies': 691712, 'telephone': 836797, 'purpose': 690093, 'exception': 289256, 'stringent': 813801, 'consent': 194827, 'requirement': 713422, 'the recently': 865325, 'recently published': 704138, 'published declaratory': 688646, 'declaratory ruling': 231177, 'ruling that': 727454, 'that confirms': 843284, 'confirms the': 194241, 'pandemic is': 635748, 'an emergency': 55667, 'emergency that': 273014, 'that qualifies': 845920, 'qualifies for': 691713, 'the telephone': 869264, 'telephone consumer': 836808, 'protection act': 685269, 'act emergency': 29635, 'emergency purpose': 272906, 'purpose exception': 690119, 'exception to': 289286, 'to it': 908561, 'it stringent': 461318, 'stringent consent': 813802, 'consent requirement': 194831, 'the recently published': 865331, 'recently published declaratory': 704139, 'published declaratory ruling': 688647, 'declaratory ruling that': 231178, 'ruling that confirms': 727455, 'that confirms the': 843285, 'confirms the pandemic': 194242, 'the pandemic is': 863003, 'pandemic is an': 635758, 'is an emergency': 445652, 'an emergency that': 55691, 'emergency that qualifies': 273015, 'that qualifies for': 845921, 'qualifies for the': 691714, 'for the telephone': 326721, 'the telephone consumer': 869265, 'telephone consumer protection': 836809, 'consumer protection act': 198498, 'protection act emergency': 685276, 'act emergency purpose': 29636, 'emergency purpose exception': 272908, 'purpose exception to': 690120, 'exception to it': 289288, 'to it stringent': 908619, 'it stringent consent': 461319, 'stringent consent requirement': 813803, 'fixed': 309775, 'black': 132019, 'excessive': 289377, 'charge': 173178, 'incident': 431408, 'kindly': 475103, 'much needed': 545145, 'needed step': 556498, 'step the': 799632, 'ha fixed': 370629, 'fixed price': 309821, 'essential product': 281412, 'product like': 681357, 'like mask': 490719, 'prevent black': 671586, 'black marketing': 132098, 'marketing and': 517519, 'and excessive': 62455, 'excessive charge': 289384, 'charge any': 173201, 'any incident': 79348, 'incident of': 431422, 'this type': 890890, 'of overcharging': 587624, 'overcharging can': 631103, 'can be': 157571, 'be kindly': 115640, 'kindly reported': 475157, 'reported to': 712555, 'the management': 859989, 'management 19': 512522, 'much needed step': 545168, 'needed step the': 556499, 'step the government': 799634, 'the government ha': 856543, 'government ha fixed': 360153, 'ha fixed price': 370632, 'fixed price of': 309826, 'price of essential': 675445, 'of essential product': 583183, 'essential product like': 281422, 'product like mask': 681364, 'like mask sanitizer': 490724, 'mask sanitizer to': 519229, 'sanitizer to prevent': 735942, 'to prevent black': 912047, 'prevent black marketing': 671587, 'black marketing and': 132099, 'marketing and excessive': 517520, 'and excessive charge': 62456, 'excessive charge any': 289385, 'charge any incident': 173202, 'any incident of': 79349, 'incident of this': 431427, 'of this type': 592060, 'this type of': 890891, 'type of overcharging': 937571, 'of overcharging can': 587625, 'overcharging can be': 631104, 'can be kindly': 157638, 'be kindly reported': 115641, 'kindly reported to': 475158, 'reported to the': 712558, 'to the management': 916863, 'the management 19': 859990, 'ep': 279264, 'honesty': 403161, 'positivity': 665507, 'soldout': 781836, 'new podcast': 559287, 'podcast where': 662326, 'where did': 984817, 'did all': 240541, 'the toilet': 869706, 'paper go': 640211, 'go ep': 353516, 'ep the': 279277, 'better action': 128180, 'action network': 30080, 'network on': 557751, 'on distancing': 600349, 'distancing honesty': 247204, 'honesty pandemic': 403164, 'pandemic positivity': 636216, 'positivity social': 665514, 'social soldout': 779966, 'soldout toiletpaper': 781846, 'toiletpaper tp': 922744, 'new podcast where': 559294, 'podcast where did': 662327, 'where did all': 984818, 'did all the': 240542, 'all the toilet': 44945, 'the toilet paper': 869710, 'toilet paper go': 921286, 'paper go ep': 640212, 'go ep the': 353517, 'ep the better': 279278, 'the better action': 849571, 'better action network': 128181, 'action network on': 30081, 'network on distancing': 557752, 'on distancing honesty': 600351, 'distancing honesty pandemic': 247205, 'honesty pandemic positivity': 403165, 'pandemic positivity social': 636217, 'positivity social soldout': 665515, 'social soldout toiletpaper': 779967, 'soldout toiletpaper tp': 781847, 'aspect': 96208, 'spot': 790028, 'inthistogether': 442309, 'during public': 262928, 'public health': 688057, 'health crisis': 386320, 'crisis like': 217657, 'this one': 889227, 'one it': 606537, 'to look': 909430, 'look after': 502219, 'after all': 35320, 'all aspect': 42072, 'aspect of': 96214, 'your health': 1024270, 'health and': 386125, 'and safety': 70735, 'safety learn': 730608, 'learn how': 483976, 'to spot': 915036, 'spot scammer': 790107, 'scammer using': 740644, 'using to': 950761, 'get your': 348687, 'your personal': 1025259, 'personal info': 652880, 'info inthistogether': 437503, 'during public health': 262929, 'public health crisis': 688063, 'health crisis like': 386342, 'crisis like this': 217667, 'like this one': 491512, 'this one it': 889242, 'one it important': 606538, 'important to look': 419059, 'to look after': 909431, 'look after all': 502220, 'after all aspect': 35322, 'all aspect of': 42073, 'aspect of your': 96220, 'of your health': 593483, 'your health and': 1024271, 'health and safety': 386153, 'and safety learn': 70749, 'safety learn how': 730609, 'learn how to': 483993, 'how to spot': 409088, 'to spot scammer': 915041, 'spot scammer using': 790108, 'scammer using to': 740647, 'using to get': 950762, 'to get your': 906649, 'get your personal': 348723, 'your personal info': 1025263, 'personal info inthistogether': 652882, 'predict': 669547, 'church': 178329, 'suffer': 817189, 'unless': 942594, 'decide': 230831, 'virtual': 957713, 'psychiatrist': 687503, 'wanting': 966292, 'entertainment': 278546, 'predict this': 669585, 'to turn': 917840, 'turn into': 935685, 'into church': 442459, 'church will': 178414, 'will suffer': 995019, 'suffer unless': 817244, 'unless they': 942646, 'they decide': 881870, 'decide to': 230841, 'go virtual': 354461, 'virtual well': 957819, 'well we': 978734, 'do everything': 249263, 'everything online': 287950, 'online school': 608943, 'school shopping': 741917, 'shopping going': 762794, 'the psychiatrist': 864751, 'psychiatrist amp': 687504, 'amp work': 54859, 'work only': 1005553, 'only reason': 611054, 'go out': 353929, 'out is': 626433, 'working in': 1008706, 'in or': 426196, 'or wanting': 617725, 'wanting entertainment': 966293, 'entertainment or': 278593, 'or gt': 615535, 'predict this is': 669586, 'this is going': 888269, 'going to turn': 355750, 'to turn into': 917844, 'turn into church': 935687, 'into church will': 442460, 'church will suffer': 178415, 'will suffer unless': 995026, 'suffer unless they': 817245, 'unless they decide': 942648, 'they decide to': 881872, 'decide to go': 230845, 'to go virtual': 906878, 'go virtual well': 354462, 'virtual well we': 957820, 'well we can': 978735, 'can do everything': 158102, 'do everything online': 249267, 'everything online school': 287953, 'online school shopping': 608944, 'school shopping going': 741918, 'shopping going to': 762795, 'to the psychiatrist': 916990, 'the psychiatrist amp': 864752, 'psychiatrist amp work': 687505, 'amp work only': 54860, 'work only reason': 1005554, 'only reason to': 611059, 'reason to go': 703028, 'to go out': 906837, 'go out is': 353961, 'out is working': 626438, 'is working in': 454041, 'working in or': 1008725, 'in or wanting': 426205, 'or wanting entertainment': 617726, 'wanting entertainment or': 966294, 'entertainment or gt': 278594, 'or gt gt': 615536, 'dropping': 260658, 'story': 811878, 'adventure': 33084, 'writingcommnunity': 1012933, 'dropping story': 260730, 'story of': 812056, 'our covid': 622618, '19 adventure': 4815, 'adventure writingcommnunity': 33114, 'writingcommnunity pandemic': 1012938, 'dropping story of': 260731, 'story of our': 812069, 'of our covid': 587444, 'our covid 19': 622619, 'covid 19 adventure': 212584, '19 adventure writingcommnunity': 4816, 'adventure writingcommnunity pandemic': 33115, 'forward': 329962, '10am': 2277, '2pm': 16836, 'bacon': 107628, 'butter': 148121, 're now': 699134, 'now open': 575457, 'open we': 612649, 'we look': 972291, 'look forward': 502376, 'forward to': 330020, 'to seeing': 914104, 'seeing you': 746557, 'between 10am': 128665, '10am and': 2285, 'and 2pm': 57434, '2pm egg': 16839, 'egg bacon': 269790, 'bacon butter': 107629, 'butter pasta': 148158, 'pasta and': 643674, 'and meat': 66853, 'meat we': 525797, 'have it': 381137, 'all thank': 44621, 'all for': 42830, 'for your': 328112, 'your support': 1026076, 'support 19': 826317, 'we re now': 972925, 're now open': 699144, 'now open we': 575465, 'open we look': 612652, 'we look forward': 972294, 'look forward to': 502377, 'forward to seeing': 330035, 'to seeing you': 914105, 'seeing you between': 746558, 'you between 10am': 1017473, 'between 10am and': 128666, '10am and 2pm': 2286, 'and 2pm egg': 57435, '2pm egg bacon': 16840, 'egg bacon butter': 269791, 'bacon butter pasta': 107630, 'butter pasta and': 148159, 'pasta and meat': 643684, 'and meat we': 66862, 'meat we have': 525798, 'we have it': 971847, 'have it all': 381138, 'it all thank': 456376, 'all thank you': 44622, 'thank you all': 841686, 'you all for': 1016877, 'all for your': 42853, 'for your support': 328217, 'your support 19': 1026077, 'again': 36864, 'coronapandemic': 205143, 'and again': 57768, 'again have': 37014, 'why store': 991379, 'store aren': 806537, 'aren delivery': 92376, 'delivery only': 234263, 'only right': 611077, 'now we': 576332, 'we could': 971195, 'be doing': 114508, 'doing so': 252651, 'so much': 777753, 'much better': 544752, 'better than': 128513, 'than this': 841310, 'this coronapandemic': 886887, 'coronapandemic via': 205153, 'and again have': 57769, 'again have no': 37015, 'no idea why': 564474, 'idea why store': 413247, 'why store aren': 991380, 'store aren delivery': 806538, 'aren delivery only': 92377, 'delivery only right': 234265, 'only right now': 611078, 'right now we': 722175, 'now we could': 576338, 'we could be': 971198, 'could be doing': 208861, 'be doing so': 114529, 'doing so much': 252656, 'so much better': 777762, 'much better than': 544762, 'better than this': 128539, 'than this coronapandemic': 841314, 'this coronapandemic via': 886888, 'planning': 658506, 'stayinformed': 798557, 'stayconnected': 797844, 'nailba2020': 551469, 'for planning': 324571, 'planning doesn': 658537, 'doesn end': 251766, 'end with': 276078, 'with food': 998473, 'water and': 968852, 'and toilet': 74236, 'paper some': 640804, 'are also': 84434, 'also panic': 48640, 'for life': 322964, 'life insurance': 488780, 'insurance stayinformed': 440816, 'stayinformed stayconnected': 798558, 'stayconnected nailba2020': 797845, 'the panic shopping': 863219, 'panic shopping for': 638570, 'shopping for planning': 762707, 'for planning doesn': 324573, 'planning doesn end': 658538, 'doesn end with': 251769, 'end with food': 276082, 'with food water': 998516, 'food water and': 317506, 'water and toilet': 968886, 'and toilet paper': 74237, 'toilet paper some': 921460, 'paper some consumer': 640805, 'some consumer are': 782589, 'consumer are also': 196280, 'are also panic': 84471, 'also panic shopping': 48641, 'shopping for life': 762688, 'for life insurance': 322969, 'life insurance stayinformed': 488789, 'insurance stayinformed stayconnected': 440817, 'stayinformed stayconnected nailba2020': 798559, 'stopped': 805673, 'sliced': 773875, 'lunchmeat': 506760, '49': 19377, 'lb': 482761, 'bge': 129313, 'smokedturkey': 775882, 'ohiopreparedmeforthis': 596564, 'our grocery': 623302, 'store stopped': 810412, 'stopped selling': 805751, 'selling sliced': 749441, 'sliced lunchmeat': 773876, 'lunchmeat 49': 506761, '49 lb': 19393, 'lb with': 482777, 'our bge': 622201, 'bge we': 129314, 'made our': 507895, 'our own': 624195, 'own smokedturkey': 632214, 'smokedturkey ohiopreparedmeforthis': 775883, 'our grocery store': 623309, 'grocery store stopped': 365814, 'store stopped selling': 810413, 'stopped selling sliced': 805753, 'selling sliced lunchmeat': 749442, 'sliced lunchmeat 49': 773877, 'lunchmeat 49 lb': 506762, '49 lb with': 19394, 'lb with our': 482778, 'with our bge': 999976, 'our bge we': 622202, 'bge we made': 129315, 'we made our': 972322, 'made our own': 507898, 'our own smokedturkey': 624216, 'own smokedturkey ohiopreparedmeforthis': 632215, 'fridge': 333373, 'your fridge': 1023960, 'in your fridge': 431081, 'torture': 926055, 'survivor': 829383, 'fuligdi': 340461, 'terrified': 838482, 'medicine': 526706, 'living on': 496427, 'on day': 600219, 'day mother': 227990, 'mother living': 543137, 'day price': 228244, 'price rise': 676227, 'rise due': 722832, 'to aid': 900190, 'aid call': 39359, 'call torture': 156201, 'torture survivor': 926059, 'survivor fuligdi': 829392, 'fuligdi life': 340462, 'life in': 488749, 'in room': 427545, 'room in': 725920, 'in liverpool': 424805, 'liverpool house': 496246, 'house with': 406682, 'with her': 998769, 'her terrified': 392426, 'terrified two': 838511, 'two year': 937401, 'old daughter': 598208, 'daughter forced': 226842, 'to choose': 902742, 'choose between': 177877, 'between food': 128780, 'or medicine': 616114, 'living on day': 496429, 'on day mother': 600222, 'day mother living': 227991, 'mother living on': 543138, 'on day price': 600226, 'day price rise': 228246, 'price rise due': 676233, 'rise due to': 722833, 'due to aid': 261697, 'to aid call': 900191, 'aid call torture': 39360, 'call torture survivor': 156202, 'torture survivor fuligdi': 926060, 'survivor fuligdi life': 829393, 'fuligdi life in': 340463, 'life in room': 488765, 'in room in': 427546, 'room in liverpool': 725921, 'in liverpool house': 424806, 'liverpool house with': 496247, 'house with her': 406688, 'with her terrified': 998780, 'her terrified two': 392427, 'terrified two year': 838512, 'two year old': 937407, 'year old daughter': 1014822, 'old daughter forced': 598212, 'daughter forced to': 226843, 'forced to choose': 328621, 'to choose between': 902743, 'choose between food': 177878, 'between food or': 128781, 'food or medicine': 315662, 'hard to': 378047, 'to read': 912819, 'read american': 700268, 'american line': 52077, 'line up': 493518, 'up at': 944419, 'at food': 98671, 'bank farmer': 109822, 'farmer dump': 299342, 'dump milk': 262167, 'milk break': 531605, 'break egg': 138714, 'egg restaurant': 269969, 'restaurant closure': 716384, 'closure destroy': 183874, 'destroy demand': 239005, 'hard to read': 378083, 'to read american': 912822, 'read american line': 700269, 'american line up': 52078, 'line up at': 493522, 'up at food': 944429, 'at food bank': 98672, 'food bank farmer': 313566, 'bank farmer dump': 109823, 'farmer dump milk': 299343, 'dump milk break': 262170, 'milk break egg': 531606, 'break egg restaurant': 138717, 'egg restaurant closure': 269971, 'restaurant closure destroy': 716386, 'closure destroy demand': 183875, 'djia': 248821, 'mild': 531324, 'negativity': 556865, 'trader': 928640, 'process': 679869, 'crosscurrent': 219049, 'initial': 438506, 'upward': 947950, 'spike': 789256, 'surge': 828108, 'slowly': 774575, 'grappling': 362199, 'bill': 130483, 'djia slip': 248834, 'slip into': 774022, 'into mild': 442753, 'mild negativity': 531336, 'negativity again': 556866, 'again trader': 37247, 'trader process': 928751, 'process all': 679872, 'the crosscurrent': 852510, 'crosscurrent no': 219050, 'no new': 564863, 'new virus': 559835, 'virus case': 958039, 'case in': 165779, 'china initial': 176738, 'initial claim': 438518, 'claim beginning': 179704, 'beginning upward': 123686, 'upward spike': 947959, 'spike oil': 789317, 'price surge': 676717, 'surge upward': 828273, 'upward congress': 947951, 'congress slowly': 194528, 'slowly grappling': 774601, 'grappling with': 362200, 'with biggest': 997403, 'biggest response': 130309, 'response bill': 715634, 'bill etc': 130564, 'etc market': 282652, 'djia slip into': 248835, 'slip into mild': 774023, 'into mild negativity': 442754, 'mild negativity again': 531337, 'negativity again trader': 556867, 'again trader process': 37248, 'trader process all': 928752, 'process all the': 679873, 'all the crosscurrent': 44707, 'the crosscurrent no': 852511, 'crosscurrent no new': 219051, 'no new virus': 564869, 'new virus case': 559837, 'virus case in': 958040, 'case in china': 165790, 'in china initial': 421409, 'china initial claim': 176739, 'initial claim beginning': 438519, 'claim beginning upward': 179705, 'beginning upward spike': 123687, 'upward spike oil': 947960, 'spike oil price': 789318, 'oil price surge': 597281, 'price surge upward': 676728, 'surge upward congress': 828274, 'upward congress slowly': 947952, 'congress slowly grappling': 194530, 'slowly grappling with': 774602, 'grappling with biggest': 362201, 'with biggest response': 997404, 'biggest response bill': 130310, 'response bill etc': 715635, 'bill etc market': 130565, 'dont': 255184, 'panicing': 639183, 'dont know': 255239, 'know why': 477045, 'why people': 991279, 'are panicing': 88965, 'panicing buying': 639184, 'buying out': 150848, 'out everything': 626036, 'everything at': 287697, 'store restaurant': 809840, 'restaurant are': 716305, 'still going': 800584, 'be open': 116238, 'open for': 612235, 'for delivery': 320625, 'delivery they': 234624, 'they even': 882054, 'even include': 284253, 'include toilet': 431655, 'paper with': 641100, 'with your': 1002176, 'your order': 1025096, 'dont know why': 255248, 'know why people': 477054, 'why people are': 991280, 'people are panicing': 647043, 'are panicing buying': 88966, 'panicing buying out': 639185, 'buying out everything': 150851, 'out everything at': 626037, 'everything at the': 287701, 'grocery store restaurant': 365718, 'store restaurant are': 809841, 'restaurant are still': 716315, 'are still going': 90428, 'still going to': 800592, 'to be open': 901423, 'be open for': 116243, 'open for delivery': 612244, 'for delivery they': 320650, 'delivery they even': 234626, 'they even include': 882055, 'even include toilet': 284254, 'include toilet paper': 431656, 'toilet paper with': 921530, 'paper with your': 641104, 'with your order': 1002216, 'welcome': 977864, 'melanie': 527903, 'rotating': 726179, 'selection': 747512, 're most': 699044, 'most welcome': 542904, 'welcome melanie': 977883, 'melanie keep': 527906, 'an eye': 56035, 'eye out': 294091, 'out on': 626895, 'on we': 605129, 'be rotating': 116909, 'rotating the': 726180, 'the available': 849087, 'available selection': 104585, 'selection you': 747530, 'also check': 48018, 'out for': 626094, 'for update': 327463, 'update on': 947104, 'how we': 409162, 'are supporting': 90661, 'supporting our': 827164, 'our customer': 622648, 'customer during': 222315, 'you re most': 1020678, 're most welcome': 699047, 'most welcome melanie': 542905, 'welcome melanie keep': 977884, 'melanie keep an': 527907, 'keep an eye': 471316, 'an eye out': 56038, 'eye out on': 294093, 'out on we': 626925, 'on we will': 605141, 'we will be': 973835, 'will be rotating': 992658, 'be rotating the': 116910, 'rotating the available': 726181, 'the available selection': 849089, 'available selection you': 104586, 'selection you can': 747531, 'you can also': 1017618, 'can also check': 157452, 'also check out': 48019, 'check out for': 174549, 'out for update': 626168, 'for update on': 327469, 'update on how': 947118, 'on how we': 601432, 'how we are': 409165, 'we are supporting': 970729, 'are supporting our': 90665, 'supporting our customer': 827169, 'our customer during': 622657, 'customer during this': 222321, 'caf': 155080, 'operation': 613120, 'however': 409336, 'pre': 669132, 'cooked': 202807, 'considered': 195272, 'similar': 769884, 'all restaurant': 44175, 'restaurant caf': 716343, 'caf and': 155081, 'bar must': 110731, 'must close': 546585, 'close all': 182497, 'of their': 591637, 'their operation': 874114, 'operation including': 613212, 'including delivery': 431935, 'delivery however': 234101, 'however the': 409467, 'food that': 317085, 'not pre': 571075, 'pre cooked': 669150, 'cooked will': 202828, 'allowed because': 46137, 'because it': 119172, 'is considered': 446746, 'considered similar': 195323, 'similar to': 769935, 'all restaurant caf': 44176, 'restaurant caf and': 716344, 'caf and bar': 155082, 'and bar must': 58698, 'bar must close': 110732, 'must close all': 546586, 'close all aspect': 182498, 'aspect of their': 96219, 'of their operation': 591684, 'their operation including': 874119, 'operation including delivery': 613213, 'including delivery however': 431936, 'delivery however the': 234102, 'however the delivery': 409473, 'delivery of food': 234224, 'of food that': 583794, 'food that is': 317090, 'that is not': 844625, 'is not pre': 450156, 'not pre cooked': 571076, 'pre cooked will': 669151, 'cooked will be': 202829, 'will be allowed': 992352, 'be allowed because': 113561, 'allowed because it': 46138, 'because it is': 119191, 'it is considered': 458913, 'is considered similar': 446751, 'considered similar to': 195324, 'similar to supermarket': 769939, 'to supermarket delivery': 915787, 'supermarket delivery of': 819928, 'interesting': 441495, 'con': 192787, 'interesting take': 441621, 'take con': 832033, 'con consumer': 192796, 'spending the': 789000, 'pandemic economy': 635359, 'economy what': 268341, 'are shopper': 90054, 'shopper buying': 761443, 'buying online': 150818, 'online during': 608139, 'interesting take con': 441622, 'take con consumer': 832034, 'con consumer spending': 192797, 'consumer spending the': 199096, 'spending the pandemic': 789002, 'the pandemic economy': 862956, 'pandemic economy what': 635361, 'economy what are': 268342, 'what are shopper': 981065, 'are shopper buying': 90055, 'shopper buying online': 761446, 'buying online during': 150820, 'online during covid': 608141, 'shoukd': 765461, 'housearrest': 406713, 'we getting': 971639, 'getting quarantined': 349209, 'quarantined an': 692814, 'an shoukd': 56797, 'shoukd stock': 765464, 'food housearrest': 314857, 'are we getting': 91569, 'we getting quarantined': 971641, 'getting quarantined an': 349210, 'quarantined an shoukd': 692815, 'an shoukd stock': 56798, 'shoukd stock up': 765465, 'on food housearrest': 600870, 'freezer': 332574, 'cauliflower': 167480, 'walnut': 965501, 'taco': 831663, 'stock the': 802926, 'the freezer': 855780, 'freezer with': 332652, 'with easy': 998169, 'easy meal': 265734, 'meal ha': 524177, 'ha some': 371989, 'some great': 782981, 'idea including': 413090, 'including our': 432090, 'our cauliflower': 622329, 'cauliflower walnut': 167485, 'walnut taco': 965502, 'to stock the': 915454, 'stock the freezer': 802931, 'the freezer with': 855787, 'freezer with easy': 332653, 'with easy meal': 998170, 'easy meal ha': 265735, 'meal ha some': 524178, 'ha some great': 371993, 'some great idea': 782989, 'great idea including': 362730, 'idea including our': 413091, 'including our cauliflower': 432091, 'our cauliflower walnut': 622330, 'cauliflower walnut taco': 167486, 'amidst': 52770, 'accelerating': 27902, 'surrounding': 828725, 'federal': 301940, 'ftc': 339367, 'refunding': 706993, 'invention': 443626, 'promotion': 683860, 'breaking trump': 139067, 'trump ag': 933386, 'ag corruption': 36782, 'corruption amidst': 207685, 'amidst the': 52819, 'the accelerating': 848285, 'accelerating news': 27912, 'news surrounding': 560846, 'surrounding the': 828766, 'pandemic in': 635691, 'in march': 425070, 'march the': 515481, 'the federal': 855069, 'federal trade': 302076, 'trade commission': 928439, 'commission ftc': 188831, 'ftc announced': 339378, 'be refunding': 116750, 'refunding more': 706994, 'million to': 532379, 'to victim': 918162, 'victim of': 956489, 'an invention': 56441, 'invention promotion': 443631, 'promotion business': 683865, 'breaking trump ag': 139068, 'trump ag corruption': 933387, 'ag corruption amidst': 36783, 'corruption amidst the': 207686, 'amidst the accelerating': 52820, 'the accelerating news': 848286, 'accelerating news surrounding': 27913, 'news surrounding the': 560847, 'surrounding the covid': 828768, '19 pandemic in': 9360, 'pandemic in march': 635700, 'in march the': 425122, 'march the federal': 515484, 'the federal trade': 855083, 'federal trade commission': 302077, 'trade commission ftc': 928446, 'commission ftc announced': 188833, 'ftc announced that': 339379, 'announced that it': 77063, 'that it would': 844760, 'would be refunding': 1011638, 'be refunding more': 116751, 'refunding more than': 706995, 'than million to': 840895, 'million to victim': 532393, 'to victim of': 918164, 'victim of an': 956491, 'of an invention': 580122, 'an invention promotion': 56442, 'invention promotion business': 443632, 'holiday': 400256, 'friday': 333174, 'sleep': 773744, 'bath': 112593, 'supermarket work': 823969, 'work are': 1004829, 'are looking': 87880, 'looking forward': 502920, 'to holiday': 907921, 'holiday and': 400257, 'will she': 994833, 'she do': 755996, 'with having': 998741, 'having good': 384091, 'good friday': 357099, 'friday off': 333267, 'off going': 593867, 'to sleep': 914727, 'sleep going': 773772, 'sleep and': 773749, 'have long': 381363, 'long bath': 501338, 'supermarket work are': 823970, 'work are looking': 1004832, 'are looking forward': 87884, 'looking forward to': 502921, 'forward to holiday': 330028, 'to holiday and': 907922, 'holiday and what': 400261, 'and what will': 75496, 'what will she': 982607, 'will she do': 994834, 'she do with': 755998, 'do with having': 250552, 'with having good': 998743, 'having good friday': 384092, 'good friday off': 357103, 'friday off going': 333268, 'off going to': 593869, 'going to sleep': 355709, 'to sleep going': 914729, 'sleep going to': 773773, 'to sleep and': 914728, 'sleep and have': 773750, 'and have long': 64254, 'have long bath': 381364, 'estimated': 282275, 'engagement': 276885, 'longer': 501897, 'china and': 176476, 'italy week': 462962, 'after covid': 35517, '19 began': 5347, 'began to': 123442, 'spread the': 790814, 'the estimated': 854538, 'estimated increase': 282296, 'in customer': 421944, 'customer digital': 222305, 'digital engagement': 242562, 'engagement is': 276896, 'is 10': 445144, '10 20': 1244, '20 if': 13099, 'if these': 415081, 'these customer': 879844, 'have positive': 381999, 'positive experience': 665310, 'experience it': 291406, 'could shift': 209668, 'shift behavior': 758254, 'behavior for': 124037, 'the longer': 859690, 'longer term': 502064, 'in china and': 421388, 'china and italy': 176485, 'and italy week': 65625, 'italy week after': 462963, 'week after covid': 975824, 'after covid 19': 35518, 'covid 19 began': 212689, '19 began to': 5348, 'began to spread': 123447, 'to spread the': 915079, 'spread the estimated': 790823, 'the estimated increase': 854540, 'estimated increase in': 282297, 'increase in customer': 432827, 'in customer digital': 421945, 'customer digital engagement': 222306, 'digital engagement is': 242563, 'engagement is 10': 276897, 'is 10 20': 445145, '10 20 if': 1248, '20 if these': 13100, 'if these customer': 415084, 'these customer have': 879845, 'customer have positive': 222442, 'have positive experience': 382000, 'positive experience it': 665311, 'experience it could': 291407, 'it could shift': 457369, 'could shift behavior': 209669, 'shift behavior for': 758255, 'behavior for the': 124038, 'for the longer': 326539, 'the longer term': 859693, 'benzene': 127262, 'asia': 95152, 'supported': 827034, 'solid': 781901, 'clouded': 184328, 'weak': 973991, 'icis': 412741, 'intermediate': 441703, 'solvent': 782193, 'detergent': 239386, 'benzene from': 127267, 'from asia': 334595, 'asia supported': 95229, 'supported by': 827041, 'by solid': 154070, 'solid crude': 781910, 'crude prospect': 219611, 'prospect clouded': 684668, 'clouded by': 184329, 'by weak': 154704, 'weak demand': 974005, 'demand icis': 235656, 'icis asia': 412744, 'asia benzene': 95161, 'benzene crude': 127265, 'price demand': 673420, 'demand chemical': 235132, 'chemical production': 175379, 'production intermediate': 682081, 'intermediate polymer': 441706, 'polymer solvent': 663949, 'solvent detergent': 782194, 'detergent supply': 239394, 'benzene from asia': 127268, 'from asia supported': 334596, 'asia supported by': 95230, 'supported by solid': 827048, 'by solid crude': 154071, 'solid crude prospect': 781911, 'crude prospect clouded': 219612, 'prospect clouded by': 684669, 'clouded by weak': 184331, 'by weak demand': 154705, 'weak demand icis': 974008, 'demand icis asia': 235657, 'icis asia benzene': 412745, 'asia benzene crude': 95163, 'benzene crude oil': 127266, 'oil price demand': 597103, 'price demand chemical': 673422, 'demand chemical production': 235133, 'chemical production intermediate': 175380, 'production intermediate polymer': 682082, 'intermediate polymer solvent': 441707, 'polymer solvent detergent': 663950, 'solvent detergent supply': 782195, 'detergent supply chain': 239395, 'lockdowneffect': 500245, 'lockdowndiaries': 500235, 'lockdownindia': 500298, 'lockdowndelhi': 500233, 'lockedindelhi': 500513, 'been window': 122375, 'window shopping': 995711, 'shopping on': 763384, 'on online': 602515, 'grocery delivery': 364432, 'delivery site': 234499, 'site am': 771866, 'am alone': 49864, 'alone in': 46869, 'my madness': 549180, 'madness what': 508217, 'you guy': 1018948, 'guy doing': 368985, 'doing lockdown': 252516, 'lockdown lockdowneffect': 499614, 'lockdowneffect lockdown21': 500256, 'lockdown21 lockdowndiaries': 500213, 'lockdowndiaries lockdownindia': 500236, 'lockdownindia lockdowndelhi': 500299, 'lockdowndelhi lockedindelhi': 500234, 've been window': 952962, 'been window shopping': 122376, 'window shopping on': 995715, 'shopping on online': 763388, 'on online grocery': 602521, 'online grocery delivery': 608316, 'grocery delivery site': 364452, 'delivery site am': 234500, 'site am alone': 771867, 'am alone in': 49866, 'alone in my': 46871, 'in my madness': 425597, 'my madness what': 549181, 'madness what are': 508218, 'what are you': 981072, 'are you guy': 91801, 'you guy doing': 1018958, 'guy doing lockdown': 368987, 'doing lockdown lockdowneffect': 252517, 'lockdown lockdowneffect lockdown21': 499615, 'lockdowneffect lockdown21 lockdowndiaries': 500257, 'lockdown21 lockdowndiaries lockdownindia': 500214, 'lockdowndiaries lockdownindia lockdowndelhi': 500237, 'lockdownindia lockdowndelhi lockedindelhi': 500300, 'everyday': 286513, 'daunting': 226943, 'considerate': 195205, 'picking': 655846, 'stock piling': 802650, 'piling panic': 656620, 'buying are': 149953, 'are challenge': 85220, 'challenge waiting': 171588, 'waiting to': 964396, 'to show': 914549, 'up running': 945937, 'running out': 728021, 'food everyday': 314420, 'everyday necessity': 286600, 'necessity can': 554193, 'be daunting': 114337, 'daunting thought': 226944, 'thought however': 893083, 'however please': 409440, 'be considerate': 114193, 'considerate when': 195237, 'when picking': 983881, 'picking up': 655872, 'up stuff': 946088, 'stuff at': 815017, 'store try': 810961, 'try not': 934519, 'not to': 572127, 'buy 50': 148263, '50 tissue': 19886, 'tissue roll': 899205, 'roll at': 725195, 'at once': 99952, 'once unless': 605771, 'unless you': 942662, 'the run': 866073, 'stock piling panic': 802671, 'piling panic buying': 656621, 'panic buying are': 637645, 'buying are challenge': 149954, 'are challenge waiting': 85222, 'challenge waiting to': 171589, 'waiting to show': 964414, 'to show up': 914580, 'show up running': 767261, 'up running out': 945939, 'running out of': 728028, 'out of food': 626736, 'of food everyday': 583690, 'food everyday necessity': 314421, 'everyday necessity can': 286602, 'necessity can be': 554194, 'can be daunting': 157608, 'be daunting thought': 114338, 'daunting thought however': 226945, 'thought however please': 893084, 'however please be': 409441, 'please be considerate': 659698, 'be considerate when': 114199, 'considerate when picking': 195238, 'when picking up': 983882, 'picking up stuff': 655887, 'up stuff at': 946089, 'stuff at the': 815019, 'the store try': 868130, 'store try not': 810962, 'try not to': 934521, 'not to buy': 572140, 'to buy 50': 902170, 'buy 50 tissue': 148264, '50 tissue roll': 19887, 'tissue roll at': 899206, 'roll at once': 725200, 'at once unless': 99964, 'once unless you': 605772, 'unless you have': 942668, 'you have the': 1019128, 'have the run': 383022, 'sight': 769027, 'sign': 769078, 'petition': 653583, 'call for': 155847, 'better access': 128176, 'with sight': 1000729, 'sight loss': 769043, 'loss tell': 503784, 'tell your': 837161, 'your experience': 1023715, 'experience and': 291309, 'and sign': 71653, 'sign the': 769228, 'the petition': 863612, 'petition uk': 653642, 'call for better': 155854, 'for better access': 319655, 'better access to': 128177, 'access to supermarket': 28283, 'to supermarket for': 915797, 'supermarket for people': 820413, 'for people with': 324470, 'people with sight': 650472, 'with sight loss': 1000730, 'sight loss tell': 769046, 'loss tell your': 503785, 'tell your experience': 837162, 'your experience and': 1023716, 'experience and sign': 291313, 'and sign the': 71659, 'sign the petition': 769230, 'the petition uk': 863618, 'peoria': 650625, 'switching': 830557, 'example': 288859, 'ramped': 696471, 'reprogrammed': 712991, 'the help': 857258, 'help of': 390158, 'of new': 586950, 'new peoria': 559264, 'peoria distillery': 650628, 'distillery it': 247776, 'it switching': 461413, 'switching to': 830574, 'to sanitizer': 913757, 'sanitizer production': 735595, 'production it': 682093, 'just one': 469370, 'many example': 514045, 'example of': 288923, 'of company': 581602, 'company that': 191159, 'that have': 844193, 'have ramped': 382155, 'ramped up': 696472, 'up or': 945675, 'or completely': 614785, 'completely reprogrammed': 192341, 'reprogrammed production': 712996, 'production during': 682024, 'with the help': 1001330, 'the help of': 857260, 'help of new': 390161, 'of new peoria': 586979, 'new peoria distillery': 559265, 'peoria distillery it': 650630, 'distillery it switching': 247777, 'it switching to': 461415, 'switching to sanitizer': 830584, 'to sanitizer production': 913758, 'sanitizer production it': 735601, 'production it just': 682095, 'it just one': 459236, 'just one of': 469380, 'one of many': 606753, 'of many example': 586178, 'many example of': 514046, 'example of company': 288930, 'of company that': 581612, 'company that have': 191172, 'that have ramped': 844228, 'have ramped up': 382156, 'ramped up or': 696473, 'up or completely': 945677, 'or completely reprogrammed': 614786, 'completely reprogrammed production': 192342, 'reprogrammed production during': 712997, 'production during the': 682025, 'profiting': 683113, 'is online': 450519, 'online retail': 608868, 'retail profiting': 718425, 'profiting from': 683116, 'from store': 337436, 'is online retail': 450522, 'online retail profiting': 608872, 'retail profiting from': 718426, 'profiting from store': 683126, 'from store closure': 337440, 'deputy': 237782, 'potential': 667013, 'oconee': 579123, 'deputy warn': 237808, 'warn of': 966940, 'of potential': 588278, 'potential covid': 667049, '19 scam': 10331, 'scam in': 740200, 'in oconee': 426049, 'oconee co': 579124, 'deputy warn of': 237809, 'warn of potential': 966946, 'of potential covid': 588281, 'potential covid 19': 667050, 'covid 19 scam': 213747, '19 scam in': 10344, 'scam in oconee': 740203, 'in oconee co': 426050, 'licking': 488229, 'finger': 307782, 'section': 743987, 'become infected': 120037, 'infected and': 436527, 'and die': 61329, 'die by': 241307, 'by licking': 153050, 'licking finger': 488238, 'finger so': 307819, 'can open': 159142, 'open bag': 612106, 'bag in': 108318, 'the produce': 864565, 'produce section': 680428, 'section of': 744021, 'will become infected': 992796, 'become infected and': 120038, 'infected and die': 436528, 'and die by': 61330, 'die by licking': 241309, 'by licking finger': 153051, 'licking finger so': 488239, 'finger so can': 307820, 'so can open': 776720, 'can open bag': 159145, 'open bag in': 612107, 'bag in the': 108321, 'in the produce': 429480, 'the produce section': 864574, 'produce section of': 680430, 'section of the': 744029, 'decent': 230767, 'brand': 137709, 'john': 466510, 'lewis': 487831, 'debenhams': 230350, 'hmv': 398724, 'if wa': 415236, 'wa decent': 961923, 'decent brand': 230770, 'brand on': 137949, 'high street': 395427, 'street like': 813024, 'like john': 490582, 'john lewis': 466536, 'lewis debenhams': 487832, 'debenhams or': 230361, 'or hmv': 615650, 'hmv would': 398725, 'would channel': 1011713, 'channel all': 172856, 'all effort': 42659, 'effort into': 269537, 'into online': 442809, 'pandemic it': 635816, 'll pay': 496944, 'pay for': 644864, 'street shop': 813101, 'shop to': 760939, 'stay alive': 796758, 'alive focus': 41815, 'what people': 982003, 'doing right': 252632, 'if wa decent': 415237, 'wa decent brand': 961924, 'decent brand on': 230771, 'brand on the': 137952, 'on the high': 604159, 'the high street': 857324, 'high street like': 395432, 'street like john': 813025, 'like john lewis': 490584, 'john lewis debenhams': 466537, 'lewis debenhams or': 487833, 'debenhams or hmv': 230362, 'or hmv would': 615651, 'hmv would channel': 398726, 'would channel all': 1011714, 'channel all effort': 172857, 'all effort into': 42661, 'effort into online': 269538, 'into online shopping': 442811, 'online shopping during': 609105, 'shopping during this': 762544, 'during this pandemic': 263307, 'this pandemic it': 889397, 'pandemic it ll': 635829, 'it ll pay': 459429, 'll pay for': 496946, 'pay for the': 644907, 'for the high': 326475, 'high street shop': 395436, 'street shop to': 813103, 'shop to stay': 760957, 'to stay alive': 915271, 'stay alive focus': 796760, 'alive focus on': 41816, 'focus on what': 311905, 'on what people': 605235, 'what people are': 982004, 'people are doing': 646956, 'are doing right': 85923, 'doing right now': 252633, 'chandler': 171865, 'arizona': 92819, 'chandler restaurant': 171868, 'restaurant turn': 716776, 'into grocery': 442604, 'help community': 389500, 'community those': 190165, 'those at': 891819, '19 arizona': 5214, 'chandler restaurant turn': 171869, 'restaurant turn into': 716777, 'turn into grocery': 935689, 'into grocery store': 442605, 'store to help': 810776, 'to help community': 907477, 'help community those': 389501, 'community those at': 190166, 'those at risk': 891822, 'risk of covid': 723741, 'covid 19 arizona': 212650, 'helpful': 391149, 'detailed': 239281, 'pickup': 655919, 'option': 613972, 'nation grocery': 552198, 'store have': 808063, 'have created': 380154, 'created shopping': 215887, 'for senior': 325451, 'senior and': 750194, 'population check': 664666, 'the helpful': 857271, 'helpful information': 391194, 'information section': 437973, 'section on': 744031, 'our website': 625328, 'website to': 975437, 'see detailed': 745042, 'detailed list': 239296, 'list remember': 494524, 'remember online': 710240, 'and curbside': 60803, 'curbside pickup': 220643, 'pickup may': 655982, 'may also': 520914, 'also be': 47911, 'be an': 113586, 'an option': 56678, 'across the nation': 29506, 'the nation grocery': 861236, 'nation grocery store': 552199, 'grocery store have': 365454, 'store have created': 808075, 'have created shopping': 380161, 'created shopping hour': 215888, 'hour for senior': 405618, 'for senior and': 325455, 'senior and vulnerable': 750213, 'and vulnerable population': 75059, 'vulnerable population check': 961124, 'population check out': 664667, 'check out the': 174580, 'out the helpful': 627375, 'the helpful information': 857272, 'helpful information section': 391198, 'information section on': 437974, 'section on our': 744034, 'on our website': 602643, 'our website to': 625354, 'website to see': 975450, 'to see detailed': 913999, 'see detailed list': 745043, 'detailed list remember': 239297, 'list remember online': 494525, 'remember online shopping': 710241, 'online shopping and': 609029, 'shopping and curbside': 761974, 'and curbside pickup': 60805, 'curbside pickup may': 220655, 'pickup may also': 655983, 'may also be': 520915, 'also be an': 47915, 'be an option': 113616, 'equinor': 279657, 'cfo': 170324, 'equinor cfo': 279658, 'cfo on': 170337, 'on oil': 602486, 'equinor cfo on': 279659, 'cfo on oil': 170338, 'on oil price': 602494, 'jesus': 465281, 'christ': 178073, 'bat': 112535, 'god': 354641, 'batsoup': 112726, 'batburger': 112571, 'batstew': 112729, 'batmeatloaf': 112710, 'batsandwich': 112723, 'batandchips': 112566, 'deepfriedbat': 231981, 'jesus christ': 465288, 'christ my': 178078, 'is sold': 452066, 'all meat': 43482, 'meat except': 525561, 'except bat': 289131, 'bat thanks': 112557, 'thanks god': 842091, 'god got': 354721, 'got toiletpaper': 358975, 'toiletpaper canada': 921848, 'canada batsoup': 160374, 'batsoup batburger': 112727, 'batburger batstew': 112572, 'batstew batmeatloaf': 112730, 'batmeatloaf batsandwich': 112711, 'batsandwich batandchips': 112724, 'batandchips deepfriedbat': 112567, 'jesus christ my': 465290, 'christ my local': 178079, 'my local grocery': 549117, 'local grocery store': 498053, 'store is sold': 808528, 'is sold out': 452071, 'sold out of': 781742, 'out of all': 626676, 'of all meat': 579960, 'all meat except': 43484, 'meat except bat': 525562, 'except bat thanks': 289133, 'bat thanks god': 112558, 'thanks god got': 842092, 'god got toiletpaper': 354722, 'got toiletpaper canada': 358976, 'toiletpaper canada batsoup': 921849, 'canada batsoup batburger': 160375, 'batsoup batburger batstew': 112728, 'batburger batstew batmeatloaf': 112573, 'batstew batmeatloaf batsandwich': 112731, 'batmeatloaf batsandwich batandchips': 112712, 'batsandwich batandchips deepfriedbat': 112725, 'purchase': 689326, 'about panic': 25919, 'buying grocery': 150409, 'grocery week': 366120, 'week supply': 976951, 'supply should': 825842, 'be enough': 114683, 'enough there': 277676, 'no need': 564847, 'to purchase': 912514, 'purchase large': 689522, 'large quantity': 479762, 'quantity of': 691931, 'grocery the': 366028, 'chain is': 170828, 'not affected': 568073, 'by epidemic': 152500, 'about panic buying': 25921, 'panic buying grocery': 637751, 'buying grocery week': 150419, 'grocery week supply': 366122, 'week supply should': 976954, 'supply should be': 825843, 'should be enough': 765616, 'be enough there': 114689, 'enough there is': 277677, 'is no need': 449954, 'no need to': 564856, 'need to purchase': 556022, 'to purchase large': 912540, 'purchase large quantity': 689523, 'large quantity of': 479763, 'quantity of grocery': 691935, 'of grocery the': 584360, 'grocery the food': 366029, 'the food supply': 855610, 'supply chain is': 824979, 'chain is not': 170841, 'is not affected': 450029, 'not affected by': 568074, 'affected by epidemic': 34313, '3rd': 18416, 'largest': 479913, 'position': 665148, 'hammered': 374576, 'saudia': 737319, 'arabia': 83844, 'plu': 661207, 'the 3rd': 848109, '3rd largest': 18431, 'largest industry': 479969, 'industry in': 435899, 'country it': 210828, 'is in': 448748, 'in unique': 430435, 'unique position': 941994, 'position because': 665160, 'because not': 119282, 'only is': 610655, 'it getting': 458226, 'getting hammered': 349017, 'hammered by': 374577, '19 there': 11283, 'the russia': 866089, 'russia saudia': 728561, 'saudia arabia': 737320, 'arabia issue': 83899, 'issue which': 456003, 'caused oil': 167923, 'to plu': 911825, 'it the heart': 461544, 'heart of the': 388320, 'of the 3rd': 590770, 'the 3rd largest': 848111, '3rd largest industry': 18432, 'largest industry in': 479970, 'industry in the': 435905, 'the country it': 852104, 'country it is': 210832, 'it is in': 458984, 'is in unique': 448826, 'in unique position': 430437, 'unique position because': 941995, 'position because not': 665161, 'because not only': 119285, 'not only is': 570806, 'only is it': 610658, 'is it getting': 449024, 'it getting hammered': 458228, 'getting hammered by': 349018, 'hammered by covid': 374578, 'covid 19 there': 213935, '19 there is': 11286, 'there is the': 878640, 'is the russia': 452929, 'the russia saudia': 866091, 'russia saudia arabia': 728562, 'saudia arabia issue': 737321, 'arabia issue which': 83900, 'issue which ha': 456004, 'which ha caused': 985878, 'ha caused oil': 370091, 'caused oil price': 167924, 'oil price to': 597293, 'price to plu': 677023, 'christmas': 178148, 'turned': 935825, 'lay': 482588, 'definately': 232265, 'imo': 417498, 'day day': 227502, 'day no': 228018, 'paper in': 640312, 'shop or': 760609, 'or flour': 615329, 'flour or': 311143, 'or egg': 615117, 'egg again': 269749, 'again supermarket': 37190, 'supermarket like': 821309, 'like christmas': 490000, 'christmas turned': 178209, 'turned round': 935876, 'round and': 726313, 'and came': 59439, 'back home': 107052, 'home far': 401185, 'far too': 298952, 'too crowded': 924679, 'crowded and': 219291, 'and why': 75619, 'why have': 991051, 'have people': 381905, 'people all': 646800, 'all got': 42985, 'got the': 358894, 'biggest cart': 130190, 'cart they': 165391, 'can lay': 158840, 'lay their': 482609, 'hand on': 375130, 'on people': 602730, 'are definately': 85727, 'definately still': 232266, 'still hoarding': 800710, 'hoarding imo': 399380, 'another day day': 77565, 'day day no': 227503, 'day no toilet': 228023, 'toilet paper in': 921317, 'paper in the': 640332, 'in the shop': 429545, 'the shop or': 867019, 'shop or flour': 760614, 'or flour or': 615330, 'flour or egg': 311144, 'or egg again': 615118, 'egg again supermarket': 269750, 'again supermarket like': 37191, 'supermarket like christmas': 821313, 'like christmas turned': 490006, 'christmas turned round': 178210, 'turned round and': 935877, 'round and came': 726314, 'and came back': 59440, 'came back home': 156979, 'back home far': 107057, 'home far too': 401186, 'far too crowded': 298954, 'too crowded and': 924680, 'crowded and why': 219293, 'and why have': 75625, 'why have people': 991053, 'have people all': 381907, 'people all got': 646802, 'all got the': 42989, 'got the biggest': 358896, 'the biggest cart': 849643, 'biggest cart they': 130191, 'cart they can': 165392, 'they can lay': 881649, 'can lay their': 158841, 'lay their hand': 482610, 'their hand on': 873482, 'hand on people': 375141, 'on people are': 602735, 'people are definately': 646953, 'are definately still': 85728, 'definately still hoarding': 232267, 'still hoarding imo': 800713, 'argument': 92744, 'contaminated': 200647, 'remove': 710803, 'smoke': 775856, 'eith': 270245, 'mask most': 518982, 'most of': 542537, 'the argument': 848889, 'argument against': 92748, 'against mask': 37545, 'mask do': 518581, 'not stand': 571687, 'stand up': 793601, 'up yes': 946717, 'yes the': 1015548, 'the outside': 862748, 'outside might': 629486, 'be contaminated': 114218, 'contaminated but': 200652, 'but without': 147905, 'without mask': 1002768, 'mask it': 518876, 'it your': 462655, 'your face': 1023739, 'face that': 294788, 'contaminated yes': 200680, 'yes you': 1015621, 'not remove': 571303, 'remove the': 710838, 'the mask': 860209, 'to smoke': 914775, 'smoke or': 775868, 'or eat': 615107, 'eat why': 266112, 'you doing': 1018291, 'doing eith': 252369, 'mask most of': 518983, 'most of the': 542561, 'of the argument': 590799, 'the argument against': 848890, 'argument against mask': 92749, 'against mask do': 37546, 'mask do not': 518583, 'do not stand': 249852, 'not stand up': 571688, 'stand up yes': 793606, 'up yes the': 946718, 'yes the outside': 1015554, 'the outside might': 862749, 'outside might be': 629487, 'might be contaminated': 530884, 'be contaminated but': 114219, 'contaminated but without': 200653, 'but without mask': 147909, 'without mask it': 1002773, 'mask it your': 518883, 'it your face': 462657, 'your face that': 1023759, 'face that will': 294789, 'that will be': 847557, 'will be contaminated': 992407, 'be contaminated yes': 114222, 'contaminated yes you': 200681, 'yes you should': 1015624, 'should not remove': 766260, 'not remove the': 571304, 'remove the mask': 710841, 'the mask to': 860229, 'mask to smoke': 519425, 'to smoke or': 914778, 'smoke or eat': 775869, 'or eat why': 615108, 'eat why are': 266113, 'why are you': 990798, 'are you doing': 91782, 'you doing eith': 1018296, 'individual': 435124, 'organization': 619330, 'denver': 237113, 'rescue': 713604, 'consider helping': 195017, 'helping the': 391484, 'the growing': 856875, 'growing number': 367220, 'of family': 583400, 'family and': 297579, 'and individual': 65156, 'individual seriously': 435250, 'seriously impacted': 751643, '19 by': 5551, 'by donating': 152398, 'donating to': 254516, 'to organization': 911098, 'organization working': 619450, 'working to': 1008978, 'meet this': 527627, 'this increased': 888082, 'for support': 326064, 'support like': 826611, 'like denver': 490108, 'denver food': 237116, 'food rescue': 316176, 'consider helping the': 195019, 'helping the growing': 391493, 'the growing number': 856883, 'growing number of': 367221, 'number of family': 576941, 'of family and': 583401, 'family and individual': 297591, 'and individual seriously': 65165, 'individual seriously impacted': 435251, 'seriously impacted by': 751644, 'covid 19 by': 212747, '19 by donating': 5556, 'by donating to': 152408, 'donating to organization': 254524, 'to organization working': 911100, 'organization working to': 619451, 'working to meet': 1008994, 'to meet this': 910059, 'meet this increased': 527629, 'this increased demand': 888083, 'increased demand for': 433272, 'demand for support': 235501, 'for support like': 326066, 'support like denver': 826612, 'like denver food': 490109, 'denver food rescue': 237117, 'rosengren': 726111, 'impacting': 418174, 'rosengren see': 726112, 'see impacting': 745290, 'impacting cre': 418205, 'cre office': 215508, 'office price': 595518, 'rosengren see impacting': 726114, 'see impacting cre': 745291, 'impacting cre office': 418206, 'cre office price': 215509, 'office price and': 595519, 'price and demand': 672392, 'lane': 479432, 'notanymore': 572661, 'kroger': 477714, 'hire': 396969, 'so grocery': 777212, 'employee were': 274401, 'were about': 979268, 'job due': 465804, 'the self': 866648, 'self check': 747570, 'out lane': 626481, 'lane notanymore': 479462, 'notanymore kroger': 572662, 'kroger want': 477780, 'to hire': 907784, 'hire 10': 396972, '10 00': 1186, '00 more': 340, 'more employee': 539123, 'so grocery store': 777213, 'store employee were': 807571, 'employee were about': 274402, 'were about to': 979271, 'about to be': 26706, 'of job due': 585531, 'job due to': 465805, 'due to all': 261698, 'all the self': 44902, 'the self check': 866650, 'self check out': 747572, 'check out lane': 174556, 'out lane notanymore': 626482, 'lane notanymore kroger': 479463, 'notanymore kroger want': 572663, 'kroger want to': 477781, 'want to hire': 966049, 'to hire 10': 907786, 'hire 10 00': 396973, '10 00 more': 1204, '00 more employee': 341, 'toiletpaperpanic': 923195, 'econtwitter': 268389, 'economics': 267429, 'economicresponse': 267428, 'keep talking': 472009, 'about pricegouging': 25999, 'pricegouging like': 677822, 'like it': 490519, 'it bad': 456684, 'bad thing': 108039, 'thing but': 884204, 'if store': 414877, 'store had': 808035, 'had doubled': 373047, 'doubled the': 256143, 'toiletpaper early': 921936, 'early on': 264663, 'on no': 602415, 'no one': 564912, 'one would': 607509, 'be hoarding': 115274, 'hoarding it': 399398, 'it toiletpaperpanic': 461782, 'toiletpaperpanic sundaythoughts': 923252, 'sundaythoughts econtwitter': 818336, 'econtwitter economy': 268390, 'economy economics': 267827, 'economics economicresponse': 267446, 'people keep talking': 648579, 'keep talking about': 472010, 'talking about pricegouging': 833982, 'about pricegouging like': 26000, 'pricegouging like it': 677823, 'like it bad': 490523, 'it bad thing': 456691, 'bad thing but': 108040, 'thing but if': 884207, 'but if store': 145996, 'if store had': 414883, 'store had doubled': 808040, 'had doubled the': 373048, 'doubled the price': 256145, 'of toiletpaper early': 592261, 'toiletpaper early on': 921937, 'early on no': 264666, 'on no one': 602418, 'no one would': 564987, 'one would be': 607510, 'would be hoarding': 1011601, 'be hoarding it': 115276, 'hoarding it toiletpaperpanic': 399401, 'it toiletpaperpanic sundaythoughts': 461783, 'toiletpaperpanic sundaythoughts econtwitter': 923253, 'sundaythoughts econtwitter economy': 818337, 'econtwitter economy economics': 268391, 'economy economics economicresponse': 267828, 'televangelist': 836840, 'jim': 465489, 'bakker': 108943, 'effective': 269201, 'demanding': 236566, 'prove': 686097, 'another coronavirus': 77549, 'coronavirus consumer': 205674, 'alert silver': 41501, 'silver solution': 769862, 'solution which': 782130, 'which televangelist': 986369, 'televangelist jim': 836843, 'jim bakker': 465490, 'bakker claim': 108944, 'claim is': 179750, 'an effective': 55612, 'effective treatment': 269318, 'treatment for': 931071, 'for coronavirus': 320373, 'coronavirus we': 207048, 're demanding': 698514, 'demanding he': 236591, 'he prove': 385314, 'prove it': 686107, 'another coronavirus consumer': 77550, 'coronavirus consumer alert': 205676, 'consumer alert silver': 196155, 'alert silver solution': 41502, 'silver solution which': 769863, 'solution which televangelist': 782131, 'which televangelist jim': 986370, 'televangelist jim bakker': 836844, 'jim bakker claim': 465491, 'bakker claim is': 108945, 'claim is an': 179751, 'is an effective': 445649, 'an effective treatment': 55616, 'effective treatment for': 269319, 'treatment for coronavirus': 931073, 'for coronavirus we': 320399, 'coronavirus we re': 207053, 'we re demanding': 972854, 're demanding he': 698515, 'demanding he prove': 236592, 'he prove it': 385315, 'posted': 666508, 'locally': 498748, 'home coronavirus': 400948, 'testing kit': 839528, 'kit are': 475493, 'for sale': 325310, 'sale and': 732033, 'and being': 58857, 'being posted': 125560, 'posted online': 666561, 'online locally': 608501, 'locally but': 498751, 'but there': 147459, 'are some': 90254, 'some thing': 784037, 'home coronavirus covid': 400950, '19 testing kit': 11103, 'testing kit are': 839530, 'kit are for': 475496, 'are for sale': 86647, 'for sale and': 325311, 'sale and being': 732035, 'and being posted': 58867, 'being posted online': 125562, 'posted online locally': 666563, 'online locally but': 608503, 'locally but there': 498752, 'but there are': 147462, 'there are some': 878164, 'are some thing': 90291, 'some thing you': 784046, 'thing you need': 885037, 'afraid': 34966, 'afraidinslee': 35035, 'promotes': 683821, 'calming': 156846, 'hysteria': 412426, 'fakenews': 296756, 'inslee': 439726, 'multiplies': 545823, 'encourages': 275686, 'awakening': 105566, 'qanon': 691462, 'be afraid': 113523, 'afraid be': 34972, 'be very': 117964, 'very afraidinslee': 954984, 'afraidinslee promotes': 35036, 'promotes apocalypse': 683822, 'apocalypse instead': 81542, 'of calming': 581060, 'calming hysteria': 156849, 'hysteria fakenews': 412444, 'fakenews inslee': 296762, 'inslee multiplies': 439731, 'multiplies panic': 545826, 'panic encourages': 638064, 'encourages staying': 275701, 'staying home': 798598, 'home or': 401732, 'or criminal': 614856, 'criminal charge': 216825, 'charge come': 173212, 'come next': 187418, 'next the': 561579, 'only place': 610976, 'place you': 657853, 'can get': 158396, 'get now': 347677, 'is at': 445842, 'store awakening': 806620, 'awakening qanon': 105569, 'be afraid be': 113524, 'afraid be very': 34973, 'be very afraidinslee': 117967, 'very afraidinslee promotes': 954985, 'afraidinslee promotes apocalypse': 35037, 'promotes apocalypse instead': 683823, 'apocalypse instead of': 81543, 'instead of calming': 440243, 'of calming hysteria': 581061, 'calming hysteria fakenews': 156850, 'hysteria fakenews inslee': 412445, 'fakenews inslee multiplies': 296764, 'inslee multiplies panic': 439732, 'multiplies panic encourages': 545827, 'panic encourages staying': 638065, 'encourages staying home': 275702, 'staying home or': 798618, 'home or criminal': 401737, 'or criminal charge': 614857, 'criminal charge come': 216827, 'charge come next': 173213, 'come next the': 187420, 'next the only': 561580, 'the only place': 862331, 'only place you': 610990, 'place you can': 657855, 'you can get': 1017682, 'can get now': 158434, 'get now is': 347678, 'now is at': 575062, 'is at the': 445876, 'grocery store awakening': 365228, 'store awakening qanon': 806621, 'mall': 511728, 'grab': 361455, 'refused': 707050, 'to visit': 918204, 'visit supermarket': 959368, 'or mall': 616049, 'mall to': 511845, 'to grab': 906955, 'grab essential': 361477, 'essential in': 281149, 'in singapore': 427969, 'singapore from': 771124, 'from tomorrow': 338091, 'tomorrow you': 924253, 'll need': 496906, 'mask or': 519067, 'or you': 617855, 'll be': 496563, 'be refused': 116752, 'refused entry': 707055, 'need to visit': 556111, 'to visit supermarket': 918213, 'visit supermarket or': 959372, 'supermarket or mall': 821819, 'or mall to': 616052, 'mall to grab': 511846, 'to grab essential': 906960, 'grab essential in': 361479, 'essential in singapore': 281156, 'in singapore from': 427970, 'singapore from tomorrow': 771125, 'from tomorrow you': 338101, 'tomorrow you ll': 924254, 'you ll need': 1019663, 'll need to': 496912, 'wear mask or': 974398, 'mask or you': 519081, 'or you ll': 617862, 'you ll be': 1019642, 'll be refused': 496617, 'be refused entry': 116753, 'shower': 767358, 'saferathome': 730401, 'bidet': 129545, 'ever have': 285342, 'day in': 227786, 'quarantine jump': 692321, 'the shower': 867115, 'shower saferathome': 767385, 'saferathome quarantine': 730410, 'quarantine pandemic': 692421, 'pandemic hoarding': 635648, 'hoarding costco': 399258, 'costco toiletpaper': 208276, 'toiletpaper toiletpapercrisis': 922648, 'toiletpapercrisis bidet': 923010, 'ever have one': 285343, 'have one of': 381794, 'of these day': 591822, 'these day in': 879878, 'day in quarantine': 227807, 'in quarantine jump': 427184, 'quarantine jump in': 692322, 'jump in the': 467869, 'in the shower': 429548, 'the shower saferathome': 867117, 'shower saferathome quarantine': 767386, 'saferathome quarantine pandemic': 730411, 'quarantine pandemic hoarding': 692422, 'pandemic hoarding costco': 635649, 'hoarding costco toiletpaper': 399259, 'costco toiletpaper toiletpapercrisis': 208279, 'toiletpaper toiletpapercrisis bidet': 922651, 'coping': 203367, 'gym': 369294, 'meditation': 526952, 'class': 180130, 'accounting': 28820, 'paulraftery': 644571, 'projectsrh': 683588, 'multinationalinvestment': 545716, 'soveringrisk': 786952, 'insurablerisk': 440656, 'financialreporting': 306712, 'creditrating': 216584, 'are coping': 85564, 'coping work': 203407, 'work gym': 1005224, 'gym meditation': 369329, 'meditation class': 526955, 'class church': 180166, 'church gp': 178368, 'gp accounting': 361396, 'accounting and': 28823, 'and shopping': 71534, 'shopping all': 761918, 'all online': 43746, 'online covid': 608068, 'won win': 1003933, 'win paulraftery': 995569, 'paulraftery projectsrh': 644572, 'projectsrh multinationalinvestment': 683589, 'multinationalinvestment soveringrisk': 545717, 'soveringrisk insurablerisk': 786953, 'insurablerisk financialreporting': 440657, 'financialreporting creditrating': 306713, 'creditrating economics': 216585, 'economics law': 267459, 'we are coping': 970515, 'are coping work': 85569, 'coping work gym': 203408, 'work gym meditation': 1005225, 'gym meditation class': 369330, 'meditation class church': 526956, 'class church gp': 180167, 'church gp accounting': 178369, 'gp accounting and': 361397, 'accounting and shopping': 28824, 'and shopping all': 71535, 'shopping all online': 761920, 'all online covid': 43747, 'online covid 19': 608069, '19 won win': 12165, 'won win paulraftery': 1003934, 'win paulraftery projectsrh': 995570, 'paulraftery projectsrh multinationalinvestment': 644573, 'projectsrh multinationalinvestment soveringrisk': 683590, 'multinationalinvestment soveringrisk insurablerisk': 545718, 'soveringrisk insurablerisk financialreporting': 786954, 'insurablerisk financialreporting creditrating': 440658, 'financialreporting creditrating economics': 306714, 'creditrating economics law': 216586, 'seek': 746562, 'assistant': 96769, 'say you': 739512, 'should seek': 766442, 'seek help': 746585, 'help in': 389890, 'time like': 897135, 'like these': 491426, 'these and': 879597, 'the assistant': 848984, 'they say you': 883283, 'say you should': 739520, 'you should seek': 1021219, 'should seek help': 766443, 'seek help in': 746586, 'help in time': 389913, 'in time like': 430084, 'time like these': 897137, 'like these and': 491427, 'these and are': 879598, 'and are the': 58368, 'are the assistant': 90797, 'outrage': 629306, 'describing': 237970, 'boomer': 134837, 'remover': 710885, 'unjustified': 942488, 'ordinary': 619082, 'the outrage': 862745, 'outrage over': 629309, 'over describing': 630147, 'describing covid': 237975, 'coronavirus boomer': 205564, 'boomer remover': 134855, 'remover is': 710890, 'is unjustified': 453514, 'unjustified when': 942495, 'you hear': 1019177, 'about store': 26269, 'store assistant': 806555, 'assistant in': 96785, 'in local': 424815, 'supermarket having': 820718, 'tell an': 836907, 'old couple': 598196, 'couple to': 211691, 'put back': 690523, 'back the': 107301, 'the baby': 849130, 'baby milk': 106658, 'milk they': 531855, 'they were': 883746, 'were buying': 979408, 'buying for': 150349, 'for themselves': 326936, 'themselves because': 876776, 'they could': 881814, 'could not': 209429, 'not find': 569416, 'find any': 306783, 'any ordinary': 79579, 'ordinary milk': 619090, 'the outrage over': 862746, 'outrage over describing': 629310, 'over describing covid': 630148, 'describing covid 19': 237976, '19 coronavirus boomer': 6093, 'coronavirus boomer remover': 205565, 'boomer remover is': 134856, 'remover is unjustified': 710892, 'is unjustified when': 453516, 'unjustified when you': 942496, 'when you hear': 984569, 'you hear about': 1019178, 'hear about store': 387872, 'about store assistant': 26270, 'store assistant in': 806556, 'assistant in local': 96786, 'in local supermarket': 424827, 'local supermarket having': 498534, 'supermarket having to': 820719, 'having to tell': 384369, 'to tell an': 916334, 'tell an old': 836908, 'an old couple': 56585, 'old couple to': 598198, 'couple to put': 211692, 'to put back': 912581, 'put back the': 690528, 'back the baby': 107303, 'the baby milk': 849136, 'baby milk they': 106668, 'milk they were': 531857, 'they were buying': 883757, 'were buying for': 979410, 'buying for themselves': 150361, 'for themselves because': 326939, 'themselves because they': 876777, 'because they could': 119695, 'they could not': 881833, 'could not find': 209442, 'not find any': 569417, 'find any ordinary': 306800, 'any ordinary milk': 79580, 'passenger': 643314, 'immigration': 417252, 'custom': 221971, 'traveler': 930613, 'screening': 742753, 'protocol': 685970, 'passenger stuck': 643349, 'stuck in': 814590, 'in long': 424909, 'long line': 501490, 'line for': 493094, 'for immigration': 322480, 'immigration at': 417253, 'at tell': 100835, 'tell there': 837110, 'no offer': 564902, 'offer of': 594712, 'sanitizer glove': 734985, 'or mask': 616068, 'mask from': 518698, 'from custom': 335074, 'custom immigration': 221985, 'immigration traveler': 417264, 'traveler say': 930623, 've had': 953214, 'had no': 373326, 'no screening': 565439, 'screening of': 742768, 'of temp': 590654, 'temp yet': 837343, 'yet and': 1015983, 'one following': 606298, 'following protocol': 312826, 'passenger stuck in': 643350, 'stuck in long': 814596, 'in long line': 424911, 'long line for': 501496, 'line for immigration': 493107, 'for immigration at': 322481, 'immigration at tell': 417254, 'at tell there': 100836, 'tell there are': 837111, 'are no offer': 88271, 'no offer of': 564903, 'offer of hand': 594714, 'hand sanitizer glove': 375420, 'sanitizer glove or': 734992, 'glove or mask': 352840, 'or mask from': 616069, 'mask from custom': 518701, 'from custom immigration': 335075, 'custom immigration traveler': 221986, 'immigration traveler say': 417265, 'traveler say they': 930624, 'they ve had': 883656, 've had no': 953230, 'had no screening': 373337, 'no screening of': 565440, 'screening of temp': 742769, 'of temp yet': 590655, 'temp yet and': 837344, 'yet and no': 1015986, 'and no one': 67628, 'no one following': 564932, 'one following protocol': 606299, 'literacy': 494937, '2u': 16871, 'iplayer': 444598, 'tool': 925385, 'teach': 835386, 'is digital': 447176, 'digital literacy': 242592, 'literacy movement': 494940, 'movement going': 543875, 'on right': 603193, 'now and': 574023, 'all student': 44516, 'student we': 814800, 'we support': 973450, 'support the': 826859, 'the vulnerable': 870973, 'vulnerable in': 961011, 'in using': 430507, 'using pharmacy': 950600, 'pharmacy 2u': 654196, '2u online': 16872, 'shopping video': 764319, 'video calling': 956660, 'calling iplayer': 156579, 'iplayer and': 444601, 'other online': 620609, 'online tool': 609615, 'tool it': 925424, 'be challenge': 114044, 'challenge to': 171574, 'to teach': 916309, 'teach but': 835387, 'but could': 145464, 'could save': 209619, 'save some': 737638, 'some life': 783192, 'life 19': 488434, 'there is digital': 878547, 'is digital literacy': 447177, 'digital literacy movement': 242593, 'literacy movement going': 494941, 'movement going on': 543876, 'going on right': 355333, 'on right now': 603195, 'right now and': 722022, 'now and we': 574067, 'and we are': 75280, 'we are all': 970471, 'are all student': 84356, 'all student we': 44522, 'student we support': 814802, 'we support the': 973456, 'support the vulnerable': 826890, 'the vulnerable in': 870985, 'vulnerable in using': 961019, 'in using pharmacy': 430508, 'using pharmacy 2u': 950601, 'pharmacy 2u online': 654197, '2u online shopping': 16873, 'online shopping video': 609331, 'shopping video calling': 764321, 'video calling iplayer': 956661, 'calling iplayer and': 156580, 'iplayer and other': 444602, 'and other online': 68373, 'other online tool': 620612, 'online tool it': 609616, 'tool it will': 925425, 'it will be': 462374, 'will be challenge': 992392, 'be challenge to': 114046, 'challenge to teach': 171580, 'to teach but': 916310, 'teach but could': 835388, 'but could save': 145470, 'could save some': 209620, 'save some life': 737640, 'some life 19': 783193, 'wonderful': 1004063, 'friendly': 333935, 'shelve': 758035, 'praised': 668878, 'note': 572687, 'just what': 470282, 'say what': 739466, 'what wonderful': 982620, 'wonderful job': 1004090, 'job is': 465896, 'is doing': 447260, 'doing in': 252467, 'staff are': 792174, 'are so': 90189, 'so helpful': 777289, 'helpful and': 391155, 'and friendly': 63337, 'friendly they': 334013, 'are busy': 85094, 'busy filling': 144902, 'filling shelf': 305612, 'shelf checking': 756934, 'checking out': 174836, 'back for': 106987, 'for thing': 326991, 'thing if': 884420, 'if not': 414483, 'not the': 571979, 'the shelve': 866918, 'shelve hope': 758036, 'hope your': 403817, 'your staff': 1025900, 'are get': 86788, 'get praised': 347832, 'praised for': 668883, 'their affect': 872479, 'affect other': 34200, 'other supermarket': 621012, 'supermarket take': 823123, 'take note': 832368, 'just what to': 470288, 'what to say': 982462, 'to say what': 913852, 'say what wonderful': 739474, 'what wonderful job': 982621, 'wonderful job is': 1004091, 'job is doing': 465901, 'is doing in': 447279, 'doing in the': 252469, 'in the the': 429600, 'the the staff': 869400, 'the staff are': 867682, 'staff are so': 792206, 'are so helpful': 90203, 'so helpful and': 777290, 'helpful and friendly': 391156, 'and friendly they': 63341, 'friendly they are': 334014, 'they are busy': 881218, 'are busy filling': 85098, 'busy filling shelf': 144903, 'filling shelf checking': 305614, 'shelf checking out': 756935, 'checking out the': 174842, 'out the back': 627350, 'the back for': 849147, 'back for thing': 106996, 'for thing if': 326994, 'thing if not': 884421, 'if not the': 414511, 'not the shelve': 572029, 'the shelve hope': 866919, 'shelve hope your': 758037, 'hope your staff': 403822, 'your staff are': 1025903, 'staff are get': 792189, 'are get praised': 86789, 'get praised for': 347833, 'praised for their': 668886, 'for their affect': 326798, 'their affect other': 872480, 'affect other supermarket': 34201, 'other supermarket take': 621025, 'supermarket take note': 823126, 'newark': 560010, 'nj': 563404, 'necessary': 553939, 'newjersey': 560079, 'coronacommunity': 204486, 'elderly shopper': 270876, 'shopper in': 761554, 'the newark': 861589, 'newark nj': 560011, 'nj area': 563409, 'area are': 91947, 'are getting': 86790, 'getting senior': 349256, 'only shopping': 611122, 'on necessary': 602352, 'necessary food': 553984, 'supply newjersey': 825587, 'newjersey coronacommunity': 560082, 'elderly shopper in': 270878, 'shopper in the': 761567, 'in the newark': 429393, 'the newark nj': 861590, 'newark nj area': 560012, 'nj area are': 563410, 'area are getting': 91950, 'are getting senior': 86819, 'getting senior only': 349257, 'senior only shopping': 750375, 'only shopping hour': 611125, 'shopping hour to': 762930, 'hour to stock': 406037, 'up on necessary': 945595, 'on necessary food': 602354, 'necessary food and': 553985, 'and supply newjersey': 72803, 'supply newjersey coronacommunity': 825588, 'hustler': 411837, 'scames': 740502, 'encourage': 275567, 'snake': 776056, 'falsely': 297465, 'touting': 927080, 'file': 305326, 'warning against': 967076, 'against hustler': 37502, 'hustler scames': 411840, 'scames during': 740503, 'pandemic encourage': 635376, 'encourage anyone': 275572, 'anyone who': 80610, 'been the': 122158, 'the victim': 870729, 'of snake': 589793, 'snake oil': 776059, 'oil scam': 597416, 'scam or': 740277, 'or those': 617435, 'those falsely': 891989, 'falsely touting': 297480, 'touting treatment': 927083, 'treatment test': 931147, 'test or': 839115, 'cure to': 220830, 'immediately file': 417091, 'file complaint': 305329, 'complaint through': 192038, 'through my': 894578, 'my office': 549545, 'office website': 595584, 'website at': 975213, 'warning against hustler': 967078, 'against hustler scames': 37503, 'hustler scames during': 411841, 'scames during covid': 740504, '19 pandemic encourage': 9317, 'pandemic encourage anyone': 635377, 'encourage anyone who': 275573, 'anyone who ha': 80619, 'who ha been': 988832, 'ha been the': 369952, 'been the victim': 122173, 'the victim of': 870731, 'victim of snake': 956501, 'of snake oil': 589794, 'snake oil scam': 776060, 'oil scam or': 597418, 'scam or those': 740282, 'or those falsely': 617437, 'those falsely touting': 891990, 'falsely touting treatment': 297481, 'touting treatment test': 927084, 'treatment test or': 931149, 'test or cure': 839116, 'or cure to': 614873, 'cure to immediately': 220834, 'to immediately file': 908138, 'immediately file complaint': 417092, 'file complaint through': 305336, 'complaint through my': 192039, 'through my office': 894582, 'my office website': 549550, 'office website at': 595585, 'saudiarabia': 737322, 'hike': 396187, 'sha': 754312, 'riyadh': 724213, 'pandaapp': 634721, 'pakistanunitedagainstcorona': 634536, 'fighting over': 305103, 'over toilet': 630848, 'supply saudiarabia': 825804, 'saudiarabia ha': 737338, 'increased their': 433497, 'their stock': 874829, 'stock at': 801869, 'market without': 517385, 'without any': 1002492, 'any price': 79679, 'price hike': 674523, 'hike there': 396284, 'there will': 879359, 'no panic': 565037, 'no shortage': 565488, 'shortage of': 765094, 'of anything': 580287, 'anything in': 80789, 'in sha': 427847, 'sha allah': 754313, 'allah riyadh': 45605, 'riyadh pandaapp': 724224, 'pandaapp pakistanunitedagainstcorona': 634722, 'while the world': 987424, 'world is fighting': 1009697, 'is fighting over': 447793, 'fighting over toilet': 305111, 'over toilet paper': 630849, 'and food supply': 63097, 'food supply saudiarabia': 316989, 'supply saudiarabia ha': 825805, 'saudiarabia ha increased': 737339, 'ha increased their': 370958, 'increased their stock': 433504, 'their stock at': 874830, 'stock at the': 801888, 'at the market': 101016, 'the market without': 860180, 'market without any': 517386, 'without any price': 1002497, 'any price hike': 79682, 'price hike there': 674537, 'hike there will': 396285, 'there will be': 879361, 'be no panic': 116105, 'no panic and': 565038, 'panic and no': 637324, 'and no shortage': 67640, 'no shortage of': 565497, 'shortage of anything': 765099, 'of anything in': 580289, 'anything in sha': 80792, 'in sha allah': 427848, 'sha allah riyadh': 754314, 'allah riyadh pandaapp': 45606, 'riyadh pandaapp pakistanunitedagainstcorona': 724225, 'attitude': 102537, 'towards': 927164, 'thinking': 885837, 'optimism': 613898, 'overall': 630988, '48': 19291, 'our weekly': 625362, 'weekly covid': 977485, '19 consumer': 5948, 'consumer tracker': 199350, 'tracker study': 928299, 'study reveals': 814950, 'reveals american': 720301, 'american attitude': 51826, 'attitude and': 102541, 'and behavior': 58833, 'behavior towards': 124265, 'towards the': 927255, 'pandemic when': 636978, 'when thinking': 984297, 'thinking about': 885841, 'month american': 537559, 'american increased': 52049, 'their optimism': 874131, 'optimism on': 613911, 'on life': 601832, 'life overall': 488958, 'overall from': 631012, 'from 48': 334297, '48 to': 19335, '50 from': 19697, 'from week': 338321, 'to week': 918466, 'for full': 321806, 'full report': 340848, 'our weekly covid': 625365, 'weekly covid 19': 977486, 'covid 19 consumer': 212843, '19 consumer tracker': 5992, 'consumer tracker study': 199351, 'tracker study reveals': 928300, 'study reveals american': 814951, 'reveals american attitude': 720302, 'american attitude and': 51827, 'attitude and behavior': 102542, 'and behavior towards': 58845, 'behavior towards the': 124267, 'towards the pandemic': 927263, 'the pandemic when': 863154, 'pandemic when thinking': 636981, 'when thinking about': 984298, 'thinking about the': 885859, 'about the next': 26461, 'next month american': 561450, 'month american increased': 537561, 'american increased their': 52050, 'increased their optimism': 433500, 'their optimism on': 874132, 'optimism on life': 613912, 'on life overall': 601834, 'life overall from': 488959, 'overall from 48': 631013, 'from 48 to': 334299, '48 to 50': 19336, 'to 50 from': 899739, '50 from week': 19699, 'from week to': 338324, 'week to week': 977102, 'to week for': 918469, 'week for full': 976227, 'for full report': 321813, 'staggering': 793250, 'evading': 283705, 'staggering that': 793264, 'that online': 845508, 'online supermarket': 609494, 'supermarket ocado': 821691, 'ocado can': 578884, 'can purchase': 159339, 'purchase 100': 689327, '00 19': 26, '19 test': 11066, 'test while': 839236, 'british government': 140529, 'government is': 360242, 'is testing': 452617, 'testing le': 839553, 'le than': 483152, 'than 10': 840139, 'people per': 649094, 'day after': 227175, 'after week': 36522, 'of evading': 583224, 'evading the': 283706, 'the question': 865011, 'question government': 693599, 'government must': 360364, 'must be': 546487, 'be straight': 117388, 'straight with': 812255, 'country we': 211209, 'need solution': 555584, 'staggering that online': 793265, 'that online supermarket': 845516, 'online supermarket ocado': 609501, 'supermarket ocado can': 821692, 'ocado can purchase': 578885, 'can purchase 100': 159340, 'purchase 100 00': 689328, '100 00 19': 1779, '00 19 test': 27, '19 test while': 11089, 'test while the': 839238, 'while the british': 987372, 'the british government': 850022, 'british government is': 140530, 'government is testing': 360280, 'is testing le': 452618, 'testing le than': 839554, 'le than 10': 483153, 'than 10 00': 840140, '10 00 people': 1207, '00 people per': 416, 'people per day': 649096, 'per day after': 650792, 'day after week': 227190, 'after week of': 36526, 'week of evading': 976611, 'of evading the': 583225, 'evading the question': 283707, 'the question government': 865015, 'question government must': 693600, 'government must be': 360365, 'must be straight': 546549, 'be straight with': 117389, 'straight with the': 812256, 'with the country': 1001250, 'the country we': 852178, 'country we need': 211211, 'we need solution': 972543, 'harm': 378384, 'stayhomesaveli': 798321, 'not think': 572073, 'think there': 885665, 'there any': 878015, 'any harm': 79302, 'harm in': 378399, 'in buying': 421103, 'buying something': 151060, 'something extra': 784904, 'extra while': 293699, 're at': 698319, 'supermarket buying': 819470, 'buying essential': 150234, 'essential if': 281144, 'you limit': 1019616, 'limit shopping': 492491, 'shopping people': 763618, 'people will': 650377, 'out more': 626561, 'often which': 596301, 'is worse': 454067, 'worse than': 1011005, 'than visiting': 841412, 'visiting full': 959526, 'full store': 340896, 'store once': 809212, 'or two': 617553, 'week stayhomesaveli': 976920, 'do not think': 249869, 'not think there': 572089, 'think there any': 885666, 'there any harm': 878020, 'any harm in': 79304, 'harm in buying': 378400, 'in buying something': 421107, 'buying something extra': 151062, 'something extra while': 784905, 'extra while you': 293700, 'you re at': 1020572, 're at the': 698329, 'the supermarket buying': 868500, 'supermarket buying essential': 819471, 'buying essential if': 150238, 'essential if you': 281146, 'if you limit': 415466, 'you limit shopping': 1019618, 'limit shopping people': 492492, 'shopping people will': 763622, 'people will have': 650392, 'have to go': 383220, 'go out more': 353966, 'out more often': 626575, 'more often which': 539907, 'often which is': 596302, 'which is worse': 986067, 'is worse than': 454069, 'worse than visiting': 1011020, 'than visiting full': 841413, 'visiting full store': 959527, 'full store once': 340897, 'store once week': 809216, 'once week or': 605799, 'week or two': 976703, 'or two week': 617578, 'two week stayhomesaveli': 937364, 'curve': 221823, 'roof': 725821, 'mental': 528628, 'we ve': 973632, 'been listening': 121466, 'our healthcare': 623384, 'healthcare community': 387062, 'community funding': 189862, 'funding partner': 341611, 'partner and': 642762, 'it clear': 457155, 'clear that': 181338, 'that second': 846161, 'second demand': 743695, 'demand curve': 235199, 'curve is': 221864, 'is surging': 452487, 'for essential': 321090, 'essential resource': 281455, 'resource food': 714772, 'food roof': 316246, 'roof over': 725835, 'over your': 630967, 'your head': 1024259, 'head health': 385744, 'and mental': 66947, 'mental health': 528634, 'we ve been': 973641, 've been listening': 952903, 'been listening to': 121467, 'listening to our': 494810, 'to our healthcare': 911186, 'our healthcare community': 623385, 'healthcare community funding': 387063, 'community funding partner': 189863, 'funding partner and': 341612, 'partner and it': 642766, 'and it clear': 65497, 'it clear that': 457161, 'clear that second': 181349, 'that second demand': 846162, 'second demand curve': 743696, 'demand curve is': 235200, 'curve is surging': 221866, 'is surging demand': 452489, 'surging demand for': 828418, 'demand for essential': 235412, 'for essential resource': 321118, 'essential resource food': 281456, 'resource food roof': 714773, 'food roof over': 316247, 'roof over your': 725837, 'over your head': 630970, 'your head health': 1024261, 'head health and': 385745, 'health and mental': 386148, 'and mental health': 66949, 'mental health care': 528637, 'online purchase': 608815, 'purchase made': 689543, 'made and': 507634, 'and paid': 68625, 'paid for': 634013, 'online purchase made': 608826, 'purchase made and': 689544, 'made and paid': 507635, 'and paid for': 68629, 'paid for toiletpaper': 634023, 'handsanitizer': 376463, 'pivoted': 657112, 'spirit': 789446, 'ttb': 934990, 'guideline': 368389, 'coldchain': 185812, 'need handsanitizer': 554951, 'handsanitizer thank': 376657, 'to where': 918535, 'where many': 985008, 'many member': 514275, 'member have': 528102, 'have pivoted': 381937, 'pivoted from': 657115, 'from producing': 336984, 'producing spirit': 680804, 'spirit to': 789510, 'to making': 909772, 'sanitizer following': 734880, 'following ttb': 312932, 'ttb fda': 934991, 'fda and': 300823, 'who guideline': 988824, 'guideline database': 368410, 'database coldchain': 226516, 'coldchain supplychain': 185813, 'supplychain 19': 826157, 'need handsanitizer thank': 554953, 'handsanitizer thank you': 376658, 'thank you to': 841831, 'you to where': 1021857, 'to where many': 918539, 'where many member': 985011, 'many member have': 514276, 'member have pivoted': 528104, 'have pivoted from': 381938, 'pivoted from producing': 657117, 'from producing spirit': 336986, 'producing spirit to': 680805, 'spirit to making': 789513, 'to making hand': 909775, 'hand sanitizer following': 375407, 'sanitizer following ttb': 734881, 'following ttb fda': 312933, 'ttb fda and': 934992, 'fda and who': 300825, 'and who guideline': 75588, 'who guideline database': 988825, 'guideline database coldchain': 368411, 'database coldchain supplychain': 226517, 'coldchain supplychain 19': 185814, 'magnitude': 508439, 'shining': 758619, 'bright': 139783, 'danielle': 225831, 'dimartino': 242905, 'booth': 135121, 'ex': 288618, 'reserve': 714027, 'dallas': 225112, 'author': 103637, 'sits': 772078, 'magnitude of': 508448, 'is shining': 451855, 'shining very': 758630, 'very bright': 955024, 'bright light': 139788, 'light on': 489569, 'the debt': 852984, 'debt consumer': 230452, 'and service': 71293, 'service economy': 752322, 'economy danielle': 267793, 'danielle dimartino': 225832, 'dimartino booth': 242906, 'booth an': 135122, 'an ex': 55896, 'ex federal': 288631, 'federal reserve': 302038, 'reserve employee': 714054, 'employee of': 274060, 'of dallas': 582327, 'dallas and': 225113, 'the author': 849068, 'author of': 103644, 'the book': 849837, 'book fed': 134515, 'up sits': 946005, 'sits down': 772081, 'down with': 257488, 'with of': 999846, 'magnitude of covid': 508449, '19 is shining': 8047, 'is shining very': 451860, 'shining very bright': 758631, 'very bright light': 955025, 'bright light on': 139789, 'light on the': 489576, 'on the debt': 604059, 'the debt consumer': 852986, 'debt consumer and': 230453, 'consumer and service': 196242, 'and service economy': 71302, 'service economy danielle': 752323, 'economy danielle dimartino': 267794, 'danielle dimartino booth': 225833, 'dimartino booth an': 242907, 'booth an ex': 135123, 'an ex federal': 55898, 'ex federal reserve': 288632, 'federal reserve employee': 302043, 'reserve employee of': 714055, 'employee of dallas': 274063, 'of dallas and': 582328, 'dallas and the': 225115, 'and the author': 73250, 'the author of': 849070, 'author of the': 103646, 'of the book': 590824, 'the book fed': 849839, 'book fed up': 134516, 'fed up sits': 301924, 'up sits down': 946006, 'sits down with': 772082, 'down with of': 257499, 'pipeline': 656892, 'shutdown': 767975, '26': 16120, '51': 20195, 'anti': 78259, 'protest': 685908, 'trudeau': 933008, 'tide': 895702, 'employed': 273458, 'nov2019': 573705, 'oil pipeline': 597009, 'pipeline shutdown': 656908, 'shutdown and': 767987, 'at 13': 97462, '13 barrel': 3186, 'barrel cost': 111204, 'cost to': 208132, 'produce 26': 680156, '26 the': 16192, 'the west': 871392, 'west texas': 980539, 'texas crude': 839753, 'crude 51': 219498, '51 per': 20205, 'per barrel': 650690, 'barrel anti': 111200, 'anti canadian': 78282, 'canadian oil': 160719, 'oil protest': 597380, 'protest supported': 685926, 'by trudeau': 154601, 'trudeau exec': 933015, 'exec tide': 289840, 'tide employed': 895705, 'employed by': 273469, 'trudeau nov2019': 933017, 'nov2019 outbreak': 573706, 'china he': 176708, 'he said': 385357, 'said we': 731561, 'are prepared': 89193, 'prepared sars': 670231, 'oil pipeline shutdown': 597010, 'pipeline shutdown and': 656909, 'shutdown and oil': 767990, 'oil price at': 597054, 'price at 13': 672784, 'at 13 barrel': 97464, '13 barrel cost': 3187, 'barrel cost to': 111205, 'cost to produce': 208142, 'to produce 26': 912183, 'produce 26 the': 680157, '26 the west': 16195, 'the west texas': 871398, 'west texas crude': 980540, 'texas crude 51': 839754, 'crude 51 per': 219499, '51 per barrel': 20206, 'per barrel anti': 650693, 'barrel anti canadian': 111201, 'anti canadian oil': 78283, 'canadian oil protest': 160721, 'oil protest supported': 597381, 'protest supported by': 685927, 'supported by trudeau': 827050, 'by trudeau exec': 154602, 'trudeau exec tide': 933016, 'exec tide employed': 289841, 'tide employed by': 895706, 'employed by trudeau': 273472, 'by trudeau nov2019': 154603, 'trudeau nov2019 outbreak': 933018, 'nov2019 outbreak of': 573707, 'outbreak of covid': 628479, '19 in china': 7736, 'in china he': 421404, 'china he said': 176709, 'he said we': 385381, 'said we are': 731562, 'we are prepared': 970667, 'are prepared sars': 89195, 'easter': 265370, 'weekend': 977307, 'dedication': 231769, 'handy': 376873, 'easter weekend': 265522, 'weekend thank': 977423, 'you for': 1018620, 'all your': 45558, 'your hard': 1024252, 'hard work': 378118, 'work amp': 1004749, 'amp dedication': 53613, 'dedication to': 231777, 'crisis keep': 217631, 'keep sanitizer': 471897, 'sanitizer handy': 735047, 'handy and': 376878, 'wear your': 974497, 'your mask': 1024782, 'keep you': 472227, 'you amp': 1016960, 'amp those': 54699, 'those around': 891805, 'around you': 93655, 'you safe': 1020969, 'easter weekend thank': 265524, 'weekend thank you': 977424, 'thank you for': 841728, 'you for all': 1018623, 'for all your': 319193, 'all your hard': 45568, 'your hard work': 1024254, 'hard work amp': 378122, 'work amp dedication': 1004751, 'amp dedication to': 53614, 'dedication to our': 231778, 'to our customer': 911167, 'this crisis keep': 887059, 'crisis keep sanitizer': 217633, 'keep sanitizer handy': 471898, 'sanitizer handy and': 735048, 'handy and wear': 376879, 'and wear your': 75356, 'wear your mask': 974502, 'your mask to': 1024790, 'mask to keep': 519411, 'to keep you': 908881, 'keep you amp': 472230, 'you amp those': 1016963, 'amp those around': 54700, 'those around you': 891808, 'around you safe': 93664, 'expediting': 291137, 'reducing': 706261, 'eliminating': 271483, 'providing': 686918, 'residency': 714234, 'successful': 816225, 'applicant': 82430, 'please sign': 660515, 'sign this': 769234, 'this petition': 889539, 'petition sign': 653626, 'sign for': 769119, 'for expediting': 321324, 'expediting testing': 291142, 'testing reducing': 839626, 'reducing or': 706305, 'or eliminating': 615127, 'eliminating the': 271490, 'the testing': 869330, 'testing price': 839616, 'and providing': 69706, 'providing hospital': 687026, 'hospital residency': 404584, 'residency to': 714235, 'to every': 905298, 'every successful': 286233, 'successful applicant': 816228, 'applicant so': 82433, 'that they': 846922, 'can join': 158784, 'join the': 466849, 'the fight': 855160, 'against this': 37695, 'please sign this': 660520, 'sign this petition': 769238, 'this petition sign': 889545, 'petition sign for': 653627, 'sign for expediting': 769122, 'for expediting testing': 321326, 'expediting testing reducing': 291143, 'testing reducing or': 839627, 'reducing or eliminating': 706306, 'or eliminating the': 615128, 'eliminating the testing': 271491, 'the testing price': 869334, 'testing price and': 839617, 'price and providing': 672511, 'and providing hospital': 69711, 'providing hospital residency': 687027, 'hospital residency to': 404585, 'residency to every': 714236, 'to every successful': 905314, 'every successful applicant': 286234, 'successful applicant so': 816229, 'applicant so that': 82434, 'so that they': 778399, 'that they can': 846926, 'they can join': 881643, 'can join the': 158785, 'join the fight': 466858, 'the fight against': 855162, 'fight against this': 304641, 'against this covid': 37697, 'worrying': 1010810, 'boyfriend': 137414, 'lalo': 479140, 'na': 551281, 'ngayon': 561815, 'sa': 728862, 'taytay': 835226, 'cannot stop': 162133, 'stop worrying': 805287, 'worrying for': 1010820, 'and boyfriend': 59138, 'boyfriend he': 137417, 'he is': 385109, 'working at': 1008516, 'supermarket exposed': 820253, 'exposed to': 292887, 'to virus': 918194, 'virus and': 957915, 'and different': 61345, 'different people': 242019, 'people lalo': 648605, 'lalo na': 479141, 'na ngayon': 551303, 'ngayon confirmed': 561816, 'confirmed case': 194134, '19 sa': 10278, 'sa taytay': 728949, 'taytay hays': 835227, 'cannot stop worrying': 162139, 'stop worrying for': 805288, 'worrying for my': 1010821, 'my family and': 548184, 'family and boyfriend': 297581, 'and boyfriend he': 59139, 'boyfriend he is': 137418, 'he is working': 385156, 'is working at': 454033, 'working at supermarket': 1008529, 'at supermarket exposed': 100723, 'supermarket exposed to': 820254, 'exposed to virus': 292912, 'to virus and': 918195, 'virus and different': 957920, 'and different people': 61346, 'different people lalo': 242023, 'people lalo na': 648606, 'lalo na ngayon': 479142, 'na ngayon confirmed': 551304, 'ngayon confirmed case': 561817, 'confirmed case of': 194143, 'case of covid': 165898, 'covid 19 sa': 213733, '19 sa taytay': 10279, 'sa taytay hays': 728950, 'n95mask': 551246, 'healthcareworkers': 387429, 'procedure': 679799, 'getmeppe': 348791, 'getusppe': 349478, 'got mad': 358684, 'mad today': 507576, 'today in': 919677, 'my grocery': 548567, 'store due': 807392, 'people wearing': 650172, 'wearing n95mask': 974741, 'n95mask you': 551257, 'one only': 606791, 'only needed': 610815, 'needed by': 556322, 'by healthcareworkers': 152782, 'healthcareworkers doing': 387430, 'doing procedure': 252613, 'procedure on': 679817, 'on patient': 602711, 'patient half': 644177, 'half were': 374298, 'were even': 979588, 'even wearing': 284771, 'it wrong': 462615, 'wrong this': 1013126, 'the reason': 865266, 'reason we': 703049, 'can enough': 158227, 'enough in': 277483, 'hospital getmeppe': 404425, 'getmeppe getusppe': 348794, 'got mad today': 358686, 'mad today in': 507577, 'today in my': 919685, 'in my grocery': 425581, 'my grocery store': 548583, 'grocery store due': 365349, 'store due to': 807393, 'due to people': 261901, 'to people wearing': 911645, 'people wearing n95mask': 650178, 'wearing n95mask you': 974742, 'n95mask you know': 551258, 'you know the': 1019528, 'know the one': 476839, 'the one only': 862210, 'one only needed': 606792, 'only needed by': 610816, 'needed by healthcareworkers': 556324, 'by healthcareworkers doing': 152783, 'healthcareworkers doing procedure': 387431, 'doing procedure on': 252614, 'procedure on patient': 679818, 'on patient half': 602712, 'patient half were': 644178, 'half were even': 374299, 'were even wearing': 979591, 'even wearing it': 284773, 'wearing it wrong': 974668, 'it wrong this': 462619, 'wrong this is': 1013127, 'this is the': 888424, 'is the reason': 452917, 'the reason we': 865280, 'reason we can': 703050, 'we can enough': 970939, 'can enough in': 158228, 'enough in the': 277485, 'the hospital getmeppe': 857522, 'hospital getmeppe getusppe': 404426, 'deal': 229327, 'followed': 312592, 'later': 481010, '30': 16914, 'sheeple': 756558, 'trade deal': 928476, 'deal with': 229530, 'with china': 997627, 'china announced': 176496, 'announced followed': 76943, 'followed few': 312601, 'week later': 976465, 'later with': 481173, 'with stock': 1000973, 'market near': 516745, 'near 30': 553455, '30 00': 16915, '00 now': 375, 'now down': 574559, 'down 500': 256424, '500 point': 20043, 'point is': 662530, 'is china': 446516, 'china buying': 176530, 'buying american': 149885, 'american stock': 52217, 'at these': 101195, 'these low': 880258, 'low price': 505497, 'price beware': 672918, 'beware sheeple': 129106, 'trade deal with': 928479, 'deal with china': 229543, 'with china announced': 997629, 'china announced followed': 176497, 'announced followed few': 76944, 'followed few week': 312602, 'few week later': 304152, 'week later with': 976470, 'later with stock': 481174, 'with stock market': 1000974, 'stock market near': 802413, 'market near 30': 516746, 'near 30 00': 553456, '30 00 now': 16921, '00 now down': 377, 'now down 500': 574562, 'down 500 point': 256425, '500 point is': 20044, 'point is china': 662532, 'is china buying': 446517, 'china buying american': 176531, 'buying american stock': 149886, 'american stock at': 52218, 'stock at these': 801889, 'at these low': 101204, 'these low price': 880260, 'low price beware': 505502, 'price beware sheeple': 672919, 'metre': 529819, 'and stand': 72216, 'stand metre': 793547, 'metre from': 529848, 'from people': 336873, 'don know': 253659, 'know but': 476316, 'go for': 353550, 'walk in': 964800, 'country and': 210431, 'do know': 249549, 'know family': 476375, 'so you can': 778834, 'you can go': 1017685, 'can go to': 158517, 'to supermarket and': 915771, 'supermarket and stand': 819070, 'and stand metre': 72219, 'stand metre from': 793548, 'metre from people': 529850, 'from people you': 336899, 'people you don': 650572, 'you don know': 1018321, 'don know but': 253662, 'know but you': 476319, 'but you can': 147978, 'can go for': 158495, 'go for walk': 353578, 'for walk in': 327622, 'walk in the': 964811, 'the country and': 852046, 'country and stand': 210447, 'people you do': 650571, 'you do know': 1018258, 'do know family': 249550, 'pandemia': 634739, 'quedateencasa': 693357, 'qu': 691624, 'dateencasa': 226782, 'yomequedoencasa': 1016538, 'pandemiacoronavirus': 634757, 'santodomingo': 736646, 'dominicanrepublic': 253291, 'supermarket pandemia': 821893, 'pandemia quedateencasa': 634749, 'quedateencasa qu': 693358, 'qu dateencasa': 691630, 'dateencasa yomequedoencasa': 226788, 'yomequedoencasa pandemiacoronavirus': 1016542, 'pandemiacoronavirus santodomingo': 634758, 'santodomingo dominicanrepublic': 736647, 'the supermarket pandemia': 868740, 'supermarket pandemia quedateencasa': 821894, 'pandemia quedateencasa qu': 634750, 'quedateencasa qu dateencasa': 693359, 'qu dateencasa yomequedoencasa': 691632, 'dateencasa yomequedoencasa pandemiacoronavirus': 226789, 'yomequedoencasa pandemiacoronavirus santodomingo': 1016543, 'pandemiacoronavirus santodomingo dominicanrepublic': 634759, 'riddle': 721419, 'creates': 215930, 'suspend': 829539, 'thereby': 879401, 'forcing': 328688, 'healthy': 387505, 'planned': 658435, 'riddle me': 721420, 'me this': 523706, 'store creates': 807226, 'creates opportunity': 215955, 'opportunity for': 613602, 'for transmission': 327314, 'transmission why': 929778, 'why suspend': 991396, 'suspend grocery': 829565, 'grocery pick': 364852, 'up thereby': 946263, 'thereby forcing': 879404, 'forcing people': 328722, 'people healthy': 648226, 'healthy or': 387715, 'or sick': 617075, 'sick to': 768642, 'shop in': 760302, 'store could': 807196, 'could it': 209350, 'it be': 456719, 'be because': 113819, 'because we': 119788, 'we spend': 973347, 'spend more': 788636, 'than planned': 841035, 'planned in': 658456, 'in person': 426620, 'riddle me this': 721421, 'me this if': 523713, 'this if store': 888001, 'if store creates': 414880, 'store creates opportunity': 807227, 'creates opportunity for': 215956, 'opportunity for transmission': 613632, 'for transmission why': 327316, 'transmission why suspend': 929779, 'why suspend grocery': 991397, 'suspend grocery pick': 829566, 'grocery pick up': 364853, 'pick up thereby': 655767, 'up thereby forcing': 946264, 'thereby forcing people': 879405, 'forcing people healthy': 328723, 'people healthy or': 648227, 'healthy or sick': 387717, 'or sick to': 617077, 'sick to shop': 768645, 'to shop in': 914465, 'shop in store': 760324, 'in store could': 428396, 'store could it': 807198, 'could it be': 209351, 'it be because': 456722, 'be because we': 113820, 'because we spend': 119816, 'we spend more': 973350, 'spend more than': 788642, 'more than planned': 540662, 'than planned in': 841036, 'planned in person': 658458, 'surpass': 828451, '19 fraud': 7100, 'fraud surpass': 331351, 'surpass 15': 828452, 'complaint of covid': 192000, 'covid 19 fraud': 213122, '19 fraud surpass': 7103, 'fraud surpass 15': 331352, 'surpass 15 00': 828453, 'mugged': 545579, 'grabbed': 361560, 'ran': 696495, 'lockdownuk': 500395, 'just heard': 468952, 'heard that': 388137, 'that an': 842638, 'an elderly': 55633, 'elderly person': 270843, 'person wa': 652685, 'wa mugged': 962664, 'mugged whilst': 545582, 'whilst walking': 987702, 'walking out': 965080, 'the in': 857996, 'my area': 547289, 'area grabbed': 92028, 'grabbed food': 361563, 'food straight': 316868, 'straight out': 812223, 'their trolley': 875031, 'trolley and': 932359, 'and ran': 69920, 'ran hope': 696498, 'hope the': 403665, 'the idiot': 857835, 'idiot are': 413452, 'are proud': 89303, 'themselves stophoarding': 876895, 'coronacrisis lockdown': 204653, 'lockdown lockdownuk': 499620, 'lockdownuk stopstockpiling': 500438, 'just heard that': 468960, 'heard that an': 388138, 'that an elderly': 842643, 'an elderly person': 55641, 'elderly person wa': 270848, 'person wa mugged': 652689, 'wa mugged whilst': 962666, 'mugged whilst walking': 545583, 'whilst walking out': 987703, 'walking out of': 965082, 'of the in': 591134, 'the in my': 858009, 'in my area': 425535, 'my area grabbed': 547295, 'area grabbed food': 92029, 'grabbed food straight': 361565, 'food straight out': 316869, 'straight out of': 812225, 'out of their': 626851, 'of their trolley': 591711, 'their trolley and': 875032, 'trolley and ran': 932366, 'and ran hope': 69921, 'ran hope the': 696499, 'hope the idiot': 403679, 'the idiot are': 857836, 'idiot are proud': 413456, 'are proud of': 89305, 'proud of themselves': 686038, 'of themselves stophoarding': 591789, 'themselves stophoarding coronacrisis': 876896, 'stophoarding coronacrisis lockdown': 805378, 'coronacrisis lockdown lockdownuk': 204656, 'lockdown lockdownuk stopstockpiling': 499624, 'value': 952069, 'belittle': 126470, 'bin': 130992, 'took the': 925337, 'the to': 869668, 'to understand': 917897, 'understand the': 940742, 'the value': 870632, 'value of': 952155, 'job of': 466030, 'of nurse': 587111, 'doctor police': 251080, 'officer supermarket': 595722, 'other job': 620453, 'job people': 466085, 'people belittle': 647275, 'belittle of': 126471, 'of like': 585852, 'the bin': 849710, 'bin people': 131035, 'who collect': 988467, 'collect people': 186313, 'people bin': 647283, 'bin etc': 131002, 'etc they': 282811, 'essential to': 281687, 'our society': 624817, 'society without': 781366, 'without them': 1002989, 'them society': 876300, 'society is': 781250, 'so it took': 777481, 'it took the': 461805, 'took the to': 925344, 'the to understand': 869696, 'to understand the': 917912, 'understand the value': 940777, 'the value of': 870636, 'value of job': 952166, 'of job of': 585536, 'job of nurse': 466035, 'of nurse doctor': 587113, 'nurse doctor police': 577307, 'doctor police officer': 251082, 'police officer supermarket': 663130, 'officer supermarket staff': 595724, 'supermarket staff and': 822811, 'staff and other': 792150, 'and other job': 68353, 'other job people': 620454, 'job people belittle': 466087, 'people belittle of': 647276, 'belittle of like': 126472, 'of like the': 585856, 'like the bin': 491353, 'the bin people': 849714, 'bin people who': 131036, 'people who collect': 650274, 'who collect people': 988469, 'collect people bin': 186314, 'people bin etc': 647284, 'bin etc they': 131003, 'etc they are': 282812, 'are essential to': 86258, 'essential to our': 281705, 'to our society': 911242, 'our society without': 624838, 'society without them': 781368, 'without them society': 1002993, 'them society is': 876301, 'society is nothing': 781254, 'bumping': 142596, 'generally': 345516, 'damned': 225473, 'make you': 510730, 'you wonder': 1022407, 'wonder when': 1004021, 'see people': 745551, 'people bumping': 647310, 'bumping up': 142600, 'up price': 945803, 'price fighting': 673862, 'fighting to': 305146, 'hoard product': 398854, 'product and': 680869, 'and generally': 63514, 'generally just': 345535, 'just being': 468325, 'being damned': 125019, 'damned selfish': 225476, 'selfish selfisolation': 748252, 'selfisolation hoarding': 748459, 'hoarding bekind': 399222, 'make you wonder': 510752, 'you wonder when': 1022411, 'wonder when you': 1004025, 'when you see': 984600, 'you see people': 1021058, 'see people bumping': 745555, 'people bumping up': 647312, 'bumping up price': 142601, 'up price fighting': 945813, 'price fighting to': 673863, 'fighting to hoard': 305148, 'to hoard product': 907876, 'hoard product and': 398855, 'product and generally': 680887, 'and generally just': 63517, 'generally just being': 345536, 'just being damned': 468328, 'being damned selfish': 125020, 'damned selfish selfisolation': 225477, 'selfish selfisolation hoarding': 748253, 'selfisolation hoarding bekind': 748460, 'bare': 110853, 'afghanistan': 34927, 'distributing': 248071, 'woman': 1003390, 'displaced': 246177, 'camp': 157164, 'kabul': 470576, 'keeping hand': 472439, 'hand clean': 374862, 'clean is': 180570, 'is key': 449184, 'key to': 473429, 'to preventing': 912103, 'preventing the': 671828, 'of but': 580979, 'what about': 980958, 'about those': 26677, 'have access': 379111, 'the bare': 849277, 'bare essential': 110895, 'essential needed': 281325, 'needed in': 556401, 'in afghanistan': 420077, 'afghanistan our': 34936, 'local partner': 498257, 'partner ha': 642824, 'been distributing': 121010, 'distributing hand': 248081, 'to 600': 899793, '600 woman': 21122, 'woman displaced': 1003467, 'displaced by': 246178, 'by violence': 154672, 'violence living': 957551, 'living in': 496362, 'in camp': 421172, 'camp across': 157165, 'across kabul': 29364, 'keeping hand clean': 472440, 'hand clean is': 374865, 'clean is key': 180571, 'is key to': 449191, 'key to preventing': 473441, 'to preventing the': 912104, 'preventing the spread': 671829, 'spread of but': 790654, 'of but what': 580994, 'but what about': 147780, 'what about those': 980993, 'about those who': 26685, 'those who don': 892631, 'don have access': 253587, 'have access to': 379112, 'access to the': 28289, 'to the bare': 916509, 'the bare essential': 849278, 'bare essential needed': 110897, 'essential needed in': 281326, 'needed in afghanistan': 556402, 'in afghanistan our': 420078, 'afghanistan our local': 34937, 'our local partner': 623781, 'local partner ha': 498258, 'partner ha been': 642825, 'ha been distributing': 369788, 'been distributing hand': 121011, 'distributing hand sanitizer': 248082, 'hand sanitizer to': 375628, 'sanitizer to 600': 735905, 'to 600 woman': 899798, '600 woman displaced': 21123, 'woman displaced by': 1003468, 'displaced by violence': 246181, 'by violence living': 154673, 'violence living in': 957552, 'living in camp': 496366, 'in camp across': 421173, 'camp across kabul': 157166, 'speed': 788423, 'segment': 747378, 'will covid': 993060, '19 speed': 10730, 'speed up': 788471, 'or slow': 617105, 'slow down': 774339, 'consumer segment': 198891, 'segment growth': 747385, 'growth lunch': 367417, 'lunch learn': 506729, 'will covid 19': 993061, 'covid 19 speed': 213843, '19 speed up': 10731, 'speed up or': 788474, 'up or slow': 945687, 'or slow down': 617106, 'slow down the': 774352, 'down the consumer': 257270, 'the consumer segment': 851591, 'consumer segment growth': 198892, 'segment growth lunch': 747386, 'growth lunch learn': 367418, 'know before': 476294, 'before using': 123260, 'using at': 950399, 'to know before': 908974, 'know before using': 476297, 'before using at': 123261, 'using at home': 950400, 'at home coronavirus': 98962, 'chilliwack': 176415, 'young street': 1022660, 'street supermarket': 813130, 'in chilliwack': 421381, 'chilliwack which': 176416, 'on young': 605447, 'young road': 1022654, 'road is': 724464, 'is selling': 451748, 'selling individual': 749302, 'individual roll': 435248, 'roll of': 725410, 'paper for': 640169, 'for 49': 318854, 'young street supermarket': 1022661, 'street supermarket in': 813131, 'supermarket in chilliwack': 820877, 'in chilliwack which': 421382, 'chilliwack which is': 176417, 'which is on': 986036, 'is on young': 450494, 'on young road': 605449, 'young road is': 1022655, 'road is selling': 724466, 'is selling individual': 451758, 'selling individual roll': 749303, 'individual roll of': 435249, 'roll of toilet': 725421, 'toilet paper for': 921278, 'paper for 49': 640172, 'daventry': 226969, 'bread is': 138503, 'is gone': 448110, 'gone in': 356305, 'in uk': 430378, 'uk grocery': 938424, 'store tesco': 810528, 'tesco in': 838720, 'in daventry': 422000, 'bread is gone': 138507, 'is gone in': 448118, 'gone in uk': 356313, 'in uk grocery': 430389, 'uk grocery store': 938426, 'grocery store tesco': 365842, 'store tesco in': 810529, 'tesco in daventry': 838722, 'redeployed': 705684, 'overwhelmed': 631710, 'of executive': 583295, 'executive from': 289894, 'from canadian': 334797, 'canadian grocery': 160688, 'grocery chain': 364352, 'chain have': 170756, 'been redeployed': 121792, 'redeployed to': 705685, 'at overwhelmed': 100051, 'overwhelmed store': 631725, 'store stocking': 810399, 'stocking shelf': 803588, 'shelf and': 756717, 'and wiping': 75747, 'wiping down': 996507, 'down cart': 256619, 'hundred of executive': 411000, 'of executive from': 583296, 'executive from canadian': 289895, 'from canadian grocery': 334798, 'canadian grocery chain': 160689, 'grocery chain have': 364363, 'chain have been': 170758, 'have been redeployed': 379656, 'been redeployed to': 121793, 'redeployed to work': 705686, 'work at overwhelmed': 1004889, 'at overwhelmed store': 100052, 'overwhelmed store stocking': 631727, 'store stocking shelf': 810400, 'stocking shelf and': 803589, 'shelf and wiping': 756777, 'and wiping down': 75748, 'wiping down cart': 996510, 'shitpocalypse': 759339, 'log': 500604, 'visited': 959449, 'regular': 707727, 'scheduled': 741479, 'frequency': 332802, 'mofos': 535538, 'twinkie': 936586, 'survival': 829016, 'woody': 1004335, 'harelson': 378357, 'character': 173147, 'tallahassee': 834073, 'movie': 543973, 'zombieland': 1027738, 'emptyshelves': 275299, 'shitpocalypse day': 759340, 'day log': 227928, 'log visited': 500624, 'visited my': 959487, 'store per': 809499, 'per my': 650952, 'my regular': 549909, 'regular scheduled': 707860, 'scheduled frequency': 741495, 'frequency some': 332809, 'some mofos': 783307, 'mofos out': 535539, 'are thinking': 91042, 'thinking twinkie': 886022, 'twinkie are': 936587, 'are necessary': 88191, 'necessary survival': 554101, 'survival food': 829032, 'food just': 315258, 'like woody': 491834, 'woody harelson': 1004336, 'harelson character': 378358, 'character tallahassee': 173162, 'tallahassee from': 834074, 'the movie': 861100, 'movie zombieland': 544106, 'zombieland emptyshelves': 1027739, 'shitpocalypse day log': 759341, 'day log visited': 227929, 'log visited my': 500625, 'visited my local': 959488, 'grocery store per': 365648, 'store per my': 809501, 'per my regular': 650954, 'my regular scheduled': 549913, 'regular scheduled frequency': 707861, 'scheduled frequency some': 741496, 'frequency some mofos': 332810, 'some mofos out': 783308, 'mofos out there': 535540, 'out there are': 627468, 'there are thinking': 878175, 'are thinking twinkie': 91047, 'thinking twinkie are': 886023, 'twinkie are necessary': 936588, 'are necessary survival': 88192, 'necessary survival food': 554102, 'survival food just': 829033, 'food just like': 315262, 'just like woody': 469162, 'like woody harelson': 491835, 'woody harelson character': 1004337, 'harelson character tallahassee': 378359, 'character tallahassee from': 173163, 'tallahassee from the': 834075, 'from the movie': 337795, 'the movie zombieland': 861110, 'movie zombieland emptyshelves': 544107, 'biocidal': 131186, 'regulation': 708037, 'suitable': 817807, 'hygiene': 412039, 'processing': 680005, 'environment': 279072, 'catering': 167253, 'meet the': 527590, 'the requirement': 865558, 'requirement of': 713437, 'the biocidal': 849718, 'biocidal product': 131187, 'product regulation': 681571, 'regulation suitable': 708114, 'suitable for': 817810, 'for use': 327493, 'use in': 949270, 'in hygiene': 423944, 'hygiene critical': 412077, 'critical area': 218517, 'area such': 92208, 'such healthcare': 816543, 'healthcare food': 387115, 'food processing': 315990, 'processing environment': 680018, 'environment sanitize': 279145, 'sanitize washyourhands': 734231, 'washyourhands sanitation': 967903, 'sanitation clean': 733833, 'clean catering': 180494, 'catering stayathome': 167269, 'stayathome wow': 797715, 'meet the requirement': 527608, 'the requirement of': 865559, 'requirement of the': 713439, 'of the biocidal': 590822, 'the biocidal product': 849719, 'biocidal product regulation': 131188, 'product regulation suitable': 681572, 'regulation suitable for': 708115, 'suitable for use': 817814, 'for use in': 327495, 'use in hygiene': 949277, 'in hygiene critical': 423945, 'hygiene critical area': 412078, 'critical area such': 218518, 'area such healthcare': 92209, 'such healthcare food': 816544, 'healthcare food processing': 387119, 'food processing environment': 315992, 'processing environment sanitize': 680019, 'environment sanitize washyourhands': 279146, 'sanitize washyourhands sanitation': 734232, 'washyourhands sanitation clean': 967904, 'sanitation clean catering': 733834, 'clean catering stayathome': 180495, 'catering stayathome wow': 167270, 'receive': 703427, 'communication': 189568, 'grant': 362011, 'exchange': 289437, 'fee': 302131, 'respond': 715283, 'alert if': 41450, 'you receive': 1020848, 'receive call': 703450, 'call email': 155840, 'email or': 272254, 'or other': 616424, 'other communication': 619970, 'communication offering': 189623, 'offering covid': 595047, 'related grant': 708455, 'grant or': 362039, 'or stimulus': 617227, 'stimulus payment': 801599, 'payment in': 645655, 'in exchange': 422712, 'exchange for': 289444, 'for personal': 324496, 'personal financial': 652847, 'information or': 437933, 'or fee': 615284, 'fee of': 302204, 'of any': 580245, 'any kind': 79387, 'kind do': 474833, 'not respond': 571345, 'respond these': 715310, 'these are': 879605, 'are scam': 89830, 'scam alert if': 739979, 'alert if you': 41451, 'if you receive': 415504, 'you receive call': 1020850, 'receive call email': 703451, 'call email or': 155842, 'email or other': 272258, 'or other communication': 616428, 'other communication offering': 619971, 'communication offering covid': 189624, 'offering covid 19': 595048, '19 related grant': 10053, 'related grant or': 708456, 'grant or stimulus': 362040, 'or stimulus payment': 617228, 'stimulus payment in': 801603, 'payment in exchange': 645657, 'in exchange for': 422713, 'exchange for personal': 289448, 'for personal financial': 324499, 'personal financial information': 652848, 'financial information or': 306465, 'information or fee': 437935, 'or fee of': 615285, 'fee of any': 302205, 'of any kind': 580262, 'any kind do': 79388, 'kind do not': 474834, 'do not respond': 249826, 'not respond these': 571348, 'respond these are': 715311, 'these are scam': 879633, 'carbon': 163390, 'flagship': 309961, 'slump': 774671, 'european': 283533, 'challenging': 171614, 'europe carbon': 283415, 'carbon market': 163403, 'market flagship': 516389, 'flagship tool': 309969, 'tool to': 925444, 'fight saw': 304863, 'saw price': 738219, 'price slump': 676489, 'slump more': 774699, 'than 30': 840222, '30 in': 17080, 'in one': 426134, 'week because': 975985, 'of concern': 581637, 'concern european': 192965, 'european commission': 283542, 'commission say': 188894, 'it following': 458050, 'following the': 312869, 'the situation': 867238, 'situation closely': 772216, 'closely in': 183462, 'in challenging': 421320, 'challenging time': 171627, 'europe carbon market': 283416, 'carbon market flagship': 163404, 'market flagship tool': 516390, 'flagship tool to': 309970, 'tool to fight': 925448, 'to fight saw': 905810, 'fight saw price': 304864, 'saw price slump': 738222, 'price slump more': 676492, 'slump more than': 774700, 'more than 30': 540560, 'than 30 in': 840224, '30 in one': 17081, 'in one week': 426157, 'one week because': 607410, 'week because of': 975987, 'because of concern': 119319, 'of concern european': 581641, 'concern european commission': 192966, 'european commission say': 283543, 'commission say it': 188895, 'say it following': 738842, 'it following the': 458051, 'following the situation': 312908, 'the situation closely': 867246, 'situation closely in': 772217, 'closely in challenging': 183463, 'in challenging time': 421321, 'massive': 519959, 'ordering': 618935, 'lp': 506306, 'cd': 168523, 'independently': 434154, 'owned': 632322, 'all know': 43327, 'had massive': 373287, 'massive impact': 520040, 'on small': 603507, 'business around': 143401, 're thinking': 699705, 'about ordering': 25867, 'ordering some': 619018, 'some new': 783348, 'new lp': 559073, 'lp or': 506309, 'or cd': 614692, 'cd we': 168532, 'we like': 972192, 'like to': 491570, 'to encourage': 905055, 'encourage you': 275643, 'buy it': 148844, 'it from': 458147, 'from an': 334476, 'an independently': 56267, 'independently owned': 434159, 'owned record': 632350, 'record shop': 705063, 'you all know': 1016889, 'all know the': 43334, 'know the covid': 476814, 'ha had massive': 370792, 'had massive impact': 373288, 'massive impact on': 520041, 'impact on small': 417891, 'on small business': 603508, 'small business around': 774839, 'business around the': 143403, 'world so if': 1009986, 'you re thinking': 1020776, 're thinking about': 699706, 'thinking about ordering': 885851, 'about ordering some': 25868, 'ordering some new': 619019, 'some new lp': 783350, 'new lp or': 559074, 'lp or cd': 506310, 'or cd we': 614693, 'cd we like': 168533, 'we like to': 972197, 'like to encourage': 491586, 'to encourage you': 905069, 'encourage you to': 275645, 'you to buy': 1021757, 'to buy it': 902253, 'buy it from': 148853, 'it from an': 458148, 'from an independently': 334486, 'an independently owned': 56268, 'independently owned record': 434162, 'owned record shop': 632351, 'covidiot': 214420, 'noun': 573661, 'vid': 956579, 'ee': 268923, 'ut': 951173, 'as': 94707, 'tipper': 898978, 'gigeconomy': 350082, 'quaratineandchill': 693105, 'postmates': 666746, 'covidiot noun': 214423, 'noun co': 573662, 'co vid': 184997, 'vid ee': 956582, 'ee ut': 268924, 'ut hoarder': 951178, 'hoarder of': 399080, 'paper sanitizer': 640716, 'and cheap': 59774, 'cheap as': 174080, 'as tipper': 94815, 'tipper gigeconomy': 898979, 'gigeconomy quaratineandchill': 350083, 'quaratineandchill quarantine': 693110, 'quarantine postmates': 692441, 'covidiot noun co': 214424, 'noun co vid': 573663, 'co vid ee': 184998, 'vid ee ut': 956583, 'ee ut hoarder': 268925, 'ut hoarder of': 951179, 'hoarder of toilet': 399081, 'toilet paper sanitizer': 921430, 'paper sanitizer and': 640717, 'sanitizer and cheap': 734393, 'and cheap as': 59775, 'cheap as tipper': 174081, 'as tipper gigeconomy': 94816, 'tipper gigeconomy quaratineandchill': 898980, 'gigeconomy quaratineandchill quarantine': 350084, 'quaratineandchill quarantine postmates': 693111, 'wouldn': 1012431, 'functional': 341286, 'supervisor': 824390, 'wh': 980893, 'required': 713341, 'irradiate': 444978, 'killing': 474651, 'they wouldn': 883957, 'wouldn have': 1012472, 'have social': 382607, 'distancing if': 247212, 'we had': 971696, 'had functional': 373132, 'functional supervisor': 341306, 'supervisor in': 824393, 'the wh': 871410, 'wh unless': 980911, 'unless and': 942598, 'and until': 74716, 'until the': 943844, 'the entire': 854346, 'entire united': 278766, 'united state': 942201, 'state government': 795609, 'is required': 451445, 'required to': 713393, 'to irradiate': 908516, 'irradiate covid': 444979, '19 his': 7537, 'his economic': 397375, 'economic effort': 267088, 'effort will': 269669, 'will fail': 993398, 'fail sick': 296100, 'sick dying': 768423, 'dying ha': 263835, 'nothing to': 573185, 'with killing': 999149, 'killing the': 474713, 'the target': 869151, 'they wouldn have': 883960, 'wouldn have social': 1012478, 'have social distancing': 382610, 'social distancing if': 779636, 'distancing if we': 247214, 'if we had': 415286, 'we had functional': 971707, 'had functional supervisor': 373134, 'functional supervisor in': 341307, 'supervisor in the': 824394, 'in the wh': 429675, 'the wh unless': 871414, 'wh unless and': 980912, 'unless and until': 942599, 'and until the': 74718, 'until the entire': 943854, 'the entire united': 854372, 'entire united state': 278767, 'united state government': 942218, 'state government is': 795613, 'government is required': 360272, 'is required to': 451453, 'required to irradiate': 713400, 'to irradiate covid': 908517, 'irradiate covid 19': 444980, 'covid 19 his': 213209, '19 his economic': 7540, 'his economic effort': 397376, 'economic effort will': 267089, 'effort will fail': 269670, 'will fail sick': 993399, 'fail sick dying': 296101, 'sick dying ha': 768424, 'dying ha nothing': 263837, 'ha nothing to': 371386, 'nothing to do': 573189, 'do with killing': 250557, 'with killing the': 999150, 'killing the target': 474720, 'ahead': 39129, 'view': 957057, 'slipped': 774039, 'side': 768779, 'though the': 892907, 'the producer': 864575, 'producer of': 680668, 'of opec': 587282, 'opec have': 611899, 'gone ahead': 356190, 'ahead in': 39163, 'in reduction': 427337, 'reduction with': 706402, 'with all': 997143, 'all output': 43844, 'output but': 629236, 'it question': 460580, 'question of': 693662, 'of demand': 582495, 'in view': 430586, 'view of': 957121, 'of impact': 584991, 'price which': 677504, 'ha slipped': 371971, 'slipped may': 774045, 'may slip': 521507, 'slip further': 774018, 'further the': 342185, 'demand side': 236208, 'even though the': 284718, 'though the producer': 892912, 'the producer of': 864576, 'producer of opec': 680671, 'of opec have': 587287, 'opec have gone': 611900, 'have gone ahead': 380787, 'gone ahead in': 356191, 'ahead in reduction': 39164, 'in reduction with': 427338, 'reduction with all': 706403, 'with all output': 997158, 'all output but': 43845, 'output but it': 629237, 'but it question': 146156, 'it question of': 460581, 'question of demand': 693663, 'of demand and': 582497, 'demand and supply': 235003, 'and supply and': 72775, 'supply and in': 824729, 'and in view': 65079, 'in view of': 430587, 'view of impact': 957127, 'of impact the': 584994, 'impact the oil': 418000, 'oil price which': 597321, 'price which ha': 677510, 'which ha slipped': 985899, 'ha slipped may': 371972, 'slipped may slip': 774046, 'may slip further': 521508, 'slip further the': 774019, 'further the demand': 342186, 'the demand side': 853110, 'crowd': 219112, 'create': 215597, 'buying not': 150770, 'only make': 610753, 'make it': 510014, 'it difficult': 457548, 'difficult to': 242325, 'but crowd': 145487, 'crowd in': 219172, 'store create': 807224, 'create huge': 215663, 'huge risk': 410178, 'of contagion': 581808, 'contagion it': 200409, 'it worse': 462544, 'than pub': 841053, 'pub and': 687659, 'panic buying not': 637822, 'buying not only': 150772, 'not only make': 570808, 'only make it': 610755, 'make it difficult': 510028, 'it difficult to': 457556, 'difficult to buy': 242330, 'to buy food': 902230, 'buy food but': 148635, 'food but crowd': 313812, 'but crowd in': 145489, 'crowd in store': 219174, 'in store create': 428397, 'store create huge': 807225, 'create huge risk': 215665, 'huge risk of': 410180, 'risk of contagion': 723737, 'of contagion it': 581811, 'contagion it worse': 200411, 'it worse than': 462551, 'worse than pub': 1011016, 'than pub and': 841054, 'pub and bar': 687660, 'internet': 441892, 'fulfilled': 340426, 'fcc': 300750, 'connected': 194640, 'many phone': 514560, 'phone and': 654879, 'and internet': 65329, 'internet provider': 441994, 'provider across': 686682, 'country have': 210733, 'have fulfilled': 380734, 'fulfilled the': 340429, 'the fcc': 854998, 'fcc promise': 300769, 'promise to': 683697, 'help consumer': 389514, 'consumer stay': 199133, 'stay connected': 796846, 'connected during': 194649, '19 check': 5782, 'this list': 888652, 'list to': 494567, 'see what': 746018, 'what certain': 981199, 'certain company': 169979, 'company are': 190406, 'doing to': 252782, 'many phone and': 514561, 'phone and internet': 654882, 'and internet provider': 65332, 'internet provider across': 441995, 'provider across the': 686683, 'the country have': 852091, 'country have fulfilled': 210737, 'have fulfilled the': 380735, 'fulfilled the fcc': 340430, 'the fcc promise': 855003, 'fcc promise to': 300770, 'promise to help': 683700, 'to help consumer': 907480, 'help consumer stay': 389524, 'consumer stay connected': 199134, 'stay connected during': 796848, 'connected during covid': 194650, 'covid 19 check': 212791, '19 check out': 5784, 'out this list': 627576, 'this list to': 888663, 'list to see': 494569, 'to see what': 914095, 'see what certain': 746022, 'what certain company': 981200, 'certain company are': 169980, 'company are doing': 190420, 'are doing to': 85933, 'doing to help': 252792, 'america': 51431, 'drag': 258150, 'modernize': 535419, 'concept': 192848, 'introduced': 443411, 'urgency': 948298, 'possibly': 665888, 'goal': 354550, 'every department': 285868, 'in america': 420214, 'america ha': 51540, 'ha tried': 372361, 'tried some': 931818, 'some way': 784185, 'to drag': 904700, 'drag modernize': 258157, 'modernize the': 535420, 'the retail': 865708, 'retail concept': 717980, 'concept now': 192863, 'ha introduced': 370989, 'introduced new': 443438, 'new urgency': 559812, 'urgency and': 948300, 'and possibly': 69216, 'possibly new': 665943, 'new goal': 558809, 'goal what': 354587, 'what do': 981341, 'do department': 249223, 'store do': 807328, 'do now': 249906, 'every department store': 285869, 'department store in': 237276, 'store in america': 808266, 'in america ha': 420221, 'america ha tried': 51545, 'ha tried some': 372362, 'tried some way': 931819, 'some way to': 784190, 'way to drag': 970018, 'to drag modernize': 904702, 'drag modernize the': 258158, 'modernize the retail': 535421, 'the retail concept': 865713, 'retail concept now': 717981, 'concept now covid': 192864, '19 ha introduced': 7355, 'ha introduced new': 370991, 'introduced new urgency': 443442, 'new urgency and': 559813, 'urgency and possibly': 948301, 'and possibly new': 69222, 'possibly new goal': 665944, 'new goal what': 558810, 'goal what do': 354588, 'what do department': 981342, 'do department store': 249224, 'department store do': 237271, 'store do now': 807331, 'hate': 378859, 'hate the': 378916, 'fact everyone': 295715, 'everyone think': 287475, 'think everyone': 885231, 'everyone else': 286842, 'else is': 271747, 'is hoarding': 448507, 'hoarding if': 399375, 'not know': 570287, 'know anyone': 476267, 'anyone hoarding': 80367, 'hoarding then': 399594, 'it probably': 460485, 'probably you': 679428, 'it stop': 461270, 'stop just': 804800, 'just buying': 468390, 'buying few': 150283, 'few more': 303943, 'more item': 539632, 'item stophoarding': 463665, 'hate the fact': 378917, 'the fact everyone': 854821, 'fact everyone think': 295716, 'everyone think everyone': 287476, 'think everyone else': 885232, 'everyone else is': 286863, 'else is hoarding': 271755, 'is hoarding if': 448510, 'hoarding if you': 399377, 'do not know': 249772, 'not know anyone': 570290, 'know anyone hoarding': 476268, 'anyone hoarding then': 80368, 'hoarding then it': 399595, 'then it probably': 877286, 'it probably you': 460491, 'probably you doing': 679429, 'you doing it': 1018298, 'doing it stop': 252494, 'it stop just': 461273, 'stop just buying': 804801, 'just buying few': 468392, 'buying few more': 150285, 'few more item': 303948, 'more item stophoarding': 539636, 'whatsale': 982858, 'the deal': 852955, 'with these': 1001633, 'these sale': 880620, 'sale price': 732455, 'price whatsale': 677475, 'what the deal': 982305, 'the deal with': 852960, 'deal with these': 229584, 'with these sale': 1001655, 'these sale price': 880622, 'sale price whatsale': 732469, 'viewing': 957202, 'bst': 141449, 'essential viewing': 281745, 'viewing how': 957203, 'how did': 407680, 'did retailer': 240781, 'china respond': 176907, 'respond to': 715312, 'pandemic and': 634859, 'and retail': 70424, 'retail industry': 718208, 'industry expert': 435813, 'expert will': 292028, 'will discus': 993204, 'discus innovation': 244875, 'innovation trend': 438908, 'trend and': 931265, 'term consumer': 838094, 'consumer impact': 197801, 'on april': 599426, 'april 23rd': 83487, '23rd 12': 15510, '12 30': 2793, '30 bst': 16987, 'bst register': 141452, 'register here': 707575, 'essential viewing how': 281746, 'viewing how did': 957204, 'how did retailer': 407688, 'did retailer in': 240782, 'in china respond': 421428, 'china respond to': 176908, 'respond to the': 715329, '19 pandemic and': 9265, 'pandemic and retail': 634896, 'and retail industry': 70433, 'retail industry expert': 718214, 'industry expert will': 435817, 'expert will discus': 292029, 'will discus innovation': 993206, 'discus innovation trend': 244876, 'innovation trend and': 438909, 'trend and the': 931274, 'and the long': 73459, 'long term consumer': 501677, 'term consumer impact': 838098, 'consumer impact on': 197806, 'impact on april': 417819, 'on april 23rd': 599440, 'april 23rd 12': 83488, '23rd 12 30': 15511, '12 30 bst': 2794, '30 bst register': 16988, 'bst register here': 141453, 'fuckwits': 340088, 'complaining': 191881, 'lawsofeconomics': 482510, 'supplyanddemand': 826152, 'so seeing': 778165, 'seeing post': 746423, 'post from': 666139, 'the utter': 870604, 'utter fuckwits': 951418, 'fuckwits that': 340089, 'been panic': 121649, 'buying complaining': 150129, 'complaining about': 191882, 'about price': 25991, 'price going': 674209, 'going up': 355776, 'up lawsofeconomics': 945293, 'lawsofeconomics supplyanddemand': 482511, 'so seeing post': 778167, 'seeing post from': 746425, 'post from the': 666143, 'from the utter': 337913, 'the utter fuckwits': 870605, 'utter fuckwits that': 951419, 'fuckwits that have': 340090, 'that have been': 844197, 'have been panic': 379628, 'been panic buying': 121650, 'panic buying complaining': 637682, 'buying complaining about': 150130, 'complaining about price': 191891, 'about price going': 25994, 'price going up': 674216, 'going up lawsofeconomics': 355788, 'up lawsofeconomics supplyanddemand': 945294, 'shortened': 765339, 'course': 211833, 'hole': 400199, 'hitting': 398551, 'observe': 578570, 'simulator': 770363, '19 update': 11650, 'update retail': 947197, 'is open': 450555, 'open shortened': 612499, 'shortened hour': 765340, 'hour golf': 405647, 'golf course': 356119, 'course open': 211919, 'open hole': 612305, 'hole 12': 400200, '12 50': 2806, '50 walking': 19902, 'walking only': 965076, 'only driving': 610366, 'driving range': 259996, 'range open': 696730, 'open increased': 612328, 'increased distance': 433298, 'distance between': 246662, 'between hitting': 128799, 'hitting station': 398589, 'station to': 796534, 'to observe': 910789, 'observe social': 578593, 'distancing simulator': 247482, 'simulator are': 770364, 'are closed': 85327, 'closed more': 183228, 'covid 19 update': 214005, '19 update retail': 11682, 'update retail store': 947199, 'retail store is': 718650, 'store is open': 808510, 'is open shortened': 450578, 'open shortened hour': 612500, 'shortened hour golf': 765341, 'hour golf course': 405648, 'golf course open': 356122, 'course open hole': 211920, 'open hole 12': 612306, 'hole 12 50': 400201, '12 50 walking': 2807, '50 walking only': 19903, 'walking only driving': 965077, 'only driving range': 610367, 'driving range open': 259997, 'range open increased': 696731, 'open increased distance': 612329, 'increased distance between': 433299, 'distance between hitting': 246665, 'between hitting station': 128800, 'hitting station to': 398590, 'station to observe': 796537, 'to observe social': 910794, 'observe social distancing': 578594, 'social distancing simulator': 779719, 'distancing simulator are': 247483, 'simulator are closed': 770365, 'are closed more': 85353, 'closed more info': 183229, '83': 22848, 'healthyeating': 387833, 'comforteating': 187892, 'globaldata': 352304, 'with 83': 997067, '83 of': 22853, 'global consumer': 351797, 'consumer concerned': 196874, 'about healthyeating': 25364, 'healthyeating is': 387834, 'is out': 450654, 'and comforteating': 60117, 'comforteating is': 187893, 'is back': 445946, 'back say': 107257, 'say globaldata': 738684, 'with 83 of': 997068, '83 of global': 22855, 'of global consumer': 584149, 'global consumer concerned': 351799, 'consumer concerned about': 196875, 'concerned about healthyeating': 193156, 'about healthyeating is': 25365, 'healthyeating is out': 387835, 'is out and': 450655, 'out and comforteating': 625652, 'and comforteating is': 60118, 'comforteating is back': 187894, 'is back say': 445950, 'back say globaldata': 107258, 'debut': 230639, 'restocker': 716973, 'appearing': 82158, 'keephustling': 472352, 'keeplaughing': 472658, '19 shall': 10432, 'shall be': 754515, 'be making': 115886, 'making my': 511237, 'my supermarket': 550264, 'supermarket debut': 819901, 'debut taking': 230648, 'taking over': 833491, 'the role': 865953, 'role of': 725121, 'of shelf': 589576, 'shelf restocker': 757468, 'restocker appearing': 716974, 'appearing on': 82173, 'on night': 602408, 'shift only': 758371, 'only keephustling': 610674, 'keephustling keeplaughing': 472353, 'covid 19 shall': 213775, '19 shall be': 10433, 'shall be making': 754520, 'be making my': 115890, 'making my supermarket': 511239, 'my supermarket debut': 550267, 'supermarket debut taking': 819902, 'debut taking over': 230649, 'taking over the': 833497, 'over the role': 630760, 'the role of': 865955, 'role of shelf': 725124, 'of shelf restocker': 589580, 'shelf restocker appearing': 757469, 'restocker appearing on': 716975, 'appearing on night': 82174, 'on night shift': 602412, 'night shift only': 563072, 'shift only keephustling': 758372, 'only keephustling keeplaughing': 610675, 'inflation': 437133, 'detention': 239365, 'dead': 229122, 'pakistan': 634415, 'kar': 470855, 'price went': 677432, 'went up': 979211, 'for everything': 321254, 'everything which': 288104, 'which didn': 985814, 'didn help': 241105, 'help inflation': 389926, 'inflation it': 437203, 'crazy now': 215360, 'now police': 575566, 'police device': 662978, 'device regulation': 239928, 'regulation and': 708048, 'and detention': 61288, 'detention of': 239379, 'of order': 587328, 'order and': 618022, 'situation is': 772339, 'is humanity': 448627, 'humanity dead': 410717, 'dead in': 229147, 'in pakistan': 426433, 'pakistan pakistan': 634482, 'pakistan kar': 634467, 'price went up': 677437, 'went up for': 979216, 'up for everything': 944931, 'for everything which': 321262, 'everything which didn': 288105, 'which didn help': 985815, 'didn help inflation': 241106, 'help inflation it': 389927, 'inflation it crazy': 437204, 'it crazy now': 457391, 'crazy now police': 215362, 'now police device': 575567, 'police device regulation': 662979, 'device regulation and': 239929, 'regulation and detention': 708051, 'and detention of': 61290, 'detention of order': 239380, 'of order and': 587329, 'order and those': 618038, 'and those who': 74042, 'those who take': 892683, 'who take advantage': 989728, 'advantage of the': 33034, 'of the situation': 591467, 'the situation is': 867262, 'situation is humanity': 772349, 'is humanity dead': 448628, 'humanity dead in': 410718, 'dead in pakistan': 229152, 'in pakistan pakistan': 426443, 'pakistan pakistan kar': 634483, 'poop': 664045, 'danny': 225888, 'forevah': 329089, 'evah': 283708, 'twin': 936566, 'come poop': 187486, 'poop with': 664075, 'with danny': 997922, 'danny but': 225889, 'but be': 145265, 'be warned': 118041, 'warned there': 967037, 'paper forevah': 640192, 'forevah and': 329090, 'and evah': 62319, 'evah and': 283709, 'evah toiletpaper': 283711, 'toiletpaper twin': 922784, 'come poop with': 187487, 'poop with danny': 664076, 'with danny but': 997923, 'danny but be': 225890, 'but be warned': 145267, 'be warned there': 118043, 'warned there will': 967038, 'be no toilet': 116112, 'toilet paper forevah': 921279, 'paper forevah and': 640193, 'forevah and evah': 329091, 'and evah and': 62320, 'evah and evah': 283710, 'and evah toiletpaper': 62321, 'evah toiletpaper twin': 283712, 'follow and': 312349, 'and turn': 74523, 'turn on': 935723, 'on notification': 602449, 'notification for': 573531, 'more update': 540856, 'follow and turn': 312352, 'and turn on': 74525, 'turn on notification': 935724, 'on notification for': 602450, 'notification for more': 573532, 'for more update': 323605, 'gave': 344586, 'forbid': 328300, 'gear': 344935, 'stopandshopdobetter': 805309, 'thankyo': 842316, 'gave associate': 344598, 'associate 10': 96838, '10 raise': 1648, 'raise for': 695845, 'for risking': 325243, 'risking their': 724093, 'their life': 873818, 'life working': 489231, 'working through': 1008964, 'through global': 894482, 'global pandemic': 352068, 'pandemic not': 636051, 'only did': 610329, 'did they': 240864, 'they forbid': 882129, 'forbid associate': 328301, 'associate from': 96873, 'wearing any': 974587, 'any protective': 79702, 'protective gear': 685749, 'gear they': 344992, 'also did': 48101, 'supply any': 824769, 'any stopandshopdobetter': 79855, 'stopandshopdobetter thankyo': 805310, 'gave associate 10': 344599, 'associate 10 raise': 96839, '10 raise for': 1649, 'raise for risking': 695847, 'for risking their': 325244, 'risking their life': 724096, 'their life working': 873851, 'life working through': 489235, 'working through global': 1008966, 'through global pandemic': 894483, 'global pandemic not': 352100, 'pandemic not only': 636055, 'not only did': 570787, 'only did they': 610333, 'did they forbid': 240869, 'they forbid associate': 882130, 'forbid associate from': 328302, 'associate from wearing': 96874, 'from wearing any': 338312, 'wearing any protective': 974588, 'any protective gear': 79703, 'protective gear they': 685765, 'gear they also': 344993, 'they also did': 881145, 'also did not': 48102, 'did not supply': 240736, 'not supply any': 571813, 'supply any stopandshopdobetter': 824770, 'any stopandshopdobetter thankyo': 79856, 'sun': 818049, 'this time': 890611, 'of crisis': 582144, 'crisis have': 217456, 'the sun': 868407, 'sun delivered': 818062, 'home free': 401252, 'free for': 331838, 'for 12': 318637, '12 week': 2978, 'during this time': 263327, 'this time of': 890671, 'time of crisis': 897324, 'of crisis have': 582161, 'crisis have the': 217464, 'have the sun': 383030, 'the sun delivered': 868409, 'sun delivered to': 818064, 'to your home': 918992, 'your home free': 1024354, 'home free for': 401253, 'free for 12': 331839, 'for 12 week': 318644, 'penetration': 646494, 'panel': 637160, 'brick': 139574, 'mortar': 541810, 'interesting before': 441516, '19 online': 8988, 'shopping penetration': 763616, 'penetration wa': 646497, 'wa at': 961598, 'at are': 98038, 'now saying': 575729, 'at around': 98048, 'around 20': 93123, '20 think': 13376, 'think the': 885620, 'the panel': 863173, 'panel are': 637163, 'are possibly': 89154, 'possibly under': 665961, 'under calling': 940026, 'it this': 461648, 'term impact': 838173, 'on brick': 599700, 'brick mortar': 139587, 'mortar shopper': 541836, 'shopper change': 761455, 'change shopping': 172255, 'shopping pattern': 763602, 'pattern grocery': 644470, 'interesting before covid': 441517, 'covid 19 online': 213519, '19 online grocery': 8991, 'grocery shopping penetration': 365066, 'shopping penetration wa': 763617, 'penetration wa at': 646498, 'wa at are': 961600, 'at are now': 98040, 'are now saying': 88592, 'now saying it': 575730, 'it is at': 458878, 'is at around': 445855, 'at around 20': 98049, 'around 20 think': 93127, '20 think the': 13377, 'think the panel': 885646, 'the panel are': 863174, 'panel are possibly': 637165, 'are possibly under': 89155, 'possibly under calling': 665962, 'under calling it': 940027, 'calling it this': 156594, 'it this will': 461656, 'this will have': 891417, 'will have long': 993645, 'have long term': 381371, 'long term impact': 501692, 'term impact on': 838176, 'impact on brick': 417827, 'on brick mortar': 599701, 'brick mortar shopper': 139591, 'mortar shopper change': 541837, 'shopper change shopping': 761456, 'change shopping pattern': 172257, 'shopping pattern grocery': 763605, 'switch': 830466, 'local distillery': 497893, 'distillery switch': 247814, 'switch to': 830512, 'making and': 510958, 'and distributing': 61519, 'sanitizer during': 734797, 'during shortage': 263006, 'shortage cbc': 764882, 'local distillery switch': 497897, 'distillery switch to': 247815, 'switch to making': 830520, 'to making and': 909773, 'making and distributing': 510960, 'and distributing hand': 61521, 'hand sanitizer during': 375382, 'sanitizer during shortage': 734801, 'during shortage cbc': 263007, 'shortage cbc news': 764883, 'fucker': 339744, 'are elderly': 86102, 'elderly people': 270814, 'people amp': 646831, 'family not': 298084, 'not able': 568010, 'buy their': 149313, 'their grocery': 873443, 'grocery because': 364312, 'because people': 119466, 'are buying': 85111, 'buying every': 150246, 'every damn': 285783, 'damn thing': 225441, 'thing going': 884367, 'going some': 355465, 'some are': 782310, 'being greedy': 125193, 'greedy mother': 363550, 'mother fucker': 543099, 'fucker there': 339756, 'there not': 878855, 'shortage do': 764910, 'your normal': 1025026, 'normal shop': 567311, 'shop amp': 759833, 'amp think': 54690, 'there are elderly': 878099, 'are elderly people': 86106, 'elderly people amp': 270815, 'people amp family': 646833, 'amp family not': 53775, 'family not able': 298085, 'not able to': 568011, 'able to buy': 24457, 'to buy their': 902317, 'buy their grocery': 149316, 'their grocery because': 873445, 'grocery because people': 364315, 'because people are': 119468, 'people are buying': 646943, 'are buying every': 85116, 'buying every damn': 150247, 'every damn thing': 285785, 'damn thing going': 225443, 'thing going some': 884369, 'going some are': 355466, 'some are being': 782312, 'are being greedy': 84866, 'being greedy mother': 125199, 'greedy mother fucker': 363551, 'mother fucker there': 543102, 'fucker there not': 339757, 'there not food': 878860, 'not food shortage': 569474, 'food shortage do': 316567, 'shortage do your': 764912, 'do your normal': 250707, 'your normal shop': 1025031, 'normal shop amp': 567312, 'shop amp think': 759835, 'amp think of': 54691, 'embarrassing': 272445, 'charitable': 173539, 'thoughtful': 893340, 'generous': 345714, 'suppliesfor': 824646, 'it embarrassing': 457791, 'embarrassing to': 272454, 'the once': 862180, 'once charitable': 605606, 'charitable thoughtful': 173554, 'thoughtful and': 893345, 'and generous': 63524, 'generous people': 345727, 'this country': 886941, 'country take': 211098, 'take all': 831924, 'themselves there': 876901, 'there enough': 878354, 'food suppliesfor': 316924, 'suppliesfor everyone': 824647, 'to think': 917369, 'think more': 885401, 'others so': 621645, 'and stophoarding': 72494, 'it embarrassing to': 457793, 'embarrassing to see': 272455, 'see the once': 745867, 'the once charitable': 862181, 'once charitable thoughtful': 605607, 'charitable thoughtful and': 173555, 'thoughtful and generous': 893346, 'and generous people': 63525, 'generous people in': 345728, 'people in this': 648440, 'in this country': 429923, 'this country take': 886973, 'country take all': 211099, 'take all for': 831925, 'all for themselves': 42850, 'for themselves there': 326947, 'themselves there enough': 876902, 'there enough food': 878355, 'enough food suppliesfor': 277414, 'food suppliesfor everyone': 316925, 'suppliesfor everyone we': 824648, 'need to think': 556105, 'to think more': 917377, 'think more of': 885403, 'more of others': 539877, 'of others so': 587400, 'others so please': 621646, 'so please be': 778017, 'be kind and': 115611, 'kind and stophoarding': 474814, 'corporate': 207229, 'generation': 345597, 'mba': 522041, 'badged': 108132, 'consultant': 195856, 'private': 678857, 'equiteers': 279905, 'undermining': 940514, 'resilience': 714477, 'grabbing': 361578, 'ramping': 696479, 'corporate oz': 207319, 'oz is': 632743, 'in serious': 427814, 'serious trouble': 751501, 'trouble thanks': 932644, 'it trouble': 461858, 'trouble that': 932646, 'that ha': 844103, 'made worse': 508072, 'worse by': 1010893, 'by generation': 152667, 'generation of': 345630, 'of ceo': 581243, 'ceo director': 169686, 'director mba': 243639, 'mba badged': 522046, 'badged management': 108133, 'management consultant': 512554, 'consultant and': 195859, 'and private': 69521, 'private equiteers': 678898, 'equiteers undermining': 279906, 'undermining our': 940517, 'our resilience': 624609, 'resilience grabbing': 714483, 'grabbing short': 361588, 'term profit': 838245, 'profit and': 682651, 'and ramping': 69918, 'ramping up': 696480, 'up share': 945969, 'corporate oz is': 207320, 'oz is in': 632744, 'is in serious': 448812, 'in serious trouble': 427816, 'serious trouble thanks': 751502, 'trouble thanks to': 932645, 'thanks to covid': 842215, '19 but it': 5508, 'but it trouble': 146174, 'it trouble that': 461859, 'trouble that ha': 932647, 'that ha been': 844109, 'been made worse': 121514, 'made worse by': 508073, 'worse by generation': 1010897, 'by generation of': 152669, 'generation of ceo': 345631, 'of ceo director': 581244, 'ceo director mba': 169687, 'director mba badged': 243640, 'mba badged management': 522047, 'badged management consultant': 108134, 'management consultant and': 512555, 'consultant and private': 195861, 'and private equiteers': 69523, 'private equiteers undermining': 678899, 'equiteers undermining our': 279907, 'undermining our resilience': 940518, 'our resilience grabbing': 624610, 'resilience grabbing short': 714484, 'grabbing short term': 361589, 'short term profit': 764745, 'term profit and': 838246, 'profit and ramping': 682658, 'and ramping up': 69919, 'ramping up share': 696486, 'up share price': 945971, 'dobetter': 250729, 'yvr': 1027140, 'disgusting': 245384, 'yyc': 1027152, 'dobetter yvr': 250730, 'yvr these': 1027141, 'these ppl': 880509, 'ppl are': 668162, 'are disgusting': 85857, 'disgusting yyc': 245486, 'yyc do': 1027153, 'be like': 115725, 'like bc': 489878, 'dobetter yvr these': 250731, 'yvr these ppl': 1027142, 'these ppl are': 880510, 'ppl are disgusting': 668164, 'are disgusting yyc': 85859, 'disgusting yyc do': 245487, 'yyc do not': 1027154, 'do not be': 249676, 'not be like': 568414, 'be like bc': 115729, 'canonforcommunity': 162252, 'india am': 434287, 'am very': 50530, 'very happy': 955206, 'happy great': 377625, 'great job': 362779, 'job by': 465714, 'by india': 152906, 'india canonforcommunity': 434337, 'india am very': 434288, 'am very happy': 50534, 'very happy great': 955207, 'happy great job': 377626, 'great job by': 362783, 'job by india': 465716, 'by india canonforcommunity': 152907, 'creator': 216231, 'humanity is': 410742, 'about being': 24860, 'being creator': 125009, 'creator not': 216245, 'not fucking': 569543, 'fucking consumer': 339838, 'humanity is about': 410743, 'is about being': 445269, 'about being creator': 24864, 'being creator not': 125010, 'creator not fucking': 216246, 'not fucking consumer': 569544, 'sheikhhasina': 756659, 'bangladesh': 109499, 'urged': 948252, 'sheikhhasina prime': 756660, 'minister of': 533420, 'of bangladesh': 580535, 'bangladesh urged': 109508, 'urged everyone': 948255, 'everyone to': 287494, 'not hoard': 569976, 'hoard food': 398783, 'other essential': 620149, 'essential item': 281185, 'item out': 463542, 'panic the': 638679, 'country ha': 210705, 'ha enough': 370494, 'enough stock': 277631, 'stock of': 802513, 'of everything': 583264, 'everything detail': 287750, 'detail coronacrisis': 239183, 'stayathome stayhome': 797635, 'sheikhhasina prime minister': 756661, 'prime minister of': 678153, 'minister of bangladesh': 533422, 'of bangladesh urged': 580536, 'bangladesh urged everyone': 109509, 'urged everyone to': 948256, 'everyone to not': 287497, 'to not hoard': 910697, 'not hoard food': 569979, 'hoard food and': 398785, 'and other essential': 68317, 'other essential item': 620167, 'essential item out': 281222, 'item out of': 463543, 'out of panic': 626799, 'of panic the': 587736, 'panic the country': 638681, 'the country ha': 852089, 'country ha enough': 210712, 'ha enough stock': 370501, 'enough stock of': 277634, 'stock of everything': 802521, 'of everything detail': 583268, 'everything detail coronacrisis': 287751, 'detail coronacrisis stayathome': 239184, 'coronacrisis stayathome stayhome': 204771, 'prison': 678702, 'cuomo': 220393, 'pledged': 660862, 'prison worker': 678747, 'worker say': 1007737, 'not producing': 571102, 'producing hand': 680772, 'sanitizer like': 735286, 'like cuomo': 490085, 'cuomo pledged': 220416, 'pledged they': 660865, 'they would': 883933, 'prison worker say': 678748, 'worker say they': 1007742, 'say they re': 739346, 'they re not': 883080, 're not producing': 699114, 'not producing hand': 571103, 'producing hand sanitizer': 680773, 'hand sanitizer like': 375471, 'sanitizer like cuomo': 735288, 'like cuomo pledged': 490086, 'cuomo pledged they': 220417, 'pledged they would': 660866, '35k': 17975, 'coughed': 208592, 'twisted': 936599, 'prank': 668925, 'store throw': 810728, 'throw out': 895036, 'out 35k': 625539, '35k worth': 17980, 'that woman': 847637, 'woman coughed': 1003453, 'coughed on': 208617, 'in twisted': 430348, 'twisted prank': 936602, 'prank via': 668954, 'grocery store throw': 365864, 'store throw out': 810730, 'throw out 35k': 895039, 'out 35k worth': 625540, '35k worth of': 17981, 'worth of food': 1011408, 'food that woman': 317108, 'that woman coughed': 847638, 'woman coughed on': 1003454, 'coughed on in': 208628, 'on in twisted': 601540, 'in twisted prank': 430350, 'twisted prank via': 936605, 'analytics': 57205, 'damaging': 225268, 'electronics': 271275, 'semiconductor': 749631, 'globally': 352363, 'strategy analytics': 812598, 'analytics covid': 57220, '19 drive': 6653, 'drive recession': 259136, 'recession damaging': 704251, 'damaging automotive': 225269, 'automotive consumer': 104039, 'consumer electronics': 197329, 'electronics and': 271276, 'and semiconductor': 71244, 'semiconductor globally': 749634, 'globally automotive': 352374, 'automotive car': 104037, 'strategy analytics covid': 812601, 'analytics covid 19': 57221, 'covid 19 drive': 212986, '19 drive recession': 6657, 'drive recession damaging': 259137, 'recession damaging automotive': 704252, 'damaging automotive consumer': 225270, 'automotive consumer electronics': 104042, 'consumer electronics and': 197330, 'electronics and semiconductor': 271277, 'and semiconductor globally': 71245, 'semiconductor globally automotive': 749635, 'globally automotive car': 352375, 'wholesaler': 990502, 'diy': 248725, 'diymask': 248791, 'staysafeathome': 798967, 'facecover': 295009, 'organized': 619472, 'stayorganized': 798757, 'masks4all': 519661, 'laprotects': 479539, 'maskmabuti': 519652, 'yourself hand': 1026632, 'sanitizer wholesaler': 736095, 'wholesaler should': 990529, 'should contact': 765869, 'contact diy': 200067, 'diy mask': 248751, 'mask diymask': 518579, 'diymask staysafe': 248792, 'staysafe staysafeathome': 798915, 'staysafeathome stayhome': 798968, 'stayhome facecover': 797998, 'facecover organized': 295010, 'organized stayorganized': 619477, 'stayorganized quarantine': 798758, 'quarantine quarantinelife': 692470, 'quarantinelife masks4all': 692973, 'masks4all laprotects': 519662, 'laprotects maskmabuti': 479540, 'maskmabuti handsanitizer': 519653, 'protect yourself hand': 685095, 'yourself hand sanitizer': 1026633, 'hand sanitizer wholesaler': 375666, 'sanitizer wholesaler should': 736096, 'wholesaler should contact': 990530, 'should contact diy': 765870, 'contact diy mask': 200068, 'diy mask diymask': 248754, 'mask diymask staysafe': 518580, 'diymask staysafe staysafeathome': 248793, 'staysafe staysafeathome stayhome': 798916, 'staysafeathome stayhome facecover': 798969, 'stayhome facecover organized': 797999, 'facecover organized stayorganized': 295011, 'organized stayorganized quarantine': 619478, 'stayorganized quarantine quarantinelife': 798759, 'quarantine quarantinelife masks4all': 692473, 'quarantinelife masks4all laprotects': 692974, 'masks4all laprotects maskmabuti': 519663, 'laprotects maskmabuti handsanitizer': 479541, 'user': 950258, 'or he': 615600, 'he just': 385162, 'just gave': 468790, 'gave all': 344593, 'all future': 42899, 'future user': 342502, 'user of': 950304, 'that sanitizer': 846111, 'sanitizer the': 735868, 'or he just': 615601, 'he just gave': 385165, 'just gave all': 468791, 'gave all future': 344594, 'all future user': 42900, 'future user of': 342503, 'user of that': 950306, 'of that sanitizer': 590741, 'that sanitizer the': 846112, 'fit': 309456, 'supermarketsweep': 824250, 'mothersday2020': 543240, 'did another': 240549, 'another food': 77620, 'food drop': 314297, 'drop today': 260432, 'today supermarket': 920231, 'wa full': 962178, 'food guess': 314734, 'guess people': 368024, 'people just': 648553, 'just can': 468426, 'can fit': 158350, 'fit one': 309490, 'one more': 606685, 'item into': 463380, 'into their': 443190, 'their already': 872490, 'already rammed': 47604, 'rammed fridge': 696417, 'fridge panicbuying': 333418, 'panicbuying supermarketsweep': 639069, 'supermarketsweep mothersday2020': 824261, 'did another food': 240550, 'another food drop': 77621, 'food drop today': 314299, 'drop today supermarket': 260433, 'today supermarket wa': 920236, 'supermarket wa full': 823698, 'wa full of': 962179, 'full of food': 340723, 'of food guess': 583701, 'food guess people': 314736, 'guess people just': 368025, 'people just can': 648556, 'just can fit': 468428, 'can fit one': 158351, 'fit one more': 309491, 'one more item': 606690, 'more item into': 539633, 'item into their': 463381, 'into their already': 443191, 'their already rammed': 872491, 'already rammed fridge': 47605, 'rammed fridge panicbuying': 696418, 'fridge panicbuying supermarketsweep': 333419, 'panicbuying supermarketsweep mothersday2020': 639070, 'account': 28620, 'emptying': 275254, 'paint': 634274, 'bleak': 132543, 'beyond': 129121, 'sensational': 750475, 'pull': 688846, 'becomes': 120193, 'norm': 567027, 'account of': 28726, 'people emptying': 647781, 'emptying supermarket': 275288, 'shelf paint': 757394, 'paint bleak': 634277, 'bleak image': 132548, 'of humanity': 584880, 'humanity during': 410719, 'outbreak but': 628057, 'but beyond': 145298, 'beyond the': 129242, 'the sensational': 866713, 'sensational story': 750476, 'story most': 812044, 'most people': 542609, 'people want': 650139, 'to pull': 912491, 'pull together': 688888, 'together social': 920939, 'distancing becomes': 247036, 'becomes the': 120256, 'the norm': 861852, 'norm here': 567037, 'are 10': 84095, '10 tip': 1723, 'tip to': 898922, 'to boost': 901912, 'boost solidarity': 135015, 'account of people': 28730, 'of people emptying': 587905, 'people emptying supermarket': 647782, 'emptying supermarket shelf': 275289, 'supermarket shelf paint': 822507, 'shelf paint bleak': 757395, 'paint bleak image': 634278, 'bleak image of': 132549, 'image of humanity': 416649, 'of humanity during': 584885, 'humanity during the': 410720, '19 outbreak but': 9090, 'outbreak but beyond': 628060, 'but beyond the': 145300, 'beyond the sensational': 129249, 'the sensational story': 866714, 'sensational story most': 750477, 'story most people': 812045, 'most people want': 542631, 'people want to': 650140, 'want to pull': 966094, 'to pull together': 912499, 'pull together social': 688890, 'together social distancing': 920940, 'social distancing becomes': 779567, 'distancing becomes the': 247038, 'becomes the norm': 120260, 'the norm here': 861854, 'norm here are': 567038, 'here are 10': 392730, 'are 10 tip': 84098, '10 tip to': 1724, 'tip to boost': 898924, 'to boost solidarity': 901931, 'newhampshire': 560073, 'in newhampshire': 425841, 'newhampshire will': 560074, 'will no': 994180, 'no longer': 564623, 'longer be': 501933, 'take their': 832687, 'their reusable': 874587, 'reusable bag': 720143, 'other store': 620977, 'good idea': 357205, 'shopper in newhampshire': 761563, 'in newhampshire will': 425842, 'newhampshire will no': 560075, 'will no longer': 994181, 'no longer be': 564638, 'longer be able': 501934, 'be able to': 113444, 'able to take': 24557, 'to take their': 916245, 'take their reusable': 832692, 'their reusable bag': 874588, 'reusable bag to': 720150, 'the supermarket or': 868731, 'supermarket or other': 821826, 'or other store': 616451, 'other store do': 620983, 'store do you': 807336, 'you think this': 1021681, 'this is good': 888271, 'is good idea': 448144, 'shoutout': 766804, 'shoutout to': 766807, '19 gas': 7182, 'the all': 848580, 'time low': 897160, 'low stay': 505639, 'shoutout to covid': 766809, 'covid 19 gas': 213138, '19 gas price': 7183, 'gas price are': 343931, 'price are at': 672635, 'at the all': 100876, 'the all time': 848586, 'all time low': 45222, 'time low stay': 897167, 'low stay safe': 505640, 'variable': 952526, 'covid19': 214258, 'greatly': 363304, 'banish': 109526, 'wave': 969341, 'banishthebeast': 109529, 'science remember': 742126, 'remember the': 710299, 'the variable': 870640, 'variable hand': 952529, 'sanitizer wa': 736018, 'in play': 426789, 'play when': 659248, 'fight began': 304675, 'began against': 123372, 'against covid19': 37404, 'covid19 hand': 214309, 'sanitizer is': 735179, 'is greatly': 448217, 'greatly needed': 363325, 'needed the': 556517, 'the curve': 852681, 'curve start': 221892, 'start it': 794352, 'it decline': 457493, 'decline banish': 231307, 'banish the': 109527, '2nd wave': 16809, 'wave banishthebeast': 969342, 'science remember the': 742127, 'remember the variable': 710324, 'the variable hand': 870641, 'variable hand sanitizer': 952530, 'hand sanitizer wa': 375646, 'sanitizer wa in': 736021, 'wa in play': 962380, 'in play when': 426793, 'play when the': 659249, 'when the fight': 984152, 'the fight began': 855164, 'fight began against': 304676, 'began against covid19': 123373, 'against covid19 hand': 37407, 'covid19 hand sanitizer': 214310, 'hand sanitizer is': 375458, 'sanitizer is greatly': 735192, 'is greatly needed': 448218, 'greatly needed the': 363326, 'needed the curve': 556519, 'the curve start': 852704, 'curve start it': 221893, 'start it decline': 794353, 'it decline banish': 457494, 'decline banish the': 231308, 'banish the 2nd': 109528, 'the 2nd wave': 848078, '2nd wave banishthebeast': 16810, 'coupon': 211742, 'added': 31541, 'emptive': 274726, 'eh': 270130, 'dollywood': 253142, 'thesmokies': 881032, 'new coupon': 558559, 'coupon and': 211745, 'and discount': 61408, 'discount just': 244486, 'just added': 468150, 'added might': 31580, 'might well': 531167, 'well do': 978168, 'do little': 249566, 'little pre': 495531, 'pre emptive': 669165, 'emptive online': 274727, 'shopping while': 764394, 'while everyone': 986805, 'everyone stuck': 287431, 'home eh': 401129, 'eh discount': 270131, 'discount coupon': 244462, 'coupon dollywood': 211759, 'dollywood thesmokies': 253143, 'new coupon and': 558560, 'coupon and discount': 211746, 'and discount just': 61409, 'discount just added': 244487, 'just added might': 468153, 'added might well': 31581, 'might well do': 531168, 'well do little': 978169, 'do little pre': 249567, 'little pre emptive': 495532, 'pre emptive online': 669166, 'emptive online shopping': 274728, 'online shopping while': 609343, 'shopping while everyone': 764395, 'while everyone stuck': 986809, 'everyone stuck at': 287432, 'at home eh': 98984, 'home eh discount': 401130, 'eh discount coupon': 270132, 'discount coupon dollywood': 244463, 'coupon dollywood thesmokies': 211760, 'timeline': 898456, 'eventual': 285128, 'indicator': 435043, 'improvement': 419574, 'tuned': 935427, 'sentiment update': 751021, 'update the': 947244, 'the timeline': 869637, 'timeline for': 898461, 'for going': 321914, 'going back': 355044, 'to normal': 910637, 'normal ha': 567168, 'ha extended': 370572, 'extended the': 293194, 'the eventual': 854608, 'eventual shift': 285135, 'shift toward': 758452, 'toward greater': 927122, 'greater consumer': 363162, 'consumer optimism': 198275, 'optimism will': 613923, 'be leading': 115681, 'leading indicator': 483717, 'indicator of': 435046, 'the economy': 853929, 'economy improvement': 267957, 'improvement stay': 419585, 'stay tuned': 797360, 'tuned for': 935432, 'more this': 540736, '19 consumer sentiment': 5985, 'consumer sentiment update': 198934, 'sentiment update the': 751022, 'update the timeline': 947259, 'the timeline for': 869638, 'timeline for going': 898463, 'for going back': 321915, 'going back to': 355047, 'back to normal': 107381, 'to normal ha': 910647, 'normal ha extended': 567169, 'ha extended the': 370573, 'extended the eventual': 293195, 'the eventual shift': 854612, 'eventual shift toward': 285136, 'shift toward greater': 758454, 'toward greater consumer': 927123, 'greater consumer optimism': 363163, 'consumer optimism will': 198277, 'optimism will be': 613924, 'will be leading': 992533, 'be leading indicator': 115682, 'leading indicator of': 483718, 'indicator of the': 435049, 'of the economy': 590973, 'the economy improvement': 853981, 'economy improvement stay': 267958, 'improvement stay tuned': 419586, 'stay tuned for': 797363, 'tuned for more': 935438, 'for more this': 323602, 'more this week': 540740, 'shankar': 754812, 'stranded': 812344, 'evicted': 288301, 'accommodation': 28442, 'rescued': 713639, 'shankar stranded': 754813, 'stranded in': 812353, 'in evicted': 422705, 'evicted from': 288302, 'from accommodation': 334378, 'accommodation no': 28460, 'no no': 564872, 'no due': 564067, 'to when': 918532, 'when will': 984496, 'be rescued': 116820, 'rescued from': 713640, 'shankar stranded in': 754814, 'stranded in evicted': 812355, 'in evicted from': 422706, 'evicted from accommodation': 288303, 'from accommodation no': 334379, 'accommodation no no': 28461, 'no no due': 564874, 'no due to': 564068, 'due to when': 262024, 'to when will': 918534, 'when will be': 984498, 'will be rescued': 992647, 'be rescued from': 116821, 'obvious': 578780, 'the obvious': 862017, 'obvious toilet': 578811, 'paper what': 641074, 'what have': 981574, 'you had': 1018981, 'had trouble': 373762, 'trouble find': 932605, 'find at': 306816, 'besides the obvious': 127526, 'the obvious toilet': 862022, 'obvious toilet paper': 578812, 'toilet paper what': 921523, 'paper what have': 641076, 'what have you': 981582, 'have you had': 383672, 'you had trouble': 1018987, 'had trouble find': 373763, 'trouble find at': 932606, 'find at the': 306817, 'eldon': 270980, 'kinkora': 475372, 'morell': 541050, 'beat': 118504, 'queuing': 694189, 'it nice': 459799, 'nice day': 562385, 'day for': 227615, 'drive to': 259215, 'an agency': 55186, 'agency store': 38075, 'place like': 657548, 'like eldon': 490161, 'eldon kinkora': 270981, 'kinkora or': 475373, 'or morell': 616190, 'morell beat': 541051, 'beat queuing': 118547, 'it nice day': 459802, 'nice day for': 562386, 'day for people': 227628, 'for people to': 324466, 'people to drive': 649895, 'to drive to': 904749, 'drive to an': 259217, 'to an agency': 900437, 'an agency store': 55188, 'agency store in': 38076, 'store in place': 808373, 'in place like': 426744, 'place like eldon': 657552, 'like eldon kinkora': 490162, 'eldon kinkora or': 270982, 'kinkora or morell': 475374, 'or morell beat': 616191, 'morell beat queuing': 541052, 'coronavtj': 207126, 'opinion coronavirus': 613457, 'coronavirus advice': 205454, 'advice from': 33379, 'from grocery': 335699, 'worker coronavtj': 1006701, 'opinion coronavirus advice': 613458, 'coronavirus advice from': 205456, 'advice from grocery': 33386, 'from grocery store': 335701, 'store worker coronavtj': 811473, 'the shortage': 867087, 'of key': 585609, 'key medical': 473344, 'medical equipment': 526145, 'equipment is': 279761, 'is driving': 447379, 'driving up': 260032, 'price pricegouging': 675995, 'pricegouging via': 677872, 'the shortage of': 867096, 'shortage of key': 765119, 'of key medical': 585614, 'key medical equipment': 473345, 'medical equipment is': 526153, 'equipment is driving': 279764, 'is driving up': 447393, 'driving up price': 260034, 'up price pricegouging': 945831, 'price pricegouging via': 675997, 'regained': 707118, 'strength': 813212, 'been wanting': 122343, 'wanting to': 966297, 'this for': 887582, 'for few': 321447, 'few day': 303762, 'day now': 228032, 'today my': 919898, 'my arm': 547308, 'arm finally': 92892, 'finally regained': 306082, 'regained the': 707121, 'the strength': 868263, 'strength the': 813232, 'the do': 853447, 'it toiletpaper': 461779, 'been wanting to': 122344, 'wanting to make': 966309, 'make this for': 510640, 'this for few': 887591, 'for few day': 321450, 'few day now': 303785, 'day now and': 228034, 'now and today': 574064, 'and today my': 74225, 'today my arm': 919900, 'my arm finally': 547309, 'arm finally regained': 92893, 'finally regained the': 306083, 'regained the strength': 707122, 'the strength the': 868265, 'strength the do': 813233, 'the do it': 853449, 'do it toiletpaper': 249521, 'lummi': 506676, '19 response': 10138, 'response lummi': 715751, 'lummi market': 506677, 'market offer': 516782, 'offer online': 594721, 'shopping new': 763320, 'new stock': 559656, 'stock store': 802890, 'store change': 806943, 'change stock': 172265, 'in response': 427417, 'covid 19 response': 213702, '19 response lummi': 10154, 'response lummi market': 715752, 'lummi market offer': 506678, 'market offer online': 516783, 'offer online shopping': 594726, 'online shopping new': 609194, 'shopping new stock': 763322, 'new stock store': 559662, 'stock store change': 802891, 'store change stock': 806946, 'change stock and': 172266, 'stock and offer': 801821, 'and offer online': 67971, 'online shopping in': 609152, 'shopping in response': 762985, 'in response to': 427421, 'mothersday': 543231, 'unable': 939317, 'pushed': 690351, 'happy mothersday': 377660, 'mothersday but': 543232, 'but my': 146426, 'mum who': 545975, 'work nurse': 1005511, 'nurse in': 577380, 'nh ha': 561967, 'been unable': 122281, 'unable to': 939318, 'get our': 347721, 'our regular': 624572, 'regular shopping': 707864, 'shopping because': 762173, 'because nh': 119274, 'nh worker': 562168, 'being pushed': 125610, 'pushed out': 690378, 'of early': 582910, 'early queue': 264672, 'queue in': 693955, 'and online': 68099, 'online there': 609544, 'are delivery': 85769, 'slot at': 774122, 'at all': 97865, 'all not': 43657, 'even for': 284076, 'the april': 848838, 'happy mothersday but': 377661, 'mothersday but my': 543233, 'but my mum': 146437, 'my mum who': 549391, 'mum who work': 545980, 'who work nurse': 990040, 'work nurse in': 1005512, 'nurse in the': 577385, 'in the nh': 429396, 'the nh ha': 861742, 'nh ha been': 561968, 'ha been unable': 369967, 'been unable to': 122282, 'unable to get': 939331, 'to get our': 906551, 'get our regular': 347730, 'our regular shopping': 624574, 'regular shopping because': 707865, 'shopping because nh': 762176, 'because nh worker': 119275, 'nh worker are': 562174, 'worker are being': 1006372, 'are being pushed': 84900, 'being pushed out': 125614, 'pushed out of': 690379, 'out of early': 626724, 'of early queue': 582912, 'early queue in': 264673, 'queue in supermarket': 693961, 'supermarket and online': 819030, 'and online there': 68126, 'online there are': 609545, 'there are delivery': 878091, 'are delivery slot': 85770, 'delivery slot at': 234507, 'slot at all': 774123, 'at all not': 97898, 'all not even': 43658, 'not even for': 569245, 'even for the': 284082, 'for the end': 326410, 'end of the': 275918, 'of the april': 590796, 'east': 265277, 'exporter': 292741, 'plunging': 661512, 'glut': 353093, 'imfblog': 416914, 'middle east': 530641, 'east and': 265289, 'and central': 59673, 'central asia': 169365, 'asia oil': 95207, 'oil exporter': 596778, 'exporter face': 292749, 'of plunging': 588177, 'plunging oil': 661541, 'and glut': 63759, 'glut in': 353103, 'in supply': 428725, 'supply on': 825660, 'on top': 604805, 'top of': 925630, 'of more': 586640, 'more on': 539910, 'on imfblog': 601490, 'middle east and': 530645, 'east and central': 265291, 'and central asia': 59674, 'central asia oil': 169366, 'asia oil exporter': 95208, 'oil exporter face': 596779, 'exporter face the': 292750, 'whammy of plunging': 980942, 'of plunging oil': 588180, 'plunging oil price': 661543, 'oil price and': 597047, 'price and glut': 672427, 'and glut in': 63760, 'glut in supply': 353105, 'in supply on': 428733, 'supply on top': 825664, 'on top of': 604808, 'top of more': 925638, 'of more on': 586647, 'more on imfblog': 539922, 'significantly': 769541, 'auto': 103862, 'premium': 669939, 'reflect': 706597, 'help canadian': 389478, 'canadian cope': 160660, 'the financial': 855208, 'financial impact': 306446, '19 insurance': 7896, 'insurance company': 440695, 'helping consumer': 391294, 'consumer whose': 199533, 'whose driving': 990631, 'driving habit': 259944, 'habit have': 372626, 'have changed': 379930, 'changed significantly': 172540, 'significantly by': 769552, 'by offering': 153396, 'offering reduction': 595227, 'reduction in': 706354, 'in auto': 420632, 'auto premium': 103911, 'premium to': 669977, 'to reflect': 913063, 'reflect this': 706633, 'this reduced': 889843, 'reduced risk': 706164, 'to help canadian': 907473, 'help canadian cope': 389479, 'canadian cope with': 160661, 'cope with the': 203360, 'with the financial': 1001305, 'the financial impact': 855217, 'financial impact of': 306450, 'impact of covid': 417765, 'covid 19 insurance': 213279, '19 insurance company': 7899, 'insurance company are': 440696, 'company are helping': 190428, 'are helping consumer': 87091, 'helping consumer whose': 391296, 'consumer whose driving': 199535, 'whose driving habit': 990632, 'driving habit have': 259945, 'habit have changed': 372627, 'have changed significantly': 379942, 'changed significantly by': 172541, 'significantly by offering': 769553, 'by offering reduction': 153401, 'offering reduction in': 595228, 'reduction in auto': 706355, 'in auto premium': 420634, 'auto premium to': 103912, 'premium to reflect': 669979, 'to reflect this': 913071, 'reflect this reduced': 706634, 'this reduced risk': 889844, 'spark': 787530, 'zealand': 1027267, 'mon': 536184, '60': 20857, 'removing': 710893, 'overage': 630982, 'broadband': 140712, 'applies': 82515, 'support spark': 826830, 'spark business': 787531, 'business customer': 143606, 'customer and': 222065, 'and new': 67545, 'new zealand': 559976, 'zealand during': 1027276, '19 from': 7113, 'from mon': 336460, 'mon 23': 536185, '23 march': 15405, 'march for': 515365, 'an initial': 56339, 'initial 60': 438511, '60 day': 20923, 'day period': 228210, 'period we': 651917, 're removing': 699377, 'removing overage': 710909, 'overage charge': 630983, 'charge for': 173231, 'for customer': 320502, 'customer who': 223071, 'on data': 600213, 'data capped': 226163, 'capped broadband': 162870, 'broadband plan': 140726, 'plan this': 658259, 'this applies': 886392, 'applies to': 82531, 'to both': 901951, 'both small': 136051, 'small and': 774787, 'and medium': 66918, 'medium business': 527028, 'consumer customer': 197039, 'to support spark': 915969, 'support spark business': 826831, 'spark business customer': 787532, 'business customer and': 143608, 'customer and new': 222090, 'and new zealand': 67565, 'new zealand during': 559981, 'zealand during covid': 1027277, 'covid 19 from': 213125, '19 from mon': 7128, 'from mon 23': 336461, 'mon 23 march': 536186, '23 march for': 15406, 'march for an': 515366, 'for an initial': 319301, 'an initial 60': 56342, 'initial 60 day': 438512, '60 day period': 20931, 'day period we': 228214, 'period we re': 651919, 'we re removing': 972950, 're removing overage': 699378, 'removing overage charge': 710910, 'overage charge for': 630985, 'charge for customer': 173235, 'for customer who': 320515, 'customer who are': 223073, 'who are on': 988183, 'are on data': 88719, 'on data capped': 600214, 'data capped broadband': 226164, 'capped broadband plan': 162871, 'broadband plan this': 140727, 'plan this applies': 658260, 'this applies to': 886393, 'applies to both': 82534, 'to both small': 901953, 'both small and': 136052, 'small and medium': 774788, 'and medium business': 66920, 'medium business and': 527029, 'business and consumer': 143293, 'and consumer customer': 60368, 'hated': 378946, 'clarify': 180073, 'soul': 786219, 'always hated': 49605, 'hated working': 378953, 'in grocery': 423437, 'but today': 147597, 'today would': 920576, 'would like': 1011990, 'to clarify': 902795, 'clarify something': 180081, 'something really': 785029, 'really freaking': 702210, 'freaking hate': 331535, 'hate working': 378939, 'store help': 808133, 'help my': 390118, 'my poor': 549806, 'poor soul': 664290, 'soul trying': 786237, 'survive through': 829275, 'through all': 894306, 'all that': 44628, 'that toilet': 847075, 'always hated working': 49606, 'hated working in': 378954, 'working in grocery': 1008714, 'in grocery store': 423443, 'store but today': 806814, 'but today would': 147610, 'today would like': 920578, 'would like to': 1011998, 'like to clarify': 491581, 'to clarify something': 902798, 'clarify something really': 180082, 'something really freaking': 785030, 'really freaking hate': 702211, 'freaking hate working': 331536, 'hate working in': 378940, 'grocery store help': 365460, 'store help my': 808136, 'help my poor': 390128, 'my poor soul': 549810, 'poor soul trying': 664291, 'soul trying to': 786238, 'trying to survive': 934884, 'to survive through': 916052, 'survive through all': 829276, 'through all that': 894307, 'all that toilet': 44647, 'that toilet paper': 847076, 'editor': 268652, 'recycling': 705540, 'tudball': 935078, 'virgin': 957643, 'rpet': 726662, 'video senior': 956886, 'senior editor': 750290, 'editor for': 268653, 'for recycling': 325039, 'recycling matt': 705547, 'matt tudball': 520532, 'tudball discus': 935079, 'discus the': 244907, 'the challenge': 850636, 'challenge the': 171568, 'the pet': 863607, 'pet market': 653416, 'market is': 516611, 'is facing': 447688, 'facing in': 295497, 'in europe': 422628, 'europe in': 283456, 'coronavirus problem': 206592, 'problem include': 679563, 'include supply': 431632, 'supply logistics': 825519, 'logistics issue': 500765, 'issue and': 455663, 'and low': 66436, 'low virgin': 505719, 'virgin pet': 957646, 'pet price': 653436, 'price icis': 674609, 'icis outlook': 412767, 'outlook rpet': 629182, 'rpet pet': 726663, 'video senior editor': 956887, 'senior editor for': 750291, 'editor for recycling': 268654, 'for recycling matt': 325040, 'recycling matt tudball': 705548, 'matt tudball discus': 520533, 'tudball discus the': 935080, 'discus the challenge': 244909, 'the challenge the': 850652, 'challenge the pet': 171573, 'the pet market': 863609, 'pet market is': 653417, 'market is facing': 516626, 'is facing in': 447696, 'facing in europe': 295498, 'in europe in': 422640, 'europe in light': 283458, 'the coronavirus problem': 851892, 'coronavirus problem include': 206593, 'problem include supply': 679564, 'include supply logistics': 431633, 'supply logistics issue': 825520, 'logistics issue and': 500766, 'issue and low': 455667, 'and low virgin': 66448, 'low virgin pet': 505720, 'virgin pet price': 957647, 'pet price icis': 653437, 'price icis outlook': 674610, 'icis outlook rpet': 412768, 'outlook rpet pet': 629183, 'arent': 92613, 'sex': 754193, 'toy': 927658, 'adulttoymegastore': 32879, 'lubricant': 506421, 'vibrator': 956413, 'battery': 112753, 'ppl arent': 668180, 'arent just': 92622, 'just stocking': 469904, 'stocking up': 803613, 'food etc': 314394, 'no wonder': 565909, 'wonder toilet': 1004001, 'paper is': 640347, 'on high': 601294, 'high demand': 394987, 'demand last': 235790, 'last week': 480624, 'week sex': 976857, 'sex toy': 754202, 'toy business': 927670, 'business adulttoymegastore': 143237, 'adulttoymegastore also': 32880, 'also reported': 48788, 'reported surge': 712532, 'surge in': 828177, 'in lubricant': 424956, 'lubricant vibrator': 506422, 'vibrator and': 956414, 'and battery': 58739, 'battery purchase': 112758, 'purchase covid': 689412, '19 spread': 10738, 'spread around': 790430, 'ppl arent just': 668181, 'arent just stocking': 92623, 'just stocking up': 469905, 'stocking up on': 803623, 'on food etc': 600863, 'food etc no': 314402, 'etc no wonder': 282673, 'no wonder toilet': 565917, 'wonder toilet paper': 1004002, 'toilet paper is': 921323, 'paper is on': 640359, 'is on high': 450468, 'on high demand': 601296, 'high demand last': 395016, 'demand last week': 235793, 'last week sex': 480676, 'week sex toy': 976858, 'sex toy business': 754203, 'toy business adulttoymegastore': 927671, 'business adulttoymegastore also': 143238, 'adulttoymegastore also reported': 32881, 'also reported surge': 48789, 'reported surge in': 712533, 'surge in lubricant': 828196, 'in lubricant vibrator': 424957, 'lubricant vibrator and': 506423, 'vibrator and battery': 956415, 'and battery purchase': 58740, 'battery purchase covid': 112759, 'purchase covid 19': 689413, 'covid 19 spread': 213847, '19 spread around': 10741, 'spread around the': 790433, 'requires': 713450, 'location': 498833, 'poi': 662393, 'mapping': 514960, 'quickly find': 694526, 'find other': 307121, 'supermarket if': 820827, 'if your': 415567, 'supply or': 825680, 'or search': 616984, 'search for': 743240, 'for hospital': 322362, 'and pharmacy': 68961, 'pharmacy if': 654350, 'coronavirus requires': 206649, 'requires medical': 713480, 'medical service': 526374, 'service type': 753015, 'type in': 937538, 'your location': 1024730, 'location grocery': 498908, 'grocery medicine': 364721, 'medicine data': 526758, 'data poi': 226341, 'poi mapping': 662394, 'quickly find other': 694527, 'find other supermarket': 307122, 'other supermarket if': 621017, 'supermarket if your': 820841, 'if your local': 415591, 'your local store': 1024720, 'local store is': 498466, 'store is out': 808512, 'is out of': 450665, 'out of supply': 626847, 'of supply or': 590492, 'supply or search': 825689, 'or search for': 616985, 'search for hospital': 743250, 'for hospital and': 322364, 'hospital and pharmacy': 404285, 'and pharmacy if': 68972, 'pharmacy if the': 654352, 'if the coronavirus': 414963, 'the coronavirus requires': 851899, 'coronavirus requires medical': 206650, 'requires medical service': 713481, 'medical service type': 526378, 'service type in': 753016, 'type in your': 937540, 'in your location': 431104, 'your location grocery': 1024732, 'location grocery medicine': 498909, 'grocery medicine data': 364722, 'medicine data poi': 526759, 'data poi mapping': 226342, 'rover': 726556, 'velar': 954309, 'replacement': 711608, 'engine': 276930, 'unbeatable': 939494, 'rangerover': 696753, 'uklockdownnow': 939019, 'we carry': 971106, 'carry the': 165153, 'the largest': 858955, 'largest stock': 480025, 'of range': 588736, 'range rover': 696734, 'rover velar': 726559, 'velar replacement': 954310, 'replacement engine': 711612, 'engine on': 276940, 'on unbeatable': 604952, 'unbeatable price': 939495, 'price contact': 673219, 'contact today': 200244, 'today at': 919262, 'at rangerover': 100248, 'rangerover velar': 696754, 'velar uklockdownnow': 954312, 'we carry the': 971108, 'carry the largest': 165155, 'the largest stock': 858980, 'largest stock of': 480026, 'stock of range': 802539, 'of range rover': 588738, 'range rover velar': 696736, 'rover velar replacement': 726560, 'velar replacement engine': 954311, 'replacement engine on': 711613, 'engine on unbeatable': 276941, 'on unbeatable price': 604953, 'unbeatable price contact': 939496, 'price contact today': 673221, 'contact today at': 200245, 'today at rangerover': 919281, 'at rangerover velar': 100249, 'rangerover velar uklockdownnow': 696755, 'downturn': 257783, 'nature': 552937, 'unlikely': 942740, 'negotiation': 556948, 'contract': 201626, 'the downturn': 853637, 'downturn in': 257802, 'is short': 451876, 'term in': 838181, 'in nature': 425692, 'nature that': 552993, 'that may': 845071, 'may last': 521314, 'last for': 480226, 'for month': 323504, 'month not': 537884, 'not year': 572587, 'year such': 1014978, 'such it': 816583, 'is unlikely': 453525, 'unlikely to': 942761, 'to affect': 900142, 'affect negotiation': 34190, 'negotiation for': 556951, 'term contract': 838099, 'contract which': 201718, 'which average': 985705, 'average around': 104809, 'around 10': 93093, '10 year': 1764, 'the downturn in': 853638, 'downturn in price': 257803, 'in price is': 426972, 'price is short': 674888, 'is short term': 451880, 'short term in': 764741, 'term in nature': 838184, 'in nature that': 425696, 'nature that may': 552994, 'that may last': 845082, 'may last for': 521315, 'last for month': 480229, 'for month not': 323532, 'month not year': 537885, 'not year such': 572589, 'year such it': 1014979, 'such it is': 816584, 'it is unlikely': 459116, 'is unlikely to': 453527, 'unlikely to affect': 942762, 'to affect negotiation': 900148, 'affect negotiation for': 34191, 'negotiation for long': 556952, 'for long term': 323087, 'long term contract': 501678, 'term contract which': 838103, 'contract which average': 201719, 'which average around': 985706, 'average around 10': 104810, 'around 10 year': 93098, '200330': 13611, 'flight': 310415, 'club': 184396, 'wechat': 975537, 'talked': 833928, 'sneaker': 776197, 'resell': 713959, 'dropped': 260498, 'rapidly': 696947, 'jumped': 467914, '200330 flight': 13612, 'flight club': 310455, 'club china': 184421, 'china wechat': 177054, 'wechat article': 975538, 'article talked': 94475, 'talked about': 833929, 'current situation': 221356, 'situation of': 772409, 'of sneaker': 589797, 'sneaker resell': 776202, 'resell market': 713966, 'market because': 516092, '19 effect': 6722, 'effect most': 269034, 'the sneaker': 867386, 'sneaker price': 776200, 'price dropped': 673586, 'dropped down': 260557, 'down rapidly': 257136, 'rapidly but': 696960, 'but lay': 146248, 'lay co': 482589, 'branded one': 138096, 'one jumped': 606545, '200330 flight club': 13613, 'flight club china': 310456, 'club china wechat': 184422, 'china wechat article': 177055, 'wechat article talked': 975539, 'article talked about': 94476, 'talked about the': 833934, 'about the current': 26368, 'the current situation': 852665, 'current situation of': 221369, 'situation of sneaker': 772418, 'of sneaker resell': 589798, 'sneaker resell market': 776203, 'resell market because': 713967, 'market because of': 516094, 'covid 19 effect': 213008, '19 effect most': 6724, 'effect most of': 269035, 'of the sneaker': 591472, 'the sneaker price': 867387, 'sneaker price dropped': 776201, 'price dropped down': 673589, 'dropped down rapidly': 260558, 'down rapidly but': 257137, 'rapidly but lay': 696961, 'but lay co': 146249, 'lay co branded': 482590, 'co branded one': 184819, 'branded one jumped': 138097, 'settled': 753700, 'dinner': 243044, 'hungry': 411220, 'nothing in': 573046, 'the fridge': 855807, 'fridge nothing': 333413, 'so we': 778653, 'we settled': 973213, 'settled for': 753706, 'for meal': 323351, 'meal deal': 524123, 'deal for': 229397, 'for dinner': 320715, 'dinner and': 243047, 'and now': 67819, 'now hungry': 574959, 'hungry coronacrisis': 411235, 'nothing in the': 573051, 'in the fridge': 429219, 'the fridge nothing': 855816, 'fridge nothing in': 333414, 'the supermarket so': 868810, 'supermarket so we': 822746, 'so we settled': 778683, 'we settled for': 973214, 'settled for meal': 753707, 'for meal deal': 323353, 'meal deal for': 524125, 'deal for dinner': 229399, 'for dinner and': 320716, 'dinner and now': 243049, 'and now hungry': 67843, 'now hungry coronacrisis': 574960, 'humane': 410671, 'hsec': 409735, 'mission': 534337, 'the humane': 857727, 'humane society': 410674, 'society of': 781279, 'of eastern': 582930, 'eastern carolina': 265579, 'carolina hsec': 164842, 'hsec is': 409736, 'is taking': 452529, 'help prevent': 390340, 'prevent the': 671725, '19 while': 12043, 'while continuing': 986708, 'continuing it': 201530, 'it mission': 459642, 'mission to': 534377, 'find forever': 306914, 'forever home': 329123, 'the animal': 848744, 'animal in': 76610, 'it care': 457063, 'the humane society': 857729, 'humane society of': 410676, 'society of eastern': 781280, 'of eastern carolina': 582932, 'eastern carolina hsec': 265580, 'carolina hsec is': 164843, 'hsec is taking': 409737, 'is taking step': 452564, 'step to help': 799651, 'to help prevent': 907591, 'help prevent the': 390349, 'prevent the spread': 671735, 'covid 19 while': 214070, '19 while continuing': 12045, 'while continuing it': 986709, 'continuing it mission': 201531, 'it mission to': 459644, 'mission to find': 534380, 'to find forever': 905899, 'find forever home': 306915, 'forever home for': 329124, 'home for the': 401244, 'for the animal': 326302, 'the animal in': 848745, 'animal in it': 76611, 'in it care': 424231, 'freeze': 332508, 'rent': 711030, 'offs': 596078, 'qualify': 691719, 'un': 939267, 'employment': 274575, 'direct': 243273, 'my dc': 547955, 'dc folk': 228947, 'folk new': 312223, 'new covid': 558563, '19 relief': 10075, 'relief bill': 709285, 'bill wa': 130716, 'just passed': 469436, 'passed that': 643300, 'includes freeze': 431752, 'freeze on': 332543, 'on rent': 603144, 'rent utility': 711203, 'utility cut': 951278, 'cut offs': 223447, 'offs who': 596085, 'can qualify': 159355, 'qualify for': 691722, 'for un': 327410, 'un employment': 939281, 'employment direct': 274590, 'direct link': 243349, 'for my dc': 323697, 'my dc folk': 547956, 'dc folk new': 228948, 'folk new covid': 312224, 'new covid 19': 558564, 'covid 19 relief': 213684, '19 relief bill': 10077, 'relief bill wa': 709293, 'bill wa just': 130718, 'wa just passed': 962467, 'just passed that': 469440, 'passed that includes': 643302, 'that includes freeze': 844476, 'includes freeze on': 431753, 'freeze on rent': 332546, 'on rent utility': 603147, 'rent utility cut': 711204, 'utility cut offs': 951280, 'cut offs who': 223448, 'offs who can': 596086, 'who can qualify': 988402, 'can qualify for': 159356, 'qualify for un': 691728, 'for un employment': 327411, 'un employment direct': 939282, 'employment direct link': 274591, 'japanese': 464781, 'robson': 724825, 'downtown': 257734, 'vancouver': 952325, 'green': 363649, 'tape': 834346, 'marking': 517894, 'reaction': 700185, 'inside small': 439376, 'small japanese': 775008, 'japanese grocery': 464794, 'store on': 809181, 'on robson': 603215, 'robson street': 724828, 'street in': 812991, 'in downtown': 422376, 'downtown vancouver': 257762, 'vancouver green': 952337, 'green tape': 363703, 'tape on': 834365, 'the ground': 856841, 'ground marking': 366521, 'marking meter': 517905, 'meter distance': 529703, 'distance for': 246705, 'those trying': 892566, 'to distance': 904430, 'distance themselves': 246849, 'themselves from': 876806, 'from others': 336735, 'others reaction': 621605, 'reaction to': 700213, 'inside small japanese': 439377, 'small japanese grocery': 775009, 'japanese grocery store': 464795, 'grocery store on': 365610, 'store on robson': 809204, 'on robson street': 603216, 'robson street in': 724829, 'street in downtown': 812992, 'in downtown vancouver': 422382, 'downtown vancouver green': 257763, 'vancouver green tape': 952338, 'green tape on': 363704, 'tape on the': 834367, 'on the ground': 604151, 'the ground marking': 856852, 'ground marking meter': 366522, 'marking meter distance': 517906, 'meter distance for': 529707, 'distance for those': 246707, 'for those trying': 327145, 'those trying to': 892567, 'trying to distance': 934796, 'to distance themselves': 904432, 'distance themselves from': 246850, 'themselves from others': 876815, 'from others reaction': 336746, 'others reaction to': 621606, 'survivalist': 829097, 'bent': 127251, 'pharmacy while': 654555, 'food fly': 314475, 'fly off': 311623, 'off shelf': 594146, 'shelf others': 757385, 'others with': 621803, 'with survivalist': 1001100, 'survivalist bent': 829098, 'bent are': 127252, 'on mission': 602137, 'purchase firearm': 689442, 'firearm why': 308154, 'buying is not': 150571, 'is not limited': 450124, 'limited to supermarket': 492779, 'supermarket and pharmacy': 819038, 'and pharmacy while': 68986, 'pharmacy while food': 654556, 'while food fly': 986848, 'food fly off': 314476, 'fly off shelf': 311624, 'off shelf others': 594148, 'shelf others with': 757386, 'others with survivalist': 621805, 'with survivalist bent': 1001101, 'survivalist bent are': 829099, 'bent are on': 127253, 'are on mission': 88725, 'on mission to': 602138, 'mission to purchase': 534382, 'to purchase firearm': 912527, 'purchase firearm why': 689445, 'asshole': 96503, 'ha shown': 371915, 'shown anything': 767571, 'it how': 458647, 'how selfish': 408635, 'selfish asshole': 748005, 'asshole people': 96544, 'be in': 115388, 'crisis there': 218202, 'or toilet': 617487, 'paper here': 640265, 'uk so': 938722, 'so stop': 778272, 'hoarding them': 399591, 'and making': 66586, 'making it': 511134, 'it harder': 458493, 'harder for': 378165, 'who actually': 988024, 'need them': 555768, 'buy them': 149322, 'them stoppanicbuying': 876337, 'stoppanicbuying stopstockpiling': 805641, 'if the ha': 414984, 'the ha shown': 857019, 'ha shown anything': 371916, 'shown anything it': 767572, 'anything it how': 80802, 'it how selfish': 458652, 'how selfish asshole': 408636, 'selfish asshole people': 748009, 'asshole people can': 96545, 'people can be': 647381, 'can be in': 157631, 'be in crisis': 115397, 'in crisis there': 421898, 'crisis there is': 218204, 'is no shortage': 449973, 'shortage of food': 765111, 'of food or': 583742, 'food or toilet': 315672, 'or toilet paper': 617488, 'toilet paper here': 921304, 'paper here in': 640266, 'here in the': 393188, 'the uk so': 870281, 'uk so stop': 938724, 'so stop hoarding': 778273, 'stop hoarding them': 804745, 'hoarding them and': 399592, 'them and making': 875387, 'and making it': 66591, 'making it harder': 511143, 'it harder for': 458495, 'harder for people': 378167, 'for people who': 324468, 'people who actually': 650256, 'who actually need': 988026, 'actually need them': 30906, 'need them to': 555787, 'them to buy': 876458, 'to buy them': 902318, 'buy them stoppanicbuying': 149331, 'them stoppanicbuying stopstockpiling': 876338, 'guide': 368303, 'examines': 288836, 'handling': 376324, 'disclose': 244372, 'nationwide': 552704, 'new consumer': 558513, 'consumer guide': 197670, 'guide examines': 368317, 'examines how': 288839, 'how 20': 407261, '20 largest': 13121, 'largest restaurant': 480010, 'restaurant chain': 716357, 'chain by': 170569, 'by sale': 153858, 'sale are': 732056, 'are handling': 86993, 'handling paid': 376381, 'paid sick': 634122, 'sick leave': 768479, 'leave during': 484773, 'pandemic result': 636350, 'result not': 717577, 'not good': 569716, 'good 60': 356676, '60 didn': 20937, 'didn disclose': 241033, 'disclose any': 244373, 'any paid': 79617, 'leave policy': 484901, 'policy and': 663327, 'only chain': 610236, 'chain offer': 170963, 'offer sick': 594790, 'leave at': 484743, 'all location': 43409, 'location nationwide': 498939, 'new consumer guide': 558523, 'consumer guide examines': 197671, 'guide examines how': 368318, 'examines how 20': 288840, 'how 20 largest': 407262, '20 largest restaurant': 13122, 'largest restaurant chain': 480011, 'restaurant chain by': 716360, 'chain by sale': 170571, 'by sale are': 153859, 'sale are handling': 732063, 'are handling paid': 87000, 'handling paid sick': 376382, 'paid sick leave': 634125, 'sick leave during': 768488, 'leave during covid': 484774, '19 pandemic result': 9450, 'pandemic result not': 636353, 'result not good': 717578, 'not good 60': 569717, 'good 60 didn': 356677, '60 didn disclose': 20938, 'didn disclose any': 241034, 'disclose any paid': 244374, 'any paid leave': 79618, 'paid leave policy': 634061, 'leave policy and': 484903, 'policy and only': 663336, 'and only chain': 68132, 'only chain offer': 610237, 'chain offer sick': 170965, 'offer sick leave': 594791, 'sick leave at': 768485, 'leave at all': 484744, 'at all location': 97893, 'all location nationwide': 43410, 'surprised': 828569, 'when could': 983299, 'find paracetamol': 307170, 'paracetamol at': 641224, 'the pharmacy': 863646, 'pharmacy at': 654239, 'at my': 99803, 'supermarket few': 820299, 'ago my': 38427, 'my two': 550448, 'two young': 937416, 'young child': 1022574, 'child had': 176096, 'had high': 373181, 'high temperature': 395455, 'temperature wa': 837407, 'wa surprised': 963369, 'surprised never': 828594, 'never thought': 558221, 'thought paracetamol': 893171, 'paracetamol would': 641284, 'would run': 1012202, 'stock nice': 802493, 'nice there': 562478, 'now more': 575309, 'shelf at': 756841, 'when could not': 983301, 'not find paracetamol': 569426, 'find paracetamol at': 307171, 'paracetamol at the': 641228, 'at the pharmacy': 101050, 'the pharmacy at': 863650, 'pharmacy at my': 654240, 'at my local': 99821, 'local supermarket few': 498524, 'supermarket few week': 820304, 'few week ago': 304129, 'week ago my': 975853, 'ago my two': 38429, 'my two young': 550454, 'two young child': 937417, 'young child had': 1022577, 'child had high': 176097, 'had high temperature': 373184, 'high temperature wa': 395458, 'temperature wa surprised': 837408, 'wa surprised never': 963371, 'surprised never thought': 828595, 'never thought paracetamol': 558230, 'thought paracetamol would': 893172, 'paracetamol would run': 641285, 'would run out': 1012203, 'of stock nice': 590174, 'stock nice there': 802494, 'nice there are': 562479, 'there are now': 878132, 'are now more': 88572, 'now more item': 575311, 'more item on': 539634, 'on shelf at': 603400, 'shelf at my': 756850, 'at my supermarket': 99832, 'yelled': 1015218, 'shouting': 766787, 'yell': 1015202, 'and were': 75431, 'were just': 979813, 'just yelled': 470365, 'yelled at': 1015221, 'at to': 101323, 'to stand': 915151, 'stand behind': 793499, 'the line': 859397, 'line at': 492975, 'supermarket not': 821637, 'not calm': 568676, 'calm hey': 156747, 'hey can': 394339, 'you please': 1020351, 'please stand': 660535, 'line it': 493211, 'protect people': 684919, '19 it': 8122, 'full on': 340771, 'on shouting': 603451, 'shouting we': 766802, 'we understand': 973585, 'the need': 861388, 'need for': 554822, 'the distancing': 853422, 'distancing but': 247053, 'not yell': 572591, 'yell at': 1015203, 'at just': 99347, 'just tip': 470079, 'mum and were': 545874, 'and were just': 75435, 'were just yelled': 979824, 'just yelled at': 470366, 'yelled at to': 1015230, 'at to stand': 101333, 'to stand behind': 915156, 'stand behind the': 793500, 'behind the line': 124717, 'the line at': 859403, 'line at our': 492988, 'our local supermarket': 623790, 'local supermarket not': 498562, 'supermarket not calm': 821641, 'not calm hey': 568677, 'calm hey can': 156748, 'hey can you': 394343, 'can you please': 160321, 'you please stand': 1020366, 'please stand behind': 660536, 'the line it': 859411, 'line it to': 493215, 'it to protect': 461744, 'to protect people': 912322, 'protect people from': 684922, 'people from covid': 647985, 'covid 19 it': 213298, '19 it wa': 8161, 'it wa full': 462114, 'wa full on': 962180, 'full on shouting': 340778, 'on shouting we': 603452, 'shouting we understand': 766803, 'we understand the': 973591, 'understand the need': 940767, 'the need for': 861394, 'need for the': 554875, 'for the distancing': 326390, 'the distancing but': 853423, 'distancing but do': 247056, 'do not yell': 249895, 'not yell at': 572592, 'yell at just': 1015205, 'at just tip': 99351, 'hcw': 384663, 'dy': 263720, 'orphaned': 619668, 'do for': 249312, 'for profit': 324787, 'profit idea': 682767, 'idea consumer': 413032, 'consumer buy': 196690, 'buy donate': 148543, 'donate to': 254248, 'to hcw': 907350, 'hcw consumer': 384664, 'buy save': 149147, 'save to': 737688, 'hcw fund': 384666, 'fund say': 341493, 'say nurse': 739003, 'nurse dy': 577312, 'dy from': 263729, '19 or': 9014, 'or on': 616369, 'the job': 858649, 'job illness': 465869, 'illness you': 416413, 'you donate': 1018335, 'donate the': 254233, 'the saved': 866386, 'saved to': 737762, 'the family': 854886, 'family or': 298128, 'or orphaned': 616422, 'orphaned child': 619669, 'you do for': 1018251, 'do for profit': 249317, 'for profit idea': 324792, 'profit idea consumer': 682768, 'idea consumer buy': 413033, 'consumer buy donate': 196692, 'buy donate to': 148544, 'donate to hcw': 254257, 'to hcw consumer': 907351, 'hcw consumer buy': 384665, 'consumer buy save': 196695, 'buy save to': 149149, 'save to hcw': 737689, 'to hcw fund': 907352, 'hcw fund say': 384667, 'fund say nurse': 341495, 'say nurse dy': 739004, 'nurse dy from': 577313, 'dy from covid': 263730, 'covid 19 or': 213525, '19 or on': 9023, 'or on the': 616374, 'on the job': 604193, 'the job illness': 858661, 'job illness you': 465870, 'illness you donate': 416415, 'you donate the': 1018337, 'donate the saved': 254238, 'the saved to': 866387, 'saved to the': 737763, 'to the family': 916694, 'the family or': 854901, 'family or orphaned': 298133, 'or orphaned child': 616423, 'prefer': 669725, 'nobody': 565974, 'rather': 697434, 'contamination': 200696, 'lol my': 500928, 'my as': 547324, 'as about': 94708, 'about not': 25811, 'in retail': 427445, 'retail rn': 718498, 'rn but': 724319, 'but in': 146018, 'my head': 548629, 'head like': 385760, 'like prefer': 491024, 'prefer to': 669753, 'stay where': 797397, 'where at': 984749, 'at where': 101539, 'where nobody': 985055, 'nobody come': 565992, 'come in': 187354, 'in rather': 427258, 'rather than': 697502, 'than work': 841472, 'at an': 97970, 'essential store': 281589, 'store where': 811254, 'where there': 985261, 'is higher': 448452, 'higher risk': 395723, 'of contamination': 581816, 'contamination of': 200724, '19 thank': 11134, 'you mother': 1019895, 'mother for': 543095, 'the concern': 851421, 'concern of': 193019, 'my safety': 549981, 'lol my mom': 500929, 'mom is on': 535756, 'is on my': 450474, 'on my as': 602261, 'my as about': 547325, 'as about not': 94709, 'about not working': 25820, 'not working in': 572549, 'working in retail': 1008731, 'in retail rn': 427467, 'retail rn but': 718499, 'rn but in': 724320, 'but in my': 146029, 'in my head': 425583, 'my head like': 548634, 'head like prefer': 385761, 'like prefer to': 491025, 'prefer to stay': 669758, 'to stay where': 915330, 'stay where at': 797398, 'where at where': 984750, 'at where nobody': 101540, 'where nobody come': 985056, 'nobody come in': 565994, 'come in rather': 187372, 'in rather than': 427259, 'rather than work': 697562, 'than work at': 841473, 'work at an': 1004859, 'at an essential': 97985, 'an essential store': 55835, 'essential store where': 281598, 'store where there': 811264, 'where there is': 985264, 'there is higher': 878573, 'is higher risk': 448455, 'higher risk of': 395730, 'risk of contamination': 723738, 'of contamination of': 581817, 'contamination of covid': 200725, 'covid 19 thank': 213927, '19 thank you': 11136, 'thank you mother': 841780, 'you mother for': 1019896, 'mother for the': 543098, 'for the concern': 326355, 'the concern of': 851423, 'concern of my': 193027, 'of my safety': 586813, 'advised': 33614, '7th': 22516, 'muzak': 547100, 'confirmed symptom': 194189, 'symptom advised': 830800, 'advised by': 33622, 'by doctor': 152390, 'doctor to': 251138, 'to quarantine': 912634, 'quarantine myself': 692378, 'myself signed': 550929, 'to sainsburys': 913733, 'sainsburys online': 731781, 'shopping no': 763326, 'slot available': 774129, 'available until': 104675, 'until at': 943700, 'least 7th': 484379, '7th april': 22517, 'april customer': 83570, 'customer service': 222814, 'service number': 752629, 'number playing': 577034, 'playing muzak': 659424, 'muzak is': 547101, 'is this': 453068, 'this the': 890512, 'new reality': 559392, 'confirmed symptom advised': 194190, 'symptom advised by': 830801, 'advised by doctor': 33623, 'by doctor to': 152391, 'doctor to quarantine': 251140, 'to quarantine myself': 912644, 'quarantine myself signed': 692379, 'myself signed up': 550930, 'up to sainsburys': 946423, 'to sainsburys online': 913734, 'sainsburys online shopping': 731782, 'online shopping no': 609196, 'shopping no delivery': 763327, 'delivery slot available': 234509, 'slot available until': 774141, 'available until at': 104676, 'until at least': 943701, 'at least 7th': 99459, 'least 7th april': 484380, '7th april customer': 22518, 'april customer service': 83571, 'customer service number': 222829, 'service number playing': 752630, 'number playing muzak': 577035, 'playing muzak is': 659425, 'muzak is this': 547102, 'is this the': 453126, 'this the new': 890530, 'the new reality': 861545, 'awareness': 105673, 'amma': 52876, 'unavagam': 939432, 'ramanathapuram': 696356, 'coimbatore': 185611, 'ammaunavagam': 52883, 'fightagainstcoronavirus': 304965, 'police provides': 663173, 'provides mask': 686876, 'and corona': 60560, 'corona related': 204138, 'related awareness': 708379, 'awareness to': 105737, 'who came': 988361, 'came to': 157064, 'to eat': 904864, 'eat at': 265852, 'at amma': 97959, 'amma unavagam': 52881, 'unavagam in': 939433, 'in ramanathapuram': 427243, 'ramanathapuram coimbatore': 696357, 'coimbatore mask': 185616, 'sanitizer police': 735562, 'police awareness': 662940, 'awareness ammaunavagam': 105680, 'ammaunavagam ramanathapuram': 52884, 'ramanathapuram corona': 696359, 'stayathome lockdown': 797520, 'lockdown fightagainstcoronavirus': 499378, 'fightagainstcoronavirus coimbatore': 304966, 'police provides mask': 663174, 'provides mask and': 686877, 'mask and corona': 518314, 'and corona related': 60563, 'corona related awareness': 204139, 'related awareness to': 708380, 'awareness to those': 105741, 'those who came': 892616, 'who came to': 988367, 'came to eat': 157067, 'to eat at': 904868, 'eat at amma': 265853, 'at amma unavagam': 97960, 'amma unavagam in': 52882, 'unavagam in ramanathapuram': 939434, 'in ramanathapuram coimbatore': 427244, 'ramanathapuram coimbatore mask': 696358, 'coimbatore mask sanitizer': 185617, 'mask sanitizer police': 519227, 'sanitizer police awareness': 735563, 'police awareness ammaunavagam': 662941, 'awareness ammaunavagam ramanathapuram': 105681, 'ammaunavagam ramanathapuram corona': 52885, 'ramanathapuram corona stayathome': 696360, 'corona stayathome lockdown': 204193, 'stayathome lockdown fightagainstcoronavirus': 797521, 'lockdown fightagainstcoronavirus coimbatore': 499379, 'supermarket plan': 821996, 'plan to': 658264, 'to cut': 903864, 'cut service': 223527, 'service to': 752963, 'stay open': 797149, 'open during': 612194, 'during outbreak': 262848, 'supermarket plan to': 821998, 'plan to cut': 658280, 'to cut service': 903886, 'cut service to': 223529, 'service to stay': 752990, 'to stay open': 915305, 'stay open during': 797156, 'open during outbreak': 612198, 'anaheim': 56986, 'california': 155451, 'boycott': 137314, '1216': 3046, 'magnolia': 508452, 'ave': 104733, 'ca': 154856, '92804': 23516, '714': 21985, '229': 15321, '0618': 1000, 'pricegougers': 677767, 'disgusting price': 245445, 'by abc': 151723, 'abc supermarket': 24268, 'in anaheim': 420337, 'anaheim california': 56990, 'california boycott': 155468, 'boycott these': 137348, 'these clown': 879767, 'clown abc': 184353, 'supermarket 1216': 818727, '1216 magnolia': 3047, 'magnolia ave': 508453, 'ave anaheim': 104736, 'anaheim ca': 56987, 'ca 92804': 154860, '92804 714': 23517, '714 229': 21986, '229 0618': 15322, '0618 pricegougers': 1001, 'pricegougers pricegouging': 677775, 'disgusting price by': 245446, 'price by abc': 673012, 'by abc supermarket': 151724, 'abc supermarket in': 24270, 'supermarket in anaheim': 820861, 'in anaheim california': 420339, 'anaheim california boycott': 56991, 'california boycott these': 155469, 'boycott these clown': 137349, 'these clown abc': 879768, 'clown abc supermarket': 184354, 'abc supermarket 1216': 24269, 'supermarket 1216 magnolia': 818728, '1216 magnolia ave': 3048, 'magnolia ave anaheim': 508454, 'ave anaheim ca': 104737, 'anaheim ca 92804': 56988, 'ca 92804 714': 154861, '92804 714 229': 23518, '714 229 0618': 21987, '229 0618 pricegougers': 15323, '0618 pricegougers pricegouging': 1002, 'totally': 926297, 'depends': 237384, 'junk': 468031, 'ha no': 371326, 'no cure': 563944, 'cure it': 220762, 'it totally': 461816, 'totally depends': 926324, 'depends on': 237385, 'your immune': 1024453, 'system so': 831317, 'so what': 778709, 'is wash': 453767, 'hand well': 375972, 'well for': 978244, 'second eat': 743703, 'eat good': 265928, 'good food': 357049, 'food not': 315557, 'not junk': 570206, 'junk food': 468034, 'food get': 314647, 'get enough': 346938, 'enough sleep': 277617, 'sleep stay': 773792, 'stay positive': 797172, 'positive only': 665390, 'only go': 610515, 'out if': 626356, 'you feel': 1018532, 'feel sick': 302840, 'sick if': 768475, 'your food': 1023907, 'supply run': 825780, 'out we': 627790, 'll get': 496781, 'this this': 890575, '19 ha no': 7369, 'ha no cure': 371336, 'no cure it': 563947, 'cure it totally': 220765, 'it totally depends': 461818, 'totally depends on': 926325, 'depends on your': 237395, 'on your immune': 605473, 'your immune system': 1024454, 'immune system so': 417351, 'system so what': 831318, 'so what you': 778728, 'what you can': 982667, 'you can do': 1017661, 'can do now': 158111, 'do now is': 249911, 'now is wash': 575091, 'is wash your': 453770, 'your hand well': 1024241, 'hand well for': 375973, 'well for 20': 978246, '20 second eat': 13328, 'second eat good': 743704, 'eat good food': 265929, 'good food not': 357063, 'food not junk': 315563, 'not junk food': 570207, 'junk food get': 468036, 'food get enough': 314649, 'get enough sleep': 346942, 'enough sleep stay': 277618, 'sleep stay positive': 773793, 'stay positive only': 797174, 'positive only go': 665391, 'only go out': 610520, 'go out if': 353959, 'out if you': 626366, 'if you feel': 415438, 'you feel sick': 1018543, 'feel sick if': 302844, 'sick if your': 768476, 'if your food': 415579, 'your food supply': 1023931, 'food supply run': 316987, 'supply run out': 825787, 'run out we': 727772, 'out we ll': 627797, 'we ll get': 972252, 'll get through': 496796, 'through this this': 894848, 'prevention': 671832, 'method': 529758, 'govindia': 361042, 'indiafightscorona': 434722, 'for corona': 320365, 'corona prevention': 204115, 'prevention we': 671901, 'should stop': 766511, 'stop to': 805210, 'buy thing': 149351, 'thing with': 885000, 'the cash': 850471, 'cash and': 166154, 'and should': 71587, 'should use': 766614, 'use online': 949443, 'online payment': 608736, 'payment method': 645671, 'method because': 529761, 'because corona': 119006, 'corona can': 203843, 'can spread': 159699, 'spread through': 790841, 'the note': 861895, 'note also': 572694, 'also we': 49085, 'should prefer': 766326, 'prefer online': 669741, 'shopping from': 762749, 'from our': 336755, 'home it': 401468, 'against covid': 37401, '19 govindia': 7268, 'govindia indiafightscorona': 361043, 'for corona prevention': 320368, 'corona prevention we': 204116, 'prevention we should': 671903, 'we should stop': 973297, 'should stop to': 766526, 'stop to buy': 805212, 'to buy thing': 902319, 'buy thing with': 149356, 'thing with the': 885003, 'with the cash': 1001223, 'the cash and': 850472, 'cash and should': 166161, 'and should use': 71599, 'should use online': 766616, 'use online payment': 949446, 'online payment method': 608739, 'payment method because': 645672, 'method because corona': 529762, 'because corona can': 119007, 'corona can spread': 203844, 'can spread through': 159712, 'spread through the': 790849, 'through the note': 894756, 'the note also': 861897, 'note also we': 572695, 'also we should': 49088, 'we should prefer': 973286, 'should prefer online': 766327, 'prefer online shopping': 669742, 'online shopping from': 609126, 'shopping from our': 762758, 'from our home': 336779, 'our home it': 623452, 'home it time': 401474, 'time to fight': 897985, 'to fight against': 905773, 'fight against covid': 304615, 'against covid 19': 37402, 'covid 19 govindia': 213160, '19 govindia indiafightscorona': 7269, 'frantic': 331181, 'scramble': 742530, 'ventilator': 954515, 'soldier': 781807, 'perfumer': 651551, 'called': 156279, 'retirement': 719701, 'moscowmitch': 542011, 'bailouts': 108675, 'fat': 300191, 'europe frantic': 283442, 'frantic scramble': 331188, 'scramble for': 742533, 'hospital bed': 404323, 'bed ventilator': 120425, 'ventilator and': 954522, 'supply soldier': 825873, 'soldier are': 781809, 'are building': 85074, 'building hospital': 142086, 'hospital perfumer': 404555, 'perfumer are': 651552, 'are making': 87974, 'and doctor': 61572, 'being called': 124911, 'called back': 156282, 'from retirement': 337111, 'retirement in': 719712, 'america moscowmitch': 51616, 'moscowmitch want': 542012, 'to give': 906667, 'give bailouts': 350404, 'bailouts to': 108704, 'to fat': 905686, 'fat cat': 300200, 'in europe frantic': 422637, 'europe frantic scramble': 283443, 'frantic scramble for': 331189, 'scramble for hospital': 742535, 'for hospital bed': 322365, 'hospital bed ventilator': 404328, 'bed ventilator and': 120426, 'ventilator and supply': 954530, 'and supply soldier': 72813, 'supply soldier are': 825874, 'soldier are building': 781810, 'are building hospital': 85076, 'building hospital perfumer': 142087, 'hospital perfumer are': 404556, 'perfumer are making': 651553, 'are making hand': 87983, 'sanitizer and doctor': 734402, 'and doctor are': 61575, 'doctor are being': 250837, 'are being called': 84833, 'being called back': 124912, 'called back from': 156283, 'back from retirement': 107013, 'from retirement in': 337112, 'retirement in america': 719713, 'in america moscowmitch': 420231, 'america moscowmitch want': 51617, 'moscowmitch want to': 542013, 'want to give': 966041, 'to give bailouts': 906676, 'give bailouts to': 350405, 'bailouts to fat': 108705, 'to fat cat': 905687, 'tz': 937714, 'tanzania': 834293, 'lower': 505783, 'bundle': 142642, 'bearable': 118429, 'isolated': 454966, 'tz tanzania': 937715, 'tanzania this': 834296, 'to lower': 909492, 'lower the': 506021, 'of internet': 585261, 'internet bundle': 441916, 'bundle at': 142643, 'least temporarily': 484641, 'temporarily making': 837512, 'making staying': 511364, 'home little': 401537, 'more bearable': 538705, 'bearable streaming': 118430, 'streaming can': 812807, 'can make': 158920, 'make people': 510311, 'people feel': 647890, 'feel le': 302693, 'le isolated': 483001, 'isolated your': 455041, 'your customer': 1023403, 'customer tanzania': 222898, 'tanzania will': 834298, 'will thank': 995115, 'tz tanzania this': 937716, 'tanzania this is': 834297, 'time to lower': 898015, 'to lower the': 909512, 'lower the price': 506026, 'price of internet': 675477, 'of internet bundle': 585263, 'internet bundle at': 441917, 'bundle at least': 142644, 'at least temporarily': 99550, 'least temporarily making': 484642, 'temporarily making staying': 837513, 'making staying at': 511365, 'at home little': 99033, 'home little more': 401538, 'little more bearable': 495460, 'more bearable streaming': 538706, 'bearable streaming can': 118431, 'streaming can make': 812808, 'can make people': 158944, 'make people feel': 510316, 'people feel le': 647893, 'feel le isolated': 302694, 'le isolated your': 483002, 'isolated your customer': 455042, 'your customer tanzania': 1023426, 'customer tanzania will': 222899, 'tanzania will thank': 834299, 'will thank you': 995117, 'hacker': 372757, 'impersonate': 418356, 'insurancefraud': 440844, 'healthcarefraud': 387410, 'scam and': 739990, 'alert hacker': 41443, 'hacker impersonate': 372768, 'impersonate send': 418357, 'send consumer': 749831, 'consumer fake': 197443, 'fake email': 296614, 'email to': 272338, 'steal their': 799204, 'their personal': 874276, 'personal and': 652780, 'and personal': 68920, 'personal data': 652816, 'data health': 226263, 'health information': 386531, 'information below': 437765, 'below is': 126676, 'is clue': 446620, 'clue by': 184529, 'by clue': 152141, 'clue image': 184544, 'of how': 584806, 'spot those': 790127, 'those fake': 891987, 'email insurance': 272215, 'insurance fraud': 440734, 'fraud insurancefraud': 331292, 'insurancefraud healthcarefraud': 440847, 'scam and consumer': 739994, 'and consumer alert': 60348, 'consumer alert hacker': 196147, 'alert hacker impersonate': 41445, 'hacker impersonate send': 372769, 'impersonate send consumer': 418358, 'send consumer fake': 749832, 'consumer fake email': 197444, 'fake email to': 296619, 'email to steal': 272341, 'to steal their': 915368, 'steal their personal': 799205, 'their personal and': 874277, 'personal and personal': 652785, 'and personal data': 68922, 'personal data health': 652817, 'data health information': 226264, 'health information below': 386533, 'information below is': 437766, 'below is clue': 126677, 'is clue by': 446621, 'clue by clue': 184530, 'by clue image': 152142, 'clue image of': 184545, 'image of how': 416648, 'of how to': 584844, 'to spot those': 915042, 'spot those fake': 790129, 'those fake email': 891988, 'fake email insurance': 296616, 'email insurance fraud': 272216, 'insurance fraud insurancefraud': 440735, 'fraud insurancefraud healthcarefraud': 331293, 'threshold': 894136, 'identified': 413320, 'evolve': 288498, 'key consumer': 473258, 'behavior threshold': 124247, 'threshold identified': 894143, 'identified the': 413346, 'coronavirus outbreak': 206366, 'outbreak evolve': 628203, 'key consumer behavior': 473260, 'consumer behavior threshold': 196527, 'behavior threshold identified': 124248, 'threshold identified the': 894145, 'identified the coronavirus': 413347, 'the coronavirus outbreak': 851886, 'coronavirus outbreak evolve': 206384, 'video show': 956888, 'show how': 766971, 'how single': 408688, 'single cough': 771264, 'cough spread': 208561, 'across supermarket': 29463, 'supermarket socialdistancing': 822752, 'video show how': 956891, 'show how single': 766992, 'how single cough': 408689, 'single cough spread': 771269, 'cough spread across': 208562, 'spread across supermarket': 790392, 'across supermarket socialdistancing': 29470, 'alarming': 40692, 'informative': 438060, 'particle': 642581, 'air': 39675, 'alarming yet': 40708, 'yet informative': 1016109, 'informative video': 438069, 'video that': 956914, 'everyone should': 287369, 'should watch': 766634, 'watch how': 968442, 'how particle': 408484, 'particle from': 642584, 'from single': 337300, 'cough stay': 208568, 'stay in': 797036, 'the air': 848478, 'air and': 39681, 'then spread': 877554, 'across indoor': 29351, 'indoor environment': 435352, 'environment like': 279125, 'like or': 490933, 'or please': 616628, 'please retweet': 660409, 'retweet to': 720090, 'help stop': 390586, 'spread and': 790402, 'and save': 70946, 'alarming yet informative': 40709, 'yet informative video': 1016110, 'informative video that': 438071, 'video that everyone': 956915, 'that everyone should': 843771, 'everyone should watch': 287383, 'should watch how': 766635, 'watch how particle': 968444, 'how particle from': 408485, 'particle from single': 642586, 'from single cough': 337301, 'single cough stay': 771271, 'cough stay in': 208570, 'stay in the': 797065, 'in the air': 428974, 'the air and': 848480, 'air and then': 39686, 'and then spread': 73811, 'then spread across': 877555, 'spread across indoor': 790391, 'across indoor environment': 29352, 'indoor environment like': 435354, 'environment like or': 279126, 'like or please': 490935, 'or please retweet': 616629, 'please retweet to': 660416, 'retweet to help': 720092, 'to help stop': 907637, 'help stop the': 390590, 'stop the spread': 805154, 'the spread and': 867615, 'spread and save': 790421, 'and save life': 70951, 'greeted': 363791, 'locked': 500462, 'reached': 700022, 'capacity': 162489, 'bank ha': 109881, 'been asking': 120697, 'asking for': 95979, 'more volunteer': 540925, 'demand that': 236328, 'that been': 842956, 'been caused': 120809, 'caused by': 167824, 'by this': 154522, 'crisis went': 218371, 'to their': 917206, 'their head': 873497, 'head office': 385782, 'office today': 595573, 'today only': 919988, 'be greeted': 115102, 'greeted by': 363792, 'by locked': 153086, 'locked door': 500467, 'door and': 255502, 'sign saying': 769203, 'saying that': 739696, 'that volunteer': 847260, 'volunteer have': 960276, 'have reached': 382165, 'reached their': 700063, 'their social': 874741, 'distancing capacity': 247071, 'food bank ha': 313581, 'bank ha been': 109883, 'ha been asking': 369725, 'been asking for': 120698, 'asking for more': 95992, 'for more volunteer': 323609, 'more volunteer to': 540927, 'volunteer to keep': 960355, 'the demand that': 853113, 'demand that been': 236331, 'that been caused': 842959, 'been caused by': 120810, 'caused by this': 167873, 'by this covid': 154525, '19 crisis went': 6349, 'crisis went to': 218372, 'went to their': 979197, 'to their head': 917236, 'their head office': 873503, 'head office today': 385792, 'office today only': 595574, 'today only to': 919991, 'only to be': 611355, 'to be greeted': 901284, 'be greeted by': 115103, 'greeted by locked': 363793, 'by locked door': 153087, 'locked door and': 500468, 'door and sign': 255512, 'and sign saying': 71657, 'sign saying that': 769204, 'saying that volunteer': 739707, 'that volunteer have': 847261, 'volunteer have reached': 960279, 'have reached their': 382168, 'reached their social': 700065, 'their social distancing': 874743, 'social distancing capacity': 779577, 'bradpaisley': 137544, 'bradpaisley free': 137545, 'delivering essential': 233487, 'bradpaisley free grocery': 137546, 'store is delivering': 808484, 'is delivering essential': 447102, 'delivering essential to': 233488, 'essential to the': 281711, 'amid the crisis': 52689, 'st': 791678, 'louis': 504514, 'spite': 789572, 'albeit': 40756, 'st louis': 791720, 'louis home': 504522, 'home sale': 402003, 'sale continue': 732138, 'continue in': 201048, 'in spite': 428204, 'spite of': 789573, '19 albeit': 4880, 'albeit at': 40757, 'at lower': 99638, 'lower level': 505904, 'st louis home': 791724, 'louis home sale': 504523, 'home sale continue': 402005, 'sale continue in': 732140, 'continue in spite': 201049, 'in spite of': 428205, 'spite of covid': 789574, 'covid 19 albeit': 212604, '19 albeit at': 4881, 'albeit at lower': 40758, 'at lower level': 99639, 'unabated': 939312, 'agriculture': 38930, 'thoko': 891702, 'didiza': 240957, 'reassurance': 703178, 'continues unabated': 201512, 'unabated despite': 939315, 'despite agriculture': 238663, 'agriculture minister': 38999, 'minister thoko': 533472, 'thoko didiza': 891703, 'didiza reassurance': 240962, 'reassurance that': 703181, 'that south': 846420, 'south africa': 786644, 'africa ha': 35080, 'ha reliable': 371712, 'reliable supply': 709215, 'buying continues unabated': 150140, 'continues unabated despite': 201513, 'unabated despite agriculture': 939316, 'despite agriculture minister': 238664, 'agriculture minister thoko': 39001, 'minister thoko didiza': 533473, 'thoko didiza reassurance': 891704, 'didiza reassurance that': 240963, 'reassurance that south': 703182, 'that south africa': 846421, 'south africa ha': 786652, 'africa ha reliable': 35082, 'ha reliable supply': 371713, 'reliable supply of': 709216, 'supply of food': 825627, 'of food amid': 583642, 'democrat': 236691, 'blocking': 132877, 'assistance': 96658, 'crime': 216765, 'unrest': 943332, 'democrat are': 236698, 'are blocking': 84997, 'blocking covid': 132880, 'consumer assistance': 196327, 'assistance check': 96675, 'check crime': 174407, 'crime and': 216770, 'and unrest': 74704, 'unrest could': 943343, 'could follow': 209184, 'follow at': 312355, 'democrat are blocking': 236699, 'are blocking covid': 84998, 'blocking covid 19': 132881, '19 consumer assistance': 5955, 'consumer assistance check': 196328, 'assistance check crime': 96676, 'check crime and': 174408, 'crime and unrest': 216773, 'and unrest could': 74705, 'unrest could follow': 943344, 'could follow at': 209186, 'fyi': 342618, 'macon': 507458, 'bibb': 129426, 'cheney': 175492, 'brother': 141030, '478': 19285, '250': 16007, '3699': 18056, '352': 17954, '291': 16510, '7800': 22343, 'fyi covid': 342627, 'update if': 947026, 'or business': 614604, 'owner manager': 632496, 'manager or': 512773, 'or employee': 615156, 'any local': 79418, 'local macon': 498163, 'macon bibb': 507459, 'bibb market': 129427, 'market that': 517174, 'that need': 845296, 'need supply': 555674, 'supply like': 825499, 'like food': 490256, 'paper glove': 640209, 'glove etc': 352667, 'etc please': 282701, 'contact cheney': 200045, 'cheney brother': 175493, 'brother at': 141035, 'at 478': 97666, '478 250': 19286, '250 3699': 16012, '3699 office': 18057, 'office 352': 595343, '352 291': 17955, '291 7800': 16511, 'fyi covid 19': 342628, '19 update if': 11666, 'update if you': 947028, 'you are grocery': 1017133, 'store or business': 809316, 'or business owner': 614607, 'business owner manager': 144189, 'owner manager or': 632498, 'manager or employee': 512774, 'or employee of': 615159, 'employee of any': 274061, 'of any local': 580263, 'any local macon': 79422, 'local macon bibb': 498164, 'macon bibb market': 507460, 'bibb market that': 129429, 'market that need': 517177, 'that need supply': 845309, 'need supply like': 555679, 'supply like food': 825500, 'like food toilet': 490264, 'toilet paper glove': 921285, 'paper glove etc': 640210, 'glove etc please': 352668, 'etc please contact': 282702, 'please contact cheney': 659832, 'contact cheney brother': 200046, 'cheney brother at': 175494, 'brother at 478': 141036, 'at 478 250': 97667, '478 250 3699': 19287, '250 3699 office': 16013, '3699 office 352': 18058, 'office 352 291': 595344, '352 291 7800': 17956, 'prescription': 670494, 'rx': 728777, 'sunday': 818146, 'ireland': 444806, 'prohibits': 683448, 'today prescription': 920063, 'prescription rx': 670534, 'rx get': 728779, 'your weekly': 1026337, 'weekly shop': 977542, 'shop done': 760107, 'done before': 254791, 'before 12': 122585, '30 on': 17157, 'on sunday': 603747, 'sunday ireland': 818218, 'ireland prohibits': 444841, 'prohibits booze': 683451, 'booze sale': 135173, 'sale until': 732615, 'until then': 943880, 'then so': 877539, 'so supermarket': 778304, 'supermarket queue': 822111, 'queue are': 693872, 'today prescription rx': 920064, 'prescription rx get': 670535, 'rx get your': 728780, 'get your weekly': 348745, 'your weekly shop': 1026339, 'weekly shop done': 977546, 'shop done before': 760108, 'done before 12': 254792, 'before 12 30': 122586, '12 30 on': 2796, '30 on sunday': 17159, 'on sunday ireland': 603762, 'sunday ireland prohibits': 818219, 'ireland prohibits booze': 444842, 'prohibits booze sale': 683452, 'booze sale until': 135174, 'sale until then': 732616, 'until then so': 943883, 'then so supermarket': 877541, 'so supermarket queue': 778313, 'supermarket queue are': 822116, 'queue are small': 693876, 'establishment': 282045, 'with school': 1000596, 'school restaurant': 741904, 'restaurant and': 716269, 'retail establishment': 718094, 'establishment all': 282046, 'all closed': 42372, 'closed people': 183285, 'are staying': 90370, 'home but': 400827, 'still need': 800854, 'need grocery': 554929, 'with school restaurant': 1000600, 'school restaurant and': 741905, 'restaurant and retail': 716296, 'and retail establishment': 70430, 'retail establishment all': 718095, 'establishment all closed': 282047, 'all closed people': 42374, 'closed people are': 183286, 'people are staying': 647088, 'are staying home': 90373, 'staying home but': 798601, 'home but they': 400851, 'but they still': 147519, 'they still need': 883468, 'still need grocery': 800856, 'dispenser': 246133, 'sanitizer dispenser': 734762, 'dispenser and': 246134, 'glove were': 353021, 'were also': 979314, 'also common': 48044, 'common site': 189472, 'site for': 771915, 'hand sanitizer dispenser': 375373, 'sanitizer dispenser and': 734763, 'dispenser and glove': 246135, 'and glove were': 63747, 'glove were also': 353022, 'were also common': 979317, 'also common site': 48045, 'common site for': 189473, 'politely': 663610, 'picnic': 656071, 'ignore': 415809, 'are politely': 89134, 'politely asking': 663615, 'asking online': 96033, 'online anyone': 607864, 'anyone in': 80372, 'in please': 426798, 'please pack': 660270, 'pack up': 633183, 'your picnic': 1025311, 'picnic not': 656076, 'not exercise': 569320, 'exercise necessary': 290078, 'necessary shopping': 554073, 'shopping the': 764080, 'latter before': 481675, 'before you': 123310, 'need it': 555077, 'it if': 458669, 'you choose': 1017952, 'choose to': 177907, 'to ignore': 908109, 'ignore this': 415850, 'this message': 888836, 'message we': 529474, 'll politely': 496952, 'politely ask': 663613, 'ask you': 95672, 'to move': 910300, 'move in': 543664, 'we are politely': 970662, 'are politely asking': 89135, 'politely asking online': 663616, 'asking online anyone': 96034, 'online anyone in': 607865, 'anyone in please': 80378, 'in please pack': 426801, 'please pack up': 660271, 'pack up your': 633184, 'up your picnic': 946747, 'your picnic not': 1025312, 'picnic not exercise': 656077, 'not exercise necessary': 569321, 'exercise necessary shopping': 290079, 'necessary shopping the': 554074, 'shopping the latter': 764087, 'the latter before': 859162, 'latter before you': 481676, 'before you need': 123326, 'you need it': 1020007, 'need it if': 555089, 'it if you': 458681, 'if you choose': 415408, 'you choose to': 1017954, 'choose to ignore': 177911, 'to ignore this': 908116, 'ignore this message': 415851, 'this message we': 888844, 'message we ll': 529475, 'we ll politely': 972271, 'll politely ask': 496953, 'politely ask you': 663614, 'ask you to': 95679, 'you to move': 1021810, 'to move in': 910309, 'move in person': 543667, 'reverend': 720503, 'hosting': 404943, 'dance': 225558, 'rave': 697926, 'farming': 299603, 'wedding': 975555, 'dress': 258655, 'drinking': 258912, 'wine': 995756, 'inflatable': 436972, 'unicorn': 941725, 'costume': 208364, 'kiwi': 475839, 'smiling': 775762, 'reverend hosting': 720504, 'hosting an': 404944, 'online dance': 608075, 'dance rave': 225573, 'rave farming': 697929, 'farming mum': 299635, 'mum in': 545912, 'in wedding': 430739, 'wedding dress': 975560, 'dress drinking': 258662, 'drinking wine': 258953, 'wine and': 995761, 'and woman': 75799, 'woman shopping': 1003605, 'in an': 420268, 'an inflatable': 56308, 'inflatable unicorn': 436979, 'unicorn costume': 941728, 'costume here': 208371, 'the thing': 869447, 'thing kiwi': 884517, 'kiwi are': 475840, 'keep each': 471463, 'each other': 264152, 'other smiling': 620930, 'smiling during': 775770, 'during lockdown': 262755, 'reverend hosting an': 720505, 'hosting an online': 404945, 'an online dance': 56614, 'online dance rave': 608076, 'dance rave farming': 225574, 'rave farming mum': 697930, 'farming mum in': 299636, 'mum in wedding': 545914, 'in wedding dress': 430740, 'wedding dress drinking': 975561, 'dress drinking wine': 258663, 'drinking wine and': 258954, 'wine and woman': 995771, 'and woman shopping': 75808, 'woman shopping in': 1003606, 'shopping in an': 762953, 'in an inflatable': 420312, 'an inflatable unicorn': 56310, 'inflatable unicorn costume': 436980, 'unicorn costume here': 941729, 'costume here are': 208372, 'here are some': 392756, 'are some of': 90274, 'some of the': 783408, 'of the thing': 591536, 'the thing kiwi': 869458, 'thing kiwi are': 884518, 'kiwi are doing': 475841, 'doing to keep': 252793, 'to keep each': 908781, 'keep each other': 471464, 'each other smiling': 264218, 'other smiling during': 620931, 'smiling during lockdown': 775771, 'defer': 232165, 'opinion bank': 613453, 'bank should': 110189, 'should defer': 765903, 'defer household': 232166, 'household debt': 406777, 'debt to': 230581, 'opinion bank should': 613454, 'bank should defer': 110190, 'should defer household': 765904, 'defer household debt': 232167, 'household debt to': 406779, 'debt to protect': 230586, 'to protect the': 912336, 'protect the economy': 684968, 'wall': 965147, '164': 4235, 'strain': 812262, 'profitability': 682903, 'nassau': 552041, 'wall st': 965174, 'st bonus': 791685, 'bonus to': 134408, 'take hit': 832182, 'hit this': 398460, 'year due': 1014531, 'the 2019': 848011, '2019 bonus': 13947, 'bonus up': 134419, 'to 164': 899521, '164 100': 4236, '100 but': 1850, 'but will': 147869, 'likely fall': 491997, 'fall sharply': 297045, 'crisis strain': 218100, 'strain industry': 812280, 'industry profitability': 436057, 'profitability bonus': 682904, 'bonus key': 134384, 'in nassau': 425686, 'nassau east': 552044, 'east end': 265308, 'wall st bonus': 965175, 'st bonus to': 791686, 'bonus to take': 134412, 'to take hit': 916186, 'take hit this': 832187, 'hit this year': 398463, 'this year due': 891569, 'year due to': 1014532, 'to the 2019': 916476, 'the 2019 bonus': 848013, '2019 bonus up': 13948, 'bonus up to': 134420, 'up to 164': 946324, 'to 164 100': 899522, '164 100 but': 4237, '100 but will': 1852, 'but will likely': 147883, 'will likely fall': 994000, 'likely fall sharply': 491998, 'fall sharply in': 297047, 'sharply in 2020': 755744, 'in 2020 the': 419859, '2020 the coronavirus': 14636, 'the coronavirus crisis': 851827, 'coronavirus crisis strain': 205770, 'crisis strain industry': 218101, 'strain industry profitability': 812281, 'industry profitability bonus': 436058, 'profitability bonus key': 682905, 'bonus key to': 134385, 'key to consumer': 473432, 'to consumer spending': 903337, 'spending in nassau': 788861, 'in nassau east': 425688, 'nassau east end': 552045, 'reassure': 703183, 'countryman': 211292, 'manufacturing': 513551, 'respreators': 716135, 'clothing': 184245, 'shield': 758130, 'glass': 351595, 'auspol': 103071, 'ausgov': 103057, 'hey if': 394424, 'to reassure': 912886, 'reassure your': 703201, 'your countryman': 1023361, 'countryman build': 211296, 'build factory': 141970, 'factory put': 295987, 'put people': 690767, 'work manufacturing': 1005460, 'manufacturing mask': 513627, 'glove respreators': 352887, 'respreators hand': 716136, 'sanitizer disinfectant': 734747, 'disinfectant protective': 245729, 'protective clothing': 685716, 'clothing face': 184256, 'face shield': 294733, 'shield medicine': 758166, 'medicine safety': 526879, 'safety glass': 730551, 'glass etc': 351612, 'etc auspol': 282436, 'auspol ausgov': 103074, 'hey if you': 394427, 'you want to': 1022162, 'want to reassure': 966098, 'to reassure your': 912894, 'reassure your countryman': 703202, 'your countryman build': 1023362, 'countryman build factory': 211297, 'build factory put': 141971, 'factory put people': 295988, 'put people to': 690773, 'people to work': 649966, 'to work manufacturing': 918753, 'work manufacturing mask': 1005461, 'manufacturing mask glove': 513628, 'mask glove respreators': 518744, 'glove respreators hand': 352888, 'respreators hand sanitizer': 716137, 'hand sanitizer disinfectant': 375370, 'sanitizer disinfectant protective': 734752, 'disinfectant protective clothing': 245730, 'protective clothing face': 685717, 'clothing face shield': 184257, 'face shield medicine': 294742, 'shield medicine safety': 758167, 'medicine safety glass': 526880, 'safety glass etc': 730553, 'glass etc auspol': 351613, 'etc auspol ausgov': 282437, 'grows': 367307, 'hazard': 384541, 'are saving': 89814, 'saving our': 737941, 'our life': 623715, 'life demand': 488582, 'demand grows': 235591, 'grows for': 367310, 'for grocery': 322020, 'employee other': 274091, 'other frontline': 620280, 'to receive': 912907, 'receive hazard': 703494, 'hazard pay': 384556, 'pay amid': 644719, 'amid outbreak': 52556, 'they are saving': 881395, 'are saving our': 89818, 'saving our life': 737942, 'our life demand': 623720, 'life demand grows': 488583, 'demand grows for': 235593, 'grows for grocery': 367311, 'for grocery store': 322052, 'store employee other': 807517, 'employee other frontline': 274092, 'other frontline worker': 620281, 'frontline worker to': 338873, 'worker to receive': 1008019, 'to receive hazard': 912921, 'receive hazard pay': 703495, 'hazard pay amid': 384557, 'pay amid outbreak': 644722, 'tiktok': 895892, 'buy the': 149281, 'the last': 858985, 'last pack': 480430, 'toiletpapercrisis toiletpaperpanic': 923111, 'toiletpaperpanic tiktok': 923257, 'when you buy': 984543, 'you buy the': 1017584, 'buy the last': 149302, 'the last pack': 859028, 'last pack of': 480431, 'pack of toilet': 633113, 'paper toiletpaper toiletpapercrisis': 640959, 'toiletpaper toiletpapercrisis toiletpaperpanic': 922671, 'toiletpapercrisis toiletpaperpanic tiktok': 923115, 'prompted': 683923, 'cooking': 202837, 'eating': 266170, 'accessing': 28353, 'nutritious': 577753, 'promote': 683769, 'ha kept': 371068, 'kept people': 473067, 'of restaurant': 589012, 'restaurant limited': 716549, 'limited supermarket': 492729, 'supermarket run': 822265, 'run amp': 727554, 'amp prompted': 54344, 'prompted more': 683935, 'more home': 539443, 'home cooking': 400928, 'cooking that': 202916, 'may result': 521459, 'result in': 717524, 'in better': 420800, 'better eating': 128270, 'eating habit': 266216, 'habit however': 372630, 'however american': 409342, 'long way': 501817, 'go in': 353698, 'in term': 428868, 'term of': 838211, 'of accessing': 579734, 'accessing nutritious': 28365, 'nutritious food': 577760, 'prevent illness': 671649, 'illness amp': 416338, 'amp promote': 54338, 'promote health': 683774, '19 ha kept': 7357, 'ha kept people': 371070, 'kept people out': 473068, 'people out of': 649025, 'out of restaurant': 626819, 'of restaurant limited': 589019, 'restaurant limited supermarket': 716550, 'limited supermarket run': 492730, 'supermarket run amp': 822267, 'run amp prompted': 727555, 'amp prompted more': 54345, 'prompted more home': 683936, 'more home cooking': 539444, 'home cooking that': 400932, 'cooking that may': 202917, 'that may result': 845088, 'may result in': 521460, 'result in better': 717525, 'in better eating': 420801, 'better eating habit': 128271, 'eating habit however': 266220, 'habit however american': 372631, 'however american have': 409343, 'american have long': 52022, 'have long way': 381372, 'long way to': 501827, 'way to go': 970032, 'to go in': 906811, 'go in term': 353717, 'in term of': 428869, 'term of accessing': 838212, 'of accessing nutritious': 579735, 'accessing nutritious food': 28366, 'nutritious food to': 577766, 'food to prevent': 317283, 'to prevent illness': 912069, 'prevent illness amp': 671650, 'illness amp promote': 416340, 'amp promote health': 54339, 'property': 684226, 'london': 501008, 'the average': 849093, 'average price': 104888, 'of property': 588539, 'property on': 684313, 'sale across': 732017, 'across london': 29375, 'london is': 501098, 'year on': 1014882, 'on year': 605396, 'march despite': 515340, 'despite fear': 238737, 'fear that': 301358, 'will soon': 994888, 'soon hit': 785740, 'hit the': 398423, 'the average price': 849106, 'average price of': 104890, 'price of property': 675546, 'of property on': 588540, 'property on sale': 684314, 'on sale across': 603261, 'sale across london': 732018, 'across london is': 29376, 'london is up': 501102, 'is up year': 453585, 'up year on': 946716, 'year on year': 1014886, 'on year in': 605399, 'year in march': 1014651, 'in march despite': 425095, 'march despite fear': 515343, 'despite fear that': 238739, 'fear that will': 301372, 'that will soon': 847611, 'will soon hit': 994896, 'soon hit the': 785741, 'hit the market': 398435, 'kentucky': 472841, '99': 23745, 'gallon': 342960, 'oil barrel': 596639, 'barrel is': 111240, 'is around': 445806, 'around 25': 93132, '25 and': 15837, 'it continues': 457307, 'to drop': 904759, 'drop gas': 260209, 'also dropping': 48139, 'dropping with': 260751, 'with kentucky': 999133, 'kentucky who': 472863, 'ha now': 371389, 'now for': 574713, 'for 99': 318959, '99 gallon': 23831, 'price of oil': 675521, 'of oil barrel': 587177, 'oil barrel is': 596640, 'barrel is around': 111241, 'is around 25': 445808, 'around 25 and': 93135, '25 and it': 15839, 'and it continues': 65504, 'it continues to': 457310, 'continues to drop': 201471, 'to drop gas': 904771, 'drop gas price': 260210, 'price are also': 672632, 'are also dropping': 84448, 'also dropping with': 48141, 'dropping with kentucky': 260752, 'with kentucky who': 999134, 'kentucky who ha': 472864, 'who ha now': 988860, 'ha now for': 371396, 'now for 99': 574714, 'for 99 gallon': 318963, 'western': 980584, 'phase': 654597, 'empathy': 273342, 'emphasizing': 273395, 'recovery': 705284, 'bounce': 136798, 'festival': 303592, 'western company': 980605, 'company can': 190519, 'learn experience': 483957, 'experience from': 291367, 'china during': 176624, '19 phase': 9672, 'phase peak': 654638, 'peak try': 646109, 'show empathy': 766931, 'empathy and': 273345, 'and support': 72830, 'support rather': 826779, 'than emphasizing': 840547, 'emphasizing profit': 273396, 'profit phase': 682842, 'phase recovery': 654640, 'recovery look': 705354, 'look for': 502347, 'online solution': 609398, 'solution phase': 782066, 'phase bounce': 654598, 'bounce back': 136801, 'back prepare': 107231, 'prepare for': 670066, 'shopping festival': 762634, 'western company can': 980606, 'company can learn': 190525, 'can learn experience': 158849, 'learn experience from': 483958, 'experience from china': 291368, 'from china during': 334858, 'china during covid': 176625, 'covid 19 phase': 213576, '19 phase peak': 9673, 'phase peak try': 654639, 'peak try to': 646110, 'try to show': 934665, 'to show empathy': 914556, 'show empathy and': 766932, 'empathy and support': 273348, 'and support rather': 72850, 'support rather than': 826780, 'rather than emphasizing': 697516, 'than emphasizing profit': 840548, 'emphasizing profit phase': 273397, 'profit phase recovery': 682843, 'phase recovery look': 654641, 'recovery look for': 705355, 'look for online': 502366, 'for online solution': 324116, 'online solution phase': 609399, 'solution phase bounce': 782067, 'phase bounce back': 654599, 'bounce back prepare': 136806, 'back prepare for': 107232, 'prepare for shopping': 670085, 'for shopping festival': 325580, 'dbrs': 228926, 'morningstar': 541560, 'downgraded': 257560, 'province': 687155, 'alberta': 40774, 'rating agency': 697582, 'agency dbrs': 38002, 'dbrs morningstar': 228927, 'morningstar ha': 541561, 'ha downgraded': 370435, 'downgraded the': 257565, 'the province': 864724, 'province of': 687183, 'of alberta': 579881, 'alberta due': 40787, 'to plunging': 911841, 'credit rating agency': 216474, 'rating agency dbrs': 697583, 'agency dbrs morningstar': 38003, 'dbrs morningstar ha': 228928, 'morningstar ha downgraded': 541562, 'ha downgraded the': 370437, 'downgraded the province': 257566, 'the province of': 864732, 'province of alberta': 687184, 'of alberta due': 579882, 'alberta due to': 40788, 'due to plunging': 261906, 'to plunging oil': 911842, 'price and the': 672559, 'and the 19': 73228, 'sam': 732904, 'sends': 750121, 'knowing': 477102, 'cu': 220130, 'of ppl': 588328, 'ppl going': 668241, 'store sam': 809979, 'sam club': 732912, 'club etc': 184433, 'etc who': 282878, 'who allow': 988048, 'allow people': 46032, 'to just': 908717, 'just come': 468493, 'in cough': 421816, 'sneeze all': 776227, 'all over': 43848, 'the product': 864579, 'product then': 681712, 'then the': 877609, 'just sends': 469762, 'sends the': 750139, 'product out': 681506, 'out these': 627532, 'these store': 880731, 'no way': 565859, 'of knowing': 585668, 'knowing if': 477120, 'if their': 415052, 'their in': 873634, 'store cu': 807234, 'lot of ppl': 504257, 'of ppl going': 588331, 'ppl going to': 668242, 'going to grocery': 355612, 'grocery store sam': 365742, 'store sam club': 809980, 'sam club etc': 732914, 'club etc who': 184434, 'etc who allow': 282879, 'who allow people': 988049, 'allow people to': 46034, 'people to just': 649915, 'to just come': 908721, 'just come in': 468494, 'come in cough': 187362, 'in cough sneeze': 421818, 'cough sneeze all': 208552, 'sneeze all over': 776228, 'all over the': 43882, 'over the product': 630755, 'the product then': 864596, 'product then the': 681715, 'then the store': 877625, 'the store just': 868045, 'store just sends': 808626, 'just sends the': 469763, 'sends the product': 750140, 'the product out': 864592, 'product out these': 681508, 'out these store': 627536, 'these store have': 880737, 'store have no': 808091, 'have no way': 381664, 'no way of': 565866, 'way of knowing': 969759, 'of knowing if': 585669, 'knowing if their': 477122, 'if their in': 415055, 'their in store': 873635, 'in store cu': 428398, 'delivery service': 234420, 'are bringing': 85057, 'bringing in': 140165, 'in zero': 431153, 'zero contact': 1027421, 'contact delivery': 200061, 'to reduce': 913011, 'reduce contact': 705804, 'contact with': 200265, 'with customer': 997895, 'customer amidst': 222059, 'amidst covid': 52785, 'food delivery service': 314144, 'delivery service are': 234426, 'service are bringing': 752134, 'are bringing in': 85060, 'bringing in zero': 140171, 'in zero contact': 431154, 'zero contact delivery': 1027422, 'contact delivery to': 200064, 'delivery to reduce': 234667, 'to reduce contact': 913015, 'reduce contact with': 705806, 'contact with customer': 200271, 'with customer amidst': 997896, 'customer amidst covid': 222060, 'amidst covid 19': 52786, 'covid 19 fear': 213080, 'youtuber': 1026931, 'kaplamino': 470844, 'known': 477197, 'heathrobinson': 388524, 'rubegoldberg': 727002, 'contraption': 201825, 'dispensing': 246157, 'machine': 507347, 'burning': 142922, 'youtuber kaplamino': 1026932, 'kaplamino known': 470845, 'known for': 477212, 'for heathrobinson': 322169, 'heathrobinson rubegoldberg': 388525, 'rubegoldberg contraption': 727003, 'contraption ha': 201826, 'created quarantine': 215877, 'quarantine hand': 692239, 'hand sanitiser': 375218, 'sanitiser dispensing': 733941, 'dispensing machine': 246158, 'machine that': 507407, 'to answer': 900578, 'answer burning': 78019, 'burning question': 142925, 'our time': 625144, 'time where': 898313, 'where ha': 984899, 'the toiletpaper': 869719, 'toiletpaper gone': 922031, 'youtuber kaplamino known': 1026933, 'kaplamino known for': 470846, 'known for heathrobinson': 477214, 'for heathrobinson rubegoldberg': 322170, 'heathrobinson rubegoldberg contraption': 388526, 'rubegoldberg contraption ha': 727004, 'contraption ha created': 201827, 'ha created quarantine': 370279, 'created quarantine hand': 215878, 'quarantine hand sanitiser': 692240, 'hand sanitiser dispensing': 375226, 'sanitiser dispensing machine': 733942, 'dispensing machine that': 246159, 'machine that help': 507408, 'that help to': 844304, 'help to answer': 390766, 'to answer burning': 900580, 'answer burning question': 78020, 'burning question of': 142927, 'question of our': 693667, 'of our time': 587578, 'our time where': 625148, 'time where ha': 898317, 'where ha all': 984900, 'ha all the': 369483, 'all the toiletpaper': 44946, 'the toiletpaper gone': 869726, 'spring': 791154, 'housing': 407043, 'slower': 774503, 'pause': 644577, 'the spring': 867654, 'spring housing': 791216, 'housing market': 407095, 'market will': 517350, 'be much': 116019, 'much slower': 545303, 'slower than': 774512, 'than normal': 840942, 'normal but': 567103, 'but home': 145952, 'price remain': 676164, 'remain stable': 709855, 'stable even': 791903, 'even some': 284596, 'some market': 783257, 'market hit': 516522, 'hit pause': 398367, 'pause during': 644589, 'the spring housing': 867658, 'spring housing market': 791217, 'housing market will': 407116, 'market will be': 517351, 'will be much': 992566, 'be much slower': 116027, 'much slower than': 545304, 'slower than normal': 774516, 'than normal but': 840943, 'normal but home': 567106, 'but home price': 145955, 'home price remain': 401914, 'price remain stable': 676168, 'remain stable even': 709857, 'stable even some': 791904, 'even some market': 284598, 'some market hit': 783258, 'market hit pause': 516525, 'hit pause during': 398368, 'pause during the': 644590, 'rabbit': 695137, 'distilling': 247838, 'led': 485214, 'rabbit hole': 695142, 'hole distilling': 400209, 'distilling led': 247851, 'led by': 485215, 'by global': 152692, 'global entrepreneur': 351918, 'entrepreneur join': 278942, 'the national': 861281, 'national fight': 552506, 'against the': 37638, 'pandemic with': 637021, 'with hand': 998721, 'production read': 682195, 'rabbit hole distilling': 695143, 'hole distilling led': 400210, 'distilling led by': 247852, 'led by global': 485218, 'by global entrepreneur': 152694, 'global entrepreneur join': 351919, 'entrepreneur join the': 278943, 'join the national': 466861, 'the national fight': 861294, 'national fight against': 552507, 'fight against the': 304640, 'against the pandemic': 37673, 'the pandemic with': 863159, 'pandemic with hand': 637028, 'with hand sanitizer': 998724, 'hand sanitizer production': 375548, 'sanitizer production read': 735606, 'production read more': 682196, 'paradox': 641314, 'upended': 947495, 'hum': 410381, 'along': 46974, 'dose': 255925, 'denial': 236932, 'consequence': 194835, 'sickness': 768742, 'paradox of': 641320, 'amid coronavirus': 52414, 'consumer end': 197358, 'is upended': 453588, 'upended producer': 947500, 'producer end': 680606, 'end hum': 275843, 'hum along': 410382, 'along with': 47040, 'with dose': 998124, 'dose of': 255926, 'of denial': 582526, 'denial about': 236933, 'about consequence': 24992, 'consequence of': 194871, 'of worker': 593273, 'worker sickness': 1007786, 'paradox of food': 641321, 'food amid coronavirus': 313116, 'amid coronavirus consumer': 52418, 'coronavirus consumer end': 205681, 'consumer end of': 197359, 'end of supply': 275917, 'of supply chain': 590473, 'chain is upended': 170853, 'is upended producer': 453589, 'upended producer end': 947501, 'producer end hum': 680607, 'end hum along': 275844, 'hum along with': 410383, 'along with dose': 47051, 'with dose of': 998125, 'dose of denial': 255928, 'of denial about': 582527, 'denial about consequence': 236934, 'about consequence of': 24993, 'consequence of worker': 194880, 'of worker sickness': 593282, 'stood': 804370, 'humor': 410852, 'stoodupjohn': 804398, 'smile': 775692, 'comedy': 187735, 'coffee': 185446, 'comic': 187917, 'stood up': 804395, 'up john': 945260, 'john buy': 466518, 'buy toilet': 149378, 'paper just': 640389, 'just little': 469169, 'little humor': 495394, 'humor to': 410925, 'help get': 389798, 'through these': 894792, 'these difficult': 879922, 'time stay': 897750, 'safe stoodupjohn': 729996, 'stoodupjohn toiletpaper': 804399, 'toiletpaper humor': 922091, 'humor laugh': 410890, 'laugh smile': 481761, 'smile comedy': 775705, 'comedy joke': 187757, 'joke coffee': 467071, 'coffee comic': 185473, 'comic quarantine': 187946, 'quarantine virus': 692676, 'virus pandemic': 958597, 'pandemic toiletpaper': 636809, 'toiletpaper toiletpaperpanic': 922691, 'stood up john': 804397, 'up john buy': 945262, 'john buy toilet': 466519, 'buy toilet paper': 149379, 'toilet paper just': 921329, 'paper just little': 640393, 'just little humor': 469172, 'little humor to': 495398, 'humor to help': 410926, 'to help get': 907529, 'help get through': 389804, 'get through these': 348440, 'through these difficult': 894793, 'these difficult time': 879925, 'difficult time stay': 242309, 'time stay safe': 897753, 'stay safe stoodupjohn': 797284, 'safe stoodupjohn toiletpaper': 729997, 'stoodupjohn toiletpaper humor': 804400, 'toiletpaper humor laugh': 922094, 'humor laugh smile': 410892, 'laugh smile comedy': 481762, 'smile comedy joke': 775706, 'comedy joke coffee': 187758, 'joke coffee comic': 467072, 'coffee comic quarantine': 185474, 'comic quarantine virus': 187947, 'quarantine virus pandemic': 692678, 'virus pandemic toiletpaper': 958609, 'pandemic toiletpaper toiletpaperpanic': 636820, 'merchandising': 528990, 'of disease': 582670, 'disease 19': 245071, 'consumer product': 198447, 'and merchandising': 66957, 'merchandising sector': 528991, 'impact of disease': 417769, 'of disease 19': 582671, 'disease 19 on': 245073, 'on consumer product': 600068, 'consumer product and': 198448, 'product and merchandising': 680893, 'and merchandising sector': 66958, 'holding': 400087, 'shouldering': 766716, 'citizenship': 179016, '1500': 3929, 'ethiopia': 283098, 'condition': 193387, 'threat': 893625, 'east african': 265278, 'african holding': 35202, 'holding is': 400123, 'is shouldering': 451890, 'shouldering real': 766717, 'real citizenship': 701068, 'citizenship responsibility': 179017, 'responsibility not': 715967, 'only providing': 611032, 'providing item': 687040, 'item with': 463836, 'with usual': 1001943, 'usual price': 951000, 'supermarket but': 819437, 'also feeding': 48196, 'feeding time': 302491, 'time in': 896973, 'in day': 422001, 'for 1500': 318675, '1500 citizen': 3936, 'citizen in': 178913, 'in ethiopia': 422613, 'ethiopia for': 283103, 'free at': 331663, 'this bad': 886480, 'bad condition': 107815, 'condition with': 193561, '19 threat': 11373, 'east african holding': 265279, 'african holding is': 35204, 'holding is shouldering': 400124, 'is shouldering real': 451891, 'shouldering real citizenship': 766718, 'real citizenship responsibility': 701069, 'citizenship responsibility not': 179018, 'responsibility not only': 715968, 'not only providing': 570821, 'only providing item': 611033, 'providing item with': 687041, 'item with usual': 463841, 'with usual price': 1001944, 'usual price in': 951003, 'price in supermarket': 674739, 'in supermarket but': 428566, 'supermarket but also': 819439, 'but also feeding': 145112, 'also feeding time': 48197, 'feeding time in': 302492, 'time in day': 896985, 'in day for': 422009, 'day for 1500': 227616, 'for 1500 citizen': 318676, '1500 citizen in': 3937, 'citizen in ethiopia': 178914, 'in ethiopia for': 422616, 'ethiopia for free': 283104, 'for free at': 321705, 'free at this': 331667, 'at this bad': 101224, 'this bad condition': 886483, 'bad condition with': 107816, 'condition with covid': 193562, 'covid 19 threat': 213947, 'southernil': 786873, 'carbondale': 163421, 'littleegypt': 495663, 'southernillinois': 786876, 'illinoislockdown': 416324, 'cnn': 184744, 'doe humanity': 251414, 'humanity really': 410769, 'really end': 702160, 'when toiletpaper': 984330, 'toiletpaper run': 922426, 'out via': 627770, 'via southernil': 956252, 'southernil carbondale': 786874, 'carbondale pandemic': 163422, 'hoarding littleegypt': 399415, 'littleegypt southernillinois': 495664, 'southernillinois illinoislockdown': 786877, 'illinoislockdown cnn': 416325, 'doe humanity really': 251415, 'humanity really end': 410770, 'really end when': 702161, 'end when toiletpaper': 276072, 'when toiletpaper run': 984332, 'toiletpaper run out': 922427, 'run out via': 727771, 'out via southernil': 627771, 'via southernil carbondale': 956253, 'southernil carbondale pandemic': 786875, 'carbondale pandemic hoarding': 163423, 'pandemic hoarding littleegypt': 635650, 'hoarding littleegypt southernillinois': 399416, 'littleegypt southernillinois illinoislockdown': 495665, 'southernillinois illinoislockdown cnn': 786878, 'legit': 486025, 'package': 633203, 'transit': 929619, 'dreading': 258581, 'this legit': 888606, 'legit cause': 486028, 'cause have': 167584, 'have lot': 381389, 'of package': 587647, 'package online': 633356, 'in transit': 430266, 'transit some': 929649, 'even from': 284089, 'from region': 337060, 'region in': 707424, 'china that': 176978, 'that confirmed': 843282, 'confirmed to': 194206, 'to have': 907191, '19 case': 5660, 'case and': 165618, 'and ve': 74847, 'been dreading': 121039, 'dreading about': 258582, 'this issue': 888506, 'issue for': 455753, 'for while': 327835, 'while ve': 987508, 've asked': 952849, 'asked some': 95824, 'is this legit': 453103, 'this legit cause': 888607, 'legit cause have': 486029, 'cause have lot': 167586, 'have lot of': 381391, 'lot of package': 504244, 'of package online': 587649, 'package online shopping': 633357, 'shopping in transit': 762993, 'in transit some': 430267, 'transit some even': 929650, 'some even from': 782769, 'even from region': 284091, 'from region in': 337061, 'region in china': 707425, 'in china that': 421438, 'china that confirmed': 176979, 'that confirmed to': 843283, 'confirmed to have': 194207, 'to have lot': 907270, 'lot of covid': 504166, 'covid 19 case': 212764, '19 case and': 5665, 'case and ve': 165631, 'and ve been': 74848, 've been dreading': 952880, 'been dreading about': 121040, 'dreading about this': 258583, 'about this issue': 26642, 'this issue for': 888507, 'issue for while': 455757, 'for while ve': 327853, 'while ve asked': 987509, 've asked some': 952850, 'shelterinplace': 757984, 'paper line': 640418, 'line during': 493063, 'during coronavirus': 262532, 'coronavirus pandemic': 206431, 'quarantine it': 692318, 'it out': 460170, 'control toiletpaper': 202198, 'toiletpaper pandemic': 922301, 'quarantine stayathome': 692562, 'stayathome saferathome': 797599, 'saferathome shelterinplace': 730412, 'toilet paper line': 921338, 'paper line during': 640419, 'line during coronavirus': 493064, 'during coronavirus pandemic': 262540, 'coronavirus pandemic quarantine': 206484, 'pandemic quarantine it': 636268, 'quarantine it out': 692319, 'it out of': 460188, 'of control toiletpaper': 581851, 'control toiletpaper pandemic': 202199, 'toiletpaper pandemic quarantine': 922303, 'pandemic quarantine stayathome': 636271, 'quarantine stayathome saferathome': 692563, 'stayathome saferathome shelterinplace': 797601, 'considering': 195349, 'revised': 720633, 'suite': 817825, 'advertising': 33190, 'interrupted': 442106, 'considering the': 195422, 'pandemic we': 636928, 'have revised': 382319, 'revised our': 720638, 'our price': 624436, 'to best': 901772, 'best suite': 127918, 'suite the': 817828, 'the client': 851013, 'client need': 182072, 'need so': 555577, 'can promote': 159317, 'promote your': 683806, 'product or': 681492, 'or service': 617013, 'service and': 752067, 'and keep': 65748, 'keep your': 472252, 'your marketing': 1024776, 'marketing or': 517670, 'or advertising': 614265, 'advertising activity': 33195, 'activity un': 30521, 'un interrupted': 939291, 'interrupted so': 442113, 'considering the covid': 195424, '19 pandemic we': 9520, 'pandemic we have': 636941, 'we have revised': 971926, 'have revised our': 382320, 'revised our price': 720639, 'our price to': 624450, 'price to best': 676970, 'to best suite': 901778, 'best suite the': 127919, 'suite the client': 817829, 'the client need': 851016, 'client need so': 182073, 'need so you': 555581, 'you can promote': 1017753, 'can promote your': 159318, 'promote your product': 683808, 'your product or': 1025443, 'product or service': 681496, 'or service and': 617014, 'service and keep': 752094, 'and keep your': 65789, 'keep your marketing': 472277, 'your marketing or': 1024779, 'marketing or advertising': 517671, 'or advertising activity': 614266, 'advertising activity un': 33196, 'activity un interrupted': 30522, 'un interrupted so': 939292, 'interrupted so to': 442114, 'cent': 169030, 'lower gas': 505866, 'price expert': 673734, 'expert say': 291941, 'say gas': 738666, 'gas could': 343803, 'could hit': 209301, 'hit 99': 398119, '99 cent': 23789, 'cent in': 169073, 'in some': 428079, 'some state': 783937, 'state due': 795539, 'to and': 900483, 'lower gas price': 505867, 'gas price expert': 343959, 'price expert say': 673735, 'expert say gas': 291949, 'say gas could': 738667, 'gas could hit': 343805, 'could hit 99': 209302, 'hit 99 cent': 398120, '99 cent in': 23794, 'cent in some': 169077, 'in some state': 428104, 'some state due': 783939, 'state due to': 795540, 'due to and': 261703, 'to and supply': 900525, 'complain': 191841, 'yourselves': 1026774, 'inflicted': 437274, 'if any': 413825, 'any panic': 79619, 'panic buyer': 637550, 'buyer now': 149697, 'now complain': 574423, 'complain about': 191842, 'up you': 946721, 'can literally': 158889, 'literally fuck': 495002, 'fuck yourselves': 339712, 'yourselves you': 1026822, 'have done': 380320, 'done this': 255051, 'this and': 886322, 'have inflicted': 381080, 'inflicted this': 437287, 'on everyone': 600632, 'else supermarket': 271900, 'supermarket agree': 818824, 'agree price': 38634, 'with supplier': 1001069, 'supplier for': 824533, 'for fixed': 321514, 'fixed buy': 309782, 'buy after': 148275, 'after that': 36273, 'it back': 456661, 'normal until': 567385, 'until next': 943792, 'next deal': 561336, 'if any panic': 413832, 'any panic buyer': 79620, 'panic buyer now': 637592, 'buyer now complain': 149698, 'now complain about': 574424, 'complain about price': 191847, 'going up you': 355800, 'up you can': 946723, 'you can literally': 1017717, 'can literally fuck': 158891, 'literally fuck yourselves': 495004, 'fuck yourselves you': 339713, 'yourselves you have': 1026824, 'you have done': 1019039, 'have done this': 380339, 'done this and': 255052, 'this and you': 886361, 'and you have': 76024, 'you have inflicted': 1019062, 'have inflicted this': 381082, 'inflicted this on': 437288, 'this on everyone': 889212, 'on everyone else': 600635, 'everyone else supermarket': 286879, 'else supermarket agree': 271901, 'supermarket agree price': 818825, 'agree price with': 38636, 'price with supplier': 677623, 'with supplier for': 1001071, 'supplier for fixed': 824534, 'for fixed buy': 321515, 'fixed buy after': 309783, 'buy after that': 148276, 'after that it': 36276, 'that it back': 844693, 'it back to': 456674, 'to normal until': 910666, 'normal until next': 567386, 'until next deal': 943793, 'tweeting': 936465, 'ruined': 727122, 'abusing': 27704, 'hadn': 373837, 'stupid': 815330, 'than month': 840902, 'month ago': 537530, 'ago people': 38441, 'people were': 650192, 'were tweeting': 980298, 'tweeting christmas': 936476, 'christmas ruined': 178196, 'ruined abusing': 727125, 'abusing supermarket': 27721, 'co they': 184980, 'they hadn': 882270, 'hadn received': 373856, 'received certain': 703609, 'certain item': 170035, 'item in': 463339, 'in their': 429706, 'delivery hope': 234094, 'hope those': 403732, 'those same': 892416, 'same people': 733211, 'feel bloody': 302587, 'bloody stupid': 133241, 'stupid now': 815427, 'le than month': 483181, 'than month ago': 840903, 'month ago people': 537538, 'ago people were': 38443, 'people were tweeting': 650228, 'were tweeting christmas': 980299, 'tweeting christmas ruined': 936477, 'christmas ruined abusing': 178198, 'ruined abusing supermarket': 727126, 'abusing supermarket staff': 27722, 'supermarket staff co': 822827, 'staff co they': 792330, 'co they hadn': 184983, 'they hadn received': 882273, 'hadn received certain': 373857, 'received certain item': 703610, 'certain item in': 170039, 'item in their': 463357, 'in their shopping': 429777, 'their shopping delivery': 874717, 'shopping delivery hope': 762461, 'delivery hope those': 234095, 'hope those same': 403734, 'those same people': 892417, 'same people feel': 733213, 'people feel bloody': 647891, 'feel bloody stupid': 302588, 'bloody stupid now': 133242, 'washing': 967641, 'spread by': 790459, 'by washing': 154693, 'washing your': 967756, 'hand often': 375118, 'often with': 596305, 'water you': 969274, 'should wash': 766630, 'wash for': 967462, 'least 20': 484337, 'second each': 743701, 'each time': 264295, 'time or': 897423, 'or use': 617611, 'use an': 949033, 'an alcohol': 55224, 'alcohol based': 40924, 'based hand': 111602, 'sanitizer more': 735376, 'more way': 540947, 'can help prevent': 158648, 'the spread by': 867619, 'spread by washing': 790465, 'by washing your': 154696, 'washing your hand': 967758, 'your hand often': 1024207, 'hand often with': 375127, 'often with soap': 596306, 'with soap and': 1000791, 'soap and water': 778934, 'and water you': 75268, 'water you should': 969278, 'you should wash': 1021230, 'should wash for': 766631, 'wash for at': 967464, 'at least 20': 99444, 'least 20 second': 484344, '20 second each': 13327, 'second each time': 743702, 'each time or': 264297, 'time or use': 897427, 'or use an': 617613, 'use an alcohol': 949034, 'an alcohol based': 55225, 'alcohol based hand': 40930, 'based hand sanitizer': 111603, 'hand sanitizer more': 375493, 'sanitizer more way': 735381, 'more way to': 540948, 'way to stay': 970102, 'to stay safe': 915313, 'rajender': 696181, 'coronalockdown': 205030, 'shud': 767749, 'augment': 102972, 'ambulance': 51317, 'telangana': 836634, '108': 2264, 'unreachable': 943284, 'hitch': 398528, 'ride': 721422, 'downlo': 257573, 'rajender coronalockdown': 696182, 'coronalockdown govt': 205034, 'govt shud': 361287, 'shud augment': 767750, 'augment the': 102973, 'the ambulance': 848619, 'ambulance service': 51342, 'and control': 60513, 'price telangana': 676761, 'telangana 108': 836635, '108 unreachable': 2267, 'unreachable sick': 943285, 'sick spend': 768613, 'spend hour': 788613, 'hour on': 405815, 'on road': 603207, 'road to': 724523, 'to hitch': 907858, 'hitch ride': 398529, 'ride downlo': 721427, 'rajender coronalockdown govt': 696183, 'coronalockdown govt shud': 205035, 'govt shud augment': 361288, 'shud augment the': 767751, 'augment the ambulance': 102974, 'the ambulance service': 848621, 'ambulance service and': 51343, 'service and control': 752079, 'and control price': 60516, 'control price telangana': 202117, 'price telangana 108': 676762, 'telangana 108 unreachable': 836636, '108 unreachable sick': 2268, 'unreachable sick spend': 943286, 'sick spend hour': 768614, 'spend hour on': 788615, 'hour on road': 405819, 'on road to': 603210, 'road to hitch': 724524, 'to hitch ride': 907859, 'hitch ride downlo': 398530, 'facebook': 294876, 'letting': 487395, 'credit go': 216397, 'to whoever': 918574, 'whoever posted': 990107, 'posted it': 666544, 'it on': 460025, 'on facebook': 600697, 'facebook someone': 294994, 'someone who': 784747, 'store appreciate': 806448, 'appreciate you': 82779, 'for letting': 322949, 'letting others': 487430, 'others know': 621510, 'credit go to': 216398, 'go to whoever': 354384, 'to whoever posted': 918576, 'whoever posted it': 990108, 'posted it on': 666545, 'it on facebook': 460042, 'on facebook someone': 600715, 'facebook someone who': 294995, 'someone who work': 784773, 'who work in': 990039, 'work in grocery': 1005310, 'grocery store appreciate': 365212, 'store appreciate you': 806449, 'appreciate you for': 82784, 'you for letting': 1018653, 'for letting others': 322951, 'letting others know': 487431, 'washington': 967762, 'league': 483841, 'transparency': 929817, 'ethic': 283036, 'accuses': 28969, 'washlite': 967833, 'violating': 957499, 'privacy': 678786, 'the lawsuit': 859200, 'lawsuit brought': 482524, 'brought by': 141137, 'the nonprofit': 861843, 'nonprofit group': 566683, 'group washington': 366961, 'washington league': 967778, 'league for': 483851, 'for increased': 322529, 'increased transparency': 433522, 'transparency and': 929820, 'and ethic': 62291, 'ethic accuses': 283037, 'accuses washlite': 28970, 'washlite fox': 967834, 'news of': 560648, 'of violating': 592805, 'violating the': 957504, 'the washington': 871107, 'washington state': 967803, 'state consumer': 795477, 'consumer privacy': 198431, 'privacy act': 678787, 'the lawsuit brought': 859201, 'lawsuit brought by': 482525, 'brought by the': 141139, 'by the nonprofit': 154389, 'the nonprofit group': 861846, 'nonprofit group washington': 566684, 'group washington league': 366962, 'washington league for': 967779, 'league for increased': 483852, 'for increased transparency': 322531, 'increased transparency and': 433523, 'transparency and ethic': 929822, 'and ethic accuses': 62292, 'ethic accuses washlite': 283038, 'accuses washlite fox': 28971, 'washlite fox news': 967835, 'fox news of': 330766, 'news of violating': 560653, 'of violating the': 592806, 'violating the washington': 957506, 'the washington state': 871111, 'washington state consumer': 967805, 'state consumer privacy': 795479, 'consumer privacy act': 198432, 'margin': 515601, 'sterile': 799838, 'maximum': 520810, 'emirate': 273191, 'price increase': 674764, 'government ordered': 360436, 'ordered the': 618910, 'pharmacy to': 654513, 'make the': 510555, 'the profit': 864617, 'profit margin': 682804, 'margin for': 515630, 'for sterile': 325901, 'sterile maximum': 799845, 'maximum this': 520846, 'is what': 453860, 'what all': 981005, 'government should': 360596, 'should do': 765919, 'do 19': 249017, '19 emirate': 6769, 'to avoid the': 900947, 'avoid the price': 105330, 'the price increase': 864369, 'price increase the': 674791, 'increase the government': 433105, 'the government ordered': 856577, 'government ordered the': 360437, 'ordered the pharmacy': 618913, 'the pharmacy to': 863666, 'pharmacy to make': 654520, 'to make the': 909750, 'make the profit': 510580, 'the profit margin': 864620, 'profit margin for': 682808, 'margin for sterile': 515631, 'for sterile maximum': 325902, 'sterile maximum this': 799846, 'maximum this is': 520847, 'this is what': 888464, 'is what all': 453862, 'what all the': 981009, 'all the government': 44767, 'the government should': 856601, 'government should do': 360601, 'should do 19': 765920, 'do 19 emirate': 249019, 'decontaminates': 231514, 'bruno': 141352, 'lina': 492904, 'answered': 78157, 'transfered': 929536, 'respiration': 715182, 'should we': 766637, 'we decontaminates': 971248, 'decontaminates our': 231515, 'food from': 314597, 'supermarket no': 821604, 'no the': 565694, 'the virologist': 870781, 'virologist bruno': 957694, 'bruno lina': 141353, 'lina answered': 492905, 'answered when': 78191, 'question wa': 693785, 'wa asked': 961589, 'asked he': 95754, 'he added': 384710, 'added it': 31573, 'it cannot': 457046, 'cannot be': 161632, 'be transfered': 117787, 'transfered from': 929537, 'from food': 335502, 'food it': 315175, 'be done': 114547, 'done only': 254969, 'only by': 610210, 'by respiration': 153785, 'respiration there': 715183, 'also the': 48968, 'the infection': 858221, 'infection dose': 436748, 'dose that': 255932, 'that should': 846280, 'be known': 115642, 'should we decontaminates': 766643, 'we decontaminates our': 971249, 'decontaminates our food': 231516, 'our food from': 623110, 'food from the': 314616, 'the supermarket no': 868713, 'supermarket no the': 821620, 'no the virologist': 565700, 'the virologist bruno': 870782, 'virologist bruno lina': 957695, 'bruno lina answered': 141354, 'lina answered when': 492906, 'answered when the': 78192, 'when the question': 984191, 'the question wa': 865027, 'question wa asked': 693786, 'wa asked he': 961590, 'asked he added': 95755, 'he added it': 384711, 'added it cannot': 31574, 'it cannot be': 457048, 'cannot be transfered': 161652, 'be transfered from': 117788, 'transfered from food': 929538, 'from food it': 335509, 'food it can': 315178, 'it can be': 457008, 'can be done': 157615, 'be done only': 114564, 'done only by': 254970, 'only by respiration': 610213, 'by respiration there': 153786, 'respiration there is': 715184, 'there is also': 878521, 'is also the': 445580, 'also the infection': 48973, 'the infection dose': 858223, 'infection dose that': 436749, 'dose that should': 255933, 'that should be': 846283, 'should be known': 765654, 'dear': 229736, 'sir': 771532, 'direction': 243439, 'voted': 960545, 'dear sir': 229865, 'sir we': 771669, 'all really': 44127, 'really appreciate': 701978, 'appreciate your': 82792, 'your direction': 1023514, 'direction towards': 243487, 'towards covid': 927176, 'have voted': 383526, 'voted you': 960568, 'be our': 116275, 'our prime': 624457, 'minister to': 533474, 'nation we': 552367, 'all had': 43022, 'had question': 373438, 'question what': 693792, 'and grocery': 63974, 'grocery for': 364525, 'common people': 189426, 'dear sir we': 229874, 'sir we all': 771670, 'we all really': 970355, 'all really appreciate': 44128, 'really appreciate your': 701981, 'appreciate your direction': 82795, 'your direction towards': 1023515, 'direction towards covid': 243488, 'towards covid 19': 927177, '19 we have': 11932, 'we have voted': 971985, 'have voted you': 383527, 'voted you to': 960569, 'you to be': 1021753, 'to be our': 901426, 'be our prime': 116279, 'our prime minister': 624458, 'prime minister to': 678161, 'minister to help': 533475, 'to help and': 907450, 'help and the': 389360, 'and the nation': 73486, 'the nation we': 861274, 'nation we all': 552368, 'we all had': 970331, 'all had question': 43023, 'had question what': 373439, 'question what about': 693793, 'what about food': 980971, 'about food water': 25267, 'water and grocery': 968866, 'and grocery for': 63986, 'grocery for the': 364530, 'for the common': 326352, 'the common people': 851255, 'common people who': 189432, 'exploiting': 292415, 'official cannot': 595772, 'cannot lower': 162003, 'lower price': 505951, 'price because': 672861, 'stop going': 804687, 'going out': 355355, 'out cannot': 625827, 'stop exploiting': 804638, 'exploiting this': 292464, 'this situation': 890170, 'situation to': 772528, 'increase profit': 433025, 'profit australia': 682671, 'official cannot lower': 595773, 'cannot lower price': 162004, 'lower price because': 505954, 'price because people': 672866, 'because people do': 119471, 'want to stop': 966132, 'to stop going': 915528, 'stop going out': 804689, 'going out cannot': 355364, 'out cannot stop': 625832, 'cannot stop exploiting': 162134, 'stop exploiting this': 804640, 'exploiting this situation': 292465, 'this situation to': 890193, 'situation to increase': 772538, 'to increase profit': 908296, 'increase profit australia': 433026, 'celebrate': 168779, 'relaunch': 708792, 'sweet': 830216, 'bakery': 108833, 'damper': 225508, 'new website': 559866, 'website with': 975487, 'with new': 999697, 'new online': 559208, 'online store': 609440, 'store this': 810692, 'this coming': 886809, 'coming weekend': 188290, 'weekend we': 977441, 'were to': 980262, 'to celebrate': 902550, 'celebrate the': 168799, 'the relaunch': 865471, 'relaunch of': 708793, 'of sweet': 590555, 'sweet bakery': 830223, 'bakery retail': 108879, 'retail however': 718193, 'however covid': 409354, 'ha put': 371586, 'put bit': 690537, 'bit of': 131629, 'of damper': 582341, 'damper on': 225509, 'that so': 846356, 'so instead': 777414, 'instead we': 440382, 'doing curbside': 252344, 'new website with': 559871, 'website with new': 975492, 'with new online': 999708, 'new online store': 559214, 'online store this': 609476, 'store this coming': 810696, 'this coming weekend': 886811, 'coming weekend we': 188291, 'weekend we were': 977446, 'we were to': 973815, 'were to celebrate': 980263, 'to celebrate the': 902556, 'celebrate the relaunch': 168803, 'the relaunch of': 865472, 'relaunch of sweet': 708794, 'of sweet bakery': 590557, 'sweet bakery retail': 830224, 'bakery retail however': 108880, 'retail however covid': 718194, 'however covid 19': 409355, '19 ha put': 7375, 'ha put bit': 371590, 'put bit of': 690538, 'bit of damper': 131638, 'of damper on': 582342, 'damper on that': 225510, 'on that so': 603947, 'that so instead': 846359, 'so instead we': 777417, 'instead we will': 440384, 'will be doing': 992435, 'be doing curbside': 114512, 'commend': 188365, 'outstanding': 629686, 'commend medical': 188366, 'medical personnel': 526292, 'personnel and': 653076, 'hospital for': 404406, 'their outstanding': 874150, 'outstanding service': 629699, 'service even': 752343, 'though there': 892915, 'is shortage': 451881, 'of critical': 582201, 'critical supply': 218675, 'no support': 565635, 'support from': 826533, 'government consumer': 359993, 'consumer people': 198348, 'commend medical personnel': 188367, 'medical personnel and': 526294, 'personnel and hospital': 653080, 'and hospital for': 64747, 'hospital for their': 404415, 'for their outstanding': 326856, 'their outstanding service': 874152, 'outstanding service even': 629700, 'service even though': 752344, 'even though there': 284719, 'though there is': 892917, 'there is shortage': 878623, 'is shortage of': 451883, 'shortage of critical': 765106, 'of critical supply': 582210, 'critical supply and': 218676, 'supply and no': 824740, 'and no support': 67645, 'no support from': 565637, 'support from the': 826536, 'from the government': 337726, 'the government consumer': 856518, 'government consumer people': 359994, 'dr': 257941, 'hubert': 409883, 'minnis': 533624, 'bahamian': 108543, 'minister dr': 533358, 'dr hubert': 258030, 'hubert minnis': 409884, 'minnis ha': 533627, 'ha called': 370042, 'called on': 156393, 'on bahamian': 599538, 'bahamian and': 108544, 'and resident': 70308, 'resident to': 714378, 'stop panic': 804879, 'buying food': 150298, 'hoarding supply': 399563, 'supply in': 825394, 'to news': 910585, 'prime minister dr': 678135, 'minister dr hubert': 533359, 'dr hubert minnis': 258031, 'hubert minnis ha': 409886, 'minnis ha called': 533628, 'ha called on': 370044, 'called on bahamian': 156394, 'on bahamian and': 599539, 'bahamian and resident': 108545, 'and resident to': 70309, 'resident to stop': 714388, 'to stop panic': 915550, 'stop panic buying': 804883, 'panic buying food': 637734, 'buying food and': 150300, 'food and hoarding': 313252, 'and hoarding supply': 64664, 'hoarding supply in': 399569, 'supply in response': 825410, 'response to news': 715870, 'to news of': 910586, 'news of the': 560652, 'sucking': 816962, 'cock': 185215, 'far the': 298926, 'only cure': 610296, 'is sucking': 452429, 'sucking my': 816967, 'my cock': 547717, 'cock so': 185220, 'so everyone': 776970, 'stop buying': 804526, 'buying the': 151161, 'toiletpaper and': 921717, 'and starting': 72262, 'starting sucking': 794996, 'sucking check': 816963, 'this video': 890974, 'video where': 956958, 'where you': 985382, 'can see': 159529, 'see staying': 745741, 'safe with': 730148, 'with my': 999605, 'cock in': 185216, 'her mouth': 392209, 'so far the': 777059, 'far the only': 298933, 'the only cure': 862297, 'only cure for': 610298, 'for the is': 326511, 'the is sucking': 858536, 'is sucking my': 452430, 'sucking my cock': 816968, 'my cock so': 547719, 'cock so everyone': 185221, 'so everyone should': 776980, 'everyone should stop': 287381, 'should stop buying': 766515, 'stop buying the': 804548, 'buying the toiletpaper': 151176, 'the toiletpaper and': 869721, 'toiletpaper and starting': 921731, 'and starting sucking': 72263, 'starting sucking check': 794997, 'sucking check out': 816964, 'out this video': 627591, 'this video where': 890990, 'video where you': 956960, 'where you can': 985385, 'you can see': 1017775, 'can see staying': 159546, 'see staying safe': 745742, 'staying safe with': 798703, 'safe with my': 730152, 'with my cock': 999613, 'my cock in': 547718, 'cock in her': 185217, 'in her mouth': 423659, 'ercot': 280121, 'manages': 512838, 'flow': 311223, 'electric': 271096, 'power': 667550, 'represents': 712956, 'ercot manages': 280122, 'manages the': 512839, 'the flow': 855447, 'flow of': 311247, 'of electric': 583013, 'electric power': 271120, 'power to': 667701, 'to more': 910250, 'than 26': 840213, '26 million': 16176, 'million texas': 532365, 'texas customer': 839757, 'customer which': 223066, 'which represents': 986265, 'represents about': 712959, 'about 90': 24751, '90 of': 23315, 'the state': 867743, 'state electric': 795555, 'electric load': 271115, 'ercot manages the': 280123, 'manages the flow': 512840, 'the flow of': 855448, 'flow of electric': 311249, 'of electric power': 583014, 'electric power to': 271121, 'power to more': 667713, 'to more than': 910268, 'more than 26': 540558, 'than 26 million': 840214, '26 million texas': 16177, 'million texas customer': 532366, 'texas customer which': 839758, 'customer which represents': 223068, 'which represents about': 986266, 'represents about 90': 712960, 'about 90 of': 24752, '90 of the': 23320, 'of the state': 591489, 'the state electric': 867771, 'state electric load': 795556, 'your daily': 1023438, 'daily star': 224809, 'star war': 794073, 'war actor': 966336, 'actor dy': 30577, '19 people': 9616, 'buying pet': 150900, 'pet food': 653378, 'food rent': 316169, 'rent due': 711070, 'due so': 261683, 'so now': 777903, 'now what': 576375, 'your daily star': 1023448, 'daily star war': 224810, 'star war actor': 794074, 'war actor dy': 966337, 'actor dy from': 30578, 'covid 19 people': 213566, '19 people panic': 9630, 'people panic buying': 649055, 'panic buying pet': 637846, 'buying pet food': 150901, 'pet food rent': 653396, 'food rent due': 316170, 'rent due so': 711072, 'due so now': 261684, 'so now what': 777911, 'announcement to': 77214, 'our staff': 624873, 'and customer': 60831, 'announcement to all': 77215, 'to all our': 900277, 'all our staff': 43831, 'our staff and': 624874, 'staff and customer': 792135, 'plastic': 658789, 'reuse': 720173, 'ariadni': 92772, 'workplace': 1009187, 'she doe': 755999, 'doe not': 251469, 'have face': 380545, 'wear amp': 974282, 'amp ha': 53896, 'wash her': 967501, 'her plastic': 392304, 'plastic glove': 658846, 'glove at': 352601, 'of each': 582896, 'each shift': 264270, 'shift so': 758406, 'so she': 778186, 'she can': 755916, 'can reuse': 159480, 'reuse them': 720178, 'them from': 875745, 'from toronto': 338109, 'toronto to': 926003, 'to like': 909273, 'like grocery': 490344, 'store cleaner': 806986, 'cleaner ariadni': 180750, 'ariadni deserve': 92773, 'deserve safe': 238115, 'safe workplace': 730160, 'workplace now': 1009204, 'than ever': 840567, 'she doe not': 756000, 'doe not have': 251498, 'not have face': 569832, 'have face mask': 380546, 'face mask to': 294600, 'mask to wear': 519430, 'to wear amp': 918420, 'wear amp ha': 974283, 'amp ha to': 53898, 'ha to wash': 372322, 'to wash her': 918346, 'wash her plastic': 967503, 'her plastic glove': 392305, 'plastic glove at': 658847, 'glove at the': 352605, 'end of each': 275897, 'of each shift': 582906, 'each shift so': 264271, 'shift so she': 758407, 'so she can': 778188, 'she can reuse': 755926, 'can reuse them': 159481, 'reuse them from': 720179, 'them from toronto': 875759, 'from toronto to': 338111, 'toronto to like': 926004, 'to like grocery': 909277, 'like grocery store': 490347, 'grocery store cleaner': 365284, 'store cleaner ariadni': 806987, 'cleaner ariadni deserve': 180751, 'ariadni deserve safe': 92774, 'deserve safe workplace': 238116, 'safe workplace now': 730161, 'workplace now more': 1009205, 'now more than': 575315, 'more than ever': 540615, 'soared': 779288, 'predominantly': 669702, 'for rice': 325222, 'rice flour': 721050, 'and cooking': 60540, 'cooking oil': 202885, 'oil ha': 596850, 'ha soared': 371979, 'soared over': 779299, 'week in': 976360, 'in predominantly': 426921, 'predominantly asian': 669703, 'asian muslim': 95311, 'muslim area': 546416, 'area in': 92064, 'uk due': 938314, 'consumer demand for': 197134, 'demand for rice': 235488, 'for rice flour': 325224, 'rice flour and': 721051, 'flour and cooking': 311067, 'and cooking oil': 60543, 'cooking oil ha': 202890, 'oil ha soared': 596856, 'ha soared over': 371983, 'soared over the': 779300, 'over the last': 630737, 'the last week': 859055, 'last week in': 480655, 'week in predominantly': 976381, 'in predominantly asian': 426922, 'predominantly asian muslim': 669704, 'asian muslim area': 95312, 'muslim area in': 546417, 'area in the': 92074, 'the uk due': 870210, 'uk due to': 938315, 'to the outbreak': 916931, 'the outbreak of': 862670, 'outbreak of the': 628488, 'pair': 634321, 'isn': 454413, 'sanitary': 733795, 'tear': 835917, 'my daughter': 547921, 'daughter may': 226888, 'may not': 521368, 'be healthcare': 115169, 'healthcare worker': 387338, 'worker but': 1006553, 'but she': 147023, 'she cashier': 755935, 'cashier at': 166483, 'store she': 810049, 'she been': 755881, 'been limited': 121461, 'one pair': 606829, 'pair of': 634332, 'of glove': 584161, 'glove per': 352858, 'per shift': 651015, 'shift she': 758402, 'wa told': 963535, 'just wash': 470234, 'wash them': 967550, 'them before': 875468, 'before break': 122672, 'break know': 138759, 'know this': 476885, 'this isn': 888481, 'isn sanitary': 454657, 'sanitary it': 733802, 'doesn work': 251997, 'work when': 1005996, 'have tear': 382931, 'tear in': 835949, 'in them': 429794, 'my daughter may': 547933, 'daughter may not': 226889, 'may not be': 521370, 'not be healthcare': 568395, 'be healthcare worker': 115170, 'healthcare worker but': 387349, 'worker but she': 1006560, 'but she cashier': 147024, 'she cashier at': 755936, 'cashier at grocery': 166485, 'grocery store she': 365763, 'store she been': 810050, 'she been limited': 755883, 'been limited to': 121463, 'limited to one': 492775, 'to one pair': 910918, 'one pair of': 606830, 'pair of glove': 634335, 'of glove per': 584165, 'glove per shift': 352859, 'per shift she': 651016, 'shift she wa': 758403, 'she wa told': 756431, 'wa told to': 963546, 'told to just': 923752, 'to just wash': 908733, 'just wash them': 470237, 'wash them before': 967551, 'them before break': 875469, 'before break know': 122673, 'break know this': 138760, 'know this isn': 476894, 'this isn sanitary': 888492, 'isn sanitary it': 454658, 'sanitary it doesn': 733803, 'it doesn work': 457646, 'doesn work when': 252002, 'work when they': 1005999, 'when they have': 984263, 'they have tear': 882386, 'have tear in': 382932, 'tear in them': 835951, 'project': 683464, 'delay': 232663, 'cancellation': 160998, 'firm': 308299, 'commercial': 188664, 'dwindles': 263671, 'some project': 783655, 'project may': 683513, 'may face': 521165, 'face delay': 294391, 'delay or': 232733, 'or cancellation': 614655, 'cancellation the': 161075, 'outbreak force': 628230, 'force firm': 328382, 'firm to': 308438, 'reduce staff': 705937, 'and commercial': 60136, 'commercial support': 188739, 'support dwindles': 826463, 'dwindles result': 263674, 'of lower': 586049, 'lower oil': 505922, 'oil and': 596610, 'and gas': 63470, 'and related': 70182, 'related news': 708490, 'news visit': 560948, 'some project may': 783656, 'project may face': 683514, 'may face delay': 521166, 'face delay or': 294392, 'delay or cancellation': 232734, 'or cancellation the': 614656, 'cancellation the outbreak': 161076, 'the outbreak force': 862627, 'outbreak force firm': 628232, 'force firm to': 328383, 'firm to reduce': 308445, 'to reduce staff': 913040, 'reduce staff and': 705938, 'staff and commercial': 792130, 'and commercial support': 60140, 'commercial support dwindles': 188740, 'support dwindles result': 826464, 'dwindles result of': 263675, 'result of lower': 717601, 'of lower oil': 586053, 'lower oil and': 505923, 'oil and gas': 596616, 'and gas price': 63483, 'gas price for': 343966, 'price for this': 674066, 'for this and': 327008, 'this and related': 886345, 'and related news': 70184, 'related news visit': 708494, 'searching': 743318, 'differently': 242151, 'connection': 194690, 'adjusting': 32344, 'so insight': 777408, 'from search': 337193, 'search data': 743230, 'data people': 226336, 'are searching': 89878, 'searching differently': 743321, 'differently critical': 242156, 'critical information': 218587, 'information making': 437886, 'making connection': 510997, 'connection adjusting': 194691, 'adjusting routine': 32353, 'routine praising': 726523, 'praising everyday': 668898, 'everyday hero': 286571, 'hero taking': 394102, 'themselves and': 876748, 'and others': 68433, 'so insight from': 777409, 'insight from search': 439556, 'from search data': 337194, 'search data people': 743232, 'data people are': 226337, 'people are searching': 647066, 'are searching differently': 89879, 'searching differently critical': 743322, 'differently critical information': 242157, 'critical information making': 218588, 'information making connection': 437887, 'making connection adjusting': 510998, 'connection adjusting routine': 194692, 'adjusting routine praising': 32354, 'routine praising everyday': 726524, 'praising everyday hero': 668899, 'everyday hero taking': 286572, 'hero taking care': 394103, 'care of themselves': 164120, 'of themselves and': 591783, 'themselves and others': 876759, 'adult': 32778, 'fault': 300392, 'aged': 37930, 'daughter is': 226864, 'is 16': 445164, '16 and': 4091, 'and ha': 64060, 'ha story': 372077, 'story like': 812030, 'like that': 491310, 'that from': 843957, 'from her': 335766, 'her friend': 392059, 'friend with': 333915, 'with supermarket': 1001047, 'supermarket job': 821203, 'job one': 466053, 'of them': 591719, 'them said': 876240, 'said why': 731587, 'do adult': 249032, 'adult act': 32784, 'like covid': 490058, 'my fault': 548255, 'fault or': 300412, 'or having': 615594, 'to middle': 910115, 'middle aged': 530616, 'aged woman': 37958, 'woman who': 1003671, 'who refused': 989516, 'refused to': 707067, 'back box': 106909, 'box of': 137106, 'my daughter is': 547929, 'daughter is 16': 226865, 'is 16 and': 445166, '16 and ha': 4094, 'and ha story': 64086, 'ha story like': 372078, 'story like that': 812032, 'like that from': 491317, 'that from her': 843959, 'from her friend': 335767, 'her friend with': 392063, 'friend with supermarket': 333918, 'with supermarket job': 1001056, 'supermarket job one': 821207, 'job one of': 466054, 'one of them': 606766, 'of them said': 591760, 'them said why': 876241, 'said why do': 731589, 'why do adult': 990928, 'do adult act': 249033, 'adult act like': 32785, 'act like covid': 29679, 'like covid 19': 490059, '19 is my': 8009, 'is my fault': 449791, 'my fault or': 548257, 'fault or having': 300413, 'or having to': 615599, 'having to stand': 384366, 'to stand up': 915166, 'stand up to': 793605, 'up to middle': 946400, 'to middle aged': 910116, 'middle aged woman': 530620, 'aged woman who': 37959, 'woman who refused': 1003683, 'who refused to': 989517, 'refused to put': 707075, 'put back box': 690525, 'back box of': 106910, 'uv': 951466, 'wand': 965549, 'handheld': 376115, 'ultra': 939169, 'violet': 957571, 'bacteria': 107656, 'germ': 346079, 'sterilizer': 799868, 'mini uv': 533035, 'uv sanitizer': 951486, 'sanitizer wand': 736025, 'wand handheld': 965550, 'handheld ultra': 376116, 'ultra violet': 939178, 'violet light': 957572, 'light kill': 489541, 'kill bacteria': 474348, 'bacteria germ': 107674, 'germ sterilizer': 346155, 'mini uv sanitizer': 533036, 'uv sanitizer wand': 951490, 'sanitizer wand handheld': 736026, 'wand handheld ultra': 965551, 'handheld ultra violet': 376117, 'ultra violet light': 939179, 'violet light kill': 957573, 'light kill bacteria': 489542, 'kill bacteria germ': 474350, 'bacteria germ sterilizer': 107675, 'asos': 96196, 'plt': 661204, 'how am': 407341, 'am suppose': 50454, 'suppose to': 827322, 'hide all': 394826, 'my asos': 547336, 'asos plt': 96199, 'plt delivery': 661205, 'my parent': 549683, 'parent during': 641619, 'lockdown asking': 499176, 'for myself': 323762, 'how am suppose': 407347, 'am suppose to': 50455, 'suppose to hide': 827327, 'to hide all': 907727, 'hide all my': 394827, 'all my asos': 43539, 'my asos plt': 547337, 'asos plt delivery': 96200, 'plt delivery from': 661206, 'delivery from my': 234047, 'from my parent': 336521, 'my parent during': 549690, 'parent during lockdown': 641620, 'during lockdown asking': 262759, 'lockdown asking for': 499177, 'asking for myself': 95993, 'excuse': 289736, 'crappy': 214929, 'lunchboxes': 506759, 'hoarding empty': 399276, 'shelf supermarket': 757624, 'supermarket fight': 820306, 'fight strict': 304879, 'on packaged': 602668, 'packaged good': 633485, 'good finally': 357036, 'finally some': 306101, 'some good': 782957, 'good excuse': 357023, 'excuse for': 289742, 'my crappy': 547850, 'crappy lunchboxes': 214937, 'hoarding empty shelf': 399277, 'empty shelf supermarket': 275093, 'shelf supermarket fight': 757626, 'supermarket fight strict': 820308, 'fight strict limit': 304880, 'limit on packaged': 492418, 'on packaged good': 602669, 'packaged good finally': 633490, 'good finally some': 357037, 'finally some good': 306102, 'some good excuse': 782963, 'good excuse for': 357024, 'excuse for my': 289744, 'for my crappy': 323691, 'my crappy lunchboxes': 547852, 'deferral': 232180, 'collection': 186397, 'program': 683191, 'blend': 132572, 'human': 410394, 'when covid': 983311, '19 deferral': 6466, 'deferral end': 232181, 'end better': 275792, 'better collection': 128239, 'collection program': 186460, 'program will': 683320, 'be critical': 114293, 'critical coronavirus': 218536, 'coronavirus impact': 206104, 'on job': 601732, 'job will': 466292, 'will drive': 993255, 'drive collection': 259013, 'collection issue': 186440, 'issue lender': 455833, 'lender must': 486238, 'must blend': 546564, 'blend human': 132577, 'human and': 410403, 'and tech': 73064, 'tech effort': 836079, 'people well': 650182, 'well but': 978077, 'but ensure': 145655, 'ensure recovery': 278020, 'recovery the': 705403, 'the post': 864078, 'post when': 666405, 'when covid 19': 983312, 'covid 19 deferral': 212923, '19 deferral end': 6467, 'deferral end better': 232182, 'end better collection': 275793, 'better collection program': 128240, 'collection program will': 186461, 'program will be': 683321, 'will be critical': 992413, 'be critical coronavirus': 114294, 'critical coronavirus impact': 218537, 'coronavirus impact on': 206111, 'impact on job': 417864, 'on job will': 601734, 'job will drive': 466293, 'will drive collection': 993256, 'drive collection issue': 259014, 'collection issue lender': 186441, 'issue lender must': 455834, 'lender must blend': 486239, 'must blend human': 546565, 'blend human and': 132578, 'human and tech': 410410, 'and tech effort': 73065, 'tech effort to': 836080, 'effort to treat': 269653, 'treat people well': 930873, 'people well but': 650183, 'well but ensure': 978078, 'but ensure recovery': 145656, 'ensure recovery the': 278021, 'recovery the post': 705404, 'the post when': 864098, 'post when covid': 666406, '900': 23357, 'imconfusedasf': 416884, 'wherecanigo': 985433, 'californialockdown': 155623, 'so let': 777536, 'let me': 486892, 'me get': 522802, 'get this': 348401, 'this straight': 890372, 'straight crowd': 812209, 'crowd of': 219213, 'more then': 540718, 'then 250': 876955, '250 is': 16022, 'is restricted': 451480, 'restricted but': 717130, 'store ha': 807993, 'ha 900': 369422, '900 people': 23387, 'it and': 456480, 'that just': 844785, 'just the': 469987, 'line alone': 492942, 'alone imconfusedasf': 46867, 'imconfusedasf wherecanigo': 416885, 'wherecanigo californialockdown': 985434, 'so let me': 777545, 'let me get': 486899, 'me get this': 522808, 'get this straight': 348414, 'this straight crowd': 890373, 'straight crowd of': 812210, 'crowd of more': 219218, 'of more then': 586652, 'more then 250': 540719, 'then 250 is': 876956, '250 is restricted': 16023, 'is restricted but': 451481, 'restricted but the': 717131, 'but the grocery': 147341, 'grocery store ha': 365448, 'store ha 900': 807994, 'ha 900 people': 369423, '900 people in': 23389, 'people in it': 648388, 'in it and': 424226, 'it and that': 456516, 'and that just': 73198, 'that just the': 844797, 'just the line': 470005, 'the line alone': 859400, 'line alone imconfusedasf': 492943, 'alone imconfusedasf wherecanigo': 46868, 'imconfusedasf wherecanigo californialockdown': 416886, 'assisting': 96817, 'govts': 361342, 'sourced': 786592, 'mil': 531294, 'worker worldwide': 1008293, 'worldwide are': 1010321, 'are facing': 86404, 'facing shortage': 295593, 'of mask': 586254, 'sanitizer amp': 734362, 'amp thing': 54688, 'thing they': 884845, 'fight we': 304940, 're assisting': 698317, 'assisting govts': 96820, 'govts to': 361349, 'to source': 914935, 'source supply': 786548, 'week we': 977185, 've sourced': 953584, 'sourced mil': 786600, 'mil mask': 531297, 'mask equipment': 518604, 'equipment food': 279722, 'food glove': 314671, 'glove amp': 352546, 'amp sanitizer': 54438, 'frontline worker worldwide': 338875, 'worker worldwide are': 1008295, 'worldwide are facing': 1010323, 'are facing shortage': 86432, 'facing shortage of': 295595, 'shortage of mask': 765120, 'of mask hand': 586268, 'mask hand sanitizer': 518778, 'hand sanitizer amp': 375299, 'sanitizer amp thing': 734368, 'amp thing they': 54689, 'thing they need': 884851, 'need to fight': 555934, 'to fight we': 905817, 'fight we re': 304943, 'we re assisting': 972828, 're assisting govts': 698318, 'assisting govts to': 96821, 'govts to source': 361351, 'to source supply': 914939, 'source supply of': 786549, 'supply of this': 825653, 'of this week': 592068, 'this week we': 891294, 'week we ve': 977203, 'we ve sourced': 973715, 've sourced mil': 953585, 'sourced mil mask': 786601, 'mil mask equipment': 531298, 'mask equipment food': 518605, 'equipment food glove': 279723, 'food glove amp': 314672, 'glove amp sanitizer': 352549, 'microsoft': 530499, 'onmsft': 611529, 'breaking news': 138997, 'news microsoft': 560616, 'microsoft is': 530510, 'is closing': 446601, 'closing down': 183620, 'down it': 256890, 'it retail': 460743, 'store until': 811007, 'until further': 943728, 'further notice': 342095, 'notice due': 573260, 'to check': 902678, 'check it': 174477, 'out here': 626269, 'at onmsft': 99982, 'breaking news microsoft': 139007, 'news microsoft is': 560617, 'microsoft is closing': 530511, 'is closing down': 446606, 'closing down it': 183621, 'down it retail': 256895, 'it retail store': 460749, 'retail store until': 718720, 'store until further': 811010, 'until further notice': 943729, 'further notice due': 342097, 'notice due to': 573261, 'due to check': 261726, 'to check it': 902686, 'check it out': 174478, 'it out here': 460184, 'out here at': 626272, 'here at onmsft': 392788, 'hervey': 394257, 'replaced': 711597, 'toiletry': 923403, 'isle': 454338, 'filled': 305523, 'brim': 139902, '7news': 22493, 'hervey bay': 394258, 'bay ha': 112942, 'ha replaced': 371724, 'replaced their': 711604, 'their toiletry': 875010, 'toiletry isle': 923431, 'isle with': 454395, 'with trolley': 1001848, 'trolley filled': 932407, 'filled to': 305563, 'the brim': 850006, 'brim with': 139903, 'with toilet': 1001800, 'roll in': 725340, 'in bag': 420660, 'of two': 592533, 'two the': 937257, 'ha started': 372039, 'started selling': 794828, 'selling the': 749473, 'the bundle': 850116, 'bundle for': 142648, 'for each': 320897, 'each panic': 264242, 'buying hit': 150483, 'hit shelf': 398399, 'shelf across': 756679, 'world 7news': 1009256, 'hervey bay ha': 394259, 'bay ha replaced': 112943, 'ha replaced their': 371725, 'replaced their toiletry': 711605, 'their toiletry isle': 875011, 'toiletry isle with': 923432, 'isle with trolley': 454397, 'with trolley filled': 1001850, 'trolley filled to': 932408, 'filled to the': 305564, 'to the brim': 916528, 'the brim with': 850007, 'brim with toilet': 139904, 'with toilet roll': 1001802, 'toilet roll in': 921575, 'roll in bag': 725341, 'in bag of': 420663, 'bag of two': 108371, 'of two the': 592548, 'two the supermarket': 937258, 'supermarket ha started': 820650, 'ha started selling': 372049, 'started selling the': 794831, 'selling the bundle': 749474, 'the bundle for': 850117, 'bundle for each': 142649, 'for each panic': 320907, 'each panic buying': 264243, 'panic buying hit': 637761, 'buying hit shelf': 150484, 'hit shelf across': 398400, 'shelf across the': 756681, 'across the world': 29534, 'the world 7news': 871803, 'abou': 24617, 'me should': 523456, 'do some': 250118, 'some online': 783438, 'shopping my': 763306, 'my bank': 547397, 'bank account': 109544, 'account do': 28654, 'even think': 284685, 'think abou': 885074, 'abou covid': 24618, 'go anywhere': 353297, 'anywhere to': 81158, 'to spend': 914982, 'spend your': 788700, 'your money': 1024851, 'money also': 536579, 'also my': 48542, 'account but': 28641, 'but covid': 145478, '19 spend': 10732, 'me should do': 523457, 'should do some': 765931, 'do some online': 250127, 'some online shopping': 783447, 'online shopping my': 609192, 'shopping my bank': 763307, 'my bank account': 547398, 'bank account do': 109549, 'account do not': 28655, 'not even think': 569283, 'even think abou': 284686, 'think abou covid': 885075, 'abou covid 19': 24619, '19 it not': 8144, 'it not like': 459892, 'like you can': 491869, 'can go anywhere': 158491, 'go anywhere to': 353302, 'anywhere to spend': 81161, 'to spend your': 915002, 'spend your money': 788702, 'your money also': 1024852, 'money also my': 536580, 'also my bank': 48543, 'bank account but': 109546, 'account but covid': 28642, 'but covid 19': 145479, 'covid 19 spend': 213844, '19 spend your': 10733, 'tq': 928113, 'dmk': 248955, 'tq for': 928114, 'for making': 323176, 'making the': 511407, 'the precaution': 864204, 'precaution better': 669292, 'better at': 128201, 'the dmk': 853438, 'dmk leader': 248956, 'leader giving': 483461, 'giving free': 351291, 'free face': 331799, 'in outside': 426370, 'mask price': 519137, 'are high': 87146, 'high there': 395467, 'are shortage': 90072, 'shortage not': 765088, 'not govt': 569737, 'govt is': 361160, 'is of': 450397, 'tq for making': 928115, 'for making the': 323182, 'making the precaution': 511424, 'the precaution better': 864206, 'precaution better at': 669293, 'better at the': 128204, 'at the same': 101088, 'the same time': 866311, 'same time the': 733367, 'time the dmk': 897850, 'the dmk leader': 853439, 'dmk leader giving': 248957, 'leader giving free': 483462, 'giving free face': 351293, 'free face mask': 331800, 'face mask hand': 294546, 'sanitizer to the': 735949, 'to the people': 916948, 'the people in': 863480, 'people in outside': 648411, 'in outside the': 426371, 'outside the face': 629590, 'the face mask': 854805, 'face mask price': 294576, 'mask price are': 519140, 'price are high': 672675, 'are high there': 87153, 'high there are': 395468, 'there are shortage': 878160, 'are shortage not': 90074, 'shortage not govt': 765089, 'not govt is': 569738, 'govt is of': 361167, 'president of': 670863, 'of shoprite': 589676, 'shoprite grocery': 764546, 'chain in': 170795, 'in nj': 425897, 'nj dy': 563430, 'from family': 335400, 'family say': 298206, 'president of shoprite': 670873, 'of shoprite grocery': 589677, 'shoprite grocery store': 764547, 'store chain in': 806923, 'chain in nj': 170811, 'in nj dy': 425901, 'nj dy from': 563431, 'dy from family': 263731, 'from family say': 335405, 'lockdownnz': 500350, 'kiwi supermarket': 475849, 'supermarket attempt': 819260, 'quarantine the': 692607, 'british lockdownnz': 140538, 'kiwi supermarket attempt': 475850, 'supermarket attempt to': 819261, 'attempt to quarantine': 102257, 'to quarantine the': 912650, 'quarantine the british': 692608, 'the british lockdownnz': 850024, 'analysis': 57012, 'best analysis': 127572, 'analysis ve': 57091, 've seen': 953521, 'seen of': 747160, '19 impact': 7688, 'best analysis ve': 127574, 'analysis ve seen': 57092, 've seen of': 953539, 'seen of covid': 747161, 'covid 19 impact': 213249, '19 impact on': 7704, 'on consumer spending': 600080, 'steel': 799312, 'mill': 531949, 'purchasing': 689823, 'grade': 361632, 'fine': 307589, 'sintering': 771511, 'pelletizing': 646356, 'shifting': 758511, 'lump': 506679, 'pellet': 646351, 'ironore': 444951, 'chinese steel': 177354, 'steel mill': 799347, 'mill have': 531963, 'been purchasing': 121743, 'purchasing lower': 689885, 'lower grade': 505871, 'grade fine': 361649, 'fine for': 307634, 'for sintering': 325636, 'sintering or': 771512, 'or pelletizing': 616530, 'pelletizing process': 646357, 'process due': 679898, 'it cost': 457343, 'cost effectiveness': 207921, 'effectiveness how': 269386, 'how is': 408079, 'this shifting': 890065, 'shifting demand': 758527, 'demand affecting': 234910, 'affecting the': 34556, 'of lump': 586072, 'lump and': 506682, 'and pellet': 68829, 'pellet china': 646352, 'china ironore': 176740, 'ironore steel': 444956, 'steel economy': 799326, 'economy market': 268060, 'chinese steel mill': 177355, 'steel mill have': 799348, 'mill have been': 531964, 'have been purchasing': 379647, 'been purchasing lower': 121744, 'purchasing lower grade': 689886, 'lower grade fine': 505872, 'grade fine for': 361650, 'fine for sintering': 307637, 'for sintering or': 325637, 'sintering or pelletizing': 771513, 'or pelletizing process': 616531, 'pelletizing process due': 646358, 'process due to': 679899, 'due to it': 261835, 'to it cost': 908575, 'it cost effectiveness': 457346, 'cost effectiveness how': 207922, 'effectiveness how is': 269387, 'how is this': 408114, 'is this shifting': 453121, 'this shifting demand': 890066, 'shifting demand affecting': 758528, 'demand affecting the': 234911, 'affecting the price': 34566, 'price of lump': 675494, 'of lump and': 586074, 'lump and pellet': 506683, 'and pellet china': 68830, 'pellet china ironore': 646353, 'china ironore steel': 176741, 'ironore steel economy': 444957, 'steel economy market': 799327, 'follows': 312949, 'important advice': 418725, 'advice remember': 33476, 'remember if': 710211, 'if anyone': 413837, 'your household': 1024426, 'household show': 406938, 'show symptom': 767166, 'symptom that': 830934, 'be coronavirus': 114249, 'coronavirus then': 206920, 'you must': 1019908, 'must all': 546466, 'all stay': 44440, 'home that': 402213, 'that mean': 845102, 'mean no': 524565, 'one go': 606348, 'walk outside': 964856, 'outside everyone': 629415, 'everyone stay': 287400, 'in and': 420345, 'and follows': 63021, 'follows these': 312964, 'these rule': 880617, 'important advice remember': 418726, 'advice remember if': 33477, 'remember if anyone': 710212, 'if anyone in': 413846, 'anyone in your': 80383, 'in your household': 431096, 'your household show': 1024434, 'household show symptom': 406939, 'show symptom that': 767168, 'symptom that may': 830935, 'that may be': 845073, 'may be coronavirus': 520966, 'be coronavirus then': 114250, 'coronavirus then you': 206921, 'then you must': 877789, 'you must all': 1019909, 'must all stay': 546468, 'all stay at': 44442, 'at home that': 99137, 'home that mean': 402217, 'that mean no': 845115, 'mean no one': 524568, 'no one go': 564935, 'one go to': 606353, 'for walk outside': 327625, 'walk outside everyone': 964857, 'outside everyone stay': 629417, 'everyone stay in': 287404, 'stay in and': 797037, 'in and follows': 420363, 'and follows these': 63022, 'follows these rule': 312965, 'wrecked': 1012710, 'coronavirus ha': 206016, 'ha the': 372184, 'the potential': 864115, 'potential to': 667150, 'continue it': 201052, 'it affect': 456281, 'affect on': 34195, 'on manufacturer': 601989, 'manufacturer in': 513469, 'in major': 424986, 'major way': 509525, 'way it': 969671, 'ha wrecked': 372496, 'wrecked the': 1012715, 'economy of': 268108, 'many country': 513943, 'country already': 210418, 'already but': 47242, 'will it': 993858, 'it do': 457599, 'same to': 733381, 'the steel': 867863, 'steel price': 799353, 'stable manufacturer': 791935, 'manufacturer wait': 513539, 'wait see': 964188, 'coronavirus ha the': 206038, 'ha the potential': 372220, 'the potential to': 864130, 'potential to continue': 667152, 'to continue it': 903388, 'continue it affect': 201053, 'it affect on': 456287, 'affect on manufacturer': 34196, 'on manufacturer in': 601990, 'manufacturer in major': 513471, 'in major way': 424992, 'major way it': 509526, 'way it ha': 969674, 'it ha wrecked': 458422, 'ha wrecked the': 372497, 'wrecked the economy': 1012716, 'the economy of': 854001, 'economy of many': 268112, 'of many country': 586175, 'many country already': 513945, 'country already but': 210419, 'already but will': 47245, 'but will it': 147881, 'will it do': 993866, 'it do the': 457604, 'the same to': 866312, 'same to the': 733387, 'to the steel': 917095, 'the steel price': 867866, 'steel price remain': 799355, 'remain stable manufacturer': 709859, 'stable manufacturer wait': 791936, 'manufacturer wait see': 513540, 'peace': 645987, 'frenzy': 332772, 'in australia': 420592, 'australia opened': 103339, 'opened it': 612739, 'it door': 457675, 'door an': 255500, 'hour early': 405562, 'early so': 264695, 'and disabled': 61386, 'disabled can': 243888, 'can shop': 159597, 'in peace': 426563, 'peace without': 646022, 'without the': 1002959, 'buying frenzy': 150375, 'this supermarket in': 890430, 'supermarket in australia': 820863, 'in australia opened': 420612, 'australia opened it': 103341, 'opened it door': 612740, 'it door an': 457676, 'door an hour': 255501, 'an hour early': 56081, 'hour early so': 405567, 'early so that': 264696, 'so that the': 778396, 'that the elderly': 846715, 'elderly and disabled': 270569, 'and disabled can': 61389, 'disabled can shop': 243890, 'can shop in': 159605, 'shop in peace': 760315, 'in peace without': 426570, 'peace without the': 646023, 'without the panic': 1002973, 'the panic buying': 863191, 'panic buying frenzy': 637740, 'paramedic': 641365, '19uk': 12548, 'paramedic struggling': 641403, 'food uk': 317383, 'uk panic': 938606, 'buy over': 149068, 'over lockdown': 630364, 'lockdown fear': 499374, 'fear 19uk': 301000, 'paramedic struggling to': 641404, 'struggling to get': 814504, 'get food uk': 347072, 'food uk panic': 317384, 'uk panic buy': 938607, 'panic buy over': 637517, 'buy over lockdown': 149070, 'over lockdown fear': 630365, 'lockdown fear 19uk': 499375, 'hc': 384650, 'keralahighcourt': 473114, 'chinavirus': 177134, '19 hc': 7466, 'hc asks': 384651, 'asks govt': 96140, 'to file': 905825, 'file statement': 305369, 'statement on': 796196, 'on action': 599157, 'action taken': 30142, 'taken to': 833092, 'contain price': 200483, 'sanitizer mask': 735347, 'mask keralahighcourt': 518896, 'keralahighcourt handsanitizer': 473115, 'handsanitizer mask': 376580, 'mask 19': 518253, '19 chinavirus': 5796, 'covid 19 hc': 213193, '19 hc asks': 7467, 'hc asks govt': 384652, 'asks govt to': 96141, 'govt to file': 361312, 'to file statement': 905832, 'file statement on': 305370, 'statement on action': 796197, 'on action taken': 599158, 'action taken to': 30144, 'taken to contain': 833094, 'to contain price': 903366, 'contain price of': 200484, 'price of hand': 675466, 'hand sanitizer mask': 375486, 'sanitizer mask keralahighcourt': 735356, 'mask keralahighcourt handsanitizer': 518897, 'keralahighcourt handsanitizer mask': 473116, 'handsanitizer mask 19': 376581, 'mask 19 chinavirus': 518254, 'segovia': 747402, 'their home': 873554, 'home stock': 402149, 'and additional': 57679, 'additional supply': 31881, 'supply covid': 825117, '19 continues': 6029, 'to strike': 915671, 'strike fear': 813737, 'nation segovia': 552307, 'family in their': 297927, 'in their home': 429748, 'their home stock': 873573, 'home stock up': 402150, 'up for food': 944935, 'for food and': 321550, 'food and additional': 313168, 'and additional supply': 57682, 'additional supply covid': 31882, 'supply covid 19': 825118, 'covid 19 continues': 212857, '19 continues to': 6031, 'continues to strike': 201500, 'to strike fear': 915672, 'strike fear in': 813738, 'in the heart': 429263, 'of the nation': 591262, 'the nation segovia': 861262, 'tokyo': 923483, 'reuters': 720191, 'third': 886064, 'session': 753261, 'darkened': 225993, 'triggered': 931903, 'ec': 266589, 'tokyo reuters': 923500, 'reuters oil': 720202, 'fell for': 303192, 'for third': 327003, 'third session': 886101, 'session on': 753296, 'on wednesday': 605163, 'wednesday to': 975697, 'be down': 114584, 'down about': 256437, 'about 17': 24651, '17 so': 4385, 'far this': 298940, 'week the': 976983, 'the outlook': 862740, 'outlook for': 629147, 'for fuel': 321796, 'fuel demand': 340153, 'demand darkened': 235206, 'darkened amid': 225994, 'amid travel': 52731, 'travel and': 930247, 'and social': 71876, 'social lockdown': 779829, 'lockdown triggered': 500078, 'triggered by': 931906, 'coronavirus epidemic': 205877, 'epidemic crude': 279360, 'oil ec': 596763, 'tokyo reuters oil': 923501, 'reuters oil price': 720203, 'price fell for': 673849, 'fell for third': 303195, 'for third session': 327004, 'third session on': 886102, 'session on wednesday': 753301, 'on wednesday to': 605184, 'wednesday to be': 975699, 'to be down': 901218, 'be down about': 114586, 'down about 17': 256440, 'about 17 so': 24652, '17 so far': 4386, 'so far this': 777061, 'far this week': 298944, 'this week the': 891279, 'week the outlook': 977001, 'the outlook for': 862742, 'outlook for fuel': 629153, 'for fuel demand': 321799, 'fuel demand darkened': 340155, 'demand darkened amid': 235207, 'darkened amid travel': 225995, 'amid travel and': 52732, 'travel and social': 930260, 'and social lockdown': 71890, 'social lockdown triggered': 779831, 'lockdown triggered by': 500079, 'triggered by the': 931909, 'by the coronavirus': 154297, 'the coronavirus epidemic': 851842, 'coronavirus epidemic crude': 205880, 'epidemic crude oil': 279361, 'crude oil ec': 219557, 'signal': 769291, 'sachet': 729032, 'ministryofwatergh': 533583, 'ministryofinfomation': 533581, 'ghanahealthservice': 349596, 'suggest ghana': 817511, 'ghana also': 349554, 'also send': 48853, 'send signal': 749945, 'signal to': 769320, 'reduce price': 705894, 'of sachet': 589204, 'sachet water': 729035, 'and bottle': 59091, 'bottle water': 136346, 'water in': 969028, 'month free': 537735, 'free water': 332305, 'supply ministryofwatergh': 825567, 'ministryofwatergh ministryofinfomation': 533584, 'ministryofinfomation ghanahealthservice': 533582, 'suggest ghana also': 817512, 'ghana also send': 349555, 'also send signal': 48855, 'send signal to': 749946, 'signal to reduce': 769323, 'to reduce price': 913031, 'reduce price of': 705901, 'price of sachet': 675558, 'of sachet water': 589205, 'sachet water and': 729036, 'water and bottle': 968856, 'and bottle water': 59095, 'bottle water in': 136348, 'water in this': 969032, 'in this month': 429979, 'this month free': 888908, 'month free water': 537740, 'free water supply': 332306, 'water supply ministryofwatergh': 969188, 'supply ministryofwatergh ministryofinfomation': 825568, 'ministryofwatergh ministryofinfomation ghanahealthservice': 533585, 'basic': 111822, 'nappy': 551873, 'materialising': 520447, 'disorder': 246074, 'the sign': 867175, 'sign of': 769153, 'of shortage': 589680, 'and basic': 58713, 'basic essential': 111868, 'essential like': 281282, 'like milk': 490776, 'milk baby': 531582, 'baby food': 106602, 'food nappy': 315503, 'nappy etc': 551885, 'already materialising': 47525, 'materialising in': 520448, 'in london': 424873, 'london now': 501141, 'now public': 575617, 'public disorder': 687945, 'disorder breaking': 246075, 'breaking out': 139020, 'out in': 626370, 'supermarket panic': 821898, 'panic uk': 638738, 'uk shortage': 938712, 'shortage panickbuyinguk': 765166, 'panickbuyinguk disorder': 639234, 'the sign of': 867179, 'sign of shortage': 769172, 'of shortage of': 589683, 'of food and': 583646, 'food and basic': 313182, 'and basic essential': 58716, 'basic essential like': 111871, 'essential like milk': 281286, 'like milk baby': 490777, 'milk baby food': 531583, 'baby food nappy': 106608, 'food nappy etc': 315504, 'nappy etc are': 551886, 'etc are already': 282417, 'are already materialising': 84418, 'already materialising in': 47526, 'materialising in london': 520449, 'in london now': 424891, 'london now public': 501143, 'now public disorder': 575618, 'public disorder breaking': 687946, 'disorder breaking out': 246076, 'breaking out in': 139021, 'out in supermarket': 626399, 'in supermarket panic': 428645, 'supermarket panic uk': 821906, 'panic uk shortage': 638739, 'uk shortage panickbuyinguk': 938713, 'shortage panickbuyinguk disorder': 765167, 'configure': 194033, 'for changed': 320013, 'changed world': 172605, 'world will': 1010184, 'change business': 171958, 'and society': 71919, 'society in': 781244, 'in important': 423987, 'important way': 419099, 'is likely': 449341, 'to fuel': 906289, 'fuel area': 340122, 'area like': 92094, 'like online': 490926, 'online education': 608156, 'education and': 268804, 'and public': 69736, 'health investment': 386560, 'investment for': 443995, 'for example': 321269, 'example it': 288910, 'change how': 172089, 'how company': 407571, 'company configure': 190560, 'configure their': 194034, 'their supply': 874915, 'prepare for changed': 670070, 'for changed world': 320014, 'changed world will': 172608, 'world will change': 1010187, 'will change business': 992906, 'change business and': 171959, 'business and society': 143333, 'and society in': 71921, 'society in important': 781246, 'in important way': 423989, 'important way it': 419100, 'way it is': 969675, 'it is likely': 458999, 'is likely to': 449354, 'likely to fuel': 492155, 'to fuel area': 906290, 'fuel area like': 340123, 'area like online': 92097, 'like online shopping': 490928, 'online shopping online': 609207, 'shopping online education': 763428, 'online education and': 608157, 'education and public': 268808, 'and public health': 69741, 'public health investment': 688070, 'health investment for': 386562, 'investment for example': 443996, 'for example it': 321284, 'example it will': 288913, 'it will change': 462381, 'will change how': 992913, 'change how company': 172090, 'how company configure': 407574, 'company configure their': 190561, 'configure their supply': 194035, 'their supply chain': 874917, 'galen': 342924, 'weston': 980695, 'loblaw': 497611, 'sdm': 743035, 'forthecustomer': 329804, 'here what': 393797, 'what galen': 981490, 'galen weston': 342925, 'weston want': 980704, 'want you': 966178, 'know about': 476206, 'local loblaw': 498156, 'loblaw grocery': 497616, 'and sdm': 71096, 'sdm pharmacy': 743038, 'pharmacy response': 654431, '19 employee': 6770, 'employee 19': 273505, '19 forthecustomer': 7097, 'here what galen': 393807, 'what galen weston': 981491, 'galen weston want': 342927, 'weston want you': 980705, 'want you to': 966183, 'you to know': 1021796, 'to know about': 908970, 'know about your': 476230, 'about your local': 27004, 'your local loblaw': 1024704, 'local loblaw grocery': 498157, 'loblaw grocery store': 497617, 'store and sdm': 806339, 'and sdm pharmacy': 71097, 'sdm pharmacy response': 743039, 'pharmacy response to': 654432, 'covid 19 employee': 213018, '19 employee 19': 6771, 'employee 19 forthecustomer': 273506, 'la': 478124, 'vega': 953806, 'lingering': 493704, 'lasvegas': 480806, 'recordnews': 705143, 'house price': 406468, 'in la': 424559, 'la vega': 478227, 'vega hit': 953816, 'hit record': 398384, 'record high': 704973, 'high in': 395119, 'despite coronavirus': 238707, 'coronavirus lingering': 206230, 'lingering lasvegas': 493711, 'lasvegas recordnews': 480815, 'house price in': 406492, 'price in la': 674703, 'in la vega': 424567, 'la vega hit': 478232, 'vega hit record': 953817, 'hit record high': 398385, 'record high in': 704978, 'high in march': 395128, 'march despite coronavirus': 515341, 'despite coronavirus lingering': 238708, 'coronavirus lingering lasvegas': 206231, 'lingering lasvegas recordnews': 493712, 'college': 186595, 'mail': 508565, 'shopoholic': 761263, 'intervention': 442175, 'entered': 278345, 'destruction': 239102, 'now that': 575994, 'that back': 842914, 'home instead': 401430, 'of college': 581533, 'college my': 186631, 'is seeing': 451706, 'seeing all': 746208, 'my online': 549576, 'shopping package': 763581, 'package come': 633237, 'the mail': 859890, 'mail she': 508652, 'she just': 756171, 'just asked': 468226, 'asked if': 95769, 'wa shopoholic': 963199, 'shopoholic and': 761264, 'and if': 64931, 'if needed': 414455, 'needed an': 556287, 'an intervention': 56424, 'intervention covid': 442181, 'ha entered': 370508, 'entered whole': 278381, 'whole new': 990268, 'new level': 559020, 'of destruction': 582563, 'now that back': 575996, 'that back at': 842915, 'back at home': 106889, 'at home instead': 99014, 'home instead of': 401431, 'instead of college': 440245, 'of college my': 581535, 'college my mom': 186632, 'mom is seeing': 535758, 'is seeing all': 451707, 'seeing all of': 746209, 'all of my': 43704, 'of my online': 586799, 'my online shopping': 549583, 'online shopping package': 609216, 'shopping package come': 763582, 'package come in': 633238, 'come in the': 187377, 'in the mail': 429336, 'the mail she': 859894, 'mail she just': 508653, 'she just asked': 756172, 'just asked if': 468228, 'asked if wa': 95777, 'if wa shopoholic': 415239, 'wa shopoholic and': 963200, 'shopoholic and if': 761265, 'and if needed': 64939, 'if needed an': 414457, 'needed an intervention': 556289, 'an intervention covid': 56425, 'intervention covid 19': 442182, '19 ha entered': 7343, 'ha entered whole': 370510, 'entered whole new': 278382, 'whole new level': 990270, 'new level of': 559024, 'level of destruction': 487631, 'retailnews': 719509, 'brickandmortar': 139596, 'closure increase': 183915, 'increase retail': 433043, 'retail retailnews': 718480, 'retailnews brickandmortar': 719510, 'store closure increase': 807095, 'closure increase retail': 183918, 'increase retail retailnews': 433044, 'retail retailnews brickandmortar': 718481, 'nestlequick': 557528, 'coca': 185180, 'cola': 185717, 'acquired': 29167, 'you stocking': 1021425, 'on nestlequick': 602365, 'nestlequick chocolate': 557529, 'chocolate milk': 177688, 'milk paper': 531766, 'towel coca': 927314, 'coca cola': 185181, 'cola that': 185718, 'for now': 323955, 'now haven': 574890, 'haven even': 383798, 'even acquired': 283805, 'acquired those': 29180, 'those item': 892135, 'item yet': 463857, 'yet lol': 1016139, 'are you stocking': 91862, 'you stocking up': 1021426, 'up on nestlequick': 945597, 'on nestlequick chocolate': 602366, 'nestlequick chocolate milk': 557530, 'chocolate milk paper': 177689, 'milk paper towel': 531767, 'paper towel coca': 640988, 'towel coca cola': 927315, 'coca cola that': 185182, 'cola that all': 185719, 'that all for': 842547, 'all for now': 42842, 'for now haven': 323971, 'now haven even': 574891, 'haven even acquired': 383799, 'even acquired those': 283806, 'acquired those item': 29181, 'those item yet': 892141, 'item yet lol': 463858, 'fewer': 304195, 'alerting': 41562, 'document': 251188, 'existed': 290260, 'washington food': 967773, 'bank are': 109635, 'seeing higher': 746316, 'higher demand': 395567, 'demand fewer': 235342, 'fewer volunteer': 304243, 'volunteer and': 960211, 'and with': 75757, 'with thousand': 1001754, 'thousand more': 893415, 'more unemployed': 540852, 'unemployed every': 941115, 'every week': 286358, 'week it': 976432, 'it going': 458277, 'get worse': 348643, 'worse to': 1011041, 'for alerting': 319102, 'alerting to': 41563, 'to document': 904607, 'document we': 251218, 'we didn': 971298, 'didn know': 241120, 'know existed': 476374, 'washington food bank': 967774, 'food bank are': 313521, 'bank are seeing': 109658, 'are seeing higher': 89900, 'seeing higher demand': 746317, 'higher demand fewer': 395574, 'demand fewer volunteer': 235343, 'fewer volunteer and': 304244, 'volunteer and with': 960218, 'and with thousand': 75781, 'with thousand more': 1001755, 'thousand more unemployed': 893418, 'more unemployed every': 540853, 'unemployed every week': 941116, 'every week it': 286364, 'week it going': 976434, 'it going to': 458284, 'going to get': 355608, 'to get worse': 906647, 'get worse to': 348658, 'worse to for': 1011042, 'to for alerting': 906129, 'for alerting to': 319103, 'alerting to document': 41564, 'to document we': 904611, 'document we didn': 251219, 'we didn know': 971302, 'didn know existed': 241122, 'uncharted': 939794, 'all nurse': 43668, 'doctor health': 250945, 'worker truck': 1008051, 'driver grocery': 259587, 'employee thank': 274282, 'you many': 1019783, 'many of': 514364, 'in uncharted': 430410, 'uncharted water': 939800, 'water right': 969140, 'now but': 574279, 'without all': 1002477, 'you we': 1022194, 'we would': 973962, 'would truly': 1012343, 'truly be': 933266, 'brink so': 140301, 'so thank': 778351, 'do thank': 250211, 'to all nurse': 900269, 'all nurse doctor': 43669, 'nurse doctor health': 577296, 'doctor health worker': 250947, 'health worker truck': 386994, 'worker truck driver': 1008052, 'truck driver grocery': 932781, 'driver grocery store': 259590, 'store employee thank': 807549, 'employee thank you': 274283, 'thank you many': 841774, 'you many of': 1019784, 'many of are': 514366, 'of are in': 580348, 'are in uncharted': 87456, 'in uncharted water': 430412, 'uncharted water right': 939803, 'water right now': 969141, 'right now but': 722037, 'now but without': 574297, 'but without all': 147906, 'without all of': 1002478, 'of you we': 593431, 'you we would': 1022209, 'we would truly': 973979, 'would truly be': 1012344, 'truly be on': 933268, 'be on the': 116211, 'on the brink': 604001, 'the brink so': 850013, 'brink so thank': 140302, 'so thank you': 778352, 'you for everything': 1018634, 'for everything you': 321263, 'everything you do': 288134, 'you do thank': 1018274, 'do thank you': 250212, 'of neighbor': 586933, 'neighbor in': 557041, 'need please': 555436, 'help stock': 390574, 'up our': 945698, 'local food': 497959, 'bank foodbank': 109838, 'lot of neighbor': 504236, 'of neighbor in': 586934, 'neighbor in need': 557043, 'in need please': 425762, 'need please help': 555440, 'please help stock': 660081, 'help stock up': 390583, 'stock up our': 803107, 'up our local': 945703, 'our local food': 623770, 'local food bank': 497962, 'food bank foodbank': 313573, 'imposter': 419412, 'of government': 584266, 'government imposter': 360211, 'imposter scam': 419415, 'ha more': 371287, 'more information': 539571, 'information on': 437906, 'yourself here': 1026640, 'beware of government': 129082, 'of government imposter': 584275, 'government imposter scam': 360212, 'imposter scam related': 419417, '19 ha more': 7367, 'ha more information': 371293, 'more information on': 539589, 'information on how': 437915, 'on how to': 601427, 'how to protect': 409061, 'to protect yourself': 912349, 'protect yourself here': 685096, 'captain': 162915, '2m': 16657, 'hockeyfamily': 399803, 'picture': 656097, '4yrs': 19566, 'remember everyone': 710187, 'everyone keep': 287134, 'your social': 1025849, 'social distance': 779492, 'distance at': 246653, 'time be': 896363, 'like your': 491891, 'your captain': 1023121, 'captain keep': 162918, 'keep more': 471675, 'than 2m': 840216, '2m away': 16669, 'others wash': 621758, 'regularly use': 707966, 'sanitizer be': 734548, 'vigilant keep': 957248, 'your distance': 1023527, 'distance hockeyfamily': 246729, 'hockeyfamily this': 399804, 'this picture': 889576, 'picture wa': 656209, 'wa taken': 963392, 'taken 4yrs': 832930, '4yrs ago': 19567, 'remember everyone keep': 710188, 'everyone keep your': 287138, 'keep your social': 472285, 'your social distance': 1025852, 'social distance at': 779497, 'distance at all': 246654, 'at all time': 97914, 'all time be': 45217, 'time be like': 896364, 'be like your': 115754, 'like your captain': 491893, 'your captain keep': 1023122, 'captain keep more': 162919, 'keep more than': 471677, 'more than 2m': 540559, 'than 2m away': 840217, '2m away from': 16670, 'away from others': 105900, 'from others wash': 336750, 'others wash your': 621759, 'hand regularly use': 375204, 'regularly use hand': 707967, 'hand sanitizer be': 375320, 'sanitizer be vigilant': 734550, 'be vigilant keep': 118002, 'vigilant keep your': 957249, 'keep your distance': 472261, 'your distance hockeyfamily': 1023534, 'distance hockeyfamily this': 246730, 'hockeyfamily this picture': 399805, 'this picture wa': 889582, 'picture wa taken': 656210, 'wa taken 4yrs': 963393, 'taken 4yrs ago': 832931, 'jamming': 464437, 'checkout': 174879, 'surely allowing': 827891, 'allowing online': 46311, 'shopping pick': 763627, 'up is': 945221, 'is better': 446148, 'than the': 841213, 'the crowd': 852516, 'crowd currently': 219151, 'currently jamming': 221574, 'jamming the': 464440, 'the checkout': 850754, 'checkout selfisolating': 175000, 'surely allowing online': 827892, 'allowing online shopping': 46312, 'online shopping pick': 609223, 'shopping pick up': 763628, 'pick up is': 655732, 'up is better': 945223, 'is better than': 446154, 'better than the': 128538, 'than the crowd': 841227, 'the crowd currently': 852523, 'crowd currently jamming': 219152, 'currently jamming the': 221575, 'jamming the checkout': 464441, 'the checkout selfisolating': 850774, 'matter': 520538, 'rotten': 726203, 'tomato': 923943, 'soup': 786364, 'screwed': 742814, 'just said': 469664, 'said it': 731144, 'doesn matter': 251880, 'matter if': 520575, 'market go': 516460, 'go down': 353482, 'down you': 257520, 'can always': 157476, 'always use': 49778, 'use rotten': 949525, 'rotten tomato': 726210, 'tomato to': 923974, 'make soup': 510482, 'soup it': 786386, 'ha also': 369517, 'also been': 47937, 'been said': 121878, 'said that': 731392, 'economy are': 267662, 'are consumer': 85524, 'consumer we': 199488, 're screwed': 699442, 'just said it': 469668, 'said it doesn': 731151, 'it doesn matter': 457635, 'doesn matter if': 251882, 'matter if the': 520580, 'if the market': 414999, 'the market go': 860113, 'market go down': 516461, 'go down you': 353504, 'down you can': 257522, 'you can always': 1017619, 'can always use': 157484, 'always use rotten': 49781, 'use rotten tomato': 949526, 'rotten tomato to': 726211, 'tomato to make': 923975, 'to make soup': 909742, 'make soup it': 510484, 'soup it ha': 786387, 'it ha also': 458378, 'ha also been': 369520, 'also been said': 47942, 'been said that': 121880, 'said that of': 731411, 'that of the': 845455, 'the economy are': 853936, 'economy are consumer': 267666, 'are consumer we': 85533, 'consumer we re': 199490, 'we re screwed': 972957, 'pursuit': 690222, 'university': 942400, 'war petrol': 966511, '19 pursuit': 9880, 'pursuit by': 690223, 'the university': 870431, 'university of': 942445, 'of melbourne': 586424, 'oil war petrol': 597503, 'war petrol price': 966512, 'petrol price and': 653757, 'price and covid': 672385, 'covid 19 pursuit': 213633, '19 pursuit by': 9881, 'pursuit by the': 690224, 'by the university': 154468, 'the university of': 870434, 'university of melbourne': 942449, 'quarantinediaries': 692898, 'perfect': 651271, 'journaling': 467398, 'quarantineactivities': 692733, 'quarantinebirthday': 692783, 'masks4allchallenge': 519678, 'amwriting': 54980, 'eastersunday': 265603, 'via my': 956088, 'my life': 549010, '2020 quarantinediaries': 14548, 'quarantinediaries perfect': 692901, 'perfect gift': 651298, 'gift quarantinelife': 350009, 'quarantinelife journaling': 692964, 'journaling quarantine': 467403, 'quarantine quarantineactivities': 692458, 'quarantineactivities quarantinebirthday': 692741, 'quarantinebirthday toiletpaper': 692784, 'toiletpaper unicorn': 922787, 'unicorn writingcommnunity': 941738, 'writingcommnunity masks4allchallenge': 1012936, 'masks4allchallenge amwriting': 519679, 'amwriting easter': 54981, 'easter eastersunday': 265414, 'via my life': 956089, 'my life in': 549023, 'life in 2020': 488750, 'in 2020 quarantinediaries': 419853, '2020 quarantinediaries perfect': 14549, 'quarantinediaries perfect gift': 692902, 'perfect gift quarantinelife': 651299, 'gift quarantinelife journaling': 350010, 'quarantinelife journaling quarantine': 692966, 'journaling quarantine quarantineactivities': 467404, 'quarantine quarantineactivities quarantinebirthday': 692461, 'quarantineactivities quarantinebirthday toiletpaper': 692742, 'quarantinebirthday toiletpaper unicorn': 692785, 'toiletpaper unicorn writingcommnunity': 922788, 'unicorn writingcommnunity masks4allchallenge': 941739, 'writingcommnunity masks4allchallenge amwriting': 1012937, 'masks4allchallenge amwriting easter': 519680, 'amwriting easter eastersunday': 54982, 'do vulnerable': 250445, 'people get': 648043, 'food when': 317567, 'not available': 568296, 'available is': 104466, 'is there': 452995, 'there help': 878470, 'help for': 389745, 'how do vulnerable': 407729, 'do vulnerable people': 250446, 'vulnerable people get': 961092, 'people get food': 648049, 'get food when': 347076, 'food when all': 317568, 'when all the': 983134, 'all the supermarket': 44934, 'the supermarket delivery': 868550, 'supermarket delivery service': 819931, 'service are not': 752138, 'are not available': 88329, 'not available is': 568304, 'available is there': 104467, 'is there help': 453012, 'there help for': 878471, 'help for them': 389756, 'britain': 140363, 'arrested': 93798, 'convicted': 202593, 'fined': 307735, 'failing': 296191, 'identity': 413396, 'comply': 192517, 'first person': 308857, 'person in': 652471, 'in britain': 420990, 'britain to': 140458, 'be arrested': 113686, 'arrested and': 93814, 'and convicted': 60534, 'convicted under': 202594, 'coronavirus act': 205449, 'act is': 29665, 'is black': 446199, 'black woman': 132153, 'woman arrested': 1003411, 'and fined': 62907, 'fined for': 307740, 'for failing': 321367, 'failing to': 296227, 'provide identity': 686356, 'identity or': 413407, 'or reason': 616796, 'reason for': 702901, 'for travel': 327324, 'travel to': 930531, 'to police': 911864, 'police and': 662896, 'and failing': 62612, 'to comply': 903151, 'comply with': 192530, 'with requirement': 1000470, 'requirement britain': 713423, 'britain 2020': 140364, 'the first person': 855334, 'first person in': 308861, 'person in britain': 652476, 'in britain to': 420992, 'britain to be': 140459, 'to be arrested': 901116, 'be arrested and': 113687, 'arrested and convicted': 93816, 'and convicted under': 60535, 'convicted under the': 202595, 'under the coronavirus': 940295, 'the coronavirus act': 851799, 'coronavirus act is': 205450, 'act is black': 29667, 'is black woman': 446200, 'black woman arrested': 132154, 'woman arrested and': 1003412, 'arrested and fined': 93817, 'and fined for': 62908, 'fined for failing': 307743, 'for failing to': 321368, 'failing to provide': 296236, 'to provide identity': 912405, 'provide identity or': 686357, 'identity or reason': 413408, 'or reason for': 616797, 'reason for travel': 702914, 'for travel to': 327329, 'travel to police': 930539, 'to police and': 911865, 'police and failing': 662900, 'and failing to': 62613, 'failing to comply': 296228, 'to comply with': 903154, 'comply with requirement': 192535, 'with requirement britain': 1000471, 'requirement britain 2020': 713424, 'surprisingly': 828644, 'standing': 793734, 'not surprisingly': 571869, 'surprisingly prefer': 828655, 'prefer standing': 669751, 'standing in': 793771, 'then having': 877236, 'having everyone': 384053, 'stay six': 797316, 'foot from': 318381, 'me socialdistancing': 523501, 'not surprisingly prefer': 571871, 'surprisingly prefer standing': 828656, 'prefer standing in': 669752, 'standing in line': 793776, 'in line for': 424752, 'line for the': 493114, 'for the grocery': 326468, 'store and then': 806373, 'and then having': 73769, 'then having everyone': 877237, 'having everyone stay': 384054, 'everyone stay six': 287406, 'stay six foot': 797317, 'six foot from': 772639, 'foot from me': 318382, 'from me socialdistancing': 336400, 'announcing': 77302, 'specific': 788200, 'where email': 984858, 'email update': 272356, 'update from': 946973, 'store announcing': 806416, 'announcing specific': 77328, 'specific shopping': 788253, 'other vulnerable': 621178, 'people make': 648724, 'me cry': 522628, 'at the point': 101052, 'the point where': 863910, 'point where email': 662699, 'where email update': 984859, 'email update from': 272358, 'update from grocery': 946978, 'grocery store announcing': 365200, 'store announcing specific': 806417, 'announcing specific shopping': 77329, 'specific shopping hour': 788254, 'senior and other': 750205, 'and other vulnerable': 68431, 'other vulnerable people': 621179, 'vulnerable people make': 961098, 'people make me': 648726, 'make me cry': 510129, 'denied': 236947, 'bunch': 142611, 'arsehole': 94081, 'shout': 766763, 'any people': 79640, 'who complain': 988478, 'about having': 25347, 'having their': 384321, 'their purchase': 874510, 'purchase limited': 689535, 'limited should': 492715, 'be denied': 114411, 'denied any': 236948, 'any on': 79551, 'the spot': 867596, 'spot bunch': 790039, 'bunch of': 142614, 'of arsehole': 580374, 'arsehole giving': 94087, 'giving people': 351368, 'people shit': 649420, 'shit for': 759095, 'for doing': 320800, 'their job': 873692, 'job shout': 466156, 'shout out': 766768, 'the wonderful': 871676, 'wonderful retail': 1004112, 'retail worker': 718868, 'any people who': 79643, 'people who complain': 650277, 'who complain about': 988479, 'complain about having': 191845, 'about having their': 25352, 'having their purchase': 384324, 'their purchase limited': 874513, 'purchase limited should': 689536, 'limited should be': 492716, 'should be denied': 765599, 'be denied any': 114412, 'denied any on': 236949, 'any on the': 79552, 'on the spot': 604377, 'the spot bunch': 867597, 'spot bunch of': 790040, 'bunch of arsehole': 142615, 'of arsehole giving': 580375, 'arsehole giving people': 94088, 'giving people shit': 351372, 'people shit for': 649421, 'shit for doing': 759098, 'for doing their': 320805, 'doing their job': 252737, 'their job shout': 873736, 'job shout out': 466157, 'shout out to': 766776, 'out to all': 627618, 'all the wonderful': 44986, 'the wonderful retail': 871678, 'wonderful retail worker': 1004113, 'halting': 374499, 'biofuel': 131205, 'plant': 658602, 'cheap and': 174073, 'and empty': 62079, 'empty road': 275027, 'road are': 724407, 'are halting': 86987, 'halting biofuel': 374500, 'biofuel plant': 131206, 'plant demand': 658646, 'demand is': 235712, 'dropping keep': 260701, 'keep driver': 471460, 'driver at': 259449, 'home end': 401137, 'end result': 275952, 'result may': 717571, 'be cutting': 114323, 'cutting back': 223710, 'back production': 107238, 'production or': 682171, 'or closing': 614754, 'closing plant': 183724, 'cheap and empty': 174075, 'and empty road': 62083, 'empty road are': 275029, 'road are halting': 724412, 'are halting biofuel': 86988, 'halting biofuel plant': 374501, 'biofuel plant demand': 131208, 'plant demand is': 658647, 'demand is also': 235713, 'is also dropping': 445555, 'also dropping keep': 48140, 'dropping keep driver': 260702, 'keep driver at': 471461, 'driver at home': 259450, 'at home end': 98985, 'home end result': 401138, 'end result may': 275953, 'result may be': 717572, 'may be cutting': 520969, 'be cutting back': 114324, 'cutting back production': 223714, 'back production or': 107239, 'production or closing': 682172, 'or closing plant': 614755, 'carers': 164562, 'keeper': 472336, 'fire': 308051, 'greatbritain': 363128, 'wow that': 1012599, 'that wa': 847268, 'wa emotional': 962065, 'emotional thank': 273309, 'you thank': 1021553, 'you also': 1016943, 'also carers': 48008, 'carers council': 164571, 'council worker': 210038, 'worker shop': 1007765, 'shop keeper': 760387, 'keeper supermarket': 472341, 'staff pharmacy': 792751, 'pharmacy transport': 654528, 'transport worker': 929977, 'worker police': 1007596, 'police fire': 662997, 'fire station': 308119, 'station thank': 796522, 'you greatbritain': 1018934, 'wow that wa': 1012601, 'that wa emotional': 847281, 'wa emotional thank': 962066, 'emotional thank you': 273310, 'thank you thank': 841823, 'you thank you': 1021557, 'thank you also': 841687, 'you also carers': 1016945, 'also carers council': 48009, 'carers council worker': 164572, 'council worker shop': 210039, 'worker shop keeper': 1007766, 'shop keeper supermarket': 760390, 'keeper supermarket staff': 472342, 'supermarket staff pharmacy': 822875, 'staff pharmacy transport': 792753, 'pharmacy transport worker': 654529, 'transport worker police': 929982, 'worker police fire': 1007600, 'police fire station': 663003, 'fire station thank': 308120, 'station thank you': 796523, 'thank you greatbritain': 841736, 'wanted': 966189, 'existing': 290288, 'matchstick': 520331, 'madworld': 508246, 'only wanted': 611429, 'wanted to': 966240, 'add box': 31409, 'of egg': 582992, 'egg to': 270007, 'my existing': 548124, 'existing order': 290335, 'order think': 618643, 'think need': 885417, 'find some': 307224, 'some matchstick': 783266, 'matchstick to': 520332, 'keep my': 471685, 'my eye': 548135, 'eye open': 294081, 'open the': 612546, 'world ha': 1009603, 'ha gone': 370718, 'gone mad': 356329, 'mad nofood': 507558, 'nofood madworld': 566158, 'only wanted to': 611432, 'wanted to add': 966241, 'to add box': 900053, 'add box of': 31410, 'box of egg': 137117, 'of egg to': 583001, 'egg to my': 270012, 'to my existing': 910394, 'my existing order': 548125, 'existing order think': 290336, 'order think need': 618644, 'think need to': 885419, 'need to find': 555937, 'to find some': 905936, 'find some matchstick': 307228, 'some matchstick to': 783267, 'matchstick to keep': 520333, 'to keep my': 908814, 'keep my eye': 471686, 'my eye open': 548140, 'eye open the': 294084, 'open the world': 612557, 'the world ha': 871884, 'world ha gone': 1009611, 'ha gone mad': 370728, 'gone mad nofood': 356331, 'mad nofood madworld': 507559, 'dip': 243168, 'earned': 264821, 'the major': 859926, 'major grocery': 509349, 'quarantine and': 692006, 'it you': 462634, 'to dip': 904314, 'dip in': 243186, 'in to': 430100, 'own earned': 631951, 'earned vacation': 264837, 'vacation time': 951598, 'only way': 611437, 'leave is': 484838, 'is if': 448656, 'are diagnosed': 85810, 'diagnosed for': 240227, 'at the major': 101011, 'the major grocery': 859930, 'major grocery store': 509351, 'store and if': 806265, 'and if you': 64957, 'want to self': 966111, 'self quarantine and': 747845, 'quarantine and get': 692012, 'and get paid': 63594, 'get paid for': 347766, 'paid for it': 634018, 'for it you': 322748, 'it you have': 462643, 'you have to': 1019131, 'have to dip': 383193, 'to dip in': 904318, 'dip in to': 243197, 'in to your': 430147, 'to your own': 919012, 'your own earned': 1025132, 'own earned vacation': 631952, 'earned vacation time': 264838, 'vacation time the': 951599, 'time the only': 897864, 'the only way': 862356, 'only way to': 611445, 'way to get': 970031, 'get paid leave': 347769, 'paid leave is': 634059, 'leave is if': 484841, 'is if you': 448660, 'you are diagnosed': 1017107, 'are diagnosed for': 85811, 'diagnosed for covid': 240229, 'ripple': 722729, 'foodcupboards': 317887, 'staff at': 792228, 'at social': 100565, 'social service': 779954, 'service agency': 752039, 'agency are': 37983, 'seeing 100': 746194, '100 increase': 1927, 'demand ripple': 236152, 'ripple effect': 722734, 'of need': 586899, 'need due': 554713, 'see list': 745367, 'list of': 494404, 'of 23': 579524, '23 foodcupboards': 15388, 'foodcupboards in': 317888, 'in region': 427352, 'region their': 707469, 'their hour': 873591, 'hour of': 405791, 'of operation': 587298, 'operation read': 613240, 'more via': 540898, 'via of': 956126, 'staff at social': 792239, 'at social service': 100567, 'social service agency': 779956, 'service agency are': 752040, 'agency are seeing': 37987, 'are seeing 100': 89882, 'seeing 100 increase': 746195, '100 increase in': 1928, 'in demand ripple': 422152, 'demand ripple effect': 236153, 'ripple effect of': 722736, 'effect of need': 269053, 'of need due': 586905, 'need due to': 554715, 'due to see': 261939, 'to see list': 914035, 'see list of': 745368, 'list of 23': 494408, 'of 23 foodcupboards': 579528, '23 foodcupboards in': 15389, 'foodcupboards in region': 317889, 'in region their': 427354, 'region their hour': 707470, 'their hour of': 873596, 'hour of operation': 405801, 'of operation read': 587302, 'operation read more': 613242, 'read more via': 700455, 'more via of': 540902, 'swan': 829948, 'inevitable': 436361, 'rethinking': 719666, 'opinion what': 613517, 'doe black': 251353, 'black swan': 132131, 'swan mean': 829962, 'for market': 323250, 'market the': 517180, 'the inevitable': 858204, 'inevitable collapse': 436368, 'in international': 424122, 'international trade': 441859, 'trade and': 928405, 'term rethinking': 838276, 'rethinking of': 719667, 'role the': 725131, 'only major': 610749, 'major hub': 509356, 'hub for': 409795, 'the production': 864604, 'production of': 682138, 'consumer good': 197594, 'good electronics': 356996, 'electronics are': 271278, 'are inevitable': 87530, 'opinion what doe': 613518, 'what doe black': 981358, 'doe black swan': 251354, 'black swan mean': 132137, 'swan mean for': 829963, 'mean for market': 524444, 'for market the': 323255, 'market the inevitable': 517188, 'the inevitable collapse': 858206, 'inevitable collapse in': 436369, 'collapse in international': 186017, 'in international trade': 424127, 'international trade and': 441860, 'trade and the': 928411, 'long term rethinking': 501713, 'term rethinking of': 838277, 'rethinking of china': 719668, 'of china role': 581367, 'china role the': 176920, 'role the only': 725133, 'the only major': 862319, 'only major hub': 610750, 'major hub for': 509357, 'hub for the': 409797, 'for the production': 326636, 'the production of': 864607, 'production of consumer': 682140, 'of consumer good': 581743, 'consumer good electronics': 197612, 'good electronics are': 356997, 'electronics are inevitable': 271279, 'ive': 464050, 'your struggling': 1026013, 'get hold': 347234, 'hold of': 399963, 'supermarket ive': 821196, 'ive found': 464051, 'found there': 330423, 'there load': 878723, 'load in': 497255, 'the customer': 852711, 'customer toilet': 222990, 'if your struggling': 415611, 'your struggling to': 1026014, 'to get hold': 906502, 'get hold of': 347235, 'hold of toilet': 399975, 'of toilet roll': 592253, 'toilet roll at': 921552, 'roll at the': 725204, 'the supermarket ive': 868655, 'supermarket ive found': 821197, 'ive found there': 464052, 'found there load': 330424, 'there load in': 878724, 'load in the': 497256, 'in the customer': 429118, 'the customer toilet': 852737, 'kansa': 470802, 'dan': 225517, 'brien': 139767, 'updated': 947339, 'kansa wheat': 470822, 'wheat price': 983004, 'price cost': 673271, 'cost during': 207914, '19 video': 11772, 'video dan': 956701, 'dan brien': 225522, 'brien ha': 139770, 'ha updated': 372407, 'updated his': 947378, 'his discussion': 397362, 'discussion of': 245030, 'of wheat': 593079, 'price following': 673907, 'following jump': 312773, 'recent day': 703854, 'day more': 227984, 'more to': 540784, 'to come': 903016, 'kansa wheat price': 470823, 'wheat price cost': 983007, 'price cost during': 673273, 'cost during covid': 207915, 'covid 19 video': 214029, '19 video dan': 11773, 'video dan brien': 956702, 'dan brien ha': 225524, 'brien ha updated': 139771, 'ha updated his': 372408, 'updated his discussion': 947379, 'his discussion of': 397363, 'discussion of wheat': 245033, 'of wheat price': 593083, 'wheat price following': 983008, 'price following jump': 673909, 'following jump in': 312774, 'jump in recent': 467868, 'in recent day': 427315, 'recent day more': 703863, 'day more to': 227987, 'more to come': 540787, 'disclosure': 244393, 'senator': 749731, 'richard': 721279, 'burr': 142936, 'kelly': 472713, 'loefner': 500601, 'dianne': 240347, 'feinstein': 303124, 'ron': 725765, 'inhofe': 438465, 'stock sale': 802804, 'sale disclosure': 732160, 'disclosure by': 244394, 'by senator': 153938, 'senator after': 749732, 'after closed': 35469, 'closed door': 183073, 'door briefing': 255535, 'briefing on': 139727, 'on january': 601720, 'january 24': 464637, '24 about': 15555, 'coronavirus threat': 206932, 'threat the': 893723, 'the following': 855492, 'following senator': 312841, 'senator sold': 749790, 'sold stock': 781772, 'stock senator': 802818, 'senator richard': 749780, 'richard burr': 721286, 'burr senator': 142950, 'senator kelly': 749763, 'kelly loefner': 472721, 'loefner senator': 500602, 'senator dianne': 749741, 'dianne feinstein': 240348, 'feinstein senator': 303127, 'senator ron': 749784, 'ron johnson': 725773, 'johnson senator': 466620, 'senator jim': 749759, 'jim inhofe': 465499, 'according to stock': 28591, 'to stock sale': 915449, 'stock sale disclosure': 802805, 'sale disclosure by': 732161, 'disclosure by senator': 244395, 'by senator after': 153939, 'senator after closed': 749733, 'after closed door': 35470, 'closed door briefing': 183074, 'door briefing on': 255537, 'briefing on january': 139729, 'on january 24': 601722, 'january 24 about': 464638, '24 about the': 15556, 'about the coronavirus': 26362, 'the coronavirus threat': 851928, 'coronavirus threat the': 206935, 'threat the following': 893724, 'the following senator': 855521, 'following senator sold': 312842, 'senator sold stock': 749791, 'sold stock senator': 781773, 'stock senator richard': 802819, 'senator richard burr': 749781, 'richard burr senator': 721290, 'burr senator kelly': 142951, 'senator kelly loefner': 749764, 'kelly loefner senator': 472722, 'loefner senator dianne': 500603, 'senator dianne feinstein': 749742, 'dianne feinstein senator': 240350, 'feinstein senator ron': 303128, 'senator ron johnson': 749785, 'ron johnson senator': 725774, 'johnson senator jim': 466621, 'senator jim inhofe': 749760, 'tracking': 928314, 'marketer': 517445, 'this regularly': 889855, 'regularly updated': 707960, 'updated list': 947396, 'list from': 494333, 'from tracking': 338116, 'tracking the': 928366, 'latest move': 481439, 'move marketer': 543693, 'marketer of': 517475, 'consumer brand': 196648, 'brand are': 137737, 'making in': 511125, 'out this regularly': 627583, 'this regularly updated': 889857, 'regularly updated list': 707962, 'updated list from': 947397, 'list from tracking': 494338, 'from tracking the': 338117, 'tracking the latest': 928371, 'the latest move': 859129, 'latest move marketer': 481440, 'move marketer of': 543694, 'marketer of consumer': 517477, 'of consumer brand': 581715, 'consumer brand are': 196650, 'brand are making': 137748, 'are making in': 87985, 'making in response': 511126, 'commentary': 188472, 'nate': 552074, 'donnay': 255145, 'intl': 442339, 'fcstone': 300808, 'inc': 431265, 'fcm': 300793, 'division': 248658, 'quoted': 695012, 'oatt': 578315, 'expert market': 291883, 'market commentary': 516191, 'commentary by': 188475, 'by nate': 153298, 'nate donnay': 552075, 'donnay director': 255146, 'dairy market': 225006, 'market insight': 516593, 'insight for': 439535, 'for intl': 322630, 'intl fcstone': 442340, 'fcstone financial': 300809, 'financial inc': 306452, 'inc fcm': 431278, 'fcm division': 300794, 'division is': 248675, 'is quoted': 451197, 'quoted by': 695013, 'by dairy': 152287, 'dairy oatt': 225015, 'expert market commentary': 291884, 'market commentary by': 516192, 'commentary by nate': 188477, 'by nate donnay': 153299, 'nate donnay director': 552076, 'donnay director of': 255147, 'director of dairy': 243647, 'of dairy market': 582325, 'dairy market insight': 225008, 'market insight for': 516595, 'insight for intl': 439538, 'for intl fcstone': 322631, 'intl fcstone financial': 442341, 'fcstone financial inc': 300810, 'financial inc fcm': 306453, 'inc fcm division': 431279, 'fcm division is': 300795, 'division is quoted': 248676, 'is quoted by': 451198, 'quoted by dairy': 695014, 'by dairy oatt': 152288, 'center': 169141, 'provided': 686560, 'practical': 668449, 'expert from': 291841, 'report the': 712334, 'the center': 850593, 'center for': 169199, 'for disease': 320748, 'disease control': 245116, 'control and': 201961, 'and prevention': 69425, 'prevention and': 671839, 'other organization': 620623, 'organization have': 619377, 'have provided': 382095, 'provided advice': 686564, 'advice on': 33450, 'on product': 602949, 'that can': 843090, 'help protect': 390365, 'protect and': 684777, 'from lot': 336279, 'of practical': 588340, 'practical advice': 668450, 'advice right': 33482, 'right here': 721930, 'expert from consumer': 291846, 'from consumer report': 334970, 'consumer report the': 198733, 'report the center': 712337, 'the center for': 850596, 'center for disease': 169203, 'for disease control': 320749, 'disease control and': 245117, 'control and prevention': 201966, 'and prevention and': 69426, 'prevention and other': 671842, 'and other organization': 68374, 'other organization have': 620625, 'organization have provided': 619379, 'have provided advice': 382096, 'provided advice on': 686565, 'advice on product': 33457, 'on product that': 602956, 'product that can': 681687, 'that can help': 843107, 'can help protect': 158649, 'help protect and': 390367, 'protect and our': 684781, 'and our home': 68493, 'home from lot': 401267, 'from lot of': 336280, 'lot of practical': 504258, 'of practical advice': 588341, 'practical advice right': 668451, 'advice right here': 33483, 'meenal': 527384, 'sharma': 755648, 'jagtap': 464248, 'pramod': 668917, 'kumar': 477907, 'nayak': 553174, 'attended': 102389, 'webinars': 975144, 'organised': 619308, 'consulting': 195893, 'topic': 925771, 'fashion': 299788, 'dr meenal': 258061, 'meenal sharma': 527385, 'sharma jagtap': 755653, 'jagtap and': 464249, 'and dr': 61708, 'dr pramod': 258079, 'pramod kumar': 668918, 'kumar nayak': 477912, 'nayak from': 553175, 'the department': 853139, 'of management': 586140, 'management and': 512529, 'and commerce': 60129, 'commerce attended': 188518, 'attended the': 102396, 'first webinar': 309173, 'webinar in': 975043, 'in series': 427811, 'of webinars': 592980, 'webinars organised': 975156, 'organised by': 619313, 'by one': 153426, 'one consulting': 606095, 'consulting firm': 195900, 'firm on': 308398, 'the topic': 869799, 'topic covid': 925781, 'good retail': 357663, 'retail and': 717812, 'and fashion': 62705, 'dr meenal sharma': 258062, 'meenal sharma jagtap': 527386, 'sharma jagtap and': 755654, 'jagtap and dr': 464250, 'and dr pramod': 61709, 'dr pramod kumar': 258080, 'pramod kumar nayak': 668919, 'kumar nayak from': 477913, 'nayak from the': 553176, 'from the department': 337669, 'the department of': 853144, 'department of management': 237245, 'of management and': 586141, 'management and commerce': 512530, 'and commerce attended': 60130, 'commerce attended the': 188519, 'attended the first': 102397, 'the first webinar': 855366, 'first webinar in': 309174, 'webinar in series': 975044, 'in series of': 427813, 'series of webinars': 751282, 'of webinars organised': 592981, 'webinars organised by': 975157, 'organised by one': 619314, 'by one consulting': 153428, 'one consulting firm': 606096, 'consulting firm on': 195901, 'firm on the': 308399, 'on the topic': 604410, 'the topic covid': 869800, 'topic covid 19': 925782, 'on consumer good': 600053, 'consumer good retail': 197635, 'good retail and': 357664, 'retail and fashion': 717818, 'mckinsey': 522187, 'gauge': 344537, 'expectation': 290791, 'survey': 828800, 'collected': 186347, 'mckinsey is': 522201, 'is tracking': 453318, 'tracking consumer': 928323, 'sentiment to': 751012, 'to gauge': 906382, 'gauge how': 344540, 'how people': 408492, 'people expectation': 647843, 'expectation income': 290828, 'income spending': 432459, 'spending and': 788729, 'behavior change': 123956, 'change throughout': 172334, 'throughout covid': 894933, '19 survey': 10991, 'survey data': 828850, 'data wa': 226484, 'wa collected': 961836, 'collected last': 186363, 'be updated': 117887, 'updated on': 947405, 'this link': 888638, 'link regularly': 493895, 'mckinsey is tracking': 522202, 'is tracking consumer': 453319, 'tracking consumer sentiment': 928326, 'consumer sentiment to': 198932, 'sentiment to gauge': 751013, 'to gauge how': 906384, 'gauge how people': 344541, 'how people expectation': 408500, 'people expectation income': 647844, 'expectation income spending': 290829, 'income spending and': 432460, 'spending and behavior': 788730, 'and behavior change': 58837, 'behavior change throughout': 123966, 'change throughout covid': 172335, 'throughout covid 19': 894934, 'covid 19 survey': 213898, '19 survey data': 10992, 'survey data wa': 828852, 'data wa collected': 226485, 'wa collected last': 961837, 'collected last week': 186364, 'last week and': 480632, 'week and will': 975948, 'and will be': 75658, 'will be updated': 992750, 'be updated on': 117891, 'updated on this': 947410, 'on this link': 604615, 'this link regularly': 888648, 'easterbasket': 265541, 'microban': 530432, 'sprayed': 790355, 'easterbasket 2020': 265542, '2020 ve': 14690, 'toiletpaper microban': 922242, 'microban sprayed': 530437, 'sprayed the': 790360, 'the shit': 866951, 'shit out': 759179, 'everything before': 287707, 'before brought': 122678, 'brought it': 141170, 'it into': 458819, 'into my': 442775, 'my unit': 550461, 'easterbasket 2020 ve': 265543, '2020 ve got': 14691, 've got toiletpaper': 953202, 'got toiletpaper microban': 358978, 'toiletpaper microban sprayed': 922243, 'microban sprayed the': 530438, 'sprayed the shit': 790361, 'the shit out': 866955, 'shit out of': 759180, 'out of everything': 626731, 'of everything before': 583266, 'everything before brought': 287708, 'before brought it': 122679, 'brought it into': 141173, 'it into my': 458825, 'into my unit': 442792, 'constant': 195598, 'postcovidworld': 666502, 'newnormal': 560134, 'no back': 563651, 'normal we': 567394, 'will forever': 993475, 'forever live': 329129, 'in post': 426856, 'post covid': 666074, 'covid world': 214252, 'world like': 1009761, 'like after': 489726, 'after 11': 35261, '11 that': 2597, 'that ok': 845474, 'ok because': 597768, 'because change': 118994, 'change is': 172148, 'is constant': 446772, 'constant and': 195601, 'and sometimes': 71994, 'sometimes good': 785208, 'good postcovidworld': 357572, 'postcovidworld newnormal': 666503, 'newnormal the': 560151, 'is no back': 449911, 'no back to': 563652, 'to normal we': 910667, 'normal we will': 567400, 'we will forever': 973864, 'will forever live': 993477, 'forever live in': 329130, 'live in post': 495881, 'in post covid': 426860, 'post covid world': 666078, 'covid world like': 214253, 'world like after': 1009762, 'like after 11': 489727, 'after 11 that': 35264, '11 that ok': 2598, 'that ok because': 845475, 'ok because change': 597769, 'because change is': 118995, 'change is constant': 172151, 'is constant and': 446773, 'constant and sometimes': 195602, 'and sometimes good': 71996, 'sometimes good postcovidworld': 785209, 'good postcovidworld newnormal': 357573, 'postcovidworld newnormal the': 666504, 'newnormal the consumer': 560152, 'consumer after covid': 196112, 'campaignspot': 157284, 'directly': 243519, 'paranoia': 641421, 'rumour': 727509, 'generating': 345584, 'faith': 296491, 'among': 52978, 'campaignspot the': 157285, 'ha directly': 370388, 'directly impacted': 243555, 'impacted brand': 418070, 'brand due': 137823, 'consumer paranoia': 198334, 'paranoia and': 641422, 'and rumour': 70630, 'rumour we': 727534, 'we take': 973476, 'take look': 832290, 'at how': 99204, 'how brand': 407465, 'are generating': 86778, 'generating faith': 345589, 'faith among': 296492, 'among consumer': 52992, 'consumer by': 196713, 'by sharing': 153965, 'sharing on': 755562, 'on social': 603531, 'social medium': 779834, 'campaignspot the covid': 157286, 'pandemic ha directly': 635540, 'ha directly impacted': 370389, 'directly impacted brand': 243556, 'impacted brand due': 418071, 'brand due to': 137824, 'due to consumer': 261739, 'to consumer paranoia': 903321, 'consumer paranoia and': 198335, 'paranoia and rumour': 641424, 'and rumour we': 70631, 'rumour we take': 727535, 'we take look': 973484, 'take look at': 832292, 'look at how': 502268, 'at how brand': 99206, 'how brand are': 407466, 'brand are generating': 137744, 'are generating faith': 86779, 'generating faith among': 345590, 'faith among consumer': 296493, 'among consumer by': 52993, 'consumer by sharing': 196718, 'by sharing on': 153969, 'sharing on social': 755564, 'on social medium': 603536, 'baseball': 111483, 'struck': 814251, 'row': 726564, 'chinesevirus': 177423, 'in in': 423996, 'in baseball': 420711, 'baseball ve': 111492, 've struck': 953610, 'struck out': 814272, 'store time': 810739, 'in row': 427556, 'row chinesevirus': 726575, 're out in': 699222, 'out in in': 626380, 'in in baseball': 423997, 'in baseball ve': 420712, 'baseball ve struck': 111493, 've struck out': 953612, 'struck out the': 814273, 'out the grocery': 627373, 'grocery store time': 365866, 'store time in': 810743, 'time in row': 897011, 'in row chinesevirus': 427559, 'privilege': 679020, 'big thank': 130057, 'to everyone': 905327, 'who doesn': 988635, 'doesn have': 251816, 'the privilege': 864493, 'privilege of': 679035, 'home doctor': 401087, 'nurse healthcare': 577360, 'employee and': 273552, 'more we': 540949, 'we appreciate': 970449, 'you now': 1020153, 'ever and': 285195, 'are important': 87336, 'big thank you': 130058, 'you to everyone': 1021773, 'to everyone who': 905359, 'everyone who doesn': 287587, 'who doesn have': 988638, 'doesn have the': 251827, 'have the privilege': 383013, 'the privilege of': 864494, 'privilege of working': 679036, 'of working from': 593298, 'from home doctor': 335855, 'home doctor nurse': 401088, 'doctor nurse healthcare': 251020, 'nurse healthcare worker': 577363, 'healthcare worker grocery': 387362, 'store employee and': 807456, 'employee and more': 273572, 'and more we': 67230, 'more we appreciate': 540950, 'we appreciate you': 970458, 'appreciate you now': 82787, 'you now more': 1020159, 'than ever and': 840569, 'ever and you': 285197, 'and you are': 76002, 'you are important': 1017150, 'evening': 284844, 'encounter': 275526, 'dilemma': 242847, 'sunday evening': 818196, 'evening and': 284845, 'you encounter': 1018401, 'encounter this': 275541, 'this dilemma': 887233, 'dilemma do': 242848, 'panic you': 638814, 'you bought': 1017500, 'enough toilet': 277733, 'paper to': 640917, 'to tip': 917582, 'tip the': 898916, 'the white': 871457, 'house toiletpaper': 406638, 'it on sunday': 460059, 'on sunday evening': 603757, 'sunday evening and': 818197, 'evening and you': 284851, 'and you encounter': 76014, 'you encounter this': 1018402, 'encounter this dilemma': 275542, 'this dilemma do': 887234, 'dilemma do not': 242849, 'not panic you': 570948, 'panic you bought': 638815, 'you bought enough': 1017502, 'bought enough toilet': 136546, 'enough toilet paper': 277734, 'toilet paper to': 921494, 'paper to tip': 640928, 'to tip the': 917583, 'tip the white': 898920, 'the white house': 871458, 'white house toiletpaper': 987864, 'felt': 303353, 'breathe': 139193, 'freeverse': 332504, 'poem': 662353, 'panicattack': 638823, 'had panic': 373382, 'panic attack': 637368, 'attack while': 102175, 'while out': 987135, 'out doing': 625971, 'doing grocery': 252433, 'grocery run': 364912, 'run cannot': 727597, 'cannot remember': 162057, 'last time': 480559, 'time ve': 898177, 've felt': 953112, 'felt so': 303450, 'so anxious': 776524, 'anxious that': 78866, 'not breathe': 568615, 'breathe grocery': 139200, 'store anxiety': 806422, 'anxiety freeverse': 78702, 'freeverse poem': 332505, 'poem panicattack': 662354, 'panicattack mentalhealth': 638824, 'mentalhealth anxiety': 528676, 'had panic attack': 373383, 'panic attack while': 637386, 'attack while out': 102177, 'while out doing': 987136, 'out doing grocery': 625974, 'doing grocery run': 252435, 'grocery run cannot': 364915, 'run cannot remember': 727598, 'cannot remember the': 162059, 'remember the last': 710309, 'the last time': 859049, 'last time ve': 480575, 'time ve felt': 898179, 've felt so': 953114, 'felt so anxious': 303452, 'so anxious that': 776525, 'anxious that could': 78867, 'that could not': 843356, 'could not breathe': 209434, 'not breathe grocery': 568616, 'breathe grocery store': 139201, 'grocery store anxiety': 365203, 'store anxiety freeverse': 806423, 'anxiety freeverse poem': 78703, 'freeverse poem panicattack': 332506, 'poem panicattack mentalhealth': 662355, 'panicattack mentalhealth anxiety': 638825, 'poongothai': 664042, 'aladi': 40634, 'aruna': 94678, 'grain': 361757, 'enormous': 277277, 'released': 709009, 'kg': 473633, 'cov': 212106, 'dr poongothai': 258077, 'poongothai aladi': 664043, 'aladi aruna': 40635, 'aruna the': 94682, 'of grain': 584294, 'grain being': 361766, 'being kept': 125352, 'kept is': 473051, 'is enormous': 447504, 'enormous it': 277287, 'it must': 459708, 'be released': 116762, 'released to': 709089, 'people now': 648884, 'crisis kg': 217635, 'kg of': 473661, 'of rice': 589089, 'rice is': 721070, 'is rice': 451512, 'rice stock': 721147, 'of 48': 579596, '48 00': 19292, '00 ton': 557, 'ton more': 924262, 'people may': 648750, 'may die': 521123, 'die from': 241339, 'shortage than': 765244, 'than from': 840678, 'coronavirus sars': 206705, 'sars cov': 736797, 'cov india': 212124, 'dr poongothai aladi': 258078, 'poongothai aladi aruna': 664044, 'aladi aruna the': 40637, 'aruna the stock': 94683, 'the stock of': 867918, 'stock of grain': 802525, 'of grain being': 584295, 'grain being kept': 361767, 'being kept is': 125354, 'kept is enormous': 473052, 'is enormous it': 447505, 'enormous it must': 277288, 'it must be': 459709, 'must be released': 546539, 'be released to': 116765, 'released to the': 709091, 'the people now': 863493, 'people now in': 648891, 'now in time': 575019, 'of crisis kg': 582169, 'crisis kg of': 217636, 'kg of rice': 473662, 'of rice is': 589098, 'rice is not': 721072, 'is not enough': 450071, 'not enough there': 569195, 'there is rice': 878614, 'is rice stock': 451513, 'rice stock of': 721149, 'stock of 48': 802514, 'of 48 00': 579597, '48 00 ton': 19293, '00 ton more': 558, 'ton more people': 924263, 'more people may': 540031, 'people may die': 648752, 'may die from': 521124, 'die from food': 241348, 'from food shortage': 335514, 'food shortage than': 316609, 'shortage than from': 765246, 'than from the': 840682, 'from the coronavirus': 337656, 'the coronavirus sars': 851904, 'coronavirus sars cov': 206706, 'sars cov india': 736801, 'begin': 123497, 'bridge': 139614, 'wasted': 968222, 'billion': 130765, 'poverty': 667473, 'oxfam': 632651, 'waste': 968060, 'how can': 407491, 'can we': 160154, 'we begin': 970838, 'begin to': 123575, 'to bridge': 902021, 'bridge the': 139619, 'the gap': 856136, 'gap between': 343432, 'between wasted': 128955, 'wasted food': 968234, 'and growing': 64010, 'growing need': 367217, 'bank worldwide': 110329, 'worldwide half': 1010367, 'half billion': 374146, 'billion people': 130886, 'be driven': 114606, 'driven into': 259326, 'into poverty': 442881, 'poverty by': 667488, 'by oxfam': 153506, 'oxfam warning': 632652, 'warning food': 967122, 'food waste': 317466, 'waste to': 968208, 'protect price': 684927, 'how can we': 407528, 'can we begin': 160163, 'we begin to': 970839, 'begin to bridge': 123578, 'to bridge the': 902022, 'bridge the gap': 139621, 'the gap between': 856137, 'gap between wasted': 343437, 'between wasted food': 128956, 'wasted food and': 968235, 'food and growing': 313247, 'and growing need': 64014, 'growing need for': 367218, 'need for food': 554843, 'for food bank': 321555, 'food bank worldwide': 313675, 'bank worldwide half': 110330, 'worldwide half billion': 1010368, 'half billion people': 374147, 'billion people could': 130887, 'could be driven': 208863, 'be driven into': 114608, 'driven into poverty': 259327, 'into poverty by': 442884, 'poverty by oxfam': 667489, 'by oxfam warning': 153507, 'oxfam warning food': 632653, 'warning food waste': 967123, 'food waste to': 317495, 'waste to protect': 968211, 'to protect price': 912323, 'grocer': 364085, 'sheer': 756567, 'traffic': 929040, 'ocado pull': 578911, 'pull website': 688898, 'website amid': 975186, 'amid shopping': 52650, 'shopping frenzy': 762744, 'frenzy online': 332789, 'online grocer': 608308, 'grocer ha': 364132, 'closed it': 183194, 'it website': 462287, 'website and': 975192, 'and app': 58242, 'app and': 81671, 'not take': 571896, 'take any': 831940, 'any new': 79506, 'new order': 559227, 'order for': 618218, 'for several': 325512, 'several day': 753821, 'day thanks': 228464, 'to sheer': 914394, 'sheer volume': 756588, 'volume of': 960150, 'of traffic': 592408, 'ocado pull website': 578912, 'pull website amid': 688899, 'website amid shopping': 975189, 'amid shopping frenzy': 52651, 'shopping frenzy online': 762747, 'frenzy online grocer': 332790, 'online grocer ha': 608309, 'grocer ha closed': 364133, 'ha closed it': 370172, 'closed it website': 183201, 'it website and': 462289, 'website and app': 975193, 'and app and': 58243, 'app and will': 81677, 'and will not': 75679, 'will not take': 994277, 'not take any': 571898, 'take any new': 831946, 'any new order': 79511, 'new order for': 559228, 'order for several': 618242, 'for several day': 325513, 'several day thanks': 753825, 'day thanks to': 228465, 'thanks to sheer': 842260, 'to sheer volume': 914395, 'sheer volume of': 756589, 'volume of traffic': 960161, 'rural': 728208, 'northern': 567737, 'hunting': 411403, 'fishing': 309392, 'ab': 24163, 'cdnpoli': 168656, 'gurney': 368824, 'for many': 323205, 'many in': 514163, 'in rural': 427572, 'rural and': 728220, 'and northern': 67697, 'northern canada': 567750, 'canada hunting': 160465, 'hunting fishing': 411409, 'fishing are': 309395, 'food chain': 313906, 'chain on': 170970, 'and ab': 57530, 'ab both': 24172, 'both list': 135957, 'list hunting': 494356, 'fishing under': 309420, 'under agriculture': 939994, 'agriculture food': 38973, 'food essential': 314374, 'business cdnpoli': 143507, 'cdnpoli matt': 168659, 'matt gurney': 520517, 'gurney do': 368825, 'panic at': 637359, 'the surge': 869000, 'in canadian': 421208, 'canadian gun': 160690, 'gun sale': 368717, 'sale via': 732630, 'for many in': 323220, 'many in rural': 514169, 'in rural and': 427574, 'rural and northern': 728221, 'and northern canada': 67698, 'northern canada hunting': 567751, 'canada hunting fishing': 160466, 'hunting fishing are': 411411, 'fishing are part': 309396, 'of the food': 591038, 'the food chain': 855538, 'food chain on': 313913, 'chain on and': 170971, 'on and ab': 599345, 'and ab both': 57531, 'ab both list': 24173, 'both list hunting': 135958, 'list hunting fishing': 494357, 'hunting fishing under': 411413, 'fishing under agriculture': 309421, 'under agriculture food': 939995, 'agriculture food essential': 38974, 'food essential business': 314375, 'essential business cdnpoli': 280843, 'business cdnpoli matt': 143508, 'cdnpoli matt gurney': 168660, 'matt gurney do': 520518, 'gurney do not': 368826, 'not panic at': 570894, 'panic at the': 637364, 'at the surge': 101117, 'the surge in': 869002, 'surge in canadian': 828180, 'in canadian gun': 421209, 'canadian gun sale': 160691, 'gun sale via': 368725, 'girlscoutcookies': 350325, 'give me': 350562, 'me girlscoutcookies': 522815, 'girlscoutcookies not': 350326, 'not toiletpaper': 572214, 'toiletpaper will': 922852, 'will survive': 995045, 'give me girlscoutcookies': 350573, 'me girlscoutcookies not': 522816, 'girlscoutcookies not toiletpaper': 350327, 'not toiletpaper will': 572216, 'toiletpaper will survive': 922853, 'will survive the': 995049, 'woah': 1003308, 'ending': 276157, 'collective': 186481, 'woah wait': 1003313, 'wait cnn': 964090, 'cnn say': 184774, 'is ending': 447487, 'ending buy': 276168, 'food buy': 313841, 'paper we': 641064, 'all going': 42952, 'die they': 241463, 'they spread': 883429, 'spread collective': 790476, 'collective hysteria': 186507, 'hysteria this': 412479, 'year we': 1015081, 'who have': 988903, 'have died': 380260, 'died from': 241545, 'the flu': 855456, 'flu than': 311470, '19 spreading': 10757, 'panic cause': 637998, 'cause even': 167549, 'more problem': 540143, 'woah wait cnn': 1003314, 'wait cnn say': 964092, 'cnn say the': 184776, 'say the world': 739311, 'world is ending': 1009694, 'is ending buy': 447488, 'ending buy food': 276169, 'buy food buy': 148636, 'food buy toilet': 313844, 'toilet paper we': 921520, 'paper we re': 641068, 're all going': 698217, 'all going to': 42956, 'going to die': 355569, 'to die they': 904279, 'die they spread': 241464, 'they spread collective': 883430, 'spread collective hysteria': 790477, 'collective hysteria this': 186508, 'hysteria this year': 412480, 'this year we': 891602, 'year we have': 1015085, 'we have more': 971870, 'have more people': 381504, 'more people who': 540051, 'people who have': 650306, 'who have died': 988919, 'have died from': 380267, 'died from the': 241559, 'from the flu': 337704, 'the flu than': 855465, 'flu than from': 311471, 'than from covid': 840679, 'covid 19 spreading': 213848, '19 spreading panic': 10762, 'spreading panic cause': 791024, 'panic cause even': 637999, 'cause even more': 167550, 'even more problem': 284372, 'finland': 307952, 'certified': 170227, 'ffp2': 304274, 'expecting': 291025, 'deceived': 230728, 'just did': 468581, 'did small': 240803, 'small research': 775090, 'research there': 713859, 'is absolutely': 445289, 'absolutely no': 27397, 'of buying': 581010, 'buying mask': 150700, 'mask online': 519061, 'online in': 608392, 'in finland': 422897, 'finland which': 307977, 'which are': 985667, 'are certified': 85218, 'certified ffp2': 170232, 'ffp2 or': 304280, 'or n95': 616218, 'n95 only': 551217, 'only option': 610913, 'option is': 614060, 'to shopping': 914515, 'shopping center': 762338, 'center in': 169228, 'person to': 652651, 'check if': 174464, 'have those': 383113, 'those mask': 892194, 'mask what': 519529, 'what wa': 982511, 'wa expecting': 962094, 'expecting even': 291034, 'even the': 284645, 'government wa': 360773, 'wa deceived': 961922, 'just did small': 468585, 'did small research': 240804, 'small research there': 775091, 'research there is': 713860, 'there is absolutely': 878516, 'is absolutely no': 445297, 'absolutely no way': 27406, 'way of buying': 969741, 'of buying mask': 581014, 'buying mask online': 150702, 'mask online in': 519062, 'online in finland': 608395, 'in finland which': 422903, 'finland which are': 307978, 'which are certified': 985675, 'are certified ffp2': 85219, 'certified ffp2 or': 170233, 'ffp2 or n95': 304281, 'or n95 only': 616219, 'n95 only option': 551218, 'only option is': 610915, 'option is to': 614063, 'is to go': 453207, 'go to shopping': 354357, 'to shopping center': 914516, 'shopping center in': 762341, 'center in person': 169235, 'in person to': 426642, 'person to check': 652654, 'to check if': 902684, 'check if they': 174468, 'if they have': 415115, 'they have those': 882393, 'have those mask': 383115, 'those mask what': 892195, 'mask what wa': 519532, 'what wa expecting': 982512, 'wa expecting even': 962096, 'expecting even the': 291035, 'even the government': 284656, 'the government wa': 856621, 'government wa deceived': 360774, 'era': 280026, 'hankering': 376988, 'sm': 774740, 'hypermarket': 412321, 'cubao': 220174, 'making supply': 511368, 'run in': 727673, 'the era': 854470, 'era of': 280067, '19 death': 6440, 'death disease': 230020, 'disease and': 245083, 'and disruption': 61491, 'disruption all': 246433, 'all because': 42148, 'because an': 118931, 'an idiot': 56143, 'idiot had': 413517, 'had hankering': 373161, 'hankering for': 376989, 'for bat': 319596, 'bat meat': 112549, 'meat sm': 525748, 'sm hypermarket': 774747, 'hypermarket cubao': 412330, 'making supply run': 511370, 'supply run in': 825785, 'run in the': 727675, 'in the era': 429173, 'the era of': 854474, 'era of covid': 280070, 'covid 19 death': 212918, '19 death disease': 6443, 'death disease and': 230021, 'disease and disruption': 245086, 'and disruption all': 61492, 'disruption all because': 246434, 'all because an': 42149, 'because an idiot': 118933, 'an idiot had': 56148, 'idiot had hankering': 413519, 'had hankering for': 373162, 'hankering for bat': 376990, 'for bat meat': 319597, 'bat meat sm': 112551, 'meat sm hypermarket': 525749, 'sm hypermarket cubao': 774748, 'headed': 385890, 'me headed': 522875, 'headed to': 385916, 'store 2020': 806027, '2020 19': 14098, 'me headed to': 522877, 'headed to the': 385919, 'grocery store 2020': 365167, 'store 2020 19': 806028, 'localshops': 498792, 'exploit': 292329, 'illegal': 416192, '0203738600': 809, 'your localshops': 1024728, 'localshops or': 498793, 'or retailer': 616889, 'retailer are': 718982, 'are hiking': 87170, 'hiking their': 396418, 'their price': 874369, 'price please': 675879, 'please report': 660385, 'report them': 712353, 'them food': 875697, 'increase by': 432702, 'by shop': 153980, 'to exploit': 905489, 'exploit the': 292360, 'is illegal': 448661, 'illegal there': 416246, 'can report': 159445, 'store by': 806827, 'by calling': 152052, 'calling 0203738600': 156505, '0203738600 coronacrisis': 810, 'if your localshops': 415592, 'your localshops or': 1024729, 'localshops or retailer': 498794, 'or retailer are': 616891, 'retailer are hiking': 719003, 'are hiking their': 87173, 'hiking their price': 396419, 'their price please': 874412, 'price please report': 675886, 'please report them': 660390, 'report them food': 712357, 'them food price': 875699, 'food price increase': 315949, 'price increase by': 674767, 'increase by shop': 432710, 'by shop to': 153982, 'shop to exploit': 760943, 'to exploit the': 905498, 'exploit the current': 292364, 'current situation is': 221364, 'situation is illegal': 772350, 'is illegal there': 448670, 'illegal there is': 416247, 'of food you': 583827, 'food you can': 317707, 'you can report': 1017770, 'can report the': 159452, 'report the store': 712347, 'the store by': 867989, 'store by calling': 806831, 'by calling 0203738600': 152053, 'calling 0203738600 coronacrisis': 156506, 'danish': 225838, 'incompetent': 432524, 'dk': 248845, 'socdem': 779412, 'danish physician': 225847, 'physician nurse': 655541, 'nurse other': 577444, 'other healthcare': 620349, 'healthcare provider': 387245, 'provider denied': 686711, 'denied test': 236965, 'test because': 838939, 'no fucking': 564322, 'fucking test': 340030, 'test kit': 839045, 'kit left': 475588, 'left and': 485377, 'what next': 981926, 'next oh': 561475, 'oh running': 596438, 'sanitizer other': 735502, 'other protective': 620785, 'equipment fuck': 279736, 'fuck incompetent': 339581, 'incompetent dk': 432531, 'dk socdem': 248846, 'socdem govt': 779413, 'danish physician nurse': 225848, 'physician nurse other': 655542, 'nurse other healthcare': 577446, 'other healthcare provider': 620350, 'healthcare provider denied': 387248, 'provider denied test': 686712, 'denied test because': 236966, 'test because there': 838941, 'because there is': 119669, 'is no fucking': 449933, 'no fucking test': 564324, 'fucking test kit': 340031, 'test kit left': 839062, 'kit left and': 475589, 'left and what': 485384, 'and what next': 75477, 'what next oh': 981930, 'next oh running': 561476, 'oh running out': 596439, 'out of mask': 626783, 'hand sanitizer other': 375519, 'sanitizer other protective': 735503, 'other protective equipment': 620786, 'protective equipment fuck': 685727, 'equipment fuck incompetent': 279737, 'fuck incompetent dk': 339582, 'incompetent dk socdem': 432532, 'dk socdem govt': 248847, 'kyiv': 478085, 'ukraine': 939036, 'disinfect': 245537, 'billa': 130742, 'welldone': 978809, 'seen while': 747354, 'while shopping': 987259, 'in kyiv': 424557, 'kyiv ukraine': 478088, 'ukraine disinfect': 939039, 'disinfect your': 245586, 'hand because': 374824, 'because billa': 118954, 'billa grocery': 130743, 'store care': 806872, 'care about': 163780, 'health handsanitizer': 386475, 'handsanitizer welldone': 376677, 'seen while shopping': 747355, 'while shopping in': 987266, 'shopping in kyiv': 762975, 'in kyiv ukraine': 424558, 'kyiv ukraine disinfect': 478089, 'ukraine disinfect your': 939040, 'disinfect your hand': 245588, 'your hand because': 1024170, 'hand because billa': 374825, 'because billa grocery': 118955, 'billa grocery store': 130744, 'grocery store care': 365268, 'store care about': 806873, 'care about your': 163811, 'about your health': 27001, 'your health handsanitizer': 1024275, 'health handsanitizer welldone': 386476, 'perhaps': 651560, 'immigrant have': 417222, 'long been': 501339, 'been critical': 120901, 'critical part': 218624, 'economy perhaps': 268140, 'perhaps now': 651621, 'ever did': 285270, 'did you': 240920, 'know 16': 476202, '16 of': 4144, 'all healthcare': 43076, 'are immigrant': 87310, 'immigrant 16': 417208, 'grocery and': 364223, 'worker 18': 1006182, '18 of': 4564, 'delivery worker': 234763, 'worker 19': 1006185, 'immigrant have long': 417223, 'have long been': 381365, 'long been critical': 501341, 'been critical part': 120903, 'critical part of': 218625, 'part of our': 642370, 'of our economy': 587455, 'our economy perhaps': 622850, 'economy perhaps now': 268141, 'perhaps now more': 651622, 'than ever did': 840578, 'ever did you': 285271, 'did you know': 240936, 'you know 16': 1019477, 'know 16 of': 476203, '16 of all': 4145, 'of all healthcare': 579947, 'all healthcare worker': 43081, 'healthcare worker are': 387343, 'worker are immigrant': 1006397, 'are immigrant 16': 87311, 'immigrant 16 of': 417209, '16 of grocery': 4146, 'of grocery and': 584343, 'grocery and supermarket': 364262, 'supermarket worker 18': 823978, 'worker 18 of': 1006184, '18 of food': 4565, 'of food delivery': 583675, 'food delivery worker': 314163, 'delivery worker 19': 234765, 'valley': 951946, 'arroyo': 94057, 'crossing': 219073, 'good morning': 357399, 'morning valley': 541523, 'valley amp': 951949, 'amp beyond': 53454, 'beyond found': 129176, 'found arroyo': 330164, 'arroyo crossing': 94058, 'crossing 1st': 219074, '1st time': 12813, 'time have': 896890, 'have seen': 382415, 'seen hand': 747052, 'sanitizer since': 735743, 'since in': 770657, 'stock here': 802233, 'good morning valley': 357414, 'morning valley amp': 541524, 'valley amp beyond': 951950, 'amp beyond found': 53455, 'beyond found arroyo': 129177, 'found arroyo crossing': 330165, 'arroyo crossing 1st': 94059, 'crossing 1st time': 219075, '1st time have': 12814, 'time have seen': 896897, 'have seen hand': 382427, 'seen hand sanitizer': 747053, 'hand sanitizer since': 375590, 'sanitizer since in': 735744, 'since in stock': 770658, 'in stock here': 428307, 'stock here in': 802234, 'receiving': 703741, 'visitor': 959575, 'important notice': 418900, 'notice not': 573318, 'not receiving': 571255, 'receiving any': 703745, 'any visitor': 80024, 'visitor from': 959591, 'from now': 336604, 'now till': 576155, 'till end': 896011, 'of april': 580320, 'april contact': 83558, 'me via': 523881, 'via social': 956245, 'medium stock': 527295, 'stock your': 803222, 'your house': 1024407, 'other necessary': 620560, 'necessary thing': 554105, 'thing many': 884578, 'many people': 514484, 'still believe': 800282, 'believe this': 126381, 'is joke': 449105, 'important notice not': 418903, 'notice not receiving': 573321, 'not receiving any': 571256, 'receiving any visitor': 703746, 'any visitor from': 80025, 'visitor from now': 959592, 'from now till': 336615, 'now till end': 576156, 'till end of': 896013, 'end of april': 275890, 'of april contact': 580327, 'april contact me': 83559, 'contact me via': 200145, 'me via social': 523882, 'via social medium': 956246, 'social medium stock': 779885, 'medium stock your': 527296, 'stock your house': 803229, 'your house with': 1024423, 'house with food': 406686, 'with food and': 998476, 'and other necessary': 68368, 'other necessary thing': 620565, 'necessary thing many': 554106, 'thing many people': 884579, 'many people still': 514534, 'people still believe': 649583, 'still believe this': 800285, 'believe this covid': 126382, '19 is joke': 7997, 'sadly': 729325, 'love asian': 504607, 'asian market': 95303, 'market sadly': 517026, 'sadly the': 729361, 'one that': 607171, 'we purchased': 972786, 'purchased most': 689789, 'our item': 623590, 'item ha': 463304, 'ha already': 369499, 'already closed': 47262, 'closed not': 183244, 'not related': 571293, 'could buy': 208977, 'buy so': 149189, 'much in': 545006, 'and produce': 69549, 'produce at': 680193, 'very low': 955335, 'price if': 674613, 'there wa': 879218, 'wa another': 961550, 'another such': 77881, 'such market': 816625, 'market in': 516545, 'we love asian': 972306, 'love asian market': 504609, 'asian market sadly': 95306, 'market sadly the': 517027, 'sadly the one': 729363, 'the one that': 862227, 'one that we': 607191, 'that we purchased': 847388, 'we purchased most': 972787, 'purchased most of': 689790, 'most of our': 542554, 'of our item': 587494, 'our item ha': 623592, 'item ha already': 463305, 'ha already closed': 369502, 'already closed not': 47263, 'closed not related': 183245, 'not related to': 571294, '19 we could': 11923, 'we could buy': 971199, 'could buy so': 208982, 'buy so much': 149191, 'so much in': 777787, 'much in term': 545011, 'term of food': 838219, 'food and produce': 313315, 'and produce at': 69551, 'produce at very': 680200, 'at very low': 101448, 'very low price': 955343, 'low price if': 505518, 'price if there': 674620, 'if there wa': 415078, 'there wa another': 879227, 'wa another such': 961552, 'another such market': 77882, 'such market in': 816626, 'ketchup': 473171, 'slowthespread': 774649, 'social isolation': 779819, 'isolation mean': 455345, 'mean self': 524633, 'quarantine included': 692291, 'included buying': 431676, 'last bottle': 480119, 'bottle of': 136272, 'of ketchup': 585607, 'ketchup at': 473172, 'morning and': 541151, 'and working': 75889, 'for 11': 318634, '11 hour': 2532, 'hour socialdistancing': 405942, 'socialdistancing slowthespread': 780691, 'slowthespread quaratinelife': 774650, 'quaratinelife panicbuying': 693137, 'day of social': 228102, 'of social isolation': 589839, 'social isolation mean': 779822, 'isolation mean self': 455346, 'mean self quarantine': 524634, 'self quarantine included': 747860, 'quarantine included buying': 692292, 'included buying the': 431677, 'buying the last': 151169, 'the last bottle': 858993, 'last bottle of': 480120, 'bottle of ketchup': 136289, 'of ketchup at': 585608, 'ketchup at the': 473173, 'grocery store this': 365858, 'store this morning': 810700, 'this morning and': 888938, 'morning and working': 541171, 'and working from': 75894, 'from home for': 335862, 'home for 11': 401215, 'for 11 hour': 318636, '11 hour socialdistancing': 2536, 'hour socialdistancing slowthespread': 405943, 'socialdistancing slowthespread quaratinelife': 780692, 'slowthespread quaratinelife panicbuying': 774651, 'robocalls': 724760, 'scheme': 741544, 'annoying': 77359, 'unwanted': 944044, 'hang': 376924, 'are using': 91406, 'using illegal': 950516, 'illegal robocalls': 416236, 'robocalls to': 724773, 'sell everything': 748700, 'everything from': 287796, 'from fraudulent': 335558, 'fraudulent treatment': 331477, 'treatment to': 931156, 'home scheme': 402016, 'scheme annoying': 741549, 'annoying these': 77371, 'these unwanted': 880923, 'unwanted call': 944047, 'call may': 155983, 'be do': 114505, 'not press': 571081, 'press any': 671006, 'any number': 79526, 'number just': 576903, 'just hang': 468920, 'hang up': 376946, 'up learn': 945299, 'about coronavirus': 25026, 'coronavirus scam': 206709, 'scammer are using': 740549, 'are using illegal': 91424, 'using illegal robocalls': 950517, 'illegal robocalls to': 416237, 'robocalls to sell': 724777, 'to sell everything': 914149, 'sell everything from': 748702, 'everything from fraudulent': 287801, 'from fraudulent treatment': 335559, 'fraudulent treatment to': 331478, 'treatment to work': 931158, 'from home scheme': 335900, 'home scheme annoying': 402017, 'scheme annoying these': 741550, 'annoying these unwanted': 77372, 'these unwanted call': 880924, 'unwanted call may': 944048, 'call may be': 155984, 'may be do': 520974, 'be do not': 114506, 'do not press': 249805, 'not press any': 571082, 'press any number': 671007, 'any number just': 79527, 'number just hang': 576904, 'just hang up': 468921, 'hang up learn': 376947, 'up learn more': 945300, 'more about coronavirus': 538501, 'about coronavirus scam': 25031, 'lupe': 506802, 'supplemental': 824436, 'alternative': 49201, 'you lupe': 1019739, 'lupe hand': 506803, 'are supplemental': 90657, 'supplemental health': 824437, 'health habit': 386473, 'habit but': 372578, 'not an': 568188, 'an alternative': 55256, 'alternative to': 49266, 'to washing': 918354, 'washing hand': 967664, 'thank you lupe': 841768, 'you lupe hand': 1019740, 'lupe hand sanitizers': 506804, 'sanitizers are supplemental': 736220, 'are supplemental health': 90658, 'supplemental health habit': 824438, 'health habit but': 386474, 'habit but not': 372579, 'but not an': 146525, 'not an alternative': 568191, 'an alternative to': 55260, 'alternative to washing': 49277, 'to washing hand': 918355, 'there nothing': 878867, 'nothing wrong': 573231, 'wrong with': 1013148, 'with it': 999056, 'it consumer': 457279, 'consumer want': 199464, 'to implement': 908166, 'implement reasonable': 418414, 'price change': 673104, 'change to': 172337, 'to respond': 913377, 'to demand': 904132, 'demand so': 236239, 'that when': 847477, 'when need': 983761, 'need high': 555008, 'demand item': 235761, 'item they': 463721, 'available donate': 104325, 'to charity': 902649, 'charity if': 173641, 'only is there': 610661, 'is there nothing': 453021, 'there nothing wrong': 878877, 'nothing wrong with': 573236, 'wrong with it': 1013155, 'with it consumer': 999065, 'it consumer want': 457295, 'consumer want to': 199467, 'want to implement': 966053, 'to implement reasonable': 908176, 'implement reasonable price': 418415, 'reasonable price change': 703114, 'price change to': 673110, 'change to respond': 172359, 'to respond to': 913382, 'respond to demand': 715318, 'to demand so': 904157, 'demand so that': 236244, 'so that when': 778405, 'that when need': 847489, 'when need high': 983762, 'need high demand': 555009, 'high demand item': 395015, 'demand item they': 235764, 'item they are': 463722, 'they are available': 881207, 'are available donate': 84707, 'available donate the': 104326, 'donate the proceeds': 254237, 'proceeds to charity': 679861, 'to charity if': 902658, 'charity if you': 173643, 'if you like': 415465, 'overturning': 631663, 'prescribing': 670483, 'gluten': 353117, 'buying would': 151387, 'would the': 1012317, 'government consider': 359988, 'consider overturning': 195064, 'overturning the': 631664, 'medical council': 526119, 'council decision': 209975, 'decision on': 231067, 'on prescribing': 602890, 'prescribing gluten': 670490, 'gluten free': 353120, 'free food': 331824, 'and re': 69960, 're prescribing': 699296, 'prescribing all': 670484, 'all gluten': 42935, 'food people': 315829, 'people need': 648814, 'need gluten': 554910, 'for medical': 323375, 'medical condition': 526107, 'condition coronacrisis': 193435, 'panic buying would': 637971, 'buying would the': 151389, 'would the government': 1012320, 'the government consider': 856517, 'government consider overturning': 359989, 'consider overturning the': 195065, 'overturning the medical': 631665, 'the medical council': 860395, 'medical council decision': 526120, 'council decision on': 209976, 'decision on prescribing': 231071, 'on prescribing gluten': 602891, 'prescribing gluten free': 670491, 'gluten free food': 353124, 'free food and': 331825, 'food and re': 313323, 'and re prescribing': 69963, 're prescribing all': 699297, 'prescribing all gluten': 670485, 'all gluten free': 42936, 'free food people': 331833, 'food people need': 315836, 'people need gluten': 648824, 'need gluten free': 554911, 'free food for': 331829, 'food for medical': 314550, 'for medical condition': 323377, 'medical condition coronacrisis': 526110, 'karma': 470936, 'dear world': 229920, 'world did': 1009480, 'on enough': 600566, 'food africa': 313034, 'africa this': 35145, 'is call': 446343, 'call karma': 155967, 'karma corona': 470943, 'dear world did': 229921, 'world did you': 1009482, 'did you stock': 240949, 'up on enough': 945553, 'on enough food': 600567, 'enough food africa': 277381, 'food africa this': 313035, 'africa this is': 35146, 'this is call': 888200, 'is call karma': 446344, 'call karma corona': 155968, 'none': 566541, 'posting': 666636, '70': 21705, 'are told': 91122, 'told that': 923693, 'that paracetamol': 845650, 'paracetamol should': 641268, 'be taken': 117497, 'taken if': 833006, 'we show': 973310, '19 all': 4892, 'all supermarket': 44539, 'empty my': 274957, 'local large': 498138, 'large pharmacy': 479742, 'have none': 381672, 'none in': 566574, 'the on': 862162, 'on line': 601851, 'line store': 493429, 'also posting': 48676, 'posting out': 666677, 'stock notice': 802503, 'notice what': 573402, 'we over': 972671, 'over 70': 629900, '70 do': 21757, 'we are told': 970741, 'are told that': 91128, 'told that paracetamol': 923696, 'that paracetamol should': 845651, 'paracetamol should be': 641269, 'should be taken': 765742, 'be taken if': 117501, 'taken if we': 833007, 'if we show': 415309, 'we show symptom': 973311, 'show symptom of': 767167, 'symptom of covid': 830882, 'covid 19 all': 212609, '19 all supermarket': 4904, 'all supermarket shelf': 44551, 'are empty my': 86158, 'empty my local': 274958, 'my local large': 549125, 'local large pharmacy': 498139, 'large pharmacy have': 479743, 'pharmacy have none': 654336, 'have none in': 381674, 'none in stock': 566578, 'in stock the': 428335, 'stock the on': 802936, 'the on line': 862172, 'on line store': 601861, 'line store are': 493430, 'store are also': 806456, 'are also posting': 84473, 'also posting out': 48677, 'posting out of': 666678, 'of stock notice': 590177, 'stock notice what': 802504, 'notice what can': 573403, 'what can we': 981183, 'can we over': 160185, 'we over 70': 972672, 'over 70 do': 629905, 'curfew': 220854, 'rooah': 725820, 'top item': 925594, 'item to': 463737, 'buy ahead': 148281, 'ahead of': 39171, 'lockdown most': 499671, 'most city': 542175, 'city prepare': 179329, 'quarantine curfew': 692120, 'curfew you': 220954, 'to stockpile': 915465, 'stockpile everything': 803741, 'in panic': 426471, 'major shelf': 509457, 'shelf to': 757693, 'check would': 174723, 'be food': 114893, 'food medicine': 315438, 'medicine toiletry': 526915, 'toiletry and': 923406, 'and cleaning': 59944, 'supply socialdistancing': 825871, 'socialdistancing rooah': 780649, 'top item to': 925595, 'item to buy': 463741, 'to buy ahead': 902174, 'buy ahead of': 148282, 'ahead of covid': 39177, '19 lockdown most': 8406, 'lockdown most city': 499672, 'most city prepare': 542176, 'city prepare for': 179330, 'prepare for the': 670086, 'for the self': 326675, 'the self quarantine': 866655, 'self quarantine curfew': 747851, 'quarantine curfew you': 692121, 'curfew you do': 220955, 'need to stockpile': 556089, 'to stockpile everything': 915469, 'stockpile everything in': 803742, 'everything in panic': 287853, 'in panic the': 426493, 'panic the major': 638684, 'the major shelf': 859934, 'major shelf to': 509458, 'shelf to check': 757697, 'to check would': 902699, 'check would be': 174724, 'would be food': 1011584, 'be food medicine': 114896, 'food medicine toiletry': 315448, 'medicine toiletry and': 526916, 'toiletry and cleaning': 923407, 'and cleaning supply': 59949, 'cleaning supply socialdistancing': 181084, 'supply socialdistancing rooah': 825872, 'sopakco': 785960, 'mre': 544415, 'ration': 697621, 'letsfightcorona': 487257, 'sopakco case': 785961, 'of 12': 579336, '12 mre': 2908, 'mre meal': 544421, 'meal ready': 524265, 'eat emergency': 265901, 'food ration': 316113, 'ration in': 697697, 'stock texas': 802911, 'texas letsfightcorona': 839799, 'sopakco case of': 785962, 'case of 12': 165883, 'of 12 mre': 579341, '12 mre meal': 2909, 'mre meal ready': 544422, 'meal ready to': 524266, 'ready to eat': 700955, 'to eat emergency': 904880, 'eat emergency food': 265902, 'emergency food ration': 272709, 'food ration in': 316118, 'ration in stock': 697700, 'in stock texas': 428332, 'stock texas letsfightcorona': 802912, 'ignite': 415730, 'artificial': 94514, 'scarcity': 740817, 'ultimately': 939138, 'though food': 892811, 'in plenty': 426807, 'plenty lockdown': 660933, 'for non': 323897, 'non specific': 566498, 'specific period': 788236, 'period could': 651739, 'could ignite': 209313, 'ignite panic': 415735, 'buying hoarding': 150486, 'hoarding artificial': 399198, 'artificial scarcity': 94529, 'scarcity and': 740819, 'and ultimately': 74580, 'ultimately to': 939160, 'to food': 906073, 'food inflation': 315035, 'inflation at': 437142, 'at large': 99405, 'even though food': 284706, 'though food supply': 892813, 'food supply in': 316961, 'supply in plenty': 825406, 'in plenty lockdown': 426808, 'plenty lockdown for': 660934, 'lockdown for non': 499397, 'for non specific': 323905, 'non specific period': 566499, 'specific period could': 788237, 'period could ignite': 651741, 'could ignite panic': 209314, 'ignite panic buying': 415736, 'panic buying hoarding': 637762, 'buying hoarding artificial': 150487, 'hoarding artificial scarcity': 399199, 'artificial scarcity and': 94530, 'scarcity and ultimately': 740822, 'and ultimately to': 74584, 'ultimately to food': 939161, 'to food inflation': 906083, 'food inflation at': 315037, 'inflation at large': 437145, 'insurer': 440866, 'substantial': 816044, 'recognize': 704630, '19 canada': 5619, 'canada insurer': 160474, 'insurer are': 440869, 'are reducing': 89528, 'reducing insurance': 706294, 'cost and': 207851, 'providing substantial': 687101, 'substantial relief': 816057, 'relief to': 709472, 'to driver': 904754, 'driver across': 259387, 'country they': 211141, 'they recognize': 883170, 'recognize that': 704648, 'that driver': 843628, 'driver are': 259429, 'using their': 950721, 'their car': 872720, 'car le': 163161, 'le and': 482842, 'and their': 73668, 'their insurance': 873671, 'insurance premium': 440793, 'premium should': 669972, 'should reflect': 766390, 'covid 19 canada': 212754, '19 canada insurer': 5622, 'canada insurer are': 160475, 'insurer are reducing': 440871, 'are reducing insurance': 89530, 'reducing insurance cost': 706295, 'insurance cost and': 440707, 'cost and providing': 207864, 'and providing substantial': 69714, 'providing substantial relief': 687102, 'substantial relief to': 816058, 'relief to driver': 709477, 'to driver across': 904755, 'driver across the': 259389, 'the country they': 852164, 'country they recognize': 211144, 'they recognize that': 883171, 'recognize that driver': 704649, 'that driver are': 843629, 'driver are using': 259445, 'are using their': 91434, 'using their car': 950722, 'their car le': 872726, 'car le and': 163162, 'le and their': 482847, 'and their insurance': 73695, 'their insurance premium': 873673, 'insurance premium should': 440795, 'premium should reflect': 669973, 'should reflect this': 766392, 'scriptco': 742861, 'wholesale': 990412, 'scriptco member': 742862, 'member get': 528092, 'get their': 348319, 'their medication': 873936, 'medication delivered': 526638, 'delivered right': 233385, 'their door': 873063, 'at wholesale': 101557, 'wholesale price': 990466, 'price there': 676881, 'is simply': 451926, 'simply no': 770244, 'no better': 563693, 'better solution': 128472, 'solution while': 782132, 'you get': 1018755, 'pandemic please': 636194, 'share any': 754926, 'any of': 79530, 'our post': 624401, 'post thank': 666341, 'scriptco member get': 742863, 'member get their': 528094, 'get their medication': 348338, 'their medication delivered': 873937, 'medication delivered right': 526639, 'delivered right to': 233387, 'right to their': 722357, 'to their door': 917225, 'their door and': 873065, 'door and at': 255504, 'and at wholesale': 58490, 'at wholesale price': 101558, 'wholesale price there': 990480, 'price there is': 676882, 'there is simply': 878624, 'is simply no': 451930, 'simply no better': 770245, 'no better solution': 563694, 'better solution while': 128474, 'solution while you': 782133, 'while you get': 987589, 'you get through': 1018800, 'through this pandemic': 894836, 'this pandemic please': 889416, 'pandemic please share': 636198, 'please share any': 660480, 'share any of': 754927, 'any of our': 79535, 'of our post': 587542, 'our post thank': 624404, 'post thank you': 666342, '10k': 2326, 'taxi': 835140, 'del': 232618, 'uk where': 938883, 'where covid': 984800, 'ha killed': 371078, 'killed over': 474612, 'over 10k': 629772, '10k people': 2334, 'people people': 649090, 'people classified': 647473, 'classified key': 180357, 'still allowed': 800181, 'work they': 1005839, 'they include': 882451, 'include supermarket': 431630, 'staff taxi': 792915, 'taxi driver': 835150, 'driver del': 259498, 'del driver': 232623, 'driver teacher': 259775, 'teacher social': 835503, 'social worker': 780017, 'in uk where': 430400, 'uk where covid': 938884, 'where covid 19': 984802, '19 ha killed': 7358, 'ha killed over': 371084, 'killed over 10k': 474613, 'over 10k people': 629773, '10k people people': 2335, 'people people classified': 649091, 'people classified key': 647474, 'classified key worker': 180358, 'key worker are': 473467, 'worker are still': 1006428, 'are still allowed': 90390, 'still allowed to': 800183, 'allowed to go': 46232, 'to work they': 918791, 'work they include': 1005843, 'they include supermarket': 882453, 'include supermarket staff': 431631, 'supermarket staff taxi': 822894, 'staff taxi driver': 792916, 'taxi driver del': 835156, 'driver del driver': 259499, 'del driver teacher': 232624, 'driver teacher social': 259779, 'teacher social worker': 835504, 'gather': 344365, 'employee all': 273532, 'market who': 517346, 'who swear': 989724, 'swear that': 830040, 'they cannot': 881696, 'cannot get': 161866, 'get covid': 346825, 'place when': 657828, 'when hundred': 983581, 'people gather': 648026, 'gather together': 344404, 'together everyday': 920776, 'everyday well': 286653, 'well think': 978685, 'be test': 117552, 'supermarket employee all': 820107, 'employee all the': 273536, 'all the customer': 44708, 'the customer who': 852739, 'who are at': 988102, 'the market who': 860177, 'market who swear': 517347, 'who swear that': 989725, 'swear that they': 830041, 'that they cannot': 846927, 'they cannot get': 881708, 'cannot get covid': 161881, 'get covid 19': 346826, '19 in place': 7776, 'in place when': 426775, 'place when hundred': 657829, 'when hundred of': 983582, 'hundred of people': 411006, 'of people gather': 587916, 'people gather together': 648030, 'gather together everyday': 344405, 'together everyday well': 920777, 'everyday well think': 286654, 'well think everyone': 978686, 'think everyone should': 885234, 'everyone should be': 287371, 'should be test': 765746, 'justify': 470462, 'armas': 92928, 'amazon': 50824, 'pricing': 677913, 'if company': 413969, 'company choose': 190548, 'to raise': 912715, 'raise price': 695904, 'they must': 882698, 'to justify': 908735, 'justify the': 470465, 'price price': 675989, 'gouging during': 359307, 'pandemic the': 636661, 'of armas': 580367, 'armas amazon': 92929, 'amazon inc': 50988, 'inc by': 431270, 'by via': 154663, 'via legal': 956055, 'legal pricing': 485885, 'if company choose': 413972, 'company choose to': 190549, 'choose to raise': 177913, 'to raise price': 912731, 'raise price during': 695914, 'price during the': 673633, 'the pandemic they': 863124, 'pandemic they must': 636736, 'they must be': 882700, 'must be able': 546490, 'able to justify': 24495, 'to justify the': 908736, 'justify the current': 470466, 'the current price': 852652, 'current price price': 221317, 'price price gouging': 675991, 'price gouging during': 674276, 'gouging during the': 359313, '19 pandemic the': 9495, 'pandemic the case': 636666, 'the case of': 850463, 'case of armas': 165889, 'of armas amazon': 580368, 'armas amazon inc': 92930, 'amazon inc by': 50989, 'inc by via': 431271, 'by via legal': 154664, 'via legal pricing': 956056, 'stress': 813287, 'triggering': 931932, 'heck': 388692, 'please check': 659769, 'check in': 174470, 'in with': 430936, 'your eating': 1023612, 'eating disorder': 266193, 'disorder friend': 246077, 'can all': 157419, 'food stress': 316872, 'stress is': 813346, 'is triggering': 453356, 'triggering heck': 931939, 'heck we': 388706, 'we already': 970388, 'already have': 47414, 'have stress': 382806, 'stress around': 813306, 'around food': 93285, 'food we': 317518, 'to feel': 905744, 'feel more': 302777, 'please check in': 659773, 'check in with': 174475, 'in with your': 430950, 'with your eating': 1002195, 'your eating disorder': 1023613, 'eating disorder friend': 266194, 'disorder friend if': 246078, 'you can all': 1017617, 'can all this': 157443, 'all this panic': 45123, 'buying food stress': 150335, 'food stress is': 316873, 'stress is triggering': 813349, 'is triggering heck': 453357, 'triggering heck we': 931940, 'heck we already': 388707, 'we already have': 970391, 'already have stress': 47433, 'have stress around': 382807, 'stress around food': 813307, 'around food we': 93287, 'food we do': 317525, 'we do not': 971340, 'need to feel': 555933, 'to feel more': 905751, 'hearing': 388182, 'apart': 81221, 'elsewhere': 272007, 'still seeing': 801153, 'seeing and': 746223, 'and hearing': 64412, 'hearing about': 388183, 'about way': 26847, 'way way': 970160, 'way too': 970124, 'too many': 924880, 'people not': 648861, 'not social': 571632, 'distancing it': 247262, 'together it': 920842, 'foot apart': 318339, 'apart whether': 81377, 'whether at': 985489, 'or outside': 616474, 'outside or': 629522, 'or elsewhere': 615138, 'elsewhere please': 272023, 'fight covid': 304704, 'still seeing and': 801154, 'seeing and hearing': 746224, 'and hearing about': 64413, 'hearing about way': 388188, 'about way way': 26850, 'way way too': 970163, 'way too many': 970129, 'too many people': 924892, 'many people not': 514521, 'people not social': 648874, 'not social distancing': 571634, 'social distancing it': 779641, 'distancing it not': 247265, 'it not the': 459927, 'not the time': 572036, 'time to get': 897991, 'to get together': 906625, 'get together it': 348511, 'together it the': 920845, 'it the time': 461582, 'time to stay': 898075, 'to stay six': 915316, 'six foot apart': 772635, 'foot apart whether': 318350, 'apart whether at': 81378, 'whether at the': 985491, 'store or outside': 809357, 'or outside or': 616476, 'outside or elsewhere': 629523, 'or elsewhere please': 615139, 'elsewhere please help': 272024, 'please help fight': 660065, 'help fight covid': 389706, 'fight covid 19': 304705, 'thro': 894227, 'escalate': 280255, 'trust any': 934238, 'these company': 879781, 'company saying': 191051, 'saying they': 739721, 'get thro': 348426, 'thro this': 894228, 'this we': 891141, 'be seeing': 117030, 'seeing price': 746427, 'price escalate': 673695, 'escalate on': 280258, 'everything once': 287948, 'once this': 605748, 'over whose': 630932, 'whose going': 990641, 'protect from': 684839, 'from that': 337574, 'not trust any': 572284, 'trust any of': 934239, 'any of these': 79540, 'of these company': 591819, 'these company saying': 879792, 'company saying they': 191052, 'saying they want': 739730, 'want to help': 966047, 'help get thro': 389803, 'get thro this': 348427, 'thro this we': 894229, 'this we ll': 891150, 'we ll be': 972234, 'll be seeing': 496623, 'be seeing price': 117032, 'seeing price escalate': 746428, 'price escalate on': 673696, 'escalate on everything': 280259, 'on everything once': 600650, 'everything once this': 287949, 'once this is': 605751, 'this is over': 888352, 'is over whose': 450746, 'over whose going': 630933, 'whose going to': 990642, 'going to protect': 355676, 'to protect from': 912308, 'protect from that': 684846, 'digest': 242444, '22': 15148, 'bogus': 134013, 'snopes': 776382, 'lupus': 506811, 'arthritis': 94211, 'hyped': 412282, 'chiropractor': 177548, 'naturopath': 553010, 'consumer health': 197717, 'health digest': 386379, 'digest 22': 242449, '22 20': 15161, '20 ftc': 13071, 'ftc coronavirus': 339393, 'scam warning': 740462, 'warning bogus': 967099, 'bogus covid': 134016, '19 vaccine': 11715, 'vaccine kit': 951730, 'kit offer': 475604, 'offer stopped': 594810, 'stopped snopes': 805757, 'snopes covid': 776383, '19 fact': 6925, 'checking hub': 174823, 'hub lupus': 409814, 'lupus arthritis': 506814, 'arthritis patient': 94216, 'patient face': 644169, 'face shortage': 294749, 'drug hyped': 260978, 'hyped for': 412283, '19 chiropractor': 5804, 'chiropractor naturopath': 177549, 'naturopath covid': 553011, '19 claim': 5825, 'consumer health digest': 197725, 'health digest 22': 386382, 'digest 22 20': 242450, '22 20 ftc': 15163, '20 ftc coronavirus': 13072, 'ftc coronavirus scam': 339394, 'coronavirus scam warning': 206724, 'scam warning bogus': 740463, 'warning bogus covid': 967100, 'bogus covid 19': 134017, 'covid 19 vaccine': 214015, '19 vaccine kit': 11722, 'vaccine kit offer': 951731, 'kit offer stopped': 475605, 'offer stopped snopes': 594811, 'stopped snopes covid': 805758, 'snopes covid 19': 776384, 'covid 19 fact': 213068, '19 fact checking': 6926, 'fact checking hub': 295696, 'checking hub lupus': 174824, 'hub lupus arthritis': 409815, 'lupus arthritis patient': 506815, 'arthritis patient face': 94217, 'patient face shortage': 644170, 'face shortage of': 294751, 'shortage of drug': 765108, 'of drug hyped': 582849, 'drug hyped for': 260979, 'hyped for covid': 412284, 'covid 19 chiropractor': 212797, '19 chiropractor naturopath': 5805, 'chiropractor naturopath covid': 177550, 'naturopath covid 19': 553012, 'covid 19 claim': 212805, 'plz': 661799, 'decimated': 230975, 'inflated': 437007, 'tax': 834922, 'blow': 133300, 'keg': 472689, 'packed': 633584, 'gunpowder': 368793, 'plz understand': 661845, 'understand that': 940723, '19 only': 8995, 'only decimated': 610323, 'decimated the': 230991, 'wa falsely': 962108, 'falsely inflated': 297470, 'inflated to': 437093, 'to begin': 901707, 'begin with': 123602, 'with tax': 1001125, 'tax cut': 834952, 'cut buy': 223257, 'buy back': 148392, 'back artificial': 106879, 'artificial inflation': 94519, 'inflation of': 437209, 'stock price': 802700, 'price you': 677687, 'use spark': 949609, 'spark to': 787562, 'to blow': 901867, 'blow up': 133363, 'up keg': 945275, 'keg that': 472690, 'that isn': 844680, 'isn already': 454427, 'already packed': 47555, 'packed with': 633663, 'with gunpowder': 998712, 'plz understand that': 661846, 'understand that covid': 940726, 'covid 19 only': 213520, '19 only decimated': 8996, 'only decimated the': 610324, 'decimated the market': 230993, 'the market because': 860092, 'market because it': 516093, 'because it wa': 119212, 'it wa falsely': 462110, 'wa falsely inflated': 962109, 'falsely inflated to': 297471, 'inflated to begin': 437094, 'to begin with': 901719, 'begin with tax': 123604, 'with tax cut': 1001126, 'tax cut buy': 834954, 'cut buy back': 223258, 'buy back artificial': 148393, 'back artificial inflation': 106880, 'artificial inflation of': 94520, 'inflation of stock': 437211, 'of stock price': 590187, 'stock price you': 802763, 'price you can': 677691, 'can use spark': 160102, 'use spark to': 949610, 'spark to blow': 787563, 'to blow up': 901870, 'blow up keg': 133364, 'up keg that': 945276, 'keg that isn': 472691, 'that isn already': 844681, 'isn already packed': 454428, 'already packed with': 47556, 'packed with gunpowder': 633666, 'mainstream': 508903, 'republican': 713014, 'suggesting': 817595, 'sacrificed': 729121, 'gop': 358237, 'notdying4wallstreet': 572684, 'that mainstream': 844985, 'mainstream republican': 508917, 'republican including': 713039, 'including the': 432176, 'the president': 864251, 'the united': 870416, 'state are': 795381, 'are seriously': 89991, 'seriously suggesting': 751739, 'suggesting that': 817610, 'people life': 648630, 'life should': 489040, 'be sacrificed': 116933, 'sacrificed for': 729124, 'the greater': 856742, 'greater good': 363184, 'good of': 357482, 'economy tell': 268255, 'you everything': 1018470, 'the priority': 864472, 'priority of': 678612, 'the gop': 856460, 'gop notdying4wallstreet': 358261, 'fact that mainstream': 295802, 'that mainstream republican': 844986, 'mainstream republican including': 508918, 'republican including the': 713040, 'including the president': 432187, 'the president of': 864266, 'president of the': 670874, 'of the united': 591573, 'the united state': 870420, 'united state are': 942204, 'state are seriously': 795390, 'are seriously suggesting': 89993, 'seriously suggesting that': 751740, 'suggesting that people': 817611, 'that people life': 845699, 'people life should': 648638, 'life should be': 489041, 'should be sacrificed': 765720, 'be sacrificed for': 116934, 'sacrificed for the': 729125, 'for the greater': 326466, 'the greater good': 856745, 'greater good of': 363185, 'good of the': 357484, 'the economy tell': 854024, 'economy tell you': 268256, 'tell you everything': 837146, 'you everything you': 1018473, 'everything you need': 288137, 'know about the': 476225, 'about the priority': 26489, 'the priority of': 864474, 'priority of the': 678613, 'of the gop': 591070, 'the gop notdying4wallstreet': 856467, 'globe': 352435, 'checklist': 174868, 'cover': 212177, 'retailer across': 718943, 'the globe': 856343, 'globe have': 352466, 'been affected': 120619, 'you read': 1020808, 'read this': 700605, 'this your': 891619, 'your store': 1025958, 'store may': 808918, 'may already': 520911, 'already be': 47210, 'be closed': 114117, 'closed to': 183392, 'public here': 688089, 'here is': 393210, 'is checklist': 446506, 'checklist to': 174875, 'you cover': 1018110, 'cover all': 212186, 'the base': 849293, 'base you': 111481, 'you close': 1017975, 'retailer across the': 718944, 'across the globe': 29499, 'the globe have': 856357, 'globe have been': 352467, 'have been affected': 379462, 'been affected by': 120621, 'affected by the': 34325, 'by the covid': 154298, '19 virus and': 11784, 'virus and you': 957950, 'and you read': 76042, 'you read this': 1020812, 'read this your': 700630, 'this your store': 891624, 'your store may': 1025975, 'store may already': 808919, 'may already be': 520912, 'already be closed': 47211, 'be closed to': 114135, 'closed to the': 183401, 'the public here': 864819, 'public here is': 688090, 'here is checklist': 393218, 'is checklist to': 446507, 'checklist to help': 174876, 'to help you': 907670, 'help you cover': 390961, 'you cover all': 1018111, 'cover all the': 212188, 'all the base': 44668, 'the base you': 849296, 'base you close': 111482, 'powerful': 667768, 'harmful': 378439, 'looking for': 502847, 'better way': 128596, 'clean california': 180489, 'california baby': 155466, 'baby make': 106656, 'make powerful': 510342, 'powerful plant': 667797, 'plant based': 658617, 'sanitizer that': 735855, 'kill 99': 474328, '99 of': 23863, 'of germ': 584092, 'germ without': 346187, 'without harmful': 1002705, 'harmful chemical': 378440, 'chemical sanitizer': 175383, 'looking for better': 502852, 'for better way': 319664, 'better way to': 128601, 'way to keep': 970043, 'to keep your': 908882, 'keep your hand': 472268, 'your hand clean': 1024177, 'hand clean california': 374864, 'clean california baby': 180490, 'california baby make': 155467, 'baby make powerful': 106657, 'make powerful plant': 510343, 'powerful plant based': 667798, 'plant based hand': 658622, 'hand sanitizer that': 375617, 'sanitizer that kill': 735862, 'that kill 99': 844820, 'kill 99 of': 474331, '99 of germ': 23866, 'of germ without': 584104, 'germ without harmful': 346188, 'without harmful chemical': 1002706, 'harmful chemical sanitizer': 378441, 'nsw': 576704, 'stepped': 799764, 'the nsw': 861945, 'nsw government': 576707, 'ha stepped': 372060, 'stepped in': 799772, 'help restock': 390449, 'restock supermarket': 716913, 'and end': 62110, 'end the': 275971, 'frenzy 7news': 332773, 'the nsw government': 861946, 'nsw government ha': 576708, 'government ha stepped': 360168, 'ha stepped in': 372061, 'stepped in to': 799776, 'in to help': 430115, 'to help restock': 907611, 'help restock supermarket': 390450, 'restock supermarket shelf': 716914, 'supermarket shelf and': 822426, 'shelf and end': 756729, 'and end the': 62113, 'end the panic': 275977, 'buying frenzy 7news': 150376, 'ltr': 506399, 'dettol': 239516, 'kanikakapoor': 470791, 'need mass': 555215, 'of sanitizer': 589285, 'sanitizer now': 735429, 'now 25': 573904, '25 ltr': 15902, 'ltr dettol': 506400, 'dettol water': 239534, 'water best': 968914, 'best hand': 127714, 'sanitizer kanikakapoor': 735245, 'we need mass': 972513, 'need mass production': 555217, 'mass production of': 519840, 'production of sanitizer': 682155, 'of sanitizer now': 589296, 'sanitizer now 25': 735431, 'now 25 ltr': 573905, '25 ltr dettol': 15903, 'ltr dettol water': 506401, 'dettol water best': 239535, 'water best hand': 968915, 'best hand sanitizer': 127715, 'hand sanitizer kanikakapoor': 375464, 'whatever': 982740, 'joe kitchen': 466425, 'kitchen covid': 475705, '19 meal': 8594, 'meal message': 524213, 'message this': 529439, 'is today': 453258, 'today lunch': 919844, 'lunch that': 506744, 'that put': 845911, 'put together': 690930, 'together with': 921039, 'with whatever': 1002078, 'whatever we': 982813, 'could find': 209176, 'joe kitchen covid': 466426, 'kitchen covid 19': 475706, 'covid 19 meal': 213415, '19 meal message': 8595, 'meal message this': 524214, 'message this is': 529440, 'this is today': 888431, 'is today lunch': 453261, 'today lunch that': 919845, 'lunch that put': 506745, 'that put together': 845915, 'put together with': 690950, 'together with whatever': 921046, 'with whatever we': 1002080, 'whatever we could': 982814, 'we could find': 971205, 'could find at': 209177, 'banning': 110617, 'event': 284935, 'handedly': 376094, 'undo': 941014, 'sneezing': 776304, 'centipede': 169353, 'all can': 42280, 'can say': 159510, 'say is': 738814, 'is we': 453799, 'are banning': 84758, 'banning event': 110624, 'event pub': 285057, 'pub etc': 687703, 'etc for': 282540, 'for contamination': 320316, 'contamination risk': 200731, 'risk but': 723426, 'but went': 147774, 'today and': 919191, 'will single': 994866, 'single handedly': 771307, 'handedly undo': 376099, 'undo everything': 941015, 'wa horror': 962336, 'horror story': 404211, 'story people': 812102, 'people sneezing': 649487, 'sneezing in': 776317, 'in all': 420162, 'all aisle': 41977, 'aisle queue': 40351, 'for till': 327186, 'till wa': 896125, 'wa like': 962539, 'like human': 490466, 'human centipede': 410455, 'all can say': 42285, 'can say is': 159516, 'say is we': 738826, 'is we are': 453800, 'we are banning': 970488, 'are banning event': 84759, 'banning event pub': 110625, 'event pub etc': 285058, 'pub etc for': 687705, 'etc for contamination': 282542, 'for contamination risk': 320318, 'contamination risk but': 200732, 'risk but went': 723433, 'but went to': 147776, 'went to supermarket': 979193, 'to supermarket today': 915852, 'supermarket today and': 823433, 'today and that': 919227, 'and that will': 73222, 'that will single': 847609, 'will single handedly': 994867, 'single handedly undo': 771310, 'handedly undo everything': 376100, 'undo everything it': 941016, 'everything it wa': 287895, 'it wa horror': 462127, 'wa horror story': 962337, 'horror story people': 404213, 'story people sneezing': 812103, 'people sneezing in': 649488, 'sneezing in all': 776318, 'in all aisle': 420163, 'all aisle queue': 41978, 'aisle queue for': 40352, 'queue for till': 693934, 'for till wa': 327187, 'till wa like': 896126, 'wa like human': 962545, 'like human centipede': 490467, 'install': 439982, 'divine': 248648, 'paper really': 640663, 'really seriously': 702568, 'seriously don': 751586, 'don understand': 254002, 'understand why': 940812, 'why this': 991467, 'isn thing': 454726, 'europe or': 283487, 'the when': 871432, 'when get': 983457, 'get place': 347819, 'place of': 657598, 'my own': 549631, 'own this': 632265, 'thing ll': 884557, 'll install': 496853, 'install divine': 439990, 'divine 19': 248649, '19 coronavid19': 6082, 'coronavid19 toiletpaper': 205396, 'toilet paper really': 921415, 'paper really seriously': 640665, 'really seriously don': 702569, 'seriously don understand': 751588, 'don understand why': 254011, 'understand why this': 940825, 'why this isn': 991472, 'this isn thing': 888494, 'isn thing in': 454727, 'thing in europe': 884431, 'in europe or': 422647, 'europe or the': 283488, 'or the when': 617408, 'the when get': 871435, 'when get place': 983460, 'get place of': 347821, 'place of my': 657602, 'of my own': 586802, 'my own this': 549660, 'own this is': 632266, 'is the first': 452802, 'the first thing': 855356, 'first thing ll': 309076, 'thing ll install': 884559, 'll install divine': 496854, 'install divine 19': 439991, 'divine 19 coronavid19': 248650, '19 coronavid19 toiletpaper': 6085, 'coronavid19 toiletpaper toiletpaperpanic': 205398, 'trumppressbriefing': 934127, 'pressconference': 671096, 'dude': 261574, 'people is': 648513, 'is happy': 448294, 'happy for': 377617, 'this gas': 887674, 'price trumppressbriefing': 677136, 'trumppressbriefing pressconference': 934131, 'pressconference dude': 671097, 'dude there': 261612, 'no where': 565882, 'where to': 985300, 'drive everything': 259051, 'closed wtf': 183449, 'people is happy': 648517, 'is happy for': 448295, 'happy for this': 377620, 'for this gas': 327029, 'this gas price': 887675, 'gas price trumppressbriefing': 344044, 'price trumppressbriefing pressconference': 677137, 'trumppressbriefing pressconference dude': 934132, 'pressconference dude there': 671098, 'dude there no': 261613, 'there no where': 878849, 'no where to': 565888, 'where to drive': 985303, 'to drive everything': 904735, 'drive everything is': 259052, 'everything is closed': 287867, 'is closed wtf': 446596, 'shopper are': 761380, 'being warned': 126045, 'warned not': 967011, 'wear glove': 974332, 'shopper are being': 761383, 'are being warned': 84941, 'being warned not': 126047, 'warned not to': 967012, 'not to wear': 572208, 'to wear glove': 918431, 'wear glove at': 974334, 'environmental': 279180, 'sustainability': 829754, 'oilprice': 597602, 'finance': 306144, 'good news': 357439, 'for environmental': 321077, 'environmental sustainability': 279200, 'sustainability oil': 829775, 'oil company': 596683, 'company cut': 190581, 'cut spending': 223545, 'spending plan': 788954, 'plan by': 658083, 'over due': 630165, 'to impacting': 908161, 'impacting price': 418250, 'price oilprice': 675634, 'oilprice oil': 597621, 'oil finance': 596794, 'good news for': 357444, 'news for environmental': 560432, 'for environmental sustainability': 321079, 'environmental sustainability oil': 279201, 'sustainability oil company': 829776, 'oil company cut': 596688, 'company cut spending': 190582, 'cut spending plan': 223550, 'spending plan by': 788955, 'plan by over': 658087, 'by over due': 153499, 'over due to': 630166, 'due to impacting': 261824, 'to impacting price': 908162, 'impacting price oilprice': 418251, 'price oilprice oil': 675635, 'oilprice oil finance': 597622, 'salute': 732846, 'today we': 920467, 'we salute': 973122, 'salute the': 732858, 'hero on': 394051, 'at you': 101652, 'you put': 1020502, 'put the': 690851, 'the word': 871696, 'word super': 1004581, 'super in': 818525, 'socialdistancing staysafe': 780748, 'today we salute': 920482, 'we salute the': 973123, 'salute the hero': 732859, 'the hero on': 857296, 'hero on the': 394052, 'front line at': 338560, 'line at you': 492996, 'at you put': 101659, 'you put the': 1020510, 'put the word': 690872, 'the word super': 871719, 'word super in': 1004582, 'super in supermarket': 818526, 'in supermarket socialdistancing': 428672, 'supermarket socialdistancing staysafe': 822760, 'aldi': 41246, 'sensibly': 750675, 'reluctant': 709618, 'expose': 292780, 'possible': 665559, 'preferred': 669804, 'swi': 830311, 'think aldi': 885126, 'aldi will': 41315, 'soon have': 785736, 'to consider': 903218, 'consider bringing': 194960, 'in online': 426158, 'and home': 64675, 'delivery shopper': 234491, 'shopper sensibly': 761678, 'sensibly are': 750681, 'are reluctant': 89566, 'reluctant to': 709619, 'to expose': 905510, 'expose themselves': 292812, 'themselves to': 876906, 'to possible': 911900, 'possible covid': 665614, '19 aldi': 4884, 'aldi is': 41275, 'my preferred': 549833, 'preferred grocery': 669807, 'grocery retailer': 364899, 'retailer but': 719052, 'but have': 145866, 'have swi': 382882, 'think aldi will': 885127, 'aldi will soon': 41316, 'will soon have': 994895, 'soon have to': 785738, 'have to consider': 383185, 'to consider bringing': 903221, 'consider bringing in': 194961, 'bringing in online': 140167, 'in online shopping': 426174, 'shopping and home': 761992, 'and home delivery': 64679, 'home delivery shopper': 401046, 'delivery shopper sensibly': 234492, 'shopper sensibly are': 761679, 'sensibly are reluctant': 750682, 'are reluctant to': 89567, 'reluctant to expose': 709621, 'to expose themselves': 905516, 'expose themselves to': 292814, 'themselves to possible': 876914, 'to possible covid': 911901, 'possible covid 19': 665615, 'covid 19 aldi': 212606, '19 aldi is': 4885, 'aldi is my': 41277, 'is my preferred': 449807, 'my preferred grocery': 549834, 'preferred grocery retailer': 669808, 'grocery retailer but': 364901, 'retailer but have': 719053, 'but have swi': 145884, 'manipulation': 513229, 'uncalled': 939549, 'smack': 774766, 'bastard': 112457, 'manipulation of': 513230, 'of fuel': 583992, 'current covid': 221146, 'is uncalled': 453439, 'uncalled for': 939550, 'for and': 319313, 'and smack': 71770, 'smack of': 774767, 'of greed': 584323, 'greed by': 363368, 'oil producing': 597351, 'producing nation': 680789, 'nation greedy': 552196, 'greedy bastard': 363484, 'manipulation of fuel': 513231, 'of fuel price': 583995, 'fuel price in': 340239, 'price in the': 674741, 'in the current': 429117, 'the current covid': 852622, 'current covid 19': 221147, '19 crisis is': 6267, 'crisis is uncalled': 217596, 'is uncalled for': 453440, 'uncalled for and': 939551, 'for and smack': 319341, 'and smack of': 71771, 'smack of greed': 774768, 'of greed by': 584324, 'greed by the': 363370, 'by the oil': 154396, 'the oil producing': 862117, 'oil producing nation': 597353, 'producing nation greedy': 680792, 'nation greedy bastard': 552197, 'frontliners': 338881, 'minorites': 533638, 'highly': 396030, 'lt': 506361, 'hello we': 389245, 're currently': 698488, 'currently doing': 221516, 'doing charity': 252328, 'charity art': 173572, 'art for': 94156, 'our frontliners': 623204, 'frontliners and': 338882, 'and minorites': 67056, 'minorites because': 533639, 'guy want': 369207, 'have commission': 380037, 'commission from': 188828, 'me or': 523278, 'friend just': 333687, 'just check': 468467, 'below rt': 126723, 'rt is': 726777, 'is highly': 448462, 'highly appreciated': 396037, 'appreciated please': 82832, 'please support': 660610, 'support lt': 826637, 'lt lt': 506378, 'hello we re': 389248, 'we re currently': 972851, 're currently doing': 698490, 'currently doing charity': 221518, 'doing charity art': 252329, 'charity art for': 173573, 'art for our': 94157, 'for our frontliners': 324246, 'our frontliners and': 623205, 'frontliners and minorites': 338883, 'and minorites because': 67057, 'minorites because of': 533640, 'because of the': 119413, 'if you guy': 415448, 'you guy want': 1018978, 'guy want to': 369208, 'want to have': 966045, 'to have commission': 907218, 'have commission from': 380038, 'commission from me': 188829, 'from me or': 336398, 'me or any': 523280, 'or any of': 614351, 'any of my': 79534, 'my friend just': 548441, 'friend just check': 333688, 'just check out': 468470, 'out our price': 626987, 'our price and': 624437, 'and the link': 73452, 'link below rt': 493804, 'below rt is': 126724, 'rt is highly': 726778, 'is highly appreciated': 448463, 'highly appreciated please': 396038, 'appreciated please support': 82833, 'please support lt': 660615, 'support lt lt': 826638, 'plentiful': 660886, 'spam': 787375, 'jan': 464453, 'storey': 811754, 'beaumaris': 118649, 'letter': 487281, 'news hoarder': 560515, 'hoarder there': 399122, 'are plentiful': 89111, 'plentiful supply': 660899, 'of spam': 589959, 'spam and': 787377, 'and easter': 61861, 'easter egg': 265415, 'egg on': 269938, 'on supermarket': 603779, 'shelf jan': 757260, 'jan storey': 464470, 'storey beaumaris': 811755, 'beaumaris letter': 118650, 'letter 19': 487282, 'good news hoarder': 357448, 'news hoarder there': 560516, 'hoarder there are': 399123, 'there are plentiful': 878147, 'are plentiful supply': 89113, 'plentiful supply of': 660901, 'supply of spam': 825648, 'of spam and': 589960, 'spam and easter': 787378, 'and easter egg': 61862, 'easter egg on': 265424, 'egg on supermarket': 269939, 'on supermarket shelf': 603806, 'supermarket shelf jan': 822486, 'shelf jan storey': 757261, 'jan storey beaumaris': 464471, 'storey beaumaris letter': 811756, 'beaumaris letter 19': 118651, 'these bastard': 879675, 'bastard were': 112514, 'were finally': 979627, 'finally charged': 305956, 'these bastard were': 879679, 'bastard were finally': 112515, 'were finally charged': 979628, 'william': 995422, 'hillis': 396503, 'shiller': 758594, 'responding': 715555, 'marketinsights': 517787, 'realestatetrends': 701570, 'market expert': 516360, 'expert william': 292031, 'william hillis': 995430, 'hillis share': 396504, 'share insight': 755062, 'into recent': 442930, 'recent real': 703966, 'estate trend': 282196, 'trend including': 931371, 'including analysis': 431876, 'analysis of': 57059, 'case shiller': 166009, 'shiller home': 758595, 'price index': 674807, 'index data': 434178, 'data from': 226223, 'from january': 336141, 'january and': 464645, 'and how': 64798, 'is responding': 451471, 'responding to': 715575, '19 marketinsights': 8566, 'marketinsights realestatetrends': 517788, 'market expert william': 516362, 'expert william hillis': 292032, 'william hillis share': 995431, 'hillis share insight': 396505, 'share insight into': 755063, 'insight into recent': 439583, 'into recent real': 442931, 'recent real estate': 703967, 'real estate trend': 701165, 'estate trend including': 282197, 'trend including analysis': 931372, 'including analysis of': 431877, 'analysis of case': 57060, 'of case shiller': 581175, 'case shiller home': 166010, 'shiller home price': 758596, 'home price index': 401909, 'price index data': 674809, 'index data from': 434180, 'data from january': 226233, 'from january and': 336143, 'january and how': 464648, 'and how the': 64838, 'how the market': 408845, 'the market is': 860125, 'market is responding': 516639, 'is responding to': 451472, 'responding to covid': 715583, 'covid 19 marketinsights': 213405, '19 marketinsights realestatetrends': 8567, 'mobile': 534933, 'van': 952283, 'jalna': 464345, '19india': 12525, 'mobile van': 535034, 'van making': 952302, 'making round': 511312, 'round in': 726329, 'in jalna': 424344, 'jalna helping': 464346, 'helping staff': 391474, 'staff protect': 792780, 'from infection': 336053, 'infection 19india': 436704, '19india 19': 12526, 'mobile van making': 535036, 'van making round': 952303, 'making round in': 511313, 'round in jalna': 726330, 'in jalna helping': 424345, 'jalna helping staff': 464348, 'helping staff protect': 391475, 'staff protect themselves': 792781, 'protect themselves from': 685018, 'themselves from infection': 876812, 'from infection 19india': 336054, 'infection 19india 19': 436705, 'austrian': 103603, 'limiting': 492799, 'deemed': 231813, 'austrian supermarket': 103604, 'running short': 728061, 'mask customer': 518556, 'customer complain': 222263, 'complain that': 191866, 'that staff': 846449, 'are even': 86273, 'even limiting': 284300, 'limiting the': 492874, 'supply to': 825995, 'to older': 910890, 'older people': 598639, 'are deemed': 85717, 'deemed to': 231835, 'be more': 115961, 'more at': 538658, 'risk from': 723568, 'austrian supermarket are': 103605, 'are running short': 89771, 'running short of': 728063, 'short of mask': 764660, 'of mask customer': 586263, 'mask customer complain': 518557, 'customer complain that': 222264, 'complain that staff': 191867, 'that staff are': 846450, 'staff are even': 792187, 'are even limiting': 86276, 'even limiting the': 284301, 'limiting the supply': 492881, 'the supply to': 868964, 'supply to older': 826020, 'to older people': 910891, 'older people who': 598667, 'people who are': 650263, 'who are deemed': 988129, 'are deemed to': 85720, 'deemed to be': 231836, 'to be more': 901390, 'be more at': 115964, 'more at risk': 538670, 'at risk from': 100361, 'risk from covid': 723571, 'covid 19 supermarket': 213889, 'true then': 933188, 'then surely': 877589, 'surely protective': 827925, 'for household': 322409, 'household would': 406998, 'would of': 1012087, 'of been': 580615, 'been better': 120737, 'than government': 840706, 'government letter': 360311, 'letter sent': 487345, 'sent in': 750761, 'post stayhomesavelives': 666322, 'is true then': 453370, 'true then surely': 933191, 'then surely protective': 877590, 'surely protective face': 827926, 'face mask for': 294540, 'mask for household': 518681, 'for household would': 322413, 'household would of': 407000, 'would of been': 1012088, 'of been better': 580616, 'been better than': 120740, 'better than government': 128523, 'than government letter': 840707, 'government letter sent': 360314, 'letter sent in': 487346, 'sent in the': 750763, 'in the post': 429463, 'the post stayhomesavelives': 864097, 'overstretched': 631560, 'with america': 997184, 'america grocery': 51537, 'worker on': 1007482, 'pandemic some': 636508, 'some local': 783208, 'local government': 498020, 'government are': 359894, 'protect overstretched': 684912, 'overstretched employee': 631561, 'with america grocery': 997186, 'america grocery worker': 51539, 'grocery worker on': 366184, 'worker on the': 1007491, 'line of the': 493315, 'of the pandemic': 591316, 'the pandemic some': 863102, 'pandemic some local': 636511, 'some local government': 783211, 'local government are': 498021, 'government are working': 359908, 'are working to': 91724, 'working to help': 1008990, 'to help protect': 907595, 'help protect overstretched': 390375, 'protect overstretched employee': 684913, 'charlotte': 173761, 'covid19uk': 214407, 'what it': 981743, 'it like': 459347, 'like working': 491840, 'supermarket during': 820045, 'pandemic here': 635618, 'here charlotte': 392859, 'charlotte experience': 173768, 'experience via': 291523, 'via covid19uk': 955896, 'what it like': 981753, 'it like working': 459389, 'like working in': 491841, 'working in supermarket': 1008733, 'in supermarket during': 428588, 'supermarket during the': 820059, 'the pandemic here': 862987, 'pandemic here charlotte': 635621, 'here charlotte experience': 392860, 'charlotte experience via': 173769, 'experience via covid19uk': 291524, 'practising': 668782, 'simple': 769978, 'easyfundraising': 265811, 'all practising': 44013, 'practising socialdistancing': 668787, 'socialdistancing more': 780533, 'our shopping': 624758, 'done online': 254960, 'online really': 608854, 'really simple': 702595, 'simple and': 769985, 'and free': 63269, 'free way': 332307, 'support during': 826460, 'time is': 897050, 'to sign': 914632, 'sign up': 769245, 'to easyfundraising': 904859, 'easyfundraising thank': 265820, 'are all practising': 84336, 'all practising socialdistancing': 44015, 'practising socialdistancing more': 668789, 'socialdistancing more of': 780534, 'more of our': 539878, 'of our shopping': 587562, 'our shopping will': 624769, 'shopping will be': 764410, 'will be done': 992438, 'be done online': 114563, 'done online really': 254966, 'online really simple': 608855, 'really simple and': 702596, 'simple and free': 769987, 'and free way': 63279, 'free way to': 332308, 'way to support': 970109, 'to support during': 915922, 'support during this': 826462, 'difficult time is': 242294, 'time is to': 897069, 'is to sign': 453241, 'to sign up': 914640, 'sign up to': 769257, 'up to easyfundraising': 946371, 'to easyfundraising thank': 904862, 'easyfundraising thank you': 265821, 'taj': 831853, 'mlas': 534746, 'negotiated': 556919, 'mp': 544236, 'been planned': 121664, 'planned when': 658478, 'when trump': 984349, 'trump wa': 933955, 'wa shown': 963221, 'shown taj': 767613, 'taj and': 831854, 'and mlas': 67088, 'mlas price': 534747, 'price being': 672890, 'being negotiated': 125450, 'negotiated in': 556927, 'in mp': 425483, 'mp went': 544283, 'went beyond': 978969, 'beyond china': 129145, 'china more': 176831, 'should have been': 766062, 'have been planned': 379631, 'been planned when': 121665, 'planned when trump': 658479, 'when trump wa': 984351, 'trump wa shown': 933959, 'wa shown taj': 963222, 'shown taj and': 767614, 'taj and mlas': 831855, 'and mlas price': 67089, 'mlas price being': 534748, 'price being negotiated': 672897, 'being negotiated in': 125451, 'negotiated in mp': 556928, 'in mp went': 425484, 'mp went beyond': 544284, 'went beyond china': 978970, 'beyond china more': 129146, 'china more than': 176832, 'more than month': 540650, 'opposition': 613819, 'profiteering': 682994, 'india opposition': 434557, 'opposition urge': 613837, 'urge gov': 948187, 'gov to': 359713, 'stop profiteering': 804941, 'profiteering on': 683073, 'price provide': 676020, 'provide relief': 686448, 'relief amid': 709269, 'india opposition urge': 434558, 'opposition urge gov': 613838, 'urge gov to': 948188, 'gov to stop': 359717, 'to stop profiteering': 915560, 'stop profiteering on': 804944, 'profiteering on oil': 683078, 'oil price provide': 597223, 'price provide relief': 676023, 'provide relief amid': 686449, 'relief amid covid': 709270, 'feature': 301528, 'poetry': 662365, 'dalitso': 225109, 'ndlovu': 553424, 'bride': 139605, 'vain': 951851, 'sacrifice': 729079, 'elia': 271402, 'muonde': 546123, 'ink': 438735, 'oracle': 617897, 'poet': 662362, 'and feature': 62745, 'feature poetry': 301558, 'poetry by': 662368, 'by dalitso': 152289, 'dalitso ndlovu': 225110, 'ndlovu bride': 553425, 'bride price': 139608, 'and vain': 74836, 'vain sacrifice': 951852, 'sacrifice elia': 729083, 'elia muonde': 271403, 'muonde no': 546124, 'no poetry': 565128, 'poetry for': 662372, '19 ink': 7887, 'ink oracle': 438749, 'oracle by': 617898, 'by poet': 153605, 'this week and': 891186, 'week and feature': 975910, 'and feature poetry': 62746, 'feature poetry by': 301559, 'poetry by dalitso': 662369, 'by dalitso ndlovu': 152290, 'dalitso ndlovu bride': 225111, 'ndlovu bride price': 553426, 'bride price and': 139609, 'price and vain': 672575, 'and vain sacrifice': 74837, 'vain sacrifice elia': 951853, 'sacrifice elia muonde': 729084, 'elia muonde no': 271404, 'muonde no poetry': 546125, 'no poetry for': 565129, 'poetry for covid': 662373, 'covid 19 ink': 213274, '19 ink oracle': 7888, 'ink oracle by': 438750, 'oracle by poet': 617899, 'founder': 330519, 'joining': 466962, 'startupsvscovid19': 795144, 'ama': 50587, 'moderating': 535365, 'post world': 666416, 'world what': 1010158, 'what would': 982640, 'be the': 117590, 'future of': 342386, 'consumer startup': 199126, 'startup to': 795135, 'to address': 900081, 'the above': 848243, 'above founder': 27068, 'founder would': 330566, 'be joining': 115573, 'joining live': 466975, 'live for': 495816, 'our next': 624057, 'next startupsvscovid19': 561560, 'startupsvscovid19 ama': 795145, 'ama with': 50588, 'with moderating': 999531, 'moderating the': 535368, 'the session': 866742, 'session register': 753302, 'register now': 707586, 'in post world': 426865, 'post world what': 666420, 'world what would': 1010160, 'what would be': 982641, 'would be the': 1011659, 'be the future': 117615, 'the future of': 856084, 'future of consumer': 342392, 'of consumer startup': 581774, 'consumer startup to': 199130, 'startup to address': 795136, 'to address the': 900093, 'address the above': 32032, 'the above founder': 848246, 'above founder would': 27069, 'founder would be': 330567, 'would be joining': 1011611, 'be joining live': 115574, 'joining live for': 466976, 'live for our': 495818, 'for our next': 324277, 'our next startupsvscovid19': 624062, 'next startupsvscovid19 ama': 561561, 'startupsvscovid19 ama with': 795146, 'ama with moderating': 50589, 'with moderating the': 999532, 'moderating the session': 535369, 'the session register': 866744, 'session register now': 753303, 'waynerogers': 970220, 'hilarious': 396433, 'diaper': 240351, 'wereallinthistogether': 980369, 'toiletpaperpanic toiletpaperapocalypse': 923269, 'toiletpaperapocalypse toiletpapercrisis': 922937, 'toiletpapercrisis and': 923006, 'and waynerogers': 75273, 'waynerogers were': 970221, 'were hilarious': 979748, 'hilarious together': 396446, 'together seriously': 920932, 'seriously stoppanicbuying': 751735, 'stoppanicbuying there': 805651, 'are other': 88843, 'other people': 620653, 'people that': 649748, 'feed their': 302386, 'and diaper': 61310, 'diaper their': 240369, 'their baby': 872539, 'baby wereallinthistogether': 106728, 'toiletpaperpanic toiletpaperapocalypse toiletpapercrisis': 923276, 'toiletpaperapocalypse toiletpapercrisis and': 922939, 'toiletpapercrisis and waynerogers': 923007, 'and waynerogers were': 75274, 'waynerogers were hilarious': 970222, 'were hilarious together': 979749, 'hilarious together seriously': 396447, 'together seriously stoppanicbuying': 920933, 'seriously stoppanicbuying there': 751736, 'stoppanicbuying there are': 805652, 'there are other': 878139, 'are other people': 88846, 'other people that': 620688, 'people that need': 649772, 'that need to': 845315, 'need to feed': 555932, 'to feed their': 905733, 'feed their family': 302389, 'their family and': 873245, 'family and diaper': 297585, 'and diaper their': 61313, 'diaper their baby': 240370, 'their baby wereallinthistogether': 872542, '10 for': 1429, 'for large': 322885, 'large roll': 479780, 'roll expose': 725292, 'expose these': 292815, 'these greedy': 880071, 'greedy asshole': 363478, 'asshole rt': 96552, '10 for large': 1432, 'for large roll': 322889, 'large roll expose': 479781, 'roll expose these': 725293, 'expose these greedy': 292816, 'these greedy asshole': 880072, 'greedy asshole rt': 363480, 'substitute': 816080, 'sorting': 786181, 'no10': 565953, 'armyforfooddistribution': 93060, 'shopping not': 763348, 'working vulnerable': 1009032, 'vulnerable group': 960980, 'group but': 366625, 'but most': 146414, 'of shopping': 589657, 'shopping didn': 762476, 'didn arrive': 240986, 'arrive no': 93923, 'no substitute': 565601, 'substitute need': 816094, 'need sorting': 555621, 'sorting trying': 786192, 'keep away': 471331, 'from shop': 337261, 'shop sainsburys': 760734, 'sainsburys no10': 731776, 'no10 armyforfooddistribution': 565954, 'online shopping not': 609199, 'shopping not working': 763356, 'not working vulnerable': 572555, 'working vulnerable group': 1009033, 'vulnerable group but': 960982, 'group but most': 366626, 'but most of': 146417, 'most of shopping': 542558, 'of shopping didn': 589662, 'shopping didn arrive': 762477, 'didn arrive no': 240987, 'arrive no substitute': 93924, 'no substitute need': 565602, 'substitute need sorting': 816095, 'need sorting trying': 555623, 'sorting trying to': 786193, 'trying to keep': 934822, 'to keep away': 908757, 'keep away from': 471332, 'away from shop': 105908, 'from shop sainsburys': 337265, 'shop sainsburys no10': 760735, 'sainsburys no10 armyforfooddistribution': 731777, 'seriousness': 751808, 'arduous': 84091, 'that where': 847503, 'where all': 984718, 'the went': 871383, 'went in': 979037, 'all seriousness': 44278, 'seriousness hope': 751811, 'stay healthy': 796890, 'healthy and': 387515, 'in these': 429827, 'these arduous': 879603, 'arduous time': 84092, 'time stock': 897763, 'up but': 944515, 'but don': 145586, 'don go': 253560, 'go crazy': 353430, 'crazy like': 215346, 'like here': 490425, 'here leave': 393292, 'leave some': 484930, 'some for': 782885, 'so that where': 778406, 'that where all': 847504, 'where all the': 984719, 'all the went': 44981, 'the went in': 871384, 'went in all': 979038, 'in all seriousness': 420180, 'all seriousness hope': 44280, 'seriousness hope you': 751812, 'hope you all': 403788, 'you all stay': 1016908, 'all stay healthy': 44443, 'stay healthy and': 796891, 'healthy and safe': 387529, 'and safe in': 70716, 'safe in these': 729771, 'in these arduous': 429828, 'these arduous time': 879604, 'arduous time stock': 84093, 'time stock up': 897765, 'stock up but': 803064, 'up but don': 944519, 'but don go': 145590, 'don go crazy': 253565, 'go crazy like': 353433, 'crazy like here': 215347, 'like here leave': 490428, 'here leave some': 393293, 'leave some for': 484933, 'some for your': 782894, 'for your neighbor': 328178, 'thier': 884022, 'stopit': 805527, 'houston': 407183, 'this shit': 890073, 'is never': 449877, 'never going': 558026, 'to end': 905070, 'end just': 275856, 'just went': 470272, 'week there': 977023, 'there were': 879303, 'were child': 979440, 'child everywhere': 176080, 'everywhere elderly': 288193, 'were standing': 980162, 'in group': 423451, 'group talking': 366902, 'talking people': 834030, 'were touching': 980286, 'touching thier': 926739, 'thier face': 884025, 'face stopit': 294780, 'stopit houston': 805529, 'houston ffs': 407197, 'this shit is': 890082, 'shit is never': 759145, 'is never going': 449880, 'never going to': 558027, 'going to end': 355585, 'to end just': 905081, 'end just went': 275859, 'just went to': 470280, 'store for the': 807843, 'first time in': 309101, 'time in week': 897018, 'in week there': 430772, 'week there were': 977028, 'there were child': 879313, 'were child everywhere': 979441, 'child everywhere elderly': 176081, 'everywhere elderly people': 288194, 'elderly people were': 270841, 'people were standing': 650222, 'were standing in': 980163, 'standing in group': 793775, 'in group talking': 423458, 'group talking people': 366903, 'talking people were': 834031, 'people were touching': 650227, 'were touching thier': 980288, 'touching thier face': 926740, 'thier face stopit': 884026, 'face stopit houston': 294781, 'stopit houston ffs': 805530, '30am': 17403, 'sky': 773180, 'forecaster': 328891, 'morning my': 541362, 'my business': 547580, 'business update': 144588, 'update for': 946956, 'for live': 323018, 'live at': 495729, 'at 30am': 97603, '30am on': 17421, 'on smart': 603509, 'smart speaker': 775426, 'speaker app': 787740, 'app sky': 81758, 'sky box': 773185, 'box or': 137138, 'or digital': 614970, 'digital and': 242505, 'and welcome': 75390, 'welcome back': 977872, 'back lockdown': 107141, 'lockdown to': 500044, 'to cost': 903592, 'cost billion': 207882, 'billion day': 130796, 'day say': 228307, 'say forecaster': 738649, 'forecaster uk': 328894, 'uk consumer': 938259, 'confidence slump': 193950, 'slump say': 774705, 'good morning my': 357410, 'morning my business': 541363, 'my business update': 547583, 'business update for': 144591, 'update for live': 946958, 'for live at': 323019, 'live at 30am': 495731, 'at 30am on': 97606, '30am on smart': 17422, 'on smart speaker': 603511, 'smart speaker app': 775427, 'speaker app sky': 787741, 'app sky box': 81759, 'sky box or': 773186, 'box or digital': 137139, 'or digital and': 614971, 'digital and welcome': 242507, 'and welcome back': 75391, 'welcome back lockdown': 977873, 'back lockdown to': 107142, 'lockdown to cost': 500052, 'to cost billion': 903594, 'cost billion day': 207883, 'billion day say': 130797, 'day say forecaster': 228309, 'say forecaster uk': 738650, 'forecaster uk consumer': 328895, 'uk consumer confidence': 938262, 'consumer confidence slump': 196920, 'confidence slump say': 193951, 'doomsday': 255467, 'hnvx2ysb6b': 398727, 'today also': 919173, 'also bought': 47970, 'bought pasta': 136680, 'and egg': 61971, 'egg with': 270039, 'problem feel': 679518, 'feel for': 302621, 'you living': 1019636, 'uk with': 938906, 'the doomsday': 853553, 'doomsday preppers': 255474, 'preppers hnvx2ysb6b': 670403, 'ton of toilet': 924289, 'paper in my': 640327, 'local supermarket today': 498602, 'supermarket today also': 823431, 'today also bought': 919174, 'also bought pasta': 47971, 'bought pasta and': 136681, 'pasta and egg': 643679, 'and egg with': 61983, 'egg with no': 270042, 'with no problem': 999779, 'no problem feel': 565192, 'problem feel for': 679519, 'feel for you': 302627, 'for you living': 328073, 'you living in': 1019637, 'living in the': 496393, 'the uk with': 870304, 'uk with all': 938907, 'with all the': 997164, 'all the doomsday': 44723, 'the doomsday preppers': 853555, 'doomsday preppers hnvx2ysb6b': 255476, 'sainsbury': 731641, 'halt': 374418, 'sainsbury becomes': 731650, 'becomes first': 120220, 'first major': 308777, 'major retailer': 509439, 'retailer to': 719374, 'sell big': 748645, 'issue halt': 455778, 'halt street': 374458, 'street sale': 813091, 'sale find': 732218, 'find out': 307131, 'sainsbury becomes first': 731651, 'becomes first major': 120221, 'first major retailer': 308778, 'major retailer to': 509443, 'retailer to sell': 719384, 'to sell big': 914142, 'sell big issue': 748646, 'big issue halt': 129836, 'issue halt street': 455779, 'halt street sale': 374459, 'street sale find': 813092, 'sale find out': 732219, 'find out more': 307145, 'out more here': 626569, 'accuracy': 28876, 'flattening': 310141, 'flattenthecurve': 310154, 'artist to': 94622, 'to create': 903696, 'create product': 215722, 'product of': 681449, 'of entertainment': 583131, 'entertainment for': 278561, 'our consumer': 622515, 'consumer based': 196406, 'based society': 111744, 'society watch': 781356, 'watch there': 968562, 'be major': 115878, 'major bounce': 509243, 'back in': 107074, 'economy after': 267612, 'after we': 36513, 'better control': 128243, 'and accuracy': 57603, 'accuracy in': 28879, 'in tracking': 430258, 'and flattening': 62961, 'flattening the': 310146, 'curve flattenthecurve': 221858, 'the time for': 869588, 'time for artist': 896691, 'for artist to': 319496, 'artist to create': 94623, 'to create product': 903721, 'create product of': 215723, 'product of entertainment': 681452, 'of entertainment for': 583133, 'entertainment for our': 278562, 'for our consumer': 324220, 'our consumer based': 622522, 'consumer based society': 196409, 'based society watch': 111745, 'society watch there': 781357, 'watch there be': 968563, 'there be major': 878214, 'be major bounce': 115879, 'major bounce back': 509244, 'bounce back in': 136805, 'back in our': 107093, 'in our economy': 426284, 'our economy after': 622838, 'economy after we': 267613, 'after we have': 36517, 'we have better': 971766, 'have better control': 379775, 'better control and': 128244, 'control and accuracy': 201962, 'and accuracy in': 57604, 'accuracy in tracking': 28880, 'in tracking the': 430259, 'tracking the virus': 928374, 'the virus and': 870796, 'virus and flattening': 957924, 'and flattening the': 62962, 'flattening the curve': 310147, 'the curve flattenthecurve': 852692, 'skilled': 772992, 'upon': 947614, 'funny how': 341738, 'how all': 407331, 'low skilled': 505615, 'skilled job': 772995, 'job cleaner': 465741, 'driver retail': 259725, 'retail assistant': 717851, 'assistant that': 96806, 'many look': 514248, 'look down': 502336, 'down upon': 257421, 'upon are': 947615, 'now on': 575414, 'frontline holding': 338760, 'holding society': 400155, 'society together': 781337, 'together whilst': 921033, 'whilst we': 987704, 'we work': 973939, 'home those': 402293, 'those job': 892144, 'job aren': 465666, 'aren low': 92454, 'skilled they': 773005, 're essential': 698618, 'be paid': 116330, 'paid such': 634137, 'funny how all': 341739, 'how all of': 407333, 'all of these': 43718, 'of these low': 591838, 'these low skilled': 880261, 'low skilled job': 505616, 'skilled job cleaner': 772996, 'job cleaner delivery': 465742, 'delivery driver retail': 233936, 'driver retail assistant': 259726, 'retail assistant that': 717852, 'assistant that so': 96807, 'that so many': 846360, 'so many look': 777672, 'many look down': 514249, 'look down upon': 502338, 'down upon are': 257422, 'upon are now': 947616, 'are now on': 88578, 'now on the': 575436, 'the frontline holding': 855872, 'frontline holding society': 338761, 'holding society together': 400156, 'society together whilst': 781343, 'together whilst we': 921034, 'whilst we work': 987706, 'we work from': 973942, 'from home those': 335915, 'home those job': 402294, 'those job aren': 892145, 'job aren low': 465667, 'aren low skilled': 92456, 'low skilled they': 505620, 'skilled they re': 773006, 'they re essential': 883025, 're essential and': 698619, 'essential and they': 280791, 'and they should': 73938, 'they should be': 883354, 'should be paid': 765686, 'be paid such': 116340, 'digitalpolice': 242798, 'india must': 434527, 'act fast': 29639, 'fast and': 299909, 'talk le': 833810, 'le on': 483047, 'on india': 601547, 'india only': 434553, 'only rapid': 611045, 'rapid action': 696894, 'action wa': 30186, 'wa to': 963514, 'raise domestic': 695832, 'domestic fuel': 253192, 'time when': 898276, 'when international': 983604, 'international oil': 441834, 'have slipped': 382586, 'slipped to': 774051, 'to decade': 903991, 'decade low': 230688, 'low but': 505160, 'beyond that': 129240, 'it been': 456785, 'been all': 120638, 'all talk': 44604, 'talk and': 833776, 'and committee': 60149, 'committee digitalpolice': 189060, 'india must act': 434528, 'must act fast': 546452, 'act fast and': 29640, 'fast and talk': 299916, 'and talk le': 73007, 'talk le on': 833811, 'le on india': 483048, 'on india only': 601551, 'india only rapid': 434554, 'only rapid action': 611046, 'rapid action wa': 696895, 'action wa to': 30187, 'wa to raise': 963524, 'to raise domestic': 912719, 'raise domestic fuel': 695833, 'domestic fuel price': 253193, 'fuel price at': 340221, 'price at time': 672817, 'at time when': 101317, 'time when international': 898289, 'when international oil': 983606, 'international oil price': 441835, 'oil price have': 597156, 'price have slipped': 674461, 'have slipped to': 382587, 'slipped to decade': 774052, 'to decade low': 903992, 'decade low but': 230689, 'low but beyond': 505161, 'but beyond that': 145299, 'beyond that it': 129241, 'that it been': 844696, 'it been all': 456788, 'been all talk': 120641, 'all talk and': 44605, 'talk and committee': 833777, 'and committee digitalpolice': 60150, 'soar': 779213, 'kick': 473780, 'azadpur': 106391, 'mandi': 513085, 'disrupted': 246384, 'price soar': 676521, 'soar period': 779265, 'period kick': 651809, 'kick in': 473784, 'in azadpur': 420650, 'azadpur mandi': 106392, 'mandi trader': 513086, 'trader say': 928760, 'say supply': 739195, 'supply have': 825346, 'been disrupted': 120999, 'disrupted due': 246398, 'to transportation': 917715, 'transportation problem': 930025, 'problem report': 679664, 'vegetable price soar': 954074, 'price soar period': 676530, 'soar period kick': 779266, 'period kick in': 651810, 'kick in azadpur': 473786, 'in azadpur mandi': 420651, 'azadpur mandi trader': 106393, 'mandi trader say': 513087, 'trader say supply': 928761, 'say supply have': 739198, 'supply have been': 825347, 'have been disrupted': 379515, 'been disrupted due': 121002, 'disrupted due to': 246399, 'due to transportation': 262003, 'to transportation problem': 917716, 'transportation problem report': 930026, 'strained': 812308, 'shed': 756502, 'fragile': 330885, 'recommend': 704680, 'buying strained': 151100, 'strained supply': 812325, 'chain struggling': 171139, 'struggling food': 814443, 'bank covid': 109745, 'ha shed': 371892, 'shed more': 756514, 'more light': 539683, 'the fragile': 855752, 'fragile food': 330892, 'system to': 831348, 'state of': 795793, 'system today': 831360, 'it future': 458196, 'future we': 342513, 'we recommend': 973044, 'recommend feeding': 704693, 'feeding britain': 302457, 'britain new': 140427, 'new book': 558413, 'book by': 134489, 'panic buying strained': 637908, 'buying strained supply': 151101, 'strained supply chain': 812326, 'supply chain struggling': 825043, 'chain struggling food': 171140, 'struggling food bank': 814444, 'food bank covid': 313545, 'bank covid 19': 109746, '19 ha shed': 7385, 'ha shed more': 371893, 'shed more light': 756515, 'more light on': 539684, 'on the fragile': 604129, 'the fragile food': 855754, 'fragile food system': 330893, 'food system to': 317055, 'system to learn': 831354, 'to learn more': 909133, 'more about the': 538524, 'about the state': 26526, 'the state of': 867798, 'state of our': 795816, 'of our food': 587475, 'food system today': 317056, 'system today and': 831361, 'today and it': 919215, 'and it future': 65530, 'it future we': 458199, 'future we recommend': 342516, 'we recommend feeding': 973045, 'recommend feeding britain': 704694, 'feeding britain new': 302458, 'britain new book': 140428, 'new book by': 558414, 'gang': 343388, 'rando': 696594, 'involved': 444337, 'iowa': 444482, 'gang hate': 343394, 'hate to': 378929, 'this because': 886515, 'because just': 119215, 'just rando': 469553, 'rando on': 696595, 'twitter but': 936642, 'have friend': 380722, 'friend who': 333890, 'is involved': 448979, 'involved in': 444348, 'in food': 422962, 'safety in': 730576, 'in iowa': 424138, 'iowa and': 444483, 'and she': 71411, 'she warning': 756450, 'warning me': 967149, 'me that': 523602, 'is hitting': 448501, 'hitting food': 398563, 'food packing': 315744, 'packing plant': 633734, 'plant and': 658612, 'she tell': 756374, 'tell me': 837006, 'gang hate to': 343395, 'hate to do': 378931, 'do this because': 250344, 'this because just': 886516, 'because just rando': 119216, 'just rando on': 469554, 'rando on twitter': 696596, 'on twitter but': 604916, 'twitter but have': 936643, 'but have friend': 145872, 'have friend who': 380723, 'friend who is': 333900, 'who is involved': 989085, 'is involved in': 448980, 'involved in food': 444350, 'in food safety': 422983, 'food safety in': 316271, 'safety in iowa': 730579, 'in iowa and': 424139, 'iowa and she': 444484, 'and she warning': 71432, 'she warning me': 756451, 'warning me that': 967150, 'me that covid': 523608, '19 is hitting': 7988, 'is hitting food': 448502, 'hitting food packing': 398564, 'food packing plant': 315745, 'packing plant and': 633735, 'plant and she': 658614, 'and she tell': 71428, 'she tell me': 756376, 'avoiding': 105430, 'mspaamericas': 544582, 'mspa': 544579, 'mysteryshopping': 551021, 'evaluator': 283737, 'scam scam': 740348, 'more scam': 540317, 'scam do': 740131, 'not fall': 569359, 'fall for': 296909, 'it here': 458563, 'are tip': 91092, 'tip on': 898848, 'on avoiding': 599521, 'avoiding scam': 105489, 'commission mspaamericas': 188860, 'mspaamericas mspa': 544583, 'mspa mysteryshopping': 544580, 'mysteryshopping evaluator': 551022, 'scam scam and': 740349, 'scam and more': 740008, 'and more scam': 67212, 'more scam do': 540318, 'scam do not': 740132, 'do not fall': 249733, 'not fall for': 569360, 'fall for it': 296912, 'for it here': 322713, 'it here are': 458564, 'here are tip': 392766, 'are tip on': 91095, 'tip on avoiding': 898849, 'on avoiding scam': 599523, 'avoiding scam from': 105492, 'scam from the': 740176, 'from the federal': 337695, 'trade commission mspaamericas': 928451, 'commission mspaamericas mspa': 188861, 'mspaamericas mspa mysteryshopping': 544584, 'mspa mysteryshopping evaluator': 544581, 'lifted': 489477, 'eight': 270177, 'colombo': 186699, 'sri': 791592, 'lanka': 479507, '6am': 21547, 'police curfew': 662965, 'curfew wa': 220948, 'wa lifted': 962536, 'lifted for': 489484, 'for eight': 320980, 'eight hour': 270184, 'hour here': 405673, 'in colombo': 421558, 'colombo sri': 186702, 'sri lanka': 791595, 'lanka ran': 479508, 'ran to': 696516, 'at 6am': 97719, '6am to': 21577, 'police curfew wa': 662966, 'curfew wa lifted': 220950, 'wa lifted for': 962538, 'lifted for eight': 489485, 'for eight hour': 320981, 'eight hour here': 270185, 'hour here in': 405674, 'here in colombo': 393144, 'in colombo sri': 421559, 'colombo sri lanka': 186703, 'sri lanka ran': 791596, 'lanka ran to': 479509, 'ran to the': 696518, 'supermarket at 6am': 819230, 'at 6am to': 97729, '6am to get': 21578, 'vendor': 954334, 'justice': 470399, 'versova': 954931, 'natraj': 552796, 'shifa': 758206, 'yariroad': 1014168, 'mumbaipolice': 546044, 'mybmc': 550688, 'cmomaharashtra': 184693, 'police forcing': 663020, 'forcing vegetable': 328748, 'vegetable and': 953920, 'and fish': 62937, 'fish vendor': 309349, 'vendor to': 954412, 'close is': 182684, 'this justice': 888557, 'justice people': 470426, 'not or': 570847, 'or cannot': 614660, 'cannot afford': 161595, 'afford to': 34787, 'up hoard': 945091, 'hoard where': 398914, 'where will': 985356, 'will they': 995174, 'they get': 882156, 'from versova': 338228, 'versova near': 954932, 'near natraj': 553559, 'natraj building': 552797, 'building shifa': 142139, 'shifa medical': 758207, 'medical versova': 526494, 'versova yariroad': 954936, 'yariroad mumbai': 1014169, 'mumbai mumbaipolice': 546017, 'mumbaipolice mybmc': 546045, 'mybmc cmomaharashtra': 550689, 'police forcing vegetable': 663021, 'forcing vegetable and': 328749, 'vegetable and fish': 953923, 'and fish vendor': 62938, 'fish vendor to': 309350, 'vendor to close': 954413, 'to close is': 902881, 'close is this': 182685, 'is this justice': 453102, 'this justice people': 888558, 'justice people who': 470427, 'who have not': 988941, 'have not or': 381690, 'not or cannot': 570848, 'or cannot afford': 614661, 'cannot afford to': 161618, 'afford to stock': 34808, 'stock up hoard': 803086, 'up hoard where': 945093, 'hoard where will': 398915, 'where will they': 985359, 'will they get': 995181, 'they get food': 882163, 'get food from': 347040, 'food from versova': 314620, 'from versova near': 338229, 'versova near natraj': 954933, 'near natraj building': 553560, 'natraj building shifa': 552798, 'building shifa medical': 142140, 'shifa medical versova': 758208, 'medical versova yariroad': 526495, 'versova yariroad mumbai': 954937, 'yariroad mumbai mumbaipolice': 1014170, 'mumbai mumbaipolice mybmc': 546018, 'mumbaipolice mybmc cmomaharashtra': 546046, 'combat': 186977, 'from doctor': 335170, 'cashier bus': 166495, 'bus driver': 143012, 'driver to': 259800, 'to cleaner': 902818, 'cleaner these': 180849, 'these people': 880420, 'make sure': 510502, 'sure the': 827706, 'continues running': 201433, 'running amid': 727901, 'the movement': 861096, 'movement control': 543864, 'order to': 618657, 'to combat': 902984, 'combat the': 187045, 'from doctor to': 335174, 'doctor to supermarket': 251141, 'to supermarket cashier': 915781, 'supermarket cashier bus': 819552, 'cashier bus driver': 166496, 'bus driver to': 143032, 'driver to cleaner': 259801, 'to cleaner these': 902821, 'cleaner these people': 180850, 'these people make': 880450, 'people make sure': 648727, 'make sure the': 510530, 'sure the country': 827708, 'country continues running': 210558, 'continues running amid': 201434, 'running amid the': 727902, 'amid the movement': 52702, 'the movement control': 861097, 'movement control order': 543865, 'control order to': 202089, 'order to combat': 618671, 'to combat the': 903009, 'combat the spread': 187052, 'richardburr': 721312, 'kellyloeffler': 472733, 'accused': 28935, 'insider': 439460, 'dumped': 262198, 'loeffler': 500591, 'suit': 817749, 'republican senator': 713063, 'senator richardburr': 749782, 'richardburr and': 721313, 'and kellyloeffler': 65806, 'kellyloeffler accused': 472734, 'accused of': 28942, 'of using': 592715, 'using insider': 950523, 'insider trading': 439483, 'trading to': 928945, 'sell stock': 748886, 'stock before': 801910, 'before price': 123021, 'fell due': 303186, 'to fear': 905692, 'fear burr': 301067, 'burr dumped': 142939, 'dumped up': 262216, 'to million': 910130, 'and loeffler': 66328, 'loeffler sold': 500597, 'sold million': 781699, 'in holding': 423770, 'holding sometimes': 400157, 'sometimes virus': 785247, 'virus wear': 959014, 'wear suit': 974463, 'suit and': 817753, 'and take': 72955, 'take roll': 832550, 'roll call': 725241, 'republican senator richardburr': 713067, 'senator richardburr and': 749783, 'richardburr and kellyloeffler': 721314, 'and kellyloeffler accused': 65807, 'kellyloeffler accused of': 472735, 'accused of using': 28957, 'of using insider': 592721, 'using insider trading': 950524, 'insider trading to': 439485, 'trading to sell': 928947, 'to sell stock': 914176, 'sell stock before': 748887, 'stock before price': 801912, 'before price fell': 123023, 'price fell due': 673848, 'fell due to': 303187, 'due to fear': 261786, 'to fear burr': 905694, 'fear burr dumped': 301068, 'burr dumped up': 142940, 'dumped up to': 262217, 'up to million': 946401, 'to million in': 910135, 'million in stock': 532196, 'in stock and': 428281, 'stock and loeffler': 801817, 'and loeffler sold': 66329, 'loeffler sold million': 500599, 'sold million in': 781701, 'million in holding': 532192, 'in holding sometimes': 423771, 'holding sometimes virus': 400158, 'sometimes virus wear': 785248, 'virus wear suit': 959016, 'wear suit and': 974464, 'suit and take': 817754, 'and take roll': 72974, 'take roll call': 832551, 'atomic': 101988, 'robot': 724783, 'lowering': 506092, 'backissueking': 107557, 'we at': 970796, 'at atomic': 98067, 'atomic robot': 101989, 'robot comic': 724791, 'comic toy': 187950, 'toy are': 927662, 'are lowering': 87944, 'lowering our': 506121, 'by 25': 151603, '25 until': 15988, 'notice in': 573293, 'still shipping': 801176, 'shipping world': 758948, 'world wide': 1010179, 'wide next': 991728, 'next day': 561324, 'day usual': 228641, 'usual backissueking': 950892, 'we at atomic': 970797, 'at atomic robot': 98068, 'atomic robot comic': 101990, 'robot comic toy': 724792, 'comic toy are': 187951, 'toy are lowering': 927663, 'are lowering our': 87945, 'lowering our price': 506122, 'our price by': 624440, 'price by 25': 673005, 'by 25 until': 151612, '25 until further': 15989, 'further notice in': 342104, 'notice in response': 573295, 'response to the': 715887, 'pandemic we are': 636932, 'are still shipping': 90479, 'still shipping world': 801180, 'shipping world wide': 758949, 'world wide next': 1010182, 'wide next day': 991729, 'next day usual': 561334, 'day usual backissueking': 228642, 'informed': 438074, 'all do': 42586, 'worker first': 1006947, 'responder grocery': 715469, 'employee governor': 273893, 'governor and': 360855, 'that keep': 844802, 'keep safe': 471869, 'and informed': 65224, 'informed and': 438076, 'and healthy': 64382, 'well prepared': 978502, 'prepared thank': 670237, 'to all do': 900241, 'all do the': 42597, 'do the medical': 250250, 'the medical worker': 860407, 'medical worker first': 526503, 'worker first responder': 1006949, 'first responder grocery': 308945, 'responder grocery store': 715472, 'store employee governor': 807495, 'employee governor and': 273894, 'governor and all': 360856, 'and all those': 57901, 'all those that': 45189, 'those that keep': 892537, 'that keep safe': 844806, 'keep safe and': 471872, 'safe and informed': 729455, 'and informed and': 65225, 'informed and healthy': 438078, 'and healthy and': 64383, 'healthy and well': 387534, 'and well prepared': 75408, 'well prepared thank': 978505, 'prepared thank you': 670238, 'recommended': 704770, 'postpone': 666755, 'aggressive': 38234, 'breaking the': 139057, 'control recommended': 202122, 'recommended that': 704797, 'that american': 842628, 'american cancel': 51854, 'cancel or': 160871, 'or postpone': 616652, 'postpone gathering': 666761, 'gathering of': 344487, 'of 50': 579605, '50 or': 19789, 'or more': 616163, 'people for': 647943, 'next eight': 561352, 'eight week': 270203, 'most aggressive': 542080, 'aggressive federal': 38245, 'federal guidance': 302011, 'guidance issued': 368251, 'issued yet': 456114, 'yet in': 1016102, 'breaking the center': 139058, 'disease control recommended': 245119, 'control recommended that': 202123, 'recommended that american': 704798, 'that american cancel': 842630, 'american cancel or': 51855, 'cancel or postpone': 160872, 'or postpone gathering': 616653, 'postpone gathering of': 666762, 'gathering of 50': 344488, 'of 50 or': 579612, '50 or more': 19791, 'or more people': 616185, 'more people for': 540019, 'people for the': 647959, 'for the next': 326581, 'the next eight': 861664, 'next eight week': 561353, 'eight week it': 270206, 'week it the': 976439, 'it the most': 461560, 'the most aggressive': 860944, 'most aggressive federal': 542081, 'aggressive federal guidance': 38246, 'federal guidance issued': 302012, 'guidance issued yet': 368253, 'issued yet in': 456115, 'yet in response': 1016106, 'to the coronavirus': 916595, 'scrub': 742885, 'coat': 185132, 'plague': 657953, 'wife went': 991997, 'some fresh': 782905, 'fresh vegetable': 333095, 'vegetable after': 953914, 'after work': 36563, 'work today': 1005909, 'today because': 919308, 'we always': 970414, 'thing people': 884675, 'are hoarding': 87198, 'hoarding so': 399524, 'that non': 845371, 'non issue': 566416, 'issue she': 455920, 'she wore': 756471, 'wore her': 1004659, 'her scrub': 392347, 'scrub and': 742889, 'and lab': 65914, 'lab coat': 478253, 'coat she': 185137, 'she said': 756302, 'said people': 731307, 'people avoided': 647200, 'avoided her': 105413, 'her like': 392164, 'like she': 491166, 'had the': 373604, 'the plague': 863781, 'plague oh': 657976, 'oh wait': 596466, 'wait mean': 964155, 'my wife went': 550605, 'wife went to': 991999, 'to get some': 906595, 'get some fresh': 348055, 'some fresh vegetable': 782908, 'fresh vegetable after': 333097, 'vegetable after work': 953915, 'after work today': 36573, 'work today because': 1005911, 'today because we': 919313, 'because we always': 119790, 'we always have': 970416, 'always have the': 49617, 'have the thing': 383035, 'the thing people': 869463, 'thing people are': 884676, 'people are hoarding': 646995, 'are hoarding so': 87206, 'hoarding so that': 399525, 'so that non': 778385, 'that non issue': 845372, 'non issue she': 566418, 'issue she wore': 455921, 'she wore her': 756472, 'wore her scrub': 1004661, 'her scrub and': 392348, 'scrub and lab': 742891, 'and lab coat': 65915, 'lab coat she': 478255, 'coat she said': 185138, 'she said people': 756310, 'said people avoided': 731309, 'people avoided her': 647201, 'avoided her like': 105414, 'her like she': 392166, 'like she had': 491168, 'she had the': 756106, 'had the plague': 373623, 'the plague oh': 863783, 'plague oh wait': 657977, 'oh wait mean': 596469, 'peatfree': 646174, 'compost': 192585, 'entertained': 278521, 'to selling': 914195, 'selling peatfree': 749396, 'peatfree compost': 646175, 'compost we': 192586, 'were able': 979266, 'our last': 623642, 'last food': 480224, 'food shop': 316470, 'shop before': 759979, 'before lockdownuk': 122919, 'lockdownuk so': 500431, 'our house': 623476, 'house isolated': 406381, 'isolated and': 454967, 'and entertained': 62188, 'entertained making': 278532, 'making garden': 511085, 'garden until': 343628, 'until we': 943919, 'get back': 346628, 'back into': 107108, 'into lab': 442689, 'lab and': 478245, 'to research': 913329, 'research coronacrisis': 713702, 'thanks to selling': 842258, 'to selling peatfree': 914198, 'selling peatfree compost': 749397, 'peatfree compost we': 646176, 'compost we were': 192587, 'we were able': 973779, 'were able to': 979267, 'able to stock': 24552, 'up on our': 945601, 'on our last': 602611, 'our last food': 623645, 'last food shop': 480225, 'food shop before': 316476, 'shop before lockdownuk': 759980, 'before lockdownuk so': 122920, 'lockdownuk so we': 500432, 'so we will': 778691, 'able to keep': 24496, 'keep our house': 471733, 'our house isolated': 623478, 'house isolated and': 406382, 'isolated and entertained': 454968, 'and entertained making': 62190, 'entertained making garden': 278533, 'making garden until': 511086, 'garden until we': 343629, 'until we can': 943921, 'we can get': 970954, 'can get back': 158407, 'get back into': 346632, 'back into lab': 107113, 'into lab and': 442690, 'lab and back': 478246, 'back to research': 107393, 'to research coronacrisis': 913330, 'starbucks': 794085, 'programme': 683330, 'operated': 613034, 'licensed': 488168, 'starbucks launch': 794097, 'launch first': 481902, 'first of': 308812, 'it kind': 459272, 'kind global': 474845, 'global partner': 352119, 'partner emergency': 642813, 'emergency relief': 272913, 'relief programme': 709447, 'programme to': 683349, 'support partner': 826753, 'partner in': 642833, 'in company': 421620, 'company operated': 190940, 'operated and': 613037, 'and licensed': 66131, 'licensed retail': 488178, 'store market': 808906, 'market around': 516037, 'starbucks launch first': 794098, 'launch first of': 481903, 'first of it': 308814, 'of it kind': 585411, 'it kind global': 459274, 'kind global partner': 474846, 'global partner emergency': 352120, 'partner emergency relief': 642814, 'emergency relief programme': 272918, 'relief programme to': 709448, 'programme to support': 683350, 'to support partner': 915959, 'support partner in': 826754, 'partner in company': 642836, 'in company operated': 421624, 'company operated and': 190941, 'operated and licensed': 613038, 'and licensed retail': 66132, 'licensed retail store': 488179, 'retail store market': 718661, 'store market around': 808907, 'market around the': 516039, 'accompaniment': 28486, 'numerous': 577119, 'genre': 345823, 'singing': 771208, 'lesson': 486462, 'this wonderful': 891487, 'wonderful service': 1004114, 'service ha': 752432, 'ha thousand': 372273, 'of accompaniment': 579736, 'accompaniment in': 28489, 'in numerous': 425996, 'numerous genre': 577138, 'genre they': 345828, 'will even': 993334, 'even create': 283984, 'create custom': 215630, 'custom accompaniment': 221972, 'accompaniment for': 28487, 'you at': 1017331, 'at reasonable': 100258, 'price so': 676498, 'so important': 777371, 'important for': 418799, 'your online': 1025068, 'online singing': 609370, 'singing lesson': 771216, 'lesson link': 486495, 'this wonderful service': 891490, 'wonderful service ha': 1004115, 'service ha thousand': 752440, 'ha thousand of': 372274, 'thousand of accompaniment': 893421, 'of accompaniment in': 579737, 'accompaniment in numerous': 28490, 'in numerous genre': 425997, 'numerous genre they': 577139, 'genre they will': 345829, 'they will even': 883848, 'will even create': 993335, 'even create custom': 283985, 'create custom accompaniment': 215631, 'custom accompaniment for': 221973, 'accompaniment for you': 28488, 'for you at': 328037, 'you at reasonable': 1017337, 'at reasonable price': 100260, 'reasonable price so': 703127, 'price so important': 676506, 'so important for': 777375, 'important for your': 418807, 'for your online': 328182, 'your online singing': 1025079, 'online singing lesson': 609371, 'singing lesson link': 771217, 'lesson link below': 486496, 'swmbletin': 830613, 'discover': 244645, 'circular': 178644, 'footprint': 318569, 'cycle': 224024, 'juan': 467594, 'jos': 467309, 'argudo': 92680, 'swmbletin discover': 830614, 'discover all': 244648, 'news about': 560181, 'about and': 24793, 'water thanks': 969194, 'our live': 623756, 'live coverage': 495777, 'coverage western': 212386, 'western australia': 980587, 'australia to': 103407, 'to freeze': 906243, 'freeze water': 332570, 'water price': 969121, 'price circular': 673133, 'circular economy': 178647, 'water footprint': 968995, 'footprint tool': 318576, 'tool for': 925408, 'for effective': 320961, 'effective management': 269280, 'management of': 512599, 'water cycle': 968958, 'cycle by': 224042, 'by juan': 152962, 'juan jos': 467595, 'jos argudo': 467310, 'swmbletin discover all': 830615, 'discover all the': 244650, 'all the news': 44841, 'the news about': 861600, 'news about and': 560182, 'about and water': 24808, 'and water thanks': 75259, 'water thanks to': 969195, 'to our live': 911204, 'our live coverage': 623758, 'live coverage western': 495778, 'coverage western australia': 212387, 'western australia to': 980588, 'australia to freeze': 103410, 'to freeze water': 906248, 'freeze water price': 332571, 'water price circular': 969122, 'price circular economy': 673134, 'circular economy and': 178648, 'economy and water': 267659, 'and water footprint': 75237, 'water footprint tool': 968996, 'footprint tool for': 318577, 'tool for effective': 925411, 'for effective management': 320963, 'effective management of': 269281, 'management of the': 512604, 'of the water': 591605, 'the water cycle': 871125, 'water cycle by': 968959, 'cycle by juan': 224043, 'by juan jos': 152963, 'juan jos argudo': 467596, 'airbnb': 39813, 'smashed': 775561, 'board': 133612, 'airbnb illegal': 39818, 'illegal in': 416219, 'in nsw': 425989, 'nsw other': 576711, 'other state': 620959, 'state could': 795491, 'follow 100': 312333, 'of 100': 579314, 'of migrant': 586494, 'migrant amp': 531199, 'amp temp': 54625, 'temp worker': 837341, 'worker forced': 1006980, 'to leave': 909146, 'leave oz': 484894, 'oz rental': 632758, 'rental market': 711239, 'to smashed': 914766, 'smashed this': 775570, 'will lead': 993963, 'increase sale': 433049, 'sale amp': 732030, 'amp should': 54499, 'should see': 766438, 'see house': 745213, 'price drop': 673553, 'drop across': 260105, 'the board': 849804, 'board in': 133644, 'all major': 43431, 'major city': 509261, 'airbnb illegal in': 39819, 'illegal in nsw': 416221, 'in nsw other': 425990, 'nsw other state': 576712, 'other state could': 620962, 'state could follow': 795494, 'could follow 100': 209185, 'follow 100 of': 312334, '100 of 100': 1978, 'of 100 of': 579321, '100 of migrant': 1987, 'of migrant amp': 586496, 'migrant amp temp': 531200, 'amp temp worker': 54626, 'temp worker forced': 837342, 'worker forced to': 1006981, 'forced to leave': 328641, 'to leave oz': 909157, 'leave oz rental': 484895, 'oz rental market': 632759, 'rental market is': 711243, 'market is about': 516612, 'about to smashed': 26739, 'to smashed this': 914767, 'smashed this will': 775571, 'this will lead': 891425, 'will lead to': 993966, 'lead to increase': 483353, 'to increase sale': 908300, 'increase sale amp': 433050, 'sale amp should': 732032, 'amp should see': 54501, 'should see house': 766439, 'see house price': 745214, 'house price drop': 406478, 'price drop across': 673555, 'drop across the': 260106, 'across the board': 29484, 'the board in': 849810, 'board in all': 133645, 'in all major': 420173, 'all major city': 43433, 'coughing': 208654, 'looked': 502698, 'walkingdisease': 965134, 'day number': 228042, 'of quarantine': 588650, 'quarantine still': 692580, 'still coughing': 800401, 'coughing and': 208657, 'way am': 969452, 'am going': 50084, 'be looked': 115817, 'looked at': 502703, 'at like': 99587, 'like walkingdisease': 491754, 'walkingdisease coronacrisis': 965135, 'day number of': 228043, 'number of quarantine': 576982, 'of quarantine still': 588667, 'quarantine still coughing': 692581, 'still coughing and': 800402, 'coughing and no': 208663, 'and no way': 67649, 'no way am': 565861, 'way am going': 969453, 'am going to': 50089, 'going to supermarket': 355731, 'to supermarket do': 915788, 'supermarket do not': 819980, 'want to be': 965994, 'to be looked': 901374, 'be looked at': 115818, 'looked at like': 502708, 'at like walkingdisease': 99589, 'like walkingdisease coronacrisis': 491755, 'acquire': 29154, '100ml': 2195, 'form': 329479, 'looking to': 503017, 'to acquire': 899999, 'acquire ply': 29157, 'ply mask': 661772, 'mask surgical': 519325, 'surgical glove': 828344, 'glove 100ml': 352528, '100ml sanitizer': 2204, 'sanitizer empty': 734818, 'empty plastic': 275005, 'plastic bottle': 658820, 'bottle then': 136332, 'then fill': 877169, 'fill out': 305475, 'the form': 855705, 'form below': 329492, 'below and': 126589, 'and team': 73060, 'team member': 835726, 'member will': 528248, 'will reach': 994568, 'you corona': 1018051, 'you are looking': 1017165, 'are looking to': 87888, 'looking to acquire': 503018, 'to acquire ply': 900000, 'acquire ply mask': 29158, 'ply mask surgical': 661776, 'mask surgical glove': 519326, 'surgical glove 100ml': 828345, 'glove 100ml sanitizer': 352529, '100ml sanitizer empty': 2205, 'sanitizer empty plastic': 734819, 'empty plastic bottle': 275006, 'plastic bottle then': 658823, 'bottle then fill': 136333, 'then fill out': 877170, 'fill out the': 305482, 'out the form': 627368, 'the form below': 855706, 'form below and': 329493, 'below and team': 126594, 'and team member': 73062, 'team member will': 835730, 'member will reach': 528249, 'will reach out': 994570, 'reach out to': 699969, 'out to you': 627699, 'to you corona': 918896, 'honestly': 403091, 'store honestly': 808173, 'honestly what': 403152, 'you people': 1020315, 'people doing': 647689, 'doing with': 252864, 'finally got to': 306031, 'got to the': 358972, 'grocery store honestly': 365469, 'store honestly what': 808174, 'honestly what are': 403153, 'are you people': 91832, 'you people doing': 1020318, 'people doing with': 647695, 'doing with all': 252865, 'tricky': 931743, 'see store': 745751, 'store taking': 810503, 'public by': 687906, 'by hiking': 152807, 'hiking up': 396424, 'up their': 946231, 'pandemic you': 637088, 'them here': 875846, 'here let': 393294, 'let protect': 486991, 'vulnerable at': 960877, 'this tricky': 890852, 'tricky time': 931749, 'you see store': 1021069, 'see store taking': 745753, 'store taking advantage': 810504, 'of the public': 591379, 'the public by': 864794, 'public by hiking': 687907, 'by hiking up': 152812, 'hiking up their': 396430, 'up their price': 946247, 'their price during': 874393, 'the pandemic you': 863169, 'pandemic you can': 637090, 'can report them': 159453, 'report them here': 712358, 'them here let': 875848, 'here let protect': 393295, 'let protect the': 486994, 'protect the vulnerable': 684985, 'the vulnerable at': 870976, 'vulnerable at this': 960878, 'at this tricky': 101263, 'this tricky time': 890853, 'haringey': 378368, 'haringey if': 378369, 'any store': 79857, 'store hiking': 808155, 'on good': 601140, 'good taking': 357811, '19 then': 11271, 'then please': 877427, 'haringey if you': 378370, 'you see any': 1021022, 'see any store': 744927, 'any store hiking': 79864, 'store hiking up': 808157, 'hiking up price': 396428, 'up price on': 945827, 'price on good': 675679, 'on good taking': 601150, 'good taking advantage': 357812, 'of 19 then': 579417, '19 then please': 11277, 'then please report': 877432, 'stepdad': 799715, 'permanent': 652033, 'er': 279998, 'pls': 661112, 'my stepdad': 550198, 'stepdad is': 799716, 'really doing': 702135, 'doing permanent': 252599, 'permanent damage': 652042, 'damage to': 225231, 'to his': 907804, 'his back': 397220, 'back while': 107465, 'while working': 987574, 'supermarket rn': 822252, 'rn and': 724309, 'and my': 67348, 'in large': 424583, 'large hospital': 479697, 'hospital the': 404677, 'biggest er': 130223, 'er in': 280012, 'the county': 852192, 'county so': 211491, 'so potential': 778055, 'case are': 165637, 'being sent': 125756, 'sent there': 750830, 'there pls': 878944, 'pls let': 661151, 'let my': 486925, 'family stay': 298249, 'my stepdad is': 550199, 'stepdad is really': 799717, 'is really doing': 451296, 'really doing permanent': 702136, 'doing permanent damage': 252600, 'permanent damage to': 652043, 'damage to his': 225237, 'to his back': 907806, 'his back while': 397222, 'back while working': 107467, 'while working in': 987578, 'in supermarket rn': 428658, 'supermarket rn and': 822253, 'rn and my': 724311, 'and my mom': 67378, 'mom is working': 535761, 'working in large': 1008720, 'in large hospital': 424587, 'large hospital the': 479698, 'hospital the biggest': 404678, 'the biggest er': 849652, 'biggest er in': 130224, 'er in the': 280013, 'in the county': 429103, 'the county so': 852197, 'county so potential': 211492, 'so potential covid': 778056, '19 case are': 5666, 'case are being': 165638, 'are being sent': 84919, 'being sent there': 125759, 'sent there pls': 750831, 'there pls let': 878945, 'pls let my': 661152, 'let my family': 486928, 'my family stay': 548224, 'family stay healthy': 298251, 'potd366': 667010, '84': 22870, 'cheer': 175094, 'potd': 667007, 'yearinphotos': 1015132, 'mylifeinpictures': 550756, 'southlondon': 786899, 'potd366 day': 667011, 'day 84': 227168, '84 lockdown': 22876, 'lockdown day': 499296, 'day taking': 228452, 'taking government': 833374, 'government advice': 359826, 'advice and': 33301, 'and using': 74796, 'using food': 950490, 'service cheer': 752233, 'cheer boris': 175097, 'boris potd': 135486, 'potd yearinphotos': 667008, 'yearinphotos mylifeinpictures': 1015133, 'mylifeinpictures london': 550757, 'london southlondon': 501182, 'southlondon shopping': 786900, 'shopping panic': 763589, 'potd366 day 84': 667012, 'day 84 lockdown': 227169, '84 lockdown day': 22877, 'lockdown day taking': 499302, 'day taking government': 228453, 'taking government advice': 833375, 'government advice and': 359827, 'advice and using': 33321, 'and using food': 74799, 'using food delivery': 950492, 'delivery service cheer': 234430, 'service cheer boris': 752234, 'cheer boris potd': 175098, 'boris potd yearinphotos': 135487, 'potd yearinphotos mylifeinpictures': 667009, 'yearinphotos mylifeinpictures london': 1015134, 'mylifeinpictures london southlondon': 550758, 'london southlondon shopping': 501183, 'southlondon shopping panic': 786901, 'northeast': 567719, 'coronavirus induced': 206131, 'buying ha': 150429, 'ha emptied': 370485, 'egg what': 270029, 'future for': 342326, 'for egg': 320967, 'egg market': 269911, 'market over': 516824, 'past three': 643626, 'three week': 894095, 'the northeast': 861878, 'northeast ha': 567721, 'ha seen': 371816, 'seen unprecedented': 747341, 'unprecedented demand': 943106, 'egg due': 269848, 'to coronavirus': 903536, 'coronavirus induced panic': 206133, 'induced panic buying': 435483, 'panic buying ha': 637754, 'buying ha emptied': 150435, 'ha emptied the': 370486, 'shelf of egg': 757358, 'of egg what': 583002, 'egg what is': 270030, 'is the future': 452805, 'the future for': 856076, 'future for egg': 342327, 'for egg market': 320973, 'egg market over': 269912, 'market over the': 516826, 'over the past': 630750, 'the past three': 863366, 'past three week': 643628, 'three week the': 894117, 'week the northeast': 976996, 'the northeast ha': 861879, 'northeast ha seen': 567722, 'ha seen unprecedented': 371849, 'seen unprecedented demand': 747342, 'unprecedented demand for': 943115, 'demand for egg': 235407, 'for egg due': 320970, 'egg due to': 269849, 'due to coronavirus': 261743, 'to coronavirus induced': 903554, 'particularly': 642653, 'mindful': 532804, 'loose': 503184, 'virologist ha': 957698, 'ha confirmed': 370225, 'confirmed that': 194192, 'that every': 843750, 'every surface': 286273, 'surface is': 828034, 'is hazard': 448342, 'hazard when': 384585, 'it come': 457206, 'come to': 187551, 'supermarket customer': 819876, 'customer should': 222852, 'be particularly': 116360, 'particularly mindful': 642708, 'mindful of': 532814, 'the loose': 859720, 'loose fruit': 503191, 'vegetable in': 954009, 'store via': 811059, 'virologist ha confirmed': 957699, 'ha confirmed that': 370228, 'confirmed that every': 194196, 'that every surface': 843758, 'every surface is': 286275, 'surface is hazard': 828035, 'is hazard when': 448344, 'hazard when it': 384586, 'when it come': 983627, 'it come to': 457214, 'come to covid': 187564, '19 and supermarket': 5117, 'and supermarket customer': 72713, 'supermarket customer should': 819879, 'customer should be': 222853, 'should be particularly': 765688, 'be particularly mindful': 116362, 'particularly mindful of': 642709, 'mindful of the': 532822, 'of the loose': 591200, 'the loose fruit': 859721, 'loose fruit and': 503192, 'and vegetable in': 74886, 'vegetable in the': 954013, 'in the store': 429575, 'the store via': 868136, 'proposed': 684515, 'renewed': 711009, 'moratorium': 538434, 'proposal': 684450, 'classify': 180370, 'ineligible': 436316, 'leverage': 487777, 'biz': 131931, 'renter': 711290, 'homeowner': 402875, 'we proposed': 972765, 'proposed several': 684541, 'several measure': 753890, 'measure including': 525236, 'including renewed': 432127, 'renewed push': 711016, 'push for': 690264, 'for eviction': 321264, 'eviction moratorium': 288328, 'moratorium proposal': 538454, 'proposal to': 684477, 'to classify': 902802, 'classify covid': 180371, '19 rental': 10102, 'rental debt': 711223, 'debt ineligible': 230504, 'ineligible cause': 436317, 'cause of': 167675, 'of eviction': 583280, 'eviction freeze': 288322, 'freeze rent': 332554, 'rent and': 711031, 'use our': 949455, 'our leverage': 623711, 'leverage bank': 487780, 'bank doing': 109778, 'doing biz': 252310, 'biz with': 131960, 'with city': 997644, 'city to': 179420, 'do more': 249593, 'protect renter': 684931, 'renter homeowner': 711301, 'we proposed several': 972766, 'proposed several measure': 684542, 'several measure including': 753892, 'measure including renewed': 525237, 'including renewed push': 432128, 'renewed push for': 711017, 'push for eviction': 690267, 'for eviction moratorium': 321266, 'eviction moratorium proposal': 288331, 'moratorium proposal to': 538455, 'proposal to classify': 684479, 'to classify covid': 902803, 'classify covid 19': 180372, 'covid 19 rental': 213689, '19 rental debt': 10103, 'rental debt consumer': 711224, 'debt consumer debt': 230454, 'consumer debt ineligible': 197082, 'debt ineligible cause': 230505, 'ineligible cause of': 436318, 'cause of eviction': 167683, 'of eviction freeze': 583282, 'eviction freeze rent': 288323, 'freeze rent and': 332555, 'rent and use': 711044, 'and use our': 74780, 'use our leverage': 949465, 'our leverage bank': 623712, 'leverage bank doing': 487781, 'bank doing biz': 109779, 'doing biz with': 252311, 'biz with city': 131961, 'with city to': 997645, 'city to do': 179422, 'to do more': 904529, 'do more to': 249606, 'more to protect': 540799, 'to protect renter': 912325, 'protect renter homeowner': 684932, 'ph': 653964, 'grace': 361601, 'lockdown ph': 499796, 'ph bank': 653969, 'bank offer': 110059, 'offer grace': 594641, 'grace period': 361608, 'period for': 651759, 'loan via': 497552, '19 lockdown ph': 8418, 'lockdown ph bank': 499797, 'ph bank offer': 653970, 'bank offer grace': 110060, 'offer grace period': 594642, 'grace period for': 361610, 'period for consumer': 651760, 'for consumer loan': 320271, 'consumer loan via': 198068, 'tipping': 898981, 'coronavirus tipping': 206944, 'tipping point': 898988, 'store are the': 806529, 'are the coronavirus': 90812, 'the coronavirus tipping': 851931, 'coronavirus tipping point': 206945, 'alaska': 40718, 'wage': 963797, '75': 22099, 'of alaska': 579876, 'alaska estimate': 40725, 'estimate the': 282269, 'the loss': 859737, 'loss of': 503735, 'job and': 465614, 'and wage': 75109, 'wage ha': 963885, 'ha prompted': 371552, 'prompted 75': 683924, '75 increase': 22136, 'food assistance': 313422, 'assistance in': 96704, 'in alaska': 420139, 'bank of alaska': 110045, 'of alaska estimate': 579878, 'alaska estimate the': 40726, 'estimate the loss': 282271, 'the loss of': 859738, 'loss of job': 503749, 'of job and': 585526, 'job and wage': 465646, 'and wage ha': 75110, 'wage ha prompted': 963886, 'ha prompted 75': 371553, 'prompted 75 increase': 683925, '75 increase in': 22137, 'for food assistance': 321552, 'food assistance in': 313427, 'assistance in alaska': 96705, 'deserving': 238189, 'when this': 984299, 'is all': 445449, 'over don': 630153, 'don ever': 253491, 'ever want': 285585, 'to hear': 907395, 'hear anything': 387885, 'about retail': 26094, 'retail amp': 717806, 'amp food': 53817, 'food service': 316400, 'service worker': 753085, 'worker not': 1007449, 'not deserving': 569006, 'deserving living': 238194, 'living wage': 496473, 'wage from': 963873, 'from one': 336678, 'one single': 607047, 'single person': 771372, 'person who': 652716, 'who went': 989944, 'to store': 915602, 'or needed': 616230, 'needed food': 556351, 'outbreak they': 628737, 'are keeping': 87647, 'our world': 625403, 'world turning': 1010117, 'turning in': 935923, 'of national': 586859, 'national disaster': 552479, 'when this is': 984305, 'this is all': 888169, 'is all over': 445462, 'all over don': 43858, 'over don ever': 630155, 'don ever want': 253492, 'ever want to': 285586, 'want to hear': 966046, 'to hear anything': 907398, 'hear anything about': 387886, 'anything about retail': 80677, 'about retail amp': 26095, 'retail amp food': 717807, 'amp food service': 53826, 'food service worker': 316438, 'service worker not': 753105, 'worker not deserving': 1007450, 'not deserving living': 569007, 'deserving living wage': 238195, 'living wage from': 496477, 'wage from one': 963874, 'from one single': 336688, 'one single person': 607048, 'single person who': 771379, 'person who went': 652740, 'who went to': 989948, 'went to store': 979192, 'to store or': 915634, 'store or needed': 809350, 'or needed food': 616231, 'needed food during': 556354, '19 outbreak they': 9200, 'outbreak they are': 628738, 'they are keeping': 881319, 'are keeping our': 87660, 'keeping our world': 472512, 'our world turning': 625412, 'world turning in': 1010118, 'turning in the': 935924, 'in the face': 429188, 'face of national': 294662, 'of national disaster': 586862, 'chunky': 178320, 'peanut': 646139, 'coronapocalypse': 205179, 'store wow': 811650, 'wow all': 1012538, 'the empty': 854281, 'it pretty': 460437, 'pretty clear': 671375, 'clear from': 181252, 'what left': 981807, 'left that': 485661, 'that nobody': 845365, 'nobody like': 566031, 'like chunky': 490007, 'chunky peanut': 178325, 'peanut butter': 646140, 'butter coronaoutbreak': 148141, 'coronaoutbreak coronapocalypse': 205119, 'grocery store wow': 365975, 'store wow all': 811651, 'wow all the': 1012539, 'all the empty': 44734, 'the empty shelf': 854288, 'empty shelf but': 275052, 'shelf but it': 756902, 'but it pretty': 146153, 'it pretty clear': 460438, 'pretty clear from': 671376, 'clear from what': 181253, 'from what left': 338342, 'what left that': 981811, 'left that nobody': 485663, 'that nobody like': 845369, 'nobody like chunky': 566032, 'like chunky peanut': 490008, 'chunky peanut butter': 178326, 'peanut butter coronaoutbreak': 646143, 'butter coronaoutbreak coronapocalypse': 148142, 'yknow': 1016409, 'ryan': 728803, 'deadpool': 229315, 'nah': 551408, 'horders': 404009, 'pe': 645959, 'yknow what': 1016410, 'what ryan': 982108, 'ryan blame': 728804, 'blame deadpool': 132253, 'deadpool yeah': 229316, 'yeah him': 1014261, 'him that': 396724, 'that guy': 844098, 'guy nah': 369092, 'nah joke': 551414, 'joke aside': 467055, 'aside stay': 95433, 'positive stay': 665437, 'stay strong': 797329, 'strong and': 813971, 'food horders': 314845, 'horders listen': 404012, 'listen there': 494722, 'shortage dont': 764913, 'dont panic': 255262, 'panic pe': 638407, 'yknow what ryan': 1016411, 'what ryan blame': 982109, 'ryan blame deadpool': 728805, 'blame deadpool yeah': 132254, 'deadpool yeah him': 229317, 'yeah him that': 1014262, 'him that guy': 396726, 'that guy nah': 844100, 'guy nah joke': 369093, 'nah joke aside': 551415, 'joke aside stay': 467058, 'aside stay positive': 95434, 'stay positive stay': 797176, 'positive stay strong': 665438, 'stay strong and': 797332, 'strong and stay': 813979, 'stay safe to': 797290, 'safe to all': 730042, 'all the food': 44752, 'the food horders': 855559, 'food horders listen': 314846, 'horders listen there': 404013, 'listen there not': 494723, 'food shortage dont': 316568, 'shortage dont panic': 764914, 'dont panic pe': 255267, 'manufacture': 513361, 'gel': 345077, 'controlled': 202227, 'be using': 117938, 'using it': 950528, 'it resource': 460731, 'and power': 69275, 'to manufacture': 909814, 'manufacture not': 513379, 'not just': 570209, 'just medical': 469256, 'equipment but': 279698, 'but distributing': 145550, 'distributing sanitizer': 248091, 'sanitizer gel': 734959, 'gel soap': 345149, 'and wipe': 75728, 'wipe to': 996393, 'every household': 285938, 'household food': 406806, 'distribution should': 248214, 'be left': 115692, 'left to': 485682, 'market but': 516122, 'but controlled': 145458, 'controlled by': 202231, 'government should be': 360598, 'should be using': 765761, 'be using it': 117941, 'using it resource': 950536, 'it resource and': 460732, 'resource and power': 714705, 'and power to': 69280, 'power to manufacture': 667712, 'to manufacture not': 909818, 'manufacture not just': 513380, 'not just medical': 570232, 'just medical equipment': 469257, 'medical equipment but': 526148, 'equipment but distributing': 279699, 'but distributing sanitizer': 145551, 'distributing sanitizer gel': 248092, 'sanitizer gel soap': 734968, 'gel soap and': 345150, 'soap and wipe': 778935, 'and wipe to': 75743, 'wipe to every': 996395, 'to every household': 905305, 'every household food': 285940, 'household food distribution': 406807, 'food distribution should': 314236, 'distribution should not': 248216, 'not be left': 568413, 'be left to': 115697, 'left to the': 485694, 'to the market': 916865, 'the market but': 860094, 'market but controlled': 516123, 'but controlled by': 145459, 'controlled by the': 202235, 'by the government': 154339, 'ch': 170391, 'mutiny': 547074, 'bounty': 136878, 'papertowels': 641164, 'tale from': 833692, 'store ch': 806907, 'ch would': 170396, 'would one': 1012092, 'one call': 606040, 'call this': 156154, 'the mutiny': 861164, 'mutiny on': 547075, 'the bounty': 849911, 'bounty papertowels': 136881, 'tale from the': 833693, 'from the grocery': 337732, 'grocery store ch': 365276, 'store ch would': 806908, 'ch would one': 170397, 'would one call': 1012093, 'one call this': 606042, 'call this the': 156157, 'this the mutiny': 890529, 'the mutiny on': 861165, 'mutiny on the': 547076, 'on the bounty': 603996, 'the bounty papertowels': 849913, 'struggled': 814403, 'revenue': 720370, 'stressed': 813431, 'vastly': 952716, 'think sars': 885520, 'sars struggled': 736821, 'struggled to': 814406, 'get even': 346958, 'even close': 283955, 'close to': 182878, '2020 revenue': 14578, 'revenue target': 720479, 'wa before': 961664, 'before the': 123137, 'and stressed': 72559, 'stressed worker': 813470, 'worker will': 1008245, 'will vastly': 995298, 'vastly reduce': 952721, 'reduce collection': 705796, 'collection for': 186429, 'for 2021': 318755, '2021 amp': 14763, 'amp some': 54530, 'some time': 784053, 'time beyond': 896396, 'when you think': 984606, 'you think sars': 1021673, 'think sars struggled': 885521, 'sars struggled to': 736822, 'struggled to get': 814411, 'to get even': 906471, 'get even close': 346959, 'even close to': 283958, 'close to it': 182904, 'to it 2020': 908563, 'it 2020 revenue': 456199, '2020 revenue target': 14580, 'revenue target and': 720480, 'target and that': 834435, 'and that wa': 73217, 'that wa before': 847275, 'wa before the': 961669, 'before the effect': 123156, 'effect of this': 269067, 'of this year': 592076, 'this year on': 891585, 'year on the': 1014885, 'on the consumer': 604034, 'consumer and stressed': 196247, 'and stressed worker': 72563, 'stressed worker will': 813471, 'worker will vastly': 1008255, 'will vastly reduce': 995299, 'vastly reduce collection': 952722, 'reduce collection for': 705797, 'collection for 2021': 186430, 'for 2021 amp': 318756, '2021 amp some': 14764, 'amp some time': 54532, 'some time beyond': 784055, 'trigger': 931864, 'tourism': 926957, 'budget': 141748, 'pandemic trigger': 636837, 'trigger radical': 931883, 'radical change': 695398, 'in global': 423327, 'consumer behaviour': 196548, 'behaviour via': 124550, 'via business': 955834, 'business economy': 143683, 'economy finance': 267871, 'finance politics': 306251, 'politics tourism': 663805, 'tourism montreal': 926997, 'montreal tech': 538234, 'tech news': 836122, 'news health': 560503, 'health consumer': 386300, 'behaviour china': 124387, 'china pandemic': 176868, 'pandemic work': 637041, 'work protection': 1005630, 'protection market': 685523, 'market recession': 516962, 'recession budget': 704227, 'pandemic trigger radical': 636839, 'trigger radical change': 931884, 'radical change in': 695400, 'change in global': 172120, 'in global consumer': 423328, 'global consumer behaviour': 351798, 'consumer behaviour via': 196607, 'behaviour via business': 124551, 'via business economy': 955835, 'business economy finance': 143685, 'economy finance politics': 267872, 'finance politics tourism': 306252, 'politics tourism montreal': 663806, 'tourism montreal tech': 926998, 'montreal tech news': 538235, 'tech news health': 836123, 'news health consumer': 560504, 'health consumer behaviour': 386301, 'consumer behaviour china': 196559, 'behaviour china pandemic': 124388, 'china pandemic work': 176869, 'pandemic work protection': 637042, 'work protection market': 1005631, 'protection market recession': 685524, 'market recession budget': 516963, 'exorbitant': 290387, 'seller': 748957, 'shameful': 754675, 'uk why': 938893, 'you support': 1021482, 'support and': 826352, 'and do': 61547, 'do nothing': 249898, 'nothing about': 572918, 'about inflated': 25533, 'inflated and': 437010, 'and exorbitant': 62473, 'exorbitant price': 290399, 'price their': 676868, 'their seller': 874650, 'seller stockpile': 749078, 'stockpile essential': 803737, 'and sell': 71210, 'sell them': 748903, 'them for': 875707, 'for huge': 322431, 'profit normal': 682817, 'normal people': 567253, 'are left': 87755, 'left with': 485741, 'with nothing': 999820, 'these trying': 880888, 'trying time': 934740, 'time shameful': 897645, 'shameful coronacrisis': 754684, 'uk why do': 938895, 'do you support': 250685, 'you support and': 1021483, 'support and do': 826356, 'and do nothing': 61558, 'do nothing about': 249899, 'nothing about inflated': 572921, 'about inflated and': 25534, 'inflated and exorbitant': 437011, 'and exorbitant price': 62474, 'exorbitant price their': 290422, 'price their seller': 676869, 'their seller stockpile': 874651, 'seller stockpile essential': 749079, 'stockpile essential product': 803740, 'essential product and': 281414, 'product and sell': 680906, 'and sell them': 71219, 'sell them for': 748908, 'them for huge': 875719, 'for huge profit': 322433, 'huge profit normal': 410152, 'profit normal people': 682818, 'normal people are': 567254, 'people are left': 647012, 'are left with': 87760, 'left with nothing': 485746, 'with nothing in': 999822, 'nothing in these': 573053, 'in these trying': 429871, 'these trying time': 880890, 'trying time shameful': 934755, 'time shameful coronacrisis': 897646, 'you live': 1019631, 'in area': 420487, 'area work': 92288, 'and can': 59446, 'supermarket then': 823263, 'then dm': 877124, 'dm me': 248903, 'and let': 66101, 'me know': 523038, 'need and': 554414, 'll deliver': 496696, 'deliver it': 233152, 're home': 698822, 'your shift': 1025748, 'shift fighting': 758288, 'if you live': 415467, 'you live in': 1019632, 'live in area': 495847, 'in area work': 420491, 'area work in': 92289, 'work in the': 1005348, 'the and can': 848686, 'and can get': 59454, 'can get to': 158466, 'get to the': 348499, 'the supermarket then': 868848, 'supermarket then dm': 823265, 'then dm me': 877125, 'dm me and': 248904, 'me and let': 522414, 'and let me': 66109, 'let me know': 486902, 'me know what': 523047, 'you need and': 1019963, 'need and we': 554444, 'and we ll': 75302, 'we ll deliver': 972242, 'll deliver it': 496698, 'deliver it when': 233155, 'it when you': 462341, 'when you re': 984593, 'you re home': 1020647, 're home from': 698825, 'home from your': 401278, 'from your shift': 338494, 'your shift fighting': 1025749, 'touro': 927051, 'touro professor': 927052, 'professor share': 682586, 'share what': 755343, 'know you': 477078, 'shop online': 760558, 'touro professor share': 927054, 'professor share what': 682587, 'share what you': 755348, 'to know you': 909007, 'know you shop': 477089, 'you shop online': 1021164, 'shop online during': 760568, 'it so': 461099, 'so hard': 777249, 'hard for': 377914, 'me not': 523223, 'encourage my': 275604, 'shopping habit': 762835, 'habit during': 372604, 'it so hard': 461115, 'so hard for': 777252, 'hard for me': 377917, 'for me not': 323328, 'me not to': 523231, 'not to encourage': 572146, 'to encourage my': 905062, 'encourage my online': 275605, 'online shopping habit': 609139, 'shopping habit during': 762842, 'habit during this': 372607, 'scruffy': 742931, 'scruffy bastard': 742932, 'bastard try': 112512, 'try his': 934491, 'his best': 397241, 'best spread': 127908, 'spread covid': 790493, 'scruffy bastard try': 742933, 'bastard try his': 112513, 'try his best': 934492, 'his best spread': 397242, 'best spread covid': 127909, 'spread covid 19': 790494, 'lic': 488093, 'woodside': 1004316, 'elmhurst': 271571, 'jackson': 464202, 'height': 388800, 'hamburger': 374539, 'twice': 936507, 'nystrong': 578145, 'in lic': 424695, 'lic woodside': 488096, 'woodside elmhurst': 1004321, 'elmhurst jackson': 271576, 'jackson height': 464205, 'height limiting': 388803, 'limiting food': 492817, 'food package': 315730, 'package of': 633337, 'of hamburger': 584416, 'hamburger per': 374548, 'per family': 650829, 'family people': 298153, 'go the': 354201, 'store twice': 810973, 'twice much': 936532, 'much how': 544997, 'that smart': 846347, 'smart nystrong': 775402, 'store in lic': 808333, 'in lic woodside': 424696, 'lic woodside elmhurst': 488097, 'woodside elmhurst jackson': 1004322, 'elmhurst jackson height': 271577, 'jackson height limiting': 464206, 'height limiting food': 388804, 'limiting food package': 492820, 'food package of': 315733, 'package of hamburger': 633342, 'of hamburger per': 584418, 'hamburger per family': 374549, 'per family people': 650832, 'family people have': 298154, 'to go the': 906864, 'go the store': 354210, 'the store twice': 868131, 'store twice much': 810976, 'twice much how': 936533, 'much how is': 544998, 'how is that': 408112, 'is that smart': 452689, 'that smart nystrong': 846348, 'joburg': 466373, 'luthuli': 506875, '6th': 21676, 'floor': 310764, 'sauer': 737378, 'johannesburg': 466505, 'are worried': 91731, 'the then': 869421, 'please make': 660216, 'you contact': 1018029, 'contact medical': 200146, 'medical expert': 526167, 'expert who': 292025, 'who know': 989176, 'know best': 476304, 'best if': 127724, 'in joburg': 424397, 'joburg then': 466376, 'can visit': 160123, 'visit luthuli': 959295, 'luthuli house': 506876, 'house 6th': 406156, '6th floor': 21688, 'floor 54': 310765, '54 sauer': 20334, 'sauer street': 737380, 'street johannesburg': 813017, 'you are worried': 1017293, 'are worried about': 91732, 'worried about the': 1010521, 'about the then': 26537, 'the then please': 869422, 'then please make': 877431, 'please make sure': 660223, 'make sure you': 510540, 'sure you contact': 827853, 'you contact medical': 1018031, 'contact medical expert': 200147, 'medical expert who': 526169, 'expert who know': 292026, 'who know best': 989179, 'know best if': 476305, 'best if you': 127728, 're in joburg': 698871, 'in joburg then': 424398, 'joburg then you': 466377, 'then you can': 877780, 'you can visit': 1017825, 'can visit luthuli': 160126, 'visit luthuli house': 959296, 'luthuli house 6th': 506877, 'house 6th floor': 406157, '6th floor 54': 21689, 'floor 54 sauer': 310767, '54 sauer street': 20335, 'sauer street johannesburg': 737381, 'refunded': 706988, 'develops': 239858, 'schoolclosureuk': 742019, 'will school': 994755, 'school fee': 741786, 'fee be': 302148, 'be refunded': 116748, 'refunded if': 706989, 'the cause': 850539, 'cause closure': 167517, 'closure this': 184042, 'this article': 886409, 'article will': 94503, 'updated the': 947439, 'situation develops': 772238, 'develops schoolclosureuk': 239866, 'will school fee': 994756, 'school fee be': 741787, 'fee be refunded': 302149, 'be refunded if': 116749, 'refunded if the': 706990, 'if the cause': 414954, 'the cause closure': 850541, 'cause closure this': 167518, 'closure this article': 184043, 'this article will': 886435, 'article will be': 94504, 'be updated the': 117893, 'updated the situation': 947441, 'the situation develops': 867252, 'situation develops schoolclosureuk': 772241, 'inxink': 444417, 'inxnews': 444419, 're continuing': 698462, 'continuing operation': 201536, 'operation at': 613146, 'our plant': 624361, 'plant to': 658713, 'increased consumer': 433247, 'demand amid': 234927, 'crisis read': 217940, 'read latest': 700395, 'latest press': 481505, 'press release': 671070, 'release inxink': 708959, 'inxink inxnews': 444418, 'we re continuing': 972846, 're continuing operation': 698463, 'continuing operation at': 201537, 'operation at our': 613148, 'at our plant': 100028, 'our plant to': 624362, 'plant to support': 658721, 'support our customer': 826727, 'our customer experiencing': 622660, 'customer experiencing increased': 222360, 'experiencing increased consumer': 291669, 'increased consumer demand': 433249, 'consumer demand amid': 197112, 'demand amid covid': 234930, '19 crisis read': 6308, 'crisis read latest': 217943, 'read latest press': 700396, 'latest press release': 481506, 'press release inxink': 671076, 'release inxink inxnews': 708960, 'determined': 239449, 'dickhead': 240478, 'raiding': 695653, 'determined not': 239454, 'to waste': 918360, 'waste any': 968080, 'any food': 79230, 'all whilst': 45454, 'whilst dickhead': 987627, 'dickhead are': 240479, 'are out': 88876, 'out panic': 627009, 'buying raiding': 150948, 'raiding the': 695664, 'fridge before': 333382, 'before even': 122778, 'think about': 885076, 'about buying': 24911, 'buying more': 150727, 'more stuff': 540486, 'stuff in': 815094, 'in do': 422333, 'not let': 570364, 'let anything': 486603, 'anything go': 80774, 'determined not to': 239455, 'not to waste': 572207, 'to waste any': 918364, 'waste any food': 968081, 'any food at': 79232, 'food at all': 313439, 'at all whilst': 97920, 'all whilst dickhead': 45455, 'whilst dickhead are': 987628, 'dickhead are out': 240480, 'are out panic': 88888, 'out panic buying': 627010, 'panic buying raiding': 637859, 'buying raiding the': 150949, 'raiding the fridge': 695665, 'the fridge before': 855810, 'fridge before even': 333383, 'before even think': 122779, 'even think about': 284687, 'think about buying': 885079, 'about buying more': 24916, 'buying more stuff': 150733, 'more stuff in': 540487, 'stuff in do': 815095, 'in do not': 422335, 'do not let': 249775, 'not let anything': 570365, 'let anything go': 486604, 'anything go to': 80776, 'go to waste': 354381, 'byham': 154810, 'ballingdon': 109093, 'operating': 613053, 'byham dairy': 154811, 'dairy in': 224996, 'in ballingdon': 420678, 'ballingdon is': 109094, 'is operating': 450589, 'operating at': 613057, 'at full': 98724, 'full capacity': 340515, 'capacity demand': 162512, 'service soar': 752844, 'soar due': 779238, 'byham dairy in': 154812, 'dairy in ballingdon': 224997, 'in ballingdon is': 420679, 'ballingdon is operating': 109095, 'is operating at': 450590, 'operating at full': 613059, 'at full capacity': 98725, 'full capacity demand': 340516, 'capacity demand for': 162513, 'for food delivery': 321574, 'delivery service soar': 234462, 'service soar due': 752845, 'soar due to': 779239, 'to the crisis': 916614, 'lot more': 504099, 'are shopping': 90056, 'grocery online': 364771, 'online they': 609549, 'they try': 883593, 'but sometimes': 147123, 'sometimes they': 785241, 'lot more people': 504112, 'more people are': 540006, 'people are shopping': 647077, 'are shopping for': 90059, 'shopping for grocery': 762679, 'for grocery online': 322044, 'grocery online they': 364786, 'online they try': 609552, 'they try to': 883594, 'try to avoid': 934603, '19 but sometimes': 5529, 'but sometimes they': 147125, 'sometimes they cannot': 785242, 'cannot get what': 161916, 'han': 374686, 'don forget': 253522, 'your han': 1024155, 'don forget to': 253531, 'forget to wash': 329338, 'wash your han': 967588, 'knight': 476113, 'frank': 331139, 'predicts': 669680, 'expected': 290870, 'asian stock': 95342, 'stock rose': 802800, 'rose for': 726064, 'the second': 866573, 'second day': 743690, 'row and': 726565, 'and knight': 65879, 'knight frank': 476118, 'frank predicts': 331146, 'predicts that': 669695, 'that house': 844375, 'price might': 675236, 'might not': 531090, 'fall much': 296991, 'much expected': 544873, 'expected read': 290924, 'our briefing': 622271, 'briefing for': 139712, 'your and': 1022781, 'and update': 74733, 'update and': 946859, 'by email': 152464, 'email here': 272200, 'asian stock rose': 95346, 'stock rose for': 802801, 'rose for the': 726065, 'for the second': 326674, 'the second day': 866577, 'second day in': 743691, 'day in row': 227809, 'in row and': 427557, 'row and knight': 726568, 'and knight frank': 65880, 'knight frank predicts': 476119, 'frank predicts that': 331147, 'predicts that house': 669697, 'that house price': 844376, 'house price might': 406498, 'price might not': 675243, 'might not fall': 531093, 'not fall much': 569361, 'fall much expected': 296993, 'much expected read': 544874, 'expected read our': 290925, 'read our briefing': 700500, 'our briefing for': 622272, 'briefing for all': 139713, 'all your and': 45560, 'your and update': 1022782, 'and update and': 74734, 'update and sign': 946864, 'and sign up': 71660, 'sign up by': 769249, 'up by email': 944551, 'by email here': 152465, 'itself': 463910, 'overblown': 631052, 'majorly': 509594, '7500': 22188, '009375': 657, 'not due': 569120, 'to itself': 908635, 'itself but': 463921, 'but because': 145268, 'of emotional': 583069, 'emotional overblown': 273288, 'overblown panic': 631057, 'panic shipping': 638538, 'shipping may': 758869, 'be majorly': 115881, 'majorly effected': 509597, 'effected if': 269180, 'if grocery': 414182, 'store start': 810342, 'start to': 794573, 'shortage there': 765260, 'there could': 878291, 'be real': 116701, 'real problem': 701318, 'problem all': 679444, 'all due': 42638, 'virus that': 958870, 'killed only': 474610, 'only 7500': 610016, '7500 people': 22189, 'people billion': 647281, 'billion on': 130877, 'on earth': 600462, 'earth 009375': 264965, 'not due to': 569121, 'due to itself': 261836, 'to itself but': 908636, 'itself but because': 463922, 'but because of': 145271, 'because of emotional': 119337, 'of emotional overblown': 583070, 'emotional overblown panic': 273289, 'overblown panic shipping': 631058, 'panic shipping may': 638539, 'shipping may be': 758870, 'may be majorly': 521007, 'be majorly effected': 115882, 'majorly effected if': 509598, 'effected if grocery': 269181, 'if grocery store': 414184, 'grocery store start': 365797, 'store start to': 810343, 'start to have': 794586, 'to have food': 907238, 'have food shortage': 380665, 'food shortage there': 316611, 'shortage there could': 765261, 'there could be': 878292, 'could be real': 208912, 'be real problem': 116703, 'real problem all': 701320, 'problem all due': 679445, 'all due to': 42640, 'due to virus': 262018, 'to virus that': 918201, 'virus that ha': 958873, 'that ha killed': 844121, 'ha killed only': 371083, 'killed only 7500': 474611, 'only 7500 people': 610017, '7500 people billion': 22190, 'people billion on': 647282, 'billion on earth': 130879, 'on earth 009375': 600463, 'bodega': 133780, 'they reduced': 883179, 'reduced the': 706180, 'people allowed': 646808, 'allowed in': 46161, 'supermarket made': 821419, 'made the': 507983, 'the aisle': 848511, 'aisle one': 40334, 'way put': 969828, 'put tape': 690840, 'the floor': 855415, 'floor to': 310847, 'sure we': 827802, 'we stand': 973361, 'stand foot': 793517, 'apart still': 81344, 'still people': 801034, 'just won': 470322, 'won do': 1003787, 'it it': 459163, 'it absolutely': 456246, 'absolutely incredible': 27375, 'incredible better': 433820, 'better off': 128385, 'the bodega': 849818, 'bodega socialdistancing': 133791, 'socialdistancing supermarket': 780770, 'supermarket fail': 820266, 'fail human': 296091, 'they reduced the': 883181, 'reduced the number': 706183, 'of people allowed': 587871, 'people allowed in': 646809, 'allowed in the': 46170, 'the supermarket made': 868687, 'supermarket made the': 821421, 'made the aisle': 507985, 'the aisle one': 848530, 'aisle one way': 40335, 'one way put': 607377, 'way put tape': 969829, 'put tape on': 690841, 'on the floor': 604123, 'the floor to': 855428, 'floor to make': 310852, 'to make sure': 909748, 'make sure we': 510539, 'sure we stand': 827810, 'we stand foot': 973363, 'stand foot apart': 793518, 'foot apart still': 318348, 'apart still people': 81345, 'still people just': 801036, 'people just won': 648567, 'just won do': 470323, 'won do it': 1003788, 'do it it': 249485, 'it it absolutely': 459164, 'it absolutely incredible': 456248, 'absolutely incredible better': 27376, 'incredible better off': 433821, 'better off at': 128386, 'off at the': 593671, 'at the bodega': 100893, 'the bodega socialdistancing': 849820, 'bodega socialdistancing supermarket': 133792, 'socialdistancing supermarket fail': 780773, 'supermarket fail human': 820267, 'sense': 750481, 'printed': 678309, 'trillion': 931950, 'partially': 642527, 'terrible': 838391, 'whereas': 985416, 'autonomy': 104070, 'printing': 678333, '3t': 18469, '7b': 22450, 'upsetting': 947834, 'in what': 430830, 'what world': 982632, 'world doe': 1009493, 'this make': 888742, 'make any': 509701, 'any sense': 79784, 'sense just': 750539, 'just printed': 469494, 'printed three': 678320, 'three trillion': 894091, 'trillion dollar': 931980, 'dollar to': 253092, 'to partially': 911470, 'partially mitigate': 642528, 'mitigate their': 534545, 'their terrible': 874969, 'terrible response': 838426, 'to whereas': 918545, 'whereas ha': 985421, 'no autonomy': 563640, 'autonomy and': 104071, 'and cannot': 59504, 'cannot set': 162086, 'set their': 753493, 'their own': 874157, 'own price': 632145, 'or budget': 614592, 'budget set': 141813, 'set by': 753360, 'by same': 153861, 'are printing': 89225, 'printing 3t': 678334, '3t but': 18470, 'but 7b': 145039, '7b is': 22453, 'is upsetting': 453594, 'in what world': 430835, 'what world doe': 982634, 'world doe this': 1009495, 'doe this make': 251637, 'this make any': 888744, 'make any sense': 509708, 'any sense just': 79785, 'sense just printed': 750541, 'just printed three': 469495, 'printed three trillion': 678321, 'three trillion dollar': 894092, 'trillion dollar to': 931982, 'dollar to partially': 253097, 'to partially mitigate': 911471, 'partially mitigate their': 642529, 'mitigate their terrible': 534546, 'their terrible response': 874970, 'terrible response to': 838427, 'response to whereas': 715898, 'to whereas ha': 918546, 'whereas ha no': 985422, 'ha no autonomy': 371327, 'no autonomy and': 563641, 'autonomy and cannot': 104072, 'and cannot set': 59518, 'cannot set their': 162088, 'set their own': 753494, 'their own price': 874194, 'own price or': 632148, 'price or budget': 675768, 'or budget set': 614593, 'budget set by': 141814, 'set by same': 753362, 'by same folk': 153862, 'folk who are': 312297, 'who are printing': 988195, 'are printing 3t': 89226, 'printing 3t but': 678335, '3t but 7b': 18471, 'but 7b is': 145040, '7b is upsetting': 22455, 'in which': 430855, 'which say': 986288, 'say thing': 739357, 'thing about': 884082, 'about supermarket': 26279, 'supermarket supply': 823044, 'chain and': 170452, 'in which say': 430865, 'which say thing': 986289, 'say thing about': 739358, 'thing about supermarket': 884093, 'about supermarket supply': 26288, 'supermarket supply chain': 823045, 'supply chain and': 824903, 'chain and the': 170477, 'and the impact': 73417, 'mailinvoting': 508700, 'vote': 960457, 'cheat': 174331, 'democrat want': 236750, 'want mailinvoting': 965846, 'mailinvoting but': 508701, 'it fine': 458007, 'fine to': 307708, 'stand apart': 793490, 'apart at': 81229, 'at walmart': 101471, 'walmart or': 965381, 'just cannot': 468434, 'cannot do': 161755, 'do that': 250217, 'that to': 847055, 'to vote': 918236, 'vote why': 960526, 'why is': 991095, 'that saturdaymorning': 846121, 'saturdaymorning to': 737100, 'to cheat': 902675, 'democrat want mailinvoting': 236751, 'want mailinvoting but': 965847, 'mailinvoting but it': 508702, 'but it fine': 146122, 'it fine to': 458010, 'fine to stand': 307714, 'to stand apart': 915153, 'stand apart at': 793491, 'apart at walmart': 81231, 'at walmart or': 101476, 'walmart or the': 965385, 'or the supermarket': 617402, 'the supermarket just': 868661, 'supermarket just cannot': 821222, 'just cannot do': 468436, 'cannot do that': 161762, 'do that to': 250231, 'that to vote': 847066, 'to vote why': 918242, 'vote why is': 960527, 'why is that': 991121, 'is that saturdaymorning': 452686, 'that saturdaymorning to': 846122, 'saturdaymorning to cheat': 737101, 'dublin': 261511, 'nursing': 577595, 'icw': 412859, 'ward': 966623, 'banal': 109299, 'reporting': 712653, 'the life': 859335, 'life of': 488916, 'of dublin': 582862, 'dublin supermarket': 261518, 'supermarket go': 820528, 'to nursing': 910761, 'nursing home': 577610, 'or icw': 615705, 'icw ward': 412860, 'ward thank': 966652, 'thank to': 841675, 'to staff': 915132, 'is banal': 445989, 'banal reporting': 109300, 'day in the': 227811, 'in the life': 429318, 'the life of': 859341, 'life of dublin': 488919, 'of dublin supermarket': 582863, 'dublin supermarket go': 261520, 'supermarket go to': 820533, 'go to nursing': 354332, 'to nursing home': 910762, 'nursing home or': 577618, 'home or icw': 401746, 'or icw ward': 615706, 'icw ward thank': 412861, 'ward thank to': 966653, 'thank to staff': 841676, 'to staff this': 915141, 'staff this is': 792972, 'this is banal': 888187, 'is banal reporting': 445990, 'great insight': 362765, 'hospital covid': 404362, '19 communication': 5902, 'communication today': 189653, 'today will': 920539, 'will impact': 993776, 'impact future': 417671, 'future consumer': 342289, 'consumer decision': 197098, 'decision healthcare': 231033, 'healthcare marketing': 387174, 'great insight from': 362766, 'insight from hospital': 439550, 'from hospital covid': 335946, 'hospital covid 19': 404363, 'covid 19 communication': 212830, '19 communication today': 5903, 'communication today will': 189654, 'today will impact': 920542, 'will impact future': 993781, 'impact future consumer': 417672, 'future consumer decision': 342290, 'consumer decision healthcare': 197099, 'decision healthcare marketing': 231034, 'fraudwatch': 331490, 'check from': 174449, 'government watch': 360787, 'watch out': 968500, 'for fraud': 321694, 'fraud fraudwatch': 331270, 'check from the': 174450, 'the government watch': 856623, 'government watch out': 360788, 'watch out for': 968501, 'out for fraud': 626120, 'for fraud fraudwatch': 321695, 'hydro': 411948, 'powering': 667824, 'we recognize': 973041, 'recognize the': 704652, 'the critical': 852491, 'critical role': 218645, 'role hydro': 725085, 'hydro one': 411951, 'one play': 606884, 'play in': 659169, 'in powering': 426887, 'powering community': 667825, 'community across': 189695, 'province since': 687194, 'since the': 770852, 'outbreak began': 628041, 'began the': 123437, 'of ontario': 587277, 'ontario have': 611605, 'been ordered': 121609, 'ordered to': 618919, 'home we': 402449, 'we call': 970882, 'call hydro': 155931, 'one to': 607268, 'to free': 906233, 'we recognize the': 973042, 'recognize the critical': 704653, 'the critical role': 852496, 'critical role hydro': 218646, 'role hydro one': 725086, 'hydro one play': 411952, 'one play in': 606885, 'play in powering': 659172, 'in powering community': 426888, 'powering community across': 667826, 'community across the': 189698, 'across the province': 29515, 'the province since': 864734, 'province since the': 687195, 'since the novel': 770895, 'novel coronavirus covid': 573756, '19 outbreak began': 9087, 'outbreak began the': 628043, 'began the people': 123441, 'in the province': 429486, 'province of ontario': 687186, 'of ontario have': 587279, 'ontario have been': 611606, 'have been ordered': 379626, 'been ordered to': 121610, 'ordered to stay': 618925, 'to stay home': 915293, 'stay home we': 797023, 'home we call': 402452, 'we call hydro': 970884, 'call hydro one': 155932, 'hydro one to': 411953, 'one to free': 607274, 'told the': 923700, 'store supply': 810469, 'is solid': 452077, 'solid and': 781904, 'that there': 846891, 'for mass': 323284, 'mass shopping': 519856, 'shopping amid': 761941, 'outbreak read': 628570, 'told the grocery': 923706, 'grocery store supply': 365826, 'store supply chain': 810471, 'chain is solid': 170844, 'is solid and': 452078, 'solid and that': 781907, 'and that there': 73212, 'that there is': 846899, 'no need for': 564849, 'need for mass': 554852, 'for mass shopping': 323285, 'mass shopping amid': 519857, 'shopping amid the': 761943, '19 outbreak read': 9175, 'outbreak read more': 628572, 'thanking': 841974, 'midst': 530776, 'wednesdaymotivation': 975706, 'join me': 466770, 'me in': 522951, 'in thanking': 428907, 'thanking grocery': 841979, 'worker across': 1006197, 'across america': 29238, 'america these': 51704, 'these american': 879593, 'american hero': 52030, 'hero are': 393938, 'working hard': 1008677, 'hard in': 377945, 'the midst': 860578, 'midst of': 530777, 'outbreak to': 628756, 'ensure we': 278117, 'all have': 43041, 'supply we': 826074, 'grocery wednesdaymotivation': 366119, 'join me in': 466776, 'me in thanking': 522977, 'in thanking grocery': 428908, 'thanking grocery store': 841980, 'store worker across': 811445, 'worker across america': 1006199, 'across america these': 29253, 'america these american': 51705, 'these american hero': 879594, 'american hero are': 52031, 'hero are working': 393942, 'are working hard': 91698, 'working hard in': 1008683, 'hard in the': 377946, 'in the midst': 429359, 'the midst of': 860579, 'midst of the': 530795, 'coronavirus outbreak to': 206418, 'outbreak to ensure': 628758, 'to ensure we': 905202, 'ensure we all': 278118, 'we all have': 970332, 'all have access': 43042, 'the food and': 855531, 'and supply we': 72822, 'supply we need': 826079, 'we need grocery': 972490, 'need grocery wednesdaymotivation': 554933, 'negatively': 556845, 'the gov': 856482, 'gov of': 359645, 'is calling': 446350, 'calling on': 156605, 'on it': 601645, 'it people': 460290, 'of because': 580601, 'is negatively': 449873, 'negatively affecting': 556850, 'security of': 744685, 'the gov of': 856486, 'gov of is': 359646, 'of is calling': 585314, 'is calling on': 446353, 'calling on it': 156612, 'on it people': 601682, 'it people not': 460296, 'people not to': 648876, 'not to stock': 572192, 'to stock food': 915433, 'stock food amid': 802121, 'amid the spread': 52715, 'spread of because': 790653, 'of because it': 580602, 'it is negatively': 459018, 'is negatively affecting': 449874, 'negatively affecting the': 556851, 'affecting the food': 34562, 'the food security': 855599, 'food security of': 316359, 'security of the': 744687, 'of the country': 590901, 'the country 19': 852039, 'refill': 706548, 'stash': 795289, 'we going': 971658, 'with this': 1001673, 'this poverty': 889680, 'poverty in': 667498, 'crisis the': 218160, 'you visit': 1022085, 'visit the': 959376, 'supermarket to': 823350, 'to refill': 913060, 'refill your': 706557, 'your stash': 1025924, 'stash of': 795290, 'paper think': 640901, 'about these': 26609, 'people how': 648301, 'they face': 882080, 'face covid': 294379, '19 not': 8824, 'home think': 402280, 'but what are': 147781, 'are we going': 91570, 'we going to': 971659, 'going to do': 355573, 'do with this': 250573, 'with this poverty': 1001719, 'this poverty in': 889681, 'poverty in time': 667499, 'of crisis the': 582190, 'crisis the next': 218183, 'the next time': 861705, 'time you visit': 898421, 'you visit the': 1022088, 'visit the supermarket': 959399, 'the supermarket to': 868862, 'supermarket to refill': 823405, 'to refill your': 913062, 'refill your stash': 706558, 'your stash of': 1025925, 'stash of hand': 795292, 'of hand sanitizers': 584434, 'sanitizers and toilet': 736209, 'toilet paper think': 921490, 'paper think about': 640902, 'think about these': 885106, 'about these people': 26613, 'these people how': 880443, 'people how will': 648305, 'how will they': 409243, 'will they face': 995179, 'they face covid': 882081, 'face covid 19': 294380, 'covid 19 not': 213485, '19 not working': 8834, 'not working at': 572547, 'working at home': 1008524, 'at home think': 99145, 'mondelez': 536526, 'expects': 291066, 'mondelez expects': 536527, 'expects higher': 291079, 'higher sale': 395734, 'sale in': 732290, 'europe food': 283437, 'food purchase': 316079, 'purchase increase': 689508, 'increase amid': 432670, 'mondelez expects higher': 536528, 'expects higher sale': 291080, 'higher sale in': 395735, 'sale in europe': 732295, 'in europe food': 422636, 'europe food purchase': 283438, 'food purchase increase': 316082, 'purchase increase amid': 689509, 'increase amid covid': 432671, '2008': 13633, 'happened': 377215, 'theft': 872340, 'deregulation': 237841, 'breakdown': 138830, 'held': 388876, 'relatively': 708761, 'two situation': 937219, 'situation are': 772196, 'are completely': 85466, 'completely different': 192254, 'different in': 241966, 'in 2008': 419753, '2008 what': 13701, 'what happened': 981541, 'happened wa': 377296, 'wa clearly': 961823, 'clearly theft': 181583, 'theft due': 872346, 'to deregulation': 904192, 'deregulation now': 237844, 'now there': 576087, 'is breakdown': 446258, 'breakdown because': 138833, 'because many': 119231, 'stock are': 801849, 'are held': 87079, 'held at': 388882, 'at relatively': 100288, 'relatively high': 708766, 'price unfortunately': 677193, 'unfortunately complete': 941585, 'complete collapse': 192077, 'the two situation': 870158, 'two situation are': 937220, 'situation are completely': 772197, 'are completely different': 85467, 'completely different in': 192257, 'different in 2008': 241967, 'in 2008 what': 419759, '2008 what happened': 13702, 'what happened wa': 981548, 'happened wa clearly': 377297, 'wa clearly theft': 961825, 'clearly theft due': 181584, 'theft due to': 872347, 'due to deregulation': 261760, 'to deregulation now': 904193, 'deregulation now there': 237845, 'now there is': 576092, 'there is breakdown': 878534, 'is breakdown because': 446259, 'breakdown because many': 138834, 'because many of': 119232, 'many of the': 514390, 'of the stock': 591492, 'the stock are': 867904, 'stock are held': 801854, 'are held at': 87080, 'held at relatively': 388885, 'at relatively high': 100289, 'relatively high price': 708767, 'high price unfortunately': 395288, 'price unfortunately complete': 677194, 'unfortunately complete collapse': 941586, 'surviving': 829346, 'apparently there': 82023, 'to surviving': 916058, 'surviving than': 829369, 'than just': 840810, 'just and': 468185, 'apparently there more': 82025, 'there more to': 878769, 'more to surviving': 540802, 'to surviving than': 916061, 'surviving than just': 829370, 'than just and': 840812, 'darknet': 226013, 'checked': 174737, 'flogging': 310691, 'seeing report': 746442, 'report around': 711813, 'the darknet': 852841, 'darknet and': 226014, 'and checked': 59786, 'checked out': 174765, 'the marketplace': 860192, 'marketplace for': 517810, 'myself more': 550908, 'more interesting': 539611, 'interesting than': 441624, 'mask they': 519368, 're flogging': 698691, 'flogging dealer': 310692, 'dealer are': 229598, 'also selling': 48851, 'fake coronavirus': 296589, 'coronavirus cure': 205785, 'cure at': 220706, 'at sometimes': 100591, 'sometimes demanding': 785193, 'demanding price': 236606, 'price wonder': 677641, 'will turn': 995251, 'after seeing report': 36158, 'seeing report around': 746443, 'report around the': 711814, 'around the darknet': 93535, 'the darknet and': 852842, 'darknet and checked': 226015, 'and checked out': 59787, 'checked out the': 174768, 'out the marketplace': 627390, 'the marketplace for': 860193, 'marketplace for myself': 517812, 'for myself more': 323766, 'myself more interesting': 550909, 'more interesting than': 539613, 'interesting than the': 441625, 'than the face': 841234, 'face mask they': 294598, 'mask they re': 519374, 'they re flogging': 883037, 're flogging dealer': 698692, 'flogging dealer are': 310693, 'dealer are also': 229599, 'are also selling': 84476, 'also selling fake': 48852, 'selling fake coronavirus': 749233, 'fake coronavirus cure': 296590, 'coronavirus cure at': 205786, 'cure at sometimes': 220707, 'at sometimes demanding': 100592, 'sometimes demanding price': 785194, 'demanding price wonder': 236607, 'price wonder how': 677642, 'wonder how this': 1003960, 'this will turn': 891449, 'will turn out': 995255, 'whom': 990539, 'villain': 957399, 'sykescottages': 830752, 'hugely': 410266, 'moment there': 536065, 'are hero': 87127, 'hero many': 394037, 'of whom': 593145, 'whom are': 990542, 'in caring': 421247, 'caring and': 164699, 'service industry': 752492, 'industry and': 435627, 'and villain': 74965, 'villain company': 957400, 'company taking': 191146, 'advantage shout': 33059, 'to sykescottages': 916109, 'sykescottages who': 830753, 'who will': 989979, 'not refund': 571279, 'refund but': 706872, 'will book': 992839, 'book you': 134639, 'you in': 1019297, 'in for': 423004, 'for hugely': 322435, 'hugely inflated': 410273, 'inflated price': 437022, 'price over': 675812, 'over 200': 629801, '200 next': 13515, 'next year': 561723, 'year coronavillains': 1014492, 'the moment there': 860782, 'moment there are': 536067, 'there are hero': 878112, 'are hero many': 87132, 'hero many of': 394038, 'many of whom': 514402, 'of whom are': 593147, 'whom are in': 990543, 'are in caring': 87359, 'in caring and': 421248, 'caring and service': 164701, 'and service industry': 71305, 'service industry and': 752493, 'industry and villain': 435652, 'and villain company': 74966, 'villain company taking': 957401, 'company taking advantage': 191147, 'taking advantage shout': 833256, 'advantage shout out': 33060, 'out to sykescottages': 627686, 'to sykescottages who': 916110, 'sykescottages who will': 830754, 'who will not': 989993, 'will not refund': 994260, 'not refund but': 571281, 'refund but will': 706873, 'but will book': 147872, 'will book you': 992840, 'book you in': 134640, 'you in for': 1019304, 'in for hugely': 423016, 'for hugely inflated': 322436, 'hugely inflated price': 410274, 'inflated price over': 437061, 'price over 200': 675813, 'over 200 next': 629805, '200 next year': 13516, 'next year coronavillains': 561726, 'world panic': 1009880, 'and toiletry': 74248, 'toiletry america': 923404, 'america panic': 51642, 'food toiletry': 317320, 'toiletry oh': 923435, 'oh and': 596347, 'and gun': 64050, 'the world panic': 871933, 'world panic buy': 1009881, 'panic buy food': 637482, 'buy food and': 148631, 'food and toiletry': 313366, 'and toiletry america': 74249, 'toiletry america panic': 923405, 'america panic buy': 51643, 'buy food toiletry': 148685, 'food toiletry oh': 317325, 'toiletry oh and': 923436, 'oh and gun': 596353, 'centric': 169584, 'sussex': 829731, 'swamped': 829937, 'great list': 362802, 'list by': 494291, 'by of': 153391, 'of place': 588137, 'order ingredient': 618326, 'ingredient online': 438386, 'online london': 608506, 'london centric': 501048, 'centric but': 169589, 'but with': 147892, 'with uk': 1001883, 'uk wide': 938897, 'wide option': 991741, 'option ve': 614135, 've even': 953085, 'even managed': 284322, 'for weekly': 327773, 'weekly sussex': 977581, 'sussex veg': 829734, 'veg box': 953727, 'box from': 137066, 'from since': 337296, 'since and': 770504, 'others are': 621266, 'are swamped': 90688, 'swamped right': 829938, 'this is great': 888272, 'is great list': 448198, 'great list by': 362804, 'list by of': 494292, 'by of place': 153394, 'of place to': 588141, 'place to order': 657761, 'to order ingredient': 911074, 'order ingredient online': 618327, 'ingredient online london': 438387, 'online london centric': 608507, 'london centric but': 501049, 'centric but with': 169590, 'but with uk': 147903, 'with uk wide': 1001887, 'uk wide option': 938899, 'wide option ve': 991742, 'option ve even': 614136, 've even managed': 953088, 'even managed to': 284323, 'managed to sign': 512510, 'sign up for': 769251, 'up for weekly': 944973, 'for weekly sussex': 327775, 'weekly sussex veg': 977582, 'sussex veg box': 829735, 'veg box from': 953728, 'box from since': 137067, 'from since and': 337297, 'since and others': 770505, 'and others are': 68435, 'others are swamped': 621279, 'are swamped right': 90689, 'swamped right now': 829939, 'braving': 138279, '55': 20352, 'easily': 265183, 'manipulated': 513205, 'react': 700120, 'after braving': 35429, 'braving the': 138285, 'in town': 430246, 'town of': 927519, 'of 55': 579625, '55 00': 20353, '00 am': 51, 'am officially': 50272, 'officially scared': 596021, 'scared not': 740987, 'not of': 570717, 'but of': 146634, 'how easily': 407773, 'easily manipulated': 265226, 'manipulated people': 513208, 'are how': 87251, 'selfish they': 748291, 'are and': 84541, 'we react': 973009, 'react in': 700134, 'crisis this': 218220, 'crisis isn': 217600, 'isn even': 454495, 'even big': 283887, 'big one': 129892, 'after braving the': 35430, 'braving the local': 138289, 'store in town': 808407, 'in town of': 430250, 'town of 55': 927520, 'of 55 00': 579626, '55 00 am': 20354, '00 am officially': 56, 'am officially scared': 50274, 'officially scared not': 596022, 'scared not of': 740990, 'not of but': 570718, 'of but of': 580989, 'but of people': 146638, 'of people how': 587924, 'people how easily': 648302, 'how easily manipulated': 407774, 'easily manipulated people': 265227, 'manipulated people are': 513209, 'people are how': 646996, 'are how selfish': 87253, 'how selfish they': 408640, 'selfish they are': 748292, 'they are and': 881202, 'are and how': 84546, 'and how we': 64842, 'how we react': 409187, 'we react in': 973010, 'react in time': 700135, 'of crisis this': 582193, 'crisis this crisis': 218222, 'this crisis isn': 887057, 'crisis isn even': 217602, 'isn even big': 454496, 'even big one': 283890, 'leaf': 483789, 'york region': 1016655, 'region face': 707413, 'face uncertainty': 294824, 'uncertainty panic': 939738, 'buying leaf': 150635, 'leaf store': 483818, 'shelf empty': 757011, 'york region face': 1016657, 'region face uncertainty': 707415, 'face uncertainty panic': 294825, 'uncertainty panic buying': 939739, 'panic buying leaf': 637789, 'buying leaf store': 150637, 'leaf store shelf': 483819, 'store shelf empty': 810073, 'tue': 935081, 'wed': 975541, 'butcher': 148021, 'epilepsy': 279493, 'thu': 895271, 'fri': 333154, 'sat': 736887, 'plan for': 658113, 'week mon': 976535, 'mon work': 536203, 'work tue': 1005943, 'tue wed': 935082, 'wed for': 975548, 'for mum': 323656, 'mum from': 545897, 'from butcher': 334770, 'butcher pick': 148062, 'up epilepsy': 944797, 'epilepsy then': 279494, 'then thu': 877674, 'thu work': 895278, 'work fri': 1005190, 'fri work': 333161, 'work sat': 1005689, 'sat work': 736918, 'work sun': 1005777, 'sun work': 818092, 'work to': 1005878, 'to stayhomesavelives': 915344, 'stayhomesavelives all': 798335, 'all week': 45418, 'week but': 976029, 'work supermarket': 1005779, 'supermarket please': 822007, 'please don': 659905, 'don abuse': 253322, 'abuse the': 27664, 'rule we': 727398, 'can beat': 157717, 'beat this': 118569, 'plan for week': 658130, 'for week mon': 327730, 'week mon work': 976537, 'mon work tue': 536204, 'work tue wed': 1005944, 'tue wed for': 935083, 'wed for mum': 975549, 'for mum from': 323657, 'mum from butcher': 545898, 'from butcher pick': 334772, 'butcher pick up': 148063, 'pick up epilepsy': 655719, 'up epilepsy then': 944798, 'epilepsy then thu': 279495, 'then thu work': 877675, 'thu work fri': 895279, 'work fri work': 1005191, 'fri work sat': 333162, 'work sat work': 1005690, 'sat work sun': 736919, 'work sun work': 1005778, 'sun work to': 818093, 'work to stayhomesavelives': 1005903, 'to stayhomesavelives all': 915346, 'stayhomesavelives all week': 798336, 'all week but': 45421, 'week but have': 976035, 'but have to': 145885, 'have to work': 383341, 'to work supermarket': 918786, 'work supermarket please': 1005782, 'supermarket please don': 822014, 'please don abuse': 659906, 'don abuse the': 253323, 'abuse the rule': 27666, 'the rule we': 866058, 'rule we can': 727399, 'we can beat': 970913, 'can beat this': 157722, 'beat this together': 118572, 'grounded': 366567, 'wild': 992042, 'portfolio': 664989, '401ks': 18799, 'shelter': 757893, 'tactic': 831682, 'love how': 504690, 'how animal': 407369, 'animal keep': 76616, 'keep grounded': 471561, 'grounded in': 366572, 'in wild': 430912, 'wild survive': 992083, 'survive so': 829230, 'so effortlessly': 776936, 'effortlessly they': 269676, 'they don': 881981, 'have large': 381242, 'large stock': 479800, 'stock portfolio': 802693, 'portfolio to': 665013, 'to rely': 913152, 'on or': 602535, 'or 401ks': 614203, '401ks they': 18800, 'they just': 882485, 'just need': 469300, 'need food': 554784, 'food amp': 313128, 'amp shelter': 54482, 'shelter amp': 757894, 'amp few': 53789, 'few protection': 304021, 'protection tactic': 685631, 'tactic we': 831717, 'learn so': 484055, 'much from': 544936, 'from animal': 334536, 'love how animal': 504692, 'how animal keep': 407371, 'animal keep grounded': 76617, 'keep grounded in': 471562, 'grounded in wild': 366573, 'in wild survive': 430913, 'wild survive so': 992084, 'survive so effortlessly': 829231, 'so effortlessly they': 776937, 'effortlessly they don': 269677, 'they don have': 881992, 'don have large': 253606, 'have large stock': 381243, 'large stock portfolio': 479802, 'stock portfolio to': 802695, 'portfolio to rely': 665015, 'to rely on': 913153, 'rely on or': 709645, 'on or 401ks': 602536, 'or 401ks they': 614204, '401ks they just': 18801, 'they just need': 882501, 'just need food': 469303, 'need food amp': 554786, 'food amp shelter': 313147, 'amp shelter amp': 54483, 'shelter amp few': 757895, 'amp few protection': 53790, 'few protection tactic': 304022, 'protection tactic we': 685632, 'tactic we can': 831718, 'can learn so': 158853, 'learn so much': 484056, 'so much from': 777777, 'much from animal': 544937, 'protection warns': 685677, 'warns on': 967274, 'consumer protection warns': 198577, 'protection warns on': 685679, 'warns on covid': 967275, 'publix': 688740, 'at publix': 100221, 'publix grocery': 688760, 'today at publix': 919279, 'at publix grocery': 100224, 'publix grocery store': 688761, 'mysterious': 550994, 'patch': 643929, 'forming': 329673, 'imadethisup': 416614, 'breaking story': 139050, 'story online': 812093, 'online clothes': 608019, 'clothes shopping': 184204, 'shopping rise': 763774, 'rise people': 722974, 'people find': 647919, 'find mysterious': 307088, 'mysterious white': 550997, 'white patch': 987887, 'patch forming': 643938, 'forming on': 329680, 'on clothes': 599946, 'clothes quarantinelife': 184196, 'quarantinelife imadethisup': 692960, 'imadethisup fakenews': 416615, 'breaking story online': 139051, 'story online clothes': 812094, 'online clothes shopping': 608020, 'clothes shopping rise': 184207, 'shopping rise people': 763775, 'rise people find': 722976, 'people find mysterious': 647920, 'find mysterious white': 307089, 'mysterious white patch': 550998, 'white patch forming': 987888, 'patch forming on': 643939, 'forming on clothes': 329681, 'on clothes quarantinelife': 599948, 'clothes quarantinelife imadethisup': 184197, 'quarantinelife imadethisup fakenews': 692961, 'alliance': 45833, 'xu': 1013911, 'ipo': 444603, 'simultaneously': 770373, 'driver united': 259823, 'united alliance': 942142, 'alliance ceo': 45834, 'ceo xu': 169894, 'xu quietly': 1013912, 'quietly filed': 694721, 'filed for': 305400, 'for ipo': 322651, 'ipo during': 444606, 'during simultaneously': 263017, 'simultaneously dropped': 770376, 'dropped lowest': 260587, 'lowest pay': 506197, 'pay to': 645177, 'to delivery': 904124, 'delivery making': 234167, 'making worker': 511497, 'worker buy': 1006565, 'buy ma': 148930, 'driver united alliance': 259824, 'united alliance ceo': 942143, 'alliance ceo xu': 45835, 'ceo xu quietly': 169895, 'xu quietly filed': 1013913, 'quietly filed for': 694722, 'filed for ipo': 305402, 'for ipo during': 322652, 'ipo during simultaneously': 444607, 'during simultaneously dropped': 263018, 'simultaneously dropped lowest': 770377, 'dropped lowest pay': 260588, 'lowest pay to': 506198, 'pay to delivery': 645181, 'to delivery making': 904128, 'delivery making worker': 234168, 'making worker buy': 511498, 'worker buy ma': 1006567, 'cut amid': 223225, 'oil cut amid': 596725, 'cut amid coronavirus': 223226, 'amid coronavirus pandemic': 52426, 'cardiac': 163750, 'woodman': 1004309, 'doings': 252895, 'continue my': 201071, 'wife is': 991935, 'is cardiac': 446381, 'cardiac nurse': 163751, 'nurse and': 577193, 'and after': 57751, 'after 12': 35267, '12 hour': 2864, 'hour shift': 405909, 'shift we': 758463, 'we went': 973773, 'to lunch': 909523, 'lunch at': 506709, 'the woodman': 871688, 'woodman and': 1004310, 'were people': 979970, 'people but': 647316, 'but wonderful': 147920, 'wonderful food': 1004079, 'and le': 66007, 'le chance': 482871, '19 than': 11124, 'supermarket what': 823788, 'the doings': 853506, 'doings government': 252896, 'continue my wife': 201072, 'my wife is': 550593, 'wife is cardiac': 991937, 'is cardiac nurse': 446382, 'cardiac nurse and': 163752, 'nurse and after': 577194, 'and after 12': 57752, 'after 12 hour': 35269, '12 hour shift': 2866, 'hour shift we': 405926, 'shift we went': 758464, 'we went to': 973777, 'went to lunch': 979171, 'to lunch at': 909524, 'lunch at the': 506711, 'at the woodman': 101155, 'the woodman and': 871689, 'woodman and there': 1004311, 'and there were': 73855, 'there were people': 879328, 'were people but': 979971, 'people but wonderful': 647327, 'but wonderful food': 147921, 'wonderful food and': 1004080, 'food and le': 313268, 'and le chance': 66011, 'le chance of': 482872, 'chance of getting': 171754, 'covid 19 than': 213926, '19 than the': 11132, 'than the supermarket': 841274, 'the supermarket what': 868899, 'supermarket what are': 823791, 'what are the': 981068, 'are the doings': 90819, 'the doings government': 853507, 'doings government to': 252897, 'government to address': 360700, 'bluecollarsolid': 133497, 'applause': 82288, 'staff bluecollarsolid': 792269, 'bluecollarsolid worker': 133498, 'worker deserve': 1006756, 'deserve our': 238089, 'our applause': 622092, 'applause and': 82289, 'and big': 58955, 'big thanks': 130059, 'thanks who': 842279, 'work during': 1005065, '19 usa': 11700, 'usa canada': 948603, 'canada europe': 160425, 'and thanks': 73171, 'for limiting': 322987, 'limiting purchase': 492853, 'purchase for': 689453, 'others well': 621769, 'thanks to all': 842203, 'the supermarket staff': 868819, 'supermarket staff bluecollarsolid': 822820, 'staff bluecollarsolid worker': 792270, 'bluecollarsolid worker deserve': 133499, 'worker deserve our': 1006762, 'deserve our applause': 238090, 'our applause and': 622093, 'applause and big': 82290, 'and big thanks': 58967, 'big thanks who': 130062, 'thanks who have': 842280, 'who have to': 988965, 'to work during': 918712, 'work during covid': 1005067, 'covid 19 usa': 214009, '19 usa canada': 11701, 'usa canada europe': 948604, 'canada europe and': 160426, 'europe and thanks': 283400, 'and thanks for': 73172, 'thanks for limiting': 842066, 'for limiting purchase': 322990, 'limiting purchase for': 492855, 'purchase for others': 689457, 'for others well': 324206, 'serf': 751185, 'prankster': 668963, 'terror': 838583, 'convid': 202596, 'this serf': 890029, 'serf him': 751195, 'him right': 396697, 'right tiktok': 722324, 'tiktok coronavirus': 895895, 'coronavirus prankster': 206576, 'prankster arrested': 668964, 'arrested on': 93863, 'on terror': 603906, 'terror attack': 838584, 'attack convid': 102096, 'convid 19': 202597, 'this serf him': 890030, 'serf him right': 751196, 'him right tiktok': 396700, 'right tiktok coronavirus': 722325, 'tiktok coronavirus prankster': 895896, 'coronavirus prankster arrested': 206577, 'prankster arrested on': 668966, 'arrested on terror': 93865, 'on terror attack': 603907, 'terror attack convid': 838585, 'attack convid 19': 102097, 'make sanitizer': 510419, 'sanitizer at': 734500, 'how to make': 409042, 'to make sanitizer': 909733, 'make sanitizer at': 510420, 'sanitizer at home': 734509, 'at 22': 97529, '22 90': 15176, '90 oil': 23325, 'price at 22': 672786, 'at 22 90': 97530, '22 90 oil': 15177, '90 oil price': 23326, 'status': 796654, 'gdp': 344858, 'tn': 899379, 'borrowing': 135628, 'contraction': 201795, '2tn': 16868, '136': 3355, 'usa about': 948573, 'it debt': 457487, 'debt status': 230567, 'status downgraded': 796673, 'downgraded let': 257563, 'let go': 486747, 'go through': 354243, 'through some': 894683, 'some number': 783371, 'number current': 576863, 'current national': 221268, 'national debt': 552473, 'debt 22': 230402, '22 trillion': 15251, 'trillion 2019': 931951, '2019 gdp': 13969, 'gdp 20': 344859, '20 tn': 13387, 'tn proposed': 899391, 'proposed covid': 684526, 'related extra': 708434, 'extra borrowing': 293461, 'borrowing tn': 135638, 'tn expected': 899384, 'expected gdp': 290893, 'gdp 65': 344863, '65 consumer': 21345, 'consumer contraction': 196971, 'contraction 2020': 201796, '2020 2tn': 14109, '2tn debt': 16869, 'debt gdp': 230488, 'gdp 2020': 344861, '2020 136': 14092, '136 growing': 3356, 'is the usa': 452970, 'the usa about': 870534, 'usa about to': 948574, 'about to have': 26722, 'to have it': 907260, 'have it debt': 381145, 'it debt status': 457488, 'debt status downgraded': 230568, 'status downgraded let': 796674, 'downgraded let go': 257564, 'let go through': 486753, 'go through some': 354253, 'through some number': 894685, 'some number current': 783372, 'number current national': 576864, 'current national debt': 221269, 'national debt 22': 552474, 'debt 22 trillion': 230403, '22 trillion 2019': 15252, 'trillion 2019 gdp': 931952, '2019 gdp 20': 13970, 'gdp 20 tn': 344860, '20 tn proposed': 13388, 'tn proposed covid': 899392, 'proposed covid 19': 684527, '19 related extra': 10051, 'related extra borrowing': 708435, 'extra borrowing tn': 293462, 'borrowing tn expected': 135639, 'tn expected gdp': 899385, 'expected gdp 65': 290894, 'gdp 65 consumer': 344864, '65 consumer contraction': 21346, 'consumer contraction 2020': 196972, 'contraction 2020 2tn': 201797, '2020 2tn debt': 14110, '2tn debt gdp': 16870, 'debt gdp 2020': 230489, 'gdp 2020 136': 344862, '2020 136 growing': 14093, 'edible': 268536, 'dab': 224256, 'whiskey': 987758, 'ammo': 52889, 'dash': 226064, 'repost edible': 712814, 'edible dab': 268545, 'dab whiskey': 224257, 'whiskey ammo': 987759, 'ammo people': 52908, 'making mad': 511184, 'mad dash': 507538, 'dash to': 226073, 'for potential': 324651, 'potential 14': 667014, '14 day': 3437, 'day quarantine': 228262, 'quarantine covid': 692112, 'spread in': 790569, 'community sure': 190139, 'need enough': 554736, 'but for': 145741, 'repost edible dab': 712815, 'edible dab whiskey': 268546, 'dab whiskey ammo': 224258, 'whiskey ammo people': 987760, 'ammo people are': 52909, 'people are making': 647018, 'are making mad': 87990, 'making mad dash': 511185, 'mad dash to': 507540, 'dash to stock': 226075, 'up for potential': 944955, 'for potential 14': 324652, 'potential 14 day': 667015, '14 day quarantine': 3455, 'day quarantine covid': 228263, 'quarantine covid 19': 692113, '19 spread in': 10745, 'spread in our': 790579, 'in our community': 426271, 'our community sure': 622483, 'community sure you': 190140, 'sure you need': 827869, 'you need enough': 1019986, 'need enough food': 554737, 'enough food but': 277387, 'food but for': 313814, 'but for many': 145747, 'maker': 510805, 'coronapocalypse2020': 205210, 'paper maker': 640441, 'maker say': 510863, 've ramped': 953470, 'up production': 945850, 'production to': 682236, 'handle the': 376265, 'the increased': 858071, 'pandemic coronapocalypse2020': 635229, 'coronapocalypse2020 toiletpaper': 205211, 'toiletpaper toiletpapergate': 922682, 'toilet paper maker': 921348, 'paper maker say': 640443, 'maker say they': 510865, 'they ve ramped': 883676, 've ramped up': 953471, 'ramped up production': 696474, 'up production to': 945856, 'production to handle': 682244, 'to handle the': 907134, 'handle the increased': 376271, 'the increased demand': 858074, 'increased demand amid': 433259, 'demand amid the': 234933, 'amid the pandemic': 52706, 'the pandemic coronapocalypse2020': 862937, 'pandemic coronapocalypse2020 toiletpaper': 635230, 'coronapocalypse2020 toiletpaper toiletpapergate': 205212, 'wuhanvirus': 1013561, 'ccp': 168445, 'price fall': 673767, 'fall again': 296809, 'again despite': 36973, 'despite opec': 238808, 'opec deal': 611867, 'deal to': 229505, 'cut production': 223498, 'production oil': 682160, 'oil wuhanvirus': 597529, 'wuhanvirus ccp': 1013569, 'oil price fall': 597126, 'price fall again': 673772, 'fall again despite': 296810, 'again despite opec': 36974, 'despite opec deal': 238809, 'opec deal to': 611871, 'deal to cut': 229507, 'to cut production': 903884, 'cut production oil': 223507, 'production oil wuhanvirus': 682161, 'oil wuhanvirus ccp': 597530, 'father': 300273, 'separated': 751090, 'daughter father': 226838, 'father and': 300274, 'are separated': 89987, 'separated and': 751091, 'and co': 60034, 'co parent': 184940, 'parent do': 641616, 'know how': 476428, 'single parent': 771364, 'parent who': 641776, 'who do': 988615, 'have support': 382863, 'support cope': 826442, 'cope can': 203309, 'can just': 158788, 'just about': 468126, 'about cope': 25017, 'cope brought': 203307, 'brought home': 141156, 'home to': 402303, 'week by': 976050, 'by friend': 152643, 'who cannot': 988415, 'cannot bring': 161684, 'bring he': 139981, 'my daughter father': 547923, 'daughter father and': 226839, 'father and are': 300275, 'and are separated': 58360, 'are separated and': 89988, 'separated and co': 751092, 'and co parent': 60040, 'co parent do': 184941, 'parent do not': 641617, 'not know how': 570295, 'know how single': 476455, 'how single parent': 408690, 'single parent who': 771369, 'parent who do': 641778, 'who do not': 988617, 'not have support': 569874, 'have support cope': 382864, 'support cope can': 826443, 'cope can just': 203310, 'can just about': 158789, 'just about cope': 468129, 'about cope brought': 25018, 'cope brought home': 203308, 'brought home to': 141158, 'home to me': 402330, 'to me this': 909962, 'me this week': 523724, 'this week by': 891196, 'week by friend': 976053, 'by friend who': 152647, 'friend who cannot': 333893, 'who cannot bring': 988419, 'cannot bring he': 161685, 'supportlocal': 827253, 'delaware': 232642, 'boutique': 136930, 'brewery': 139428, 'easier': 265128, 'supportlocal shopping': 827265, 'shopping delaware': 762444, 'delaware local': 232657, 'retailer from': 719155, 'from boutique': 334719, 'boutique to': 136941, 'to restaurant': 913387, 'restaurant to': 716758, 'to brewery': 902011, 'brewery is': 139442, 'is easier': 447425, 'easier with': 265172, 'with online': 999892, 'online ordering': 608705, 'ordering direct': 618956, 'direct shopping': 243386, 'pickup view': 656043, 'view the': 957163, 'state top': 796037, 'top product': 925696, 'product on': 681462, 'update page': 947154, 'page at': 633831, 'supportlocal shopping delaware': 827266, 'shopping delaware local': 762445, 'delaware local retailer': 232658, 'local retailer from': 498353, 'retailer from boutique': 719156, 'from boutique to': 334720, 'boutique to restaurant': 136942, 'to restaurant to': 913395, 'restaurant to brewery': 716759, 'to brewery is': 902012, 'brewery is easier': 139444, 'is easier with': 447426, 'easier with online': 265173, 'with online ordering': 999899, 'online ordering direct': 608709, 'ordering direct shopping': 618957, 'direct shopping and': 243387, 'curbside pickup view': 220664, 'pickup view the': 656044, 'view the state': 957171, 'the state top': 867818, 'state top product': 796038, 'top product on': 925697, 'product on our': 681469, 'on our covid': 602587, '19 update page': 11675, 'update page at': 947155, 'drive through': 259174, 'through supermarket': 894695, 'supermarket concept': 819754, 'concept video': 192876, 'video could': 956692, 'could this': 209768, 'this work': 891492, 'work 19': 1004691, 'pandemic concept': 635179, 'concept stayhome': 192871, 'drive through supermarket': 259186, 'through supermarket concept': 894699, 'supermarket concept video': 819755, 'concept video could': 192877, 'video could this': 956693, 'could this work': 209773, 'this work 19': 891493, 'work 19 virus': 1004693, '19 virus pandemic': 11827, 'virus pandemic concept': 958598, 'pandemic concept stayhome': 635180, 'totino': 926419, 'upped': 947675, '119': 2694, 'patrona': 644428, 'dear consumer': 229763, 'consumer totino': 199343, 'totino would': 926420, 'like all': 489743, 'know that': 476748, 'that since': 846323, 'since half': 770635, 'of america': 580032, 'america will': 51745, 'not leave': 570345, 'house for': 406300, 'week during': 976176, 'crisis we': 218338, 'have upped': 383477, 'upped production': 947678, 'of pizza': 588130, 'pizza roll': 657201, 'roll to': 725550, 'to 119': 899456, '119 trillion': 2699, 'trillion week': 932011, 'week thank': 976971, 'your patrona': 1025236, 'dear consumer totino': 229768, 'consumer totino would': 199344, 'totino would like': 926421, 'would like all': 1011991, 'like all of': 489746, 'all of our': 43706, 'of our customer': 587447, 'our customer to': 622677, 'customer to know': 222967, 'to know that': 908995, 'know that since': 476787, 'that since half': 846325, 'since half of': 770636, 'half of america': 374218, 'of america will': 580048, 'america will not': 51747, 'will not leave': 994242, 'not leave the': 570351, 'leave the house': 484970, 'the house for': 857608, 'house for week': 406312, 'for week during': 327702, 'week during this': 976178, 'during this covid': 263272, '19 crisis we': 6347, 'crisis we have': 218347, 'we have upped': 971979, 'have upped production': 383478, 'upped production of': 947679, 'production of pizza': 682150, 'of pizza roll': 588132, 'pizza roll to': 657202, 'roll to 119': 725551, 'to 119 trillion': 899457, '119 trillion week': 2700, 'trillion week thank': 932012, 'week thank you': 976972, 'you for your': 1018688, 'for your patrona': 328189, 'continued': 201301, 'purdue': 689945, 'athletics': 101783, 'boilerup': 134056, 'these local': 880243, 'and chain': 59701, 'chain are': 170489, 'open and': 612046, 'providing carry': 686955, 'carry out': 165135, 'out delivery': 625941, 'delivery option': 234271, 'option we': 614141, 'we thank': 973511, 'thank everyone': 841557, 'everyone for': 286918, 'their continued': 872872, 'continued support': 201345, 'support of': 826684, 'of purdue': 588610, 'purdue athletics': 689946, 'athletics boilerup': 101784, 'these local business': 880244, 'local business and': 497749, 'business and chain': 143292, 'and chain are': 59702, 'chain are open': 170508, 'are open and': 88785, 'open and providing': 612072, 'and providing carry': 69708, 'providing carry out': 686956, 'carry out delivery': 165137, 'out delivery option': 625947, 'delivery option we': 234274, 'option we thank': 614144, 'we thank everyone': 973512, 'thank everyone for': 841559, 'everyone for their': 286921, 'for their continued': 326814, 'their continued support': 872874, 'continued support of': 201347, 'support of purdue': 826693, 'of purdue athletics': 588611, 'purdue athletics boilerup': 689947, '311': 17616, 'daily count': 224566, 'count of': 210139, 'of nyc': 587122, 'nyc 311': 577953, '311 consumer': 17617, 'complaint since': 192029, 'daily count of': 224567, 'count of nyc': 210140, 'of nyc 311': 587123, 'nyc 311 consumer': 577954, '311 consumer complaint': 17618, 'consumer complaint since': 196860, 'complaint since covid': 192030, 'wayne': 970217, 'pa': 632827, 'seafood': 743117, 'palmsunday': 634620, 'zeoliarmy': 1027387, 'the wayne': 871211, 'wayne pa': 970218, 'pa area': 632834, 'area go': 92026, 'to seafood': 913946, 'seafood usa': 743153, 'usa today': 948770, 'today their': 920308, 'their selection': 874641, 'selection and': 747513, 'price were': 677438, 'were amazing': 979323, 'amazing today': 50808, 'today palmsunday': 920015, 'palmsunday zeoliarmy': 634625, 'you are in': 1017151, 'are in the': 87448, 'in the wayne': 429665, 'the wayne pa': 871212, 'wayne pa area': 970219, 'pa area go': 632835, 'area go to': 92027, 'go to seafood': 354354, 'to seafood usa': 913947, 'seafood usa today': 743154, 'usa today their': 948772, 'today their selection': 920309, 'their selection and': 874642, 'selection and price': 747514, 'and price were': 69487, 'price were amazing': 677442, 'were amazing today': 979325, 'amazing today palmsunday': 50809, 'today palmsunday zeoliarmy': 920016, 'chemist': 175398, 'indispensable': 435108, 'are supermarket': 90647, 'supermarket grocery': 820572, 'grocery shop': 364963, 'shop convenience': 760072, 'convenience store': 202339, 'store chemist': 806961, 'chemist or': 175441, 'other indispensable': 620418, 'indispensable service': 435111, 'service you': 753124, 'you may': 1019789, 'may find': 521187, 'find the': 307278, 'continue trading': 201281, 'trading at': 928837, 'moment is': 535969, 'll help': 496842, 'you find': 1018569, 'best way': 127982, 'way ceo': 969521, 'unless you are': 942664, 'you are supermarket': 1017248, 'are supermarket grocery': 90650, 'supermarket grocery shop': 820583, 'grocery shop convenience': 364969, 'shop convenience store': 760073, 'convenience store chemist': 202343, 'store chemist or': 806963, 'chemist or other': 175443, 'or other indispensable': 616437, 'other indispensable service': 620419, 'indispensable service you': 435112, 'service you may': 753125, 'you may find': 1019799, 'may find the': 521192, 'find the only': 307296, 'way to continue': 970004, 'to continue trading': 903411, 'continue trading at': 201282, 'trading at the': 928841, 'the moment is': 860762, 'moment is online': 535971, 'is online we': 450525, 'online we ll': 609700, 'we ll help': 972256, 'll help you': 496844, 'help you find': 390971, 'you find the': 1018580, 'find the best': 307283, 'the best way': 849563, 'best way ceo': 127983, 'dining': 243005, 'the four': 855735, 'four largest': 330622, 'largest city': 479929, 'city have': 179175, 'now closed': 574394, 'closed restaurant': 183308, 'restaurant dining': 716421, 'dining area': 243008, 'the four largest': 855739, 'four largest city': 330623, 'largest city have': 479930, 'city have now': 179179, 'have now closed': 381727, 'now closed restaurant': 574404, 'closed restaurant dining': 183309, 'restaurant dining area': 716422, 'beach': 118184, 'adding': 31657, 'more from': 539296, 'family to': 298319, 'the beach': 849374, 'beach adding': 118185, 'adding that': 31697, 'that whole': 847523, 'whole family': 990191, 'family should': 298223, 'not go': 569669, 'more from this': 539311, 'from this is': 337998, 'this is not': 888334, 'is not the': 450202, 'time to take': 898082, 'to take the': 916244, 'take the family': 832645, 'the family to': 854906, 'family to the': 298331, 'to the beach': 916513, 'the beach adding': 849375, 'beach adding that': 118186, 'adding that whole': 31700, 'that whole family': 847525, 'whole family should': 990202, 'family should not': 298225, 'should not go': 766247, 'not go to': 569690, 'wastewater': 968296, 'reduces': 706226, 'wastewater transport': 968298, 'transport service': 929937, 'service temporarily': 752903, 'temporarily reduces': 837529, 'reduces price': 706243, 'help texas': 390633, 'texas restaurant': 839818, 'restaurant comply': 716395, 'with local': 999276, 'local health': 498069, 'health regulation': 386784, 'regulation amidst': 708045, 'amidst pandemic': 52811, 'wastewater transport service': 968299, 'transport service temporarily': 929938, 'service temporarily reduces': 752904, 'temporarily reduces price': 837530, 'reduces price to': 706245, 'price to help': 676999, 'to help texas': 907645, 'help texas restaurant': 390634, 'texas restaurant comply': 839820, 'restaurant comply with': 716396, 'comply with local': 192534, 'with local health': 999281, 'local health regulation': 498071, 'health regulation amidst': 386785, 'regulation amidst pandemic': 708046, 'dfs': 240058, 'bargain': 111046, 'news in': 560526, 'the light': 859354, 'pandemic that': 636648, 'is covid': 446867, 'the dfs': 853236, 'dfs sale': 240061, 'sale may': 732354, 'may finally': 521184, 'finally end': 305979, 'end grab': 275833, 'grab bargain': 361465, 'bargain before': 111047, 'price go': 674199, 'go up': 354416, 'up dfs': 944710, 'breaking news in': 139004, 'news in the': 560534, 'in the light': 429320, 'the light of': 859356, 'the pandemic that': 863120, 'pandemic that is': 636652, 'that is covid': 844571, 'is covid 19': 446868, '19 the dfs': 11184, 'the dfs sale': 853237, 'dfs sale may': 240063, 'sale may finally': 732355, 'may finally end': 521185, 'finally end grab': 305980, 'end grab bargain': 275834, 'grab bargain before': 361466, 'bargain before the': 111048, 'before the price': 123184, 'the price go': 864356, 'price go up': 674208, 'go up dfs': 354427, 'michigan': 530309, 'sen': 749664, 'ruth': 728694, 'jeremy': 465137, 'moss': 542042, 'michigan wa': 530388, 'wa among': 961519, 'among the': 53057, 'first state': 309019, 'state to': 796007, 'take action': 831887, 'action against': 29925, 'against price': 37587, 'pandemic sen': 636424, 'sen ruth': 749679, 'ruth johnson': 728695, 'johnson who': 466640, 'who introduced': 989050, 'introduced the': 443455, 'the bill': 849689, 'bill with': 130731, 'with sen': 1000630, 'sen jeremy': 749671, 'jeremy moss': 465138, 'moss said': 542043, 'said in': 731134, 'in statement': 428249, 'statement that': 796216, 'that profiteering': 845871, 'profiteering off': 683070, 'is wrong': 454096, 'michigan wa among': 530389, 'wa among the': 961520, 'among the first': 53061, 'the first state': 855350, 'first state to': 309020, 'state to take': 796027, 'to take action': 916152, 'take action against': 831891, 'action against price': 29934, 'against price gouging': 37588, 'the pandemic sen': 863090, 'pandemic sen ruth': 636425, 'sen ruth johnson': 749680, 'ruth johnson who': 728696, 'johnson who introduced': 466641, 'who introduced the': 989051, 'introduced the bill': 443456, 'the bill with': 849699, 'bill with sen': 130733, 'with sen jeremy': 1000631, 'sen jeremy moss': 749672, 'jeremy moss said': 465139, 'moss said in': 542044, 'said in statement': 731140, 'in statement that': 428252, 'statement that profiteering': 796219, 'that profiteering off': 845872, 'profiteering off the': 683071, 'off the crisis': 594240, 'crisis is wrong': 217599, 'unsuspecting': 943598, 'phishing': 654793, 'using fear': 950479, 'fear around': 301049, 'of unsuspecting': 592668, 'unsuspecting victim': 943599, 'victim from': 956474, 'from fake': 335390, 'fake online': 296682, 'shopping website': 764356, 'to phishing': 911703, 'phishing scam': 654829, 'scam beware': 740081, 'sign find': 769117, 'are using fear': 91418, 'using fear around': 950481, 'fear around the': 301050, 'around the virus': 93567, 'the virus to': 870909, 'virus to take': 958929, 'advantage of unsuspecting': 33041, 'of unsuspecting victim': 592669, 'unsuspecting victim from': 943600, 'victim from fake': 956475, 'from fake online': 335392, 'fake online shopping': 296684, 'online shopping website': 609338, 'shopping website to': 764363, 'website to phishing': 975448, 'to phishing scam': 911704, 'phishing scam beware': 654832, 'scam beware of': 740082, 'beware of the': 129096, 'of the sign': 591466, 'the sign find': 867177, 'sign find out': 769118, 'downtownithaca': 257767, 'ithacany': 463888, 'your continued': 1023332, 'the downtown': 853633, 'downtown community': 257739, 'community during': 189823, '19 situation': 10564, 'situation list': 772374, 'of store': 590238, 'store business': 806775, 'business that': 144471, 'open or': 612423, 'or offering': 616354, 'offering online': 595199, 'shopping or': 763535, 'takeout and': 833137, 'and takeout': 72990, 'delivery is': 234131, 'is available': 445903, 'website downtownithaca': 975247, 'downtownithaca ithacany': 257768, 'for your continued': 328133, 'your continued support': 1023333, 'support of the': 826695, 'of the downtown': 590962, 'the downtown community': 853634, 'downtown community during': 257740, 'community during the': 189826, 'covid 19 situation': 213810, '19 situation list': 10580, 'situation list of': 772375, 'list of store': 494477, 'of store business': 590244, 'store business that': 806777, 'business that are': 144472, 'that are open': 842791, 'are open or': 88797, 'open or offering': 612426, 'or offering online': 616357, 'offering online shopping': 595203, 'online shopping or': 609211, 'shopping or offering': 763549, 'or offering takeout': 616358, 'offering takeout and': 595271, 'takeout and takeout': 833139, 'and takeout delivery': 72991, 'takeout delivery is': 833152, 'delivery is available': 234134, 'is available on': 445927, 'available on our': 104532, 'our website downtownithaca': 625336, 'website downtownithaca ithacany': 975248, 'investigation': 443858, 'business class': 143522, 'class action': 180137, 'action lawsuit': 30064, 'lawsuit investigation': 482538, 'coronavirus consumer business': 205678, 'consumer business class': 196671, 'business class action': 143523, 'class action lawsuit': 180141, 'action lawsuit investigation': 30065, 'fully': 341015, 'idling': 413696, 'feud': 303633, 'over 100': 629762, '100 biofuel': 1845, 'plant across': 658609, 'are fully': 86742, 'fully idling': 341057, 'idling or': 413699, 'or cutting': 614876, 'cutting production': 223769, 'production rate': 682193, 'rate gas': 697232, 'fall because': 296854, 'home due': 401103, 'outbreak and': 627981, 'and major': 66540, 'major oil': 509401, 'oil producer': 597331, 'producer feud': 680618, 'feud over': 303640, 'over output': 630472, 'over 100 biofuel': 629765, '100 biofuel plant': 1846, 'biofuel plant across': 131207, 'plant across the': 658611, 'country are fully': 210465, 'are fully idling': 86747, 'fully idling or': 341058, 'idling or cutting': 413700, 'or cutting production': 614877, 'cutting production rate': 223771, 'production rate gas': 682194, 'rate gas price': 697233, 'gas price fall': 343962, 'price fall because': 673777, 'fall because people': 296855, 'are staying at': 90371, 'at home due': 98979, 'home due to': 401104, '19 outbreak and': 9082, 'outbreak and major': 628001, 'and major oil': 66542, 'major oil producer': 509402, 'oil producer feud': 597338, 'producer feud over': 680619, 'feud over output': 303641, 'competitionalert': 191755, 'participate': 642551, 'stayhomestaysa': 798499, 'is hand': 448261, 'sanitizer face': 734846, 'glove these': 352951, 'these product': 880553, 'product will': 681855, 'will help': 993697, 'the competitionalert': 851380, 'competitionalert competition': 191756, 'competition participate': 191720, 'participate stayhomestaysa': 642562, 'answer is hand': 78061, 'is hand sanitizer': 448263, 'hand sanitizer face': 375393, 'sanitizer face mask': 734847, 'face mask glove': 294543, 'mask glove these': 518749, 'glove these product': 352952, 'these product will': 880564, 'product will help': 681859, 'will help in': 993718, 'help in the': 389909, 'in the fight': 429198, 'against the competitionalert': 37646, 'the competitionalert competition': 851381, 'competitionalert competition participate': 191757, 'competition participate stayhomestaysa': 191722, 'ny wild': 577927, 'wild rn': 992078, 'rn nofood': 724334, 'ny wild rn': 577928, 'wild rn nofood': 992079, '19 our': 9047, 'our hour': 623472, 'operation beginning': 613155, 'beginning wednesday': 123688, 'wednesday march': 975660, '18 will': 4601, 'be 10': 113404, '10 to': 1725, 'our 18': 621975, '18 point': 4577, 'point of': 662552, 'of sale': 589239, 'covid 19 our': 213531, '19 our hour': 9053, 'our hour of': 623474, 'of operation beginning': 587299, 'operation beginning wednesday': 613156, 'beginning wednesday march': 123689, 'wednesday march 18': 975661, 'march 18 will': 515111, '18 will be': 4602, 'will be 10': 992336, 'be 10 to': 113408, '10 to this': 1733, 'to this applies': 917405, 'applies to all': 82532, 'to all of': 900271, 'of our 18': 587418, 'our 18 point': 621976, '18 point of': 4578, 'point of sale': 662566, 'lose': 503416, 'mortgage': 541853, 'savetheeconomy': 737823, 'the madness': 859865, 'madness will': 508219, 'do to': 250378, 'the housing': 857660, 'housing price': 407126, 'price predict': 675973, 'predict price': 669574, 'drop of': 260317, 'of 20': 579445, '20 30': 12896, '30 and': 16959, 'you lose': 1019712, 'lose your': 503500, 'your job': 1024522, 'cannot pay': 162029, 'pay your': 645252, 'your mortgage': 1024881, 'mortgage and': 541858, 'sell you': 748952, 're done': 698559, 'done savetheeconomy': 254997, 'what do you': 981356, 'you think the': 1021677, 'think the madness': 885639, 'the madness will': 859870, 'madness will do': 508220, 'will do to': 993232, 'do to the': 250407, 'to the housing': 916785, 'the housing price': 857663, 'housing price predict': 407138, 'price predict price': 675975, 'predict price drop': 669575, 'price drop of': 673576, 'drop of 20': 260319, 'of 20 30': 579448, '20 30 and': 12897, '30 and if': 16963, 'if you lose': 415472, 'you lose your': 1019716, 'lose your job': 503501, 'your job and': 1024523, 'job and cannot': 465619, 'and cannot pay': 59516, 'cannot pay your': 162036, 'pay your mortgage': 645255, 'your mortgage and': 1024883, 'mortgage and have': 541861, 'and have to': 64289, 'have to sell': 383296, 'to sell you': 914190, 'sell you re': 748956, 'you re done': 1020603, 're done savetheeconomy': 698563, 'mess': 529217, 'obe': 578348, 'mbe': 522057, 'after this': 36398, '19 mess': 8635, 'mess is': 529228, 'over with': 630943, 'all member': 43499, 'nh post': 562046, 'post office': 666230, 'office and': 595351, 'other delivery': 620091, 'delivery company': 233811, 'company and': 190371, 'supermarket chain': 819588, 'chain really': 171030, 'really deserve': 702105, 'deserve like': 238069, 'like an': 489758, 'an obe': 56532, 'obe mbe': 578349, 'mbe or': 522058, 'or something': 617159, 'something because': 784865, 'is amazing': 445607, 'amazing how': 50705, 'how they': 408909, 're providing': 699325, 'providing for': 686998, 'our nation': 623973, 'nation during': 552157, 'after this covid': 36402, 'covid 19 mess': 213428, '19 mess is': 8636, 'mess is over': 529229, 'is over with': 450748, 'over with all': 630944, 'with all member': 997154, 'all member of': 43500, 'member of the': 528152, 'of the nh': 591273, 'the nh post': 861757, 'nh post office': 562047, 'post office and': 666233, 'office and other': 595357, 'and other delivery': 68308, 'other delivery company': 620092, 'delivery company and': 233812, 'company and supermarket': 190394, 'and supermarket chain': 72708, 'supermarket chain really': 819630, 'chain really deserve': 171032, 'really deserve like': 702106, 'deserve like an': 238070, 'like an obe': 489775, 'an obe mbe': 56533, 'obe mbe or': 578350, 'mbe or something': 522059, 'or something because': 617161, 'something because it': 784866, 'it is amazing': 458873, 'is amazing how': 445609, 'amazing how they': 50711, 'how they re': 408925, 'they re providing': 883103, 're providing for': 699326, 'providing for our': 687001, 'for our nation': 324273, 'our nation during': 623976, 'nation during this': 552158, 'bezos': 129270, 'boom': 134790, 'bezos delivery': 129275, 'delivery hire': 234090, 'hire 100': 396974, '00 new': 356, 'new retail': 559488, 'with driven': 998139, 'driven online': 259333, 'shopping boom': 762236, 'bezos delivery hire': 129276, 'delivery hire 100': 234091, 'hire 100 00': 396975, '100 00 new': 1794, '00 new retail': 360, 'new retail worker': 559490, 'retail worker to': 718905, 'worker to keep': 1008012, 'up with driven': 946632, 'with driven online': 998141, 'driven online shopping': 259334, 'online shopping boom': 609056, 'maga': 508269, 'belive': 126473, 'shoot': 759726, 'question is': 693628, 'is how': 448568, 'many maga': 514254, 'maga who': 508301, 'who belive': 988314, 'belive this': 126474, 'is hoax': 448512, 'hoax will': 399749, 'be alive': 113546, 'alive to': 41842, 'vote instead': 960490, 'of stocking': 590217, 'food they': 317160, 'they stock': 883471, 'on gun': 601206, 'gun ammo': 368680, 'ammo to': 52917, 'to shoot': 914438, 'shoot down': 759733, 'down virus': 257431, 'question is how': 693631, 'is how many': 448587, 'how many maga': 408271, 'many maga who': 514255, 'maga who belive': 508302, 'who belive this': 988315, 'belive this is': 126475, 'this is hoax': 888280, 'is hoax will': 448517, 'hoax will be': 399750, 'will be alive': 992350, 'be alive to': 113549, 'alive to vote': 41843, 'to vote instead': 918241, 'vote instead of': 960491, 'instead of stocking': 440324, 'of stocking up': 590219, 'on food they': 600921, 'food they stock': 317178, 'they stock up': 883474, 'up on gun': 945573, 'on gun ammo': 601207, 'gun ammo to': 368683, 'ammo to shoot': 52921, 'to shoot down': 914440, 'shoot down virus': 759734, 'potentialy': 667252, 'that most': 845223, 'most business': 542146, 'business are': 143352, 'being closed': 124956, 'closed can': 183036, 'can the': 159947, 'worker be': 1006498, 'time seeing': 897632, 'seeing they': 746511, 're dealing': 698504, 'with shitty': 1000677, 'shitty customer': 759372, 'and continuing': 60498, 'who potentialy': 989436, 'potentialy have': 667253, 'have coronavirus': 380116, 'now that most': 576009, 'that most business': 845224, 'most business are': 542148, 'business are being': 143358, 'are being closed': 84839, 'being closed can': 124958, 'closed can the': 183037, 'can the supermarket': 159963, 'the supermarket worker': 868915, 'supermarket worker be': 823994, 'worker be paid': 1006502, 'be paid more': 116336, 'paid more at': 634086, 'more at this': 538675, 'at this time': 101261, 'this time seeing': 890686, 'time seeing they': 897633, 'seeing they re': 746512, 'they re dealing': 883017, 're dealing with': 698505, 'dealing with shitty': 229689, 'with shitty customer': 1000678, 'shitty customer and': 759373, 'customer and continuing': 222071, 'and continuing to': 60499, 'continuing to work': 201575, 'work with customer': 1006027, 'with customer who': 997905, 'customer who potentialy': 223083, 'who potentialy have': 989437, 'potentialy have coronavirus': 667254, 'dime': 242911, 'algo': 41646, 'advocating': 33863, 'happen': 377049, 'dime algo': 242914, 'algo after': 41647, 'after advocating': 35314, 'advocating for': 33864, 'senior supermarket': 750415, 'supermarket special': 822793, 'special hour': 787957, 'hour shopping': 405928, 'shopping it': 763093, 'to happen': 907145, 'happen thank': 377158, 'you publix': 1020491, 'publix miami': 688767, 'miami publix': 530196, 'dime algo after': 242915, 'algo after advocating': 41648, 'after advocating for': 35315, 'advocating for senior': 33866, 'for senior supermarket': 325479, 'senior supermarket special': 750416, 'supermarket special hour': 822794, 'special hour shopping': 787963, 'hour shopping it': 405929, 'shopping it going': 763099, 'going to happen': 355616, 'to happen thank': 907160, 'happen thank you': 377159, 'thank you publix': 841804, 'you publix miami': 1020492, 'publix miami publix': 688768, 'diary': 240402, 'orpington': 619670, '4pm': 19502, 'enforced': 276702, 'diary from': 240412, 'in orpington': 426232, 'orpington by': 619671, 'by 4pm': 151657, '4pm today': 19507, 'today not': 919943, 'not all': 568095, 'all shelf': 44305, 'empty but': 274821, 'not everything': 569304, 'available amp': 104214, 'amp no': 54180, 'no queue': 565260, 'queue many': 693988, 'have enforced': 380432, 'enforced maximum': 276717, 'maximum item': 520823, 'item policy': 463578, 'diary from supermarket': 240413, 'from supermarket in': 337488, 'supermarket in orpington': 820953, 'in orpington by': 426233, 'orpington by 4pm': 619672, 'by 4pm today': 151658, '4pm today not': 19510, 'today not all': 919944, 'not all shelf': 568124, 'all shelf are': 44306, 'are empty but': 86143, 'empty but not': 274825, 'but not everything': 146538, 'not everything is': 569307, 'everything is available': 287863, 'is available amp': 445906, 'available amp no': 104216, 'amp no queue': 54185, 'no queue many': 565263, 'queue many supermarket': 693989, 'many supermarket have': 514762, 'supermarket have enforced': 820683, 'have enforced maximum': 380433, 'enforced maximum item': 276718, 'maximum item policy': 520824, 'leg': 485800, 'legged': 485950, 'stool': 804404, 'disappeared': 244054, 'fiat': 304375, 'prop': 684037, 'zombie': 1027685, 'bamksters': 109151, 'ha cut': 370300, 'cut the': 223569, 'last two': 480600, 'two leg': 937005, 'leg off': 485817, 'the three': 869513, 'three legged': 893975, 'legged stool': 485953, 'stool the': 804407, 'industry ha': 435860, 'ha disappeared': 370391, 'disappeared printing': 244068, 'printing more': 678348, 'more fiat': 539208, 'fiat money': 304378, 'money will': 537177, 'will only': 994323, 'only prop': 611022, 'prop up': 684045, 'up zombie': 946768, 'zombie bamksters': 1027702, 'bamksters and': 109152, 'and corporation': 60582, '19 ha cut': 7338, 'ha cut the': 370307, 'cut the last': 223576, 'the last two': 859054, 'last two leg': 480602, 'two leg off': 937006, 'leg off the': 485818, 'off the three': 594277, 'the three legged': 869517, 'three legged stool': 893976, 'legged stool the': 485954, 'stool the consumer': 804408, 'service industry ha': 752495, 'industry ha disappeared': 435862, 'ha disappeared printing': 370394, 'disappeared printing more': 244069, 'printing more fiat': 678349, 'more fiat money': 539209, 'fiat money will': 304379, 'money will only': 537179, 'will only prop': 994334, 'only prop up': 611023, 'prop up zombie': 684052, 'up zombie bamksters': 946769, 'zombie bamksters and': 1027703, 'bamksters and corporation': 109153, 'declared': 231214, 'urging': 948410, 'ha declared': 370324, 'declared it': 231235, 'is business': 446311, 'business usual': 144596, 'usual despite': 950920, 'global coronavirus': 351819, 'crisis urging': 218303, 'urging australian': 948411, 'australian to': 103568, 'to let': 909195, 'go of': 353862, 'their fear': 873298, 'fear amid': 301014, 'amid scene': 52642, 'scene of': 741344, 'the ha declared': 856987, 'ha declared it': 370328, 'declared it is': 231236, 'it is business': 458893, 'is business usual': 446314, 'business usual despite': 144600, 'usual despite the': 950921, 'despite the global': 238885, 'the global coronavirus': 856293, 'global coronavirus crisis': 351820, 'coronavirus crisis urging': 205776, 'crisis urging australian': 218304, 'urging australian to': 948412, 'australian to let': 103569, 'to let go': 909203, 'let go of': 486749, 'go of their': 353865, 'of their fear': 591661, 'their fear amid': 873299, 'fear amid scene': 301015, 'amid scene of': 52643, 'scene of panic': 741348, 'buying and empty': 149901, 'and empty supermarket': 62085, 'failure': 296260, 'resulted': 717670, 'sharpest': 755720, 'gulf': 368629, 'coupled': 211724, 'oilpricewar': 597700, 'opec failure': 611885, 'failure to': 296296, 'to agree': 900180, 'agree on': 38626, 'on deal': 600235, 'deal resulted': 229473, 'resulted in': 717673, 'the sharpest': 866803, 'sharpest oil': 755725, 'price decline': 673397, 'decline since': 231395, 'the gulf': 856937, 'gulf war': 368652, 'war coupled': 966403, 'coupled with': 211725, 'with saudiarabia': 1000584, 'saudiarabia oil': 737346, 'oil flow': 596801, 'flow increase': 311237, 'increase next': 432921, 'month global': 537753, 'global market': 352018, 'market now': 516765, 'now face': 574651, 'face an': 294292, 'an oilpricewar': 56582, 'oilpricewar between': 597703, 'between key': 128813, 'key producer': 473370, 'producer examines': 680610, 'examines the': 288845, 'opec failure to': 611886, 'failure to agree': 296298, 'to agree on': 900182, 'agree on deal': 38627, 'on deal resulted': 600236, 'deal resulted in': 229474, 'resulted in the': 717687, 'in the sharpest': 429543, 'the sharpest oil': 866805, 'sharpest oil price': 755726, 'oil price decline': 597101, 'price decline since': 673403, 'decline since the': 231397, 'since the gulf': 770886, 'the gulf war': 856943, 'gulf war coupled': 368653, 'war coupled with': 966404, 'coupled with saudiarabia': 211739, 'with saudiarabia oil': 1000586, 'saudiarabia oil flow': 737347, 'oil flow increase': 596802, 'flow increase next': 311238, 'increase next month': 432922, 'next month global': 561454, 'month global market': 537754, 'global market now': 352028, 'market now face': 516768, 'now face an': 574653, 'face an oilpricewar': 294293, 'an oilpricewar between': 56583, 'oilpricewar between key': 597704, 'between key producer': 128814, 'key producer examines': 473371, 'producer examines the': 680611, 'examines the impact': 288847, 'dentistry': 237106, 'confusion': 194371, 'furlough': 341875, 'dentistry staff': 237107, 'staff saved': 792824, 'saved after': 737723, 'after confusion': 35488, 'confusion over': 194392, 'over furlough': 630244, 'furlough scheme': 341898, 'scheme left': 741572, 'left surgery': 485655, 'surgery on': 828330, 'dentistry staff saved': 237108, 'staff saved after': 792825, 'saved after confusion': 737724, 'after confusion over': 35489, 'confusion over furlough': 194393, 'over furlough scheme': 630245, 'furlough scheme left': 341899, 'scheme left surgery': 741573, 'left surgery on': 485656, 'surgery on the': 828331, 'bathandbodyworks': 112602, 'are definitely': 85733, 'definitely in': 232354, 'end time': 275997, 'sold completely': 781654, 'completely out': 192331, 'sanitizer handsanitizer': 735029, 'handsanitizer bathandbodyworks': 376488, 'we are definitely': 970522, 'are definitely in': 85736, 'definitely in the': 232355, 'in the end': 429168, 'the end time': 854307, 'end time is': 276001, 'time is sold': 897064, 'is sold completely': 452069, 'sold completely out': 781655, 'completely out of': 192332, 'out of hand': 626750, 'hand sanitizer handsanitizer': 375430, 'sanitizer handsanitizer bathandbodyworks': 735030, 'leaving': 485070, 'praise': 668831, 'ufcw': 937923, 'not leaving': 570355, 'leaving home': 485085, 'home except': 401171, 'except for': 289150, 'walk but': 964757, 'do go': 249338, 'market please': 516856, 'kind praise': 474961, 'praise our': 668856, 'worker they': 1007958, 'they too': 883573, 'too are': 924586, 'are our': 88852, 'our hero': 623419, 'hero ufcw': 394142, 'not leaving home': 570356, 'leaving home except': 485087, 'home except for': 401173, 'except for walk': 289176, 'for walk but': 327613, 'walk but if': 964758, 'but if you': 146001, 'you do go': 1018252, 'do go to': 249345, 'go to market': 354327, 'to market please': 909856, 'market please be': 516857, 'be kind praise': 115620, 'kind praise our': 474962, 'praise our grocery': 668857, 'store worker they': 811605, 'worker they too': 1007972, 'they too are': 883574, 'too are our': 924590, 'are our hero': 88862, 'our hero ufcw': 623428, 'restriction': 717196, 'essential covered': 280948, 'covered watch': 212444, 'watch this': 968568, 'this space': 890270, 'space for': 787095, 'more deal': 538969, 'deal no': 229442, 'no restriction': 565352, 'restriction contact': 717244, 'contact le': 200116, 'le delivery': 482921, 'delivery cheaper': 233797, 'cheaper wholesale': 174294, 'wholesale no': 990459, 'buy 19': 148249, 'we ve got': 973670, 've got the': 953199, 'got the essential': 358899, 'the essential covered': 854501, 'essential covered watch': 280949, 'covered watch this': 212445, 'watch this space': 968578, 'this space for': 890271, 'space for more': 787099, 'for more deal': 323565, 'more deal no': 538970, 'deal no restriction': 229443, 'no restriction contact': 565353, 'restriction contact le': 717245, 'contact le delivery': 200117, 'le delivery cheaper': 482922, 'delivery cheaper wholesale': 233798, 'cheaper wholesale no': 174295, 'wholesale no need': 990460, 'need to panic': 556004, 'to panic buy': 911388, 'panic buy 19': 637458, 'specter': 788326, 'mistrust': 534486, 'devaluation': 239552, 'you not': 1020118, 'not noticed': 570703, 'noticed the': 573487, 'the specter': 867552, 'specter of': 788327, 'of mistrust': 586584, 'mistrust in': 534489, 'country during': 210593, 'fda say': 300918, 'that by': 843073, 'by buying': 152034, 'week people': 976733, 'month do': 537678, 'panic gun': 638154, 'increasing do': 433590, 'not worry': 572563, 'worry we': 1010797, 'be back': 113782, 'back on': 107184, 'our foot': 623147, 'foot which': 318465, 'ha fueled': 370686, 'fueled fear': 340328, 'fear of': 301219, 'of dollar': 582775, 'dollar devaluation': 252977, 'have you not': 383679, 'you not noticed': 1020125, 'not noticed the': 570704, 'noticed the specter': 573488, 'the specter of': 867553, 'specter of mistrust': 788328, 'of mistrust in': 586585, 'mistrust in this': 534490, 'this country during': 886950, 'country during this': 210595, 'this period of': 889528, 'period of the': 651855, 'pandemic the fda': 636676, 'the fda say': 855024, 'fda say that': 300923, 'say that by': 739228, 'that by buying': 843074, 'by buying food': 152038, 'buying food for': 150313, 'for the week': 326775, 'the week people': 871309, 'week people are': 976734, 'are buying food': 85118, 'food for month': 314553, 'for month do': 323514, 'month do not': 537679, 'not panic gun': 570913, 'panic gun sale': 638155, 'gun sale are': 368718, 'sale are increasing': 732064, 'are increasing do': 87480, 'increasing do not': 433591, 'do not worry': 249894, 'not worry we': 572574, 'worry we ll': 1010798, 'll be back': 496572, 'be back on': 113786, 'back on our': 107196, 'on our foot': 602601, 'our foot which': 623150, 'foot which ha': 318466, 'which ha fueled': 985882, 'ha fueled fear': 370688, 'fueled fear of': 340329, 'fear of dollar': 301228, 'of dollar devaluation': 582777, '27': 16248, 'wrenching': 1012725, 'marie': 515701, 'll watch': 497097, 'our report': 624590, 'report on': 712137, 'on grocery': 601177, 'worker dying': 1006825, 'our interview': 623580, 'interview with': 442260, 'the mother': 861071, 'mother of': 543142, 'of 27': 579544, '27 year': 16317, 'old leilani': 598330, 'jordan wa': 467298, 'wa heart': 962295, 'heart wrenching': 388360, 'wrenching wa': 1012728, 'wa hearing': 962293, 'hearing from': 388200, 'from worker': 338421, 'worker like': 1007310, 'like marie': 490715, 'marie long': 515706, 'long who': 501847, 'who tell': 989736, 'me she': 523441, 'she putting': 756278, 'putting her': 691127, 'her life': 392161, 'life on': 488932, '10 hr': 1472, 'hope you ll': 403801, 'you ll watch': 1019677, 'll watch our': 497098, 'watch our report': 968498, 'our report on': 624595, 'report on grocery': 712146, 'on grocery store': 601188, 'store worker dying': 811488, 'worker dying of': 1006827, 'dying of our': 263850, 'of our interview': 587493, 'our interview with': 623581, 'interview with the': 442267, 'with the mother': 1001395, 'the mother of': 861073, 'mother of 27': 543143, 'of 27 year': 579546, '27 year old': 16319, 'year old leilani': 1014843, 'old leilani jordan': 598331, 'leilani jordan wa': 486122, 'jordan wa heart': 467299, 'wa heart wrenching': 962296, 'heart wrenching wa': 388361, 'wrenching wa hearing': 1012729, 'wa hearing from': 962294, 'hearing from worker': 388203, 'from worker like': 338422, 'worker like marie': 1007321, 'like marie long': 490716, 'marie long who': 515707, 'long who tell': 501848, 'who tell me': 989737, 'tell me she': 837019, 'me she putting': 523445, 'she putting her': 756279, 'putting her life': 691128, 'her life on': 392163, 'life on the': 488939, 'on the line': 604212, 'the line for': 859408, 'line for 10': 493095, 'for 10 hr': 318615, 'martin': 518089, 'annoy': 77339, 'and martin': 66731, 'martin upset': 518107, 'upset some': 947821, 'of his': 584643, 'his worker': 397924, 'worker by': 1006568, 'by telling': 154229, 'telling them': 837272, 'them they': 876409, 'should consider': 765855, 'consider getting': 195001, 'getting job': 349080, 'job with': 466302, 'supermarket instead': 821054, 'instead yes': 440385, 'yes that': 1015542, 'that would': 847676, 'would annoy': 1011520, 'annoy me': 77341, 'me too': 523821, 'and martin upset': 66732, 'martin upset some': 518108, 'upset some of': 947822, 'some of his': 783397, 'of his worker': 584671, 'his worker by': 397925, 'worker by telling': 1006574, 'by telling them': 154232, 'telling them they': 837276, 'them they should': 876424, 'they should consider': 883357, 'should consider getting': 765857, 'consider getting job': 195002, 'getting job with': 349082, 'job with supermarket': 466306, 'with supermarket instead': 1001055, 'supermarket instead yes': 821055, 'instead yes that': 440386, 'yes that would': 1015547, 'that would annoy': 847678, 'would annoy me': 1011521, 'annoy me too': 77343, 'highest': 395810, 'appeal': 82049, 'forrester': 329755, 'many grocer': 514106, 'grocer are': 364096, 'are offering': 88653, 'offering curbside': 595053, 'pickup but': 655945, 'issue is': 455811, 'that website': 847420, 'website can': 975233, 'can put': 159348, 'the highest': 857336, 'highest volume': 395874, 'volume item': 960146, 'item online': 463515, 'online because': 607916, 'they sell': 883308, 'sell out': 748836, 'out so': 627201, 'so quickly': 778102, 'quickly so': 694599, 'that limit': 844889, 'limit the': 492505, 'the appeal': 848824, 'appeal of': 82069, 'shopping forrester': 762736, 'forrester analyst': 329756, 'many grocer are': 514107, 'grocer are offering': 364099, 'are offering curbside': 88659, 'offering curbside pickup': 595056, 'curbside pickup but': 220647, 'pickup but the': 655946, 'but the issue': 147351, 'the issue is': 858572, 'issue is that': 455821, 'is that website': 452706, 'that website can': 847422, 'website can put': 975234, 'can put the': 159353, 'put the highest': 690858, 'the highest volume': 857353, 'highest volume item': 395875, 'volume item online': 960147, 'item online because': 463517, 'online because they': 607920, 'because they sell': 119718, 'they sell out': 883314, 'sell out so': 748842, 'out so quickly': 627205, 'so quickly so': 778106, 'quickly so that': 694600, 'so that limit': 778379, 'that limit the': 844890, 'limit the appeal': 492507, 'the appeal of': 848825, 'appeal of online': 82071, 'of online grocery': 587255, 'grocery shopping forrester': 365023, 'shopping forrester analyst': 762737, 'uae': 937730, 'sample': 733455, 'businessmen': 144765, 'contribution': 201930, 'uae some': 937776, 'some sample': 783794, 'sample of': 733473, 'of uae': 592552, 'uae businessmen': 937738, 'businessmen contribution': 144766, 'contribution to': 201940, 'help against': 389308, 'against corona': 37376, 'corona some': 204183, 'some donated': 782708, 'donated unit': 254372, 'unit for': 942057, 'for quarantine': 324894, 'quarantine others': 692414, 'others reduced': 621611, 'reduced price': 706141, 'and rent': 70240, 'rent bought': 711058, 'bought ambulance': 136494, 'ambulance car': 51322, 'car etc': 163076, 'uae some sample': 937777, 'some sample of': 783795, 'sample of uae': 733476, 'of uae businessmen': 592553, 'uae businessmen contribution': 937739, 'businessmen contribution to': 144767, 'contribution to help': 201943, 'to help against': 907443, 'help against corona': 389309, 'against corona some': 37379, 'corona some donated': 204184, 'some donated unit': 782709, 'donated unit for': 254373, 'unit for quarantine': 942059, 'for quarantine others': 324899, 'quarantine others reduced': 692415, 'others reduced price': 621612, 'reduced price and': 706143, 'price and rent': 672522, 'and rent bought': 70241, 'rent bought ambulance': 711059, 'bought ambulance car': 136495, 'ambulance car etc': 51323, 'cordray': 203513, 'slammed': 773494, 'cfpb': 170344, 'richard cordray': 721295, 'cordray is': 203514, 'warning consumer': 967109, 'consumer will': 199541, 'be slammed': 117208, 'slammed by': 773497, 'coronavirus economic': 205860, 'economic crisis': 267030, 'crisis if': 217512, 'the cfpb': 850624, 'cfpb doesn': 170349, 'doesn do': 251754, 'richard cordray is': 721296, 'cordray is warning': 203515, 'is warning consumer': 453760, 'warning consumer will': 967111, 'consumer will be': 199542, 'will be slammed': 992684, 'be slammed by': 117209, 'slammed by the': 773500, 'the coronavirus economic': 851839, 'coronavirus economic crisis': 205861, 'economic crisis if': 267034, 'crisis if the': 217515, 'if the cfpb': 414955, 'the cfpb doesn': 850625, 'cfpb doesn do': 170350, 'doesn do more': 251755, 'more to help': 540793, 'cammers': 157152, 'malware': 511889, 'discounted': 244570, 'shafe': 754359, 'malicious': 511710, 'software': 781522, 'ransomware': 696835, 'way hacker': 969610, 'hacker amp': 372758, 'amp cammers': 53491, 'cammers exploiting': 157153, 'exploiting corona': 292416, 'corona virus': 204278, 'pandemic mobile': 635966, 'mobile malware': 534987, 'malware email': 511894, 'email phishing': 272268, 'phishing discounted': 654809, 'discounted off': 244588, 'the shafe': 866767, 'shafe malware': 754360, 'malware sm': 511904, 'sm phishing': 774755, 'phishing face': 654819, 'mask amp': 518294, 'amp hand': 53902, 'sanitizer scam': 735704, 'scam malicious': 740238, 'malicious software': 511718, 'software ransomware': 781544, 'ransomware attack': 696836, 'way hacker amp': 969611, 'hacker amp cammers': 372759, 'amp cammers exploiting': 53492, 'cammers exploiting corona': 157154, 'exploiting corona virus': 292417, 'corona virus pandemic': 204338, 'virus pandemic mobile': 958605, 'pandemic mobile malware': 635967, 'mobile malware email': 534988, 'malware email phishing': 511895, 'email phishing discounted': 272270, 'phishing discounted off': 654810, 'discounted off the': 244589, 'off the shafe': 594267, 'the shafe malware': 866768, 'shafe malware sm': 754361, 'malware sm phishing': 511905, 'sm phishing face': 774756, 'phishing face mask': 654820, 'face mask amp': 294514, 'mask amp hand': 518297, 'amp hand sanitizer': 53903, 'hand sanitizer scam': 375579, 'sanitizer scam malicious': 735707, 'scam malicious software': 740239, 'malicious software ransomware': 511719, 'software ransomware attack': 781545, 'lazada': 482725, 'filipino': 305434, 'worldvisionph': 1010291, 'lazada online': 482728, 'for cause': 319969, 'cause thank': 167751, 'you lazada': 1019563, 'lazada for': 482726, 'for helping': 322195, 'helping filipino': 391332, 'filipino especially': 305437, 'especially the': 280617, 'vulnerable child': 960907, 'child fight': 176086, '19 through': 11385, 'through worldvisionph': 894914, 'lazada online shopping': 482729, 'online shopping for': 609124, 'shopping for cause': 762661, 'for cause thank': 319971, 'cause thank you': 167752, 'thank you lazada': 841762, 'you lazada for': 1019564, 'lazada for helping': 482727, 'for helping filipino': 322198, 'helping filipino especially': 391333, 'filipino especially the': 305438, 'especially the most': 280625, 'the most vulnerable': 861062, 'most vulnerable child': 542870, 'vulnerable child fight': 960908, 'child fight covid': 176087, 'covid 19 through': 213951, '19 through worldvisionph': 11388, 'extends': 293240, 'bedbathbeyond': 120429, 'extends store': 293263, 'closure until': 184055, 'until may': 943767, 'may retail': 521463, 'retail bedbathbeyond': 717876, 'bedbathbeyond housewares': 120430, 'extends store closure': 293264, 'store closure until': 807111, 'closure until may': 184056, 'until may retail': 943773, 'may retail bedbathbeyond': 521464, 'retail bedbathbeyond housewares': 717877, 'bedbathbeyond housewares homeworld': 120431, '33': 17737, 'divert': 248565, 'superfluos': 818657, 'astroturf': 97271, 'salary': 731937, '100k': 2163, 'max': 520733, 'superm': 818709, '33 covid': 17754, 'is priority': 451032, 'priority divert': 678551, 'divert the': 248566, 'following to': 312926, 'to that': 916444, 'that effort': 843682, 'effort immediately': 269528, 'immediately cut': 417079, 'cut superfluos': 223557, 'superfluos expense': 818658, 'expense such': 291206, 'such astroturf': 816340, 'astroturf million': 97272, 'million cut': 532121, 'cut excessive': 223321, 'excessive salary': 289415, 'salary cap': 731959, 'cap at': 162408, 'at 100k': 97420, '100k max': 2170, 'max classify': 520747, 'classify superm': 180375, '33 covid 19': 17755, '19 is priority': 8025, 'is priority divert': 451033, 'priority divert the': 678552, 'divert the following': 248567, 'the following to': 855525, 'following to that': 312928, 'to that effort': 916451, 'that effort immediately': 843683, 'effort immediately cut': 269529, 'immediately cut superfluos': 417080, 'cut superfluos expense': 223558, 'superfluos expense such': 818659, 'expense such astroturf': 291207, 'such astroturf million': 816341, 'astroturf million cut': 97273, 'million cut excessive': 532122, 'cut excessive salary': 223322, 'excessive salary cap': 289416, 'salary cap at': 731960, 'cap at 100k': 162409, 'at 100k max': 97421, '100k max classify': 2171, 'max classify superm': 520748, 'modrnhealthcr': 535518, 'grow': 367001, 'annual': 77382, '2028': 14827, 'projection': 683578, 'modrnhealthcr healthcare': 535519, 'healthcare spending': 387283, 'spending is': 788867, 'is expected': 447642, 'expected to': 290959, 'to grow': 907022, 'grow at': 367009, 'average annual': 104807, 'annual rate': 77419, 'of from': 583964, 'from 2019': 334235, '2019 to': 14034, 'to 2028': 899606, '2028 fueled': 14828, 'fueled by': 340320, 'by higher': 152804, 'higher price': 395658, 'price according': 672206, 'new report': 559443, 'the projection': 864651, 'projection do': 683581, 'not account': 568036, 'account for': 28660, 'modrnhealthcr healthcare spending': 535520, 'healthcare spending is': 387284, 'spending is expected': 788875, 'is expected to': 447644, 'expected to grow': 290980, 'to grow at': 907023, 'grow at an': 367011, 'at an average': 97979, 'an average annual': 55494, 'average annual rate': 104808, 'annual rate of': 77420, 'rate of from': 697315, 'of from 2019': 583965, 'from 2019 to': 334236, '2019 to 2028': 14035, 'to 2028 fueled': 899607, '2028 fueled by': 14829, 'fueled by higher': 340322, 'by higher price': 152806, 'higher price according': 395661, 'price according to': 672207, 'according to new': 28570, 'to new report': 910574, 'new report the': 559453, 'report the projection': 712344, 'the projection do': 864652, 'projection do not': 683582, 'do not account': 249654, 'not account for': 568038, 'account for the': 28670, 'for the 19': 326281, 'the 19 pandemic': 847923, 'heartfelt': 388446, 'mla': 534734, 'baramati': 110788, 'agro': 39058, '500ltrs': 20091, 'bhandara': 129336, 'zp': 1027879, 'heartfelt thank': 388451, 'to mla': 910199, 'mla and': 534735, 'and baramati': 58705, 'baramati agro': 110789, 'agro for': 39061, 'for lending': 322946, 'lending hand': 486278, 'hand in': 375035, 'these time': 880834, 'crisis and': 217009, 'providing 500ltrs': 686923, '500ltrs of': 20092, 'to bhandara': 901799, 'bhandara zp': 129337, 'heartfelt thank you': 388452, 'you to mla': 1021808, 'to mla and': 910200, 'mla and baramati': 534736, 'and baramati agro': 58706, 'baramati agro for': 110790, 'agro for lending': 39062, 'for lending hand': 322947, 'lending hand in': 486279, 'hand in these': 375042, 'in these time': 429866, 'these time of': 880844, 'of crisis and': 582149, 'crisis and providing': 217042, 'and providing 500ltrs': 69707, 'providing 500ltrs of': 686924, '500ltrs of sanitizer': 20093, 'of sanitizer to': 589300, 'sanitizer to bhandara': 735907, 'to bhandara zp': 901800, 'pigeon': 656466, 'kawaii': 471125, 'safetyfirst': 730795, 'be wise': 118111, 'wise and': 996669, 'and sanitize': 70846, 'sanitize art': 734169, 'art by': 94144, 'by pigeon': 153582, 'pigeon handsanitizer': 656467, 'handsanitizer kawaii': 376564, 'kawaii staysafe': 471126, 'staysafe safetyfirst': 798871, 'safetyfirst health': 730799, 'health washyourhands': 386936, 'be wise and': 118112, 'wise and sanitize': 996670, 'and sanitize art': 70848, 'sanitize art by': 734170, 'art by pigeon': 94147, 'by pigeon handsanitizer': 153583, 'pigeon handsanitizer kawaii': 656468, 'handsanitizer kawaii staysafe': 376565, 'kawaii staysafe safetyfirst': 471127, 'staysafe safetyfirst health': 798873, 'safetyfirst health washyourhands': 730800, 'traxxfm': 930724, 'borneo': 135574, 'traxxfm borneo': 930725, 'borneo food': 135575, 'food this': 317190, 'morning shopping': 541435, 'market this': 517213, 'how it': 408124, 'is supposed': 452480, 'done no': 254949, 'buying please': 150908, 'traxxfm borneo food': 930726, 'borneo food this': 135576, 'food this morning': 317193, 'this morning shopping': 889011, 'morning shopping at': 541436, 'the market this': 860170, 'market this is': 517214, 'this is how': 888284, 'is how it': 448583, 'how it is': 408134, 'it is supposed': 459093, 'is supposed to': 452482, 'supposed to be': 827352, 'to be done': 901216, 'be done no': 114560, 'done no panic': 254950, 'no panic buying': 565042, 'panic buying please': 637848, 'rutherford': 728697, 'confirms an': 194230, 'an employee': 55702, 'employee ha': 273900, 'ha tested': 372177, 'for 19': 318694, '19 at': 5237, 'at weston': 101514, 'weston amp': 980696, 'amp rutherford': 54423, 'rutherford location': 728698, 'confirms an employee': 194231, 'an employee ha': 55708, 'employee ha tested': 273903, 'ha tested positive': 372179, 'positive for 19': 665315, 'for 19 at': 318699, '19 at weston': 5255, 'at weston amp': 101515, 'weston amp rutherford': 980697, 'amp rutherford location': 54424, 'jayson': 464901, 'lusk': 506859, 'meat and': 525470, 'egg price': 269955, 'outbreak jayson': 628396, 'jayson lusk': 464902, 'meat and egg': 525474, 'and egg price': 61979, 'egg price following': 269959, 'price following the': 673911, 'following the covid': 312879, '19 outbreak jayson': 9144, 'outbreak jayson lusk': 628397, 'understanding': 940855, 'necessarily': 553915, 'intention': 441147, 'assessment': 96381, 'delegate': 232835, 'authority': 103677, 'covi': 212534, 'your best': 1022945, 'best understanding': 127969, 'understanding isn': 940878, 'isn necessarily': 454594, 'necessarily my': 553926, 'my intention': 548872, 'intention whatever': 441154, 'whatever the': 982801, 'case personal': 165961, 'personal risk': 652952, 'risk assessment': 723393, 'assessment is': 96390, 'is something': 452103, 'something everyone': 784901, 'everyone must': 287193, 'must do': 546624, 'do and': 249062, 'not delegate': 568980, 'delegate to': 232836, 'to authority': 900844, 'authority supermarket': 103786, 'worker doctor': 1006795, 'doctor everyone': 250906, 'everyone and': 286693, 'doesn start': 251949, 'start and': 794194, 'with covi': 997835, 'your best understanding': 1022953, 'best understanding isn': 127970, 'understanding isn necessarily': 940879, 'isn necessarily my': 454595, 'necessarily my intention': 553927, 'my intention whatever': 548873, 'intention whatever the': 441155, 'whatever the case': 982802, 'the case personal': 850465, 'case personal risk': 165962, 'personal risk assessment': 652953, 'risk assessment is': 723394, 'assessment is something': 96391, 'is something everyone': 452107, 'something everyone must': 784903, 'everyone must do': 287194, 'must do and': 546625, 'do and not': 249071, 'and not delegate': 67727, 'not delegate to': 568981, 'delegate to authority': 232837, 'to authority supermarket': 900845, 'authority supermarket worker': 103787, 'supermarket worker doctor': 824012, 'worker doctor everyone': 1006796, 'doctor everyone and': 250907, 'everyone and it': 286698, 'and it doesn': 65515, 'it doesn start': 457642, 'doesn start and': 251950, 'start and end': 794196, 'and end with': 62116, 'end with covi': 276081, 'sanitise': 733887, 'cheflife': 175284, 'chefoninstagram': 175289, 'chefanand': 175276, 'should sanitise': 766431, 'sanitise their': 733897, 'hand frequently': 374953, 'frequently now': 332863, 'and always': 57993, 'always cheflife': 49515, 'cheflife chefoninstagram': 175285, 'chefoninstagram chefanand': 175290, 'chefanand sanitizer': 175277, 'sanitizer cleaning': 734660, 'cleaning chinesevirus': 180912, 'chinesevirus lockdown': 177444, 'everyone should sanitise': 287379, 'should sanitise their': 766432, 'sanitise their hand': 733898, 'their hand frequently': 873474, 'hand frequently now': 374955, 'frequently now and': 332864, 'now and always': 574025, 'and always cheflife': 57995, 'always cheflife chefoninstagram': 49516, 'cheflife chefoninstagram chefanand': 175286, 'chefoninstagram chefanand sanitizer': 175291, 'chefanand sanitizer cleaning': 175278, 'sanitizer cleaning chinesevirus': 734662, 'cleaning chinesevirus lockdown': 180913, 'dialysis': 240312, 'immunosuppressant': 417487, 'coll': 185899, 'doing the': 252712, 'the hour': 857577, 'sunday which': 818293, 'great really': 362941, 'really stuck': 702625, 'highest risk': 395854, 'risk group': 723585, 'group on': 366815, 'on dialysis': 600308, 'dialysis immunosuppressant': 240315, 'immunosuppressant can': 417488, 'get delivery': 346859, 'delivery or': 234275, 'click coll': 181892, 'are doing the': 85929, 'doing the hour': 252721, 'the hour on': 857583, 'hour on sunday': 405821, 'on sunday which': 603776, 'sunday which is': 818294, 'is great really': 448202, 'great really stuck': 362942, 'really stuck in': 702626, 'stuck in the': 814600, 'in the highest': 429267, 'the highest risk': 857350, 'highest risk group': 395857, 'risk group on': 723594, 'group on dialysis': 366816, 'on dialysis immunosuppressant': 600309, 'dialysis immunosuppressant can': 240316, 'immunosuppressant can get': 417489, 'can get delivery': 158413, 'get delivery or': 346866, 'delivery or even': 234283, 'even click coll': 283953, 'humble': 410809, 'request': 713136, 'waive': 964496, 'airindia': 39901, 'impossible': 419349, 'it humble': 458661, 'humble request': 410824, 'request to': 713207, 'to please': 911812, 'please direct': 659876, 'direct airline': 243281, 'airline to': 40047, 'to waive': 918279, 'waive cancellation': 964499, 'cancellation charge': 161009, 'charge amid': 173195, '19 my': 8716, 'my travel': 550425, 'travel is': 930411, 'is booked': 446217, 'booked through': 134672, 'through airindia': 894302, 'airindia it': 39902, 'it impossible': 458715, 'impossible to': 419394, 'to reach': 912786, 'reach on': 699956, 'on customer': 600192, 'even responding': 284528, 'to email': 905001, 'email the': 272333, 'consumer should': 198980, 'it humble request': 458662, 'humble request to': 410827, 'request to please': 713217, 'to please direct': 911814, 'please direct airline': 659877, 'direct airline to': 243282, 'airline to waive': 40051, 'to waive cancellation': 918280, 'waive cancellation charge': 964500, 'cancellation charge amid': 161010, 'charge amid covid': 173196, 'covid 19 my': 213459, '19 my travel': 8737, 'my travel is': 550427, 'travel is booked': 930412, 'is booked through': 446218, 'booked through airindia': 134673, 'through airindia it': 894303, 'airindia it impossible': 39903, 'it impossible to': 458717, 'impossible to reach': 419406, 'to reach on': 912803, 'reach on customer': 699957, 'on customer service': 600196, 'customer service and': 222816, 'service and they': 752112, 'and they are': 73889, 'they are not': 881342, 'are not even': 88363, 'not even responding': 569275, 'even responding to': 284529, 'responding to email': 715584, 'to email the': 905004, 'email the consumer': 272334, 'the consumer should': 851594, 'consumer should not': 198983, 'sanwo': 736660, 'olu': 598770, 'lagos': 478915, 'coronavirus sanwo': 206703, 'sanwo olu': 736661, 'olu order': 598771, 'order closure': 618138, 'all market': 43458, 'market store': 517127, 'in lagos': 424574, 'coronavirus sanwo olu': 206704, 'sanwo olu order': 736662, 'olu order closure': 598772, 'order closure of': 618139, 'of all market': 579959, 'all market store': 43461, 'market store in': 517129, 'store in lagos': 808330, 'sock': 781402, 'nyclockdown': 578080, 'weshouldhavebeenbetterprepared': 980444, 'hand up': 375895, 'you still': 1021397, 'still cannot': 800336, 'get toiletpaper': 348514, 'of sock': 589880, 'sock nyclockdown': 781407, 'nyclockdown weshouldhavebeenbetterprepared': 578083, 'weshouldhavebeenbetterprepared stayathome': 980445, 'hand up if': 375897, 'up if you': 945138, 'if you still': 415528, 'you still cannot': 1021400, 'still cannot get': 800339, 'cannot get toiletpaper': 161914, 'get toiletpaper and': 348515, 'toiletpaper and you': 921735, 'you are running': 1017219, 'are running out': 89768, 'out of sock': 626832, 'of sock nyclockdown': 589882, 'sock nyclockdown weshouldhavebeenbetterprepared': 781408, 'nyclockdown weshouldhavebeenbetterprepared stayathome': 578084, 'the logic': 859656, 'logic of': 500657, 'of suspending': 590545, 'suspending online': 829656, 'online delivery': 608078, 'delivery in': 234111, 'australia doesn': 103265, 'doesn that': 251966, 'mean more': 524551, 'people shopping': 649430, 'their supermarket': 874899, 'and spreading': 72151, 'spreading around': 790929, 'around and': 93193, 'are people': 89020, 'supermarket supposed': 823067, 'getting the logic': 349352, 'the logic of': 859658, 'logic of suspending': 500658, 'of suspending online': 590546, 'suspending online delivery': 829657, 'online delivery in': 608083, 'delivery in australia': 234114, 'in australia doesn': 420603, 'australia doesn that': 103266, 'doesn that mean': 251967, 'that mean more': 845114, 'mean more people': 524554, 'more people shopping': 540036, 'people shopping in': 649435, 'shopping in their': 762991, 'in their supermarket': 429781, 'their supermarket and': 874900, 'supermarket and spreading': 819069, 'and spreading around': 72154, 'spreading around and': 790930, 'around and what': 93203, 'and what are': 75449, 'what are people': 981063, 'are people who': 89057, 'people who cannot': 650271, 'who cannot get': 988422, 'cannot get to': 161913, 'get to supermarket': 348495, 'to supermarket supposed': 915843, 'supermarket supposed to': 823068, 'ebanks': 266410, 'exacerbated': 288661, 'injustice': 438724, 'experienced': 291551, 'suggests': 817676, 'ebanks point': 266411, 'point out': 662579, 'out that': 627317, 'ha exacerbated': 370538, 'exacerbated the': 288675, 'food injustice': 315048, 'injustice experienced': 438727, 'experienced by': 291564, 'by low': 153104, 'low income': 505342, 'income black': 432302, 'black community': 132036, 'community she': 190088, 'she suggests': 756368, 'suggests government': 817691, 'government follow': 360091, 'follow health': 312404, 'health department': 386371, 'department lead': 237222, 'lead by': 483266, 'by operating': 153447, 'operating virtual': 613111, 'virtual supermarket': 957801, 'ebanks point out': 266412, 'point out that': 662583, 'out that covid': 627320, '19 ha exacerbated': 7344, 'ha exacerbated the': 370539, 'exacerbated the food': 288676, 'the food injustice': 855562, 'food injustice experienced': 315049, 'injustice experienced by': 438728, 'experienced by low': 291566, 'by low income': 153105, 'low income black': 505344, 'income black community': 432303, 'black community she': 132037, 'community she suggests': 190089, 'she suggests government': 756369, 'suggests government follow': 817692, 'government follow health': 360092, 'follow health department': 312405, 'health department lead': 386373, 'department lead by': 237223, 'lead by operating': 483267, 'by operating virtual': 153448, 'operating virtual supermarket': 613112, 'mayor': 521932, 'jerry': 465179, 'demings': 236646, 'flatten': 310124, 'mayor jerry': 521968, 'jerry demings': 465180, 'demings announces': 236647, 'announces stay': 77293, 'home order': 401760, 'for resident': 325145, 'help flatten': 389729, 'flatten the': 310127, 'curve amid': 221826, 'outbreak exception': 628207, 'exception travel': 289289, 'work grocery': 1005218, 'store pharmacy': 809531, 'pharmacy order': 654406, 'order go': 618268, 'go into': 353732, 'into effect': 442535, 'effect thursday': 269138, 'thursday march': 895397, 'march 26': 515210, '26 at': 16150, 'at 11': 97434, 'mayor jerry demings': 521969, 'jerry demings announces': 465181, 'demings announces stay': 236648, 'announces stay at': 77294, 'at home order': 99070, 'home order for': 401772, 'order for resident': 618241, 'for resident to': 325148, 'resident to help': 714381, 'to help flatten': 907518, 'help flatten the': 389730, 'flatten the curve': 310129, 'the curve amid': 852683, 'curve amid outbreak': 221827, 'amid outbreak exception': 52558, 'outbreak exception travel': 628208, 'exception travel to': 289290, 'travel to work': 930544, 'to work grocery': 918729, 'work grocery store': 1005220, 'grocery store pharmacy': 365656, 'store pharmacy order': 809545, 'pharmacy order go': 654407, 'order go into': 618269, 'go into effect': 353744, 'into effect thursday': 442536, 'effect thursday march': 269140, 'thursday march 26': 895399, 'march 26 at': 515212, '26 at 11': 16151, 'be vulnerable': 118029, 'vulnerable to': 961210, 'scammer while': 740650, 'while online': 987106, 'shopping here': 762882, 'look out': 502562, 'might be vulnerable': 530936, 'be vulnerable to': 118031, 'vulnerable to scammer': 961228, 'to scammer while': 913874, 'scammer while online': 740651, 'while online shopping': 987107, 'online shopping here': 609144, 'shopping here what': 762887, 'here what to': 393823, 'what to look': 982460, 'to look out': 909440, 'look out for': 502563, 'everyone please': 287280, 'please only': 660257, 'only buy': 610200, 'need stophoarding': 555653, 'everyone please only': 287285, 'please only buy': 660258, 'only buy what': 610206, 'you need stophoarding': 1020044, 'need stophoarding coronacrisis': 555655, 'teen': 836466, 'filmed': 305719, 'virginia': 957653, 'stunt': 815321, 'disturbing': 248406, 'cop': 203252, 'explain': 292096, 'group of': 366781, 'of teen': 590634, 'teen filmed': 836494, 'filmed themselves': 305729, 'themselves coughing': 876794, 'coughing on': 208712, 'on produce': 602939, 'at virginia': 101454, 'virginia grocery': 957669, 'then posted': 877435, 'posted the': 666577, 'the stunt': 868341, 'stunt to': 815326, 'to social': 914821, 'medium disturbing': 527077, 'disturbing trend': 248425, 'trend amid': 931258, 'the cop': 851723, 'cop urge': 203283, 'urge parent': 948205, 'parent to': 641747, 'talk with': 833919, 'your child': 1023194, 'child and': 175993, 'and explain': 62510, 'explain to': 292123, 'to them': 917284, 'them why': 876629, 'why such': 991385, 'such behavior': 816361, 'behavior is': 124093, 'group of teen': 366804, 'of teen filmed': 590635, 'teen filmed themselves': 836495, 'filmed themselves coughing': 305730, 'themselves coughing on': 876795, 'coughing on produce': 208722, 'on produce at': 602941, 'produce at virginia': 680201, 'at virginia grocery': 101455, 'virginia grocery store': 957670, 'and then posted': 73792, 'then posted the': 877436, 'posted the stunt': 666579, 'the stunt to': 868342, 'stunt to social': 815327, 'to social medium': 914826, 'social medium disturbing': 779845, 'medium disturbing trend': 527078, 'disturbing trend amid': 248427, 'trend amid the': 931259, 'the pandemic the': 863121, 'pandemic the cop': 636672, 'the cop urge': 851725, 'cop urge parent': 203284, 'urge parent to': 948206, 'parent to talk': 641753, 'to talk with': 916291, 'talk with your': 833927, 'with your child': 1002182, 'your child and': 1023195, 'child and explain': 175996, 'and explain to': 62511, 'explain to them': 292127, 'to them why': 917320, 'them why such': 876632, 'why such behavior': 991386, 'such behavior is': 816362, 'behavior is wrong': 124105, 'new normal': 559145, 'normal for': 567150, 'new normal for': 559152, 'normal for consumer': 567151, 'for consumer confidence': 320245, 'identical': 413306, 'trophy': 932564, 'cleveland': 181838, 'brown': 141223, 'these grocery': 880078, 'looking identical': 502932, 'identical to': 413313, 'the trophy': 870019, 'trophy case': 932568, 'the cleveland': 851008, 'cleveland brown': 181843, 'brown empty': 141236, 'these grocery store': 880079, 'grocery store shelf': 365764, 'shelf are looking': 756812, 'are looking identical': 87885, 'looking identical to': 502933, 'identical to the': 413314, 'to the trophy': 917142, 'the trophy case': 870020, 'trophy case of': 932569, 'case of the': 165929, 'of the cleveland': 590866, 'the cleveland brown': 851009, 'cleveland brown empty': 181844, 'so long': 777578, 'long that': 501722, 'that shutting': 846309, 'down other': 257062, 'other business': 619908, 'business not': 144103, 'not on': 570745, 'is madness': 449512, 'madness you': 508221, 'are more': 88105, 'more likely': 539695, 'supermarket selling': 822380, 'selling fresh': 749261, 'fresh produce': 333042, 'produce than': 680448, 'than anywhere': 840363, 'anywhere else': 81100, 'else the': 271907, 'ha lost': 371184, 'lost it': 503873, 'it mind': 459627, 'this list is': 888659, 'list is so': 494381, 'is so long': 452022, 'so long that': 777586, 'long that shutting': 501723, 'that shutting down': 846310, 'shutting down other': 768272, 'down other business': 257063, 'other business not': 619915, 'business not on': 144107, 'not on this': 570754, 'on this list': 604616, 'list is madness': 494380, 'is madness you': 449514, 'madness you are': 508222, 'you are more': 1017172, 'are more likely': 88117, 'more likely to': 539697, 'likely to get': 492156, 'to get covid': 906451, '19 in supermarket': 7786, 'in supermarket selling': 428665, 'supermarket selling fresh': 822381, 'selling fresh produce': 749263, 'fresh produce than': 333064, 'produce than anywhere': 680449, 'than anywhere else': 840364, 'anywhere else the': 81105, 'else the world': 271912, 'world ha lost': 1009613, 'ha lost it': 371187, 'lost it mind': 503877, 'used': 949855, 'knowledge': 477165, 'impending': 418308, 'plummeted': 661317, 'stockmarket': 803641, 'ussenate': 950865, 'senator are': 749734, 'are under': 91274, 'under scrutiny': 940238, 'scrutiny over': 742951, 'over claim': 630085, 'claim they': 179840, 'they used': 883621, 'used insider': 949948, 'insider knowledge': 439471, 'knowledge about': 477166, 'the impending': 857952, 'impending coronavirus': 418312, 'sell share': 748876, 'share before': 754947, 'price plummeted': 675910, 'plummeted usa': 661358, 'usa politics': 948718, 'politics stockmarket': 663801, 'stockmarket ussenate': 803677, 'senator are under': 749736, 'are under scrutiny': 91283, 'under scrutiny over': 940240, 'scrutiny over claim': 742952, 'over claim they': 630087, 'claim they used': 179841, 'they used insider': 883623, 'used insider knowledge': 949949, 'insider knowledge about': 439472, 'knowledge about the': 477168, 'about the impending': 26419, 'the impending coronavirus': 857954, 'impending coronavirus crisis': 418313, 'coronavirus crisis to': 205774, 'crisis to sell': 218255, 'to sell share': 914173, 'sell share before': 748877, 'share before price': 754948, 'before price plummeted': 123024, 'price plummeted usa': 675915, 'plummeted usa politics': 661359, 'usa politics stockmarket': 948719, 'politics stockmarket ussenate': 663802, 'bizstrongarlva': 131984, 'business security': 144352, 'tip beware': 898725, '19 phishing': 9674, 'scam for': 740164, 'information visit': 438027, 'visit bizstrongarlva': 959197, 'business security tip': 144353, 'security tip beware': 744777, 'tip beware of': 898726, 'beware of covid': 129076, 'covid 19 phishing': 213577, '19 phishing scam': 9675, 'phishing scam for': 654834, 'scam for more': 740165, 'for more information': 323582, 'more information visit': 539596, 'information visit bizstrongarlva': 438028, 'is well': 453839, 'deserved thank': 238162, 'employee working': 274464, 'this is well': 888462, 'is well deserved': 453842, 'well deserved thank': 978155, 'deserved thank you': 238163, 'you to all': 1021746, 'all the grocery': 44772, 'store employee working': 807578, 'employee working hard': 274466, 'working hard to': 1008688, 'hard to keep': 378070, 'copper': 203422, 'import': 418608, '19 copper': 6039, 'copper import': 203427, 'import to': 418680, 'shoot up': 759750, 'on falling': 600724, 'falling global': 297277, 'price via': 677303, 'covid 19 copper': 212862, '19 copper import': 6040, 'copper import to': 203428, 'import to shoot': 418682, 'to shoot up': 914443, 'shoot up on': 759753, 'up on falling': 945559, 'on falling global': 600725, 'falling global price': 297279, 'global price via': 352142, 'that this': 846979, 'this may': 888786, 'be challenging': 114047, 'for individual': 322547, 'individual and': 435127, 'family so': 298233, 've put': 953458, 'together specific': 920943, 'specific loan': 788228, 'loan program': 497512, 'program to': 683304, 'provide some': 686482, 'some relief': 783722, 'relief consumer': 709312, 'loan payment': 497493, 'payment deferral': 645590, 'deferral program': 232183, 'program real': 683288, 'estate payment': 282168, 'program more': 683271, 'info here': 437489, 'we understand that': 973590, 'understand that this': 940737, 'that this may': 846998, 'this may be': 888787, 'may be challenging': 520958, 'be challenging time': 114048, 'challenging time for': 171637, 'time for individual': 896716, 'for individual and': 322548, 'individual and their': 435135, 'and their family': 73687, 'their family so': 873268, 'family so we': 298234, 'so we ve': 778688, 'we ve put': 973699, 've put together': 953462, 'put together specific': 690948, 'together specific loan': 920944, 'specific loan program': 788229, 'loan program to': 497513, 'program to provide': 683308, 'to provide some': 912435, 'provide some relief': 686485, 'some relief consumer': 783724, 'relief consumer loan': 709313, 'consumer loan payment': 198064, 'loan payment deferral': 497494, 'payment deferral program': 645591, 'deferral program real': 232185, 'program real estate': 683289, 'real estate payment': 701159, 'estate payment deferral': 282169, 'deferral program more': 232184, 'program more info': 683272, 'more info here': 539555, 'tweeted': 936432, 'sanction': 733610, 'contributed': 201892, 'creation': 216107, 'takeover': 833204, 'deliberate': 232940, 'systemic': 831411, 'january tweeted': 464690, 'tweeted that': 936450, 'that trump': 847134, 'trump trade': 933937, 'trade war': 928602, 'war and': 966352, 'and economic': 61897, 'economic sanction': 267262, 'sanction caused': 733620, 'caused food': 167885, 'shortage panic': 765158, 'and desperation': 61262, 'desperation which': 238620, 'which directly': 985819, 'directly contributed': 243531, 'contributed to': 201893, 'the creation': 852308, 'creation of': 216114, 'it eventual': 457862, 'eventual takeover': 285137, 'takeover of': 833211, 'chain this': 171185, 'wa deliberate': 961937, 'deliberate systemic': 232945, 'systemic and': 831412, 'and had': 64094, 'had deadly': 373009, 'deadly consequence': 229256, 'in january tweeted': 424365, 'january tweeted that': 464691, 'tweeted that trump': 936454, 'that trump trade': 847140, 'trump trade war': 933938, 'trade war and': 928603, 'war and economic': 966357, 'and economic sanction': 61908, 'economic sanction caused': 267263, 'sanction caused food': 733621, 'caused food shortage': 167887, 'food shortage panic': 316595, 'shortage panic and': 765159, 'panic and desperation': 637308, 'and desperation which': 61263, 'desperation which directly': 238621, 'which directly contributed': 985820, 'directly contributed to': 243532, 'contributed to the': 201895, 'to the creation': 916611, 'the creation of': 852309, 'creation of and': 216115, 'of and it': 580165, 'and it eventual': 65523, 'it eventual takeover': 457863, 'eventual takeover of': 285138, 'takeover of the': 833212, 'of the supply': 591512, 'supply chain this': 825052, 'chain this wa': 171186, 'this wa deliberate': 891058, 'wa deliberate systemic': 961938, 'deliberate systemic and': 232946, 'systemic and had': 831413, 'and had deadly': 64097, 'had deadly consequence': 373010, 'bbc': 113064, 'bbc news': 113087, 'news uk': 560917, 'uk pub': 938652, 'and restaurant': 70364, 'restaurant must': 716584, 'fight virus': 304934, 'virus more': 958507, 'people go': 648077, 'supermarket ffs': 820305, 'bbc news uk': 113099, 'news uk pub': 560920, 'uk pub and': 938653, 'pub and restaurant': 687662, 'and restaurant must': 70387, 'restaurant must close': 716585, 'must close to': 546589, 'close to fight': 182894, 'to fight virus': 905815, 'fight virus more': 304937, 'virus more people': 958509, 'more people go': 540022, 'people go to': 648089, 'the supermarket ffs': 868591, 'formula': 329688, 'now told': 576200, 'that adult': 842503, 'adult are': 32799, 'buying baby': 149979, 'baby formula': 106615, 'formula wipe': 329731, 'themselves wtf': 876948, 'wtf you': 1013345, 'taking food': 833364, 'food item': 315186, 'item from': 463280, 'from baby': 334618, 'baby panicbuying': 106680, 'so now told': 777909, 'now told that': 576202, 'told that adult': 923694, 'that adult are': 842504, 'adult are buying': 32800, 'are buying baby': 85115, 'buying baby formula': 149981, 'baby formula wipe': 106623, 'formula wipe to': 329732, 'wipe to stock': 996397, 'to stock for': 915435, 'stock for themselves': 802177, 'for themselves wtf': 326949, 'themselves wtf you': 876950, 'wtf you are': 1013346, 'you are taking': 1017251, 'are taking food': 90720, 'taking food item': 833366, 'food item from': 315208, 'item from baby': 463281, 'from baby panicbuying': 334619, 'concerning': 193237, 'severity': 754122, 'deter': 239381, 'is concerning': 446727, 'concerning that': 193247, 'that retail': 846033, 'retail employee': 718066, 'employee are': 273600, 'work amidst': 1004745, 'the severity': 866753, 'severity of': 754126, '19 reduced': 10017, 'reduced hour': 706092, 'hour will': 406098, 'not deter': 569008, 'deter from': 239382, 'from virus': 338248, 'virus spreading': 958795, 'spreading only': 791018, 'one person': 606854, 'person coming': 652363, 'coming in': 188083, 'covid can': 214131, 'all employee': 42677, 'working well': 1009038, 'well customer': 978130, 'it is concerning': 458911, 'is concerning that': 446728, 'concerning that retail': 193248, 'that retail employee': 846035, 'retail employee are': 718068, 'employee are forced': 273615, 'forced to work': 328669, 'to work amidst': 918682, 'work amidst the': 1004746, 'amidst the severity': 52834, 'the severity of': 866755, 'severity of covid': 754129, 'covid 19 reduced': 213671, '19 reduced hour': 10019, 'reduced hour will': 706098, 'hour will not': 406101, 'will not deter': 994206, 'not deter from': 569009, 'deter from virus': 239383, 'from virus spreading': 338251, 'virus spreading only': 958797, 'spreading only one': 791019, 'only one person': 610884, 'one person coming': 606857, 'person coming in': 652365, 'coming in with': 188103, 'in with covid': 430938, 'with covid can': 997838, 'covid can affect': 214132, 'can affect all': 157389, 'affect all employee': 34110, 'all employee working': 42684, 'employee working well': 274469, 'working well customer': 1009040, 'embrace': 272482, 'bean': 118280, 'schoolsclosure': 742044, 'wereinthistogether': 980380, 'stopfakenews': 805332, 'embrace this': 272493, 'this bonus': 886591, 'bonus time': 134406, 'time with': 898350, 'child say': 176196, 'say give': 738675, 'give it': 350544, 'it some': 461164, 'some bean': 782392, 'bean if': 118330, 'the panicbuyers': 863232, 'panicbuyers have': 638859, 'have left': 381289, 'left any': 485385, 'any schoolsclosure': 79776, 'schoolsclosure lockdownuk': 742045, 'lockdownuk schoolclosureuk': 500427, 'schoolclosureuk wereinthistogether': 742024, 'wereinthistogether stoppanicbuying': 980389, 'stoppanicbuying stopfakenews': 805629, 'embrace this bonus': 272494, 'this bonus time': 886592, 'bonus time with': 134407, 'time with the': 898359, 'with the child': 1001231, 'the child say': 850825, 'child say give': 176197, 'say give it': 738677, 'give it some': 350550, 'it some bean': 461165, 'some bean if': 782393, 'bean if the': 118331, 'if the panicbuyers': 415012, 'the panicbuyers have': 863234, 'panicbuyers have left': 638860, 'have left any': 381290, 'left any schoolsclosure': 485386, 'any schoolsclosure lockdownuk': 79777, 'schoolsclosure lockdownuk schoolclosureuk': 742046, 'lockdownuk schoolclosureuk wereinthistogether': 500428, 'schoolclosureuk wereinthistogether stoppanicbuying': 742025, 'wereinthistogether stoppanicbuying stopfakenews': 980390, 'silicon': 769723, 'tanking': 834249, 'stevejobs': 799966, 'since when': 770992, 'when did': 983336, 'did facebook': 240602, 'facebook other': 294981, 'other social': 620937, 'medium platform': 527223, 'platform finally': 658959, 'finally learn': 306049, 'learn about': 483928, 'about covid': 25040, '19 like': 8324, 'like 10': 489677, '10 second': 1671, 'second ago': 743654, 'ago these': 38499, 'these guy': 880086, 'guy only': 369102, 'only care': 610221, 'care what': 164259, 'what go': 981502, 'go on': 353874, 'in silicon': 427956, 'silicon valley': 769726, 'valley their': 951990, 'are tanking': 90746, 'tanking stevejobs': 834263, 'stevejobs co': 799967, 'since when did': 770993, 'when did facebook': 983337, 'did facebook other': 240603, 'facebook other social': 294982, 'other social medium': 620939, 'social medium platform': 779874, 'medium platform finally': 527225, 'platform finally learn': 658960, 'finally learn about': 306050, 'learn about covid': 483931, 'about covid 19': 25041, 'covid 19 like': 213354, '19 like 10': 8325, 'like 10 second': 489680, '10 second ago': 1673, 'second ago these': 743655, 'ago these guy': 38500, 'these guy only': 880092, 'guy only care': 369103, 'only care what': 610223, 'care what go': 164260, 'what go on': 981505, 'go on in': 353884, 'on in silicon': 601534, 'in silicon valley': 427957, 'silicon valley their': 769727, 'valley their stock': 951991, 'their stock price': 874834, 'stock price which': 802760, 'price which are': 677505, 'which are tanking': 985697, 'are tanking stevejobs': 90748, 'tanking stevejobs co': 834264, 'sort': 786108, 'thuggish': 895289, 'endure': 276291, 'drayton': 258548, 'diverse': 248519, 'the sort': 867489, 'sort of': 786115, 'of thuggish': 592153, 'thuggish behaviour': 895290, 'behaviour supermarket': 124528, 'are having': 87026, 'to endure': 905098, 'endure this': 276314, 'wa west': 963691, 'west drayton': 980491, 'drayton london': 258549, 'london london': 501123, 'is diverse': 447253, 'is the sort': 452944, 'the sort of': 867490, 'sort of thuggish': 786143, 'of thuggish behaviour': 592154, 'thuggish behaviour supermarket': 895291, 'behaviour supermarket staff': 124529, 'supermarket staff are': 822812, 'staff are having': 792191, 'are having to': 87043, 'having to endure': 384346, 'to endure this': 905106, 'endure this wa': 276315, 'this wa west': 891097, 'wa west drayton': 963692, 'west drayton london': 980492, 'drayton london london': 258550, 'london london is': 501124, 'london is diverse': 501100, 'plcb': 659525, 'liquor': 494163, 'randomly': 696634, 'the plcb': 863834, 'plcb is': 659528, 'is allowing': 445486, 'allowing some': 46336, 'online sale': 608910, 'sale of': 732380, 'of wine': 593175, 'and liquor': 66213, 'liquor from': 494170, 'from it': 336104, 'website but': 975227, 'be limited': 115757, 'limited the': 492744, 'website will': 975484, 'only be': 610145, 'be available': 113749, 'available randomly': 104566, 'randomly and': 696635, 'the quantity': 864955, 'quantity and': 691908, 'and number': 67878, 'of purchase': 588603, 'purchase will': 689727, 'the plcb is': 863835, 'plcb is allowing': 659529, 'is allowing some': 445489, 'allowing some online': 46337, 'some online sale': 783444, 'online sale of': 608920, 'sale of wine': 732413, 'of wine and': 593177, 'wine and liquor': 995767, 'and liquor from': 66215, 'liquor from it': 494171, 'from it website': 336132, 'it website but': 462290, 'website but it': 975228, 'but it will': 146180, 'will be limited': 992538, 'be limited the': 115759, 'limited the website': 492749, 'the website will': 871285, 'website will only': 975485, 'will only be': 994327, 'only be available': 610148, 'be available randomly': 113762, 'available randomly and': 104567, 'randomly and the': 696636, 'and the quantity': 73535, 'the quantity and': 864956, 'quantity and number': 691909, 'and number of': 67881, 'number of purchase': 576981, 'of purchase will': 588604, 'purchase will be': 689728, 'ajimal': 40456, 'kal': 470690, 'booking': 134702, 'ajimal hi': 40457, 'hi kal': 394688, 'kal if': 470691, 'have booking': 379819, 'booking and': 134709, 'and would': 75925, 'look into': 502429, 'into why': 443294, 're seeing': 699447, 'increase we': 433146, 'are happy': 87008, 'this please': 889613, 'please let': 660175, 'let know': 486853, 'also see': 48836, 'see more': 745423, 'price here': 674504, 'ajimal hi kal': 40458, 'hi kal if': 394689, 'kal if you': 470692, 'if you have': 415451, 'you have booking': 1019019, 'have booking and': 379820, 'booking and would': 134712, 'and would like': 75930, 'like to look': 491606, 'to look into': 909438, 'look into why': 502440, 'into why you': 443295, 'why you re': 991597, 'you re seeing': 1020736, 're seeing price': 699462, 'seeing price increase': 746429, 'price increase we': 674793, 'increase we are': 433147, 'we are happy': 970584, 'are happy to': 87010, 'happy to do': 377710, 'do this please': 250363, 'this please let': 889617, 'please let know': 660182, 'let know you': 486864, 'know you can': 477082, 'can also see': 157468, 'also see more': 48840, 'see more information': 745429, 'information on our': 437920, 'on our price': 602621, 'our price here': 624446, 'inconsiderate': 432555, 'dozen': 257863, 'inconvenience': 432585, 'missing': 534277, 'customer will': 223092, 'be mean': 115919, 'mean or': 524596, 'or inconsiderate': 615774, 'inconsiderate dozen': 432562, 'dozen of': 257888, 'of time': 592164, 'time day': 896533, 'day upset': 228639, 'upset about': 947795, 'the inconvenience': 858057, 'inconvenience of': 432590, 'new rule': 559517, 'rule or': 727313, 'or angry': 614321, 'angry about': 76450, 'about missing': 25737, 'missing product': 534320, 'or long': 615998, 'long wait': 501809, 'wait to': 964222, 'get in': 347287, 'in loblaws': 424814, 'customer will be': 223093, 'will be mean': 992553, 'be mean or': 115921, 'mean or inconsiderate': 524597, 'or inconsiderate dozen': 615775, 'inconsiderate dozen of': 432563, 'dozen of time': 257899, 'of time day': 592170, 'time day upset': 896542, 'day upset about': 228640, 'upset about the': 947798, 'about the inconvenience': 26421, 'the inconvenience of': 858058, 'inconvenience of the': 432591, 'of the new': 591270, 'the new rule': 861552, 'new rule or': 559525, 'rule or angry': 727314, 'or angry about': 614322, 'angry about missing': 76451, 'about missing product': 25738, 'missing product or': 534321, 'product or long': 681494, 'or long wait': 616000, 'long wait to': 501812, 'wait to get': 964227, 'to get in': 906505, 'get in loblaws': 347300, '120': 3002, 'australia australia': 103234, 'australia ha': 103290, 'ha 14': 369399, '14 gun': 3478, 'gun per': 368713, 'per 100': 650669, '100 person': 2029, 'person usa': 652677, 'ha 120': 369396, '120 gun': 3011, 'person thanks': 652630, 'the american': 848622, 'american are': 51792, 'just hoarding': 468975, 'and toiletpaper': 74239, 'toiletpaper they': 922606, 're also': 698260, 'also stockpiling': 48910, 'stockpiling gun': 803980, 'ammo think': 52915, 'this is in': 888290, 'is in australia': 448752, 'in australia australia': 420599, 'australia australia ha': 103235, 'australia ha 14': 103291, 'ha 14 gun': 369400, '14 gun per': 3479, 'gun per 100': 368714, 'per 100 person': 650670, '100 person usa': 2033, 'person usa ha': 652678, 'usa ha 120': 948656, 'ha 120 gun': 369397, '120 gun per': 3012, '100 person thanks': 2032, 'person thanks to': 652631, 'thanks to the': 842266, 'to the american': 916488, 'the american are': 848625, 'american are not': 51809, 'are not just': 88405, 'not just hoarding': 570227, 'just hoarding food': 468976, 'food and toiletpaper': 313365, 'and toiletpaper they': 74246, 'toiletpaper they re': 922610, 'they re also': 882994, 're also stockpiling': 698271, 'also stockpiling gun': 48911, 'stockpiling gun ammo': 803981, 'gun ammo think': 368682, 'ammo think people': 52916, 'sydneyproperty': 830735, 'property price': 684321, '19 sydneyproperty': 11009, 'sydneyproperty via': 830736, 'property price during': 684327, 'price during covid': 673617, 'covid 19 sydneyproperty': 213904, '19 sydneyproperty via': 11010, 'beauty': 118737, 'sometimes standing': 785233, 'queue is': 693970, 'an opportunity': 56667, 'observe beauty': 578575, 'beauty socialdistancing': 118791, 'sometimes standing in': 785234, 'standing in supermarket': 793780, 'in supermarket queue': 428653, 'supermarket queue is': 822124, 'queue is an': 693971, 'is an opportunity': 445687, 'an opportunity to': 56676, 'opportunity to observe': 613714, 'to observe beauty': 910791, 'observe beauty socialdistancing': 578576, 'russian': 728608, 'ruble': 727013, 'putin': 691001, 'speech': 788381, 'the russian': 866092, 'russian ruble': 728668, 'ruble which': 727015, 'which had': 985903, 'had hard': 373165, 'hard time': 378026, 'time due': 896587, 'the epidemic': 854425, 'epidemic fell': 279369, 'fell after': 303159, 'after putin': 36097, 'putin speech': 691054, 'speech that': 788400, 'that he': 844250, 'he announced': 384746, 'the measure': 860366, 'the russian ruble': 866103, 'russian ruble which': 728669, 'ruble which had': 727016, 'which had hard': 985905, 'had hard time': 373166, 'hard time due': 378032, 'time due to': 896588, 'to the drop': 916655, 'and the epidemic': 73349, 'the epidemic fell': 854436, 'epidemic fell after': 279370, 'fell after putin': 303162, 'after putin speech': 36098, 'putin speech that': 691055, 'speech that he': 788401, 'that he announced': 844252, 'he announced the': 384748, 'announced the measure': 77082, 'matabichos': 520259, 'exposure': 292951, 'vocs': 959915, 'matabichos we': 520260, 'store at': 806570, 'stand in': 793526, 'large crowd': 479631, 'crowd for': 219158, 'for hour': 322384, 'hour right': 405893, 'now because': 574210, 'because that': 119598, 'would put': 1012139, 'put vulnerable': 690975, 'people at': 647167, 'risk silly': 723879, 'silly fucking': 769754, 'fucking idiot': 339910, 'idiot every': 413501, 'every person': 286095, 'person is': 652499, 'of exposure': 583334, 'exposure to': 293002, 'to vocs': 918225, 'matabichos we re': 520261, 'we re not': 972924, 're not all': 699073, 'not all going': 568108, 'grocery store at': 365222, 'store at the': 806594, 'same time to': 733372, 'time to stand': 898072, 'to stand in': 915159, 'stand in large': 793530, 'in large crowd': 424584, 'large crowd for': 479633, 'crowd for hour': 219159, 'for hour right': 322401, 'hour right now': 405894, 'right now because': 722032, 'now because that': 574214, 'because that would': 119608, 'that would put': 847687, 'would put vulnerable': 1012143, 'put vulnerable people': 690977, 'vulnerable people at': 961081, 'people at risk': 647180, 'at risk silly': 100397, 'risk silly fucking': 723880, 'silly fucking idiot': 769755, 'fucking idiot every': 339912, 'idiot every person': 413502, 'every person is': 286099, 'person is at': 652500, 'is at risk': 445873, 'risk of exposure': 723746, 'of exposure to': 583337, 'exposure to vocs': 293017, 'scammer have': 740583, 'been taking': 122131, 'fear surrounding': 301346, 'the here': 857285, 'are few': 86527, 'few tip': 304111, 'them scammer': 876246, 'scammer at': 740551, 'at bay': 98095, 'scammer have been': 740584, 'have been taking': 379710, 'been taking advantage': 122132, 'advantage of fear': 33004, 'of fear surrounding': 583462, 'fear surrounding the': 301353, 'surrounding the here': 828770, 'the here are': 857287, 'here are few': 392739, 'are few tip': 86538, 'few tip to': 304113, 'tip to keep': 898931, 'keep them scammer': 472116, 'them scammer at': 876247, 'scammer at bay': 740552, 'puregold': 689997, 'disinfecting': 245834, 'two hour': 936958, 'hour at': 405437, 'grocery have': 364582, 'not seen': 571503, 'seen any': 746939, 'any puregold': 79713, 'puregold supermarket': 689998, 'staff disinfecting': 792373, 'disinfecting the': 245885, 'the shopping': 867056, 'shopping cart': 762292, 'cart and': 165243, 'and basket': 58730, 'basket how': 112346, 'we battle': 970811, 'battle covid': 112790, 'the place': 863765, 'place necessary': 657587, 'necessary for': 553987, 'for to': 327211, 'to live': 909334, 'live do': 495788, 'not follow': 569459, 'follow disinfecting': 312371, 'disinfecting practice': 245870, 'in my two': 425640, 'my two hour': 550451, 'two hour at': 936959, 'hour at the': 405444, 'the grocery have': 856810, 'grocery have not': 364585, 'have not seen': 381695, 'not seen any': 571504, 'seen any puregold': 746944, 'any puregold supermarket': 79714, 'puregold supermarket staff': 689999, 'supermarket staff disinfecting': 822835, 'staff disinfecting the': 792374, 'disinfecting the shopping': 245886, 'the shopping cart': 867057, 'shopping cart and': 762293, 'cart and basket': 165244, 'and basket how': 58733, 'basket how can': 112347, 'can we battle': 160161, 'we battle covid': 970812, 'battle covid 19': 112791, '19 if the': 7663, 'if the place': 415018, 'the place necessary': 863770, 'place necessary for': 657588, 'necessary for to': 553995, 'for to live': 327225, 'to live do': 909338, 'live do not': 495789, 'do not follow': 249738, 'not follow disinfecting': 569460, 'follow disinfecting practice': 312372, 'somewhere': 785287, 'california governor': 155506, 'governor just': 360932, 'just announced': 468188, 'announced stay': 77044, 'order please': 618519, 'please stay': 660542, 'home unless': 402394, 'have somewhere': 382657, 'somewhere essential': 785295, 'go like': 353800, 'like going': 490318, 'see doctor': 745052, 'or to': 617464, 'the bank': 849231, 'bank lockdown': 109987, 'lockdown california': 499223, 'california governor just': 155510, 'governor just announced': 360933, 'just announced stay': 468194, 'announced stay at': 77045, 'home order please': 401783, 'order please stay': 618521, 'please stay home': 660548, 'stay home unless': 797018, 'home unless you': 402399, 'you have somewhere': 1019115, 'have somewhere essential': 382658, 'somewhere essential to': 785296, 'essential to go': 281699, 'to go like': 906818, 'go like going': 353801, 'like going to': 490322, 'going to see': 355699, 'to see doctor': 914000, 'see doctor to': 745056, 'doctor to work': 251142, 'to work to': 918796, 'work to the': 1005907, 'store or to': 809377, 'or to the': 617482, 'to the bank': 916507, 'the bank lockdown': 849248, 'bank lockdown california': 109988, 'admit': 32587, 'closet': 183545, 'cleaned': 180703, 'keto': 473180, 'sad': 729145, 'admit it': 32600, 'did some': 240810, 'some panic': 783494, 'buying tonight': 151252, 'tonight but': 924385, 'only because': 610157, 'my closet': 547708, 'closet are': 183548, 'are bare': 84762, 'bare cleaned': 110884, 'cleaned out': 180718, 'out all': 625598, 'my food': 548377, 'went keto': 979054, 'keto they': 473187, 'they only': 882819, 'only gave': 610498, 'gave me': 344638, 'me few': 522725, 'there only': 878898, 'only me': 610773, 'house and': 406171, 'll see': 496988, 'see where': 746057, 'where thing': 985290, 'thing go': 884362, 'go these': 354227, 'are very': 91454, 'very sad': 955483, 'sad time': 729267, 'admit it did': 32602, 'it did some': 457533, 'did some panic': 240815, 'some panic buying': 783495, 'panic buying tonight': 637941, 'buying tonight but': 151253, 'tonight but only': 924387, 'but only because': 146684, 'only because my': 610158, 'because my closet': 119257, 'my closet are': 547709, 'closet are bare': 183549, 'are bare cleaned': 84768, 'bare cleaned out': 110885, 'cleaned out all': 180721, 'out all my': 625602, 'all my food': 43556, 'my food when': 548392, 'food when went': 317574, 'when went keto': 984488, 'went keto they': 979056, 'keto they only': 473188, 'they only gave': 882821, 'only gave me': 610501, 'gave me few': 344640, 'me few week': 522727, 'few week there': 304169, 'week there only': 977027, 'there only me': 878899, 'only me in': 610774, 'me in the': 522978, 'in the house': 429274, 'the house and': 857592, 'house and we': 406187, 'we ll see': 972277, 'll see where': 497000, 'see where thing': 746058, 'where thing go': 985291, 'thing go these': 884366, 'go these are': 354228, 'these are very': 879644, 'are very sad': 91477, 'very sad time': 955493, 'superpower': 824305, 'drying': 261335, 'hip': 396937, 'usacoronavirus': 948809, 'wonhoisback': 1004229, 'onedirectionsave2020': 607545, 'state is': 795691, 'world superpower': 1010025, 'superpower but': 824306, 'afford toiletpaper': 34813, 'toiletpaper american': 921713, 'american answer': 51787, 'answer do': 78040, 'you stay': 1021367, 'alive without': 41853, 'without drying': 1002603, 'drying your': 261343, 'your hip': 1024322, 'hip usacoronavirus': 396940, 'usacoronavirus 19': 948810, '19 chinesevirus': 5801, 'chinesevirus wonhoisback': 177455, 'wonhoisback onedirectionsave2020': 1004230, 'united state is': 942225, 'state is the': 795708, 'is the world': 452979, 'the world superpower': 871977, 'world superpower but': 1010026, 'superpower but it': 824307, 'but it cannot': 146108, 'it cannot afford': 457047, 'cannot afford toiletpaper': 161619, 'afford toiletpaper american': 34814, 'toiletpaper american answer': 921714, 'american answer do': 51789, 'answer do you': 78041, 'do you stay': 250681, 'you stay alive': 1021368, 'stay alive without': 796764, 'alive without drying': 41855, 'without drying your': 1002604, 'drying your hip': 261344, 'your hip usacoronavirus': 1024323, 'hip usacoronavirus 19': 396941, 'usacoronavirus 19 chinesevirus': 948811, '19 chinesevirus wonhoisback': 5803, 'chinesevirus wonhoisback onedirectionsave2020': 177456, 'dramatic': 258264, 'ensuring': 278165, 'lea': 483254, 'luger': 506611, 'currently working': 221720, 'working on': 1008796, 'on story': 603702, 'story for': 811972, 'for tell': 326185, 'me they': 523684, 're stock': 699606, 'piling food': 656586, 'the event': 854601, 'event the': 285084, 'case increase': 165814, 'increase is': 432886, 'is dramatic': 447365, 'dramatic we': 258315, 'are committed': 85447, 'to ensuring': 905206, 'ensuring we': 278208, 'give to': 350785, 'to any': 900600, 'any family': 79213, 'need executive': 554746, 'director lea': 243633, 'lea luger': 483255, 'currently working on': 221723, 'working on story': 1008823, 'on story for': 603704, 'story for tell': 811977, 'for tell me': 326186, 'tell me they': 837026, 'me they re': 523690, 'they re stock': 883133, 're stock piling': 699609, 'stock piling food': 802660, 'piling food in': 656588, 'in the event': 429182, 'the event the': 854605, 'event the case': 285085, 'the case increase': 850461, 'case increase is': 165819, 'increase is dramatic': 432887, 'is dramatic we': 447366, 'dramatic we are': 258316, 'we are committed': 970507, 'are committed to': 85448, 'committed to ensuring': 189037, 'to ensuring we': 905208, 'ensuring we have': 278209, 'we have food': 971818, 'have food to': 380670, 'food to give': 317257, 'to give to': 906722, 'give to any': 350787, 'to any family': 900605, 'any family in': 79214, 'in need executive': 425740, 'need executive director': 554747, 'executive director lea': 289884, 'director lea luger': 243634, 'occurs': 579074, 'gouging occurs': 359399, 'occurs when': 579084, 'when seller': 983986, 'seller increase': 749034, 'good service': 357707, 'service or': 752664, 'or commodity': 614773, 'commodity to': 189320, 'to level': 909226, 'level higher': 487580, 'than is': 840790, 'is reasonable': 451328, 'reasonable or': 703110, 'or fair': 615258, 'fair usually': 296394, 'usually this': 951165, 'this event': 887451, 'event occurs': 285029, 'occurs after': 579075, 'after demand': 35555, 'demand or': 235985, 'or supply': 617295, 'supply shock': 825817, 'shock such': 759514, 'such now': 816655, 'now with': 576439, '19 you': 12262, 'to pricegouging': 912130, 'pricegouging general': 677814, 'general gov': 345341, 'price gouging occurs': 674304, 'gouging occurs when': 359400, 'occurs when seller': 579085, 'when seller increase': 983987, 'seller increase the': 749035, 'increase the price': 433112, 'price of good': 675463, 'of good service': 584236, 'good service or': 357716, 'service or commodity': 752665, 'or commodity to': 614774, 'commodity to level': 189322, 'to level higher': 909228, 'level higher than': 487581, 'higher than is': 395756, 'than is reasonable': 840792, 'is reasonable or': 451331, 'reasonable or fair': 703111, 'or fair usually': 615259, 'fair usually this': 296395, 'usually this event': 951166, 'this event occurs': 887453, 'event occurs after': 285030, 'occurs after demand': 579076, 'after demand or': 35556, 'demand or supply': 235987, 'or supply shock': 617300, 'supply shock such': 825821, 'shock such now': 759515, 'such now with': 816656, 'now with covid': 576443, 'covid 19 you': 214109, '19 you can': 12264, 'can report it': 159450, 'report it to': 712068, 'it to pricegouging': 461742, 'to pricegouging general': 912131, 'pricegouging general gov': 677815, 'bm': 133550, 'aprilfoolsday': 83734, 'corporate to': 207349, 'give free': 350501, 'free health': 331896, 'health insurance': 386539, 'insurance to': 440825, 'to bm': 901871, 'bm store': 133551, 'store grocery': 807970, 'online ecommerce': 608150, 'ecommerce and': 266704, 'and warehouse': 75177, 'warehouse employee': 966716, 'working operation': 1008834, 'operation during': 613175, 'during consumer': 262520, 'consumer supply': 199178, 'demand aprilfoolsday': 235018, 'corporate to give': 207350, 'to give free': 906686, 'give free health': 350502, 'free health insurance': 331898, 'health insurance to': 386553, 'insurance to bm': 440826, 'to bm store': 901872, 'bm store grocery': 133552, 'store grocery online': 807974, 'grocery online ecommerce': 364778, 'online ecommerce and': 608151, 'ecommerce and warehouse': 266715, 'and warehouse employee': 75180, 'warehouse employee who': 966719, 'who are working': 988260, 'are working operation': 91707, 'working operation during': 1008835, 'operation during consumer': 613176, 'during consumer supply': 262521, 'consumer supply and': 199179, 'and demand aprilfoolsday': 61139, 'columnist': 186908, 'administrator': 32529, 'owen': 631837, 'robert': 724695, 'pent': 646699, 'he journalist': 385160, 'journalist columnist': 467429, 'columnist and': 186909, 'and research': 70294, 'research administrator': 713651, 'administrator at': 32530, 'at university': 101403, 'of guelph': 584376, 'guelph with': 367953, 'than three': 841325, 'three decade': 893922, 'decade of': 230692, 'of experience': 583316, 'experience read': 291460, 'read owen': 700526, 'owen robert': 631841, 'robert column': 724703, 'column food': 186900, 'thought pent': 893173, 'pent up': 646700, 'up demand': 944701, 'for post': 324633, '19 travel': 11552, 'travel will': 930573, 'be huge': 115314, 'he journalist columnist': 385161, 'journalist columnist and': 467430, 'columnist and research': 186910, 'and research administrator': 70295, 'research administrator at': 713652, 'administrator at university': 32531, 'at university of': 101404, 'university of guelph': 942447, 'of guelph with': 584379, 'guelph with more': 367954, 'with more than': 999565, 'more than three': 540687, 'than three decade': 841327, 'three decade of': 893923, 'decade of experience': 230695, 'of experience read': 583318, 'experience read owen': 291461, 'read owen robert': 700527, 'owen robert column': 631842, 'robert column food': 724704, 'column food for': 186902, 'for thought pent': 327163, 'thought pent up': 893174, 'pent up demand': 646703, 'up demand for': 944702, 'demand for post': 235477, 'for post covid': 324636, 'post covid 19': 666075, 'covid 19 travel': 213979, '19 travel will': 11557, 'travel will be': 930574, 'will be huge': 992505, 'tv': 936070, 'lying daily': 507071, 'daily on': 224731, 'their tv': 875055, 'tv screen': 936183, 'screen the': 742733, 'the politician': 863950, 'there plenty': 878940, 're ramping': 699348, 'up testing': 946136, 'testing which': 839689, 'which everybody': 985852, 'everybody who': 286505, 'politician lying daily': 663720, 'lying daily on': 507072, 'daily on their': 224733, 'on their tv': 604518, 'their tv screen': 875056, 'tv screen the': 936184, 'screen the politician': 742734, 'the politician say': 863951, 'say there plenty': 739324, 'there plenty of': 878942, 'they re ramping': 883106, 're ramping up': 699349, 'ramping up testing': 696488, 'up testing which': 946137, 'testing which everybody': 839690, 'which everybody who': 985853, 'everybody who ha': 286506, 'price expected': 673732, 'to fall': 905616, 'fall due': 296895, 'to property': 912271, 'house price expected': 406480, 'price expected to': 673733, 'expected to fall': 290976, 'to fall due': 905628, 'fall due to': 296896, 'due to property': 261915, 'enter': 278225, 'urgent': 948309, 'in california': 421136, 'california line': 155532, 'to enter': 905209, 'enter the': 278310, 'supermarket stay': 822929, 'unless it': 942617, 'it urgent': 461983, 'people in california': 648353, 'in california line': 421142, 'california line up': 155533, 'line up to': 493531, 'up to enter': 946373, 'to enter the': 905227, 'enter the supermarket': 278319, 'the supermarket stay': 868823, 'supermarket stay home': 822931, 'home unless it': 402398, 'unless it urgent': 942625, 'allegedly': 45671, 'saliva': 732728, 'dorset': 255905, 'bridport': 139653, 'coronacrisisuk': 204874, '20 year': 13415, 'old man': 598340, 'man ha': 512077, 'been arrested': 120683, 'arrested for': 93840, 'for allegedly': 319194, 'allegedly wiping': 45725, 'wiping his': 996518, 'his saliva': 397776, 'saliva on': 732733, 'product in': 681276, 'in dorset': 422370, 'dorset supermarket': 255909, 'supermarket the': 823206, 'the man': 859971, 'man entered': 512053, 'entered the': 278372, 'the lidl': 859328, 'lidl store': 488304, 'on st': 603622, 'st andrew': 791681, 'andrew road': 76192, 'road in': 724456, 'in bridport': 420976, 'bridport wearing': 139659, 'wearing face': 974616, 'at about': 97829, 'about 2pm': 24689, '2pm on': 16845, 'on friday': 600995, 'friday coronacrisisuk': 333211, 'coronacrisisuk coronacrisis': 204879, '20 year old': 13424, 'year old man': 1014847, 'old man ha': 598344, 'man ha been': 512078, 'ha been arrested': 369722, 'been arrested for': 120686, 'arrested for allegedly': 93841, 'for allegedly wiping': 319201, 'allegedly wiping his': 45726, 'wiping his saliva': 996520, 'his saliva on': 397777, 'saliva on product': 732735, 'on product in': 602953, 'product in dorset': 681282, 'in dorset supermarket': 422371, 'dorset supermarket the': 255911, 'supermarket the man': 823228, 'the man entered': 859975, 'man entered the': 512054, 'entered the lidl': 278373, 'the lidl store': 859329, 'lidl store on': 488305, 'store on st': 809205, 'on st andrew': 603623, 'st andrew road': 791682, 'andrew road in': 76193, 'road in bridport': 724457, 'in bridport wearing': 420978, 'bridport wearing face': 139660, 'wearing face mask': 974618, 'face mask and': 294515, 'and glove at': 63711, 'glove at about': 352602, 'at about 2pm': 97832, 'about 2pm on': 24690, '2pm on friday': 16846, 'on friday coronacrisisuk': 600999, 'friday coronacrisisuk coronacrisis': 333212, 'morgan': 541082, 'stanley': 793874, 'quality': 691753, 'of morgan': 586656, 'morgan stanley': 541091, 'stanley analyst': 793875, 'analyst put': 57166, 'together list': 920855, 'of quality': 588645, 'quality stock': 691852, 'stock around': 801863, 'world available': 1009341, 'at better': 98131, 'better price': 128422, 'price than': 676776, 'just few': 468702, 'group of morgan': 366796, 'of morgan stanley': 586657, 'morgan stanley analyst': 541092, 'stanley analyst put': 793876, 'analyst put together': 57167, 'put together list': 690942, 'together list of': 920856, 'list of quality': 494465, 'of quality stock': 588647, 'quality stock around': 691853, 'stock around the': 801864, 'the world available': 871819, 'world available at': 1009342, 'available at better': 104244, 'at better price': 98132, 'better price than': 128427, 'price than just': 676778, 'than just few': 840814, 'just few week': 468712, 'becoming': 120270, 'needier': 556605, 'ever with': 285601, 'with social': 1000816, 'distancing the': 247532, 'need volunteer': 556163, 'volunteer supermarket': 960335, 'getting longer': 349097, 'longer with': 502111, 'with bulk': 997486, 'buying but': 150061, 'but food': 145736, 'also becoming': 47935, 'becoming needier': 120325, 'needier volunteer': 556606, 'volunteer online': 960308, 'online amp': 607801, 'amp follow': 53815, 'follow all': 312343, 'all government': 42992, 'government and': 359857, 'guideline to': 368481, 'keep yourself': 472292, 'yourself safe': 1026693, 'than ever with': 840621, 'ever with social': 285603, 'with social distancing': 1000817, 'social distancing the': 779739, 'distancing the world': 247538, 'the world need': 871921, 'world need volunteer': 1009829, 'need volunteer supermarket': 556164, 'volunteer supermarket queue': 960336, 'queue are getting': 693873, 'are getting longer': 86816, 'getting longer with': 349099, 'longer with bulk': 502112, 'with bulk buying': 997487, 'bulk buying but': 142269, 'buying but food': 150064, 'but food bank': 145737, 'bank are also': 109638, 'are also becoming': 84441, 'also becoming needier': 47936, 'becoming needier volunteer': 120326, 'needier volunteer online': 556607, 'volunteer online amp': 960309, 'online amp follow': 607802, 'amp follow all': 53816, 'follow all government': 312345, 'all government and': 42993, 'government and who': 359879, 'who guideline to': 988827, 'guideline to keep': 368483, 'to keep yourself': 908883, 'keep yourself safe': 472297, 'say thank': 739214, 'worker thank': 1007904, 'our doctor': 622787, 'nurse thank': 577500, 'our essential': 622921, 'essential worker': 281810, 'want to say': 966109, 'to say thank': 913840, 'say thank you': 739215, 'you to our': 1021816, 'to our grocery': 911184, 'store worker thank': 811599, 'worker thank you': 1007905, 'to our doctor': 911171, 'our doctor and': 622788, 'and nurse thank': 67897, 'nurse thank you': 577501, 'of our essential': 587463, 'our essential worker': 622927, 'essential worker 19': 281811, 'cong': 194403, 'people amid': 646827, 'pandemic cong': 635181, 'cong tell': 194404, 'tell govt': 836960, 'with people amid': 1000132, 'people amid covid': 646828, '19 pandemic cong': 9298, 'pandemic cong tell': 635182, 'cong tell govt': 194405, 'faring': 299063, 'explore': 292474, 'accelerated': 27875, 'favorite': 300480, 'digitaleu': 242717, 'how are': 407385, 'consumer trend': 199362, 'trend faring': 931331, 'faring in': 299066, 'pandemic explore': 635413, 'explore 10': 292475, '10 consumer': 1366, 'trend which': 931512, 'which have': 985914, 'been rapidly': 121776, 'rapidly accelerated': 696948, 'accelerated into': 27884, 'the mainstream': 859921, 'mainstream below': 508904, 'below are': 126595, 'our favorite': 623039, 'favorite digitaleu': 300509, 'digitaleu read': 242718, 'read the': 700567, 'the full': 855998, 'how are consumer': 407394, 'are consumer trend': 85531, 'consumer trend faring': 199373, 'trend faring in': 931332, 'faring in the': 299068, 'in the pandemic': 429433, 'the pandemic explore': 862963, 'pandemic explore 10': 635414, 'explore 10 consumer': 292476, '10 consumer trend': 1368, 'consumer trend which': 199393, 'trend which have': 931513, 'which have been': 985915, 'have been rapidly': 379653, 'been rapidly accelerated': 121777, 'rapidly accelerated into': 696949, 'accelerated into the': 27885, 'into the mainstream': 443146, 'the mainstream below': 859922, 'mainstream below are': 508905, 'below are some': 126596, 'some of our': 783405, 'of our favorite': 587470, 'our favorite digitaleu': 623041, 'favorite digitaleu read': 300510, 'digitaleu read the': 242719, 'read the full': 700577, 'the full report': 856020, 'twenty': 936490, 'walked': 964935, 'neck': 554307, 'fightagainstcovid19': 304969, 'young man': 1022615, 'man in': 512107, 'in his': 423710, 'his twenty': 397881, 'twenty walked': 936499, 'walked past': 964970, 'past me': 643564, 'and entered': 62179, 'entered grocery': 278354, 'store wear': 811188, 'wear face': 974315, 'mask two': 519456, 'two one': 937100, 'one around': 605954, 'around his': 93328, 'his neck': 397635, 'neck the': 554311, 'other one': 620606, 'one on': 606781, 'his head': 397499, 'head and': 385718, 'of those': 592078, 'survive to': 829279, 'have baby': 379395, 'baby the': 106710, 'the law': 859179, 'law save': 482390, 'save fightagainstcovid19': 737498, 'young man in': 1022618, 'man in his': 512112, 'in his twenty': 423742, 'his twenty walked': 397883, 'twenty walked past': 936500, 'walked past me': 964973, 'past me and': 643565, 'me and entered': 522408, 'and entered grocery': 62180, 'entered grocery store': 278355, 'grocery store wear': 365937, 'store wear face': 811189, 'wear face mask': 974318, 'face mask two': 294602, 'mask two one': 519457, 'two one around': 937101, 'one around his': 605955, 'around his neck': 93329, 'his neck the': 397636, 'neck the other': 554312, 'the other one': 862543, 'other one on': 620608, 'one on top': 606787, 'top of his': 925635, 'of his head': 584654, 'his head and': 397500, 'head and you': 385721, 'and you just': 76028, 'just know that': 469108, 'know that he': 476765, 'that he is': 844261, 'he is one': 385137, 'one of those': 606768, 'of those who': 592127, 'those who will': 892697, 'who will survive': 990002, 'will survive to': 995051, 'survive to have': 829280, 'to have baby': 907206, 'have baby the': 379397, 'baby the law': 106712, 'the law save': 859192, 'law save fightagainstcovid19': 482391, 'bneeditorspicks': 133582, 'kazakh': 471160, 'tenge': 837932, 'plunge': 661403, 'flounder': 311053, 'kaz': 471157, 'sank': 736574, 'bne': 133575, 'kazakhstan': 471163, 'fx': 342587, 'bneeditorspicks kazakh': 133585, 'kazakh tenge': 471161, 'tenge plunge': 837933, 'plunge to': 661463, 'to record': 912971, 'record low': 705007, 'low world': 505754, 'world oil': 1009859, 'price flounder': 673895, 'flounder kaz': 311054, 'kaz tenge': 471158, 'tenge sank': 837935, 'sank usd': 736575, 'usd bne': 948907, 'bne business': 133576, 'business kazakhstan': 143976, 'kazakhstan fx': 471168, 'fx see': 342596, 'see sample': 745650, 'sample here': 733465, 'here sign': 393559, 'up here': 945071, 'bneeditorspicks kazakh tenge': 133586, 'kazakh tenge plunge': 471162, 'tenge plunge to': 837934, 'plunge to record': 661467, 'to record low': 912982, 'record low world': 705023, 'low world oil': 505755, 'world oil price': 1009861, 'oil price flounder': 597133, 'price flounder kaz': 673896, 'flounder kaz tenge': 311055, 'kaz tenge sank': 471159, 'tenge sank usd': 837936, 'sank usd bne': 736576, 'usd bne business': 948908, 'bne business kazakhstan': 133578, 'business kazakhstan fx': 143977, 'kazakhstan fx see': 471169, 'fx see sample': 342597, 'see sample here': 745651, 'sample here sign': 733466, 'here sign up': 393560, 'sign up here': 769254, 'thankful': 841898, 'authentic': 103611, 'business have': 143820, 'have asked': 379361, 'asked what': 95896, 'help we': 390859, 'so thankful': 778353, 'thankful to': 841927, 'in community': 421613, 'community that': 190151, 'is caring': 446385, 'and authentic': 58528, 'authentic check': 103616, 'article by': 94273, 're doing': 698528, 'many business have': 513844, 'business have asked': 143822, 'have asked what': 379367, 'asked what can': 95897, 'can we do': 160168, 'we do to': 971357, 'do to help': 250388, 'to help we': 907664, 'help we are': 390860, 'we are so': 970715, 'are so thankful': 90221, 'so thankful to': 778357, 'thankful to be': 841928, 'to be in': 901330, 'be in community': 115395, 'in community that': 421615, 'community that is': 190156, 'that is caring': 844565, 'is caring and': 446387, 'caring and authentic': 164700, 'and authentic check': 58530, 'authentic check out': 103617, 'out this article': 627559, 'this article by': 886413, 'article by about': 94274, 'by about and': 151732, 'about and what': 24809, 'and what they': 75489, 'what they re': 982413, 'they re doing': 883020, 'thank god': 841577, 'god haven': 354733, 'haven had': 383819, 'to step': 915384, 'step inside': 799571, 'supermarket local': 821357, 'local shop': 498389, 'shop doing': 760103, 'doing ok': 252568, 'ok no': 597840, 'evidence of': 288365, 'of major': 586108, 'major stockpiling': 509475, 'stockpiling so': 804067, 'far coronacrisis': 298747, 'thank god haven': 841581, 'god haven had': 354734, 'haven had to': 383828, 'had to step': 373731, 'to step inside': 915387, 'step inside supermarket': 799572, 'inside supermarket local': 439398, 'supermarket local shop': 821358, 'local shop doing': 498398, 'shop doing ok': 760104, 'doing ok no': 252570, 'ok no evidence': 597841, 'no evidence of': 564145, 'evidence of major': 288367, 'of major stockpiling': 586115, 'major stockpiling so': 509476, 'stockpiling so far': 804068, 'so far coronacrisis': 777020, 'armstrong': 92982, 'ad': 31048, 'next armstrong': 561285, 'armstrong join': 92985, 'talk the': 833855, 'of shutdown': 589703, 'shutdown plus': 768083, 'plus what': 661716, 'to expect': 905440, 'expect from': 290644, 'from ad': 334391, 'ad spending': 31162, 'spending this': 789012, 'this quarter': 889786, 'next armstrong join': 561286, 'armstrong join to': 92986, 'join to talk': 466889, 'to talk the': 916287, 'talk the consumer': 833856, 'the consumer impact': 851548, 'consumer impact of': 197805, 'impact of shutdown': 417799, 'of shutdown plus': 589705, 'shutdown plus what': 768084, 'plus what to': 661717, 'what to expect': 982455, 'to expect from': 905445, 'expect from ad': 290645, 'from ad spending': 334392, 'ad spending this': 31163, 'spending this quarter': 789014, 'comrade': 192775, 'metric': 529877, 'hoaxy': 399755, 'good job': 357292, 'job comrade': 465749, 'comrade guess': 192776, 'guess you': 368105, 're using': 699759, 'president metric': 670854, 'metric that': 529884, 'that lower': 844968, 'will also': 992249, 'also lower': 48489, 'the hoaxy': 857425, 'hoaxy covid': 399756, 'death rate': 230171, 'good job comrade': 357294, 'job comrade guess': 465750, 'comrade guess you': 192777, 'guess you re': 368106, 'you re using': 1020783, 're using the': 699765, 'using the president': 950709, 'the president metric': 864265, 'president metric that': 670855, 'metric that lower': 529885, 'that lower oil': 844969, 'lower oil price': 505924, 'oil price will': 597324, 'price will also': 677551, 'will also lower': 992261, 'also lower the': 48490, 'lower the hoaxy': 506024, 'the hoaxy covid': 857426, 'hoaxy covid 19': 399757, '19 death rate': 6450, 'grocery clerk': 364377, 'clerk 27': 181625, '27 helped': 16283, 'helped elderly': 391071, 'elderly customer': 270647, 'customer before': 222178, 'before dying': 122753, 'grocery clerk 27': 364378, 'clerk 27 helped': 181626, '27 helped elderly': 16284, 'helped elderly customer': 391072, 'elderly customer before': 270649, 'customer before dying': 222179, 'before dying of': 122754, 'dying of covid': 263848, 'sushi': 829448, 'careful': 164377, 'the ve': 870657, 'had sushi': 373588, 'sushi and': 829449, 'and pizza': 69043, 'pizza for': 657161, 'in month': 425409, 'month lol': 537832, 'lol been': 500879, 'been eating': 121062, 'eating simple': 266305, 'healthy since': 387763, 'since began': 770524, 'began everything': 123381, 'everything stock': 288007, 'food very': 317425, 'very careful': 955039, 'careful vegetable': 164444, 'vegetable meat': 954035, 'meat whole': 525803, 'whole grain': 990225, 'grain wheat': 361811, 'wheat bag': 982974, 'rice lol': 721077, 'the ve had': 870659, 've had sushi': 953237, 'had sushi and': 373589, 'sushi and pizza': 829450, 'and pizza for': 69044, 'pizza for the': 657163, 'time in month': 897001, 'in month lol': 425418, 'month lol been': 537833, 'lol been eating': 500880, 'been eating simple': 121068, 'eating simple and': 266306, 'simple and healthy': 769988, 'and healthy since': 64399, 'healthy since began': 387764, 'since began everything': 770525, 'began everything stock': 123382, 'everything stock up': 288008, 'on food very': 600925, 'food very careful': 317426, 'very careful vegetable': 955042, 'careful vegetable meat': 164445, 'vegetable meat whole': 954037, 'meat whole grain': 525804, 'whole grain wheat': 990226, 'grain wheat bag': 361812, 'wheat bag of': 982975, 'bag of rice': 108365, 'of rice lol': 589099, 'husband': 411664, '26th': 16237, 'self distance': 747608, 'distance much': 246764, 'much possible': 545237, 'possible because': 665588, 'my husband': 548768, 'husband and': 411669, 'and daughter': 60959, 'daughter are': 226824, 'are both': 85030, 'both on': 135989, 'on immunosuppressant': 601499, 'immunosuppressant for': 417490, 'for health': 322144, 'health condition': 386287, 'condition did': 193442, 'did an': 240543, 'online shop': 608971, 'shop with': 761056, 'with major': 999361, 'major supermarket': 509480, 'but won': 147914, 'won come': 1003770, 'come till': 187547, 'till march': 896053, 'march 26th': 515220, '26th this': 16244, 'this self': 890012, 'isolation can': 455227, 'can work': 160239, 'work without': 1006052, 'without food': 1002650, 'trying to self': 934868, 'to self distance': 914121, 'self distance much': 747609, 'distance much possible': 246765, 'much possible because': 545239, 'possible because my': 665589, 'because my husband': 119261, 'my husband and': 548770, 'husband and daughter': 411673, 'and daughter are': 60960, 'daughter are both': 226825, 'are both on': 85037, 'both on immunosuppressant': 135990, 'on immunosuppressant for': 601500, 'immunosuppressant for health': 417491, 'for health condition': 322149, 'health condition did': 386290, 'condition did an': 193443, 'did an online': 240544, 'an online shop': 56633, 'online shop with': 608992, 'shop with major': 761060, 'with major supermarket': 999363, 'major supermarket but': 509485, 'supermarket but won': 819464, 'but won come': 147915, 'won come till': 1003772, 'come till march': 187548, 'till march 26th': 896054, 'march 26th this': 515222, '26th this self': 16245, 'this self isolation': 890015, 'self isolation can': 747761, 'isolation can work': 455233, 'can work without': 160255, 'work without food': 1006054, 'without food in': 1002658, 'engaging': 276911, 'husain': 411660, 'ray': 698015, 'great response': 362968, 'response my': 715755, 'my next': 549484, 'next one': 561482, 'one what': 607422, 'the expectation': 854703, 'expectation of': 290830, 'your consumer': 1023312, 'current crisis': 221148, 'crisis how': 217498, 'you engaging': 1018412, 'engaging with': 276924, 'with them': 1001606, 'them husain': 875873, 'husain ray': 411661, 'ray 19': 698016, 'some great response': 782991, 'great response my': 362969, 'response my next': 715757, 'my next one': 549488, 'next one what': 561488, 'one what are': 607423, 'are the expectation': 90823, 'the expectation of': 854705, 'expectation of your': 290841, 'of your consumer': 593454, 'your consumer in': 1023321, 'the current crisis': 852623, 'current crisis how': 221157, 'crisis how are': 217499, 'how are you': 407421, 'are you engaging': 91785, 'you engaging with': 1018413, 'engaging with them': 276929, 'with them husain': 1001616, 'them husain ray': 875874, 'husain ray 19': 411662, 'obsessed': 578668, 'offence': 594454, 'irrationality': 444994, 'britain used': 140464, 'used to': 950032, 'be nation': 116043, 'nation of': 552270, 'of level': 585795, 'level headed': 487574, 'headed common': 385896, 'common sense': 189450, 'sense people': 750570, 'people no': 648849, 'no more': 564793, 'more obsessed': 539863, 'obsessed with': 578669, 'with offence': 999850, 'offence and': 594455, 'see here': 745187, 'here irrationality': 393208, 'irrationality sad': 444997, 'sad coronacrisisuk': 729156, 'coronacrisisuk panicbuyers': 204895, 'panicbuyers stophoarding': 638878, 'stophoarding stockpiling': 805477, 'britain used to': 140465, 'used to be': 950035, 'to be nation': 901399, 'be nation of': 116044, 'nation of level': 552271, 'of level headed': 585796, 'level headed common': 487575, 'headed common sense': 385897, 'common sense people': 189463, 'sense people no': 750573, 'people no more': 648854, 'no more obsessed': 564813, 'more obsessed with': 539864, 'obsessed with offence': 578672, 'with offence and': 999851, 'offence and we': 594456, 'and we can': 75284, 'we can see': 971004, 'can see here': 159538, 'see here irrationality': 745190, 'here irrationality sad': 393209, 'irrationality sad coronacrisisuk': 444998, 'sad coronacrisisuk panicbuyers': 729157, 'coronacrisisuk panicbuyers stophoarding': 204896, 'panicbuyers stophoarding stockpiling': 638879, 'learned': 484102, 'metro': 529893, 'krogers': 477788, 'bless': 132579, 'learned that': 484142, 'the kroger': 858865, 'kroger supermarket': 477771, 'supermarket where': 823814, 'where do': 984830, 'do my': 249622, 'shopping ha': 762818, 'ha died': 370376, 'died of': 241583, '19 one': 8976, 'of kroger': 585682, 'kroger employee': 477734, 'employee in': 273953, 'this metro': 888846, 'metro area': 529898, 'area who': 92267, 'virus at': 957970, 'at different': 98434, 'different krogers': 241980, 'krogers god': 477789, 'god bless': 354653, 'bless the': 132593, 'the essentialworkers': 854532, 'learned that an': 484143, 'that an employee': 842644, 'an employee who': 55717, 'employee who work': 274436, 'who work at': 990032, 'at the kroger': 100993, 'the kroger supermarket': 858867, 'kroger supermarket where': 477774, 'supermarket where do': 823816, 'where do my': 984833, 'do my grocery': 249627, 'my grocery shopping': 548581, 'grocery shopping ha': 365030, 'shopping ha died': 762824, 'ha died of': 370381, 'died of covid': 241587, 'covid 19 one': 213516, '19 one of': 8978, 'one of kroger': 606750, 'of kroger employee': 585683, 'kroger employee in': 477735, 'employee in this': 273974, 'in this metro': 429976, 'this metro area': 888847, 'metro area who': 529900, 'area who have': 92274, 'from the virus': 337916, 'the virus at': 870799, 'virus at different': 957974, 'at different krogers': 98435, 'different krogers god': 241981, 'krogers god bless': 477790, 'god bless the': 354659, 'bless the essentialworkers': 132595, 'residence': 714218, 'maintain': 508927, 'order on': 618452, 'food needed': 315523, 'needed however': 556390, 'however individual': 409396, 'individual may': 435221, 'may leave': 521319, 'or place': 616622, 'of residence': 588972, 'residence to': 714232, 'purchase grocery': 689478, 'grocery take': 366019, 'take out': 832440, 'out food': 626079, 'food gasoline': 314644, 'gasoline needed': 344247, 'needed medical': 556428, 'and any': 58212, 'other product': 620765, 'product necessary': 681425, 'necessary to': 554109, 'to maintain': 909560, 'maintain the': 509056, 'safety sanitation': 730723, 'sanitation and': 733829, 'basic operation': 112022, 'operation of': 613232, 'their residence': 874556, 'order on food': 618455, 'on food needed': 600888, 'food needed however': 315524, 'needed however individual': 556391, 'however individual may': 409397, 'individual may leave': 435222, 'may leave the': 521320, 'leave the home': 484969, 'the home or': 857452, 'home or place': 401752, 'or place of': 616623, 'place of residence': 657605, 'of residence to': 588973, 'residence to purchase': 714233, 'to purchase grocery': 912534, 'purchase grocery take': 689483, 'grocery take out': 366020, 'take out food': 832444, 'out food gasoline': 626084, 'food gasoline needed': 314645, 'gasoline needed medical': 344248, 'needed medical supply': 556429, 'medical supply and': 526426, 'supply and any': 824701, 'and any other': 58217, 'any other product': 79601, 'other product necessary': 620774, 'product necessary to': 681426, 'necessary to maintain': 554120, 'to maintain the': 909600, 'maintain the safety': 509063, 'the safety sanitation': 866154, 'safety sanitation and': 730724, 'sanitation and basic': 733830, 'and basic operation': 58722, 'basic operation of': 112024, 'operation of their': 613238, 'of their residence': 591695, 'saudi': 737171, 'kicking': 473821, 'slashed': 773607, 'foreign': 328954, 'saudi arabia': 737179, 'arabia is': 83896, 'is kicking': 449193, 'kicking our': 473829, 'our as': 622125, 'as when': 94828, 'to oil': 910879, 'they slashed': 883408, 'slashed their': 773651, 'sell with': 748948, 'with russia': 1000530, 'russia will': 728603, 'produce while': 680487, 'ha shut': 371929, 'down all': 256459, 'all oil': 43729, 'production basically': 681942, 'basically trump': 112176, 'trump the': 933911, 'the perfect': 863531, 'perfect storm': 651341, 'storm set': 811836, 'set up': 753542, 'be decimated': 114356, 'decimated by': 230979, 'by foreign': 152633, 'foreign oil': 328994, 'saudi arabia is': 737200, 'arabia is kicking': 83898, 'is kicking our': 449194, 'kicking our as': 473830, 'our as when': 622126, 'as when it': 94829, 'come to oil': 187586, 'to oil price': 910882, 'oil price they': 597289, 'price they slashed': 676902, 'they slashed their': 883409, 'slashed their price': 773653, 'their price to': 874431, 'price to sell': 677037, 'to sell with': 914189, 'sell with russia': 748949, 'with russia will': 1000535, 'russia will continue': 728605, 'continue to produce': 201236, 'to produce while': 912213, 'produce while the': 680488, 'while the ha': 987393, 'the ha shut': 857020, 'ha shut down': 371931, 'shut down all': 767799, 'down all oil': 256464, 'all oil production': 43732, 'oil production basically': 597362, 'production basically trump': 681943, 'basically trump the': 112177, 'trump the perfect': 933917, 'the perfect storm': 863547, 'perfect storm set': 651350, 'storm set up': 811837, 'set up to': 753583, 'up to be': 946359, 'to be decimated': 901190, 'be decimated by': 114357, 'decimated by foreign': 230980, 'by foreign oil': 152635, 'foreign oil producer': 328995, 'cabin': 154962, 'fever': 303646, 'dragging': 258190, 'draggingmain': 258197, 'americangraffiti': 52342, 'have cabin': 379867, 'cabin fever': 154967, 'fever gas': 303674, 'low and': 505121, 'only thing': 611299, 'thing open': 884650, 'open is': 612330, 'the drive': 853686, 'thru say': 895217, 'say we': 739451, 'we bring': 970865, 'bring back': 139927, 'back dragging': 106962, 'dragging main': 258193, 'main draggingmain': 508742, 'draggingmain americangraffiti': 258198, 'since we all': 770973, 'all have cabin': 43045, 'have cabin fever': 379868, 'cabin fever gas': 154969, 'fever gas price': 303675, 'are low and': 87919, 'low and the': 505136, 'and the only': 73501, 'the only thing': 862349, 'only thing open': 611311, 'thing open is': 884652, 'open is the': 612335, 'is the drive': 452776, 'the drive thru': 853688, 'drive thru say': 259203, 'thru say we': 895219, 'say we bring': 739453, 'we bring back': 970866, 'bring back dragging': 139929, 'back dragging main': 106963, 'dragging main draggingmain': 258194, 'main draggingmain americangraffiti': 508743, 'investigated': 443814, 'prohibition': 683437, 'cpa': 214564, 'unfair': 941410, 'africa 11': 35039, '11 firm': 2522, 'firm being': 308322, 'being investigated': 125335, 'investigated for': 443817, 'for hiking': 322275, 'during pandemic': 262856, 'pandemic do': 635313, 'have pricing': 382042, 'pricing policy': 677961, 'policy in': 663426, 'place do': 657408, 'and sale': 70790, 'sale staff': 732544, 'staff understand': 793027, 'the prohibition': 864643, 'prohibition in': 683438, 'the competition': 851371, 'competition act': 191653, 'act and': 29593, 'and cpa': 60672, 'cpa on': 214567, 'on excessive': 600659, 'excessive and': 289380, 'and unfair': 74659, 'unfair pricing': 941433, 'south africa 11': 786645, 'africa 11 firm': 35040, '11 firm being': 2523, 'firm being investigated': 308323, 'being investigated for': 125336, 'investigated for hiking': 443819, 'for hiking price': 322278, 'hiking price during': 396395, 'price during pandemic': 673630, 'during pandemic do': 262863, 'pandemic do you': 635317, 'you have pricing': 1019095, 'have pricing policy': 382043, 'pricing policy in': 677962, 'policy in place': 663428, 'in place do': 426731, 'place do your': 657409, 'do your marketing': 250706, 'your marketing and': 1024777, 'marketing and sale': 517524, 'and sale staff': 70794, 'sale staff understand': 732546, 'staff understand the': 793028, 'understand the prohibition': 940769, 'the prohibition in': 864644, 'prohibition in the': 683439, 'in the competition': 429088, 'the competition act': 851372, 'competition act and': 191654, 'act and cpa': 29594, 'and cpa on': 60673, 'cpa on excessive': 214568, 'on excessive and': 600660, 'excessive and unfair': 289381, 'and unfair pricing': 74662, 'pas': 643074, 'holy': 400495, 'pas temporary': 643149, 'temporary law': 837653, 'law that': 482408, 'that say': 846133, 'say can': 738485, 'beat the': 118554, 'the holy': 857438, 'holy fucking': 400502, 'fucking shit': 339997, 'anyone whom': 80638, 'whom cough': 990546, 'cough in': 208479, 'face ll': 294504, 'll use': 497085, 'use glove': 949234, 'pas temporary law': 643151, 'temporary law that': 837654, 'law that say': 482413, 'that say can': 846134, 'say can beat': 738486, 'can beat the': 157721, 'beat the holy': 118559, 'the holy fucking': 857439, 'holy fucking shit': 400503, 'fucking shit out': 339999, 'out of anyone': 626679, 'of anyone whom': 580286, 'anyone whom cough': 80639, 'whom cough in': 990547, 'cough in my': 208482, 'my face ll': 548160, 'face ll use': 294505, 'll use glove': 497086, 'use glove sanitizer': 949238, 'glove sanitizer and': 352900, 'sanitizer and wear': 734457, 'and wear mask': 75354, 'organise': 619300, 'assisted': 96812, 'apartment': 81383, 'care could': 163902, 'could staff': 209706, 'your care': 1023147, 'care home': 163989, 'home organise': 401793, 'organise online': 619303, 'online food': 608205, 'delivery for': 234015, 'of assisted': 580411, 'assisted living': 96813, 'living apartment': 496319, 'apartment on': 81416, 'on same': 603281, 'same site': 733288, 'site re': 771999, 're leave': 698983, 'leave shopping': 484926, 'list outside': 494507, 'outside their': 629607, 'door staff': 255714, 'staff order': 792725, 'several re': 753925, 're to': 699715, 'avoid delivery': 105079, 'delivery charge': 233792, 'charge how': 173258, 'how about': 407269, 'care could staff': 163903, 'could staff at': 209707, 'staff at your': 792242, 'at your care': 101671, 'your care home': 1023148, 'care home organise': 163998, 'home organise online': 401794, 'organise online food': 619304, 'online food delivery': 608208, 'food delivery for': 314125, 'delivery for resident': 234032, 'for resident of': 325147, 'resident of assisted': 714335, 'of assisted living': 580412, 'assisted living apartment': 96814, 'living apartment on': 496320, 'apartment on same': 81417, 'on same site': 603283, 'same site re': 733289, 'site re leave': 772000, 're leave shopping': 698984, 'leave shopping list': 484927, 'shopping list outside': 763192, 'list outside their': 494508, 'outside their door': 629608, 'their door staff': 873075, 'door staff order': 255715, 'staff order for': 792726, 'for several re': 325518, 'several re to': 753926, 're to avoid': 699716, 'to avoid delivery': 900888, 'avoid delivery charge': 105080, 'delivery charge how': 233794, 'charge how about': 173259, 'how about it': 407287, 'equity': 279908, 'corvid19': 207718, 'teamusa': 835890, 'senate': 749685, 'whitehouse': 987942, 'state should': 795932, 'should suspend': 766532, 'suspend mortgage': 829571, 'mortgage home': 541908, 'home equity': 401153, 'equity consumer': 279926, 'consumer auto': 196361, 'auto and': 103865, 'and student': 72605, 'student payment': 814754, 'payment during': 645604, 'crisis stimuluspackage2020': 218089, 'stimuluspackage2020 corvid19': 801650, 'corvid19 teamusa': 207737, 'teamusa senate': 835891, 'senate whitehouse': 749729, 'united state should': 942239, 'state should suspend': 795935, 'should suspend mortgage': 766534, 'suspend mortgage home': 829572, 'mortgage home equity': 541909, 'home equity consumer': 401154, 'equity consumer auto': 279927, 'consumer auto and': 196362, 'auto and student': 103866, 'and student payment': 72609, 'student payment during': 814755, 'payment during this': 645606, 'this crisis stimuluspackage2020': 887086, 'crisis stimuluspackage2020 corvid19': 218090, 'stimuluspackage2020 corvid19 teamusa': 801651, 'corvid19 teamusa senate': 207738, 'teamusa senate whitehouse': 835892, 'ghs100': 349705, 'ghs1': 349702, 'photo': 655113, 'it friday': 458138, 'friday which': 333319, 'which of': 986185, 'these two': 880893, 'two would': 937399, 'would you': 1012401, 'you rather': 1020549, 'rather have': 697468, 'have in': 381032, '19 ghs100': 7208, 'ghs100 00': 349706, '00 in': 258, 'in cash': 421283, 'cash or': 166292, 'or ghs1': 615447, 'ghs1 00': 349703, '00 00': 1, 'shopping voucher': 764329, 'voucher photo': 960659, 'it friday which': 458142, 'friday which of': 333320, 'which of these': 986187, 'of these two': 591870, 'these two would': 880903, 'two would you': 937400, 'would you rather': 1012420, 'you rather have': 1020550, 'rather have in': 697469, 'have in these': 381041, 'time of covid': 897323, 'covid 19 ghs100': 213143, '19 ghs100 00': 7209, 'ghs100 00 in': 349707, '00 in cash': 260, 'in cash or': 421287, 'cash or ghs1': 166294, 'or ghs1 00': 615448, 'ghs1 00 00': 349704, '00 00 in': 5, '00 in online': 269, 'online shopping voucher': 609333, 'shopping voucher photo': 764330, 'notoriously': 573605, 'microbe': 530439, 'crawling': 215188, 'advisable': 33565, 'exam': 288785, 'sma': 774765, 'hospital are': 404294, 'are notoriously': 88510, 'notoriously the': 573608, 'worst place': 1011248, 'get an': 346534, 'an infection': 56304, 'infection not': 436798, 'not necessarily': 570623, 'necessarily there': 553937, 'are plenty': 89114, 'of other': 587359, 'other kind': 620464, 'of microbe': 586477, 'microbe crawling': 530442, 'crawling all': 215189, 'the surface': 868996, 'surface in': 828032, 'corona it': 204025, 'is advisable': 445364, 'advisable to': 33566, 'wear exam': 974311, 'exam glove': 288792, 'keep sma': 471936, 'hospital are notoriously': 404304, 'are notoriously the': 88511, 'notoriously the worst': 573609, 'the worst place': 872069, 'worst place to': 1011249, 'place to get': 657753, 'to get an': 906408, 'get an infection': 346544, 'an infection not': 56305, 'infection not necessarily': 436799, 'not necessarily there': 570630, 'necessarily there are': 553938, 'there are plenty': 878148, 'are plenty of': 89115, 'plenty of other': 660962, 'of other kind': 587366, 'other kind of': 620465, 'kind of microbe': 474920, 'of microbe crawling': 586478, 'microbe crawling all': 530443, 'crawling all over': 215190, 'over the surface': 630773, 'the surface in': 868997, 'surface in the': 828033, 'in the time': 429612, 'the time of': 869608, 'time of corona': 897319, 'of corona it': 581892, 'corona it is': 204026, 'it is advisable': 458863, 'is advisable to': 445365, 'advisable to wear': 33571, 'to wear exam': 918426, 'wear exam glove': 974312, 'exam glove and': 288793, 'glove and keep': 352567, 'and keep sma': 65778, 'to difficult': 904291, 'time caused': 896457, 'situation we': 772565, 'be lowering': 115852, 'by 30': 151625, 'all product': 44060, 'product for': 681195, 'for for': 321664, 'for limited': 322983, 'limited time': 492754, 'time until': 898169, 'the quarantine': 864961, 'quarantine is': 692300, 'over or': 630459, 'or until': 617604, 'longer able': 501900, 'to ship': 914425, 'ship out': 758708, 'out please': 627050, 'we wish': 973926, 'wish you': 996856, 'best during': 127670, 'difficult moment': 242245, 'due to difficult': 261761, 'to difficult time': 904292, 'difficult time caused': 242282, 'time caused by': 896458, 'caused by the': 167870, '19 situation we': 10599, 'situation we will': 772572, 'will be lowering': 992549, 'be lowering our': 115853, 'price by 30': 673007, 'by 30 on': 151630, '30 on all': 17158, 'on all product': 599244, 'all product for': 44063, 'product for for': 681198, 'for for limited': 321668, 'for limited time': 322986, 'limited time until': 492760, 'time until the': 898170, 'until the quarantine': 943869, 'the quarantine is': 864969, 'quarantine is over': 692305, 'is over or': 450717, 'over or until': 630462, 'or until we': 617606, 'until we are': 943920, 'we are no': 970637, 'are no longer': 88267, 'no longer able': 564625, 'longer able to': 501901, 'able to ship': 24544, 'to ship out': 914430, 'ship out please': 758710, 'out please stay': 627054, 'please stay safe': 660551, 'stay safe and': 797211, 'safe and we': 729493, 'and we wish': 75334, 'we wish you': 973930, 'wish you the': 996860, 'you the best': 1021586, 'the best during': 849507, 'best during this': 127671, 'this difficult moment': 887226, '88': 23041, 'write': 1012757, 'christian': 178106, 'infect': 436489, 'my 88': 547202, '88 year': 23062, 'old mother': 598371, 'mother took': 543187, 'the trouble': 870025, 'trouble to': 932648, 'to write': 918858, 'write to': 1012797, 'me to': 523740, 'to request': 913308, 'request that': 713198, 'that not': 845380, 'not visit': 572406, 'visit her': 959271, 'her on': 392245, 'the christian': 850882, 'christian holiday': 178119, 'holiday of': 400339, 'of easter': 582923, 'easter because': 265392, 'because work': 119842, 'she afraid': 755845, 'afraid will': 35033, 'will infect': 993845, 'infect her': 436494, 'her with': 392531, 'my 88 year': 547203, '88 year old': 23063, 'year old mother': 1014850, 'old mother took': 598375, 'mother took the': 543188, 'took the trouble': 925345, 'the trouble to': 870028, 'trouble to write': 932649, 'to write to': 918867, 'write to me': 1012798, 'to me to': 909963, 'me to request': 523774, 'to request that': 913311, 'request that not': 713200, 'that not visit': 845404, 'not visit her': 572407, 'visit her on': 959273, 'her on the': 392249, 'on the christian': 604025, 'the christian holiday': 850883, 'christian holiday of': 178120, 'holiday of easter': 400340, 'of easter because': 582924, 'easter because work': 265393, 'because work in': 119845, 'supermarket and she': 819059, 'and she afraid': 71412, 'she afraid will': 755846, 'afraid will infect': 35034, 'will infect her': 993846, 'infect her with': 436495, 'her with covid': 392532, 'valued': 952253, 'ashba': 95090, 'located': 498802, 'safety of': 730641, 'our valued': 625254, 'valued customer': 952256, 'and employee': 62054, 'employee we': 274390, 'be closing': 114140, 'closing our': 183715, 'our ashba': 622127, 'ashba clothing': 95091, 'clothing retail': 184281, 'store located': 808788, 'located here': 498808, 'vega for': 953810, 'next 30': 561271, '30 day': 17012, 'to the severity': 917051, 'severity of the': 754132, 'outbreak and the': 628013, 'and the safety': 73562, 'the safety of': 866150, 'safety of our': 730651, 'of our valued': 587586, 'our valued customer': 625255, 'valued customer and': 952257, 'customer and employee': 222073, 'and employee we': 62069, 'employee we will': 274393, 'will be closing': 992401, 'be closing our': 114146, 'closing our ashba': 183716, 'our ashba clothing': 622128, 'ashba clothing retail': 95092, 'clothing retail store': 184283, 'retail store located': 718656, 'store located here': 808790, 'located here in': 498809, 'here in la': 393156, 'la vega for': 478229, 'vega for the': 953811, 'the next 30': 861648, 'next 30 day': 561272, 'ineffective': 436284, '62': 21217, 'ideally': 413286, 'algorithm': 41649, 'changing': 172632, 'hey search': 394504, 'for disinfectant': 320750, 'disinfectant or': 245719, 'or alcohol': 614284, 'alcohol gel': 41011, 'gel give': 345123, 'me alternative': 522384, 'alternative that': 49263, 'are ineffective': 87528, 'ineffective against': 436285, 'the recommendation': 865350, 'recommendation are': 704734, 'are clear': 85298, 'clear soap': 181324, 'soap or': 779068, 'hand gel': 374971, 'gel 62': 345088, '62 alcohol': 21222, 'alcohol ideally': 41025, 'ideally 70': 413287, '70 algorithm': 21723, 'algorithm for': 41656, 'shopping need': 763315, 'need changing': 554600, 'changing now': 172756, 'hey search for': 394505, 'search for disinfectant': 743246, 'for disinfectant or': 320752, 'disinfectant or alcohol': 245720, 'or alcohol gel': 614286, 'alcohol gel give': 41013, 'gel give me': 345124, 'give me alternative': 350565, 'me alternative that': 522385, 'alternative that are': 49264, 'that are ineffective': 842766, 'are ineffective against': 87529, 'ineffective against covid': 436286, '19 the recommendation': 11241, 'the recommendation are': 865351, 'recommendation are clear': 704735, 'are clear soap': 85307, 'clear soap or': 181325, 'soap or hand': 779072, 'or hand gel': 615554, 'hand gel 62': 374973, 'gel 62 alcohol': 345089, '62 alcohol ideally': 21223, 'alcohol ideally 70': 41026, 'ideally 70 algorithm': 413288, '70 algorithm for': 21724, 'algorithm for online': 41657, 'for online shopping': 324115, 'online shopping need': 609193, 'shopping need changing': 763316, 'need changing now': 554601, 'nintendo': 563317, 'did miss': 240684, 'miss something': 534185, 'something ha': 784931, '19 also': 4924, 'also ruined': 48806, 'ruined nintendo': 727139, 'nintendo price': 563320, 'did miss something': 240686, 'miss something ha': 534187, 'something ha covid': 784932, 'covid 19 also': 212616, '19 also ruined': 4930, 'also ruined nintendo': 48807, 'ruined nintendo price': 727140, 'thepurge': 877890, 'school closed': 741728, 'closed prison': 183303, 'prison closed': 678711, 'closed fighting': 183112, 'fighting in': 305090, 'we officially': 972633, 'officially in': 596005, 'in thepurge': 429803, 'thepurge yet': 877891, 'yet because': 1016010, 'because would': 119855, 'would quite': 1012148, 'quite like': 694885, 'like new': 490846, 'new car': 558447, 'school closed prison': 741734, 'closed prison closed': 183304, 'prison closed fighting': 678712, 'closed fighting in': 183113, 'fighting in the': 305091, 'supermarket are we': 819194, 'are we officially': 91581, 'we officially in': 972635, 'officially in thepurge': 596008, 'in thepurge yet': 429804, 'thepurge yet because': 877892, 'yet because would': 1016011, 'because would quite': 119857, 'would quite like': 1012149, 'quite like new': 694886, 'like new car': 490847, 'ideal': 413257, 'grateful': 362237, 'manila': 513194, 'down le': 256912, 'le traffic': 483215, 'traffic everywhere': 929091, 'everywhere ideal': 288215, 'ideal driving': 413262, 'driving condition': 259912, 'condition but': 193424, 'home be': 400771, 'be grateful': 115082, 'grateful to': 362319, 'have home': 380973, 'home stay': 402117, 'safe family': 729657, 'family metro': 298049, 'metro manila': 529924, 'fuel price go': 340235, 'price go down': 674203, 'go down le': 353492, 'down le traffic': 256914, 'le traffic everywhere': 483217, 'traffic everywhere ideal': 929092, 'everywhere ideal driving': 288216, 'ideal driving condition': 413263, 'driving condition but': 259913, 'condition but we': 193426, 'but we must': 147753, 'we must all': 972400, 'at home be': 98946, 'home be grateful': 400773, 'be grateful to': 115086, 'grateful to have': 362322, 'to have home': 907255, 'have home stay': 380974, 'home stay safe': 402123, 'stay safe family': 797235, 'safe family metro': 729658, 'family metro manila': 298050, 'style': 815585, 'date': 226582, 'supermarket this': 823307, 'this afternoon': 886229, 'afternoon where': 36729, 'wa no': 962714, 'no bread': 563724, 'bread at': 138414, 'all to': 45234, 'be found': 114931, 'found am': 330148, 'am sure': 50458, 'sure if': 827582, 'we get': 971599, 'get italy': 347440, 'italy style': 462927, 'style situation': 815627, 'situation this': 772516, 'this bread': 886609, 'bread will': 138636, 'be well': 118083, 'well out': 978458, 'of date': 582363, 'local supermarket this': 498600, 'supermarket this afternoon': 823308, 'this afternoon where': 886241, 'afternoon where there': 36730, 'where there wa': 985267, 'there wa no': 879253, 'wa no bread': 962720, 'no bread at': 563726, 'bread at all': 138415, 'at all to': 97915, 'all to be': 45235, 'to be found': 901265, 'be found am': 114933, 'found am sure': 330149, 'am sure if': 50459, 'sure if we': 827590, 'if we get': 415283, 'we get italy': 971616, 'get italy style': 347441, 'italy style situation': 462928, 'style situation this': 815628, 'situation this bread': 772517, 'this bread will': 886610, 'bread will be': 138637, 'will be well': 992770, 'be well out': 118088, 'well out of': 978459, 'out of date': 626717, 'respect': 714954, 'mobilizing': 535111, 'minimum': 533158, 'hope people': 403596, 'have new': 381589, 'new respect': 559477, 'respect for': 714984, 'store retail': 809867, 'retail pharmacist': 718392, 'and fast': 62710, 'food restaurant': 316190, 'restaurant worker': 716812, 'are mobilizing': 88091, 'mobilizing to': 535112, 'keep supply': 471992, 'chain running': 171063, 'running lot': 727994, 'lot for': 504045, 'for minimum': 323453, 'minimum wage': 533220, 'wage in': 963900, 'word of': 1004533, 'of be': 580590, 'hope people will': 403600, 'will have new': 993656, 'have new respect': 381592, 'new respect for': 559478, 'respect for grocery': 714992, 'grocery store retail': 365724, 'store retail pharmacist': 809873, 'retail pharmacist and': 718393, 'pharmacist and fast': 654110, 'and fast food': 62712, 'fast food restaurant': 299975, 'food restaurant worker': 316198, 'restaurant worker they': 716827, 'worker they are': 1007959, 'they are mobilizing': 881334, 'are mobilizing to': 88092, 'mobilizing to keep': 535113, 'to keep supply': 908859, 'keep supply chain': 471994, 'supply chain running': 825026, 'chain running lot': 171067, 'running lot for': 727995, 'lot for minimum': 504047, 'for minimum wage': 323457, 'minimum wage in': 533235, 'wage in the': 963903, 'in the word': 429688, 'the word of': 871710, 'word of be': 1004536, 'of be kind': 580592, 'bedevils': 120437, 'fx market': 342594, 'market analysis': 515942, 'analysis gold': 57049, 'price may': 675184, 'may stay': 521528, 'stay high': 796929, 'high 2008': 394896, '2008 crisis': 13651, 'crisis cure': 217274, 'cure bedevils': 220710, 'bedevils covid': 120438, 'fx market analysis': 342595, 'market analysis gold': 515944, 'analysis gold price': 57050, 'gold price may': 355966, 'price may stay': 675204, 'may stay high': 521529, 'stay high 2008': 796930, 'high 2008 crisis': 394897, '2008 crisis cure': 13652, 'crisis cure bedevils': 217275, 'cure bedevils covid': 220711, 'bedevils covid 19': 120439, 'foot distancing': 318374, 'distancing inside': 247235, 'inside shop': 439374, 'foot distancing inside': 318375, 'distancing inside shop': 247236, 'inside shop is': 439375, 'shop is not': 760363, 'lawmaker': 482478, 'commitment': 188986, 'action alert': 29942, 'alert at': 41358, 'when pa': 983836, 'pa family': 632848, 'family are': 297621, 'are worrying': 91739, 'worrying about': 1010811, 'about now': 25822, 'for pa': 324343, 'pa lawmaker': 632860, 'lawmaker to': 482496, 'make commitment': 509787, 'commitment to': 189003, 'to lowering': 909515, 'lowering prescription': 506125, 'prescription drug': 670501, 'price tell': 676763, 'tell them': 837096, 'step up': 799682, 'up cc': 944586, 'action alert at': 29943, 'alert at time': 41360, 'time when pa': 898300, 'when pa family': 983837, 'pa family are': 632849, 'family are worrying': 297635, 'are worrying about': 91740, 'worrying about now': 1010815, 'about now is': 25827, 'time for pa': 896737, 'for pa lawmaker': 324344, 'pa lawmaker to': 632861, 'lawmaker to make': 482497, 'to make commitment': 909638, 'make commitment to': 509788, 'commitment to lowering': 189007, 'to lowering prescription': 909516, 'lowering prescription drug': 506126, 'prescription drug price': 670504, 'drug price tell': 261055, 'price tell them': 676764, 'tell them to': 837106, 'them to step': 876515, 'to step up': 915389, 'step up cc': 799684, 'ilorin': 416478, 'goodtime': 358093, 'good evening': 357011, 'evening big': 284861, 'big brother': 129666, 'brother please': 141093, 'help me': 390060, 'me ve': 523873, 'food student': 316879, 'student stranded': 814774, 'in ilorin': 423977, 'ilorin goodtime': 416479, 'good evening big': 357012, 'evening big brother': 284862, 'big brother please': 129668, 'brother please help': 141094, 'please help me': 660074, 'help me ve': 390081, 'me ve got': 523874, 've got to': 953201, 'got to stock': 358970, 'stock food student': 802148, 'food student stranded': 316881, 'student stranded in': 814775, 'stranded in ilorin': 812357, 'in ilorin goodtime': 423978, 'uttar': 951402, 'pradesh': 668806, 'licence': 488098, 'litre': 495138, 'bookmark': 134760, 'uttar pradesh': 951403, 'pradesh government': 668811, 'ha issued': 370999, 'issued licence': 456070, 'licence to': 488115, 'to 55': 899768, '55 company': 20370, 'produce up': 680476, 'to 70': 899811, '70 00': 21706, '00 litre': 308, 'litre of': 495166, 'of sanitiser': 589278, 'sanitiser per': 734000, 'day indiafightscorona': 227821, 'indiafightscorona stayhome': 434731, 'stayhome sanitizer': 798091, 'sanitizer bookmark': 734575, 'bookmark for': 134761, 'live here': 495838, 'uttar pradesh government': 951405, 'pradesh government ha': 668812, 'government ha issued': 360155, 'ha issued licence': 371004, 'issued licence to': 456071, 'licence to 55': 488116, 'to 55 company': 899769, '55 company to': 20371, 'to produce up': 912211, 'produce up to': 680477, 'up to 70': 946344, 'to 70 00': 899812, '70 00 litre': 21708, '00 litre of': 309, 'litre of sanitiser': 495168, 'of sanitiser per': 589279, 'sanitiser per day': 734001, 'per day indiafightscorona': 650801, 'day indiafightscorona stayhome': 227822, 'indiafightscorona stayhome sanitizer': 434732, 'stayhome sanitizer bookmark': 798092, 'sanitizer bookmark for': 734576, 'bookmark for live': 134762, 'for live here': 323022, 'been like': 121456, 'this my': 889072, 'my neighbor': 549424, 'neighbor at': 556985, 'least day': 484432, 'day but': 227402, 'but no': 146477, 'one took': 607301, 'took it': 925262, 'it btw': 456926, 'btw where': 141558, 'the heck': 857223, 'heck are': 388693, 'ha been like': 369843, 'been like this': 121459, 'like this my': 491508, 'this my neighbor': 889074, 'my neighbor at': 549426, 'neighbor at least': 556986, 'at least day': 99480, 'least day but': 484434, 'day but no': 227406, 'but no one': 146493, 'no one took': 564974, 'one took it': 607302, 'took it btw': 925267, 'it btw where': 456927, 'btw where the': 141559, 'where the heck': 985232, 'the heck are': 857224, 'heck are they': 388694, 'implicatio': 418540, 'the massive': 860260, 'massive shift': 520102, 'shift in': 758315, 'behavior brought': 123938, 'brought on': 141182, 'on by': 599760, 'will evolve': 993356, 'evolve or': 288508, 'or endure': 615161, 'endure but': 276299, 'life change': 488553, 'change marketer': 172176, 'marketer data': 517462, 'data change': 226170, 'change both': 171956, 'both the': 136059, 'current impact': 221229, 'impact and': 417545, 'future implicatio': 342360, 'we don know': 971386, 'don know how': 253664, 'know how the': 476460, 'how the massive': 408846, 'the massive shift': 860272, 'massive shift in': 520103, 'shift in consumer': 758318, 'consumer behavior brought': 196449, 'behavior brought on': 123939, 'brought on by': 141183, 'on by the': 599766, 'pandemic will evolve': 637008, 'will evolve or': 993357, 'evolve or endure': 288509, 'or endure but': 615162, 'endure but we': 276301, 'but we do': 147746, 'we do know': 971336, 'do know that': 249552, 'know that our': 476779, 'that our life': 845585, 'our life change': 623718, 'life change marketer': 488554, 'change marketer data': 172177, 'marketer data change': 517463, 'data change both': 226171, 'change both the': 171957, 'both the current': 136061, 'the current impact': 852641, 'current impact and': 221230, 'impact and the': 417555, 'and the future': 73390, 'the future implicatio': 856079, 'rosa': 726034, 'believed': 126431, 'sinabi': 770395, 'mo': 534845, 'alex': 41569, 'ka': 470557, 'rosa hello': 726035, 'hello dont': 389148, 'dont believed': 255192, 'believed that': 126432, 'that sa': 846083, 'sa sinabi': 728938, 'sinabi mo': 770396, 'mo alex': 534848, 'alex na': 41585, 'na ma': 551297, 'ma covid': 507260, 'virus ka': 958433, 'ka from': 470558, 'from can': 334795, 'can food': 158366, 'food all': 313082, 'all so': 44370, 'so panic': 777984, 'panic everything': 638082, 'everything be': 287703, 'be safe': 116939, 'safe stay': 729967, 'home just': 401481, 'wash hand': 967474, 'hand always': 374742, 'always okay': 49668, 'rosa hello dont': 726036, 'hello dont believed': 389149, 'dont believed that': 255193, 'believed that sa': 126434, 'that sa sinabi': 846085, 'sa sinabi mo': 728939, 'sinabi mo alex': 770397, 'mo alex na': 534849, 'alex na ma': 41586, 'na ma covid': 551298, 'ma covid 19': 507261, '19 virus ka': 11815, 'virus ka from': 958434, 'ka from can': 470559, 'from can food': 334796, 'can food all': 158367, 'food all so': 313089, 'all so panic': 44373, 'so panic everything': 777986, 'panic everything be': 638083, 'everything be safe': 287704, 'be safe stay': 116968, 'safe stay at': 729968, 'at home just': 99022, 'home just wash': 401486, 'just wash hand': 470235, 'wash hand always': 967476, 'hand always okay': 374743, 'designer': 238370, '608': 21141, '274': 16341, '8199': 22797, 'have designer': 380242, 'designer ready': 238390, 'you create': 1018126, 'create the': 215754, 'perfect space': 651339, 'space give': 787106, 'give call': 350426, 'call today': 156195, 'hear more': 387956, 'about our': 25883, 'service today': 753000, 'today due': 919469, 'outbreak our': 628509, 'is temporarily': 452597, 'temporarily closed': 837457, 'closed we': 183425, 'can still': 159759, 'be of': 116144, 'of service': 589528, 'service by': 752194, 'calling 608': 156507, '608 274': 21142, '274 8199': 16344, 'we have designer': 971797, 'have designer ready': 380243, 'designer ready to': 238391, 'ready to help': 700960, 'help you create': 390962, 'you create the': 1018128, 'create the perfect': 215756, 'the perfect space': 863546, 'perfect space give': 651340, 'space give call': 787107, 'give call today': 350429, 'call today to': 156199, 'today to hear': 920358, 'to hear more': 907411, 'hear more about': 387957, 'more about our': 538517, 'about our service': 25899, 'our service today': 624733, 'service today due': 753001, 'today due to': 919470, '19 outbreak our': 9165, 'outbreak our retail': 628511, 'our retail store': 624641, 'store is temporarily': 808539, 'is temporarily closed': 452598, 'temporarily closed we': 837472, 'closed we can': 183427, 'we can still': 971021, 'can still be': 159763, 'still be of': 800260, 'be of service': 116148, 'of service by': 589530, 'service by calling': 752196, 'by calling 608': 152054, 'calling 608 274': 156508, '608 274 8199': 21143, 'paranoid': 641431, 'wuye': 1013613, 'apparently one': 81980, 'the positive': 864057, 'positive covid': 665292, 'test is': 839037, 'an estate': 55845, 'estate close': 282108, 'my house': 548719, 'house now': 406416, 'now everyone': 574630, 'everyone is': 287060, 'is paranoid': 450798, 'paranoid about': 641433, 'about using': 26814, 'supermarket wuye': 824150, 'wuye is': 1013614, 'is small': 451982, 'small we': 775187, 'all go': 42937, 'same place': 733229, 'apparently one of': 81981, 'of the positive': 591351, 'the positive covid': 864058, 'positive covid 19': 665293, 'covid 19 test': 213921, '19 test is': 11076, 'test is an': 839038, 'is an estate': 445657, 'an estate close': 55846, 'estate close to': 282109, 'close to my': 182909, 'to my house': 910408, 'my house now': 548739, 'house now everyone': 406418, 'now everyone is': 574632, 'everyone is paranoid': 287098, 'is paranoid about': 450799, 'paranoid about using': 641435, 'about using the': 26815, 'using the supermarket': 950715, 'the supermarket wuye': 868919, 'supermarket wuye is': 824151, 'wuye is small': 1013615, 'is small we': 451983, 'small we all': 775188, 'we all go': 970329, 'all go to': 42948, 'to the same': 917035, 'the same place': 866280, 'my tesco': 550343, 'tesco have': 838712, 'slot for': 774173, 'and elderly': 61988, 'elderly so': 270891, 'much for': 544914, 'them saying': 876244, 'my tesco have': 550344, 'tesco have no': 838714, 'have no delivery': 381621, 'delivery slot for': 234521, 'slot for week': 774192, 'for week and': 327690, 'week and elderly': 975909, 'and elderly so': 61993, 'elderly so much': 270892, 'so much for': 777776, 'much for them': 544926, 'for them saying': 326917, 'them saying they': 876245, 'saying they will': 739732, 'they will help': 883855, 'aware': 105600, 'of isolation': 585333, 'isolation online': 455369, 'shopping could': 762404, 'be essential': 114697, 'many but': 513853, 'but is': 146070, 'is perfect': 450843, 'perfect opportunity': 651318, 'for scammer': 325366, 'scammer please': 740612, 'stay aware': 796777, 'aware and': 105603, 'and follow': 63009, 'follow advice': 312337, 'advice find': 33361, 'time of isolation': 897344, 'of isolation online': 585342, 'isolation online shopping': 455370, 'online shopping could': 609079, 'shopping could be': 762405, 'could be essential': 208865, 'be essential for': 114701, 'essential for many': 281059, 'for many but': 323211, 'many but is': 513854, 'but is perfect': 146082, 'is perfect opportunity': 450846, 'perfect opportunity for': 651319, 'opportunity for scammer': 613629, 'for scammer please': 325369, 'scammer please stay': 740613, 'please stay aware': 660545, 'stay aware and': 796778, 'aware and follow': 105604, 'and follow advice': 63010, 'follow advice find': 312338, 'advice find out': 33362, 'out more at': 626564, 'disposable': 246229, 'consumer desperation': 197187, 'desperation field': 238594, 'field day': 304462, 'hike just': 396233, 'just imagine': 469015, 'imagine million': 416755, 'people including': 648459, 'including panic': 432099, 'buyer who': 149799, 'have high': 380939, 'high disposable': 395039, 'disposable income': 246255, 'income or': 432424, 'or income': 615771, 'income at': 432292, 'all there': 45015, 'for irresponsible': 322660, 'irresponsible behaviour': 445039, 'behaviour we': 124552, 'all hurt': 43170, 'hurt from': 411576, 'it behaviour': 456820, 'behaviour stayathome': 124524, 'consumer desperation field': 197188, 'desperation field day': 238595, 'field day for': 304463, 'day for price': 227631, 'for price hike': 324719, 'price hike just': 674533, 'hike just imagine': 396234, 'just imagine million': 469018, 'imagine million of': 416756, 'million of people': 532283, 'of people including': 587928, 'people including panic': 648462, 'including panic buyer': 432100, 'panic buyer who': 637617, 'buyer who don': 149801, 'don have high': 253603, 'have high disposable': 380940, 'high disposable income': 395040, 'disposable income or': 246257, 'income or income': 432426, 'or income at': 615772, 'income at all': 432293, 'at all there': 97911, 'all there no': 45017, 'there no need': 878823, 'need for irresponsible': 554847, 'for irresponsible behaviour': 322661, 'irresponsible behaviour we': 445043, 'behaviour we all': 124553, 'we all hurt': 970335, 'all hurt from': 43171, 'hurt from it': 411577, 'from it behaviour': 336107, 'it behaviour stayathome': 456821, 'is already': 445507, 'already pricing': 47588, 'pricing in': 677934, 'in 12': 419689, '12 drop': 2848, 'in house': 423842, 'price consequence': 673210, 'the stock market': 867915, 'stock market is': 802405, 'market is already': 516613, 'is already pricing': 445531, 'already pricing in': 47589, 'pricing in 12': 677935, 'in 12 drop': 419690, '12 drop in': 2849, 'drop in house': 260254, 'in house price': 423851, 'house price consequence': 406475, 'price consequence of': 673212, 'consequence of the': 194879, 'motorist': 543353, 'crashed': 215058, '56': 20448, '20p': 14920, 'dathan': 226793, 'the sad': 866117, 'sad damn': 729158, 'damn medium': 225390, 'medium doe': 527079, 'not cover': 568902, 'cover the': 212287, 'blatant profiteering': 132438, 'profiteering of': 683067, 'of motorist': 586682, 'motorist by': 543356, 'the fuel': 855995, 'fuel supply': 340289, 'chain since': 171112, 'since christmas': 770539, 'christmas oil': 178192, 'oil crashed': 596716, 'crashed 56': 215059, '56 wholesale': 20458, 'are down': 85963, 'down 20p': 256390, '20p but': 14921, 'but price': 146839, 'down only': 257049, 'few penny': 303983, 'penny dathan': 646607, 'the sad damn': 866118, 'sad damn medium': 729159, 'damn medium doe': 225391, 'medium doe not': 527080, 'doe not cover': 251487, 'not cover the': 568905, 'cover the blatant': 212288, 'the blatant profiteering': 849758, 'blatant profiteering of': 132439, 'profiteering of motorist': 683069, 'of motorist by': 586683, 'motorist by the': 543358, 'by the fuel': 154331, 'the fuel supply': 855997, 'fuel supply chain': 340290, 'supply chain since': 825037, 'chain since christmas': 171113, 'since christmas oil': 770540, 'christmas oil crashed': 178193, 'oil crashed 56': 596717, 'crashed 56 wholesale': 215060, '56 wholesale price': 20459, 'wholesale price are': 990467, 'price are down': 672655, 'are down 20p': 85965, 'down 20p but': 256391, '20p but price': 14922, 'but price are': 146840, 'are down only': 85980, 'down only few': 257050, 'only few penny': 610440, 'few penny dathan': 303984, 'ji': 465439, 'kiranawala': 475412, 'functioned': 341316, 'ji many': 465454, 'many online': 514415, 'online site': 609372, 'site are': 771879, 'food slowly': 316639, 'slowly kiranawala': 774609, 'kiranawala on': 475413, 'the corner': 851743, 'corner will': 203695, 'also have': 48319, 'have stock': 382758, 'stock by': 801964, 'april the': 83697, 'the factory': 854839, 'factory would': 296026, 'would not': 1012070, 'have functioned': 380748, 'functioned for': 341317, 'month are': 537590, 'are there': 90950, 'there plan': 878932, 'prevent hunger': 671647, 'hunger and': 411072, 'riot covi': 722606, 'ji many online': 465455, 'many online site': 514416, 'online site are': 609373, 'site are running': 771882, 'of food slowly': 583779, 'food slowly kiranawala': 316640, 'slowly kiranawala on': 774610, 'kiranawala on the': 475414, 'on the corner': 604039, 'the corner will': 851754, 'corner will also': 203696, 'will also have': 992258, 'also have stock': 48338, 'have stock by': 382761, 'stock by the': 801965, 'by the end': 154319, 'of april the': 580332, 'april the factory': 83699, 'the factory would': 854843, 'factory would not': 296027, 'would not have': 1012077, 'not have functioned': 569835, 'have functioned for': 380749, 'functioned for month': 341318, 'for month are': 323510, 'month are there': 537591, 'are there plan': 90960, 'there plan to': 878933, 'plan to prevent': 658307, 'to prevent hunger': 912068, 'prevent hunger and': 671648, 'hunger and food': 411073, 'and food riot': 63087, 'food riot covi': 316242, 'wow have': 1012562, 'have closed': 379990, 'closed their': 183374, 'their online': 874097, 'store too': 810910, 'too due': 924696, 'the this': 869484, 'this follows': 887568, 'wow have closed': 1012563, 'have closed their': 380002, 'closed their online': 183378, 'their online store': 874109, 'online store too': 609479, 'store too due': 810911, 'too due to': 924697, 'to the this': 917129, 'the this follows': 869485, 'stip': 801684, 'physicaldistancing': 655480, 'is insane': 448929, 'insane now': 439054, 'now please': 575546, 'please stip': 660559, 'stip over': 801685, 'over buying': 630048, 'buying 19': 149834, '19 stayathome': 10804, 'stayathome physicaldistancing': 797578, 'and the price': 73527, 'price of toilet': 675594, 'paper is insane': 640352, 'is insane now': 448930, 'insane now please': 439055, 'now please stip': 575554, 'please stip over': 660560, 'stip over buying': 801686, 'over buying 19': 630049, 'buying 19 stayathome': 149836, '19 stayathome physicaldistancing': 10808, 'susanna': 829420, 'askdrh': 95705, 'cinema': 178529, 'theatre': 872275, 'num': 576794, 'susanna can': 829421, 'you askdrh': 1017321, 'askdrh since': 95706, 'they haven': 882406, 'haven responded': 383877, 'my tweet': 550444, 'tweet how': 936372, 'it ok': 460013, 'ok going': 597807, 'into fast': 442552, 'restaurant supermarket': 716721, 'supermarket queuing': 822143, 'queuing up': 694240, 'up than': 946138, 'than sitting': 841145, 'in restaurant': 427425, 'restaurant cinema': 716368, 'cinema theatre': 178549, 'theatre where': 872284, 'could control': 209048, 'control safe': 202131, 'safe distance': 729582, 'distance an': 246629, 'an num': 56529, 'susanna can you': 829422, 'can you askdrh': 160277, 'you askdrh since': 1017322, 'askdrh since they': 95707, 'since they haven': 770930, 'they haven responded': 882410, 'haven responded to': 383878, 'responded to my': 715364, 'to my tweet': 910445, 'my tweet how': 550445, 'tweet how is': 936373, 'how is it': 408100, 'is it ok': 449043, 'it ok going': 460018, 'ok going into': 597808, 'going into fast': 355234, 'into fast food': 442554, 'food restaurant supermarket': 316196, 'restaurant supermarket queuing': 716723, 'supermarket queuing up': 822145, 'queuing up than': 694244, 'up than sitting': 946139, 'than sitting in': 841146, 'sitting in restaurant': 772121, 'in restaurant cinema': 427430, 'restaurant cinema theatre': 716369, 'cinema theatre where': 178550, 'theatre where you': 872285, 'where you could': 985386, 'you could control': 1018082, 'could control safe': 209049, 'control safe distance': 202132, 'safe distance an': 729583, 'distance an num': 246630, 'persistently': 652273, 'unappealing': 939411, 'grocery that': 366023, 'that no': 845355, 'one want': 607355, 'buy american': 148302, 'are emptying': 86178, 'emptying their': 275295, 'supermarket of': 821695, 'everything but': 287717, 'but these': 147476, 'these persistently': 880471, 'persistently unappealing': 652274, 'unappealing product': 939412, 'product via': 681806, 'the grocery that': 856830, 'grocery that no': 366025, 'that no one': 845363, 'no one want': 564980, 'one want to': 607358, 'want to panic': 966077, 'panic buy american': 637464, 'buy american are': 148303, 'american are emptying': 51803, 'are emptying their': 86187, 'emptying their supermarket': 275296, 'their supermarket of': 874906, 'supermarket of everything': 821699, 'of everything but': 583267, 'everything but these': 287720, 'but these persistently': 147484, 'these persistently unappealing': 880472, 'persistently unappealing product': 652275, 'unappealing product via': 939413, 'pinned': 656838, 'spitting': 789581, 'man pinned': 512185, 'pinned to': 656839, 'to ground': 907014, 'ground after': 366475, 'after he': 35760, 'he wa': 385579, 'wa coughing': 961881, 'and spitting': 72120, 'spitting on': 789596, 'people and': 646841, 'man pinned to': 512186, 'pinned to ground': 656840, 'to ground after': 907015, 'ground after he': 366476, 'after he wa': 35766, 'he wa coughing': 385592, 'wa coughing and': 961882, 'coughing and spitting': 208667, 'and spitting on': 72122, 'spitting on people': 789603, 'on people and': 602734, 'people and food': 646861, 'and food at': 63028, 'food at the': 313453, 'phaps': 654001, 'overtake': 631609, 'phaps supermarket': 654002, 'supermarket aisle': 818828, 'aisle to': 40401, 'be one': 116221, 'way not': 969729, 'to overtake': 911324, 'overtake and': 631610, 'and give': 63657, 'free new': 331993, 'new plastic': 559280, 'plastic bag': 658797, 'bag rather': 108396, 'than use': 841383, 'use those': 949738, 'those people': 892312, 'people bring': 647305, 'bring in': 139990, 'in stopthespread': 428372, 'stopthespread woolies': 805929, 'woolies roll': 1004383, 'roll out': 725446, 'out new': 626623, 'store rule': 809912, 'phaps supermarket aisle': 654003, 'supermarket aisle to': 818849, 'aisle to be': 40403, 'to be one': 901421, 'be one way': 116229, 'one way not': 607373, 'way not able': 969730, 'able to overtake': 24515, 'to overtake and': 911325, 'overtake and give': 631611, 'and give free': 63660, 'give free new': 350504, 'free new plastic': 331994, 'new plastic bag': 559281, 'plastic bag rather': 658810, 'bag rather than': 108397, 'rather than use': 697558, 'than use those': 841384, 'use those people': 949741, 'those people bring': 892316, 'people bring in': 647306, 'bring in stopthespread': 140001, 'in stopthespread woolies': 428373, 'stopthespread woolies roll': 805930, 'woolies roll out': 1004384, 'roll out new': 725452, 'out new covid': 626624, '19 store rule': 10885, 'proprietor': 684593, 'envt': 279225, 'creating': 215970, 'staysafeug': 799041, 'but business': 145322, 'business proprietor': 144273, 'proprietor know': 684594, 're going': 698747, 'going through': 355494, 'through hard': 894496, 'time but': 896411, 'also it': 48439, 'same thing': 733331, 'thing please': 884689, 'please why': 660774, 'why hike': 991066, 'hike price': 396250, 'price like': 675041, 'this let': 888608, 'let create': 486665, 'create an': 215604, 'an ample': 55293, 'ample envt': 54880, 'envt for': 279226, 'for fighting': 321469, 'fighting covid': 305052, 'not creating': 568926, 'creating reason': 216054, 'for spreading': 325838, 'spreading it': 790988, 'the more': 860875, 'more staysafeug': 540457, 'but business proprietor': 145326, 'business proprietor know': 144274, 'proprietor know you': 684595, 'know you re': 477088, 'you re going': 1020634, 're going through': 698754, 'going through hard': 355501, 'through hard time': 894497, 'hard time but': 378029, 'time but also': 896413, 'but also it': 145125, 'also it the': 48442, 'it the same': 461574, 'the same thing': 866309, 'same thing please': 733337, 'thing please why': 884692, 'please why hike': 660775, 'why hike price': 991067, 'hike price like': 396264, 'price like this': 675047, 'like this let': 491504, 'this let create': 888609, 'let create an': 486666, 'create an ample': 215605, 'an ample envt': 55294, 'ample envt for': 54881, 'envt for fighting': 279227, 'for fighting covid': 321470, 'fighting covid 19': 305053, '19 not creating': 8827, 'not creating reason': 568928, 'creating reason for': 216055, 'reason for spreading': 702908, 'for spreading it': 325840, 'spreading it the': 790990, 'it the more': 461559, 'the more staysafeug': 860893, 'fuelupdate': 340371, 'diesel': 241641, 'static': 796289, 'successive': 816284, 'fuelupdate petrol': 340372, 'petrol diesel': 653724, 'diesel price': 241673, 'price static': 676624, 'static for': 796294, 'for 23rd': 318770, '23rd successive': 15523, 'successive day': 816285, 'fuelupdate petrol diesel': 340373, 'petrol diesel price': 653728, 'diesel price static': 241684, 'price static for': 676625, 'static for 23rd': 796295, 'for 23rd successive': 318771, '23rd successive day': 15524, 'environmentalist': 279202, 'it isn': 459141, 'isn china': 454460, 'china who': 177067, 'who to': 989794, 'to blame': 901841, 'blame for': 132257, 'the it': 858581, 'the environmentalist': 854410, 'environmentalist have': 279203, 'have never': 381571, 'never done': 557958, 'done so': 255014, 'much with': 545463, 'with so': 1000784, 'so little': 777559, 'little toiletpaper': 495628, 'toiletpaper in': 922115, 'life toiletpaperpanic': 489144, 'it isn china': 459144, 'isn china who': 454461, 'china who to': 177069, 'who to blame': 989796, 'to blame for': 901845, 'blame for the': 132259, 'for the it': 326512, 'the it the': 858590, 'it the environmentalist': 461531, 'the environmentalist have': 854411, 'environmentalist have never': 279204, 'have never done': 381575, 'never done so': 557960, 'done so much': 255015, 'so much with': 777827, 'much with so': 545464, 'with so little': 1000785, 'so little toiletpaper': 777563, 'little toiletpaper in': 495629, 'toiletpaper in all': 922116, 'in all my': 420174, 'all my life': 43562, 'my life toiletpaperpanic': 549045, 'lighting': 489643, 'dna': 248975, 'uv lighting': 951482, 'lighting break': 489646, 'break dna': 138698, 'dna in': 248985, 'in virus': 430604, 'virus how': 958299, 'get more': 347578, 'more uv': 540884, 'uv light': 951474, 'light in': 489529, 'in use': 430503, 'other public': 620790, 'public area': 687872, 'area 19': 91906, 'uv lighting break': 951483, 'lighting break dna': 489647, 'break dna in': 138699, 'dna in virus': 248986, 'in virus how': 430606, 'virus how can': 958300, 'can we get': 160173, 'we get more': 971618, 'get more uv': 347605, 'more uv light': 540885, 'uv light in': 951475, 'light in use': 489534, 'in use in': 430504, 'use in grocery': 949275, 'store and other': 806312, 'and other public': 68391, 'other public area': 620791, 'public area 19': 687873, 'calculate': 155292, '64': 21303, 'migraine': 531191, 'pill': 656643, 'amazonprime': 51240, 'hey how': 394419, 'you let': 1019587, 'let this': 487175, 'this third': 890573, 'third party': 886091, 'party seller': 643031, 'seller calculate': 748990, 'calculate price': 155297, 'way 64': 969424, '64 99': 21306, '99 for': 23817, 'for 100': 318622, '100 migraine': 1944, 'migraine pill': 531192, 'pill amazonprime': 656644, 'amazonprime price': 51244, 'hey how do': 394422, 'how do you': 407733, 'do you let': 250643, 'you let this': 1019596, 'let this third': 487182, 'this third party': 890574, 'third party seller': 886093, 'party seller calculate': 643032, 'seller calculate price': 748991, 'calculate price this': 155298, 'price this way': 676926, 'this way 64': 891125, 'way 64 99': 969425, '64 99 for': 21307, '99 for 100': 23818, 'for 100 migraine': 318627, '100 migraine pill': 1945, 'migraine pill amazonprime': 531193, 'pill amazonprime price': 656645, 'amazonprime price hike': 51245, 'vanilla': 952411, 'apologize': 81636, 'updating': 947471, 'onlyfans': 611521, 'content': 200778, 'bc of': 113256, 'everything going': 287815, '19 going': 7234, 'be taking': 117509, 'taking little': 833422, 'little break': 495271, 'break my': 138770, 'my vanilla': 550486, 'vanilla job': 952414, 'been spending': 122014, 'spending much': 788922, 'much of': 545183, 'my time': 550375, 'time working': 898381, 'working there': 1008947, 'there apologize': 878046, 'apologize for': 81637, 'for any': 319393, 'any trouble': 79989, 'trouble ll': 932628, 'be updating': 117896, 'updating my': 947476, 'my onlyfans': 549596, 'onlyfans if': 611522, 'if make': 414405, 'make new': 510238, 'new content': 558532, 'content during': 200800, 'bc of everything': 113262, 'of everything going': 583271, 'everything going on': 287816, 'going on covid': 355312, 'covid 19 going': 213150, '19 going to': 7238, 'to be taking': 901579, 'be taking little': 117512, 'taking little break': 833423, 'little break my': 495272, 'break my vanilla': 138772, 'my vanilla job': 550487, 'vanilla job is': 952415, 'job is at': 465897, 'is at grocery': 445860, 'store and ve': 806389, 've been spending': 952932, 'been spending much': 122015, 'spending much of': 788923, 'much of my': 545193, 'of my time': 586821, 'my time working': 550379, 'time working there': 898382, 'working there apologize': 1008949, 'there apologize for': 878047, 'apologize for any': 81638, 'for any trouble': 319427, 'any trouble ll': 79991, 'trouble ll still': 932629, 'still be updating': 800266, 'be updating my': 117897, 'updating my onlyfans': 947479, 'my onlyfans if': 549597, 'onlyfans if make': 611523, 'if make new': 414406, 'make new content': 510239, 'new content during': 558533, 'content during this': 200801, 'ayrshire': 106352, 'serving': 753166, 'ayrshire get': 106353, 'get it': 347388, 'it my': 459713, 'my hub': 548758, 'hub work': 409848, 'the industry': 858157, 'industry too': 436179, 'too also': 924570, 'also feel': 48198, 'sister who': 771798, 'work full': 1005203, 'full time': 340932, 'supermarket she': 822404, 'she will': 756467, 'people left': 648619, 'left serving': 485631, 'serving on': 753198, 'our visit': 625282, 'visit day': 959226, 'is real': 451258, 'ayrshire get it': 106354, 'get it my': 347415, 'it my hub': 459717, 'my hub work': 548759, 'hub work in': 409849, 'in the industry': 429287, 'the industry too': 858189, 'industry too also': 436180, 'too also feel': 924571, 'also feel for': 48200, 'feel for my': 302623, 'for my sister': 323748, 'my sister who': 550119, 'sister who work': 771800, 'who work full': 990036, 'work full time': 1005204, 'full time in': 340940, 'time in supermarket': 897014, 'in supermarket she': 428666, 'supermarket she will': 822412, 'she will be': 756468, 'will be one': 992588, 'be one of': 116225, 'of the people': 591328, 'the people left': 863484, 'people left serving': 648621, 'left serving on': 485632, 'serving on our': 753199, 'on our visit': 602641, 'our visit day': 625283, 'visit day covid': 959227, '19 is real': 8034, 'pr': 668413, '53': 20286, '31': 17543, 'when client': 983255, 'client were': 182129, 'were asked': 979344, 'asked which': 95907, 'which service': 986308, 'service they': 752945, 'reducing from': 706290, 'from pr': 336964, 'pr firm': 668426, 'firm none': 308389, 'none 53': 566542, '53 came': 20295, 'came out': 157040, 'top ahead': 925535, 'brand marketing': 137902, 'marketing 31': 517509, '31 according': 17552, 'an industry': 56290, 'industry survey': 436134, 'survey carried': 828835, 'carried out': 164938, 'with amp': 997191, 'amp check': 53521, 'the result': 865686, 'result here': 717520, 'when client were': 983256, 'client were asked': 182130, 'were asked which': 979347, 'asked which service': 95908, 'which service they': 986309, 'service they are': 752946, 'they are reducing': 881383, 'are reducing from': 89529, 'reducing from pr': 706291, 'from pr firm': 336965, 'pr firm none': 668428, 'firm none 53': 308390, 'none 53 came': 566543, '53 came out': 20296, 'came out on': 157048, 'out on top': 626923, 'on top ahead': 604806, 'top ahead of': 925536, 'ahead of consumer': 39176, 'consumer brand marketing': 196657, 'brand marketing 31': 137903, 'marketing 31 according': 517510, '31 according to': 17553, 'according to an': 28518, 'to an industry': 900464, 'an industry survey': 56296, 'industry survey carried': 436135, 'survey carried out': 828836, 'carried out with': 164943, 'out with amp': 627862, 'with amp check': 997192, 'amp check out': 53522, 'out the rest': 627412, 'of the result': 591414, 'the result here': 865691, 'guest': 368143, 'ninahossain': 563267, 'missed': 534221, 'clip': 182346, 'wa it': 962430, 'it great': 458333, 'great to': 363067, 'be guest': 115113, 'guest on': 368171, 'on with': 605335, 'with ninahossain': 999730, 'ninahossain yesterday': 563268, 'yesterday to': 1015900, 'right and': 721750, 'you missed': 1019870, 'missed it': 534233, 'the clip': 851025, 'clip is': 182360, 'the article': 848928, 'article please': 94428, 'please try': 660691, 'calm friend': 156743, 'friend and': 333493, 'and help': 64439, 'wa it great': 962431, 'it great to': 458340, 'great to be': 363068, 'to be guest': 901288, 'be guest on': 115114, 'guest on with': 368172, 'on with ninahossain': 605345, 'with ninahossain yesterday': 999731, 'ninahossain yesterday to': 563269, 'yesterday to talk': 1015904, 'to talk about': 916278, 'talk about consumer': 833731, 'about consumer right': 25004, 'consumer right and': 198805, 'right and covid': 721751, 'if you missed': 415477, 'you missed it': 1019871, 'missed it the': 534235, 'it the clip': 461519, 'the clip is': 851027, 'clip is in': 182361, 'is in the': 448821, 'in the article': 428988, 'the article please': 848939, 'article please try': 94429, 'please try to': 660692, 'try to stay': 934669, 'stay calm friend': 796812, 'calm friend and': 156744, 'friend and help': 333501, 'and help your': 64482, 'help your neighbor': 391023, 'speaking': 787753, 'anonymity': 77442, 'couldn': 209857, 'nicer': 562543, 'sundaymorning': 818310, 'sundayfeels': 818297, 'they truly': 883588, 'truly deserved': 933289, 'deserved it': 238154, 'it one': 460073, 'one neighbor': 606710, 'neighbor confirmed': 556996, 'confirmed while': 194214, 'while speaking': 987304, 'speaking on': 787763, 'on condition': 600005, 'condition of': 193493, 'of anonymity': 580228, 'anonymity couldn': 77443, 'couldn have': 209895, 'have happened': 380897, 'happened to': 377270, 'to nicer': 910596, 'nicer couple': 562546, 'couple sundaymorning': 211682, 'sundaymorning sundayfeels': 818314, 'sundayfeels charity': 818298, 'charity donation': 173606, 'donation toiletpaper': 254722, 'they truly deserved': 883590, 'truly deserved it': 933290, 'deserved it one': 238155, 'it one neighbor': 460075, 'one neighbor confirmed': 606711, 'neighbor confirmed while': 556997, 'confirmed while speaking': 194215, 'while speaking on': 987305, 'speaking on condition': 787764, 'on condition of': 600006, 'condition of anonymity': 193494, 'of anonymity couldn': 580229, 'anonymity couldn have': 77444, 'couldn have happened': 209896, 'have happened to': 380900, 'happened to nicer': 377280, 'to nicer couple': 910597, 'nicer couple sundaymorning': 562547, 'couple sundaymorning sundayfeels': 211683, 'sundaymorning sundayfeels charity': 818315, 'sundayfeels charity donation': 818299, 'charity donation toiletpaper': 173607, 'abandoned': 24205, 'looting': 503250, 'pussy': 690475, 'scratch': 742603, 'become an': 119916, 'an abandoned': 55029, 'abandoned god': 24206, 'god free': 354704, 'all if': 43176, 'if is': 414274, 'not going': 569694, 'to kill': 908916, 'kill riot': 474483, 'riot looting': 722614, 'looting theft': 503276, 'theft other': 872360, 'people lack': 648599, 'food are': 313403, 'are going': 86874, 'kill stop': 474497, 'stop being': 804479, 'being pussy': 125616, 'pussy and': 690476, 'and panic': 68641, 'buying otherwise': 150844, 'otherwise swear': 621871, 'swear to': 830042, 'to god': 906891, 'god will': 354836, 'will scratch': 994759, 'scratch your': 742617, 'house first': 406295, 'that what it': 847464, 'what it will': 981762, 'will be like': 992537, 'be like it': 115738, 'like it will': 490566, 'it will become': 462376, 'will become an': 992790, 'become an abandoned': 119917, 'an abandoned god': 55030, 'abandoned god free': 24207, 'god free for': 354705, 'free for all': 331841, 'for all if': 319136, 'all if is': 43177, 'if is not': 414277, 'is not going': 450094, 'not going to': 569703, 'going to kill': 355634, 'to kill riot': 908938, 'kill riot looting': 474484, 'riot looting theft': 722615, 'looting theft other': 503277, 'theft other people': 872361, 'other people lack': 620675, 'people lack of': 648600, 'lack of food': 478624, 'of food are': 583648, 'food are going': 313407, 'are going to': 86902, 'to kill stop': 908941, 'kill stop being': 474498, 'stop being pussy': 804493, 'being pussy and': 125617, 'pussy and panic': 690477, 'and panic buying': 68648, 'panic buying otherwise': 637835, 'buying otherwise swear': 150845, 'otherwise swear to': 621872, 'swear to god': 830043, 'to god will': 906898, 'god will scratch': 354842, 'will scratch your': 994760, 'scratch your house': 742618, 'your house first': 1024410, 'fought': 330128, 'stupidity': 815513, 'socialdistancingnow': 780902, 'after social': 36222, 'distancing fought': 247157, 'fought group': 330129, 'group over': 366827, 'paper this': 640904, 'morning 10': 541126, '10 minute': 1537, 'minute after': 533707, 'will all': 992228, 'all die': 42570, 'of stupidity': 590342, 'stupidity before': 815521, 'coronavirus socialdistancing': 206783, 'socialdistancing socialdistancingnow': 780704, 'le than week': 483192, 'than week after': 841436, 'week after social': 975828, 'after social distancing': 36223, 'social distancing fought': 779614, 'distancing fought group': 247158, 'fought group over': 330130, 'group over toilet': 366828, 'toilet paper this': 921491, 'paper this morning': 640906, 'this morning 10': 888931, 'morning 10 minute': 541127, '10 minute after': 1538, 'minute after the': 533712, 'after the grocery': 36321, 'grocery store open': 365616, 'store open we': 809268, 'open we will': 612655, 'we will all': 973831, 'will all die': 992232, 'all die of': 42571, 'die of stupidity': 241429, 'of stupidity before': 590344, 'stupidity before the': 815522, 'before the coronavirus': 123149, 'the coronavirus socialdistancing': 851917, 'coronavirus socialdistancing socialdistancingnow': 206784, 'definit': 232298, 'sorry if': 786056, 're talking': 699661, 'about long': 25660, 'term effect': 838130, 'effect then': 269126, 'then everything': 877163, 'everything we': 288084, 'do right': 250048, 'now will': 576421, '19 doesn': 6607, 'doesn care': 251721, 'economy look': 268045, 'like if': 490474, 'the workforce': 871772, 'workforce and': 1008337, 'are sick': 90105, 'and dying': 61826, 'dying the': 263869, 'economy will': 268355, 'will definit': 993134, 'sorry if we': 786057, 'if we re': 415301, 'we re talking': 972983, 're talking about': 699662, 'talking about long': 833978, 'about long term': 25662, 'long term effect': 501682, 'term effect then': 838134, 'effect then everything': 269127, 'then everything we': 877164, 'everything we do': 288090, 'we do right': 971348, 'do right now': 250050, 'right now will': 722187, 'now will have': 576428, 'term effect covid': 838131, 'covid 19 doesn': 212972, '19 doesn care': 6608, 'doesn care what': 251725, 'care what the': 164263, 'what the economy': 982308, 'the economy look': 853992, 'economy look like': 268046, 'look like if': 502485, 'like if the': 490477, 'if the workforce': 415049, 'the workforce and': 871773, 'workforce and the': 1008344, 'and the consumer': 73295, 'the consumer are': 851493, 'consumer are sick': 196311, 'are sick and': 90106, 'sick and dying': 768364, 'and dying the': 61830, 'dying the economy': 263870, 'the economy will': 854041, 'economy will definit': 268357, 'ikea': 416025, 'ikea close': 416030, 'close 13': 182484, '13 store': 3267, 'store across': 806060, 'the netherlands': 861448, 'netherlands due': 557659, 'continue offering': 201078, 'ikea close 13': 416031, 'close 13 store': 182485, '13 store across': 3268, 'store across the': 806068, 'across the netherlands': 29507, 'the netherlands due': 861451, 'netherlands due to': 557660, '19 will continue': 12084, 'will continue offering': 993016, 'continue offering online': 201080, 'ought': 621940, 'janitor': 464525, 'exact': 288691, 'honor': 403236, 'outbreak is': 628366, 'over we': 630895, 'we ought': 972667, 'ought to': 621943, 'to salute': 913739, 'salute our': 732856, 'employee janitor': 273997, 'janitor and': 464528, 'and amazon': 58041, 'amazon warehouse': 51184, 'warehouse team': 966783, 'team the': 835791, 'the exact': 854653, 'exact same': 288704, 'same way': 733402, 'way we': 970166, 'we honor': 972028, 'honor america': 403238, 'america emergency': 51507, 'emergency responder': 272923, 'when the outbreak': 984182, 'the outbreak is': 862651, 'outbreak is over': 628379, 'is over we': 450745, 'over we ought': 630901, 'we ought to': 972668, 'ought to salute': 621947, 'to salute our': 913740, 'salute our grocery': 732857, 'store employee janitor': 807503, 'employee janitor and': 273998, 'janitor and amazon': 464529, 'and amazon warehouse': 58052, 'amazon warehouse team': 51186, 'warehouse team the': 966784, 'team the exact': 835793, 'the exact same': 854658, 'exact same way': 288705, 'same way we': 733410, 'way we honor': 970171, 'we honor america': 972029, 'honor america emergency': 403239, 'america emergency responder': 51508, 'not people': 570995, 'get about': 346489, 'about 2m': 24687, '2m distance': 16676, 'distance in': 246738, 'what do not': 981347, 'do not people': 249799, 'not people get': 570997, 'people get about': 648044, 'get about 2m': 346491, 'about 2m distance': 24688, '2m distance in': 16680, 'distance in the': 246746, 'bogota': 133995, 'tomorrow bogota': 924042, 'bogota will': 133998, 'on complete': 599999, 'complete curfew': 192080, 'curfew for': 220880, 'day so': 228363, 'so today': 778547, 'today have': 919614, 'food so': 316645, 'so glad': 777169, 'glad have': 351494, 'have nice': 381598, 'nice apartment': 562343, 'apartment during': 81400, 'this so': 890215, 'so have': 777257, 'have space': 382669, 'space to': 787173, 'to exercise': 905408, 'tomorrow bogota will': 924043, 'bogota will be': 133999, 'be on complete': 116190, 'on complete curfew': 600000, 'complete curfew for': 192081, 'curfew for day': 220881, 'for day so': 320584, 'day so today': 228370, 'so today have': 778549, 'today have to': 919620, 'have to stock': 383309, 'on food so': 600909, 'food so glad': 316653, 'so glad have': 777171, 'glad have nice': 351497, 'have nice apartment': 381600, 'nice apartment during': 562344, 'apartment during this': 81401, 'during this so': 263319, 'this so have': 890218, 'so have space': 777264, 'have space to': 382670, 'space to exercise': 787176, 'guilty': 368544, 'need laugh': 555143, 'laugh guilty': 481727, 'guilty toiletpaper': 368575, 'all need laugh': 43600, 'need laugh guilty': 555145, 'laugh guilty toiletpaper': 481728, 'bbva': 113212, 'bbva is': 113213, 'is offering': 450413, 'offering special': 595254, 'special assistance': 787858, 'assistance to': 96750, 'and small': 71772, 'customer impacted': 222485, 'the ongoing': 862237, 'ongoing pandemic': 607668, 'pandemic read': 636295, 'bbva is offering': 113214, 'is offering special': 450427, 'offering special assistance': 595255, 'special assistance to': 787859, 'assistance to consumer': 96754, 'to consumer and': 903265, 'consumer and small': 196243, 'and small business': 71774, 'small business customer': 774853, 'business customer impacted': 143612, 'customer impacted by': 222486, 'impacted by the': 418090, 'by the ongoing': 154397, 'the ongoing pandemic': 862252, 'ongoing pandemic read': 607671, 'pandemic read more': 636297, 'quick': 694265, 'seemed': 746712, 'brushing': 141373, 'annoyed': 77344, 'speak': 787681, 'so went': 778701, 'make quick': 510377, 'quick run': 694361, 'and someone': 71981, 'someone seemed': 784641, 'seemed to': 746726, 'no care': 563763, 'care in': 164019, 'world about': 1009257, 'being close': 124954, 'that person': 845717, 'wa brushing': 961755, 'brushing up': 141374, 'up against': 944240, 'against other': 37569, 'and once': 68076, 'once person': 605689, 'wa so': 963250, 'so annoyed': 776519, 'annoyed they': 77357, 'they yelled': 883962, 'yelled hello': 1015236, 'hello social': 389219, 'distance way': 246883, 'to speak': 914959, 'speak up': 787722, 'so went to': 778703, 'went to make': 979172, 'to make quick': 909725, 'make quick run': 510381, 'quick run to': 694362, 'run to grocery': 727843, 'store and someone': 806352, 'and someone seemed': 71987, 'someone seemed to': 784642, 'seemed to have': 746729, 'to have no': 907284, 'have no care': 381611, 'no care in': 563764, 'care in the': 164022, 'the world about': 871804, 'world about being': 1009258, 'about being close': 24863, 'being close to': 124955, 'close to people': 182914, 'to people that': 911640, 'people that person': 649775, 'that person wa': 845725, 'person wa brushing': 652686, 'wa brushing up': 961756, 'brushing up against': 141375, 'up against other': 944244, 'against other people': 37571, 'other people and': 620656, 'people and once': 646877, 'and once person': 68079, 'once person wa': 605690, 'person wa so': 652691, 'wa so annoyed': 963251, 'so annoyed they': 776520, 'annoyed they yelled': 77358, 'they yelled hello': 883963, 'yelled hello social': 1015237, 'hello social distance': 389220, 'social distance way': 779531, 'distance way to': 246884, 'way to speak': 970098, 'to speak up': 914965, 'supermarket dress': 820021, 'dress code': 258660, 'code pandemic': 185390, 'pandemic line': 635891, 'supermarket dress code': 820022, 'dress code pandemic': 258661, 'code pandemic line': 185391, 'minionworld': 533311, 'stealing': 799220, 'minion': 533302, 'meme': 528292, 'parody': 642187, 'cartoon': 165496, 'animation': 76725, 'minionworld stealing': 533312, 'stealing toiletpaper': 799263, 'toiletpaper is': 922133, 'not crime': 568929, 'crime via': 216807, 'via minion': 956079, 'minion meme': 533303, 'meme parody': 528348, 'parody joke': 642192, 'joke cartoon': 467067, 'cartoon animation': 165497, 'animation fun': 76730, 'minionworld stealing toiletpaper': 533313, 'stealing toiletpaper is': 799264, 'toiletpaper is not': 922139, 'is not crime': 450055, 'not crime via': 568930, 'crime via minion': 216808, 'via minion meme': 956080, 'minion meme parody': 533304, 'meme parody joke': 528350, 'parody joke cartoon': 642193, 'joke cartoon animation': 467068, 'cartoon animation fun': 165498, 'worsening': 1011087, 'unknown': 942518, 'fool': 318283, 'overstock': 631547, 'basic necessity': 111985, 'necessity will': 554296, 'will encourage': 993298, 'encourage the': 275633, 'the black': 849739, 'black market': 132086, 'market further': 516449, 'further worsening': 342209, 'worsening the': 1011103, 'situation in': 772315, 'our city': 622370, 'city small': 179366, 'small bottle': 774814, 'of disinfectant': 582683, 'disinfectant from': 245670, 'from unknown': 338187, 'unknown brand': 942519, 'brand sell': 137997, 'sell for': 748728, 'for insane': 322593, 'insane price': 439059, 'the fool': 855648, 'fool who': 318308, 'who try': 989834, 'to overstock': 911319, 'overstock and': 631548, 'and basic necessity': 58721, 'basic necessity will': 112006, 'necessity will encourage': 554298, 'will encourage the': 993301, 'encourage the black': 275634, 'the black market': 849742, 'black market further': 132089, 'market further worsening': 516450, 'further worsening the': 342210, 'worsening the situation': 1011105, 'the situation in': 867259, 'situation in our': 772323, 'in our city': 426269, 'our city small': 622377, 'city small bottle': 179367, 'small bottle of': 774815, 'bottle of disinfectant': 136279, 'of disinfectant from': 582686, 'disinfectant from unknown': 245672, 'from unknown brand': 338188, 'unknown brand sell': 942521, 'brand sell for': 137999, 'sell for insane': 748731, 'for insane price': 322594, 'insane price thanks': 439064, 'price thanks to': 676789, 'to the fool': 916720, 'the fool who': 855649, 'fool who try': 318311, 'who try to': 989835, 'try to overstock': 934645, 'to overstock and': 911320, 'overstock and panic': 631551, 'and panic buy': 68646, 'outfit': 628937, 'be my': 116036, 'my new': 549452, 'new outfit': 559242, 'outfit to': 628950, 'store sundaythoughts': 810446, 'sundaythoughts quarantinediaries': 818345, 'this will be': 891405, 'will be my': 992567, 'be my new': 116039, 'my new outfit': 549468, 'new outfit to': 559244, 'outfit to the': 628951, 'grocery store sundaythoughts': 365822, 'store sundaythoughts quarantinediaries': 810447, 'on business': 599733, '19 on business': 8932, 'on business and': 599736, 'and consumer in': 60391, 'consumer in europe': 197819, 'construction': 195781, 'island': 454277, 'please stop': 660564, 'stop construction': 804582, 'construction in': 195798, 'york live': 1016631, 'long island': 501458, 'island city': 454280, 'city where': 179452, 'of construction': 581691, 'construction going': 195796, 'feel safe': 302823, 'safe walking': 730105, 'walking to': 965114, 'pharmacy or': 654395, 'or grocery': 615522, 'store because': 806672, 'worker walking': 1008115, 'walking around': 965018, 'please stop construction': 660573, 'stop construction in': 804583, 'construction in new': 195799, 'new york live': 559937, 'york live in': 1016632, 'live in long': 495873, 'in long island': 424910, 'long island city': 501460, 'island city where': 454281, 'city where there': 179454, 'lot of construction': 504161, 'of construction going': 581692, 'construction going on': 195797, 'going on and': 355300, 'on and do': 599349, 'and do not': 61557, 'not feel safe': 569385, 'feel safe walking': 302830, 'safe walking to': 730106, 'walking to the': 965115, 'to the pharmacy': 916952, 'the pharmacy or': 863658, 'pharmacy or grocery': 654399, 'or grocery store': 615528, 'grocery store because': 365242, 'store because of': 806683, 'because of all': 119305, 'of all the': 579982, 'all the worker': 44987, 'the worker walking': 871768, 'worker walking around': 1008116, 'corn': 203554, 'noting': 573569, 'factor': 295863, 'influencing': 437350, 'kansa corn': 470808, 'corn price': 203580, '19 dan': 6414, 'brien provides': 139772, 'provides updated': 686908, 'updated discussion': 947362, 'the corn': 851737, 'corn market': 203574, '19 noting': 8841, 'noting other': 573574, 'other several': 620894, 'several factor': 753846, 'factor that': 295899, 'are influencing': 87538, 'influencing the': 437358, 'market well': 517326, 'kansa corn price': 470809, 'corn price cost': 203582, 'covid 19 dan': 212908, '19 dan brien': 6415, 'dan brien provides': 225525, 'brien provides updated': 139774, 'provides updated discussion': 686909, 'updated discussion of': 947363, 'discussion of the': 245031, 'of the corn': 590893, 'the corn market': 851738, 'corn market in': 203575, 'market in the': 516575, 'covid 19 noting': 213487, '19 noting other': 8842, 'noting other several': 573575, 'other several factor': 620895, 'several factor that': 753847, 'factor that are': 295900, 'that are influencing': 842768, 'are influencing the': 87539, 'influencing the market': 437360, 'the market well': 860175, 'madrid': 508229, 'christ people': 178084, 'are queuing': 89389, 'in front': 423131, 'supermarket here': 820744, 'in madrid': 424979, 'madrid do': 508233, 'know if': 476467, 'it because': 456745, 'that full': 843972, 'full or': 340782, 'or only': 616395, 'only amount': 610083, 'are allowed': 84377, 'allowed inside': 46171, 'inside at': 439227, 'time now': 897294, 'now 19': 573893, 'christ people are': 178085, 'people are queuing': 647052, 'are queuing up': 89392, 'queuing up on': 694242, 'up on the': 945627, 'the street in': 868232, 'street in front': 812994, 'in front of': 423133, 'front of the': 338648, 'of the supermarket': 591511, 'the supermarket here': 868629, 'supermarket here in': 820745, 'here in madrid': 393158, 'in madrid do': 424980, 'madrid do not': 508234, 'not know if': 570296, 'know if it': 476477, 'if it because': 414288, 'it because it': 456750, 'because it that': 119207, 'it that full': 461489, 'that full or': 843974, 'full or only': 340784, 'or only amount': 616396, 'only amount of': 610084, 'amount of people': 53246, 'of people are': 587874, 'people are allowed': 646922, 'are allowed inside': 84380, 'allowed inside at': 46173, 'inside at time': 439228, 'at time now': 101300, 'time now 19': 897295, 'approval': 83083, 'convalescent': 202301, 'plasma': 658778, 'therapy': 877910, 'methodist': 529805, 'eind': 270221, 'news grant': 560481, 'grant first': 362024, 'first approval': 308513, 'approval of': 83094, 'of convalescent': 581854, 'convalescent plasma': 202302, 'plasma therapy': 658781, 'therapy in': 877920, 'in patient': 426549, 'patient houston': 644185, 'houston methodist': 407208, 'methodist first': 529806, 'first to': 309123, 'receive eind': 703468, 'eind approval': 270222, 'approval for': 83090, 'for convalescent': 320339, 'plasma in': 658779, 'in individual': 424072, 'individual patient': 435235, 'good news grant': 357446, 'news grant first': 560482, 'grant first approval': 362025, 'first approval of': 308514, 'approval of convalescent': 83096, 'of convalescent plasma': 581855, 'convalescent plasma therapy': 202304, 'plasma therapy in': 658782, 'therapy in patient': 877921, 'in patient houston': 426550, 'patient houston methodist': 644186, 'houston methodist first': 407209, 'methodist first to': 529807, 'first to receive': 309130, 'to receive eind': 912915, 'receive eind approval': 703469, 'eind approval for': 270223, 'approval for convalescent': 83093, 'for convalescent plasma': 320340, 'convalescent plasma in': 202303, 'plasma in individual': 658780, 'in individual patient': 424073, 'medium omg': 527193, 'omg everyone': 598896, 'everyone panicking': 287253, 'panicking people': 639368, 'panic including': 638209, 'buying medium': 150715, 'medium look': 527169, 'all these': 45019, 'these selfish': 880643, 'selfish bastard': 748015, 'bastard panic': 112489, 'buying look': 150677, 'look get': 502384, 'it stophoarding': 461274, 'stophoarding but': 805366, 'but an': 145178, 'an irresponsible': 56465, 'irresponsible uk': 445088, 'uk medium': 938545, 'medium ha': 527124, 'ha led': 371122, 'led people': 485253, 'not hate': 569804, 'hate educate': 378879, 'medium omg everyone': 527194, 'omg everyone panicking': 598898, 'everyone panicking people': 287256, 'panicking people panic': 639370, 'people panic including': 649056, 'panic including panic': 638210, 'including panic buying': 432101, 'panic buying medium': 637807, 'buying medium look': 150716, 'medium look at': 527170, 'look at all': 502253, 'at all these': 97912, 'all these selfish': 45054, 'these selfish bastard': 880644, 'selfish bastard panic': 748019, 'bastard panic buying': 112490, 'panic buying look': 637800, 'buying look get': 150679, 'look get it': 502385, 'get it stophoarding': 347425, 'it stophoarding but': 461275, 'stophoarding but an': 805367, 'but an irresponsible': 145182, 'an irresponsible uk': 56466, 'irresponsible uk medium': 445089, 'uk medium ha': 938547, 'medium ha led': 527126, 'ha led people': 371123, 'led people to': 485254, 'people to do': 649894, 'do it do': 249472, 'it do not': 457602, 'do not hate': 249752, 'not hate educate': 569806, 'scale': 739866, 'citizen are': 178843, 'leave their': 484981, 'home and': 400608, 'at local': 99599, 'for everyday': 321188, 'everyday food': 286557, 'item which': 463814, 'infection is': 436777, 'is high': 448438, 'high online': 395202, 'online retailer': 608875, 'retailer cannot': 719064, 'cannot scale': 162076, 'scale their': 739916, 'operation to': 613276, 'demand of': 235940, 'of billion': 580708, 'billion citizen': 130791, 'citizen are forced': 178847, 'to leave their': 909164, 'leave their home': 484982, 'their home and': 873557, 'home and stand': 400690, 'and stand in': 72218, 'stand in line': 793531, 'in line at': 424744, 'line at local': 492986, 'at local store': 99609, 'local store for': 498462, 'store for everyday': 807801, 'for everyday food': 321189, 'everyday food item': 286558, 'food item which': 315242, 'item which are': 463815, 'which are at': 985670, 'are at risk': 84680, 'at risk and': 100337, 'risk and the': 723378, 'and the risk': 73558, 'of infection is': 585166, 'infection is high': 436780, 'is high online': 448448, 'high online retailer': 395203, 'online retailer cannot': 608880, 'retailer cannot scale': 719066, 'cannot scale their': 162077, 'scale their operation': 739917, 'their operation to': 874121, 'operation to meet': 613283, 'to meet the': 910055, 'meet the demand': 527596, 'the demand of': 853102, 'demand of billion': 235943, 'of billion citizen': 580710, 'introduce': 443377, 'breaking introduce': 138978, 'introduce bill': 443378, 'bill to': 130700, 'to during': 904807, 'breaking introduce bill': 138979, 'introduce bill to': 443379, 'bill to during': 130701, 'to during crisis': 904808, 'epra': 279572, 'revoke': 720711, 'license': 488121, 'hiked': 396303, 'liquefied': 494069, 'epra to': 279573, 'to revoke': 913509, 'revoke license': 720712, 'license of': 488147, 'of trader': 592400, 'trader found': 928683, 'found to': 330441, 'have hiked': 380948, 'hiked liquefied': 396324, 'liquefied petroleum': 494072, 'petroleum gas': 653815, 'gas lpg': 343894, 'price kenya': 674989, 'kenya battle': 472886, 'epra to revoke': 279574, 'to revoke license': 913510, 'revoke license of': 720713, 'license of trader': 488151, 'of trader found': 592402, 'trader found to': 928684, 'found to have': 330443, 'to have hiked': 907252, 'have hiked liquefied': 380949, 'hiked liquefied petroleum': 396325, 'liquefied petroleum gas': 494073, 'petroleum gas lpg': 653816, 'gas lpg price': 343895, 'lpg price kenya': 506324, 'price kenya battle': 674990, 'kenya battle with': 472887, 'battle with covid': 112843, 'baymen': 113005, 'catch': 166972, 'one new': 606713, 'york fish': 1016613, 'fish seller': 309337, 'seller ha': 749028, 'ha told': 372336, 'told local': 923593, 'local baymen': 497727, 'baymen to': 113006, 'stop fishing': 804655, 'fishing until': 309422, 'until demand': 943720, 'demand catch': 235111, 'catch up': 167046, 'supply amidst': 824688, 'one new york': 606716, 'new york fish': 559929, 'york fish seller': 1016614, 'fish seller ha': 309338, 'seller ha told': 749029, 'ha told local': 372338, 'told local baymen': 923594, 'local baymen to': 497728, 'baymen to stop': 113007, 'to stop fishing': 915524, 'stop fishing until': 804656, 'fishing until demand': 309423, 'until demand catch': 943721, 'demand catch up': 235112, 'catch up with': 167055, 'up with supply': 946688, 'with supply amidst': 1001076, 'supply amidst the': 824689, 'amidst the outbreak': 52829, 'boosted': 135041, 'entirely': 278783, 'with help': 998764, 'help from': 389766, 'from new': 336566, 'distillery is': 247770, 'is switching': 452516, 'switching gear': 830561, 'gear to': 344995, 'have either': 380416, 'either boosted': 270263, 'boosted production': 135051, 'or reprogrammed': 616858, 'reprogrammed entirely': 712994, 'entirely during': 278789, 'with help from': 998765, 'help from new': 389774, 'from new peoria': 336568, 'peoria distillery is': 650629, 'distillery is switching': 247774, 'is switching gear': 452517, 'switching gear to': 830563, 'gear to make': 344997, 'make sanitizer it': 510422, 'sanitizer it just': 735228, 'example of business': 288927, 'of business that': 580970, 'business that have': 144479, 'that have either': 844206, 'have either boosted': 380417, 'either boosted production': 270264, 'boosted production or': 135052, 'production or reprogrammed': 682174, 'or reprogrammed entirely': 616859, 'reprogrammed entirely during': 712995, 'entirely during the': 278790, 'wanna': 965611, 'frequented': 332832, 'skeeves': 772850, 'just wanna': 470216, 'wanna say': 965665, 'say hi': 738752, 'hi to': 394760, 'their 60': 872438, '60 they': 21015, 'they work': 883919, 'other grocery': 620315, 'worker we': 1008137, 'still out': 801005, 'there for': 878401, 'for just': 322785, 'the thought': 869497, 'thought of': 893139, 'most frequented': 542340, 'frequented place': 332833, 'place during': 657416, 'this skeeves': 890203, 'skeeves me': 772851, 'me out': 523295, 'just wanna say': 470219, 'wanna say hi': 965666, 'say hi to': 738755, 'hi to my': 394762, 'to my parent': 910428, 'my parent who': 549707, 'parent who are': 641777, 'are in their': 87449, 'in their 60': 429710, 'their 60 they': 872440, '60 they work': 21016, 'they work in': 883922, 'store and all': 806191, 'the other grocery': 862530, 'other grocery store': 620320, 'store worker we': 811618, 'worker we appreciate': 1008138, 'appreciate you still': 82790, 'you still out': 1021410, 'still out there': 801012, 'out there for': 627481, 'there for just': 878405, 'for just the': 322797, 'just the thought': 470016, 'the thought of': 869500, 'thought of having': 893144, 'having to be': 384332, 'be in the': 115439, 'in the most': 429374, 'the most frequented': 860988, 'most frequented place': 542341, 'frequented place during': 332834, 'place during this': 657419, 'during this skeeves': 263318, 'this skeeves me': 890204, 'skeeves me out': 772852, 'dmv': 248962, 'dedicated': 231692, 'getupdc': 349477, 'the dmv': 853440, 'dmv have': 248965, 'have set': 382483, 'set specific': 753471, 'specific hour': 788217, 'and date': 60957, 'date dedicated': 226617, 'dedicated to': 231743, 'to senior': 914230, 'senior to': 750424, 'from exposure': 335373, 'to large': 909039, 'large group': 479680, 'people getupdc': 648069, 'store in the': 808401, 'in the dmv': 429141, 'the dmv have': 853441, 'dmv have set': 248966, 'have set specific': 382489, 'set specific hour': 753472, 'specific hour and': 788218, 'hour and date': 405395, 'and date dedicated': 60958, 'date dedicated to': 226618, 'dedicated to senior': 231749, 'to senior to': 914238, 'senior to protect': 750430, 'to protect them': 912338, 'protect them from': 685005, 'them from exposure': 875749, 'from exposure to': 335374, 'exposure to large': 293010, 'to large group': 909044, 'large group of': 479684, 'group of people': 366799, 'of people getupdc': 587918, 'dhl': 240118, 'expensive': 291215, 'on shipping': 603420, 'shipping price': 758892, 'my store': 550213, '19 unfortunately': 11633, 'unfortunately dhl': 941589, 'dhl prohibits': 240121, 'prohibits the': 683461, 'use of': 949396, 'eu package': 283254, 'package so': 633398, 'the international': 858360, 'international package': 441838, 'package service': 633388, 'service which': 753067, 'is little': 449397, 'more expensive': 539175, 'expensive ll': 291265, 'for when': 327817, 'drop again': 260111, 'again and': 36882, 'and exchange': 62459, 'exchange it': 289456, 'it in': 458721, 'update on shipping': 947132, 'on shipping price': 603421, 'shipping price in': 758894, 'price in my': 674711, 'in my store': 425632, 'my store due': 550219, 'covid 19 unfortunately': 213999, '19 unfortunately dhl': 11634, 'unfortunately dhl prohibits': 941591, 'dhl prohibits the': 240122, 'prohibits the use': 683462, 'the use of': 870568, 'use of eu': 949407, 'of eu package': 583205, 'eu package so': 283255, 'package so have': 633399, 'so have to': 777266, 'have to use': 383331, 'to use the': 918071, 'use the international': 949675, 'the international package': 858370, 'international package service': 441839, 'package service which': 633389, 'service which is': 753069, 'which is little': 986025, 'is little more': 449403, 'little more expensive': 495463, 'more expensive ll': 539180, 'expensive ll keep': 291266, 'll keep an': 496865, 'eye out for': 294092, 'out for when': 626172, 'for when the': 327821, 'when the price': 984187, 'the price drop': 864344, 'price drop again': 673557, 'drop again and': 260112, 'again and exchange': 36887, 'and exchange it': 62460, 'exchange it in': 289457, 'it in the': 458748, 'pass': 643198, 'lockout': 500522, 'harsh': 378555, 'penalty': 646434, 'corrupt': 207654, 'punish': 689214, 'voter': 960570, 'three thing': 894068, 'thing need': 884610, 'happen after': 377051, 'crisis pass': 217854, 'pass absolute': 643200, 'absolute lockout': 27254, 'lockout of': 500527, 'all chinese': 42342, 'chinese product': 177330, 'product trade': 681779, 'war run': 966528, 'run by': 727589, 'by consumer': 152181, 'consumer harsh': 197702, 'harsh penalty': 378562, 'penalty against': 646437, 'against corrupt': 37397, 'corrupt medium': 207663, 'medium again': 526978, 'again consumer': 36953, 'consumer driven': 197246, 'driven and': 259272, 'and punish': 69776, 'punish corrupt': 689219, 'corrupt politician': 207667, 'politician voter': 663754, 'voter driven': 960577, 'three thing need': 894071, 'thing need to': 884612, 'need to happen': 555956, 'to happen after': 907146, 'happen after this': 377054, 'after this crisis': 36403, 'this crisis pass': 887073, 'crisis pass absolute': 217855, 'pass absolute lockout': 643201, 'absolute lockout of': 27255, 'lockout of all': 500528, 'of all chinese': 579932, 'all chinese product': 42344, 'chinese product trade': 177332, 'product trade war': 681780, 'trade war run': 928613, 'war run by': 966529, 'run by consumer': 727593, 'by consumer harsh': 152186, 'consumer harsh penalty': 197703, 'harsh penalty against': 378563, 'penalty against corrupt': 646438, 'against corrupt medium': 37398, 'corrupt medium again': 207664, 'medium again consumer': 526979, 'again consumer driven': 36955, 'consumer driven and': 197248, 'driven and punish': 259273, 'and punish corrupt': 69777, 'punish corrupt politician': 689220, 'corrupt politician voter': 207669, 'politician voter driven': 663755, 'todo': 920625, 'est': 281982, 'mal': 511532, 'gain': 342744, 'no todo': 565750, 'todo est': 920628, 'est mal': 281997, 'mal food': 511533, 'delivery stock': 234578, 'stock set': 802820, 'to gain': 906350, 'gain covid': 342764, 'lockdown boost': 499199, 'boost demand': 134940, 'no todo est': 565751, 'todo est mal': 920629, 'est mal food': 281998, 'mal food delivery': 511534, 'food delivery stock': 314147, 'delivery stock set': 234580, 'stock set to': 802821, 'set to gain': 753520, 'to gain covid': 906351, 'gain covid 19': 342765, '19 lockdown boost': 8371, 'lockdown boost demand': 499200, 'trumpkins': 934066, 'cleared': 181404, 'aquarium': 83776, 'consuming': 199796, 'unlabeled': 942555, 'yet thousand': 1016281, 'of trumpkins': 592481, 'trumpkins cleared': 934067, 'cleared out': 181424, 'out every': 626027, 'every aquarium': 285671, 'aquarium supplier': 83779, 'supplier in': 824555, 'country my': 210915, 'my guess': 548587, 'guess is': 367991, 'that lot': 844953, 'them are': 875413, 'are used': 91396, 'to consuming': 903348, 'consuming unlabeled': 199808, 'unlabeled pharmaceutical': 942556, 'yet thousand of': 1016282, 'thousand of trumpkins': 893471, 'of trumpkins cleared': 592482, 'trumpkins cleared out': 934068, 'cleared out every': 181427, 'out every aquarium': 626028, 'every aquarium supplier': 285672, 'aquarium supplier in': 83780, 'supplier in the': 824557, 'the country my': 852120, 'country my guess': 210916, 'my guess is': 548590, 'guess is that': 367993, 'is that lot': 452663, 'that lot of': 844956, 'lot of them': 504304, 'of them are': 591723, 'them are used': 875421, 'are used to': 91399, 'used to consuming': 950045, 'to consuming unlabeled': 903349, 'consuming unlabeled pharmaceutical': 199809, 'neart': 553880, 'cur': 220523, 'cheile': 175294, 'neart go': 553881, 'go cur': 353436, 'cur le': 220524, 'le cheile': 482873, 'cheile home': 175295, 'home day': 400988, 'neart go cur': 553882, 'go cur le': 353437, 'cur le cheile': 220525, 'le cheile home': 482874, 'cheile home day': 175296, 'home day in': 400990, 'dublin supermarket during': 261519, 'supermarket during covid': 820050, '9400': 23556, 'jeez': 464990, 'seems little': 746823, 'little point': 495523, 'point grocery': 662498, 'online if': 608385, 'nh frontline': 561961, 'frontline in': 338766, 'queue of': 694016, 'of over': 587615, 'over 9400': 629943, '9400 jeez': 23557, 'jeez staysafe': 464995, 'there seems little': 879028, 'seems little point': 746824, 'little point grocery': 495524, 'point grocery shopping': 662499, 'grocery shopping online': 365060, 'shopping online if': 763445, 'online if you': 608391, 'you are working': 1017292, 'are working in': 91700, 'working in the': 1008734, 'the nh frontline': 861741, 'nh frontline in': 561962, 'frontline in queue': 338767, 'in queue of': 427223, 'queue of over': 694020, 'of over 9400': 587620, 'over 9400 jeez': 629944, '9400 jeez staysafe': 23558, 'when is': 983611, 'time trump': 898138, 'trump went': 933970, 'when is the': 983620, 'is the last': 452844, 'last time trump': 480574, 'time trump went': 898142, 'trump went to': 933971, 'went to grocery': 979157, 'suburban': 816133, 'symbol': 830761, 'fitting': 309552, 'coach': 185041, 'ensemble': 277857, 'healthcareworker': 387428, 'wearing mask': 974677, 'public ha': 688045, 'ha become': 369668, 'become suburban': 120144, 'suburban status': 816141, 'status symbol': 796693, 'symbol if': 830766, 'if see': 414757, 'see another': 744910, 'another wearing': 77966, 'wearing the': 974796, 'the ill': 857870, 'ill fitting': 416118, 'fitting n95': 309557, 'n95 with': 551239, 'with coach': 997682, 'coach bag': 185042, 'bag ensemble': 108274, 'ensemble at': 277858, 'store swear': 810490, 'swear healthcareworker': 830034, 'wearing mask in': 974693, 'in public ha': 427081, 'public ha become': 688046, 'ha become suburban': 369698, 'become suburban status': 120145, 'suburban status symbol': 816142, 'status symbol if': 796694, 'symbol if see': 830767, 'if see another': 414759, 'see another wearing': 744913, 'another wearing the': 77967, 'wearing the ill': 974799, 'the ill fitting': 857871, 'ill fitting n95': 416119, 'fitting n95 with': 309558, 'n95 with coach': 551240, 'with coach bag': 997683, 'coach bag ensemble': 185043, 'bag ensemble at': 108275, 'ensemble at the': 277859, 'grocery store swear': 365833, 'store swear healthcareworker': 810491, 'who knew': 989165, 'knew that': 476072, 'most dangerous': 542235, 'dangerous place': 225761, 'place now': 657594, 'now go': 574795, 'to is': 908518, 'who knew that': 989171, 'knew that the': 476077, 'that the most': 846777, 'the most dangerous': 860968, 'most dangerous place': 542237, 'dangerous place now': 225762, 'place now go': 657597, 'now go to': 574796, 'go to is': 354322, 'to is the': 908530, 'is the grocery': 452814, 'pawed': 644681, 'tortilla': 926044, 'hey look': 394453, 'look what': 502665, 'wa pawed': 962917, 'pawed through': 644682, 'through at': 894341, 'store the': 810584, 'the flour': 855440, 'flour tortilla': 311178, 'tortilla were': 926052, 'were gone': 979690, 'gone except': 356271, 'one sad': 606980, 'sad little': 729189, 'little pack': 495510, 'of gluten': 584168, 'free tortilla': 332262, 'tortilla so': 926050, 'so at': 776562, 'least my': 484567, 'neighbor have': 557027, 'their standard': 874809, 'standard during': 793652, 'pandemic shelterinplace': 636436, 'hey look what': 394455, 'look what wa': 502672, 'what wa pawed': 982520, 'wa pawed through': 962918, 'pawed through at': 644683, 'through at our': 894343, 'at our grocery': 100014, 'grocery store the': 365849, 'store the flour': 810598, 'the flour tortilla': 855443, 'flour tortilla were': 311179, 'tortilla were gone': 926053, 'were gone except': 979694, 'gone except for': 356272, 'except for one': 289166, 'for one sad': 324091, 'one sad little': 606981, 'sad little pack': 729190, 'little pack of': 495511, 'pack of gluten': 633102, 'of gluten free': 584169, 'gluten free tortilla': 353130, 'free tortilla so': 332263, 'tortilla so at': 926051, 'so at least': 776565, 'at least my': 99528, 'least my neighbor': 484570, 'my neighbor have': 549428, 'neighbor have their': 557030, 'have their standard': 383062, 'their standard during': 874810, 'standard during pandemic': 793653, 'during pandemic shelterinplace': 262891, 'gurbir': 368815, 'grewal': 363866, 'attorney general': 102621, 'general gurbir': 345342, 'gurbir grewal': 368816, 'grewal said': 363869, 'nation largest': 552240, 'largest online': 479993, 'online marketplace': 608527, 'marketplace must': 517819, 'protect consumer': 684799, 'attorney general gurbir': 102639, 'general gurbir grewal': 345343, 'gurbir grewal said': 368818, 'grewal said the': 363870, 'said the nation': 731445, 'the nation largest': 861246, 'nation largest online': 552242, 'largest online marketplace': 479994, 'online marketplace must': 608528, 'marketplace must do': 517820, 'must do more': 546630, 'to protect consumer': 912297, 'protect consumer during': 684804, 'consumer during the': 197272, 'supermaarket': 818710, 'thankyouecommerce': 842368, 'flipkart': 310605, 'me is': 522993, 'is god': 448080, 'god because': 354651, 'because in': 119158, 'area all': 91922, 'all supermaarket': 44537, 'supermaarket and': 818711, 'are close': 85323, 'close by': 182580, 'by government': 152707, 'government but': 359952, 'but thankyouecommerce': 147277, 'thankyouecommerce and': 842369, 'and flipkart': 62972, 'flipkart who': 310628, 'who help': 988984, 'help lot': 390021, 'get my': 347624, 'my baby': 547365, 'some baby': 782364, 'baby diaper': 106593, 'for me is': 323318, 'me is god': 522997, 'is god because': 448082, 'god because in': 354652, 'because in my': 119161, 'my area all': 547290, 'area all supermaarket': 91923, 'all supermaarket and': 44538, 'supermaarket and grocery': 818712, 'and grocery store': 64003, 'store are close': 806463, 'are close by': 85325, 'close by government': 182583, 'by government but': 152709, 'government but thankyouecommerce': 359955, 'but thankyouecommerce and': 147278, 'thankyouecommerce and flipkart': 842370, 'and flipkart who': 62973, 'flipkart who help': 310629, 'who help lot': 988987, 'help lot to': 390023, 'lot to get': 504392, 'to get my': 906541, 'get my baby': 347626, 'my baby food': 547366, 'baby food and': 106603, 'food and some': 313337, 'and some baby': 71952, 'some baby diaper': 782365, 'coronabelgie': 204447, 'coronabelgie not': 204448, 'not such': 571793, 'such big': 816367, 'big fan': 129778, 'fan of': 298526, 'of limiting': 585865, 'limiting access': 492800, 'shop this': 760924, 'this measure': 888824, 'measure is': 525243, 'fuel the': 340293, 'panic hoarding': 638178, 'hoarding is': 399386, 'get much': 347617, 'much much': 545135, 'much worse': 545471, 'worse better': 1010884, 'better rule': 128451, 'rule would': 727416, 'be to': 117725, 'to limit': 909279, 'limit purchasing': 492468, 'purchasing per': 689901, 'per citizen': 650766, 'citizen and': 178827, 'and increase': 65101, 'increase opening': 432960, 'opening hour': 612845, 'coronabelgie not such': 204449, 'not such big': 571794, 'such big fan': 816370, 'big fan of': 129779, 'fan of limiting': 298528, 'of limiting access': 585866, 'limiting access to': 492801, 'access to food': 28235, 'to food shop': 906096, 'food shop this': 316495, 'shop this measure': 760927, 'this measure is': 888825, 'measure is going': 525244, 'going to fuel': 355606, 'to fuel the': 906294, 'fuel the panic': 340294, 'the panic hoarding': 863209, 'panic hoarding is': 638180, 'hoarding is going': 399390, 'to get much': 906540, 'get much much': 347619, 'much much worse': 545138, 'much worse better': 545473, 'worse better rule': 1010885, 'better rule would': 128452, 'rule would be': 727417, 'would be to': 1011661, 'be to limit': 117731, 'to limit purchasing': 909298, 'limit purchasing per': 492469, 'purchasing per citizen': 689902, 'per citizen and': 650767, 'citizen and increase': 178834, 'and increase opening': 65105, 'increase opening hour': 432961, 'timing': 898504, 'if can': 413921, 'can update': 160082, 'update store': 947226, 'store timing': 810744, 'timing so': 898518, 'support small': 826818, 'small grocery': 774973, 'still open': 800947, 're on': 699176, 'lockdown but': 499210, 'nice if can': 562418, 'if can update': 413935, 'can update store': 160083, 'update store timing': 947227, 'store timing so': 810745, 'timing so to': 898519, 'so to support': 778544, 'to support small': 915967, 'support small grocery': 826822, 'small grocery store': 774975, 'store that are': 810544, 'that are still': 842818, 'are still open': 90456, 'still open we': 800979, 'open we re': 612654, 'we re on': 972928, 're on lockdown': 699178, 'on lockdown but': 601907, 'lockdown but still': 499214, 'but still need': 147173, 'still need supply': 800860, 'ap': 81195, 'profile': 682603, 'ap profile': 81210, 'profile critical': 682609, 'critical grocery': 218568, 'worker amid': 1006246, 'ap profile critical': 81211, 'profile critical grocery': 682610, 'critical grocery store': 218569, 'store worker amid': 811450, 'worker amid pandemic': 1006247, 'fellow': 303262, 'rooster': 726006, 'rude': 727027, 'storefight': 811727, 'asked this': 95852, 'this evening': 887429, 'evening at': 284854, 'by an': 151819, 'an angry': 55307, 'angry fellow': 76471, 'fellow if': 303301, 'if like': 414377, 'like cock': 490026, 'cock meat': 185218, 'meat sandwich': 525728, 'sandwich didn': 733737, 'didn see': 241189, 'any rooster': 79770, 'rooster meat': 726007, 'meat there': 525773, 'there and': 877995, 'and he': 64311, 'he seemed': 385414, 'seemed upset': 746731, 'upset took': 947830, 'took chicken': 925222, 'chicken from': 175789, 'from his': 335809, 'his cart': 397280, 'cart rude': 165374, 'rude meat': 727045, 'meat shopping': 525745, 'shopping rooster': 763781, 'rooster storefight': 726009, 'wa asked this': 961591, 'asked this evening': 95853, 'this evening at': 887432, 'evening at the': 284856, 'the supermarket by': 868502, 'supermarket by an': 819478, 'by an angry': 151820, 'an angry fellow': 55308, 'angry fellow if': 76472, 'fellow if like': 303302, 'if like cock': 414378, 'like cock meat': 490027, 'cock meat sandwich': 185219, 'meat sandwich didn': 525729, 'sandwich didn see': 733738, 'didn see any': 241190, 'see any rooster': 744925, 'any rooster meat': 79771, 'rooster meat there': 726008, 'meat there and': 525774, 'there and he': 878002, 'and he seemed': 64326, 'he seemed upset': 385415, 'seemed upset took': 746732, 'upset took chicken': 947831, 'took chicken from': 925223, 'chicken from his': 175790, 'from his cart': 335810, 'his cart rude': 397281, 'cart rude meat': 165375, 'rude meat shopping': 727046, 'meat shopping rooster': 525746, 'shopping rooster storefight': 763782, 'infowars': 438159, 'peddles': 646195, 'conspiracy': 195565, 'theory': 877840, 'aggressively': 38259, 'alex jones': 41578, 'jones seek': 467257, 'seek to': 746609, 'to profit': 912231, 'from fear': 335434, 'fear infowars': 301171, 'infowars far': 438160, 'far right': 298904, 'right medium': 721989, 'medium outlet': 527203, 'outlet that': 629064, 'that peddles': 845678, 'peddles conspiracy': 646196, 'conspiracy theory': 195578, 'theory is': 877851, 'is aggressively': 445421, 'aggressively selling': 38274, 'selling bulk': 749188, 'bulk food': 142302, 'package at': 633220, 'at inflated': 99299, 'price while': 677517, 'while spreading': 987308, 'spreading wild': 791093, 'wild conspiracy': 992049, 'theory about': 877843, 'alex jones seek': 41579, 'jones seek to': 467258, 'seek to profit': 746618, 'to profit from': 912232, 'profit from fear': 682735, 'from fear infowars': 335436, 'fear infowars far': 301172, 'infowars far right': 438161, 'far right medium': 298906, 'right medium outlet': 721990, 'medium outlet that': 527206, 'outlet that peddles': 629065, 'that peddles conspiracy': 845679, 'peddles conspiracy theory': 646197, 'conspiracy theory is': 195582, 'theory is aggressively': 877852, 'is aggressively selling': 445422, 'aggressively selling bulk': 38275, 'selling bulk food': 749189, 'bulk food package': 142303, 'food package at': 315731, 'package at inflated': 633221, 'at inflated price': 99300, 'inflated price while': 437084, 'price while spreading': 677526, 'while spreading wild': 987309, 'spreading wild conspiracy': 791094, 'wild conspiracy theory': 992050, 'conspiracy theory about': 195580, 'theory about the': 877844, 'fiverr': 309702, 'greeting': 363809, 'wix': 1003192, 'redesigned': 705693, 'oprahwinfrey': 613847, 'see my': 745448, 'my service': 550022, 'service on': 752648, 'on fiverr': 600813, 'fiverr with': 309703, 'best price': 127860, 'and quality': 69849, 'quality work': 691876, 'work hope': 1005262, 'will surely': 995036, 'surely enjoy': 827903, 'enjoy my': 277152, 'service greeting': 752426, 'greeting wix': 363818, 'wix business': 1003195, 'business website': 144646, 'website redesigned': 975397, 'redesigned in': 705694, 'in wix': 430957, 'wix californialockdown': 1003197, 'californialockdown oprahwinfrey': 155633, 'oprahwinfrey wix': 613848, 'wix website': 1003201, 'see my service': 745461, 'my service on': 550026, 'service on fiverr': 752650, 'on fiverr with': 600814, 'fiverr with the': 309705, 'with the best': 1001212, 'the best price': 849545, 'best price and': 127861, 'price and quality': 672513, 'and quality work': 69852, 'quality work hope': 691877, 'work hope you': 1005264, 'you will surely': 1022356, 'will surely enjoy': 995038, 'surely enjoy my': 827904, 'enjoy my service': 277154, 'my service greeting': 550025, 'service greeting wix': 752427, 'greeting wix business': 363819, 'wix business website': 1003196, 'business website redesigned': 144647, 'website redesigned in': 975398, 'redesigned in wix': 705695, 'in wix californialockdown': 430958, 'wix californialockdown oprahwinfrey': 1003198, 'californialockdown oprahwinfrey wix': 155634, 'oprahwinfrey wix website': 613849, 'guard': 367768, 'military': 531442, 'server': 752004, 'bravely': 138262, 'coronovirus': 207149, 'note of': 572765, 'gratitude to': 362395, 'those on': 892281, 'line such': 493432, 'worker cashier': 1006613, 'cashier supermarket': 166626, 'employee security': 274189, 'security guard': 744609, 'guard police': 367830, 'police military': 663092, 'military food': 531463, 'food industry': 315002, 'industry server': 436105, 'server etc': 752005, 'fighting against': 305027, 'covid 2019': 214117, '2019 gratitude': 13971, 'gratitude frontliners': 362372, 'frontliners real': 338898, 'real hero': 701195, 'hero combat': 393961, 'combat bravely': 186986, 'bravely coronovirus': 138263, 'note of gratitude': 572769, 'of gratitude to': 584311, 'gratitude to all': 362396, 'to all those': 900297, 'all those on': 45173, 'those on the': 892290, 'front line such': 338607, 'line such healthcare': 493433, 'such healthcare worker': 816547, 'healthcare worker cashier': 387350, 'worker cashier supermarket': 1006614, 'cashier supermarket employee': 166628, 'supermarket employee security': 820132, 'employee security guard': 274190, 'security guard police': 744622, 'guard police military': 367831, 'police military food': 663093, 'military food industry': 531464, 'food industry server': 315025, 'industry server etc': 436106, 'server etc who': 752006, 'etc who are': 282880, 'who are fighting': 988143, 'are fighting against': 86541, 'fighting against covid': 305029, 'against covid 2019': 37403, 'covid 2019 gratitude': 214118, '2019 gratitude frontliners': 13972, 'gratitude frontliners real': 362373, 'frontliners real hero': 338899, 'real hero combat': 701198, 'hero combat bravely': 393962, 'combat bravely coronovirus': 186987, 'ssp': 791673, 'absent': 27198, 'worker get': 1007019, 'get sick': 347986, 'sick only': 768548, 'only get': 610502, 'get ssp': 348098, 'ssp others': 791674, 'others who': 621780, 'work can': 1004966, 'get up': 348560, 'to 80': 899847, 'their wage': 875139, 'wage give': 963881, 'give key': 350558, 'worker 80': 1006191, 'wage if': 963897, 'if absent': 413770, 'absent due': 27199, 'supermarket worker get': 824028, 'worker get sick': 1007025, 'get sick only': 347998, 'sick only get': 768549, 'only get ssp': 610505, 'get ssp others': 348099, 'ssp others who': 791675, 'others who can': 621784, 'who can work': 988414, 'can work can': 160244, 'work can get': 1004969, 'can get up': 158469, 'get up to': 348568, 'up to 80': 946351, 'to 80 of': 899851, '80 of their': 22612, 'of their wage': 591714, 'their wage give': 875141, 'wage give key': 963882, 'give key worker': 350559, 'key worker 80': 473463, 'worker 80 of': 1006192, 'their wage if': 875144, 'wage if absent': 963898, 'if absent due': 413771, 'absent due to': 27200, 'dis': 243779, 'adversity': 33132, 'india amazing': 434290, 'amazing effort': 50680, 'effort by': 269491, 'india dis': 434374, 'dis adversity': 243782, 'adversity canonforcommunity': 33133, 'india amazing effort': 434291, 'amazing effort by': 50681, 'effort by india': 269493, 'by india dis': 152908, 'india dis adversity': 434375, 'dis adversity canonforcommunity': 243783, 'season': 743367, 'bake': 108741, 'suddenly': 817061, 'mary': 518152, 'fuckin': 339764, 'berry': 127412, 'stopfuckingpanicbuying': 805338, 'maryberry': 518175, 'thegreatbritishbakeoff': 872388, 'tgbbo': 840028, 'gbbo': 344795, 'not single': 571591, 'single bag': 771239, 'flour on': 311141, 'shelf 10': 756670, '10 season': 1669, 'season of': 743418, 'great british': 362538, 'british bake': 140491, 'bake off': 108746, 'off and': 593640, 'and suddenly': 72660, 'suddenly everyone': 817088, 'is mary': 449589, 'mary fuckin': 518155, 'fuckin berry': 339765, 'berry shopping': 127415, 'shopping panicbuying': 763593, 'panicbuying stoppanicbuying': 639061, 'stoppanicbuying stopfuckingpanicbuying': 805630, 'stopfuckingpanicbuying flour': 805339, 'flour maryberry': 311132, 'maryberry thegreatbritishbakeoff': 518176, 'thegreatbritishbakeoff tgbbo': 872389, 'tgbbo gbbo': 840029, 'not single bag': 571592, 'single bag of': 771240, 'of flour on': 583604, 'flour on the': 311142, 'on the shelf': 604354, 'the shelf 10': 866819, 'shelf 10 season': 756671, '10 season of': 1670, 'season of the': 743421, 'of the great': 591076, 'the great british': 856716, 'great british bake': 362539, 'british bake off': 140492, 'bake off and': 108747, 'off and suddenly': 593647, 'and suddenly everyone': 72661, 'suddenly everyone is': 817089, 'everyone is mary': 287089, 'is mary fuckin': 449590, 'mary fuckin berry': 518156, 'fuckin berry shopping': 339766, 'berry shopping panicbuying': 127416, 'shopping panicbuying stoppanicbuying': 763594, 'panicbuying stoppanicbuying stopfuckingpanicbuying': 639062, 'stoppanicbuying stopfuckingpanicbuying flour': 805631, 'stopfuckingpanicbuying flour maryberry': 805340, 'flour maryberry thegreatbritishbakeoff': 311133, 'maryberry thegreatbritishbakeoff tgbbo': 518177, 'thegreatbritishbakeoff tgbbo gbbo': 872390, 'ethanol': 282959, 'e10': 263961, 'denatured': 236917, 'isopropyl': 455556, 'suspend ethanol': 829561, 'ethanol restriction': 283008, 'restriction sitting': 717374, 'on million': 602127, 'million gallon': 532169, 'gallon of': 343036, 'of ethanol': 583200, 'ethanol for': 282976, 'for e10': 320895, 'e10 fuel': 263962, 'fuel can': 340136, 'be used': 117909, 'used amp': 949860, 'not denatured': 568990, 'denatured either': 236920, 'either for': 270300, 'for hand': 322104, 'sanitizer instead': 735175, 'of isopropyl': 585347, 'isopropyl and': 455565, 'and sold': 71935, 'sold directly': 781658, 'directly 80': 243522, '80 to': 22638, 'reduce fire': 705834, 'fire hazard': 308084, 'hazard disinfectant': 384548, 'disinfectant for': 245664, 'for surface': 326081, 'suspend ethanol restriction': 829562, 'ethanol restriction sitting': 283009, 'restriction sitting on': 717375, 'sitting on million': 772135, 'on million gallon': 602130, 'million gallon of': 532170, 'gallon of ethanol': 343040, 'of ethanol for': 583201, 'ethanol for e10': 282977, 'for e10 fuel': 320896, 'e10 fuel can': 263963, 'fuel can be': 340137, 'can be used': 157707, 'be used amp': 117911, 'used amp not': 949861, 'amp not denatured': 54192, 'not denatured either': 568991, 'denatured either for': 236921, 'either for hand': 270301, 'for hand sanitizer': 322108, 'hand sanitizer instead': 375456, 'sanitizer instead of': 735176, 'instead of isopropyl': 440281, 'of isopropyl and': 585349, 'isopropyl and sold': 455566, 'and sold directly': 71937, 'sold directly 80': 781659, 'directly 80 to': 243523, '80 to reduce': 22639, 'to reduce fire': 913022, 'reduce fire hazard': 705835, 'fire hazard disinfectant': 308085, 'hazard disinfectant for': 384549, 'disinfectant for surface': 245666, 'bolton': 134164, 'popular grocery': 664554, 'in bolton': 420898, 'bolton temporarily': 134171, 'closed down': 183077, 'down on': 257013, 'on march': 602006, 'march 25': 515200, '25 after': 15825, 'after an': 35351, 'an office': 56560, 'office staff': 595550, 'staff wa': 793042, 'wa confirmed': 961853, 'confirmed having': 194158, 'having novel': 384193, 'popular grocery store': 664555, 'store in bolton': 808277, 'in bolton temporarily': 420900, 'bolton temporarily closed': 134172, 'temporarily closed down': 837461, 'closed down on': 183081, 'down on march': 257025, 'on march 25': 602021, 'march 25 after': 515202, '25 after an': 15826, 'after an office': 35359, 'an office staff': 56562, 'office staff wa': 595552, 'staff wa confirmed': 793043, 'wa confirmed having': 961855, 'confirmed having novel': 194159, 'canadian community': 160650, 'community are': 189733, 'are experiencing': 86336, 'experiencing surge': 291702, 'for local': 323043, 'and seed': 71153, 'seed sale': 746166, 'are picking': 89081, 'local farm': 497938, 'farm market': 299151, 'market amid': 515931, 'canadian community are': 160651, 'community are experiencing': 189736, 'are experiencing surge': 86352, 'experiencing surge in': 291703, 'surge in demand': 828187, 'demand for local': 235450, 'for local food': 323047, 'local food and': 497960, 'food and seed': 313329, 'and seed sale': 71155, 'seed sale are': 746167, 'sale are picking': 732065, 'are picking up': 89082, 'picking up at': 655873, 'up at local': 944432, 'at local farm': 99601, 'local farm market': 497940, 'farm market amid': 299152, 'market amid the': 515937, 'scientist': 742186, 'randomized': 696631, 'trial': 931627, 'participant': 642534, 'respiratory': 715226, 'scientist are': 742197, 'not completely': 568817, 'completely sure': 192359, 'sure of': 827637, 'way that': 969917, 'transmitted but': 929796, 'in randomized': 427247, 'randomized control': 696632, 'control trial': 202203, 'trial participant': 931656, 'participant who': 642549, 'who were': 989949, 'were told': 980275, 'use surgical': 949623, 'and did': 61315, 'did so': 240805, 'so were': 778705, 'were 80': 979264, '80 percent': 22619, 'percent le': 651141, 'to contract': 903421, 'contract respiratory': 201693, 'respiratory illness': 715241, 'scientist are not': 742198, 'are not completely': 88343, 'not completely sure': 568818, 'completely sure of': 192360, 'sure of all': 827638, 'all the way': 44980, 'the way that': 871193, 'way that the': 969927, 'that the covid': 846695, '19 virus is': 11814, 'virus is transmitted': 958410, 'is transmitted but': 453339, 'transmitted but in': 929797, 'but in randomized': 146032, 'in randomized control': 427248, 'randomized control trial': 696633, 'control trial participant': 202204, 'trial participant who': 931657, 'participant who were': 642550, 'who were told': 989968, 'were told to': 980281, 'told to use': 923771, 'to use surgical': 918069, 'use surgical mask': 949624, 'surgical mask and': 828349, 'mask and did': 518316, 'and did so': 61318, 'did so were': 240807, 'so were 80': 778706, 'were 80 percent': 979265, '80 percent le': 22620, 'percent le likely': 651142, 'likely to contract': 492139, 'to contract respiratory': 903428, 'contract respiratory illness': 201694, 'worrisome': 1010610, 'never had': 558038, 'had so': 373519, 'much anxiety': 544713, 'anxiety about': 78643, 'about going': 25311, 'not about': 568013, 'crowd any': 219119, 'people it': 648533, 'it about': 456234, 'that see': 846163, 'see all': 744875, 'these shelf': 880668, 'empty that': 275173, 'the worrisome': 872020, 'worrisome part': 1010619, 'part my': 642319, 'family ha': 297869, 'ha what': 372472, 'need worry': 556243, 'family don': 297750, 'have never had': 381581, 'never had so': 558041, 'had so much': 373521, 'so much anxiety': 777758, 'much anxiety about': 544714, 'anxiety about going': 78645, 'about going to': 25312, 'store it not': 808588, 'it not about': 459854, 'not about the': 568016, 'about the crowd': 26366, 'the crowd any': 852518, 'crowd any people': 219120, 'any people it': 79641, 'people it about': 648534, 'it about the': 456239, 'about the fact': 26394, 'fact that see': 295809, 'that see all': 846164, 'see all these': 744883, 'all these shelf': 45055, 'these shelf empty': 880669, 'shelf empty that': 757035, 'empty that the': 275175, 'that the worrisome': 846871, 'the worrisome part': 872021, 'worrisome part my': 1010620, 'part my family': 642320, 'my family ha': 548202, 'family ha what': 297871, 'ha what we': 372476, 'what we need': 982558, 'we need worry': 972568, 'need worry about': 556244, 'about the family': 26395, 'the family don': 854891, 'allied': 45843, 'unitedstates': 942284, 'saudiarabia russia': 737356, 'russia and': 728422, 'and allied': 57912, 'allied oil': 45848, 'producer will': 680720, 'will agree': 992221, 'agree to': 38656, 'to deep': 904047, 'deep cut': 231866, 'their crude': 872926, 'crude output': 219576, 'output at': 629233, 'at talk': 100821, 'talk this': 833861, 'week only': 976691, 'only if': 610618, 'the unitedstates': 870421, 'unitedstates and': 942286, 'and several': 71338, 'several others': 753914, 'others join': 621500, 'join in': 466743, 'with curb': 997876, 'curb to': 220589, 'help prop': 390363, 'price that': 676792, 'been hammered': 121249, 'saudiarabia russia and': 737357, 'russia and allied': 728423, 'and allied oil': 57913, 'allied oil producer': 45849, 'oil producer will': 597349, 'producer will agree': 680721, 'will agree to': 992222, 'agree to deep': 38660, 'to deep cut': 904048, 'deep cut to': 231867, 'cut to their': 223611, 'to their crude': 917219, 'their crude output': 872929, 'crude output at': 219577, 'output at talk': 629235, 'at talk this': 100823, 'talk this week': 833863, 'this week only': 891245, 'week only if': 976692, 'only if the': 610621, 'if the unitedstates': 415042, 'the unitedstates and': 870422, 'unitedstates and several': 942287, 'and several others': 71340, 'several others join': 753915, 'others join in': 621501, 'join in with': 466757, 'in with curb': 430939, 'with curb to': 997877, 'curb to help': 220590, 'to help prop': 907594, 'help prop up': 390364, 'prop up price': 684048, 'up price that': 945836, 'price that have': 676804, 'have been hammered': 379565, 'been hammered by': 121250, 'hammered by the': 374580, 'sunbathe': 818103, 'ultimately if': 939147, 'you wish': 1022369, 'wish to': 996832, 'enjoy picnic': 277169, 'picnic or': 656078, 'or sunbathe': 617267, 'sunbathe in': 818106, 'park just': 641939, 'just consider': 468512, 'consider that': 195128, 'you my': 1019939, 'my get': 548489, 'get infected': 347324, 'infected or': 436608, 'may infect': 521294, 'infect others': 436502, 'be at': 113725, 'at higher': 98896, 'risk than': 723916, 'ultimately if you': 939148, 'if you wish': 415562, 'you wish to': 1022372, 'wish to go': 996837, 'go out of': 353968, 'out of your': 626882, 'of your house': 593487, 'your house and': 1024408, 'house and enjoy': 406177, 'and enjoy picnic': 62150, 'enjoy picnic or': 277170, 'picnic or sunbathe': 656079, 'or sunbathe in': 617268, 'sunbathe in park': 818107, 'in park just': 426512, 'park just consider': 641940, 'just consider that': 468513, 'consider that you': 195132, 'that you my': 847732, 'you my get': 1019940, 'my get infected': 548491, 'get infected or': 347332, 'infected or you': 436611, 'or you may': 617863, 'you may infect': 1019802, 'may infect others': 521295, 'infect others who': 436504, 'others who may': 621790, 'who may be': 989269, 'may be at': 520950, 'be at higher': 113732, 'at higher risk': 98901, 'higher risk than': 395732, 'risk than you': 723920, 'bj': 131985, 'closed on': 183256, 'on easter': 600479, 'easter grocery': 265440, 'store including': 808416, 'including trader': 432224, 'trader joe': 928706, 'joe bj': 466407, 'bj wholesale': 131992, 'wholesale club': 990429, 'club will': 184499, 'closed because': 183013, 'today via': 920434, 'closed on easter': 183258, 'on easter grocery': 600480, 'easter grocery store': 265441, 'grocery store including': 365485, 'store including trader': 808423, 'including trader joe': 432225, 'trader joe bj': 928710, 'joe bj wholesale': 466408, 'bj wholesale club': 131993, 'wholesale club will': 990431, 'club will be': 184500, 'will be closed': 992399, 'be closed because': 114121, 'closed because of': 183014, '19 usa today': 11702, 'usa today via': 948774, 'approximately': 83236, 'campaign': 157190, 'have raised': 382149, 'raised approximately': 695991, 'approximately 64': 83243, '64 00': 21304, '00 so': 491, 'morning for': 541258, 'your generous': 1024035, 'generous support': 345734, 'the donation': 853543, 'donation campaign': 254567, 'campaign continues': 157209, 'continues all': 201377, 'all day': 42509, 'day long': 227932, 'we have raised': 971913, 'have raised approximately': 382150, 'raised approximately 64': 695992, 'approximately 64 00': 83244, '64 00 so': 21305, '00 so far': 492, 'far this morning': 298942, 'this morning for': 888959, 'morning for and': 541259, 'for and thanks': 319343, 'and thanks to': 73173, 'thanks to your': 842274, 'to your generous': 918988, 'your generous support': 1024037, 'generous support the': 345735, 'support the donation': 826867, 'the donation campaign': 853544, 'donation campaign continues': 254568, 'campaign continues all': 157210, 'continues all day': 201378, 'all day long': 42520, 'our emergency': 622881, 'emergency service': 272949, 'working flat': 1008625, 'flat out': 310090, 'stay on': 797142, 'this coronacrisis': 886871, 'coronacrisis with': 204865, 'panic of': 638350, 'of selfish': 589475, 'selfish moron': 748170, 'moron raiding': 541627, 'raiding store': 695660, 'store many': 808902, 'many cannot': 513866, 'cannot find': 161829, 'find essential': 306890, 'essential or': 281366, 'our emergency service': 622883, 'emergency service are': 272951, 'service are working': 752148, 'are working flat': 91695, 'working flat out': 1008626, 'flat out to': 310092, 'out to try': 627693, 'to try to': 917823, 'to stay on': 915304, 'stay on top': 797148, 'top of this': 925644, 'of this coronacrisis': 591955, 'this coronacrisis with': 886883, 'coronacrisis with the': 204867, 'with the panic': 1001423, 'the panic of': 863213, 'panic of selfish': 638354, 'of selfish moron': 589480, 'selfish moron raiding': 748173, 'moron raiding store': 541628, 'raiding store many': 695661, 'store many cannot': 808903, 'many cannot find': 513868, 'cannot find essential': 161837, 'find essential or': 306893, 'essential or food': 281367, 'or food when': 615353, 'food when they': 317573, 'they have time': 882394, 'time to shop': 898063, 'headline': 385979, 'bevigilant': 129060, 'cybersecurity': 223987, 'pinellas': 656807, 'scammer follow': 740578, 'the headline': 857169, 'headline and': 385980, 'the ftc': 855921, 'ftc ha': 339404, 'together great': 920805, 'great resource': 362964, 'resource to': 714902, 'you protect': 1020468, 'yourself and': 1026520, 'to bevigilant': 901794, 'bevigilant see': 129061, 'here scam': 393540, 'scam fraud': 740166, 'fraud cybersecurity': 331256, 'cybersecurity security': 224007, 'security pinellas': 744712, 'scammer follow the': 740580, 'follow the headline': 312529, 'the headline and': 857170, 'headline and they': 385986, 'they are taking': 881427, 'are taking advantage': 90711, 'pandemic the ftc': 636681, 'the ftc ha': 855930, 'ftc ha put': 339407, 'ha put together': 371606, 'put together great': 690939, 'together great resource': 920806, 'great resource to': 362967, 'resource to help': 714907, 'help you protect': 390990, 'you protect yourself': 1020470, 'protect yourself and': 685082, 'yourself and to': 1026530, 'and to bevigilant': 74154, 'to bevigilant see': 901795, 'bevigilant see here': 129062, 'see here scam': 745191, 'here scam fraud': 393541, 'scam fraud cybersecurity': 740168, 'fraud cybersecurity security': 331257, 'cybersecurity security pinellas': 224008, 'be said': 116981, 'said again': 730949, 'again shout': 37162, 'worker and': 1006267, 'in general': 423243, 'general all': 345278, 'all some': 44390, 'some unsung': 784142, 'hero in': 394011, 'this 19': 886151, 'must be said': 546543, 'be said again': 116982, 'said again shout': 730950, 'again shout out': 37163, 'out to supermarket': 627685, 'to supermarket worker': 915861, 'supermarket worker and': 823988, 'worker and retail': 1006328, 'and retail worker': 70449, 'retail worker in': 718891, 'worker in general': 1007172, 'in general all': 423245, 'general all some': 345280, 'all some unsung': 44392, 'some unsung hero': 784143, 'unsung hero in': 943556, 'hero in all': 394013, 'in all this': 420188, 'all this 19': 45090, 'consumer hero': 197751, 'hero wish': 394172, 'wish all': 996742, 'all business': 42227, 'consumer the': 199265, 'best stay': 127910, 'consumer hero wish': 197753, 'hero wish all': 394173, 'wish all business': 996743, 'all business and': 42228, 'and consumer the': 60436, 'consumer the best': 199266, 'the best stay': 849553, 'best stay safe': 127911, 'outlier': 629084, 'tout': 927061, 'perfectly': 651381, 'combination': 187093, 'if an': 413810, 'an outlier': 56739, 'outlier is': 629085, 'is enough': 447508, 'to tout': 917658, 'tout the': 927067, 'low gas': 505295, 'nation understand': 552361, 'understand perfectly': 940696, 'perfectly well': 651405, 'well why': 978751, 'why he': 991061, 'he promotes': 385310, 'promotes certain': 683824, 'certain drug': 169992, 'drug combination': 260909, 'combination not': 187098, 'if an outlier': 413816, 'an outlier is': 56740, 'outlier is enough': 629086, 'is enough for': 447512, 'enough for to': 277443, 'for to tout': 327238, 'to tout the': 917659, 'tout the low': 927068, 'the low gas': 859775, 'low gas price': 505298, 'gas price in': 343982, 'in the nation': 429383, 'the nation understand': 861272, 'nation understand perfectly': 552362, 'understand perfectly well': 940697, 'perfectly well why': 651406, 'well why he': 978752, 'why he promotes': 991063, 'he promotes certain': 385311, 'promotes certain drug': 683825, 'certain drug combination': 169993, 'drug combination not': 260910, 'combination not only': 187099, 'not only cure': 570784, 'only cure but': 610297, 'cure but also': 220713, 'wasteful': 968279, 'throwing': 895081, 'ozharvest': 632777, 'wasteful panic': 968282, 'buyer are': 149564, 'are throwing': 91085, 'throwing away': 895082, 'away perfectly': 105998, 'perfectly good': 651388, 'after stockpiling': 36249, 'stockpiling donate': 803943, 'to ozharvest': 911342, 'ozharvest or': 632778, 'other charity': 619937, 'charity grocery': 173630, 'grocery supermarket': 365991, 'supermarket auspol': 819272, 'wasteful panic buyer': 968283, 'panic buyer are': 637555, 'buyer are throwing': 149579, 'are throwing away': 91086, 'throwing away perfectly': 895086, 'away perfectly good': 105999, 'perfectly good food': 651389, 'good food after': 357050, 'food after stockpiling': 313047, 'after stockpiling donate': 36250, 'stockpiling donate to': 803944, 'donate to ozharvest': 254266, 'to ozharvest or': 911343, 'ozharvest or other': 632779, 'or other charity': 616426, 'other charity grocery': 619938, 'charity grocery supermarket': 173631, 'grocery supermarket auspol': 365993, 'zo': 1027666, 'kan': 470767, 'het': 394294, 'ook': 611742, 'denen': 236924, 'zijn': 1027556, 'gek': 345074, 'nogniet': 566198, 'kr40': 477630, 'kr100': 477625, 'zo kan': 1027669, 'kan het': 470768, 'het ook': 394295, 'ook die': 611743, 'die denen': 241315, 'denen zijn': 236925, 'zijn zo': 1027559, 'zo gek': 1027667, 'gek nogniet': 345075, 'nogniet supermarket': 566199, 'denmark got': 237015, 'got tired': 358946, 'tired of': 899038, 'people hoarding': 648268, 'sanitizer so': 735747, 'so came': 776696, 'came up': 157079, 'own way': 632298, 'of stopping': 590232, 'stopping it': 805814, 'it bottle': 456910, 'bottle kr40': 136260, 'kr40 50': 477631, '50 bottle': 19636, 'bottle kr100': 136257, 'kr100 134': 477626, '134 00': 3327, '00 each': 177, 'each bottle': 263999, 'bottle hoarding': 136238, 'hoarding stopped': 399552, 'stopped hoarding': 805714, 'zo kan het': 1027670, 'kan het ook': 470769, 'het ook die': 394296, 'ook die denen': 611744, 'die denen zijn': 241316, 'denen zijn zo': 236926, 'zijn zo gek': 1027560, 'zo gek nogniet': 1027668, 'gek nogniet supermarket': 345076, 'nogniet supermarket in': 566200, 'in denmark got': 422187, 'denmark got tired': 237016, 'got tired of': 358947, 'tired of people': 899049, 'of people hoarding': 587923, 'people hoarding hand': 648274, 'hoarding hand sanitizer': 399352, 'hand sanitizer so': 375591, 'sanitizer so came': 735749, 'so came up': 776698, 'came up with': 157081, 'up with their': 946693, 'with their own': 1001588, 'their own way': 874215, 'own way of': 632299, 'way of stopping': 969771, 'of stopping it': 590233, 'stopping it bottle': 805815, 'it bottle kr40': 456911, 'bottle kr40 50': 136261, 'kr40 50 bottle': 477632, '50 bottle kr100': 19638, 'bottle kr100 134': 136258, 'kr100 134 00': 477627, '134 00 each': 3328, '00 each bottle': 178, 'each bottle hoarding': 264000, 'bottle hoarding stopped': 136239, 'hoarding stopped hoarding': 399553, 'dint': 243148, 'onion': 607710, 'pricey': 677904, 'frozen': 338947, 'pea': 645970, 'tmoro': 899365, 'bethoughtful': 128155, 'mine too': 532932, 'too dint': 924683, 'dint find': 243149, 'find potato': 307184, 'potato on': 666954, 'on last': 601788, 'last trip': 480597, 'trip but': 932047, 'but got': 145806, 'got rice': 358817, 'rice onion': 721092, 'onion pricey': 607732, 'pricey tomato': 677908, 'tomato this': 923972, 'this trip': 890856, 'trip got': 932077, 'got potato': 358791, 'potato bread': 666918, 'bread im': 138492, 'im gonna': 416538, 'gonna look': 356577, 'for frozen': 321783, 'frozen pea': 338999, 'pea tmoro': 645983, 'tmoro bethoughtful': 899366, 'bethoughtful stophoarding': 128156, 'mine too dint': 532933, 'too dint find': 924684, 'dint find potato': 243150, 'find potato on': 307186, 'potato on last': 666955, 'on last trip': 601790, 'last trip but': 480598, 'trip but got': 932048, 'but got rice': 145809, 'got rice onion': 358818, 'rice onion pricey': 721093, 'onion pricey tomato': 607733, 'pricey tomato this': 677909, 'tomato this trip': 923973, 'this trip got': 890857, 'trip got potato': 932078, 'got potato bread': 358792, 'potato bread im': 666919, 'bread im gonna': 138493, 'im gonna look': 416539, 'gonna look for': 356578, 'look for frozen': 502361, 'for frozen pea': 321784, 'frozen pea tmoro': 339000, 'pea tmoro bethoughtful': 645984, 'tmoro bethoughtful stophoarding': 899367, 'ended': 276124, 'essentialcommodities': 281885, 'considered to': 195340, 'essential during': 280975, 'crisis had': 217451, 'the queue': 865031, 'queue outside': 694029, 'the range': 865137, 'range were': 696749, 'were ridiculous': 980070, 'ridiculous ended': 721530, 'ended up': 276138, 'up going': 945024, 'going home': 355197, 'home there': 402258, 'were so': 980139, 'people around': 647137, 'around stayhomesavelives': 93490, 'stayhomesavelives essentialcommodities': 798378, 'is considered to': 446752, 'considered to be': 195341, 'to be essential': 901238, 'be essential during': 114700, 'essential during this': 280980, 'this crisis had': 887045, 'crisis had to': 217453, 'supermarket and the': 819079, 'and the queue': 73539, 'the queue outside': 865050, 'queue outside the': 694040, 'outside the range': 629601, 'the range were': 865139, 'range were ridiculous': 696750, 'were ridiculous ended': 980071, 'ridiculous ended up': 721531, 'ended up going': 276141, 'up going home': 945025, 'going home there': 355200, 'home there were': 402262, 'there were so': 879333, 'were so many': 980142, 'so many people': 777689, 'many people around': 514488, 'people around stayhomesavelives': 647143, 'around stayhomesavelives essentialcommodities': 93491, 'revert': 720542, '9am': 23947, 'tine': 898584, 'replenish': 711635, 'way tackle': 969905, 'tackle food': 831571, 'shortage in': 765007, 'supermarket is': 821064, 'is stop': 452344, 'the 24': 848046, '24 open': 15664, 'open time': 612585, 'time and': 896254, 'and revert': 70489, 'revert back': 720543, 'to 9am': 899894, '9am 10pm': 23948, '10pm open': 2380, 'shop close': 760042, 'close they': 182864, 'have tine': 383139, 'tine to': 898585, 'to replenish': 913253, 'replenish the': 711652, 'the way tackle': 871190, 'way tackle food': 969906, 'tackle food shortage': 831572, 'food shortage in': 316584, 'shortage in supermarket': 765021, 'in supermarket is': 428618, 'supermarket is in': 821098, 'is in light': 448782, 'buying is stop': 150580, 'is stop the': 452347, 'stop the 24': 805120, 'the 24 open': 848049, '24 open time': 15665, 'open time and': 612586, 'time and revert': 896293, 'and revert back': 70490, 'revert back to': 720544, 'back to 9am': 107350, 'to 9am 10pm': 899895, '9am 10pm open': 23949, '10pm open time': 2381, 'open time when': 612587, 'time when the': 898304, 'when the shop': 984196, 'the shop close': 866985, 'shop close they': 760045, 'close they have': 182866, 'they have tine': 882395, 'have tine to': 383140, 'tine to replenish': 898586, 'to replenish the': 913260, 'replenish the stock': 711655, 'pop': 664406, 'widespread': 991821, 'from manufacturing': 336331, 'manufacturing to': 513676, 'to farming': 905680, 'farming to': 299653, 'to mom': 910219, 'mom and': 535678, 'and pop': 69197, 'pop main': 664442, 'main street': 508824, 'street business': 812929, 'business iowa': 143945, 'iowa rural': 444505, 'rural economy': 728239, 'economy face': 267857, 'face widespread': 294855, 'widespread challenge': 991832, 'challenge it': 171494, 'it battle': 456712, 'battle through': 112832, 'from manufacturing to': 336332, 'manufacturing to farming': 513678, 'to farming to': 905681, 'farming to mom': 299654, 'to mom and': 910220, 'mom and pop': 535684, 'and pop main': 69198, 'pop main street': 664443, 'main street business': 508826, 'street business iowa': 812930, 'business iowa rural': 143946, 'iowa rural economy': 444506, 'rural economy face': 728240, 'economy face widespread': 267862, 'face widespread challenge': 294856, 'widespread challenge it': 991833, 'challenge it battle': 171495, 'it battle through': 456715, 'battle through the': 112833, 'through the coronavirus': 894727, 'significant': 769392, 'momentum': 536149, 'amenable': 51388, 'category': 167150, 'track': 928158, 'skinca': 773091, 'following significant': 312847, 'significant momentum': 769476, 'momentum in': 536154, 'in commerce': 421592, 'commerce over': 188604, 'over recent': 630562, 'recent year': 704030, 'year chinese': 1014467, 'chinese consumer': 177222, 'be even': 114708, 'more amenable': 538598, 'amenable to': 51389, 'to online': 910929, 'shopping after': 761904, 'outbreak especially': 628197, 'especially for': 280480, 'for category': 319965, 'category with': 167230, 'with strong': 1001022, 'strong online': 814080, 'online track': 609625, 'track record': 928217, 'record such': 705064, 'such skinca': 816754, 'following significant momentum': 312848, 'significant momentum in': 769477, 'momentum in commerce': 536156, 'in commerce over': 421597, 'commerce over recent': 188605, 'over recent year': 630565, 'recent year chinese': 704033, 'year chinese consumer': 1014468, 'chinese consumer are': 177223, 'consumer are likely': 196299, 'to be even': 901239, 'be even more': 114709, 'even more amenable': 284340, 'more amenable to': 538599, 'amenable to online': 51390, 'to online shopping': 910950, 'online shopping after': 609018, 'shopping after the': 761909, 'after the outbreak': 36339, 'the outbreak especially': 862618, 'outbreak especially for': 628198, 'especially for category': 280481, 'for category with': 319966, 'category with strong': 167232, 'with strong online': 1001025, 'strong online track': 814081, 'online track record': 609626, 'track record such': 928218, 'record such skinca': 705065, 'autistic': 103857, 'aversion': 104916, 'autism': 103846, 'panic clear': 638010, 'clear store': 181333, 'shelf leaving': 757271, 'leaving autistic': 485075, 'autistic child': 103858, 'child with': 176274, 'food aversion': 313482, 'aversion nothing': 104917, 'eat the': 266066, 'the autism': 849077, 'autism site': 103853, 'site blog': 771892, 'panic clear store': 638013, 'clear store shelf': 181334, 'store shelf leaving': 810086, 'shelf leaving autistic': 757272, 'leaving autistic child': 485076, 'autistic child with': 103859, 'child with food': 176275, 'with food aversion': 998478, 'food aversion nothing': 313483, 'aversion nothing to': 104918, 'nothing to eat': 573190, 'to eat the': 904903, 'eat the autism': 266067, 'the autism site': 849078, 'autism site blog': 103854, 'nhsfoodbanks': 562224, 'nhsstaff': 562246, 'since idiot': 770655, 'idiot still': 413593, 'still panic': 801019, 'buying in': 150527, 'this testing': 890495, 'testing time': 839668, 'time think': 897911, 'think should': 885537, 'should create': 765886, 'create nhsfoodbanks': 215701, 'nhsfoodbanks in': 562225, 'their store': 874843, 'store around': 806541, 'around uk': 93613, 'so those': 778506, 'those hard': 892050, 'working nhsstaff': 1008781, 'nhsstaff can': 562247, 'they finish': 882114, 'finish their': 307873, 'their shift': 874688, 'shift nh': 758363, 'nh stoppanicbuying': 562118, 'since idiot still': 770656, 'idiot still panic': 413594, 'still panic buying': 801020, 'panic buying in': 637773, 'buying in this': 150548, 'in this testing': 430024, 'this testing time': 890496, 'testing time think': 839673, 'time think should': 897912, 'think should create': 885539, 'should create nhsfoodbanks': 765888, 'create nhsfoodbanks in': 215702, 'nhsfoodbanks in their': 562226, 'in their store': 429780, 'their store around': 874848, 'store around uk': 806544, 'around uk so': 93614, 'uk so those': 938726, 'so those hard': 778507, 'those hard working': 892051, 'hard working nhsstaff': 378144, 'working nhsstaff can': 1008782, 'nhsstaff can get': 562248, 'can get food': 158416, 'when they finish': 984259, 'they finish their': 882115, 'finish their shift': 307874, 'their shift nh': 874690, 'shift nh stoppanicbuying': 758365, 'chaos': 172985, 'approached': 83004, 'desperate': 238501, 'condiment': 193375, 'palpable': 634630, 'morning at': 541176, 'at heb': 98876, 'heb texas': 388687, 'texas grocery': 839777, 'wa chaos': 961805, 'chaos woman': 173088, 'woman approached': 1003404, 'approached me': 83008, 'me with': 523986, 'with mask': 999401, 'mask desperate': 518568, 'desperate because': 238508, 'because she': 119541, 'she could': 755956, 'any condiment': 79042, 'condiment she': 193384, 'had walked': 373781, 'past the': 643617, 'aisle time': 40399, 'worker try': 1008059, 'to remain': 913154, 'remain calm': 709710, 'calm but': 156706, 'but their': 147432, 'their stress': 874878, 'is palpable': 450781, 'palpable people': 634633, 'are panicking': 88969, 'panicking and': 639315, 'and scared': 71047, 'this morning at': 888941, 'morning at heb': 541181, 'at heb texas': 98878, 'heb texas grocery': 388688, 'texas grocery store': 839778, 'store it wa': 808599, 'it wa chaos': 462088, 'wa chaos woman': 961806, 'chaos woman approached': 173089, 'woman approached me': 1003405, 'approached me with': 83011, 'me with mask': 523993, 'with mask desperate': 999406, 'mask desperate because': 518570, 'desperate because she': 238509, 'because she could': 119543, 'she could not': 755958, 'find any condiment': 306790, 'any condiment she': 79043, 'condiment she had': 193385, 'she had walked': 756109, 'had walked past': 373782, 'walked past the': 964974, 'past the aisle': 643618, 'the aisle time': 848536, 'aisle time the': 40400, 'time the worker': 897884, 'the worker try': 871765, 'worker try to': 1008060, 'try to remain': 934654, 'to remain calm': 913159, 'remain calm but': 709713, 'calm but their': 156708, 'but their stress': 147439, 'their stress is': 874880, 'stress is palpable': 813347, 'is palpable people': 450782, 'palpable people are': 634634, 'people are panicking': 647044, 'are panicking and': 88970, 'panicking and scared': 639321, 'plannedemic': 658482, 'plandemic': 658370, 'wakeup': 964650, 'much did': 544826, 'did the': 240844, 'the stay': 867847, 'order cost': 618153, 'cost what': 208160, 'what amount': 981030, 'amount wa': 53300, 'wa the': 963438, 'the restricted': 865666, 'restricted purchase': 717161, 'purchase entered': 689438, 'entered for': 278350, 'for how': 322416, 'food dump': 314310, 'dump cost': 262160, 'cost for': 207938, 'for milk': 323428, 'milk vegetable': 531895, 'meat etc': 525555, 'etc more': 282659, 'more plannedemic': 540076, 'plannedemic plandemic': 658483, 'plandemic wakeup': 658371, 'wakeup to': 964656, 'to lose': 909453, 'lose civil': 503427, 'civil right': 179531, 'right purchasing': 722240, 'purchasing power': 689903, 'power how': 667619, '19 affected': 4840, 'affected consumer': 34333, 'consumer price': 198415, 'how much did': 408345, 'much did the': 544829, 'did the stay': 240855, 'the stay at': 867849, 'home order cost': 401770, 'order cost what': 618154, 'cost what amount': 208162, 'what amount wa': 981031, 'amount wa the': 53301, 'wa the restricted': 963467, 'the restricted purchase': 865668, 'restricted purchase entered': 717162, 'purchase entered for': 689439, 'entered for how': 278351, 'for how much': 322421, 'did the food': 240848, 'the food dump': 855547, 'food dump cost': 314311, 'dump cost for': 262161, 'cost for milk': 207947, 'for milk vegetable': 323431, 'milk vegetable meat': 531896, 'vegetable meat etc': 954036, 'meat etc more': 525557, 'etc more plannedemic': 282660, 'more plannedemic plandemic': 540077, 'plannedemic plandemic wakeup': 658484, 'plandemic wakeup to': 658372, 'wakeup to lose': 964657, 'to lose civil': 909456, 'lose civil right': 503428, 'civil right purchasing': 179537, 'right purchasing power': 722241, 'purchasing power how': 689906, 'power how covid': 667620, 'covid 19 affected': 212590, '19 affected consumer': 4842, 'affected consumer price': 34336, 'consumer price in': 198424, 'price in march': 674708, 'cooperation': 203151, 'prudent': 687354, 'are strong': 90573, 'strong in': 814048, 'pandemic to': 636770, 'them that': 876374, 'way strong': 969897, 'strong public': 814096, 'public private': 688247, 'private cooperation': 678887, 'cooperation smart': 203163, 'smart policy': 775407, 'policy response': 663486, 'response and': 715617, 'and prudent': 69723, 'prudent consumer': 687357, 'behavior are': 123908, 'supply chain are': 824906, 'chain are strong': 170516, 'are strong in': 90575, 'strong in the': 814050, 'in the covid': 429104, '19 pandemic to': 9503, 'pandemic to keep': 636782, 'keep them that': 472117, 'them that way': 876384, 'that way strong': 847348, 'way strong public': 969898, 'strong public private': 814097, 'public private cooperation': 688248, 'private cooperation smart': 678888, 'cooperation smart policy': 203164, 'smart policy response': 775408, 'policy response and': 663487, 'response and prudent': 715620, 'and prudent consumer': 69724, 'prudent consumer behavior': 687358, 'consumer behavior are': 196440, 'behavior are essential': 123910, 'banking': 110402, 'customerservice': 223158, 'gripevine': 364050, 'com': 186911, 'beheard': 124582, 'watchdog': 968622, 'customerfeedback': 223142, 'flcx': 310267, 'share your': 755368, 'your banking': 1022908, 'banking customerservice': 110424, 'customerservice experience': 223164, 'experience on': 291444, 'on gripevine': 601173, 'gripevine com': 364051, 'com beheard': 186920, 'beheard consumer': 124583, 'consumer watchdog': 199481, 'watchdog keeping': 968629, 'keeping close': 472396, 'close eye': 182634, 'eye on': 294070, 'on bank': 599554, 'of mortgage': 586664, 'mortgage relief': 541947, 'relief financial': 709327, 'financial post': 306536, 'post customerfeedback': 666087, 'customerfeedback made': 223143, 'made easy': 507724, 'easy flcx': 265700, 'share your banking': 755370, 'your banking customerservice': 1022909, 'banking customerservice experience': 110425, 'customerservice experience on': 223165, 'experience on gripevine': 291445, 'on gripevine com': 601174, 'gripevine com beheard': 364052, 'com beheard consumer': 186921, 'beheard consumer watchdog': 124584, 'consumer watchdog keeping': 199484, 'watchdog keeping close': 968630, 'keeping close eye': 472397, 'close eye on': 182635, 'eye on bank': 294073, 'on bank offer': 599560, 'bank offer of': 110061, 'offer of mortgage': 594715, 'of mortgage relief': 586665, 'mortgage relief financial': 541948, 'relief financial post': 709330, 'financial post customerfeedback': 306539, 'post customerfeedback made': 666088, 'customerfeedback made easy': 223144, 'made easy flcx': 507726, 'foxnews': 330798, 'foxnews hand': 330804, 'sanitizer could': 734707, 'be harder': 115147, 'harder to': 378190, 'find for': 306911, 'consumer amid': 196179, 'foxnews hand sanitizer': 330805, 'hand sanitizer could': 375359, 'sanitizer could be': 734708, 'could be harder': 208874, 'be harder to': 115149, 'harder to find': 378193, 'to find for': 905898, 'find for consumer': 306912, 'for consumer amid': 320239, 'consumer amid outbreak': 196181, 'coronamania': 205056, 'store guy': 807990, 'guy just': 369060, 'just walked': 470208, 'walked by': 964940, 'by my': 153276, 'car coughing': 163050, 'coughing his': 208687, 'head off': 385777, 'off coronamania': 593742, 'coronamania stayhome': 205057, 'stayhome no': 798051, 'grocery store guy': 365447, 'store guy just': 807992, 'guy just walked': 369064, 'just walked by': 470209, 'walked by my': 964942, 'by my car': 153277, 'my car coughing': 547598, 'car coughing his': 163051, 'coughing his head': 208688, 'his head off': 397501, 'head off coronamania': 385779, 'off coronamania stayhome': 593743, 'coronamania stayhome no': 205058, 'infinite': 436941, 'flushed': 311578, 'crap': 214876, 'pertain': 653271, 'infinite if': 436942, 'this bill': 886558, 'bill get': 130584, 'get signed': 348009, 'signed and': 769355, 'and passed': 68743, 'passed all': 643245, 'those page': 892301, 'page can': 633836, 'used and': 949862, 'and flushed': 63001, 'flushed down': 311579, 'toilet the': 921632, 'outrageous the': 629338, 'the crap': 852269, 'crap included': 214900, 'bill that': 130686, 'that doe': 843579, 'not pertain': 571015, 'pertain to': 653272, 'to family': 905651, 'infinite if this': 436943, 'if this bill': 415148, 'this bill get': 886559, 'bill get signed': 130585, 'get signed and': 348010, 'signed and passed': 769356, 'and passed all': 68744, 'passed all of': 643246, 'all of those': 43720, 'of those page': 592108, 'those page can': 892302, 'page can be': 633837, 'be used and': 117912, 'used and flushed': 949864, 'and flushed down': 63002, 'flushed down the': 311580, 'down the toilet': 257308, 'the toilet the': 869715, 'toilet the is': 921633, 'the is outrageous': 858516, 'is outrageous the': 450674, 'outrageous the crap': 629339, 'the crap included': 852271, 'crap included in': 214901, 'included in this': 431691, 'in this bill': 429911, 'this bill that': 886560, 'bill that doe': 130687, 'that doe not': 843581, 'doe not pertain': 251517, 'not pertain to': 571016, 'pertain to family': 653274, 'to family and': 905652, 'family and small': 297603, 'else have': 271720, 'stress when': 813422, 'when shopping': 984019, 'online my': 608568, 'my anxiety': 547274, 'anxiety ha': 78714, 'gone through': 356387, 'the roof': 865968, 'roof fuck': 725833, 'fuck covid': 339538, 'anyone else have': 80266, 'else have stress': 271723, 'have stress when': 382808, 'stress when shopping': 813423, 'when shopping online': 984024, 'shopping online my': 763459, 'online my anxiety': 608569, 'my anxiety ha': 547275, 'anxiety ha gone': 78716, 'ha gone through': 370731, 'gone through the': 356388, 'through the roof': 894765, 'the roof fuck': 865973, 'roof fuck covid': 725834, 'fuck covid 19': 339539, 'fixing': 309841, 'cartel': 165439, 'enriches': 277831, 'enemy': 276341, 'dictator': 240516, 'inadequate': 431199, 'violate': 957479, '5g': 20653, 'billgates': 130748, 'trending': 931526, 'opec is': 611902, 'is price': 451016, 'price fixing': 673888, 'fixing cartel': 309844, 'cartel hurt': 165453, 'hurt consumer': 411559, 'consumer enriches': 197368, 'enriches enemy': 277832, 'enemy dictator': 276354, 'dictator supply': 240519, 'supply cut': 825131, 'cut are': 223237, 'are inadequate': 87465, 'inadequate violate': 431212, 'violate law': 957480, 'law low': 482334, 'low oil': 505445, 'price cure': 673365, 'cure low': 220769, 'price trump': 677125, 'trump 5g': 933362, '5g business': 20656, 'business money': 144064, 'money 19': 536565, '19 economy': 6709, 'economy russia': 268191, 'russia billgates': 728444, 'billgates trending': 130752, 'opec is price': 611906, 'is price fixing': 451018, 'price fixing cartel': 673890, 'fixing cartel hurt': 309845, 'cartel hurt consumer': 165454, 'hurt consumer enriches': 411561, 'consumer enriches enemy': 197369, 'enriches enemy dictator': 277834, 'enemy dictator supply': 276355, 'dictator supply cut': 240520, 'supply cut are': 825133, 'cut are inadequate': 223238, 'are inadequate violate': 87466, 'inadequate violate law': 431213, 'violate law low': 957481, 'law low oil': 482335, 'low oil price': 505446, 'oil price cure': 597100, 'price cure low': 673366, 'cure low price': 220770, 'low price trump': 505545, 'price trump 5g': 677126, 'trump 5g business': 933363, '5g business money': 20657, 'business money 19': 144065, 'money 19 economy': 536566, '19 economy russia': 6713, 'economy russia billgates': 268192, 'russia billgates trending': 728445, 'traderjoes': 928810, 'nut': 577647, 'wtf traderjoes': 1013332, 'traderjoes why': 928812, 'why on': 991255, 'earth won': 265020, 'won let': 1003861, 'let employee': 486696, 'employee wear': 274394, 'glove you': 353051, 'should insist': 766135, 'insist on': 439693, 'it everyone': 457878, 'everyone working': 287631, 'working my': 1008779, 'my wore': 550634, 'wore glove': 1004657, 'glove wa': 353005, 'wa very': 963635, 'very grateful': 955198, 'grateful it': 362288, 'it are': 456581, 'are nut': 88627, 'nut supermarket': 577670, 'supermarket pharmacy': 821971, 'pharmacy worker': 654572, 'worker fear': 1006914, 'fear turning': 301407, 'turning up': 935983, 'wtf traderjoes why': 1013333, 'traderjoes why on': 928813, 'why on earth': 991256, 'on earth won': 600477, 'earth won let': 265021, 'won let employee': 1003863, 'let employee wear': 486697, 'employee wear glove': 274395, 'wear glove you': 974353, 'glove you should': 353055, 'you should insist': 1021199, 'should insist on': 766136, 'insist on it': 439696, 'on it everyone': 601658, 'it everyone working': 457881, 'everyone working my': 287636, 'working my wore': 1008780, 'my wore glove': 550635, 'wore glove wa': 1004658, 'glove wa very': 353007, 'wa very grateful': 963640, 'very grateful it': 955200, 'grateful it are': 362289, 'it are nut': 456584, 'are nut supermarket': 88628, 'nut supermarket pharmacy': 577671, 'supermarket pharmacy worker': 821982, 'pharmacy worker fear': 654578, 'worker fear turning': 1006915, 'fear turning up': 301408, 'turning up to': 935986, 'up to work': 946449, 'gm': 353165, 'gm share': 353178, 'share some': 755213, 'some thought': 784050, 'thought on': 893155, 'the medium': 860413, 'medium sector': 527269, 'sector will': 744398, 'by plus': 153597, 'plus thing': 661701, 'consider in': 195026, 'in brand': 420945, 'brand plan': 137968, 'gm share some': 353179, 'share some thought': 755217, 'some thought on': 784052, 'thought on how': 893163, 'on how the': 601425, 'how the medium': 408848, 'the medium sector': 860440, 'medium sector will': 527270, 'sector will be': 744399, 'impacted by plus': 418086, 'by plus thing': 153598, 'plus thing to': 661702, 'thing to consider': 884881, 'to consider in': 903227, 'consider in brand': 195027, 'in brand plan': 420947, 'despicable': 238622, 'hording': 404014, 'softpower': 781521, 'where wa': 985329, 'wa this': 963493, 'have source': 382667, 'source from': 786486, 'from news': 336572, 'news medium': 560606, 'medium despicable': 527071, 'despicable china': 238627, 'china caused': 176545, 'caused shortage': 167953, 'shortage ccp': 764884, 'ccp china': 168451, 'china is': 176742, 'is hording': 448540, 'hording medical': 404021, 'equipment during': 279716, 'during to': 263353, 'drive up': 259239, 'to dole': 904626, 'dole the': 252931, 'the aid': 848468, 'aid out': 39432, 'to country': 903635, 'build it': 141988, 'it softpower': 461157, 'where wa this': 985331, 'wa this and': 963495, 'this and do': 886326, 'and do you': 61570, 'you have source': 1019116, 'have source from': 382668, 'source from news': 786487, 'from news medium': 336574, 'news medium despicable': 560609, 'medium despicable china': 527072, 'despicable china caused': 238628, 'china caused shortage': 176546, 'caused shortage ccp': 167954, 'shortage ccp china': 764885, 'ccp china is': 168452, 'china is hording': 176749, 'is hording medical': 448541, 'hording medical equipment': 404022, 'medical equipment during': 526149, 'equipment during to': 279717, 'during to drive': 263355, 'to drive up': 904750, 'drive up price': 259248, 'up price and': 945806, 'price and to': 672567, 'and to dole': 74167, 'to dole the': 904628, 'dole the aid': 252932, 'the aid out': 848471, 'aid out to': 39433, 'out to country': 627631, 'to country and': 903636, 'country and build': 210435, 'and build it': 59241, 'build it softpower': 141989, 'upends': 947510, 'when million': 983732, 'million have': 532179, 'have lost': 381378, 'lost their': 503923, 'their income': 873642, 'income key': 432394, 'key food': 473293, 'are surging': 90673, 'surging after': 828400, 'after upends': 36471, 'upends supply': 947518, 'time when million': 898294, 'when million have': 983733, 'million have lost': 532180, 'have lost their': 381385, 'lost their income': 503924, 'their income key': 873645, 'income key food': 432395, 'key food price': 473294, 'food price are': 315921, 'price are surging': 672748, 'are surging after': 90674, 'surging after upends': 828401, 'after upends supply': 36472, 'upends supply chain': 947519, 'meredith': 529095, 'now understand': 576254, 'why meredith': 991191, 'meredith from': 529096, 'the office': 862066, 'office wa': 595578, 'wa drinking': 962032, 'drinking the': 258939, 'the hand': 857055, 'now understand why': 576256, 'understand why meredith': 940818, 'why meredith from': 991192, 'meredith from the': 529097, 'from the office': 337812, 'the office wa': 862082, 'office wa drinking': 595579, 'wa drinking the': 962033, 'drinking the hand': 258940, 'the hand sanitizer': 857063, 'babyx': 106788, 'wasting': 968300, 'realise': 701584, 'handled': 376293, 'babyx may': 106789, 'read but': 700311, 'even very': 284760, 'very slow': 955549, 'slow old': 774377, 'old idiot': 598298, 'idiot know': 413538, 'know dont': 476354, 'buy your': 149493, 'your wasting': 1026307, 'wasting the': 968326, 'and money': 67110, 'money dont': 536711, 'dont people': 255271, 'people realise': 649234, 'realise they': 701611, 'they be': 881526, 'be buy': 113935, 'product after': 680840, 'after someone': 36227, 'someone with': 784781, 'ha handled': 370815, 'handled it': 376308, 'so they': 778461, 'they putting': 882960, 'putting there': 691255, 'there self': 879032, 'self and': 747548, 'and family': 62649, 'family at': 297640, 'babyx may not': 106790, 'not be able': 568348, 'able to read': 24531, 'to read but': 912827, 'read but even': 700312, 'but even very': 145672, 'even very slow': 284761, 'very slow old': 955550, 'slow old idiot': 774378, 'old idiot know': 598299, 'idiot know dont': 413539, 'know dont panic': 476355, 'dont panic buy': 255264, 'panic buy your': 637547, 'buy your wasting': 149503, 'your wasting the': 1026308, 'wasting the food': 968327, 'food and money': 313285, 'and money dont': 67111, 'money dont people': 536712, 'dont people realise': 255272, 'people realise they': 649235, 'realise they be': 701613, 'they be buy': 881529, 'be buy the': 113937, 'buy the product': 149304, 'the product after': 864581, 'product after someone': 680841, 'after someone with': 36230, 'someone with covid': 784784, '19 ha handled': 7351, 'ha handled it': 370817, 'handled it so': 376309, 'it so they': 461133, 'so they putting': 778478, 'they putting there': 882962, 'putting there self': 691257, 'there self and': 879033, 'self and family': 747549, 'and family at': 62652, 'telehealth': 836740, 'monitoring': 537336, 'chatbots': 173978, 'digital tool': 242664, 'tool such': 925436, 'such telehealth': 816791, 'telehealth remote': 836758, 'remote patient': 710720, 'patient monitoring': 644211, 'monitoring and': 537339, 'and ai': 57797, 'ai based': 39297, 'based consumer': 111542, 'consumer chatbots': 196782, 'chatbots could': 173979, 'could help': 209277, 'help contain': 389531, 'contain covid': 200470, 'digital tool such': 242666, 'tool such telehealth': 925438, 'such telehealth remote': 816792, 'telehealth remote patient': 836759, 'remote patient monitoring': 710721, 'patient monitoring and': 644212, 'monitoring and ai': 537340, 'and ai based': 57799, 'ai based consumer': 39299, 'based consumer chatbots': 111543, 'consumer chatbots could': 196783, 'chatbots could help': 173980, 'could help contain': 209280, 'help contain covid': 389532, 'contain covid 19': 200471, 'hiring': 397051, 'maintain business': 508944, 'business during': 143667, 'are hiring': 87179, 'hiring more': 397113, 'new worker': 559888, 'the position': 864054, 'position include': 665176, 'include retail': 431620, 'store location': 808791, 'location division': 498889, 'division office': 248684, 'in order to': 426220, 'order to maintain': 618690, 'to maintain business': 909567, 'maintain business during': 508945, 'business during covid': 143668, '19 ha announced': 7326, 'announced that they': 77072, 'that they are': 846923, 'they are hiring': 881297, 'are hiring more': 87184, 'hiring more than': 397114, 'more than 10': 540542, '10 00 new': 1205, '00 new worker': 361, 'new worker across': 559889, 'worker across the': 1006202, 'across the position': 29514, 'the position include': 864055, 'position include retail': 665178, 'include retail store': 431621, 'retail store location': 718657, 'store location division': 808795, 'location division office': 498890, 'division office and': 248685, 'office and warehouse': 595364, 'porter': 664972, 'unskilled': 943482, 'hospital porter': 404566, 'porter care': 664973, 'staff warehouse': 793049, 'worker all': 1006220, 'them not': 876052, 'not so': 571617, 'so unskilled': 778608, 'unskilled now': 943488, 'now are': 574094, 'they 19': 881081, 'hospital porter care': 404567, 'porter care worker': 664974, 'care worker delivery': 164283, 'worker delivery driver': 1006742, 'driver supermarket staff': 259767, 'supermarket staff warehouse': 822903, 'staff warehouse worker': 793051, 'warehouse worker all': 966815, 'worker all of': 1006223, 'all of them': 43717, 'of them not': 591753, 'them not so': 876055, 'not so unskilled': 571630, 'so unskilled now': 778609, 'unskilled now are': 943489, 'now are they': 574100, 'are they 19': 90985, 'petrified': 653658, 'doesn make': 251875, 'any difference': 79112, 'difference how': 241845, 'many time': 514807, 'you ask': 1017315, 'ask people': 95602, 'essential they': 281673, 'are petrified': 89073, 'petrified coronacrisis': 653659, 'it doesn make': 457634, 'doesn make any': 251876, 'make any difference': 509704, 'any difference how': 79113, 'difference how many': 241846, 'how many time': 408287, 'many time you': 514817, 'time you ask': 898402, 'you ask people': 1017319, 'ask people not': 95603, 'not to panic': 572169, 'other essential they': 620183, 'essential they are': 281674, 'they are petrified': 881360, 'are petrified coronacrisis': 89074, 'nonsense': 566717, 'exercising': 290121, 'nowhere': 576544, 'policing': 663298, 'rife': 721689, 'coron': 203775, 'absolute nonsense': 27265, 'nonsense these': 566749, 'and exercising': 62465, 'exercising in': 290124, 'middle of': 530669, 'of nowhere': 587100, 'nowhere away': 576549, 'the mass': 860236, 'mass population': 519832, 'population try': 664747, 'try policing': 934542, 'policing the': 663307, 'the rife': 865800, 'rife profiteering': 721696, 'profiteering and': 682997, 'supermarket crowd': 819867, 'crowd ignoring': 219170, 'ignoring the': 415924, 'and nh': 67581, 'nh hour': 561983, 'hour coron': 405502, 'absolute nonsense these': 27266, 'nonsense these people': 566750, 'these people are': 880423, 'people are out': 647035, 'are out in': 88886, 'out in and': 626371, 'in and exercising': 420362, 'and exercising in': 62466, 'exercising in the': 290126, 'in the middle': 429358, 'the middle of': 860572, 'middle of nowhere': 530682, 'of nowhere away': 587102, 'nowhere away from': 576550, 'away from the': 105915, 'from the mass': 337785, 'the mass population': 860249, 'mass population try': 519833, 'population try policing': 664748, 'try policing the': 934543, 'policing the rife': 663308, 'the rife profiteering': 865801, 'rife profiteering and': 721697, 'profiteering and supermarket': 683003, 'and supermarket crowd': 72712, 'supermarket crowd ignoring': 819869, 'crowd ignoring the': 219171, 'ignoring the elderly': 415927, 'elderly and nh': 270582, 'and nh hour': 67583, 'nh hour coron': 561984, 'explaining': 292175, 'invoke': 444303, 'defenceproductionact': 232098, 'blood': 133096, 'potus': 667280, 'governorcuomo': 361038, 'thank for': 841565, 'for explaining': 321333, 'explaining how': 292178, 'how failure': 407834, 'to invoke': 908497, 'invoke the': 444312, 'the defenceproductionact': 853030, 'defenceproductionact is': 232101, 'of medical': 586389, 'supply needed': 825581, 'keep american': 471307, 'american alive': 51774, 'alive you': 41858, 'have blood': 379807, 'blood on': 133130, 'hand potus': 375182, 'potus governorcuomo': 667285, 'thank for explaining': 841569, 'for explaining how': 321334, 'explaining how failure': 292180, 'how failure to': 407835, 'failure to invoke': 296301, 'to invoke the': 908500, 'invoke the defenceproductionact': 444313, 'the defenceproductionact is': 853031, 'defenceproductionact is driving': 232102, 'up price of': 945826, 'price of medical': 675503, 'of medical supply': 586400, 'medical supply needed': 526452, 'supply needed to': 825583, 'needed to keep': 556540, 'to keep american': 908751, 'keep american alive': 471308, 'american alive you': 51775, 'alive you ll': 41859, 'you ll have': 1019657, 'll have blood': 496826, 'have blood on': 379808, 'blood on your': 133132, 'on your hand': 605472, 'your hand potus': 1024212, 'hand potus governorcuomo': 375183, 'catastrophic': 166946, 'rejected': 708329, 'preparation': 670027, 'dismantling': 245990, 'although this': 49373, 'wa not': 962754, 'cause but': 167507, 'reason why': 703055, 'why it': 991136, 'is catastrophic': 446406, 'catastrophic trump': 166966, 'trump ha': 933587, 'ha rejected': 371697, 'rejected all': 708330, 'all preparation': 44018, 'preparation from': 670039, 'from dismantling': 335159, 'dismantling the': 245993, 'pandemic unit': 636866, 'unit to': 942102, 'to ignoring': 908117, 'ignoring briefing': 415900, 'on severity': 603384, 'severity wore': 754136, 'wore face': 1004652, 'mask while': 519557, 'while standing': 987310, 'and said': 70761, 'although this wa': 49375, 'this wa not': 891081, 'wa not the': 962776, 'not the cause': 571988, 'the cause but': 850540, 'cause but the': 167509, 'but the reason': 147395, 'the reason why': 865281, 'reason why it': 703060, 'why it is': 991143, 'it is catastrophic': 458898, 'is catastrophic trump': 446408, 'catastrophic trump ha': 166967, 'trump ha rejected': 933594, 'ha rejected all': 371698, 'rejected all preparation': 708331, 'all preparation from': 44019, 'preparation from dismantling': 670040, 'from dismantling the': 335161, 'dismantling the global': 245994, 'the global pandemic': 856316, 'global pandemic unit': 352109, 'pandemic unit to': 636867, 'unit to ignoring': 942103, 'to ignoring briefing': 908118, 'ignoring briefing on': 415901, 'briefing on severity': 139731, 'on severity wore': 603385, 'severity wore face': 754137, 'wore face mask': 1004653, 'face mask while': 294609, 'mask while standing': 519561, 'while standing in': 987311, 'standing in the': 793781, 'store and said': 806334, 'goodfridayreads': 358020, 'climb': 182261, 'plummet': 661243, 'restructuring': 717443, 'intel': 440962, 'goodfridayreads wholesale': 358021, 'wholesale meat': 990453, 'price climb': 673146, 'climb then': 182271, 'then plummet': 877433, 'plummet with': 661315, 'with demand': 997969, 'demand restructuring': 236138, 'restructuring related': 717446, 'related from': 708453, 'from intel': 336071, 'intel data': 440967, 'data show': 226403, 'show pizza': 767095, 'pizza is': 657175, 'is holding': 448519, 'holding up': 400186, 'best but': 127605, 'but restaurant': 146933, 'restaurant sale': 716677, 'are plummeting': 89121, 'goodfridayreads wholesale meat': 358022, 'wholesale meat and': 990454, 'egg price climb': 269957, 'price climb then': 673148, 'climb then plummet': 182272, 'then plummet with': 877434, 'plummet with demand': 661316, 'with demand restructuring': 997987, 'demand restructuring related': 236139, 'restructuring related from': 717447, 'related from intel': 708454, 'from intel data': 336072, 'intel data show': 440968, 'data show pizza': 226411, 'show pizza is': 767096, 'pizza is holding': 657177, 'is holding up': 448523, 'holding up the': 400190, 'up the best': 946156, 'the best but': 849495, 'best but restaurant': 127607, 'but restaurant sale': 146934, 'restaurant sale are': 716679, 'sale are plummeting': 732066, 'defiance': 232222, 'characteristic': 173165, 'tehran': 836614, 'plunged': 661478, 'an act': 55077, 'act of': 29716, 'of defiance': 582468, 'defiance characteristic': 232223, 'characteristic of': 173168, 'of iran': 585294, 'iran tehran': 444711, 'tehran stock': 836615, 'stock exchange': 802103, 'exchange ha': 289449, 'up 62': 944196, '62 since': 21232, 'since march': 770724, 'march stock': 515476, 'stock have': 802223, 'have plunged': 381982, 'plunged globally': 661489, 'globally amid': 352366, 'and despite': 61267, 'the fall': 854865, 'fall in': 296937, 'in commodity': 421607, 'commodity price': 189254, 'price cannot': 673069, 'cannot make': 162005, 'stuff up': 815235, 'in an act': 420270, 'an act of': 55078, 'act of defiance': 29718, 'of defiance characteristic': 582469, 'defiance characteristic of': 232224, 'characteristic of iran': 173169, 'of iran tehran': 585298, 'iran tehran stock': 444712, 'tehran stock exchange': 836616, 'stock exchange ha': 802105, 'exchange ha gone': 289450, 'ha gone up': 370734, 'gone up 62': 356412, 'up 62 since': 944197, '62 since march': 21233, 'since march stock': 770727, 'march stock have': 515477, 'stock have plunged': 802227, 'have plunged globally': 381987, 'plunged globally amid': 661490, 'globally amid the': 352368, 'the crisis and': 852344, 'crisis and despite': 217018, 'and despite the': 61270, 'despite the fall': 238884, 'the fall in': 854871, 'fall in commodity': 296939, 'in commodity price': 421608, 'commodity price cannot': 189262, 'price cannot make': 673070, 'cannot make this': 162009, 'make this stuff': 510650, 'this stuff up': 890395, 'extreme': 293774, 'pressure': 671128, 'elizabeth': 271527, 'somer': 784815, 'is extreme': 447673, 'extreme pressure': 293820, 'pressure when': 671254, 'consumer base': 196397, 'and behaviour': 58848, 'behaviour is': 124456, 'over demand': 630145, 'demand medicine': 235853, 'medicine and': 526711, 'that lead': 844852, 'to flow': 906021, 'flow on': 311255, 'on effect': 600524, 'effect through': 269136, 'chain elizabeth': 170675, 'elizabeth de': 271528, 'de somer': 229105, 'somer ceo': 784816, 'there is extreme': 878557, 'is extreme pressure': 447675, 'extreme pressure when': 293822, 'pressure when the': 671256, 'when the consumer': 984134, 'the consumer base': 851496, 'consumer base and': 196398, 'base and behaviour': 111433, 'and behaviour is': 58851, 'behaviour is to': 124459, 'is to over': 453230, 'to over demand': 911292, 'over demand medicine': 630146, 'demand medicine and': 235854, 'medicine and that': 526725, 'and that lead': 73199, 'that lead to': 844854, 'lead to flow': 483344, 'to flow on': 906022, 'flow on effect': 311256, 'on effect through': 600528, 'effect through the': 269137, 'through the supply': 894770, 'supply chain elizabeth': 824950, 'chain elizabeth de': 170676, 'elizabeth de somer': 271529, 'de somer ceo': 229106, 'draining': 258227, 'overtime': 631615, 'satisfy': 736956, 'my fellow': 548298, 'fellow retail': 303327, 'worker out': 1007524, 'there say': 879018, 'you this': 1021700, 'been difficult': 120975, 'difficult and': 242183, 'and draining': 61712, 'draining for': 258230, 'for is': 322662, 'no joke': 564545, 'joke and': 467049, 'working overtime': 1008858, 'overtime to': 631645, 'to satisfy': 913764, 'satisfy all': 736957, 'customer all': 222043, 'all ask': 42068, 'ask from': 95544, 'consumer is': 197931, 'not empty': 569160, 'empty our': 274988, 'our shelf': 624737, 'buy other': 149060, 'to all my': 900264, 'all my fellow': 43554, 'my fellow retail': 548305, 'fellow retail worker': 303329, 'retail worker out': 718901, 'worker out there': 1007527, 'out there say': 627510, 'there say thank': 879021, 'thank you this': 841829, 'you this time': 1021706, 'this time ha': 890643, 'time ha been': 896880, 'ha been difficult': 369780, 'been difficult and': 120976, 'difficult and draining': 242184, 'and draining for': 61713, 'draining for is': 258231, 'for is no': 322671, 'is no joke': 449943, 'no joke and': 564546, 'joke and we': 467052, 'are working overtime': 91710, 'working overtime to': 1008865, 'overtime to satisfy': 631652, 'to satisfy all': 913765, 'satisfy all the': 736958, 'all the need': 44838, 'for the customer': 326369, 'the customer all': 852712, 'customer all ask': 222044, 'all ask from': 42069, 'ask from the': 95545, 'from the consumer': 337651, 'the consumer is': 851552, 'consumer is to': 197945, 'is to not': 453227, 'to not empty': 910688, 'not empty our': 569161, 'empty our shelf': 274992, 'our shelf and': 624738, 'shelf and panic': 756750, 'panic buy other': 637516, 'part price': 642417, 'price only': 675751, 'only during': 610376, 'lockdown quarantine': 499820, 'quarantine we': 692689, 'will keep': 993887, 'keep all': 471291, 'at part': 100072, 'part only': 642398, 'only please': 610991, 'please spread': 660532, 'word time': 1004595, 'take over': 832466, 'part price only': 642419, 'price only during': 675753, 'only during the': 610377, '19 lockdown quarantine': 8420, 'lockdown quarantine we': 499829, 'quarantine we will': 692694, 'we will keep': 973873, 'will keep all': 993888, 'keep all of': 471298, 'of our price': 587546, 'our price at': 624439, 'price at part': 672806, 'at part only': 100073, 'part only please': 642399, 'only please spread': 610992, 'please spread the': 660533, 'spread the word': 790830, 'the word time': 871722, 'word time to': 1004596, 'to take over': 916219, 'sensible': 750626, 'come on': 187426, 'be sensible': 117081, 'sensible socialdistancing': 750659, 'socialdistancing stoppanicbuying': 780757, 'come on people': 187444, 'on people be': 602736, 'people be sensible': 647230, 'be sensible socialdistancing': 117084, 'sensible socialdistancing stoppanicbuying': 750660, 'lotl': 504440, 'have any': 379293, 'any grocery': 79287, 'store news': 809064, 'news or': 560673, 'or shopping': 617057, 'this weekend': 891303, 'weekend or': 977381, 'or today': 617485, 'today let': 919795, 'know which': 477025, 'which store': 986338, 'store still': 810375, 'still ha': 800612, 'what in': 981654, 'stock what': 803174, 'what did': 981315, 'they come': 881775, 'from lotl': 336281, 'you have any': 1019014, 'have any grocery': 379304, 'any grocery store': 79288, 'grocery store news': 365591, 'store news or': 809067, 'news or shopping': 560676, 'or shopping experience': 617060, 'shopping experience from': 762613, 'experience from this': 291369, 'from this weekend': 338018, 'this weekend or': 891316, 'weekend or today': 977382, 'or today let': 617486, 'today let know': 919798, 'let know which': 486863, 'know which store': 477026, 'which store still': 986345, 'store still ha': 810377, 'still ha what': 800623, 'ha what in': 372473, 'what in stock': 981657, 'in stock what': 428342, 'stock what did': 803176, 'what did they': 981319, 'did they come': 240867, 'they come from': 881776, 'come from lotl': 187308, 'piled': 656529, '700': 21869, 'suspected': 829515, 'costinflation': 208318, 'stateofemergency': 796235, 'tn authority': 899382, 'authority have': 103735, 'have investigated': 381123, 'investigated man': 443820, 'man who': 512320, 'who stock': 989679, 'stock piled': 802638, 'piled 17': 656530, '17 700': 4322, '700 handsanitizer': 21884, 'handsanitizer bottle': 376491, 'bottle suspected': 136328, 'suspected of': 829528, 'of pricegouging': 588420, 'pricegouging during': 677807, 'pandemic check': 635130, 'blog post': 132982, 'post to': 666368, 'see why': 746072, 'why costinflation': 990895, 'costinflation during': 208319, 'during stateofemergency': 263050, 'stateofemergency isn': 796236, 'isn ok': 454602, 'ok in': 597828, 'tn authority have': 899383, 'authority have investigated': 103738, 'have investigated man': 381124, 'investigated man who': 443821, 'man who stock': 512338, 'who stock piled': 989682, 'stock piled 17': 802639, 'piled 17 700': 656531, '17 700 handsanitizer': 4323, '700 handsanitizer bottle': 21885, 'handsanitizer bottle suspected': 376492, 'bottle suspected of': 136329, 'suspected of pricegouging': 829529, 'of pricegouging during': 588422, 'pricegouging during the': 677809, 'the pandemic check': 862931, 'pandemic check out': 635132, 'out our latest': 626979, 'latest blog post': 481239, 'blog post to': 133002, 'post to see': 666374, 'to see why': 914100, 'see why costinflation': 746074, 'why costinflation during': 990896, 'costinflation during stateofemergency': 208320, 'during stateofemergency isn': 263051, 'stateofemergency isn ok': 796237, 'isn ok in': 454603, 'ok in nj': 597829, 'drama': 258241, 'meghanandharry': 527852, 'infinitely': 436952, 'doomsdaypreppers': 255484, 'amid all': 52381, 'real drama': 701118, 'drama of': 258249, 'of no': 587034, 'longer care': 501956, 'care to': 164235, 'latest meghanandharry': 481436, 'meghanandharry story': 527853, 'story am': 811901, 'am infinitely': 50148, 'infinitely more': 436953, 'more worried': 541012, 'the health': 857176, 'health of': 386680, 'my child': 547675, 'and whether': 75544, 'whether the': 985577, 'supermarket will': 823878, 'have anything': 379333, 'anything left': 80813, 'shelf when': 757785, 'get there': 348377, 'there bloody': 878255, 'bloody doomsdaypreppers': 133194, 'amid all the': 52383, 'all the real': 44882, 'the real drama': 865215, 'real drama of': 701119, 'drama of no': 258250, 'of no longer': 587042, 'no longer care': 564641, 'longer care to': 501957, 'care to follow': 164237, 'follow the latest': 312533, 'the latest meghanandharry': 859127, 'latest meghanandharry story': 481437, 'meghanandharry story am': 527854, 'story am infinitely': 811902, 'am infinitely more': 50149, 'infinitely more worried': 436954, 'more worried about': 541013, 'about the health': 26410, 'the health of': 857184, 'health of my': 386685, 'of my child': 586742, 'my child and': 547677, 'child and whether': 176004, 'and whether the': 75549, 'whether the supermarket': 985586, 'the supermarket will': 868908, 'supermarket will have': 823884, 'will have anything': 993614, 'have anything left': 379334, 'anything left on': 80815, 'the shelf when': 866899, 'shelf when get': 757786, 'when get there': 983462, 'get there bloody': 348380, 'there bloody doomsdaypreppers': 878256, 'triple': 932237, 'digit': 242473, 'hurricane': 411468, 'flood': 310700, 'seeing triple': 746525, 'triple digit': 932242, 'digit spike': 242488, 'spike in': 789288, 'demand struggling': 236284, 'to deal': 903966, 'with crisis': 997855, 'entire country': 278653, 'is experiencing': 447647, 'experiencing at': 291629, 'once it': 605665, 'isn like': 454586, 'like certain': 489982, 'certain region': 170089, 'region wa': 707477, 'wa hit': 962311, 'hit by': 398173, 'by hurricane': 152853, 'hurricane and': 411469, 'and thing': 73953, 'thing can': 884218, 'can flood': 158356, 'flood in': 310707, 'in everybody': 422693, 'everybody is': 286444, 'is affected': 445371, 'are seeing triple': 89919, 'seeing triple digit': 746526, 'triple digit spike': 932244, 'digit spike in': 242489, 'spike in demand': 789294, 'in demand struggling': 422155, 'demand struggling to': 236285, 'struggling to deal': 814500, 'to deal with': 903969, 'deal with crisis': 229547, 'with crisis the': 997857, 'crisis the entire': 218170, 'the entire country': 854349, 'entire country is': 278658, 'country is experiencing': 210799, 'is experiencing at': 447648, 'experiencing at once': 291630, 'at once it': 99958, 'once it isn': 605668, 'it isn like': 459149, 'isn like certain': 454587, 'like certain region': 489983, 'certain region wa': 170090, 'region wa hit': 707478, 'wa hit by': 962312, 'hit by hurricane': 398177, 'by hurricane and': 152854, 'hurricane and thing': 411470, 'and thing can': 73955, 'thing can flood': 884222, 'can flood in': 158357, 'flood in everybody': 310708, 'in everybody is': 422694, 'everybody is affected': 286446, 'is affected by': 445372, 'affected by this': 34326, 'scam what': 740472, 'ftc is': 339412, 'scam what the': 740474, 'what the ftc': 982317, 'the ftc is': 855931, 'ftc is doing': 339413, 'asf': 95013, 'hampered': 374608, 'stage': 793172, 'china in': 176724, 'china asf': 176506, 'asf outbreak': 95016, 'outbreak were': 628805, 'were certainly': 979427, 'certainly made': 170161, 'government restriction': 360544, 'restriction on': 717334, 'on public': 602997, 'public release': 688267, 'release of': 708980, 'of information': 585191, 'information which': 438039, 'which hampered': 985908, 'hampered effort': 374612, 'combat disease': 187005, 'disease in': 245156, 'their critical': 872921, 'critical early': 218550, 'early stage': 264699, 'and china in': 59854, 'china in china': 176727, 'in china asf': 421390, 'china asf outbreak': 176507, 'asf outbreak were': 95017, 'outbreak were certainly': 628807, 'were certainly made': 979428, 'certainly made worse': 170163, 'worse by government': 1010898, 'by government restriction': 152715, 'government restriction on': 360546, 'restriction on public': 717349, 'on public release': 603001, 'public release of': 688268, 'release of information': 708983, 'of information which': 585198, 'information which hampered': 438040, 'which hampered effort': 985909, 'hampered effort to': 374613, 'effort to combat': 269613, 'to combat disease': 902994, 'combat disease in': 187006, 'disease in their': 245158, 'in their critical': 429732, 'their critical early': 872922, 'critical early stage': 218551, 'stamp': 793396, 'rocking': 724976, 'new wave': 559850, 'wave of': 969363, 'closing up': 183806, 'up shop': 945975, 'the short': 867081, 'term the': 838317, 'industry work': 436256, 'to stamp': 915149, 'stamp out': 793432, 'virus rocking': 958700, 'rocking the': 724981, 'global community': 351786, 'community retail': 190071, 'new wave of': 559851, 'wave of store': 969382, 'of store is': 590254, 'store is closing': 808477, 'is closing up': 446617, 'closing up shop': 183807, 'up shop in': 945978, 'shop in the': 760327, 'in the short': 429547, 'the short term': 867084, 'short term the': 764756, 'term the industry': 838319, 'the industry work': 858198, 'industry work to': 436257, 'work to stamp': 1005902, 'to stamp out': 915150, 'stamp out the': 793433, 'out the virus': 627436, 'the virus rocking': 870885, 'virus rocking the': 958701, 'rocking the global': 724983, 'the global community': 856291, 'global community retail': 351788, 'scottish': 742473, 'pandemic affect': 634802, 'affect scottish': 34221, 'scottish house': 742483, 'will the pandemic': 995150, 'the pandemic affect': 862896, 'pandemic affect scottish': 634805, 'affect scottish house': 34222, 'scottish house price': 742484, 'cable': 155012, 'you waste': 1022180, 'waste worker': 968218, 'worker cable': 1006576, 'cable guy': 155015, 'guy mail': 369081, 'mail carrier': 508574, 'carrier pharmacist': 165008, 'pharmacist grocery': 654139, 'employee amazon': 273541, 'delivery people': 234307, 'people utility': 650080, 'utility worker': 951336, 'worker power': 1007618, 'power gas': 667611, 'gas water': 344176, 'water telecom': 969193, 'thank you waste': 841843, 'you waste worker': 1022184, 'waste worker cable': 968219, 'worker cable guy': 1006577, 'cable guy mail': 155016, 'guy mail carrier': 369082, 'mail carrier pharmacist': 508582, 'carrier pharmacist grocery': 165009, 'pharmacist grocery store': 654140, 'store employee amazon': 807454, 'employee amazon warehouse': 273543, 'amazon warehouse worker': 51187, 'worker delivery people': 1006745, 'delivery people utility': 234327, 'people utility worker': 650081, 'utility worker power': 951341, 'worker power gas': 1007619, 'power gas water': 667612, 'gas water telecom': 344178, 'intensify': 441113, 'and isolation': 65463, 'isolation continue': 455238, 'to intensify': 908444, 'intensify ecommerce': 441118, 'ecommerce sale': 266852, 'also increasing': 48417, 'increasing consumer': 433568, 'is forced': 447898, 'to change': 902589, 'change click': 171973, 'click below': 181885, 'full story': 340898, 'distancing and isolation': 246976, 'and isolation continue': 65464, 'isolation continue to': 455239, 'continue to intensify': 201212, 'to intensify ecommerce': 908445, 'intensify ecommerce sale': 441119, 'ecommerce sale are': 266854, 'sale are also': 732057, 'are also increasing': 84463, 'also increasing consumer': 48418, 'increasing consumer behavior': 433569, 'consumer behavior is': 196488, 'behavior is forced': 124098, 'is forced to': 447899, 'forced to change': 328620, 'to change click': 902595, 'change click below': 171974, 'click below for': 181886, 'below for the': 126650, 'for the full': 326455, 'the full story': 856023, 'saturday': 736987, 'ted': 836415, 'mimosa': 532499, 'if get': 414142, 'will almost': 992246, 'almost certainly': 46570, 'certainly be': 170135, 'be from': 114964, 'stupidity of': 815544, 'of human': 584867, 'human at': 410425, 'on an': 599319, 'an otherwise': 56719, 'otherwise calm': 621831, 'calm saturday': 156792, 'saturday morning': 737043, 'morning thanks': 541484, 'for coming': 320172, 'coming to': 188217, 'my ted': 550330, 'ted talk': 836419, 'talk it': 833808, 'now time': 576157, 'for mimosa': 323441, 'mimosa before': 532500, 'before have': 122840, 'have panic': 381877, 'if get it': 414145, 'get it will': 347437, 'it will almost': 462369, 'will almost certainly': 992247, 'almost certainly be': 46571, 'certainly be from': 170136, 'be from the': 114971, 'from the level': 337771, 'level of stupidity': 487662, 'of stupidity of': 590346, 'stupidity of human': 815545, 'of human at': 584870, 'human at the': 410426, 'store on an': 809185, 'on an otherwise': 599334, 'an otherwise calm': 56720, 'otherwise calm saturday': 621832, 'calm saturday morning': 156793, 'saturday morning thanks': 737045, 'morning thanks for': 541485, 'thanks for coming': 842054, 'for coming to': 320177, 'coming to my': 188223, 'to my ted': 910442, 'my ted talk': 550332, 'ted talk it': 836420, 'talk it now': 833809, 'it now time': 459967, 'now time for': 576158, 'time for mimosa': 896726, 'for mimosa before': 323442, 'mimosa before have': 532501, 'before have panic': 122842, 'have panic attack': 381878, 'insolvency': 439735, 'picked': 655785, 'marginally': 515660, 'and business': 59261, 'business insolvency': 143931, 'insolvency picked': 439743, 'picked up': 655806, 'up marginally': 945361, 'marginally in': 515663, 'in february': 422833, 'february before': 301693, 'on set': 603382, 'set of': 753438, 'of economic': 582947, 'economic impact': 267124, 'impact from': 417663, '19 full': 7161, 'consumer and business': 196200, 'and business insolvency': 59286, 'business insolvency picked': 143932, 'insolvency picked up': 439744, 'picked up marginally': 655815, 'up marginally in': 945362, 'marginally in february': 515664, 'in february before': 422837, 'february before the': 301695, 'before the full': 123164, 'the full on': 856017, 'full on set': 340777, 'on set of': 603383, 'set of economic': 753440, 'of economic impact': 582953, 'economic impact from': 267134, 'impact from covid': 417665, 'covid 19 full': 213133, '19 full report': 7164, 'own pantry': 632120, 'pantry consider': 639555, 'consider donating': 194981, 'to local': 909369, 'bank call': 109697, 'call ahead': 155746, 'ahead to': 39215, 'and check': 59780, 'out guide': 626243, 'guide here': 368329, 'stock up your': 803137, 'up your own': 946745, 'your own pantry': 1025154, 'own pantry consider': 632121, 'pantry consider donating': 639556, 'consider donating to': 194988, 'donating to local': 254523, 'to local food': 909376, 'food bank call': 313533, 'bank call ahead': 109698, 'call ahead to': 155749, 'ahead to see': 39218, 'see what they': 746046, 'they need and': 882716, 'need and check': 554420, 'and check out': 59783, 'check out guide': 174553, 'out guide here': 626244, 'ashley': 95101, 'tisdale': 899108, 'handed': 376059, 'ashleytisdale': 95127, 'ashley tisdale': 95120, 'tisdale leaf': 899109, 'leaf grocery': 483800, 'store empty': 807584, 'empty handed': 274900, 'handed ashleytisdale': 376060, 'ashleytisdale grocery': 95128, 'ashley tisdale leaf': 95121, 'tisdale leaf grocery': 899110, 'leaf grocery store': 483801, 'grocery store empty': 365364, 'store empty handed': 807585, 'empty handed ashleytisdale': 274901, 'handed ashleytisdale grocery': 376061, 'pretect': 671309, 'stayathomeorder': 797769, 'it import': 458704, 'mask when': 519533, 're healthy': 698797, 'healthy pretect': 387734, 'pretect yourself': 671310, 'others from': 621416, 'the we': 871213, 'the healthcare': 857191, 'healthcare system': 387305, 'system from': 831181, 'from failing': 335387, 'failing or': 296215, 'we risk': 973110, 'risk to': 723948, 'lose more': 503454, 'more life': 539677, 'life than': 489086, 'than necessary': 840926, 'necessary stayathomeorder': 554086, 'stayathomeorder stayhome': 797787, 'do you know': 250642, 'you know why': 1019545, 'know why it': 477050, 'why it import': 991141, 'it import to': 458705, 'import to wear': 418683, 'wear mask when': 974412, 'mask when you': 519545, 'think you re': 885817, 'you re healthy': 1020641, 're healthy pretect': 698799, 'healthy pretect yourself': 387735, 'pretect yourself and': 671311, 'yourself and others': 1026523, 'and others from': 68445, 'others from the': 621426, 'from the we': 337920, 'the we need': 871218, 'need to support': 556095, 'to support the': 915975, 'support the healthcare': 826873, 'the healthcare system': 857201, 'healthcare system from': 387308, 'system from failing': 831182, 'from failing or': 335389, 'failing or we': 296216, 'or we risk': 617741, 'we risk to': 973112, 'risk to lose': 723966, 'to lose more': 909460, 'lose more life': 503455, 'more life than': 539681, 'life than necessary': 489087, 'than necessary stayathomeorder': 840928, 'necessary stayathomeorder stayhome': 554087, 'nigerian': 562829, '1billion': 12585, 'dey': 240016, 'loot': 503228, 'suffering': 817280, 'guy re': 369121, 're giving': 698742, 'giving nigerian': 351354, 'nigerian govt': 562850, 'govt 1billion': 361059, '1billion to': 12588, '19 when': 12015, 'when know': 983669, 'know dey': 476350, 'dey will': 240043, 'will loot': 994047, 'loot money': 503231, 'money why': 537173, 'why didn': 990923, 'didn credit': 241029, 'credit the': 216528, 'the account': 848287, 'of nigerian': 587016, 'nigerian who': 562902, 'little or': 495506, 'or no': 616256, 'no money': 564777, 'money in': 536828, 'their account': 872452, 'account so': 28748, 'so dey': 776858, 'dey can': 240017, 'can stock': 159803, 'house people': 406454, 'are suffering': 90626, 'guy re giving': 369122, 're giving nigerian': 698745, 'giving nigerian govt': 351355, 'nigerian govt 1billion': 562851, 'govt 1billion to': 361060, '1billion to fight': 12589, 'to fight covid': 905785, 'covid 19 when': 214065, '19 when know': 12021, 'when know dey': 983670, 'know dey will': 476351, 'dey will loot': 240044, 'will loot money': 994048, 'loot money why': 503232, 'money why didn': 537174, 'why didn credit': 990925, 'didn credit the': 241030, 'credit the account': 216529, 'the account of': 848288, 'account of nigerian': 28729, 'of nigerian who': 587017, 'nigerian who have': 562904, 'who have little': 988935, 'have little or': 381353, 'little or no': 495507, 'or no money': 616263, 'no money in': 564785, 'money in their': 536831, 'in their account': 429712, 'their account so': 872454, 'account so dey': 28749, 'so dey can': 776859, 'dey can stock': 240018, 'can stock food': 159804, 'stock food in': 802134, 'the house people': 857624, 'house people are': 406455, 'people are suffering': 647097, 'alivecor': 41860, 'expanded': 290477, 'kardiamobile': 470883, '6l': 21631, 'ecg': 266616, 'dangerously': 225806, 'prolonged': 683624, 'heartbeat': 388364, 'alivecor received': 41861, 'received fda': 703617, 'fda approval': 300826, 'an expanded': 55959, 'expanded use': 290493, 'their kardiamobile': 873751, 'kardiamobile 6l': 470884, '6l device': 21632, 'device six': 239934, 'six lead': 772660, 'lead consumer': 483269, 'consumer ecg': 197281, 'ecg to': 266619, 'for dangerously': 320542, 'dangerously prolonged': 225807, 'prolonged heartbeat': 683629, 'heartbeat caused': 388365, 'by medication': 153196, 'alivecor received fda': 41862, 'received fda approval': 703618, 'fda approval for': 300828, 'approval for an': 83092, 'for an expanded': 319291, 'an expanded use': 55960, 'expanded use of': 290494, 'use of their': 949431, 'of their kardiamobile': 591674, 'their kardiamobile 6l': 873752, 'kardiamobile 6l device': 470885, '6l device six': 21633, 'device six lead': 239935, 'six lead consumer': 772661, 'lead consumer ecg': 483271, 'consumer ecg to': 197282, 'ecg to look': 266620, 'to look for': 909435, 'look for dangerously': 502356, 'for dangerously prolonged': 320543, 'dangerously prolonged heartbeat': 225808, 'prolonged heartbeat caused': 683630, 'heartbeat caused by': 388366, 'caused by medication': 167850, 'cyprus': 224138, 'so apparently': 776529, 'apparently of': 81978, 'of tomorrow': 592301, 'tomorrow we': 924233, 'll only': 496930, 'pharmacy work': 654570, 'work if': 1005274, 'needed cyprus': 556335, 'cyprus 19': 224139, 'so apparently of': 776533, 'apparently of tomorrow': 81979, 'of tomorrow we': 592304, 'tomorrow we ll': 924236, 'we ll only': 972267, 'll only be': 496931, 'only be allowed': 610147, 'be allowed to': 113567, 'the supermarket pharmacy': 868750, 'supermarket pharmacy work': 821981, 'pharmacy work if': 654571, 'work if needed': 1005279, 'if needed cyprus': 414460, 'needed cyprus 19': 556336, 'counsellor': 210078, 'debthelp': 230628, 'debtfree': 230625, 'our certified': 622350, 'certified credit': 170230, 'credit counsellor': 216365, 'counsellor are': 210079, 'prepared to': 670245, 'help the': 390639, 'the many': 860032, 'many canadian': 513863, 'canadian who': 160773, 'of facing': 583370, 'facing consumer': 295428, 'consumer insolvency': 197892, 'insolvency we': 439749, 'work hard': 1005235, 'canadian with': 160775, 'their financial': 873319, 'financial hardship': 306426, 'hardship debthelp': 378283, 'debthelp debtfree': 230629, 'outbreak our certified': 628510, 'our certified credit': 622351, 'certified credit counsellor': 170231, 'credit counsellor are': 216366, 'counsellor are prepared': 210080, 'are prepared to': 89196, 'prepared to help': 670254, 'to help the': 907646, 'help the many': 390664, 'the many canadian': 860036, 'many canadian who': 513865, 'canadian who are': 160774, 'risk of facing': 723747, 'of facing consumer': 583371, 'facing consumer insolvency': 295430, 'consumer insolvency we': 197894, 'insolvency we work': 439750, 'we work hard': 973943, 'work hard to': 1005239, 'hard to help': 378067, 'help canadian with': 389481, 'canadian with their': 160778, 'with their financial': 1001570, 'their financial hardship': 873323, 'financial hardship debthelp': 306431, 'hardship debthelp debtfree': 378284, 'everyone helping': 287004, 'helping to': 391521, 'fight and': 304651, 'safe nurse': 729846, 'nurse carers': 577239, 'carers doctor': 164575, 'doctor bus': 250854, 'staff thank': 792927, 'for everyone helping': 321214, 'everyone helping to': 287007, 'helping to fight': 391525, 'to fight and': 905777, 'fight and keep': 304653, 'and keep safe': 65776, 'keep safe nurse': 471884, 'safe nurse carers': 729847, 'nurse carers doctor': 577241, 'carers doctor bus': 164576, 'doctor bus driver': 250855, 'bus driver supermarket': 143029, 'supermarket staff thank': 822896, 'staff thank you': 792928, 'betting': 128632, 'tho': 891670, 'uklockdown': 938985, 'much you': 545487, 'you betting': 1017470, 'betting even': 128635, 'even tho': 284692, 'tho we': 891696, 'lockdown your': 500184, 'your still': 1025942, 'get moron': 347607, 'moron who': 541647, 'who go': 988786, 'out tomorrow': 627718, 'tomorrow and': 924021, 'and try': 74505, 'try and': 934436, 'and bulk': 59250, 'bulk buy': 142248, 'buy again': 148277, 'again for': 36992, 'delivery it': 234150, 'it take': 461418, 'take about': 831884, 'about week': 26865, 'get slot': 348016, 'slot so': 774258, 'so your': 778857, 'your going': 1024071, 'store uklockdown': 810986, 'how much you': 408388, 'much you betting': 545491, 'you betting even': 1017471, 'betting even tho': 128636, 'even tho we': 284696, 'tho we are': 891697, 'we are on': 970644, 'are on lockdown': 88724, 'on lockdown your': 601925, 'lockdown your still': 500186, 'your still going': 1025945, 'to get moron': 906537, 'get moron who': 347608, 'moron who go': 541650, 'who go out': 988793, 'go out tomorrow': 353995, 'out tomorrow and': 627719, 'tomorrow and try': 924027, 'and try and': 74506, 'try and bulk': 934439, 'and bulk buy': 59251, 'bulk buy again': 142249, 'buy again for': 148278, 'again for delivery': 36993, 'for delivery it': 320639, 'delivery it take': 234155, 'it take about': 461419, 'take about week': 831886, 'about week to': 26875, 'week to get': 977080, 'to get slot': 906591, 'get slot so': 348020, 'slot so your': 774261, 'so your going': 778858, 'your going to': 1024072, 'going to have': 355618, 'to have to': 907329, 'go in to': 353721, 'in to the': 430141, 'grocery store uklockdown': 365894, 'climate': 182176, 'joking': 467187, 'theyve': 883969, 'utterly': 951446, 'disappointed': 244092, 'skybroadb': 773239, 'you serious': 1021122, 'serious given': 751394, 'given the': 351128, 'current climate': 221126, 'climate are': 182181, 'you actually': 1016804, 'actually joking': 30856, 'joking you': 467204, 'ashamed theyve': 95079, 'theyve now': 883972, 'now shut': 575826, 'shut school': 767921, 'will probably': 994460, 'probably close': 679238, 'close business': 182574, 'and your': 76064, 'your increasing': 1024475, 'increasing price': 433661, 'price utterly': 677287, 'utterly disgraceful': 951449, 'disgraceful and': 245322, 'and disappointed': 61400, 'disappointed sky': 244113, 'sky skybroadb': 773229, 'are you serious': 91852, 'you serious given': 1021124, 'serious given the': 751395, 'given the current': 351133, 'the current climate': 852618, 'current climate are': 221127, 'climate are you': 182182, 'are you actually': 91760, 'you actually joking': 1016810, 'actually joking you': 30857, 'joking you should': 467205, 'be ashamed theyve': 113702, 'ashamed theyve now': 95080, 'theyve now shut': 883973, 'now shut school': 575827, 'shut school and': 767922, 'school and will': 741691, 'and will probably': 75684, 'will probably close': 994462, 'probably close business': 679239, 'close business and': 182575, 'business and your': 143343, 'and your increasing': 76078, 'your increasing price': 1024476, 'increasing price utterly': 433684, 'price utterly disgraceful': 677288, 'utterly disgraceful and': 951450, 'disgraceful and disappointed': 245323, 'and disappointed sky': 61401, 'disappointed sky skybroadb': 244114, 'impact consumer': 417605, 'service download': 752304, 'download our': 257608, 'our free': 623162, 'free report': 332094, 'measure and': 525096, 'and of': 67954, 'potential recession': 667125, 'recession on': 704331, 'on digital': 600320, 'digital service': 242643, 'how will impact': 409230, 'will impact consumer': 993778, 'impact consumer service': 417612, 'consumer service download': 198943, 'service download our': 752305, 'download our free': 257610, 'our free report': 623164, 'free report on': 332096, 'report on the': 712154, 'on the effect': 604087, 'effect of social': 269062, 'of social distancing': 589838, 'distancing measure and': 247316, 'measure and of': 525103, 'and of potential': 67958, 'of potential recession': 588284, 'potential recession on': 667126, 'recession on digital': 704332, 'on digital service': 600328, 'ecosystem': 268395, 'elegance': 271322, 'is having': 448323, 'having major': 384151, 'major impact': 509358, 'whole business': 990155, 'business ecosystem': 143686, 'ecosystem in': 268396, 'term business': 838074, 'will need': 994143, 'the immediate': 857896, 'immediate challenge': 416974, 'challenge of': 171509, 'lockdown where': 500132, 'where speed': 985186, 'speed will': 788481, 'more important': 539487, 'important than': 418983, 'than elegance': 840541, '19 is having': 7984, 'is having major': 448330, 'having major impact': 384153, 'major impact on': 509359, 'on the whole': 604452, 'the whole business': 871481, 'whole business ecosystem': 990156, 'business ecosystem in': 143687, 'ecosystem in the': 268397, 'short term business': 764725, 'term business will': 838076, 'business will need': 144686, 'will need to': 994151, 'need to respond': 556046, 'to the immediate': 916795, 'the immediate challenge': 857898, 'immediate challenge of': 416975, 'challenge of the': 171518, '19 lockdown where': 8439, 'lockdown where speed': 500133, 'where speed will': 985187, 'speed will be': 788482, 'will be more': 992563, 'be more important': 115980, 'more important than': 539493, 'important than elegance': 418990, 'odisha': 579227, 'cold': 185729, 'complication': 192477, 've just': 953292, 'just posted': 469473, 'posted new': 666552, 'new blog': 558401, 'blog after': 132899, 'after recovery': 36112, 'recovery odisha': 705361, 'odisha first': 579230, 'first covid': 308602, '19 patient': 9586, 'patient urge': 644284, 'urge people': 948209, 'panic he': 638167, 'he ha': 385013, 'been advised': 120614, 'advised to': 33648, 'remain under': 709900, 'under home': 940117, 'home quarantine': 401931, 'quarantine for': 692196, 'for another': 319365, 'another 14': 77470, 'avoid any': 105002, 'any cold': 79024, 'cold food': 185757, 'food he': 314793, 'to call': 902371, 'call doctor': 155834, 'doctor if': 250960, 'any health': 79306, 'health complication': 386281, 've just posted': 953302, 'just posted new': 469475, 'posted new blog': 666553, 'new blog after': 558402, 'blog after recovery': 132900, 'after recovery odisha': 36113, 'recovery odisha first': 705362, 'odisha first covid': 579231, 'first covid 19': 308603, 'covid 19 patient': 213558, '19 patient urge': 9596, 'patient urge people': 644285, 'urge people not': 948210, 'to panic he': 911400, 'panic he ha': 638168, 'he ha been': 385020, 'ha been advised': 369709, 'been advised to': 120616, 'advised to remain': 33650, 'to remain under': 913177, 'remain under home': 709901, 'under home quarantine': 940119, 'home quarantine for': 401932, 'quarantine for another': 692199, 'for another 14': 319366, 'another 14 day': 77471, '14 day and': 3441, 'day and avoid': 227254, 'and avoid any': 58559, 'avoid any cold': 105003, 'any cold food': 79026, 'cold food he': 185759, 'food he ha': 314794, 'he ha also': 385016, 'also been asked': 47939, 'asked to call': 95860, 'to call doctor': 902378, 'call doctor if': 155835, 'doctor if there': 250961, 'if there any': 415062, 'there any health': 878021, 'any health complication': 79307, 'all grocery': 43004, 'worker pandemic': 1007539, 'pandemic corona': 635221, 'for all grocery': 319130, 'all grocery worker': 43013, 'grocery worker pandemic': 366185, 'worker pandemic corona': 1007540, 'been an': 120652, 'an honor': 56066, 'honor to': 403255, 'receive personal': 703530, 'personal email': 652832, 'email from': 272179, 'from every': 335319, 'every ceo': 285719, 'ceo of': 169764, 'company in': 190755, 'which am': 985659, 'am consumer': 49979, 'consumer regarding': 198666, 'it been an': 456790, 'been an honor': 120654, 'an honor to': 56067, 'honor to receive': 403257, 'to receive personal': 912929, 'receive personal email': 703531, 'personal email from': 652834, 'email from every': 272186, 'from every ceo': 335320, 'every ceo of': 285720, 'ceo of company': 169772, 'of company in': 581610, 'company in which': 190774, 'in which am': 430856, 'which am consumer': 985660, 'am consumer regarding': 49981, 'consumer regarding covid': 198667, 'gotten': 359120, 'tougher': 926885, 'you gotten': 1018918, 'gotten delivery': 359131, 'slot online': 774247, 'shopping get': 762775, 'get tougher': 348527, 'tougher by': 926886, 'the day': 852864, 'day via': 228648, 'have you gotten': 383670, 'you gotten delivery': 1018919, 'gotten delivery slot': 359132, 'delivery slot online': 234534, 'slot online grocery': 774248, 'grocery shopping get': 365026, 'shopping get tougher': 762777, 'get tougher by': 348528, 'tougher by the': 926887, 'by the day': 154303, 'the day via': 852922, 'manipulating': 513214, 'inappropriate': 431234, 'manipulating fuel': 513217, 'is inappropriate': 448834, 'inappropriate and': 431235, 'greed on': 363417, 'the part': 863304, 'producing country': 680749, 'country greedy': 210701, 'manipulating fuel price': 513218, 'fuel price during': 340227, 'during the current': 263111, 'crisis is inappropriate': 217577, 'is inappropriate and': 448835, 'inappropriate and smack': 431236, 'of greed on': 584325, 'greed on the': 363419, 'on the part': 604276, 'the part of': 863305, 'part of oil': 642367, 'of oil producing': 587193, 'oil producing country': 597352, 'producing country greedy': 680753, 'country greedy bastard': 210702, 'underestimate': 940423, 'horrible': 404092, 'not underestimate': 572311, 'underestimate the': 940426, 'the power': 864147, 'power of': 667648, 'of kind': 585640, 'kind word': 475032, 'word to': 1004597, 'to someone': 914900, 'someone right': 784626, 'are lot': 87908, 'are truly': 91215, 'truly horrible': 933316, 'horrible to': 404135, 'to health': 907368, 'care provider': 164172, 'provider grocery': 686728, 'store staff': 810297, 'and sure': 72867, 'sure many': 827613, 'many others': 514445, 'others smiling': 621643, 'smiling and': 775763, 'and saying': 71014, 'saying thank': 739692, 'doing your': 252878, 'best in': 127729, 'in difficult': 422260, 'time can': 896443, 'mean everything': 524418, 'everything for': 287791, 'them 19': 875299, 'do not underestimate': 249879, 'not underestimate the': 572312, 'underestimate the power': 940428, 'the power of': 864154, 'power of kind': 667651, 'of kind word': 585641, 'kind word to': 475034, 'word to someone': 1004603, 'to someone right': 914907, 'someone right now': 784627, 'right now there': 722155, 'now there are': 576089, 'there are lot': 878121, 'are lot of': 87910, 'lot of people': 504247, 'of people who': 588024, 'who are truly': 988247, 'are truly horrible': 91218, 'truly horrible to': 933317, 'horrible to health': 404137, 'to health care': 907370, 'health care provider': 386247, 'care provider grocery': 164175, 'provider grocery store': 686729, 'grocery store staff': 365794, 'store staff and': 810300, 'staff and sure': 792164, 'and sure many': 72868, 'sure many others': 827616, 'many others smiling': 514454, 'others smiling and': 621644, 'smiling and saying': 775766, 'and saying thank': 71018, 'saying thank you': 739693, 'you for doing': 1018631, 'for doing your': 320808, 'doing your best': 252879, 'your best in': 1022949, 'best in difficult': 127732, 'in difficult time': 422263, 'difficult time can': 242281, 'time can mean': 896447, 'can mean everything': 158981, 'mean everything for': 524419, 'everything for them': 287794, 'for them 19': 326889, 'refried': 706773, 'no refried': 565314, 'refried bean': 706774, 'bean in': 118332, 'it personal': 460318, 'personal now': 652925, 'now sleep': 575839, 'sleep with': 773810, 'with one': 999877, 'one eye': 606269, 'open covid': 612168, '19 coming': 5894, 'no refried bean': 565315, 'refried bean in': 706776, 'bean in the': 118333, 'store it personal': 808589, 'it personal now': 460319, 'personal now sleep': 652926, 'now sleep with': 575840, 'sleep with one': 773811, 'with one eye': 999882, 'one eye open': 606270, 'eye open covid': 294083, 'open covid 19': 612169, 'covid 19 coming': 212828, '19 coming for': 5895, 'coming for you': 188052, 'plight': 661047, 'stripping': 813902, 'hashtag': 378689, 'heard the': 388148, 'the plight': 863846, 'plight of': 661050, 'nurse on': 577435, 'on asking': 599485, 'asking people': 96037, 'and selling': 71230, 'selling stripping': 749456, 'stripping supermarket': 813918, 'shelf due': 756997, 'to selfishness': 914130, 'selfishness and': 748328, 'and injustice': 65244, 'injustice greed': 438731, 'greed it': 363397, 'it seems': 460938, 'seems like': 746805, 'the bekind': 849453, 'bekind hashtag': 126097, 'hashtag ha': 378696, 'ha completely': 370220, 'completely disappeared': 192259, 'disappeared wise': 244074, 'wise people': 996690, 'about others': 25875, 'others coronacrisis': 621341, 'just heard the': 468961, 'heard the plight': 388152, 'the plight of': 863847, 'plight of nurse': 661052, 'of nurse on': 587114, 'nurse on asking': 577436, 'on asking people': 599486, 'asking people to': 96039, 'buying and selling': 149929, 'and selling stripping': 71241, 'selling stripping supermarket': 749457, 'stripping supermarket shelf': 813920, 'supermarket shelf due': 822457, 'shelf due to': 756998, 'due to selfishness': 261941, 'to selfishness and': 914131, 'selfishness and injustice': 748333, 'and injustice greed': 65245, 'injustice greed it': 438732, 'greed it seems': 363398, 'it seems like': 460947, 'seems like the': 746817, 'like the bekind': 491352, 'the bekind hashtag': 849454, 'bekind hashtag ha': 126098, 'hashtag ha completely': 378697, 'ha completely disappeared': 370223, 'completely disappeared wise': 192261, 'disappeared wise people': 244075, 'wise people think': 996691, 'people think about': 649828, 'think about others': 885093, 'about others coronacrisis': 25879, 'safest': 730421, 'transact': 929425, 'the safest': 866139, 'safest way': 730434, 'to transact': 917703, 'transact business': 929426, 'online shopping the': 609303, 'shopping the safest': 764095, 'the safest way': 866144, 'safest way to': 730435, 'way to transact': 970116, 'to transact business': 917704, 'transact business during': 929427, 'lowes': 506138, 'depot': 237529, 'what interesting': 981670, 'interesting is': 441570, 'that employee': 843698, 'employee at': 273639, 'store walmart': 811141, 'walmart target': 965424, 'target lowes': 834479, 'lowes home': 506143, 'home depot': 401061, 'depot must': 237541, 'be pretty': 116530, 'pretty damn': 671387, 'damn contaminated': 225332, 'contaminated they': 200674, 'they dropped': 882022, 'dropped like': 260585, 'like fly': 490249, 'fly at': 311599, 'point thing': 662657, 'thing must': 884599, 'so bad': 776573, 'bad that': 108026, 'that store': 846511, 'to operate': 911017, 'operate due': 612987, 'to lack': 909027, 'staff that': 792929, 'what interesting is': 981671, 'interesting is that': 441571, 'is that employee': 452644, 'that employee at': 843699, 'employee at grocery': 273645, 'grocery store walmart': 365927, 'store walmart target': 811146, 'walmart target lowes': 965428, 'target lowes home': 834480, 'lowes home depot': 506144, 'home depot must': 401064, 'depot must be': 237542, 'must be pretty': 546532, 'be pretty damn': 116531, 'pretty damn contaminated': 671388, 'damn contaminated they': 225333, 'contaminated they dropped': 200675, 'they dropped like': 882023, 'dropped like fly': 260586, 'like fly at': 490250, 'fly at this': 311600, 'this point thing': 889647, 'point thing must': 662658, 'thing must be': 884600, 'must be so': 546547, 'be so bad': 117249, 'so bad that': 776583, 'bad that store': 108028, 'that store will': 846517, 'store will not': 811337, 'able to operate': 24513, 'to operate due': 911019, 'operate due to': 612988, 'due to lack': 261840, 'to lack of': 909028, 'lack of staff': 478658, 'of staff that': 590027, 'staff that the': 792934, 'that the situation': 846833, 'entering': 278383, 'entering the': 278424, 'store before': 806693, 'before city': 122690, 'city lockdown': 179244, 'entering the grocery': 278425, 'grocery store before': 365244, 'store before city': 806695, 'before city lockdown': 122691, '03': 837, 'renting': 711313, 'kally': 470716, 'khoelcher': 473733, 'gmail': 353186, 'dot': 255934, 'goodyear': 358122, 'coldwellbanker': 185826, '269': 16231, '240': 15708, '8824': 23079, 'avondale': 105517, 'buckeye': 141690, 'friend it': 333673, 'it april': 456577, 'april 11': 83395, '11 2020': 2449, '2020 at': 14154, 'at 03': 97373, '03 00pm': 838, '00pm time': 698, 'stop renting': 804958, 'renting buy': 711314, 'buy home': 148792, 'from realtor': 337046, 'realtor kally': 702786, 'kally khoelcher': 470717, 'khoelcher at': 473734, 'at gmail': 98771, 'gmail dot': 353187, 'dot com': 255939, 'com of': 186947, 'of goodyear': 584250, 'goodyear arizona': 358123, 'arizona coldwellbanker': 92831, 'coldwellbanker 269': 185827, '269 240': 16232, '240 8824': 15709, '8824 n95': 23080, 'glove hand': 352705, 'sanitizer provided': 735619, 'provided to': 686651, 'prevent avondale': 671582, 'avondale buckeye': 105518, 'friend it april': 333674, 'it april 11': 456579, 'april 11 2020': 83396, '11 2020 at': 2450, '2020 at 03': 14159, 'at 03 00pm': 97374, '03 00pm time': 839, '00pm time to': 699, 'time to stop': 898078, 'to stop renting': 915562, 'stop renting buy': 804959, 'renting buy home': 711315, 'buy home from': 148794, 'home from realtor': 401270, 'from realtor kally': 337047, 'realtor kally khoelcher': 702787, 'kally khoelcher at': 470718, 'khoelcher at gmail': 473735, 'at gmail dot': 98772, 'gmail dot com': 353188, 'dot com of': 255940, 'com of goodyear': 186948, 'of goodyear arizona': 584251, 'goodyear arizona coldwellbanker': 358124, 'arizona coldwellbanker 269': 92832, 'coldwellbanker 269 240': 185828, '269 240 8824': 16233, '240 8824 n95': 15710, '8824 n95 mask': 23081, 'n95 mask glove': 551195, 'mask glove hand': 518734, 'glove hand sanitizer': 352706, 'hand sanitizer provided': 375553, 'sanitizer provided to': 735620, 'provided to prevent': 686654, 'to prevent avondale': 912046, 'prevent avondale buckeye': 671583, 'ukitaka': 938979, 'kujua': 477898, 'ni': 562293, 'bazenga': 113030, 'zao': 1027229, 'bado': 108184, 'ziko': 1027561, 'juu': 470538, 'ukitaka kujua': 938980, 'kujua amazon': 477899, 'amazon ni': 51043, 'ni bazenga': 562294, 'bazenga they': 113031, 'pandemic stock': 636555, 'price zao': 677708, 'zao bado': 1027230, 'bado ziko': 108185, 'ziko juu': 1027562, 'ukitaka kujua amazon': 938981, 'kujua amazon ni': 477900, 'amazon ni bazenga': 51044, 'ni bazenga they': 562295, 'bazenga they haven': 113032, 'they haven been': 882407, 'haven been affected': 383746, '19 pandemic stock': 9480, 'pandemic stock price': 636557, 'stock price zao': 802764, 'price zao bado': 677709, 'zao bado ziko': 1027231, 'bado ziko juu': 108186, 'toxic': 927635, 'herb': 392565, 'that canned': 843132, 'canned food': 161506, 'food toxic': 317345, 'toxic chemical': 927638, 'chemical and': 175334, 'store bought': 806753, 'bought hand': 136590, 'stock while': 803189, 'while fresh': 986858, 'fruit vegetable': 339175, 'and herb': 64522, 'herb are': 392568, 'fully stocked': 341082, 'stocked show': 803391, 'show that': 767172, 'that human': 844398, 'human have': 410508, 'idea of': 413122, 'system work': 831394, 'work quarantinelife': 1005638, 'fact that canned': 295790, 'that canned food': 843133, 'canned food toxic': 161526, 'food toxic chemical': 317346, 'toxic chemical and': 927639, 'chemical and store': 175337, 'and store bought': 72502, 'store bought hand': 806756, 'bought hand sanitizers': 136591, 'sanitizers are out': 736217, 'are out of': 88887, 'of stock while': 590212, 'stock while fresh': 803190, 'while fresh fruit': 986859, 'fresh fruit vegetable': 333001, 'fruit vegetable and': 339176, 'vegetable and herb': 953926, 'and herb are': 64523, 'herb are fully': 392569, 'are fully stocked': 86750, 'fully stocked show': 341101, 'stocked show that': 803393, 'show that human': 767186, 'that human have': 844399, 'human have no': 410510, 'no idea of': 564468, 'idea of how': 413128, 'of how the': 584842, 'how the immune': 408837, 'immune system work': 417360, 'system work quarantinelife': 831397, 'can believe': 157735, 'believe had': 126269, 'had someone': 373531, 'someone in': 784507, 'my space': 550175, 'space at': 787056, 'and told': 74256, 'told them': 923713, 'to back': 900975, 'back off': 107180, 'they basically': 881523, 'basically said': 112160, 'said they': 731469, 'don believe': 253386, 'believe covid': 126254, 'real and': 701032, 'it money': 459651, 'money making': 536879, 'making hoax': 511116, 'can believe had': 157737, 'believe had someone': 126270, 'had someone in': 373533, 'someone in my': 784517, 'in my space': 425629, 'my space at': 550176, 'space at the': 787060, 'today and told': 919232, 'and told them': 74259, 'told them to': 923718, 'them to back': 876454, 'to back off': 900979, 'back off and': 107181, 'off and they': 593649, 'and they basically': 73891, 'they basically said': 881524, 'basically said they': 112161, 'said they don': 731475, 'they don believe': 881985, 'don believe covid': 253387, 'believe covid 19': 126255, 'is real and': 451261, 'real and it': 701035, 'and it money': 65555, 'it money making': 459653, 'money making hoax': 536881, 'peapod': 646153, 'instacart': 439907, 'amazonfresh': 51227, 'shipt': 758957, 'unavailable': 939442, 'offered': 594903, 'immunocompromised': 417452, 'just discovered': 468602, 'discovered after': 244677, 'after filling': 35663, 'filling my': 305605, 'cart that': 165389, 'that peapod': 845676, 'peapod instacart': 646156, 'instacart amazonfresh': 439908, 'amazonfresh and': 51228, 'and shipt': 71479, 'shipt are': 758960, 'all unavailable': 45312, 'unavailable in': 939447, 'area with': 92281, 'no further': 564328, 'further waiting': 342199, 'waiting list': 964357, 'list option': 494503, 'option offered': 614078, 'offered what': 594988, 'elderly immunocompromised': 270710, 'immunocompromised do': 417458, 'do government': 249353, 'government hello': 360190, 'just discovered after': 468603, 'discovered after filling': 244678, 'after filling my': 35664, 'filling my online': 305606, 'online shopping cart': 609065, 'shopping cart that': 762317, 'cart that peapod': 165390, 'that peapod instacart': 845677, 'peapod instacart amazonfresh': 646157, 'instacart amazonfresh and': 439909, 'amazonfresh and shipt': 51229, 'and shipt are': 71480, 'shipt are all': 758961, 'are all unavailable': 84368, 'all unavailable in': 45313, 'unavailable in my': 939448, 'my area with': 547307, 'area with no': 92284, 'with no further': 999755, 'no further waiting': 564333, 'further waiting list': 342200, 'waiting list option': 964359, 'list option offered': 494504, 'option offered what': 614080, 'offered what will': 594989, 'what will the': 982610, 'will the elderly': 995137, 'the elderly immunocompromised': 854126, 'elderly immunocompromised do': 270711, 'immunocompromised do government': 417459, 'do government hello': 249355, 'tackle the': 831605, 'store during': 807397, 'how to tackle': 409096, 'to tackle the': 916139, 'tackle the grocery': 831607, 'grocery store during': 365351, 'hella': 389103, 'broke': 140820, 'isolation and': 455190, 'shopping may': 763254, 'may make': 521334, 'me hella': 522884, 'hella fat': 389110, 'fat and': 300194, 'and hella': 64434, 'hella broke': 389104, 'broke but': 140825, 'but at': 145240, 'house is': 406370, 'gonna be': 356463, 'be hella': 115200, 'hella clean': 389106, 'clean by': 180487, 'time thing': 897909, 'go back': 353338, 'social isolation and': 779820, 'isolation and online': 455198, 'and online shopping': 68122, 'online shopping may': 609183, 'shopping may make': 763258, 'may make me': 521337, 'make me hella': 510131, 'me hella fat': 522885, 'hella fat and': 389111, 'fat and hella': 300195, 'and hella broke': 64435, 'hella broke but': 389105, 'broke but at': 140826, 'but at least': 145243, 'least my house': 484569, 'my house is': 548733, 'house is gonna': 406373, 'is gonna be': 448126, 'gonna be hella': 356470, 'be hella clean': 115201, 'hella clean by': 389107, 'clean by the': 180488, 'by the time': 154459, 'the time thing': 869623, 'time thing go': 897910, 'thing go back': 884363, 'go back to': 353350, 'sierra': 768996, 'otto': 621920, 'winter': 996114, 'jewelry': 465386, 'abate': 24227, 'sierra otto': 768999, 'otto founder': 621921, 'founder of': 330546, 'of sierra': 589717, 'sierra winter': 769001, 'winter jewelry': 996133, 'jewelry will': 465401, 'will open': 994338, 'open her': 612292, 'first retail': 308978, 'retail shop': 718546, 'shop after': 759802, 'after fear': 35651, 'fear abate': 301001, 'abate her': 24228, 'her jewelry': 392147, 'jewelry line': 465395, 'line ha': 493146, 'seen significant': 747224, 'significant revenue': 769507, 'revenue growth': 720426, 'ha wanted': 372448, 'wanted physical': 966225, 'physical location': 655429, 'location for': 498905, 'for year': 327990, 'sierra otto founder': 769000, 'otto founder of': 621922, 'founder of sierra': 330557, 'of sierra winter': 589718, 'sierra winter jewelry': 769002, 'winter jewelry will': 996134, 'jewelry will open': 465402, 'will open her': 994343, 'open her first': 612294, 'her first retail': 392048, 'first retail shop': 308981, 'retail shop after': 718547, 'shop after fear': 759804, 'after fear abate': 35652, 'fear abate her': 301002, 'abate her jewelry': 24229, 'her jewelry line': 392148, 'jewelry line ha': 465396, 'line ha seen': 493150, 'ha seen significant': 371844, 'seen significant revenue': 747228, 'significant revenue growth': 769508, 'revenue growth and': 720428, 'growth and she': 367344, 'and she ha': 71420, 'she ha wanted': 756086, 'ha wanted physical': 372449, 'wanted physical location': 966226, 'physical location for': 655431, 'location for year': 498907, 'and household': 64779, 'household item': 406861, 'item retailer': 463621, 'retailer can': 719056, 'can hike': 158676, 'of amid': 580084, 'list of food': 494435, 'food and household': 313256, 'and household item': 64787, 'household item retailer': 406868, 'item retailer can': 463622, 'retailer can hike': 719059, 'can hike price': 158677, 'hike price of': 396266, 'price of amid': 675404, 'of amid covid': 580085, 'thurs': 895319, '8pm': 23210, 'applauding': 82274, 'clapforthenhs': 180019, 'clapforcarers': 179981, 'clapforkeyworkers': 179993, 'clapforteachers': 180017, 'every thurs': 286295, 'thurs at': 895322, 'at 8pm': 97792, '8pm uk': 23242, 'uk time': 938820, 'time am': 896236, 'am applauding': 49898, 'applauding those': 82279, 'who care': 988435, 'care for': 163938, 'world including': 1009666, 'including nh': 432074, 'staff social': 792872, 'social care': 779451, 'care staff': 164206, 'staff emergency': 792400, 'service supermarket': 752879, 'staff teacher': 792917, 'teacher all': 835421, 'all key': 43312, 'worker clapforthenhs': 1006643, 'clapforthenhs clapforcarers': 180020, 'clapforcarers clapforkeyworkers': 179985, 'clapforkeyworkers clapforteachers': 179996, 'clapforteachers stayhomesavelives': 180018, 'every thurs at': 286296, 'thurs at 8pm': 895323, 'at 8pm uk': 97800, '8pm uk time': 23243, 'uk time am': 938821, 'time am applauding': 896239, 'am applauding those': 49899, 'applauding those who': 82280, 'those who care': 892620, 'who care for': 988437, 'care for our': 163951, 'for our world': 324314, 'our world including': 625409, 'world including nh': 1009669, 'including nh staff': 432075, 'nh staff social': 562102, 'staff social care': 792873, 'social care staff': 779455, 'care staff emergency': 164207, 'staff emergency service': 792401, 'emergency service supermarket': 272969, 'service supermarket staff': 752881, 'supermarket staff teacher': 822895, 'staff teacher all': 792918, 'teacher all key': 835422, 'all key worker': 43313, 'key worker clapforthenhs': 473476, 'worker clapforthenhs clapforcarers': 1006644, 'clapforthenhs clapforcarers clapforkeyworkers': 180021, 'clapforcarers clapforkeyworkers clapforteachers': 179987, 'clapforkeyworkers clapforteachers stayhomesavelives': 179997, 'consumer contract': 196968, 'contract find': 201656, '19 and consumer': 5003, 'and consumer contract': 60365, 'consumer contract find': 196970, 'contract find out': 201657, 'major consumer': 509284, 'protection announced': 685329, 'announced in': 76960, 'major consumer protection': 509289, 'consumer protection announced': 198506, 'protection announced in': 685330, 'announced in response': 76962, 'tolerate': 923805, 'covidabuse': 214414, 'name': 551601, 'had report': 373454, 'report that': 712311, 'that few': 843862, 'few local': 303903, 'shop have': 760260, 'been hiking': 121293, 'outbreak we': 628793, 'we won': 973933, 'won tolerate': 1003927, 'tolerate this': 923810, 'will take': 995058, 'action if': 30042, 'it happening': 458471, 'happening email': 377351, 'email covidabuse': 272148, 'covidabuse gov': 214415, 'gov uk': 359724, 'with photo': 1000200, 'photo of': 655198, 'product price': 681538, 'price marking': 675175, 'marking and': 517897, 'the business': 850158, 'business name': 144079, 'name amp': 551602, 'amp address': 53355, 'we ve had': 973672, 've had report': 953234, 'had report that': 373455, 'report that few': 712319, 'that few local': 843863, 'few local shop': 303904, 'local shop have': 498401, 'shop have been': 760262, 'have been hiking': 379572, 'been hiking up': 121295, 'up price during': 945812, 'the outbreak we': 862721, 'outbreak we won': 628804, 'we won tolerate': 973938, 'won tolerate this': 1003929, 'tolerate this and': 923811, 'this and will': 886360, 'and will take': 75700, 'will take action': 995060, 'take action if': 831896, 'action if you': 30044, 'you see it': 1021045, 'see it happening': 745333, 'it happening email': 458473, 'happening email covidabuse': 377352, 'email covidabuse gov': 272149, 'covidabuse gov uk': 214416, 'gov uk with': 359727, 'uk with photo': 938911, 'with photo of': 1000201, 'photo of the': 655215, 'of the product': 591370, 'the product price': 864593, 'product price marking': 681545, 'price marking and': 675176, 'marking and the': 517898, 'and the business': 73267, 'the business name': 850175, 'business name amp': 144080, 'name amp address': 551603, 'amongst': 53120, 'lengthy': 486331, 'weird': 977734, 'here am': 392673, 'am in': 50133, 'in mask': 425163, 'glove in': 352729, 'store amongst': 806173, 'amongst load': 53130, 'of shopper': 589631, 'shopper some': 761694, 'in lengthy': 424677, 'lengthy queue': 486334, 'and guess': 64030, 'guess what': 368080, 'what spotted': 982235, 'spotted only': 790207, 'one other': 606798, 'other person': 620701, 'person wearing': 652700, 'wearing same': 974772, 'same protective': 733256, 'gear received': 344976, 'received weird': 703707, 'weird look': 977770, 'look from': 502380, 'from fellow': 335457, 'fellow shopper': 303332, 'shopper perhaps': 761645, 'perhaps they': 651648, 'they thought': 883566, 'thought wa': 893288, '19 positive': 9750, 'here am in': 392674, 'am in mask': 50138, 'in mask and': 425164, 'and glove in': 63724, 'glove in grocery': 352731, 'grocery store amongst': 365194, 'store amongst load': 806174, 'amongst load of': 53131, 'load of shopper': 497279, 'of shopper some': 589650, 'shopper some in': 761695, 'some in lengthy': 783092, 'in lengthy queue': 424678, 'lengthy queue and': 486335, 'queue and guess': 693864, 'and guess what': 64032, 'guess what spotted': 368086, 'what spotted only': 982236, 'spotted only one': 790208, 'only one other': 610883, 'one other person': 606799, 'other person wearing': 620705, 'person wearing same': 652701, 'wearing same protective': 974773, 'same protective gear': 733257, 'protective gear received': 685759, 'gear received weird': 344977, 'received weird look': 703708, 'weird look from': 977771, 'look from fellow': 502381, 'from fellow shopper': 335458, 'fellow shopper perhaps': 303333, 'shopper perhaps they': 761646, 'perhaps they thought': 651651, 'they thought wa': 883568, 'thought wa covid': 893290, 'covid 19 positive': 213596, '372': 18099, '35': 17858, '450': 19151, 'ha just': 371040, 'just over': 469421, 'over 372': 629838, '372 case': 18100, 'uk and': 938164, 'and 35': 57454, '35 death': 17885, 'death cancer': 229997, 'cancer ha': 161252, 'ha around': 369611, 'around 100': 93099, '100 new': 1973, 'new case': 558456, 'case every': 165729, 'and 450': 57483, '450 death': 19152, 'death every': 230030, 'day that': 228466, 'that 45': 842459, '45 death': 19089, 'rate so': 697371, 'so why': 778748, 'not causing': 568721, 'causing panic': 168079, '19 ha just': 7356, 'ha just over': 371060, 'just over 372': 469423, 'over 372 case': 629839, '372 case in': 18101, 'case in the': 165812, 'the uk and': 870190, 'uk and 35': 938165, 'and 35 death': 57455, '35 death cancer': 17886, 'death cancer ha': 229998, 'cancer ha around': 161253, 'ha around 100': 369612, 'around 100 new': 93101, '100 new case': 1974, 'new case every': 558460, 'case every day': 165731, 'every day and': 285792, 'day and 450': 227252, 'and 450 death': 57484, '450 death every': 19153, 'death every day': 230031, 'every day that': 285848, 'day that 45': 228467, 'that 45 death': 842460, '45 death rate': 19090, 'death rate so': 230176, 'rate so why': 697372, 'so why is': 778758, 'is that not': 452672, 'that not causing': 845385, 'not causing panic': 568722, 'causing panic buying': 168081, 'finalise': 305898, 'password': 643467, 'actual': 30626, 'keepsafe': 472667, 'fear is': 301173, 'is waiting': 453730, 'waiting 90': 964286, '90 minute': 23310, 'minute for': 533762, 'the online': 862264, 'shopping queue': 763711, 'queue to': 694091, 'to finalise': 905857, 'finalise and': 305899, 'whole time': 990361, 'time trying': 898145, 'to remember': 913182, 'if what': 415353, 'think is': 885310, 'the password': 863339, 'password is': 643473, 'the actual': 848312, 'actual password': 30684, 'password not': 643475, 'not really': 571229, 'really there': 702651, 'are way': 91545, 'way more': 969707, 'more serious': 540353, 'serious thing': 751489, 'fear but': 301072, 'it got': 458312, 'got me': 358691, 'me thinking': 523700, 'thinking keepsafe': 885940, 'fear is waiting': 301177, 'is waiting 90': 453731, 'waiting 90 minute': 964287, '90 minute for': 23311, 'minute for the': 533764, 'for the online': 326598, 'the online shopping': 862281, 'online shopping queue': 609242, 'shopping queue to': 763714, 'queue to finalise': 694094, 'to finalise and': 905858, 'finalise and spending': 305900, 'and spending the': 72096, 'spending the whole': 789005, 'the whole time': 871514, 'whole time trying': 990365, 'time trying to': 898146, 'trying to remember': 934856, 'to remember if': 913186, 'remember if what': 710214, 'if what you': 415354, 'what you think': 982694, 'you think is': 1021663, 'think is the': 885316, 'is the password': 452887, 'the password is': 863340, 'password is the': 643474, 'is the actual': 452721, 'the actual password': 848324, 'actual password not': 30685, 'password not really': 643476, 'not really there': 571244, 'really there are': 702652, 'there are way': 878184, 'are way more': 91549, 'way more serious': 969710, 'more serious thing': 540360, 'serious thing to': 751491, 'thing to fear': 884885, 'to fear but': 905695, 'fear but it': 301073, 'but it got': 146126, 'it got me': 458317, 'got me thinking': 358702, 'me thinking keepsafe': 523704, 'reward': 720769, 'flying': 311664, 'cruising': 219727, 'saving company': 737856, 'company is': 190795, 'simply corruption': 770208, 'congress reward': 194521, 'reward ceo': 720772, 'the damn': 852810, 'damn money': 225396, 'will spend': 994914, 'on flying': 600830, 'flying cruising': 311670, 'cruising or': 219728, 'or vacation': 617631, 'saving company is': 737857, 'company is simply': 190810, 'is simply corruption': 451929, 'simply corruption 101': 770209, '101 congress reward': 2222, 'congress reward ceo': 194522, 'reward ceo with': 720773, 'people the damn': 649789, 'the damn money': 852815, 'damn money and': 225397, 'and they will': 73951, 'they will spend': 883890, 'will spend it': 994915, 'spend it on': 788624, 'it on flying': 460043, 'on flying cruising': 600831, 'flying cruising or': 311671, 'cruising or vacation': 219729, 'or vacation trump': 617632, 'report bleach': 711837, 'bleach is': 132506, 'is when': 453912, 'when going': 983480, 'to war': 918326, 'war with': 966600, '19 prepare': 9781, 'for battle': 319600, 'destroy novel coronavirus': 239023, 'novel coronavirus consumer': 573755, 'coronavirus consumer report': 205686, 'consumer report bleach': 198699, 'report bleach is': 711838, 'bleach is when': 132508, 'is when going': 453915, 'when going to': 983483, 'going to war': 355759, 'to war with': 918329, 'war with covid': 966602, 'covid 19 prepare': 213604, '19 prepare for': 9782, 'prepare for battle': 670068, 'smg': 775661, 'highlight': 395894, 'new smg': 559610, 'smg research': 775664, 'research highlight': 713756, 'highlight how': 395922, 'is impacting': 448690, 'impacting consumer': 418189, 'behavior in': 124074, 'the restaurant': 865643, 'restaurant industry': 716530, 'new smg research': 559611, 'smg research highlight': 775665, 'research highlight how': 713757, 'highlight how covid': 395923, '19 is impacting': 7992, 'is impacting consumer': 448697, 'impacting consumer behavior': 418191, 'consumer behavior in': 196487, 'behavior in the': 124086, 'in the restaurant': 429513, 'the restaurant industry': 865654, 'boob': 134435, 'celeb': 168773, 'comment': 188375, 'catsmovie': 167322, 'butt': 148091, 'newwarriors': 561154, 'sub': 815670, 'dl': 248853, 'google': 358131, 'podcasts': 662332, 'spotify': 790143, 'pandora': 637151, 'new show': 559597, 'show they': 767237, 'they look': 882623, 'like boob': 489925, 'boob topic': 134436, 'topic celeb': 925777, 'celeb comment': 168774, 'comment supermarket': 188454, 'supermarket adventure': 818785, 'adventure catsmovie': 33093, 'catsmovie butt': 167323, 'butt hole': 148100, 'hole release': 400231, 'release hollywood': 708953, 'hollywood home': 400458, 'home streaming': 402163, 'streaming newwarriors': 812827, 'newwarriors suck': 561155, 'suck sub': 816931, 'sub dl': 815682, 'dl free': 248854, 'free on': 332016, 'on apple': 599418, 'apple google': 82323, 'google podcasts': 358184, 'podcasts spotify': 662337, 'spotify pandora': 790152, 'pandora more': 637152, 'new show they': 559601, 'show they look': 767240, 'they look like': 882626, 'look like boob': 502467, 'like boob topic': 489926, 'boob topic celeb': 134437, 'topic celeb comment': 925778, 'celeb comment supermarket': 168775, 'comment supermarket adventure': 188455, 'supermarket adventure catsmovie': 818786, 'adventure catsmovie butt': 33094, 'catsmovie butt hole': 167324, 'butt hole release': 148101, 'hole release hollywood': 400232, 'release hollywood home': 708954, 'hollywood home streaming': 400459, 'home streaming newwarriors': 402164, 'streaming newwarriors suck': 812828, 'newwarriors suck sub': 561156, 'suck sub dl': 816932, 'sub dl free': 815683, 'dl free on': 248855, 'free on apple': 332017, 'on apple google': 599420, 'apple google podcasts': 82324, 'google podcasts spotify': 358185, 'podcasts spotify pandora': 662338, 'spotify pandora more': 790153, 'consist': 195464, 'odd': 579171, 'exciting': 289591, 'studentnurse': 814821, 'seems that': 746852, 'that my': 845259, 'life for': 488660, 'next god': 561383, 'god know': 354755, 'how long': 408189, 'long will': 501850, 'will consist': 992991, 'consist of': 195465, 'of home': 584713, 'home care': 400874, 'home work': 402554, 'the odd': 862034, 'odd trip': 579197, 'most exciting': 542311, 'exciting but': 289594, 'but need': 146451, '19 socialdistancing': 10673, 'socialdistancing studentnurse': 780762, 'studentnurse nh': 814822, 'so it seems': 777478, 'it seems that': 460954, 'seems that my': 746859, 'that my life': 845270, 'my life for': 549019, 'life for the': 488670, 'the next god': 861668, 'next god know': 561384, 'god know how': 354756, 'know how long': 476447, 'how long will': 408217, 'long will consist': 501851, 'will consist of': 992992, 'consist of home': 195466, 'of home care': 584715, 'home care home': 400876, 'care home work': 164006, 'home work and': 402555, 'work and the': 1004816, 'and the odd': 73497, 'the odd trip': 862036, 'odd trip to': 579198, 'the supermarket not': 868717, 'supermarket not the': 821651, 'not the most': 572014, 'the most exciting': 860983, 'most exciting but': 542312, 'exciting but need': 289595, 'but need to': 146460, 'need to be': 555867, 'be done 19': 114548, 'done 19 socialdistancing': 254751, '19 socialdistancing studentnurse': 10680, 'socialdistancing studentnurse nh': 780763, 'unfortunate': 941554, 'really disappointed': 702116, 'disappointed to': 244122, 'see local': 745369, 'shop during': 760116, 'this epidemic': 887398, 'epidemic increasing': 279393, 'increasing their': 433713, 'food especially': 314371, 'especially meat': 280545, 'meat if': 525611, 'if anything': 413859, 'anything they': 80905, 'lowering them': 506133, 'time so': 897689, 'those le': 892161, 'le unfortunate': 483226, 'unfortunate are': 941557, 'are able': 84151, 'purchase disgusted': 689424, 'really disappointed to': 702119, 'disappointed to see': 244123, 'to see local': 914036, 'see local shop': 745371, 'local shop during': 498399, 'shop during this': 760120, 'during this epidemic': 263282, 'this epidemic increasing': 887402, 'epidemic increasing their': 279394, 'increasing their price': 433718, 'their price on': 874410, 'price on food': 675675, 'on food especially': 600860, 'food especially meat': 314373, 'especially meat if': 280546, 'meat if anything': 525612, 'if anything they': 413867, 'anything they should': 80909, 'should be lowering': 765672, 'be lowering them': 115854, 'lowering them in': 506134, 'them in these': 875920, 'these time so': 880849, 'time so those': 897701, 'so those le': 778508, 'those le unfortunate': 892163, 'le unfortunate are': 483227, 'unfortunate are able': 941558, 'are able to': 84155, 'able to purchase': 24526, 'to purchase disgusted': 912525, 'express': 293021, 'blessed': 132615, 'specially': 788139, 'enough word': 277775, 'to express': 905519, 'express how': 293039, 'how blessed': 407461, 'blessed we': 132632, 'are with': 91650, 'employee specially': 274226, 'specially big': 788140, 'big shout': 129991, 'out great': 626234, 'great service': 362984, 'service instacart': 752504, 'instacart is': 439923, 'is such': 452421, 'such an': 816317, 'an advantage': 55144, 'advantage right': 33053, 'now pandemia': 575506, 'pandemia they': 634755, 'they risk': 883222, 'risk their': 723935, 'life to': 489129, 'feed virginia': 302399, 'don have enough': 253596, 'have enough word': 380473, 'enough word to': 277776, 'word to express': 1004601, 'to express how': 905520, 'express how blessed': 293041, 'how blessed we': 407462, 'blessed we are': 132633, 'we are with': 970763, 'are with supermarket': 91653, 'with supermarket employee': 1001052, 'supermarket employee specially': 820136, 'employee specially big': 274227, 'specially big shout': 788141, 'big shout out': 129992, 'shout out great': 766771, 'out great service': 626237, 'great service instacart': 362985, 'service instacart is': 752505, 'instacart is such': 439924, 'is such an': 452422, 'such an advantage': 816318, 'an advantage right': 55147, 'advantage right now': 33054, 'right now pandemia': 722115, 'now pandemia they': 575507, 'pandemia they risk': 634756, 'they risk their': 883224, 'risk their life': 723937, 'their life to': 873847, 'life to feed': 489133, 'to feed virginia': 905736, 'importer': 419190, 'thrive': 894196, 'unite': 942114, 'oligarchy': 598730, 'why would': 991564, 'would world': 1012397, 'world get': 1009578, 'get united': 348556, 'united for': 942161, 'for higher': 322261, 'higher oil': 395635, 'price last': 675018, 'time checked': 896464, 'checked much': 174756, 'better part': 128400, 'world wa': 1010131, 'wa oil': 962809, 'oil importer': 596866, 'importer and': 419191, 'will thrive': 995201, 'thrive under': 894212, 'under low': 940159, 'price especially': 673699, 'especially now': 280556, 'now amid': 574007, 'amid crisis': 52437, 'crisis world': 218437, 'world should': 1009973, 'should unite': 766612, 'unite in': 942124, 'save oil': 737599, 'oil oligarchy': 596984, 'why would world': 991572, 'would world get': 1012398, 'world get united': 1009580, 'get united for': 348557, 'united for higher': 942163, 'for higher oil': 322263, 'higher oil price': 395637, 'oil price last': 597178, 'price last time': 675019, 'last time checked': 480560, 'time checked much': 896465, 'checked much better': 174757, 'much better part': 544759, 'better part of': 128401, 'the world wa': 872000, 'world wa oil': 1010132, 'wa oil importer': 962810, 'oil importer and': 596867, 'importer and it': 419192, 'and it will': 65601, 'it will thrive': 462448, 'will thrive under': 995204, 'thrive under low': 894213, 'under low price': 940160, 'low price especially': 505512, 'price especially now': 673701, 'especially now amid': 280557, 'now amid crisis': 574009, 'amid crisis world': 52446, 'crisis world should': 218440, 'world should unite': 1009976, 'should unite in': 766613, 'unite in order': 942126, 'order to save': 618705, 'to save oil': 913785, 'save oil oligarchy': 737600, 'rounded': 726390, 'academic': 27763, 'inspire': 439818, 'reporter': 712597, 'historical': 397980, 'hey journalist': 394445, 'journalist rounded': 467449, 'rounded up': 726391, 'up four': 944978, 'four academic': 330577, 'academic paper': 27774, 'paper about': 639763, 'buying these': 151201, 'these study': 880758, 'study can': 814873, 'can inform': 158749, 'inform coverage': 437656, 'coverage and': 212333, 'and inspire': 65273, 'inspire reporter': 439830, 'reporter to': 712638, 'to ask': 900746, 'ask question': 95611, 'question about': 693489, 'to explore': 905500, 'explore historical': 292481, 'historical example': 397983, 'of panicbuying': 587741, 'hey journalist rounded': 394446, 'journalist rounded up': 467450, 'rounded up four': 726392, 'up four academic': 944979, 'four academic paper': 330578, 'academic paper about': 27775, 'paper about panic': 639764, 'panic buying these': 637930, 'buying these study': 151202, 'these study can': 880759, 'study can inform': 814874, 'can inform coverage': 158750, 'inform coverage and': 437657, 'coverage and inspire': 212335, 'and inspire reporter': 65275, 'inspire reporter to': 439831, 'reporter to ask': 712639, 'to ask question': 900762, 'ask question about': 95612, 'question about food': 693500, 'chain and to': 170480, 'and to explore': 74169, 'to explore historical': 905502, 'explore historical example': 292482, 'historical example of': 397984, 'example of panicbuying': 288941, 'we protect': 972767, 'airline bottom': 39934, 'bottom line': 136406, 'line let': 493228, 'let also': 486588, 'also make': 48501, 'protect passenger': 684914, 'passenger add': 643317, 'add consumer': 31415, 'protection to': 685651, 'ensure full': 277950, 'full refund': 340842, 'refund for': 706907, 'for canceled': 319903, 'canceled trip': 160966, 'if we protect': 415300, 'we protect the': 972770, 'protect the airline': 684963, 'the airline bottom': 848496, 'airline bottom line': 39935, 'bottom line let': 136413, 'line let also': 493229, 'let also make': 486590, 'also make sure': 48505, 'sure we protect': 827808, 'we protect passenger': 972768, 'protect passenger add': 684915, 'passenger add consumer': 643318, 'add consumer protection': 31417, 'consumer protection to': 198570, 'protection to ensure': 685654, 'to ensure full': 905162, 'ensure full refund': 277951, 'full refund for': 340843, 'refund for canceled': 706908, 'for canceled trip': 319906, 'lng': 497191, 'partial': 642512, 'alternate': 49179, 'india gas': 434421, 'gas consumption': 343796, 'consumption which': 199963, 'which wa': 986437, 'wa expected': 962091, 'strong on': 814077, 'on weak': 605142, 'weak lng': 974029, 'lng price': 497213, 'price ha': 674375, 'under threat': 940359, 'threat amid': 893635, 'amid partial': 52594, 'partial lockdown': 642515, 'lockdown in': 499498, 'in state': 428238, 'price make': 675152, 'make alternate': 509661, 'alternate fuel': 49182, 'fuel cheaper': 340139, 'india gas consumption': 434422, 'gas consumption which': 343798, 'consumption which wa': 199964, 'which wa expected': 986443, 'wa expected to': 962093, 'expected to stay': 291005, 'to stay strong': 915319, 'stay strong on': 797334, 'strong on weak': 814079, 'on weak lng': 605144, 'weak lng price': 974030, 'lng price ha': 497215, 'price ha come': 674378, 'ha come under': 370206, 'come under threat': 187648, 'under threat amid': 940361, 'threat amid partial': 893636, 'amid partial lockdown': 52595, 'partial lockdown in': 642517, 'lockdown in state': 499515, 'in state to': 428247, 'state to prevent': 796022, 'to prevent the': 912092, 'spread of and': 790650, 'of and low': 580167, 'and low oil': 66445, 'oil price make': 597186, 'price make alternate': 675153, 'make alternate fuel': 509662, 'alternate fuel cheaper': 49183, 'ice': 412638, 'maybe these': 521841, 'these big': 879691, 'big box': 129654, 'box store': 137164, 'should take': 766538, 'take one': 832415, 'their rental': 874550, 'rental truck': 711284, 'truck and': 932720, 'and drop': 61759, 'drop off': 260325, 'off seed': 594132, 'seed to': 746178, 'to neighborhood': 910537, 'neighborhood street': 557156, 'street so': 813114, 'so people': 777992, 'their seed': 874639, 'seed or': 746160, 'or instead': 615807, 'food truck': 317366, 'truck do': 932756, 'do seed': 250064, 'seed truck': 746182, 'truck similar': 932848, 'an ice': 56115, 'ice cream': 412647, 'cream truck': 215579, 'truck concept': 932750, 'concept go': 192857, 'the con': 851418, 'maybe these big': 521842, 'these big box': 879692, 'big box store': 129661, 'box store should': 137170, 'store should take': 810171, 'should take one': 766550, 'take one of': 832419, 'one of their': 606765, 'of their rental': 591694, 'their rental truck': 874553, 'rental truck and': 711285, 'truck and drop': 932722, 'and drop off': 61761, 'drop off seed': 260339, 'off seed to': 594133, 'seed to neighborhood': 746180, 'to neighborhood street': 910539, 'neighborhood street so': 557157, 'street so people': 813115, 'so people can': 777995, 'people can have': 647393, 'can have their': 158589, 'have their seed': 383060, 'their seed or': 874640, 'seed or instead': 746161, 'or instead of': 615808, 'instead of food': 440262, 'of food truck': 583807, 'food truck do': 317367, 'truck do seed': 932757, 'do seed truck': 250065, 'seed truck similar': 746183, 'truck similar to': 932849, 'similar to an': 769936, 'to an ice': 900458, 'an ice cream': 56116, 'ice cream truck': 412660, 'cream truck concept': 215580, 'truck concept go': 932751, 'concept go out': 192858, 'go out to': 353993, 'out to the': 627689, 'to the con': 916580, 'gesture': 346429, 'communityspirit': 190255, 'great move': 362826, 'move and': 543605, 'and gesture': 63555, 'gesture from': 346435, 'from to': 338050, 'those vulnerable': 892592, 'in society': 428056, 'society access': 781140, 'access food': 28116, 'and also': 57941, 'also limit': 48478, 'limit customer': 492321, 'customer stock': 222878, 'piling so': 656626, 'so there': 778449, 'everyone communityspirit': 286791, 'great move and': 362827, 'move and gesture': 543606, 'and gesture from': 63556, 'gesture from to': 346436, 'from to help': 338061, 'help those vulnerable': 390753, 'those vulnerable in': 892595, 'vulnerable in society': 961017, 'in society access': 428057, 'society access food': 781141, 'access food and': 28117, 'and essential and': 62243, 'essential and also': 280775, 'and also limit': 57962, 'also limit customer': 48479, 'limit customer stock': 492325, 'customer stock piling': 222879, 'stock piling so': 802674, 'piling so there': 656627, 'so there is': 778450, 'there is enough': 878555, 'enough for everyone': 277433, 'for everyone communityspirit': 321202, 'emerging': 273094, 'larger': 479883, 'ausag': 103030, 'biggest risk': 130319, 'security from': 744603, 'shelf they': 757669, 'the emerging': 854237, 'emerging social': 273141, 'social economic': 779777, 'crisis that': 218148, 'will push': 994532, 'push larger': 690292, 'larger number': 479895, 'poverty so': 667517, 'afford enough': 34691, 'enough nutritious': 277537, 'food ausag': 313458, 'ausag sm': 103032, 'the biggest risk': 849676, 'biggest risk to': 130320, 'risk to food': 723957, 'to food security': 906093, 'food security from': 316350, 'security from covid': 744604, 'is not empty': 450070, 'not empty supermarket': 569162, 'supermarket shelf they': 822544, 'shelf they are': 757670, 'are the emerging': 90820, 'the emerging social': 854241, 'emerging social economic': 273142, 'social economic crisis': 779778, 'economic crisis that': 267038, 'crisis that will': 218159, 'that will push': 847601, 'will push larger': 994533, 'push larger number': 690293, 'larger number of': 479896, 'of people into': 587931, 'people into poverty': 648507, 'into poverty so': 442886, 'poverty so that': 667519, 'they cannot afford': 881698, 'cannot afford enough': 161599, 'afford enough nutritious': 34692, 'enough nutritious food': 277538, 'nutritious food ausag': 577762, 'food ausag sm': 313459, 'pushback': 690344, 'kroger country': 477732, 'country largest': 210850, 'largest supermarket': 480027, 'chain ha': 170746, 'ha expanded': 370548, 'expanded it': 290482, 'it paid': 460235, 'policy after': 663321, 'after public': 36085, 'public pushback': 688249, 'pushback and': 690345, 'offering two': 595311, 'leave to': 485005, 'to anyone': 900616, 'anyone experiencing': 80316, 'experiencing covid': 291637, 'symptom or': 830892, 'or who': 617794, 'is told': 453272, 'to place': 911747, 'place themselves': 657730, 'themselves into': 876836, 'into isolation': 442667, 'isolation via': 455486, 'kroger country largest': 477733, 'country largest supermarket': 210853, 'largest supermarket chain': 480029, 'supermarket chain ha': 819607, 'chain ha expanded': 170749, 'ha expanded it': 370549, 'expanded it paid': 290484, 'it paid sick': 460237, 'sick leave policy': 768501, 'leave policy after': 484902, 'policy after public': 663322, 'after public pushback': 36086, 'public pushback and': 688250, 'pushback and is': 690346, 'and is offering': 65421, 'is offering two': 450432, 'offering two week': 595312, 'two week of': 937345, 'week of paid': 976634, 'of paid sick': 587666, 'sick leave to': 768508, 'leave to anyone': 485006, 'to anyone experiencing': 900624, 'anyone experiencing covid': 80317, 'experiencing covid 19': 291638, '19 symptom or': 11020, 'symptom or who': 830899, 'or who is': 617796, 'who is told': 989123, 'is told to': 453273, 'told to place': 923757, 'to place themselves': 911759, 'place themselves into': 657731, 'themselves into isolation': 876837, 'into isolation via': 442668, 'barwa': 111421, 'airport': 40081, 'al': 40557, 'khor': 473739, 'branch': 137664, 'pdf': 645943, 'ansar': 77988, 'ansargallery': 77991, 'qatar': 691474, 'doha': 252231, 'the amazing': 848608, 'amazing lowest': 50737, 'lowest price': 506206, 'price offer': 675615, 'offer are': 594526, 'are here': 87115, 'here the': 393640, 'in barwa': 420709, 'barwa old': 111422, 'old airport': 598122, 'airport and': 40086, 'and al': 57819, 'al khor': 40582, 'khor old': 473740, 'airport branch': 40092, 'branch is': 137681, 'open 24': 612005, '24 get': 15601, 'get pdf': 347798, 'pdf here': 645946, 'here ansar': 392723, 'ansar ansargallery': 77989, 'ansargallery supermarket': 77992, 'supermarket offer': 821705, 'offer deal': 594572, 'deal qatar': 229468, 'qatar doha': 691483, 'doha corona': 252234, 'the amazing lowest': 848613, 'amazing lowest price': 50738, 'lowest price offer': 506212, 'price offer are': 675616, 'offer are here': 594528, 'are here the': 87121, 'here the supermarket': 393671, 'the supermarket is': 868647, 'supermarket is available': 821072, 'is available in': 445920, 'available in barwa': 104434, 'in barwa old': 420710, 'barwa old airport': 111423, 'old airport and': 598123, 'airport and al': 40087, 'and al khor': 57820, 'al khor old': 40583, 'khor old airport': 473741, 'old airport branch': 598124, 'airport branch is': 40093, 'branch is open': 137682, 'is open 24': 450556, 'open 24 get': 612008, '24 get pdf': 15602, 'get pdf here': 347800, 'pdf here ansar': 645947, 'here ansar ansargallery': 392724, 'ansar ansargallery supermarket': 77990, 'ansargallery supermarket offer': 77993, 'supermarket offer deal': 821707, 'offer deal qatar': 594573, 'deal qatar doha': 229469, 'qatar doha corona': 691484, 'shoplocal': 761219, 'connecting': 194683, 'buying gift': 150402, 'gift card': 349932, 'card to': 163675, 'locally are': 498749, 'are just': 87612, 'just way': 470254, 'help support': 390611, 'support your': 827012, 'neighbor and': 556971, 'and community': 60167, 'crisis smallbusiness': 218055, 'smallbusiness shoplocal': 775231, 'shoplocal connecting': 761222, 'buying gift card': 150403, 'gift card to': 349956, 'card to local': 163680, 'to local business': 909371, 'business and shopping': 143331, 'and shopping online': 71548, 'shopping online locally': 763454, 'online locally are': 608502, 'locally are just': 498750, 'are just way': 87643, 'just way to': 470255, 'way to help': 970037, 'to help support': 907642, 'help support your': 390622, 'support your neighbor': 827021, 'your neighbor and': 1024948, 'neighbor and community': 556974, 'and community during': 60170, '19 crisis smallbusiness': 6325, 'crisis smallbusiness shoplocal': 218057, 'smallbusiness shoplocal connecting': 775232, 'what everyone': 981425, 'doing wrong': 252874, 'wrong about': 1012985, 'paper shortage': 640761, 'shortage by': 764866, 'by in': 152876, 'in toiletpaper': 430175, 'what everyone is': 981429, 'everyone is doing': 287073, 'is doing wrong': 447299, 'doing wrong about': 252875, 'wrong about the': 1012986, 'about the toilet': 26540, 'toilet paper shortage': 921450, 'paper shortage by': 640765, 'shortage by in': 764870, 'by in toiletpaper': 152890, 'worker told': 1008032, 'stop wearing': 805266, '19 supermarket worker': 10963, 'supermarket worker told': 824101, 'worker told to': 1008034, 'told to stop': 923770, 'to stop wearing': 915593, 'stop wearing glove': 805269, 'postponement': 666843, 'travelcancellations': 930592, 'chargebacks': 173357, '19 your': 12280, 'your right': 1025626, 'right consumer': 721845, 'consumer when': 199507, 'to travel': 917719, 'travel cancellation': 930307, 'cancellation accommodation': 160999, 'accommodation postponement': 28464, 'postponement and': 666844, 'important consideration': 418765, 'consideration travelcancellations': 195268, 'travelcancellations insurance': 930593, 'insurance chargebacks': 440684, '19 your right': 12284, 'your right consumer': 1025631, 'right consumer when': 721849, 'consumer when it': 199510, 'come to travel': 187610, 'to travel cancellation': 917727, 'travel cancellation accommodation': 930308, 'cancellation accommodation postponement': 161000, 'accommodation postponement and': 28465, 'postponement and all': 666845, 'and all other': 57880, 'all other important': 43782, 'other important consideration': 620400, 'important consideration travelcancellations': 418766, 'consideration travelcancellations insurance': 195269, 'travelcancellations insurance chargebacks': 930594, '95': 23573, 'rationally': 697763, 'full disclosure': 340564, 'disclosure have': 244396, 'done 95': 254752, '95 of': 23598, 'our family': 622990, 'family shopping': 298221, 'online for': 608217, 'year now': 1014763, 'everyone quite': 287306, 'quite rationally': 694903, 'rationally want': 697766, 'and capacity': 59532, 'capacity is': 162537, 'is limited': 449360, 'limited imo': 492649, 'imo this': 417505, 'is collective': 446642, 'collective action': 186482, 'action problem': 30116, 'problem and': 679452, 'government need': 360376, 'step in': 799558, 'say who': 739485, 'full disclosure have': 340565, 'disclosure have done': 244397, 'have done 95': 380321, 'done 95 of': 254753, '95 of our': 23600, 'of our family': 587467, 'our family shopping': 623002, 'family shopping online': 298222, 'shopping online for': 763432, 'online for year': 608247, 'for year now': 328010, 'year now that': 1014767, 'now that everyone': 576000, 'that everyone quite': 843770, 'everyone quite rationally': 287307, 'quite rationally want': 694904, 'rationally want to': 697767, 'do this and': 250339, 'this and capacity': 886325, 'and capacity is': 59533, 'capacity is limited': 162538, 'is limited imo': 449364, 'limited imo this': 492650, 'imo this is': 417506, 'this is collective': 888209, 'is collective action': 446643, 'collective action problem': 186484, 'action problem and': 30117, 'problem and the': 679458, 'and the government': 73399, 'the government need': 856567, 'government need to': 360377, 'need to step': 556085, 'to step in': 915386, 'step in to': 799568, 'in to say': 430135, 'to say who': 913855, 'say who can': 739487, 'who can do': 988378, 'can do this': 158123, 'bacterial': 107713, 'becteria': 120364, 'cororonavirus': 207166, 'is anti': 445746, 'anti bacterial': 78273, 'bacterial the': 107731, 'is virus': 453713, 'virus becteria': 957996, 'becteria and': 120365, 'and virus': 74974, 'same wash': 733400, 'sanitizers will': 736448, 'nothing for': 573009, 'the cororonavirus': 851952, 'sanitizer is anti': 735181, 'is anti bacterial': 445747, 'anti bacterial the': 78278, 'bacterial the is': 107732, 'the is virus': 858546, 'is virus becteria': 453714, 'virus becteria and': 957997, 'becteria and virus': 120366, 'and virus is': 74976, 'virus is not': 958391, 'not the same': 572027, 'the same wash': 866318, 'same wash your': 733401, 'your hand sanitizers': 1024220, 'hand sanitizers will': 375733, 'sanitizers will do': 736449, 'will do nothing': 993226, 'do nothing for': 249901, 'nothing for the': 573014, 'for the cororonavirus': 326364, 'pgm': 653960, 'cecil': 168732, 'hometown': 402981, 'carly': 164771, 'whorton': 990609, 'foodsupplychain': 318214, 'coming up': 188258, 'on thurs': 604660, 'thurs ag': 895320, 'ag issue': 36800, 'issue pgm': 455886, 'pgm at': 653961, '6am perspective': 21571, 'perspective from': 653196, 'from small': 337318, 'store with': 811360, 'the co': 851101, 'co owner': 184933, 'owner of': 632506, 'store manager': 808870, 'of cecil': 581232, 'cecil hometown': 168733, 'hometown market': 402992, 'market carly': 516150, 'carly whorton': 164772, 'whorton join': 990610, 'join listen': 466764, 'listen online': 494704, 'online at': 607880, 'at foodsupplychain': 98683, 'coming up on': 188262, 'up on thurs': 945632, 'on thurs ag': 604661, 'thurs ag issue': 895321, 'ag issue pgm': 36801, 'issue pgm at': 455887, 'pgm at 6am': 653962, 'at 6am perspective': 97726, '6am perspective from': 21572, 'perspective from small': 653197, 'from small business': 337319, 'business and grocery': 143308, 'grocery store with': 365961, 'store with the': 811407, 'with the co': 1001237, 'the co owner': 851106, 'co owner of': 184936, 'owner of store': 632519, 'of store manager': 590257, 'store manager of': 808885, 'manager of cecil': 512757, 'of cecil hometown': 581233, 'cecil hometown market': 168734, 'hometown market carly': 402993, 'market carly whorton': 516151, 'carly whorton join': 164773, 'whorton join listen': 990611, 'join listen online': 466765, 'listen online at': 494705, 'online at foodsupplychain': 607885, 'paul': 644534, 'manly': 513275, 'nanaimo': 551782, 'ladysmith': 478876, 'blank': 132364, 'cheque': 175504, 'bail': 108579, 'paul manly': 644551, 'manly mp': 513276, 'mp nanaimo': 544258, 'nanaimo ladysmith': 551785, 'ladysmith said': 478877, 'that because': 842951, 'because the': 119609, 'the collapse': 851145, 'collapse of': 186033, 'of world': 593309, 'bill must': 130626, 'must not': 546775, 'not include': 570113, 'include blank': 431530, 'blank cheque': 132371, 'cheque to': 175513, 'to bail': 900999, 'bail out': 108586, 'gas industry': 343876, 'paul manly mp': 644552, 'manly mp nanaimo': 513277, 'mp nanaimo ladysmith': 544259, 'nanaimo ladysmith said': 551786, 'ladysmith said that': 478878, 'said that because': 731396, 'that because the': 842955, 'because the collapse': 119616, 'the collapse of': 851147, 'collapse of world': 186046, 'of world oil': 593313, 'oil price is': 597171, 'price is not': 674879, 'is not related': 450171, 'related to the': 708621, '19 the bill': 11169, 'the bill must': 849697, 'bill must not': 130627, 'must not include': 546781, 'not include blank': 570114, 'include blank cheque': 431531, 'blank cheque to': 132372, 'cheque to bail': 175514, 'to bail out': 901001, 'bail out the': 108592, 'out the oil': 627400, 'the oil and': 862104, 'and gas industry': 63478, 'technician': 836219, 'is continuing': 446812, 'from health': 335745, 'service grocery': 752428, 'worker pharmacist': 1007563, 'pharmacist utility': 654188, 'utility technician': 951322, 'technician and': 836220, 'attendant sure': 102381, 'sure ve': 827795, 've missed': 953369, 'missed bunch': 534224, 'bunch but': 142612, 'appreciate what': 82777, 'kudos to everyone': 477883, 'who is continuing': 989065, 'is continuing to': 446813, 'work during this': 1005073, 'this pandemic from': 889386, 'pandemic from health': 635469, 'from health care': 335746, 'care worker emergency': 164284, 'worker emergency service': 1006843, 'emergency service grocery': 272963, 'service grocery store': 752429, 'store worker pharmacist': 811557, 'worker pharmacist utility': 1007568, 'pharmacist utility technician': 654189, 'utility technician and': 951323, 'technician and gas': 836222, 'and gas station': 63488, 'station attendant sure': 796360, 'attendant sure ve': 102382, 'sure ve missed': 827796, 've missed bunch': 953370, 'missed bunch but': 534225, 'bunch but we': 142613, 'but we appreciate': 147737, 'we appreciate what': 970457, 'appreciate what you': 82778, 'what you do': 982671, 'payday': 645324, 'ahold': 39267, 'spoke': 789707, 'chicago': 175636, 'stopthedebttrap': 805893, 'your stimulus': 1025949, 'payment turn': 645769, 'out payday': 627022, 'payday lender': 645327, 'lender can': 486218, 'can wait': 160132, 'get ahold': 346512, 'ahold that': 39270, 'that check': 843209, 'check well': 174704, 'well don': 978172, 'don let': 253687, 'let payday': 486967, 'lender steal': 486249, 'steal your': 799214, 'your fund': 1024011, 'fund from': 341416, 'from spoke': 337380, 'spoke to': 789723, 'the chicago': 850801, 'chicago sun': 175694, 'sun time': 818084, 'and offered': 67975, 'offered his': 594930, 'his advice': 397182, 'advice stopthedebttrap': 33512, 'forward to your': 330048, 'to your stimulus': 919031, 'your stimulus payment': 1025950, 'stimulus payment turn': 801605, 'payment turn out': 645770, 'turn out payday': 935738, 'out payday lender': 627023, 'payday lender can': 645328, 'lender can wait': 486219, 'can wait to': 160137, 'to get ahold': 906406, 'get ahold that': 346513, 'ahold that check': 39271, 'that check well': 843210, 'check well don': 174705, 'well don let': 978173, 'don let payday': 253693, 'let payday lender': 486968, 'payday lender steal': 645331, 'lender steal your': 486250, 'steal your fund': 799215, 'your fund from': 1024012, 'fund from spoke': 341418, 'from spoke to': 337381, 'spoke to the': 789737, 'to the chicago': 916556, 'the chicago sun': 850803, 'chicago sun time': 175695, 'sun time and': 818085, 'time and offered': 896285, 'and offered his': 67977, 'offered his advice': 594931, 'his advice stopthedebttrap': 397185, 'text': 839863, 'purporting': 690090, 'claiming': 179896, 'false': 297403, 'scammer could': 740555, 'could send': 209650, 'send fake': 749854, 'fake text': 296724, 'text alert': 839868, 'alert purporting': 41495, 'purporting to': 690091, 'be official': 116166, 'official government': 595820, 'government update': 360761, 'update such': 947228, 'such the': 816797, 'one sent': 607005, 'sent this': 750834, 'week number': 976598, 'number 10': 576801, '10 ha': 1451, 'warned if': 967003, 'see others': 745519, 'others claiming': 621332, 'claiming to': 179919, 'the they': 869432, 're false': 698665, 'false it': 297439, 'it said': 460850, 'scammer could send': 740556, 'could send fake': 209651, 'send fake text': 749855, 'fake text alert': 296725, 'text alert purporting': 839870, 'alert purporting to': 41496, 'purporting to be': 690092, 'to be official': 901416, 'be official government': 116167, 'official government update': 595821, 'government update such': 360762, 'update such the': 947229, 'such the one': 816804, 'the one sent': 862221, 'one sent this': 607006, 'sent this week': 750837, 'this week number': 891240, 'week number 10': 976599, 'number 10 ha': 576802, '10 ha warned': 1452, 'ha warned if': 372454, 'warned if you': 967004, 'you see others': 1021055, 'see others claiming': 745520, 'others claiming to': 621333, 'claiming to be': 179920, 'to be from': 901269, 'from the they': 337900, 'the they re': 869438, 'they re false': 883032, 're false it': 698666, 'false it said': 297440, 'tree': 931181, 'walked into': 964954, 'into different': 442516, 'different dollar': 241932, 'dollar tree': 253099, 'tree and': 931182, 'were out': 979951, 'stock were': 803170, 'were toilet': 980273, 'paper antibacterial': 639872, 'antibacterial soup': 78383, 'soup hand': 786378, 'and canned': 59499, 'probably like': 679309, 'that everywhere': 843781, 'everywhere else': 288195, 'the got': 856476, 'got people': 358784, 'people fucking': 648018, 'fucking scared': 339988, 'walked into different': 964957, 'into different dollar': 442517, 'different dollar tree': 241933, 'dollar tree and': 253100, 'tree and the': 931183, 'only thing that': 611317, 'thing that were': 884825, 'that were out': 847443, 'were out of': 979954, 'of stock were': 590209, 'stock were toilet': 803173, 'were toilet paper': 980274, 'toilet paper antibacterial': 921188, 'paper antibacterial soup': 639873, 'antibacterial soup hand': 78384, 'soup hand sanitizer': 786379, 'sanitizer and canned': 734392, 'and canned food': 59501, 'canned food it': 161518, 'food it probably': 315183, 'it probably like': 460489, 'probably like that': 679310, 'like that everywhere': 491316, 'that everywhere else': 843782, 'everywhere else the': 288198, 'else the got': 271909, 'the got people': 856477, 'got people fucking': 358785, 'people fucking scared': 648019, 'china today': 177009, 'china lot': 176804, 'supply because': 824842, 'have controlled': 380106, 'controlled the': 202259, 'china today in': 177010, 'today in the': 919697, 'the supermarket of': 868722, 'supermarket of china': 821697, 'of china lot': 581365, 'china lot of': 176805, 'lot of supply': 504294, 'of supply because': 590472, 'supply because we': 824846, 'because we have': 119806, 'we have controlled': 971783, 'have controlled the': 380107, 'controlled the covid': 202260, '15 on': 3793, 'on essential': 600579, 'essential hygiene': 281140, 'hygiene product': 412146, 'product from': 681213, 'news fightcoronavirus': 560404, 'drop of 15': 260318, 'of 15 on': 579363, '15 on essential': 3794, 'on essential hygiene': 600586, 'essential hygiene product': 281141, 'hygiene product from': 412153, 'product from news': 681217, 'from news fightcoronavirus': 336573, 'njcommute': 563474, 'commuting': 190277, 'may plummet': 521426, 'plummet to': 661308, 'to 25': 899632, '25 gallon': 15871, 'gallon due': 342998, 'to expert': 905464, 'expert predicts': 291920, 'predicts njcommute': 669689, 'njcommute commuting': 563475, 'commuting driving': 190278, 'gas price may': 343994, 'price may plummet': 675198, 'may plummet to': 521427, 'plummet to 25': 661309, 'to 25 gallon': 899637, '25 gallon due': 15873, 'gallon due to': 342999, 'due to expert': 261780, 'to expert predicts': 905468, 'expert predicts njcommute': 291921, 'predicts njcommute commuting': 669690, 'njcommute commuting driving': 563476, 'abt': 27521, 'fearing': 301474, 'liar': 487963, 'so sad': 778137, 'sad to': 729269, 'hear the': 388003, 'news abt': 560188, 'abt patient': 27544, 'patient who': 644301, 'who dont': 988656, 'dont disclose': 255206, 'disclose at': 244375, 'at hospital': 99188, 'hospital that': 404670, 'have contact': 380086, 'with other': 999946, 'other positive': 620739, 'patient scared': 644248, 'scared even': 740955, 'even to': 284731, 'drop by': 260145, 'by at': 151901, 'supermarket fearing': 820285, 'fearing of': 301488, 'this kind': 888568, 'selfish liar': 748164, 'liar attitude': 487966, 'so sad to': 778143, 'sad to hear': 729271, 'to hear the': 907415, 'hear the news': 388005, 'the news abt': 861601, 'news abt patient': 560189, 'abt patient who': 27545, 'patient who dont': 644304, 'who dont disclose': 988657, 'dont disclose at': 255207, 'disclose at hospital': 244376, 'at hospital that': 99194, 'hospital that they': 404674, 'that they have': 846935, 'they have contact': 882307, 'have contact with': 380088, 'contact with other': 200280, 'with other positive': 999959, 'other positive covid': 620741, '19 patient scared': 9593, 'patient scared even': 644249, 'scared even to': 740956, 'even to drop': 284733, 'to drop by': 904766, 'drop by at': 260146, 'by at supermarket': 151904, 'at supermarket fearing': 100725, 'supermarket fearing of': 820286, 'fearing of this': 301489, 'of this kind': 591997, 'this kind of': 888569, 'kind of selfish': 474937, 'of selfish liar': 589479, 'selfish liar attitude': 748165, 'localsyr': 498798, 'milk price': 531776, 'are dropping': 86005, 'dropping but': 260677, 'the cost': 851979, 'for farmer': 321400, 'produce milk': 680361, 'milk remains': 531798, 'remains the': 710069, 'same learn': 733137, 'impacting the': 418260, 'local dairy': 497878, 'dairy industry': 224999, 'the story': 868169, 'story below': 811919, 'below localsyr': 126688, 'milk price are': 531777, 'price are dropping': 672657, 'are dropping but': 86008, 'dropping but the': 260679, 'but the cost': 147325, 'the cost for': 851983, 'cost for farmer': 207944, 'for farmer to': 321407, 'farmer to produce': 299543, 'to produce milk': 912200, 'produce milk remains': 680362, 'milk remains the': 531799, 'remains the same': 710072, 'the same learn': 866250, 'same learn how': 733138, 'learn how covid': 483981, 'is impacting the': 448715, 'impacting the local': 418267, 'the local dairy': 859541, 'local dairy industry': 497879, 'dairy industry in': 225000, 'in the story': 429576, 'the story below': 868173, 'story below localsyr': 811920, 'graph': 362139, 'ur': 947974, 'emmudate': 273243, 'au': 102772, 'these graph': 880067, 'graph they': 362152, 'are following': 86618, 'following each': 312725, 'other the': 621094, 'on ur': 604991, 'ur emmudate': 947996, 'emmudate left': 273244, 'left is': 485523, 'case right': 165984, 'right one': 722205, 'one is': 606497, 'is au': 445889, 'au property': 102797, 'property au': 684245, 'au get': 102785, 'in control': 421762, 'control of': 202063, 'the chinese': 850841, 'case will': 166111, 'will decrease': 993117, 'decrease and': 231546, 'and australian': 58524, 'australian property': 103532, 'will drop': 993259, 'drop dramatically': 260179, 'look at these': 502300, 'at these graph': 101203, 'these graph they': 880068, 'graph they are': 362153, 'they are following': 881278, 'are following each': 86619, 'following each other': 312726, 'each other the': 264224, 'other the one': 621095, 'the one on': 862209, 'one on ur': 606788, 'on ur emmudate': 604992, 'ur emmudate left': 947997, 'emmudate left is': 273245, 'left is covid': 485524, '19 case right': 5697, 'case right one': 165986, 'right one is': 722206, 'one is au': 606501, 'is au property': 445890, 'au property au': 102798, 'property au get': 684246, 'au get in': 102786, 'get in control': 347292, 'in control of': 421765, 'control of the': 202075, 'of the chinese': 590861, 'the chinese virus': 850871, 'chinese virus the': 177388, 'virus the total': 958889, 'of case will': 581179, 'case will decrease': 166113, 'will decrease and': 993118, 'decrease and australian': 231547, 'and australian property': 58525, 'australian property price': 103534, 'property price will': 684343, 'price will drop': 677562, 'will drop dramatically': 993262, 'ml': 534706, 'proportion': 684419, 'affair food': 34035, 'public distribution': 687949, 'distribution retail': 248206, 'retail price': 718404, 'sanitizer shall': 735721, 'shall not': 754535, 'than 100': 840154, '100 per': 2024, 'per bottle': 650717, 'of 200': 579453, '200 ml': 13503, 'ml the': 534726, 'other quantity': 620800, 'sanitizers shall': 736389, 'be fixed': 114875, 'fixed in': 309796, 'in proportion': 427043, 'proportion of': 684428, 'these price': 880521, 'ministry of consumer': 533541, 'consumer affair food': 196087, 'affair food and': 34037, 'food and public': 313318, 'and public distribution': 69738, 'public distribution retail': 687951, 'distribution retail price': 248207, 'retail price of': 718415, 'hand sanitizer shall': 375583, 'sanitizer shall not': 735722, 'shall not be': 754536, 'not be more': 568420, 'be more than': 115997, 'more than 100': 540543, 'than 100 per': 840162, '100 per bottle': 2026, 'per bottle of': 650721, 'bottle of 200': 136273, 'of 200 ml': 579455, '200 ml the': 13507, 'ml the price': 534727, 'price of other': 675525, 'of other quantity': 587371, 'other quantity of': 620801, 'quantity of hand': 691936, 'hand sanitizers shall': 375718, 'sanitizers shall be': 736390, 'shall be fixed': 754518, 'be fixed in': 114877, 'fixed in proportion': 309798, 'in proportion of': 427044, 'proportion of these': 684431, 'of these price': 591855, 'hair': 373950, 'incentive': 431360, 'redkenobsessed': 705750, 'consider supermarket': 195115, 'or drug': 615080, 'drug store': 261084, 'store hair': 808050, 'hair color': 373968, 'color here': 186738, 'here little': 393302, 'little incentive': 495406, 'incentive to': 431368, 'change your': 172412, 'your mind': 1024829, 'mind cnn': 532648, 'it flying': 458046, 'flying off': 311677, 'shelf fakenews': 757068, 'fakenews help': 296758, 'me help': 522886, 'you redkenobsessed': 1020867, 'redkenobsessed the': 705751, 'you were to': 1022259, 'were to consider': 980265, 'to consider supermarket': 903236, 'consider supermarket or': 195116, 'supermarket or drug': 821802, 'or drug store': 615082, 'drug store hair': 261089, 'store hair color': 808051, 'hair color here': 373969, 'color here little': 186739, 'here little incentive': 393305, 'little incentive to': 495407, 'incentive to change': 431369, 'to change your': 902622, 'change your mind': 172419, 'your mind cnn': 1024832, 'mind cnn say': 532649, 'cnn say it': 184775, 'say it flying': 738841, 'it flying off': 458047, 'flying off the': 311681, 'off the shelf': 594268, 'the shelf fakenews': 866835, 'shelf fakenews help': 757069, 'fakenews help me': 296759, 'help me help': 390067, 'me help you': 522888, 'help you redkenobsessed': 390993, 'you redkenobsessed the': 1020868, 'versus': 954938, 'economist': 267514, 'with cut': 997906, 'cut in': 223371, 'in wage': 430640, 'wage versus': 963982, 'versus paper': 954951, 'paper money': 640472, 'money everywhere': 536738, 'everywhere no': 288236, 'no economist': 564080, 'economist know': 267566, 'will happen': 993593, 'happen it': 377108, 'be depression': 114415, 'depression with': 237681, 'with falling': 998366, 'falling price': 297316, 'price most': 675273, 'most likely': 542477, 'likely is': 492034, 'is depression': 447130, 'with inflation': 999000, 'inflation unique': 437254, 'unique situation': 942000, 'with cut in': 997907, 'cut in wage': 223389, 'in wage versus': 430641, 'wage versus paper': 963983, 'versus paper money': 954952, 'paper money everywhere': 640474, 'money everywhere no': 536739, 'everywhere no economist': 288237, 'no economist know': 564081, 'economist know what': 267567, 'know what will': 476987, 'what will happen': 982599, 'will happen it': 993598, 'happen it could': 377109, 'could be depression': 208860, 'be depression with': 114416, 'depression with falling': 237682, 'with falling price': 998369, 'falling price most': 297328, 'price most likely': 675276, 'most likely is': 542484, 'likely is depression': 492035, 'is depression with': 447131, 'depression with inflation': 237683, 'with inflation unique': 999001, 'inflation unique situation': 437255, 'them grocery': 875800, 'worker do': 1006791, 'not deserve': 568998, 'deserve 15': 238022, 'hr also': 409597, 'also them': 48990, 'them during': 875633, 'crisis omg': 217806, 'omg we': 598925, 'need worker': 556239, 'worker staysafestayhome': 1007817, 'them grocery store': 875802, 'store restaurant worker': 809849, 'restaurant worker do': 716816, 'worker do not': 1006793, 'do not deserve': 249714, 'not deserve 15': 568999, 'deserve 15 hr': 238025, '15 hr also': 3733, 'hr also them': 409598, 'also them during': 48991, 'them during crisis': 875634, 'during crisis omg': 262561, 'crisis omg we': 217807, 'omg we need': 598927, 'we need worker': 972567, 'need worker staysafestayhome': 556240, 'foodiefox': 317961, 'lockdown ha': 499440, 'all kept': 43310, 'kept under': 473092, 'roof but': 725827, 'worry rather': 1010766, 'than hoarding': 840748, 'hoarding fruit': 399327, 'vegetable it': 954021, 'it better': 456860, 'better to': 128558, 'way with': 970192, 'with which': 1002086, 'which we': 986461, 'can store': 159831, 'the required': 865555, 'required grocery': 713372, 'grocery fresh': 364536, 'fresh for': 332986, 'for longer': 323093, 'longer time': 502091, 'time foodiefox': 896683, 'foodiefox stophoarding': 317962, 'the lockdown ha': 859599, 'lockdown ha all': 499441, 'ha all kept': 369482, 'all kept under': 43311, 'kept under the': 473093, 'under the roof': 940328, 'the roof but': 865970, 'roof but do': 725828, 'not worry rather': 572570, 'worry rather than': 1010767, 'rather than hoarding': 697529, 'than hoarding fruit': 840749, 'hoarding fruit and': 399328, 'and vegetable it': 74888, 'vegetable it better': 954022, 'it better to': 456865, 'better to take': 128569, 'to take look': 916197, 'at the way': 101146, 'the way with': 871207, 'way with which': 970193, 'with which we': 1002089, 'which we can': 986462, 'we can store': 971024, 'can store the': 159836, 'store the required': 810617, 'the required grocery': 865556, 'required grocery fresh': 713373, 'grocery fresh for': 364537, 'fresh for longer': 332987, 'for longer time': 323098, 'longer time foodiefox': 502092, 'time foodiefox stophoarding': 896684, 'beverage': 128979, '0cscqx1nz5': 1179, 'marketresearch': 517849, 'consumerinsights': 199697, 'how consumer': 407588, 'and industry': 65175, 'industry including': 435906, 'including food': 431961, 'food beverage': 313738, 'beverage beauty': 128992, 'beauty retail': 118778, 'health wellness': 386949, 'wellness are': 978828, 'are responding': 89631, 'pandemic 0cscqx1nz5': 634761, '0cscqx1nz5 marketresearch': 1180, 'marketresearch consumerinsights': 517852, 'learn how consumer': 483980, 'how consumer and': 407589, 'consumer and industry': 196217, 'and industry including': 65181, 'industry including food': 435908, 'including food beverage': 431964, 'food beverage beauty': 313741, 'beverage beauty retail': 128993, 'beauty retail and': 118779, 'retail and health': 717825, 'and health wellness': 64368, 'health wellness are': 386950, 'wellness are responding': 978831, 'are responding to': 89636, 'responding to the': 715588, 'the pandemic 0cscqx1nz5': 862887, 'pandemic 0cscqx1nz5 marketresearch': 634762, '0cscqx1nz5 marketresearch consumerinsights': 1181, 'victory': 956568, 'chile': 176330, 'organic': 619209, 'strawberry': 812762, 'preserve': 670693, 'my victory': 550499, 'victory today': 956575, 'today grocery': 919591, 'had milk': 373302, 'milk bread': 531596, 'bread tp': 138626, 'tp not': 927879, 'not shown': 571572, 'shown fresh': 767584, 'fruit veggie': 339187, 'veggie yes': 954228, 'yes lot': 1015479, 'of chile': 581351, 'chile chicken': 176335, 'chicken peanut': 175830, 'butter really': 148162, 'really expensive': 702176, 'expensive organic': 291273, 'organic strawberry': 619238, 'strawberry preserve': 812767, 'my victory today': 550500, 'victory today grocery': 956576, 'today grocery store': 919594, 'grocery store had': 365451, 'store had milk': 808041, 'had milk bread': 373303, 'milk bread tp': 531604, 'bread tp not': 138628, 'tp not shown': 927880, 'not shown fresh': 571573, 'shown fresh fruit': 767585, 'fresh fruit veggie': 333002, 'fruit veggie yes': 339193, 'veggie yes lot': 954229, 'yes lot of': 1015480, 'lot of chile': 504155, 'of chile chicken': 581352, 'chile chicken peanut': 176336, 'chicken peanut butter': 175831, 'peanut butter really': 646145, 'butter really expensive': 148163, 'really expensive organic': 702177, 'expensive organic strawberry': 291274, 'organic strawberry preserve': 619239, 'nightmare': 563168, 'incarceration': 431329, 'corprorate': 207484, 'stagnation': 793278, 'quantitative': 691895, 'easing': 265258, 'humanitarian': 410679, 'pandemic isn': 635806, 'isn the': 454704, 'problem stressing': 679688, 'stressing our': 813538, 'nation for': 552185, 'your nightmare': 1025017, 'nightmare keep': 563179, 'keep climate': 471399, 'climate change': 182190, 'change war': 172379, 'war mass': 966484, 'mass incarceration': 519795, 'incarceration oil': 431333, 'price crazy': 673337, 'crazy corprorate': 215270, 'corprorate personal': 207485, 'personal debt': 652820, 'debt wage': 230593, 'wage stagnation': 963949, 'stagnation quantitative': 793279, 'quantitative easing': 691896, 'easing and': 265259, 'and humanitarian': 64863, 'humanitarian crisis': 410680, 'world over': 1009878, 'over in': 630310, 'in mind': 425335, '19 pandemic isn': 9370, 'pandemic isn the': 635808, 'isn the only': 454712, 'the only reason': 862336, 'only reason for': 611057, 'reason for the': 702912, 'for the problem': 326633, 'the problem stressing': 864523, 'problem stressing our': 679689, 'stressing our nation': 813539, 'our nation for': 623978, 'nation for your': 552186, 'for your nightmare': 328180, 'your nightmare keep': 1025018, 'nightmare keep climate': 563180, 'keep climate change': 471400, 'climate change war': 182205, 'change war mass': 172380, 'war mass incarceration': 966485, 'mass incarceration oil': 519796, 'incarceration oil price': 431334, 'oil price crazy': 597095, 'price crazy corprorate': 673338, 'crazy corprorate personal': 215271, 'corprorate personal debt': 207486, 'personal debt wage': 652821, 'debt wage stagnation': 230594, 'wage stagnation quantitative': 963950, 'stagnation quantitative easing': 793280, 'quantitative easing and': 691897, 'easing and humanitarian': 265260, 'and humanitarian crisis': 64864, 'humanitarian crisis the': 410686, 'crisis the world': 218194, 'the world over': 871932, 'world over in': 1009879, 'over in mind': 630313, 'bigangryphil': 130116, '153': 3972, 'late': 480834, 'ana': 56973, 'arrest': 93744, 'staytuned': 799076, 'recallgavinnewsom': 703369, 'panicfear': 639181, 'bigangryphil podcast': 130117, 'podcast 153': 662249, '153 will': 3973, 'drop late': 260291, 'late tonight': 480932, 'tonight early': 924404, 'early ma': 264638, 'ma ana': 507250, 'ana happy': 56978, 'happy house': 377636, 'house arrest': 406200, 'arrest to': 93788, 'all staytuned': 44455, 'staytuned recallgavinnewsom': 799077, 'recallgavinnewsom panicfear': 703370, 'panicfear toiletpaper': 639182, 'bigangryphil podcast 153': 130118, 'podcast 153 will': 662250, '153 will drop': 3974, 'will drop late': 993266, 'drop late tonight': 260292, 'late tonight early': 480933, 'tonight early ma': 924405, 'early ma ana': 264639, 'ma ana happy': 507251, 'ana happy house': 56979, 'happy house arrest': 377637, 'house arrest to': 406203, 'arrest to all': 93789, 'to all staytuned': 900286, 'all staytuned recallgavinnewsom': 44456, 'staytuned recallgavinnewsom panicfear': 799078, 'recallgavinnewsom panicfear toiletpaper': 703371, 'blizzard': 132745, 'this have': 887873, 'been that': 122156, 'store cashier': 806881, 'cashier and': 166448, 'and supervisor': 72757, 'supervisor ve': 824397, 'been abused': 120594, 'abused during': 27692, 'during holiday': 262694, 'and blizzard': 59011, 'blizzard warning': 132748, 'warning that': 967202, 'nothing compared': 572985, 'to what': 918505, 'through now': 894593, 'now basic': 574179, 'basic human': 111933, 'human 101': 410397, '101 don': 2224, 'an asshole': 55443, 'this have been': 887876, 'have been that': 379715, 'been that grocery': 122157, 'grocery store cashier': 365272, 'store cashier and': 806884, 'cashier and supervisor': 166466, 'and supervisor ve': 72758, 'supervisor ve been': 824398, 've been abused': 952860, 'been abused during': 120595, 'abused during holiday': 27693, 'during holiday and': 262695, 'holiday and blizzard': 400258, 'and blizzard warning': 59012, 'blizzard warning that': 132749, 'warning that is': 967204, 'that is nothing': 844626, 'is nothing compared': 450233, 'nothing compared to': 572986, 'compared to what': 191444, 'to what they': 918525, 'they re going': 883044, 'going through now': 355504, 'through now basic': 894594, 'now basic human': 574180, 'basic human 101': 111934, 'human 101 don': 410398, '101 don be': 2225, 'don be an': 253353, 'be an asshole': 113597, 'emailing': 272388, 'reply': 711732, 'dong': 255136, 'honorable': 403262, 'charging': 173435, 'extortionate': 293384, 'is waste': 453771, 'waste of': 968159, 'time emailing': 896608, 'emailing all': 272389, 'you ever': 1018453, 'get is': 347384, 'is auto': 445897, 'auto reply': 103913, 'reply saying': 711749, 'saying sorry': 739684, 'sorry we': 786101, 'busy you': 145018, 'be dong': 114575, 'dong the': 255140, 'the honorable': 857485, 'honorable thing': 403273, 'thing and': 884118, 'and giving': 63675, 'people full': 648020, 'refund not': 706932, 'to profiteering': 912243, 'profiteering from': 683037, 'from by': 334783, 'by charging': 152100, 'charging extortionate': 173471, 'extortionate price': 293387, 'to re': 912772, 're book': 698375, 'it is waste': 459125, 'is waste of': 453772, 'waste of time': 968164, 'of time emailing': 592172, 'time emailing all': 896609, 'emailing all you': 272390, 'all you ever': 45538, 'you ever get': 1018457, 'ever get is': 285319, 'get is auto': 347385, 'is auto reply': 445898, 'auto reply saying': 103914, 'reply saying sorry': 711750, 'saying sorry we': 739686, 'sorry we are': 786102, 'we are busy': 970495, 'are busy you': 85104, 'busy you should': 145019, 'should be dong': 765606, 'be dong the': 114576, 'dong the honorable': 255141, 'the honorable thing': 857486, 'honorable thing and': 403274, 'thing and giving': 884122, 'and giving people': 63682, 'giving people full': 351371, 'people full refund': 648021, 'full refund not': 340845, 'refund not to': 706933, 'not to profiteering': 572175, 'to profiteering from': 912244, 'profiteering from by': 683040, 'from by charging': 334784, 'by charging extortionate': 152104, 'charging extortionate price': 173472, 'extortionate price to': 293404, 'price to re': 677028, 'to re book': 912775, 'cousin': 212078, 'aunty': 103013, 'my cousin': 547835, 'cousin and': 212079, 'and aunty': 58519, 'aunty and': 103014, 'other member': 620533, 'my extended': 548131, 'extended family': 293157, 'family live': 297991, 'live there': 496056, 'there my': 878775, 'my aunty': 547357, 'aunty work': 103022, 'at asda': 98051, 'asda and': 94902, 'cousin work': 212100, 'another supermarket': 77883, 'is currently': 446983, 'in isolation': 424188, 'isolation her': 455294, 'friend husband': 333639, 'husband ha': 411703, 'my cousin and': 547836, 'cousin and aunty': 212081, 'and aunty and': 58520, 'aunty and many': 103015, 'many other member': 514434, 'other member of': 620535, 'member of my': 528143, 'of my extended': 586761, 'my extended family': 548132, 'extended family live': 293158, 'family live there': 297993, 'live there my': 496058, 'there my aunty': 878776, 'my aunty work': 547359, 'aunty work at': 103023, 'work at asda': 1004860, 'at asda and': 98052, 'asda and my': 94907, 'and my cousin': 67359, 'my cousin work': 547841, 'cousin work for': 212102, 'work for another': 1005139, 'for another supermarket': 319376, 'another supermarket but': 77885, 'supermarket but is': 819449, 'but is currently': 146072, 'is currently in': 446994, 'currently in isolation': 221566, 'in isolation her': 424198, 'isolation her friend': 455295, 'her friend husband': 392060, 'friend husband ha': 333641, 'transformed': 929583, 'confused': 194321, 'rising': 723144, 'fare': 299012, 'men': 528447, 'sending': 749999, 'anymore': 80117, 'simpler': 770144, 'this ha': 887798, 'ha transformed': 372351, 'transformed heart': 929586, 'heart from': 388291, 'from bad': 334623, 'bad to': 108052, 'to good': 906908, 'good and': 356723, 'others confused': 621336, 'confused lady': 194340, 'lady have': 478774, 'have started': 382715, 'started complaining': 794716, 'about rising': 26107, 'rising fare': 723210, 'fare price': 299034, 'price saying': 676302, 'saying the': 739710, 'down men': 256954, 'men aren': 528459, 'aren sending': 92515, 'sending fare': 750021, 'fare anymore': 299013, 'anymore ha': 80133, 'ha made': 371201, 'made many': 507824, 'many thing': 514797, 'thing simpler': 884744, 'simpler from': 770147, 'from transportation': 338135, 'transportation to': 930043, 'food wash': 317461, 'this ha transformed': 887818, 'ha transformed heart': 372352, 'transformed heart from': 929587, 'heart from bad': 388292, 'from bad to': 334624, 'bad to good': 108055, 'to good and': 906909, 'good and others': 356741, 'and others confused': 68439, 'others confused lady': 621337, 'confused lady have': 194341, 'lady have started': 478775, 'have started complaining': 382720, 'started complaining about': 794717, 'complaining about rising': 191893, 'about rising fare': 26108, 'rising fare price': 723211, 'fare price saying': 299036, 'price saying the': 676304, 'saying the market': 739713, 'the market ha': 860115, 'market ha gone': 516482, 'ha gone down': 370723, 'gone down men': 356262, 'down men aren': 256955, 'men aren sending': 528460, 'aren sending fare': 92516, 'sending fare anymore': 750022, 'fare anymore ha': 299014, 'anymore ha made': 80134, 'ha made many': 371211, 'made many thing': 507825, 'many thing simpler': 514804, 'thing simpler from': 884745, 'simpler from transportation': 770148, 'from transportation to': 338136, 'transportation to food': 930046, 'to food wash': 906105, 'food wash your': 317463, 'defending': 232111, 'defending consumer': 232116, 'product company': 681069, 'company against': 190357, 'defending consumer product': 232117, 'consumer product company': 198451, 'product company against': 681070, 'company against covid': 190358, 'joined': 466909, 'tata': 834835, 'indian': 434764, 'flipkart ha': 310618, 'ha joined': 371033, 'joined hand': 466932, 'with tata': 1001123, 'tata consumer': 834838, 'consumer to': 199304, 'provide it': 686368, 'it customer': 457444, 'customer access': 222020, 'to essential': 905254, 'essential food': 281037, 'and beverage': 58925, 'beverage product': 129026, 'product to': 681739, 'to indian': 908330, 'indian consumer': 434796, 'flipkart ha joined': 310619, 'ha joined hand': 371034, 'joined hand with': 466933, 'hand with tata': 376017, 'with tata consumer': 1001124, 'tata consumer to': 834840, 'consumer to provide': 199321, 'to provide it': 912408, 'provide it customer': 686369, 'it customer access': 457445, 'customer access to': 222021, 'access to essential': 28232, 'to essential food': 905257, 'essential food and': 281039, 'food and beverage': 313186, 'and beverage product': 58931, 'beverage product to': 129030, 'product to indian': 681749, 'to indian consumer': 908331, 'lucrative': 506589, 'temptation': 837731, 'susceptible': 829432, 'non veg': 566518, 'veg food': 953743, 'food is': 315107, 'on cart': 599833, 'cart at': 165261, 'at throw': 101270, 'throw away': 895007, 'away price': 106006, 'price since': 676412, 'the consumption': 851636, 'consumption ha': 199879, 'gone low': 356326, 'low following': 505278, 'following corona': 312707, 'corona outbreak': 204085, 'outbreak please': 628534, 'please warn': 660747, 'warn your': 966979, 'your domestic': 1023560, 'domestic staff': 253228, 'are vulnerable': 91506, 'to these': 917332, 'these lucrative': 880264, 'lucrative temptation': 506596, 'temptation they': 837736, 'are susceptible': 90683, 'susceptible to': 829437, 'fall ill': 296932, 'ill due': 416114, 'to poor': 911877, 'poor hygiene': 664196, 'hygiene also': 412043, 'non veg food': 566519, 'veg food is': 953745, 'food is available': 315112, 'available on cart': 104528, 'on cart at': 599834, 'cart at throw': 165266, 'at throw away': 101271, 'throw away price': 895013, 'away price since': 106008, 'price since the': 676417, 'since the consumption': 770869, 'the consumption ha': 851638, 'consumption ha gone': 199880, 'ha gone low': 370727, 'gone low following': 356328, 'low following corona': 505279, 'following corona outbreak': 312708, 'corona outbreak please': 204088, 'outbreak please warn': 628539, 'please warn your': 660748, 'warn your domestic': 966980, 'your domestic staff': 1023561, 'domestic staff and': 253229, 'staff and others': 792151, 'and others who': 68467, 'others who are': 621782, 'who are vulnerable': 988257, 'are vulnerable to': 91513, 'vulnerable to these': 961237, 'to these lucrative': 917346, 'these lucrative temptation': 880265, 'lucrative temptation they': 506597, 'temptation they are': 837737, 'they are susceptible': 881424, 'are susceptible to': 90684, 'susceptible to fall': 829440, 'to fall ill': 905633, 'fall ill due': 296934, 'ill due to': 416115, 'due to poor': 261908, 'to poor hygiene': 911879, 'poor hygiene also': 664197, 'pumped': 689113, 'wankspangle': 965608, 'tit': 899259, 'nasty': 552053, 'cockwomble': 185254, 'just say': 469698, 're retailer': 699394, 'retailer and': 718954, 've pumped': 953455, 'pumped up': 689118, 'your price': 1025392, 'are an': 84528, 'an utter': 56960, 'utter wankspangle': 951438, 'wankspangle and': 965609, 'business go': 143789, 'go tit': 354265, 'tit up': 899262, 'you nasty': 1019950, 'nasty profiteering': 552062, 'profiteering cockwomble': 683020, 'can just say': 158799, 'just say that': 469702, 'say that if': 739237, 'you re retailer': 1020725, 're retailer and': 699395, 'retailer and you': 718978, 'and you ve': 76054, 'you ve pumped': 1022058, 've pumped up': 953457, 'pumped up your': 689119, 'up your price': 946750, 'your price because': 1025396, 'price because of': 672864, 'because of you': 119429, 'of you are': 593372, 'you are an': 1017058, 'are an utter': 84540, 'an utter wankspangle': 56962, 'utter wankspangle and': 951439, 'wankspangle and hope': 965610, 'and hope your': 64723, 'hope your business': 403818, 'your business go': 1023059, 'business go tit': 143790, 'go tit up': 354266, 'tit up you': 899263, 'up you nasty': 946727, 'you nasty profiteering': 1019951, 'nasty profiteering cockwomble': 552063, 'report corona': 711887, 'virus website': 959021, 'with fact': 998359, 'fact and': 295674, 'only fact': 610420, 'here is the': 393253, 'is the consumer': 452754, 'the consumer report': 851584, 'consumer report corona': 198704, 'report corona virus': 711888, 'corona virus website': 204375, 'virus website with': 959022, 'website with fact': 975490, 'with fact and': 998360, 'fact and only': 295677, 'and only fact': 68135, 'broccoli': 140793, 'there aren': 878188, 'aren people': 92473, 'there licking': 878701, 'licking apple': 488232, 'apple and': 82305, 'and broccoli': 59215, 'broccoli in': 140798, 'just because': 468282, 'not taking': 571920, 'taking part': 833498, 'part in': 642293, 'in reality': 427299, 'you think there': 1021679, 'think there aren': 885668, 'there aren people': 878191, 'aren people out': 92474, 'out there licking': 627496, 'there licking apple': 878702, 'licking apple and': 488233, 'apple and broccoli': 82306, 'and broccoli in': 59217, 'broccoli in the': 140799, 'supermarket just because': 821221, 'just because of': 468287, '19 you re': 12275, 're not taking': 699124, 'not taking part': 571928, 'taking part in': 833499, 'part in reality': 642300, 'coronavi': 205366, 'shopping once': 763392, 'once day': 605614, 'day etc': 227562, 'etc group': 282575, 'be fined': 114856, 'fined funny': 307749, 'funny online': 341775, 'no slot': 565519, 'slot and': 774103, 'and even': 62325, 'even when': 284778, 'on there': 604551, 'is fuck': 447953, 'fuck all': 339513, 'all on': 43736, 'shelf coronavi': 756965, 'we are allowed': 970472, 'are allowed out': 84381, 'allowed out for': 46202, 'out for shopping': 626158, 'for shopping once': 325590, 'shopping once day': 763393, 'once day etc': 605615, 'day etc group': 227563, 'etc group of': 282576, 'of people be': 587878, 'people be fined': 647224, 'be fined funny': 114860, 'fined funny online': 307750, 'funny online shopping': 341776, 'shopping no slot': 763335, 'no slot and': 565521, 'slot and even': 774104, 'and even when': 62353, 'even when we': 284788, 'when we do': 984438, 'we do go': 971332, 'do go on': 249341, 'go on there': 353898, 'on there is': 604554, 'there is fuck': 878561, 'is fuck all': 447954, 'fuck all on': 339518, 'all on the': 43744, 'the shelf coronavi': 866830, 'petchems': 653502, 'tracked': 928237, 'rally': 696248, 'bbl': 113172, 'petrochemical': 653669, 'asian petchems': 95322, 'petchems share': 653503, 'share tracked': 755317, 'tracked the': 928250, 'the rally': 865126, 'rally overnight': 696280, 'overnight while': 631368, 'while crude': 986727, 'price rose': 676261, 'rose more': 726083, 'than bbl': 840382, 'bbl amid': 113173, 'amid expectation': 52459, 'expectation that': 290852, 'soon approve': 785627, 'approve trillion': 83121, 'trillion stimulus': 932002, 'stimulus package': 801574, 'package petrochemical': 633372, 'petrochemical share': 653700, 'share stimulus': 755221, 'stimulus asia': 801511, 'asian petchems share': 95323, 'petchems share tracked': 653504, 'share tracked the': 755318, 'tracked the rally': 928251, 'the rally overnight': 865127, 'rally overnight while': 696281, 'overnight while crude': 631369, 'while crude oil': 986728, 'oil price rose': 597240, 'price rose more': 676271, 'rose more than': 726084, 'more than bbl': 540596, 'than bbl amid': 840383, 'bbl amid expectation': 113174, 'amid expectation that': 52460, 'expectation that the': 290855, 'that the will': 846868, 'the will soon': 871581, 'will soon approve': 994889, 'soon approve trillion': 785629, 'approve trillion stimulus': 83122, 'trillion stimulus package': 932005, 'stimulus package petrochemical': 801586, 'package petrochemical share': 633373, 'petrochemical share stimulus': 653702, 'share stimulus asia': 755222, 'drastic': 258394, '2chainz': 16577, 'atlhawks': 101906, 'quavo': 693298, 'statefarm': 796146, 'thankyou': 842317, 'healthcareheroes': 387411, 'giving thanks': 351407, 'provider artist': 686697, 'artist supermarket': 94620, 'worker other': 1007514, 'business staying': 144410, 'staying open': 798671, 'open that': 612541, 'hard risking': 378007, 'help out': 390242, 'out others': 626962, 'others in': 621470, 'this drastic': 887292, 'drastic time': 258419, 'time 2chainz': 896183, '2chainz atlhawks': 16578, 'atlhawks quavo': 101907, 'quavo statefarm': 693299, 'statefarm thankyou': 796147, 'thankyou healthcareheroes': 842342, 'giving thanks to': 351409, 'all the healthcare': 44779, 'the healthcare provider': 857198, 'healthcare provider artist': 387247, 'provider artist supermarket': 686698, 'artist supermarket worker': 94621, 'supermarket worker other': 824061, 'worker other business': 1007515, 'other business staying': 619917, 'business staying open': 144411, 'staying open that': 798679, 'open that are': 612542, 'that are working': 842844, 'working hard risking': 1008686, 'hard risking their': 378008, 'life to help': 489136, 'to help out': 907580, 'help out others': 390254, 'out others in': 626963, 'others in this': 621481, 'in this drastic': 429935, 'this drastic time': 887295, 'drastic time 2chainz': 258420, 'time 2chainz atlhawks': 896184, '2chainz atlhawks quavo': 16579, 'atlhawks quavo statefarm': 101908, 'quavo statefarm thankyou': 693300, 'statefarm thankyou healthcareheroes': 796148, 'develop': 239619, 'deferment': 232175, 'repayment': 711480, 'extension': 293270, 'russia to': 728585, 'to develop': 904241, 'develop additional': 239622, 'additional business': 31780, 'business support': 144448, 'support program': 826768, 'program amid': 683200, 'to preserve': 912019, 'preserve employment': 670696, 'employment salary': 274642, 'salary at': 731950, 'at maximum': 99691, 'maximum rate': 520834, 'rate possible': 697343, 'possible program': 665744, 'program includes': 683261, 'includes tax': 431816, 'tax payment': 835063, 'payment deferment': 645587, 'deferment well': 232176, 'well repayment': 978519, 'repayment extension': 711483, 'extension on': 293289, 'consumer mortgage': 198157, 'mortgage loan': 541920, 'russia to develop': 728587, 'to develop additional': 904242, 'develop additional business': 239623, 'additional business support': 31781, 'business support program': 144449, 'support program amid': 826769, 'program amid covid': 683201, 'pandemic to preserve': 636789, 'to preserve employment': 912020, 'preserve employment salary': 670697, 'employment salary at': 274643, 'salary at maximum': 731951, 'at maximum rate': 99692, 'maximum rate possible': 520835, 'rate possible program': 697344, 'possible program includes': 665745, 'program includes tax': 683262, 'includes tax payment': 431817, 'tax payment deferment': 835065, 'payment deferment well': 645588, 'deferment well repayment': 232177, 'well repayment extension': 978520, 'repayment extension on': 711484, 'extension on consumer': 293290, 'on consumer mortgage': 600062, 'consumer mortgage loan': 198159, 'pj': 657227, 'new life': 559027, 'life stay': 489056, 'in pj': 426714, 'pj all': 657228, 'day shower': 228352, 'shower put': 767381, 'put fresh': 690583, 'fresh pj': 333038, 'pj on': 657232, 'on think': 604594, 'think going': 885261, 'treat myself': 930849, 'myself to': 550957, 'to some': 914868, 'new pair': 559249, 'pair in': 634330, 'supermarket tomorrow': 823495, 'tomorrow quaratinelife': 924168, 'my new life': 549464, 'new life stay': 559030, 'life stay in': 489058, 'stay in pj': 797058, 'in pj all': 426715, 'pj all day': 657229, 'all day shower': 42524, 'day shower put': 228353, 'shower put fresh': 767382, 'put fresh pj': 690584, 'fresh pj on': 333039, 'pj on think': 657233, 'on think going': 604595, 'think going to': 885262, 'going to treat': 355748, 'to treat myself': 917751, 'treat myself to': 930850, 'myself to some': 550961, 'to some new': 914883, 'some new pair': 783351, 'new pair in': 559250, 'pair in the': 634331, 'the supermarket tomorrow': 868867, 'supermarket tomorrow quaratinelife': 823502, 'coronapocolypse': 205216, 'know it': 476517, 'world when': 1010163, 'when surgical': 984102, 'surgical spirit': 828385, 'spirit is': 789478, 'stock online': 802570, 'online and': 607805, 'not receive': 571248, 'receive any': 703442, 'any more': 79483, 'more stock': 540468, 'stock how': 802248, 'am supposed': 50456, 'to sanitize': 913749, 'hand now': 375100, 'now coronapocolypse': 574457, 'coronapocolypse panic': 205233, 'you know it': 1019505, 'know it the': 476544, 'it the end': 461530, 'the world when': 872004, 'world when surgical': 1010165, 'when surgical spirit': 984103, 'surgical spirit is': 828386, 'spirit is out': 789480, 'of stock online': 590181, 'stock online and': 802572, 'online and will': 607859, 'will not receive': 994258, 'not receive any': 571249, 'receive any more': 703444, 'any more stock': 79493, 'more stock how': 540470, 'stock how am': 802249, 'how am supposed': 407348, 'am supposed to': 50457, 'supposed to sanitize': 827373, 'to sanitize my': 913752, 'sanitize my hand': 734199, 'my hand now': 548609, 'hand now coronapocolypse': 375101, 'now coronapocolypse panic': 574458, 'coronapocolypse panic shopping': 205234, 'tandem': 834152, 'adminerrorvirus': 32432, 'sacking': 729060, 'quadrupling': 691672, 'squalid': 791454, 'administrative': 32513, 'error': 280221, 'pure': 689953, 'in tandem': 428814, 'tandem with': 834153, 'the coronacrisis': 851773, 'coronacrisis we': 204854, 'we now': 972609, 'now have': 574864, 'have an': 379236, 'of adminerrorvirus': 579790, 'adminerrorvirus firm': 32433, 'firm and': 308305, 'and shop': 71488, 'shop caught': 760023, 'caught out': 167448, 'out sacking': 627130, 'sacking staff': 729061, 'staff making': 792636, 'making them': 511441, 'them homeless': 875861, 'others quadrupling': 621599, 'quadrupling price': 691673, 'their squalid': 874782, 'squalid corner': 791455, 'corner shop': 203666, 'shop when': 761024, 'when caught': 983241, 'out sorry': 627229, 'sorry gov': 786051, 'gov it': 359612, 'wa an': 961524, 'an administrative': 55127, 'administrative error': 32520, 'error pure': 280232, 'in tandem with': 428815, 'tandem with the': 834154, 'with the coronacrisis': 1001247, 'the coronacrisis we': 851792, 'coronacrisis we now': 204855, 'we now have': 972612, 'now have an': 574865, 'have an outbreak': 379269, 'outbreak of adminerrorvirus': 628475, 'of adminerrorvirus firm': 579791, 'adminerrorvirus firm and': 32434, 'firm and shop': 308310, 'and shop caught': 71494, 'shop caught out': 760024, 'caught out sacking': 167449, 'out sacking staff': 627131, 'sacking staff making': 729062, 'staff making them': 792637, 'making them homeless': 511445, 'them homeless and': 875862, 'homeless and others': 402726, 'and others quadrupling': 68454, 'others quadrupling price': 621600, 'quadrupling price in': 691674, 'price in their': 674742, 'in their squalid': 429779, 'their squalid corner': 874783, 'squalid corner shop': 791456, 'corner shop when': 203680, 'shop when caught': 761025, 'when caught out': 983242, 'caught out sorry': 167450, 'out sorry gov': 627231, 'sorry gov it': 786052, 'gov it wa': 359613, 'it wa an': 462063, 'wa an administrative': 961525, 'an administrative error': 55129, 'administrative error pure': 32521, 'pacman': 633747, 'being at': 124874, 'today wa': 920441, 'wa quite': 963028, 'quite fun': 694871, 'fun thanks': 341222, 'distancing felt': 247146, 'felt like': 303402, 'like giant': 490309, 'giant game': 349778, 'game of': 343212, 'of pacman': 587655, 'pacman socialdistancing': 633750, 'being at the': 124879, 'supermarket today wa': 823474, 'today wa quite': 920453, 'wa quite fun': 963029, 'quite fun thanks': 694872, 'fun thanks to': 341223, 'thanks to social': 842261, 'to social distancing': 914823, 'social distancing felt': 779609, 'distancing felt like': 247147, 'felt like giant': 303407, 'like giant game': 490310, 'giant game of': 349779, 'game of pacman': 343216, 'of pacman socialdistancing': 587656, 'lmao': 497143, 'pic': 655576, 'the photo': 863700, 'photo from': 655165, 'from lmao': 336241, 'lmao make': 497154, 'it pic': 460327, 'pic of': 655608, 'empty american': 274756, 'american supermarket': 52230, 'why is the': 991122, 'is the photo': 452893, 'the photo from': 863702, 'photo from lmao': 655170, 'from lmao make': 336242, 'lmao make it': 497155, 'make it pic': 510050, 'it pic of': 460328, 'pic of the': 655616, 'of the empty': 590984, 'the empty american': 854283, 'empty american supermarket': 274758, 'american supermarket shelf': 52235, 'raided': 695622, 'sparse': 787619, 'seen supermarket': 747259, 'supermarket quite': 822150, 'quite this': 694928, 'this raided': 889796, 'raided fresh': 695631, 'produce meat': 680354, 'meat egg': 525552, 'egg and': 269755, 'food have': 314777, 'have all': 379148, 'all been': 42160, 'been completely': 120853, 'completely bought': 192222, 'bought out': 136670, 'and nearly': 67451, 'nearly every': 553824, 'every aisle': 285658, 'aisle is': 40283, 'is sparse': 452140, 'sparse panic': 787622, 'panic purchasing': 638451, 'purchasing at': 689835, 'at it': 99311, 'it worst': 462555, 'worst corvid19uk': 1011163, 'never seen supermarket': 558180, 'seen supermarket quite': 747263, 'supermarket quite this': 822151, 'quite this raided': 694929, 'this raided fresh': 889797, 'raided fresh produce': 695632, 'fresh produce meat': 333059, 'produce meat egg': 680356, 'meat egg and': 525553, 'egg and canned': 269759, 'canned food have': 161515, 'food have all': 314779, 'have all been': 379151, 'all been completely': 42161, 'been completely bought': 120854, 'completely bought out': 192223, 'bought out and': 136672, 'out and nearly': 625679, 'and nearly every': 67453, 'nearly every aisle': 553825, 'every aisle is': 285660, 'aisle is sparse': 40287, 'is sparse panic': 452141, 'sparse panic purchasing': 787624, 'panic purchasing at': 638452, 'purchasing at it': 689836, 'at it worst': 99340, 'it worst corvid19uk': 462556, 'for safe': 325287, 'safe way': 730110, 'shop and': 759836, 'stock curious': 802035, 'curious to': 220989, 'potential impact': 667085, '19 are': 5191, 'system looking': 831239, 'for way': 327651, 'vulnerable we': 961247, 'we answer': 970434, 'answer these': 78118, 'these question': 880567, 'question more': 693649, 'new piece': 559274, 'piece read': 656360, 'read it': 700379, 'looking for safe': 502898, 'for safe way': 325294, 'safe way to': 730111, 'way to shop': 970094, 'to shop and': 914446, 'shop and stock': 759869, 'and stock curious': 72404, 'stock curious to': 802036, 'curious to know': 220990, 'to know what': 909002, 'know what the': 476980, 'what the potential': 982355, 'the potential impact': 864120, 'potential impact of': 667086, 'impact of 19': 417750, 'of 19 are': 579382, '19 are on': 5205, 'on the food': 604126, 'the food system': 855612, 'food system looking': 317052, 'system looking for': 831240, 'looking for way': 502914, 'for way to': 327652, 'help the vulnerable': 390684, 'the vulnerable we': 871002, 'vulnerable we answer': 961248, 'we answer these': 970436, 'answer these question': 78119, 'these question more': 880569, 'question more in': 693650, 'more in our': 539522, 'in our new': 426317, 'our new piece': 624039, 'new piece read': 559276, 'piece read it': 656361, 'read it here': 700384, 'turmoil': 935609, 'bracing': 137497, 'wider': 991809, 'houston office': 407212, 'office market': 595482, 'market face': 516365, 'face double': 294405, 'whammy from': 980935, 'from oil': 336648, 'oil turmoil': 597491, 'turmoil and': 935612, 'and coronavirus': 60568, 'coronavirus the': 206901, 'the houston': 857665, 'is bracing': 446252, 'bracing for': 137498, 'an economic': 55574, 'economic storm': 267319, 'storm weakening': 811860, 'weakening oil': 974087, 'oil demand': 596738, 'price together': 677073, 'the wider': 871537, 'wider economic': 991814, 'economic downturn': 267072, 'downturn caused': 257790, 'houston office market': 407213, 'office market face': 595484, 'market face double': 516367, 'face double whammy': 294406, 'double whammy from': 256090, 'whammy from oil': 980936, 'from oil turmoil': 336651, 'oil turmoil and': 597492, 'turmoil and coronavirus': 935613, 'and coronavirus the': 60575, 'coronavirus the houston': 206910, 'the houston office': 857668, 'office market is': 595485, 'market is bracing': 516618, 'is bracing for': 446253, 'bracing for an': 137499, 'for an economic': 319277, 'an economic storm': 55590, 'economic storm weakening': 267321, 'storm weakening oil': 811861, 'weakening oil demand': 974088, 'oil demand and': 596740, 'demand and oil': 234987, 'oil price together': 597294, 'price together with': 677074, 'together with the': 921043, 'with the wider': 1001545, 'the wider economic': 871539, 'wider economic downturn': 991815, 'economic downturn caused': 267074, 'downturn caused by': 257791, 'composed': 192565, 'uncertain': 939559, 'heightened': 388812, 'cmc': 184662, 'cfd': 170305, 'stay composed': 796844, 'composed in': 192566, 'in volatile': 430612, 'volatile market': 960049, 'in uncertain': 430408, 'uncertain time': 939611, 'market can': 516142, 'can offer': 159096, 'offer heightened': 594650, 'heightened trading': 388827, 'trading opportunity': 928905, 'opportunity well': 613741, 'well risk': 978527, 'risk get': 723573, 'get ready': 347884, 'ready for': 700852, 'next opportunity': 561492, 'opportunity with': 613752, 'with cmc': 997678, 'cmc market': 184663, 'market learn': 516680, 'more 70': 538487, '70 of': 21797, 'of retail': 589041, 'retail cfd': 717933, 'cfd client': 170308, 'client lose': 182062, 'lose money': 503452, 'stay composed in': 796845, 'composed in volatile': 192567, 'in volatile market': 430613, 'volatile market in': 960051, 'market in uncertain': 516581, 'in uncertain time': 430409, 'uncertain time the': 939627, 'time the financial': 897853, 'the financial market': 855220, 'financial market can': 306498, 'market can offer': 516144, 'can offer heightened': 159097, 'offer heightened trading': 594651, 'heightened trading opportunity': 388828, 'trading opportunity well': 928906, 'opportunity well risk': 613743, 'well risk get': 978528, 'risk get ready': 723574, 'get ready for': 347885, 'ready for the': 700876, 'the next opportunity': 861685, 'next opportunity with': 561493, 'opportunity with cmc': 613753, 'with cmc market': 997679, 'cmc market learn': 184664, 'market learn more': 516681, 'learn more 70': 484012, 'more 70 of': 538488, '70 of retail': 21804, 'of retail cfd': 589043, 'retail cfd client': 717935, 'cfd client lose': 170309, 'client lose money': 182063, 'gallaudet': 342936, 'you member': 1019837, 'the gallaudet': 856107, 'gallaudet community': 342939, 'community food': 189848, 'at gallaudet': 98734, 'gallaudet can': 342937, 'work due': 1005063, '19 putting': 9896, 'putting them': 691246, 'financial danger': 306392, 'danger join': 225663, 'in calling': 421162, 'provide their': 686512, 'their worker': 875208, 'worker with': 1008258, 'with full': 998579, 'full pay': 340798, 'pay and': 644727, 'health benefit': 386190, 'benefit during': 126957, 'are you member': 91821, 'you member of': 1019838, 'of the gallaudet': 591053, 'the gallaudet community': 856108, 'gallaudet community food': 342940, 'community food service': 189853, 'service worker at': 753088, 'worker at gallaudet': 1006461, 'at gallaudet can': 98735, 'gallaudet can work': 342938, 'can work due': 160245, 'work due to': 1005064, 'covid 19 putting': 213638, '19 putting them': 9897, 'putting them in': 691250, 'them in financial': 875900, 'in financial danger': 422889, 'financial danger join': 306393, 'danger join in': 225664, 'join in calling': 466744, 'in calling on': 421164, 'calling on to': 156617, 'on to provide': 604756, 'to provide their': 912440, 'provide their worker': 686513, 'their worker with': 875224, 'worker with full': 1008261, 'with full pay': 998583, 'full pay and': 340800, 'pay and health': 644731, 'and health benefit': 64347, 'health benefit during': 386192, 'benefit during this': 126958, 'supermarket owner': 821873, 'owner rn': 632557, 'supermarket owner rn': 821878, 'processor': 680054, 'belong': 126516, 'know lot': 476584, 'home right': 401982, 'but let': 146260, 'let not': 486935, 'forget the': 329298, 'there our': 878908, 'our first': 623075, 'responder doctor': 715445, 'doctor pharmacist': 251072, 'and mortgage': 67252, 'mortgage processor': 541942, 'processor don': 680072, 'think belong': 885157, 'belong on': 126517, 'list but': 494287, 'here we': 393782, 'know lot of': 476586, 'people are able': 646914, 'able to work': 24572, 'from home right': 335899, 'home right now': 401983, 'now but let': 574289, 'but let not': 146265, 'let not forget': 486937, 'not forget the': 569515, 'forget the people': 329306, 'the people still': 863504, 'people still out': 649604, 'out there our': 627504, 'there our first': 878909, 'our first responder': 623085, 'first responder doctor': 308936, 'responder doctor pharmacist': 715447, 'doctor pharmacist grocery': 251073, 'employee and mortgage': 273573, 'and mortgage processor': 67255, 'mortgage processor don': 541943, 'processor don think': 680073, 'don think belong': 253973, 'think belong on': 885158, 'belong on this': 126518, 'this list but': 888653, 'list but here': 494288, 'but here we': 145927, 'here we are': 393784, 'chart': 173812, 'exponential': 292578, 'chart of': 173841, 'day gold': 227681, 'are trading': 91178, 'at highest': 98903, 'highest level': 395831, 'level due': 487551, 'to concern': 903163, 'of pandemic': 587686, 'pandemic case': 635100, 'is increasing': 448850, 'increasing with': 433745, 'with exponential': 998343, 'exponential rate': 292583, 'rate and': 697149, 'and world': 75900, 'going towards': 355767, 'towards recession': 927236, 'chart of the': 173843, 'of the day': 590928, 'the day gold': 852883, 'day gold price': 227682, 'gold price are': 355950, 'price are trading': 672757, 'are trading at': 91179, 'trading at highest': 928839, 'at highest level': 98904, 'highest level due': 395833, 'level due to': 487552, 'due to concern': 261737, 'to concern of': 903168, 'concern of pandemic': 193028, 'of pandemic case': 587691, 'pandemic case of': 635102, 'case of is': 165912, 'of is increasing': 585319, 'is increasing with': 448867, 'increasing with exponential': 433746, 'with exponential rate': 998344, 'exponential rate and': 292584, 'rate and world': 697157, 'and world is': 75902, 'world is going': 1009699, 'is going towards': 448105, 'going towards recession': 355768, 'baltimore': 109126, 'maryland': 518178, 'for list': 322997, 'of small': 589783, 'business to': 144527, 'support with': 826997, 'during closure': 262512, 'closure in': 183905, 'and beyond': 58938, 'beyond drop': 129162, 'drop any': 260131, 'any suggestion': 79881, 'suggestion below': 817625, 'below baltimore': 126605, 'baltimore maryland': 109127, 'looking for list': 502879, 'for list of': 322998, 'list of small': 494473, 'of small business': 589784, 'small business to': 774898, 'business to support': 144559, 'to support with': 915987, 'support with online': 826998, 'with online shopping': 999905, 'shopping during closure': 762530, 'during closure in': 262514, 'closure in and': 183906, 'in and beyond': 420351, 'and beyond drop': 58941, 'beyond drop any': 129163, 'drop any suggestion': 260133, 'any suggestion below': 79882, 'suggestion below baltimore': 817626, 'below baltimore maryland': 126606, 'apex': 81450, 'saveourfuture': 737796, 'savehumans': 737772, 'coronavirus task': 206871, 'force warned': 328544, 'warned against': 966990, 'against even': 37427, 'even going': 284129, 'buy grocery': 148745, 'grocery or': 364800, 'medication the': 526681, 'to hit': 907836, 'hit it': 398295, 'it apex': 456555, 'apex in': 81451, 'next two': 561645, 'week stayhomesavelives': 976921, 'stayhomesavelives saveourfuture': 798439, 'saveourfuture savehumans': 737797, 'savehumans stayhome': 737773, 'stayhome stayathome': 798130, 'the coronavirus task': 851922, 'coronavirus task force': 206872, 'task force warned': 834705, 'force warned against': 328545, 'warned against even': 966991, 'against even going': 37428, 'even going out': 284130, 'going out to': 355396, 'out to buy': 627625, 'to buy grocery': 902237, 'buy grocery or': 148756, 'grocery or medication': 364805, 'or medication the': 616113, 'medication the pandemic': 526683, 'pandemic is expected': 635769, 'expected to hit': 290982, 'to hit it': 907847, 'hit it apex': 398296, 'it apex in': 456556, 'apex in the': 81452, 'in the next': 429395, 'the next two': 861708, 'next two week': 561648, 'two week stayhomesavelives': 937365, 'week stayhomesavelives saveourfuture': 976922, 'stayhomesavelives saveourfuture savehumans': 798440, 'saveourfuture savehumans stayhome': 737798, 'savehumans stayhome stayathome': 737774, 'hunter': 411382, 'orwellian': 619688, 'breathtaking': 139257, 'egging': 270051, 'wartime': 967385, 'contrived': 201954, 'hunter the': 411399, 'the orwellian': 862501, 'orwellian propaganda': 619689, 'propaganda over': 684063, 'supermarket pa': 821883, 'pa system': 632886, 'is breathtaking': 446262, 'breathtaking really': 139258, 'really over': 702476, 'over egging': 630179, 'egging the': 270052, 'the wartime': 871099, 'wartime narrative': 967392, 'narrative respect': 551950, 'respect social': 715046, 'help feed': 389692, 'feed the': 302375, 'nation completely': 552144, 'completely contrived': 192243, 'hunter the orwellian': 411400, 'the orwellian propaganda': 862502, 'orwellian propaganda over': 619690, 'propaganda over the': 684064, 'over the supermarket': 630772, 'the supermarket pa': 868739, 'supermarket pa system': 821884, 'pa system is': 632887, 'system is breathtaking': 831219, 'is breathtaking really': 446263, 'breathtaking really over': 139259, 'really over egging': 702477, 'over egging the': 630180, 'egging the wartime': 270053, 'the wartime narrative': 871100, 'wartime narrative respect': 967393, 'narrative respect social': 551951, 'respect social distancing': 715047, 'distancing and help': 246972, 'and help feed': 64447, 'help feed the': 389696, 'feed the nation': 302378, 'the nation completely': 861223, 'nation completely contrived': 552145, 'naivas': 551518, 'baringo': 111100, 'commander': 188336, 'ibrahim': 412588, 'abajila': 24194, 'amina': 52843, 'mutio': 547078, 'ramadhan': 696343, 'exemplary': 289956, 'naivas supermarket': 551521, 'supermarket reward': 822243, 'reward baringo': 720770, 'baringo ap': 111101, 'ap commander': 81204, 'commander ibrahim': 188339, 'ibrahim abajila': 412589, 'abajila and': 24195, 'and officer': 67998, 'officer amina': 595619, 'amina mutio': 52844, 'mutio ramadhan': 547079, 'ramadhan with': 696344, 'with tv': 1001864, 'tv set': 936189, 'set and': 753339, 'and gift': 63644, 'gift voucher': 350039, 'voucher for': 960642, 'their exemplary': 873197, 'exemplary service': 289961, 'service during': 752312, 'during enforcement': 262627, 'enforcement of': 276780, 'the curfew': 852591, 'naivas supermarket reward': 551523, 'supermarket reward baringo': 822244, 'reward baringo ap': 720771, 'baringo ap commander': 111102, 'ap commander ibrahim': 81205, 'commander ibrahim abajila': 188340, 'ibrahim abajila and': 412590, 'abajila and officer': 24196, 'and officer amina': 67999, 'officer amina mutio': 595620, 'amina mutio ramadhan': 52845, 'mutio ramadhan with': 547080, 'ramadhan with tv': 696345, 'with tv set': 1001865, 'tv set and': 936190, 'set and gift': 753341, 'and gift voucher': 63647, 'gift voucher for': 350041, 'voucher for their': 960646, 'for their exemplary': 326825, 'their exemplary service': 873198, 'exemplary service during': 289962, 'service during enforcement': 752314, 'during enforcement of': 262628, 'enforcement of the': 276782, 'of the curfew': 590918, 'christchurch': 178094, 'coronavirus hero': 206074, 'hero zero': 394191, 'zero in': 1027464, 'an ongoing': 56598, 'ongoing series': 607684, 'series location': 751260, 'location christchurch': 498876, 'christchurch dorset': 178095, 'coronavirus hero zero': 206075, 'hero zero in': 394192, 'zero in an': 1027465, 'in an ongoing': 420325, 'an ongoing series': 56605, 'ongoing series location': 607686, 'series location christchurch': 751261, 'location christchurch dorset': 498877, '71': 21965, 'internetfacts': 442060, 'kloudportal': 475936, 'committedtobreakthechain': 189053, '71 of': 21977, 'in 2019': 419795, '2019 believe': 13941, 'believe they': 126374, 'll grab': 496816, 'grab better': 361467, 'better deal': 128256, 'deal online': 229455, 'online compared': 608031, 'in high': 423678, 'street store': 813126, 'store internetfacts': 808450, 'internetfacts kloudportal': 442061, 'kloudportal committedtobreakthechain': 475937, 'committedtobreakthechain kloudportal': 189054, '71 of shopper': 21978, 'of shopper in': 589643, 'shopper in 2019': 761555, 'in 2019 believe': 419801, '2019 believe they': 13942, 'believe they ll': 126376, 'they ll grab': 882600, 'll grab better': 496817, 'grab better deal': 361468, 'better deal online': 128257, 'deal online compared': 229456, 'online compared to': 608032, 'compared to shopping': 191438, 'to shopping in': 914519, 'shopping in high': 762970, 'in high street': 423689, 'high street store': 395437, 'street store internetfacts': 813128, 'store internetfacts kloudportal': 808451, 'internetfacts kloudportal committedtobreakthechain': 442062, 'kloudportal committedtobreakthechain kloudportal': 475938, 'mealsonwheels': 524339, 'of heightened': 584529, 'heightened demand': 388817, 'for nutrition': 323998, 'nutrition service': 577743, 'service due': 752310, 'senior self': 750401, 'isolating because': 455064, 'need expanded': 554752, 'expanded access': 290478, 'to program': 912245, 'program like': 683267, 'like mealsonwheels': 490762, 'mealsonwheels that': 524340, 'that provide': 845882, 'relief for': 709336, 'senior staying': 750413, 'at time of': 101301, 'time of heightened': 897338, 'of heightened demand': 584531, 'heightened demand for': 388820, 'demand for nutrition': 235462, 'for nutrition service': 324000, 'nutrition service due': 577744, 'service due to': 752311, 'due to senior': 261943, 'to senior self': 914237, 'senior self isolating': 750402, 'self isolating because': 747713, 'isolating because of': 455066, '19 we need': 11942, 'we need expanded': 972483, 'need expanded access': 554753, 'expanded access to': 290479, 'access to program': 28270, 'to program like': 912246, 'program like mealsonwheels': 683268, 'like mealsonwheels that': 490763, 'mealsonwheels that provide': 524341, 'that provide relief': 845888, 'provide relief for': 686450, 'relief for senior': 709343, 'for senior staying': 325478, 'senior staying home': 750414, '73': 22058, 'squeezed': 791545, 'impact import': 417699, 'import plunged': 418652, 'plunged more': 661493, 'than 73': 840298, '73 year': 22071, 'march record': 515451, 'record domestic': 704943, 'domestic price': 253213, 'and squeezed': 72171, 'squeezed retail': 791548, 'retail demand': 718027, 'impact import plunged': 417700, 'import plunged more': 418653, 'plunged more than': 661494, 'more than 73': 540580, 'than 73 year': 840299, '73 year on': 22073, 'in march record': 425115, 'march record domestic': 515452, 'record domestic price': 704944, 'domestic price and': 253214, 'price and squeezed': 672545, 'and squeezed retail': 72172, 'squeezed retail demand': 791549, 'disability': 243804, 'scrubbing': 742923, 'universal': 942342, 'my company': 547770, 'taking pretty': 833529, 'pretty good': 671416, 'good care': 356865, 'and protecting': 69669, 'protecting from': 685192, 'are giving': 86851, 'giving hazard': 351305, 'hazard bonus': 384544, 'bonus and': 134343, 'and disability': 61383, 'disability if': 243827, 'are really': 89470, 'really scrubbing': 702556, 'scrubbing everything': 742926, 'down and': 256487, 'giving sanitizer': 351383, 'sanitizer only': 735470, 'thing missing': 884592, 'missing is': 534305, 'is facemasks': 447686, 'facemasks but': 295128, 'that universal': 847184, 'my company is': 547772, 'company is taking': 190813, 'is taking pretty': 452562, 'taking pretty good': 833530, 'pretty good care': 671417, 'good care of': 356867, 'care of and': 164094, 'of and protecting': 580175, 'and protecting from': 69671, 'protecting from the': 685193, 'the they are': 869433, 'they are giving': 881285, 'are giving hazard': 86856, 'giving hazard bonus': 351306, 'hazard bonus and': 384545, 'bonus and disability': 134347, 'and disability if': 61384, 'disability if we': 243828, 'we get sick': 971625, 'get sick and': 347988, 'sick and they': 768374, 'they are really': 881380, 'are really scrubbing': 89484, 'really scrubbing everything': 702557, 'scrubbing everything down': 742927, 'everything down and': 287756, 'down and giving': 256497, 'and giving sanitizer': 63684, 'giving sanitizer only': 351384, 'sanitizer only thing': 735472, 'only thing missing': 611308, 'thing missing is': 884593, 'missing is facemasks': 534306, 'is facemasks but': 447687, 'facemasks but that': 295129, 'but that universal': 147301, 'surprise': 828511, 'payer': 645343, 'laying': 482651, 'bogglingly': 133989, 'blue': 133429, 'sadly this': 729371, 'this doe': 887270, 'not surprise': 571860, 'surprise me': 828535, 'me heard': 522882, 'heard from': 388079, 'one payer': 606837, 'payer exec': 645349, 'exec that': 289836, 'are laying': 87728, 'laying low': 482660, 'low hoping': 505320, 'hoping all': 403917, 'all blow': 42191, 'blow over': 133337, 'over mind': 630401, 'mind bogglingly': 532637, 'bogglingly stupid': 133990, 'stupid and': 815337, 'and this': 73982, 'wa nonprofit': 962748, 'nonprofit blue': 566675, 'blue plan': 133462, 'sadly this doe': 729372, 'this doe not': 887271, 'doe not surprise': 251534, 'not surprise me': 571861, 'surprise me heard': 828538, 'me heard from': 522883, 'heard from one': 388082, 'from one payer': 336686, 'one payer exec': 606838, 'payer exec that': 645350, 'exec that they': 289837, 'they are laying': 881322, 'are laying low': 87729, 'laying low hoping': 482661, 'low hoping all': 505321, 'hoping all blow': 403918, 'all blow over': 42192, 'blow over mind': 133341, 'over mind bogglingly': 630402, 'mind bogglingly stupid': 532638, 'bogglingly stupid and': 133991, 'stupid and this': 815345, 'and this wa': 74011, 'this wa nonprofit': 891078, 'wa nonprofit blue': 962749, 'nonprofit blue plan': 566676, 'warm': 966870, 'hot': 404986, 'runwalgroup': 728166, 'in image': 423979, 'image we': 416660, 'need this': 555810, 'this thing': 890559, 'against face': 37438, 'glove towel': 352984, 'towel wash': 927399, 'with disinfectant': 998082, 'disinfectant drink': 245649, 'drink warm': 258892, 'warm hot': 966881, 'hot water': 405063, 'water fruit': 969006, 'fruit stayhomestaysafe': 339152, 'stayhomestaysafe runwalgroup': 798522, 'in image we': 423980, 'image we can': 416661, 'can see that': 159547, 'see that we': 745803, 'that we need': 847384, 'we need this': 972560, 'need this thing': 555824, 'this thing to': 890570, 'thing to fight': 884886, 'fight against face': 304619, 'against face mask': 37439, 'mask glove towel': 518753, 'glove towel wash': 352985, 'towel wash your': 927400, 'hand with disinfectant': 376006, 'with disinfectant drink': 998085, 'disinfectant drink warm': 245650, 'drink warm hot': 258893, 'warm hot water': 966882, 'hot water fruit': 405066, 'water fruit stayhomestaysafe': 969007, 'fruit stayhomestaysafe runwalgroup': 339153, 'audio': 102922, 'postal': 666432, 'prepares': 670304, 'paddy': 633798, 'wagon': 964025, 'lynx': 507134, 'doorstep': 255836, 'demand audio': 235049, 'audio wed': 102933, 'wed march': 975551, '25 postal': 15948, 'postal worker': 666461, 'worker cautious': 1006624, 'cautious amid': 168208, 'crisis prepares': 217895, 'prepares for': 670307, 'battle ex': 112793, 'ex cop': 288623, 'cop drive': 203263, 'drive paddy': 259121, 'paddy wagon': 633801, 'wagon to': 964028, 'to collect': 902962, 'collect for': 186272, 'and lynx': 66496, 'lynx doorstep': 507137, 'doorstep visit': 255873, 'visit delight': 959230, 'delight social': 233040, 'medium user': 527344, 'on demand audio': 600274, 'demand audio wed': 235050, 'audio wed march': 102934, 'wed march 25': 975552, 'march 25 postal': 515205, '25 postal worker': 15949, 'postal worker cautious': 666467, 'worker cautious amid': 1006625, 'cautious amid covid': 168209, '19 crisis prepares': 6301, 'crisis prepares for': 217896, 'prepares for battle': 670308, 'for battle ex': 319601, 'battle ex cop': 112794, 'ex cop drive': 288624, 'cop drive paddy': 203264, 'drive paddy wagon': 259122, 'paddy wagon to': 633802, 'wagon to collect': 964029, 'to collect for': 902965, 'collect for the': 186274, 'for the food': 326443, 'bank and lynx': 109615, 'and lynx doorstep': 66497, 'lynx doorstep visit': 507138, 'doorstep visit delight': 255874, 'visit delight social': 959231, 'delight social medium': 233041, 'social medium user': 779894, 'robux': 724857, 'gfx': 349526, 'am not': 50240, 'not in': 570081, 'in lockdown': 424833, 'lockdown yet': 500175, 'yet would': 1016336, 'would give': 1011836, 'my robux': 549955, 'robux on': 724858, 'my account': 547217, 'have if': 381008, 'want them': 965969, 'them lol': 875998, 'lol or': 500939, 'or since': 617094, 'since you': 771013, 'home lot': 401555, 'lot now': 504129, 'could lower': 209396, 'your gfx': 1024040, 'gfx special': 349527, 'special covid': 787877, '19 sale': 10296, 'sale only': 732427, 'only for': 610462, 'of day': 582373, 'am not in': 50254, 'not in lockdown': 570098, 'in lockdown yet': 424861, 'lockdown yet would': 500178, 'yet would give': 1016337, 'would give you': 1011841, 'give you my': 350862, 'you my robux': 1019943, 'my robux on': 549956, 'robux on my': 724859, 'on my account': 602260, 'my account but': 547219, 'account but have': 28643, 'but have if': 145877, 'have if you': 381010, 'you want them': 1022161, 'want them lol': 965971, 'them lol or': 875999, 'lol or since': 500940, 'or since you': 617095, 'since you are': 771015, 'are at home': 84669, 'at home lot': 99036, 'home lot now': 401557, 'lot now you': 504130, 'now you could': 576503, 'you could lower': 1018095, 'could lower the': 209398, 'price of your': 675610, 'of your gfx': 593477, 'your gfx special': 1024041, 'gfx special covid': 349528, 'special covid 19': 787878, 'covid 19 sale': 213739, '19 sale only': 10301, 'sale only for': 732429, 'only for couple': 610465, 'couple of day': 211637, 'swindle': 830376, 'lookout': 503078, 'be criminal': 114291, 'criminal will': 216895, 'take every': 832098, 'every opportunity': 286056, 'to swindle': 916093, 'swindle the': 830377, 'public money': 688168, 'money so': 537020, 'so be': 776603, 'the lookout': 859709, 'lookout for': 503079, 'scam check': 740109, 'our advice': 622028, 'advice below': 33329, 'be criminal will': 114292, 'criminal will take': 216896, 'will take every': 995066, 'take every opportunity': 832102, 'every opportunity to': 286057, 'opportunity to swindle': 613731, 'to swindle the': 916094, 'swindle the public': 830378, 'the public money': 864833, 'public money so': 688169, 'money so be': 537021, 'so be on': 776605, 'on the lookout': 604222, 'the lookout for': 859710, 'lookout for coronavirus': 503080, 'for coronavirus scam': 320391, 'coronavirus scam check': 206713, 'scam check out': 740111, 'out our advice': 626965, 'our advice below': 622030, 'nationalized': 552675, 'defective': 232074, 'stamp china': 793415, 'lied about': 488402, 'about next': 25800, 'next they': 561584, 'they had': 882236, 'had citizen': 372967, 'and company': 60186, 'company buy': 190506, 'buy up': 149409, 'up medical': 945375, 'supply around': 824800, 'world to': 1010074, 'they nationalized': 882710, 'nationalized foreign': 552676, 'foreign company': 328963, 'and sent': 71266, 'sent defective': 750750, 'defective gear': 232080, 'stamp china lied': 793416, 'china lied about': 176794, 'lied about next': 488404, 'about next they': 25801, 'next they had': 561585, 'they had citizen': 882240, 'had citizen and': 372968, 'citizen and company': 178832, 'and company buy': 60188, 'company buy up': 190507, 'buy up medical': 149413, 'up medical supply': 945377, 'medical supply around': 526429, 'supply around the': 824801, 'the world to': 871991, 'world to drive': 1010078, 'up price they': 945838, 'price they nationalized': 676897, 'they nationalized foreign': 882711, 'nationalized foreign company': 552677, 'foreign company in': 328964, 'company in china': 190759, 'china and sent': 176491, 'and sent defective': 71267, 'sent defective gear': 750752, 'be good': 115060, 'good if': 357228, 'your company': 1023280, 'company set': 191064, 'up system': 946112, 'system for': 831166, 'have so': 382597, 'have online': 381802, 'or click': 614737, 'collect it': 186292, 'it please': 460354, 'first supermarket': 309041, 'this happen': 887835, 'happen during': 377073, 'would be good': 1011590, 'be good if': 115070, 'good if your': 357236, 'if your company': 415573, 'your company set': 1023288, 'company set up': 191065, 'set up system': 753579, 'up system for': 946113, 'system for people': 831173, 'who have so': 988952, 'have so they': 382602, 'so they can': 778466, 'they can have': 881635, 'can have online': 158581, 'have online delivery': 381804, 'online delivery or': 608086, 'delivery or click': 234279, 'or click and': 614738, 'and collect it': 60085, 'collect it please': 186293, 'it please be': 460355, 'please be the': 659715, 'be the first': 117612, 'the first supermarket': 855354, 'first supermarket to': 309046, 'supermarket to make': 823388, 'make this happen': 510642, 'this happen during': 887836, 'happen during the': 377074, 'smallbusinesses': 775240, 'giftcards': 350046, 'which toronto': 986408, 'toronto smallbusinesses': 925989, 'smallbusinesses sell': 775244, 'sell giftcards': 748739, 'giftcards online': 350049, 'online going': 608303, 'get head': 347197, 'head start': 385819, 'start on': 794419, 'on christmas': 599921, 'christmas shopping': 178201, 'shopping gift': 762783, 'card purchase': 163624, 'purchase could': 689408, 'help small': 390529, 'business cope': 143579, '19 expert': 6896, 'which toronto smallbusinesses': 986409, 'toronto smallbusinesses sell': 925990, 'smallbusinesses sell giftcards': 775245, 'sell giftcards online': 748740, 'giftcards online going': 350050, 'online going to': 608305, 'to get head': 906497, 'get head start': 347198, 'head start on': 385820, 'start on christmas': 794420, 'on christmas shopping': 599922, 'christmas shopping gift': 178202, 'shopping gift card': 762784, 'gift card purchase': 349952, 'card purchase could': 163625, 'purchase could help': 689409, 'could help small': 209290, 'help small business': 390530, 'small business cope': 774847, 'business cope with': 143580, 'cope with covid': 203344, 'covid 19 expert': 213060, 'head to': 385829, 'head with': 385868, 'with rent': 1000455, 'rent price': 711155, 'price still': 676647, 'up rent': 945908, 'rent strike': 711181, 'strike may': 813749, 'best option': 127813, 'pandemic rent': 636329, 'head to head': 385831, 'to head with': 907363, 'head with rent': 385870, 'with rent price': 1000459, 'rent price still': 711166, 'price still going': 676648, 'still going up': 800593, 'going up rent': 355792, 'up rent strike': 945910, 'rent strike may': 711182, 'strike may be': 813750, 'may be the': 521040, 'be the best': 117595, 'the best option': 849534, 'best option we': 127816, 'option we have': 614143, 'we have to': 971968, 'have to get': 383218, 'the pandemic rent': 863077, '401': 18787, 'richmond': 721356, 'do our': 249943, 'our part': 624257, 'part to': 642459, 'and practice': 69300, 'practice social': 668653, 'distancing result': 247428, 'result we': 717652, 'at 401': 97646, '401 richmond': 18792, 'richmond until': 721371, 'of march': 586191, 'march you': 515543, 'still purchase': 801077, 'purchase online': 689599, 'at take': 100817, 'take care': 832002, 'care and': 163836, 'safe everyone': 729642, 'must all do': 546467, 'all do our': 42594, 'do our part': 249949, 'our part to': 624268, 'part to slow': 642471, '19 and practice': 5090, 'and practice social': 69304, 'practice social distancing': 668654, 'social distancing result': 779701, 'distancing result we': 247429, 'result we will': 717654, 'closing our retail': 183719, 'retail store at': 718612, 'store at 401': 806575, 'at 401 richmond': 97648, '401 richmond until': 18793, 'richmond until the': 721372, 'until the end': 943853, 'end of march': 275903, 'of march you': 586219, 'march you can': 515545, 'you can still': 1017795, 'can still purchase': 159789, 'still purchase online': 801078, 'purchase online at': 689601, 'online at take': 607894, 'at take care': 100818, 'take care and': 832003, 'care and stay': 163846, 'stay safe everyone': 797234, 'broken': 140877, 'cbs': 168365, 'philly': 654765, 'demand broken': 235073, 'broken supply': 140917, 'chain for': 170711, 'for animal': 319355, 'animal raised': 76647, 'raised food': 695998, 'food coronavirus': 314025, 'coronavirus latest': 206205, 'latest major': 481425, 'major meat': 509390, 'meat processor': 525706, 'processor shutting': 680078, 'down plant': 257093, 'plant employee': 658648, 'employee get': 273883, 'sick with': 768673, '19 cbs': 5730, 'cbs philly': 168374, 'weakening demand broken': 974083, 'demand broken supply': 235074, 'broken supply chain': 140918, 'supply chain for': 824961, 'chain for animal': 170712, 'for animal raised': 319362, 'animal raised food': 76648, 'raised food coronavirus': 695999, 'food coronavirus latest': 314026, 'coronavirus latest major': 206208, 'latest major meat': 481426, 'major meat processor': 509391, 'meat processor shutting': 525709, 'processor shutting down': 680079, 'shutting down plant': 768274, 'down plant employee': 257094, 'plant employee get': 658649, 'employee get sick': 273885, 'get sick with': 348006, 'sick with covid': 768676, 'covid 19 cbs': 212772, '19 cbs philly': 5731, 'fao': 298642, 'indicates': 434985, '172': 4428, 'linked': 493977, 'the fao': 854922, 'fao food': 298648, 'index indicates': 434207, 'indicates that': 434992, 'world food': 1009552, 'fell sharply': 303229, 'march with': 515534, 'with 172': 996959, '172 point': 4430, 'point down': 662467, 'down from': 256784, 'from february': 335442, 'february due': 301708, 'side contraction': 768794, 'contraction linked': 201800, 'linked to': 493985, 'the fao food': 854923, 'fao food price': 298649, 'food price index': 315951, 'price index indicates': 674812, 'index indicates that': 434208, 'indicates that the': 434995, 'that the world': 846870, 'the world food': 871871, 'world food price': 1009555, 'food price fell': 315941, 'price fell sharply': 673854, 'fell sharply in': 303231, 'sharply in march': 755746, 'in march with': 425131, 'march with 172': 515535, 'with 172 point': 996960, '172 point down': 4431, 'point down from': 662468, 'down from february': 256788, 'from february due': 335444, 'february due to': 301709, 'due to demand': 261759, 'to demand side': 904156, 'demand side contraction': 236210, 'side contraction linked': 768795, 'contraction linked to': 201801, 'linked to covid': 493992, 'here you': 393853, 'll find': 496764, 'find all': 306760, 'the information': 858253, 'information we': 438031, 'to gather': 906373, 'gather on': 344392, 'on dedicated': 600248, 'dedicated supermarket': 231736, 'supermarket opening': 821779, 'for healthcare': 322156, 'help plan': 390318, 'plan your': 658361, 'your next': 1024996, 'next trip': 561641, 'shop healthcare': 760271, 'healthcare nh': 387190, 'nh supermarket': 562122, 'here you ll': 393858, 'you ll find': 1019652, 'll find all': 496765, 'find all of': 306762, 'of the information': 591145, 'the information we': 858261, 'information we ve': 438036, 've been able': 952859, 'able to gather': 24484, 'to gather on': 906379, 'gather on dedicated': 344393, 'on dedicated supermarket': 600249, 'dedicated supermarket opening': 231737, 'supermarket opening hour': 821781, 'opening hour for': 612851, 'hour for healthcare': 405604, 'for healthcare worker': 322163, 'healthcare worker to': 387391, 'worker to help': 1008009, 'to help plan': 907587, 'help plan your': 390319, 'plan your next': 658366, 'your next trip': 1025008, 'next trip to': 561642, 'the shop healthcare': 866999, 'shop healthcare nh': 760272, 'healthcare nh supermarket': 387191, 'nh supermarket shopping': 562123, 'wonky': 1004231, 'historic': 397942, 'g20': 342663, 'critic': 218507, 'wonky time': 1004234, 'time that': 897831, 'in historic': 423744, 'historic g20': 397954, 'g20 includes': 342666, 'includes india': 431764, 'india japan': 434496, 'japan china': 464718, 'china etc': 176643, 'etc major': 282648, 'consumer agreed': 196122, 'agreed for': 38708, 'for opec': 324133, 'opec oil': 611924, 'producer to': 680701, 'price largest': 675016, 'largest consumer': 479934, 'consumer significant': 198993, 'significant producer': 769497, 'producer opec': 680677, 'opec critic': 611858, 'critic led': 218508, 'led the': 485266, 'deal oil': 229448, 'oil opec': 596988, 'opec oilpricewar': 611930, 'wonky time that': 1004235, 'time that we': 897840, 'that we live': 847379, 'we live in': 972216, 'live in historic': 495866, 'in historic g20': 423745, 'historic g20 includes': 397955, 'g20 includes india': 342667, 'includes india japan': 431765, 'india japan china': 434497, 'japan china etc': 464719, 'china etc major': 176644, 'etc major consumer': 282649, 'major consumer agreed': 509285, 'consumer agreed for': 196123, 'agreed for opec': 38709, 'for opec oil': 324136, 'opec oil producer': 611929, 'oil producer to': 597346, 'producer to cut': 680702, 'cut production to': 223511, 'production to raise': 682252, 'raise price largest': 695919, 'price largest consumer': 675017, 'largest consumer significant': 479938, 'consumer significant producer': 198994, 'significant producer opec': 769498, 'producer opec critic': 680678, 'opec critic led': 611859, 'critic led the': 218509, 'led the deal': 485268, 'the deal oil': 852958, 'deal oil opec': 229449, 'oil opec oilpricewar': 596989, 'to increased': 908310, 'and increasing': 65121, 'increasing shortage': 433693, 'our product': 624474, 'product due': 681141, 'have had': 380858, 'no choice': 563805, 'choice but': 177741, 'but to': 147579, 'increase some': 433073, 'you understand': 1021960, 'our supply': 625037, 'due to increased': 261826, 'to increased demand': 908312, 'demand and increasing': 234975, 'and increasing shortage': 65127, 'increasing shortage of': 433694, 'shortage of our': 765124, 'of our product': 587548, 'our product due': 624479, 'product due to': 681142, 'to the new': 916898, 'the new covid': 861486, '19 outbreak we': 9205, 'outbreak we have': 628797, 'we have had': 971830, 'have had no': 380868, 'had no choice': 373327, 'no choice but': 563806, 'choice but to': 177742, 'but to increase': 147587, 'to increase some': 908302, 'increase some of': 433074, 'our price we': 624453, 'price we hope': 677404, 'hope you understand': 403811, 'you understand that': 1021966, 'understand that our': 940729, 'that our supply': 845598, 'our supply chain': 625038, 'vast': 952697, 'majority': 509529, 'concrete': 193335, 'bunker': 142671, 'tinned': 898603, 'watching people': 968775, 'buy for': 148695, 'the vast': 870651, 'vast majority': 952709, 'majority of': 509547, 'be mild': 115934, 'mild common': 531325, 'common cold': 189367, 'cold like': 185768, 'like illness': 490479, 'don need': 253750, 'need year': 556249, 'paper you': 641124, 'need concrete': 554625, 'concrete bunker': 193336, 'bunker and': 142672, 'and load': 66274, 'of tinned': 592195, 'tinned food': 898608, 'food calm': 313862, 'calm down': 156717, 'watching people panic': 968776, 'people panic buy': 649054, 'panic buy for': 637483, 'buy for the': 148700, 'for the vast': 326762, 'the vast majority': 870652, 'vast majority of': 952710, 'majority of covid': 509553, '19 will be': 12079, 'will be mild': 992557, 'be mild common': 115935, 'mild common cold': 531326, 'common cold like': 189368, 'cold like illness': 185769, 'like illness you': 490480, 'illness you don': 416414, 'you don need': 1018324, 'don need year': 253778, 'need year worth': 556250, 'worth of toilet': 1011418, 'toilet paper you': 921537, 'paper you don': 641128, 'don need concrete': 253757, 'need concrete bunker': 554626, 'concrete bunker and': 193337, 'bunker and load': 142673, 'and load of': 66276, 'load of tinned': 497286, 'of tinned food': 592196, 'tinned food calm': 898613, 'food calm down': 313863, 'inspired': 439834, 'for something': 325785, 'something completely': 784872, 'completely practical': 192333, 'practical the': 668487, 'the inspired': 858324, 'inspired toiletpaper': 439853, 'toiletpaper calculator': 921844, 'and now for': 67835, 'now for something': 574725, 'for something completely': 325787, 'something completely practical': 784873, 'completely practical the': 192334, 'practical the inspired': 668488, 'the inspired toiletpaper': 858325, 'inspired toiletpaper calculator': 439854, 'kuwait': 477985, 'corp': 207178, 'instructed': 440524, 'subsidiary': 815970, 'capital': 162634, 'pact': 633762, 'state run': 795910, 'run kuwait': 727691, 'kuwait petroleum': 477995, 'petroleum corp': 653811, 'corp ha': 207199, 'ha instructed': 370980, 'instructed all': 440525, 'all subsidiary': 44525, 'subsidiary to': 815977, 'cut capital': 223264, 'capital and': 162637, 'and operating': 68179, 'operating spending': 613107, 'an unprecedented': 56878, 'unprecedented fall': 943139, 'price caused': 673093, 'global oil': 352046, 'oil supply': 597460, 'cut pact': 223478, 'pact and': 633763, 'state run kuwait': 795912, 'run kuwait petroleum': 727692, 'kuwait petroleum corp': 477996, 'petroleum corp ha': 653812, 'corp ha instructed': 207200, 'ha instructed all': 370981, 'instructed all subsidiary': 440526, 'all subsidiary to': 44526, 'subsidiary to cut': 815978, 'to cut capital': 903869, 'cut capital and': 223265, 'capital and operating': 162639, 'and operating spending': 68183, 'operating spending this': 613108, 'spending this year': 789016, 'due to an': 261701, 'to an unprecedented': 900475, 'an unprecedented fall': 56888, 'unprecedented fall in': 943140, 'fall in oil': 296957, 'oil price caused': 597074, 'price caused by': 673094, 'by the collapse': 154286, 'collapse of global': 186038, 'of global oil': 584155, 'global oil supply': 352053, 'oil supply cut': 597462, 'supply cut pact': 825136, 'cut pact and': 223479, 'pact and the': 633764, 'and the spread': 73590, 'slay': 773724, 'comfort': 187817, 'lockdownuknow': 500443, '5baje5minute': 20624, 'lockdownsouthafrica': 500382, 'coronaupdatesinindia': 205345, 'janatacurfew': 464484, 'safe healthy': 729744, 'and slay': 71740, 'slay through': 773727, 'pandemic by': 635069, 'by shopping': 153988, 'the comfort': 851186, 'comfort of': 187849, 'home lockdownuknow': 401547, 'lockdownuknow 19': 500444, '19 5baje5minute': 4751, '5baje5minute lockdownsouthafrica': 20625, 'lockdownsouthafrica stayathome': 500385, 'stayathome coronaupdatesinindia': 797463, 'coronaupdatesinindia lockdown': 205346, 'lockdown janatacurfew': 499575, 'stay safe healthy': 797242, 'safe healthy and': 729745, 'healthy and slay': 387532, 'and slay through': 71741, 'slay through this': 773728, 'this pandemic by': 889376, 'pandemic by shopping': 635077, 'by shopping online': 153996, 'shopping online in': 763446, 'online in the': 608403, 'in the comfort': 429082, 'the comfort of': 851189, 'comfort of your': 187851, 'of your home': 593486, 'your home lockdownuknow': 1024361, 'home lockdownuknow 19': 401548, 'lockdownuknow 19 5baje5minute': 500445, '19 5baje5minute lockdownsouthafrica': 4752, '5baje5minute lockdownsouthafrica stayathome': 20626, 'lockdownsouthafrica stayathome coronaupdatesinindia': 500386, 'stayathome coronaupdatesinindia lockdown': 797464, 'coronaupdatesinindia lockdown janatacurfew': 205347, 'tribute': 931680, 'fantastic': 298577, 'football': 318481, 'resume': 717726, 'portman': 665047, 'ticket': 895583, 'honour': 403285, 'town have': 927482, 'have pledged': 381958, 'pledged to': 660867, 'to pay': 911507, 'pay tribute': 645197, 'tribute to': 931685, 'the fantastic': 854919, 'fantastic work': 298616, 'work of': 1005513, 'others playing': 621584, 'playing leading': 659422, 'leading role': 483736, 'the battle': 849344, 'battle against': 112772, 'when football': 983441, 'football resume': 318508, 'resume at': 717731, 'at portman': 100163, 'portman road': 665048, 'road plan': 724493, 'plan include': 658155, 'include free': 431562, 'free ticket': 332226, 'ticket and': 895592, 'and guard': 64024, 'guard of': 367823, 'of honour': 584739, 'honour for': 403295, 'for frontline': 321778, 'frontline nh': 338792, 'town have pledged': 927483, 'have pledged to': 381959, 'pledged to pay': 660871, 'to pay tribute': 911569, 'pay tribute to': 645198, 'tribute to the': 931687, 'to the fantastic': 916697, 'the fantastic work': 854921, 'fantastic work of': 298618, 'work of the': 1005522, 'the nh supermarket': 861764, 'nh supermarket worker': 562126, 'worker and others': 1006321, 'and others playing': 68453, 'others playing leading': 621585, 'playing leading role': 659423, 'leading role in': 483737, 'role in the': 725101, 'in the battle': 429012, 'the battle against': 849345, 'battle against covid': 112773, '19 when football': 12018, 'when football resume': 983442, 'football resume at': 318509, 'resume at portman': 717732, 'at portman road': 100164, 'portman road plan': 665049, 'road plan include': 724494, 'plan include free': 658156, 'include free ticket': 431564, 'free ticket and': 332227, 'ticket and guard': 895594, 'and guard of': 64026, 'guard of honour': 367824, 'of honour for': 584740, 'honour for frontline': 403296, 'for frontline nh': 321779, 'frontline nh worker': 338796, 'boosting': 135062, 'met': 529558, 'food manufacturer': 315372, 'manufacturer have': 513459, 'have responded': 382292, 'buying sparked': 151068, 'sparked by': 787571, 'by boosting': 151976, 'boosting production': 135080, 'production by': 681946, 'by up': 154638, '50 ensuring': 19681, 'ensuring demand': 278170, 'is met': 449638, 'food manufacturer have': 315375, 'manufacturer have responded': 513466, 'have responded to': 382296, 'to the increase': 916802, 'increase in consumer': 432824, 'in consumer buying': 421687, 'consumer buying sparked': 196710, 'buying sparked by': 151069, 'sparked by covid': 787572, '19 by boosting': 5553, 'by boosting production': 151977, 'boosting production by': 135081, 'production by up': 681954, 'by up to': 154639, 'to 50 ensuring': 899738, '50 ensuring demand': 19682, 'ensuring demand is': 278171, 'demand is met': 235733, 'stretched': 813570, 'thin': 884046, 'faster': 300079, 'have role': 382349, 'role to': 725134, 'to play': 911785, 'play during': 659138, 'be helping': 115215, 'helping out': 391420, 'at drive': 98494, 'through testing': 894709, 'testing site': 839634, 'site healthcare': 771944, 'healthcare first': 387113, 'responder and': 715405, 'will definitely': 993135, 'definitely be': 232307, 'be stretched': 117392, 'stretched thin': 813575, 'thin so': 884068, 'let all': 486546, 'part stay': 642426, 'this faster': 887519, 'all have role': 43060, 'have role to': 382350, 'role to play': 725137, 'to play during': 911789, 'play during this': 659140, 'this pandemic and': 889367, 'pandemic and today': 634914, 'and today will': 74230, 'today will be': 920540, 'will be helping': 992496, 'be helping out': 115218, 'helping out at': 391422, 'out at drive': 625741, 'at drive through': 98495, 'drive through testing': 259187, 'through testing site': 894710, 'testing site healthcare': 839639, 'site healthcare first': 771945, 'healthcare first responder': 387114, 'first responder and': 308928, 'responder and grocery': 715412, 'store worker will': 811625, 'worker will definitely': 1008247, 'will definitely be': 993136, 'definitely be stretched': 232312, 'be stretched thin': 117394, 'stretched thin so': 813577, 'thin so let': 884069, 'so let all': 777537, 'let all do': 486554, 'our part stay': 624266, 'part stay home': 642427, 'stay home to': 797016, 'home to get': 402321, 'through this faster': 894815, 'deciding': 230960, 'transfer': 929500, 'little on': 495497, 'at moment': 99763, 'moment compared': 535903, 'normal yet': 567425, 'yet we': 1016312, 'still getting': 800562, 'getting customer': 348925, 'customer picking': 222687, 'stuff then': 815207, 'then deciding': 877110, 'deciding later': 230961, 'later they': 481137, 'need want': 556170, 'want it': 965831, 'and leaving': 66066, 'leaving it': 485100, 'it distance': 457590, 'distance from': 246708, 'from where': 338353, 'where they': 985270, 'they got': 882220, 'got it': 358643, 'it we': 462273, 'put it': 690638, 'back transfer': 107420, 'transfer of': 929519, 'so little on': 777560, 'little on supermarket': 495499, 'supermarket shelf at': 822432, 'shelf at moment': 756849, 'at moment compared': 99764, 'moment compared to': 535904, 'compared to normal': 191432, 'to normal yet': 910670, 'normal yet we': 567427, 'yet we are': 1016313, 'are still getting': 90427, 'still getting customer': 800564, 'getting customer picking': 348927, 'customer picking up': 222688, 'up stuff then': 946090, 'stuff then deciding': 815208, 'then deciding later': 877111, 'deciding later they': 230962, 'later they do': 481138, 'not need want': 570679, 'need want it': 556173, 'want it and': 965833, 'it and leaving': 456500, 'and leaving it': 66067, 'leaving it distance': 485101, 'it distance from': 457591, 'distance from where': 246721, 'from where they': 338356, 'where they got': 985280, 'they got it': 882225, 'got it we': 358655, 'it we have': 462277, 'have to put': 383269, 'to put it': 912593, 'put it back': 690640, 'it back transfer': 456675, 'back transfer of': 107421, 'transfer of germ': 929522, 'swipe': 830423, 'jack': 464100, 'quarantineandchill': 692750, 'zombieapocalypse': 1027735, 'quarantine chronicle': 692085, 'chronicle article': 178253, 'article swipe': 94473, 'swipe jack': 830426, 'jack quarantine': 464116, 'quarantine quarantineandchill': 692464, 'quarantineandchill quarantinelife': 692761, 'quarantinelife zombieapocalypse': 693050, 'zombieapocalypse toiletpaper': 1027736, 'toiletpapercrisis corona': 923015, 'quarantine chronicle article': 692086, 'chronicle article swipe': 178254, 'article swipe jack': 94474, 'swipe jack quarantine': 830427, 'jack quarantine quarantineandchill': 464117, 'quarantine quarantineandchill quarantinelife': 692465, 'quarantineandchill quarantinelife zombieapocalypse': 692764, 'quarantinelife zombieapocalypse toiletpaper': 693051, 'zombieapocalypse toiletpaper toiletpapercrisis': 1027737, 'toiletpaper toiletpapercrisis corona': 922653, 'houstonlockdown': 407234, 'if could': 414005, 'could ask': 208822, 'ask everyone': 95519, 'everyone member': 287183, 'family work': 298397, 'not given': 569650, 'given mask': 351042, 'or glove': 615468, 'glove to': 352968, 'safe please': 729888, 'let push': 486997, 'push to': 690329, 'let them': 487147, 'them do': 875608, 'can stay': 159734, 'virus free': 958203, 'free houstonlockdown': 331912, 'if could ask': 414006, 'could ask everyone': 208824, 'ask everyone member': 95520, 'everyone member of': 287184, 'of my family': 586762, 'my family work': 548238, 'family work at': 298398, 'work at grocery': 1004872, 'store and are': 806196, 'and are not': 58335, 'are not given': 88379, 'not given mask': 569654, 'given mask or': 351044, 'mask or glove': 519069, 'or glove to': 615480, 'glove to stay': 352976, 'stay safe please': 797265, 'safe please let': 729889, 'please let push': 660185, 'let push to': 486998, 'push to let': 690331, 'to let them': 909219, 'let them do': 487150, 'them do that': 875611, 'do that so': 250227, 'that so they': 846361, 'they can stay': 881678, 'can stay safe': 159742, 'safe and virus': 729491, 'and virus free': 74975, 'virus free houstonlockdown': 958204, 'concise': 193299, 'summary': 817924, 'relation': 708660, 'consumerrights': 199758, 'together concise': 920747, 'concise summary': 193300, 'summary of': 817937, 'information in': 437864, 'in relation': 427369, 'relation to': 708672, 'consumer consumerrights': 196959, 'put together concise': 690935, 'together concise summary': 920748, 'concise summary of': 193301, 'summary of information': 817939, 'of information in': 585194, 'information in relation': 437867, 'in relation to': 427370, 'relation to your': 708680, 'to your right': 919023, 'right consumer consumerrights': 721847, 'feel so': 302853, 'so sick': 778211, 'sick think': 768632, 'll drive': 496720, 'drive find': 259055, 'find grocery': 306947, 'and sneeze': 71822, 'sneeze on': 776259, 'everyone kidding': 287146, 'kidding seriously': 474215, 'seriously feel': 751605, 'feel great': 302651, 'great and': 362503, 'not driving': 569111, 'driving anywhere': 259897, 'anywhere chinesevirus': 81097, 'feel so sick': 302856, 'so sick think': 778215, 'sick think ll': 768633, 'think ll drive': 885377, 'll drive find': 496722, 'drive find grocery': 259056, 'find grocery store': 306949, 'store and sneeze': 806349, 'and sneeze on': 71825, 'sneeze on everyone': 776261, 'on everyone kidding': 600636, 'everyone kidding seriously': 287147, 'kidding seriously feel': 474216, 'seriously feel great': 751606, 'feel great and': 302652, 'great and not': 362505, 'and not driving': 67730, 'not driving anywhere': 569112, 'driving anywhere chinesevirus': 259898, 'deliveroo': 233570, 'vital': 959666, 'inews': 436436, 'deliveroo launch': 233576, 'launch essential': 481897, 'service across': 752031, 'uk letting': 938509, 'letting customer': 487401, 'customer order': 222658, 'order vital': 618744, 'vital good': 959689, 'good during': 356986, 'the inews': 858211, 'deliveroo launch essential': 233577, 'launch essential service': 481899, 'essential service across': 281495, 'service across the': 752032, 'across the uk': 29530, 'the uk letting': 870244, 'uk letting customer': 938510, 'letting customer order': 487402, 'customer order vital': 222660, 'order vital good': 618745, 'vital good during': 959690, 'good during the': 356989, 'during the inews': 263143, 'refrain': 706739, 'south african': 786668, 'african have': 35200, 'been urged': 122306, 'urged to': 948283, 'to refrain': 913074, 'refrain from': 706740, 'from panic': 336841, 'buying fear': 150276, 'fear over': 301273, 'the hike': 857366, 'hike told': 396288, 'good council': 356924, 'council of': 210009, 'of south': 589941, 'africa why': 35153, 'why there': 991438, 'stockpile watch': 803815, 'watch the': 968537, 'full video': 340963, 'south african have': 786674, 'african have been': 35201, 'have been urged': 379733, 'been urged to': 122307, 'urged to refrain': 948292, 'to refrain from': 913075, 'refrain from panic': 706747, 'from panic buying': 336843, 'panic buying fear': 637726, 'buying fear over': 150277, 'fear over the': 301279, 'over the hike': 630731, 'the hike told': 857368, 'hike told the': 396289, 'told the consumer': 923703, 'the consumer good': 851541, 'consumer good council': 197609, 'good council of': 356926, 'council of south': 210016, 'of south africa': 589942, 'south africa why': 786664, 'africa why there': 35154, 'why there is': 991441, 'to stockpile watch': 915485, 'stockpile watch the': 803816, 'watch the full': 968544, 'the full video': 856026, 'grocerystore': 366293, 'store brand': 806760, 'brand want': 138065, 'pay me': 644989, 'to walk': 918297, 'walk through': 964888, 'through aisle': 894304, 'aisle and': 40188, 'and tell': 73091, 'you what': 1022268, 'what product': 982056, 'product are': 680927, 'so shitty': 778200, 'shitty they': 759385, 'can even': 158245, 'even be': 283859, 'be sold': 117280, 'sold when': 781801, 'when there': 984222, 'is literally': 449387, 'literally nothing': 495052, 'nothing else': 572991, 'else left': 271776, 'left in': 485509, 'aisle available': 40218, 'available grocerystore': 104411, 'grocery store brand': 365254, 'store brand want': 806761, 'brand want to': 138066, 'want to pay': 966080, 'to pay me': 911542, 'pay me to': 644991, 'me to walk': 523797, 'to walk through': 918308, 'walk through aisle': 964890, 'through aisle and': 894305, 'aisle and tell': 40197, 'and tell you': 73100, 'tell you what': 837157, 'you what product': 1022270, 'what product are': 982057, 'product are so': 680949, 'are so shitty': 90218, 'so shitty they': 778201, 'shitty they can': 759386, 'they can even': 881629, 'can even be': 158246, 'even be sold': 283862, 'be sold when': 117290, 'sold when there': 781802, 'when there is': 984227, 'there is literally': 878584, 'is literally nothing': 449393, 'literally nothing else': 495053, 'nothing else left': 572994, 'else left in': 271777, 'left in the': 485520, 'in the aisle': 428975, 'the aisle available': 848515, 'aisle available grocerystore': 40219, 'milano': 531319, 'milano the': 531322, 'for getting': 321863, 'getting in': 349053, '10 people': 1609, 'time they': 897896, 'waiting at': 964295, 'at arm': 98046, 'arm distance': 92890, 'distance 19': 246617, 'milano the line': 531323, 'line for getting': 493103, 'for getting in': 321867, 'getting in the': 349057, 'supermarket no more': 821610, 'no more than': 564823, 'than 10 people': 840150, '10 people at': 1611, 'people at the': 647183, 'same time they': 733369, 'time they are': 897898, 'they are waiting': 881454, 'are waiting at': 91517, 'waiting at arm': 964296, 'at arm distance': 98047, 'arm distance 19': 92891, 'catching': 167067, 'flocking': 310685, 'shouldnt': 766756, 'seriously though': 751763, 'though if': 892829, 'if at': 413879, 'risk catching': 723448, 'catching covid': 167083, '19 working': 12178, 'where everyone': 984864, 'their dog': 873054, 'dog are': 252037, 'are flocking': 86602, 'flocking to': 310686, 'to shouldnt': 914542, 'shouldnt be': 766757, 'be getting': 114999, 'getting hazard': 349028, 'seriously though if': 751765, 'though if at': 892830, 'if at higher': 413881, 'higher risk catching': 395726, 'risk catching covid': 723449, 'catching covid 19': 167084, 'covid 19 working': 214088, '19 working in': 12180, 'in supermarket where': 428713, 'supermarket where everyone': 823817, 'where everyone and': 984865, 'everyone and their': 286702, 'and their dog': 73683, 'their dog are': 873055, 'dog are flocking': 252038, 'are flocking to': 86603, 'flocking to shouldnt': 310689, 'to shouldnt be': 914543, 'shouldnt be getting': 766758, 'be getting hazard': 115003, 'getting hazard pay': 349029, 'km': 475939, 'it city': 457141, 'city just': 179220, 'just 15': 468101, '15 km': 3756, 'km away': 475940, 'where live': 984984, 'live too': 496079, 'too bad': 924594, 'bad the': 108030, 'the club': 851077, 'club is': 184447, 'to really': 912863, 'really good': 702233, 'food good': 314689, 'good price': 357581, 'it city just': 457142, 'city just 15': 179221, 'just 15 km': 468103, '15 km away': 3757, 'km away from': 475941, 'away from where': 105923, 'from where live': 338355, 'where live too': 984995, 'live too bad': 496080, 'too bad the': 924600, 'bad the club': 108031, 'the club is': 851082, 'club is now': 184450, 'is now closed': 450271, 'now closed due': 574399, 'due to really': 261920, 'to really good': 912866, 'really good food': 702235, 'good food good': 357060, 'food good price': 314690, 'wasn': 967949, '10x12': 2419, 'knew there': 476082, 'wa some': 963273, 'some concern': 782580, 'about but': 24906, 'it wasn': 462251, 'wasn until': 968041, 'until went': 943931, 'earlier today': 264499, 'today that': 920263, 'it hit': 458595, 'me saw': 523417, 'saw woman': 738327, 'woman with': 1003694, 'with pack': 1000052, 'of 10x12': 579328, '10x12 toilet': 2420, 'took everything': 925234, 'in me': 425202, 'walk up': 964911, 'to her': 907686, 'her and': 391841, 'and say': 70990, 'say hey': 738749, 'hey do': 394358, 'you really': 1020832, 'really need': 702426, 'need that': 555722, 'that much': 845240, 'knew there wa': 476083, 'there wa some': 879274, 'wa some concern': 963276, 'some concern about': 782581, 'concern about but': 192889, 'about but it': 24909, 'but it wasn': 146179, 'it wasn until': 462264, 'wasn until went': 968042, 'until went to': 943932, 'the supermarket earlier': 868565, 'supermarket earlier today': 820074, 'earlier today that': 264504, 'today that it': 920270, 'that it hit': 844717, 'it hit me': 458596, 'hit me saw': 398321, 'me saw woman': 523419, 'saw woman with': 738333, 'woman with pack': 1003699, 'with pack of': 1000054, 'pack of 10x12': 633081, 'of 10x12 toilet': 579329, '10x12 toilet paper': 2421, 'paper and it': 639831, 'and it took': 65593, 'it took everything': 461801, 'took everything in': 925235, 'everything in me': 287850, 'in me not': 425205, 'not to walk': 572206, 'to walk up': 918310, 'walk up to': 964913, 'up to her': 946386, 'to her and': 907690, 'her and say': 391852, 'and say hey': 70996, 'say hey do': 738750, 'hey do you': 394360, 'do you really': 250668, 'you really need': 1020841, 'really need that': 702442, 'need that much': 555730, 'sifted': 769016, 'moscow': 541990, 'witnessed': 1003133, 'eastoffice': 265630, 'week consumer': 976101, 'behavior sifted': 124191, 'sifted dramatically': 769017, 'dramatically in': 258347, 'in moscow': 425460, 'moscow due': 541993, 'to growing': 907044, 'growing fear': 367194, 'the corona': 851765, 'virus hypermarket': 958306, 'hypermarket increased': 412338, 'their sale': 874622, 'sale more': 732360, 'than 50': 840255, '50 while': 19906, 'while bar': 986639, 'bar hotel': 110722, 'hotel restaurant': 405186, 'and cinema': 59890, 'cinema witnessed': 178556, 'witnessed major': 1003156, 'major loss': 509371, 'customer eastoffice': 222324, 'eastoffice russia': 265631, 'last week consumer': 480640, 'week consumer behavior': 976102, 'consumer behavior sifted': 196513, 'behavior sifted dramatically': 124192, 'sifted dramatically in': 769018, 'dramatically in moscow': 258348, 'in moscow due': 425462, 'moscow due to': 541994, 'due to growing': 261796, 'to growing fear': 907046, 'growing fear of': 367195, 'fear of the': 301262, 'of the corona': 590895, 'the corona virus': 851772, 'corona virus hypermarket': 204319, 'virus hypermarket increased': 958307, 'hypermarket increased their': 412339, 'increased their sale': 433503, 'their sale more': 874624, 'sale more than': 732361, 'more than 50': 540568, 'than 50 while': 840264, '50 while bar': 19907, 'while bar hotel': 986640, 'bar hotel restaurant': 110723, 'hotel restaurant and': 405187, 'restaurant and cinema': 716278, 'and cinema witnessed': 59893, 'cinema witnessed major': 178557, 'witnessed major loss': 1003157, 'major loss of': 509372, 'loss of customer': 503738, 'of customer eastoffice': 582270, 'customer eastoffice russia': 222325, 'hill': 396459, 'twp': 937424, 'pave': 644649, 'township': 927610, 'mine hill': 532896, 'hill twp': 396496, 'twp they': 937425, 'they accept': 881086, 'accept your': 28008, 'your tax': 1026113, 'tax and': 834923, 'and pave': 68791, 'pave your': 644650, 'your road': 1025644, 'road now': 724483, 'now township': 576217, 'township employee': 927613, 'employee will': 274440, 'will literally': 994027, 'literally run': 495068, 'those senior': 892445, 'senior afraid': 750183, 'afraid to': 35019, 'step out': 799610, '19 era': 6814, 'mine hill twp': 532897, 'hill twp they': 396497, 'twp they accept': 937426, 'they accept your': 881088, 'accept your tax': 28010, 'your tax and': 1026114, 'tax and pave': 834929, 'and pave your': 68792, 'pave your road': 644651, 'your road now': 1025645, 'road now township': 724484, 'now township employee': 576218, 'township employee will': 927614, 'employee will literally': 274443, 'will literally run': 994030, 'literally run to': 495069, 'to the store': 917099, 'the store for': 868022, 'store for those': 807849, 'for those senior': 327136, 'those senior afraid': 892446, 'senior afraid to': 750184, 'afraid to step': 35028, 'to step out': 915388, 'step out in': 799612, 'out in this': 626403, 'in this covid': 429924, 'covid 19 era': 213032, 'isolate': 454806, 'ourselves': 625450, 'so the': 778411, 'next online': 561490, 'shopping window': 764420, 'window available': 995665, 'at will': 101565, 'be after': 113528, 'after april': 35378, 'april so': 83684, 'to isolate': 908532, 'isolate ourselves': 454905, 'ourselves it': 625480, 'be interesting': 115522, 'interesting adult': 441496, 'adult in': 32828, 'house hope': 406344, 'hope we': 403763, 'can stand': 159719, 'stand to': 793589, 'fight in': 304776, 'for onlineshopping': 324117, 'so the next': 778432, 'the next online': 861684, 'next online shopping': 561491, 'online shopping window': 609348, 'shopping window available': 764421, 'window available at': 995666, 'available at will': 104265, 'at will be': 101566, 'will be after': 992348, 'be after april': 113529, 'after april so': 35379, 'april so if': 83685, 'if we have': 415287, 'have to isolate': 383231, 'to isolate ourselves': 908542, 'isolate ourselves it': 454906, 'ourselves it could': 625481, 'could be interesting': 208889, 'be interesting adult': 115523, 'interesting adult in': 441497, 'adult in the': 32830, 'the house hope': 857612, 'house hope we': 406345, 'hope we have': 403767, 'we have friend': 971822, 'friend who can': 333892, 'who can stand': 988408, 'can stand to': 159724, 'stand to fight': 793592, 'to fight in': 905794, 'fight in the': 304781, 'the shop for': 866995, 'shop for onlineshopping': 760195, 'jwj': 470540, 'graduated': 361724, '40 of': 18620, 'the dc': 852930, 'dc jwj': 228964, 'jwj staff': 470541, 'staff graduated': 792498, 'graduated from': 361725, 'from american': 334463, 'american university': 52278, 'of dc': 582391, 'staff believe': 792264, 'believe that': 126334, 'that school': 846155, 'school worker': 741995, 'deserve to': 238134, 'get full': 347123, 'and healthcare': 64370, 'healthcare during': 387089, 'covid emergency': 214157, 'emergency if': 272753, 'you fall': 1018512, 'fall into': 296971, 'into one': 442804, 'these category': 879726, 'category you': 167233, 'should sign': 766471, '40 of the': 18624, 'of the dc': 590929, 'the dc jwj': 852931, 'dc jwj staff': 228965, 'jwj staff graduated': 470543, 'staff graduated from': 792499, 'graduated from american': 361726, 'from american university': 334465, 'american university of': 52280, 'university of dc': 942446, 'of dc jwj': 582393, 'jwj staff believe': 470542, 'staff believe that': 792265, 'believe that school': 126348, 'that school worker': 846157, 'school worker deserve': 741996, 'worker deserve to': 1006767, 'deserve to get': 238137, 'to get full': 906489, 'get full pay': 347126, 'pay and healthcare': 644732, 'and healthcare during': 64375, 'healthcare during the': 387090, 'the covid emergency': 852233, 'covid emergency if': 214158, 'emergency if you': 272754, 'if you fall': 415434, 'you fall into': 1018513, 'fall into one': 296973, 'into one of': 442807, 'of these category': 591816, 'these category you': 879727, 'category you should': 167235, 'you should sign': 1021222, 'should sign the': 766472, 'vapers': 952475, 'savvy': 738021, 'confident': 193995, 'ecigs': 266644, 'publichealth': 688525, 'that fine': 843876, 'for existing': 321315, 'existing vapers': 290348, 'vapers who': 952479, 'are tech': 90755, 'tech savvy': 836143, 'savvy but': 738024, 'what if': 981619, 'to switch': 916098, 'switch for': 830488, 'for 1st': 318720, 'time need': 897252, 'need advice': 554371, 'and or': 68204, 'not confident': 568827, 'confident shopping': 194008, 'online vaping': 609663, 'vaping ecigs': 952491, 'ecigs publichealth': 266645, 'that fine for': 843878, 'fine for existing': 307635, 'for existing vapers': 321317, 'existing vapers who': 290349, 'vapers who are': 952480, 'who are tech': 988235, 'are tech savvy': 90756, 'tech savvy but': 836144, 'savvy but what': 738025, 'but what if': 147790, 'what if you': 981643, 'you re trying': 1020779, 'trying to switch': 934886, 'to switch for': 916101, 'switch for 1st': 830489, 'for 1st time': 318722, '1st time need': 12816, 'time need advice': 897253, 'need advice and': 554372, 'advice and or': 33315, 'and or you': 68236, 'or you re': 617864, 're not confident': 699084, 'not confident shopping': 568828, 'confident shopping online': 194009, 'shopping online vaping': 763503, 'online vaping ecigs': 609664, 'vaping ecigs publichealth': 952492, 'adjustment': 32373, 'focuscamera': 311930, 've made': 953356, 'made some': 507954, 'some adjustment': 782261, 'adjustment to': 32381, 'warehouse please': 966751, 'any question': 79717, 'healthy focuscamera': 387620, '19 we ve': 11957, 'we ve made': 973685, 've made some': 953363, 'made some adjustment': 507955, 'some adjustment to': 782262, 'adjustment to our': 32383, 'to our retail': 911237, 'retail store and': 718606, 'store and warehouse': 806396, 'and warehouse please': 75182, 'warehouse please reach': 966752, 'reach out if': 699968, 'have any question': 379315, 'any question concern': 79718, 'question concern and': 693565, 'concern and stay': 192918, 'safe and healthy': 729452, 'and healthy focuscamera': 64388, 'deterioration': 239413, 'lockdown britain': 499204, 'britain see': 140439, 'see further': 745145, 'further deterioration': 342033, 'deterioration of': 239420, 'confidence retail': 193943, 'lockdown britain see': 499205, 'britain see further': 140440, 'see further deterioration': 745146, 'further deterioration of': 342034, 'deterioration of consumer': 239421, 'of consumer confidence': 581725, 'consumer confidence retail': 196916, 'showing': 767406, 'if once': 414534, 'week grocery': 976287, 'shopping give': 762785, 'you covid': 1018120, '19 anxiety': 5158, 'anxiety imagine': 78724, 'imagine what': 416820, 'it feel': 457968, 'like showing': 491188, 'showing up': 767547, 'up every': 944804, 'day supermarket': 228431, 'employee they': 274305, 'hero while': 394163, 'while many': 987032, 'of stayhome': 590092, 'stayhome they': 798205, 'of numerous': 587109, 'numerous people': 577144, 'if once week': 414535, 'once week grocery': 605792, 'week grocery shopping': 976288, 'grocery shopping give': 365027, 'shopping give you': 762787, 'give you covid': 350852, 'you covid 19': 1018121, 'covid 19 anxiety': 212636, '19 anxiety imagine': 5161, 'anxiety imagine what': 78725, 'imagine what it': 416821, 'what it feel': 981749, 'it feel like': 457974, 'feel like showing': 302744, 'like showing up': 491189, 'showing up every': 767551, 'up every day': 944806, 'every day supermarket': 285847, 'day supermarket employee': 228432, 'supermarket employee they': 820143, 'employee they are': 274307, 'they are hero': 881295, 'are hero while': 87142, 'hero while many': 394164, 'while many of': 987036, 'many of stayhome': 514388, 'of stayhome they': 590094, 'stayhome they are': 798206, 'they are one': 881348, 'one of numerous': 606757, 'of numerous people': 587110, 'super long': 818532, 'long supermarket': 501659, 'california video': 155600, 'super long supermarket': 818533, 'long supermarket queue': 501661, 'supermarket queue in': 822123, 'queue in california': 693956, 'in california video': 421151, 'willing': 995455, 'homemade': 402813, 'detroitstrong': 239511, 'cashapp': 166383, 'ritualsbiinky': 724162, 'to working': 918817, 'with anyone': 997283, 'anyone willing': 80644, 'willing to': 995460, 'help our': 390220, 'community detroit': 189813, 'detroit and': 239496, 'and metro': 66974, 'metro detroit': 529916, 'detroit make': 239504, 'make homemade': 509988, 'homemade hand': 402834, 'sanitizer but': 734604, 'need product': 555478, 'help follow': 389738, 'follow me': 312457, 'me detroitstrong': 522646, 'detroitstrong cashapp': 239512, 'cashapp ritualsbiinky': 166388, 'forward to working': 330046, 'to working with': 918822, 'working with anyone': 1009051, 'with anyone willing': 997286, 'anyone willing to': 80645, 'willing to help': 995470, 'to help me': 907560, 'me help our': 522887, 'help our community': 390224, 'our community detroit': 622457, 'community detroit and': 189814, 'detroit and metro': 239497, 'and metro detroit': 66975, 'metro detroit make': 529917, 'detroit make homemade': 239506, 'make homemade hand': 509989, 'homemade hand sanitizer': 402835, 'hand sanitizer but': 375332, 'sanitizer but need': 734611, 'but need product': 146455, 'need product please': 555480, 'product please help': 681528, 'please help follow': 660067, 'help follow me': 389739, 'follow me detroitstrong': 312459, 'me detroitstrong cashapp': 522647, 'detroitstrong cashapp ritualsbiinky': 239513, 'responds': 715593, 'case continues': 165694, 'rise try': 723045, 'panic your': 638820, 'system responds': 831302, 'responds to': 715596, 'how you': 409268, 'so eat': 776934, 'regularly with': 707975, 'soap under': 779142, 'under running': 940231, 'running water': 728127, 'water even': 968983, 'of case continues': 581167, 'case continues to': 165695, 'continues to rise': 201492, 'to rise try': 913581, 'rise try not': 723046, 'to panic your': 911436, 'panic your immune': 638822, 'immune system responds': 417350, 'system responds to': 831303, 'responds to how': 715598, 'to how you': 908032, 'how you feel': 409283, 'you feel so': 1018544, 'feel so eat': 302855, 'so eat good': 776935, 'good food wash': 357066, 'hand regularly with': 375205, 'regularly with soap': 707979, 'with soap under': 1000807, 'soap under running': 779143, 'under running water': 940233, 'running water even': 728130, 'water even when': 968984, 'even when you': 284789, 'when you are': 984538, 'eminating': 273182, 'livid': 496301, 'spot on': 790083, 'on have': 601245, 'have smoke': 382595, 'smoke eminating': 775859, 'eminating right': 273183, 'now livid': 575229, 'livid stophoarding': 496306, 'stophoarding stayathome': 805469, 'spot on have': 790087, 'on have smoke': 601246, 'have smoke eminating': 382596, 'smoke eminating right': 775860, 'eminating right now': 273184, 'right now livid': 722097, 'now livid stophoarding': 575230, 'livid stophoarding stayathome': 496307, 'home no': 401660, 'no social': 565545, 'social gathering': 779790, 'gathering shopping': 344508, 'online sanitizer': 608929, 'sanitizer washing': 736031, 'hand and': 374748, 'cleaning surface': 181092, 'surface staying': 828072, 'staying healthy': 798595, 'and eating': 61880, 'eating healthy': 266223, 'healthy at': 387535, 'home 19': 400534, 'staying home no': 798615, 'home no social': 401665, 'no social gathering': 565548, 'social gathering shopping': 779794, 'gathering shopping online': 344509, 'shopping online sanitizer': 763476, 'online sanitizer washing': 608930, 'sanitizer washing hand': 736032, 'washing hand and': 967665, 'hand and cleaning': 374754, 'and cleaning surface': 59950, 'cleaning surface staying': 181093, 'surface staying healthy': 828073, 'staying healthy and': 798596, 'healthy and eating': 387520, 'and eating healthy': 61882, 'eating healthy at': 266225, 'healthy at home': 387537, 'at home 19': 98927, 'haunting': 379038, 'soundbite': 786344, 'interstellar': 442147, 'globalpandemic': 352423, 'the shopper': 867047, 'shopper on': 761633, 'my instacart': 548861, 'instacart app': 439913, 'app alert': 81669, 'alert me': 41462, 'grocery item': 364647, 'item is': 463382, 'longer in': 501996, 'stock all': 801776, 'can think': 159986, 'about is': 25549, 'this haunting': 887871, 'haunting soundbite': 379043, 'soundbite from': 786345, 'from interstellar': 336073, 'interstellar food': 442148, 'food globalpandemic': 314669, 'globalpandemic stayhome': 352427, 'every time the': 286319, 'time the shopper': 897875, 'the shopper on': 867052, 'shopper on my': 761634, 'on my instacart': 602290, 'my instacart app': 548862, 'instacart app alert': 439914, 'app alert me': 81670, 'alert me that': 41463, 'me that grocery': 523613, 'that grocery item': 844086, 'grocery item is': 364658, 'item is no': 463386, 'is no longer': 449947, 'no longer in': 564652, 'longer in stock': 501999, 'in stock all': 428280, 'stock all can': 801777, 'all can think': 42287, 'can think about': 159987, 'think about is': 885088, 'about is this': 25556, 'is this haunting': 453094, 'this haunting soundbite': 887872, 'haunting soundbite from': 379044, 'soundbite from interstellar': 786346, 'from interstellar food': 336074, 'interstellar food globalpandemic': 442149, 'food globalpandemic stayhome': 314670, 'wayspeoplearetheworst': 970225, 'toiletrollchallenge': 923387, 'toiletpaperemergency': 923133, 'rabbit are': 695140, 'are full': 86721, 'of sh': 589554, 'sh because': 754285, 'using them': 950735, 'to wipe': 918619, 'wipe their': 996385, 'their because': 872571, 'because their': 119659, 'their is': 873684, 'paper wayspeoplearetheworst': 641062, 'wayspeoplearetheworst toiletpaper': 970228, 'toiletpapercrisis toiletrollchallenge': 923122, 'toiletrollchallenge toiletpaperapocalypse': 923395, 'toiletpaperapocalypse toiletpaperpanic': 922948, 'toiletpaperpanic toiletpapergate': 923287, 'toiletpapergate toiletpaperemergency': 923171, 'rabbit are full': 695141, 'are full of': 86730, 'full of sh': 340754, 'of sh because': 589555, 'sh because people': 754286, 'people are using': 647109, 'are using them': 91435, 'using them to': 950740, 'them to wipe': 876531, 'to wipe their': 918628, 'wipe their because': 996387, 'their because their': 872572, 'because their is': 119661, 'their is no': 873685, 'is no toilet': 449985, 'toilet paper wayspeoplearetheworst': 921519, 'paper wayspeoplearetheworst toiletpaper': 641063, 'wayspeoplearetheworst toiletpaper toiletpapercrisis': 970229, 'toiletpaper toiletpapercrisis toiletrollchallenge': 922673, 'toiletpapercrisis toiletrollchallenge toiletpaperapocalypse': 923123, 'toiletrollchallenge toiletpaperapocalypse toiletpaperpanic': 923397, 'toiletpaperapocalypse toiletpaperpanic toiletpapergate': 922950, 'toiletpaperpanic toiletpapergate toiletpaperemergency': 923290, 'xbox': 1013779, 'playstation': 659498, 'steam': 799275, 'stadium': 792054, 'noballs': 565961, 'leafyishere': 483838, 'ps4': 687375, 'time it': 897074, 'it hard': 458482, 'find friend': 306926, 'friend in': 333646, 'outside world': 629652, 'play you': 659259, 'you certainly': 1017911, 'certainly can': 170139, 'can xbox': 160260, 'xbox one': 1013786, 'one playstation': 606886, 'playstation steam': 659501, 'steam and': 799278, 'and stadium': 72186, 'stadium add': 792055, 'add me': 31447, 'me toiletpaper': 523810, 'toiletpaper noballs': 922260, 'noballs leafyishere': 565962, 'leafyishere corona': 483839, 'corona ps4': 204119, 'these time it': 880841, 'time it hard': 897080, 'it hard to': 458491, 'hard to find': 378064, 'to find friend': 905901, 'find friend in': 306927, 'friend in the': 333661, 'in the outside': 429427, 'the outside world': 862751, 'outside world so': 629654, 'want to play': 966082, 'to play you': 911809, 'play you certainly': 659260, 'you certainly can': 1017912, 'certainly can xbox': 170141, 'can xbox one': 160261, 'xbox one playstation': 1013787, 'one playstation steam': 606887, 'playstation steam and': 659502, 'steam and stadium': 799279, 'and stadium add': 72187, 'stadium add me': 792056, 'add me toiletpaper': 31448, 'me toiletpaper noballs': 523813, 'toiletpaper noballs leafyishere': 922261, 'noballs leafyishere corona': 565963, 'leafyishere corona ps4': 483840, 'cbdc': 168334, 'econ': 266921, 'distributional': 248264, 'implication': 418541, 'approach': 82924, 'can 19': 157342, 'up central': 944588, 'central bank': 169369, 'bank decision': 109753, 'on cbdc': 599846, 'cbdc econ': 168335, 'econ boosting': 266922, 'boosting consumer': 135067, 'demand directly': 235239, 'directly is': 243563, 'more effective': 539107, 'effective and': 269216, 'better distributional': 128264, 'distributional implication': 248265, 'implication than': 418570, 'current approach': 221096, 'approach of': 82969, 'of boosting': 580784, 'boosting asset': 135065, 'can 19 speed': 157343, 'speed up central': 788473, 'up central bank': 944589, 'central bank decision': 169370, 'bank decision on': 109754, 'decision on cbdc': 231068, 'on cbdc econ': 599847, 'cbdc econ boosting': 168336, 'econ boosting consumer': 266923, 'boosting consumer demand': 135068, 'consumer demand directly': 197125, 'demand directly is': 235240, 'directly is likely': 243564, 'be more effective': 115973, 'more effective and': 539108, 'effective and have': 269219, 'and have better': 64227, 'have better distributional': 379776, 'better distributional implication': 128265, 'distributional implication than': 248266, 'implication than the': 418571, 'than the current': 841228, 'the current approach': 852610, 'current approach of': 221098, 'approach of boosting': 82970, 'of boosting asset': 580785, 'boosting asset price': 135066, 'statue': 796635, 'dat': 226091, 'monayy': 536211, 'pearl': 646163, 'everyonespoor': 287657, 'socialism': 780949, 'qurantine': 695030, 'statueslivingbetter': 796650, 'woman statue': 1003621, 'statue demand': 796639, 'demand food': 235355, 'food offering': 315584, 'offering bird': 595028, 'bird statue': 131352, 'demand dat': 235208, 'dat monayy': 226098, 'monayy pearl': 536212, 'pearl toiletpaper': 646166, '19 facemask': 6919, 'facemask virus': 295114, 'virus everyonespoor': 958168, 'everyonespoor socialdistanacing': 287658, 'socialdistanacing socialdistance': 780099, 'socialdistance socialism': 780163, 'socialism qurantine': 780973, 'qurantine hungry': 695031, 'hungry poor': 411301, 'poor potato': 664265, 'potato statueslivingbetter': 666984, 'woman statue demand': 1003622, 'statue demand food': 796641, 'demand food offering': 235364, 'food offering bird': 315585, 'offering bird statue': 595029, 'bird statue demand': 131353, 'statue demand dat': 796640, 'demand dat monayy': 235209, 'dat monayy pearl': 226099, 'monayy pearl toiletpaper': 536213, 'pearl toiletpaper 19': 646167, 'toiletpaper 19 facemask': 921672, '19 facemask virus': 6922, 'facemask virus everyonespoor': 295115, 'virus everyonespoor socialdistanacing': 958169, 'everyonespoor socialdistanacing socialdistance': 287659, 'socialdistanacing socialdistance socialism': 780100, 'socialdistance socialism qurantine': 780164, 'socialism qurantine hungry': 780974, 'qurantine hungry poor': 695032, 'hungry poor potato': 411302, 'poor potato statueslivingbetter': 664266, 'activated': 30226, 'operational': 613293, 'consumer member': 198119, 'member employee': 528069, 'employee safe': 274165, 're taking': 699647, 'taking additional': 833248, 'additional precaution': 31851, 'precaution to': 669380, 'ensure the': 278078, 'co op': 184908, 'op is': 611808, 'is prepared': 450990, 'keep the': 472021, 'to we': 918399, 've activated': 952804, 'activated our': 30229, 'emergency response': 272929, 'response plan': 715781, 'plan learn': 658162, 'about operational': 25857, 'operational change': 613298, 'change plan': 172228, 'keep our consumer': 471725, 'our consumer member': 622540, 'consumer member employee': 198120, 'member employee safe': 528070, 'employee safe we': 274171, 'safe we re': 730118, 'we re taking': 972982, 're taking additional': 699648, 'taking additional precaution': 833249, 'additional precaution to': 31852, 'precaution to ensure': 669382, 'to ensure the': 905195, 'ensure the co': 278081, 'the co op': 851104, 'co op is': 184913, 'op is prepared': 611809, 'is prepared to': 450991, 'prepared to keep': 670255, 'to keep the': 908863, 'keep the light': 472052, 'the light on': 859357, 'light on in': 489574, 'on in response': 601532, 'response to we': 715896, 'to we ve': 918408, 'we ve activated': 973633, 've activated our': 952805, 'activated our emergency': 30230, 'our emergency response': 622882, 'emergency response plan': 272931, 'response plan learn': 715783, 'plan learn about': 658163, 'learn about operational': 483935, 'about operational change': 25858, 'operational change plan': 613299, 'mama': 511918, 'sober': 779364, 'earring': 264951, 'clair': 179925, 'hedgehog': 388732, 'hedgielove': 388740, 'makingpeoplesmile': 511511, 'mama and': 511919, 'and made': 66503, 'new friend': 558772, 'friend at': 333524, 'store sober': 810242, 'sober toiletpaper': 779365, 'toiletpaper earring': 921938, 'earring love': 264957, 'love clair': 504636, 'clair hedgehog': 179926, 'hedgehog hedgielove': 388735, 'hedgielove makingpeoplesmile': 388741, 'makingpeoplesmile publix': 511512, 'publix quarantine': 688771, 'quarantine staysafe': 692577, 'mama and made': 511921, 'and made some': 66508, 'made some new': 507958, 'some new friend': 783349, 'new friend at': 558773, 'friend at the': 333531, 'the store sober': 868107, 'store sober toiletpaper': 810243, 'sober toiletpaper earring': 779366, 'toiletpaper earring love': 921939, 'earring love clair': 264958, 'love clair hedgehog': 504637, 'clair hedgehog hedgielove': 179927, 'hedgehog hedgielove makingpeoplesmile': 388736, 'hedgielove makingpeoplesmile publix': 388742, 'makingpeoplesmile publix quarantine': 511513, 'publix quarantine staysafe': 688772, '800': 22649, '44': 18996, 'colorado consumer': 186791, 'report any': 711801, 'any scam': 79772, 'fraud or': 331315, 'or price': 616689, 'gouging by': 359274, 'calling at': 156525, 'at 800': 97760, '800 22': 22656, '22 44': 15170, '44 or': 19013, 'colorado consumer can': 186792, 'consumer can report': 196726, 'can report any': 159446, 'report any scam': 711808, 'any scam fraud': 79773, 'scam fraud or': 740171, 'fraud or price': 331317, 'or price gouging': 616691, 'price gouging by': 674266, 'gouging by calling': 359277, 'by calling at': 152057, 'calling at 800': 156526, 'at 800 22': 97761, '800 22 44': 22657, '22 44 or': 15171, '44 or going': 19014, 'browsing': 141295, 'new deal': 558604, 'deal available': 229349, 'available everyday': 104344, 'everyday when': 286655, 'when browsing': 983209, 'browsing our': 141302, 'website make': 975351, 'you check': 1017930, 'our deal': 622709, 'deal of': 229444, 'day all': 227224, 'all great': 42998, 'great product': 362929, 'at fantastic': 98620, 'fantastic price': 298604, 'price shop': 676376, 'shop now': 760511, 'new deal available': 558605, 'deal available everyday': 229351, 'available everyday when': 104345, 'everyday when browsing': 286656, 'when browsing our': 983210, 'browsing our website': 141303, 'our website make': 625345, 'website make sure': 975352, 'sure you check': 827852, 'you check out': 1017934, 'out our deal': 626973, 'our deal of': 622710, 'deal of the': 229445, 'the day all': 852867, 'day all great': 227226, 'all great product': 43001, 'great product at': 362931, 'product at fantastic': 680966, 'at fantastic price': 98621, 'fantastic price shop': 298605, 'price shop now': 676378, 'shop now 19': 760512, '2009': 13705, 'pmd09': 662039, 'bet': 128057, 'that worked': 847659, 'worked at': 1006096, 'the 2009': 847995, '2009 h1n1': 13710, 'h1n1 pmd09': 369372, 'pmd09 pandemic': 662040, 'pandemic bet': 635002, 'bet you': 128128, 'even remember': 284522, 'remember that': 710272, 'that one': 845490, 'one despite': 606179, 'despite it': 238768, 'it being': 456824, 'being worse': 126071, 'what about the': 980992, 'about the people': 26476, 'the people that': 863508, 'people that worked': 649786, 'that worked at': 847660, 'worked at supermarket': 1006102, 'at supermarket during': 100719, 'during the 2009': 263082, 'the 2009 h1n1': 847997, '2009 h1n1 pmd09': 13711, 'h1n1 pmd09 pandemic': 369373, 'pmd09 pandemic bet': 662041, 'pandemic bet you': 635003, 'bet you do': 128129, 'not even remember': 569273, 'even remember that': 284523, 'remember that one': 710284, 'that one despite': 845493, 'one despite it': 606180, 'despite it being': 238769, 'it being worse': 456835, 'being worse than': 126072, 'worse than covid': 1011008, 'latent': 481003, 'revealed': 720259, 'beast': 118475, 'macroeconomic': 507482, 'deepen': 231937, 'summarizes': 817921, 'other latent': 620468, 'latent financial': 481004, 'financial problem': 306540, 'problem revealed': 679665, 'revealed by': 720261, 'business effect': 143688, '19 debt': 6458, 'all type': 45304, 'type growing': 937532, 'concern before': 192935, 'before potential': 123017, 'potential beast': 667020, 'beast now': 118493, 'now cautious': 574362, 'cautious government': 168222, 'government macroeconomic': 360332, 'macroeconomic action': 507483, 'action are': 29955, 'are needed': 88197, 'will deepen': 993125, 'deepen at': 231938, 'all level': 43370, 'level summarizes': 487720, 'other latent financial': 620469, 'latent financial problem': 481005, 'financial problem revealed': 306541, 'problem revealed by': 679666, 'revealed by the': 720263, 'by the business': 154274, 'the business effect': 850165, 'business effect of': 143689, 'covid 19 debt': 212919, '19 debt of': 6459, 'debt of all': 230527, 'of all type': 579992, 'all type growing': 45305, 'type growing concern': 937533, 'growing concern before': 367140, 'concern before potential': 192936, 'before potential beast': 123018, 'potential beast now': 667021, 'beast now cautious': 118494, 'now cautious government': 574363, 'cautious government macroeconomic': 168223, 'government macroeconomic action': 360333, 'macroeconomic action are': 507484, 'action are needed': 29961, 'are needed the': 88202, 'needed the crisis': 556518, 'the crisis will': 852482, 'crisis will deepen': 218408, 'will deepen at': 993126, 'deepen at all': 231939, 'at all level': 97892, 'all level summarizes': 43374, 'it saturday': 460873, 'saturday when': 737081, 'you spend': 1021318, 'spend longer': 788626, 'longer queuing': 502033, 'queuing to': 694236, 'and paying': 68811, 'paying to': 645512, 'get out': 347732, 'supermarket than': 823157, 'supermarket stayhomesavelives': 822941, 'know it saturday': 476540, 'it saturday when': 460874, 'saturday when you': 737082, 'when you spend': 984603, 'you spend longer': 1021323, 'spend longer queuing': 788627, 'longer queuing to': 502034, 'queuing to get': 694238, 'into supermarket and': 443033, 'supermarket and paying': 819036, 'and paying to': 68815, 'paying to get': 645513, 'to get out': 906552, 'get out of': 347739, 'the supermarket than': 868842, 'supermarket than you': 823167, 'than you do': 841488, 'you do in': 1018256, 'do in the': 249432, 'the supermarket stayhomesavelives': 868825, 'occasion': 578930, 'please can': 659759, 'the sector': 866611, 'sector rise': 744314, 'rise to': 723025, 'the occasion': 862027, 'occasion and': 578931, 'our three': 625136, 'three or': 894016, 'or four': 615382, 'four element': 330603, 'element will': 271348, 'enough talk': 277655, 'our vulnerable': 625290, 'vulnerable citizen': 960909, 'citizen healthy': 178906, 'please can the': 659762, 'can the sector': 159960, 'the sector rise': 866620, 'sector rise to': 744315, 'rise to the': 723038, 'to the occasion': 916914, 'the occasion and': 862028, 'occasion and help': 578932, 'and help our': 64459, 'help our three': 390239, 'our three or': 625137, 'three or four': 894017, 'or four element': 615383, 'four element will': 330604, 'element will not': 271349, 'not be enough': 568378, 'be enough talk': 114688, 'enough talk to': 277656, 'talk to and': 833870, 'to and keep': 900511, 'and keep our': 65771, 'keep our vulnerable': 471759, 'our vulnerable citizen': 625291, 'vulnerable citizen healthy': 960912, 'irish': 444884, 'terriblecustomerservice': 838458, 'uk uk': 938845, 'uk what': 938877, 'doe it': 251428, 'take to': 832730, 'get refund': 347906, 'for irish': 322658, 'irish customer': 444887, 'and reply': 70258, 'reply to': 711753, 'our email': 622877, 'email terriblecustomerservice': 272316, 'uk uk what': 938846, 'uk what doe': 938878, 'what doe it': 981366, 'doe it take': 251439, 'it take to': 461432, 'take to get': 832736, 'to get refund': 906574, 'get refund for': 347909, 'refund for irish': 706911, 'for irish customer': 322659, 'irish customer and': 444888, 'customer and reply': 222097, 'and reply to': 70259, 'reply to our': 711754, 'to our email': 911174, 'our email terriblecustomerservice': 622880, 'wiltshire': 995520, '300': 17277, 'dessert': 238944, 'homedeliveries': 402668, 'helpeachother': 391037, 'stuck for': 814583, 'meal idea': 524187, 'idea or': 413144, 'or just': 615873, 'need of': 555317, 'food with': 317639, 'current supermarket': 221387, 'shortage wiltshire': 765310, 'wiltshire farm': 995521, 'farm food': 299113, 'have over': 381854, 'over 300': 629824, '300 meal': 17319, 'meal and': 524091, 'and dessert': 61273, 'dessert available': 238945, 'available with': 104702, 'with free': 998532, 'free home': 331905, 'delivery shop': 234487, 'shop homedeliveries': 760287, 'homedeliveries selfisolation': 402671, 'selfisolation helpeachother': 748456, 'stuck for meal': 814584, 'for meal idea': 323354, 'meal idea or': 524188, 'idea or just': 413145, 'or just in': 615884, 'just in need': 469041, 'in need of': 425757, 'need of food': 555329, 'of food with': 583822, 'food with the': 317647, 'with the current': 1001258, 'the current supermarket': 852668, 'current supermarket shortage': 221390, 'supermarket shortage wiltshire': 822674, 'shortage wiltshire farm': 765311, 'wiltshire farm food': 995522, 'farm food have': 299114, 'food have over': 314788, 'have over 300': 381855, 'over 300 meal': 629826, '300 meal and': 17320, 'meal and dessert': 524092, 'and dessert available': 61274, 'dessert available with': 238946, 'available with free': 104704, 'with free home': 998536, 'free home delivery': 331906, 'home delivery shop': 401045, 'delivery shop homedeliveries': 234488, 'shop homedeliveries selfisolation': 760288, 'homedeliveries selfisolation helpeachother': 402672, 'cancelled': 161083, 'people asking': 647161, 'asking about': 95930, 'right when': 722414, 'when event': 983387, 'event are': 284949, 'are cancelled': 85159, 'cancelled or': 161148, 'service good': 752424, 'good can': 356863, 'be provided': 116594, 'provided see': 686645, 'see amp': 744890, 'of people asking': 587876, 'people asking about': 647162, 'asking about consumer': 95931, 'consumer right when': 198833, 'right when event': 722416, 'when event are': 983388, 'event are cancelled': 284951, 'are cancelled or': 85162, 'cancelled or service': 161150, 'or service good': 617017, 'service good can': 752425, 'good can be': 356864, 'can be provided': 157670, 'be provided see': 116597, 'provided see amp': 686646, 'behalf': 123751, 'on behalf': 599610, 'behalf of': 123752, 'of everyone': 583249, 'ha loved': 371193, 'one in': 606465, 'high risk': 395342, 'group or': 366821, 'just ha': 468892, 'ha heart': 370844, 'heart fuck': 388293, 'fuck you': 339694, 'you spring': 1021339, 'spring break': 791169, 'break moron': 138769, 'on behalf of': 599611, 'behalf of everyone': 123755, 'of everyone who': 583262, 'who ha loved': 988856, 'ha loved one': 371194, 'loved one in': 504914, 'one in the': 606485, 'in the high': 429266, 'the high risk': 857322, 'high risk group': 395357, 'risk group or': 723595, 'group or just': 366824, 'or just ha': 615882, 'just ha heart': 468894, 'ha heart fuck': 370845, 'heart fuck you': 388294, 'fuck you spring': 339706, 'you spring break': 1021340, 'spring break moron': 791176, 'syrian': 831048, 'rushed': 728357, 'resort': 714669, 'stricter': 813659, 'syrian rushed': 831058, 'rushed to': 728364, 'and fuel': 63388, 'fuel amid': 340113, 'amid fear': 52469, 'that authority': 842895, 'authority would': 103818, 'would resort': 1012191, 'resort to': 714676, 'to even': 905283, 'even stricter': 284614, 'stricter measure': 813666, 'measure after': 525070, 'after reporting': 36121, 'reporting the': 712767, 'first infection': 308728, 'infection in': 436770, 'country where': 211215, 'system ha': 831189, 'been decimated': 120928, 'by nearly': 153311, 'nearly decade': 553811, 'of civil': 581431, 'civil war': 179563, 'syrian rushed to': 831059, 'rushed to stock': 728367, 'on food and': 600840, 'food and fuel': 313239, 'and fuel amid': 63389, 'fuel amid fear': 340114, 'amid fear that': 52474, 'fear that authority': 301359, 'that authority would': 842896, 'authority would resort': 103819, 'would resort to': 1012192, 'resort to even': 714677, 'to even stricter': 905292, 'even stricter measure': 284615, 'stricter measure after': 813667, 'measure after reporting': 525071, 'after reporting the': 36123, 'reporting the first': 712769, 'the first infection': 855317, 'first infection in': 308729, 'infection in the': 436774, 'the country where': 852179, 'country where the': 211221, 'where the healthcare': 985231, 'healthcare system ha': 387309, 'system ha been': 831190, 'ha been decimated': 369768, 'been decimated by': 120929, 'decimated by nearly': 230981, 'by nearly decade': 153313, 'nearly decade of': 553812, 'decade of civil': 230693, 'of civil war': 581436, 'ester': 282223, 'vitaminc': 959819, 'reputation': 713116, 'circle': 178597, 'sanitised': 733899, 'oriented': 619516, 'eg': 269692, 'bigpharma': 130371, 'supplement': 824408, 'rightly': 722458, 'practitioner': 668792, 'same with': 733423, 'with ester': 998261, 'ester brand': 282224, 'brand vitaminc': 138063, 'vitaminc it': 959822, 'ha good': 370737, 'good reputation': 357652, 'reputation in': 713119, 'some circle': 782540, 'circle the': 178620, 'of sanitised': 589276, 'sanitised consumer': 733900, 'consumer oriented': 198292, 'oriented info': 619529, 'info eg': 437469, 'eg from': 269707, 'from bigpharma': 334694, 'bigpharma or': 130372, 'or supplement': 617293, 'supplement company': 824409, 'company should': 191074, 'be over': 116296, 'we rightly': 973107, 'rightly want': 722482, 'want the': 965955, 'full info': 340642, 'info practitioner': 437559, 'practitioner can': 668794, 'get auspol': 346622, 'auspol health': 103080, 'same with ester': 733425, 'with ester brand': 998262, 'ester brand vitaminc': 282225, 'brand vitaminc it': 138064, 'vitaminc it ha': 959823, 'it ha good': 458394, 'ha good reputation': 370741, 'good reputation in': 357653, 'reputation in some': 713120, 'in some circle': 428084, 'some circle the': 782541, 'circle the day': 178621, 'the day of': 852900, 'day of sanitised': 228099, 'of sanitised consumer': 589277, 'sanitised consumer oriented': 733901, 'consumer oriented info': 198297, 'oriented info eg': 619530, 'info eg from': 437470, 'eg from bigpharma': 269708, 'from bigpharma or': 334695, 'bigpharma or supplement': 130373, 'or supplement company': 617294, 'supplement company should': 824410, 'company should be': 191075, 'should be over': 765684, 'be over we': 116307, 'over we rightly': 630902, 'we rightly want': 973109, 'rightly want the': 722483, 'want the full': 965957, 'the full info': 856011, 'full info practitioner': 340643, 'info practitioner can': 437560, 'practitioner can get': 668795, 'can get auspol': 158406, 'get auspol health': 346623, 'gerrity': 346396, 'woman charged': 1003437, 'charged after': 173366, 'after allegedly': 35340, 'allegedly coughing': 45682, 'at gerrity': 98749, 'gerrity supermarket': 346397, 'supermarket coronavillains': 819804, 'coronavillains news': 205413, 'woman charged after': 1003438, 'charged after allegedly': 173367, 'after allegedly coughing': 35343, 'allegedly coughing on': 45684, 'coughing on food': 208717, 'on food at': 600841, 'food at gerrity': 313443, 'at gerrity supermarket': 98750, 'gerrity supermarket coronavillains': 346399, 'supermarket coronavillains news': 819805, 'kevin': 473199, 'takeaway': 832841, 'hairdresser': 374039, 'you kevin': 1019459, 'kevin wear': 473210, 'protect others': 684881, 'others transmission': 621743, 'transmission of': 929748, 'of will': 593163, 'be reduced': 116735, 'reduced in': 706099, 'place such': 657699, 'such supermarket': 816779, 'supermarket takeaway': 823128, 'takeaway hairdresser': 832869, 'hairdresser etc': 374040, 'etc if': 282599, 'if everyone': 414089, 'everyone wear': 287570, 'one especially': 606242, 'especially important': 280516, 'thank you kevin': 841761, 'you kevin wear': 1019460, 'kevin wear mask': 473211, 'wear mask to': 974408, 'mask to protect': 519419, 'to protect others': 912319, 'protect others transmission': 684886, 'others transmission of': 621744, 'transmission of will': 929756, 'of will be': 593165, 'will be reduced': 992637, 'be reduced in': 116738, 'reduced in public': 706100, 'public place such': 688234, 'place such supermarket': 657700, 'such supermarket takeaway': 816783, 'supermarket takeaway hairdresser': 823129, 'takeaway hairdresser etc': 832870, 'hairdresser etc if': 374041, 'etc if everyone': 282601, 'if everyone wear': 414099, 'everyone wear mask': 287571, 'wear mask if': 974389, 'you have one': 1019085, 'have one especially': 381786, 'one especially important': 606243, 'especially important for': 280518, 'reacted': 700154, 'confluence': 194273, 'technical': 836190, 'gld': 351657, 'price reacted': 676093, 'reacted to': 700159, 'to key': 908897, 'key confluence': 473256, 'confluence of': 194274, 'of technical': 590625, 'technical support': 836208, 'outlook fuel': 629159, 'fuel fear': 340170, 'of prolonged': 588532, 'prolonged outbreak': 683631, 'is xauusd': 454113, 'xauusd at': 1013769, 'it lowest': 459479, 'lowest get': 506168, 'your gld': 1024051, 'gld technical': 351662, 'technical analysis': 836191, 'analysis from': 57043, 'gold price reacted': 355971, 'price reacted to': 676094, 'reacted to key': 700162, 'to key confluence': 908899, 'key confluence of': 473257, 'confluence of technical': 194275, 'of technical support': 590626, 'technical support the': 836211, 'support the outlook': 826880, 'the outlook fuel': 862743, 'outlook fuel fear': 629160, 'fuel fear of': 340171, 'fear of prolonged': 301255, 'of prolonged outbreak': 588533, 'prolonged outbreak is': 683632, 'outbreak is xauusd': 628390, 'is xauusd at': 454114, 'xauusd at it': 1013770, 'at it lowest': 99330, 'it lowest get': 459480, 'lowest get your': 506169, 'get your gld': 348706, 'your gld technical': 1024052, 'gld technical analysis': 351663, 'technical analysis from': 836192, 'analysis from here': 57044, 'boneless': 134296, 'whichever': 986538, 'wing': 995967, 'flavor': 310233, 'daiquiri': 224940, '5005': 20075, 'cooper': 203117, 'arlington': 92872, 'tx': 937428, 'boneless or': 134299, 'or traditional': 617512, 'traditional whichever': 929025, 'whichever you': 986545, 'you prefer': 1020408, 'prefer our': 669743, 'our wing': 625384, 'wing pack': 995986, 'pack are': 633018, 'are packed': 88945, 'packed flavor': 633602, 'flavor amp': 310234, 'amp saving': 54445, 'saving for': 737871, 'for great': 322001, 'great taste': 363026, 'taste amp': 834773, 'amp price': 54328, 'you compare': 1017997, 'compare call': 191389, 'ahead amp': 39132, 'amp carry': 53503, 'out flavor': 626077, 'flavor wing': 310242, 'wing daiquiri': 995972, 'daiquiri 5005': 224941, '5005 cooper': 20076, 'cooper st': 203126, 'st arlington': 791683, 'arlington tx': 92873, 'boneless or traditional': 134300, 'or traditional whichever': 617513, 'traditional whichever you': 929026, 'whichever you prefer': 986546, 'you prefer our': 1020409, 'prefer our wing': 669744, 'our wing pack': 625385, 'wing pack are': 995987, 'pack are packed': 633019, 'are packed flavor': 88946, 'packed flavor amp': 633603, 'flavor amp saving': 310235, 'amp saving for': 54446, 'saving for great': 737872, 'for great taste': 322007, 'great taste amp': 363027, 'taste amp price': 834774, 'amp price you': 54331, 'price you compare': 677692, 'you compare call': 1017998, 'compare call ahead': 191390, 'call ahead amp': 155747, 'ahead amp carry': 39133, 'amp carry out': 53504, 'carry out flavor': 165138, 'out flavor wing': 626078, 'flavor wing daiquiri': 310243, 'wing daiquiri 5005': 995973, 'daiquiri 5005 cooper': 224942, '5005 cooper st': 20077, 'cooper st arlington': 203127, 'st arlington tx': 791684, 'institute': 440407, 'beating': 118613, 'punishment': 689252, 'traitor': 929379, 'stop me': 804828, 'me time': 523732, 're institute': 698904, 'institute public': 440428, 'public beating': 687892, 'beating public': 118625, 'public flogging': 688003, 'flogging maybe': 310696, 'maybe more': 521746, 'more severe': 540366, 'severe punishment': 754048, 'punishment for': 689255, 'for traitor': 327310, 'stop me time': 804833, 'me time to': 523735, 'time to re': 898039, 'to re institute': 912777, 're institute public': 698905, 'institute public beating': 440429, 'public beating public': 687893, 'beating public flogging': 118627, 'public flogging maybe': 688004, 'flogging maybe more': 310697, 'maybe more severe': 521747, 'more severe punishment': 540370, 'severe punishment for': 754049, 'punishment for traitor': 689257, 'pro': 679088, 'jersey': 465183, 'tcot': 835293, 'buildthewall': 142166, 'pjnet': 657237, 'evangelicals': 283746, 'uniteblue': 942133, 'p2': 632803, 'pro trump': 679139, 'trump new': 933722, 'new jersey': 558961, 'jersey man': 465217, 'who coughed': 988498, 'told her': 923564, 'her he': 392097, 'he had': 385040, 'had coronavirus': 372988, 'coronavirus held': 206066, 'held on': 388910, 'terror charge': 838586, 'charge tcot': 173314, 'tcot buildthewall': 835294, 'buildthewall christian': 142167, 'christian pjnet': 178126, 'pjnet evangelicals': 657238, 'evangelicals uniteblue': 283749, 'uniteblue p2': 942134, 'pro trump new': 679140, 'trump new jersey': 933723, 'new jersey man': 558977, 'jersey man who': 465219, 'man who coughed': 512324, 'who coughed on': 988500, 'coughed on supermarket': 208634, 'on supermarket worker': 603813, 'worker and told': 1006349, 'and told her': 74257, 'told her he': 923567, 'her he had': 392099, 'he had coronavirus': 385045, 'had coronavirus held': 372991, 'coronavirus held on': 206067, 'held on terror': 388913, 'on terror charge': 603908, 'terror charge tcot': 838590, 'charge tcot buildthewall': 173315, 'tcot buildthewall christian': 835295, 'buildthewall christian pjnet': 142168, 'christian pjnet evangelicals': 178127, 'pjnet evangelicals uniteblue': 657239, 'evangelicals uniteblue p2': 283750, 'bamy': 109154, 'merchandise': 528965, 'infrared': 438173, '3m': 18296, 'bamyglobal': 109157, '861577877688': 22986, 'whatspps': 982927, '8618607740759': 22992, '07063501522': 1024, '08028611855': 1110, 'kindly contact': 475114, 'contact bamy': 200030, 'bamy global': 109155, 'global merchandise': 352032, 'merchandise for': 528974, 'high quality': 395309, 'quality covid': 691776, '19 fast': 6943, 'fast test': 300045, 'kit wholesale': 475670, 'price gun': 674371, 'gun type': 368755, 'type infrared': 937541, 'infrared thermometer': 438176, 'thermometer face': 879516, 'mask 3m': 518267, '3m type': 18341, 'type face': 937524, 'mask kindly': 518902, 'kindly dm': 475119, 'dm or': 248912, 'or contact': 614800, 'contact bamyglobal': 200032, 'bamyglobal com': 109158, 'com 861577877688': 186912, '861577877688 whatspps': 22989, 'whatspps 8618607740759': 982928, '8618607740759 07063501522': 22993, '07063501522 08028611855': 1025, 'kindly contact bamy': 475115, 'contact bamy global': 200031, 'bamy global merchandise': 109156, 'global merchandise for': 352033, 'merchandise for high': 528975, 'for high quality': 322259, 'high quality covid': 395311, 'quality covid 19': 691777, 'covid 19 fast': 213076, '19 fast test': 6944, 'fast test kit': 300046, 'test kit wholesale': 839073, 'kit wholesale price': 475671, 'wholesale price gun': 990472, 'price gun type': 674372, 'gun type infrared': 368756, 'type infrared thermometer': 937542, 'infrared thermometer face': 438178, 'thermometer face mask': 879517, 'face mask 3m': 294510, 'mask 3m type': 518268, '3m type face': 18342, 'type face mask': 937525, 'face mask kindly': 294558, 'mask kindly dm': 518903, 'kindly dm or': 475120, 'dm or contact': 248914, 'or contact bamyglobal': 614801, 'contact bamyglobal com': 200033, 'bamyglobal com 861577877688': 109159, 'com 861577877688 whatspps': 186914, '861577877688 whatspps 8618607740759': 22990, 'whatspps 8618607740759 07063501522': 982929, '8618607740759 07063501522 08028611855': 22994, 'electricity': 271144, 'distinguish': 247871, 'no electricity': 564101, 'electricity supply': 271212, 'supply no': 825589, 'even buy': 283916, 'we cannot': 971046, 'cannot even': 161787, 'even distinguish': 284011, 'distinguish because': 247872, 'closed just': 183204, 'just wait': 470192, 'wait until': 964237, 'the boy': 849928, 'boy start': 137283, 'start getting': 794311, 'getting you': 349462, 'home maybe': 401599, 'maybe then': 521836, 'understand how': 940637, 'how dangerous': 407664, 'dangerous covid': 225731, 'is or': 450597, 'or not': 616285, 'no electricity supply': 564102, 'electricity supply no': 271213, 'supply no money': 825590, 'no money to': 564789, 'money to even': 537095, 'to even buy': 905285, 'even buy grocery': 283918, 'buy grocery and': 148747, 'grocery and food': 364236, 'and food that': 63099, 'food that we': 317104, 'that we cannot': 847367, 'we cannot even': 971056, 'cannot even distinguish': 161791, 'even distinguish because': 284012, 'distinguish because the': 247873, 'because the supermarket': 119652, 'supermarket is closed': 821075, 'is closed just': 446582, 'closed just wait': 183205, 'just wait until': 470196, 'wait until the': 964244, 'until the boy': 943848, 'the boy start': 849931, 'boy start getting': 137284, 'start getting you': 794312, 'getting you at': 349463, 'you at home': 1017335, 'at home maybe': 99046, 'home maybe then': 401600, 'maybe then you': 521838, 'then you understand': 877797, 'you understand how': 1021963, 'understand how dangerous': 940641, 'how dangerous covid': 407665, 'dangerous covid 19': 225732, '19 is or': 8019, 'is or not': 450600, 'not safe': 571417, 'safe for': 729675, 'it is not': 459023, 'is not safe': 450178, 'not safe for': 571419, 'safe for people': 729681, 'rwanda': 728732, 'coronavirus rwanda': 206693, 'rwanda fine': 728735, 'fine 44': 307596, '44 company': 19004, 'company for': 190673, 'price 19': 672112, 'coronavirus rwanda fine': 206694, 'rwanda fine 44': 728736, 'fine 44 company': 307597, '44 company for': 19005, 'company for hiking': 190674, 'hiking price 19': 396389, 'jacked': 464138, 'ripped': 722700, 'brit': 140325, 'moscowmitchslushfund': 542014, 'trumpslushfund': 934156, 'trumpvirus': 934177, 'trumplung': 934090, 'pandumbi': 637153, 'have drug': 380390, 'drug company': 260913, 'company done': 190610, 'done jacked': 254912, 'jacked price': 464141, 'price ripped': 676225, 'ripped off': 722703, 'off patient': 594052, 'patient lol': 644207, 'lol this': 500963, 'is your': 454130, 'your world': 1026389, 'world brit': 1009373, 'brit you': 140361, 'you made': 1019745, 'made this': 508017, 'this moscowmitchslushfund': 889045, 'moscowmitchslushfund trumpslushfund': 542015, 'trumpslushfund liar': 934157, 'liar trumppandemic': 487975, 'trumppandemic trumpvirus': 934116, 'trumpvirus trumplung': 934192, 'trumplung pandumbi': 934091, 'and what have': 75469, 'what have drug': 981576, 'have drug company': 380391, 'drug company done': 260916, 'company done jacked': 190611, 'done jacked price': 254913, 'jacked price ripped': 464142, 'price ripped off': 676226, 'ripped off patient': 722705, 'off patient lol': 594053, 'patient lol this': 644208, 'lol this is': 500966, 'this is your': 888476, 'is your world': 454173, 'your world brit': 1026390, 'world brit you': 1009374, 'brit you made': 140362, 'you made this': 1019746, 'made this moscowmitchslushfund': 508024, 'this moscowmitchslushfund trumpslushfund': 889046, 'moscowmitchslushfund trumpslushfund liar': 542016, 'trumpslushfund liar trumppandemic': 934158, 'liar trumppandemic trumpvirus': 487976, 'trumppandemic trumpvirus trumplung': 934117, 'trumpvirus trumplung pandumbi': 934193, 'siraj': 771688, 'chaudhry': 174036, 'md': 522253, 'to pandemic': 911364, 'pandemic may': 635938, 'may cause': 521070, 'cause temporary': 167747, 'temporary supply': 837708, 'supply disruption': 825170, 'disruption but': 246447, 'are enough': 86219, 'of commodity': 581565, 'commodity available': 189139, 'meet national': 527531, 'national demand': 552477, 'demand article': 235031, 'by siraj': 154027, 'siraj chaudhry': 771689, 'chaudhry md': 174037, 'md amp': 522254, 'amp ceo': 53509, 'due to pandemic': 261896, 'to pandemic may': 911370, 'pandemic may cause': 635940, 'may cause temporary': 521076, 'cause temporary supply': 167748, 'temporary supply disruption': 837709, 'supply disruption but': 825171, 'disruption but there': 246448, 'there are enough': 878100, 'are enough stock': 86220, 'stock of commodity': 802519, 'of commodity available': 581568, 'commodity available to': 189140, 'available to meet': 104650, 'to meet national': 910038, 'meet national demand': 527532, 'national demand article': 552478, 'demand article by': 235033, 'article by siraj': 94286, 'by siraj chaudhry': 154028, 'siraj chaudhry md': 771690, 'chaudhry md amp': 174038, 'md amp ceo': 522255, 'hiya': 398613, 'monster': 537453, 'liveinhope': 496186, 'hiya don': 398614, 'don supposed': 253945, 'supposed you': 827380, 'reduce rental': 705915, 'rental price': 711259, 'on sky': 603495, 'sky store': 773232, 'on movie': 602239, 'movie to': 544084, 'help keep': 389963, 'the little': 859484, 'little monster': 495455, 'monster entertained': 537458, 'entertained liveinhope': 278528, 'liveinhope lockdown': 496187, 'hiya don supposed': 398615, 'don supposed you': 253946, 'supposed you want': 827381, 'want to reduce': 966101, 'to reduce rental': 913034, 'reduce rental price': 705916, 'rental price on': 711267, 'price on sky': 675717, 'on sky store': 603498, 'sky store on': 773233, 'store on movie': 809199, 'on movie to': 602240, 'movie to help': 544085, 'to help keep': 907549, 'help keep the': 389975, 'keep the little': 472054, 'the little monster': 859490, 'little monster entertained': 495456, 'monster entertained liveinhope': 537459, 'entertained liveinhope lockdown': 278529, 'raleys': 696236, 'bel': 126134, 'medium and': 526984, 'medium got': 527120, 'got everyone': 358542, 'panic drove': 638048, 'drove to': 260814, 'to different': 904284, 'different store': 242071, 'that had': 844147, 'had plenty': 373410, 'no long': 564620, 'line but': 493017, 'medium show': 527275, 'show the': 767200, 'one costco': 606106, 'costco with': 208294, 'with line': 999236, 'line longer': 493239, 'longer than': 502068, 'than football': 840664, 'football field': 318488, 'field go': 304477, 'try raleys': 934546, 'raleys or': 696237, 'or bel': 614538, 'bel air': 126135, 'why the medium': 991424, 'the medium and': 860415, 'medium and social': 526991, 'and social medium': 71891, 'social medium got': 779857, 'medium got everyone': 527121, 'got everyone in': 358544, 'everyone in panic': 287048, 'in panic drove': 426479, 'panic drove to': 638049, 'drove to different': 260816, 'to different store': 904288, 'different store today': 242075, 'store today that': 810868, 'today that had': 920269, 'that had plenty': 844155, 'had plenty of': 373412, 'food and no': 313293, 'and no long': 67621, 'no long line': 564621, 'long line but': 501495, 'line but the': 493019, 'but the medium': 147363, 'the medium show': 860441, 'medium show the': 527277, 'show the one': 767215, 'the one costco': 862196, 'one costco with': 606107, 'costco with line': 208295, 'with line longer': 999238, 'line longer than': 493240, 'longer than football': 502070, 'than football field': 840665, 'football field go': 318490, 'field go to': 304478, 'go to different': 354300, 'different store try': 242076, 'store try raleys': 810963, 'try raleys or': 934547, 'raleys or bel': 696238, 'or bel air': 614539, 'manage': 512372, 'let help': 486780, 'nation through': 552340, 'through tough': 894869, 'time free': 896791, 'free app': 331656, 'app to': 81773, 'to manage': 909786, 'manage for': 512392, 'delivery takeaway': 234603, 'takeaway order': 832897, 'let help the': 486786, 'help the nation': 390667, 'the nation through': 861267, 'nation through tough': 552341, 'through tough time': 894870, 'tough time free': 926852, 'time free app': 896792, 'free app to': 331658, 'app to manage': 81776, 'to manage for': 909791, 'manage for delivery': 512393, 'for delivery takeaway': 320648, 'delivery takeaway order': 234605, 'hmm': 398667, 'fleeced': 310294, '449': 19049, '199': 12461, 'hmm don': 398676, 'there support': 879121, 'me very': 523877, 'very much': 955355, 'much hate': 544982, 'hate being': 378866, 'being fleeced': 125154, 'fleeced all': 310295, 'company jacking': 190825, 'jacking there': 464181, 'there price': 878954, 'price cause': 673089, '19 this': 11337, 'thing is': 884459, 'never 449': 557841, '449 that': 19050, 'there to': 879177, 'stop you': 805289, 'you hitting': 1019225, 'hitting code': 398557, 'code on': 185388, 'the 199': 847954, '199 price': 12474, 'hmm don think': 398677, 'don think there': 253984, 'think there support': 885671, 'there support like': 879122, 'support like me': 826613, 'like me very': 490758, 'me very much': 523879, 'very much hate': 955361, 'much hate being': 544983, 'hate being fleeced': 378868, 'being fleeced all': 125155, 'fleeced all these': 310296, 'all these company': 45026, 'these company jacking': 879790, 'company jacking there': 190826, 'jacking there price': 464182, 'there price cause': 878955, 'price cause of': 673091, 'cause of covid': 167677, 'covid 19 this': 213942, '19 this thing': 11352, 'this thing is': 890567, 'thing is never': 884477, 'is never 449': 449878, 'never 449 that': 557842, '449 that is': 19051, 'that is there': 844665, 'is there to': 453040, 'there to stop': 879193, 'to stop you': 915595, 'stop you hitting': 805294, 'you hitting code': 1019226, 'hitting code on': 398558, 'code on the': 185389, 'on the 199': 603953, 'the 199 price': 847955, 'staythef': 799057, 'athome': 101789, 'or doctor': 615022, 'doctor office': 251043, 'office you': 595605, 'out stayhomesavelives': 627248, 'stayhomesavelives staythef': 798467, 'staythef athome': 799058, 're not going': 699093, 'store the pharmacy': 810615, 'pharmacy or doctor': 654397, 'or doctor office': 615027, 'doctor office you': 251050, 'office you should': 595606, 'be out stayhomesavelives': 116290, 'out stayhomesavelives staythef': 627251, 'stayhomesavelives staythef athome': 798468, 'capping': 162886, 'shooting': 759762, 'coronaupdatesindia': 205343, 'any capping': 78995, 'capping or': 162892, 'or regulation': 616828, 'regulation on': 708083, 'on price': 602902, 'essential commodity': 280908, 'commodity like': 189207, 'milk grocery': 531693, 'grocery etc': 364498, 'etc local': 282641, 'local seller': 498378, 'seller shooting': 749072, 'shooting up': 759780, 'by almost': 151798, 'almost 25': 46494, '25 already': 15829, 'already coronaupdatesindia': 47272, 'is there any': 452997, 'there any capping': 878016, 'any capping or': 78996, 'capping or regulation': 162893, 'or regulation on': 616829, 'regulation on price': 708087, 'on price of': 602915, 'of essential commodity': 583163, 'essential commodity like': 280925, 'commodity like milk': 189211, 'like milk grocery': 490780, 'milk grocery etc': 531694, 'grocery etc local': 364500, 'etc local seller': 282643, 'local seller shooting': 498379, 'seller shooting up': 749073, 'shooting up price': 759783, 'up price by': 945809, 'price by almost': 673014, 'by almost 25': 151800, 'almost 25 already': 46495, '25 already coronaupdatesindia': 15830, 'am at': 49908, 'or ikea': 615728, 'ikea don': 416039, 'know all': 476235, 'all see': 44261, 'see is': 745315, 'is shelf': 451841, 'am at the': 49914, 'supermarket or ikea': 821813, 'or ikea don': 615729, 'ikea don know': 416040, 'don know all': 253660, 'know all see': 476239, 'all see is': 44263, 'see is shelf': 745321, 'groceryworkers': 366393, 'working just': 1008749, 'just hard': 468927, 'need bekind': 554532, 'bekind coronacrisis': 126092, 'coronacrisis groceryworkers': 204618, 'your grocery store': 1024136, 'they are working': 881464, 'are working just': 91703, 'working just hard': 1008750, 'just hard to': 468929, 'hard to make': 378071, 'sure you get': 827858, 'you get the': 1018799, 'get the food': 348244, 'the food you': 855627, 'food you need': 317718, 'you need bekind': 1019970, 'need bekind coronacrisis': 554533, 'bekind coronacrisis groceryworkers': 126093, 'caught short': 167457, 'shopping team': 764054, 'team have': 835663, 'have checked': 379956, 'checked stock': 174769, 'roll online': 725434, 'and published': 69756, 'published this': 688702, 'of every': 583233, 'every site': 286195, 'site where': 772058, 'they found': 882137, 'found it': 330257, 'sale panicbuying': 732441, 'panicbuying toiletpapercrisis': 639097, 'caught short our': 167458, 'short our shopping': 764671, 'our shopping team': 624767, 'shopping team have': 764055, 'team have checked': 835666, 'have checked stock': 379957, 'checked stock of': 174770, 'stock of toilet': 802550, 'toilet roll online': 921591, 'roll online and': 725435, 'online and published': 607846, 'and published this': 69757, 'published this list': 688705, 'this list of': 888660, 'list of every': 494430, 'of every site': 583241, 'every site where': 286196, 'site where they': 772060, 'where they found': 985278, 'they found it': 882141, 'found it on': 330264, 'it on sale': 460055, 'on sale panicbuying': 603273, 'sale panicbuying toiletpapercrisis': 732442, 'bernie': 127373, 'guarantee': 367692, 'uninsured': 941833, 'insured': 440861, 'billing': 130754, '150': 3885, '400': 18703, '1yr': 12848, 'bernie emergency': 127376, 'emergency health': 272742, 'care guarantee': 163975, 'guarantee act': 367693, 'act would': 29828, 'would require': 1012186, 'require medicare': 713312, 'medicare to': 526596, 'pay all': 644711, 'medical bill': 526065, 'bill for': 130572, 'the uninsured': 870398, 'uninsured amp': 941834, 'amp under': 54756, 'under insured': 940134, 'insured until': 440864, 'until covid': 943715, 'vaccine is': 951721, 'available ban': 104269, 'ban surprise': 109266, 'surprise billing': 828514, 'billing drug': 130759, 'cost 150': 207822, '150 billion': 3897, 'billion for': 130815, 'month 400': 537513, '400 billion': 18720, 'for 1yr': 318723, '1yr save': 12849, 'bernie emergency health': 127377, 'emergency health care': 272743, 'health care guarantee': 386235, 'care guarantee act': 163976, 'guarantee act would': 367694, 'act would require': 29829, 'would require medicare': 1012188, 'require medicare to': 713313, 'medicare to pay': 526598, 'to pay all': 911509, 'pay all medical': 644714, 'all medical bill': 43488, 'medical bill for': 526068, 'bill for the': 130576, 'for the uninsured': 326752, 'the uninsured amp': 870399, 'uninsured amp under': 941835, 'amp under insured': 54757, 'under insured until': 940135, 'insured until covid': 440865, 'until covid 19': 943716, '19 vaccine is': 11721, 'vaccine is available': 951723, 'is available ban': 445909, 'available ban surprise': 104270, 'ban surprise billing': 109267, 'surprise billing drug': 828515, 'billing drug price': 130760, 'drug price cost': 261039, 'price cost 150': 673272, 'cost 150 billion': 207823, '150 billion for': 3898, 'billion for month': 130821, 'for month 400': 323506, 'month 400 billion': 537514, '400 billion for': 18721, 'billion for 1yr': 130816, 'for 1yr save': 318724, '1yr save life': 12850, 'heroic': 394193, 'selfegodrivenisolation': 747944, 'pipedown': 656891, 'back drop': 106964, 'of nh': 587005, 'worker civil': 1006639, 'servant supermarket': 751847, 'employee heroic': 273936, 'heroic do': 394196, 'do we': 250460, 'need celebrity': 554595, 'celebrity posting': 168895, 'posting about': 666637, 'how heroic': 407996, 'heroic they': 394202, 'are selfegodrivenisolation': 89931, 'selfegodrivenisolation coronacrisis': 747945, 'coronacrisis pipedown': 204707, 'against the back': 37642, 'the back drop': 849144, 'back drop of': 106965, 'drop of nh': 260321, 'of nh worker': 587009, 'nh worker civil': 562181, 'worker civil servant': 1006640, 'civil servant supermarket': 179547, 'servant supermarket employee': 751848, 'supermarket employee heroic': 820124, 'employee heroic do': 273937, 'heroic do we': 394197, 'do we need': 250479, 'we need celebrity': 972473, 'need celebrity posting': 554596, 'celebrity posting about': 168896, 'posting about how': 666640, 'about how heroic': 25444, 'how heroic they': 407997, 'heroic they are': 394203, 'they are selfegodrivenisolation': 881400, 'are selfegodrivenisolation coronacrisis': 89932, 'selfegodrivenisolation coronacrisis pipedown': 747946, 'importance': 418684, 'musician': 546367, 'dancer': 225591, 'model': 535221, 'play update': 659240, 'update due': 946940, 'the importance': 857974, 'importance of': 418692, 'of being': 580632, 'being earnest': 125091, 'earnest current': 264854, 'current production': 221320, 'production is': 682083, 'still scheduled': 801140, 'scheduled on': 741504, 'on normal': 602429, 'normal date': 567125, 'date unless': 226747, 'unless further': 942605, 'notice ticket': 573380, 'ticket are': 895595, 'still available': 800219, 'available you': 104714, 'can message': 158994, 'message me': 529364, 'price any': 672595, 'other question': 620804, 'question you': 693820, 'might have': 531005, 'have actress': 379118, 'actress musician': 30616, 'musician dancer': 546371, 'dancer model': 225592, 'play update due': 659241, 'update due to': 946941, '19 the importance': 11209, 'the importance of': 857976, 'importance of being': 418695, 'of being earnest': 580639, 'being earnest current': 125092, 'earnest current production': 264855, 'current production is': 221321, 'production is still': 682091, 'is still scheduled': 452309, 'still scheduled on': 801141, 'scheduled on normal': 741505, 'on normal date': 602430, 'normal date unless': 567126, 'date unless further': 226748, 'unless further notice': 942606, 'further notice ticket': 342119, 'notice ticket are': 573381, 'ticket are still': 895596, 'are still available': 90394, 'still available you': 800230, 'available you can': 104715, 'you can message': 1017726, 'can message me': 158995, 'message me for': 529366, 'me for price': 522758, 'for price any': 324714, 'price any other': 672596, 'any other question': 79604, 'other question you': 620805, 'question you might': 693823, 'you might have': 1019852, 'might have actress': 531006, 'have actress musician': 379119, 'actress musician dancer': 30617, 'musician dancer model': 546372, 'apocalypse2020': 81579, 'just another': 468199, 'store apocalypse2020': 806439, 'just another day': 468202, 'day of having': 228072, 'having to leave': 384351, 'to leave to': 909167, 'leave to go': 485009, 'grocery store apocalypse2020': 365209, 'hedging': 388743, 'hedging help': 388744, 'help oil': 390175, 'oil firm': 596797, 'firm weather': 308450, 'weather storm': 974894, 'hedging help oil': 388745, 'help oil firm': 390178, 'oil firm weather': 596798, 'firm weather storm': 308451, 'workout': 1009152, 'multi': 545648, 'millionaire': 532439, 'dentist': 237093, 'swimming': 830356, 'pool': 664007, 'sauna': 737393, 'mansion': 513336, 'just done': 468641, 'done home': 254878, 'home workout': 402565, 'workout do': 1009157, 'panic we': 638759, 'this say': 889965, 'the multi': 861130, 'multi millionaire': 545657, 'millionaire who': 532458, 'can stockpile': 159810, 'stockpile year': 803821, 'year and': 1014389, 'and year': 75960, 'his own': 397671, 'own private': 632151, 'private dentist': 678890, 'dentist gym': 237098, 'gym swimming': 369352, 'swimming pool': 830359, 'pool sauna': 664022, 'sauna and': 737394, 'and steam': 72334, 'steam room': 799292, 'room inside': 725925, 'inside his': 439275, 'his mansion': 397595, 'just done home': 468642, 'done home workout': 254879, 'home workout do': 402566, 'workout do not': 1009158, 'not panic we': 570945, 'panic we will': 638770, 'through this say': 894837, 'this say the': 889973, 'say the multi': 739288, 'the multi millionaire': 861131, 'multi millionaire who': 545658, 'millionaire who can': 532459, 'who can stockpile': 988410, 'can stockpile year': 159811, 'stockpile year and': 803822, 'year and year': 1014411, 'and year worth': 75964, 'food with his': 317643, 'with his own': 998840, 'his own private': 397678, 'own private dentist': 632152, 'private dentist gym': 678891, 'dentist gym swimming': 237099, 'gym swimming pool': 369353, 'swimming pool sauna': 830364, 'pool sauna and': 664023, 'sauna and steam': 737395, 'and steam room': 72335, 'steam room inside': 799293, 'room inside his': 725926, 'inside his mansion': 439276, 'hq': 409578, 'sweep': 830091, 'bakersfield': 108828, 'socialmediamarketing': 781108, 'networkmarketing': 557786, 'distancing trending': 247575, 'trending toward': 931572, 'toward home': 927128, 'home hq': 401386, 'hq think': 409585, 'think with': 885793, 'with google': 998645, 'google covid': 358144, '19 sweep': 11003, 'sweep around': 830106, 'virus could': 958092, 'could accelerate': 208787, 'accelerate trend': 27869, 'trend that': 931461, 'wa already': 961480, 'already under': 47733, 'under way': 940376, 'way bakersfield': 969486, 'bakersfield socialmediamarketing': 108831, 'socialmediamarketing networkmarketing': 781115, 'social distancing trending': 779749, 'distancing trending toward': 247576, 'trending toward home': 931573, 'toward home hq': 927130, 'home hq think': 401388, 'hq think with': 409586, 'think with google': 885794, 'with google covid': 998647, 'google covid 19': 358145, 'covid 19 sweep': 213902, '19 sweep around': 11005, 'sweep around the': 830107, 'world the virus': 1010055, 'the virus could': 870818, 'virus could accelerate': 958093, 'could accelerate trend': 208789, 'accelerate trend that': 27870, 'trend that wa': 931466, 'that wa already': 847270, 'wa already under': 961495, 'already under way': 47736, 'under way bakersfield': 940377, 'way bakersfield socialmediamarketing': 969487, 'bakersfield socialmediamarketing networkmarketing': 108832, 'how doe': 407734, 'doe covid': 251367, 'of drinking': 582821, 'drinking water': 258943, 'water az': 968908, 'az big': 106375, 'big medium': 129865, 'how doe covid': 407739, 'doe covid 19': 251368, '19 impact the': 7713, 'impact the safety': 418005, 'safety of drinking': 730644, 'of drinking water': 582822, 'drinking water az': 258945, 'water az big': 968909, 'az big medium': 106376, 'sth': 800007, 'soft': 781456, 'if have': 414197, 'outside sth': 629557, 'sth is': 800008, 'is necessary': 449842, 'necessary mask': 554025, 'mask plastic': 519119, 'plastic mask': 658863, 'mask pair': 519094, 'of glass': 584143, 'glass glove': 351620, 'sanitizer soft': 735768, 'soft wipe': 781495, 'and so': 71834, 'so on': 777939, 'if have to': 414206, 'go outside sth': 354022, 'outside sth is': 629558, 'sth is necessary': 800009, 'is necessary mask': 449847, 'necessary mask plastic': 554026, 'mask plastic mask': 519121, 'plastic mask pair': 658864, 'mask pair of': 519095, 'pair of glass': 634334, 'of glass glove': 584144, 'glass glove hand': 351621, 'hand sanitizer soft': 375593, 'sanitizer soft wipe': 735769, 'soft wipe and': 781496, 'wipe and so': 996193, 'and so on': 71850, 'federation': 302098, 'merchant': 528992, 'advance': 32888, 'national retail': 552606, 'retail federation': 718114, 'federation advocate': 302099, 'advocate on': 33845, 'of merchant': 586442, 'merchant asks': 529001, 'asks government': 96138, 'government for': 360095, 'for advance': 319033, 'advance notice': 32904, 'notice before': 573249, 'before ordering': 122985, 'ordering store': 619024, 'closure retail': 184016, 'national retail federation': 552607, 'retail federation advocate': 718115, 'federation advocate on': 302100, 'advocate on behalf': 33846, 'behalf of merchant': 123757, 'of merchant asks': 586443, 'merchant asks government': 529002, 'asks government for': 96139, 'government for advance': 360096, 'for advance notice': 319034, 'advance notice before': 32905, 'notice before ordering': 573250, 'before ordering store': 122986, 'ordering store closure': 619025, 'store closure retail': 807105, 'are detail': 85802, 'detail on': 239226, 'the special': 867545, 'hour stop': 405958, 'stop amp': 804446, 'amp shop': 54490, 'is creating': 446908, 'creating to': 216093, 'protect customer': 684808, 'are particularly': 88988, 'particularly vulnerable': 642727, 'here are detail': 392736, 'are detail on': 85803, 'detail on the': 239231, 'on the special': 604376, 'the special hour': 867547, 'special hour stop': 787965, 'hour stop amp': 405959, 'stop amp shop': 804447, 'amp shop is': 54491, 'shop is creating': 760356, 'is creating to': 446919, 'creating to help': 216094, 'help protect customer': 390368, 'protect customer who': 684811, 'who are particularly': 988192, 'are particularly vulnerable': 88991, 'particularly vulnerable to': 642728, 'coronavirus update': 206988, 'shortage supply': 765233, 'chain preparedness': 171004, 'preparedness and': 670276, 'market pandemic': 516832, 'pandemic supplychain': 636601, 'coronavirus update on': 206996, 'update on food': 947115, 'on food shortage': 600907, 'food shortage supply': 316606, 'shortage supply chain': 765234, 'supply chain preparedness': 825009, 'chain preparedness and': 171005, 'preparedness and the': 670279, 'and the stock': 73595, 'stock market pandemic': 802419, 'market pandemic supplychain': 516833, 'nerida': 557433, 'conisbee': 194574, 'on australia': 599504, 'australia property': 103355, 'property market': 684299, 'market nerida': 516750, 'nerida conisbee': 557434, 'conisbee economist': 194577, 'economist with': 267594, 'with australia': 997337, 'australia will': 103421, 'not see': 571472, 'in free': 423096, 'free fall': 331801, 'impact on australia': 417821, 'on australia property': 599505, 'australia property market': 103356, 'property market nerida': 684308, 'market nerida conisbee': 516751, 'nerida conisbee economist': 557436, 'conisbee economist with': 194578, 'economist with australia': 267595, 'with australia will': 997339, 'australia will not': 103423, 'will not see': 994268, 'not see house': 571477, 'price in free': 674687, 'in free fall': 423098, 'tirupati': 899104, 'vegetableprices': 954135, 'tirupati resident': 899105, 'resident express': 714294, 'express concern': 293027, 'over rising': 630594, 'rising price': 723262, 'of vegetable': 592757, 'vegetable tirupati': 954106, 'tirupati vegetableprices': 899107, 'tirupati resident express': 899106, 'resident express concern': 714295, 'express concern over': 293028, 'concern over rising': 193052, 'over rising price': 630595, 'rising price of': 723270, 'price of vegetable': 675603, 'of vegetable tirupati': 592766, 'vegetable tirupati vegetableprices': 954107, 'italian': 462678, 'greek': 363640, 'how italian': 408148, 'italian and': 462682, 'and greek': 63953, 'greek are': 363641, 'handling coronavirus': 376341, 'how italian and': 408149, 'italian and greek': 462683, 'and greek are': 63954, 'greek are handling': 363642, 'are handling coronavirus': 86995, 'jt': 467584, 'peter': 653514, 'whatshisname': 982917, 'predict 25': 669550, '25 unemployment': 15984, 'unemployment look': 941241, 'look only': 502558, 'only 15': 609979, '15 unemployment': 3858, 'unemployment hero': 941222, 'hero blame': 393948, 'blame covid': 132249, '19 oil': 8907, 'are super': 90641, 'price came': 673051, 'back because': 106901, 'of me': 586321, 'me made': 523132, 'made all': 507621, 'job jt': 465930, 'jt is': 467585, 'is bad': 445956, 'bad vote': 108072, 'vote for': 960479, 'for peter': 324516, 'peter whatshisname': 653543, 'predict 25 unemployment': 669551, '25 unemployment look': 15986, 'unemployment look only': 941242, 'look only 15': 502559, 'only 15 unemployment': 609981, '15 unemployment hero': 3859, 'unemployment hero blame': 941223, 'hero blame covid': 393949, 'blame covid 19': 132250, 'covid 19 oil': 213510, '19 oil price': 8908, 'oil price are': 597052, 'price are super': 672747, 'are super low': 90646, 'super low oil': 818536, 'oil price came': 597071, 'price came back': 673052, 'came back because': 156974, 'back because of': 106903, 'because of me': 119375, 'of me made': 586336, 'me made all': 523133, 'made all the': 507623, 'all the job': 44799, 'the job jt': 858664, 'job jt is': 465931, 'jt is bad': 467586, 'is bad vote': 445976, 'bad vote for': 108073, 'vote for peter': 960485, 'for peter whatshisname': 324517, 'leaving the': 485146, 'store 19': 806022, '19 toiletpaper': 11484, 'leaving the store': 485156, 'the store 19': 867972, 'store 19 toiletpaper': 806026, 'lobster': 497642, 'tank': 834180, 'don jump': 253657, 'the lobster': 859530, 'lobster tank': 497651, 'tank while': 834233, 'please don jump': 659917, 'don jump in': 253658, 'in the lobster': 429326, 'the lobster tank': 859531, 'lobster tank while': 497652, 'tank while shopping': 834234, 'france': 330969, 'spain': 787264, 'austria': 103590, 'twenty percent': 936497, 'percent of': 651152, 'in france': 423070, 'france spain': 331030, 'spain and': 787271, 'and austria': 58526, 'austria are': 103595, 'closed by': 183032, 'by local': 153071, 'government retail': 360547, 'closure china': 183866, 'twenty percent of': 936498, 'percent of store': 651161, 'of store in': 590253, 'store in france': 808303, 'in france spain': 423086, 'france spain and': 331031, 'spain and austria': 787272, 'and austria are': 58527, 'austria are now': 103596, 'are now closed': 88537, 'now closed by': 574397, 'closed by local': 183034, 'by local government': 153076, 'local government retail': 498029, 'government retail store': 360548, 'retail store closure': 718626, 'store closure china': 807087, 'religion': 709554, 'looroll': 503165, 'new religion': 559439, 'religion looroll': 709559, 'looroll toiletpaper': 503176, 'new religion looroll': 559440, 'religion looroll toiletpaper': 709560, 'looroll toiletpaper toiletroll': 503178, 'madincanada': 508123, 'promotionalproducts': 683888, 'signage': 769272, 'store ready': 809749, 'for socialdistancing': 325707, 'socialdistancing here': 780423, 'some essential': 782757, 'get you': 348669, 'you prepared': 1020414, 'prepared madincanada': 670217, 'madincanada promotionalproducts': 508124, 'promotionalproducts signage': 683893, 'signage retail': 769281, 'is your store': 454167, 'your store ready': 1025986, 'store ready for': 809750, 'ready for socialdistancing': 700872, 'for socialdistancing here': 325710, 'socialdistancing here are': 780424, 'are some essential': 90263, 'some essential to': 782764, 'essential to get': 281698, 'to get you': 906648, 'get you prepared': 348680, 'you prepared madincanada': 1020416, 'prepared madincanada promotionalproducts': 670218, 'madincanada promotionalproducts signage': 508125, 'promotionalproducts signage retail': 683894, 'clawed': 180423, 'writes': 1012822, 'mcpro': 522242, 'marketswithmc': 517877, 'have clawed': 379976, 'clawed back': 180424, 'back some': 107275, 'some lost': 783230, 'lost ground': 503850, 'ground however': 366505, 'however that': 409465, 'not save': 571433, 'the march': 860060, 'march quarter': 515448, 'quarter it': 693247, 'worst ever': 1011179, 'ever writes': 285609, 'writes mcpro': 1012852, 'mcpro marketswithmc': 522243, 'price have clawed': 674416, 'have clawed back': 379977, 'clawed back some': 180425, 'back some lost': 107278, 'some lost ground': 783231, 'lost ground however': 503851, 'ground however that': 366506, 'however that could': 409466, 'could not save': 209455, 'not save the': 571434, 'save the march': 737660, 'the march quarter': 860064, 'march quarter it': 515449, 'quarter it worst': 693248, 'it worst ever': 462557, 'worst ever writes': 1011181, 'ever writes mcpro': 285610, 'writes mcpro marketswithmc': 1012853, 'cougher': 208649, 'raymond': 698040, 'coombs': 203082, 'appears': 82176, 'court': 211969, 'coronavirus supermarket': 206845, 'supermarket cougher': 819816, 'cougher raymond': 208652, 'raymond coombs': 698041, 'coombs appears': 203085, 'appears in': 82185, 'in court': 421838, 'court via': 212015, 'via nz': 956124, 'nz where': 578213, 'where everybody': 984862, 'everybody know': 286457, 'know your': 477095, 'your name': 1024927, '19 coronavirus supermarket': 6130, 'coronavirus supermarket cougher': 206846, 'supermarket cougher raymond': 819818, 'cougher raymond coombs': 208653, 'raymond coombs appears': 698043, 'coombs appears in': 203086, 'appears in court': 82186, 'in court via': 421841, 'court via nz': 212016, 'via nz where': 956125, 'nz where everybody': 578214, 'where everybody know': 984863, 'everybody know your': 286459, 'know your name': 477098, 'the message': 860511, 'from govt': 335680, 'govt on': 361231, 'the availability': 849085, 'availability of': 104154, 'item amidst': 463048, 'amidst however': 52799, 'ground reality': 366533, 'reality seems': 701787, 'seems different': 746769, 'different explains': 241938, 'don panic is': 253806, 'panic is the': 638226, 'is the message': 452863, 'the message from': 860517, 'message from govt': 529314, 'from govt on': 335682, 'govt on the': 361232, 'on the availability': 603975, 'the availability of': 849086, 'availability of food': 104162, 'of food item': 583722, 'food item amidst': 315192, 'item amidst however': 463049, 'amidst however the': 52800, 'however the ground': 409476, 'the ground reality': 856855, 'ground reality seems': 366534, 'reality seems different': 701788, 'seems different explains': 746770, 'lessen': 486434, 'lessen the': 486443, 'of catching': 581201, 'catching at': 167072, 'lessen the risk': 486445, 'risk of catching': 723732, 'of catching at': 581202, 'catching at the': 167074, '30th': 17524, 'obviously': 578818, 'amend': 51391, 'massively': 520167, 'booked up': 134684, 'with for': 998521, 'for weekend': 327770, 'weekend away': 977319, 'away this': 106064, 'this friday': 887614, 'friday for': 333222, 'my partner': 549712, 'partner 30th': 642754, '30th obviously': 17537, 'obviously with': 578868, 'are unable': 91255, 'travel they': 930529, 'now asking': 574114, 'asking to': 96092, 'to amend': 900403, 'amend the': 51396, 'the booking': 849846, 'booking date': 134721, 'date but': 226602, 'hiked the': 396341, 'up massively': 945369, 'massively for': 520175, 'for every': 321156, 'every alternate': 285661, 'alternate date': 49180, 'date and': 226587, 'and expect': 62478, 'expect to': 290764, 'pay the': 645143, 'the difference': 853255, 'booked up with': 134688, 'up with for': 946639, 'with for weekend': 998522, 'for weekend away': 327771, 'weekend away this': 977320, 'away this friday': 106065, 'this friday for': 887617, 'friday for my': 333224, 'for my partner': 323740, 'my partner 30th': 549713, 'partner 30th obviously': 642755, '30th obviously with': 17538, 'obviously with covid': 578870, 'we are unable': 970747, 'are unable to': 91256, 'unable to travel': 939351, 'to travel they': 917736, 'travel they are': 930530, 'they are now': 881343, 'are now asking': 88523, 'now asking to': 574118, 'asking to amend': 96093, 'to amend the': 900405, 'amend the booking': 51397, 'the booking date': 849848, 'booking date but': 134722, 'date but have': 226603, 'but have hiked': 145875, 'have hiked the': 380951, 'hiked the price': 396343, 'the price up': 864431, 'price up massively': 677246, 'up massively for': 945370, 'massively for every': 520176, 'for every alternate': 321158, 'every alternate date': 285662, 'alternate date and': 49181, 'date and expect': 226589, 'and expect to': 62484, 'expect to pay': 290772, 'to pay the': 911564, 'pay the difference': 645147, 'canadian do': 160670, 'panic about': 637253, 'shortage amid': 764804, 'say national': 738967, 'canadian do not': 160671, 'to panic about': 911380, 'panic about food': 637255, 'food shortage amid': 316553, 'shortage amid covid': 764805, '19 expert say': 6898, 'expert say national': 291954, 'tragedy': 929164, 'hal': 374093, 'sosabowski': 786194, 'returned': 719955, 'many frontline': 514090, 'staff may': 792642, 'may struggle': 521539, 'enough supply': 277645, 'this tragedy': 890837, 'tragedy and': 929165, 'is why': 453955, 'why we': 991512, 'we want': 973741, 'want help': 965808, 'help professor': 390359, 'professor hal': 682549, 'hal sosabowski': 374096, 'sosabowski and': 786195, 'team of': 835737, 'of scientist': 589410, 'scientist have': 742229, 'have returned': 382314, 'returned to': 719978, 'their lab': 873774, 'lab to': 478308, 'make hand': 509957, 'many frontline nh': 514091, 'frontline nh staff': 338795, 'nh staff may': 562097, 'staff may struggle': 792643, 'may struggle to': 521540, 'struggle to get': 814387, 'to get enough': 906469, 'get enough supply': 346943, 'enough supply in': 277650, 'supply in the': 825415, 'middle of this': 530687, 'of this tragedy': 592057, 'this tragedy and': 890838, 'tragedy and that': 929166, 'that is why': 844677, 'is why we': 453982, 'why we want': 991535, 'we want help': 973746, 'want help professor': 965809, 'help professor hal': 390360, 'professor hal sosabowski': 682550, 'hal sosabowski and': 374097, 'sosabowski and team': 786196, 'and team of': 73063, 'team of scientist': 835743, 'of scientist have': 589412, 'scientist have returned': 742233, 'have returned to': 382316, 'returned to their': 719983, 'to their lab': 917246, 'their lab to': 873775, 'lab to make': 478309, 'to make hand': 909672, 'make hand sanitizer': 509958, 'regret': 707700, 'holder': 400056, 'requiring': 713515, '01765': 780, '680215': 21494, 'notice covid': 573256, '19 temporary': 11062, 'closure it': 183924, 'is with': 454008, 'with great': 998668, 'great regret': 362953, 'regret we': 707712, 'are closing': 85386, 'retail country': 718009, 'country store': 211089, 'with immediate': 998944, 'immediate effect': 416982, 'effect to': 269141, 'all non': 43648, 'non account': 566297, 'account holder': 28691, 'holder cash': 400059, 'cash customer': 166209, 'customer requiring': 222761, 'requiring feed': 713520, 'feed and': 302274, 'and animal': 58150, 'animal health': 76605, 'health product': 386759, 'please phone': 660291, 'phone the': 655031, 'store 01765': 806015, '01765 680215': 781, '680215 to': 21495, 'discus option': 244885, 'important notice covid': 418901, 'notice covid 19': 573257, 'covid 19 temporary': 213920, '19 temporary closure': 11063, 'temporary closure it': 837594, 'closure it is': 183926, 'it is with': 459133, 'is with great': 454012, 'with great regret': 998672, 'great regret we': 362954, 'regret we are': 707713, 'we are closing': 970502, 'are closing our': 85395, 'our retail country': 624631, 'retail country store': 718010, 'country store with': 211090, 'store with immediate': 811382, 'with immediate effect': 998945, 'immediate effect to': 416988, 'effect to all': 269142, 'to all non': 900268, 'all non account': 43649, 'non account holder': 566298, 'account holder cash': 28692, 'holder cash customer': 400060, 'cash customer requiring': 166210, 'customer requiring feed': 222762, 'requiring feed and': 713521, 'feed and animal': 302275, 'and animal health': 58153, 'animal health product': 76606, 'health product please': 386762, 'product please phone': 681530, 'please phone the': 660293, 'phone the store': 655033, 'the store 01765': 867971, 'store 01765 680215': 806016, '01765 680215 to': 782, '680215 to discus': 21496, 'to discus option': 904380, 'representing': 712935, 'other oil': 620596, 'nation agreed': 552102, 'agreed on': 38716, 'sunday to': 818282, 'cut output': 223467, 'output by': 629238, 'by record': 153734, 'record amount': 704904, 'amount representing': 53276, 'representing around': 712942, '10 of': 1569, 'support oil': 826698, 'opec russia and': 611959, 'russia and other': 728431, 'and other oil': 68372, 'other oil producing': 620600, 'producing nation agreed': 680791, 'nation agreed on': 552103, 'agreed on sunday': 38718, 'on sunday to': 603775, 'sunday to cut': 818284, 'to cut output': 903882, 'cut output by': 223470, 'output by record': 629244, 'by record amount': 153735, 'record amount representing': 704906, 'amount representing around': 53278, 'representing around 10': 712943, 'around 10 of': 93095, '10 of global': 1570, 'of global supply': 584158, 'global supply to': 352241, 'supply to support': 826030, 'to support oil': 915949, 'support oil price': 826699, 'oil price amid': 597045, 'price amid the': 672320, 'ordinance': 619074, 'starting today': 795050, 'today if': 919675, 'are heading': 87049, 'grab take': 361542, 'covering your': 212510, 'nose and': 567867, 'and mouth': 67281, 'mouth here': 543517, 'other ordinance': 620621, 'ordinance from': 619077, 'starting today if': 795053, 'today if you': 919676, 'you are heading': 1017138, 'are heading to': 87054, 'heading to the': 385965, 'store pharmacy or': 809544, 'pharmacy or to': 654403, 'or to grab': 617470, 'to grab take': 906971, 'grab take out': 361543, 'take out in': 832450, 'out in you': 626408, 'in you need': 431050, 'wear mask covering': 974381, 'mask covering your': 518551, 'covering your nose': 212512, 'your nose and': 1025033, 'nose and mouth': 567870, 'and mouth here': 67286, 'mouth here are': 543518, 'here are other': 392749, 'are other ordinance': 88845, 'other ordinance from': 620622, 'ordinance from the': 619078, 'from the city': 337641, 'mtnwestnews': 544646, 'are shutting': 90101, 'down to': 257357, 'novel grocery': 573779, 'have that': 382946, 'that option': 845537, 'option grocery': 614046, 'and cashier': 59607, 'are considered': 85500, 'considered essential': 195285, 'essential role': 281484, 'role listen': 725112, 'listen at': 494667, 'at via': 101450, 'via for': 955987, 'for mtnwestnews': 323642, 'while many business': 987034, 'many business are': 513840, 'business are shutting': 143387, 'are shutting down': 90102, 'shutting down to': 768279, 'down to prevent': 257377, 'the novel grocery': 861914, 'novel grocery store': 573780, 'grocery store do': 365332, 'store do not': 807330, 'not have that': 569880, 'have that option': 382951, 'that option grocery': 845538, 'option grocery worker': 614047, 'grocery worker and': 366161, 'worker and cashier': 1006276, 'and cashier are': 59608, 'cashier are considered': 166471, 'are considered essential': 85503, 'considered essential role': 195292, 'essential role listen': 281485, 'role listen at': 725113, 'listen at via': 494668, 'at via for': 101451, 'via for mtnwestnews': 955988, 'commits': 189017, '25m': 16091, 'waived': 964522, 'promotional': 683881, 'commits 25m': 189021, '25m to': 16096, 'local restaurant': 498334, 'restaurant in': 716517, 'in waived': 430649, 'waived fee': 964534, 'fee and': 302134, 'free advertising': 331629, 'advertising promotional': 33268, 'promotional service': 683886, 'service it': 752527, 'it data': 457469, 'show consumer': 766898, 'consumer interest': 197903, 'interest in': 441352, 'restaurant fell': 716464, 'fell by': 303177, 'by 54': 151679, '54 over': 20328, 'commits 25m to': 189022, '25m to local': 16097, 'to local restaurant': 909384, 'local restaurant in': 498339, 'restaurant in waived': 716529, 'in waived fee': 430650, 'waived fee and': 964535, 'fee and free': 302136, 'and free advertising': 63270, 'free advertising promotional': 331630, 'advertising promotional service': 33269, 'promotional service it': 683887, 'service it data': 752530, 'it data show': 457470, 'data show consumer': 226405, 'show consumer interest': 766900, 'consumer interest in': 197906, 'interest in restaurant': 441359, 'in restaurant fell': 427433, 'restaurant fell by': 716465, 'fell by 54': 303179, 'by 54 over': 151681, '54 over the': 20329, 'writer': 1012803, 'logit': 500816, 'discussing': 244978, 'our guest': 623317, 'guest writer': 368181, 'writer this': 1012814, 'month on': 537920, 'on logit': 601927, 'logit blog': 500817, 'blog discussing': 132913, 'discussing the': 245003, 'of understanding': 592615, 'understanding the': 940889, 'the shift': 866929, 'consumer amp': 196185, 'amp participant': 54276, 'participant behaviour': 642537, 'behaviour during': 124404, '19 to': 11411, 'full article': 340482, 'article click': 94290, 'click here': 181911, 'founder of is': 330553, 'of is our': 585326, 'is our guest': 450622, 'our guest writer': 623319, 'guest writer this': 368182, 'writer this month': 1012815, 'this month on': 888915, 'month on logit': 537923, 'on logit blog': 601928, 'logit blog discussing': 500818, 'blog discussing the': 132914, 'discussing the importance': 245007, 'importance of understanding': 418717, 'of understanding the': 592617, 'understanding the shift': 940893, 'the shift in': 866931, 'in consumer amp': 421682, 'consumer amp participant': 196190, 'amp participant behaviour': 54277, 'participant behaviour during': 642538, 'behaviour during covid': 124406, 'covid 19 to': 213958, '19 to read': 11450, 'to read the': 912841, 'the full article': 856000, 'full article click': 340485, 'article click here': 94291, 'overrun': 631444, 'rebel': 703265, 'square': 791462, 'saturdaythoughts': 737110, 'chinaliedandpeopledied': 177096, '3rd world': 18456, 'world problem': 1009916, 'problem my': 679607, 'my village': 550508, 'village wa': 957383, 'wa overrun': 962896, 'overrun by': 631447, 'by rebel': 153732, 'rebel 1st': 703266, '1st world': 12830, 'problem the': 679706, 'the 600': 848168, '600 square': 21116, 'square foot': 791471, 'foot supermarket': 318439, 'paper saturdaythoughts': 640723, 'saturdaythoughts coronacrisis': 737113, 'coronacrisis chinesevirus': 204545, 'chinesevirus wuhanvirus': 177458, 'wuhanvirus chinaliedandpeopledied': 1013572, 'chinaliedandpeopledied maga': 177104, '3rd world problem': 18458, 'world problem my': 1009917, 'problem my village': 679609, 'my village wa': 550511, 'village wa overrun': 957384, 'wa overrun by': 962897, 'overrun by rebel': 631448, 'by rebel 1st': 153733, 'rebel 1st world': 703267, '1st world problem': 12832, 'world problem the': 1009918, 'problem the 600': 679707, 'the 600 square': 848169, '600 square foot': 21117, 'square foot supermarket': 791474, 'foot supermarket go': 318440, 'to is out': 908527, 'toilet paper saturdaythoughts': 921432, 'paper saturdaythoughts coronacrisis': 640724, 'saturdaythoughts coronacrisis chinesevirus': 737114, 'coronacrisis chinesevirus wuhanvirus': 204546, 'chinesevirus wuhanvirus chinaliedandpeopledied': 177459, 'wuhanvirus chinaliedandpeopledied maga': 1013573, 'observer': 578636, 'typically': 937646, 'carton': 165480, 'when disaster': 983342, 'disaster strike': 244248, 'strike market': 813747, 'market observer': 516773, 'observer know': 578641, 'american consumer': 51883, 'consumer typically': 199407, 'typically reach': 937663, 'reach for': 699920, 'same staple': 733302, 'staple milk': 793976, 'bread toilet': 138618, 'and carton': 59597, 'carton of': 165485, 'egg covid': 269840, 'when disaster strike': 983343, 'disaster strike market': 244249, 'strike market observer': 813748, 'market observer know': 516774, 'observer know that': 578642, 'know that american': 476753, 'that american consumer': 842631, 'american consumer typically': 51897, 'consumer typically reach': 199408, 'typically reach for': 937664, 'reach for the': 699923, 'for the same': 326669, 'the same staple': 866303, 'same staple milk': 733303, 'staple milk bread': 793977, 'milk bread toilet': 531602, 'bread toilet paper': 138619, 'paper and carton': 639815, 'and carton of': 59598, 'carton of egg': 165487, 'of egg covid': 582994, 'egg covid 19': 269841, '19 is no': 8011, 'is no different': 449922, 'hindustan': 396866, 'ha impacted': 370909, 'impacted fuel': 418117, 'what oil': 981957, 'doing hindustan': 252450, 'hindustan time': 396873, '19 lockdown ha': 8389, 'lockdown ha impacted': 499449, 'ha impacted fuel': 370913, 'impacted fuel price': 418118, 'fuel price and': 340219, 'price and what': 672580, 'and what oil': 75478, 'what oil company': 981958, 'oil company are': 596684, 'are doing hindustan': 85903, 'doing hindustan time': 252451, 'what worse': 982637, 'than panic': 841015, 'buying stealing': 151084, 'stealing item': 799238, 'bank drop': 109792, 'off box': 593694, 'box at': 137014, 'supermarket that': 823176, 'what what': 982583, 'with some': 1000835, 'what worse than': 982639, 'worse than panic': 1011015, 'than panic buying': 841016, 'panic buying stealing': 637902, 'buying stealing item': 151085, 'stealing item from': 799239, 'item from the': 463288, 'from the food': 337706, 'food bank drop': 313559, 'bank drop off': 109794, 'drop off box': 260329, 'off box at': 593695, 'box at my': 137017, 'local supermarket that': 498596, 'supermarket that what': 823204, 'that what what': 847476, 'what what is': 982584, 'what is wrong': 981737, 'is wrong with': 454112, 'wrong with some': 1013162, 'with some people': 1000857, 'counterfeit': 210297, 'how may': 408306, 'may impact': 521281, 'impact your': 418057, 'your safety': 1025663, 'safety when': 730783, 'online find': 608197, 'out how': 626315, 'can avoid': 157553, 'avoid counterfeit': 105061, 'counterfeit here': 210302, 'concerned about how': 193158, 'about how may': 25455, 'how may impact': 408309, 'may impact your': 521286, 'impact your safety': 418061, 'your safety when': 1025668, 'safety when shopping': 730784, 'shopping online find': 763431, 'online find out': 608198, 'find out how': 307141, 'out how you': 626341, 'how you can': 409276, 'you can avoid': 1017625, 'can avoid counterfeit': 157555, 'avoid counterfeit here': 105062, 'contagious': 200429, 'flip': 310594, 'flop': 310872, 'filthy': 305790, 'highly contagious': 396045, 'contagious disease': 200432, 'disease that': 245246, 'caused pandemic': 167929, 'is probably': 451041, 'probably great': 679272, 'great time': 363057, 'wearing flip': 974622, 'flip flop': 310595, 'flop to': 310873, 'store you': 811677, 'you filthy': 1018559, 'filthy animal': 305791, 'highly contagious disease': 396046, 'contagious disease that': 200434, 'disease that ha': 245248, 'that ha caused': 844110, 'ha caused pandemic': 370092, 'caused pandemic is': 167930, 'pandemic is probably': 635791, 'is probably great': 451045, 'probably great time': 679273, 'great time to': 363060, 'stop wearing flip': 805268, 'wearing flip flop': 974623, 'flip flop to': 310596, 'flop to the': 310874, 'grocery store you': 365981, 'store you filthy': 811686, 'you filthy animal': 1018560, 'responsible': 715994, 're the': 699687, 'people walking': 650126, 'walking into': 965065, 'into retail': 442944, 'problem you': 679778, 're responsible': 699386, 'responsible for': 716025, 'making this': 511456, 'shit spread': 759227, 'spread feel': 790531, 'feel guilty': 302655, 'guilty stop': 368570, 'stop shopping': 805019, 'available from': 104397, 'home retail': 401977, 'you re the': 1020775, 're the people': 699699, 'the people walking': 863516, 'people walking into': 650130, 'walking into retail': 965066, 'into retail store': 442949, 'retail store you': 718737, 'store you re': 811696, 're the problem': 699700, 'the problem you': 864536, 'problem you re': 679779, 'you re responsible': 1020722, 're responsible for': 699387, 'responsible for making': 716036, 'for making this': 323183, 'making this shit': 511462, 'this shit spread': 890089, 'shit spread feel': 759228, 'spread feel guilty': 790532, 'feel guilty stop': 302662, 'guilty stop shopping': 368571, 'stop shopping online': 805025, 'shopping online shopping': 763480, 'shopping is available': 763034, 'is available from': 445918, 'available from home': 104399, 'from home retail': 335898, 'yorkshire': 1016718, 'when even': 983381, 'even amazon': 283829, 'amazon is': 50994, 'is struggling': 452395, 'to deliver': 904089, 'deliver food': 233120, 'the stockpiling': 867946, 'stockpiling muppets': 804027, 'muppets are': 546130, 'buying again': 149871, 'again yorkshire': 37288, 'yorkshire uk': 1016731, 'when even amazon': 983382, 'even amazon is': 283830, 'amazon is struggling': 51009, 'is struggling to': 452397, 'struggling to deliver': 814501, 'to deliver food': 904099, 'deliver food you': 233127, 'food you know': 317714, 'know the stockpiling': 476852, 'the stockpiling muppets': 867947, 'stockpiling muppets are': 804028, 'muppets are panic': 546131, 'panic buying again': 637635, 'buying again yorkshire': 149872, 'again yorkshire uk': 37289, 'lowe': 505765, 'metering': 529741, 'customertraffic': 223172, 'assist': 96616, 'customerexperience': 223134, 'consumerbehavior': 199602, 'retailtech': 719556, 'contapersone': 200751, 'peoplecounting': 650599, 'retailnews lowe': 719523, 'lowe target': 505781, 'target begin': 834443, 'begin metering': 123538, 'metering customertraffic': 529742, 'customertraffic to': 223173, 'to assist': 900776, 'assist with': 96650, 'with socialdistancing': 1000823, 'socialdistancing retail': 780643, 'retail strategy': 718744, 'strategy innovation': 812663, 'technology customerexperience': 836276, 'customerexperience consumerbehavior': 223135, 'consumerbehavior retailtech': 199623, 'retailtech contapersone': 719557, 'contapersone peoplecounting': 200752, 'peoplecounting footfall': 650600, 'footfall by': 318538, 'retailnews lowe target': 719524, 'lowe target begin': 505782, 'target begin metering': 834444, 'begin metering customertraffic': 123539, 'metering customertraffic to': 529743, 'customertraffic to assist': 223174, 'to assist with': 900786, 'assist with socialdistancing': 96653, 'with socialdistancing retail': 1000827, 'socialdistancing retail strategy': 780647, 'retail strategy innovation': 718745, 'strategy innovation technology': 812664, 'innovation technology customerexperience': 438903, 'technology customerexperience consumerbehavior': 836277, 'customerexperience consumerbehavior retailtech': 223136, 'consumerbehavior retailtech contapersone': 199624, 'retailtech contapersone peoplecounting': 719558, 'contapersone peoplecounting footfall': 200753, 'peoplecounting footfall by': 650601, 'handing': 376124, 'rationed': 697770, 'bestofpeople': 128041, 'supermarket experience': 820246, 'experience seeing': 291476, 'old lady': 598318, 'lady handing': 478772, 'handing of': 376129, 'of her': 584563, 'her rationed': 392319, 'rationed pack': 697783, 'to young': 918945, 'young mother': 1022623, 'mother with': 543205, 'with child': 997620, 'child who': 176264, 'who had': 988872, 'had turned': 373767, 'turned up': 935891, 'at tesco': 100839, 'tesco too': 838842, 'too late': 924830, 'late to': 480925, 'get her': 347214, 'her own': 392273, 'own bestofpeople': 631900, 'bestofpeople coronacrisis': 128042, 'supermarket experience seeing': 820249, 'experience seeing an': 291477, 'seeing an old': 746220, 'an old lady': 56589, 'old lady handing': 598321, 'lady handing of': 478773, 'handing of her': 376130, 'of her rationed': 584582, 'her rationed pack': 392320, 'rationed pack of': 697784, 'paper to young': 640931, 'to young mother': 918947, 'young mother with': 1022624, 'mother with child': 543206, 'with child who': 997624, 'child who had': 176265, 'who had turned': 988891, 'had turned up': 373768, 'turned up at': 935892, 'up at tesco': 944439, 'at tesco too': 100845, 'tesco too late': 838843, 'too late to': 924840, 'late to get': 480927, 'to get her': 906500, 'get her own': 347217, 'her own bestofpeople': 392274, 'own bestofpeople coronacrisis': 631901, 'gone to': 356389, 'store every': 807648, 'every 3rd': 285652, '3rd day': 18421, 'week have': 976307, 'seen the': 747274, 'people working': 650512, 'store if': 808241, 'wa that': 963427, 'that easily': 843661, 'easily spread': 265244, 'spread should': 790790, 'not we': 572461, 'had it': 373207, 'it by': 456971, 'by now': 153369, 'have gone to': 380798, 'gone to the': 356397, 'grocery store every': 365379, 'store every 3rd': 807649, 'every 3rd day': 285653, '3rd day for': 18422, 'day for the': 227634, 'past week have': 643647, 'week have seen': 976310, 'have seen the': 382446, 'seen the same': 747292, 'the same people': 866275, 'same people working': 733218, 'people working at': 650513, 'working at the': 1008530, 'the store if': 868039, 'store if wa': 808248, 'if wa that': 415241, 'wa that easily': 963429, 'that easily spread': 843662, 'easily spread should': 265245, 'spread should not': 790792, 'should not we': 766268, 'not we all': 572462, 'all have had': 43048, 'have had it': 380864, 'had it by': 373208, 'it by now': 456979, 'sec': 743617, 'thoroughly': 891752, 'finished': 307882, 'it depends': 457520, 'depends totally': 237396, 'totally on': 926378, 'wash ur': 967565, 'ur hand': 948008, 'hand for': 374942, '20 sec': 13314, 'sec thoroughly': 743640, 'thoroughly eat': 891759, 'junk get': 468042, 'stock is': 802301, 'is finished': 447818, 'finished we': 307921, 'get thru': 348447, 'thru this': 895237, 'cure it depends': 220763, 'it depends totally': 457521, 'depends totally on': 237397, 'totally on your': 926379, 'so what can': 778713, 'what can do': 981172, 'is wash ur': 453769, 'wash ur hand': 967566, 'ur hand for': 948010, 'hand for 20': 374943, 'for 20 sec': 318730, '20 sec thoroughly': 13320, 'sec thoroughly eat': 743641, 'thoroughly eat good': 891760, 'not junk get': 570208, 'junk get enough': 468043, 'out if your': 626367, 'your food stock': 1023929, 'food stock is': 316797, 'stock is finished': 802305, 'is finished we': 447820, 'finished we ll': 307922, 'll get thru': 496797, 'get thru this': 348449, 'sincerest': 771056, 'desk': 238443, 'sending my': 750055, 'my sincerest': 550094, 'sincerest gratitude': 771057, 'the nurse': 861976, 'nurse grocery': 577344, 'and drug': 61775, 'worker janitor': 1007255, 'janitor doctor': 464543, 'doctor healthcare': 250948, 'healthcare desk': 387084, 'desk staff': 238469, 'staff pharmacist': 792747, 'pharmacist paramedic': 654165, 'paramedic and': 641370, 'and anyone': 58223, 'else helping': 271728, 'community safe': 190076, 'and running': 70640, 'running at': 727923, 'moment hero': 535957, 'sending my sincerest': 750056, 'my sincerest gratitude': 550095, 'sincerest gratitude to': 771058, 'all the nurse': 44845, 'the nurse grocery': 861982, 'nurse grocery and': 577345, 'grocery and drug': 364234, 'and drug store': 61779, 'drug store worker': 261100, 'store worker janitor': 811532, 'worker janitor doctor': 1007257, 'janitor doctor healthcare': 464544, 'doctor healthcare desk': 250949, 'healthcare desk staff': 387085, 'desk staff pharmacist': 238470, 'staff pharmacist paramedic': 792750, 'pharmacist paramedic and': 654166, 'paramedic and anyone': 641371, 'and anyone else': 58225, 'anyone else helping': 80268, 'else helping to': 271730, 'helping to keep': 391528, 'keep our community': 471724, 'our community safe': 622478, 'community safe and': 190077, 'safe and running': 729477, 'and running at': 70642, 'running at the': 727927, 'the moment hero': 860760, 'nkstain': 563503, 'underlying': 940465, 'fcukin': 300812, 'highriskcovid19': 396113, 'wtf people': 1013311, 'really all': 701957, 'be that': 117575, 'that nkstain': 845353, 'nkstain it': 563504, 'the that': 869363, 'elderly those': 270910, 'with underlying': 1001895, 'underlying health': 940483, 'condition it': 193476, 'be fcukin': 114809, 'fcukin starvation': 300813, 'starvation highriskcovid19': 795167, 'highriskcovid19 panicbuyinguk': 396120, 'panicbuyinguk stophoarding': 639173, 'wtf people are': 1013312, 'people are you': 647119, 'are you really': 91843, 'you really all': 1020833, 'really all going': 701958, 'to be that': 901585, 'be that nkstain': 117581, 'that nkstain it': 845354, 'nkstain it not': 563505, 'not the that': 572034, 'the that will': 869369, 'that will kill': 847588, 'will kill the': 993925, 'kill the elderly': 474515, 'the elderly those': 854152, 'elderly those of': 270912, 'those of with': 892272, 'of with underlying': 593214, 'with underlying health': 1001897, 'underlying health condition': 940484, 'health condition it': 386293, 'condition it will': 193477, 'will be fcukin': 992456, 'be fcukin starvation': 114810, 'fcukin starvation highriskcovid19': 300814, 'starvation highriskcovid19 panicbuyinguk': 795168, 'highriskcovid19 panicbuyinguk stophoarding': 396121, 'what spreading': 982237, 'spreading faster': 790970, 'faster than': 300121, 'the selfishness': 866672, 'and greed': 63941, 'greed shelf': 363436, 'and freezer': 63285, 'freezer at': 332586, 'at 9am': 97821, '9am this': 23968, 'what spreading faster': 982238, 'spreading faster than': 790971, 'faster than the': 300128, 'than the selfishness': 841272, 'the selfishness and': 866673, 'selfishness and greed': 748329, 'and greed shelf': 63947, 'greed shelf and': 363437, 'shelf and freezer': 756733, 'and freezer at': 63288, 'freezer at our': 332587, 'supermarket at 9am': 819233, 'at 9am this': 97824, '9am this morning': 23969, 'amid social': 52660, 'distancing during': 247114, 'crisis starbucks': 218079, 'starbucks turn': 794109, 'turn to': 935772, 'to takeout': 916263, 'takeout only': 833173, 'amid social distancing': 52661, 'social distancing during': 779595, 'distancing during covid': 247115, '19 crisis starbucks': 6328, 'crisis starbucks turn': 218081, 'starbucks turn to': 794110, 'turn to takeout': 935794, 'to takeout only': 916265, 'morrison': 541691, 'frozenfood': 339038, 'nostock': 567979, 'morrison well': 541781, 'stocked frozen': 803327, 'frozen aisle': 338948, 'aisle morrison': 40309, 'morrison corona': 541713, 'corona freezer': 203952, 'freezer frozenfood': 332606, 'frozenfood supermarket': 339039, 'supermarket panicbuying': 821909, 'panicbuying panic': 639006, 'panic food': 638107, 'food frozen': 314622, 'frozen virus': 339034, 'virus nostock': 958533, 'nostock morrison': 567980, 'morrison well stocked': 541782, 'well stocked frozen': 978596, 'stocked frozen aisle': 803328, 'frozen aisle morrison': 338949, 'aisle morrison corona': 40310, 'morrison corona freezer': 541714, 'corona freezer frozenfood': 203953, 'freezer frozenfood supermarket': 332607, 'frozenfood supermarket panicbuying': 339040, 'supermarket panicbuying panic': 821912, 'panicbuying panic food': 639007, 'panic food frozen': 638111, 'food frozen virus': 314625, 'frozen virus nostock': 339035, 'virus nostock morrison': 958534, 'exchanging': 289503, 'lusty': 506869, 'various': 952578, 'lately': 480943, 'been exchanging': 121102, 'exchanging lusty': 289508, 'lusty look': 506871, 'look with': 502683, 'with various': 1001955, 'various high': 952606, 'high end': 395055, 'end watch': 276064, 'watch lately': 968458, 'lately if': 480961, 'doesn kill': 251858, 'me online': 523272, 'been exchanging lusty': 121104, 'exchanging lusty look': 289509, 'lusty look with': 506872, 'look with various': 502685, 'with various high': 1001957, 'various high end': 952607, 'high end watch': 395061, 'end watch lately': 276065, 'watch lately if': 968459, 'lately if covid': 480962, '19 doesn kill': 6614, 'doesn kill me': 251860, 'kill me online': 474442, 'me online shopping': 523273, 'export': 292602, 'from raise': 337030, 'raise wheat': 695973, 'wheat 2019': 982965, '2019 20': 13917, '20 ending': 13047, 'ending stock': 276204, 'stock estimate': 802086, 'estimate concern': 282238, 'concern boost': 192937, 'boost export': 134952, 'export price': 292689, 'from raise wheat': 337031, 'raise wheat 2019': 695974, 'wheat 2019 20': 982966, '2019 20 ending': 13918, '20 ending stock': 13048, 'ending stock estimate': 276205, 'stock estimate concern': 802087, 'estimate concern boost': 282239, 'concern boost export': 192938, 'boost export price': 134953, 'just quick': 469534, 'store over': 809414, 'over lunch': 630377, 'just quick run': 469536, 'grocery store over': 365631, 'store over lunch': 809416, 'groceryworkersdie': 366413, 'of covid19': 582096, 'covid19 grocery': 214302, 'coronavirus groceryworkersdie': 206008, 'line of covid19': 493296, 'of covid19 grocery': 582100, 'covid19 grocery worker': 214303, 'of coronavirus groceryworkersdie': 581940, 'storeclosings': 811710, 'here list': 393300, 'store closing': 807071, 'closing due': 183627, 'retail storeclosings': 718739, 'here list of': 393301, 'list of temporary': 494480, 'of temporary store': 590662, 'temporary store closing': 837702, 'store closing due': 807072, 'closing due to': 183628, 'to the retail': 917025, 'the retail storeclosings': 865731, 'usbiz': 948889, 'cdnbiz': 168653, 'driver face': 259547, 'face pandemic': 294690, 'no resource': 565336, 'resource usbiz': 714919, 'usbiz cdnbiz': 948890, 'delivery driver face': 233905, 'driver face pandemic': 259548, 'face pandemic with': 294691, 'pandemic with no': 637032, 'with no resource': 999783, 'no resource usbiz': 565339, 'resource usbiz cdnbiz': 714920, 'console': 195519, 'breakroom': 139115, 'eventually': 285139, 'just broke': 468371, 'broke the': 140860, 'rule at': 727205, 'at work': 101588, 'to console': 903244, 'console cry': 195522, 'cry associate': 219851, 'associate in': 96879, 'the breakroom': 849978, 'breakroom we': 139116, 're beat': 698344, 'beat down': 118518, 're tired': 699713, 'tired we': 899057, 're scared': 699431, 'scared we': 741037, 're stressed': 699620, 'stressed and': 813435, 'and eventually': 62362, 'eventually we': 285177, 'will break': 992849, 'break down': 138700, 'just broke the': 468375, 'broke the rule': 140863, 'the rule at': 866041, 'rule at work': 727208, 'at work to': 101620, 'work to console': 1005882, 'to console cry': 903246, 'console cry associate': 195523, 'cry associate in': 219852, 'associate in the': 96881, 'in the breakroom': 429037, 'the breakroom we': 849979, 'breakroom we re': 139117, 'we re beat': 972832, 're beat down': 698345, 'beat down we': 118520, 'down we re': 257450, 'we re tired': 972990, 're tired we': 699714, 'tired we re': 899058, 'we re scared': 972956, 're scared we': 699435, 'scared we re': 741038, 'we re stressed': 972975, 're stressed and': 699621, 'stressed and eventually': 813438, 'and eventually we': 62365, 'eventually we will': 285178, 'we will break': 973839, 'will break down': 992850, 'crippling': 216937, 'deprived': 237696, 'if god': 414158, 'god forbid': 354700, 'forbid corona': 328303, 'corona peak': 204103, 'peak in': 646075, 'pakistan we': 634517, 'lockdown eventually': 499348, 'eventually and': 285140, 'then crippling': 877102, 'crippling economy': 216938, 'economy rotten': 268182, 'rotten system': 726208, 'system could': 831141, 'could lead': 209375, 'to riot': 913540, 'riot we': 722626, 'of deprived': 582544, 'deprived people': 237703, 'people otherwise': 649011, 'otherwise social': 621865, 'social system': 779987, 'system will': 831376, 'will collapse': 992952, 'collapse and': 185963, 'have ripple': 382325, 'effect on': 269076, 'if god forbid': 414159, 'god forbid corona': 354701, 'forbid corona peak': 328304, 'corona peak in': 204104, 'peak in pakistan': 646077, 'in pakistan we': 426449, 'pakistan we will': 634518, 'we will have': 973868, 'to go into': 906813, 'go into the': 353771, 'into the lockdown': 443143, 'the lockdown eventually': 859596, 'lockdown eventually and': 499349, 'eventually and then': 285141, 'and then crippling': 73755, 'then crippling economy': 877103, 'crippling economy rotten': 216939, 'economy rotten system': 268183, 'rotten system could': 726209, 'system could lead': 831142, 'could lead to': 209377, 'lead to riot': 483385, 'to riot we': 913542, 'riot we will': 722628, 'have to take': 383316, 'to take care': 916165, 'take care of': 832012, 'care of deprived': 164098, 'of deprived people': 582545, 'deprived people otherwise': 237704, 'people otherwise social': 649012, 'otherwise social system': 621867, 'social system will': 779988, 'system will collapse': 831378, 'will collapse and': 992953, 'collapse and it': 185969, 'it will have': 462400, 'will have ripple': 993666, 'have ripple effect': 382326, 'ripple effect on': 722737, 'effect on all': 269077, 'on all of': 599236, 'episode': 279502, 'chopped': 177961, 'store now': 809120, 'is like': 449308, 'like being': 489897, 'an episode': 55797, 'episode of': 279539, 'of chopped': 581406, 'grocery store now': 365599, 'store now is': 809126, 'now is like': 575077, 'is like being': 449310, 'like being on': 489901, 'being on an': 125486, 'on an episode': 599327, 'an episode of': 55798, 'episode of chopped': 279540, 'entitled': 278817, 'border': 135212, 'ie': 413724, 'company cannot': 190533, 'cannot provide': 162045, 'provide service': 686465, 'you paid': 1020273, 'for are': 319485, 'you entitled': 1018433, 'entitled to': 278830, 'to refund': 913080, 'refund credit': 706889, 'credit not': 216442, 'not if': 570046, 'the closure': 851049, 'eu border': 283201, 'border why': 135295, 'that okay': 845478, 'okay in': 597985, 'consumer law': 197993, 'law only': 482362, 'only offer': 610842, 'offer credit': 594562, 'credit refund': 216479, 'refund if': 706919, 'the supplier': 868933, 'supplier refund': 824599, 'refund them': 706962, 'them ie': 875877, 'ie they': 413746, 'they offer': 882806, 'offer nothing': 594711, 'if company cannot': 413970, 'company cannot provide': 190537, 'cannot provide service': 162047, 'provide service you': 686469, 'service you paid': 753126, 'you paid for': 1020274, 'paid for are': 634014, 'for are you': 319486, 'are you entitled': 91786, 'you entitled to': 1018434, 'entitled to refund': 278836, 'to refund credit': 913085, 'refund credit not': 706890, 'credit not if': 216443, 'not if is': 570048, 'if is the': 414280, 'is the cause': 452745, 'the cause of': 850546, 'cause of the': 167686, 'of the closure': 590870, 'the closure of': 851055, 'closure of eu': 183962, 'of eu border': 583204, 'eu border why': 283204, 'border why is': 135296, 'is that okay': 452675, 'that okay in': 845479, 'okay in consumer': 597986, 'in consumer law': 421705, 'consumer law only': 198004, 'law only offer': 482363, 'only offer credit': 610843, 'offer credit refund': 594563, 'credit refund if': 216480, 'refund if the': 706922, 'if the supplier': 415037, 'the supplier refund': 868936, 'supplier refund them': 824600, 'refund them ie': 706963, 'them ie they': 875878, 'ie they offer': 413748, 'they offer nothing': 882809, 'distributor': 248267, 'digitised': 242825, 'revamp': 720224, 'sourcing': 786606, 'million store': 532359, 'india and': 434294, 'and about': 57539, 'half million': 374201, 'million distributor': 532127, 'distributor le': 248301, 'than two': 841366, 'two percent': 937146, 'percent have': 651128, 'been digitised': 120979, 'digitised so': 242826, 'far consumer': 298745, 'consumer insight': 197882, 'insight will': 439660, 'help provide': 390383, 'provide small': 686473, 'small store': 775136, 'store way': 811165, 'to revamp': 913486, 'revamp their': 720227, 'their sourcing': 874761, 'sourcing strategy': 786620, 'strategy and': 812605, 'and change': 59715, 'with distributor': 998093, '10 million store': 1530, 'million store in': 532360, 'store in india': 808319, 'in india and': 424020, 'india and about': 434295, 'and about half': 57548, 'about half million': 25338, 'half million distributor': 374202, 'million distributor le': 532128, 'distributor le than': 248302, 'le than two': 483190, 'than two percent': 841371, 'two percent have': 937147, 'percent have been': 651129, 'have been digitised': 379512, 'been digitised so': 120980, 'digitised so far': 242827, 'so far consumer': 777019, 'far consumer insight': 298746, 'consumer insight will': 197891, 'insight will help': 439662, 'will help provide': 993725, 'help provide small': 390385, 'provide small store': 686474, 'small store way': 775139, 'store way to': 811166, 'way to revamp': 970084, 'to revamp their': 913487, 'revamp their sourcing': 720228, 'their sourcing strategy': 874762, 'sourcing strategy and': 786621, 'strategy and change': 812607, 'and change the': 59728, 'change the way': 172304, 'way they work': 969967, 'they work with': 883929, 'work with distributor': 1006030, 'olympics': 598787, 'sponsor': 789820, 'tackling': 831635, 'the decision': 852995, 'to postpone': 911923, 'postpone the': 666779, 'the 2020': 848015, '2020 olympics': 14475, 'olympics in': 598794, 'in tokyo': 430178, 'tokyo will': 923510, 'be relief': 116770, 'consumer company': 196831, 'that sponsor': 846435, 'sponsor the': 789831, 'the game': 856117, 'game they': 343265, 'can now': 159056, 'now focus': 574704, 'on tackling': 603867, 'tackling the': 831652, 'and planning': 69067, 'planning for': 658544, 'the 2021': 848029, '2021 event': 14776, 'event industry': 284998, 'industry observer': 436013, 'observer said': 578643, 'the decision to': 852998, 'decision to postpone': 231107, 'to postpone the': 911927, 'postpone the 2020': 666780, 'the 2020 olympics': 848024, '2020 olympics in': 14476, 'olympics in tokyo': 598795, 'in tokyo will': 430185, 'tokyo will be': 923511, 'will be relief': 992640, 'be relief to': 116771, 'relief to the': 709483, 'to the consumer': 916583, 'the consumer company': 851512, 'consumer company that': 196840, 'company that sponsor': 191189, 'that sponsor the': 846436, 'sponsor the game': 789832, 'the game they': 856127, 'game they can': 343266, 'they can now': 881657, 'can now focus': 159060, 'now focus on': 574706, 'focus on tackling': 311898, 'on tackling the': 603870, 'tackling the impact': 831653, 'impact of the': 417804, 'the pandemic and': 862906, 'pandemic and planning': 634889, 'and planning for': 69068, 'planning for the': 658547, 'for the 2021': 326284, 'the 2021 event': 848030, '2021 event industry': 14777, 'event industry observer': 284999, 'industry observer said': 436014, 'grown': 367266, 'seasonalworkers': 743483, 'migrantlabourers': 531234, 'crisis ha': 217430, 'led to': 485270, 'shelf being': 756888, 'completely cleared': 192235, 'cleared of': 181421, 'is happening': 448273, 'happening in': 377361, 'the field': 855141, 'field where': 304539, 'where our': 985080, 'our fruit': 623207, 'vegetable are': 953933, 'are grown': 86979, 'grown here': 367281, 'new article': 558353, 'article on': 94398, 'on seasonalworkers': 603347, 'seasonalworkers migrantlabourers': 743484, 'migrantlabourers and': 531235, '19 crisis ha': 6255, 'crisis ha led': 217438, 'ha led to': 371126, 'led to supermarket': 485302, 'to supermarket shelf': 915834, 'supermarket shelf being': 822434, 'shelf being completely': 756889, 'being completely cleared': 124975, 'completely cleared of': 192236, 'cleared of food': 181422, 'food but what': 313838, 'but what is': 147793, 'what is happening': 981697, 'is happening in': 448281, 'happening in the': 377368, 'in the field': 429196, 'the field where': 855155, 'field where our': 304540, 'where our fruit': 985081, 'our fruit and': 623208, 'and vegetable are': 74877, 'vegetable are grown': 953935, 'are grown here': 86980, 'grown here is': 367282, 'here is my': 393238, 'is my new': 449804, 'my new article': 549453, 'new article on': 558358, 'article on seasonalworkers': 94410, 'on seasonalworkers migrantlabourers': 603348, 'seasonalworkers migrantlabourers and': 743485, 'migrantlabourers and the': 531236, 'also to': 49017, 'people stocking': 649625, 'on soap': 603528, 'soap hand': 779020, 'sanitiser and': 733909, 'roll leaving': 725370, 'empty the': 275176, 'do realise': 250023, 'realise to': 701616, 'hand too': 375887, 'too stoppanicbuying': 925089, 'also to the': 49022, 'the people stocking': 863505, 'people stocking up': 649627, 'up on soap': 945618, 'on soap hand': 603530, 'soap hand sanitiser': 779022, 'hand sanitiser and': 375219, 'sanitiser and toilet': 733918, 'and toilet roll': 74238, 'toilet roll leaving': 921580, 'roll leaving the': 725371, 'leaving the shelf': 485155, 'the shelf empty': 866832, 'shelf empty the': 757036, 'empty the rest': 275180, 'rest of you': 716213, 'of you do': 593382, 'you do realise': 1018267, 'do realise to': 250026, 'realise to stop': 701617, 'spread of other': 790695, 'of other people': 587368, 'other people need': 620679, 'people need to': 648839, 'to be able': 901084, 'able to wash': 24568, 'to wash their': 918352, 'their hand too': 873487, 'hand too stoppanicbuying': 375889, 'shutoffs': 768164, 'consumer energy': 197360, 'energy is': 276487, 'is suspending': 452507, 'suspending service': 829660, 'service shutoffs': 752826, 'shutoffs for': 768167, 'senior citizen': 750245, 'income customer': 432310, 'customer because': 222174, 'consumer energy is': 197364, 'energy is suspending': 276489, 'is suspending service': 452509, 'suspending service shutoffs': 829661, 'service shutoffs for': 752827, 'shutoffs for senior': 768168, 'for senior citizen': 325459, 'senior citizen and': 750248, 'citizen and low': 178836, 'and low income': 66442, 'low income customer': 505345, 'income customer because': 432311, 'customer because of': 222175, 'mike': 531265, 'thought would': 893323, 'be waiting': 118032, 'store mike': 808958, 'mike and': 531266, 'and moved': 67294, 'moved last': 543812, 'last weekend': 480699, 'weekend so': 977404, 'have ton': 383368, 'food left': 315288, 'never thought would': 558237, 'thought would be': 893324, 'would be waiting': 1011664, 'be waiting in': 118034, 'get into grocery': 347366, 'grocery store mike': 365569, 'store mike and': 808959, 'mike and moved': 531267, 'and moved last': 67296, 'moved last weekend': 543813, 'last weekend so': 480701, 'weekend so we': 977408, 'so we don': 778664, 'we don have': 971384, 'don have ton': 253623, 'have ton of': 383369, 'ton of food': 924272, 'of food left': 583724, 'poorer': 664341, 'earning': 264862, 'agricandcovid19': 38862, 'food demand': 314164, 'demand in': 235664, 'in poorer': 426833, 'poorer country': 664346, 'more linked': 539705, 'to income': 908260, 'income and': 432278, 'we expect': 971489, 'expect loss': 290671, 'income earning': 432322, 'earning opportunity': 264875, 'opportunity which': 613748, 'which could': 985775, 'could impact': 209316, 'on consumption': 600089, 'consumption of': 199912, 'food agricandcovid19': 313056, 'food demand in': 314173, 'demand in poorer': 235673, 'in poorer country': 426835, 'poorer country is': 664348, 'country is more': 210811, 'is more linked': 449714, 'more linked to': 539706, 'linked to income': 493994, 'to income and': 908261, 'income and with': 432286, 'and with covid': 75763, '19 we expect': 11929, 'we expect loss': 971495, 'expect loss of': 290672, 'loss of income': 503747, 'of income earning': 585065, 'income earning opportunity': 432323, 'earning opportunity which': 264876, 'opportunity which could': 613749, 'which could impact': 985778, 'could impact on': 209318, 'impact on consumption': 417834, 'on consumption of': 600090, 'consumption of food': 199915, 'of food agricandcovid19': 583636, 'closing all': 183572, 'all store': 44485, 'state they': 795998, 'closing all store': 183581, 'all store in': 44498, 'in the united': 429637, 'united state they': 942247, 'state they will': 796000, 'they will continue': 883833, 'continue to offer': 201224, 'to offer online': 910840, 'unsolicited': 943508, 'suspicious': 829708, 'official are': 595753, 'are warning': 91532, 'warning senior': 967191, 'senior about': 750181, 'about new': 25787, 'new scam': 559543, 'which scammer': 986291, 'are calling': 85144, 'calling and': 156520, 'and offering': 67980, 'offering kit': 595173, 'kit in': 475569, 'an attempt': 55469, 'to obtain': 910797, 'obtain personal': 578737, 'personal information': 652886, 'information medicare': 437890, 'medicare will': 526599, 'never call': 557922, 'call you': 156248, 'you unsolicited': 1021980, 'unsolicited or': 943518, 'or threaten': 617446, 'threaten you': 893769, 'get information': 347335, 'information if': 437862, 'receive suspicious': 703547, 'suspicious call': 829713, 'call hang': 155923, 'official are warning': 595760, 'are warning senior': 91534, 'warning senior about': 967192, 'senior about new': 750182, 'about new scam': 25794, 'new scam in': 559545, 'scam in which': 740205, 'in which scammer': 430866, 'which scammer are': 986292, 'scammer are calling': 740529, 'are calling and': 85145, 'calling and offering': 156522, 'and offering kit': 67987, 'offering kit in': 595174, 'kit in an': 475571, 'in an attempt': 420285, 'an attempt to': 55470, 'attempt to obtain': 102253, 'to obtain personal': 910802, 'obtain personal information': 578738, 'personal information medicare': 652896, 'information medicare will': 437891, 'medicare will never': 526600, 'will never call': 994160, 'never call you': 557924, 'call you unsolicited': 156257, 'you unsolicited or': 1021982, 'unsolicited or threaten': 943520, 'or threaten you': 617447, 'threaten you to': 893771, 'you to get': 1021781, 'to get information': 906507, 'get information if': 347336, 'information if you': 437863, 'you receive suspicious': 1020855, 'receive suspicious call': 703548, 'suspicious call hang': 829714, 'call hang up': 155924, 'massachusetts': 519897, 'exactly': 288722, 'feared': 301438, 'demanded': 236545, 'instacart delivery': 439915, 'driver in': 259612, 'in massachusetts': 425175, 'massachusetts were': 519932, 'told they': 923729, 'they may': 882659, 'may have': 521229, 'been exposed': 121112, 'coronavirus due': 205856, 'outbreak at': 628033, 'is exactly': 447622, 'exactly what': 288760, 'what instacart': 981668, 'instacart worker': 439933, 'worker feared': 1006916, 'feared when': 301447, 'they announced': 881166, 'announced strike': 77050, 'strike and': 813725, 'and demanded': 61184, 'demanded basic': 236546, 'basic protection': 112034, 'protection against': 685289, 'instacart delivery driver': 439916, 'delivery driver in': 233918, 'driver in massachusetts': 259614, 'in massachusetts were': 425182, 'massachusetts were told': 519933, 'were told they': 980280, 'told they may': 923733, 'they may have': 882663, 'may have been': 521230, 'have been exposed': 379532, 'been exposed to': 121118, 'exposed to the': 292908, 'the coronavirus due': 851837, 'coronavirus due to': 205857, 'to an outbreak': 900469, 'an outbreak at': 56733, 'outbreak at local': 628034, 'at local grocery': 99606, 'store this is': 810699, 'this is exactly': 888251, 'is exactly what': 447625, 'exactly what instacart': 288762, 'what instacart worker': 981669, 'instacart worker feared': 439934, 'worker feared when': 1006917, 'feared when they': 301448, 'when they announced': 984241, 'they announced strike': 881168, 'announced strike and': 77052, 'strike and demanded': 813726, 'and demanded basic': 61185, 'demanded basic protection': 236547, 'basic protection against': 112035, 'naija': 551433, 'bbnaija': 113183, 'ilorin resident': 416482, 'resident flood': 714300, 'flood market': 310711, 'market street': 517137, 'street to': 813145, 'food others': 315698, 'others covid': 621349, 'lockdown notice': 499696, 'notice nigeria': 573314, 'nigeria naija': 562770, 'naija news': 551438, 'news bbnaija': 560263, 'ilorin resident flood': 416483, 'resident flood market': 714301, 'flood market street': 310712, 'market street to': 517138, 'street to stock': 813152, 'stock food others': 802142, 'food others covid': 315700, 'others covid 19': 621350, '19 lockdown notice': 8408, 'lockdown notice nigeria': 499697, 'notice nigeria naija': 573315, 'nigeria naija news': 562772, 'naija news bbnaija': 551439, '67': 21449, 'humboldtcounty': 410840, '2019 67': 13928, '67 00': 21450, 'from drug': 335224, 'drug use': 261139, 'use is': 949291, 'is anyone': 445762, 'anyone talking': 80549, 'this some': 890238, 'some stupid': 783988, 'stupid couple': 815372, 'couple in': 211601, 'in humboldtcounty': 423913, 'humboldtcounty went': 410841, 'went on': 979067, 'on cruise': 600175, 'cruise and': 219690, 'and returned': 70474, 'returned home': 719967, 'then went': 877738, 'bought gas': 136578, 'gas etc': 343835, 'etc etc': 282516, 'etc these': 282808, 'two idiot': 936968, 'idiot tested': 413608, 'in 2019 67': 419798, '2019 67 00': 13929, '67 00 people': 21451, '00 people died': 408, 'people died from': 647656, 'died from drug': 241554, 'from drug use': 335225, 'drug use is': 261141, 'use is anyone': 949292, 'is anyone talking': 445768, 'anyone talking about': 80550, 'talking about this': 833991, 'about this some': 26662, 'this some stupid': 890242, 'some stupid couple': 783989, 'stupid couple in': 815373, 'couple in humboldtcounty': 211604, 'in humboldtcounty went': 423914, 'humboldtcounty went on': 410842, 'went on cruise': 979070, 'on cruise and': 600176, 'cruise and returned': 219691, 'and returned home': 70475, 'returned home and': 719968, 'home and then': 400700, 'and then went': 73822, 'then went to': 877740, 'grocery store bought': 365253, 'store bought gas': 806754, 'bought gas etc': 136579, 'gas etc etc': 343836, 'etc etc these': 282525, 'etc these two': 282810, 'these two idiot': 880895, 'two idiot tested': 936969, 'idiot tested positive': 413609, 'positive for the': 665330, 'widely': 991776, '16 million': 4132, 'people filed': 647909, 'for unemployment': 327428, 'unemployment last': 941236, 'week more': 976541, 'yorkers have': 1016708, 'and countless': 60636, 'countless more': 210379, 'more are': 538638, 'likely infected': 492029, 'infected but': 436540, 'we still': 973395, 'still do': 800434, 'have widely': 383597, 'widely available': 991781, 'available testing': 104610, 'testing oil': 839585, 'up today': 946454, '16 million people': 4137, 'million people filed': 532307, 'people filed for': 647910, 'filed for unemployment': 305403, 'for unemployment last': 327438, 'unemployment last week': 941237, 'last week more': 480660, 'week more than': 976545, '00 new yorkers': 362, 'new yorkers have': 559968, 'yorkers have died': 1016709, 'died from covid': 241552, '19 and countless': 5005, 'and countless more': 60639, 'countless more are': 210380, 'more are likely': 538641, 'are likely infected': 87801, 'likely infected but': 492030, 'infected but we': 436541, 'but we still': 147764, 'we still do': 973399, 'still do not': 800435, 'not have widely': 569890, 'have widely available': 383598, 'widely available testing': 991783, 'available testing oil': 104612, 'testing oil price': 839586, 'oil price went': 597317, 'went up today': 979222, 'latexgloves': 481625, 'just small': 469814, 'small queue': 775080, 'queue not': 694010, 'not cant': 568688, 'cant even': 162282, 'even see': 284553, 'supermarket from': 820453, 'from back': 334620, 'back here': 107049, 'here but': 392834, 'least the': 484647, 'sun is': 818071, 'shining staysafe': 758626, 'staysafe latexgloves': 798842, 'latexgloves socialdistancing': 481628, 'just small queue': 469815, 'small queue not': 775081, 'queue not cant': 694011, 'not cant even': 568689, 'cant even see': 162285, 'even see the': 284554, 'see the supermarket': 745889, 'the supermarket from': 868601, 'supermarket from back': 820454, 'from back here': 334621, 'back here but': 107050, 'here but at': 392835, 'at least the': 99552, 'least the sun': 484651, 'the sun is': 868412, 'sun is shining': 818072, 'is shining staysafe': 451859, 'shining staysafe latexgloves': 758627, 'staysafe latexgloves socialdistancing': 798843, 'relying': 709664, 'shopping process': 763681, 'process really': 679951, 'really mean': 702411, 'mean you': 524783, 'all relying': 44148, 'relying on': 709665, 'on lot': 601940, 'hand coronapocolypse': 374880, 'online shopping process': 609235, 'shopping process really': 763683, 'process really mean': 679952, 'really mean you': 702414, 'mean you re': 524789, 're all relying': 698233, 'all relying on': 44149, 'relying on lot': 709677, 'on lot of': 601941, 'of people to': 588005, 'people to wash': 649965, 'your hand coronapocolypse': 1024179, 'extremely': 293854, 'hoosier': 403373, 'have noticed': 381712, 'noticed that': 573476, 'that gas': 843981, 'are extremely': 86391, 'extremely low': 293904, 'low right': 505579, 'now throughout': 576151, 'throughout the': 894962, 'the hoosier': 857489, 'hoosier state': 403382, 'state why': 796085, 'ha something': 372003, 'something to': 785094, 'everything full': 287809, 'you may have': 1019801, 'may have noticed': 521251, 'have noticed that': 381719, 'noticed that gas': 573479, 'that gas price': 843982, 'price are extremely': 672663, 'are extremely low': 86394, 'extremely low right': 293907, 'low right now': 505580, 'right now throughout': 722159, 'now throughout the': 576152, 'throughout the hoosier': 894973, 'the hoosier state': 857490, 'hoosier state why': 403383, 'state why is': 796087, 'is that covid': 452637, '19 ha something': 7389, 'ha something to': 372004, 'something to do': 785099, 'do with it': 250554, 'with it but': 999061, 'it but not': 456953, 'not everything full': 569305, 'everything full story': 287810, 'just got': 468845, 'got hand': 358592, 'mask feel': 518647, 'like won': 491832, 'won the': 1003924, 'just got hand': 468856, 'got hand sanitizer': 358593, 'sanitizer and face': 734404, 'face mask feel': 294538, 'mask feel like': 518648, 'feel like won': 302765, 'like won the': 491833, 'won the lottery': 1003925, 'kinyarwanda': 475392, 'invent': 443606, 'rwot': 728776, 'say hand': 738719, 'in kinyarwanda': 424518, 'kinyarwanda think': 475393, 'think we': 885759, 'we night': 972586, 'night need': 563033, 'to invent': 908479, 'invent new': 443611, 'word now': 1004531, 'now thanks': 575991, 'to corona': 903524, 'corona rwot': 204155, 'wondering how they': 1004163, 'how they say': 408927, 'they say hand': 883269, 'say hand sanitizer': 738720, 'sanitizer in kinyarwanda': 735142, 'in kinyarwanda think': 424519, 'kinyarwanda think we': 475394, 'think we night': 885769, 'we night need': 972587, 'night need to': 563034, 'need to invent': 555974, 'to invent new': 908480, 'invent new word': 443613, 'new word now': 559883, 'word now thanks': 1004532, 'now thanks to': 575993, 'thanks to corona': 842214, 'to corona rwot': 903530, 'fortify': 329813, 'to fortify': 906205, 'fortify stressed': 329814, 'stressed out': 813452, 'out contact': 625884, 'contact center': 200043, 'center credit': 169179, 'credit woe': 216556, 'woe mount': 1003334, 'how to fortify': 409024, 'to fortify stressed': 906206, 'fortify stressed out': 329815, 'stressed out contact': 813453, 'out contact center': 625885, 'contact center credit': 200044, 'center credit woe': 169180, 'credit woe mount': 216557, 'itv': 464010, 'foundation': 330476, '3layered': 18293, '24ltrs': 15771, 'renowned': 711025, 'gestrointrogist': 346426, 'sarin': 736777, 'santitation': 736634, 'coronawarriors': 207129, 'itvfoundation': 464020, 'itv foundation': 464011, 'foundation ha': 330487, 'ha donated': 370409, 'donated 1500': 254302, '1500 3layered': 3934, '3layered mask': 18294, 'and 24ltrs': 57424, '24ltrs of': 15772, 'on request': 603157, 'request of': 713177, 'the renowned': 865508, 'renowned gestrointrogist': 711026, 'gestrointrogist dr': 346427, 'dr sarin': 258094, 'sarin santitation': 736780, 'santitation coronawarriors': 736635, 'coronawarriors itvfoundation': 207131, 'itv foundation ha': 464012, 'foundation ha donated': 330488, 'ha donated 1500': 370410, 'donated 1500 3layered': 254303, '1500 3layered mask': 3935, '3layered mask and': 18295, 'mask and 24ltrs': 518305, 'and 24ltrs of': 57425, '24ltrs of hand': 15773, 'sanitizer to health': 735928, 'care worker on': 164296, 'worker on request': 1007489, 'on request of': 603159, 'request of the': 713179, 'of the renowned': 591403, 'the renowned gestrointrogist': 865509, 'renowned gestrointrogist dr': 711027, 'gestrointrogist dr sarin': 346428, 'dr sarin santitation': 258096, 'sarin santitation coronawarriors': 736781, 'santitation coronawarriors itvfoundation': 736636, 'tunnel': 935472, 'installed': 440017, 'narol': 551926, 'an additional': 55105, 'additional layer': 31837, 'layer of': 482635, 'of protection': 588553, 'protection for': 685437, 'our police': 624378, 'police personnel': 663157, 'personnel to': 653161, 'fight sanitizer': 304860, 'sanitizer tunnel': 735978, 'tunnel ha': 935475, 'been installed': 121393, 'installed at': 440018, 'at narol': 99847, 'narol police': 551927, 'police station': 663210, 'an additional layer': 55114, 'additional layer of': 31838, 'layer of protection': 482638, 'of protection for': 588554, 'protection for our': 685443, 'for our police': 324281, 'our police personnel': 624380, 'police personnel to': 663158, 'personnel to fight': 653163, 'to fight sanitizer': 905809, 'fight sanitizer tunnel': 304862, 'sanitizer tunnel ha': 735979, 'tunnel ha been': 935476, 'ha been installed': 369836, 'been installed at': 121394, 'installed at narol': 440020, 'at narol police': 99848, 'narol police station': 551928, 'relaxed': 708850, 'new post': 559318, 'post supermarket': 666335, 'supermarket competition': 819750, 'competition law': 191704, 'law relaxed': 482378, 'relaxed in': 708861, 'in covid': 421842, 'new post supermarket': 559327, 'post supermarket competition': 666336, 'supermarket competition law': 819751, 'competition law relaxed': 191705, 'law relaxed in': 482379, 'relaxed in covid': 708862, 'in covid 19': 421843, 'vietnam': 957029, 'malaysia': 511584, 'benefited': 127150, 'yr': 1026999, 'carpe': 164894, 'diem': 241634, 'lining in': 493740, 'crisis for': 217388, 'for india': 322537, 'india record': 434588, 'price much': 675287, 'more focus': 539224, 'focus to': 311927, 'move supply': 543731, 'chain away': 170535, 'china vietnam': 177036, 'vietnam thailand': 957045, 'thailand malaysia': 840100, 'malaysia have': 511612, 'have benefited': 379767, 'benefited from': 127153, 'the china': 850830, 'china trade': 177017, 'war this': 966556, 'our 2nd': 621992, '2nd chance': 16760, 'chance in': 171734, 'in yr': 431145, 'yr carpe': 1027012, 'carpe diem': 164895, 'silver lining in': 769823, 'lining in the': 493742, 'in the crisis': 429108, 'the crisis for': 852379, 'crisis for india': 217391, 'for india record': 322543, 'india record low': 434589, 'record low oil': 705016, 'oil price much': 597198, 'price much more': 675290, 'much more focus': 545106, 'more focus to': 539226, 'focus to move': 311929, 'to move supply': 910318, 'move supply chain': 543732, 'supply chain away': 824910, 'chain away from': 170536, 'away from china': 105867, 'from china vietnam': 334873, 'china vietnam thailand': 177037, 'vietnam thailand malaysia': 957047, 'thailand malaysia have': 840101, 'malaysia have benefited': 511613, 'have benefited from': 379768, 'benefited from the': 127154, 'from the china': 337639, 'the china trade': 850836, 'china trade war': 177019, 'trade war this': 928614, 'war this is': 966558, 'is our 2nd': 450611, 'our 2nd chance': 621993, '2nd chance in': 16761, 'chance in yr': 171737, 'in yr carpe': 431146, 'yr carpe diem': 1027013, 'bfa': 129297, 'since many': 770716, 'continue our': 201087, 'shopping due': 762527, 'support bfa': 826384, 'bfa while': 129298, 'essential online': 281355, 'since many of': 770719, 'of are not': 580349, 'are not able': 88308, 'able to continue': 24464, 'to continue our': 903397, 'continue our regular': 201089, 'regular shopping due': 707866, 'shopping due to': 762528, '19 this is': 11346, 'is the perfect': 452890, 'the perfect opportunity': 863542, 'perfect opportunity to': 651320, 'opportunity to support': 613730, 'to support bfa': 915907, 'support bfa while': 826385, 'bfa while you': 129299, 'while you shop': 987594, 'you shop for': 1021160, 'shop for essential': 760184, 'for essential online': 321113, 'caliber': 155441, 'on ammo': 599305, 'ammo not': 52901, 'not because': 568487, 'you thought': 1021713, 'thought canadian': 892992, 'canadian price': 160730, 'price would': 677656, 'would soon': 1012254, 'soon go': 785724, 'up what': 946562, 'what caliber': 981159, 'caliber would': 155442, 'would it': 1011962, 'going to stock': 355724, 'up on ammo': 945522, 'on ammo not': 599306, 'ammo not because': 52902, 'not because of': 568492, 'because of 19': 119303, 'of 19 panic': 579408, 'panic buying but': 637665, 'buying but because': 150062, 'but because you': 145278, 'because you thought': 119878, 'you thought canadian': 1021715, 'thought canadian price': 892993, 'canadian price would': 160731, 'price would soon': 677667, 'would soon go': 1012256, 'soon go up': 785725, 'go up what': 354447, 'up what caliber': 946563, 'what caliber would': 981160, 'caliber would it': 155443, 'would it be': 1011963, 'male': 511680, '62yo': 21259, 'lived': 496143, 'canberra': 160808, 'practicing': 668718, 'yesterday australia': 1015687, 'australia had': 103296, 'had death': 373011, 'death all': 229956, 'all male': 43444, 'male aged': 511681, 'aged 62': 37935, '62 90': 21220, '90 from': 23296, 'the 62yo': 848172, '62yo lived': 21260, 'lived in': 496162, 'in canberra': 421211, 'canberra had': 160822, 'had been': 372882, 'been practicing': 121687, 'practicing socialdistancing': 668744, 'socialdistancing for': 780370, 'month he': 537765, 'he only': 385280, 'only left': 610715, 'left home': 485497, 'home couple': 400960, 'that small': 846341, 'small risk': 775099, 'risk killed': 723657, 'killed him': 474592, 'him men': 396659, 'men are': 528456, 'are twice': 91240, 'twice likely': 936528, 'yesterday australia had': 1015688, 'australia had death': 103297, 'had death all': 373012, 'death all male': 229957, 'all male aged': 43445, 'male aged 62': 511682, 'aged 62 90': 37936, '62 90 from': 21221, '90 from the': 23297, 'from the 62yo': 337589, 'the 62yo lived': 848173, '62yo lived in': 21261, 'lived in canberra': 496163, 'in canberra had': 421213, 'canberra had been': 160823, 'had been practicing': 372905, 'been practicing socialdistancing': 121688, 'practicing socialdistancing for': 668749, 'socialdistancing for month': 780372, 'for month he': 323521, 'month he only': 537766, 'he only left': 385282, 'only left home': 610716, 'left home couple': 485499, 'home couple of': 400961, 'couple of time': 211648, 'of time to': 592191, 'the supermarket that': 868845, 'supermarket that small': 823197, 'that small risk': 846345, 'small risk killed': 775100, 'risk killed him': 723658, 'killed him men': 474593, 'him men are': 396660, 'men are twice': 528457, 'are twice likely': 91241, 'twice likely to': 936529, 'likely to die': 492142, 'hey aldi': 394310, 'aldi and': 41251, 'and trader': 74345, 'joe store': 466440, 'deserve paid': 238098, 'leave supermarket': 484950, 'are exposed': 86372, '19 other': 9040, 'other illness': 620395, 'illness they': 416400, 'home if': 401394, 'hey aldi and': 394311, 'aldi and trader': 41253, 'and trader joe': 74347, 'trader joe store': 928720, 'joe store worker': 466441, 'store worker deserve': 811477, 'worker deserve paid': 1006763, 'deserve paid sick': 238099, 'sick leave supermarket': 768505, 'leave supermarket worker': 484953, 'supermarket worker are': 823990, 'worker are exposed': 1006387, 'are exposed to': 86373, 'exposed to covid': 292893, '19 and covid': 5006, 'covid 19 other': 213528, '19 other illness': 9042, 'other illness they': 620396, 'illness they should': 416401, 'should be able': 765541, 'able to stay': 24551, 'stay home if': 796974, 'home if they': 401400, 'if they are': 415093, 'they are sick': 881409, 'clientes': 182153, 'carioca': 164737, 'buscando': 143116, 'prote': 684750, 'contra': 201610, 'ru': 726881, 'supermercados': 824289, 'guanabara': 367687, 'clientes carioca': 182154, 'carioca buscando': 164738, 'buscando prote': 143117, 'prote contra': 684751, 'contra corona': 201611, 'corona ru': 204149, 'ru no': 726893, 'no supermercados': 565627, 'supermercados guanabara': 824298, 'clientes carioca buscando': 182155, 'carioca buscando prote': 164739, 'buscando prote contra': 143118, 'prote contra corona': 684752, 'contra corona ru': 201612, 'corona ru no': 204150, 'ru no supermercados': 726894, 'no supermercados guanabara': 565628, 'award': 105572, 'hearted': 388435, 'uhuru': 938101, 'kenyatta': 473000, 'moody': 538298, 'awori': 106299, 'supermarket award': 819276, 'award two': 105585, 'two kind': 936991, 'kind hearted': 474851, 'hearted police': 388441, 'officer uhuru': 595735, 'uhuru kenyatta': 938102, 'kenyatta moody': 473009, 'moody awori': 538301, 'naivas supermarket award': 551522, 'supermarket award two': 819277, 'award two kind': 105586, 'two kind hearted': 936992, 'kind hearted police': 474852, 'hearted police officer': 388442, 'police officer uhuru': 663134, 'officer uhuru kenyatta': 595736, 'uhuru kenyatta moody': 938106, 'kenyatta moody awori': 473010, 'radically': 695411, 'altered': 49157, 'ha radically': 371622, 'radically altered': 695414, 'altered the': 49166, 'way people': 969804, 'the spend': 867565, 'spend their': 788685, 'their money': 873991, 'money customer': 536686, 'have simply': 382559, 'simply stopped': 770296, 'stopped spending': 805759, 'spending entirely': 788798, 'entirely this': 278809, 'sharpest decline': 755723, 'decline in': 231336, 'spending that': 788996, 'have ever': 380487, 'ever seen': 285484, 'seen one': 747170, 'one economist': 606222, 'economist said': 267578, 'the ha radically': 857011, 'ha radically altered': 371623, 'radically altered the': 695415, 'altered the way': 49167, 'the way people': 871175, 'way people in': 969807, 'in the spend': 429558, 'the spend their': 867566, 'spend their money': 788686, 'their money customer': 873995, 'money customer of': 536687, 'customer of many': 222638, 'of many business': 586171, 'business have simply': 143832, 'have simply stopped': 382562, 'simply stopped spending': 770297, 'stopped spending entirely': 805760, 'spending entirely this': 788799, 'entirely this is': 278810, 'is the sharpest': 452937, 'the sharpest decline': 866804, 'sharpest decline in': 755724, 'decline in consumer': 231345, 'in consumer spending': 421722, 'consumer spending that': 199095, 'spending that we': 788998, 'that we have': 847376, 'we have ever': 971808, 'have ever seen': 380492, 'ever seen one': 285490, 'seen one economist': 747171, 'one economist said': 606223, 'cole': 185829, 'cole supermarket': 185878, 'is fully': 447979, 'stocked after': 803247, 'buying via': 151310, 'cole supermarket is': 185882, 'supermarket is fully': 821092, 'is fully stocked': 447981, 'fully stocked after': 341083, 'stocked after covid': 803248, 'panic buying via': 637952, 'landscape': 479386, 'trend in': 931359, 'in digital': 422267, 'digital since': 242650, 'since whilst': 770995, 'whilst the': 987693, 'world see': 1009955, 'see big': 744962, 'big shift': 129983, 'habit result': 372677, 'at what': 101520, 'major shift': 509459, 'in consumption': 421731, 'consumption are': 199836, 'changed the': 172560, 'the digital': 853281, 'digital advertising': 242499, 'advertising landscape': 33241, 'trend in digital': 931364, 'in digital since': 422269, 'digital since whilst': 242651, 'since whilst the': 770996, 'whilst the world': 987697, 'the world see': 871959, 'world see big': 1009956, 'see big shift': 744966, 'big shift in': 129984, 'in consumer habit': 421700, 'consumer habit result': 197692, 'habit result of': 372678, 'of the outbreak': 591306, 'outbreak we look': 628798, 'we look at': 972292, 'look at what': 502306, 'at what the': 101534, 'what the major': 982337, 'the major shift': 859935, 'major shift in': 509460, 'shift in consumption': 758320, 'in consumption are': 421732, 'consumption are and': 199837, 'and how this': 64840, 'how this ha': 408946, 'this ha changed': 887801, 'ha changed the': 370137, 'changed the digital': 172564, 'the digital advertising': 853282, 'digital advertising landscape': 242500, 'to safely': 913711, 'safely shop': 730315, 'grocery while': 366137, 'few tip on': 304112, 'tip on how': 898852, 'how to safely': 409076, 'to safely shop': 913722, 'safely shop for': 730316, 'shop for grocery': 760188, 'for grocery while': 322058, 'waitrose': 964435, 'take away': 831959, 'away the': 106046, 'supermarket trolley': 823558, 'trolley only': 932453, 'only basket': 610141, 'basket coronacrisis': 112321, 'coronacrisis supermarket': 204801, 'supermarket tesco': 823150, 'tesco sainsburys': 838795, 'sainsburys aldi': 731748, 'aldi waitrose': 41313, 'waitrose morrison': 964462, 'take away the': 831972, 'away the supermarket': 106050, 'the supermarket trolley': 868874, 'supermarket trolley only': 823566, 'trolley only basket': 932454, 'only basket coronacrisis': 610142, 'basket coronacrisis supermarket': 112322, 'coronacrisis supermarket tesco': 204804, 'supermarket tesco sainsburys': 823153, 'tesco sainsburys aldi': 838796, 'sainsburys aldi waitrose': 731750, 'aldi waitrose morrison': 41314, 'stock yet': 803214, 'yet fresh': 1016082, 'of stock yet': 590213, 'stock yet fresh': 803215, 'yet fresh fruit': 1016083, 'idea how the': 413078, 'creative': 216117, 'substituting': 816102, 'bestseller': 128043, 'shortage and': 764811, 'panic caused': 638001, 'and 19': 57389, 'getting creative': 348919, 'creative when': 216181, 'to substituting': 915718, 'substituting toiletpaper': 816103, 'in related': 427365, 'related story': 708578, 'story this': 812130, 'the bestseller': 849566, 'bestseller list': 128044, 'list again': 494260, 'to the shortage': 917061, 'the shortage and': 867088, 'shortage and panic': 764823, 'and panic caused': 68649, 'panic caused by': 638002, 'by the and': 154261, 'the and 19': 848678, 'and 19 people': 57392, '19 people are': 9619, 'people are getting': 646987, 'are getting creative': 86799, 'getting creative when': 348923, 'creative when it': 216182, 'come to substituting': 187602, 'to substituting toiletpaper': 915719, 'substituting toiletpaper in': 816104, 'toiletpaper in related': 922118, 'in related story': 427368, 'related story this': 708580, 'story this is': 812131, 'this is on': 888344, 'is on the': 450487, 'on the bestseller': 603986, 'the bestseller list': 849567, 'bestseller list again': 128045, 'existential': 290283, 'farmer who': 299571, 'who rely': 989522, 'on farmer': 600738, 'farmer market': 299439, 'other direct': 620104, 'direct to': 243395, 'consumer sale': 198854, 'sale for': 732226, 'major portion': 509423, 'income the': 432473, 'the threat': 869510, 'threat of': 893683, 'of closed': 581468, 'closed market': 183220, 'market due': 516317, '19 could': 6151, 'be existential': 114730, 'for farmer who': 321409, 'farmer who rely': 299572, 'who rely on': 989523, 'rely on farmer': 709639, 'on farmer market': 600741, 'farmer market and': 299442, 'market and other': 515979, 'and other direct': 68311, 'other direct to': 620105, 'direct to consumer': 243396, 'to consumer sale': 903329, 'consumer sale for': 198858, 'sale for major': 732232, 'for major portion': 323168, 'major portion of': 509424, 'portion of their': 665025, 'of their income': 591673, 'their income the': 873647, 'income the threat': 432475, 'the threat of': 869511, 'threat of closed': 893687, 'of closed market': 581469, 'closed market due': 183221, 'market due to': 516318, 'covid 19 could': 212871, '19 could be': 6153, 'could be existential': 208867, 'lifetime': 489389, 'scratchcards': 742619, 'methinks': 529755, 'government lockdown': 360326, 'lockdown public': 499815, 'public demand': 687943, 'demand month': 235879, 'free council': 331734, 'council tax': 210029, 'tax free': 834990, 'food someone': 316693, 'someone to': 784696, 'wipe arse': 996201, 'arse live': 94075, 'live rent': 496000, 'rent free': 711092, 'free lifetime': 331945, 'lifetime supply': 489409, 'of scratchcards': 589417, 'scratchcards and': 742620, 'and fuck': 63385, 'you going': 1018877, 'going for': 355138, 'walk fishing': 964781, 'fishing golf': 309404, 'golf shopping': 356143, 'shopping methinks': 763279, 'methinks you': 529756, 'taking this': 833613, 'this seriously': 890033, 'seriously people': 751695, 'people lockdown': 648690, 'government lockdown public': 360327, 'lockdown public demand': 499816, 'public demand month': 687944, 'demand month free': 235880, 'month free council': 537737, 'free council tax': 331735, 'council tax free': 210031, 'tax free food': 834993, 'free food someone': 331836, 'food someone to': 316695, 'someone to wipe': 784712, 'to wipe arse': 918622, 'wipe arse live': 996202, 'arse live rent': 94076, 'live rent free': 496001, 'rent free lifetime': 711093, 'free lifetime supply': 331946, 'lifetime supply of': 489410, 'supply of scratchcards': 825647, 'of scratchcards and': 589418, 'scratchcards and fuck': 742621, 'and fuck you': 63387, 'fuck you going': 339700, 'you going for': 1018880, 'going for walk': 355154, 'for walk fishing': 327618, 'walk fishing golf': 964782, 'fishing golf shopping': 309405, 'golf shopping methinks': 356144, 'shopping methinks you': 763280, 'methinks you re': 529757, 'not taking this': 571934, 'taking this seriously': 833620, 'this seriously people': 890044, 'seriously people lockdown': 751698, 'altoriesgocovid19': 49395, 'no just': 564556, 'flu stay': 311462, 'home take': 402184, 'take this': 832706, 'seriously thank': 751747, 'thank your': 841849, 'your medical': 1024804, 'medical provider': 526348, 'provider thank': 686793, 'worker thanks': 1007906, 'there right': 879001, 'now they': 576100, 'are risking': 89723, 'for altoriesgocovid19': 319221, 'this is no': 888331, 'is no just': 449944, 'no just the': 564557, 'just the flu': 470000, 'the flu stay': 855463, 'flu stay at': 311463, 'at home take': 99130, 'home take this': 402186, 'take this seriously': 832714, 'this seriously thank': 890045, 'seriously thank your': 751748, 'thank your medical': 841854, 'your medical provider': 1024805, 'medical provider thank': 526351, 'provider thank your': 686794, 'thank your grocery': 841851, 'store worker thanks': 811600, 'worker thanks to': 1007909, 'thanks to everyone': 842220, 'who is there': 989122, 'is there right': 453029, 'there right now': 879002, 'right now they': 722156, 'now they are': 576102, 'they are risking': 881392, 'are risking their': 89727, 'their life for': 873831, 'life for altoriesgocovid19': 488662, 'occur': 579013, 'execute': 289847, 'olympics2020': 598802, 'backdrop': 107517, 'payne': 645788, 'no company': 563858, 'company expected': 190638, 'expected global': 290895, 'global lockdown': 352014, 'to occur': 910805, 'occur it': 579021, 'wa obviously': 962798, 'obviously very': 578860, 'to execute': 905403, 'execute the': 289848, 'the marketing': 860183, 'marketing for': 517606, 'for olympics2020': 324057, 'olympics2020 against': 598803, 'difficult unprecedented': 242353, 'unprecedented backdrop': 943084, 'backdrop said': 107521, 'said marketing': 731219, 'marketing manager': 517641, 'manager michael': 512747, 'michael payne': 530262, 'no company expected': 563859, 'company expected global': 190639, 'expected global lockdown': 290896, 'global lockdown to': 352017, 'lockdown to occur': 500058, 'to occur it': 910806, 'occur it wa': 579022, 'it wa obviously': 462162, 'wa obviously very': 962799, 'obviously very difficult': 578861, 'very difficult to': 955124, 'difficult to execute': 242332, 'to execute the': 905404, 'execute the marketing': 289849, 'the marketing for': 860186, 'marketing for olympics2020': 517607, 'for olympics2020 against': 324058, 'olympics2020 against this': 598804, 'against this difficult': 37698, 'this difficult unprecedented': 887228, 'difficult unprecedented backdrop': 242354, 'unprecedented backdrop said': 943085, 'backdrop said marketing': 107522, 'said marketing manager': 731221, 'marketing manager michael': 517642, 'manager michael payne': 512748, 'imitate': 416936, 'tendency': 837883, 'hev': 394301, 'directed': 243406, 'pres': 670437, 'may other': 521410, 'other service': 620889, 'provider imitate': 686738, 'imitate what': 416937, 'done and': 254771, 'and stop': 72466, 'the tendency': 869289, 'tendency of': 837888, 'of profiteering': 588525, 'profiteering out': 683082, 'crisis those': 218228, 'those hiking': 892059, 'service must': 752601, 'must hev': 546716, 'hev human': 394302, 'human face': 410489, 'face ha': 294455, 'been directed': 120981, 'directed by': 243409, 'by pres': 153642, 'may other service': 521411, 'other service provider': 620893, 'service provider imitate': 752729, 'provider imitate what': 686739, 'imitate what have': 416939, 'what have done': 981575, 'have done and': 380324, 'done and stop': 254779, 'and stop the': 72488, 'stop the tendency': 805156, 'the tendency of': 869290, 'tendency of profiteering': 837889, 'of profiteering out': 588527, 'profiteering out of': 683083, 'out of covid': 626710, '19 crisis those': 6338, 'crisis those hiking': 218230, 'those hiking price': 892060, 'hiking price of': 396402, 'good service must': 357714, 'service must hev': 752603, 'must hev human': 546717, 'hev human face': 394303, 'human face ha': 410490, 'face ha been': 294456, 'ha been directed': 369781, 'been directed by': 120982, 'directed by pres': 243410, '100pcs': 2208, 'ppes': 668124, 'from today': 338072, 'today on': 919967, 'are willing': 91639, 'offer sample': 594775, 'sample price': 733479, 'to customer': 903843, 'who want': 989925, 'to test': 916389, 'test quality': 839139, 'quality or': 691829, 'or do': 615012, 'do promotion': 250008, 'promotion locally': 683868, 'locally order': 498769, 'order volume': 618746, 'volume can': 960123, 'to 100pcs': 899443, '100pcs welcome': 2211, 'welcome for': 977879, 'your inquiry': 1024496, 'inquiry mask': 439012, 'mask thermometer': 519364, 'thermometer medical': 879530, 'medical ppes': 526302, 'from today on': 338079, 'today on we': 919975, 'on we are': 605130, 'we are willing': 970761, 'are willing to': 91640, 'willing to offer': 995473, 'to offer sample': 910847, 'offer sample price': 594776, 'sample price to': 733480, 'price to customer': 676982, 'to customer who': 903863, 'customer who want': 223085, 'who want to': 989928, 'want to test': 966143, 'to test quality': 916395, 'test quality or': 839140, 'quality or do': 691830, 'or do promotion': 615019, 'do promotion locally': 250009, 'promotion locally order': 683869, 'locally order volume': 498770, 'order volume can': 618747, 'volume can be': 960124, 'can be to': 157699, 'be to 100pcs': 117726, 'to 100pcs welcome': 899444, '100pcs welcome for': 2212, 'welcome for your': 977880, 'for your inquiry': 328167, 'your inquiry mask': 1024497, 'inquiry mask thermometer': 439013, 'mask thermometer medical': 519367, 'thermometer medical ppes': 879531, 'egyptian': 270125, 'internal': 441716, 'affirmed': 34639, 'the egyptian': 854096, 'egyptian ministry': 270126, 'and internal': 65323, 'internal trade': 441735, 'trade affirmed': 928398, 'affirmed the': 34640, 'all food': 42804, 'food product': 316011, 'market saying': 517031, 'panic over': 638383, 'over good': 630252, 'good amid': 356714, 'the egyptian ministry': 854097, 'egyptian ministry of': 270127, 'ministry of supply': 533553, 'of supply and': 590469, 'supply and internal': 824730, 'and internal trade': 65324, 'internal trade affirmed': 441736, 'trade affirmed the': 928399, 'affirmed the availability': 34641, 'availability of all': 104155, 'of all food': 579941, 'all food product': 42820, 'food product in': 316024, 'product in the': 681299, 'the market saying': 860155, 'market saying that': 517032, 'saying that there': 739705, 'to panic over': 911415, 'panic over good': 638388, 'over good amid': 630253, 'good amid the': 356716, 'amid the coronavirus': 52687, 'resign': 714460, 'insidertrading': 439488, 'two republican': 937183, 'senator face': 749745, 'face call': 294348, 'call to': 156162, 'to resign': 913352, 'resign over': 714466, 'over insidertrading': 630327, 'insidertrading selling': 439489, 'selling stock': 749453, 'coronavirus fear': 205911, 'fear business': 301071, 'two republican senator': 937184, 'republican senator face': 713065, 'senator face call': 749746, 'face call to': 294349, 'call to resign': 156185, 'to resign over': 913354, 'resign over insidertrading': 714468, 'over insidertrading selling': 630328, 'insidertrading selling stock': 439491, 'selling stock before': 749454, 'to coronavirus fear': 903547, 'coronavirus fear business': 205914, 'chems': 175486, 'q2': 691412, 'footing': 318550, 'europe chems': 283421, 'chems price': 175487, 'price start': 676608, 'start q2': 794449, 'q2 on': 691423, 'weak footing': 974017, 'footing stock': 318561, 'stock down': 802055, 'on poor': 602838, 'poor sentiment': 664286, 'sentiment icis': 750939, 'icis europe': 412753, 'europe price': 283500, 'price stock': 676661, 'stock chemical': 801981, 'chemical oil': 175367, 'oil financial': 596795, 'europe chems price': 283422, 'chems price start': 175488, 'price start q2': 676611, 'start q2 on': 794450, 'q2 on weak': 691424, 'on weak footing': 605143, 'weak footing stock': 974018, 'footing stock down': 318562, 'stock down on': 802058, 'down on poor': 257031, 'on poor sentiment': 602840, 'poor sentiment icis': 664287, 'sentiment icis europe': 750940, 'icis europe price': 412756, 'europe price stock': 283501, 'price stock chemical': 676662, 'stock chemical oil': 801982, 'chemical oil financial': 175368, 'oil financial market': 596796, 'mood': 538262, 'obesiti': 578359, 'distancing in': 247221, 'supermarket totally': 823518, 'totally failed': 926332, 'failed customer': 296134, 'customer came': 222217, 'came shopping': 157053, 'shopping they': 764115, 'were in': 979768, 'in weekend': 430779, 'weekend mood': 977372, 'mood based': 538269, 'based from': 111589, 'from their': 337932, 'their attitude': 872526, 'and product': 69561, 'product purchase': 681557, 'purchase either': 689436, 'either they': 270392, 'will infected': 993848, 'infected by': 436543, '19 first': 7019, 'first or': 308835, 'or obesiti': 616336, 'obesiti at': 578360, 'quarantine period': 692429, 'social distancing in': 779638, 'distancing in supermarket': 247233, 'in supermarket totally': 428698, 'supermarket totally failed': 823519, 'totally failed customer': 926333, 'failed customer came': 296135, 'customer came shopping': 222218, 'came shopping they': 157054, 'shopping they were': 764121, 'they were in': 883779, 'were in weekend': 979784, 'in weekend mood': 430781, 'weekend mood based': 977373, 'mood based from': 538270, 'based from their': 111590, 'from their attitude': 337934, 'their attitude and': 872527, 'attitude and product': 102546, 'and product purchase': 69571, 'product purchase either': 681558, 'purchase either they': 689437, 'either they will': 270395, 'they will infected': 883857, 'will infected by': 993849, 'infected by covid': 436545, 'covid 19 first': 213101, '19 first or': 7021, 'first or obesiti': 308836, 'or obesiti at': 616337, 'obesiti at the': 578361, 'end of quarantine': 275913, 'of quarantine period': 588664, 'launder': 482084, 'cash can': 166192, 'can carry': 157868, 'carry and': 165066, 'and spread': 72140, 'spread but': 790456, 'but can': 145342, 'can launder': 158838, 'launder your': 482085, 'your cash': 1023157, 'cash for': 166234, '10 fee': 1423, 'fee please': 302213, 'please send': 660462, 'cash can carry': 166193, 'can carry and': 157869, 'carry and spread': 165067, 'and spread but': 72143, 'spread but can': 790457, 'but can launder': 145354, 'can launder your': 158839, 'launder your cash': 482086, 'your cash for': 1023158, 'cash for 10': 166235, 'for 10 fee': 318613, '10 fee please': 1424, 'fee please send': 302214, 'french': 332711, 'emmanuel': 273233, 'macron': 507491, 'imposed': 419272, 'declaring': 231270, 'municipal': 546084, 'election': 271012, 'duty': 263554, 'french president': 332750, 'president emmanuel': 670806, 'emmanuel macron': 273236, 'macron ha': 507494, 'ha imposed': 370926, 'imposed two': 419321, 'week lockdown': 976490, 'lockdown declaring': 499310, 'declaring war': 231287, 'war on': 966501, 'on cancelled': 599796, 'cancelled municipal': 161135, 'municipal election': 546087, 'election citizen': 271029, 'citizen have': 178902, 'essential duty': 280982, 'duty such': 263609, 'such trip': 816844, 'or pharmacy': 616567, 'french president emmanuel': 332751, 'president emmanuel macron': 670807, 'emmanuel macron ha': 273237, 'macron ha imposed': 507495, 'ha imposed two': 370929, 'imposed two week': 419322, 'two week lockdown': 937337, 'week lockdown declaring': 976493, 'lockdown declaring war': 499311, 'declaring war on': 231289, 'war on cancelled': 966502, 'on cancelled municipal': 599797, 'cancelled municipal election': 161136, 'municipal election citizen': 546089, 'election citizen have': 271030, 'citizen have been': 178903, 'stay home and': 796938, 'home and will': 400714, 'and will only': 75680, 'out for essential': 626113, 'for essential duty': 321100, 'essential duty such': 280985, 'duty such trip': 263610, 'such trip to': 816845, 'store or pharmacy': 809360, 'threshold impact': 894146, 'on retail': 603172, 'threshold impact on': 894147, 'impact on retail': 417885, 'mayhem': 521906, 'inspirational': 439813, 'assault': 96310, 'ear': 264389, 'shite': 759311, 'sudden': 816978, '74': 22079, 'library': 488056, 'my very': 550492, 'very personal': 955410, 'personal view': 652994, 'view is': 957100, 'that rather': 845942, 'than join': 840808, 'join supermarket': 466846, 'supermarket mayhem': 821481, 'mayhem have': 521913, 'have inspirational': 381093, 'inspirational song': 439816, 'song assault': 785479, 'assault our': 96319, 'our ear': 622820, 'ear read': 264401, 'read utter': 700645, 'utter shite': 951432, 'shite from': 759314, 'from sudden': 337464, 'sudden covid': 816993, 'expert with': 292033, 'with 74': 997060, '74 twitter': 22090, 'twitter follower': 936658, 'follower and': 312630, 'all cinema': 42345, 'cinema gym': 178536, 'gym and': 369295, 'and library': 66125, 'library closed': 488063, 'closed would': 183447, 'would 100': 1011489, '100 prefer': 2048, 'prefer death': 669734, 'my very personal': 550495, 'very personal view': 955411, 'personal view is': 652995, 'view is that': 957102, 'is that rather': 452683, 'that rather than': 845943, 'rather than join': 697531, 'than join supermarket': 840809, 'join supermarket mayhem': 466847, 'supermarket mayhem have': 821482, 'mayhem have inspirational': 521914, 'have inspirational song': 381094, 'inspirational song assault': 439817, 'song assault our': 785480, 'assault our ear': 96320, 'our ear read': 622821, 'ear read utter': 264402, 'read utter shite': 700646, 'utter shite from': 951433, 'shite from sudden': 759315, 'from sudden covid': 337465, 'sudden covid 19': 816994, '19 expert with': 6900, 'expert with 74': 292034, 'with 74 twitter': 997061, '74 twitter follower': 22091, 'twitter follower and': 936659, 'follower and have': 312631, 'and have all': 64219, 'have all cinema': 379152, 'all cinema gym': 42346, 'cinema gym and': 178537, 'gym and library': 369296, 'and library closed': 66126, 'library closed would': 488064, 'closed would 100': 183448, 'would 100 prefer': 1011490, '100 prefer death': 2049, 'follower gather': 312636, 'gather get': 344380, 'get and': 346551, 'and grab': 63902, 'grab leader': 361503, 'leader give': 483459, 'give perhaps': 350648, 'perhaps the': 651639, 'most useful': 542845, 'useful thing': 950195, 'thing at': 884173, 'is insight': 448937, 'follower gather get': 312637, 'gather get and': 344381, 'get and grab': 346552, 'and grab leader': 63904, 'grab leader give': 361504, 'leader give perhaps': 483460, 'give perhaps the': 350649, 'perhaps the most': 651643, 'the most useful': 861057, 'most useful thing': 542847, 'useful thing at': 950196, 'thing at the': 884177, 'store is insight': 808499, 'iymi': 464085, 'iymi covid': 464086, 'market we': 517316, 'you posted': 1020386, 'posted with': 666597, 'with with': 1002110, 'with any': 997272, 'any insight': 79360, 'insight and': 439507, 'and perspective': 68937, 'perspective we': 653242, 'we learn': 972176, 'learn in': 483996, 'the coming': 851190, 'coming day': 188017, 'day week': 228684, 'and month': 67125, 'month ahead': 537551, 'iymi covid 19': 464087, '19 is expected': 7968, 'expected to slow': 291002, 'to slow down': 914739, 'down the spring': 257304, 'housing market we': 407115, 'market we will': 517322, 'will keep you': 993904, 'keep you posted': 472245, 'you posted with': 1020389, 'posted with with': 666598, 'with with any': 1002111, 'with any insight': 997277, 'any insight and': 79361, 'insight and perspective': 439508, 'and perspective we': 68938, 'perspective we learn': 653243, 'we learn in': 972177, 'learn in the': 483997, 'in the coming': 429083, 'the coming day': 851194, 'coming day week': 188024, 'day week and': 228689, 'week and month': 975924, 'and month ahead': 67126, '6trillion': 21699, 'top own': 925657, 'own most': 632108, 'bond market': 134251, 'market so': 517075, 'protect their': 684988, 'their asset': 872518, 'asset we': 96487, 'we the': 973516, 'bottom 99': 136387, '99 via': 23911, 'via the': 956299, 'use 6trillion': 949007, '6trillion to': 21700, 'to prop': 912263, 'up those': 946289, 'those asset': 891815, 'top own most': 925658, 'own most of': 632109, 'the stock and': 867903, 'stock and bond': 801802, 'and bond market': 59059, 'bond market so': 134252, 'market so to': 517079, 'so to protect': 778539, 'to protect their': 912337, 'protect their asset': 684989, 'their asset we': 872519, 'asset we the': 96488, 'we the bottom': 973517, 'the bottom 99': 849902, 'bottom 99 via': 136388, '99 via the': 23912, 'via the will': 956314, 'the will use': 871585, 'will use 6trillion': 995280, 'use 6trillion to': 949008, '6trillion to prop': 21701, 'to prop up': 912264, 'prop up those': 684051, 'up those asset': 946290, 'those asset price': 891816, 'thai': 840072, 'seven': 753745, 'anticipated': 78451, 'rival': 724163, 'thai rice': 840083, 'rice price': 721111, 'hit seven': 398395, 'seven year': 753776, 'high on': 395196, 'on anticipated': 599393, 'anticipated sale': 78464, 'sale coronavirus': 732144, 'coronavirus trouble': 206970, 'trouble rival': 932638, 'rival exporter': 724169, 'thai rice price': 840084, 'rice price hit': 721112, 'price hit seven': 674563, 'hit seven year': 398396, 'seven year high': 753778, 'year high on': 1014624, 'high on anticipated': 395197, 'on anticipated sale': 599394, 'anticipated sale coronavirus': 78465, 'sale coronavirus trouble': 732145, 'coronavirus trouble rival': 206971, 'trouble rival exporter': 932639, 'teamwork': 835893, 'displayed': 246212, 'grossly': 366454, 'inflating': 437106, 'attempting': 102275, 'so proud': 778082, 'the teamwork': 869214, 'teamwork displayed': 835895, 'displayed by': 246213, 'my staff': 550185, 'our state': 624894, 'state department': 795516, 'department and': 237181, 'and agency': 57775, 'agency supporting': 38077, 'supporting each': 827128, 'other in': 620405, 'doing not': 252554, 'not grossly': 569756, 'grossly inflating': 366461, 'inflating the': 437128, 'or attempting': 614461, 'attempting to': 102280, 'scam one': 740273, 'one another': 605911, 'am so proud': 50409, 'so proud of': 778083, 'proud of the': 686037, 'of the teamwork': 591526, 'the teamwork displayed': 869215, 'teamwork displayed by': 835896, 'displayed by my': 246215, 'by my staff': 153288, 'my staff and': 550187, 'staff and all': 792122, 'and all of': 57878, 'of our state': 587569, 'our state department': 624899, 'state department and': 795517, 'department and agency': 237182, 'and agency supporting': 57776, 'agency supporting each': 38078, 'supporting each other': 827129, 'each other in': 264184, 'other in time': 620412, 'time like this': 897138, 'like this is': 491499, 'is what we': 453903, 'what we should': 982564, 'we should be': 973259, 'should be doing': 765602, 'be doing not': 114524, 'doing not grossly': 252555, 'not grossly inflating': 569757, 'grossly inflating the': 366462, 'inflating the price': 437129, 'essential product or': 281424, 'product or attempting': 681493, 'or attempting to': 614462, 'attempting to scam': 102289, 'to scam one': 913865, 'scam one another': 740274, 'bragging': 137559, 'trump bragging': 933447, 'bragging about': 137560, 'about low': 25672, 'price fuck': 674126, 'fuck the': 339655, 'dying gas': 263833, 'trump bragging about': 933448, 'bragging about low': 137562, 'about low gas': 25673, 'gas price fuck': 343968, 'price fuck the': 674127, 'fuck the people': 339661, 'the people dying': 863469, 'people dying gas': 647750, 'dying gas price': 263834, 'hooper': 403364, 'hooper wa': 403365, 'wa taking': 963400, 'taking no': 833458, 'no chance': 563779, 'chance at': 171702, 'at his': 98914, 'his local': 397588, 'supermarket 19': 818733, 'hooper wa taking': 403366, 'wa taking no': 963401, 'taking no chance': 833459, 'no chance at': 563780, 'chance at his': 171704, 'at his local': 98919, 'his local supermarket': 397590, 'local supermarket 19': 498495, 'don worry': 254077, 'worry there': 1010781, 'supply well': 826084, 'well can': 978090, 'can find': 158312, 'find this': 307328, 'this product': 889728, 'product anywhere': 680920, 'anywhere and': 81084, 'and folk': 63005, 'folk are': 312088, 'price after': 672229, 'reporting it': 712704, 'to ebay': 904917, 'ebay they': 266491, 're working': 699822, 'it sure': 461389, 'don worry there': 254086, 'worry there is': 1010782, 'is enough food': 447511, 'enough food and': 277382, 'and supply well': 72824, 'supply well can': 826085, 'well can find': 978091, 'can find this': 158341, 'find this product': 307334, 'this product anywhere': 889729, 'product anywhere and': 680921, 'anywhere and folk': 81085, 'and folk are': 63006, 'folk are jacking': 312092, 'the price after': 864327, 'price after reporting': 672235, 'after reporting it': 36122, 'reporting it to': 712705, 'it to ebay': 461711, 'to ebay they': 904918, 'ebay they said': 266492, 'they said they': 883248, 'said they re': 731483, 'they re working': 883154, 're working on': 699835, 'working on it': 1008807, 'on it sure': 601688, 'grab few': 361483, 'thing left': 884528, 'anxiety on': 78765, 'world feel': 1009546, 'like something': 491217, 'something out': 785002, 'of movie': 586698, 'movie 19': 543976, 'store to grab': 810774, 'to grab few': 906961, 'grab few thing': 361484, 'few thing left': 304097, 'thing left with': 884533, 'left with my': 485744, 'with my anxiety': 999607, 'my anxiety on': 547279, 'anxiety on our': 78766, 'on our world': 602646, 'our world feel': 625406, 'world feel like': 1009547, 'feel like something': 302745, 'like something out': 491218, 'something out of': 785003, 'out of movie': 626792, 'of movie 19': 586699, 'neda': 554318, 'aiming': 39579, 'ass': 96244, 'ecq': 268406, 'neda said': 554319, 'business survey': 144451, 'survey are': 828816, 'are aiming': 84281, 'aiming to': 39580, 'to ass': 900769, 'ass the': 96279, 'coronavirus disease': 205824, 'and ecq': 61930, 'ecq on': 268409, 'neda said that': 554320, 'said that the': 731414, 'that the consumer': 846691, 'and business survey': 59303, 'business survey are': 144452, 'survey are aiming': 828817, 'are aiming to': 84282, 'aiming to ass': 39581, 'to ass the': 900773, 'ass the impact': 96281, 'the coronavirus disease': 851833, 'coronavirus disease and': 205828, 'disease and ecq': 245087, 'and ecq on': 61931, 'agri': 38832, 'devendra': 239871, 'on agriculture': 599183, 'agriculture sector': 39029, 'sector agri': 744068, 'agri economist': 38835, 'economist devendra': 267535, 'devendra sharma': 239872, 'sharma is': 755651, 'is hoping': 448538, 'for package': 324348, 'package for': 633272, 'for agriculture': 319082, 'sector in': 744229, 'line with': 493573, 'other sector': 620878, 'sector from': 744197, 'the finance': 855204, 'finance min': 306226, 'min also': 532513, 'also share': 48867, 'share that': 755238, 'that vegetable': 847235, 'vegetable fruit': 953987, 'fruit are': 339068, 'high production': 395301, 'production but': 681944, 'are weak': 91600, 'weak because': 973996, 'no buyer': 563746, 'impact on agriculture': 417817, 'on agriculture sector': 599188, 'agriculture sector agri': 39030, 'sector agri economist': 744069, 'agri economist devendra': 38836, 'economist devendra sharma': 267536, 'devendra sharma is': 239874, 'sharma is hoping': 755652, 'is hoping for': 448539, 'hoping for package': 403925, 'for package for': 324349, 'package for agriculture': 633274, 'for agriculture sector': 319084, 'agriculture sector in': 39032, 'sector in line': 744233, 'in line with': 424785, 'line with other': 493585, 'with other sector': 999961, 'other sector from': 620880, 'sector from the': 744200, 'from the finance': 337697, 'the finance min': 855206, 'finance min also': 306227, 'min also share': 532514, 'also share that': 48869, 'share that vegetable': 755242, 'that vegetable fruit': 847236, 'vegetable fruit are': 953989, 'fruit are in': 339069, 'are in high': 87393, 'in high production': 423686, 'high production but': 395302, 'production but price': 681945, 'price are weak': 672764, 'are weak because': 91601, 'weak because of': 973997, 'because of no': 119381, 'of no buyer': 587035, 'furloughed': 341910, 'modification': 535494, 'trustee': 934359, 'came across': 156960, 'across this': 29537, 'this today': 890750, 'today both': 919323, 'both my': 135974, 'are furloughed': 86758, 'furloughed and': 341913, 'and still': 72365, 'still responsible': 801120, 'full payment': 340805, 'payment but': 645567, 'yet if': 1016097, 'if covid19': 414014, 'covid19 didn': 214291, 'didn exist': 241051, 'exist we': 290248, 'would apply': 1011529, 'apply for': 82556, 'for modification': 323476, 'modification of': 535499, 'our trustee': 625206, 'trustee payment': 934361, 'payment plan': 645707, 'came across this': 156963, 'across this today': 29544, 'this today both': 890752, 'today both my': 919324, 'both my husband': 135976, 'husband and are': 411672, 'and are furloughed': 58317, 'are furloughed and': 86759, 'furloughed and still': 341914, 'and still responsible': 72387, 'still responsible for': 801121, 'responsible for full': 716033, 'for full payment': 321812, 'full payment but': 340806, 'payment but yet': 645570, 'but yet if': 147965, 'yet if covid19': 1016098, 'if covid19 didn': 414015, 'covid19 didn exist': 214292, 'didn exist we': 241054, 'exist we would': 290249, 'we would apply': 973965, 'would apply for': 1011530, 'apply for modification': 82561, 'for modification of': 323477, 'modification of our': 535500, 'of our trustee': 587581, 'our trustee payment': 625207, 'trustee payment plan': 934362, 'rush': 728279, 'cannabis': 161381, '19 restriction': 10172, 'restriction spark': 717376, 'spark rush': 787554, 'rush on': 728318, 'on cannabis': 599799, 'cannabis store': 161445, 'store they': 810661, 'not closed': 568780, 'closed yet': 183453, 'yet but': 1016016, 'but customer': 145494, 'customer are': 222110, 'are stocking': 90517, 'cannabis this': 161453, 'weekend bracing': 977323, 'for new': 323816, 'new restriction': 559481, 'restriction at': 717227, 'at retail': 100300, 'covid 19 restriction': 213704, '19 restriction spark': 10181, 'restriction spark rush': 717377, 'spark rush on': 787555, 'rush on cannabis': 728319, 'on cannabis store': 599800, 'cannabis store they': 161448, 'store they re': 810675, 're not closed': 699081, 'not closed yet': 568782, 'closed yet but': 183454, 'yet but customer': 1016019, 'but customer are': 145495, 'customer are stocking': 222130, 'are stocking up': 90519, 'up on cannabis': 945534, 'on cannabis this': 599801, 'cannabis this weekend': 161454, 'this weekend bracing': 891306, 'weekend bracing for': 977324, 'bracing for new': 137505, 'for new restriction': 323830, 'new restriction at': 559482, 'restriction at retail': 717228, 'at retail store': 100307, 'retail store in': 718647, 'political': 663628, 'exaggerated': 288773, 'stfu': 800004, 'that think': 846975, 'think corvid19': 885193, 'corvid19 is': 207731, 'is fake': 447715, 'fake or': 296686, 'or political': 616632, 'political stunt': 663679, 'stunt exaggerated': 815324, 'exaggerated etc': 288778, 'etc say': 282734, 'say this': 739359, 'this go': 887711, 'out continue': 625886, 'continue on': 201081, 'is normal': 450012, 'normal do': 567139, 'buy hand': 148769, 'mask extra': 518630, 'extra supply': 293663, 'supply etc': 825222, 'the talk': 869138, 'talk walk': 833905, 'the walk': 871040, 'or stfu': 617220, 'all the people': 44862, 'people that think': 649780, 'that think corvid19': 846976, 'think corvid19 is': 885194, 'corvid19 is fake': 207732, 'is fake or': 447718, 'fake or political': 296687, 'or political stunt': 616633, 'political stunt exaggerated': 663680, 'stunt exaggerated etc': 815325, 'exaggerated etc say': 288779, 'etc say this': 282735, 'say this go': 739367, 'this go out': 887716, 'go out continue': 353943, 'out continue on': 625887, 'continue on everything': 201082, 'on everything is': 600649, 'everything is normal': 287879, 'is normal do': 450013, 'normal do not': 567140, 'do not buy': 249688, 'not buy hand': 568649, 'buy hand sanitizer': 148771, 'sanitizer mask extra': 735352, 'mask extra supply': 518631, 'extra supply etc': 293665, 'supply etc if': 825223, 'etc if you': 282602, 'you are going': 1017132, 'going to talk': 355737, 'talk the talk': 833857, 'the talk walk': 869139, 'talk walk the': 833906, 'walk the walk': 964883, 'the walk or': 871042, 'walk or stfu': 964852, 'evolving': 288538, 'equally': 279630, 'analyzed': 57251, 'sift': 769011, 'uncover': 939902, 'fraud is': 331294, 'is evolving': 447611, 'evolving rapidly': 288579, 'rapidly result': 697014, 'all industry': 43221, 'industry are': 435656, 'being impacted': 125281, 'impacted equally': 418103, 'equally we': 279643, 'we analyzed': 970422, 'analyzed sift': 57260, 'sift data': 769012, 'data to': 226453, 'to uncover': 917889, 'uncover how': 939905, 'is affecting': 445375, 'affecting consumer': 34500, 'behavior well': 124297, 'well emerging': 978222, 'emerging fraud': 273119, 'fraud trend': 331368, 'that business': 843053, 'business need': 144084, 'be aware': 113773, 'aware of': 105621, 'fraud is evolving': 331295, 'is evolving rapidly': 447616, 'evolving rapidly result': 288581, 'rapidly result of': 697015, 'result of covid': 717586, '19 and not': 5069, 'and not all': 67713, 'not all industry': 568113, 'all industry are': 43222, 'industry are being': 435659, 'are being impacted': 84873, 'being impacted equally': 125283, 'impacted equally we': 418104, 'equally we analyzed': 279644, 'we analyzed sift': 970424, 'analyzed sift data': 57261, 'sift data to': 769013, 'data to uncover': 226470, 'to uncover how': 917891, 'uncover how the': 939907, 'how the pandemic': 408862, 'pandemic is affecting': 635752, 'is affecting consumer': 445384, 'affecting consumer behavior': 34502, 'consumer behavior well': 196535, 'behavior well emerging': 124298, 'well emerging fraud': 978223, 'emerging fraud trend': 273120, 'fraud trend that': 331369, 'trend that business': 931462, 'that business need': 843059, 'business need to': 144089, 'to be aware': 901121, 'be aware of': 113778, 'tablet': 831519, 'laptop': 479545, 'touchscreen': 926769, 'mbot': 522062, 'reduce the': 705954, 'germ on': 346136, 'of tablet': 590568, 'tablet laptop': 831526, 'laptop and': 479546, 'and touchscreen': 74308, 'touchscreen health': 926774, 'health canada': 386214, 'canada approved': 160363, 'approved certified': 83139, 'certified smart': 170249, 'smart screen': 775417, 'screen sanitizer': 742723, 'sanitizer ask': 734494, 'ask for': 95521, 'or health': 615607, 'health food': 386438, 'food store': 316839, 'store coronacrisis': 807178, 'coronacrisis mbot': 204662, 'reduce the spread': 705977, 'spread of germ': 790673, 'of germ on': 584099, 'germ on the': 346139, 'on the use': 604421, 'use of tablet': 949428, 'of tablet laptop': 590569, 'tablet laptop and': 831527, 'laptop and touchscreen': 479549, 'and touchscreen health': 74309, 'touchscreen health canada': 926775, 'health canada approved': 386215, 'canada approved certified': 160364, 'approved certified smart': 83140, 'certified smart screen': 170250, 'smart screen sanitizer': 775418, 'screen sanitizer ask': 742726, 'sanitizer ask for': 734495, 'ask for it': 95527, 'for it at': 322692, 'it at your': 456633, 'your local grocery': 1024698, 'local grocery or': 498050, 'grocery or health': 364804, 'or health food': 615610, 'health food store': 386444, 'food store coronacrisis': 316847, 'store coronacrisis mbot': 807180, 'mrna': 544443, 'biotechnology': 131290, 'gild': 350109, 'clx': 184607, 'lake': 479051, 'zm': 1027654, 'rng': 724364, 'could benefit': 208958, 'benefit from': 126975, 'from mrna': 336484, 'mrna industry': 544444, 'industry biotechnology': 435697, 'biotechnology gild': 131297, 'gild sector': 350114, 'sector biotechnology': 744109, 'biotechnology clx': 131293, 'clx sector': 184612, 'sector consumer': 744133, 'consumer cost': 196986, 'cost sector': 208104, 'sector retail': 744311, 'retail lake': 718266, 'lake industry': 479059, 'industry security': 436098, 'security zm': 744801, 'zm sector': 1027659, 'sector technology': 744344, 'technology rng': 836353, 'rng sector': 724367, 'stock that could': 802920, 'that could benefit': 843341, 'could benefit from': 208960, 'benefit from mrna': 126990, 'from mrna industry': 336485, 'mrna industry biotechnology': 544446, 'industry biotechnology gild': 435698, 'biotechnology gild sector': 131298, 'gild sector biotechnology': 350115, 'sector biotechnology clx': 744110, 'biotechnology clx sector': 131294, 'clx sector consumer': 184613, 'sector consumer cost': 744134, 'consumer cost sector': 196990, 'cost sector retail': 208105, 'sector retail lake': 744313, 'retail lake industry': 718267, 'lake industry security': 479061, 'industry security zm': 436099, 'security zm sector': 744802, 'zm sector technology': 1027660, 'sector technology rng': 744345, 'technology rng sector': 836355, 'rng sector technology': 724368, 'freedom': 332361, 'nope': 566892, 'hosta': 404904, 'point rather': 662602, 'rather get': 697463, 'damn we': 225460, 'lost third': 503932, 'third of': 886081, 'our money': 623939, 'market lost': 516696, 'lost our': 503901, 'our job': 623596, 'job food': 465817, 'chain bare': 170539, 'bare and': 110854, 'and freedom': 63281, 'freedom nope': 332375, 'nope not': 566905, 'that either': 843686, 'either done': 270292, 'done being': 254793, 'being strong': 125868, 'are hosta': 87243, 'this is now': 888336, 'is now at': 450260, 'now at this': 574140, 'this point rather': 889643, 'point rather get': 662603, 'rather get the': 697464, 'get the damn': 348237, 'the damn we': 852818, 'damn we have': 225461, 'we have lost': 971861, 'have lost third': 381386, 'lost third of': 503933, 'third of our': 886088, 'of our money': 587515, 'our money in': 623940, 'money in the': 536830, 'in the stock': 429574, 'stock market lost': 802411, 'market lost our': 516697, 'lost our job': 503902, 'our job food': 623599, 'job food supply': 465819, 'supply chain bare': 824912, 'chain bare and': 170540, 'bare and freedom': 110858, 'and freedom nope': 63282, 'freedom nope not': 332376, 'nope not that': 566906, 'not that either': 571968, 'that either done': 843687, 'either done being': 270293, 'done being strong': 254795, 'being strong we': 125869, 'strong we are': 814155, 'we are hosta': 970592, 'urban': 948092, 'millennial': 531993, 'sandeep': 733680, 'da': 224209, 'opinion the': 613502, 'the urban': 870521, 'urban millennial': 948115, 'millennial consumer': 531994, 'by sandeep': 153863, 'sandeep da': 733681, 'opinion the urban': 613505, 'the urban millennial': 870522, 'urban millennial consumer': 948116, 'millennial consumer in': 531995, 'time of by': 897315, 'of by sandeep': 581029, 'by sandeep da': 153864, 'highlighting': 396007, 'pulling': 688928, 'the pub': 864763, 'pub may': 687729, 'closed but': 183025, 'that doesn': 843582, 'doesn mean': 251884, 'mean we': 524759, 'help people': 390281, 'people highlighting': 648254, 'highlighting more': 396013, 'more hero': 539434, 'hero we': 394149, 'we meet': 972360, 'pub pulling': 687754, 'pulling out': 688944, 'the stop': 867955, 'help their': 390687, 'their local': 873866, 'local community': 497837, 'community cc': 189779, 'the pub may': 864771, 'pub may be': 687730, 'may be closed': 520961, 'be closed but': 114123, 'closed but that': 183029, 'but that doesn': 147285, 'that doesn mean': 843587, 'doesn mean we': 251894, 'mean we can': 524760, 'we can help': 970962, 'can help people': 158646, 'help people highlighting': 390297, 'people highlighting more': 648255, 'highlighting more hero': 396014, 'more hero we': 539435, 'hero we meet': 394152, 'we meet the': 972361, 'meet the uk': 527617, 'the uk pub': 870270, 'uk pub pulling': 938654, 'pub pulling out': 687755, 'pulling out all': 688945, 'out all the': 625605, 'all the stop': 44926, 'the stop to': 867960, 'stop to help': 805218, 'to help their': 907647, 'help their local': 390692, 'their local community': 873867, 'local community cc': 497838, 'hotfuzz': 405223, 'final': 305817, 'unrealistic': 943302, 'watching the': 968793, 'the hotfuzz': 857565, 'hotfuzz final': 405224, 'final scene': 305875, 'scene and': 741302, 'most unrealistic': 542837, 'unrealistic thing': 943307, 'the fully': 856031, 'stocked supermarket': 803406, 'shelf coronacrisis': 756962, 'watching the hotfuzz': 968798, 'the hotfuzz final': 857566, 'hotfuzz final scene': 405225, 'final scene and': 305876, 'scene and the': 741304, 'and the most': 73480, 'the most unrealistic': 861054, 'most unrealistic thing': 542838, 'unrealistic thing about': 943308, 'thing about it': 884087, 'about it is': 25582, 'it is the': 459098, 'is the fully': 452804, 'the fully stocked': 856032, 'fully stocked supermarket': 341103, 'stocked supermarket shelf': 803413, 'supermarket shelf coronacrisis': 822449, 'midwest': 530815, 'could soon': 209687, 'soon drop': 785697, 'drop to': 260417, 'to 99': 899882, 'cent gallon': 169058, 'gallon in': 343019, 'in part': 426522, 'the midwest': 860580, 'gas price could': 343948, 'price could soon': 673297, 'could soon drop': 209691, 'soon drop to': 785698, 'drop to 99': 260423, 'to 99 cent': 899885, '99 cent gallon': 23793, 'cent gallon in': 169064, 'gallon in part': 343028, 'in part of': 426528, 'of the midwest': 591241, 'supermarket rationing': 822160, 'rationing and': 697788, 'new opening': 559216, 'opening time': 612920, 'for tesco': 326215, 'tesco aldi': 838651, 'aldi asda': 41254, 'more during': 539087, 'supermarket rationing and': 822161, 'rationing and new': 697790, 'and new opening': 67553, 'new opening time': 559218, 'opening time for': 612924, 'time for tesco': 896761, 'for tesco aldi': 326216, 'tesco aldi asda': 838652, 'aldi asda and': 41255, 'asda and more': 94906, 'and more during': 67165, 'more during pandemic': 539090, 'fallout': 297369, 'disinflationary': 245939, 'stronger': 814163, 'dxy': 263715, 'pretty big': 671365, 'big drop': 129766, 'the month': 860842, 'month of': 537891, 'march fallout': 515357, 'fallout from': 297379, 'from having': 335730, 'having disinflationary': 384036, 'disinflationary effect': 245940, 'large demand': 479646, 'demand shock': 236195, 'shock oil': 759486, 'price plunge': 675920, 'plunge stronger': 661457, 'stronger dollar': 814174, 'dollar usd': 253108, 'usd dxy': 948917, 'dxy inflation': 263718, 'inflation economics': 437165, 'economics economy': 267447, 'economy bond': 267706, 'bond stock': 134263, 'stock investment': 802295, 'investment oott': 444034, 'oott energy': 611766, 'pretty big drop': 671366, 'big drop in': 129767, 'drop in consumer': 260234, 'in consumer price': 421711, 'consumer price for': 198421, 'price for the': 674060, 'for the month': 326567, 'the month of': 860851, 'month of march': 537902, 'of march fallout': 586206, 'march fallout from': 515358, 'fallout from having': 297382, 'from having disinflationary': 335732, 'having disinflationary effect': 384037, 'disinflationary effect on': 245941, 'effect on price': 269093, 'on price due': 602908, 'due to large': 261841, 'to large demand': 909042, 'large demand shock': 479649, 'demand shock oil': 236201, 'shock oil price': 759487, 'oil price plunge': 597217, 'price plunge stronger': 675930, 'plunge stronger dollar': 661458, 'stronger dollar usd': 814175, 'dollar usd dxy': 253109, 'usd dxy inflation': 948918, 'dxy inflation economics': 263719, 'inflation economics economy': 437166, 'economics economy bond': 267448, 'economy bond stock': 267707, 'bond stock investment': 134266, 'stock investment oott': 802296, 'investment oott energy': 444035, 'carbs': 163436, 'the bread': 849956, 'bread aisle': 138382, 'aisle at': 40211, 'wa bare': 961635, 'bare yesterday': 110990, 'yesterday guess': 1015761, 'guess that': 368040, 'fight the': 304883, 'to load': 909363, 'load up': 497302, 'on carbs': 599822, 'the bread aisle': 849957, 'bread aisle at': 138383, 'aisle at my': 40212, 'local supermarket wa': 498608, 'supermarket wa bare': 823691, 'wa bare yesterday': 961639, 'bare yesterday guess': 110991, 'yesterday guess that': 1015762, 'guess that the': 368044, 'that the way': 846866, 'the way to': 871201, 'way to fight': 970029, 'to fight the': 905813, 'fight the is': 304894, 'the is to': 858543, 'is to load': 453221, 'to load up': 909364, 'load up on': 497304, 'up on carbs': 945537, 'cradle': 214752, 'mean live': 524529, 'the cradle': 852265, 'cradle of': 214753, 'can eat': 158189, 'eat only': 266006, 'only supermarket': 611218, 'supermarket frozen': 820463, 'frozen pizza': 339001, 'and probably': 69532, 'probably month': 679317, 'month damn': 537665, 'damn you': 225467, 'mean live in': 524530, 'live in italy': 495870, 'italy the cradle': 462943, 'the cradle of': 852266, 'cradle of and': 214754, 'of and can': 580144, 'and can eat': 59452, 'can eat only': 158197, 'eat only supermarket': 266007, 'only supermarket frozen': 611221, 'supermarket frozen pizza': 820464, 'frozen pizza for': 339002, 'pizza for week': 657164, 'week and probably': 975930, 'and probably month': 69534, 'probably month damn': 679318, 'month damn you': 537666, 'me leaving': 523067, 'leaving my': 485109, 'house to': 406622, 'me leaving my': 523068, 'leaving my house': 485110, 'my house to': 548747, 'house to go': 406628, 'feeling selfish': 303052, 'selfish panic': 748186, 'shopping panicshopping': 763600, 'panicshopping uk': 639463, 'uk moron': 938552, 'moron panicbuyers': 541618, 'panicbuyers supermarket': 638880, 'shopping sad': 763793, 'sad selfcare': 729225, 'selfcare arsehole': 747932, 'feeling selfish panic': 303053, 'selfish panic shopping': 748193, 'panic shopping panicshopping': 638583, 'shopping panicshopping uk': 763601, 'panicshopping uk moron': 639464, 'uk moron panicbuyers': 938553, 'moron panicbuyers supermarket': 541619, 'panicbuyers supermarket shopping': 638881, 'supermarket shopping sad': 822647, 'shopping sad selfcare': 763794, 'sad selfcare arsehole': 729226, 'applied': 82485, 'story about': 811881, 'supermarket hiring': 820763, 'hiring extra': 397092, 'extra staff': 293648, 'staff due': 792390, 'coronavirus and': 205482, 'this might': 888850, 'currently unemployed': 221703, 'unemployed anyone': 941107, 'anyone recently': 80488, 'recently applied': 704050, 'applied for': 82490, 'for position': 324623, 'position work': 665206, 'chain already': 170444, 'already dm': 47295, 'me if': 522935, 'on story about': 603703, 'story about supermarket': 811896, 'about supermarket hiring': 26283, 'supermarket hiring extra': 820764, 'hiring extra staff': 397093, 'extra staff due': 293649, 'staff due to': 792391, 'the coronavirus and': 851804, 'coronavirus and how': 205495, 'how this might': 408950, 'this might help': 888852, 'might help those': 531036, 'help those who': 390754, 'those who are': 892612, 'are currently unemployed': 85681, 'currently unemployed anyone': 221704, 'unemployed anyone recently': 941108, 'anyone recently applied': 80489, 'recently applied for': 704051, 'applied for position': 82491, 'for position work': 324624, 'position work for': 665207, 'work for supermarket': 1005173, 'for supermarket chain': 326003, 'supermarket chain already': 819591, 'chain already dm': 170445, 'already dm me': 47296, 'dm me if': 248907, 'me if you': 522946, 'henrik': 391777, 'schou': 742057, 'distancing solution': 247493, 'solution in': 782044, 'in danish': 421984, 'danish supermarket': 225851, 'via henrik': 956015, 'henrik schou': 391778, 'distancing solution in': 247494, 'solution in danish': 782045, 'in danish supermarket': 421985, 'danish supermarket via': 225859, 'supermarket via henrik': 823646, 'via henrik schou': 956016, '00am': 658, 'pst': 687488, '19 amp': 4962, 'amp social': 54521, 'distancing on': 247369, 'behavior register': 124169, 'register for': 707563, 'the webinar': 871265, 'webinar that': 975108, 'that today': 847067, '11 00am': 2437, '00am pst': 668, 'pst you': 687491, 'can register': 159418, 'register to': 707617, 'to join': 908672, 'join through': 466881, 'want to learn': 966061, 'to learn about': 909126, 'learn about the': 483943, 'about the impact': 26418, 'covid 19 amp': 212627, '19 amp social': 4965, 'amp social distancing': 54524, 'social distancing on': 779675, 'distancing on consumer': 247370, 'consumer behavior register': 196506, 'behavior register for': 124170, 'register for the': 707566, 'for the webinar': 326773, 'the webinar that': 871270, 'webinar that today': 975109, 'that today at': 847068, 'today at 11': 919264, 'at 11 00am': 97436, '11 00am pst': 2438, '00am pst you': 669, 'pst you can': 687492, 'you can register': 1017765, 'can register to': 159419, 'register to join': 707618, 'to join through': 908685, 'join through this': 466882, 'through this link': 894828, 'thursdaythoughts': 895469, 'really love': 702392, 'love to': 504840, 'keep their': 472080, 'their customer': 872941, 'staff safe': 792808, 'of uncertainty': 592587, 'uncertainty because': 939668, 'because so': 119562, 'far see': 298914, 'see zero': 746127, 'zero effort': 1027437, 'effort apart': 269473, 'apart from': 81256, 'they raise': 882970, 'price just': 674968, 'just so': 469817, 'make profit': 510359, 'profit thursdaythoughts': 682873, 'really love to': 702397, 'love to know': 504851, 'know what is': 476960, 'what is doing': 981688, 'is doing to': 447294, 'to keep their': 908864, 'keep their customer': 472083, 'their customer and': 872944, 'customer and their': 222103, 'and their staff': 73717, 'their staff safe': 874795, 'staff safe in': 792810, 'safe in this': 729772, 'in this time': 430027, 'time of uncertainty': 897371, 'of uncertainty because': 592590, 'uncertainty because so': 939669, 'because so far': 119563, 'so far see': 777056, 'far see zero': 298915, 'see zero effort': 746128, 'zero effort apart': 1027438, 'effort apart from': 269474, 'apart from the': 81276, 'from the fact': 337687, 'fact that they': 295814, 'that they raise': 846946, 'they raise price': 882972, 'raise price just': 695918, 'price just so': 674978, 'just so they': 469827, 'they can make': 881653, 'can make profit': 158947, 'make profit thursdaythoughts': 510367, 'excellent': 289069, 'permanently': 652083, 'an excellent': 55910, 'excellent article': 289072, 'article examines': 94308, 'pandemic could': 635239, 'could permanently': 209499, 'permanently change': 652088, 'change behavior': 171948, 'behavior they': 124239, 'they turn': 883595, 'to digital': 904293, 'digital option': 242614, 'option to': 614114, 'avoid physical': 105227, 'physical environment': 655421, 'an excellent article': 55911, 'excellent article examines': 289073, 'article examines how': 94309, 'examines how the': 288841, 'the pandemic could': 862938, 'pandemic could permanently': 635251, 'could permanently change': 209500, 'permanently change behavior': 652089, 'change behavior they': 171949, 'behavior they turn': 124244, 'they turn to': 883596, 'turn to digital': 935776, 'to digital option': 904295, 'digital option to': 242615, 'option to avoid': 614115, 'to avoid physical': 900927, 'avoid physical environment': 105228, 'footage': 318470, 'sweeping': 830194, 'angus': 76518, 'hoity': 399856, 'toity': 923464, 'mignon': 531188, 'thigh': 884038, 'groceryshopping': 366244, 'actual footage': 30655, 'footage of': 318471, 'as supermarket': 94813, 'supermarket sweeping': 823117, 'sweeping to': 830209, 'the meat': 860376, 'meat section': 525730, 'section yesterday': 744060, 'yesterday the': 1015883, 'only cut': 610305, 'cut available': 223243, 'available were': 104695, 'were black': 979379, 'black angus': 132026, 'angus hoity': 76519, 'hoity toity': 399857, 'toity mignon': 923465, 'mignon only': 531189, 'needed chicken': 556327, 'chicken thigh': 175870, 'thigh groceryshopping': 884039, 'groceryshopping apocalypse2020': 366246, 'actual footage of': 30656, 'footage of my': 318473, 'of my as': 586730, 'my as supermarket': 547331, 'as supermarket sweeping': 94814, 'supermarket sweeping to': 823119, 'sweeping to the': 830210, 'to the meat': 916876, 'the meat section': 860385, 'meat section yesterday': 525736, 'section yesterday the': 744061, 'yesterday the only': 1015885, 'the only cut': 862300, 'only cut available': 610306, 'cut available were': 223244, 'available were black': 104696, 'were black angus': 979380, 'black angus hoity': 132027, 'angus hoity toity': 76520, 'hoity toity mignon': 399858, 'toity mignon only': 923466, 'mignon only needed': 531190, 'only needed chicken': 610817, 'needed chicken thigh': 556328, 'chicken thigh groceryshopping': 175871, 'thigh groceryshopping apocalypse2020': 884040, 'comms': 189514, 'infographic': 437626, 'socialmedia2day': 781103, 'been interesting': 121400, 'interesting consumer': 441529, 'and marketer': 66717, 'marketer on': 517479, 'the receiving': 865292, 'receiving end': 703763, 'of brand': 580823, 'brand comms': 137799, 'comms during': 189517, 'time here': 896920, 'here how': 393094, 'the evolving': 854644, 'evolving discussion': 288559, 'discussion around': 245018, 'around covid': 93264, 'brand have': 137849, 'responded infographic': 715353, 'infographic via': 437645, 'via socialmedia2day': 956249, 'it been interesting': 456796, 'been interesting consumer': 121401, 'interesting consumer and': 441530, 'consumer and marketer': 196225, 'and marketer on': 66718, 'marketer on the': 517480, 'on the receiving': 604323, 'the receiving end': 865293, 'receiving end of': 703764, 'end of brand': 275891, 'of brand comms': 580825, 'brand comms during': 137800, 'comms during this': 189518, 'this time here': 890646, 'time here how': 896923, 'here how brand': 393096, 'brand are talking': 137757, 'talking about covid': 833961, '19 the evolving': 11191, 'the evolving discussion': 854646, 'evolving discussion around': 288560, 'discussion around covid': 245019, 'around covid 19': 93265, '19 and how': 5045, 'and how brand': 64803, 'how brand have': 407468, 'brand have responded': 137853, 'have responded infographic': 382295, 'responded infographic via': 715354, 'infographic via socialmedia2day': 437646, 'swearing': 830050, 'selfless': 748522, 'londoner': 501240, 'stripped': 813841, 'swearing at': 830051, 'fridge prepare': 333422, 'to couple': 903639, 'couple more': 211626, 'more supermarket': 540498, 'the hope': 857491, 'hope that': 403639, 'that selfless': 846176, 'selfless londoner': 748529, 'londoner haven': 501245, 'haven stripped': 383911, 'stripped the': 813885, 'shelf there': 757663, 'stoppanicbuying london': 805587, 'swearing at the': 830052, 'at the fridge': 100954, 'the fridge prepare': 855818, 'fridge prepare to': 333423, 'prepare to travel': 670143, 'to travel to': 917737, 'travel to couple': 930535, 'to couple more': 903640, 'couple more supermarket': 211627, 'more supermarket in': 540500, 'in the hope': 429271, 'the hope that': 857494, 'hope that selfless': 403653, 'that selfless londoner': 846177, 'selfless londoner haven': 748530, 'londoner haven stripped': 501246, 'haven stripped the': 383912, 'stripped the shelf': 813886, 'the shelf there': 866891, 'shelf there too': 757668, 'there too stoppanicbuying': 879201, 'too stoppanicbuying london': 925090, 'and doing': 61599, 'doing online': 252582, 'because had': 119091, 'to cancel': 902420, 'cancel all': 160831, 'my big': 547442, 'big holiday': 129823, 'holiday plan': 400345, 'plan in': 658150, 'april due': 83578, 'and doing online': 61605, 'doing online shopping': 252584, 'online shopping because': 609047, 'shopping because had': 762175, 'because had to': 119094, 'had to cancel': 373672, 'to cancel all': 902421, 'cancel all my': 160832, 'all my big': 43542, 'my big holiday': 547444, 'big holiday plan': 129824, 'holiday plan in': 400346, 'plan in april': 658151, 'in april due': 420468, 'april due to': 83579, 'suggested': 817562, 'garlic': 343674, 'chilli': 176398, 'split': 789651, 'red': 705560, 'lentil': 486369, 'muster': 547033, 'shelf scarcity': 757480, 'scarcity meal': 740836, 'meal no': 524215, 'no potato': 565151, 'potato in': 666945, 'in tesco': 428876, 'tesco asda': 838666, 'asda or': 94962, 'or sainsbury': 616940, 'sainsbury so': 731719, 'so daughter': 776842, 'daughter suggested': 226908, 'suggested garlic': 817567, 'garlic bread': 343675, 'bread veg': 138629, 'veg chilli': 953737, 'chilli made': 176401, 'made with': 508064, 'with split': 1000920, 'split pea': 789660, 'pea and': 645971, 'and few': 62812, 'few split': 304071, 'split red': 789662, 'red lentil': 705591, 'lentil and': 486370, 'the veg': 870662, 'veg we': 953799, 'could muster': 209421, '19 supermarket shelf': 10957, 'supermarket shelf scarcity': 822522, 'shelf scarcity meal': 757481, 'scarcity meal no': 740837, 'meal no potato': 524217, 'no potato in': 565152, 'potato in tesco': 666946, 'in tesco asda': 428878, 'tesco asda or': 838671, 'asda or sainsbury': 94964, 'or sainsbury so': 616941, 'sainsbury so daughter': 731720, 'so daughter suggested': 776843, 'daughter suggested garlic': 226909, 'suggested garlic bread': 817568, 'garlic bread veg': 343677, 'bread veg chilli': 138630, 'veg chilli made': 953738, 'chilli made with': 176402, 'made with split': 508071, 'with split pea': 1000921, 'split pea and': 789661, 'pea and few': 645972, 'and few split': 62817, 'few split red': 304072, 'split red lentil': 789663, 'red lentil and': 705592, 'lentil and all': 486371, 'all the veg': 44968, 'the veg we': 870664, 'veg we could': 953800, 'we could muster': 971212, 'dual': 261439, 'suncor': 818138, 'curtail': 221770, 'the dual': 853758, 'dual threat': 261447, 'of dropping': 582837, 'dropping oil': 260710, 'virus have': 958262, 'have prompted': 382074, 'prompted suncor': 683941, 'suncor to': 818139, 'to curtail': 903831, 'curtail it': 221775, 'it spending': 461191, 'and operation': 68184, 'the dual threat': 853760, 'dual threat of': 261448, 'threat of dropping': 893692, 'of dropping oil': 582839, 'dropping oil price': 260711, 'and the covid': 73305, '19 virus have': 11805, 'virus have prompted': 958266, 'have prompted suncor': 382075, 'prompted suncor to': 683942, 'suncor to curtail': 818140, 'to curtail it': 903833, 'curtail it spending': 221776, 'it spending and': 461192, 'spending and operation': 788738, 'practise': 668762, 'pavement': 644652, 'socially': 781038, 'ugh': 938018, 'you practise': 1020400, 'practise socialdistancing': 668775, 'hour in': 405682, 'queue into': 693968, 'then soon': 877548, 'soon you': 785910, 'inside all': 439211, 'all bet': 42177, 'bet are': 128062, 'are off': 88647, 'off wtf': 594429, 'wtf is': 1013290, 'people so': 649489, 'sick of': 768532, 'shit plus': 759195, 'plus family': 661598, 'family who': 298373, 'take up': 832768, 'up entire': 944795, 'entire pavement': 278717, 'pavement and': 644653, 'and make': 66546, 'make little': 510096, 'little to': 495619, 'no effort': 564085, 'to socially': 914841, 'socially distance': 781043, 'distance ugh': 246870, 'you practise socialdistancing': 1020401, 'practise socialdistancing for': 668776, 'socialdistancing for an': 780371, 'an hour in': 56086, 'hour in the': 405696, 'in the queue': 429492, 'the queue into': 865043, 'queue into the': 693969, 'into the supermarket': 443177, 'supermarket then soon': 823269, 'then soon you': 877549, 'soon you get': 785912, 'you get inside': 1018780, 'get inside all': 347342, 'inside all bet': 439212, 'all bet are': 42178, 'bet are off': 128063, 'are off wtf': 88652, 'off wtf is': 594430, 'wtf is wrong': 1013295, 'wrong with people': 1013158, 'with people so': 1000165, 'people so sick': 649495, 'so sick of': 778213, 'sick of this': 768544, 'of this shit': 592035, 'this shit plus': 890085, 'shit plus family': 759196, 'plus family who': 661599, 'family who take': 298378, 'who take up': 989734, 'take up entire': 832769, 'up entire pavement': 944796, 'entire pavement and': 278718, 'pavement and make': 644654, 'and make little': 66559, 'make little to': 510099, 'little to no': 495622, 'to no effort': 910621, 'no effort to': 564086, 'effort to socially': 269646, 'to socially distance': 914842, 'socially distance ugh': 781049, '9th': 24017, 'five': 309582, 'aldi grocery': 41268, 'store policy': 809611, 'policy change': 663363, 'change effective': 172035, 'effective thursday': 269313, 'thursday april': 895350, 'april 9th': 83527, '9th we': 24034, 'will limit': 994016, 'people inside': 648480, 'inside our': 439348, 'to approximately': 900678, 'approximately five': 83253, 'five customer': 309598, 'customer per': 222679, 'per 00': 650664, '00 square': 493, 'foot part': 318421, 'socialdistancing policy': 780613, 'aldi grocery store': 41269, 'grocery store policy': 365668, 'store policy change': 809612, 'policy change effective': 663365, 'change effective thursday': 172036, 'effective thursday april': 269314, 'thursday april 9th': 895352, 'april 9th we': 83530, '9th we will': 24035, 'we will limit': 973878, 'will limit the': 994019, 'limit the number': 492513, 'of people inside': 587930, 'people inside our': 648482, 'inside our store': 439352, 'store to approximately': 810754, 'to approximately five': 900679, 'approximately five customer': 83254, 'five customer per': 309600, 'customer per 00': 222680, 'per 00 square': 650665, '00 square foot': 494, 'square foot part': 791473, 'foot part of': 318422, 'part of socialdistancing': 642380, 'of socialdistancing policy': 589855, 'tip from': 898793, 'avoid coronavirus': 105057, 'tip from on': 898803, 'from on how': 336665, 'to avoid coronavirus': 900882, 'avoid coronavirus scam': 105060, 'hero of': 394046, 'the hero of': 857295, 'hero of our': 394048, 'been working': 122392, 'community shopping': 190093, 'shopping system': 764043, 'system here': 831199, 'here this': 393685, 'have paper': 381889, 'paper based': 639925, 'based and': 111504, 'support system': 826848, 'system ready': 831300, 'ready now': 700910, 'now too': 576206, 'too well': 925161, 'well online': 978441, 'online system': 609513, 'probably ready': 679357, 'go live': 353805, 'live this': 496059, 'evening or': 284888, 'or tomorrow': 617493, 'tomorrow 19': 923997, 've been working': 952965, 'been working on': 122399, 'working on our': 1008812, 'on our local': 602614, 'our local community': 623768, 'local community shopping': 497845, 'community shopping system': 190095, 'shopping system here': 764044, 'system here this': 831200, 'here this morning': 393687, 'morning we have': 541535, 'we have paper': 971892, 'have paper based': 381891, 'paper based and': 639926, 'based and support': 111505, 'and support system': 72853, 'support system ready': 826850, 'system ready now': 831301, 'ready now too': 700911, 'now too well': 576212, 'too well online': 925163, 'well online system': 978443, 'online system and': 609514, 'system and we': 831109, 'and we re': 75315, 'we re probably': 972938, 're probably ready': 699311, 'probably ready to': 679358, 'to go live': 906820, 'go live this': 353806, 'live this evening': 496061, 'this evening or': 887441, 'evening or tomorrow': 284889, 'or tomorrow 19': 617494, 'expand': 290445, 'efficiency': 269398, 'risky': 724109, 'amazon to': 51157, 'to expand': 905431, 'expand it': 290456, 'it power': 460410, 'power in': 667623, 'afford it': 34708, 'it source': 461185, 'of security': 589440, 'and efficiency': 61960, 'efficiency but': 269401, 'it risky': 460797, 'risky to': 724127, 'entire distribution': 278662, 'distribution of': 248169, 'good collapse': 356896, 'collapse into': 186021, 'into single': 442984, 'single platform': 771384, 'amazon to expand': 51161, 'to expand it': 905434, 'expand it power': 290459, 'it power in': 460411, 'power in time': 667624, 'in time for': 430080, 'time for those': 896767, 'for those who': 327148, 'those who can': 892617, 'can afford it': 157401, 'afford it it': 34716, 'it it source': 459182, 'it source of': 461186, 'source of security': 786530, 'of security and': 589441, 'security and efficiency': 744533, 'and efficiency but': 61961, 'efficiency but it': 269402, 'but it risky': 146160, 'it risky to': 460798, 'risky to see': 724130, 'see the entire': 745832, 'the entire distribution': 854351, 'entire distribution of': 278663, 'distribution of consumer': 248171, 'consumer good collapse': 197606, 'good collapse into': 356897, 'collapse into single': 186022, 'into single platform': 442986, 'creativity': 216207, 'salad': 731907, 'store right': 809892, 'is kind': 449209, 'chopped you': 177983, 'never know': 558085, 'what going': 981506, 'your basket': 1022914, 'basket and': 112293, 'even with': 284801, 'best creativity': 127653, 'creativity you': 216226, 'make chicken': 509766, 'chicken salad': 175851, 'salad out': 731920, 'of chicken': 581328, 'chicken sh': 175858, 'grocery store right': 365728, 'store right now': 809894, 'right now is': 722087, 'now is kind': 575075, 'is kind of': 449210, 'kind of like': 474915, 'of like being': 585853, 'of chopped you': 581410, 'chopped you never': 177984, 'you never know': 1020079, 'never know what': 558093, 'know what going': 476954, 'what going to': 981508, 'to end up': 905090, 'end up in': 276034, 'up in your': 945193, 'in your basket': 431059, 'your basket and': 1022915, 'basket and even': 112295, 'and even with': 62354, 'even with the': 284806, 'the best creativity': 849504, 'best creativity you': 127654, 'creativity you can': 216227, 'you can make': 1017723, 'can make chicken': 158927, 'make chicken salad': 509767, 'chicken salad out': 175852, 'salad out of': 731921, 'out of chicken': 626695, 'of chicken sh': 581335, 'energytwitter': 276639, 'crushing': 219810, 'energytwitter any': 276640, 'any take': 79940, 'take on': 832399, 'price collapse': 673165, 'collapse fall': 186005, 'in energy': 422564, 'energy use': 276616, 'use from': 949225, 'on natural': 602342, 'natural gas': 552829, 'price should': 676384, 'expect over': 290692, 'over production': 630534, 'production and': 681915, 'drop crushing': 260167, 'crushing coal': 219811, 'coal use': 185075, 'use or': 949452, 'or fall': 615262, 'in production': 427019, 'production price': 682186, 'rise and': 722777, 'and shift': 71462, 'shift to': 758430, 'to other': 911108, 'other fuel': 620284, 'fuel for': 340172, 'for power': 324662, 'energytwitter any take': 276641, 'any take on': 79941, 'take on the': 832409, 'on the impact': 604172, 'impact of oil': 417789, 'of oil price': 587191, 'oil price collapse': 597080, 'price collapse fall': 673170, 'collapse fall in': 186006, 'fall in energy': 296946, 'in energy use': 422567, 'energy use from': 276617, 'use from on': 949226, 'from on natural': 336668, 'on natural gas': 602343, 'natural gas price': 552836, 'gas price should': 344021, 'price should we': 676391, 'should we expect': 766646, 'we expect over': 971496, 'expect over production': 290693, 'over production and': 630535, 'production and price': 681929, 'and price drop': 69446, 'price drop crushing': 673567, 'drop crushing coal': 260168, 'crushing coal use': 219812, 'coal use or': 185076, 'use or fall': 949453, 'or fall in': 615264, 'fall in production': 296962, 'in production price': 427024, 'production price rise': 682188, 'price rise and': 676230, 'rise and shift': 722783, 'and shift to': 71463, 'shift to other': 758443, 'to other fuel': 911115, 'other fuel for': 620285, 'fuel for power': 340176, 'restrict': 717094, 'cafe': 155088, 'sainsbury is': 731684, 'to restrict': 913424, 'restrict purchase': 717113, 'purchase on': 689592, 'grocery product': 364875, 'and shut': 71630, 'shut it': 767899, 'it cafe': 456983, 'cafe and': 155089, 'and fresh': 63296, 'food counter': 314041, 'counter supermarket': 210261, 'supermarket step': 822952, 'their effort': 873104, 'combat panic': 187025, 'sainsbury is to': 731688, 'is to restrict': 453236, 'to restrict purchase': 913431, 'restrict purchase on': 717115, 'purchase on all': 689593, 'on all grocery': 599232, 'all grocery product': 43009, 'grocery product and': 364876, 'product and shut': 680910, 'and shut it': 71633, 'shut it cafe': 767900, 'it cafe and': 456984, 'cafe and fresh': 155091, 'and fresh food': 63298, 'fresh food counter': 332963, 'food counter supermarket': 314042, 'counter supermarket step': 210262, 'supermarket step up': 822953, 'step up their': 799697, 'up their effort': 946234, 'their effort to': 873113, 'to combat panic': 903002, 'combat panic buying': 187026, 'closer': 183491, 'corpgov': 207223, 'cmo': 184680, 'esg': 280356, 'grc': 362468, 'boardofdirectors': 133704, 'directorship': 243684, 'governance': 359771, 'vc': 952774, 'cvc': 223864, 'smb': 775581, 'ux': 951505, 'cx': 223897, 'closer look': 183505, 'at consumer': 98311, 'consumer stockpiling': 199155, 'stockpiling in': 803993, 'crisis corpgov': 217260, 'corpgov ceo': 207224, 'ceo cfo': 169664, 'cfo cmo': 170329, 'cmo esg': 184685, 'esg grc': 280359, 'grc founder': 362469, 'founder entrepreneur': 330538, 'entrepreneur board': 278927, 'board boardofdirectors': 133619, 'boardofdirectors directorship': 133705, 'directorship governance': 243685, 'governance vc': 359786, 'vc cvc': 952775, 'cvc pe': 223865, 'pe startup': 645968, 'startup smb': 795127, 'smb marketing': 775582, 'marketing ux': 517746, 'ux cx': 951506, 'cx mrx': 223916, 'mrx shopping': 544498, 'closer look at': 183506, 'look at consumer': 502259, 'at consumer stockpiling': 98324, 'consumer stockpiling in': 199159, 'stockpiling in crisis': 803994, 'in crisis corpgov': 421877, 'crisis corpgov ceo': 217261, 'corpgov ceo cfo': 207225, 'ceo cfo cmo': 169665, 'cfo cmo esg': 170330, 'cmo esg grc': 184686, 'esg grc founder': 280360, 'grc founder entrepreneur': 362470, 'founder entrepreneur board': 330539, 'entrepreneur board boardofdirectors': 278928, 'board boardofdirectors directorship': 133620, 'boardofdirectors directorship governance': 133706, 'directorship governance vc': 243686, 'governance vc cvc': 359787, 'vc cvc pe': 952776, 'cvc pe startup': 223866, 'pe startup smb': 645969, 'startup smb marketing': 795128, 'smb marketing ux': 775583, 'marketing ux cx': 517747, 'ux cx mrx': 951507, 'cx mrx shopping': 223917, 'transunion': 930072, 'accessible': 28327, 'more consumer': 538870, 'consumer turn': 199402, 'turn online': 935731, 'for purchase': 324860, 'purchase transunion': 689708, 'transunion survey': 930081, 'survey find': 828862, 'find 22': 306755, '22 of': 15235, 'american say': 52181, 'been targeted': 122141, 'targeted by': 834538, 'by digital': 152357, 'digital fraud': 242572, 'fraud related': 331332, 're dropping': 698574, 'dropping our': 260714, 'our pricing': 624455, 'pricing significantly': 677977, 'significantly to': 769619, 'help make': 390030, 'make our': 510286, 'our software': 624839, 'software accessible': 781523, 'accessible to': 28345, 'more consumer turn': 538877, 'consumer turn online': 199403, 'turn online for': 935732, 'online for purchase': 608236, 'for purchase transunion': 324868, 'purchase transunion survey': 689709, 'transunion survey find': 930082, 'survey find 22': 828863, 'find 22 of': 306756, '22 of american': 15236, 'of american say': 580075, 'american say they': 52184, 'say they have': 739342, 'they have been': 882295, 'have been targeted': 379711, 'been targeted by': 122142, 'targeted by digital': 834539, 'by digital fraud': 152358, 'digital fraud related': 242574, 'fraud related to': 331333, '19 we re': 11947, 'we re dropping': 972861, 're dropping our': 698575, 'dropping our pricing': 260716, 'our pricing significantly': 624456, 'pricing significantly to': 677978, 'significantly to help': 769620, 'to help make': 907555, 'help make our': 390036, 'make our software': 510292, 'our software accessible': 624840, 'software accessible to': 781524, 'accessible to everyone': 28347, 'built': 142171, 'the sight': 867172, 'sight of': 769047, 'shelf may': 757311, 'may lead': 521316, 'lead shopper': 483311, 'shopper to': 761756, 'fear food': 301124, 'shortage expert': 764939, 'expert in': 291858, 'chain say': 171082, 'the system': 869086, 'is built': 446295, 'built to': 142199, 'endure read': 276310, 'while the sight': 987415, 'the sight of': 867174, 'sight of empty': 769051, 'of empty supermarket': 583094, 'supermarket shelf may': 822498, 'shelf may lead': 757314, 'may lead shopper': 521317, 'lead shopper to': 483312, 'shopper to fear': 761762, 'to fear food': 905697, 'fear food shortage': 301125, 'food shortage expert': 316573, 'shortage expert in': 764940, 'expert in the': 291862, 'in the food': 429207, 'supply chain say': 825030, 'chain say the': 171088, 'say the system': 739308, 'the system is': 869096, 'system is built': 831220, 'is built to': 446296, 'built to endure': 142200, 'to endure read': 905105, 'endure read the': 276311, 'properly': 684167, 'confinement': 194053, 'demonstrated': 236843, 'fragility': 330908, 'getty': 349474, 'three global': 893934, 'global agency': 351732, 'agency warned': 38099, 'warned of': 967013, 'of worldwide': 593316, 'worldwide food': 1010350, 'shortage if': 765004, 'if authority': 413885, 'authority fail': 103713, 'fail to': 296106, 'manage the': 512436, 'ongoing crisis': 607614, 'crisis properly': 217918, 'properly panic': 684186, 'buying by': 150074, 'by people': 153545, 'into confinement': 442476, 'confinement ha': 194070, 'already demonstrated': 47285, 'demonstrated the': 236850, 'the fragility': 855755, 'fragility of': 330911, 'chain getty': 170733, 'getty image': 349475, 'image via': 416659, 'three global agency': 893935, 'global agency warned': 351733, 'agency warned of': 38100, 'warned of the': 967016, 'of the risk': 591422, 'risk of worldwide': 723789, 'of worldwide food': 593317, 'worldwide food shortage': 1010352, 'food shortage if': 316583, 'shortage if authority': 765005, 'if authority fail': 413886, 'authority fail to': 103714, 'fail to manage': 296110, 'to manage the': 909800, 'manage the ongoing': 512443, 'the ongoing crisis': 862242, 'ongoing crisis properly': 607617, 'crisis properly panic': 217919, 'properly panic buying': 684187, 'panic buying by': 637668, 'buying by people': 150077, 'by people going': 153550, 'going into confinement': 355233, 'into confinement ha': 442477, 'confinement ha already': 194071, 'ha already demonstrated': 369505, 'already demonstrated the': 47286, 'demonstrated the fragility': 236851, 'the fragility of': 855757, 'fragility of supply': 330914, 'supply chain getty': 824964, 'chain getty image': 170734, 'getty image via': 349476, 'not much': 570605, 'much evidence': 544871, 'buying or': 150834, 'or stockpiling': 617236, 'stockpiling here': 803991, 'brussels just': 141389, 'just yet': 470374, 'yet this': 1016279, 'wa my': 962667, 'not much evidence': 570608, 'much evidence of': 544872, 'evidence of panic': 288368, 'panic buying or': 637833, 'buying or stockpiling': 150840, 'or stockpiling here': 617237, 'stockpiling here in': 803992, 'here in brussels': 393137, 'in brussels just': 421011, 'brussels just yet': 141390, 'just yet this': 470375, 'yet this wa': 1016280, 'this wa my': 891077, 'wa my local': 962676, 'supermarket this morning': 823318, 'alleviate': 45804, '07': 1010, 'nicely': 562526, 'wheel': 983029, 'sputum': 791367, 'to alleviate': 900314, 'alleviate my': 45811, 'my fresh': 548410, 'fresh meat': 333026, 'meat anxiety': 525487, 'anxiety ve': 78811, 'been outside': 121624, 'supermarket since': 822702, 'since 07': 770403, '07 45': 1015, '45 everyone': 19093, 'everyone playing': 287278, 'playing nicely': 659426, 'nicely so': 562533, 'far not': 298866, 'not happy': 569793, 'happy with': 377734, 'this woman': 891474, 'woman those': 1003636, 'those wheel': 892609, 'wheel will': 983060, 'be crawling': 114276, 'crawling with': 215191, 'with bacteria': 997352, 'bacteria virus': 107707, 'virus from': 958211, 'from dog': 335177, 'dog mess': 252129, 'mess sputum': 529237, 'sputum god': 791368, 'what else': 981406, 'order to alleviate': 618663, 'to alleviate my': 900315, 'alleviate my fresh': 45812, 'my fresh meat': 548412, 'fresh meat anxiety': 333027, 'meat anxiety ve': 525488, 'anxiety ve been': 78812, 've been outside': 952912, 'been outside the': 121625, 'outside the supermarket': 629604, 'the supermarket since': 868804, 'supermarket since 07': 822703, 'since 07 45': 770404, '07 45 everyone': 1016, '45 everyone playing': 19094, 'everyone playing nicely': 287279, 'playing nicely so': 659427, 'nicely so far': 562534, 'so far not': 777045, 'far not happy': 298868, 'not happy with': 569797, 'happy with this': 377736, 'with this woman': 1001741, 'this woman those': 891482, 'woman those wheel': 1003637, 'those wheel will': 892610, 'wheel will be': 983061, 'will be crawling': 992412, 'be crawling with': 114277, 'crawling with bacteria': 215192, 'with bacteria virus': 997353, 'bacteria virus from': 107710, 'virus from dog': 958214, 'from dog mess': 335178, 'dog mess sputum': 252130, 'mess sputum god': 529238, 'sputum god know': 791369, 'god know what': 354757, 'know what else': 476946, 'merica': 529116, 'bigoil': 130366, 'revolt': 720728, 'revolting': 720733, 'forget about': 329218, 'people of': 648906, 'the merica': 860504, 'merica it': 529117, 'is bigoil': 446180, 'bigoil that': 130369, 'need help': 554970, 'urgent apparently': 948319, 'apparently when': 82039, 'when are': 983166, 'usa going': 948649, 'to revolt': 913511, 'revolt against': 720729, 'this revolting': 889896, 'revolting president': 720734, 'president he': 670827, 'is responsible': 451473, 'the lack': 858900, 'of response': 589005, 'forget about the': 329226, 'the people of': 863494, 'people of the': 648927, 'of the merica': 591237, 'the merica it': 860505, 'merica it is': 529118, 'it is bigoil': 458886, 'is bigoil that': 446181, 'bigoil that need': 130370, 'that need help': 845300, 'need help and': 554972, 'help and it': 389353, 'and it urgent': 65594, 'it urgent apparently': 461984, 'urgent apparently when': 948320, 'apparently when are': 82040, 'when are the': 983169, 'are the people': 90881, 'of the usa': 591577, 'the usa going': 870542, 'usa going to': 948650, 'going to revolt': 355690, 'to revolt against': 913512, 'revolt against this': 720730, 'against this revolting': 37701, 'this revolting president': 889897, 'revolting president he': 720735, 'president he is': 670828, 'he is responsible': 385141, 'is responsible for': 451474, 'responsible for the': 716041, 'for the lack': 326518, 'the lack of': 858901, 'lack of response': 478652, 'venture': 954665, 'anyways': 81068, 'day 19': 227106, 'have acquired': 379113, 'acquired homemade': 29174, 'homemade mask': 402836, 'mask we': 519506, 'now venture': 576299, 'venture to': 954686, 'store oh': 809171, 'wait we': 964253, 'we never': 972581, 'never go': 558018, 'go there': 354217, 'there anyways': 878042, 'anyways we': 81079, 're always': 698274, 'always safe': 49732, 'safe at': 729500, 'home facemasks': 401181, 'day 19 we': 227109, 'we have acquired': 971747, 'have acquired homemade': 379114, 'acquired homemade mask': 29175, 'homemade mask we': 402840, 'mask we can': 519509, 'we can now': 970981, 'can now venture': 159076, 'now venture to': 576300, 'venture to the': 954687, 'grocery store oh': 365607, 'store oh wait': 809173, 'oh wait we': 596473, 'wait we never': 964254, 'we never go': 972583, 'never go there': 558023, 'go there anyways': 354221, 'there anyways we': 878043, 'anyways we re': 81080, 'we re always': 972823, 're always safe': 698276, 'always safe at': 49733, 'safe at home': 729502, 'at home facemasks': 98991, 'trunk': 934220, 'starving': 795241, 'clout': 184335, 'punk': 689282, 'wasn for': 967974, 'janitor trunk': 464563, 'trunk driver': 934223, 'driver lot': 259640, 'all would': 45518, 'be starving': 117355, 'starving sick': 795264, 'sick so': 768606, 'so give': 777166, 'give our': 350628, 'our fucking': 623209, 'fucking clout': 339832, 'clout punk': 184338, 'punk as': 689283, 'as america': 94714, 'america essentialworkers': 51515, 'if it wasn': 414342, 'it wasn for': 462257, 'wasn for grocery': 967975, 'worker janitor trunk': 1007260, 'janitor trunk driver': 464564, 'trunk driver lot': 934224, 'driver lot of': 259641, 'lot of all': 504136, 'of all would': 579996, 'all would be': 45519, 'would be starving': 1011652, 'be starving sick': 117356, 'starving sick so': 795265, 'sick so give': 768608, 'so give our': 777167, 'give our fucking': 350631, 'our fucking clout': 623210, 'fucking clout punk': 339833, 'clout punk as': 184339, 'punk as america': 689284, 'as america essentialworkers': 94715, 'mr': 544339, 'tasty': 834819, 'aim': 39525, 'contac': 199981, '051': 964, '5705253': 20496, '0338819977': 890, 'askari': 95702, 'complex': 192394, 'rawalpindi': 698006, 'fastfood': 300164, 'at mr': 99783, 'mr tasty': 544406, 'tasty we': 834822, 'we aim': 970302, 'aim to': 39542, 'provide great': 686337, 'taste and': 834775, 'and good': 63826, 'good quality': 357604, 'quality food': 691783, 'in reasonable': 427311, 'price contac': 673217, 'contac 051': 199982, '051 5705253': 965, '5705253 0338819977': 20497, '0338819977 askari': 891, 'askari 12': 95703, '12 commercial': 2838, 'commercial complex': 188682, 'complex rawalpindi': 192411, 'rawalpindi fastfood': 698007, 'fastfood restaurant': 300169, 'restaurant rawalpindi': 716657, 'at mr tasty': 99784, 'mr tasty we': 544407, 'tasty we aim': 834823, 'we aim to': 970303, 'aim to provide': 39558, 'to provide great': 912399, 'provide great taste': 686338, 'great taste and': 363028, 'taste and good': 834776, 'and good quality': 63834, 'good quality food': 357606, 'quality food in': 691786, 'food in reasonable': 314966, 'in reasonable price': 427312, 'reasonable price contac': 703116, 'price contac 051': 673218, 'contac 051 5705253': 199983, '051 5705253 0338819977': 966, '5705253 0338819977 askari': 20498, '0338819977 askari 12': 892, 'askari 12 commercial': 95704, '12 commercial complex': 2839, 'commercial complex rawalpindi': 188684, 'complex rawalpindi fastfood': 192412, 'rawalpindi fastfood restaurant': 698008, 'fastfood restaurant rawalpindi': 300170, 'purposefully': 690164, 'spit': 789546, 'apprehended': 82913, 'charged with': 173425, 'with purposefully': 1000364, 'purposefully wiping': 690171, 'his spit': 397808, 'spit on': 789558, 'good suspect': 357809, 'suspect 20': 829461, '20 apprehended': 12950, 'apprehended at': 82914, 'at bridport': 98165, 'bridport branch': 139654, 'branch of': 137688, 'of lidl': 585806, 'lidl not': 488296, 'not thought': 572107, 'man charged with': 512023, 'charged with purposefully': 173430, 'with purposefully wiping': 1000365, 'purposefully wiping his': 690172, 'wiping his spit': 996521, 'his spit on': 397809, 'spit on supermarket': 789563, 'on supermarket good': 603790, 'supermarket good suspect': 820548, 'good suspect 20': 357810, 'suspect 20 apprehended': 829462, '20 apprehended at': 12951, 'apprehended at bridport': 82915, 'at bridport branch': 98166, 'bridport branch of': 139655, 'branch of lidl': 137690, 'of lidl not': 585808, 'lidl not thought': 488297, 'not thought to': 572109, 'thought to have': 893276, 'to have covid': 907222, 'you said': 1020974, 'said today': 731522, 'never have': 558047, 'have said': 382381, 'said month': 731233, 'ago me': 38425, 'supermarket only': 821766, 'only took': 611379, 'took me': 925283, 'me half': 522849, 'half an': 374136, 'hour thursdaythoughts': 406005, 'thursdaythoughts stayhomesavelives': 895484, 'stayhomesavelives lockdownuk': 798412, 'have you said': 383688, 'you said today': 1020979, 'said today that': 731525, 'today that you': 920276, 'that you never': 847734, 'you never have': 1020078, 'never have said': 558052, 'have said month': 382385, 'said month ago': 731234, 'month ago me': 537535, 'ago me the': 38426, 'me the queue': 523657, 'the queue to': 865056, 'queue to get': 694095, 'the supermarket only': 868730, 'supermarket only took': 821775, 'only took me': 611380, 'took me half': 925287, 'me half an': 522850, 'half an hour': 374138, 'an hour thursdaythoughts': 56107, 'hour thursdaythoughts stayhomesavelives': 406006, 'thursdaythoughts stayhomesavelives lockdownuk': 895485, 'analyze': 57246, 'iraq': 444745, 'proxy': 687337, 'militia': 531522, 'ability': 24375, 'suppress': 827391, 'youth': 1026843, 'october': 579136, 'revolution': 720737, 'my recent': 549894, 'recent post': 703959, 'post at': 666009, 'new middle': 559112, 'east where': 265355, 'where analyze': 984731, 'analyze the': 57249, 'on corrupt': 600130, 'corrupt governance': 207658, 'governance the': 359784, 'global collapse': 351779, 'on iraq': 601621, 'iraq and': 444753, 'and iran': 65377, 'iran proxy': 444703, 'proxy militia': 687340, 'militia ability': 531523, 'ability to': 24388, 'to suppress': 915996, 'suppress the': 827396, 'the youth': 872212, 'youth led': 1026862, 'led october': 485246, 'october revolution': 579150, 'see my recent': 745460, 'my recent post': 549898, 'recent post at': 703960, 'post at the': 666012, 'at the new': 101032, 'the new middle': 861530, 'new middle east': 559113, 'middle east where': 530654, 'east where analyze': 265356, 'where analyze the': 984732, 'analyze the impact': 57250, 'the impact on': 857943, 'impact on corrupt': 417835, 'on corrupt governance': 600131, 'corrupt governance the': 207660, 'governance the covid': 359785, 'pandemic and the': 634909, 'and the global': 73395, 'the global collapse': 856290, 'global collapse of': 351780, 'collapse of oil': 186041, 'oil price on': 597207, 'price on iraq': 675686, 'on iraq and': 601622, 'iraq and iran': 444754, 'and iran proxy': 65378, 'iran proxy militia': 444704, 'proxy militia ability': 687341, 'militia ability to': 531524, 'ability to suppress': 24406, 'to suppress the': 915998, 'suppress the youth': 827399, 'the youth led': 872215, 'youth led october': 1026863, 'led october revolution': 485248, 'statutory': 796714, 'selfemployed': 747947, 'freelance': 332429, 'think wa': 885745, 'wa announcement': 961548, 'of statutory': 590083, 'statutory sick': 796723, 'sick pay': 768569, 'pay level': 644979, 'level for': 487559, 'self employed': 747620, 'employed enough': 273478, 'enough via': 277754, 'via selfemployed': 956228, 'selfemployed freelance': 747948, 'you think wa': 1021685, 'think wa announcement': 885746, 'wa announcement of': 961549, 'announcement of statutory': 77178, 'of statutory sick': 590084, 'statutory sick pay': 796724, 'sick pay level': 768573, 'pay level for': 644980, 'level for the': 487563, 'the self employed': 866653, 'self employed enough': 747625, 'employed enough via': 273479, 'enough via selfemployed': 277755, 'via selfemployed freelance': 956229, 'crumbled': 219735, 'farmer from': 299378, 'from across': 334384, 'being asked': 124864, 'dump their': 262190, 'their milk': 873965, 'milk this': 531860, 'service demand': 752278, 'demand crumbled': 235194, 'crumbled rapidly': 219736, 'rapidly due': 696973, 'farmer from across': 299379, 'from across the': 334386, 'country are being': 210459, 'are being asked': 84829, 'being asked to': 124866, 'asked to dump': 95864, 'to dump their': 904803, 'dump their milk': 262192, 'their milk this': 873968, 'milk this week': 531862, 'week the restaurant': 977005, 'the restaurant and': 865644, 'restaurant and food': 716286, 'and food service': 63090, 'food service demand': 316411, 'service demand crumbled': 752280, 'demand crumbled rapidly': 235195, 'crumbled rapidly due': 219737, 'rapidly due to': 696974, 'accelerator': 27926, 'return': 719803, 'pointing': 662747, 'solving': 782206, 'marginal': 515644, 'apps': 83260, 'big question': 129942, 'question will': 693812, 'will vc': 995300, 'vc money': 952781, 'and accelerator': 57578, 'accelerator return': 27927, 'return to': 719910, 'they left': 882549, 'left off': 485578, 'off covid': 593749, 'be pointing': 116460, 'pointing towards': 662763, 'towards what': 927277, 'is important': 448723, 'important what': 419110, 'is solving': 452081, 'solving problem': 782207, 'problem not': 679612, 'not marginal': 570535, 'marginal consumer': 515647, 'consumer apps': 196274, 'apps or': 83302, 'or idea': 615707, 'idea that': 413178, 'that do': 843566, 'really benefit': 702027, 'benefit society': 127086, 'big question will': 129945, 'question will vc': 693813, 'will vc money': 995301, 'vc money and': 952782, 'money and accelerator': 536590, 'and accelerator return': 57579, 'accelerator return to': 27928, 'return to where': 719934, 'to where they': 918544, 'where they left': 985282, 'they left off': 882553, 'left off covid': 485581, 'off covid 19': 593750, '19 should be': 10499, 'should be pointing': 765692, 'be pointing towards': 116462, 'pointing towards what': 662765, 'towards what is': 927278, 'what is important': 981700, 'is important what': 448736, 'important what is': 419111, 'what is solving': 981727, 'is solving problem': 452082, 'solving problem not': 782209, 'problem not marginal': 679614, 'not marginal consumer': 570536, 'marginal consumer apps': 515648, 'consumer apps or': 196276, 'apps or idea': 83303, 'or idea that': 615708, 'idea that do': 413182, 'that do not': 843569, 'do not really': 249812, 'not really benefit': 571231, 'really benefit society': 702028, 'conducted': 193654, 'earlier the': 264487, 'the screening': 866537, 'screening test': 742772, 'test could': 838962, 'could only': 209477, 'be conducted': 114176, 'conducted at': 193657, 'at government': 98788, 'government testing': 360669, 'site and': 771870, 'earlier the screening': 264489, 'the screening test': 866538, 'screening test could': 742773, 'test could only': 838964, 'could only be': 209478, 'only be conducted': 610149, 'be conducted at': 114177, 'conducted at government': 193658, 'at government testing': 98789, 'government testing site': 360670, 'testing site and': 839635, 'site and lab': 771872, 'scamalert': 740493, 'bb': 113033, 'antiviral': 78584, 'legitimate': 486046, 'scamalert phishing': 740495, 'phishing email': 654813, 'email claiming': 272143, 'from bb': 334644, 'bb are': 113037, 'the round': 866004, 'round offering': 726348, 'offering related': 595231, 'related product': 708518, 'like antiviral': 489806, 'antiviral hand': 78589, 'sanitizer do': 734774, 'respond and': 715286, 'click link': 181923, 'link and': 493789, 'always check': 49512, 'check with': 174716, 'local bb': 497729, 'bb to': 113053, 'ensure email': 277918, 'email are': 272124, 'are legitimate': 87765, 'legitimate scam': 486058, 'scamalert phishing email': 740496, 'phishing email claiming': 654815, 'email claiming to': 272144, 'be from bb': 114967, 'from bb are': 334645, 'bb are making': 113038, 'are making the': 88008, 'making the round': 511429, 'the round offering': 866008, 'round offering related': 726349, 'offering related product': 595232, 'related product like': 708520, 'product like antiviral': 681359, 'like antiviral hand': 489807, 'antiviral hand sanitizer': 78590, 'hand sanitizer do': 375375, 'sanitizer do not': 734777, 'not respond and': 571346, 'respond and do': 715287, 'not click link': 568770, 'click link and': 181924, 'link and always': 493790, 'and always check': 57994, 'always check with': 49514, 'check with your': 174720, 'with your local': 1002211, 'your local bb': 1024681, 'local bb to': 497730, 'bb to ensure': 113054, 'to ensure email': 905152, 'ensure email are': 277919, 'email are legitimate': 272126, 'are legitimate scam': 87766, 'shape': 754817, 'fudging': 340109, 'degrowrth': 232583, 'correlated': 207623, 'pogrom': 662390, 'kashmir': 470975, 'yeah imagine': 1014267, 'imagine that': 416787, 'that economy': 843672, 'economy in': 267959, 'in much': 425498, 'better shape': 128462, 'shape not': 754840, 'not fudging': 569550, 'fudging data': 340110, 'hide ongoing': 394840, 'ongoing degrowrth': 607620, 'degrowrth oil': 232584, 'price better': 672915, 'better correlated': 128248, 'correlated with': 207624, 'with crude': 997864, 'crude price': 219580, 'of course': 582042, 'course no': 211905, 'no pogrom': 565130, 'pogrom against': 662391, 'against muslim': 37549, 'muslim in': 546427, 'in kashmir': 424444, 'kashmir and': 470976, 'and elsewhere': 62017, 'elsewhere and': 272009, 'and responding': 70351, 'yeah imagine that': 1014268, 'imagine that economy': 416788, 'that economy in': 843673, 'economy in much': 267969, 'in much better': 425499, 'much better shape': 544761, 'better shape not': 128463, 'shape not fudging': 754841, 'not fudging data': 569551, 'fudging data to': 340111, 'data to hide': 226462, 'to hide ongoing': 907729, 'hide ongoing degrowrth': 394841, 'ongoing degrowrth oil': 607621, 'degrowrth oil price': 232585, 'oil price better': 597061, 'price better correlated': 672916, 'better correlated with': 128249, 'correlated with crude': 207625, 'with crude price': 997867, 'crude price and': 219582, 'price and of': 672481, 'and of course': 67955, 'of course no': 582064, 'course no pogrom': 211906, 'no pogrom against': 565131, 'pogrom against muslim': 662392, 'against muslim in': 37550, 'muslim in kashmir': 546428, 'in kashmir and': 424445, 'kashmir and elsewhere': 470977, 'and elsewhere and': 62018, 'elsewhere and responding': 272013, 'and responding to': 70352, 'boycotting': 137385, 'mean big': 524370, 'big take': 130045, 'this quarantine': 889770, 'quarantine thing': 692620, 'should really': 766374, 'really give': 702223, 'give boycotting': 350422, 'boycotting try': 137386, 'on thing': 604583, 'mean big take': 524371, 'big take away': 130046, 'take away from': 831967, 'away from this': 105916, 'from this quarantine': 338006, 'this quarantine thing': 889781, 'quarantine thing we': 692622, 'thing we should': 884968, 'we should really': 973289, 'should really give': 766380, 'really give boycotting': 702224, 'give boycotting try': 350423, 'boycotting try to': 137387, 'try to lower': 934637, 'to lower price': 909505, 'lower price on': 505966, 'price on thing': 675728, '2a': 16541, 'visa': 959110, 'labor': 478395, 'bigger': 130142, 'are reliant': 89564, 'reliant on': 709252, 'on 2a': 599083, '2a immigrant': 16543, 'immigrant visa': 417240, 'visa for': 959111, 'for labor': 322871, 'labor this': 478454, 'not happen': 569783, 'happen this': 377169, 'year with': 1015110, 'ongoing problem': 607674, 'problem food': 679522, 'would skyrocket': 1012245, 'skyrocket at': 773289, 'time we': 898213, 'all cooking': 42452, 'cooking at': 202849, 'home this': 402287, 'be bigger': 113855, 'bigger problem': 130165, 'farmer are reliant': 299291, 'are reliant on': 89565, 'reliant on 2a': 709253, 'on 2a immigrant': 599084, '2a immigrant visa': 16544, 'immigrant visa for': 417241, 'visa for labor': 959112, 'for labor this': 322872, 'labor this may': 478455, 'this may not': 888793, 'may not happen': 521377, 'not happen this': 569790, 'happen this year': 377171, 'this year with': 891604, 'year with the': 1015116, 'with the ongoing': 1001413, 'the ongoing problem': 862253, 'ongoing problem food': 607676, 'problem food price': 679523, 'food price would': 315987, 'price would skyrocket': 677666, 'would skyrocket at': 1012246, 'skyrocket at time': 773290, 'at time we': 101316, 'time we re': 898231, 're all cooking': 698210, 'all cooking at': 42453, 'cooking at home': 202850, 'at home this': 99147, 'home this will': 402292, 'will be bigger': 992380, 'be bigger problem': 113857, 'fix': 309706, 'government fix': 360087, 'fix price': 309743, 'and sanitizers': 70892, 'sanitizers rt': 736379, 'rt amp': 726734, 'amp spread': 54545, 'spread to': 790853, 'government fix price': 360088, 'fix price of': 309746, 'price of mask': 675500, 'of mask and': 586259, 'mask and sanitizers': 518369, 'and sanitizers rt': 70903, 'sanitizers rt amp': 736380, 'rt amp spread': 726735, 'amp spread to': 54547, 'spread to all': 790854, 'thrived': 894217, 'lobbying': 497593, 'exemption': 290000, 'skirting': 773158, 'accountability': 28789, 'rent to': 711198, 'to own': 911332, 'own corporation': 631928, 'corporation have': 207428, 'have thrived': 383132, 'thrived by': 894218, 'by lobbying': 153067, 'lobbying for': 497594, 'for legal': 322929, 'legal exemption': 485862, 'exemption and': 290001, 'and skirting': 71722, 'skirting federal': 773159, 'federal and': 301949, 'and state': 72272, 'protection law': 685505, 'law in': 482311, 'it final': 457998, 'final order': 305852, 'order the': 618623, 'the can': 850306, 'can bring': 157795, 'bring some': 140070, 'some public': 783671, 'public accountability': 687832, 'accountability to': 28801, 'the rent': 865510, 'own business': 631907, 'business stopthedebttrap': 144423, 'rent to own': 711200, 'to own corporation': 911334, 'own corporation have': 631929, 'corporation have thrived': 207429, 'have thrived by': 383133, 'thrived by lobbying': 894219, 'by lobbying for': 153068, 'lobbying for legal': 497596, 'for legal exemption': 322930, 'legal exemption and': 485863, 'exemption and skirting': 290002, 'and skirting federal': 71723, 'skirting federal and': 773160, 'federal and state': 301952, 'and state consumer': 72275, 'state consumer protection': 795480, 'consumer protection law': 198542, 'protection law in': 685511, 'law in it': 482313, 'in it final': 424245, 'it final order': 457999, 'final order the': 305853, 'order the can': 618624, 'the can bring': 850309, 'can bring some': 157801, 'bring some public': 140074, 'some public accountability': 783672, 'public accountability to': 687833, 'accountability to the': 28802, 'to the rent': 917015, 'the rent to': 865515, 'to own business': 911333, 'own business stopthedebttrap': 631910, 'alexander': 41600, 'galitsky': 342931, 'how affect': 407325, 'affect venture': 34269, 'venture market': 954673, 'what should': 982178, 'should expect': 765975, 'expect due': 290636, 'fall and': 296826, 'market crash': 516240, 'crash interview': 214999, 'with alexander': 997141, 'alexander galitsky': 41601, 'galitsky via': 342932, 'how affect venture': 407326, 'affect venture market': 34270, 'venture market and': 954674, 'market and what': 516004, 'and what should': 75483, 'what should expect': 982185, 'should expect due': 765976, 'expect due to': 290637, 'due to oil': 261880, 'price fall and': 673775, 'fall and stock': 296835, 'stock market crash': 802385, 'market crash interview': 516245, 'crash interview with': 215000, 'interview with alexander': 442261, 'with alexander galitsky': 997142, 'alexander galitsky via': 41602, 'nyt': 578146, 'validated': 951927, 'virus changed': 958051, 'we internet': 972079, 'internet nyt': 441970, 'nyt just': 578147, 'just validated': 470176, 'validated what': 951928, 'we see': 973153, 'see in': 745294, 'consumer content': 196963, 'content consumption': 200789, 'the virus changed': 870811, 'virus changed the': 958052, 'changed the way': 172572, 'the way we': 871206, 'way we internet': 970173, 'we internet nyt': 972080, 'internet nyt just': 441971, 'nyt just validated': 578148, 'just validated what': 470177, 'validated what we': 951929, 'what we see': 982563, 'we see in': 973160, 'see in term': 745297, 'term of consumer': 838214, 'of consumer content': 581726, 'consumer content consumption': 196964, 'compete': 191580, 'staycalmdontpanicbuy': 797837, 'like every': 490182, 'every trip': 286337, 'is preparing': 450993, 'preparing me': 670344, 'to compete': 903117, 'compete on': 191595, 'on chopped': 599917, 'chopped staycalmdontpanicbuy': 177978, 'feel like every': 302710, 'like every trip': 490187, 'every trip to': 286338, 'store is preparing': 808517, 'is preparing me': 450996, 'preparing me to': 670346, 'me to compete': 523747, 'to compete on': 903121, 'compete on chopped': 191596, 'on chopped staycalmdontpanicbuy': 599918, 'declined': 231419, 'price declined': 673405, 'declined sharply': 231439, 'march every': 515355, 'every sub': 286231, 'sub index': 815684, 'index saw': 434239, 'fall demand': 296887, 'demand fell': 235335, 'fell amid': 303163, 'ongoing coronavirus': 607609, 'pandemic according': 634795, 'to study': 915697, 'study released': 814944, 'released by': 709026, 'the un': 870329, 'un food': 939287, 'and agriculture': 57788, 'agriculture organization': 39007, 'organization fao': 619366, 'food price declined': 315931, 'price declined sharply': 673407, 'declined sharply in': 231442, 'in march every': 425100, 'march every sub': 515356, 'every sub index': 286232, 'sub index saw': 815685, 'index saw price': 434240, 'saw price fall': 738221, 'price fall demand': 673782, 'fall demand fell': 296888, 'demand fell amid': 235336, 'fell amid the': 303166, 'amid the ongoing': 52704, 'the ongoing coronavirus': 862240, 'ongoing coronavirus pandemic': 607611, 'coronavirus pandemic according': 206433, 'pandemic according to': 634796, 'according to study': 28592, 'to study released': 915703, 'study released by': 814945, 'released by the': 709027, 'by the un': 154466, 'the un food': 870330, 'un food and': 939288, 'food and agriculture': 313169, 'and agriculture organization': 57792, 'agriculture organization fao': 39008, 'doorman': 255824, 'entrance': 278866, 'nominate': 566275, 'the doorman': 853595, 'doorman at': 255825, 'the entrance': 854379, 'entrance of': 278890, 'we tell': 973509, 'that family': 843827, 'family man': 298010, 'man took': 512277, 'family for': 297808, 'the parent': 863281, 'parent were': 641771, 'were of': 979929, 'of vulnerable': 592869, 'vulnerable age': 960842, 'of 70': 579658, '70 year': 21863, 'and older': 68037, 'older yet': 598690, 'the son': 867473, 'son 45': 785341, '45 could': 19078, 'not understand': 572315, 'the danger': 852823, 'danger he': 225651, 'he brought': 384798, 'brought to': 141202, 'his parent': 397683, 'parent just': 641662, 'just nominate': 469317, 'nominate person': 566278, 'person from': 652438, 'the household': 857654, 'the doorman at': 853596, 'doorman at the': 255826, 'at the entrance': 100936, 'the entrance of': 854384, 'entrance of the': 278893, 'the supermarket we': 868892, 'supermarket we tell': 823757, 'we tell me': 973510, 'tell me that': 837021, 'me that family': 523611, 'that family man': 843830, 'family man took': 298011, 'man took the': 512278, 'took the whole': 925346, 'the whole family': 871489, 'whole family for': 990195, 'family for shopping': 297812, 'for shopping the': 325597, 'shopping the parent': 764091, 'the parent were': 863286, 'parent were of': 641774, 'were of vulnerable': 979930, 'of vulnerable age': 592870, 'vulnerable age of': 960845, 'age of 70': 37858, 'of 70 year': 579663, '70 year and': 21865, 'year and older': 1014401, 'and older yet': 68045, 'older yet the': 598691, 'yet the son': 1016258, 'the son 45': 867474, 'son 45 could': 785342, '45 could not': 19079, 'could not understand': 209464, 'not understand the': 572325, 'understand the danger': 940753, 'the danger he': 852824, 'danger he brought': 225652, 'he brought to': 384799, 'brought to his': 141203, 'to his parent': 907822, 'his parent just': 397684, 'parent just nominate': 641664, 'just nominate person': 469319, 'nominate person from': 566279, 'person from the': 652442, 'from the household': 337749, 'youre': 1026413, 'bullshit': 142473, 'youre teacher': 1026424, 'teacher ask': 835435, 'ask your': 95681, 'your parent': 1025198, 'you home': 1019242, 'from school': 337180, 'school but': 741711, 'about doctor': 25118, 'nurse ambulance': 577186, 'ambulance police': 51333, 'police firefighter': 663006, 'firefighter supermarket': 308230, 'worker want': 1008119, 'close everything': 182630, 'everything think': 288052, 'think first': 885244, 'first we': 309171, 'we lock': 972289, 'the bullshit': 850108, 'youre teacher ask': 1026425, 'teacher ask your': 835436, 'ask your parent': 95686, 'your parent to': 1025205, 'parent to keep': 641751, 'keep you home': 472241, 'you home from': 1019243, 'home from school': 401271, 'from school but': 337182, 'school but what': 741712, 'what about doctor': 980966, 'about doctor nurse': 25119, 'doctor nurse ambulance': 250997, 'nurse ambulance police': 577187, 'ambulance police firefighter': 51335, 'police firefighter supermarket': 663012, 'firefighter supermarket worker': 308231, 'supermarket worker want': 824114, 'worker want to': 1008120, 'want to close': 966012, 'to close everything': 902871, 'close everything think': 182631, 'everything think first': 288053, 'think first we': 885246, 'first we lock': 309172, 'we lock down': 972290, 'lock down the': 499055, 'down the bullshit': 257267, 'gst': 367549, 'kickstart': 473833, 'semblance': 749596, 'taxholiday': 835139, '19 stop': 10865, 'being threat': 125946, 'threat please': 893713, 'please consider': 659808, 'consider providing': 195076, 'providing gst': 687020, 'gst tax': 367564, 'tax holiday': 835004, 'holiday for': 400295, 'for 60': 318886, 'day combined': 227461, 'combined with': 187142, 'with national': 999676, 'national eviction': 552502, 'moratorium rent': 538458, 'rent moratorium': 711129, 'moratorium to': 538460, 'to kickstart': 908910, 'kickstart some': 473836, 'some semblance': 783823, 'semblance of': 749597, 'consumer producer': 198445, 'producer activity': 680546, 'activity taxholiday': 30503, 'covid 19 stop': 213871, '19 stop being': 10866, 'stop being threat': 804501, 'being threat please': 125947, 'threat please consider': 893714, 'please consider providing': 659819, 'consider providing gst': 195077, 'providing gst tax': 687021, 'gst tax holiday': 367565, 'tax holiday for': 835005, 'holiday for 60': 400296, 'for 60 day': 318888, '60 day combined': 20924, 'day combined with': 227462, 'combined with national': 187148, 'with national eviction': 999677, 'national eviction moratorium': 552503, 'eviction moratorium rent': 288333, 'moratorium rent moratorium': 538459, 'rent moratorium to': 711130, 'moratorium to kickstart': 538461, 'to kickstart some': 908912, 'kickstart some semblance': 473837, 'some semblance of': 783824, 'semblance of consumer': 749598, 'of consumer producer': 581760, 'consumer producer activity': 198446, 'producer activity taxholiday': 680547, 'coronavirus uk': 206981, 'time delivery': 896546, 'and rationing': 69950, 'rationing coronacrisisuk': 697806, 'coronacrisisuk 19': 204875, 'coronavirus uk supermarket': 206987, 'uk supermarket opening': 938771, 'supermarket opening time': 821782, 'opening time delivery': 612923, 'time delivery and': 896547, 'delivery and rationing': 233675, 'and rationing coronacrisisuk': 69951, 'rationing coronacrisisuk 19': 697807, 'millennials': 531996, 'stack': 791975, '2k': 16617, '44 of': 19010, 'of bridge': 580881, 'bridge millennials': 139615, 'millennials report': 532021, 'report being': 711830, 'being extremely': 125130, 'extremely concerned': 293861, 'about see': 26156, 'see how': 745215, 'how that': 408789, 'that stack': 846447, 'stack up': 791984, 'other generation': 620287, 'generation in': 345617, 'our survey': 625054, 'survey of': 828905, 'of 2k': 579551, '2k consumer': 16620, '44 of bridge': 19011, 'of bridge millennials': 580882, 'bridge millennials report': 139616, 'millennials report being': 532022, 'report being extremely': 711831, 'being extremely concerned': 125131, 'extremely concerned about': 293862, 'concerned about see': 193170, 'about see how': 26157, 'see how that': 745254, 'how that stack': 408796, 'that stack up': 846448, 'stack up against': 791985, 'against other generation': 37570, 'other generation in': 620288, 'generation in our': 345618, 'in our survey': 426345, 'our survey of': 625055, 'survey of 2k': 828908, 'of 2k consumer': 579552, 'stockpilers': 803875, 'afterlife': 36642, 'live forever': 495821, 'forever right': 329145, 'now simply': 575830, 'simply because': 770182, 'because do': 119029, 'to run': 913652, 'run into': 727680, 'the stockpilers': 867943, 'stockpilers up': 803893, 'the afterlife': 848417, 'afterlife they': 36645, 'deserve the': 238127, 'afterlife stophoarding': 36643, 'stophoarding panicbuyinguk': 805439, 'want to live': 966065, 'to live forever': 909340, 'live forever right': 495823, 'forever right now': 329146, 'right now simply': 722136, 'now simply because': 575831, 'simply because do': 770183, 'because do not': 119030, 'want to run': 966106, 'to run into': 913661, 'run into the': 727684, 'into the stockpilers': 443175, 'the stockpilers up': 867945, 'stockpilers up in': 803894, 'in the afterlife': 428969, 'the afterlife they': 848419, 'afterlife they do': 36646, 'not deserve the': 569003, 'deserve the afterlife': 238129, 'the afterlife stophoarding': 848418, 'afterlife stophoarding panicbuyinguk': 36644, 'beirut': 126077, 'shopper get': 761528, 'get tested': 348184, 'tested for': 839300, 'symptom in': 830858, 'in beirut': 420772, 'beirut 19': 126078, '19 more': 8675, 'supermarket shopper get': 822614, 'shopper get tested': 761530, 'get tested for': 348189, 'tested for covid': 839305, '19 coronavirus symptom': 6131, 'coronavirus symptom in': 206867, 'symptom in beirut': 830859, 'in beirut 19': 420773, 'beirut 19 more': 126079, '19 more on': 8680, 'steak': 799152, 'selfishpricks': 748398, 'want is': 965825, 'is nice': 449896, 'nice bit': 562355, 'of steak': 590105, 'steak or': 799160, 'or some': 617147, 'some chicken': 782520, 'chicken but': 175759, 'single supermarket': 771408, 'ha any': 369569, 'any meat': 79456, 'meat or': 525678, 'or poultry': 616660, 'poultry left': 667330, 'left due': 485452, 'to hoarder': 907889, 'hoarder haven': 399043, 'had decent': 373015, 'decent meal': 230789, 'meal in': 524189, 'day panicbuying': 228187, 'panicbuying selfishpricks': 639044, 'all want is': 45390, 'want is nice': 965828, 'is nice bit': 449899, 'nice bit of': 562356, 'bit of steak': 131665, 'of steak or': 590107, 'steak or some': 799161, 'or some chicken': 617148, 'some chicken but': 782523, 'chicken but not': 175761, 'but not single': 146562, 'not single supermarket': 571602, 'single supermarket ha': 771410, 'supermarket ha any': 820616, 'ha any meat': 369571, 'any meat or': 79457, 'meat or poultry': 525682, 'or poultry left': 616662, 'poultry left due': 667331, 'left due to': 485453, 'due to hoarder': 261814, 'to hoarder haven': 907892, 'hoarder haven had': 399044, 'haven had decent': 383822, 'had decent meal': 373016, 'decent meal in': 230790, 'meal in day': 524190, 'in day panicbuying': 422017, 'day panicbuying selfishpricks': 228188, 'faculty': 296040, 'pharmaceuticalsciences': 654098, 'formulated': 329739, 'rupure': 728202, 'handsanitizers': 376685, 'freely': 332460, 'distributed': 248023, 'ramauniversity': 696366, 'subsidized': 815992, 'ramahospitals': 696346, 'faculty of': 296049, 'of pharmaceuticalsciences': 588086, 'pharmaceuticalsciences ha': 654099, 'ha formulated': 370669, 'formulated rupure': 329742, 'rupure handsanitizers': 728203, 'handsanitizers to': 376706, 'virus it': 958414, 'is freely': 447930, 'freely distributed': 332464, 'distributed to': 248057, 'the employee': 854250, 'student of': 814742, 'of ramauniversity': 588730, 'ramauniversity and': 696367, 'at highly': 98906, 'highly subsidized': 396106, 'subsidized price': 815999, 'at ramahospitals': 100247, 'faculty of pharmaceuticalsciences': 296050, 'of pharmaceuticalsciences ha': 588087, 'pharmaceuticalsciences ha formulated': 654100, 'ha formulated rupure': 370670, 'formulated rupure handsanitizers': 329743, 'rupure handsanitizers to': 728204, 'handsanitizers to fight': 376707, 'fight the virus': 304906, 'the virus it': 870852, 'virus it is': 958420, 'it is freely': 458957, 'is freely distributed': 447931, 'freely distributed to': 332465, 'distributed to all': 248058, 'all the employee': 44732, 'the employee and': 854253, 'employee and student': 273585, 'and student of': 72608, 'student of ramauniversity': 814744, 'of ramauniversity and': 588731, 'ramauniversity and is': 696368, 'and is available': 65394, 'is available at': 445908, 'available at highly': 104250, 'at highly subsidized': 98909, 'highly subsidized price': 396107, 'subsidized price at': 816000, 'price at ramahospitals': 672808, 'securityguards': 744805, 'particular': 642600, 'hired': 397037, 'sop': 785957, 'the securityguards': 866628, 'securityguards haven': 744806, 'been given': 121205, 'given medical': 351053, 'medical glove': 526188, 'glove this': 352962, 'wrong these': 1013119, 'these particular': 880404, 'particular guard': 642613, 'guard are': 367778, 'are hired': 87177, 'hired by': 397042, 'by but': 152030, 'be sop': 117314, 'sop that': 785958, 'they provided': 882933, 'provided medical': 686628, 'glove while': 353032, 'working during': 1008600, 'pandemic safetyfirst': 636379, 'safetyfirst workplace': 730813, 'store the securityguards': 810620, 'the securityguards haven': 866629, 'securityguards haven been': 744807, 'haven been given': 383751, 'been given medical': 121211, 'given medical glove': 351054, 'medical glove this': 526192, 'glove this is': 352963, 'this is wrong': 888474, 'is wrong these': 454108, 'wrong these particular': 1013120, 'these particular guard': 880405, 'particular guard are': 642614, 'guard are hired': 367780, 'are hired by': 87178, 'hired by but': 397043, 'by but it': 152031, 'but it should': 146164, 'should be sop': 765735, 'be sop that': 117315, 'sop that they': 785959, 'that they provided': 846944, 'they provided medical': 882935, 'provided medical glove': 686629, 'medical glove while': 526193, 'glove while working': 353038, 'while working during': 987576, 'working during the': 1008604, 'the pandemic safetyfirst': 863084, 'pandemic safetyfirst workplace': 636380, 'evil': 288428, 'pain': 634215, 'delta': 234825, 'is evil': 447607, 'evil to': 288464, 'add more': 31451, 'more pain': 539974, 'pain to': 634251, '19 that': 11146, 'the citizen': 850904, 'through by': 894359, 'by inflating': 152920, 'service this': 752954, 'this decision': 887183, 'decision of': 231062, 'government delta': 360016, 'it is evil': 458949, 'is evil to': 447610, 'evil to add': 288465, 'to add more': 900061, 'add more pain': 31453, 'more pain to': 539976, 'pain to that': 634252, 'to that of': 916457, 'covid 19 that': 213930, '19 that the': 11161, 'that the citizen': 846683, 'the citizen are': 850906, 'citizen are going': 178848, 'are going through': 86901, 'going through by': 355497, 'through by inflating': 894360, 'by inflating the': 152922, 'of good and': 584210, 'good and service': 356748, 'and service this': 71319, 'service this decision': 752955, 'this decision of': 887187, 'decision of the': 231064, 'the state government': 867777, 'state government delta': 795611, 'stop stockpiling': 805075, 'stockpiling stayathome': 804076, 'stayhome stophoarding': 798189, 'stophoarding stoppanicbuying': 805482, 'stopstockpiling stopthespread': 805889, 'and stop stockpiling': 72487, 'stop stockpiling stayathome': 805077, 'stockpiling stayathome stayhome': 804077, 'stayathome stayhome stophoarding': 797642, 'stayhome stophoarding stoppanicbuying': 798190, 'stophoarding stoppanicbuying stopstockpiling': 805487, 'stoppanicbuying stopstockpiling stopthespread': 805644, 'tl': 899336, 'accessory': 28369, 'boardgames': 133693, 'hey everyone': 394369, 'everyone update': 287522, 'store tl': 810748, 'tl dr': 899337, 'dr the': 258108, 'and play': 69086, 'play space': 659218, 'space are': 787054, 'closed until': 183412, 'notice you': 573412, 'still order': 801003, 'order card': 618121, 'card accessory': 163441, 'accessory boardgames': 28370, 'boardgames for': 133694, 'for pickup': 324546, 'pickup you': 656053, 'can rent': 159438, 'rent game': 711101, 'game to': 343269, 'play at': 659118, 'home while': 402490, 'you self': 1021099, 'self isolate': 747661, 'isolate and': 454811, 'offering free': 595111, 'hey everyone update': 394373, 'everyone update for': 287523, 'update for the': 946963, 'for the store': 326708, 'the store tl': 868126, 'store tl dr': 810749, 'tl dr the': 899339, 'dr the retail': 258109, 'the retail and': 865709, 'retail and play': 717833, 'and play space': 69090, 'play space are': 659219, 'space are now': 787055, 'now closed until': 574407, 'closed until further': 183415, 'further notice you': 342123, 'notice you can': 573413, 'can still order': 159784, 'still order card': 801004, 'order card accessory': 618122, 'card accessory boardgames': 163442, 'accessory boardgames for': 28371, 'boardgames for pickup': 133695, 'for pickup you': 324552, 'pickup you can': 656055, 'you can rent': 1017769, 'can rent game': 159439, 'rent game to': 711102, 'game to play': 343271, 'to play at': 911786, 'play at home': 659119, 'at home while': 99171, 'home while you': 402496, 'while you self': 987593, 'you self isolate': 1021100, 'self isolate and': 747663, 'isolate and we': 454820, 'we are offering': 970642, 'are offering free': 88667, 'ahh': 39225, 'ahh covid': 39226, '19 stay': 10795, 'your room': 1025648, 'room and': 725872, 'on much': 602245, 'much food': 544895, 'food possible': 315888, 'ahh covid 19': 39227, 'covid 19 stay': 213860, '19 stay in': 10799, 'stay in your': 797069, 'in your room': 431119, 'your room and': 1025649, 'room and stock': 725881, 'up on much': 945593, 'on much food': 602246, 'much food possible': 544908, 'provincial': 687207, 'inspector': 439780, 'the provincial': 864737, 'provincial government': 687212, 'increasing it': 433629, 'it food': 458052, 'food inspector': 315081, 'inspector capacity': 439783, 'for meat': 323359, 'meat increase': 525622, 'increase across': 432655, 'across alberta': 29223, 'the provincial government': 864739, 'provincial government is': 687213, 'government is increasing': 360258, 'is increasing it': 448858, 'increasing it food': 433631, 'it food inspector': 458054, 'food inspector capacity': 315082, 'inspector capacity demand': 439784, 'demand for meat': 235453, 'for meat increase': 323362, 'meat increase across': 525623, 'increase across alberta': 432656, 'across alberta due': 29224, 'picker': 655827, 'muchrespect': 545508, 'slightly concerned': 773945, 'about working': 26949, 'working dot': 1008594, 'com picker': 186952, 'picker in': 655834, 'distancing just': 247267, 'can imagine': 158717, 'imagine working': 416830, 'through right': 894647, 'now though': 576141, 'though muchrespect': 892860, 'slightly concerned about': 773946, 'concerned about working': 193180, 'about working dot': 26950, 'working dot com': 1008595, 'dot com picker': 255941, 'com picker in': 186953, 'picker in supermarket': 655835, 'in supermarket with': 428718, 'supermarket with social': 823936, 'social distancing just': 779642, 'distancing just can': 247268, 'just can imagine': 468429, 'can imagine working': 158723, 'imagine working for': 416832, 'for the nh': 326582, 'nh and what': 561886, 'what they are': 982392, 'they are going': 881286, 'going through right': 355507, 'through right now': 894648, 'right now though': 722158, 'now though muchrespect': 576142, 'genomics': 345805, '23andme': 15499, 'why doe': 990946, '19 make': 8519, 'make some': 510469, 'sick ask': 768381, 'ask their': 95641, 'their dna': 873048, 'dna consumer': 248978, 'consumer genomics': 197575, 'genomics company': 345806, 'company 23andme': 190339, '23andme want': 15504, 'to mine': 910145, 'mine it': 532908, 'it database': 457471, 'database of': 226520, 'customer for': 222383, 'for clue': 320139, 'clue to': 184556, 'to why': 918587, 'virus hit': 958285, 'hit some': 398405, 'people harder': 648150, 'than others': 841004, 'why doe covid': 990948, 'covid 19 make': 213393, '19 make some': 8524, 'make some people': 510474, 'some people so': 783535, 'so sick ask': 778212, 'sick ask their': 768382, 'ask their dna': 95642, 'their dna consumer': 873049, 'dna consumer genomics': 248979, 'consumer genomics company': 197576, 'genomics company 23andme': 345807, 'company 23andme want': 190340, '23andme want to': 15505, 'want to mine': 966068, 'to mine it': 910146, 'mine it database': 532909, 'it database of': 457472, 'database of million': 226522, 'million of customer': 532264, 'of customer for': 582272, 'customer for clue': 222384, 'for clue to': 320141, 'clue to why': 184558, 'to why the': 918594, 'why the virus': 991436, 'the virus hit': 870842, 'virus hit some': 958288, 'hit some people': 398407, 'some people harder': 783515, 'people harder than': 648151, 'harder than others': 378186, 'scare': 740860, 'economiccrisis': 267401, 'sbux': 739836, 'dooprime': 255490, 'buyshares': 151458, 'buystocks': 151461, 'makemoney': 510794, 'makemoneyonline': 510798, 'makemoneyfromhome': 510797, 'think will': 885787, 'happen to': 377176, 'to starbucks': 915183, 'starbucks share': 794105, 'share today': 755310, 'the scare': 866440, 'scare economiccrisis': 740871, 'economiccrisis and': 267402, 'the plunging': 863864, 'price affect': 672223, 'the sbux': 866401, 'sbux share': 739837, 'share buy': 754955, 'buy starbucks': 149233, 'starbucks corporation': 794091, 'corporation share': 207460, 'share on': 755128, 'on dooprime': 600391, 'dooprime now': 255491, 'now buyshares': 574313, 'buyshares buystocks': 151459, 'buystocks makemoney': 151462, 'makemoney makemoneyonline': 510795, 'makemoneyonline makemoneyfromhome': 510799, 'you think will': 1021689, 'think will happen': 885789, 'will happen to': 993604, 'happen to starbucks': 377187, 'to starbucks share': 915184, 'starbucks share today': 794106, 'share today will': 755311, 'today will the': 920546, 'will the scare': 995157, 'the scare economiccrisis': 866443, 'scare economiccrisis and': 740872, 'economiccrisis and the': 267403, 'and the plunging': 73516, 'the plunging oil': 863866, 'oil price affect': 597035, 'price affect the': 672224, 'affect the sbux': 34253, 'the sbux share': 866402, 'sbux share buy': 739838, 'share buy starbucks': 754957, 'buy starbucks corporation': 149234, 'starbucks corporation share': 794092, 'corporation share on': 207461, 'share on dooprime': 755129, 'on dooprime now': 600392, 'dooprime now buyshares': 255492, 'now buyshares buystocks': 574314, 'buyshares buystocks makemoney': 151460, 'buystocks makemoney makemoneyonline': 151463, 'makemoney makemoneyonline makemoneyfromhome': 510796, 'stressful': 813476, 'distraction': 247901, 'yolo': 1016535, 'these stressful': 880754, 'stressful time': 813518, 'time did': 896556, 'shopping distraction': 762488, 'distraction yolo': 247913, 'yolo socialdistancing': 1016537, 'in these stressful': 429861, 'these stressful time': 880755, 'stressful time did': 813520, 'time did some': 896558, 'did some online': 240814, 'online shopping distraction': 609093, 'shopping distraction yolo': 762489, 'distraction yolo socialdistancing': 247915, 'fur': 341840, 'coronacrisis to': 204830, 'fellow ny': 303315, 'ny er': 577851, 'er you': 280024, 'know ny': 476635, 'ny is': 577882, 'be under': 117847, 'lockdown only': 499742, 'only essential': 610395, 'open per': 612440, 'per pet': 650980, 'pet store': 653452, 'been deemed': 120935, 'deemed essential': 231817, 'essential so': 281563, 'so make': 777626, 'your fur': 1024014, 'fur baby': 341841, 'baby and': 106563, 'coronacrisis to my': 204831, 'to my fellow': 910397, 'my fellow ny': 548303, 'fellow ny er': 303316, 'ny er you': 577852, 'er you know': 280025, 'you know ny': 1019516, 'know ny is': 476636, 'ny is going': 577885, 'to be under': 901607, 'be under lockdown': 117851, 'under lockdown only': 940152, 'lockdown only essential': 499744, 'only essential store': 610399, 'essential store open': 281592, 'store open per': 809261, 'open per pet': 612441, 'per pet store': 650981, 'pet store have': 653458, 'store have not': 808092, 'not been deemed': 568508, 'been deemed essential': 120936, 'deemed essential so': 231822, 'essential so make': 281565, 'so make sure': 777627, 'sure you don': 827857, 'you don forget': 1018315, 'don forget about': 253523, 'forget about your': 329228, 'about your fur': 26999, 'your fur baby': 1024015, 'fur baby and': 341842, 'baby and stock': 106565, 'on food for': 600864, 'food for them': 314578, 'miserably': 533993, 'crucial': 219441, 'amazing supply': 50791, 'chain manager': 170915, 'and manufacturer': 66650, 'big retail': 129960, 'retail sector': 718522, 'sector have': 744208, 'have failed': 380553, 'failed miserably': 296149, 'miserably because': 533997, 'stock crucial': 802033, 'crucial inventory': 219460, 'inventory for': 443667, 'consumer consumer': 196948, 'amazing supply chain': 50792, 'supply chain manager': 824992, 'chain manager and': 170916, 'manager and manufacturer': 512670, 'and manufacturer in': 66655, 'manufacturer in the': 513473, 'in the big': 429021, 'the big retail': 849621, 'big retail sector': 129962, 'retail sector have': 718528, 'sector have failed': 744210, 'have failed miserably': 380556, 'failed miserably because': 296151, 'miserably because they': 533998, 'because they are': 119689, 'they are unable': 881443, 'unable to stock': 939348, 'to stock crucial': 915430, 'stock crucial inventory': 802034, 'crucial inventory for': 219461, 'inventory for consumer': 443668, 'for consumer consumer': 320246, 'consumer consumer people': 196952, 'pleased': 660790, 'gebb': 345033, 'entertain': 278501, 'pleased to': 660797, 'see two': 745991, 'two issue': 936979, 'issue of': 455854, 'of gebb': 584071, 'gebb in': 345034, 'in special': 428186, 'special 90': 787839, '90 off': 23322, 'off hand': 593883, 'sanitizer bundle': 734599, 'at we': 101501, 'are glad': 86866, 'be part': 116357, 'anything that': 80893, 'help entertain': 389646, 'entertain people': 278516, 'and during': 61806, 'pleased to see': 660802, 'to see two': 914091, 'see two issue': 745992, 'two issue of': 936980, 'issue of gebb': 455860, 'of gebb in': 584072, 'gebb in special': 345035, 'in special 90': 428187, 'special 90 off': 787840, '90 off hand': 23324, 'off hand sanitizer': 593884, 'hand sanitizer bundle': 375330, 'sanitizer bundle at': 734600, 'bundle at we': 142645, 'at we are': 101502, 'we are glad': 970577, 'are glad to': 86867, 'glad to be': 351523, 'to be part': 901435, 'be part of': 116358, 'part of anything': 642331, 'of anything that': 580295, 'anything that help': 80895, 'that help entertain': 844297, 'help entertain people': 389647, 'entertain people and': 278517, 'people and during': 646857, 'and during the': 61812, 'diarea': 240373, 'parking': 642057, 'kijiji': 474293, '950': 23609, 'blocked': 132848, 'doe survival': 251593, 'survival start': 829080, 'paper maybe': 640456, 'maybe they': 521843, 'they think': 883556, 'think covid': 885198, '19 cause': 5714, 'cause diarea': 167539, 'diarea some': 240374, 'in parking': 426516, 'parking lot': 642074, 'lot are': 503988, 'are selling': 89947, 'selling pack': 749392, 'of tp': 592354, 'and idiot': 64927, 'had an': 372832, 'an ad': 55096, 'ad on': 31131, 'on kijiji': 601766, 'kijiji saying': 474294, 'saying 40': 739548, '40 roll': 18651, 'roll for': 725300, 'for 950': 318955, '950 probably': 23612, 'probably joke': 679301, 'joke but': 467062, 'but wa': 147703, 'wa quickly': 963026, 'quickly blocked': 694477, 'doe survival start': 251594, 'survival start with': 829081, 'start with toilet': 794651, 'with toilet paper': 1001801, 'toilet paper maybe': 921354, 'paper maybe they': 640457, 'maybe they think': 521849, 'they think covid': 883559, 'think covid 19': 885199, 'covid 19 cause': 212768, '19 cause diarea': 5717, 'cause diarea some': 167540, 'diarea some people': 240375, 'some people in': 783520, 'people in parking': 648414, 'in parking lot': 426517, 'parking lot are': 642078, 'lot are selling': 503992, 'are selling pack': 89968, 'selling pack of': 749393, 'pack of tp': 633116, 'of tp and': 592357, 'tp and idiot': 927743, 'and idiot had': 64928, 'idiot had an': 413518, 'had an ad': 372833, 'an ad on': 55097, 'ad on kijiji': 31132, 'on kijiji saying': 601767, 'kijiji saying 40': 474295, 'saying 40 roll': 739549, '40 roll for': 18653, 'roll for 950': 725306, 'for 950 probably': 318956, '950 probably joke': 23613, 'probably joke but': 679302, 'joke but wa': 467064, 'but wa quickly': 147709, 'wa quickly blocked': 963027, 'chose': 178016, 'motivating': 543299, 'foodforthought': 317912, 'that go': 844022, 'employee truck': 274353, 'driver etc': 259531, 'etc yes': 282913, 'yes we': 1015592, 'we chose': 971128, 'chose this': 178021, 'this job': 888541, 'job but': 465708, 'be little': 115771, 'more motivating': 539808, 'motivating to': 543302, 're being': 698352, 'being appreciated': 124853, 'appreciated foodforthought': 82819, 'that go for': 844024, 'go for healthcare': 353560, 'store employee truck': 807560, 'employee truck driver': 274354, 'truck driver etc': 932774, 'driver etc yes': 259539, 'etc yes we': 282914, 'yes we chose': 1015595, 'we chose this': 971129, 'chose this job': 178022, 'this job but': 888542, 'job but it': 465710, 'but it would': 146182, 'would be little': 1011615, 'be little more': 115774, 'little more motivating': 495467, 'more motivating to': 539809, 'motivating to know': 543303, 'you re being': 1020576, 're being appreciated': 698353, 'being appreciated foodforthought': 124854, 'kindness': 475181, 'atmosphere': 101978, 'wehavethis': 977655, 'positive thing': 665462, 'about coronacrisis': 25024, 'coronacrisis is': 204640, 'when see': 983971, 'street there': 813140, 'more kindness': 539655, 'kindness more': 475217, 'of we': 592957, 'together atmosphere': 920715, 'atmosphere grateful': 101983, 'grateful for': 362256, 'the smile': 867381, 'smile and': 775693, 'and hello': 64436, 'hello while': 389253, 'while wa': 987517, 'wa browsing': 961753, 'browsing the': 141307, 'store last': 808670, 'last night': 480362, 'night wehavethis': 563126, 'the positive thing': 864065, 'positive thing about': 665463, 'thing about coronacrisis': 884085, 'about coronacrisis is': 25025, 'coronacrisis is that': 204644, 'is that when': 452707, 'that when see': 847491, 'when see people': 983975, 'see people in': 745560, 'people in store': 648433, 'in store or': 428439, 'store or on': 809352, 'the street there': 868253, 'street there seems': 813141, 'there seems to': 879029, 'be more kindness': 115982, 'more kindness more': 539656, 'kindness more of': 475218, 'more of we': 539893, 'of we re': 592967, 'we re in': 972899, 're in this': 698890, 'in this together': 430028, 'this together atmosphere': 890760, 'together atmosphere grateful': 920716, 'atmosphere grateful for': 101984, 'grateful for the': 362273, 'for the smile': 326694, 'the smile and': 867382, 'smile and hello': 775694, 'and hello while': 64438, 'hello while wa': 389254, 'while wa browsing': 987519, 'wa browsing the': 961754, 'browsing the grocery': 141308, 'grocery store last': 365509, 'store last night': 808672, 'last night wehavethis': 480403, 'government now': 360390, 'now ha': 574837, 'buying price': 150919, 'gouging inflating': 359356, 'inflating price': 437109, 'the government now': 856570, 'government now ha': 360391, 'now ha to': 574848, 'ha to stop': 372319, 'panic buying price': 637850, 'buying price gouging': 150920, 'price gouging inflating': 674289, 'gouging inflating price': 359357, 'all global': 42932, 'global microsoft': 352034, 'microsoft store': 530512, 'location effective': 498895, 'effective immediately': 269262, 'immediately for': 417095, 'help please': 390320, 'please visit': 660722, 'for the safety': 326667, 'our customer and': 622650, 'employee we are': 274391, 'are closing all': 85387, 'closing all global': 183574, 'all global microsoft': 42933, 'global microsoft store': 352035, 'microsoft store location': 530515, 'store location effective': 808797, 'location effective immediately': 498897, 'effective immediately for': 269264, 'immediately for help': 417096, 'for help please': 322185, 'help please visit': 390330, 'our government': 623266, 'are trying': 91220, 'make supermarket': 510499, 'worker work': 1008279, 'work 8am': 1004706, '8am till': 23158, 'till 8pm': 895985, '8pm sunday': 23232, 'sunday exposing': 818200, 'exposing to': 292944, 'more time': 540763, '19 sign': 10543, 'let make': 486881, 'make change': 509764, 'change we': 172381, 'we dont': 971409, 'dont deserve': 255204, 'deserve this': 238133, 'our government are': 623267, 'government are trying': 359905, 'are trying to': 91221, 'trying to make': 934828, 'to make supermarket': 909747, 'make supermarket worker': 510501, 'supermarket worker work': 824126, 'worker work 8am': 1008280, 'work 8am till': 1004707, '8am till 8pm': 23159, 'till 8pm sunday': 895986, '8pm sunday exposing': 23233, 'sunday exposing to': 818201, 'exposing to more': 292945, 'to more time': 910270, 'more time with': 540778, 'time with covid': 898352, 'covid 19 sign': 213803, '19 sign this': 10546, 'sign this and': 769235, 'this and let': 886334, 'and let make': 66108, 'let make change': 486882, 'make change we': 509765, 'change we dont': 172384, 'we dont deserve': 971410, 'dont deserve this': 255205, 'prosecute': 684614, 'gobshites': 354622, 'prosecute the': 684629, 'the gobshites': 856394, 'gobshites lockdownuk': 354625, 'prosecute the gobshites': 684630, 'the gobshites lockdownuk': 856395, 'how the will': 408892, 'the will impact': 871576, 'forefront': 328937, 'socialmedia': 781073, 'strategically': 812567, 'focused': 311931, 'with at': 997331, 'the forefront': 855691, 'forefront of': 328940, 'everyone mind': 287185, 'mind people': 532710, 'are turning': 91223, 'to socialmedia': 914843, 'socialmedia to': 781096, 'to cope': 903505, 'socialdistancing it': 780480, 'for brand': 319758, 'brand to': 138042, 'think strategically': 885570, 'strategically to': 812574, 'be truly': 117827, 'truly consumer': 933280, 'consumer focused': 197505, 'focused in': 311939, 'their approach': 872502, 'approach watch': 82997, 'watch my': 968480, 'new video': 559826, 'video here': 956774, 'with at the': 997335, 'at the forefront': 100952, 'the forefront of': 855692, 'forefront of everyone': 328941, 'of everyone mind': 583256, 'everyone mind people': 287186, 'mind people are': 532711, 'people are turning': 647105, 'are turning to': 91230, 'turning to socialmedia': 935973, 'to socialmedia to': 914844, 'socialmedia to cope': 781097, 'to cope with': 903514, 'cope with socialdistancing': 203356, 'with socialdistancing it': 1000825, 'socialdistancing it time': 780483, 'it time for': 461693, 'time for brand': 896694, 'for brand to': 319767, 'brand to think': 138051, 'to think strategically': 917384, 'think strategically to': 885571, 'strategically to be': 812575, 'to be truly': 901604, 'be truly consumer': 117828, 'truly consumer focused': 933282, 'consumer focused in': 197506, 'focused in their': 311940, 'in their approach': 429716, 'their approach watch': 872503, 'approach watch my': 82999, 'watch my new': 968482, 'my new video': 549475, 'new video here': 559829, 'math': 520459, 'brian': 139555, 'passing': 643364, 'within': 1002309, 'ft': 339318, 'math problem': 520475, 'problem brian': 679481, 'brian make': 139564, 'make trip': 510669, 'glove there': 352949, 'are 200': 84116, '200 people': 13525, 'store 70': 806043, '70 percent': 21824, 'are wearing': 91602, 'and passing': 68746, 'passing within': 643410, 'within le': 1002373, 'than ft': 840683, 'ft of': 339353, 'other how': 620372, 'infected with': 436664, 'math problem brian': 520476, 'problem brian make': 679483, 'brian make trip': 139565, 'make trip to': 510670, 'store wearing mask': 811195, 'wearing mask and': 974681, 'and glove there': 63740, 'glove there are': 352950, 'there are 200': 878053, 'are 200 people': 84118, '200 people in': 13527, 'the store 70': 867974, 'store 70 percent': 806044, '70 percent of': 21825, 'percent of them': 651163, 'them are wearing': 875422, 'are wearing mask': 91604, 'glove and passing': 352572, 'and passing within': 68749, 'passing within le': 643411, 'within le than': 1002374, 'le than ft': 483172, 'than ft of': 840686, 'ft of each': 339354, 'of each other': 582903, 'each other how': 264181, 'other how many': 620373, 'how many more': 408274, 'many more people': 514313, 'more people will': 540052, 'people will get': 650390, 'will get infected': 993507, 'get infected with': 347334, 'roommate': 725997, 'beg': 123355, 'ok so': 597881, 'we actually': 970278, 'need toilet': 556124, 'paper my': 640479, 'my roommate': 549969, 'roommate go': 726000, 'to beg': 901705, 'beg man': 123360, 'man carrying': 512017, 'carrying eight': 165175, 'eight pack': 270190, '12 pack': 2923, 'them corona': 875554, 'ok so we': 597889, 'so we actually': 778654, 'we actually need': 970281, 'actually need toilet': 30910, 'need toilet paper': 556125, 'toilet paper my': 921361, 'paper my roommate': 640481, 'my roommate go': 549970, 'roommate go to': 726001, 'store and had': 806254, 'and had to': 64109, 'had to beg': 373666, 'to beg man': 901706, 'beg man carrying': 123361, 'man carrying eight': 512018, 'carrying eight pack': 165176, 'eight pack of': 270191, 'pack of 12': 633082, 'of 12 pack': 579342, '12 pack of': 2925, 'paper for one': 640181, 'of them corona': 591729, 'them corona virus': 875555, 'live president': 495993, 'president trump': 670930, 'trump and': 933406, 'force with': 328550, 'with an': 997200, 'an update': 56923, 'live president trump': 495995, 'president trump and': 670931, 'trump and the': 933412, 'task force with': 834708, 'force with an': 328551, 'with an update': 997235, 'an update on': 56927, 'update on the': 947138, 'morecambe': 541039, '45pm': 19204, 'lancaster': 479234, 'recognise': 704589, 'let get': 486728, 'get these': 348388, 'these scumbags': 880639, 'scumbags identified': 743001, 'identified morecambe': 413338, 'morecambe 45pm': 541040, '45pm lancaster': 19207, 'lancaster road': 479239, 'road sainsbury': 724505, 'sainsbury recognise': 731709, 'recognise them': 704596, 'let get these': 486737, 'get these scumbags': 348393, 'these scumbags identified': 880640, 'scumbags identified morecambe': 743002, 'identified morecambe 45pm': 413339, 'morecambe 45pm lancaster': 541041, '45pm lancaster road': 19208, 'lancaster road sainsbury': 479240, 'road sainsbury recognise': 724506, 'sainsbury recognise them': 731710, 'recognise them 19': 704597, 'find your': 307405, 'your tp': 1026197, 'tp toiletpaper': 927988, 'toiletpaper here': 922063, 'here vega': 393766, 'vega panicbuying': 953825, 'find your tp': 307410, 'your tp toiletpaper': 1026200, 'tp toiletpaper here': 927997, 'toiletpaper here vega': 922065, 'here vega panicbuying': 393767, 'dunedin': 262277, 'pitchfork': 657012, 'firebrand': 308158, 'octagon': 579128, '7pm': 22497, 'ammunition': 52936, 'in dunedin': 422414, 'dunedin know': 262280, 'know we': 476925, 'll come': 496681, 'together and': 920684, 'support each': 826465, 'other through': 621125, 'this other': 889296, 'other community': 619972, 'are around': 84614, 'world pitchfork': 1009892, 'pitchfork and': 657013, 'and firebrand': 62916, 'firebrand to': 308159, 'the octagon': 862032, 'octagon at': 579129, 'at 7pm': 97755, '7pm save': 22510, 'save your': 737709, 'your firearm': 1023887, 'firearm and': 308140, 'and ammunition': 58078, 'ammunition for': 52943, 'supermarket shoot': 822580, 'shoot out': 759744, '19 in dunedin': 7740, 'in dunedin know': 422415, 'dunedin know we': 262281, 'know we ll': 476929, 'we ll come': 972239, 'll come together': 496685, 'come together and': 187622, 'together and support': 920702, 'and support each': 72836, 'support each other': 826466, 'each other through': 264226, 'other through this': 621126, 'through this other': 894835, 'this other community': 889297, 'other community are': 619973, 'community are around': 189734, 'are around the': 84618, 'the world pitchfork': 871937, 'world pitchfork and': 1009893, 'pitchfork and firebrand': 657014, 'and firebrand to': 62917, 'firebrand to the': 308160, 'to the octagon': 916915, 'the octagon at': 862033, 'octagon at 7pm': 579130, 'at 7pm save': 97758, '7pm save your': 22511, 'save your firearm': 737711, 'your firearm and': 1023888, 'firearm and ammunition': 308141, 'and ammunition for': 58081, 'ammunition for the': 52944, 'for the supermarket': 326712, 'the supermarket shoot': 868795, 'supermarket shoot out': 822581, 'shoot out this': 759745, 'out this weekend': 627594, 'stayhomeforus': 798302, 'medtwitter': 527369, 'worker around': 1006444, 'world are': 1009304, 'are spending': 90322, 'spending time': 789017, 'their loved': 873890, 'help ensure': 389641, 'well being': 978054, 'being of': 125463, 'our loved': 623815, 'one they': 607212, 'one simple': 607042, 'simple request': 770083, 'request for': 713156, 'all their': 44993, 'their hard': 873493, 'against socialdistancing': 37619, 'socialdistancing stayathome': 780723, 'stayathome stayhomeforus': 797645, 'stayhomeforus medtwitter': 798303, 'doctor and health': 250818, 'and health worker': 64369, 'health worker around': 386967, 'worker around the': 1006446, 'the world are': 871815, 'world are spending': 1009324, 'are spending time': 90328, 'spending time with': 789021, 'time with their': 898360, 'with their loved': 1001582, 'their loved one': 873891, 'loved one to': 504926, 'one to help': 607277, 'to help ensure': 907504, 'help ensure the': 389645, 'ensure the safety': 278089, 'the safety and': 866146, 'safety and well': 730467, 'and well being': 75402, 'well being of': 978062, 'being of our': 125468, 'of our loved': 587505, 'our loved one': 623816, 'loved one they': 504925, 'one they have': 607213, 'they have one': 882355, 'have one simple': 381798, 'one simple request': 607043, 'simple request for': 770084, 'request for all': 713158, 'for all their': 319176, 'all their hard': 45000, 'their hard work': 873494, 'hard work in': 378128, 'fight against socialdistancing': 304638, 'against socialdistancing stayathome': 37620, 'socialdistancing stayathome stayhomeforus': 780725, 'stayathome stayhomeforus medtwitter': 797646, 'coloradoans': 186825, 'pinch': 656784, 'fellow coloradoans': 303279, 'coloradoans please': 186826, 'relief fund': 709350, 'fund also': 341349, 'also reach': 48751, 'bank they': 110243, 'are feeling': 86515, 'feeling the': 303072, 'the pinch': 863739, 'pinch people': 656789, 'people stock': 649612, 'fellow coloradoans please': 303280, 'coloradoans please consider': 186827, 'please consider donating': 659813, 'donating to the': 254525, '19 relief fund': 10080, 'relief fund also': 709351, 'fund also reach': 341351, 'also reach out': 48752, 'out to your': 627700, 'to your local': 918998, 'your local food': 1024695, 'food bank they': 313656, 'bank they are': 110244, 'they are feeling': 881275, 'are feeling the': 86521, 'feeling the pinch': 303075, 'the pinch people': 863741, 'pinch people stock': 656790, 'people stock up': 649620, 'cupboard': 220462, 'anxiously': 78882, 'wa greeted': 962257, 'this last': 888596, 'night think': 563101, 'food now': 315565, 'now instead': 575047, 'of hoarding': 584691, 'your freezer': 1023955, 'freezer and': 332575, 'and cupboard': 60797, 'cupboard you': 220506, 'are forcing': 86654, 'forcing all': 328693, 'and anxiously': 58210, 'anxiously worry': 78887, 'worry where': 1010801, 'next meal': 561441, 'meal will': 524304, 'will come': 992961, 'wa greeted by': 962258, 'greeted by this': 363794, 'by this last': 154531, 'this last night': 888598, 'last night think': 480397, 'night think about': 563102, 'about others who': 25881, 'others who actually': 621781, 'actually need food': 30901, 'need food now': 554802, 'food now instead': 315569, 'now instead of': 575048, 'instead of hoarding': 440275, 'of hoarding it': 584695, 'hoarding it in': 399399, 'it in your': 458755, 'in your freezer': 431080, 'your freezer and': 1023956, 'freezer and cupboard': 332576, 'and cupboard you': 60798, 'cupboard you are': 220507, 'you are forcing': 1017128, 'are forcing all': 86655, 'forcing all to': 328694, 'all to panic': 45245, 'to panic and': 911384, 'panic and anxiously': 637295, 'and anxiously worry': 58211, 'anxiously worry where': 78888, 'worry where our': 1010802, 'where our next': 985084, 'our next meal': 624059, 'next meal will': 561443, 'meal will come': 524306, 'will come from': 992966, 'cloth': 184075, 'setting': 753617, 'the cdc': 850562, 'cdc continues': 168550, 'study the': 814968, 'they recommend': 883172, 'recommend people': 704703, 'people wear': 650167, 'wear cloth': 974305, 'cloth face': 184082, 'face covering': 294371, 'covering in': 212472, 'public setting': 688311, 'setting where': 753664, 'where social': 985177, 'measure can': 525152, 'be difficult': 114455, 'maintain remember': 509024, 'remember this': 710343, 'not replace': 571315, 'the cdc continues': 850565, 'cdc continues to': 168551, 'continues to study': 201501, 'to study the': 915704, 'study the spread': 814970, '19 they recommend': 11315, 'they recommend people': 883173, 'recommend people wear': 704704, 'people wear cloth': 650168, 'wear cloth face': 974306, 'cloth face covering': 184084, 'face covering in': 294374, 'covering in public': 212473, 'in public setting': 427098, 'public setting where': 688312, 'setting where social': 753667, 'where social distancing': 985178, 'distancing measure can': 247320, 'measure can be': 525153, 'can be difficult': 157612, 'be difficult to': 114459, 'difficult to maintain': 242339, 'to maintain remember': 909591, 'maintain remember this': 509025, 'remember this doe': 710345, 'doe not replace': 251524, 'not replace the': 571317, 'replace the importance': 711587, 'importance of social': 418712, 'upstream': 947876, 'foodservice': 318089, 'gimmick': 350159, 'sweat': 830055, 'how upstream': 409127, 'upstream food': 947883, 'food processor': 315994, 'processor cope': 680068, 'with reduced': 1000431, 'reduced staff': 706172, 'staff during': 792392, '19 switch': 11006, 'switch capacity': 830473, 'capacity from': 162526, 'from foodservice': 335520, 'foodservice to': 318112, 'food retail': 316202, 'retail good': 718148, 'good old': 357488, 'old supplychain': 598489, 'supplychain operation': 826209, 'operation management': 613227, 'management 101': 512520, '101 and': 2217, 'capacity management': 162545, 'management no': 512597, 'no gimmick': 564347, 'gimmick no': 350160, 'panic no': 638343, 'no sweat': 565647, 'sweat logistics': 830056, 'logistics rule': 500790, 'how upstream food': 409128, 'upstream food processor': 947884, 'food processor cope': 315997, 'processor cope with': 680069, 'cope with reduced': 203353, 'with reduced staff': 1000435, 'reduced staff during': 706173, 'staff during covid': 792395, 'covid 19 switch': 213903, '19 switch capacity': 11008, 'switch capacity from': 830474, 'capacity from foodservice': 162527, 'from foodservice to': 335522, 'foodservice to food': 318113, 'to food retail': 906090, 'food retail good': 316205, 'retail good old': 718149, 'good old supplychain': 357493, 'old supplychain operation': 598490, 'supplychain operation management': 826210, 'operation management 101': 613228, 'management 101 and': 512521, '101 and capacity': 2218, 'and capacity management': 59534, 'capacity management no': 162546, 'management no gimmick': 512598, 'no gimmick no': 564348, 'gimmick no panic': 350161, 'no panic no': 565045, 'panic no sweat': 638346, 'no sweat logistics': 565648, 'sweat logistics rule': 830057, 'the notification': 861900, 'turn on the': 935726, 'on the notification': 604253, 'the notification for': 861902, 'yow': 1026938, 'bros': 141017, 'ottawa': 621901, 'ottcity': 621917, 'hey yow': 394564, 'yow found': 1026939, 'found way': 330464, 'get fresh': 347102, 'and fruit': 63366, 'fruit safely': 339133, 'safely vegetable': 730328, 'vegetable produce': 954078, 'produce bros': 680216, 'bros normally': 141020, 'normally sell': 567537, 'sell wholesale': 748946, 'wholesale but': 990422, 'facebook and': 294889, 'and pick': 69007, 'up product': 945847, 'at their': 101160, 'their warehouse': 875150, 'warehouse safer': 966759, 'safer than': 730386, 'socialdistancing ottawa': 780583, 'ottawa ottcity': 621908, 'hey yow found': 394565, 'yow found way': 1026940, 'found way to': 330465, 'to get fresh': 906486, 'get fresh fruit': 347105, 'fruit and fruit': 339059, 'and fruit safely': 63376, 'fruit safely vegetable': 339134, 'safely vegetable produce': 730329, 'vegetable produce bros': 954079, 'produce bros normally': 680217, 'bros normally sell': 141021, 'normally sell wholesale': 567539, 'sell wholesale but': 748947, 'wholesale but now': 990423, 'but now you': 146620, 'now you can': 576501, 'can order on': 159177, 'order on facebook': 618453, 'on facebook and': 600699, 'facebook and pick': 294891, 'and pick up': 69009, 'pick up product': 655752, 'up product at': 945848, 'product at their': 680983, 'at their warehouse': 101179, 'their warehouse safer': 875151, 'warehouse safer than': 966760, 'safer than the': 730390, 'the supermarket 19': 868439, 'supermarket 19 socialdistancing': 818738, '19 socialdistancing ottawa': 10675, 'socialdistancing ottawa ottcity': 780584, 'techtiptuesday': 836409, 'captured': 162953, 'attention': 102422, 'hasn': 378714, 'techtiptuesday covid': 836410, 'ha captured': 370059, 'captured the': 162954, 'world attention': 1009336, 'attention and': 102425, 'that hasn': 844188, 'hasn stopped': 378786, 'stopped scammer': 805747, 'scammer hacker': 740581, 'hacker and': 372760, 'from taking': 337540, 'of one': 587233, 'our basic': 622165, 'human condition': 410458, 'condition fear': 193450, 'fear check': 301087, 'these tip': 880856, 'ftc to': 339455, 'coronavirus related': 206629, 'techtiptuesday covid 19': 836411, '19 ha captured': 7329, 'ha captured the': 370060, 'captured the world': 162955, 'the world attention': 871818, 'world attention and': 1009337, 'attention and that': 102427, 'and that hasn': 73191, 'that hasn stopped': 844192, 'hasn stopped scammer': 378791, 'stopped scammer hacker': 805748, 'scammer hacker and': 740582, 'hacker and others': 372761, 'others from taking': 621425, 'from taking advantage': 337541, 'advantage of one': 33017, 'of one of': 587240, 'one of our': 606759, 'of our basic': 587425, 'our basic human': 622167, 'basic human condition': 111935, 'human condition fear': 410459, 'condition fear check': 193451, 'fear check out': 301088, 'check out these': 174582, 'out these tip': 627537, 'these tip from': 880858, 'tip from the': 898805, 'from the ftc': 337715, 'the ftc to': 855944, 'ftc to avoid': 339456, 'avoid coronavirus related': 105059, 'coronavirus related scam': 206640, 'queued': 694146, 'queued up': 694162, 'not someone': 571649, 'someone else': 784443, 'else but': 271647, 'queued up at': 694163, 'up at supermarket': 944438, 'at supermarket you': 100793, 'supermarket you are': 824186, 'you are the': 1017259, 'are the problem': 90889, 'the problem not': 864520, 'problem not someone': 679615, 'not someone else': 571650, 'someone else but': 784446, 'else but you': 271649, 'scammer take': 740621, 'of confusion': 581668, 'confusion amp': 194375, 'amp stress': 54576, 'scammer take advantage': 740622, 'advantage of confusion': 32993, 'of confusion amp': 581670, 'confusion amp stress': 194376, 'expecting stimulus': 291049, 'check you': 174725, 'might want': 531165, 'to shield': 914404, 'shield it': 758161, 'from payday': 336865, 'expecting stimulus check': 291050, 'stimulus check you': 801528, 'check you might': 174727, 'you might want': 1019857, 'might want to': 531166, 'want to shield': 966115, 'to shield it': 914407, 'shield it from': 758163, 'it from payday': 458157, 'from payday lender': 336866, 'pulse': 688970, 'tamarind': 834092, 'shot': 765408, 'lockdown the': 500005, 'of several': 589541, 'several including': 753865, 'including pulse': 432122, 'pulse amp': 688971, 'amp tamarind': 54619, 'tamarind have': 834093, 'have shot': 382530, 'shot up': 765455, 'up trader': 946479, 'trader said': 928757, 'for increase': 322524, 'increase wa': 433144, 'wa shortage': 963212, 'good due': 356984, 'of proper': 588536, 'proper logistics': 684119, 'logistics quarantinelife': 500787, 'with the covid': 1001251, '19 lockdown the': 8431, 'lockdown the of': 500013, 'the of several': 862056, 'of several including': 589545, 'several including pulse': 753866, 'including pulse amp': 432123, 'pulse amp tamarind': 688972, 'amp tamarind have': 54620, 'tamarind have shot': 834094, 'have shot up': 382531, 'shot up trader': 765458, 'up trader said': 946480, 'trader said the': 928759, 'said the reason': 731449, 'the reason for': 865270, 'reason for increase': 702903, 'for increase wa': 322528, 'increase wa shortage': 433145, 'wa shortage in': 963213, 'shortage in supply': 765022, 'in supply of': 428732, 'supply of good': 825629, 'of good due': 584217, 'good due to': 356985, 'lack of proper': 478650, 'of proper logistics': 588537, 'proper logistics quarantinelife': 684120, 'deuce': 239540, 'buffoon': 141885, 'tp calculator': 927776, 'calculator here': 155334, 'you go': 1018840, 'go gang': 353600, 'gang how': 343398, 'many deuce': 513991, 'deuce can': 239541, 'you drop': 1018361, 'drop per': 260366, 'per roll': 651002, 'roll per': 725475, 'per person': 650970, 'day please': 228223, 'share with': 755350, 'with many': 999378, 'many buffoon': 513837, 'buffoon possible': 141886, 'possible toiletpaper': 665856, 'toiletpaper toiletpaperapocalypse': 922631, 'tp calculator here': 927777, 'calculator here you': 155335, 'here you go': 393856, 'you go gang': 1018851, 'go gang how': 353601, 'gang how many': 343399, 'how many deuce': 408256, 'many deuce can': 513992, 'deuce can you': 239542, 'can you drop': 160296, 'you drop per': 1018367, 'drop per roll': 260367, 'per roll per': 651005, 'roll per person': 725476, 'per person per': 650978, 'person per day': 652576, 'per day please': 650806, 'day please share': 228225, 'please share with': 660501, 'share with many': 755355, 'with many buffoon': 999379, 'many buffoon possible': 513838, 'buffoon possible toiletpaper': 141887, 'possible toiletpaper toiletpaperapocalypse': 665857, 'agar': 37767, 'issey': 455631, 'bachey': 106811, 'rahey': 695574, 'toh': 921105, 'dishwasher': 245527, 'cordless': 203501, 'vaccum': 951803, 'fo': 311799, 'agar hum': 37768, 'hum log': 410386, 'log issey': 500618, 'issey largely': 455632, 'largely bachey': 479837, 'bachey rahey': 106812, 'rahey toh': 695575, 'toh post': 921112, 'post see': 666309, 'see huge': 745262, 'huge demand': 410019, 'for laptop': 322883, 'laptop dishwasher': 479556, 'dishwasher cordless': 245528, 'cordless vaccum': 203502, 'vaccum cleaner': 951804, 'cleaner and': 180742, 'and washing': 75206, 'washing machine': 967696, 'machine also': 507352, 'also big': 47961, 'big freezer': 129793, 'freezer fo': 332602, 'fo stock': 311802, 'agar hum log': 37769, 'hum log issey': 410387, 'log issey largely': 500619, 'issey largely bachey': 455633, 'largely bachey rahey': 479838, 'bachey rahey toh': 106813, 'rahey toh post': 695576, 'toh post see': 921113, 'post see huge': 666310, 'see huge demand': 745263, 'huge demand for': 410020, 'demand for laptop': 235446, 'for laptop dishwasher': 322884, 'laptop dishwasher cordless': 479557, 'dishwasher cordless vaccum': 245529, 'cordless vaccum cleaner': 203503, 'vaccum cleaner and': 951805, 'cleaner and washing': 180749, 'and washing machine': 75209, 'washing machine also': 967697, 'machine also big': 507353, 'also big freezer': 47962, 'big freezer fo': 129794, 'freezer fo stock': 332603, 'fo stock food': 311803, 'stock food supply': 802151, 'plain': 658001, 'scrambled': 742551, 'slice': 773857, 'cheese': 175156, 'cheesy': 175238, 'crisis ve': 218309, 'been reading': 121778, 'reading lot': 700784, 'lot about': 503965, 'egg going': 269874, 'up people': 945754, 'people eating': 647763, 'eating lot': 266251, 'egg those': 270005, 'you that': 1021564, 'are tired': 91097, 'of eating': 582942, 'eating plain': 266286, 'plain old': 658008, 'old scrambled': 598460, 'scrambled egg': 742552, 'egg add': 269747, 'add few': 31431, 'few slice': 304067, 'slice of': 773869, 'of cheese': 581308, 'cheese while': 175227, 'while cooking': 986712, 'cooking them': 202920, 'them have': 875820, 'have cheesy': 379960, 'cheesy scrambled': 175241, 'egg food': 269859, 'food cooking': 314015, 'cooking egg': 202863, 'this crisis ve': 887106, 'crisis ve been': 218310, 've been reading': 952921, 'been reading lot': 121780, 'reading lot about': 700785, 'lot about the': 503969, 'about the demand': 26375, 'for egg going': 320971, 'egg going up': 269875, 'going up people': 355790, 'up people eating': 945758, 'people eating lot': 647765, 'eating lot of': 266253, 'lot of egg': 504181, 'of egg those': 583000, 'egg those of': 270006, 'those of you': 892273, 'of you that': 593424, 'you that are': 1021566, 'that are tired': 842829, 'are tired of': 91098, 'tired of eating': 899042, 'of eating plain': 582944, 'eating plain old': 266287, 'plain old scrambled': 658012, 'old scrambled egg': 598461, 'scrambled egg add': 742553, 'egg add few': 269748, 'add few slice': 31432, 'few slice of': 304068, 'slice of cheese': 773870, 'of cheese while': 581314, 'cheese while cooking': 175228, 'while cooking them': 986713, 'cooking them have': 202921, 'them have cheesy': 875822, 'have cheesy scrambled': 379961, 'cheesy scrambled egg': 175242, 'scrambled egg food': 742555, 'egg food cooking': 269860, 'food cooking egg': 314016, 'design': 238210, 'signmaking': 769659, 'design amp': 238213, 'amp signmaking': 54504, 'signmaking company': 769660, 'company switch': 191140, 'making supermarket': 511366, 'supermarket sneeze': 822723, 'sneeze screen': 776267, 'screen at': 742675, 'at rate': 100254, 'of 800': 579678, '800 per': 22716, 'per week': 651064, 'counter covid': 210203, 'design amp signmaking': 238214, 'amp signmaking company': 54505, 'signmaking company switch': 769661, 'company switch to': 191141, 'to making supermarket': 909780, 'making supermarket sneeze': 511367, 'supermarket sneeze screen': 822724, 'sneeze screen at': 776268, 'screen at rate': 742677, 'at rate of': 100255, 'rate of 800': 697312, 'of 800 per': 579679, '800 per week': 22718, 'per week to': 651076, 'week to counter': 977074, 'to counter covid': 903623, 'counter covid 19': 210204, 'crowding': 219381, 'why don': 990964, 'don we': 254057, 'we make': 972332, 'make most': 510203, 'most grocery': 542356, 'store pickup': 809558, 'pickup only': 655993, 'week would': 977284, 'would reduce': 1012174, 'reduce crowding': 705815, 'crowding panic': 219402, 'buying contamination': 150133, 'contamination strain': 200733, 'strain on': 812287, 'on worker': 605369, 'worker could': 1006702, 'help build': 389440, 'build an': 141945, 'an app': 55352, 'app in': 81720, 'day open': 228165, 'open each': 612202, 'each store': 264279, 'for hr': 322425, 'hr for': 409620, 'senior who': 750440, 'who might': 989283, 'le tech': 483147, 'why don we': 990969, 'don we make': 254060, 'we make most': 972338, 'make most grocery': 510204, 'most grocery store': 542357, 'grocery store pickup': 365660, 'store pickup only': 809560, 'pickup only for': 655994, 'only for the': 610476, 'few week would': 304176, 'week would reduce': 977287, 'would reduce crowding': 1012175, 'reduce crowding panic': 705816, 'crowding panic buying': 219403, 'panic buying contamination': 637683, 'buying contamination strain': 150134, 'contamination strain on': 200734, 'strain on worker': 812295, 'on worker could': 605372, 'worker could help': 1006704, 'could help build': 209279, 'help build an': 389441, 'build an app': 141947, 'an app in': 55355, 'app in day': 81721, 'in day open': 422015, 'day open each': 228166, 'open each store': 612204, 'each store for': 264281, 'store for hr': 807814, 'for hr for': 322427, 'hr for senior': 409622, 'for senior who': 325484, 'senior who might': 750446, 'who might be': 989284, 'might be le': 530909, 'be le tech': 115676, 'le tech savvy': 483148, 'rid': 721385, 'instrument': 440587, 'wealthy': 974192, 'sorry to': 786092, 'we muslim': 972396, 'muslim are': 546414, 'worst human': 1011200, 'human being': 410435, 'being exception': 125118, 'exception apart': 289257, 'apart we': 81364, 'get rid': 347935, 'rid of': 721386, 'of which': 593096, 'which harm': 985910, 'harm 20': 378385, '30 of': 17138, 'but who': 147848, 'the within': 871644, 'within people': 1002410, 'selling medical': 749346, 'medical instrument': 526221, 'instrument on': 440594, 'on double': 600397, 'double price': 256035, 'get wealthy': 348606, 'sorry to say': 786097, 'to say but': 913810, 'say but we': 738473, 'but we muslim': 147752, 'we muslim are': 972397, 'muslim are the': 546415, 'are the worst': 90937, 'the worst human': 872057, 'worst human being': 1011201, 'human being exception': 410441, 'being exception apart': 125119, 'exception apart we': 289258, 'apart we want': 81367, 'we want to': 973750, 'want to get': 966040, 'to get rid': 906578, 'get rid of': 347936, 'rid of which': 721401, 'of which harm': 593102, 'which harm 20': 985911, 'harm 20 30': 378386, '20 30 of': 12902, '30 of people': 17145, 'of people but': 587880, 'people but who': 647325, 'but who will': 147854, 'who will kill': 989991, 'kill the within': 474526, 'the within people': 871645, 'within people are': 1002411, 'people are selling': 647071, 'are selling medical': 89965, 'selling medical instrument': 749347, 'medical instrument on': 526224, 'instrument on double': 440595, 'on double price': 600398, 'double price just': 256038, 'price just to': 674979, 'just to get': 470092, 'to get wealthy': 906641, 'diy hand': 248739, 'sanitizer how': 735096, 'make handsanitizer': 509960, 'handsanitizer at': 376479, 'home prevention': 401886, 'prevention of': 671876, 'diy hand sanitizer': 248740, 'hand sanitizer how': 375445, 'sanitizer how to': 735099, 'to make handsanitizer': 909673, 'make handsanitizer at': 509961, 'handsanitizer at home': 376482, 'at home prevention': 99086, 'home prevention of': 401887, 'wrote': 1013182, 'daily life': 224655, 'is relatively': 451407, 'relatively normal': 708774, 'day leading': 227890, 'leading up': 483783, 'to friday': 906253, 'friday just': 333248, 'the usual': 870582, 'usual thing': 951038, 'to school': 913897, 'school grocery': 741810, 'store doctor': 807339, 'doctor gas': 250925, 'station visit': 796543, 'visit friend': 959258, 'friend etc': 333589, 'etc this': 282821, 'why wrote': 991577, 'wrote the': 1013213, 'post if': 666162, 'have physical': 381928, 'physical socialdistancing': 655458, 'socialdistancing then': 780796, 'can easily': 158179, 'easily happen': 265214, 'anyone 16': 80165, 'daily life is': 224665, 'life is relatively': 488816, 'is relatively normal': 451409, 'relatively normal day': 708775, 'normal day leading': 567132, 'day leading up': 227891, 'leading up to': 483785, 'up to friday': 946380, 'to friday just': 906254, 'friday just did': 333249, 'just did the': 468588, 'did the usual': 240858, 'the usual thing': 870593, 'usual thing we': 951039, 'thing we all': 884957, 'we all do': 970321, 'all do go': 42589, 'go to school': 354353, 'to school grocery': 913900, 'school grocery store': 741811, 'grocery store doctor': 365334, 'store doctor gas': 807340, 'doctor gas station': 250926, 'gas station visit': 344131, 'station visit friend': 796544, 'visit friend etc': 959259, 'friend etc this': 333591, 'etc this is': 282823, 'this is why': 888468, 'is why wrote': 453985, 'why wrote the': 991578, 'wrote the post': 1013215, 'the post if': 864091, 'post if we': 666163, 'if we do': 415276, 'not have physical': 569857, 'have physical socialdistancing': 381929, 'physical socialdistancing then': 655459, 'socialdistancing then it': 780797, 'then it can': 877279, 'it can easily': 457015, 'can easily happen': 158183, 'easily happen to': 265215, 'happen to anyone': 377177, 'to anyone 16': 900617, 'expenditure': 291156, 'arabia cut': 83876, 'cut 2020': 223213, '2020 budget': 14192, 'budget expenditure': 141782, 'expenditure by': 291159, 'tackle lower': 831581, 'saudi arabia cut': 737192, 'arabia cut 2020': 83877, 'cut 2020 budget': 223214, '2020 budget expenditure': 14193, 'budget expenditure by': 141783, 'expenditure by to': 291161, 'by to tackle': 154564, 'to tackle lower': 916131, 'tackle lower oil': 831582, 'promoting': 683835, 'don create': 253446, 'create further': 215649, 'further panic': 342130, 'panic by': 637978, 'by promoting': 153667, 'promoting false': 683838, 'false claim': 297408, 'claim pakistan': 179782, 'pakistan and': 634420, 'have called': 379869, 'called out': 156404, 'out ice': 626350, 'cream and': 215522, 'and cold': 60061, 'food causing': 313892, 'causing chance': 168003, 'please don create': 659910, 'don create further': 253447, 'create further panic': 215650, 'further panic by': 342131, 'panic by promoting': 637986, 'by promoting false': 153668, 'promoting false claim': 683839, 'false claim pakistan': 297411, 'claim pakistan and': 179783, 'pakistan and have': 634421, 'and have called': 64229, 'have called out': 379873, 'called out ice': 156407, 'out ice cream': 626351, 'ice cream and': 412648, 'cream and cold': 215524, 'and cold food': 60062, 'cold food causing': 185758, 'food causing chance': 313893, 'causing chance of': 168004, 'migration': 531243, 'present': 670564, 'unfolds': 941531, 'retailer will': 719426, 'really significant': 702592, 'significant and': 769397, 'and dramatic': 61714, 'dramatic shift': 258303, 'behavior result': 124178, 'crisis migration': 217724, 'migration to': 531248, 'shopping by': 762266, 'consumer could': 196991, 'could present': 209526, 'present the': 670626, 'biggest threat': 130344, 'threat to': 893727, 'to brick': 902016, 'brick and': 139577, 'and mortar': 67240, 'mortar retailing': 541832, 'retailing and': 719472, 'crisis unfolds': 218288, 'retailer will need': 719432, 'respond to really': 715324, 'to really significant': 912867, 'really significant and': 702593, 'significant and dramatic': 769398, 'and dramatic shift': 61716, 'dramatic shift in': 258304, 'consumer behavior result': 196510, 'behavior result of': 124179, '19 crisis migration': 6284, 'crisis migration to': 217725, 'migration to online': 531250, 'online shopping by': 609060, 'shopping by consumer': 762268, 'by consumer could': 152184, 'consumer could present': 196995, 'could present the': 209528, 'present the biggest': 670627, 'the biggest threat': 849683, 'biggest threat to': 130346, 'threat to brick': 893730, 'to brick and': 902017, 'brick and mortar': 139578, 'and mortar retailing': 67248, 'mortar retailing and': 541833, 'retailing and the': 719473, 'and the crisis': 73307, 'the crisis unfolds': 852469, 'more positive': 540097, 'positive about': 665244, 'situation people': 772438, 'people slow': 649479, 'down now': 256991, 'stay away': 796780, 'from each': 335239, 'more positive about': 540098, 'positive about the': 665245, 'about the situation': 26522, 'the situation people': 867272, 'situation people slow': 772441, 'people slow down': 649480, 'slow down now': 774348, 'down now at': 256992, 'store to stay': 810815, 'to stay away': 915273, 'stay away from': 796784, 'away from each': 105876, 'from each other': 335244, 'scrap': 742575, 'here me': 393340, 'me commentary': 522584, 'commentary on': 188483, 'on toilet': 604780, 'paper scrap': 640729, 'scrap cause': 742578, 'cause in': 167607, 'australia we': 103418, 'we think': 973529, 'think it': 885317, 'll save': 496982, 'save from': 737509, 'here me commentary': 393341, 'me commentary on': 522585, 'commentary on toilet': 188484, 'on toilet paper': 604781, 'toilet paper scrap': 921435, 'paper scrap cause': 640730, 'scrap cause in': 742579, 'cause in australia': 167608, 'in australia we': 420622, 'australia we think': 103420, 'we think it': 973532, 'think it ll': 885340, 'it ll save': 459431, 'll save from': 496984, 'save from covid': 737510, 'orange': 617903, 'recipe': 704438, 'glutenfree': 353135, 'paper but': 639962, 'an excess': 55920, 'excess of': 289353, 'of orange': 587323, 'orange got': 617915, 'some and': 782293, 'this here': 887911, 'the recipe': 865345, 'recipe glutenfree': 704473, 'our supermarket ha': 625019, 'supermarket ha no': 820638, 'ha no toilet': 371352, 'toilet paper but': 921212, 'paper but an': 639966, 'but an excess': 145181, 'an excess of': 55922, 'excess of orange': 289357, 'of orange got': 587324, 'orange got some': 617916, 'got some and': 358844, 'some and made': 782296, 'and made this': 66511, 'made this here': 508020, 'this here the': 887916, 'here the recipe': 393664, 'the recipe glutenfree': 865346, 'pakistani': 634526, 'bangladeshi': 109510, 'eatable': 266125, 'halal': 374101, 'culprit': 220245, 'ripping': 722710, 'asian business': 95257, 'business pakistani': 144197, 'pakistani indian': 634527, 'indian amp': 434771, 'amp bangladeshi': 53430, 'bangladeshi raise': 109514, 'of eatable': 582938, 'eatable more': 266126, 'than time': 841335, 'time panic': 897451, 'panic grows': 638152, 'grows over': 367320, 'over coronavirus': 630116, 'coronavirus halal': 206050, 'halal meat': 374109, 'meat shop': 525739, 'shop across': 759797, 'uk the': 938803, 'biggest culprit': 130206, 'culprit ripping': 220250, 'ripping customer': 722711, 'customer off': 222641, 'asian business pakistani': 95258, 'business pakistani indian': 144198, 'pakistani indian amp': 634528, 'indian amp bangladeshi': 434772, 'amp bangladeshi raise': 53431, 'bangladeshi raise price': 109515, 'raise price of': 695922, 'price of eatable': 675440, 'of eatable more': 582939, 'eatable more than': 266127, 'more than time': 540688, 'than time panic': 841336, 'time panic grows': 897453, 'panic grows over': 638153, 'grows over coronavirus': 367321, 'over coronavirus halal': 630119, 'coronavirus halal meat': 206051, 'halal meat shop': 374111, 'meat shop across': 525740, 'shop across the': 759799, 'the uk the': 870289, 'uk the biggest': 938804, 'the biggest culprit': 849649, 'biggest culprit ripping': 130207, 'culprit ripping customer': 220251, 'ripping customer off': 722712, 'confidence index': 193903, 'index drop': 434184, 'to 120': 899471, '120 in': 3013, 'march due': 515348, 'coronavirus although': 205480, 'although beating': 49305, 'beating economist': 118616, 'economist estimate': 267546, 'estimate economy': 282242, 'consumer confidence index': 196906, 'confidence index drop': 193904, 'index drop to': 434185, 'drop to 120': 260419, 'to 120 in': 899473, '120 in march': 3014, 'in march due': 425097, 'march due to': 515350, 'to coronavirus although': 903539, 'coronavirus although beating': 205481, 'although beating economist': 49306, 'beating economist estimate': 118617, 'economist estimate economy': 267547, 'good read': 357620, 'read for': 700336, 'the paranoid': 863275, 'paranoid me': 641451, 'is good read': 448150, 'good read for': 357621, 'read for the': 700338, 'for the paranoid': 326611, 'the paranoid me': 863276, 'india price': 434571, 'fruit increase': 339103, 'city under': 179434, 'lockdown amid': 499126, 'amid 19': 52369, '19 covid': 6181, 'impact on india': 417860, 'on india price': 601552, 'india price of': 434572, 'of vegetable and': 592758, 'vegetable and fruit': 953924, 'and fruit increase': 63373, 'fruit increase in': 339104, 'increase in city': 432823, 'in city under': 421488, 'city under lockdown': 179435, 'under lockdown amid': 940147, 'lockdown amid 19': 499127, 'amid 19 covid': 52370, '19 covid 19': 6182, 'vaka': 951859, 'teamfiji': 835859, 'this lining': 888636, 'lining outside': 493750, 'to vaka': 918106, 'vaka sa': 951860, 'sa fed': 728890, 'fed down': 301805, 'down teamfiji': 257250, 'teamfiji lockdown': 835862, 'this lining outside': 888637, 'lining outside the': 493751, 'supermarket to vaka': 823424, 'to vaka sa': 918107, 'vaka sa fed': 951861, 'sa fed down': 728891, 'fed down teamfiji': 301806, 'down teamfiji lockdown': 257251, 'reposting': 712852, 'bos': 135646, 'booty': 135139, 'reposting the': 712855, 'the bos': 849882, 'bos will': 135712, 'be pleased': 116446, 'pleased with': 660807, 'the booty': 849860, 'booty we': 135150, 'have found': 380695, 'found toiletpaper': 330446, 'reposting the bos': 712856, 'the bos will': 849885, 'bos will be': 135713, 'will be pleased': 992609, 'be pleased with': 116448, 'pleased with the': 660809, 'with the booty': 1001216, 'the booty we': 849862, 'booty we have': 135151, 'we have found': 971820, 'have found toiletpaper': 380709, 'found toiletpaper toiletpapercrisis': 330449, 'covic': 212544, 'gender': 345245, 'economically': 267382, 'covic 19': 212545, 'not gender': 569571, 'gender neutral': 345257, 'neutral amid': 557815, 'buying that': 151149, 'seeing supermarket': 746478, 'shelf stripped': 757610, 'stripped of': 813866, 'item one': 463513, 'one thing': 607214, 'is clear': 446546, 'clear stockpiling': 181331, 'stockpiling is': 803995, 'option for': 614030, 'the economically': 853924, 'economically vulnerable': 267395, 'vulnerable stockpiling': 961179, 'covic 19 is': 212546, 'is not gender': 450091, 'not gender neutral': 569572, 'gender neutral amid': 345258, 'neutral amid the': 557816, 'amid the panic': 52707, 'panic buying that': 637924, 'buying that is': 151153, 'that is seeing': 844649, 'is seeing supermarket': 451721, 'seeing supermarket shelf': 746479, 'supermarket shelf stripped': 822537, 'shelf stripped of': 757614, 'stripped of essential': 813867, 'of essential item': 583175, 'essential item one': 281218, 'item one thing': 463514, 'one thing is': 607223, 'thing is clear': 884464, 'is clear stockpiling': 446550, 'clear stockpiling is': 181332, 'stockpiling is not': 804000, 'is not an': 450032, 'not an option': 568201, 'an option for': 56682, 'option for the': 614039, 'for the economically': 326403, 'the economically vulnerable': 853925, 'economically vulnerable stockpiling': 267397, 'hospitality': 404751, 'nonexistent': 566632, 'trendlines': 931595, 'will last': 993935, 'last at': 480113, 'another month': 77714, 'month and': 537572, 'will fall': 993400, 'into recession': 442932, 'recession retail': 704348, 'and hospitality': 64752, 'hospitality industry': 404779, 'industry will': 436246, 'become almost': 119913, 'almost nonexistent': 46708, 'nonexistent physical': 566635, 'physical shop': 655453, 'shop will': 761049, 'will mostly': 994128, 'mostly close': 542944, 'close and': 182525, 'be online': 116230, 'shopping except': 762602, 'for necessity': 323793, 'necessity those': 554277, 'those are': 891798, 'the trendlines': 869972, 'will last at': 993937, 'last at least': 480114, 'least another month': 484390, 'another month and': 77715, 'month and the': 537583, 'and the world': 73663, 'the world will': 872008, 'world will fall': 1010188, 'will fall into': 993406, 'fall into recession': 296974, 'into recession retail': 442933, 'recession retail and': 704349, 'retail and hospitality': 717827, 'and hospitality industry': 64754, 'hospitality industry will': 404787, 'industry will become': 436248, 'will become almost': 992789, 'become almost nonexistent': 119914, 'almost nonexistent physical': 46709, 'nonexistent physical shop': 566636, 'physical shop will': 655455, 'shop will mostly': 761053, 'will mostly close': 994129, 'mostly close and': 542945, 'close and there': 182543, 'and there will': 73856, 'there will only': 879364, 'only be online': 610153, 'be online shopping': 116233, 'online shopping except': 609116, 'shopping except for': 762603, 'except for necessity': 289165, 'for necessity those': 323796, 'necessity those are': 554278, 'those are the': 891804, 'are the trendlines': 90923, 'theweeklyshop': 881066, 'vulnerablegroups': 961273, 'found this': 330430, 'this photo': 889554, 'of pensioner': 587865, 'pensioner online': 646690, 'online it': 608442, 'really anxious': 701976, 'anxious time': 78870, 'who older': 989368, 'older more': 598624, 'more vulnerable': 540928, 'vulnerable but': 960888, 'here one': 393416, 'their weekly': 875177, 'shop who': 761039, 'who in': 989026, 'in theweeklyshop': 429881, 'theweeklyshop lockdown': 881067, 'lockdown shopping': 499910, 'shopping vulnerablegroups': 764331, 'found this photo': 330438, 'this photo of': 889563, 'photo of pensioner': 655208, 'of pensioner online': 587866, 'pensioner online it': 646691, 'online it really': 608447, 'it really anxious': 460626, 'really anxious time': 701977, 'anxious time for': 78872, 'those who older': 892660, 'who older more': 989369, 'older more vulnerable': 598625, 'more vulnerable but': 540930, 'vulnerable but here': 960889, 'but here one': 145925, 'here one thing': 393418, 'one thing we': 607238, 'can do to': 158124, 'help protect them': 390378, 'protect them their': 685009, 'them their weekly': 876400, 'their weekly shop': 875179, 'weekly shop who': 977561, 'shop who in': 761043, 'who in theweeklyshop': 989029, 'in theweeklyshop lockdown': 429882, 'theweeklyshop lockdown shopping': 881068, 'lockdown shopping vulnerablegroups': 499912, 'ally': 46424, 'stabilize': 791832, 'opec and': 611839, 'and ally': 57922, 'ally agreed': 46427, 'agreed to': 38733, 'record cut': 704928, 'cut of': 223433, 'of almost': 580008, 'almost 10': 46471, 'oil output': 596995, 'output to': 629293, 'to stabilize': 915117, 'stabilize oil': 791849, 'opec and ally': 611840, 'and ally agreed': 57923, 'ally agreed to': 46428, 'agreed to record': 38744, 'to record cut': 912976, 'record cut of': 704930, 'cut of almost': 223435, 'of almost 10': 580009, 'almost 10 million': 46473, '10 million barrel': 1525, 'per day in': 650800, 'day in oil': 227804, 'in oil output': 426086, 'oil output to': 597000, 'output to stabilize': 629297, 'to stabilize oil': 915120, 'stabilize oil price': 791850, 'pandemic and price': 634892, 'and price war': 69485, 'shaping': 754881, 'wearedtb': 974533, 'fightback': 304970, 'more shopping': 540387, 'shopping trend': 764244, 'trend during': 931325, 'virus corona': 958081, 'corona on': 204079, 'how our': 408454, 'our habit': 623339, 'habit are': 372565, 'are changing': 85227, 'changing and': 172641, 'how online': 408441, 'ecommerce is': 266794, 'is playing': 450896, 'playing it': 659417, 'it part': 460264, 'part shaping': 642422, 'shaping the': 754887, 'the present': 864244, 'present and': 670569, 'and immediate': 64990, 'immediate future': 416991, 'future wearedtb': 342518, 'wearedtb fightback': 974534, 'more shopping trend': 540391, 'shopping trend during': 764246, 'trend during the': 931327, 'during the virus': 263214, 'the virus corona': 870817, 'virus corona on': 958084, 'corona on how': 204080, 'on how our': 601415, 'how our habit': 408461, 'our habit are': 623340, 'habit are changing': 372569, 'are changing and': 85228, 'changing and how': 172645, 'and how online': 64829, 'how online ecommerce': 408443, 'online ecommerce is': 608152, 'ecommerce is playing': 266797, 'is playing it': 450897, 'playing it part': 659418, 'it part shaping': 460267, 'part shaping the': 642423, 'shaping the present': 754888, 'the present and': 864245, 'present and immediate': 670571, 'and immediate future': 64993, 'immediate future wearedtb': 416992, 'future wearedtb fightback': 342519, 'berger': 127307, 'spar': 787431, 'wimbledon': 995525, 'sponsorship': 789846, 'inflate': 436983, 'berger spar': 127310, 'spar spar': 787460, 'spar are': 787434, 'are inflating': 87535, 'inflating their': 437130, 'have wimbledon': 383599, 'wimbledon sponsorship': 995526, 'sponsorship to': 789847, 'to future': 906346, 'future uncertain': 342496, 'uncertain go': 939590, 'to they': 917358, 'no excuse': 564161, 'excuse to': 289777, 'to inflate': 908370, 'inflate their': 437000, 'berger spar spar': 127311, 'spar spar are': 787461, 'spar are inflating': 787435, 'are inflating their': 87537, 'inflating their price': 437132, 'their price they': 874429, 'price they do': 676894, 'not have wimbledon': 569891, 'have wimbledon sponsorship': 383600, 'wimbledon sponsorship to': 995527, 'sponsorship to look': 789848, 'to look forward': 909436, 'forward to future': 330026, 'to future uncertain': 906349, 'future uncertain go': 342497, 'uncertain go to': 939591, 'go to they': 354373, 'to they have': 917362, 'they have no': 882346, 'have no excuse': 381624, 'no excuse to': 564166, 'excuse to inflate': 289782, 'to inflate their': 908373, 'inflate their price': 437001, 'shame': 754575, 'greedy selfish': 363589, 'who hoard': 989006, 'themselves shame': 876885, 'shame on': 754618, 'on you': 605407, 'you he': 1019160, 'the death': 852965, 'death of': 230139, 'people like': 648639, 'this lady': 888583, 'lady in': 478776, 'his hand': 397485, 'hand think': 375841, 'others before': 621300, 'before stockpiling': 123104, 'stockpiling reserve': 804057, 'reserve for': 714058, 'for yourself': 328229, 'yourself leave': 1026658, 'leave something': 484937, 'something for': 784906, 'you are one': 1017187, 'of these greedy': 591826, 'these greedy selfish': 880075, 'greedy selfish people': 363593, 'selfish people who': 748218, 'people who hoard': 650308, 'who hoard food': 989007, 'hoard food for': 398788, 'food for themselves': 314579, 'for themselves shame': 326945, 'themselves shame on': 876886, 'shame on you': 754632, 'on you he': 605421, 'you he will': 1019161, 'he will have': 385668, 'will have the': 993677, 'have the death': 382976, 'the death of': 852973, 'death of people': 230143, 'of people like': 587936, 'people like this': 648653, 'like this lady': 491503, 'this lady in': 888587, 'lady in his': 478778, 'in his hand': 423728, 'his hand think': 397493, 'hand think about': 375842, 'about others before': 25878, 'others before stockpiling': 621303, 'before stockpiling reserve': 123105, 'stockpiling reserve for': 804058, 'reserve for yourself': 714061, 'for yourself leave': 328235, 'yourself leave something': 1026661, 'leave something for': 484938, 'something for the': 784910, 'for the elderly': 326406, 'elderly and vulnerable': 270590, 'walsh': 965506, 'boston': 135777, 'walsh please': 965509, 'please do': 659888, 'do something': 250135, 'something about': 784828, 'food basic': 313679, 'necessity in': 554229, 'in boston': 420910, 'boston this': 135805, 'is nut': 450371, 'nut an': 577648, 'essential employee': 280996, 'employee after': 273526, 'long week': 501837, 'week work': 977278, 'work cannot': 1004972, 'even get': 284101, 'get bread': 346711, 'bread or': 138552, 'walsh please do': 965510, 'please do something': 659899, 'do something about': 250136, 'something about panic': 784832, 'buying hoarding of': 150492, 'of food basic': 583654, 'food basic necessity': 313681, 'basic necessity in': 111997, 'necessity in boston': 554230, 'in boston this': 420915, 'boston this is': 135806, 'this is nut': 888337, 'is nut an': 450372, 'nut an essential': 577649, 'an essential employee': 55821, 'essential employee after': 280997, 'employee after long': 273528, 'after long week': 35889, 'long week work': 501838, 'week work cannot': 977279, 'work cannot even': 1004975, 'cannot even get': 161793, 'even get bread': 284103, 'get bread or': 346712, 'dazee': 228916, 'never used': 558253, 'online love': 608510, 'go shopping': 354102, 'shopping time': 764140, 'have certainly': 379923, 'certainly changed': 170142, 'the mom': 860734, 'mom dazee': 535721, 'never used to': 558255, 'used to order': 950074, 'to order online': 911079, 'order online love': 618474, 'online love to': 608512, 'love to go': 504846, 'to go shopping': 906853, 'go shopping time': 354134, 'shopping time have': 764143, 'time have certainly': 896891, 'have certainly changed': 379924, 'certainly changed the': 170143, 'changed the mom': 172568, 'the mom dazee': 860736, 'unprotected': 943253, 'low wage': 505725, 'wage worker': 963998, 'worker such': 1007843, 'such cleaner': 816398, 'cleaner supermarket': 180838, 'and delivery': 61107, 'are among': 84518, 'crisis they': 218210, 'are often': 88687, 'often unprotected': 596293, 'unprotected and': 943254, 'face risk': 294716, 'risk not': 723711, 'only from': 610485, 'new coronavirus': 558541, 'coronavirus but': 205583, 'also from': 48241, 'the economic': 853891, 'of to': 592204, 'sick 19': 768350, 'low wage worker': 505736, 'wage worker such': 964002, 'worker such cleaner': 1007845, 'such cleaner supermarket': 816399, 'cleaner supermarket worker': 180840, 'worker and delivery': 1006285, 'and delivery driver': 61113, 'delivery driver are': 233890, 'driver are among': 259431, 'are among the': 84519, 'among the unsung': 53076, 'unsung hero of': 943558, 'hero of this': 394050, 'of this crisis': 591960, 'this crisis they': 887098, 'crisis they are': 218211, 'they are often': 881346, 'are often unprotected': 88694, 'often unprotected and': 596294, 'unprotected and face': 943255, 'and face risk': 62585, 'face risk not': 294717, 'risk not only': 723713, 'not only from': 570796, 'only from the': 610486, 'from the new': 337803, 'the new coronavirus': 861484, 'new coronavirus but': 558543, 'coronavirus but also': 205584, 'but also from': 145115, 'also from the': 48242, 'from the economic': 337679, 'the economic impact': 853907, 'economic impact of': 267137, 'impact of to': 417807, 'of to get': 592214, 'to get sick': 906590, 'get sick 19': 347987, 'alert scammer': 41499, 'are targeting': 90751, 'targeting senior': 834572, 'citizen during': 178885, 'with and': 997237, 'and scam': 71024, 'scam please': 740303, 'share to': 755301, 'to educate': 904939, 'educate amp': 268749, 'amp help': 53925, 'help senior': 390508, 'citizen stay': 178961, 'consumer alert scammer': 196154, 'alert scammer are': 41500, 'scammer are targeting': 740546, 'are targeting senior': 90752, 'targeting senior citizen': 834574, 'senior citizen during': 750252, 'citizen during this': 178888, 'this pandemic with': 889448, 'pandemic with and': 637024, 'with and scam': 997250, 'and scam please': 71032, 'scam please share': 740306, 'please share to': 660496, 'share to educate': 755304, 'to educate amp': 904940, 'educate amp help': 268750, 'amp help senior': 53927, 'help senior citizen': 390511, 'senior citizen stay': 750255, 'citizen stay safe': 178962, 'ww2': 1013643, 'grandchild': 361883, 'obey': 578378, 'historyinthemaking': 398079, 'period is': 651798, 'our ww2': 625416, 'ww2 moment': 1013651, 'moment your': 536136, 'your grandchild': 1024091, 'grandchild will': 361884, 'will ask': 992311, 'you about': 1016770, 'this did': 887218, 'you hoard': 1019227, 'hoard did': 398776, 'you sell': 1021109, 'sell toiletpaper': 748925, 'toiletpaper for': 921996, 'much money': 545083, 'money did': 536700, 'you obey': 1020169, 'obey the': 578387, 'government did': 360021, 'you help': 1019191, 'need make': 555189, 'sure they': 827733, 'be proud': 116584, 'you historyinthemaking': 1019224, 'the period is': 863565, 'period is our': 651800, 'is our ww2': 450653, 'our ww2 moment': 625417, 'ww2 moment your': 1013652, 'moment your grandchild': 536137, 'your grandchild will': 1024092, 'grandchild will ask': 361885, 'will ask you': 992314, 'ask you about': 95673, 'you about this': 1016775, 'about this did': 26636, 'this did you': 887219, 'did you hoard': 240935, 'you hoard did': 1019228, 'hoard did you': 398777, 'did you sell': 240947, 'you sell toiletpaper': 1021111, 'sell toiletpaper for': 748927, 'toiletpaper for way': 922003, 'for way too': 327653, 'way too much': 970130, 'too much money': 924934, 'much money did': 545084, 'money did you': 536701, 'did you obey': 240941, 'you obey the': 1020170, 'obey the government': 578389, 'the government did': 856525, 'government did you': 360023, 'did you help': 240934, 'you help the': 1019203, 'help the one': 390671, 'the one in': 862205, 'one in need': 606479, 'in need make': 425752, 'need make sure': 555190, 'make sure they': 510534, 'sure they can': 827737, 'they can be': 881615, 'can be proud': 157669, 'be proud of': 116585, 'proud of you': 686041, 'of you historyinthemaking': 593391, 'rice wheat': 721166, 'surge amid': 828120, 'fear covid': 301094, 'lockdown may': 499641, 'may threaten': 521579, 'threaten global': 893753, 'security increased': 744646, 'increased panic': 433398, 'buying of': 150785, 'food due': 314308, 'to price': 912114, 'price spike': 676573, 'spike for': 789280, 'for world': 327966, 'world two': 1010119, 'two staple': 937235, 'staple grain': 793943, 'grain rice': 361796, 'wheat importer': 982990, 'importer rushed': 419207, 'stockpile good': 803752, 'rice wheat price': 721169, 'wheat price surge': 983011, 'price surge amid': 676720, 'surge amid fear': 828122, 'amid fear covid': 52471, 'fear covid 19': 301095, '19 lockdown may': 8402, 'lockdown may threaten': 499644, 'may threaten global': 521580, 'threaten global food': 893754, 'global food security': 351948, 'food security increased': 316355, 'security increased panic': 744647, 'increased panic buying': 433399, 'panic buying of': 637827, 'buying of food': 150792, 'of food due': 583682, 'food due to': 314309, 'to coronavirus lockdown': 903558, 'coronavirus lockdown ha': 206245, 'lockdown ha led': 499451, 'led to price': 485294, 'to price spike': 912127, 'price spike for': 676576, 'spike for world': 789283, 'for world two': 327967, 'world two staple': 1010122, 'two staple grain': 937236, 'staple grain rice': 793945, 'grain rice wheat': 361798, 'rice wheat importer': 721168, 'wheat importer rushed': 982991, 'importer rushed to': 419208, 'rushed to stockpile': 728368, 'to stockpile good': 915472, 'launched': 481961, 'comprehensive': 192619, 'dshcovid19': 261352, 'california ha': 155513, 'ha launched': 371100, 'launched new': 482013, 'new comprehensive': 558504, 'comprehensive user': 192648, 'user friendly': 950282, 'friendly website': 334019, 'increase awareness': 432689, 'awareness of': 105711, '19 visit': 11848, 'state one': 795834, 'one stop': 607109, 'stop website': 805270, 'website for': 975261, 'latest news': 481445, 'news and': 560223, 'and information': 65218, 'information dshcovid19': 437803, 'california ha launched': 155515, 'ha launched new': 371109, 'launched new comprehensive': 482014, 'new comprehensive user': 558506, 'comprehensive user friendly': 192649, 'user friendly website': 950285, 'friendly website to': 334021, 'website to increase': 975445, 'to increase awareness': 908271, 'increase awareness of': 432690, 'awareness of covid': 105713, 'covid 19 visit': 214034, '19 visit the': 11850, 'visit the state': 959397, 'the state one': 867800, 'state one stop': 795835, 'one stop website': 607117, 'stop website for': 805271, 'website for the': 975277, 'the latest news': 859131, 'latest news and': 481451, 'news and information': 560233, 'and information dshcovid19': 65220, 'the status': 867845, 'status of': 796685, 'our operation': 624164, 'operation see': 613253, 'see link': 745361, 'link for': 493828, 'for detail': 320675, 'detail by': 239169, 'by store': 154132, 'on the status': 604382, 'the status of': 867846, 'status of our': 796687, 'of our operation': 587525, 'our operation see': 624167, 'operation see link': 613254, 'see link for': 745363, 'link for detail': 493829, 'for detail by': 320678, 'detail by store': 239170, 'by store location': 154133, '21dayslockdown': 15112, 'bioweapon': 131299, 'hence': 391736, '21dayslockdown in': 15119, 'india is': 434480, 'is definitely': 447081, 'definitely bioweapon': 232313, 'bioweapon of': 131304, 'china for': 176662, 'for 21': 318757, '21 day': 14983, 'day manufacturing': 227962, 'manufacturing in': 513605, 'india no': 434539, 'no crude': 563938, 'oil consumption': 596701, 'consumption hence': 199888, 'hence no': 391751, 'no purchase': 565249, 'purchase of': 689569, 'of crude': 582229, 'oil by': 596661, 'by indian': 152910, 'indian govt': 434841, 'govt no': 361217, 'no benefit': 563687, 'benefit of': 127037, 'of low': 586037, '21dayslockdown in india': 15120, 'in india is': 424043, 'india is definitely': 434484, 'is definitely bioweapon': 447082, 'definitely bioweapon of': 232314, 'bioweapon of china': 131305, 'of china for': 581362, 'china for 21': 176663, 'for 21 day': 318759, '21 day manufacturing': 14993, 'day manufacturing in': 227963, 'manufacturing in india': 513606, 'in india no': 424046, 'india no crude': 434540, 'no crude oil': 563939, 'crude oil consumption': 219553, 'oil consumption hence': 596702, 'consumption hence no': 199889, 'hence no purchase': 391752, 'no purchase of': 565251, 'purchase of crude': 689577, 'of crude oil': 582232, 'crude oil by': 219552, 'oil by indian': 596662, 'by indian govt': 152911, 'indian govt no': 434842, 'govt no benefit': 361218, 'no benefit of': 563688, 'benefit of low': 127045, 'of low crude': 586040, 'low crude price': 505222, 'survey asian': 828819, 'asian consumer': 95264, 'sentiment during': 750919, 'crisis via': 218311, 'survey asian consumer': 828820, 'asian consumer sentiment': 95266, 'consumer sentiment during': 198909, 'sentiment during the': 750922, '19 crisis via': 6343, 'copd': 203290, 'parent can': 641596, 'shop my': 760471, 'mum ha': 545903, 'ha copd': 370245, 'copd and': 203291, 'the prime': 864457, 'prime coronavirus': 678102, 'coronavirus risk': 206681, 'group hate': 366717, 'hate every': 378882, 'every single': 286177, 'single one': 771349, 'you stockpiling': 1021427, 'stockpiling bastard': 803917, 'bastard stopstockpiling': 112506, 'stopstockpiling stoppanicbuying': 805883, 'stoppanicbuying bastard': 805548, 'my parent can': 549689, 'parent can get': 641597, 'can get an': 158399, 'get an online': 346546, 'an online supermarket': 56638, 'online supermarket delivery': 609497, 'supermarket delivery slot': 819932, 'week and they': 975940, 'and they can': 73895, 'they can go': 881633, 'the shop my': 867014, 'shop my mum': 760472, 'my mum ha': 549375, 'mum ha copd': 545904, 'ha copd and': 370246, 'copd and is': 203293, 'and is in': 65408, 'in the prime': 429474, 'the prime coronavirus': 864458, 'prime coronavirus risk': 678103, 'coronavirus risk group': 206682, 'risk group hate': 723592, 'group hate every': 366718, 'hate every single': 378883, 'every single one': 286187, 'single one of': 771351, 'one of you': 606773, 'of you stockpiling': 593423, 'you stockpiling bastard': 1021428, 'stockpiling bastard stopstockpiling': 803918, 'bastard stopstockpiling stoppanicbuying': 112507, 'stopstockpiling stoppanicbuying bastard': 805884, 'bracken': 137510, 'fortunate': 329881, 'many thanks': 514785, 'to at': 900799, 'at for': 98687, 'for covering': 320427, 'covering bracken': 212462, 'bracken kitchen': 137511, 'kitchen during': 475711, 're fortunate': 698705, 'fortunate to': 329901, 'hire 16': 396981, '16 out': 4151, 'work restaurant': 1005661, 'who need': 989306, 'need job': 555120, 'helping meet': 391384, 'growing demand': 367159, 'more meal': 539758, 'many thanks to': 514787, 'thanks to at': 842206, 'to at for': 900803, 'at for covering': 98691, 'for covering bracken': 320428, 'covering bracken kitchen': 212463, 'bracken kitchen during': 137512, 'kitchen during the': 475712, 'crisis we re': 218352, 'we re fortunate': 972879, 're fortunate to': 698707, 'fortunate to hire': 329904, 'to hire 16': 907789, 'hire 16 out': 396982, '16 out of': 4152, 'of work restaurant': 593263, 'work restaurant worker': 1005663, 'restaurant worker who': 716828, 'worker who need': 1008220, 'who need job': 989316, 'need job and': 555121, 'job and are': 465615, 'and are helping': 58320, 'are helping meet': 87099, 'helping meet the': 391385, 'meet the growing': 527600, 'the growing demand': 856878, 'growing demand for': 367164, 'demand for more': 235457, 'for more meal': 323587, 'complacent': 191836, 'ha lesson': 371135, 'lesson to': 486511, 'teach it': 835396, 'about trade': 26774, 'trade china': 928435, 'never about': 557845, 'consumer it': 197953, 'wa always': 961509, 'always about': 49455, 'about profit': 26007, 'profit amp': 682649, 'amp it': 54022, 'it made': 459491, 'made lot': 507820, 'people complacent': 647506, 'ha lesson to': 371136, 'lesson to teach': 486514, 'to teach it': 916312, 'teach it about': 835397, 'it about trade': 456242, 'about trade china': 26775, 'trade china wa': 928436, 'china wa never': 177044, 'wa never about': 962699, 'never about the': 557847, 'about the consumer': 26357, 'the consumer it': 851553, 'consumer it wa': 197964, 'it wa always': 462062, 'wa always about': 961510, 'always about profit': 49457, 'about profit amp': 26009, 'profit amp it': 682650, 'amp it made': 54025, 'it made lot': 459492, 'made lot of': 507821, 'of people complacent': 587888, 'storage': 805948, 'depleted': 237407, 'cold meat': 185775, 'meat storage': 525757, 'storage ha': 805967, 'been depleted': 120951, 'depleted due': 237410, 'to surge': 915999, 'cold meat storage': 185776, 'meat storage ha': 525758, 'storage ha been': 805968, 'ha been depleted': 369772, 'been depleted due': 120952, 'depleted due to': 237411, 'due to surge': 261985, 'to surge in': 916002, 'surge in consumer': 828184, 'consumer buying due': 196703, 'factbox': 295849, 'bankruptcy': 110502, 'america march': 51606, '26 factbox': 16161, 'factbox price': 295854, 'fall spread': 297068, 'spread reduces': 790768, 'reduces travel': 706256, 'travel more': 930430, 'more mine': 539778, 'mine closure': 532883, 'closure bankruptcy': 183856, 'bankruptcy to': 110544, 'come podcast': 187483, 'podcast amp': 662253, 'amp the': 54642, 'power market': 667639, 'america march 26': 51607, 'march 26 factbox': 515214, '26 factbox price': 16162, 'factbox price fall': 295855, 'price fall spread': 673799, 'fall spread reduces': 297069, 'spread reduces travel': 790769, 'reduces travel more': 706257, 'travel more mine': 930432, 'more mine closure': 539779, 'mine closure bankruptcy': 532884, 'closure bankruptcy to': 183857, 'bankruptcy to come': 110545, 'to come podcast': 903043, 'come podcast amp': 187484, 'podcast amp the': 662254, 'amp the power': 54665, 'the power market': 864153, 'cm': 184615, 'naveen': 553051, 'lockdown odisha': 499710, 'odisha supply': 579251, 'supply minister': 825561, 'minister urge': 533479, 'urge cm': 948169, 'cm naveen': 184622, 'naveen to': 553052, 'ass food': 96250, 'stock procurement': 802767, '19 lockdown odisha': 8409, 'lockdown odisha supply': 499711, 'odisha supply minister': 579252, 'supply minister urge': 825562, 'minister urge cm': 533480, 'urge cm naveen': 948170, 'cm naveen to': 184623, 'naveen to ass': 553053, 'to ass food': 900771, 'ass food stock': 96251, 'food stock procurement': 316807, 'luzon': 506997, 'enhanced': 277086, 'los': 503356, 'ba': 106522, 'laguna': 478973, 'barely': 110995, 'day one': 228151, 'the luzon': 859838, 'luzon wide': 507007, 'wide enhanced': 991714, 'enhanced community': 277091, 'community quarantine': 190049, 'quarantine to': 692636, '19 crowd': 6361, 'of 10': 579301, '10 30am': 1269, '30am at': 17408, 'in los': 424923, 'los ba': 503375, 'ba laguna': 106527, 'laguna shopper': 478976, 'shopper barely': 761417, 'barely observe': 111026, 'distancing they': 247543, 'on supply': 603814, 'day one of': 228154, 'of the luzon': 591208, 'the luzon wide': 859839, 'luzon wide enhanced': 507008, 'wide enhanced community': 991715, 'enhanced community quarantine': 277092, 'community quarantine to': 190055, 'quarantine to prevent': 692639, 'covid 19 crowd': 212891, '19 crowd of': 6363, 'crowd of 10': 219214, 'of 10 30am': 579302, '10 30am at': 1270, '30am at supermarket': 17409, 'supermarket in los': 820925, 'in los ba': 424925, 'los ba laguna': 503376, 'ba laguna shopper': 106529, 'laguna shopper barely': 478977, 'shopper barely observe': 761418, 'barely observe social': 111027, 'social distancing they': 779741, 'distancing they stock': 247545, 'up on supply': 945624, 'zurfi': 1027910, 'appoint': 82642, 'deeply': 231982, 'fractured': 330875, 'parliament': 642152, 'discontent': 244423, 'succeed': 816162, 'zurfi now': 1027911, 'ha until': 372399, 'until 16': 943640, '16 april': 4095, 'april to': 83705, 'to appoint': 900662, 'appoint all': 82643, 'all 22': 41897, '22 minister': 15229, 'minister sell': 533458, 'to iraq': 908507, 'iraq deeply': 444761, 'deeply fractured': 231993, 'fractured parliament': 330880, 'parliament against': 642153, 'the backdrop': 849156, 'backdrop of': 107518, 'crisis plummeting': 217881, 'plummeting oil': 661385, 'social discontent': 779488, 'discontent will': 244424, 'will he': 993688, 'he succeed': 385489, 'succeed read': 816167, 'more by': 538748, 'zurfi now ha': 1027912, 'now ha until': 574850, 'ha until 16': 372400, 'until 16 april': 943641, '16 april to': 4096, 'april to appoint': 83706, 'to appoint all': 900663, 'appoint all 22': 82644, 'all 22 minister': 41898, '22 minister sell': 15230, 'minister sell them': 533459, 'sell them to': 748910, 'them to iraq': 876481, 'to iraq deeply': 908509, 'iraq deeply fractured': 444762, 'deeply fractured parliament': 231994, 'fractured parliament against': 330881, 'parliament against the': 642154, 'against the backdrop': 37643, 'the backdrop of': 849157, 'backdrop of the': 107520, 'of the crisis': 590911, 'the crisis plummeting': 852430, 'crisis plummeting oil': 217882, 'plummeting oil price': 661386, 'price and social': 672544, 'and social discontent': 71883, 'social discontent will': 779489, 'discontent will he': 244425, 'will he succeed': 993689, 'he succeed read': 385490, 'succeed read more': 816168, 'read more by': 700424, 'emt': 275336, 'let thank': 487109, 'thank the': 841636, 'supermarket store': 823000, 'restaurant employee': 716440, 'employee that': 274286, 'that stayed': 846469, 'stayed open': 797868, 'feed everyone': 302304, 'everyone let': 287154, 'doctor emt': 250901, 'emt nurse': 275339, 'nurse that': 577502, 'save people': 737619, 'let thank the': 487111, 'thank the supermarket': 841648, 'the supermarket store': 868832, 'supermarket store restaurant': 823010, 'store restaurant employee': 809843, 'restaurant employee that': 716444, 'employee that stayed': 274290, 'that stayed open': 846470, 'stayed open to': 797870, 'open to feed': 612595, 'to feed everyone': 905721, 'feed everyone let': 302306, 'everyone let thank': 287156, 'thank the doctor': 841638, 'the doctor emt': 853462, 'doctor emt nurse': 250902, 'emt nurse that': 275340, 'nurse that are': 577503, 'that are risking': 842808, 'life to save': 489138, 'to save people': 913789, 'journey': 467465, 'kfc': 473625, 'lockdown except': 499357, 'for journey': 322779, 'journey to': 467486, 'to kfc': 908904, 'kfc every': 473626, 'every supermarket': 286237, 'supermarket petrol': 821968, 'station people': 796487, 'home going': 401305, 'on run': 603233, 'run with': 727865, 'family going': 297850, 'to park': 911464, 'park some': 641980, 'food place': 315852, 'and off': 67962, 'off license': 593950, 'license but': 488128, 'it lockdown': 459446, 'lockdown remember': 499853, 'remember 19': 710153, 'on lockdown except': 601912, 'lockdown except for': 499358, 'except for journey': 289163, 'for journey to': 322780, 'journey to kfc': 467488, 'to kfc every': 908905, 'kfc every supermarket': 473627, 'every supermarket petrol': 286264, 'supermarket petrol station': 821970, 'petrol station people': 653797, 'station people that': 796488, 'people that can': 649754, 'that can work': 843127, 'can work from': 160247, 'from home going': 335864, 'home going out': 401306, 'going out on': 355384, 'out on run': 626916, 'on run with': 603234, 'run with my': 727866, 'with my family': 999622, 'my family going': 548201, 'family going to': 297851, 'going to park': 355666, 'to park some': 911467, 'park some food': 641981, 'some food place': 782868, 'food place and': 315853, 'place and off': 657318, 'and off license': 67966, 'off license but': 593951, 'license but it': 488129, 'but it lockdown': 146134, 'it lockdown remember': 459447, 'lockdown remember 19': 499854, 'government check': 359975, 'check scam': 174608, 'outbreak the': 628701, 'the detail': 853203, 'detail of': 239220, 'of such': 590361, 'such program': 816700, 'program are': 683208, 'being worked': 126067, 'worked out': 1006132, 'out but': 625784, 'few really': 304033, 'really important': 702325, 'important thing': 419027, 'know now': 476631, 'please be aware': 659695, 'aware of government': 105634, 'of government check': 584270, 'government check scam': 359978, 'check scam related': 174610, 'the outbreak the': 862708, 'outbreak the detail': 628709, 'the detail of': 853207, 'detail of such': 239223, 'of such program': 590367, 'such program are': 816701, 'program are being': 683209, 'are being worked': 84943, 'being worked out': 126068, 'worked out but': 1006133, 'out but there': 625801, 'there are few': 878106, 'are few really': 86535, 'few really important': 304034, 'really important thing': 702328, 'important thing to': 419032, 'thing to know': 884895, 'to know now': 908986, 'spamming': 787398, 'faceless': 295057, 'buddy': 141733, 'any news': 79512, 'news on': 560659, 'on when': 605261, 'the ceo': 850610, 'every big': 285684, 'big company': 129707, 'that ever': 843746, 'ever had': 285338, 'had my': 373316, 'my email': 548082, 'email address': 272098, 'address will': 32066, 'will stop': 994994, 'stop spamming': 805043, 'spamming me': 787399, 'with cv19': 997911, 'cv19 shit': 223862, 'shit dear': 759088, 'dear faceless': 229785, 'faceless consumer': 295058, 'consumer these': 199276, 'the step': 867876, 'step that': 799628, 'that fuck': 843964, 'just do': 468612, 'not come': 568792, 'my fucking': 548467, 'fucking house': 339903, 'house buddy': 406219, 'buddy covid': 141736, 'there any news': 878023, 'any news on': 79513, 'news on when': 560670, 'on when the': 605263, 'when the ceo': 984133, 'the ceo of': 850615, 'ceo of every': 169777, 'of every big': 583235, 'every big company': 285685, 'big company that': 129708, 'company that ever': 191170, 'that ever had': 843748, 'ever had my': 285341, 'had my email': 373318, 'my email address': 548083, 'email address will': 272105, 'address will stop': 32067, 'will stop spamming': 995002, 'stop spamming me': 805044, 'spamming me with': 787400, 'me with cv19': 523990, 'with cv19 shit': 997912, 'cv19 shit dear': 223863, 'shit dear faceless': 759089, 'dear faceless consumer': 229786, 'faceless consumer these': 295059, 'consumer these are': 199277, 'these are the': 879638, 'are the step': 90914, 'the step that': 867878, 'step that fuck': 799629, 'that fuck you': 843967, 'fuck you just': 339703, 'you just do': 1019418, 'just do not': 468614, 'do not come': 249700, 'not come to': 568798, 'come to my': 187582, 'to my fucking': 910403, 'my fucking house': 548469, 'fucking house buddy': 339904, 'house buddy covid': 406220, 'buddy covid 19': 141737, 'compensate': 191527, 'close their': 182850, 'biggest concern': 130199, 'concern is': 193003, 'to compensate': 903114, 'compensate for': 191529, 'for lost': 323111, 'lost in': 503864, 'store revenue': 809888, 'revenue is': 720444, 'offering 90': 595006, 'day free': 227648, 'free trial': 332273, 'trial good': 931644, 'good resource': 357656, 'resource if': 714816, 'move your': 543790, 'your retail': 1025605, 'store online': 809227, 'retailer are forced': 718999, 'to close their': 902902, 'close their door': 182852, 'their door to': 873078, 'door to combat': 255749, 'combat the biggest': 187046, 'the biggest concern': 849646, 'biggest concern is': 130200, 'concern is how': 193006, 'is how to': 448601, 'how to compensate': 408996, 'to compensate for': 903115, 'compensate for lost': 191531, 'for lost in': 323113, 'lost in store': 503866, 'in store revenue': 428449, 'store revenue is': 809889, 'revenue is offering': 720447, 'is offering 90': 450415, 'offering 90 day': 595007, '90 day free': 23285, 'day free trial': 227650, 'free trial good': 332277, 'trial good resource': 931645, 'good resource if': 357658, 'resource if you': 714817, 'if you need': 415481, 'need to move': 555996, 'to move your': 910324, 'move your retail': 543791, 'your retail store': 1025610, 'retail store online': 718672, 'independent': 434080, 'local independent': 498112, 'independent retailer': 434132, 'dying out': 263853, 'do they': 250296, 'crisis put': 217924, 'use them': 949704, 'them even': 875661, 'even le': 284285, 'le after': 482840, 'over coronacrisis': 630115, 'local independent retailer': 498117, 'independent retailer are': 434133, 'retailer are dying': 718994, 'are dying out': 86051, 'dying out and': 263854, 'out and what': 625709, 'and what do': 75460, 'what do they': 981352, 'do they all': 250298, 'they all do': 881113, 'all do in': 42590, 'do in crisis': 249423, 'in crisis put': 421891, 'crisis put their': 217926, 'put their price': 690884, 'their price up': 874433, 'price up people': 677251, 'up people will': 945761, 'people will use': 650420, 'will use them': 995289, 'use them even': 949708, 'them even le': 875663, 'even le after': 284286, 'le after this': 482841, 'after this is': 36406, 'is over coronacrisis': 450693, 'tenant': 837820, 'is govt': 448172, 'not speaking': 571667, 'speaking to': 787770, 'top commercial': 925546, 'commercial realestate': 188727, 'realestate owner': 701505, 'owner to': 632582, 'to defer': 904061, 'defer the': 232172, 'rent for': 711087, 'and go': 63765, 'for total': 327289, 'total shut': 926242, 'down not': 256988, 'only are': 610109, 'are these': 90968, 'people forcing': 647967, 'forcing the': 328737, 'retail tenant': 718770, 'tenant to': 837859, 'pay rent': 645078, 'rent but': 711060, 'but putting': 146870, 'putting the': 691229, 'and client': 59984, 'client at': 182009, 'why is govt': 991107, 'is govt not': 448173, 'govt not speaking': 361222, 'not speaking to': 571668, 'speaking to top': 787775, 'to top commercial': 917635, 'top commercial realestate': 925547, 'commercial realestate owner': 188728, 'realestate owner to': 701506, 'owner to defer': 632584, 'to defer the': 904062, 'defer the rent': 232174, 'the rent for': 865512, 'rent for few': 711089, 'for few month': 321457, 'few month and': 303924, 'month and go': 537576, 'and go for': 63774, 'go for total': 353576, 'for total shut': 327291, 'total shut down': 926243, 'shut down not': 767838, 'down not only': 256989, 'not only are': 570778, 'only are these': 610114, 'are these people': 90978, 'these people forcing': 880437, 'people forcing the': 647968, 'forcing the retail': 328740, 'the retail tenant': 865732, 'retail tenant to': 718772, 'tenant to pay': 837860, 'to pay rent': 911553, 'pay rent but': 645082, 'rent but putting': 711061, 'but putting the': 146871, 'putting the life': 691232, 'life of all': 488917, 'of all store': 579979, 'all store owner': 44502, 'store owner and': 809423, 'owner and client': 632373, 'and client at': 59986, 'wasl': 967946, 'instruct': 440515, 'shebuildspeace': 756501, 'nigeria wasl': 562814, 'wasl partner': 967947, 'partner is': 642839, 'with small': 1000764, 'small group': 774976, 'of survivor': 590538, 'survivor in': 829394, 'her community': 391955, 'to instruct': 908426, 'instruct people': 440518, 'people on': 648950, 'using hand': 950506, 'sanitizer often': 735447, 'often and': 596156, 'and wearing': 75357, 'public to': 688370, 'of shebuildspeace': 589572, 'response to in': 715854, 'to in nigeria': 908229, 'in nigeria wasl': 425888, 'nigeria wasl partner': 562815, 'wasl partner is': 967948, 'partner is working': 642844, 'is working with': 454055, 'working with small': 1009068, 'with small group': 1000767, 'small group of': 774977, 'group of survivor': 366803, 'of survivor in': 590539, 'survivor in her': 829395, 'in her community': 423654, 'her community to': 391956, 'community to instruct': 190175, 'to instruct people': 908427, 'instruct people on': 440519, 'people on the': 648973, 'on the importance': 604173, 'importance of using': 418718, 'of using hand': 592720, 'using hand sanitizer': 950507, 'hand sanitizer often': 375511, 'sanitizer often and': 735448, 'often and wearing': 596159, 'and wearing face': 75359, 'face mask in': 294552, 'in public to': 427104, 'public to prevent': 688377, 'spread of shebuildspeace': 790707, 'shocking': 759591, 'lockdownhouseparty': 500292, 'wa shocking': 963194, 'shocking to': 759630, 'sick people': 768576, 'in different': 422250, 'different aisle': 241888, 'aisle guy': 40264, 'guy stay': 369150, 'get someone': 348079, 'you lockdownhouseparty': 1019686, 'lockdownhouseparty chinaliedandpeopledied': 500293, 'the supermarket for': 868598, 'supermarket for the': 820423, 'in week it': 430756, 'week it wa': 976440, 'it wa shocking': 462190, 'wa shocking to': 963196, 'shocking to see': 759631, 'see the amount': 745809, 'amount of sick': 53256, 'of sick people': 589711, 'sick people shopping': 768583, 'shopping in different': 762960, 'in different aisle': 422251, 'different aisle guy': 241889, 'aisle guy stay': 40265, 'guy stay home': 369151, 'home and get': 400643, 'and get someone': 63602, 'get someone you': 348082, 'someone you shop': 784808, 'shop for you': 760213, 'for you lockdownhouseparty': 328075, 'you lockdownhouseparty chinaliedandpeopledied': 1019687, 'pretend': 671312, 'ssn': 791662, 'suspended': 829599, 'even during': 284021, 'pandemic scammer': 636405, 'scammer will': 740656, 'will pretend': 994440, 'pretend to': 671322, 'the social': 867408, 'social security': 779939, 'security administration': 744527, 'administration and': 32448, 'your ssn': 1025896, 'ssn or': 791667, 'or money': 616151, 'money remember': 536995, 'remember your': 710437, 'ssn is': 791665, 'be suspended': 117492, 'suspended here': 829618, 'should know': 766175, 'about social': 26211, 'security scam': 744739, 'even during the': 284029, 'the pandemic scammer': 863087, 'pandemic scammer will': 636406, 'scammer will pretend': 740658, 'will pretend to': 994441, 'pretend to be': 671323, 'to be the': 901586, 'be the social': 117658, 'the social security': 867418, 'social security administration': 779940, 'security administration and': 744528, 'administration and try': 32451, 'and try to': 74510, 'try to get': 934628, 'get your ssn': 348737, 'your ssn or': 1025899, 'ssn or money': 791668, 'or money remember': 616155, 'money remember your': 536996, 'remember your ssn': 710440, 'your ssn is': 1025898, 'ssn is not': 791666, 'is not about': 450022, 'not about to': 568017, 'to be suspended': 901577, 'be suspended here': 117494, 'suspended here what': 829619, 'here what you': 393826, 'what you should': 982692, 'you should know': 1021201, 'should know about': 766176, 'know about social': 476222, 'about social security': 26214, 'social security scam': 779951, 'consecutive': 194812, 'dontbeaspreader': 255339, 'far ve': 298960, 've isolated': 953284, 'isolated for': 454994, 'for consecutive': 320230, 'consecutive day': 194816, 'day before': 227364, 'before that': 123132, 'local pharmacy': 498272, 'pharmacy who': 654557, 'who only': 989377, 'only admit': 610037, 'admit customer': 32592, 'customer at': 222141, 'once to': 605764, 'minimise spreading': 533083, 'spreading my': 791003, 'few essential': 303818, 'essential some': 281570, 'food please': 315861, 'home folk': 401203, 'folk dontbeaspreader': 312147, 'dontbeaspreader nhsheroes': 255342, 'so far ve': 777064, 'far ve isolated': 298962, 've isolated for': 953285, 'isolated for consecutive': 454995, 'for consecutive day': 320231, 'consecutive day before': 194817, 'day before that': 227372, 'before that just': 123135, 'that just went': 844798, 'went to my': 979177, 'to my local': 910416, 'my local pharmacy': 549131, 'local pharmacy who': 498277, 'pharmacy who only': 654559, 'who only admit': 989378, 'only admit customer': 610038, 'admit customer at': 32593, 'customer at once': 222144, 'at once to': 99963, 'once to minimise': 605767, 'to minimise spreading': 910153, 'minimise spreading my': 533084, 'spreading my local': 791004, 'supermarket for few': 820395, 'for few essential': 321452, 'few essential some': 303821, 'essential some food': 281571, 'some food please': 782869, 'food please stay': 315869, 'stay home folk': 796963, 'home folk dontbeaspreader': 401204, 'folk dontbeaspreader nhsheroes': 312148, 'owns': 632628, 'charmin': 173790, 'perform': 651409, 'pg': 653937, 'financialcrisis': 306639, 'guess who': 368093, 'who owns': 989399, 'owns charmin': 632629, 'charmin toiletpaper': 173808, 'they aren': 881468, 'aren doing': 92382, 'to bad': 900983, 'bad right': 107999, 'now hell': 574917, 'hell do': 388999, 'they ever': 882058, 'ever perform': 285447, 'perform bad': 651410, 'bad in': 107898, 'financial crisis': 306365, 'crisis pg': 217870, 'pg toiletpapercrisis': 653953, 'toiletpapercrisis 19': 923002, '19 financialcrisis': 7007, 'guess who owns': 368098, 'who owns charmin': 989400, 'owns charmin toiletpaper': 632630, 'charmin toiletpaper they': 173810, 'toiletpaper they aren': 922608, 'they aren doing': 881476, 'aren doing to': 92383, 'doing to bad': 252786, 'to bad right': 900985, 'bad right now': 108000, 'right now hell': 722078, 'now hell do': 574918, 'hell do not': 389001, 'not think they': 572090, 'think they ever': 885680, 'they ever perform': 882060, 'ever perform bad': 285448, 'perform bad in': 651411, 'bad in financial': 107901, 'in financial crisis': 422888, 'financial crisis pg': 306379, 'crisis pg toiletpapercrisis': 217871, 'pg toiletpapercrisis 19': 653954, 'toiletpapercrisis 19 financialcrisis': 923003, 'pm': 661847, 'bite': 131855, 'pourhouse': 667449, 'grill': 363941, '970': 23689, '669': 21446, '1699': 4258, 'be offering': 116157, 'offering take': 595268, 'out from': 626189, 'from 11': 334170, '11 00': 2429, 'am 30': 49836, '30 pm': 17198, 'pm come': 661880, 'come downtown': 187279, 'downtown for': 257745, 'some shopping': 783856, 'and bite': 58987, 'bite to': 131880, 'at pourhouse': 100165, 'pourhouse bar': 667450, 'bar grill': 110711, 'grill call': 363944, 'call 970': 155736, '970 669': 23694, '669 1699': 21447, '1699 or': 4259, 'or order': 616411, 'of the current': 590920, 'will be offering': 992583, 'be offering take': 116163, 'offering take out': 595269, 'take out from': 832445, 'out from 11': 626190, 'from 11 00': 334171, '11 00 am': 2430, '00 am 30': 52, 'am 30 pm': 49837, '30 pm come': 17199, 'pm come downtown': 661881, 'come downtown for': 187280, 'downtown for some': 257746, 'for some shopping': 325765, 'some shopping and': 783858, 'shopping and bite': 761965, 'and bite to': 58989, 'bite to eat': 131881, 'eat at pourhouse': 265856, 'at pourhouse bar': 100166, 'pourhouse bar grill': 667451, 'bar grill call': 110712, 'grill call 970': 363945, 'call 970 669': 155737, '970 669 1699': 23695, '669 1699 or': 21448, '1699 or order': 4260, 'or order online': 616415, 'resolved': 714644, 'ryanairrefunderror': 728815, 'ryanairrefund': 728813, 'any update': 80002, 'update when': 947317, 'be resolved': 116824, 'resolved ryanairrefunderror': 714648, 'ryanairrefunderror ryanairrefund': 728816, 'ryanairrefund consumer': 728814, 'any update when': 80004, 'update when the': 947318, 'when the issue': 984165, 'issue is going': 455815, 'to be resolved': 901504, 'be resolved ryanairrefunderror': 116825, 'resolved ryanairrefunderror ryanairrefund': 714649, 'ryanairrefunderror ryanairrefund consumer': 728817, 'jello': 465045, 'be careful': 113978, 'careful home': 164402, 'home made': 401562, 'made hand': 507767, 'sanitizer can': 734625, 'can turn': 160066, 'into jello': 442677, 'jello shot': 465046, 'be careful home': 113987, 'careful home made': 164403, 'home made hand': 401567, 'made hand sanitizer': 507768, 'hand sanitizer can': 375334, 'sanitizer can turn': 734630, 'can turn into': 160068, 'turn into jello': 935690, 'into jello shot': 442678, '47': 19248, '47 00': 19249, '00 store': 500, 'store closed': 807055, 'closed in': 183169, 'in about': 419979, 'week over': 976714, '47 00 store': 19250, '00 store closed': 501, 'store closed in': 807063, 'closed in about': 183170, 'in about week': 419984, 'about week over': 26872, 'week over coronavirus': 976716, 'tescon': 838868, 'hit uk': 398496, 'uk very': 938859, 'very hard': 955210, 'hard recent': 378003, 'recent video': 704007, 'video of': 956821, 'of tescon': 590678, 'tescon supermarket': 838869, 'hit uk very': 398497, 'uk very hard': 938860, 'very hard recent': 955214, 'hard recent video': 378004, 'recent video of': 704008, 'video of tescon': 956835, 'of tescon supermarket': 590679, 'tescon supermarket in': 838870, 'supermarket in london': 820924, 'deliberately': 232950, 'damaged': 225248, 'kent': 472815, 'fleet': 310321, 'asap': 94854, 'six of': 772678, 'our ambulance': 622068, 'ambulance were': 51350, 'were deliberately': 979507, 'deliberately damaged': 232961, 'damaged overnight': 225257, 'overnight in': 631337, 'in kent': 424464, 'kent beyond': 472818, 'beyond disappointed': 129157, 'disappointed that': 244117, 'that anyone': 842683, 'anyone would': 80661, 'would do': 1011763, 'this ever': 887455, 'ever let': 285391, 'let alone': 486577, 'alone now': 46893, 'now when': 576391, 'when our': 983824, 'under so': 940253, 'much pressure': 545253, 'pressure well': 671252, 'done to': 255062, 'to fleet': 906009, 'fleet make': 310324, 'make ready': 510386, 'ready team': 700927, 'team for': 835638, 'getting these': 349373, 'these back': 879662, 'road asap': 724415, 'six of our': 772679, 'of our ambulance': 587422, 'our ambulance were': 622069, 'ambulance were deliberately': 51351, 'were deliberately damaged': 979508, 'deliberately damaged overnight': 232962, 'damaged overnight in': 225258, 'overnight in kent': 631338, 'in kent beyond': 424466, 'kent beyond disappointed': 472819, 'beyond disappointed that': 129159, 'disappointed that anyone': 244118, 'that anyone would': 842686, 'anyone would do': 80663, 'would do this': 1011770, 'do this ever': 250350, 'this ever let': 887456, 'ever let alone': 285392, 'let alone now': 486583, 'alone now when': 46895, 'now when our': 576394, 'when our staff': 983828, 'our staff are': 624875, 'staff are under': 792208, 'are under so': 91287, 'under so much': 940255, 'so much pressure': 777803, 'much pressure well': 545255, 'pressure well done': 671253, 'well done to': 978205, 'done to fleet': 255068, 'to fleet make': 906010, 'fleet make ready': 310325, 'make ready team': 510387, 'ready team for': 700928, 'team for getting': 835639, 'for getting these': 321870, 'getting these back': 349374, 'these back on': 879663, 'back on the': 107203, 'the road asap': 865921, 'dedicate': 231683, 'not make': 570490, 'make sense': 510432, 'sense for': 750515, 'supermarket retailer': 822233, 'to dedicate': 904042, 'dedicate some': 231686, 'staff key': 792602, 'worker only': 1007495, 'only and': 610089, 'and deliver': 61075, 'food direct': 314208, 'hospital nh': 404523, 'nh tesco': 562128, 'asda sainsbury': 94971, 'sainsbury morrison': 731700, 'would it not': 1011967, 'it not make': 459894, 'not make sense': 570506, 'make sense for': 510438, 'sense for supermarket': 750520, 'for supermarket retailer': 326019, 'supermarket retailer to': 822238, 'retailer to dedicate': 719378, 'to dedicate some': 904043, 'dedicate some food': 231687, 'some food delivery': 782857, 'delivery for nh': 234027, 'for nh staff': 323864, 'nh staff key': 562095, 'staff key worker': 792603, 'key worker only': 473503, 'worker only and': 1007496, 'only and deliver': 610091, 'and deliver food': 61077, 'deliver food direct': 233121, 'food direct to': 314210, 'direct to the': 243398, 'to the hospital': 916783, 'the hospital nh': 857526, 'hospital nh tesco': 404524, 'nh tesco asda': 562129, 'tesco asda sainsbury': 838672, 'asda sainsbury morrison': 94972, 'sanitizer today': 735958, 'today hard': 919612, 'to believe': 901746, 'believe all': 126238, 'all retailer': 44190, 'of something': 589925, 'so simple': 778220, 'simple to': 770126, 'make and': 509687, 'so vital': 778635, 'vital in': 959696, 'crisis 19': 216952, 'we are making': 970622, 'hand sanitizer today': 375629, 'sanitizer today hard': 735961, 'today hard to': 919613, 'hard to believe': 378052, 'to believe all': 901747, 'believe all retailer': 126239, 'all retailer in': 44191, 'retailer in the': 719206, 'the area are': 848876, 'area are still': 91955, 'are still out': 90460, 'still out of': 801009, 'of stock of': 590179, 'stock of something': 802546, 'of something that': 589929, 'something that is': 785078, 'that is so': 844653, 'is so simple': 452034, 'so simple to': 778222, 'simple to make': 770128, 'to make and': 909622, 'make and so': 509691, 'and so vital': 71854, 'so vital in': 778636, 'vital in this': 959697, 'in this crisis': 429927, 'this crisis 19': 887015, 'contribute': 201862, 'missourian': 534450, 'moleg': 535659, 'the drastic': 853668, 'drastic increase': 258405, 'in unemployment': 430424, 'unemployment caused': 941173, 'will contribute': 993027, 'contribute to': 201877, 'to rising': 913584, 'rising demand': 723192, 'assistance missourian': 96712, 'missourian struggle': 534451, 'make end': 509873, 'end meet': 275872, 'meet learn': 527521, 'what happening': 981549, 'happening and': 377316, 'what moleg': 981874, 'moleg others': 535660, 'others can': 621321, 'the drastic increase': 853670, 'drastic increase in': 258406, 'increase in unemployment': 432877, 'in unemployment caused': 430425, 'unemployment caused by': 941174, 'pandemic will contribute': 637003, 'will contribute to': 993029, 'contribute to rising': 201882, 'to rising demand': 913586, 'rising demand for': 723198, 'food assistance missourian': 313429, 'assistance missourian struggle': 96713, 'missourian struggle to': 534452, 'struggle to make': 814390, 'to make end': 909657, 'make end meet': 509874, 'end meet learn': 275878, 'meet learn more': 527522, 'more about what': 538529, 'about what happening': 26884, 'what happening and': 981551, 'happening and what': 377321, 'and what moleg': 75476, 'what moleg others': 981875, 'moleg others can': 535661, 'others can do': 621322, 'do to respond': 250401, '19 soap': 10661, 'soap maker': 779060, 'maker reduce': 510857, 'increase production': 433018, 'production amid': 681908, 'amid scare': 52640, '19 soap maker': 10662, 'soap maker reduce': 779061, 'maker reduce price': 510859, 'reduce price increase': 705900, 'price increase production': 674783, 'increase production amid': 433019, 'production amid scare': 681910, 'realize': 701835, 'keep adding': 471285, 'adding clothes': 31666, 'clothes to': 184220, 'cart but': 165275, 'but realize': 146895, 'realize that': 701847, 'that don': 843594, 'them because': 875464, 'keep adding clothes': 471286, 'adding clothes to': 31667, 'clothes to my': 184223, 'to my online': 910425, 'shopping cart but': 762297, 'cart but realize': 165276, 'but realize that': 146896, 'realize that don': 701850, 'that don need': 843599, 'don need them': 253772, 'need them because': 555772, 'begun': 123698, 'ha begun': 369992, 'begun france': 123707, 'france supermarket': 331034, 'supermarket lockdown': 821364, 'it ha begun': 458381, 'ha begun france': 369995, 'begun france supermarket': 123708, 'france supermarket lockdown': 331036, 'mitch': 534506, 'zeller': 1027362, 'upholding': 947574, 'scientific': 742160, 'bedrock': 120451, 'principle': 678235, 'fda official': 300890, 'official mitch': 595853, 'mitch zeller': 534512, 'zeller discus': 1027363, 'to quickly': 912675, 'quickly approve': 694466, 'approve treatment': 83119, 'treatment and': 931029, 'and test': 73132, 'while upholding': 987497, 'upholding scientific': 947575, 'scientific standard': 742177, 'standard in': 793671, 'in pandemic': 426455, 'what bedrock': 981090, 'bedrock principle': 120452, 'principle of': 678246, 'protection should': 685611, 'should remain': 766397, 'remain unchanged': 709897, 'unchanged he': 939784, 'he writes': 385704, 'writes fda': 1012838, 'fda official mitch': 300891, 'official mitch zeller': 595854, 'mitch zeller discus': 534513, 'zeller discus the': 1027364, 'discus the need': 244926, 'the need to': 861400, 'need to quickly': 556025, 'to quickly approve': 912678, 'quickly approve treatment': 694467, 'approve treatment and': 83120, 'treatment and test': 931033, 'and test while': 73134, 'test while upholding': 839239, 'while upholding scientific': 987498, 'upholding scientific standard': 947576, 'scientific standard in': 742178, 'standard in pandemic': 793674, 'in pandemic what': 426468, 'pandemic what bedrock': 636969, 'what bedrock principle': 981091, 'bedrock principle of': 120453, 'principle of consumer': 678247, 'of consumer protection': 581762, 'consumer protection should': 198562, 'protection should remain': 685612, 'should remain unchanged': 766401, 'remain unchanged he': 709898, 'unchanged he writes': 939785, 'he writes fda': 385705, 'to only': 910964, 'only shop': 611115, 'shop at': 759937, 'at one': 99965, 'one grocery': 606369, 'first one': 308827, 'give all': 350366, 'their employee': 873130, 'employee temporary': 274272, 'temporary hazard': 837631, 'hazard raise': 384578, 'vow to only': 960697, 'to only shop': 910978, 'only shop at': 611117, 'shop at one': 759952, 'at one grocery': 99968, 'one grocery store': 606370, 'store for life': 807816, 'for life for': 322968, 'the first one': 855331, 'first one that': 308832, 'one that give': 607176, 'that give all': 844010, 'give all their': 350369, 'all their employee': 44997, 'their employee temporary': 873153, 'employee temporary hazard': 274273, 'temporary hazard raise': 837632, 'shuts': 768173, 'economy is': 267985, 'is contracting': 446817, 'contracting at': 201761, 'at crippling': 98365, 'crippling rate': 216942, 'rate country': 697187, 'country shuts': 211054, 'shuts down': 768180, 'down consumer': 256651, 'spending drive': 788786, 'drive 70': 258977, 'economy with': 268362, 'with consumer': 997746, 'consumer at': 196333, 'home spending': 402104, 'is drying': 447397, 'drying up': 261338, 'up industry': 945198, 'industry slow': 436113, 'more and': 538610, 'those consumer': 891888, 'consumer lose': 198074, 'lose their': 503482, 'job it': 465917, 'will slow': 994872, 'slow economy': 774356, 'economy further': 267885, 'economy is contracting': 267996, 'is contracting at': 446818, 'contracting at crippling': 201762, 'at crippling rate': 98366, 'crippling rate country': 216943, 'rate country shuts': 697188, 'country shuts down': 211055, 'shuts down consumer': 768182, 'down consumer spending': 256656, 'consumer spending drive': 199053, 'spending drive 70': 788787, 'drive 70 of': 258978, '70 of american': 21798, 'of american economy': 580059, 'american economy with': 51939, 'economy with consumer': 268364, 'with consumer at': 997748, 'consumer at home': 196336, 'at home spending': 99114, 'home spending is': 402106, 'spending is drying': 788874, 'is drying up': 447398, 'drying up industry': 261341, 'up industry slow': 945199, 'industry slow down': 436114, 'slow down and': 774340, 'down and more': 256503, 'and more and': 67143, 'more and more': 538617, 'and more of': 67195, 'more of those': 539890, 'of those consumer': 592083, 'those consumer lose': 891889, 'consumer lose their': 198075, 'lose their job': 503486, 'their job it': 873719, 'job it will': 465923, 'it will slow': 462438, 'will slow economy': 994873, 'slow economy further': 774358, '5k': 20708, 'behaving': 123822, 'bankruptbritain': 110500, 'question people': 693691, 'people if': 648312, 'if government': 414170, 'gonna pay': 356589, 'pay up': 645207, 'to 5k': 899776, '5k per': 20715, 'per month': 650946, 'month to': 538076, 'for sitting': 325638, 'sitting at': 772096, 'home then': 402250, 'then behaving': 877028, 'behaving rationally': 123842, 'rationally why': 697768, 'would any': 1011522, 'worker petrol': 1007561, 'petrol pump': 653779, 'pump attendant': 689029, 'attendant or': 102357, 'etc turn': 282846, 'turn up': 935801, 'for work': 327916, 'all bankruptbritain': 42115, 'bankruptbritain coronacrisis': 110501, 'question people if': 693692, 'people if government': 648313, 'if government is': 414175, 'government is gonna': 360255, 'is gonna pay': 448132, 'gonna pay up': 356590, 'pay up to': 645208, 'up to 5k': 946342, 'to 5k per': 899777, '5k per month': 20716, 'per month to': 650950, 'month to everyone': 538081, 'to everyone for': 905335, 'everyone for sitting': 286920, 'for sitting at': 325639, 'sitting at home': 772097, 'at home then': 99140, 'home then behaving': 402251, 'then behaving rationally': 877029, 'behaving rationally why': 123844, 'rationally why would': 697769, 'why would any': 991565, 'would any supermarket': 1011523, 'any supermarket worker': 79920, 'supermarket worker petrol': 824068, 'worker petrol pump': 1007562, 'petrol pump attendant': 653780, 'pump attendant or': 689030, 'attendant or delivery': 102358, 'delivery driver etc': 233903, 'driver etc turn': 259537, 'etc turn up': 282847, 'turn up for': 935805, 'up for work': 944976, 'for work at': 327919, 'work at all': 1004858, 'at all bankruptbritain': 97872, 'all bankruptbritain coronacrisis': 42116, 'realigned': 701578, 'inequality': 436339, 'wholesaler and': 990509, 'and supplier': 72767, 'supplier are': 824492, 'avoid wasting': 105387, 'wasting excess': 968305, 'excess inventory': 289345, 'inventory and': 443641, 'management company': 512552, 'are reporting': 89596, 'reporting rise': 712750, 'rise in': 722873, 'in household': 423859, 'household number': 406894, 'number how': 576888, 'can supply': 159851, 'demand be': 235057, 'be realigned': 116706, 'realigned to': 701579, 'reduce waste': 706002, 'waste and': 968068, 'and inequality': 65191, 'wholesaler and supplier': 990511, 'and supplier are': 72768, 'supplier are trying': 824503, 'trying to avoid': 934769, 'to avoid wasting': 900958, 'avoid wasting excess': 105388, 'wasting excess inventory': 968306, 'excess inventory and': 289346, 'inventory and management': 443643, 'and management company': 66623, 'management company are': 512553, 'company are reporting': 190445, 'are reporting rise': 89600, 'reporting rise in': 712751, 'rise in household': 722887, 'in household number': 423862, 'household number how': 406895, 'number how can': 576889, 'how can supply': 407521, 'can supply and': 159852, 'and demand be': 61140, 'demand be realigned': 235058, 'be realigned to': 116707, 'realigned to reduce': 701580, 'to reduce waste': 913050, 'reduce waste and': 706003, 'waste and inequality': 968073, 'zoomed': 1027841, 'wrap': 1012656, 'this pic': 889570, 'pic is': 655606, 'is zoomed': 454184, 'zoomed shot': 1027842, 'shot of': 765429, 'long this': 501746, 'this line': 888632, 'line in': 493190, 'is during': 447412, 'before easter': 122755, 'easter sunday': 265501, 'sunday during': 818192, 'the size': 867293, 'size of': 772783, 'of football': 583849, 'field and': 304452, 'line wrap': 493614, 'wrap through': 1012666, 'least aisle': 484385, 'this pic is': 889572, 'pic is zoomed': 655607, 'is zoomed shot': 454185, 'zoomed shot of': 1027843, 'shot of how': 765431, 'of how long': 584831, 'how long this': 408211, 'long this line': 501749, 'this line in': 888633, 'line in the': 493204, 'in the is': 429294, 'the is during': 858494, 'is during the': 447414, 'during the day': 263114, 'the day before': 852871, 'day before easter': 227367, 'before easter sunday': 122760, 'easter sunday during': 265505, 'sunday during the': 818193, 'pandemic the store': 636704, 'the store is': 868043, 'store is like': 808501, 'is like the': 449333, 'like the size': 491397, 'the size of': 867295, 'size of football': 772788, 'of football field': 583850, 'football field and': 318489, 'field and the': 304454, 'and the line': 73451, 'the line wrap': 859426, 'line wrap through': 493615, 'wrap through at': 1012667, 'through at least': 894342, 'at least aisle': 99461, 'flixton': 310654, 'lovestmichaels': 505037, 'everylittlehelps': 286664, 'ordering your': 619050, 'your shopping': 1025772, 'online whilst': 609726, 'whilst self': 987680, 'isolating you': 455171, 'be raising': 116674, 'raising free': 696084, 'free donation': 331774, 'donation with': 254736, 'with just': 999122, 'just go': 468824, 'to to': 917584, 'get started': 348102, 'started make': 794773, 'make difference': 509829, 'difference flixton': 241836, 'flixton lovestmichaels': 310655, 'lovestmichaels donation': 505038, 'donation everylittlehelps': 254601, 'ordering your shopping': 619051, 'your shopping online': 1025787, 'shopping online whilst': 763508, 'online whilst self': 609727, 'whilst self isolating': 987681, 'self isolating you': 747748, 'isolating you could': 455172, 'you could be': 1018076, 'could be raising': 208911, 'be raising free': 116676, 'raising free donation': 696085, 'free donation with': 331776, 'donation with just': 254737, 'with just go': 999124, 'just go to': 468829, 'go to to': 354376, 'to to get': 917590, 'to get started': 906600, 'get started make': 348105, 'started make difference': 794774, 'make difference flixton': 509831, 'difference flixton lovestmichaels': 241837, 'flixton lovestmichaels donation': 310656, 'lovestmichaels donation everylittlehelps': 505039, 'me something': 523516, 'something after': 784836, 'for special': 325807, 'special supermarket': 788061, 'senior this': 750419, 'happen thanks': 377160, 'thanks publix': 842159, 'tell me something': 837020, 'me something after': 523517, 'something after advocating': 784837, 'advocating for special': 33867, 'for special supermarket': 325811, 'special supermarket shopping': 788065, 'supermarket shopping hour': 822637, 'for senior this': 325481, 'senior this is': 750420, 'to happen thanks': 907161, 'happen thanks publix': 377161, 'thanks publix miami': 842160, 'newsalert': 560994, 'wti': 1013374, 'slumped': 774717, '2003': 13586, 'slash': 773550, 'afp': 34965, 'newsalert the': 561001, 'the benchmark': 849463, 'benchmark west': 126852, 'texas intermediate': 839789, 'intermediate wti': 441708, 'wti oil': 1013399, 'oil slumped': 597439, 'slumped to': 774722, 'lowest level': 506183, 'level since': 487700, 'since 2003': 770441, '2003 to': 13605, 'just above': 468140, 'above 25': 27032, '25 per': 15942, 'barrel the': 111286, 'the slash': 867318, 'slash global': 773565, 'global demand': 351859, 'for crude': 320467, 'crude afp': 219500, 'newsalert the benchmark': 561002, 'the benchmark west': 849465, 'benchmark west texas': 126853, 'west texas intermediate': 980541, 'texas intermediate wti': 839791, 'intermediate wti oil': 441709, 'wti oil slumped': 1013401, 'oil slumped to': 597440, 'slumped to it': 774723, 'to it lowest': 908595, 'it lowest level': 459482, 'lowest level since': 506186, 'level since 2003': 487704, 'since 2003 to': 770448, '2003 to just': 13606, 'to just above': 908720, 'just above 25': 468141, 'above 25 per': 27033, '25 per barrel': 15943, 'per barrel the': 650710, 'barrel the slash': 111291, 'the slash global': 867320, 'slash global demand': 773566, 'global demand for': 351866, 'demand for crude': 235398, 'for crude afp': 320468, 'march 199': 515119, '199 oil': 12470, 'price 14': 672108, '14 40': 3398, '40 up': 18682, 'up from': 944980, 'producer from': 680626, 'from 13': 334188, '13 nation': 3237, 'nation will': 552389, 'will cut': 993082, 'cut world': 223633, 'production at': 681937, 'least in': 484514, 'their latest': 873790, 'latest attempt': 481225, 'boost price': 134994, 'price oil': 675623, 'oil minister': 596955, 'minister from': 533369, 'from five': 335482, 'five nation': 309646, 'nation said': 552301, 'said back': 730988, 'day we': 228670, 'we did': 971289, 'march 199 oil': 515120, '199 oil price': 12471, 'oil price 14': 597026, 'price 14 40': 672109, '14 40 up': 3399, '40 up from': 18683, 'up from the': 944993, 'from the low': 337781, 'the low oil': 859781, 'low oil producer': 505447, 'oil producer from': 597339, 'producer from 13': 680627, 'from 13 nation': 334189, '13 nation will': 3238, 'nation will cut': 552391, 'will cut world': 993089, 'cut world oil': 223634, 'world oil production': 1009862, 'oil production at': 597361, 'production at least': 681939, 'at least in': 99510, 'least in their': 484520, 'in their latest': 429754, 'their latest attempt': 873791, 'latest attempt to': 481226, 'attempt to boost': 102237, 'to boost price': 901926, 'boost price oil': 134995, 'price oil minister': 675627, 'oil minister from': 596956, 'minister from five': 533370, 'from five nation': 335483, 'five nation said': 309647, 'nation said back': 552302, 'said back in': 730989, 'back in the': 107100, 'in the day': 429124, 'the day we': 852923, 'day we did': 228675, 'we did not': 971294, 'did not have': 240716, 'implementing': 418498, '7am': 22401, 'allergic': 45758, 'vertical': 954961, 'got an': 358398, 'an email': 55652, 'are implementing': 87330, 'implementing special': 418521, 'for shopper': 325566, 'shopper 60': 761333, '60 year': 21047, 'old to': 598505, 'help mitigate': 390099, 'mitigate exposure': 534529, '19 6am': 4759, '6am 7am': 21550, '7am day': 22412, 'week allergic': 975878, 'allergic to': 45759, 'to morning': 910272, 'morning can': 541209, 'imagine being': 416693, 'being vertical': 126030, 'vertical at': 954962, 'that hour': 844372, 'hour much': 405769, 'much le': 545036, 'le out': 483057, 'public lol': 688147, 'just got an': 468848, 'got an email': 358400, 'an email from': 55657, 'email from my': 272188, 'from my supermarket': 336529, 'my supermarket that': 550280, 'supermarket that they': 823199, 'they are implementing': 881302, 'are implementing special': 87332, 'implementing special hour': 418522, 'special hour for': 787959, 'hour for shopper': 405619, 'for shopper 60': 325567, 'shopper 60 year': 761334, '60 year old': 21050, 'year old to': 1014872, 'old to help': 598506, 'to help mitigate': 907564, 'help mitigate exposure': 390101, 'mitigate exposure to': 534530, 'exposure to covid': 293008, 'covid 19 6am': 212565, '19 6am 7am': 4760, '6am 7am day': 21551, '7am day week': 22413, 'day week allergic': 228686, 'week allergic to': 975879, 'allergic to morning': 45761, 'to morning can': 910273, 'morning can imagine': 541210, 'can imagine being': 158718, 'imagine being vertical': 416700, 'being vertical at': 126031, 'vertical at that': 954963, 'at that hour': 100854, 'that hour much': 844374, 'hour much le': 405770, 'much le out': 545042, 'le out in': 483058, 'out in public': 626392, 'in public lol': 427087, 'last month': 480325, 'month over': 537941, 'started new': 794784, 'new job': 558985, 'job at': 465671, 'at amazon': 97945, 'amazon we': 51188, 'we couldn': 971222, 'couldn be': 209865, 'more grateful': 539362, 'our team': 625093, 'for serving': 325503, 'serving their': 753222, 'their community': 872822, 'this unprecedented': 890918, 'unprecedented time': 943194, 're creating': 698482, 'creating an': 215975, 'additional 75': 31770, '75 00': 22100, '00 job': 284, 'job to': 466214, 'get item': 347444, 'in the last': 429307, 'the last month': 859023, 'last month over': 480337, 'month over 100': 537942, 'over 100 00': 629763, '100 00 people': 1795, '00 people have': 410, 'people have started': 648198, 'have started new': 382724, 'started new job': 794785, 'new job at': 558987, 'job at amazon': 465672, 'at amazon we': 97954, 'amazon we couldn': 51189, 'we couldn be': 971224, 'couldn be more': 209869, 'be more grateful': 115978, 'more grateful to': 539364, 'grateful to our': 362324, 'to our team': 911248, 'our team for': 625101, 'team for serving': 835641, 'for serving their': 325505, 'serving their community': 753223, 'their community during': 872825, 'community during this': 189828, 'during this unprecedented': 263333, 'this unprecedented time': 890921, 'unprecedented time we': 943206, 'we re creating': 972850, 're creating an': 698483, 'creating an additional': 215976, 'an additional 75': 55110, 'additional 75 00': 31771, '75 00 job': 22101, '00 job to': 287, 'job to help': 466227, 'to help people': 907586, 'help people get': 390295, 'people get item': 648053, 'get item they': 347446, 'item they need': 463725, 'afterglow': 36634, 'fade': 296055, 'stockcrash': 803241, 'europe chemical': 283419, 'chemical price': 175373, 'stock sink': 802855, 'sink stimulus': 771487, 'stimulus afterglow': 801499, 'afterglow fade': 36635, 'fade stockcrash': 296058, 'stockcrash petrochemical': 803242, 'petrochemical chemical': 653672, 'chemical crude': 175345, 'europe chemical price': 283420, 'chemical price stock': 175376, 'price stock sink': 676667, 'stock sink stimulus': 802856, 'sink stimulus afterglow': 771488, 'stimulus afterglow fade': 801500, 'afterglow fade stockcrash': 36636, 'fade stockcrash petrochemical': 296059, 'stockcrash petrochemical chemical': 803243, 'petrochemical chemical crude': 653673, 'seeking': 746639, 'although it': 49327, 'may seem': 521484, 'like job': 490580, 'job opportunity': 466057, 'opportunity are': 613589, 'running thin': 728102, 'thin business': 884051, 'healthcare and': 387023, 'of extra': 583342, 'extra help': 293538, 'support right': 826795, 'people seeking': 649376, 'seeking their': 746655, 'their service': 874654, 'although it may': 49332, 'it may seem': 459554, 'may seem like': 521485, 'seem like job': 746672, 'like job opportunity': 490581, 'job opportunity are': 466059, 'opportunity are running': 613590, 'are running thin': 89774, 'running thin business': 728103, 'thin business in': 884052, 'business in the': 143905, 'in the healthcare': 429262, 'the healthcare and': 857192, 'healthcare and food': 387029, 'and food industry': 63057, 'food industry are': 315006, 'industry are in': 435663, 'need of extra': 555327, 'of extra help': 583345, 'extra help and': 293539, 'help and support': 389359, 'and support right': 72851, 'support right now': 826796, 'right now with': 722188, 'now with the': 576456, 'demand of people': 235953, 'of people seeking': 587979, 'people seeking their': 649378, 'seeking their service': 746656, 'dry': 261236, 'wheezy': 983092, 'commencing': 188362, 'moi': 535589, 'that me': 845099, 'me self': 523431, 'isolating for': 455092, 'day first': 227603, 'one at': 605963, 'at number': 99928, 'number with': 577091, 'with dry': 998148, 'dry cough': 261255, 'cough and': 208445, 'and little': 66237, 'little wheezy': 495648, 'wheezy dont': 983097, 'dont think': 255294, 'be responsible': 116831, 'responsible and': 716001, 'play my': 659195, 'my part': 549708, 'part laptop': 642313, 'laptop on': 479565, 'way soon': 969885, 'soon from': 785711, 'from work': 338401, 'work online': 1005549, 'shopping commencing': 762379, 'commencing for': 188363, 'for moi': 323478, 'moi and': 535590, 'and bit': 58985, 'that me self': 845101, 'me self isolating': 523432, 'self isolating for': 747724, 'isolating for day': 455095, 'for day first': 320569, 'day first one': 227604, 'first one at': 308828, 'one at number': 605968, 'at number with': 99929, 'number with dry': 577092, 'with dry cough': 998149, 'dry cough and': 261256, 'cough and little': 208447, 'and little wheezy': 66245, 'little wheezy dont': 495649, 'wheezy dont think': 983098, 'dont think it': 255296, 'think it is': 885339, 'it is covid': 458916, '19 but need': 5515, 'to be responsible': 901505, 'be responsible and': 116832, 'responsible and play': 716002, 'and play my': 69088, 'play my part': 659196, 'my part laptop': 549710, 'part laptop on': 642314, 'laptop on the': 479566, 'on the way': 604441, 'the way soon': 871187, 'way soon from': 969886, 'soon from work': 785712, 'from work online': 338415, 'work online shopping': 1005552, 'online shopping commencing': 609074, 'shopping commencing for': 762380, 'commencing for moi': 188364, 'for moi and': 323479, 'moi and bit': 535591, 'and bit of': 58986, 'bit of cleaning': 131636, 'hopkins': 403970, 'interactive': 441275, 'dashboard': 226078, 'malicious website': 511720, 'website used': 975462, 'used the': 950012, 'real john': 701239, 'john hopkins': 466534, 'hopkins university': 403971, 'university interactive': 942434, 'interactive dashboard': 441282, 'dashboard of': 226081, 'and death': 60983, 'death to': 230240, 'spread password': 790747, 'password stealing': 643481, 'stealing malware': 799242, 'malware learn': 511900, 'spot malware': 790074, 'malicious website used': 511721, 'website used the': 975463, 'used the real': 950016, 'the real john': 865225, 'real john hopkins': 701240, 'john hopkins university': 466535, 'hopkins university interactive': 403972, 'university interactive dashboard': 942435, 'interactive dashboard of': 441283, 'dashboard of infection': 226082, 'infection and death': 436709, 'and death to': 60992, 'death to spread': 230243, 'to spread password': 915073, 'spread password stealing': 790748, 'password stealing malware': 643482, 'stealing malware learn': 799243, 'malware learn more': 511901, 'to spot malware': 915039, 'consumerist': 199719, 'culture': 220283, 'coronavirus wake': 207038, 'wake up': 964616, 'up call': 944563, 'for global': 321895, 'global consumerist': 351813, 'consumerist culture': 199720, 'culture consumer': 220288, 'coronavirus wake up': 207039, 'wake up call': 964620, 'up call for': 944567, 'call for global': 155869, 'for global consumerist': 321896, 'global consumerist culture': 351814, 'consumerist culture consumer': 199721, 'grocerystores': 366355, 'line if': 493186, 'the money': 860804, 'money do': 536704, 'buy you': 149486, 'you normally': 1020112, 'normally would': 567575, 'would maybe': 1012035, 'maybe stock': 521806, 'for or': 324149, 'or week': 617754, 'week max': 976517, 'max but': 520743, 'also consider': 48054, 'low on': 505452, 'on fund': 601055, 'fund and': 341354, 'food themselves': 317141, 'themselves retail': 876876, 'retail grocerystores': 718164, 'bottom line if': 136410, 'line if you': 493187, 'have the money': 383002, 'the money do': 860809, 'money do not': 536706, 'not worry about': 572564, 'worry about food': 1010637, 'about food buy': 25252, 'food buy you': 313846, 'buy you normally': 149489, 'you normally would': 1020115, 'normally would maybe': 567577, 'would maybe stock': 1012036, 'maybe stock up': 521807, 'up for or': 944952, 'for or week': 324153, 'or week max': 617756, 'week max but': 976518, 'max but also': 520744, 'but also consider': 145103, 'also consider donating': 48055, 'donating to those': 254526, 'who are low': 988171, 'are low on': 87934, 'low on fund': 505459, 'on fund and': 601056, 'fund and cannot': 341355, 'and cannot afford': 59505, 'afford to buy': 34790, 'buy food themselves': 148678, 'food themselves retail': 317142, 'themselves retail grocerystores': 876877, 'bhukari': 129399, 'unlike': 942688, 'hungar': 411044, 'collapsi': 186122, 'bhukari is': 129400, 'not contagious': 568852, 'contagious people': 200443, 'could know': 209368, 'is hungry': 448634, 'hungry or': 411287, 'not unlike': 572335, 'unlike covid': 942699, '19 hungar': 7632, 'hungar dont': 411045, 'dont create': 255202, 'create panic': 215713, 'to others': 911128, 'others hunger': 621464, 'hunger dont': 411096, 'dont push': 255275, 'push other': 690307, 'stock excess': 802099, 'excess food': 289337, 'item hunger': 463333, 'dont give': 255220, 'of collapsi': 581524, 'bhukari is not': 129401, 'is not contagious': 450049, 'not contagious people': 568853, 'contagious people could': 200444, 'people could know': 647560, 'could know if': 209369, 'know if he': 476474, 'if he is': 414218, 'he is hungry': 385129, 'is hungry or': 448635, 'hungry or not': 411288, 'or not unlike': 616318, 'not unlike covid': 572336, 'unlike covid 19': 942700, 'covid 19 hungar': 213236, '19 hungar dont': 7633, 'hungar dont create': 411046, 'dont create panic': 255203, 'create panic to': 215718, 'panic to others': 638721, 'to others hunger': 911135, 'others hunger dont': 621465, 'hunger dont push': 411098, 'dont push other': 255276, 'push other people': 690308, 'other people to': 620692, 'people to stock': 649946, 'to stock excess': 915432, 'stock excess food': 802100, 'excess food item': 289341, 'food item hunger': 315211, 'item hunger dont': 463334, 'hunger dont give': 411097, 'dont give the': 255221, 'give the threat': 350755, 'threat of collapsi': 893688, 'birthday': 131411, 'wth': 1013357, 'zoom': 1027796, 'meeting': 527663, 'celebrate my': 168793, 'my birthday': 547457, 'birthday despite': 131427, 'despite why': 238929, 'my guest': 548591, 'guest asking': 368144, 'asking wth': 96111, 'wth wa': 1013372, 'wa sending': 963162, 'sending them': 750101, 'them the': 876386, 'link to': 493921, 'my zoom': 550677, 'zoom meeting': 1027811, 'decided to celebrate': 230904, 'to celebrate my': 902554, 'celebrate my birthday': 168794, 'my birthday despite': 547458, 'birthday despite why': 131428, 'despite why are': 238930, 'why are all': 990760, 'are all my': 84326, 'all my guest': 43558, 'my guest asking': 548592, 'guest asking wth': 368145, 'asking wth wa': 96112, 'wth wa sending': 1013373, 'wa sending them': 963163, 'sending them the': 750104, 'them the link': 876388, 'the link to': 859445, 'link to my': 493935, 'to my zoom': 910454, 'my zoom meeting': 550678, 'broker': 140931, 'navigating': 553116, 'broker buyer': 140932, 'buyer and': 149554, 'and seller': 71221, 'seller are': 748971, 'all navigating': 43586, 'navigating uncertainty': 553137, 'uncertainty amid': 939643, 'broker buyer and': 140933, 'buyer and seller': 149560, 'and seller are': 71222, 'seller are all': 748972, 'are all navigating': 84327, 'all navigating uncertainty': 43587, 'navigating uncertainty amid': 553138, 'uncertainty amid the': 939645, 'installment': 440050, 'purna': 690068, 'mishra': 534043, 'outline': 629087, 'effectively': 269334, 'latest special': 481552, 'special series': 788049, 'series installment': 751258, 'installment focus': 440051, 'associate ceo': 96852, 'ceo purna': 169814, 'purna mishra': 690069, 'mishra outline': 534048, 'outline key': 629091, 'key recommendation': 473384, 'for these': 326960, 'these critical': 879835, 'critical front': 218566, 'to effectively': 904949, 'effectively and': 269335, 'and safely': 70730, 'safely operate': 730291, 'operate amid': 612974, 'pandemic grocery': 635512, 'supermarket retail': 822230, 'our latest special': 623680, 'latest special series': 481553, 'special series installment': 788051, 'series installment focus': 751259, 'installment focus on': 440052, 'focus on food': 311874, 'on food store': 600915, 'food store associate': 316842, 'store associate ceo': 806562, 'associate ceo purna': 96853, 'ceo purna mishra': 169815, 'purna mishra outline': 690072, 'mishra outline key': 534049, 'outline key recommendation': 629092, 'key recommendation for': 473385, 'recommendation for these': 704751, 'for these critical': 326962, 'these critical front': 879836, 'critical front line': 218567, 'line worker to': 493608, 'worker to effectively': 1008003, 'to effectively and': 904950, 'effectively and safely': 269336, 'and safely operate': 70731, 'safely operate amid': 730292, 'operate amid the': 612975, '19 pandemic grocery': 9339, 'pandemic grocery supermarket': 635517, 'grocery supermarket retail': 366003, 'trai': 929204, 'dth': 261408, 'connecti': 194675, 'pls sir': 661176, 'sir covid': 771551, '19 lock': 8364, 'rural area': 728222, 'area some': 92191, 'of middle': 586481, 'middle class': 530627, 'class and': 180145, 'and poor': 69188, 'poor people': 664248, 'have tv': 383432, 'tv but': 936095, 'but per': 146775, 'per new': 650957, 'new trai': 559779, 'trai dth': 929205, 'dth rule': 261413, 'rule dth': 727234, 'dth price': 261410, 'increase so': 433066, 'can come': 157929, 'come out': 187460, 'in evening': 422667, 'evening time': 284914, 'time plz': 897504, 'plz to': 661843, 'reduce dth': 705823, 'or give': 615457, 'free service': 332140, 'all dth': 42636, 'dth connecti': 261409, 'pls sir covid': 661178, 'sir covid 19': 771552, 'covid 19 lock': 213366, '19 lock down': 8365, 'down in rural': 256867, 'in rural area': 427575, 'rural area some': 728225, 'area some of': 92192, 'some of middle': 783400, 'of middle class': 586482, 'middle class and': 530628, 'class and poor': 180147, 'and poor people': 69193, 'poor people have': 664252, 'people have tv': 648209, 'have tv but': 383434, 'tv but per': 936096, 'but per new': 146776, 'per new trai': 650958, 'new trai dth': 559780, 'trai dth rule': 929206, 'dth rule dth': 261414, 'rule dth price': 727235, 'dth price increase': 261411, 'price increase so': 674788, 'increase so they': 433068, 'they can come': 881621, 'can come out': 157935, 'come out in': 187467, 'out in evening': 626376, 'in evening time': 422668, 'evening time plz': 284915, 'time plz to': 897505, 'plz to reduce': 661844, 'to reduce dth': 913019, 'reduce dth price': 705824, 'dth price or': 261412, 'price or give': 675776, 'or give free': 615458, 'give free service': 350505, 'free service to': 332143, 'service to all': 752965, 'to all dth': 900243, 'all dth connecti': 42637, 'tight': 895816, 'tag': 831741, 'retailhell': 719459, 'retailproblems': 719531, 'shortage price': 765182, 'price suck': 676692, 'suck money': 816905, 'is tight': 453153, 'tight just': 895827, 'just bc': 468263, 'bc have': 113237, 'have name': 381551, 'name tag': 551681, 'tag on': 831764, 'on doesn': 600371, 'mean do': 524404, 'not experience': 569331, 'experience this': 291508, 'this well': 891335, 'well also': 978004, 'also doesn': 48116, 'can rip': 159486, 'rip into': 722652, 'into me': 442745, 'and threaten': 74069, 'threaten me': 893756, 'me because': 522499, 'want customerservice': 965760, 'customerservice retailhell': 223168, 'retailhell retailproblems': 719460, 'are shortage price': 90075, 'shortage price suck': 765184, 'price suck money': 676693, 'suck money is': 816906, 'money is tight': 536851, 'is tight just': 453155, 'tight just bc': 895828, 'just bc have': 468264, 'bc have name': 113238, 'have name tag': 381552, 'name tag on': 551683, 'tag on doesn': 831765, 'on doesn mean': 600372, 'doesn mean do': 251885, 'mean do not': 524405, 'do not experience': 249731, 'not experience this': 569332, 'experience this well': 291512, 'this well also': 891337, 'well also doesn': 978005, 'also doesn mean': 48118, 'doesn mean you': 251895, 'mean you can': 524784, 'you can rip': 1017771, 'can rip into': 159487, 'rip into me': 722653, 'into me and': 442746, 'me and threaten': 522431, 'and threaten me': 74070, 'threaten me because': 893757, 'me because you': 522505, 'because you cannot': 119864, 'you cannot get': 1017863, 'get what you': 348624, 'what you want': 982697, 'you want customerservice': 1022135, 'want customerservice retailhell': 965761, 'customerservice retailhell retailproblems': 223169, 'rich': 721185, 'littlebitofhumanity': 495659, 'before lockdown': 122912, 'lockdown and': 499131, 'and bought': 59100, 'bought my': 136649, 'mom dozen': 535724, 'dozen rose': 257916, 'rose three': 726096, 'three of': 894009, 'her kid': 392151, 'kid are': 473862, 'are about': 84156, 'be unemployed': 117857, 'unemployed she': 941129, 'she work': 756473, 'the rich': 865776, 'rich are': 721191, 'off this': 594304, 'pandemic but': 635037, 'but rose': 146947, 'rose lockdown': 726081, 'lockdown staysafestayhome': 499964, 'staysafestayhome littlebitofhumanity': 799002, 'store before lockdown': 806700, 'before lockdown and': 122913, 'lockdown and bought': 499135, 'and bought my': 59109, 'bought my mom': 136651, 'my mom dozen': 549268, 'mom dozen rose': 535725, 'dozen rose three': 257917, 'rose three of': 726097, 'three of her': 894012, 'of her kid': 584577, 'her kid are': 392152, 'kid are about': 473863, 'are about to': 84160, 'to be unemployed': 901609, 'be unemployed she': 117859, 'unemployed she work': 941130, 'she work at': 756474, 'work at hospital': 1004876, 'at hospital and': 99189, 'hospital and the': 404287, 'and the rich': 73555, 'the rich are': 865778, 'rich are trying': 721194, 'trying to profit': 934844, 'to profit off': 912233, 'profit off this': 682823, 'off this pandemic': 594308, 'this pandemic but': 889375, 'pandemic but rose': 635052, 'but rose lockdown': 146948, 'rose lockdown staysafestayhome': 726082, 'lockdown staysafestayhome littlebitofhumanity': 499965, 'mondel': 536523, 'hourly': 406128, '125': 3067, 'representative': 712891, 'mondel international': 536524, 'international inc': 441819, 'inc on': 431299, 'on monday': 602149, 'monday said': 536373, 'would increase': 1011948, 'increase hourly': 432808, 'hourly wage': 406141, 'wage by': 963835, 'and pay': 68793, 'pay 125': 644697, '125 weekly': 3076, 'weekly bonus': 977477, 'it sale': 460857, 'sale representative': 732492, 'representative it': 712906, 'it rush': 460821, 'rush to': 728336, 'meet surge': 527581, 'it packaged': 460230, 'mondel international inc': 536525, 'international inc on': 441820, 'inc on monday': 431300, 'on monday said': 602183, 'monday said it': 536374, 'said it would': 731175, 'it would increase': 462597, 'would increase hourly': 1011949, 'increase hourly wage': 432809, 'hourly wage by': 406142, 'wage by and': 963837, 'by and pay': 151847, 'and pay 125': 68794, 'pay 125 weekly': 644698, '125 weekly bonus': 3077, 'weekly bonus for': 977478, 'bonus for it': 134375, 'for it sale': 322730, 'it sale representative': 460858, 'sale representative it': 732493, 'representative it rush': 712907, 'it rush to': 460822, 'rush to meet': 728345, 'to meet surge': 910053, 'meet surge in': 527583, 'demand for it': 235445, 'for it packaged': 322723, 'it packaged food': 460231, 'packaged food due': 633480, 'a1': 24055, 'represent': 712864, 'outsize': 629666, 'immigrantsthrive': 417251, 'a1 our': 24056, 'our research': 624601, 'research show': 713837, 'show immigrant': 767004, 'immigrant make': 417227, 'make up': 510679, 'up 16': 944123, 'and represent': 70279, 'represent an': 712867, 'an outsize': 56741, 'outsize share': 629667, 'share of': 755114, 'workforce in': 1008366, 'in support': 428734, 'support industry': 826593, 'industry like': 435966, 'worker 16': 1006180, '16 immigrant': 4124, 'immigrant and': 417210, '18 immigrant': 4543, 'immigrant immigrantsthrive': 417224, 'a1 our research': 24057, 'our research show': 624606, 'research show immigrant': 713839, 'show immigrant make': 767005, 'immigrant make up': 417228, 'make up 16': 510680, 'up 16 of': 944125, 'healthcare worker and': 387342, 'worker and represent': 1006327, 'and represent an': 70280, 'represent an outsize': 712869, 'an outsize share': 56742, 'outsize share of': 629668, 'share of the': 755121, 'of the workforce': 591628, 'the workforce in': 871774, 'workforce in support': 1008368, 'in support industry': 428736, 'support industry like': 826594, 'industry like grocery': 435967, 'like grocery supermarket': 490348, 'grocery supermarket worker': 366007, 'supermarket worker 16': 823977, 'worker 16 immigrant': 1006181, '16 immigrant and': 4125, 'immigrant and food': 417211, 'and food delivery': 63035, 'delivery worker 18': 234764, 'worker 18 immigrant': 1006183, '18 immigrant immigrantsthrive': 4544, 'outer': 628931, 'packaging': 633517, 'binned': 131113, 'forget that': 329289, 'that with': 847624, 'any delivery': 79105, 'delivery you': 234786, 'receive make': 703504, 'sure that': 827690, 'you wipe': 1022365, 'wipe them': 996390, 'them down': 875622, 'with sanitizer': 1000565, 'wipe or': 996333, 'or disinfectant': 614992, 'disinfectant outer': 245722, 'outer packaging': 628935, 'packaging get': 633541, 'get binned': 346675, 'binned straight': 131114, 'straight away': 812202, 'away wipe': 106115, 'wipe down': 996230, 'down door': 256691, 'door handle': 255604, 'handle and': 376165, 'keep washing': 472198, 'not forget that': 569514, 'forget that with': 329297, 'that with any': 847626, 'with any delivery': 997274, 'any delivery you': 79107, 'delivery you receive': 234788, 'you receive make': 1020853, 'receive make sure': 703505, 'make sure that': 510529, 'sure that you': 827705, 'that you wipe': 847754, 'you wipe them': 1022366, 'wipe them down': 996392, 'them down with': 875630, 'down with sanitizer': 257501, 'with sanitizer wipe': 1000574, 'sanitizer wipe or': 736123, 'wipe or disinfectant': 996335, 'or disinfectant outer': 614994, 'disinfectant outer packaging': 245723, 'outer packaging get': 628936, 'packaging get binned': 633542, 'get binned straight': 346676, 'binned straight away': 131115, 'straight away wipe': 812204, 'away wipe down': 106116, 'wipe down door': 996234, 'down door handle': 256692, 'door handle and': 255605, 'handle and keep': 376166, 'and keep washing': 65786, 'keep washing hand': 472199, 'shameless': 754719, 'army': 92987, 'keyworking': 473617, 'yet also': 1015981, 'there still': 879095, 'still shameless': 801172, 'shameless panic': 754726, 'buying need': 150746, 'the army': 848903, 'army to': 93049, 'and distribution': 61524, 'vulnerable and': 960854, 'and keyworking': 65824, 'keyworking people': 473618, 'yet also there': 1015982, 'also there still': 48994, 'there still shameless': 879105, 'still shameless panic': 801173, 'shameless panic buying': 754727, 'panic buying need': 637816, 'buying need to': 150748, 'need to the': 556104, 'to the army': 916495, 'the army to': 848912, 'army to protect': 93050, 'protect the supply': 684984, 'chain and distribution': 170460, 'and distribution of': 61530, 'distribution of food': 248174, 'of food to': 583802, 'food to vulnerable': 317302, 'to vulnerable and': 918244, 'vulnerable and keyworking': 960864, 'and keyworking people': 65825, 'coffin': 185572, 'trend is': 931377, 'already away': 47206, 'shopping pandemic': 763587, 'the final': 855191, 'final nail': 305850, 'nail in': 551447, 'in that': 428910, 'that coffin': 843250, 'trend is already': 931378, 'is already away': 445511, 'already away from': 47207, 'from the high': 337741, 'high street and': 395428, 'street and to': 812903, 'and to online': 74189, 'online shopping pandemic': 609218, 'shopping pandemic may': 763588, 'pandemic may be': 635939, 'be the final': 117611, 'the final nail': 855196, 'final nail in': 305851, 'nail in that': 551448, 'in that coffin': 428916, 'cycled': 224071, 'ticked': 895580, 'th': 840043, 'mavieconfinee': 520729, 'confinementjour2': 194090, 'relax': 708803, 'well officer': 978432, 'officer it': 595678, 'is quite': 451190, 'quite simple': 694914, 'simple actually': 769981, 'actually cycled': 30771, 'cycled up': 224072, 'the hill': 857376, 'hill to': 396492, 'buy cat': 148475, 'so ticked': 778520, 'ticked all': 895581, 'all th': 44619, 'th box': 840046, 'box mavieconfinee': 137100, 'mavieconfinee confinementjour2': 520730, 'confinementjour2 relax': 194091, 'well officer it': 978433, 'officer it is': 595680, 'it is quite': 459053, 'is quite simple': 451195, 'quite simple actually': 694915, 'simple actually cycled': 769982, 'actually cycled up': 30772, 'cycled up the': 224073, 'up the hill': 946180, 'the hill to': 857377, 'hill to the': 396493, 'supermarket to buy': 823359, 'to buy cat': 902202, 'buy cat food': 148476, 'cat food so': 166872, 'food so ticked': 316669, 'so ticked all': 778521, 'ticked all th': 895582, 'all th box': 44620, 'th box mavieconfinee': 840047, 'box mavieconfinee confinementjour2': 137101, 'mavieconfinee confinementjour2 relax': 520731, 'our safe': 624660, 'safe from': 729687, 'let help keep': 486784, 'help keep our': 389969, 'keep our safe': 471743, 'our safe from': 624661, 'hope one': 403579, 'thing this': 884859, 'pandemic teach': 636621, 'teach is': 835394, 'that working': 847663, 'working class': 1008558, 'class people': 180237, 'from teacher': 337550, 'teacher to': 835521, 'employee don': 273781, 'don make': 253716, 'make enough': 509875, 'enough damn': 277361, 'hope one thing': 403581, 'one thing this': 607236, 'thing this pandemic': 884867, 'this pandemic teach': 889431, 'pandemic teach is': 636622, 'teach is that': 835395, 'is that working': 452711, 'that working class': 847664, 'working class people': 1008564, 'class people from': 180238, 'people from teacher': 648011, 'from teacher to': 337553, 'teacher to supermarket': 835524, 'to supermarket employee': 915792, 'supermarket employee don': 820117, 'employee don make': 273784, 'don make enough': 253718, 'make enough damn': 509876, 'enough damn money': 277362, 'covfefe': 212528, 'what this': 982429, 'getting crazy': 348916, 'crazy covfefe': 215272, 'say what this': 739473, 'what this is': 982435, 'this is getting': 888266, 'is getting crazy': 448022, 'getting crazy covfefe': 348917, 'headline check': 385992, 'this information': 888108, 'information from': 437835, 'commission and': 188788, 'and protect': 69654, 'yourself from': 1026604, 'the headline check': 857172, 'headline check out': 385993, 'out this information': 627572, 'this information from': 888112, 'information from the': 437846, 'trade commission and': 928441, 'commission and protect': 188791, 'and protect yourself': 69664, 'protect yourself from': 685093, 'yourself from covid': 1026610, 'nightreads': 563195, 'threatening': 893795, '3b': 18212, 'affordable': 34832, 'nightreads country': 563196, 'are starting': 90355, 'starting to': 795011, 'food threatening': 317208, 'threatening global': 893807, 'global trade': 352260, 'trade related': 928560, 'related 3b': 708372, '3b ppl': 18215, 'ppl or': 668297, 'or of': 616346, 'india social': 434617, 'social revolt': 779933, 'revolt re': 720731, 're affordable': 698197, 'affordable food': 34841, 'food might': 315457, 'more threatening': 540752, 'threatening than': 893824, 'nightreads country are': 563197, 'country are starting': 210482, 'are starting to': 90358, 'starting to hoard': 795027, 'to hoard food': 907869, 'hoard food threatening': 398799, 'food threatening global': 317209, 'threatening global trade': 893808, 'global trade related': 352263, 'trade related 3b': 928561, 'related 3b ppl': 708373, '3b ppl or': 18216, 'ppl or of': 668298, 'or of the': 616347, 'world in lockdown': 1009661, 'in lockdown in': 424844, 'lockdown in india': 499506, 'in india social': 424053, 'india social revolt': 434618, 'social revolt re': 779934, 'revolt re affordable': 720732, 're affordable food': 698198, 'affordable food might': 34843, 'food might be': 315458, 'might be more': 530915, 'be more threatening': 115999, 'more threatening than': 540753, 'kurdistan': 477956, 'of iraq': 585299, 'the kurdistan': 858868, 'kurdistan region': 477959, 'region survive': 707464, 'survive in': 829190, 'if everything': 414101, 'everything ha': 287826, 'be shut': 117174, 'down border': 256570, 'border airport': 135213, 'and city': 59896, 'city locked': 179245, 'locked financial': 500485, 'crisis oil': 217800, 'and salary': 70785, 'salary are': 731947, 'not yet': 572594, 'yet paid': 1016190, 'paid how': 634029, 'how could': 407625, 'could people': 209495, 'people buy': 647328, 'grocery need': 364745, 'need pay': 555415, 'and survive': 72895, 'how can the': 407523, 'can the people': 159959, 'people of iraq': 648919, 'of iraq and': 585300, 'iraq and the': 444756, 'and the kurdistan': 73438, 'the kurdistan region': 858869, 'kurdistan region survive': 477960, 'region survive in': 707465, 'survive in this': 829195, 'this crisis if': 887054, 'crisis if everything': 217514, 'if everything ha': 414103, 'everything ha to': 287829, 'to be shut': 901539, 'be shut down': 117175, 'shut down border': 767808, 'down border airport': 256571, 'border airport and': 135214, 'airport and city': 40088, 'and city locked': 59901, 'city locked financial': 179247, 'locked financial crisis': 500486, 'financial crisis oil': 306377, 'crisis oil price': 217802, 'low and salary': 505135, 'and salary are': 70786, 'salary are not': 731949, 'are not yet': 88501, 'not yet paid': 572601, 'yet paid how': 1016191, 'paid how could': 634030, 'how could people': 407630, 'could people buy': 209496, 'people buy food': 647332, 'food and grocery': 313246, 'and grocery need': 63991, 'grocery need pay': 364746, 'need pay rent': 555416, 'pay rent and': 645079, 'rent and survive': 711043, 'perfume': 651512, 'makeup': 510893, 'garbage': 343507, 'stay pure': 797188, 'pure there': 689987, 'wear perfume': 974440, 'perfume makeup': 651528, 'makeup or': 510908, 'or wonder': 617832, 'wonder what': 1004005, 'the closet': 851044, 'closet for': 183550, 'day interesting': 227827, 'interesting book': 441520, 'book good': 134534, 'good recipe': 357639, 'recipe and': 704439, 'and time': 74117, 'to throw': 917560, 'throw that': 895049, 'that garbage': 843979, 'garbage out': 343532, 'stay safe stay': 797277, 'safe stay pure': 729975, 'stay pure there': 797189, 'pure there is': 689988, 'to wear perfume': 918439, 'wear perfume makeup': 974441, 'perfume makeup or': 651529, 'makeup or wonder': 510909, 'or wonder what': 617833, 'wonder what to': 1004016, 'to take out': 916218, 'take out of': 832453, 'of the closet': 590869, 'the closet for': 851046, 'closet for the': 183552, 'for the day': 326372, 'the day interesting': 852893, 'day interesting book': 227828, 'interesting book good': 441521, 'book good recipe': 134535, 'good recipe and': 357640, 'recipe and time': 704442, 'and time to': 74124, 'time to throw': 898086, 'to throw that': 917566, 'throw that garbage': 895050, 'that garbage out': 843980, 'garbage out of': 343533, 'canonspark': 162253, 'tradingstandards': 928970, 'uk just': 938499, 'just panic': 469430, 'buying this': 151217, 'this appears': 886390, 'appears to': 82215, 'be money': 115959, 'making scam': 511324, 'scam by': 740091, 'the shopkeeper': 867044, 'shopkeeper canonspark': 761174, 'canonspark london': 162254, 'london tradingstandards': 501207, 'tradingstandards coronacrisis': 928973, 'shortage of toilet': 765141, 'roll in the': 725345, 'the uk just': 870242, 'uk just panic': 938501, 'just panic buying': 469432, 'panic buying this': 637933, 'buying this appears': 151218, 'this appears to': 886391, 'appears to be': 82216, 'to be money': 901389, 'be money making': 115960, 'money making scam': 536882, 'making scam by': 511325, 'scam by the': 740093, 'by the shopkeeper': 154438, 'the shopkeeper canonspark': 867045, 'shopkeeper canonspark london': 761175, 'canonspark london tradingstandards': 162255, 'london tradingstandards coronacrisis': 501208, 'portrayal': 665053, 'nervous': 557445, 'medium portrayal': 527230, 'portrayal of': 665054, 'situation making': 772380, 'making thousand': 511468, 'people nervous': 648845, 'nervous and': 557453, 'and causing': 59643, 'this crazy': 887006, 'crazy behaviour': 215255, 'behaviour of': 124484, 'realise that': 701603, 'that even': 843730, 'even if': 284196, 'whole country': 990169, 'lockdown we': 500118, 'still go': 800572, 'go buy': 353390, 'won starve': 1003907, 'you know what': 1019540, 'know what worse': 476989, '19 is the': 8064, 'is the medium': 452862, 'the medium portrayal': 860435, 'medium portrayal of': 527231, 'portrayal of the': 665055, 'the situation making': 867265, 'situation making thousand': 772382, 'making thousand of': 511469, 'of people nervous': 587950, 'people nervous and': 648846, 'nervous and causing': 557455, 'and causing this': 59648, 'causing this crazy': 168129, 'this crazy behaviour': 887007, 'crazy behaviour of': 215256, 'behaviour of stock': 124489, 'of stock piling': 590184, 'piling food people': 656592, 'food people do': 315832, 'people do realise': 647681, 'do realise that': 250025, 'realise that even': 701604, 'that even if': 843736, 'even if the': 284217, 'if the whole': 415047, 'the whole country': 871484, 'whole country is': 990170, 'country is in': 210806, 'is in lockdown': 448785, 'in lockdown we': 424856, 'lockdown we can': 500119, 'can still go': 159776, 'still go buy': 800575, 'go buy food': 353394, 'buy food we': 148689, 'food we won': 317537, 'we won starve': 973937, 'backtracking': 107605, 'slime': 773994, 'ball': 109048, 'tour': 926915, 'donald': 254094, 'mar': 514965, 'say on': 739017, 'it name': 459726, 'name is': 551637, 'is corvid19': 446852, 'corvid19 not': 207733, 'it good': 458295, 'consumer you': 199582, 'you backtracking': 1017373, 'backtracking slime': 107606, 'slime ball': 773995, 'ball tour': 109072, 'tour like': 926927, 'like year': 491854, 'old donald': 598231, 'donald trump': 254103, 'on mar': 602000, 'what you had': 982677, 'you had to': 1018986, 'had to say': 373724, 'to say on': 913834, 'say on the': 739021, 'on the it': 604191, 'the it name': 858587, 'it name is': 459727, 'name is corvid19': 551642, 'is corvid19 not': 446853, 'corvid19 not the': 207734, 'not the chinese': 571990, 'chinese virus it': 177380, 'virus it good': 958419, 'it good for': 458296, 'the consumer you': 851629, 'consumer you backtracking': 199585, 'you backtracking slime': 1017374, 'backtracking slime ball': 107607, 'slime ball tour': 773996, 'ball tour like': 109073, 'tour like year': 926928, 'like year old': 491856, 'year old donald': 1014823, 'old donald trump': 598232, 'donald trump on': 254116, 'trump on mar': 933738, 'loblaw ceo': 497612, 'ceo promise': 169812, 'promise store': 683691, 'not hike': 569966, 'hike food': 396211, 'loblaw ceo promise': 497613, 'ceo promise store': 169813, 'promise store will': 683692, 'will not hike': 994231, 'not hike food': 569967, 'hike food price': 396212, 'food price during': 315937, 'impostor': 419420, 'mt': 544593, 'steal money': 799188, 'money learn': 536865, 'spot and': 790031, 'stop government': 804694, 'government impostor': 360213, 'impostor mt': 419421, 'scammer are trying': 740548, 'trying to take': 934888, 'the pandemic to': 863130, 'pandemic to steal': 636793, 'to steal money': 915364, 'steal money learn': 799190, 'money learn how': 536866, 'to spot and': 915037, 'spot and stop': 790033, 'and stop government': 72474, 'stop government impostor': 804695, 'government impostor mt': 360214, 'sanitized': 734242, 'in canada': 421180, 'canada are': 160365, 'are opening': 88811, 'opening early': 612823, 'early for': 264605, 'senior the': 750417, 'be stocked': 117371, 'stocked cleaned': 803295, 'cleaned and': 180706, 'and sanitized': 70852, 'sanitized overnight': 734255, 'overnight to': 631361, 'allow them': 46081, 'supply they': 825977, 'in le': 424647, 'le crowded': 482909, 'and stressful': 72564, 'stressful environment': 813492, 'environment hoarding': 279112, 'hoarding humanity': 399366, 'humanity panic': 410761, 'supermarket in canada': 820874, 'in canada are': 421184, 'canada are opening': 160368, 'are opening early': 88813, 'opening early for': 612824, 'early for senior': 264608, 'for senior the': 325480, 'senior the store': 750418, 'store will be': 811327, 'will be stocked': 992699, 'be stocked cleaned': 117372, 'stocked cleaned and': 803296, 'cleaned and sanitized': 180707, 'and sanitized overnight': 70853, 'sanitized overnight to': 734256, 'overnight to allow': 631363, 'to allow them': 900360, 'allow them to': 46083, 'them to get': 876474, 'get the supply': 348303, 'the supply they': 868963, 'supply they need': 825979, 'they need in': 882744, 'need in le': 555043, 'in le crowded': 424648, 'le crowded and': 482910, 'crowded and stressful': 219292, 'and stressful environment': 72565, 'stressful environment hoarding': 813493, 'environment hoarding humanity': 279113, 'hoarding humanity panic': 399367, 'cuttaxes': 223696, 'dista': 246614, 'see small': 745696, 'business keep': 143978, 'their 2019': 872426, '2019 federal': 13959, 'federal tax': 302071, 'tax own': 835052, 'own retail': 632162, 'keeping even': 472412, 'even portion': 284474, 'my tax': 550317, 'tax would': 835127, 'huge help': 410059, 'help don': 389598, 'want loan': 965842, 'loan debt': 497421, 'debt is': 230506, 'answer cuttaxes': 78033, 'cuttaxes social': 223697, 'social dista': 779491, 'like to see': 491620, 'to see small': 914068, 'see small business': 745697, 'small business keep': 774870, 'business keep their': 143979, 'keep their 2019': 472081, 'their 2019 federal': 872427, '2019 federal tax': 13960, 'federal tax own': 302073, 'tax own retail': 835053, 'own retail store': 632165, 'store and keeping': 806274, 'and keeping even': 65794, 'keeping even portion': 472413, 'even portion of': 284475, 'portion of my': 665022, 'of my tax': 586819, 'my tax would': 550319, 'tax would be': 835128, 'would be huge': 1011602, 'be huge help': 115316, 'huge help don': 410060, 'help don want': 389600, 'don want loan': 254040, 'want loan debt': 965843, 'loan debt is': 497423, 'debt is not': 230510, 'not the answer': 571983, 'the answer cuttaxes': 848766, 'answer cuttaxes social': 78034, 'cuttaxes social dista': 223698, 'fetch': 303615, 'forgotten': 329430, 'staythefhome': 799059, 'to fetch': 905761, 'fetch some': 303616, 'some forgotten': 782897, 'forgotten item': 329441, 'store shocked': 810114, 'shocked by': 759560, 'what part': 981997, 'of staythefhome': 590103, 'staythefhome is': 799061, 'not clear': 568762, 'clear sundaythoughts': 181335, 'had to fetch': 373690, 'to fetch some': 905762, 'fetch some forgotten': 303617, 'some forgotten item': 782898, 'forgotten item from': 329442, 'grocery store shocked': 365765, 'store shocked by': 810115, 'shocked by the': 759561, 'by the people': 154404, 'the people out': 863497, 'people out about': 649015, 'out about what': 625566, 'about what part': 26893, 'what part of': 981998, 'part of staythefhome': 642382, 'of staythefhome is': 590104, 'staythefhome is not': 799062, 'is not clear': 450046, 'not clear sundaythoughts': 568765, 'thrown': 895122, 'bothering': 136142, 'gaurds': 344578, 'pretending': 671330, 'exotic': 290436, 'getaway': 348765, 'so here': 777294, 'are locked': 87864, 'locked up': 500504, 'and thrown': 74101, 'thrown away': 895127, 'key bothering': 473231, 'bothering the': 136145, 'the prison': 864475, 'prison gaurds': 678719, 'gaurds er': 344579, 'er husband': 280010, 'husband having': 411714, 'having home': 384105, 'home cooked': 400925, 'cooked meal': 202819, 'meal pretending': 524256, 'pretending it': 671331, 'wa take': 963389, 'out looking': 626519, 'looking on': 502977, 'on google': 601152, 'google how': 358165, 'be child': 114083, 'now an': 574014, 'an exotic': 55957, 'exotic getaway': 290441, 'so here we': 777302, 'we are locked': 970616, 'are locked up': 87866, 'locked up and': 500505, 'up and thrown': 944383, 'and thrown away': 74102, 'thrown away the': 895133, 'away the key': 106047, 'the key bothering': 858752, 'key bothering the': 473232, 'bothering the prison': 136146, 'the prison gaurds': 864478, 'prison gaurds er': 678720, 'gaurds er husband': 344580, 'er husband having': 280011, 'husband having home': 411715, 'having home cooked': 384106, 'home cooked meal': 400927, 'cooked meal pretending': 202821, 'meal pretending it': 524257, 'pretending it wa': 671332, 'it wa take': 462207, 'wa take out': 963390, 'take out looking': 832452, 'out looking on': 626522, 'looking on google': 502978, 'on google how': 601154, 'google how to': 358166, 'how to be': 408980, 'to be child': 901164, 'be child care': 114084, 'child care worker': 176044, 'care worker grocery': 164291, 'store now an': 809121, 'now an exotic': 574018, 'an exotic getaway': 55958, 'sanitisers': 734054, 'hygienic': 412206, 'dbz': 228933, 'aware help': 105614, 'people don': 647696, 'don run': 253880, 'run if': 727671, 'if affected': 413774, 'affected be': 34294, 'be clean': 114096, 'clean avoid': 180476, 'avoid going': 105128, 'out make': 626530, 'make distance': 509841, 'distance sell': 246815, 'sell sanitisers': 748867, 'sanitisers mask': 734087, 'price eat': 673648, 'eat hygienic': 265946, 'hygienic food': 412216, 'food be': 313695, 'be healthy': 115173, 'healthy immune': 387663, 'immune be': 417309, 'good dbz': 356951, 'dbz diary': 228934, 'be aware help': 113777, 'aware help the': 105615, 'help the people': 390672, 'the people don': 863468, 'people don run': 647707, 'don run if': 253881, 'run if affected': 727672, 'if affected be': 413775, 'affected be clean': 34295, 'be clean avoid': 114098, 'clean avoid going': 180477, 'avoid going out': 105130, 'going out make': 355377, 'out make distance': 626531, 'make distance sell': 509842, 'distance sell sanitisers': 246816, 'sell sanitisers mask': 748868, 'sanitisers mask at': 734088, 'mask at reasonable': 518431, 'reasonable price eat': 703118, 'price eat hygienic': 673649, 'eat hygienic food': 265947, 'hygienic food be': 412217, 'food be healthy': 313699, 'be healthy immune': 115175, 'healthy immune be': 387664, 'immune be good': 417310, 'be good dbz': 115065, 'good dbz diary': 356952, 'westandwithitaly': 980560, 'fucking hero': 339890, 'hero stayathome': 394092, 'stayathome 19': 797423, 'lockdown stayhome': 499954, 'stayhome coronavid19': 797976, 'coronavid19 westandwithitaly': 205406, 'everyone working at': 287632, 'at supermarket right': 100764, 'now is fucking': 575069, 'is fucking hero': 447960, 'fucking hero stayathome': 339891, 'hero stayathome 19': 394093, 'stayathome 19 lockdown': 797427, '19 lockdown stayhome': 8427, 'lockdown stayhome coronavid19': 499955, 'stayhome coronavid19 westandwithitaly': 797977, 'bridgwater': 139650, 'helpnhstoday': 391613, 'having frequently': 384077, 'frequently gone': 332855, 'gone by': 356237, 'the depot': 853155, 'depot in': 237532, 'in bridgwater': 420974, 'bridgwater and': 139651, 'and aware': 58589, 'the operation': 862389, 'operation cannot': 613162, 'cannot believe': 161665, 'believe why': 126416, 'why shopping': 991334, 'online through': 609564, 'through online': 894598, 'online slot': 609377, 'such failure': 816490, 'failure helpnhstoday': 296271, 'helpnhstoday onlineshopping': 391614, 'having frequently gone': 384078, 'frequently gone by': 332856, 'gone by the': 356240, 'by the depot': 154307, 'the depot in': 853156, 'depot in bridgwater': 237534, 'in bridgwater and': 420975, 'bridgwater and aware': 139652, 'and aware of': 58591, 'aware of the': 105642, 'of the size': 591469, 'size of the': 772790, 'of the operation': 591299, 'the operation cannot': 862390, 'operation cannot believe': 613163, 'cannot believe why': 161675, 'believe why shopping': 126417, 'why shopping online': 991336, 'shopping online through': 763497, 'online through online': 609568, 'through online slot': 894602, 'online slot is': 609380, 'slot is such': 774223, 'is such failure': 452425, 'such failure helpnhstoday': 816491, 'failure helpnhstoday onlineshopping': 296272, 'via nowhere': 956118, 'nowhere in': 576565, 'industry to': 436163, 'hit harder': 398256, 'than in': 840772, 'the processing': 864556, 'processing and': 680009, 'supply side': 825850, 'side of': 768842, 'business worldwide': 144726, 'worldwide the': 1010427, 'having an': 383966, 'an impact': 56183, 'price leading': 675030, 'leading to': 483752, 'to uncertainty': 917887, 'uncertainty read': 939747, 'via nowhere in': 956119, 'nowhere in the': 576566, 'the industry to': 858188, 'industry to hit': 436171, 'to hit harder': 907845, 'hit harder than': 398257, 'harder than in': 378183, 'than in the': 840783, 'in the processing': 429478, 'the processing and': 864557, 'processing and food': 680010, 'food supply side': 316995, 'supply side of': 825851, 'side of the': 768855, 'of the business': 590836, 'the business worldwide': 850186, 'business worldwide the': 144727, 'worldwide the virus': 1010429, 'virus is having': 958378, 'is having an': 448324, 'having an impact': 383973, 'an impact on': 56187, 'impact on and': 417818, 'on and price': 599368, 'and price leading': 69460, 'price leading to': 675031, 'leading to uncertainty': 483779, 'to uncertainty read': 917888, 'uncertainty read more': 939748, 'upcountry': 946821, 'possibility': 665532, 'grandparent': 361959, 'you travel': 1021917, 'travel upcountry': 930559, 'upcountry there': 946824, 'is possibility': 450942, 'possibility you': 665557, 'kill your': 474555, 'parent and': 641567, 'and grandparent': 63921, 'if you travel': 415545, 'you travel upcountry': 1021918, 'travel upcountry there': 930560, 'upcountry there is': 946825, 'there is possibility': 878607, 'is possibility you': 450944, 'possibility you are': 665558, 'to kill your': 908948, 'kill your parent': 474556, 'your parent and': 1025199, 'parent and grandparent': 641570, '79': 22362, 'wishing': 996870, 'concert': 193258, 'gay': 344709, 'unfashionable': 941475, 'elton': 272035, '79 of': 22375, 'people admit': 646776, 'admit to': 32615, 'to wishing': 918637, 'wishing they': 996879, 'the rather': 865168, 'than watching': 841423, 'watching free': 968741, 'free online': 332021, 'online concert': 608035, 'concert given': 193265, 'given by': 350961, 'by celebrity': 152085, 'celebrity gay': 168884, 'gay unfashionable': 344714, 'unfashionable pop': 941476, 'pop star': 664465, 'star elton': 794038, 'elton john': 272036, 'john who': 466559, 'who like': 989208, 'good in': 357237, 'supermarket bargain': 819303, 'bargain fridge': 111051, 'fridge is': 333409, '79 of people': 22376, 'of people admit': 587869, 'people admit to': 646777, 'admit to wishing': 32617, 'to wishing they': 918638, 'wishing they had': 996880, 'they had the': 882266, 'had the rather': 373624, 'the rather than': 865169, 'rather than watching': 697561, 'than watching free': 841424, 'watching free online': 968742, 'free online concert': 332024, 'online concert given': 608036, 'concert given by': 193266, 'given by celebrity': 350962, 'by celebrity gay': 152086, 'celebrity gay unfashionable': 168885, 'gay unfashionable pop': 344715, 'unfashionable pop star': 941477, 'pop star elton': 664466, 'star elton john': 794039, 'elton john who': 272037, 'john who like': 466560, 'who like the': 989211, 'like the good': 491368, 'the good in': 856438, 'good in the': 357252, 'the supermarket bargain': 868478, 'supermarket bargain fridge': 819304, 'bargain fridge is': 111052, 'fridge is out': 333410, 'it count': 457375, 'count if': 210127, 'if call': 413919, 'an honorable': 56068, 'honorable person': 403265, 'person trumpvirus': 652673, 'trumpvirus stophoarding': 934187, 'doe it count': 251429, 'it count if': 457376, 'count if call': 210128, 'if call you': 413920, 'call you an': 156250, 'you an honorable': 1016967, 'an honorable person': 56069, 'honorable person trumpvirus': 403266, 'person trumpvirus stophoarding': 652674, 'involves': 444369, 'legislative': 486004, 'kratom': 477652, 'uncertainty in': 939696, 'world today': 1010091, 'the least': 859247, 'least of': 484573, 'which involves': 985971, 'involves the': 444385, 'virus on': 958548, 'on legislative': 601821, 'legislative activity': 486005, 'activity related': 30489, 'the kratom': 858858, 'kratom consumer': 477653, 'act please': 29740, 'please watch': 660753, 'video for': 956728, 'lot of uncertainty': 504317, 'of uncertainty in': 592597, 'uncertainty in the': 939699, 'the world today': 871992, 'world today not': 1010094, 'today not the': 919946, 'not the least': 572010, 'the least of': 859253, 'least of which': 484576, 'of which involves': 593104, 'which involves the': 985972, 'involves the impact': 444387, '19 virus on': 11823, 'virus on legislative': 958550, 'on legislative activity': 601822, 'legislative activity related': 486006, 'activity related to': 30490, 'to the kratom': 916827, 'the kratom consumer': 858859, 'kratom consumer protection': 477655, 'protection act please': 685282, 'act please watch': 29741, 'please watch this': 660756, 'watch this video': 968584, 'this video for': 890979, 'video for the': 956733, 'arvsgt': 94691, 'naughty': 553017, 'bikers': 130434, 'a36': 24068, 'a272': 24067, 'indian police': 434868, 'police are': 662915, 'are serious': 89989, 'serious about': 751324, 'about lockdown': 25657, 'and stayhome': 72310, 'stayhome police': 798071, 'police arvsgt': 662934, 'arvsgt supermarket': 94692, 'supermarket policing': 822038, 'policing for': 663299, 'those naughty': 892241, 'naughty bikers': 553018, 'bikers who': 130437, 'not stay': 571701, 'home a36': 400544, 'a36 a272': 24069, 'indian police are': 434869, 'police are serious': 662920, 'are serious about': 89990, 'serious about lockdown': 751326, 'about lockdown and': 25658, 'lockdown and stayhome': 499153, 'and stayhome police': 72312, 'stayhome police arvsgt': 798072, 'police arvsgt supermarket': 662935, 'arvsgt supermarket policing': 94693, 'supermarket policing for': 822039, 'policing for those': 663300, 'for those naughty': 327124, 'those naughty bikers': 892242, 'naughty bikers who': 553019, 'bikers who do': 130438, 'do not stay': 249853, 'not stay home': 571703, 'stay home a36': 796934, 'home a36 a272': 400545, 'while waiting': 987527, 'waiting for': 964310, 'food shopping': 316507, 'shopping to': 764163, 'to arrive': 900726, 'arrive how': 93916, 'many item': 514214, 'stock corona': 802022, 'while waiting for': 987528, 'waiting for my': 964325, 'for my food': 323708, 'my food shopping': 548388, 'food shopping to': 316542, 'shopping to arrive': 764165, 'to arrive how': 900730, 'arrive how many': 93917, 'how many item': 408266, 'many item do': 514216, 'item do you': 463211, 'think will be': 885788, 'will be out': 992594, 'of stock corona': 590152, 'stock corona virus': 802023, 'firearm more': 308150, 'purchase firearm more': 689444, 'firearm more via': 308151, 'leftover': 485769, 'mac': 507309, 'have something': 382650, 'everyone my': 287198, 'tesco ve': 838846, 'been there': 122175, 'last day': 480176, 'still empty': 800475, 'empty really': 275019, 'food fuck': 314628, 'you panic': 1020280, 'buyer ve': 149792, 'eating leftover': 266247, 'leftover mac': 485782, 'mac and': 507310, 'and cheese': 59796, 'cheese for': 175189, 'supermarket we have': 823744, 'we have something': 971944, 'have something for': 382652, 'something for everyone': 784908, 'for everyone my': 321222, 'everyone my local': 287199, 'local tesco ve': 498642, 'tesco ve been': 838847, 've been there': 952943, 'been there for': 122178, 'there for the': 878411, 'for the last': 326522, 'the last day': 859007, 'last day and': 480177, 'day and it': 227268, 'and it still': 65586, 'it still empty': 461250, 'still empty really': 800482, 'empty really need': 275020, 'really need food': 702433, 'need food fuck': 554797, 'food fuck you': 314630, 'fuck you panic': 339705, 'you panic buyer': 1020284, 'panic buyer ve': 637614, 'buyer ve been': 149793, 've been eating': 952882, 'been eating leftover': 121065, 'eating leftover mac': 266248, 'leftover mac and': 485783, 'mac and cheese': 507311, 'and cheese for': 59800, 'cheese for day': 175190, 'for day now': 320578, 'overshadowed': 631508, 'theme': 876695, 'point what': 662693, 'what difference': 981323, 'difference month': 241859, 'month make': 537844, 'any talk': 79943, 'talk of': 833824, 'of trend': 592447, 'trend will': 931515, 'will in': 993794, 'short to': 764771, 'to medium': 910010, 'medium term': 527303, 'term be': 838065, 'be overshadowed': 116316, 'overshadowed by': 631511, 'are theme': 90945, 'theme that': 876711, 'were front': 979664, 'mind for': 532664, 'the large': 858942, 'large player': 479744, 'player pre': 659327, 'pre crisis': 669159, 'talking point what': 834035, 'point what difference': 662694, 'what difference month': 981327, 'difference month make': 241860, 'month make any': 537845, 'make any talk': 509709, 'any talk of': 79944, 'talk of trend': 833828, 'of trend will': 592448, 'trend will in': 931517, 'will in the': 993796, 'the short to': 867085, 'short to medium': 764772, 'to medium term': 910012, 'medium term be': 527304, 'term be overshadowed': 838066, 'be overshadowed by': 116317, 'overshadowed by the': 631512, '19 pandemic here': 9348, 'pandemic here are': 635620, 'here are theme': 392762, 'are theme that': 90946, 'theme that were': 876712, 'that were front': 847440, 'were front of': 979665, 'of mind for': 586544, 'mind for the': 532666, 'for the large': 326520, 'the large player': 858950, 'large player pre': 479745, 'player pre crisis': 659328, 'barter': 111401, 'instance': 440070, 'swap': 829978, 'loo': 502147, 'how soon': 408723, 'soon before': 785658, 'before we': 123282, 'we turn': 973583, 'to barter': 901054, 'barter economy': 111402, 'economy for': 267877, 'for instance': 322605, 'instance swap': 440084, 'swap some': 829985, 'some loo': 783222, 'loo roll': 502164, 'some hand': 783020, 'shopping slot': 763896, 'wonder how soon': 1003958, 'how soon before': 408724, 'soon before we': 785659, 'before we turn': 123292, 'we turn to': 973584, 'turn to barter': 935773, 'to barter economy': 901055, 'barter economy for': 111403, 'economy for instance': 267879, 'for instance swap': 322611, 'instance swap some': 440085, 'swap some loo': 829986, 'some loo roll': 783223, 'loo roll and': 502168, 'roll and some': 725187, 'and some hand': 71964, 'some hand sanitizer': 783022, 'sanitizer in exchange': 735134, 'exchange for an': 289445, 'for an online': 319306, 'an online shopping': 56634, 'online shopping slot': 609272, 'shopping slot for': 763904, 'slot for my': 774185, 'for my parent': 323739, 'atliens': 101909, 'emts': 275343, 'atliens continue': 101910, 'show support': 767164, 'support for': 826505, 'responder emts': 715451, 'emts medic': 275352, 'medic amp': 525989, 'amp all': 53366, 'on front': 601031, 'pandemic thank': 636641, 'atliens continue to': 101911, 'continue to show': 201259, 'to show support': 914575, 'show support for': 767165, 'support for the': 826525, 'store worker first': 811501, 'first responder emts': 308938, 'responder emts medic': 715452, 'emts medic amp': 275353, 'medic amp all': 525990, 'amp all on': 53368, 'all on front': 43740, 'on front line': 601032, 'of the 19': 590760, '19 pandemic thank': 9492, 'pandemic thank you': 636642, 'directive': 243493, 'downgrade': 257545, 'ameliorate': 51370, 'directive to': 243514, 'freeze price': 332547, 'especially of': 280569, 'prevent increase': 671652, 'increase due': 432746, 'to downgrade': 904688, 'downgrade and': 257546, '19 economic': 6698, 'impact these': 418019, 'these will': 880972, 'have direct': 380285, 'direct impact': 243340, 'and may': 66794, 'may ameliorate': 520920, 'ameliorate lockdown': 51371, 'lockdown impact': 499493, 'on majority': 601966, 'majority poor': 509574, 'poor working': 664333, 'class of': 180222, 'directive to freeze': 243515, 'to freeze price': 906247, 'freeze price especially': 332548, 'price especially of': 673702, 'especially of essential': 280570, 'of essential like': 583178, 'essential like grocery': 281284, 'like grocery to': 490349, 'grocery to prevent': 366057, 'to prevent increase': 912070, 'prevent increase due': 671653, 'increase due to': 432747, 'due to downgrade': 261766, 'to downgrade and': 904689, 'downgrade and covid': 257547, 'covid 19 economic': 213002, '19 economic impact': 6701, 'economic impact these': 267140, 'impact these will': 418021, 'these will have': 880974, 'will have direct': 993626, 'have direct impact': 380286, 'direct impact and': 243341, 'impact and may': 417550, 'and may ameliorate': 66796, 'may ameliorate lockdown': 520921, 'ameliorate lockdown impact': 51372, 'lockdown impact on': 499495, 'impact on majority': 417870, 'on majority poor': 601967, 'majority poor working': 509575, 'poor working class': 664334, 'working class of': 1008563, 'class of this': 180225, 'of this country': 591957, 'map': 514920, 'my nyc': 549533, 'nyc friend': 577987, 'friend check': 333553, 'this creative': 887012, 'creative interactive': 216147, 'interactive map': 441286, 'map of': 514932, 'of direct': 582634, 'brand in': 137865, 'city built': 179073, 'built by': 142175, 'support local': 826617, 'during 19': 262400, 'to my nyc': 910424, 'my nyc friend': 549534, 'nyc friend check': 577988, 'friend check out': 333554, 'out this creative': 627563, 'this creative interactive': 887013, 'creative interactive map': 216148, 'interactive map of': 441288, 'map of direct': 514935, 'of direct to': 582636, 'to consumer brand': 903273, 'consumer brand in': 196656, 'brand in the': 137868, 'the city built': 850920, 'city built by': 179074, 'built by to': 142176, 'by to support': 154563, 'to support local': 915944, 'support local store': 826634, 'local store during': 498460, 'store during 19': 807398, 'cake': 155214, 'briton': 140640, 'plea': 659535, 'minister say': 533452, 'say let': 738887, 'them eat': 875643, 'eat cake': 265874, 'cake briton': 155220, 'briton told': 140657, 'in plea': 426794, 'plea there': 659559, 'minister say let': 533453, 'say let them': 738888, 'let them eat': 487151, 'them eat cake': 875644, 'eat cake briton': 265875, 'cake briton told': 155221, 'briton told to': 140658, 'buying in plea': 150536, 'in plea there': 426795, 'plea there is': 659560, 'there is not': 878599, 'nicest': 562553, 'gassing': 344308, 'must say': 546871, 'the nicest': 861785, 'nicest thing': 562556, 'this socialdistancing': 890230, 'is you': 454121, 'not get': 569573, 'the silly': 867189, 'silly bag': 769748, 'bag gassing': 108300, 'gassing in': 344309, 'and blocking': 59018, 'blocking the': 132886, 'aisle when': 40433, 'over can': 630060, 'we keep': 972127, 'keep socialdistancing': 471948, 'must say the': 546874, 'say the nicest': 739292, 'the nicest thing': 861787, 'nicest thing about': 562557, 'thing about this': 884096, 'about this socialdistancing': 26661, 'this socialdistancing is': 890231, 'socialdistancing is you': 780478, 'is you do': 454124, 'do not get': 249745, 'not get the': 569612, 'get the silly': 348294, 'the silly bag': 867190, 'silly bag gassing': 769749, 'bag gassing in': 108301, 'gassing in the': 344310, 'supermarket and blocking': 818942, 'and blocking the': 59019, 'blocking the aisle': 132887, 'the aisle when': 848537, 'aisle when this': 40435, 'is over can': 450690, 'over can we': 630062, 'can we keep': 160180, 'we keep socialdistancing': 972133, 'also bc': 47909, '19 grocery': 7285, 'store think': 810684, 'think that': 885584, 'it okay': 460021, 'okay to': 598021, 'to hike': 907760, 'hike up': 396290, 'price 20': 672120, '20 in': 13101, 'this global': 887702, 'global issue': 351994, 'also bc of': 47910, 'bc of covid': 113258, 'covid 19 grocery': 213167, '19 grocery store': 7291, 'grocery store think': 365857, 'store think that': 810690, 'think that it': 885595, 'that it okay': 844730, 'it okay to': 460022, 'okay to hike': 598024, 'to hike up': 907765, 'hike up their': 396293, 'their price 20': 874371, 'price 20 in': 672124, '20 in this': 13106, 'in this global': 429952, 'this global issue': 887706, 'that these': 846908, 'are uncertain': 91267, 'have published': 382103, 'published information': 688658, 'information for': 437821, 'for tenant': 326204, 'tenant consumer': 837836, 'business on': 144134, 'website this': 975435, 'this page': 889352, 'page is': 633863, 'is being': 446061, 'being regularly': 125662, 'updated information': 947388, 'information becomes': 437763, 'becomes available': 120202, 'understand that these': 940735, 'that these are': 846909, 'these are uncertain': 879642, 'are uncertain time': 91271, 'uncertain time for': 939617, 'time for everyone': 896706, 'for everyone we': 321250, 'everyone we have': 287563, 'we have published': 971909, 'have published information': 382104, 'published information for': 688659, 'information for tenant': 437831, 'for tenant consumer': 326206, 'tenant consumer and': 837837, 'and business on': 59294, 'business on our': 144138, 'our website this': 625353, 'website this page': 975436, 'this page is': 889354, 'page is being': 633864, 'is being regularly': 446109, 'being regularly updated': 125663, 'regularly updated information': 707961, 'updated information becomes': 947389, 'information becomes available': 437764, 'soaring': 779310, 'alcoholic': 41201, 'fmcg': 311711, 'alcohol sale': 41087, 'are soaring': 90226, 'soaring drive': 779320, 'drive 160': 258969, '160 million': 4212, 'million additional': 532049, 'additional spend': 31866, 'spend on': 788659, 'on alcoholic': 599210, 'alcoholic beverage': 41204, 'beverage in': 129008, 'supermarket fmcg': 820345, 'alcohol sale are': 41088, 'sale are soaring': 732069, 'are soaring drive': 90229, 'soaring drive 160': 779321, 'drive 160 million': 258970, '160 million additional': 4213, 'million additional spend': 532050, 'additional spend on': 31867, 'spend on alcoholic': 788660, 'on alcoholic beverage': 599211, 'alcoholic beverage in': 41208, 'beverage in supermarket': 129009, 'in supermarket fmcg': 428599, 'the glove': 856372, 'glove dump': 352663, 'dump grocery': 262162, 'worker already': 1006232, 'stop the glove': 805133, 'the glove dump': 856373, 'glove dump grocery': 352664, 'dump grocery store': 262163, 'store worker already': 811449, 'worker already have': 1006233, 'already have enough': 47419, 'have enough to': 380469, 'enough to deal': 277696, 'stung': 815306, 'subscription': 815877, 'superior': 818690, 'pocket': 662149, 'expat': 290575, 'get stung': 348142, 'stung with': 815307, 'with cheap': 997610, 'cheap subscription': 174205, 'subscription always': 815878, 'always remember': 49715, 'cheap you': 174239, 'll end': 496730, 'up paying': 945752, 'paying twice': 645516, 'twice we': 936552, 'we offer': 972622, 'offer you': 594893, 'you superior': 1021473, 'superior streaming': 818699, 'streaming at': 812805, 'at great': 98796, 'great price': 362905, 'price check': 673120, 'for plan': 324568, 'plan that': 658241, 'that suit': 846555, 'suit your': 817805, 'your pocket': 1025336, 'pocket expat': 662167, 'expat student': 290584, 'student palmsunday': 814752, 'palmsunday stayhomesavelives': 634624, 'not get stung': 569610, 'get stung with': 348143, 'stung with cheap': 815308, 'with cheap subscription': 997613, 'cheap subscription always': 174206, 'subscription always remember': 815879, 'always remember if': 49717, 'remember if you': 710215, 'if you buy': 415402, 'you buy cheap': 1017564, 'buy cheap you': 148486, 'cheap you ll': 174240, 'you ll end': 1019648, 'll end up': 496731, 'end up paying': 276042, 'up paying twice': 945753, 'paying twice we': 645517, 'twice we offer': 936553, 'we offer you': 972630, 'offer you superior': 594897, 'you superior streaming': 1021474, 'superior streaming at': 818700, 'streaming at great': 812806, 'at great price': 98798, 'great price check': 362909, 'price check out': 673121, 'out for plan': 626151, 'for plan that': 324569, 'plan that suit': 658243, 'that suit your': 846557, 'suit your pocket': 817806, 'your pocket expat': 1025338, 'pocket expat student': 662168, 'expat student palmsunday': 290585, 'student palmsunday stayhomesavelives': 814753, 'questionable': 693825, 'currently no': 221597, 'no at': 563632, 'home covid': 400965, 'kit available': 475506, 'available for': 104355, 'consumer purchase': 198608, 'purchase be': 689377, 'for scam': 325359, 'and visit': 74983, 'fda or': 300895, 'or ftc': 615406, 'investigate or': 443803, 'or report': 616852, 'report questionable': 712203, 'questionable product': 693828, 'there are currently': 878088, 'are currently no': 85667, 'currently no at': 221598, 'no at home': 563633, 'at home covid': 98964, 'home covid 19': 400966, '19 test kit': 11077, 'test kit available': 839051, 'kit available for': 475507, 'available for consumer': 104362, 'for consumer purchase': 320283, 'consumer purchase be': 198611, 'purchase be on': 689378, 'lookout for scam': 503084, 'for scam and': 325360, 'scam and visit': 740027, 'and visit the': 74985, 'visit the fda': 959378, 'the fda or': 855022, 'fda or ftc': 300896, 'or ftc to': 615407, 'ftc to investigate': 339458, 'to investigate or': 908492, 'investigate or report': 443804, 'or report questionable': 616855, 'report questionable product': 712204, 'trucker': 932889, 'restocked': 716935, 'thankatrucker': 841863, 'trucker are': 932899, 'getting it': 349074, 'it done': 457667, 'done shelf': 255002, 'being restocked': 125687, 'restocked and': 716938, 'and inventory': 65354, 'inventory at': 443647, 'at warehouse': 101496, 'warehouse remain': 966755, 'strong there': 814135, 'essential staple': 281576, 'staple in': 793956, 'chain no': 170943, 'hoard but': 398765, 'do thankatrucker': 250213, 'trucker are getting': 932903, 'are getting it': 86814, 'getting it done': 349076, 'it done shelf': 457668, 'done shelf are': 255003, 'shelf are being': 756792, 'are being restocked': 84914, 'being restocked and': 125688, 'restocked and inventory': 716939, 'and inventory at': 65355, 'inventory at warehouse': 443648, 'at warehouse remain': 101498, 'warehouse remain strong': 966756, 'remain strong there': 709873, 'strong there is': 814136, 'of food water': 583813, 'water and essential': 968860, 'and essential staple': 62263, 'essential staple in': 281577, 'staple in the': 793961, 'in the supply': 429587, 'supply chain no': 824997, 'chain no need': 170945, 'need to hoard': 555963, 'to hoard but': 907867, 'hoard but do': 398766, 'but do thankatrucker': 145562, 'navigate': 553057, 'is dramatically': 447367, 'dramatically changing': 258329, 'changing consumer': 172664, 'behavior worldwide': 124319, 'worldwide we': 1010440, 'look to': 502624, 'the ecommerce': 853877, 'ecommerce business': 266723, 'how should': 408676, 'should retail': 766418, 'retail company': 717971, 'company navigate': 190903, 'navigate through': 553098, 'read here': 700348, 'here retail': 393521, 'retail analytics': 717810, 'pandemic is dramatically': 635765, 'is dramatically changing': 447369, 'dramatically changing consumer': 258330, 'changing consumer behavior': 172667, 'consumer behavior worldwide': 196540, 'behavior worldwide we': 124320, 'worldwide we look': 1010441, 'we look to': 972295, 'look to the': 502641, 'to the ecommerce': 916662, 'the ecommerce business': 853878, 'ecommerce business to': 266726, 'business to understand': 144564, 'to understand how': 917903, 'understand how should': 940649, 'how should retail': 408679, 'should retail company': 766419, 'retail company navigate': 717975, 'company navigate through': 190905, 'navigate through the': 553101, 'through the crisis': 894729, 'the crisis read': 852438, 'crisis read here': 217941, 'read here retail': 700354, 'here retail analytics': 393522, 'history': 397999, 'morning in': 541304, 'is sure': 452483, 'sure to': 827757, 'one for': 606303, 'the history': 857389, 'history book': 398008, 'book please': 134583, 'safe wear': 730123, 'use lot': 949349, 'good morning in': 357407, 'morning in this': 541310, 'in this is': 429966, 'this is sure': 888418, 'is sure to': 452484, 'sure to be': 827758, 'be one for': 116222, 'one for the': 606308, 'for the history': 326477, 'the history book': 857390, 'history book please': 398010, 'book please stay': 134584, 'stay safe wear': 797295, 'safe wear mask': 730124, 'mask and use': 518384, 'and use lot': 74777, 'use lot of': 949350, 'lot of hand': 504200, 'house coronavirus': 406247, 'force give': 328395, 'watch the white': 968556, 'white house coronavirus': 987846, 'house coronavirus task': 406249, 'task force give': 834686, 'force give an': 328396, 'give an update': 350384, 'one can': 606043, 'say for': 738647, 'for sure': 326070, 'sure when': 827823, 'end but': 275794, 'that china': 843211, 'to experience': 905455, 'experience the': 291502, 'ha learned': 371119, 'learned abundant': 484107, 'abundant lesson': 27601, 'lesson from': 486477, 'we focus': 971576, 'of on': 587208, 'on china': 599908, 'china retail': 176911, 'consumer industry': 197854, 'no one can': 564923, 'one can say': 606048, 'can say for': 159515, 'say for sure': 738648, 'for sure when': 326080, 'sure when this': 827826, 'when this pandemic': 984309, 'this pandemic will': 889447, 'pandemic will end': 637007, 'will end but': 993304, 'end but we': 275795, 'know that china': 476758, 'that china wa': 843212, 'china wa the': 177046, 'wa the first': 963447, 'the first to': 855359, 'first to experience': 309125, 'to experience the': 905462, 'experience the outbreak': 291505, 'the outbreak ha': 862634, 'outbreak ha learned': 628271, 'ha learned abundant': 371120, 'learned abundant lesson': 484108, 'abundant lesson from': 27602, 'lesson from it': 486481, 'from it here': 336118, 'it here we': 458575, 'here we focus': 393787, 'we focus on': 971577, 'focus on the': 311901, 'impact of on': 417790, 'of on china': 587209, 'on china retail': 599909, 'china retail and': 176912, 'retail and consumer': 717815, 'and consumer industry': 60392, 'remnant': 710667, 'acre': 29204, 'cucumber': 220178, 'looking at': 502796, 'the remnant': 865502, 'remnant of': 710668, 'of about': 579707, 'about 60': 24736, '60 acre': 20875, 'acre of': 29208, 'of cucumber': 582238, 'cucumber for': 220179, 'for which': 327828, 'which the': 986371, 'market disappeared': 516292, 'disappeared week': 244072, 'ago due': 38373, 'looking at the': 502827, 'at the remnant': 101076, 'the remnant of': 865503, 'remnant of about': 710669, 'of about 60': 579712, 'about 60 acre': 24737, '60 acre of': 20876, 'acre of cucumber': 29209, 'of cucumber for': 582239, 'cucumber for which': 220180, 'for which the': 327829, 'which the market': 986374, 'the market disappeared': 860102, 'market disappeared week': 516293, 'disappeared week ago': 244073, 'week ago due': 975845, 'ago due to': 38374, 'and the collapse': 73288, 'collapse of the': 186045, 'the food service': 855600, 'resilient': 714510, 'bountiful': 136871, 'harvest': 378602, 'american farmer': 51967, 'are resilient': 89625, 'resilient and': 714514, 'produce bountiful': 680214, 'bountiful harvest': 136874, 'harvest our': 378632, 'chain remain': 171039, 'strong no': 814075, 'hoard respect': 398859, 'respect the': 715061, 'american farmer are': 51968, 'farmer are resilient': 299292, 'are resilient and': 89626, 'resilient and continue': 714515, 'to produce bountiful': 912188, 'produce bountiful harvest': 680215, 'bountiful harvest our': 136875, 'harvest our food': 378633, 'our food supply': 623134, 'supply chain remain': 825020, 'chain remain strong': 171041, 'remain strong no': 709870, 'strong no need': 814076, 'to hoard respect': 907877, 'hoard respect the': 398860, 'respect the need': 715065, 'the need of': 861398, 'need of your': 555351, 'of your neighbor': 593500, 'neighbor and only': 556979, 'and only buy': 68130, 'buy what is': 149454, 'what is necessary': 981711, 'curative': 220542, 'credible': 216279, 'nasties': 552049, 'no curative': 563940, 'curative treatment': 220543, 'this moment': 888865, 'moment no': 536004, 'no matter': 564729, 'matter what': 520650, 'what that': 982282, 'that really': 845958, 'really credible': 702088, 'credible email': 216280, 'email tweet': 272352, 'tweet post': 936393, 'post supporting': 666337, 'supporting you': 827235, 'you say': 1020996, 'say learn': 738885, 'to identify': 908087, 'identify those': 413375, 'those nasties': 892236, 'there is currently': 878543, 'is currently no': 446995, 'currently no curative': 221599, 'no curative treatment': 563941, 'curative treatment for': 220544, 'treatment for this': 931079, 'for this moment': 327048, 'this moment no': 888877, 'moment no matter': 536006, 'no matter what': 564733, 'matter what that': 520653, 'what that really': 982287, 'that really credible': 845960, 'really credible email': 702089, 'credible email tweet': 216281, 'email tweet post': 272353, 'tweet post supporting': 936395, 'post supporting you': 666338, 'supporting you say': 827237, 'you say learn': 1021000, 'say learn how': 738886, 'how to identify': 409030, 'to identify those': 908090, 'identify those nasties': 413376, 'chain be': 170541, 'be patient': 116369, 'patient do': 644164, 'panic do': 638039, 'hoard social': 398863, 'distancing 19': 246941, '19 trucker': 11583, 'trucker couple': 932910, 'couple reporting': 211662, 'reporting from': 712690, 'road amid': 724393, '19 closure': 5855, 'closure urging': 184057, 'urging people': 948442, 'hoard grocery': 398804, 'item foxnews': 463279, 'food and food': 313235, 'supply chain be': 824913, 'chain be patient': 170543, 'be patient do': 116371, 'patient do not': 644165, 'not panic do': 570906, 'panic do not': 638040, 'do not hoard': 249756, 'not hoard social': 569984, 'hoard social distancing': 398864, 'social distancing 19': 779543, 'distancing 19 trucker': 246942, '19 trucker couple': 11584, 'trucker couple reporting': 932911, 'couple reporting from': 211663, 'reporting from the': 712691, 'from the road': 337861, 'the road amid': 865916, 'road amid covid': 724394, 'covid 19 closure': 212815, '19 closure urging': 5860, 'closure urging people': 184058, 'urging people not': 948443, 'not to hoard': 572158, 'to hoard grocery': 907871, 'hoard grocery item': 398806, 'grocery item foxnews': 364653, 'huh': 410305, 'drugmaker': 261170, 'together huh': 920827, 'huh drugmaker': 410310, 'drugmaker doubled': 261173, 'doubled price': 256135, 'on potential': 602864, 'potential coronavirus': 667044, 'coronavirus treatment': 206962, 'treatment via': 931165, 'this together huh': 890769, 'together huh drugmaker': 920828, 'huh drugmaker doubled': 410311, 'drugmaker doubled price': 261174, 'doubled price on': 256136, 'price on potential': 675708, 'on potential coronavirus': 602865, 'potential coronavirus treatment': 667046, 'coronavirus treatment via': 206966, 'amid signal': 52654, 'signal effort': 769296, 'continue mission': 201064, 'mission and': 534342, 'and encourages': 62103, 'encourages reporting': 275696, 'reporting learn': 712708, 'our here': 623418, 'amid signal effort': 52655, 'signal effort to': 769297, 'effort to continue': 269616, 'to continue mission': 903392, 'continue mission and': 201065, 'mission and encourages': 534343, 'and encourages reporting': 62105, 'encourages reporting learn': 275698, 'reporting learn more': 712709, 'learn more from': 484025, 'more from our': 539306, 'from our here': 336778, 'haus': 379045, 'hanz': 377039, 'b2c': 106478, 'instore': 440495, 'haus of': 379046, 'of hanz': 584453, 'hanz how': 377040, 'how one': 408430, 'one small': 607052, 'small retailer': 775096, 'retailer is': 719219, 'closing the': 183768, '19 experience': 6893, 'experience gap': 291370, 'gap retailer': 343461, 'retailer b2c': 719025, 'b2c online': 106488, 'online instore': 608419, 'instore mobile': 440500, 'mobile shopping': 535023, 'shopping cx': 762429, 'cx commerce': 223900, 'commerce cx': 188539, 'cx retail': 223918, 'haus of hanz': 379047, 'of hanz how': 584454, 'hanz how one': 377041, 'how one small': 408435, 'one small retailer': 607056, 'small retailer is': 775098, 'retailer is closing': 719221, 'is closing the': 446614, 'closing the covid': 183771, 'covid 19 experience': 213059, '19 experience gap': 6894, 'experience gap retailer': 291371, 'gap retailer b2c': 343462, 'retailer b2c online': 719026, 'b2c online instore': 106489, 'online instore mobile': 608420, 'instore mobile shopping': 440501, 'mobile shopping cx': 535025, 'shopping cx commerce': 762430, 'cx commerce cx': 223901, 'commerce cx retail': 188540, 'showroom': 767637, 'dream': 258590, 'vehicle': 954241, 're still': 699587, 'still here': 800696, 'here for': 392995, 'these uncertain': 880912, 'time while': 898326, 'while our': 987129, 'our showroom': 624775, 'showroom is': 767644, 'your dream': 1023597, 'dream ride': 258615, 'ride we': 721471, 'll bring': 496663, 'bring any': 139923, 'any vehicle': 80017, 'vehicle to': 954287, 'for test': 326224, 'test drive': 838976, 'drive or': 259116, 'or curbside': 614864, 'curbside test': 220679, 'drive shop': 259147, 'and buy': 59326, 'buy online': 149043, 'we re still': 972974, 're still here': 699594, 'still here for': 800697, 'here for you': 393015, 'for you even': 328054, 'you even during': 1018448, 'even during these': 284030, 'during these uncertain': 263248, 'these uncertain time': 880914, 'uncertain time while': 939631, 'time while our': 898328, 'while our showroom': 987134, 'our showroom is': 624776, 'showroom is closed': 767645, 'is closed we': 446592, 'closed we are': 183426, 'still available to': 800228, 'available to help': 104645, 'you find your': 1018583, 'find your dream': 307406, 'your dream ride': 1023599, 'dream ride we': 258616, 'ride we ll': 721472, 'we ll bring': 972238, 'll bring any': 496664, 'bring any vehicle': 139924, 'any vehicle to': 80018, 'vehicle to you': 954290, 'to you for': 918900, 'you for test': 1018676, 'for test drive': 326228, 'test drive or': 838977, 'drive or curbside': 259117, 'or curbside test': 614866, 'curbside test drive': 220680, 'test drive shop': 838978, 'drive shop and': 259148, 'shop and buy': 759841, 'and buy online': 59346, 'buy online and': 149044, 'online and more': 607825, 'carl': 164743, 'safina': 730867, 'ebola': 266541, '3of': 18365, 'pathogen': 644073, 'originate': 619604, 'is wake': 453739, 'call carl': 155811, 'carl safina': 164744, 'safina medium': 730868, 'medium why': 527352, 'we seeing': 973178, 'seeing boom': 746238, 'boom in': 134809, 'virus like': 958459, 'like ebola': 490156, 'ebola sars': 266552, 'sars and': 736793, 'coronavirus 3of': 205443, '3of emerging': 18366, 'emerging pathogen': 273139, 'pathogen originate': 644082, 'originate in': 619607, 'our demand': 622731, 'animal based': 76558, 'based food': 111580, 'food clothing': 313947, 'clothing and': 184246, 'so doe': 776891, '19 is wake': 8080, 'is wake up': 453740, 'up call carl': 944566, 'call carl safina': 155812, 'carl safina medium': 164745, 'safina medium why': 730869, 'medium why are': 527353, 'why are we': 990797, 'are we seeing': 91590, 'we seeing boom': 973179, 'seeing boom in': 746239, 'boom in virus': 134812, 'in virus like': 430607, 'virus like ebola': 958461, 'like ebola sars': 490157, 'ebola sars and': 266553, 'sars and coronavirus': 736794, 'and coronavirus 3of': 60569, 'coronavirus 3of emerging': 205444, '3of emerging pathogen': 18367, 'emerging pathogen originate': 273140, 'pathogen originate in': 644083, 'originate in our': 619608, 'in our demand': 426281, 'our demand for': 622732, 'demand for animal': 235378, 'for animal based': 319356, 'animal based food': 76559, 'based food clothing': 111581, 'food clothing and': 313948, 'clothing and increase': 184248, 'and increase so': 65108, 'increase so doe': 433067, 'so doe the': 776895, 'doe the risk': 251617, 'lipsman': 494060, 'digitalmarketing': 242754, 'emarketer': 272399, 'principal analyst': 678226, 'analyst andrew': 57102, 'andrew lipsman': 76186, 'lipsman discus': 494061, 'current wave': 221428, 'closure marketing': 183940, 'marketing digitalmarketing': 517573, 'digitalmarketing emarketer': 242774, 'principal analyst andrew': 678227, 'analyst andrew lipsman': 57103, 'andrew lipsman discus': 76187, 'lipsman discus the': 494062, 'discus the current': 244912, 'the current wave': 852677, 'current wave of': 221429, 'wave of retail': 969381, 'of retail store': 589055, 'store closure marketing': 807098, 'closure marketing digitalmarketing': 183941, 'marketing digitalmarketing emarketer': 517574, 'need another': 554445, 'another church': 77535, 'church if': 178370, 'your church': 1023220, 'church is': 178374, 'is opened': 450584, 'opened for': 612726, 'for easter': 320919, 'easter service': 265485, 'today socialdistancing': 920200, 'socialdistancing or': 780575, 'is supermarket': 452455, 'you need another': 1019964, 'need another church': 554448, 'another church if': 77536, 'church if your': 178371, 'if your church': 415572, 'your church is': 1023221, 'church is opened': 178379, 'is opened for': 450585, 'opened for easter': 612727, 'for easter service': 320922, 'easter service today': 265488, 'service today socialdistancing': 753002, 'today socialdistancing or': 920202, 'socialdistancing or not': 780578, 'or not that': 616313, 'not that one': 571974, 'that one is': 845497, 'one is supermarket': 606523, 'javitscenter': 464875, 'newyorkcity': 561206, 'editorial': 268673, 'of usa': 592691, 'usa military': 948694, 'military talk': 531503, 'to steel': 915374, 'steel worker': 799366, 'worker near': 1007413, 'near javitscenter': 553526, 'javitscenter newyorkcity': 464876, 'newyorkcity center': 561210, 'center is': 169241, 'is temporary': 452601, 'temporary hospital': 837637, 'will treat': 995229, 'treat patient': 930866, 'patient more': 644213, 'more pic': 540072, 'pic click': 655585, 'click pic': 181941, 'pic for': 655596, 'for editorial': 320955, 'editorial use': 268680, 'use please': 949483, 'trump nyc': 933731, 'member of usa': 528153, 'of usa military': 592692, 'usa military talk': 948696, 'military talk to': 531504, 'talk to steel': 833890, 'to steel worker': 915375, 'steel worker near': 799367, 'worker near javitscenter': 1007414, 'near javitscenter newyorkcity': 553527, 'javitscenter newyorkcity center': 464877, 'newyorkcity center is': 561211, 'center is temporary': 169244, 'is temporary hospital': 452603, 'temporary hospital that': 837639, 'hospital that will': 404676, 'that will treat': 847618, 'will treat patient': 995230, 'treat patient more': 930867, 'patient more pic': 644215, 'more pic click': 540073, 'pic click pic': 655586, 'click pic for': 181942, 'pic for sale': 655597, 'for sale for': 325315, 'sale for editorial': 732229, 'for editorial use': 320956, 'editorial use please': 268681, 'use please contact': 949484, 'contact me for': 200137, 'for price trump': 324733, 'price trump nyc': 677131, 'bro': 140678, 'all increased': 43210, 'increased price': 433408, 'price what': 677464, 'actual fuck': 30657, 'fuck bro': 339533, 'local grocery shop': 498051, 'grocery shop and': 364966, 'shop and the': 759873, 'and the meat': 73476, 'the meat shop': 860386, 'meat shop have': 525742, 'shop have all': 760261, 'have all increased': 379158, 'all increased price': 43211, 'increased price what': 433422, 'price what the': 677473, 'what the actual': 982292, 'the actual fuck': 848321, 'actual fuck bro': 30658, 'is limiting': 449367, 'limiting sale': 492863, 'to stockpiling': 915486, 'stockpiling great': 803975, 'great decision': 362617, 'decision are': 231005, 'you thinking': 1021696, 'thinking 21': 885839, '21 think': 15031, 'think 70': 885072, '70 rationing': 21830, 'rationing stoppanicbuying': 697873, 'sainsbury is limiting': 731686, 'is limiting sale': 449373, 'limiting sale of': 492864, 'sale of all': 732382, 'food product due': 316018, 'due to stockpiling': 261976, 'to stockpiling great': 915488, 'stockpiling great decision': 803976, 'great decision are': 362618, 'decision are you': 231008, 'are you thinking': 91870, 'you thinking 21': 1021697, 'thinking 21 think': 885840, '21 think 70': 15032, 'think 70 rationing': 885073, '70 rationing stoppanicbuying': 21831, 'publicly': 688572, 'traded': 928625, 'lockstep': 500538, 'wineandspirits': 995929, 'large publicly': 479760, 'publicly traded': 688607, 'traded wine': 928632, 'and spirit': 72113, 'spirit company': 789458, 'state stock': 795948, 'are plunging': 89124, 'plunging in': 661537, 'in lockstep': 424865, 'lockstep with': 500539, 'more wineandspirits': 540992, 'for large publicly': 322888, 'large publicly traded': 479761, 'publicly traded wine': 688609, 'traded wine and': 928633, 'wine and spirit': 995769, 'and spirit company': 72114, 'spirit company in': 789459, 'company in the': 190772, 'united state stock': 942241, 'state stock price': 795949, 'stock price are': 802704, 'price are plunging': 672713, 'are plunging in': 89126, 'plunging in lockstep': 661538, 'in lockstep with': 424866, 'lockstep with the': 500540, 'with the rest': 1001454, 'the market learn': 860131, 'learn more wineandspirits': 484044, 'rolled': 725632, 'radiofrequencies': 695475, 'destroying': 239077, 'genetic': 345739, '5gtowers': 20695, 'beaming': 118271, 'microwave': 530527, '5g is': 20672, 'being rolled': 125700, 'rolled out': 725642, 'and tested': 73137, 'tested at': 839268, 'and look': 66362, 'happening radiofrequencies': 377400, 'radiofrequencies are': 695476, 'are destroying': 85798, 'destroying our': 239084, 'our genetic': 623241, 'genetic makeup': 345740, 'makeup 5gtowers': 510894, '5gtowers are': 20696, 'are beaming': 84795, 'beaming with': 118278, 'with microwave': 999496, 'microwave causing': 530528, 'causing to': 168135, 'sick social': 768611, 'distancing toiletpaper': 247573, 'toiletpaper iphone': 922132, '5g is being': 20673, 'is being rolled': 446110, 'being rolled out': 125701, 'rolled out and': 725644, 'out and tested': 625699, 'and tested at': 73138, 'tested at the': 839270, 'same time and': 733347, 'time and look': 896278, 'and look what': 66369, 'look what is': 502671, 'is happening radiofrequencies': 448287, 'happening radiofrequencies are': 377401, 'radiofrequencies are destroying': 695477, 'are destroying our': 85800, 'destroying our genetic': 239087, 'our genetic makeup': 623242, 'genetic makeup 5gtowers': 345741, 'makeup 5gtowers are': 510895, '5gtowers are beaming': 20697, 'are beaming with': 84796, 'beaming with microwave': 118279, 'with microwave causing': 999497, 'microwave causing to': 530529, 'causing to get': 168136, 'get sick social': 348003, 'sick social distancing': 768612, 'social distancing toiletpaper': 779748, 'distancing toiletpaper iphone': 247574, 'corona5g': 204414, 'karen': 470887, 'collecting': 186380, 'weaponsofmassdestruction': 974275, 'chyna': 178438, 'israel': 455582, 'directenergyweapons': 243425, 'cruiseships': 219722, 'jointhedots': 467030, 'girl': 350227, 'sheeple corona5g': 756560, 'corona5g karen': 204415, 'karen keep': 470898, 'keep collecting': 471407, 'collecting your': 186395, 'your toiletpaper': 1026176, 'toiletpaper 5g': 921687, '5g 19': 20654, '19 5gtowers': 4755, 'are causing': 85200, 'causing by': 167997, 'by destroying': 152345, 'our cell': 622336, 'cell and': 168941, 'and turning': 74530, 'turning them': 935959, 'them toxic': 876545, 'toxic weaponsofmassdestruction': 927656, 'weaponsofmassdestruction china': 974276, 'china chyna': 176570, 'chyna israel': 178439, 'israel directenergyweapons': 455589, 'directenergyweapons cruiseships': 243426, 'cruiseships jointhedots': 219725, 'jointhedots boy': 467031, 'boy and': 137238, 'and girl': 63656, 'sheeple corona5g karen': 756561, 'corona5g karen keep': 204416, 'karen keep collecting': 470899, 'keep collecting your': 471408, 'collecting your toiletpaper': 186396, 'your toiletpaper 5g': 1026178, 'toiletpaper 5g 19': 921688, '5g 19 5gtowers': 20655, '19 5gtowers are': 4756, '5gtowers are causing': 20698, 'are causing by': 85201, 'causing by destroying': 167998, 'by destroying our': 152346, 'destroying our cell': 239085, 'our cell and': 622337, 'cell and turning': 168943, 'and turning them': 74531, 'turning them toxic': 935960, 'them toxic weaponsofmassdestruction': 876547, 'toxic weaponsofmassdestruction china': 927657, 'weaponsofmassdestruction china chyna': 974277, 'china chyna israel': 176571, 'chyna israel directenergyweapons': 178440, 'israel directenergyweapons cruiseships': 455590, 'directenergyweapons cruiseships jointhedots': 243427, 'cruiseships jointhedots boy': 219726, 'jointhedots boy and': 467032, 'boy and girl': 137240, 'schwans': 742069, 'for anyone': 319432, 'trouble getting': 932614, 'food delivered': 314089, 'delivered from': 233330, 'store keep': 808641, 'keep in': 471591, 'mind there': 532746, 'there other': 878902, 'other place': 620716, 'place that': 657706, 'that deliver': 843477, 'deliver besides': 233097, 'besides amazon': 127488, 'amazon like': 51027, 'like peapod': 490977, 'peapod in': 646154, 'some area': 782334, 'area or': 92148, 'or try': 617545, 'try schwans': 934564, 'schwans socialdistancing': 742070, 'for anyone who': 319454, 'anyone who is': 80622, 'who is having': 989079, 'is having trouble': 448340, 'having trouble getting': 384388, 'trouble getting food': 932616, 'getting food delivered': 348980, 'food delivered from': 314095, 'delivered from their': 233332, 'from their local': 337942, 'their local grocery': 873870, 'grocery store keep': 365501, 'store keep in': 808643, 'keep in mind': 471593, 'in mind there': 425344, 'mind there other': 532747, 'there other place': 878905, 'other place that': 620724, 'place that deliver': 657710, 'that deliver besides': 843478, 'deliver besides amazon': 233098, 'besides amazon like': 127489, 'amazon like peapod': 51028, 'like peapod in': 490978, 'peapod in some': 646155, 'in some area': 428080, 'some area or': 782340, 'area or try': 92152, 'or try schwans': 617546, 'try schwans socialdistancing': 934565, 'smartphone': 775511, 'damp': 225486, 'soapy': 779208, 'microfiber': 530467, 'earphone': 264948, 'make your': 510754, 'your smartphone': 1025839, 'smartphone safe': 775530, 'use clean': 949109, 'clean regularly': 180626, 'with damp': 997917, 'damp soapy': 225487, 'soapy microfiber': 779211, 'microfiber cloth': 530470, 'cloth wash': 184121, 'soap before': 778948, 'the phone': 863683, 'phone at': 654893, 'at minimum': 99751, 'minimum wipe': 533254, 'wipe with': 996430, 'based disinfectant': 111554, 'disinfectant and': 245605, 'and tissue': 74141, 'tissue 20': 899112, 'sec use': 743642, 'use earphone': 949181, 'earphone instead': 264949, 'of holding': 584705, 'holding them': 400180, 'them directly': 875604, 'directly to': 243585, 'the ear': 853809, 'ear corona': 264394, 'make your smartphone': 510770, 'your smartphone safe': 1025842, 'smartphone safe to': 775531, 'safe to use': 730061, 'to use clean': 918013, 'use clean regularly': 949111, 'clean regularly with': 180627, 'regularly with damp': 707978, 'with damp soapy': 997918, 'damp soapy microfiber': 225488, 'soapy microfiber cloth': 779212, 'microfiber cloth wash': 530471, 'cloth wash your': 184122, 'with soap before': 1000793, 'soap before using': 778952, 'before using the': 123262, 'using the phone': 950708, 'the phone at': 863685, 'phone at minimum': 654896, 'at minimum wipe': 99754, 'minimum wipe with': 533255, 'wipe with an': 996431, 'with an alcohol': 997202, 'alcohol based disinfectant': 40925, 'based disinfectant and': 111556, 'disinfectant and tissue': 245612, 'and tissue 20': 74142, 'tissue 20 sec': 899113, '20 sec use': 13321, 'sec use earphone': 743643, 'use earphone instead': 949182, 'earphone instead of': 264950, 'instead of holding': 440276, 'of holding them': 584707, 'holding them directly': 400181, 'them directly to': 875605, 'directly to the': 243593, 'to the ear': 916659, 'the ear corona': 853810, '1775': 4454, 'patrick': 644352, 'henry': 391779, 'infamous': 436464, 'liberty': 488042, 'satire': 736936, 'patrickhenry': 644361, 'foundingfathers': 330568, 'in 1775': 419708, '1775 patrick': 4455, 'patrick henry': 644357, 'henry gave': 391781, 'gave his': 344622, 'his infamous': 397535, 'infamous give': 436467, 'me liberty': 523074, 'liberty or': 488049, 'me death': 522642, 'death speech': 230210, 'speech if': 788398, 'wa alive': 961462, 'alive today': 41844, 'today satire': 920132, 'satire toiletpaper': 736944, 'toiletpaper patrickhenry': 922331, 'patrickhenry virginia': 644362, 'virginia foundingfathers': 957665, 'foundingfathers humor': 330569, 'today in 1775': 919678, 'in 1775 patrick': 419709, '1775 patrick henry': 4456, 'patrick henry gave': 644358, 'henry gave his': 391782, 'gave his infamous': 344623, 'his infamous give': 397536, 'infamous give me': 436468, 'give me liberty': 350576, 'me liberty or': 523075, 'liberty or give': 488050, 'or give me': 615460, 'give me death': 350570, 'me death speech': 522643, 'death speech if': 230211, 'speech if he': 788399, 'if he wa': 414220, 'he wa alive': 385583, 'wa alive today': 961463, 'alive today satire': 41845, 'today satire toiletpaper': 920133, 'satire toiletpaper patrickhenry': 736945, 'toiletpaper patrickhenry virginia': 922332, 'patrickhenry virginia foundingfathers': 644363, 'virginia foundingfathers humor': 957666, 'consumer survey': 199184, 'survey detail': 828854, 'detail impact': 239204, 'and millennials': 67022, 'millennials mrx': 532019, 'mrx marketresearch': 544481, 'consumer survey detail': 199188, 'survey detail impact': 828855, 'detail impact of': 239205, 'of on consumer': 587211, 'on consumer and': 600025, 'consumer and millennials': 196228, 'and millennials mrx': 67025, 'millennials mrx marketresearch': 532020, 'mrx marketresearch consumerinsights': 544482, 'caravan': 163374, 'registration': 707671, 'alike': 41771, 'yesterday wa': 1015915, 'are everywhere': 86288, 'everywhere caravan': 288184, 'caravan roof': 163381, 'roof box': 725825, 'box even': 137054, 'even car': 283937, 'car with': 163354, 'with french': 998545, 'french registration': 332753, 'registration in': 707682, 'park holiday': 641928, 'holiday even': 400290, 'street from': 812973, 'from so': 337323, 'so irresponsible': 777429, 'irresponsible for': 445051, 'our poor': 624390, 'poor nh': 664234, 'we alike': 970307, 'yesterday wa in': 1015922, 'wa in the': 962388, 'in the local': 429327, 'local supermarket and': 498499, 'supermarket and they': 819083, 'they are everywhere': 881265, 'are everywhere caravan': 86290, 'everywhere caravan roof': 288185, 'caravan roof box': 163382, 'roof box even': 725826, 'box even car': 137055, 'even car with': 283938, 'car with french': 163356, 'with french registration': 998547, 'french registration in': 332755, 'registration in the': 707683, 'the car park': 850385, 'car park holiday': 163224, 'park holiday even': 641929, 'holiday even if': 400291, 'even if there': 284219, 'if there are': 415064, 'plenty of them': 660984, 'of them down': 591734, 'them down the': 875628, 'down the street': 257306, 'the street from': 868228, 'street from so': 812977, 'from so irresponsible': 337324, 'so irresponsible for': 777430, 'irresponsible for our': 445053, 'for our poor': 324282, 'our poor nh': 624391, 'poor nh and': 664235, 'nh and we': 561885, 'and we alike': 75276, 'shoprites': 764559, 'sickened': 768700, 'the should': 867105, 'be given': 115020, 'given hazard': 351010, 'pay given': 644915, 'proper ppe': 684125, 'ppe to': 668082, 'themselves they': 876903, 'they continue': 881802, 'crisis at': 217092, 'least 24': 484350, '24 shoprites': 15685, 'shoprites in': 764560, 'in have': 423566, 'have worker': 383634, 'worker sickened': 1007784, 'sickened with': 768706, 'store worker are': 811454, 'worker are on': 1006411, 'of the should': 591462, 'the should be': 867107, 'should be given': 765634, 'be given hazard': 115026, 'given hazard pay': 351011, 'hazard pay given': 384567, 'pay given the': 644916, 'given the proper': 351147, 'the proper ppe': 864677, 'proper ppe to': 684129, 'ppe to protect': 668085, 'protect themselves they': 685023, 'themselves they continue': 876904, 'they continue to': 881803, 'continue to work': 201280, 'this crisis at': 887019, 'crisis at least': 217093, 'at least 24': 99447, 'least 24 shoprites': 484351, '24 shoprites in': 15686, 'shoprites in have': 764561, 'in have worker': 423570, 'have worker sickened': 383635, 'worker sickened with': 1007785, 'workingfromhome': 1009087, 'workpjs': 1009184, 'morning online': 541393, 'new spring': 559630, 'spring work': 791257, 'work clothes': 1004989, 'clothes workingfromhome': 184238, 'workingfromhome workpjs': 1009115, 'workpjs flattenthecurve': 1009185, 'flattenthecurve stayhomesavelives': 310206, 'spending the morning': 789001, 'the morning online': 860917, 'morning online shopping': 541394, 'shopping for new': 762696, 'for new spring': 323834, 'new spring work': 559631, 'spring work clothes': 791258, 'work clothes workingfromhome': 1004990, 'clothes workingfromhome workpjs': 184239, 'workingfromhome workpjs flattenthecurve': 1009116, 'workpjs flattenthecurve stayhomesavelives': 1009186, 'iron': 444916, 'ore': 619117, '82': 22802, '92': 23461, 'vale': 951871, 'iron ore': 444919, 'ore 82': 619120, '82 55': 22803, '55 92': 20362, '92 vale': 23477, 'vale the': 951878, 'world biggest': 1009364, 'biggest ironore': 130261, 'ironore producer': 444954, 'producer ha': 680629, 'warned that': 967026, 'that price': 845820, 'fall the': 297070, 'pandemic drive': 635332, 'drive the': 259164, 'global economy': 351887, 'economy down': 267814, 'iron ore 82': 444921, 'ore 82 55': 619121, '82 55 92': 22804, '55 92 vale': 20363, '92 vale the': 23478, 'vale the world': 951879, 'the world biggest': 871825, 'world biggest ironore': 1009366, 'biggest ironore producer': 130262, 'ironore producer ha': 444955, 'producer ha warned': 680633, 'ha warned that': 372457, 'warned that price': 967031, 'that price will': 845833, 'price will fall': 677565, 'will fall the': 993409, 'fall the impact': 297073, 'the pandemic drive': 862953, 'pandemic drive the': 635336, 'drive the global': 259166, 'the global economy': 856300, 'global economy down': 351895, '350': 17925, '19 lost': 8475, 'lost 350': 503815, '350 on': 17934, 'shopping but': 762243, 'but wait': 147712, 'wait there': 964202, 'more thanks': 540708, 'virus not': 958535, 'only will': 611476, 'will my': 994138, 'my package': 549671, 'package not': 633333, 'not arrive': 568247, 'their usual': 875095, 'usual day': 950915, 'day shipping': 228345, 'shipping some': 758915, 'them won': 876656, 'in till': 430068, 'till the': 896099, 'of next': 587002, 'covid 19 lost': 213378, '19 lost 350': 8476, 'lost 350 on': 503816, '350 on online': 17935, 'on online shopping': 602524, 'online shopping but': 609058, 'shopping but wait': 762261, 'but wait there': 147714, 'wait there more': 964203, 'there more thanks': 878768, 'more thanks to': 540709, 'to the virus': 917172, 'the virus not': 870866, 'virus not only': 958537, 'not only will': 570839, 'only will my': 611479, 'will my package': 994141, 'my package not': 549672, 'package not arrive': 633334, 'not arrive in': 568248, 'arrive in their': 93921, 'in their usual': 429788, 'their usual day': 875099, 'usual day shipping': 950917, 'day shipping some': 228346, 'shipping some of': 758916, 'some of them': 783410, 'of them won': 591777, 'them won come': 876658, 'won come in': 1003771, 'come in till': 187378, 'in till the': 430070, 'till the end': 896104, 'end of next': 275907, 'of next month': 587004, 'nikki': 563243, 'fried': 333444, 'activates': 30233, 'updated commissioner': 947353, 'commissioner nikki': 188953, 'nikki fried': 563246, 'fried activates': 333445, 'activates child': 30234, 'child meal': 176143, 'meal website': 524297, '19 school': 10363, 'closure 2020': 183820, '2020 press': 14525, 'release press': 708990, 'release news': 708976, 'news event': 560387, 'event home': 284992, 'home florida': 401199, 'florida department': 310917, 'of agriculture': 579842, 'agriculture consumer': 38950, 'updated commissioner nikki': 947354, 'commissioner nikki fried': 188954, 'nikki fried activates': 563247, 'fried activates child': 333446, 'activates child meal': 30235, 'child meal website': 176144, 'meal website for': 524299, 'website for covid': 975264, 'covid 19 school': 213752, '19 school closure': 10367, 'school closure 2020': 741745, 'closure 2020 press': 183822, '2020 press release': 14526, 'press release press': 671080, 'release press release': 708991, 'press release news': 671079, 'release news event': 708977, 'news event home': 560389, 'event home florida': 284993, 'home florida department': 401200, 'florida department of': 310918, 'department of agriculture': 237231, 'of agriculture consumer': 579845, 'agriculture consumer service': 38951, 'victoria': 956532, 'bc this': 113301, 'province victoria': 687202, 'victoria help': 956537, 'help with': 390894, 'food production': 316036, 'production for': 682042, 'time since': 897662, 'since wwii': 771007, 'wwii due': 1013688, '19 demand': 6480, 'demand cbc': 235115, 'bc this all': 113302, 'this all over': 886268, 'over the province': 630756, 'the province victoria': 864736, 'province victoria help': 687203, 'victoria help with': 956538, 'help with food': 390911, 'with food production': 998502, 'food production for': 316044, 'production for 1st': 682043, '1st time since': 12818, 'time since wwii': 897676, 'since wwii due': 771008, 'wwii due to': 1013689, 'covid 19 demand': 212930, '19 demand cbc': 6482, 'demand cbc news': 235116, 'depth': 237753, 'after initial': 35824, 'initial panic': 438546, 'of dining': 582624, 'dining room': 243025, 'restaurant local': 716551, 'are adjusting': 84231, 'adjusting to': 32364, 'normal in': 567179, 'the depth': 853166, 'depth of': 237770, 'pandemic covid': 635255, 'after initial panic': 35826, 'initial panic buying': 438548, 'buying at grocery': 149964, 'and the closure': 73287, 'closure of dining': 183959, 'of dining room': 582626, 'dining room in': 243026, 'room in restaurant': 725922, 'in restaurant local': 427437, 'restaurant local business': 716552, 'local business are': 497750, 'business are adjusting': 143354, 'are adjusting to': 84236, 'adjusting to new': 32368, 'to new normal': 910568, 'new normal in': 559157, 'normal in the': 567182, 'in the depth': 429130, 'the depth of': 853168, 'depth of the': 237771, 'of the global': 591065, 'global pandemic covid': 352081, 'pandemic covid 19': 635256, 'hongkongers': 403224, 'fabric': 294219, 'hongkongers make': 403225, 'make reusable': 510404, 'reusable fabric': 720156, 'fabric mask': 294228, 'mask covid': 518552, 'epidemic lead': 279406, 'to shortage': 914526, 'and sky': 71724, 'sky high': 773195, 'hongkongers make reusable': 403226, 'make reusable fabric': 510405, 'reusable fabric mask': 720157, 'fabric mask covid': 294229, 'mask covid 19': 518553, '19 epidemic lead': 6810, 'epidemic lead to': 279407, 'lead to shortage': 483388, 'to shortage and': 914527, 'shortage and sky': 764828, 'and sky high': 71726, 'sky high price': 773201, 'childresistant': 176327, 'prerolls': 670434, 'cannabiscommunity': 161462, 'good info': 357262, 'info from': 437479, 'the cannabis': 850338, 'cannabis consumer': 161395, 'consumer policy': 198380, 'policy council': 663369, 'council essential': 209979, 'essential certified': 280887, 'certified childresistant': 170228, 'childresistant cannabis': 176328, 'cannabis packaging': 161427, 'packaging edible': 633528, 'edible prerolls': 268557, 'prerolls vape': 670435, 'vape cannabiscommunity': 952451, 'some good info': 782966, 'good info from': 357264, 'info from the': 437482, 'from the cannabis': 337625, 'the cannabis consumer': 850339, 'cannabis consumer policy': 161400, 'consumer policy council': 198382, 'policy council essential': 663370, 'council essential certified': 209980, 'essential certified childresistant': 280888, 'certified childresistant cannabis': 170229, 'childresistant cannabis packaging': 176329, 'cannabis packaging edible': 161428, 'packaging edible prerolls': 633529, 'edible prerolls vape': 268558, 'prerolls vape cannabiscommunity': 670436, 'aka': 40468, 'new aka': 558329, 'aka epidemic': 40481, 'epidemic they': 279457, 'now almost': 573971, 'almost critical': 46586, 'critical to': 218705, 'keep healthy': 471569, 'healthy doctor': 387581, 'nurse corona': 577249, 'country are now': 210473, 'are now at': 88524, 'at the front': 100955, 'the new aka': 861469, 'new aka epidemic': 558330, 'aka epidemic they': 40482, 'epidemic they are': 279458, 'are now almost': 88520, 'now almost critical': 573973, 'almost critical to': 46587, 'critical to keep': 218707, 'to keep healthy': 908800, 'keep healthy doctor': 471570, 'healthy doctor nurse': 387582, 'doctor nurse corona': 251006, 'bizarre': 131962, 'so bizarre': 776623, 'bizarre to': 131972, 'with grocery': 998691, 'grocery list': 364695, 'list and': 494265, 'and come': 60108, 'come home': 187345, 'with le': 999187, 'than half': 840714, 'half the': 374268, 'you went': 1022234, 'went for': 978998, 'for because': 319611, 'because isle': 119170, 'isle after': 454339, 'after isle': 35831, 'isle the': 454387, 'it is so': 459081, 'is so bizarre': 451995, 'so bizarre to': 776624, 'bizarre to go': 131973, 'store with grocery': 811380, 'with grocery list': 998694, 'grocery list and': 364696, 'list and come': 494266, 'and come home': 60109, 'come home with': 187351, 'home with le': 402528, 'with le than': 999189, 'le than half': 483173, 'than half the': 840720, 'half the thing': 374279, 'the thing you': 869470, 'thing you went': 885043, 'you went for': 1022235, 'went for because': 979000, 'for because isle': 319612, 'because isle after': 119171, 'isle after isle': 454340, 'after isle the': 35832, 'isle the shelf': 454388, 'the shelf are': 866824, 'food maker': 315360, 'maker shift': 510868, 'shift production': 758390, 'to focus': 906036, 'the basic': 849301, 'basic during': 111864, 'pandemic canadian': 635090, 'canadian self': 160747, 'isolate eat': 454850, 'eat more': 265981, 'meal at': 524105, 'and stockpile': 72437, 'essential demand': 280967, 'some grocery': 782998, 'been up': 122300, 'by 400': 151649, '400 per': 18768, 'per cent': 650742, 'cent via': 169135, 'food maker shift': 315364, 'maker shift production': 510869, 'shift production to': 758391, 'production to focus': 682242, 'to focus on': 906037, 'on the basic': 603979, 'the basic during': 849307, 'basic during covid': 111865, '19 pandemic canadian': 9284, 'pandemic canadian self': 635091, 'canadian self isolate': 160748, 'self isolate eat': 747672, 'isolate eat more': 454851, 'eat more meal': 265985, 'more meal at': 539760, 'meal at home': 524107, 'at home and': 98939, 'home and stockpile': 400694, 'and stockpile essential': 72439, 'stockpile essential demand': 803738, 'essential demand for': 280968, 'demand for some': 235496, 'for some grocery': 325744, 'some grocery item': 783002, 'grocery item ha': 364655, 'item ha been': 463306, 'ha been up': 369973, 'been up by': 122301, 'up by 400': 944543, 'by 400 per': 151652, '400 per cent': 18769, 'per cent via': 650761, 'censored': 169017, 'actorcon': 30605, 'subject': 815726, 'distracting': 247896, 'kardashian': 470880, 'ac': 27748, 'no photo': 565106, 'photo censored': 655144, 'censored by': 169018, 'by twitter': 154614, 'twitter actorcon': 936630, 'actorcon need': 30606, 'need subject': 555664, 'subject like': 815733, 'like pandemic': 490958, 'to trend': 917767, 'trend distracting': 931321, 'distracting kardashian': 247899, 'kardashian fight': 470881, 'fight how': 304771, 'about real': 26051, 'real crowd': 701091, 'crowd to': 219279, 'to protest': 912357, 'protest or': 685919, 'or go': 615485, 'on toiletpaper': 604783, 'toiletpaper buying': 921837, 'buying run': 150977, 'run there': 727829, 'are thousand': 91063, 'of ac': 579728, 'no photo censored': 565107, 'photo censored by': 655145, 'censored by twitter': 169019, 'by twitter actorcon': 154615, 'twitter actorcon need': 936631, 'actorcon need subject': 30607, 'need subject like': 555665, 'subject like pandemic': 815734, 'like pandemic to': 490961, 'pandemic to trend': 636797, 'to trend distracting': 917769, 'trend distracting kardashian': 931322, 'distracting kardashian fight': 247900, 'kardashian fight how': 470882, 'fight how about': 304772, 'how about real': 407298, 'about real crowd': 26052, 'real crowd to': 701092, 'crowd to protest': 219281, 'to protest or': 912359, 'protest or go': 685920, 'or go on': 615490, 'go on toiletpaper': 353902, 'on toiletpaper buying': 604787, 'toiletpaper buying run': 921838, 'buying run there': 150978, 'run there are': 727830, 'there are thousand': 878177, 'are thousand of': 91066, 'thousand of ac': 893420, 'shut out': 767917, 'of international': 585259, 'international capital': 441763, 'capital market': 162665, 'and facing': 62601, 'facing further': 295479, 'further hit': 342061, 'hit to': 398469, 'it finance': 458002, 'finance with': 306304, 'price iran': 674851, 'iran is': 444689, 'it economy': 457755, 'economy from': 267883, 'to economist': 904931, 'shut out of': 767918, 'out of international': 626763, 'of international capital': 585260, 'international capital market': 441764, 'capital market and': 162666, 'market and facing': 515964, 'and facing further': 62604, 'facing further hit': 295480, 'further hit to': 342062, 'hit to it': 398476, 'to it finance': 908579, 'it finance with': 458003, 'finance with the': 306305, 'with the collapse': 1001238, 'the collapse in': 851146, 'collapse in oil': 186018, 'oil price iran': 597170, 'price iran is': 674852, 'iran is struggling': 444692, 'struggling to shield': 814517, 'shield it economy': 758162, 'it economy from': 457758, 'economy from the': 267884, 'from the pandemic': 337824, 'the pandemic according': 862894, 'according to economist': 28534, '00s': 704, 'buckle': 141694, '5m': 20754, 'beard': 118432, 'reader': 700680, '00s are': 705, 'of going': 584186, 'going hungry': 355202, 'hungry supermarket': 411313, 'supermarket buckle': 819425, 'buckle under': 141697, 'for home': 322339, 'to 5m': 899780, '5m vulnerable': 20777, 'and million': 67026, 'million more': 532244, 'more who': 540972, 'shield report': 758174, 'report beard': 711826, 'beard here': 118435, 'what one': 981965, 'one reader': 606940, 'reader told': 700705, '00s are at': 706, 'risk of going': 723751, 'of going hungry': 584191, 'going hungry supermarket': 355207, 'hungry supermarket buckle': 411314, 'supermarket buckle under': 819426, 'buckle under the': 141698, 'under the demand': 940300, 'demand for home': 235441, 'for home delivery': 322343, 'home delivery to': 401053, 'delivery to 5m': 234650, 'to 5m vulnerable': 899782, '5m vulnerable people': 20778, 'vulnerable people and': 961079, 'people and million': 646871, 'and million more': 67030, 'million more who': 532245, 'more who have': 540974, 'who have been': 988912, 'have been asked': 379469, 'asked to shield': 95878, 'to shield report': 914408, 'shield report beard': 758175, 'report beard here': 711827, 'beard here what': 118436, 'here what one': 393816, 'what one reader': 981967, 'one reader told': 606941, 'reader told her': 700706, 'skyward': 773460, 'bar closure': 110691, 'closure and': 183830, 'consumer fear': 197451, 'fear sent': 301316, 'sent sale': 750805, 'sale skyward': 732527, 'skyward last': 773461, 'week at': 975956, 'at liquor': 99593, 'liquor store': 494199, 'bar closure and': 110692, 'closure and consumer': 183833, 'and consumer fear': 60379, 'consumer fear sent': 197460, 'fear sent sale': 301317, 'sent sale skyward': 750806, 'sale skyward last': 732528, 'skyward last week': 773462, 'last week at': 480634, 'week at liquor': 975962, 'at liquor store': 99594, 'liquor store across': 494200, 'peep': 646270, 'cowvid19': 214513, 'cowvid': 214510, 'worldofcow': 1010262, 'workingfromhomelife': 1009117, 'the working': 871776, 'home series': 402038, 'series stay': 751299, 'safe peep': 729881, 'peep cowvid19': 646274, 'cowvid19 cowvid': 214514, 'cowvid 19': 214511, '19 worldofcow': 12199, 'worldofcow selfisolation': 1010265, 'selfisolation socialdistancing': 748486, 'socialdistancing workingfromhomelife': 780886, 'workingfromhomelife workingfromhome': 1009123, 'workingfromhome toiletpaper': 1009113, 'day of the': 228110, 'of the working': 591629, 'the working from': 871780, 'from home series': 335902, 'home series stay': 402039, 'series stay safe': 751300, 'stay safe peep': 797264, 'safe peep cowvid19': 729882, 'peep cowvid19 cowvid': 646275, 'cowvid19 cowvid 19': 214515, 'cowvid 19 worldofcow': 214512, '19 worldofcow selfisolation': 12200, 'worldofcow selfisolation socialdistancing': 1010266, 'selfisolation socialdistancing workingfromhomelife': 748488, 'socialdistancing workingfromhomelife workingfromhome': 780887, 'workingfromhomelife workingfromhome toiletpaper': 1009124, '2011': 13764, 'revived': 720692, 'the 2011': 847999, '2011 video': 13773, 'of special': 589967, 'supermarket sale': 822303, 'sale ha': 732256, 'been revived': 121856, 'revived in': 720695, 'uk spain': 938729, 'spain amp': 787269, 'amp belgium': 53446, 'belgium well': 126194, 'the 2011 video': 848001, '2011 video of': 13774, 'video of special': 956833, 'of special supermarket': 589969, 'special supermarket sale': 788064, 'supermarket sale ha': 822305, 'sale ha been': 732257, 'ha been revived': 369906, 'been revived in': 121857, 'revived in the': 720696, '19 in the': 7791, 'the uk spain': 870282, 'uk spain amp': 938730, 'spain amp belgium': 787270, 'amp belgium well': 53447, 'suppresses': 827413, 'fall by': 296867, 'most in': 542433, 'in more': 425432, 'than five': 840654, 'five year': 309687, 'and further': 63439, 'further decrease': 342025, 'decrease are': 231550, 'likely the': 492117, 'outbreak suppresses': 628677, 'suppresses demand': 827414, 'service 19': 752018, 'consumer price fall': 198419, 'price fall by': 673779, 'fall by the': 296874, 'by the most': 154380, 'the most in': 861000, 'most in more': 542435, 'in more than': 425447, 'more than five': 540620, 'than five year': 840656, 'five year in': 309692, 'in march and': 425080, 'march and further': 515271, 'and further decrease': 63441, 'further decrease are': 342026, 'decrease are likely': 231551, 'are likely the': 87805, 'likely the outbreak': 492119, 'the outbreak suppresses': 862703, 'outbreak suppresses demand': 628678, 'suppresses demand for': 827415, 'for some good': 325743, 'some good and': 782959, 'and service 19': 71294, 'ash': 95024, 'resold': 714622, 'insanely': 439085, '85p': 22959, 'ash can': 95027, 'can dm': 158086, 'dm you': 248939, 'you ash': 1017313, 'ash certain': 95029, 'certain that': 170109, 'what some': 982215, 'shop here': 760273, 'here have': 393073, 'done cleared': 254808, 'cleared supermarket': 181434, 'and resold': 70313, 'resold at': 714623, 'at insanely': 99305, 'insanely higher': 439090, 'price but': 672971, 'but cannot': 145376, 'cannot 100': 161580, '100 prove': 2056, 'it same': 460859, 'same paracetamol': 733202, 'paracetamol usually': 641276, 'usually get': 951119, 'get for': 347081, 'for 85p': 318929, '85p being': 22960, 'being sold': 125827, 'ash can dm': 95028, 'can dm you': 158088, 'dm you ash': 248940, 'you ash certain': 1017314, 'ash certain that': 95030, 'certain that what': 170111, 'that what some': 847467, 'what some of': 982218, 'of the shop': 591458, 'the shop here': 867000, 'shop here have': 760275, 'here have done': 393075, 'have done cleared': 380327, 'done cleared supermarket': 254809, 'cleared supermarket shelf': 181435, 'shelf and resold': 756758, 'and resold at': 70314, 'resold at insanely': 714625, 'at insanely higher': 99306, 'insanely higher price': 439091, 'higher price but': 395667, 'price but cannot': 672974, 'but cannot 100': 145377, 'cannot 100 prove': 161581, '100 prove it': 2057, 'prove it same': 686108, 'it same paracetamol': 460860, 'same paracetamol usually': 733203, 'paracetamol usually get': 641277, 'usually get for': 951121, 'get for 85p': 347082, 'for 85p being': 318930, '85p being sold': 22961, 'adequate': 32153, 'so very': 778628, 'sad heart': 729176, 'heart go': 388295, 'family london': 297998, 'london bus': 501044, 'bus operator': 143063, 'operator and': 613340, 'do all': 249038, 'their power': 874343, 'sure bus': 827504, 'driver have': 259591, 'have adequate': 379128, 'adequate ppe': 32172, 'ppe bus': 667925, 'driver taxi': 259772, 'them safe': 876235, 'this is so': 888403, 'is so very': 452045, 'so very sad': 778632, 'very sad heart': 955488, 'sad heart go': 729177, 'heart go out': 388296, 'out to their': 627690, 'to their family': 917233, 'their family london': 873259, 'family london bus': 297999, 'london bus operator': 501045, 'bus operator and': 143064, 'operator and need': 613345, 'and need to': 67483, 'need to do': 555907, 'to do all': 904476, 'do all in': 249041, 'all in their': 43207, 'in their power': 429764, 'their power to': 874344, 'power to make': 667711, 'make sure bus': 510507, 'sure bus driver': 827505, 'bus driver have': 143020, 'driver have adequate': 259592, 'have adequate ppe': 379130, 'adequate ppe bus': 32173, 'ppe bus driver': 667926, 'bus driver taxi': 143030, 'driver taxi driver': 259774, 'taxi driver supermarket': 835161, 'worker are the': 1006433, 'are the unsung': 90928, 'hero of the': 394049, 'the crisis keep': 852397, 'crisis keep them': 217634, 'keep them safe': 472115, 'solely': 781860, 'overspending': 631542, 'great economy': 362646, 'economy that': 268262, 'that relies': 845985, 'relies solely': 709523, 'solely on': 781867, 'consumer overspending': 198314, 'overspending apparently': 631543, 'great economy that': 362647, 'economy that relies': 268268, 'that relies solely': 845986, 'relies solely on': 709524, 'solely on consumer': 781868, 'on consumer overspending': 600064, 'consumer overspending apparently': 198315, '2k20': 16631, 'cardio': 163764, 'babydoll': 106758, 'basketball': 112429, 'nfl': 561773, 'nba': 553201, 'peaceful': 646024, 'running in': 727978, 'place working': 657851, 'working out': 1008843, 'out 2k20': 625533, '2k20 park': 16636, 'park workout': 642032, 'workout cardio': 1009153, 'cardio babydoll': 163765, 'babydoll basketball': 106759, 'basketball court': 112430, 'court bored': 211976, 'bored toiletpaper': 135379, 'toiletpaper running': 922429, 'running lockdown': 727992, 'lockdown home': 499471, 'home governor': 401310, 'governor brown': 360884, 'brown nfl': 141246, 'nfl nba': 561778, 'nba cleveland': 553202, 'cleveland art': 181839, 'art poetry': 94185, 'poetry peaceful': 662380, 'peaceful beauty': 646027, 'beauty meditation': 118767, 'meditation ventilator': 526961, 'ventilator via': 954631, 'running in place': 727980, 'in place working': 426778, 'place working out': 657852, 'working out 2k20': 1008844, 'out 2k20 park': 625534, '2k20 park workout': 16637, 'park workout cardio': 642033, 'workout cardio babydoll': 1009154, 'cardio babydoll basketball': 163766, 'babydoll basketball court': 106760, 'basketball court bored': 112431, 'court bored toiletpaper': 211977, 'bored toiletpaper running': 135380, 'toiletpaper running lockdown': 922430, 'running lockdown home': 727993, 'lockdown home governor': 499472, 'home governor brown': 401311, 'governor brown nfl': 360886, 'brown nfl nba': 141248, 'nfl nba cleveland': 561779, 'nba cleveland art': 553203, 'cleveland art poetry': 181840, 'art poetry peaceful': 94188, 'poetry peaceful beauty': 662381, 'peaceful beauty meditation': 646028, 'beauty meditation ventilator': 118768, 'meditation ventilator via': 526962, 'compilation': 191802, 'insightful': 439669, 'attentive': 102511, 'our partner': 624270, 'partner at': 642779, 'at comprehensive': 98307, 'comprehensive compilation': 192626, 'compilation of': 191803, 'of data': 582352, 'data surrounding': 226438, 'surrounding covid': 828744, 'behavior explore': 124033, 'explore insightful': 292487, 'insightful data': 439676, 'data provided': 226371, 'provided by': 686572, 'the platform': 863822, 'platform partner': 659020, 'partner including': 642837, 'including attentive': 431884, 'from our partner': 336793, 'our partner at': 624273, 'partner at comprehensive': 642781, 'at comprehensive compilation': 98308, 'comprehensive compilation of': 192627, 'compilation of data': 191804, 'of data surrounding': 582361, 'data surrounding covid': 226439, 'surrounding covid 19': 828745, 'consumer behavior explore': 196475, 'behavior explore insightful': 124034, 'explore insightful data': 292488, 'insightful data provided': 439677, 'data provided by': 226372, 'provided by the': 686579, 'by the platform': 154408, 'the platform partner': 863824, 'platform partner including': 659021, 'partner including attentive': 642838, 'goddamn': 354852, 'treasure': 930762, 'hunt': 411348, 'just finding': 468720, 'finding chicken': 307449, 'chicken in': 175797, 'supermarket these': 823282, 'day ha': 227712, 'become goddamn': 120011, 'goddamn treasure': 354859, 'treasure hunt': 930767, 'hunt coronapocolypse': 411357, 'just finding chicken': 468721, 'finding chicken in': 307450, 'chicken in supermarket': 175799, 'in supermarket these': 428690, 'supermarket these day': 823283, 'these day ha': 879875, 'day ha become': 227713, 'ha become goddamn': 369679, 'become goddamn treasure': 120012, 'goddamn treasure hunt': 354860, 'treasure hunt coronapocolypse': 930768, 'universe': 942389, 'kate': 471013, 'telstra': 837305, 'universe hi': 942392, 'hi kate': 394690, 'kate we': 471023, 've announced': 952844, 'announced our': 77008, 'our offer': 624112, 'offer for': 594614, 'customer here': 222464, 'here these': 393677, 'are unprecedented': 91332, 'provide update': 686529, 'our business': 622284, 'business people': 144208, 'people policy': 649147, 'customer on': 222642, 'on telstra': 603897, 'universe hi kate': 942393, 'hi kate we': 394691, 'kate we ve': 471025, 'we ve announced': 973638, 've announced our': 952846, 'announced our offer': 77010, 'our offer for': 624113, 'offer for consumer': 594617, 'for consumer and': 320240, 'business customer here': 143611, 'customer here these': 222467, 'here these are': 393678, 'these are unprecedented': 879643, 'are unprecedented time': 91335, 'unprecedented time and': 943195, 'time and we': 896305, 'and we will': 75333, 'we will continue': 973846, 'continue to provide': 201238, 'to provide update': 912446, 'provide update on': 686530, 'update on our': 947128, 'on our business': 602580, 'our business people': 622290, 'business people policy': 144209, 'people policy and': 649148, 'policy and customer': 663329, 'and customer on': 60854, 'customer on telstra': 222643, 'noise': 566220, 'great source': 362999, '19 data': 6421, 'data updated': 226477, 'updated daily': 947360, 'daily be': 224514, 'cautious but': 168212, 'but stop': 147191, 'stop panicking': 804896, 'panicking there': 639386, 'is much': 449761, 'more noise': 539848, 'noise than': 566231, 'than fact': 840632, 'fact now': 295758, 'to yell': 918875, 'yell fire': 1015210, 'fire in': 308093, 'great source of': 363001, 'source of covid': 786519, 'covid 19 data': 212911, '19 data updated': 6423, 'data updated daily': 226478, 'updated daily be': 947361, 'daily be cautious': 224515, 'be cautious but': 114033, 'cautious but stop': 168213, 'but stop panicking': 147194, 'stop panicking there': 804899, 'panicking there is': 639387, 'there is much': 878590, 'is much more': 449766, 'much more noise': 545117, 'more noise than': 539849, 'noise than fact': 566232, 'than fact now': 840633, 'fact now is': 295759, 'now is not': 575080, 'time to yell': 898103, 'to yell fire': 918876, 'yell fire in': 1015211, 'fire in crowded': 308094, 'contributing': 201905, 'teacher emergency': 835458, 'others contributing': 621339, 'contributing in': 201912, 'in any': 420416, 'other way': 621184, 'nurse supermarket staff': 577490, 'staff teacher emergency': 792923, 'teacher emergency service': 835459, 'emergency service and': 272950, 'service and others': 752102, 'and others contributing': 68440, 'others contributing in': 621340, 'contributing in any': 201913, 'in any other': 420431, 'any other way': 79610, 'incentivize': 431379, 'increase your': 433160, 'the pay': 863408, 'pay of': 645010, 'your worker': 1026380, 'worker incentivize': 1007213, 'incentivize them': 431384, 'increase your price': 433163, 'your price increase': 1025404, 'increase the pay': 433110, 'the pay of': 863409, 'pay of your': 645012, 'of your worker': 593537, 'your worker incentivize': 1026382, 'worker incentivize them': 1007214, 'deferred': 232190, 'fijinews': 305310, 'lost your': 503958, 'also slowing': 48884, 'slowing down': 774535, 'government can': 359957, 'can invoke': 158766, 'the hardship': 857118, 'hardship provision': 378303, 'credit act': 216293, 'allow payment': 46029, 'payment on': 645688, 'on personal': 602770, 'personal mortgage': 652917, 'and installment': 65278, 'installment purchase': 440058, 'purchase to': 689693, 'be deferred': 114376, 'deferred fijinews': 232193, 'you have lost': 1019071, 'have lost your': 381388, 'lost your job': 503960, 'your job due': 1024528, '19 crisis and': 6212, 'crisis and the': 217054, 'and the economy': 73340, 'the economy is': 853985, 'economy is also': 267987, 'is also slowing': 445579, 'also slowing down': 48885, 'slowing down the': 774537, 'down the government': 257279, 'the government can': 856514, 'government can invoke': 359961, 'can invoke the': 158767, 'invoke the hardship': 444314, 'the hardship provision': 857119, 'hardship provision of': 378305, 'provision of the': 687281, 'of the consumer': 590886, 'the consumer credit': 851520, 'consumer credit act': 197013, 'credit act to': 216296, 'act to allow': 29795, 'to allow payment': 900352, 'allow payment on': 46031, 'payment on personal': 645692, 'on personal mortgage': 602775, 'personal mortgage and': 652918, 'mortgage and installment': 541863, 'and installment purchase': 65279, 'installment purchase to': 440059, 'purchase to be': 689696, 'to be deferred': 901195, 'be deferred fijinews': 114378, 'assign': 96595, 'codvid19': 185413, 'vo': 959903, 'always the': 49770, 'gop need': 358259, 'move assign': 543610, 'assign blame': 96596, 'for wasting': 327647, 'wasting time': 968328, 'for no': 323885, 'no other': 565010, 'other benefit': 619887, 'benefit than': 127093, 'than an': 840336, 'an evil': 55888, 'evil country': 288433, 'country that': 211106, 'that make': 844987, 'make everything': 509888, 'need now': 555311, 'now ppe': 575576, 'ppe shortage': 668052, 'shortage maga': 765066, 'maga republican': 508293, 'republican codvid19': 713018, 'codvid19 vo': 185419, 'always the gop': 49771, 'the gop need': 856466, 'gop need to': 358260, 'to move assign': 910303, 'move assign blame': 543611, 'assign blame for': 96597, 'blame for wasting': 132261, 'for wasting time': 327648, 'wasting time for': 968329, 'time for no': 896732, 'for no other': 323890, 'no other benefit': 565012, 'other benefit than': 619888, 'benefit than an': 127094, 'than an evil': 840337, 'an evil country': 55890, 'evil country that': 288434, 'country that make': 211117, 'that make everything': 844993, 'make everything we': 509890, 'everything we need': 288093, 'we need now': 972522, 'need now ppe': 555313, 'now ppe shortage': 575577, 'ppe shortage maga': 668053, 'shortage maga republican': 765067, 'maga republican codvid19': 508294, 'republican codvid19 vo': 713019, 'provisioned': 687291, 'sized': 772820, 'crucial info': 219455, 'from friend': 335568, 'much loo': 545064, 'roll people': 725472, 'people use': 650063, 'use someone': 949604, 'ha frequently': 370680, 'frequently provisioned': 332869, 'provisioned for': 687292, 'month without': 538134, 'without grocery': 1002697, 'store promise': 809677, 'promise you': 683711, 'that roll': 846066, 'of th': 590696, 'th average': 840044, 'average sized': 104900, 'sized roll': 772834, 'roll is': 725347, 'crucial info from': 219456, 'info from friend': 437480, 'from friend who': 335572, 'friend who know': 333901, 'who know how': 989181, 'know how much': 476450, 'how much loo': 408358, 'much loo roll': 545065, 'loo roll people': 502196, 'roll people use': 725474, 'people use someone': 650069, 'use someone who': 949606, 'someone who ha': 784759, 'who ha frequently': 988845, 'ha frequently provisioned': 370681, 'frequently provisioned for': 332870, 'provisioned for month': 687293, 'for month without': 323544, 'month without grocery': 538135, 'without grocery store': 1002698, 'grocery store promise': 365683, 'store promise you': 809678, 'promise you that': 683713, 'you that roll': 1021576, 'that roll per': 846068, 'person per week': 652579, 'per week of': 651071, 'week of th': 976642, 'of th average': 590697, 'th average sized': 840045, 'average sized roll': 104901, 'sized roll is': 772835, 'roll is all': 725348, 'is all you': 445474, 'bridgewater': 139641, 'heavily': 388563, 'dax': 227075, 'congrats': 194424, 'hedgefonds': 388728, 'the founder': 855731, 'world largest': 1009741, 'largest hedge': 479961, 'fund bridgewater': 341372, 'bridgewater is': 139642, 'currently betting': 221484, 'betting heavily': 128637, 'heavily on': 388590, 'for dax': 320561, 'dax stock': 227078, 'stock now': 802505, 'now he': 574898, 'he even': 384930, 'even increased': 284255, 'increased his': 433342, 'his bet': 397244, 'bet last': 128077, 'last wednesday': 480621, 'wednesday with': 975703, 'with now': 999834, 'now billion': 574255, 'billion congrats': 130794, 'congrats it': 194425, 'it very': 462023, 'very good': 955181, 'good move': 357418, 'move dax': 543638, 'dax hedgefonds': 227076, 'hedgefonds investment': 388729, 'the founder of': 855733, 'founder of the': 330559, 'the world largest': 871904, 'world largest hedge': 1009744, 'largest hedge fund': 479962, 'hedge fund bridgewater': 388720, 'fund bridgewater is': 341373, 'bridgewater is currently': 139643, 'is currently betting': 446988, 'currently betting heavily': 221485, 'betting heavily on': 128638, 'heavily on falling': 388593, 'on falling price': 600726, 'falling price for': 297322, 'price for dax': 673949, 'for dax stock': 320562, 'dax stock now': 227079, 'stock now he': 802511, 'now he even': 574902, 'he even increased': 384931, 'even increased his': 284256, 'increased his bet': 433343, 'his bet last': 397245, 'bet last wednesday': 128078, 'last wednesday with': 480623, 'wednesday with now': 975704, 'with now billion': 999835, 'now billion congrats': 574256, 'billion congrats it': 130795, 'congrats it very': 194426, 'it very good': 462030, 'very good move': 955192, 'good move dax': 357421, 'move dax hedgefonds': 543639, 'dax hedgefonds investment': 227077, 'week is': 976413, 'is asking': 445822, 'life and': 488471, 'staff carers': 792309, 'carers etc': 164577, 'etc just': 282629, 'your bit': 1022973, 'bit and': 131533, 'home coronavid19': 400946, 'week is all': 976414, 'is all the': 445469, 'the government is': 856553, 'government is asking': 360243, 'is asking for': 445828, 'asking for to': 95999, 'for to save': 327234, 'save life and': 737531, 'life and help': 488480, 'and help the': 64473, 'help the nh': 390670, 'nh supermarket staff': 562124, 'supermarket staff carers': 822825, 'staff carers etc': 792311, 'carers etc just': 164578, 'etc just do': 282630, 'just do your': 468619, 'do your bit': 250701, 'your bit and': 1022974, 'bit and stay': 131534, 'and stay home': 72294, 'stay home coronavid19': 796951, 'bug': 141891, 'praise god': 668845, 'little bug': 495274, 'bug do': 141895, 'they make': 882643, 'make good': 509942, 'good pet': 357554, 'pet can': 653367, 'them around': 875424, 'praise god bless': 668846, 'bless the little': 132597, 'the little bug': 859485, 'little bug do': 495275, 'bug do they': 141896, 'do they make': 250310, 'they make good': 882646, 'make good pet': 509944, 'good pet can': 357555, 'pet can we': 653368, 'we keep them': 972135, 'keep them around': 472103, 'automatically': 103990, 'subtitle': 816111, 'evening let': 284879, 'let see': 487031, 'virus 19': 957887, '19 prevention': 9793, 'control in': 202027, 'supermarket mobile': 821527, 'mobile video': 535037, 'video software': 956902, 'software is': 781534, 'is very': 453664, 'very easy': 955134, 'can automatically': 157547, 'automatically convert': 103993, 'convert subtitle': 202539, 'subtitle to': 816112, 'to voice': 918226, 'the supermarket this': 868854, 'supermarket this evening': 823312, 'this evening let': 887439, 'evening let see': 284880, 'let see the': 487037, 'see the virus': 745895, 'the virus 19': 870792, 'virus 19 prevention': 957889, '19 prevention and': 9794, 'prevention and control': 671841, 'and control in': 60515, 'control in china': 202028, 'china and what': 176494, 'and what in': 75471, 'what in the': 981659, 'the supermarket mobile': 868704, 'supermarket mobile video': 821528, 'mobile video software': 535038, 'video software is': 956903, 'software is very': 781536, 'is very easy': 453673, 'very easy to': 955137, 'easy to use': 265793, 'to use it': 918040, 'use it can': 949300, 'it can automatically': 457007, 'can automatically convert': 157548, 'automatically convert subtitle': 103994, 'convert subtitle to': 202540, 'subtitle to voice': 816113, 'relationship': 708685, 'optimize': 613947, 'wtutureipsos': 1013434, 'the relationship': 865463, 'relationship that': 708702, 'that consumer': 843292, 'consumer have': 197704, 'have with': 383607, 'with tech': 1001132, 'tech brand': 836045, 'brand is': 137875, 'is changing': 446461, 'changing download': 172688, 'our guidance': 623320, 'guidance document': 368213, 'document on': 251199, 'to measure': 909978, 'measure optimize': 525283, 'optimize the': 613948, 'of technology': 590629, 'technology brand': 836262, 'marketing effort': 517587, 'effort through': 269604, 'crisis past': 217859, 'past wtutureipsos': 643656, 'wtutureipsos mrx': 1013435, 'mrx research': 544496, 'the relationship that': 865466, 'relationship that consumer': 708703, 'that consumer have': 843299, 'consumer have with': 197716, 'have with tech': 383608, 'with tech brand': 1001133, 'tech brand is': 836046, 'brand is changing': 137876, 'is changing download': 446468, 'changing download our': 172689, 'download our guidance': 257611, 'our guidance document': 623321, 'guidance document on': 368214, 'document on how': 251200, 'how to measure': 409044, 'to measure optimize': 909981, 'measure optimize the': 525284, 'optimize the impact': 613949, 'impact of technology': 417803, 'of technology brand': 590630, 'technology brand marketing': 836263, 'brand marketing effort': 137905, 'marketing effort through': 517589, 'effort through the': 269605, 'the crisis past': 852426, 'crisis past wtutureipsos': 217860, 'past wtutureipsos mrx': 643657, 'wtutureipsos mrx research': 1013436, 'prioritize': 678431, 'amazon will': 51200, 'will begin': 992804, 'put new': 690706, 'new grocery': 558819, 'delivery customer': 233843, 'on wait': 605084, 'wait list': 964152, 'and curtail': 60818, 'curtail shopping': 221777, 'some whole': 784210, 'to prioritize': 912144, 'prioritize order': 678448, 'order from': 618251, 'from existing': 335349, 'existing customer': 290302, 'customer buying': 222208, 'food online': 315616, 'the company': 851309, 'company said': 191042, 'said on': 731281, 'amazon will begin': 51201, 'will begin to': 992813, 'begin to put': 123588, 'to put new': 912598, 'put new grocery': 690707, 'new grocery delivery': 558820, 'grocery delivery customer': 364439, 'delivery customer on': 233844, 'customer on wait': 222645, 'on wait list': 605085, 'wait list and': 964153, 'list and curtail': 494267, 'and curtail shopping': 60819, 'curtail shopping hour': 221778, 'shopping hour at': 762913, 'hour at some': 405443, 'at some whole': 100584, 'some whole food': 784211, 'whole food store': 990216, 'food store to': 316863, 'store to prioritize': 810802, 'to prioritize order': 912146, 'prioritize order from': 678449, 'order from existing': 618255, 'from existing customer': 335350, 'existing customer buying': 290304, 'customer buying food': 222209, 'buying food online': 150324, 'food online during': 315620, 'online during the': 608144, 'coronavirus outbreak the': 206413, 'outbreak the company': 628706, 'the company said': 851349, 'company said on': 191044, 'said on sunday': 731289, 'smaller': 775247, 'urgently': 948376, 'british supermarket': 140604, 'supermarket group': 820594, 'group morrison': 366768, 'morrison is': 541729, 'pay it': 644965, 'it smaller': 461088, 'smaller supplier': 775310, 'supplier more': 824569, 'more urgently': 540870, 'urgently than': 948406, 'usual within': 951069, 'within 48': 1002324, '48 hour': 19302, 'them weather': 876593, 'weather the': 974896, 'the move': 861081, 'move should': 543727, 'supplier and': 824482, 'and farmer': 62697, 'farmer providing': 299481, 'providing egg': 686975, 'the british supermarket': 850035, 'british supermarket group': 140606, 'supermarket group morrison': 820596, 'group morrison is': 366770, 'morrison is to': 541731, 'is to pay': 453231, 'to pay it': 911539, 'pay it smaller': 644973, 'it smaller supplier': 461089, 'smaller supplier more': 775312, 'supplier more urgently': 824570, 'more urgently than': 540871, 'urgently than usual': 948407, 'than usual within': 841401, 'usual within 48': 951070, 'within 48 hour': 1002325, '48 hour to': 19314, 'hour to help': 406026, 'to help them': 907648, 'help them weather': 390718, 'them weather the': 876594, 'weather the crisis': 974898, 'the crisis the': 852460, 'crisis the move': 218181, 'the move should': 861088, 'move should be': 543728, 'should be good': 765636, 'be good news': 115072, 'news for local': 560437, 'local food supplier': 497975, 'food supplier and': 316915, 'supplier and farmer': 824485, 'and farmer providing': 62701, 'farmer providing egg': 299482, 'providing egg and': 686976, 'egg and meat': 269767, 'please covid': 659863, '19 cannot': 5638, 'afford any': 34674, 'more online': 539938, 'please covid 19': 659864, 'covid 19 cannot': 212760, '19 cannot afford': 5639, 'cannot afford any': 161597, 'afford any more': 34675, 'any more online': 79490, 'more online shopping': 539943, 'cb': 168264, 'mkt': 534689, 'altogether': 49385, 'rut': 728683, 'ndx': 553434, 'maybe the': 521827, 'coming recession': 188173, 'recession might': 704327, 'might play': 531101, 'in three': 430056, 'three phase': 894027, 'phase damage': 654600, 'damage on': 225209, 'on main': 601960, 'street by': 812933, '19 ongoing': 8984, 'ongoing cb': 607602, 'cb rescue': 168265, 'rescue temp': 713635, 'temp recovery': 837332, 'recovery on': 705369, 'on credit': 600158, 'credit mkt': 216434, 'mkt but': 534690, 'no recovery': 565309, 'consumer econ': 197289, 'econ unknown': 266936, 'unknown second': 942537, 'second shock': 743814, 'shock later': 759470, 'later finally': 481062, 'finally brings': 305953, 'brings wall': 140286, 'wall street': 965177, 'street down': 812955, 'down altogether': 256475, 'altogether spx': 49388, 'spx rut': 791381, 'rut ndx': 728684, 'maybe the coming': 521829, 'the coming recession': 851199, 'coming recession might': 188174, 'recession might play': 704328, 'might play in': 531102, 'play in three': 659174, 'in three phase': 430058, 'three phase damage': 894028, 'phase damage on': 654601, 'damage on main': 225210, 'on main street': 601961, 'main street by': 508827, 'street by covid': 812934, 'covid 19 ongoing': 213517, '19 ongoing cb': 8985, 'ongoing cb rescue': 607603, 'cb rescue temp': 168266, 'rescue temp recovery': 713636, 'temp recovery on': 837334, 'recovery on credit': 705371, 'on credit mkt': 600161, 'credit mkt but': 216435, 'mkt but no': 534691, 'but no recovery': 146496, 'no recovery on': 565311, 'recovery on consumer': 705370, 'on consumer econ': 600043, 'consumer econ unknown': 197290, 'econ unknown second': 266937, 'unknown second shock': 942538, 'second shock later': 743815, 'shock later finally': 759471, 'later finally brings': 481063, 'finally brings wall': 305955, 'brings wall street': 140287, 'wall street down': 965181, 'street down altogether': 812956, 'down altogether spx': 256476, 'altogether spx rut': 49389, 'spx rut ndx': 791382, 'curtis': 221817, 'subjected': 815757, 'general curtis': 345311, 'curtis hill': 221818, 'hill today': 396494, 'today urged': 920418, 'urged hoosier': 948261, 'hoosier who': 403387, 'who believe': 988311, 'been subjected': 122086, 'subjected to': 815760, 'to excessive': 905394, 'excessive price': 289398, 'complaint with': 192052, 'office consumer': 595397, 'protection division': 685395, 'attorney general curtis': 102631, 'general curtis hill': 345312, 'curtis hill today': 221821, 'hill today urged': 396495, 'today urged hoosier': 920419, 'urged hoosier who': 948262, 'hoosier who believe': 403388, 'who believe they': 988313, 'believe they ve': 126378, 've been subjected': 952936, 'been subjected to': 122087, 'subjected to excessive': 815761, 'to excessive price': 905395, 'excessive price for': 289404, 'price for consumer': 673940, 'for consumer good': 320262, 'consumer good during': 197611, 'pandemic to file': 636779, 'to file complaint': 905826, 'file complaint with': 305339, 'complaint with the': 192054, 'with the office': 1001407, 'the office consumer': 862069, 'office consumer protection': 595398, 'consumer protection division': 198522, 'bank grateful': 109873, 'for donation': 320823, 'donation see': 254691, 'see demand': 745037, 'demand spike': 236259, 'spike due': 789278, 'food bank grateful': 313579, 'bank grateful for': 109874, 'grateful for donation': 362262, 'for donation see': 320832, 'donation see demand': 254692, 'see demand spike': 745039, 'demand spike due': 236261, 'spike due to': 789279, 'helpus': 391651, 'youidiot': 1022543, 'jamesmaybloke': 464410, 'richardhammond': 721315, 'topgear': 925768, 'thegrandtour': 872385, 'coronabeer': 204444, 'job stopping': 466171, 'stopping the': 805827, 'virus in': 958319, 'in out': 426355, 'out local': 626513, 'supermarket helpus': 820742, 'helpus youidiot': 391654, 'youidiot jamesmaybloke': 1022544, 'jamesmaybloke richardhammond': 464411, 'richardhammond topgear': 721316, 'topgear thegrandtour': 925769, 'thegrandtour amazon': 872386, 'amazon coronabeer': 50904, 'great job stopping': 362789, 'job stopping the': 466172, 'stopping the spread': 805831, 'the virus in': 870846, 'virus in out': 958326, 'in out local': 426358, 'out local supermarket': 626515, 'local supermarket helpus': 498536, 'supermarket helpus youidiot': 820743, 'helpus youidiot jamesmaybloke': 391655, 'youidiot jamesmaybloke richardhammond': 1022545, 'jamesmaybloke richardhammond topgear': 464412, 'richardhammond topgear thegrandtour': 721317, 'topgear thegrandtour amazon': 925770, 'thegrandtour amazon coronabeer': 872387, 'snippet': 776362, 'learnt': 484269, '81': 22772, 're gathering': 698721, 'gathering real': 344499, 'real time': 701400, 'consumer reaction': 198644, 'to snippet': 914795, 'snippet of': 776365, 'of what': 593045, 'already learnt': 47500, 'learnt today': 484284, 'today 81': 919137, '81 think': 22779, 'police having': 663043, 'having the': 384311, 'to fine': 905960, 'fine those': 307704, 'those not': 892253, 'not following': 569462, 'rule will': 727411, 'be effective': 114650, 'effective in': 269268, 'in slowing': 428002, 'of get': 584114, 'in touch': 430223, 'touch for': 926480, 'we re gathering': 972882, 're gathering real': 698722, 'gathering real time': 344500, 'real time to': 701420, 'time to consumer': 897969, 'to consumer reaction': 903326, 'consumer reaction to': 198646, 'reaction to snippet': 700222, 'to snippet of': 914796, 'snippet of what': 776367, 'of what we': 593067, 'what we ve': 982568, 'we ve already': 973636, 've already learnt': 952825, 'already learnt today': 47501, 'learnt today 81': 484285, 'today 81 think': 919138, '81 think the': 22780, 'think the police': 885647, 'the police having': 863922, 'police having the': 663044, 'having the power': 384319, 'the power to': 864159, 'power to fine': 667706, 'to fine those': 905963, 'fine those not': 307705, 'those not following': 892256, 'not following the': 569466, 'following the new': 312894, 'new rule will': 559530, 'rule will be': 727412, 'will be effective': 992442, 'be effective in': 114652, 'effective in slowing': 269271, 'in slowing down': 428003, 'down the spread': 257303, 'spread of get': 790674, 'of get in': 584116, 'get in touch': 347316, 'in touch for': 430226, 'touch for more': 926483, 'for more info': 323580, 'surged': 828288, 'scary arm': 741133, 'arm sale': 92913, 'sale have': 732262, 'have surged': 382869, 'surged amid': 828291, 'and civil': 59906, 'civil unrest': 179558, 'unrest with': 943371, 'people sourcing': 649511, 'sourcing gun': 786612, 'gun and': 368684, 'ammunition from': 52945, 'scary arm sale': 741134, 'arm sale have': 92914, 'sale have surged': 732272, 'have surged amid': 382870, 'surged amid fear': 828292, 'amid fear of': 52473, 'fear of food': 301232, 'of food shortage': 583778, 'food shortage and': 316555, 'shortage and civil': 764813, 'and civil unrest': 59908, 'civil unrest with': 179562, 'unrest with many': 943372, 'with many people': 999388, 'many people sourcing': 514533, 'people sourcing gun': 649512, 'sourcing gun and': 786613, 'gun and ammunition': 368686, 'and ammunition from': 58082, 'ammunition from the': 52946, 'from the united': 337911, 'moisturising': 535604, 'browse': 141276, 'can send': 159572, 'send you': 749979, 'you moisturising': 1019877, 'moisturising natural': 535605, 'natural soap': 552866, 'soap to': 779128, 'door for': 255590, 'free when': 332325, 'spend 10': 788548, '10 or': 1590, 'more price': 540136, 'reduced due': 706064, 'to 19': 899531, '19 browse': 5460, 'browse our': 141279, 'our range': 624535, 'range on': 696728, 'website hour': 975303, 'hour hour': 405675, 'we can send': 971006, 'can send you': 159575, 'send you moisturising': 749986, 'you moisturising natural': 1019878, 'moisturising natural soap': 535606, 'natural soap to': 552868, 'soap to your': 779129, 'your door for': 1023576, 'door for free': 255592, 'for free when': 321738, 'free when you': 332326, 'you spend 10': 1021319, 'spend 10 or': 788549, '10 or more': 1593, 'or more price': 616187, 'more price have': 540139, 'been reduced due': 121797, 'reduced due to': 706065, 'due to 19': 261692, 'to 19 browse': 899537, '19 browse our': 5461, 'browse our range': 141281, 'our range on': 624537, 'range on our': 696729, 'our website hour': 625342, 'website hour hour': 975304, 'wey': 980810, 'chop': 177949, 'person wey': 652708, 'wey no': 980817, 'no work': 565922, 'work no': 1005491, 'no suppose': 565638, 'to chop': 902747, 'chop he': 177952, 'not rich': 571377, 'rich he': 721225, 'he cannot': 384823, 'cannot stock': 162128, 'for two': 327387, 'day it': 227845, 'is called': 446345, 'called from': 156327, 'from hand': 335719, 'hand to': 375854, 'to mouth': 910292, 'mouth daily': 543503, 'daily work': 224900, 'out no': 626638, 'for lazy': 322907, 'lazy man': 482751, 'man army': 511994, 'army why': 93057, 'not covid': 568911, '19 fight': 6987, 'fight it': 304785, 'is display': 447234, 'display of': 246189, 'of evil': 583283, 'person wey no': 652709, 'wey no work': 980818, 'no work no': 565927, 'work no suppose': 1005496, 'no suppose to': 565639, 'suppose to chop': 827324, 'to chop he': 902748, 'chop he is': 177953, 'he is not': 385134, 'is not rich': 450175, 'not rich he': 571379, 'rich he cannot': 721226, 'he cannot stock': 384825, 'cannot stock food': 162130, 'stock food for': 802132, 'food for two': 314584, 'for two day': 327389, 'two day it': 936864, 'day it is': 227850, 'it is called': 458895, 'is called from': 446347, 'called from hand': 156328, 'from hand to': 335721, 'hand to mouth': 375864, 'to mouth daily': 910294, 'mouth daily work': 543504, 'daily work if': 224901, 'work if you': 1005284, 'do not go': 249747, 'not go out': 569681, 'go out no': 353967, 'out no food': 626639, 'no food for': 564255, 'food for lazy': 314547, 'for lazy man': 322909, 'lazy man army': 482752, 'man army why': 511995, 'army why this': 93059, 'why this is': 991471, 'is not covid': 450053, 'not covid 19': 568912, 'covid 19 fight': 213091, '19 fight it': 6989, 'fight it is': 304787, 'it is display': 458934, 'is display of': 447235, 'display of evil': 246192, 'unexpected': 941349, 'healthier': 387454, 'not huge': 570027, 'huge surprise': 410228, 'surprise but': 828517, 'nice to': 562483, 'number do': 576867, 'think an': 885135, 'an unexpected': 56848, 'unexpected benefit': 941350, 'be healthier': 115171, 'healthier eating': 387457, 'is not huge': 450108, 'not huge surprise': 570030, 'huge surprise but': 410229, 'surprise but it': 828518, 'but it nice': 146144, 'it nice to': 459807, 'nice to see': 562495, 'see the number': 745866, 'the number do': 861953, 'number do you': 576868, 'you think an': 1021645, 'think an unexpected': 885137, 'an unexpected benefit': 56849, 'unexpected benefit of': 941351, 'benefit of covid': 127040, 'will be healthier': 992491, 'be healthier eating': 115172, 'healthier eating habit': 387458, 'eating habit for': 266219, 'habit for the': 372618, 'for the long': 326538, 'instruction': 440535, 'footmark': 318563, 'latest instruction': 481411, 'instruction by': 440543, 'government shop': 360592, 'shop should': 760782, 'should paint': 766304, 'paint footmark': 634283, 'footmark on': 318564, 'floor at': 310778, 'at distance': 98454, 'distance of': 246779, 'of four': 583885, 'four foot': 330607, 'foot to': 318443, 'avoid crowding': 105075, 'crowding near': 219397, 'near the': 553607, 'the counter': 852019, 'counter management': 210229, 'management should': 512625, 'should provide': 766343, 'provide sanitizer': 686462, 'sanitizer or': 735475, 'hand wash': 375916, 'wash to': 967558, 'latest instruction by': 481412, 'instruction by government': 440544, 'by government shop': 152717, 'government shop should': 360593, 'shop should paint': 760783, 'should paint footmark': 766305, 'paint footmark on': 634284, 'footmark on the': 318565, 'the floor at': 855419, 'floor at distance': 310779, 'at distance of': 98456, 'distance of four': 246782, 'of four foot': 583886, 'four foot to': 330608, 'foot to avoid': 318444, 'to avoid crowding': 900886, 'avoid crowding near': 105076, 'crowding near the': 219398, 'near the counter': 553609, 'the counter management': 852025, 'counter management should': 210230, 'management should provide': 512627, 'should provide sanitizer': 766347, 'provide sanitizer or': 686464, 'sanitizer or hand': 735483, 'or hand wash': 615560, 'hand wash to': 375933, 'wash to the': 967560, 'to the customer': 916619, 'the customer for': 852720, 'internationally': 441877, 'harmonised': 378477, 'cleaning disinfectant': 180932, 'disinfectant product': 245726, 'are key': 87673, 'of did': 582587, 'that internationally': 844529, 'internationally harmonised': 441880, 'harmonised testing': 378478, 'testing method': 839562, 'method help': 529774, 'chemical in': 175358, 'in disinfectant': 422305, 'disinfectant are': 245613, 'are effective': 86082, 'effective do': 269245, 'not harm': 569801, 'harm our': 378405, 'health find': 386434, 'cleaning disinfectant product': 180934, 'disinfectant product are': 245727, 'product are key': 680941, 'are key to': 87677, 'key to prevent': 473440, 'spread of did': 790665, 'of did you': 582588, 'you know that': 1019527, 'know that internationally': 476769, 'that internationally harmonised': 844530, 'internationally harmonised testing': 441881, 'harmonised testing method': 378479, 'testing method help': 839563, 'method help ensure': 529775, 'help ensure that': 389644, 'ensure that the': 278070, 'that the chemical': 846680, 'the chemical in': 850792, 'chemical in disinfectant': 175359, 'in disinfectant are': 422306, 'disinfectant are effective': 245614, 'are effective do': 86083, 'effective do not': 269246, 'do not harm': 249751, 'not harm our': 569802, 'harm our health': 378406, 'our health find': 623372, 'health find out': 386435, 'adjusted': 32314, 'sokonews': 781584, 'courtesy': 212031, 'globally the': 352400, 'ha dropped': 370455, 'dropped to': 260639, 'an 18': 55016, '18 year': 4603, 'year low': 1014705, 'low of': 505432, '30 percent': 17189, 'percent most': 651147, 'most country': 542215, 'country especially': 210619, 'especially in': 280519, 'the western': 871404, 'western world': 980646, 'world have': 1009619, 'have adjusted': 379132, 'adjusted their': 32336, 'their fuel': 873391, 'to benefit': 901760, 'benefit more': 127029, 'people sokonews': 649504, 'sokonews image': 781585, 'image courtesy': 416622, 'globally the price': 352403, 'price of crude': 675433, 'crude oil ha': 219560, 'oil ha dropped': 596852, 'ha dropped to': 370467, 'dropped to an': 260646, 'to an 18': 900436, 'an 18 year': 55017, '18 year low': 4605, 'year low of': 1014726, 'low of more': 505437, 'of more than': 586651, 'than 30 percent': 840226, '30 percent most': 17192, 'percent most country': 651148, 'most country especially': 542217, 'country especially in': 210620, 'especially in the': 280531, 'in the western': 429674, 'the western world': 871407, 'western world have': 980647, 'world have adjusted': 1009620, 'have adjusted their': 379134, 'adjusted their fuel': 32337, 'their fuel price': 873392, 'price to benefit': 676969, 'to benefit more': 901765, 'benefit more people': 127030, 'more people sokonews': 540037, 'people sokonews image': 649505, 'sokonews image courtesy': 781586, 'not pas': 570967, 'pas go': 643105, 'go do': 353469, 'not collect': 568790, 'collect 200': 186259, 'do not pas': 249797, 'not pas go': 570971, 'pas go do': 643107, 'go do not': 353471, 'do not collect': 249699, 'not collect 200': 568791, 'appreciation': 82866, 'robinson': 724741, 'our medical': 623894, 'medical frontliners': 526183, 'frontliners are': 338884, 'country first': 210656, 'first line': 308761, 'of defense': 582463, 'defense in': 232135, 'our fight': 623063, 'our way': 625311, 'of showing': 589696, 'showing our': 767488, 'our appreciation': 622094, 'appreciation they': 82894, 'are given': 86844, 'given access': 350938, 'priority lane': 678599, 'lane at': 479435, 'at robinson': 100422, 'robinson supermarket': 724750, 'our medical frontliners': 623895, 'medical frontliners are': 526184, 'frontliners are our': 338885, 'are our country': 88858, 'our country first': 622590, 'country first line': 210657, 'first line of': 308764, 'line of defense': 493299, 'of defense in': 582465, 'defense in our': 232136, 'in our fight': 426290, 'our fight against': 623064, '19 our way': 9067, 'our way of': 625312, 'way of showing': 969766, 'of showing our': 589700, 'showing our appreciation': 767489, 'our appreciation they': 622097, 'appreciation they are': 82895, 'they are given': 881284, 'are given access': 86845, 'given access to': 350939, 'to the priority': 916982, 'the priority lane': 864473, 'priority lane at': 678600, 'lane at robinson': 479436, 'at robinson supermarket': 100423, 'socialdistanacing is': 780065, 'is feeding': 447769, 'feeding pet': 302473, 'pet an': 653352, 'an issue': 56479, 'coronacrisis stopstockpiling stoppanicbuying': 204797, 'stopstockpiling stoppanicbuying panicshopping': 805887, 'panicbuyinguk socialdistanacing is': 639166, 'socialdistanacing is feeding': 780066, 'is feeding pet': 447770, 'feeding pet an': 302474, 'pet an issue': 653353, 'eaten': 266128, 'foodbanks': 317809, 'stopukhunger': 805943, 'waste is': 968139, 'is global': 448068, 'issue every': 455736, 'day panic': 228185, 'panic bought': 637412, 'bought or': 136668, 'let do': 486677, 'our very': 625261, 'very best': 955015, 'best to': 127935, 'is eaten': 447433, 'eaten rather': 266137, 'than going': 840699, 'waste especially': 968108, 'time donate': 896577, 'to foodbanks': 906111, 'foodbanks if': 317830, 'can stopukhunger': 159829, 'stopukhunger hunger': 805944, 'hunger bekind': 411079, 'food waste is': 317482, 'waste is global': 968141, 'is global issue': 448069, 'global issue every': 351995, 'issue every day': 455737, 'every day panic': 285835, 'day panic bought': 228186, 'panic bought or': 637428, 'bought or not': 136669, 'or not let': 616303, 'not let do': 570367, 'let do our': 486679, 'do our very': 249952, 'our very best': 625262, 'very best to': 955018, 'best to make': 127951, 'sure that all': 827691, 'that all food': 842546, 'all food is': 42814, 'food is eaten': 315120, 'is eaten rather': 447434, 'eaten rather than': 266138, 'rather than going': 697522, 'than going to': 840700, 'going to waste': 355760, 'to waste especially': 918367, 'waste especially at': 968109, 'especially at this': 280447, 'this time donate': 890632, 'time donate to': 896578, 'donate to foodbanks': 254256, 'to foodbanks if': 906113, 'foodbanks if you': 317831, 'you can stopukhunger': 1017798, 'can stopukhunger hunger': 159830, 'stopukhunger hunger bekind': 805945, 'heri': 393886, 'ensures': 278148, 'infection we': 436878, 'believe in': 126282, 'in social': 428042, 'distancing to': 247559, 'avoid contact': 105044, 'contact heri': 200093, 'heri ensures': 393889, 'ensures you': 278163, 'to worry': 918833, 'shopping do': 762492, 'your safest': 1025661, 'safest space': 730432, 'we shall': 973215, 'shall deliver': 754525, 'is with you': 454017, 'with you in': 1002155, 'you in the': 1019322, '19 infection we': 7863, 'infection we believe': 436880, 'we believe in': 970848, 'believe in social': 126291, 'in social distancing': 428044, 'social distancing to': 779747, 'distancing to avoid': 247560, 'to avoid contact': 900878, 'avoid contact heri': 105046, 'contact heri ensures': 200095, 'heri ensures you': 393891, 'ensures you do': 278164, 'not have to': 569883, 'have to worry': 383342, 'to worry about': 918835, 'worry about your': 1010663, 'about your shopping': 27013, 'your shopping do': 1025779, 'shopping do it': 762493, 'do it from': 249479, 'it from your': 458162, 'from your safest': 338493, 'your safest space': 1025662, 'safest space and': 730433, 'space and we': 787053, 'and we shall': 75320, 'we shall deliver': 973217, 'alabama': 40613, 'insecurity': 439137, 'of positive': 588248, 'in alabama': 420134, 'alabama increasing': 40618, 'increasing food': 433612, 'state expect': 795572, 'see an': 744891, 'to job': 908667, 'food insecurity': 315056, 'with the number': 1001405, 'number of positive': 576975, 'of positive covid': 588251, '19 case in': 5681, 'case in alabama': 165784, 'in alabama increasing': 420136, 'alabama increasing food': 40619, 'increasing food bank': 433613, 'bank in the': 109928, 'in the state': 429572, 'the state expect': 867772, 'state expect to': 795573, 'expect to see': 290775, 'to see an': 913983, 'see an increase': 744897, 'in demand due': 422120, 'due to job': 261837, 'to job and': 908668, 'job and food': 465627, 'and food insecurity': 63059, 'alert any': 41356, 'any one': 79553, 'one tracking': 607309, 'tracking black': 928321, 'marketing price': 517683, 'price pls': 675891, 'pls help': 661141, 'this pricing': 889715, 'alert any one': 41357, 'any one tracking': 79561, 'one tracking black': 607310, 'tracking black marketing': 928322, 'black marketing price': 132102, 'marketing price pls': 517684, 'price pls help': 675892, 'pls help to': 661143, 'help to understand': 390798, 'understand how is': 940644, 'is this pricing': 453113, 'ultimate': 939102, 'master': 520200, 'resource you': 714937, 'hoard or': 398843, 'or panic': 616485, 'quarantine with': 692708, 'this ultimate': 890894, 'ultimate indian': 939117, 'indian grocery': 434844, 'grocery checklist': 364375, 'checklist with': 174877, 'with master': 999426, 'master shopping': 520209, 'list for': 494323, 'for indian': 322545, 'indian ingredient': 434851, 'ingredient for': 438362, 'resource you do': 714939, 'to hoard or': 907875, 'hoard or panic': 398846, 'or panic buy': 616488, 'food for quarantine': 314567, 'for quarantine with': 324903, 'quarantine with this': 692711, 'with this ultimate': 1001734, 'this ultimate indian': 890896, 'ultimate indian grocery': 939118, 'indian grocery checklist': 434845, 'grocery checklist with': 364376, 'checklist with master': 174878, 'with master shopping': 999427, 'master shopping list': 520210, 'shopping list for': 763186, 'list for indian': 494327, 'for indian ingredient': 322546, 'indian ingredient for': 434852, 'ingredient for month': 438366, 'toiletpapermagazine': 923181, 'lionelrichie': 494038, 'toiletpaper shortage': 922463, 'shortage strong': 765227, 'strong trying': 814146, 'some humor': 783060, 'humor in': 410882, 'very stressful': 955590, 'time toiletpapercrisis': 898113, 'toiletpapercrisis toiletpapermagazine': 923105, 'toiletpapermagazine lionelrichie': 923182, 'toiletpaper shortage strong': 922472, 'shortage strong trying': 765228, 'strong trying to': 814147, 'trying to bring': 934773, 'to bring some': 902051, 'bring some humor': 140072, 'some humor in': 783061, 'humor in very': 410887, 'in very stressful': 430572, 'very stressful time': 955591, 'stressful time toiletpapercrisis': 813523, 'time toiletpapercrisis toiletpapermagazine': 898114, 'toiletpapercrisis toiletpapermagazine lionelrichie': 923106, 'covd': 212154, 'presented': 670654, 'artisanal': 94564, 'mining': 533259, 'field gold': 304479, 'in africa': 420081, 'africa are': 35050, 'down 30': 256407, '30 to': 17242, '50 latin': 19744, 'latin america': 481641, 'america down': 51495, 'down 50': 256421, '50 asia': 19616, 'asia to': 95233, 'to date': 903920, 'date is': 226673, 'more resilient': 540231, 'resilient with': 714546, 'price unchanged': 677172, 'unchanged or': 939790, 'or down': 615063, 'down 10': 256369, '10 pre': 1642, 'pre and': 669137, 'and post': 69226, 'post covd': 666072, 'covd 19': 212155, '19 price': 9802, 'price collected': 673181, 'collected from': 186354, 'from field': 335466, 'field site': 304517, 'are presented': 89199, 'presented artisanal': 670655, 'artisanal gold': 94573, 'gold mining': 355933, 'field gold price': 304480, 'gold price in': 355960, 'price in africa': 674653, 'in africa are': 420082, 'africa are down': 35051, 'are down 30': 85967, 'down 30 to': 256413, '30 to 50': 17244, 'to 50 latin': 899740, '50 latin america': 19745, 'latin america down': 481642, 'america down 50': 51496, 'down 50 asia': 256422, '50 asia to': 19617, 'asia to date': 95234, 'to date is': 903932, 'date is more': 226675, 'is more resilient': 449723, 'more resilient with': 540237, 'resilient with price': 714547, 'with price unchanged': 1000316, 'price unchanged or': 677174, 'unchanged or down': 939791, 'or down 10': 615064, 'down 10 pre': 256371, '10 pre and': 1643, 'pre and post': 669138, 'and post covd': 69228, 'post covd 19': 666073, 'covd 19 price': 212156, '19 price collected': 9807, 'price collected from': 673182, 'collected from field': 186355, 'from field site': 335467, 'field site are': 304518, 'site are presented': 771881, 'are presented artisanal': 89200, 'presented artisanal gold': 670656, 'artisanal gold mining': 94575, 'ukrainian': 939051, 'intheknow': 442307, 'taskforce': 834743, 'keeping you': 472624, 'you up': 1021985, 'date read': 226720, 'here summary': 393617, 'most significant': 542741, 'significant development': 769428, 'development in': 239816, 'in ukraine': 430404, 'ukraine related': 939049, 'the rapidly': 865152, 'rapidly evolving': 696979, 'evolving situation': 288582, 'situation and': 772176, 'measure taken': 525352, 'taken by': 832968, 'the central': 850599, 'central ukrainian': 169437, 'ukrainian authority': 939052, 'authority intheknow': 103752, 'intheknow taskforce': 442308, 'keeping you up': 472629, 'you up to': 1021989, 'up to date': 946367, 'to date read': 903942, 'date read here': 226721, 'read here summary': 700355, 'here summary of': 393618, 'summary of the': 817940, 'of the most': 591255, 'the most significant': 861035, 'most significant development': 542743, 'significant development in': 769429, 'development in ukraine': 239819, 'in ukraine related': 430405, 'ukraine related to': 939050, 'to the rapidly': 917003, 'the rapidly evolving': 865153, 'rapidly evolving situation': 696983, 'evolving situation and': 288583, 'situation and of': 772184, 'and of the': 67959, 'of the measure': 591230, 'the measure taken': 860371, 'measure taken by': 525354, 'taken by the': 832975, 'by the central': 154279, 'the central ukrainian': 850605, 'central ukrainian authority': 169438, 'ukrainian authority intheknow': 939053, 'authority intheknow taskforce': 103753, 'oakville': 578272, 'halton': 374509, 'caremongering': 164541, 'oakville and': 578273, 'and halton': 64132, 'halton resident': 374512, 'resident step': 714370, 'challenge in': 171483, 'and put': 69803, 'put social': 690824, 'medium to': 527325, 'it best': 456851, 'best use': 127971, 'use with': 949816, 'new group': 558822, 'group like': 366755, 'like caremongering': 489963, 'caremongering oakville': 164542, 'oakville halton': 578275, 'halton grocery': 374510, 'update covid': 946920, '19 these': 11292, 'these help': 880109, 'oakville and halton': 578274, 'and halton resident': 64133, 'halton resident step': 374513, 'resident step up': 714371, 'step up to': 799698, 'up to the': 946436, 'to the challenge': 916550, 'the challenge in': 850644, 'challenge in this': 171490, 'this crisis and': 887017, 'crisis and put': 217043, 'and put social': 69816, 'put social medium': 690825, 'social medium to': 779891, 'medium to it': 527327, 'to it best': 908569, 'it best use': 456858, 'best use with': 127974, 'use with new': 949818, 'with new group': 999703, 'new group like': 558823, 'group like caremongering': 366757, 'like caremongering oakville': 489964, 'caremongering oakville halton': 164543, 'oakville halton grocery': 578276, 'halton grocery store': 374511, 'grocery store update': 365904, 'store update covid': 811017, 'update covid 19': 946921, 'covid 19 these': 213936, '19 these help': 11294, 'these help get': 880110, 'through this socialdistancing': 894840, 'coronvirus': 207154, 'let take': 487098, 'the thousand': 869501, 'of hard': 584457, 'working grocery': 1008665, 'in north': 425940, 'north florida': 567646, 'florida for': 310934, 'everything they': 288044, 'doing during': 252363, 'the coronvirus': 851949, 'coronvirus crisis': 207157, 'let take moment': 487102, 'moment to say': 536090, 'all the thousand': 44942, 'the thousand of': 869502, 'thousand of hard': 893446, 'of hard working': 584459, 'hard working grocery': 378141, 'working grocery store': 1008667, 'store employee in': 807501, 'employee in north': 273966, 'in north florida': 425943, 'north florida for': 567647, 'florida for everything': 310935, 'for everything they': 321259, 'everything they are': 288045, 'they are doing': 881255, 'are doing during': 85893, 'doing during the': 252366, 'during the coronvirus': 263105, 'the coronvirus crisis': 851951, 'pioneer': 656862, 'cdx': 168695, '15th': 4037, '1pm': 12687, 'et': 282342, 'join advertising': 466663, 'advertising and': 33201, 'medium pioneer': 527219, 'pioneer for': 656865, 'for cdx': 319982, 'cdx digital': 168696, 'digital roundtable': 242638, 'roundtable on': 726401, 'consumer economy': 197299, 'economy might': 268072, 'might look': 531071, 'look on': 502550, 'other side': 620912, '19 health': 7479, 'and financial': 62868, 'this wednesday': 891174, 'wednesday april': 975617, 'april 15th': 83420, '15th at': 4042, 'at 1pm': 97493, '1pm et': 12692, 'et register': 282367, 'register below': 707545, 'join advertising and': 466664, 'advertising and medium': 33205, 'and medium pioneer': 66924, 'medium pioneer for': 527220, 'pioneer for cdx': 656866, 'for cdx digital': 319983, 'cdx digital roundtable': 168697, 'digital roundtable on': 242639, 'roundtable on how': 726402, 'how our world': 408467, 'our world and': 625404, 'world and the': 1009288, 'the consumer economy': 851529, 'consumer economy might': 197312, 'economy might look': 268075, 'might look on': 531074, 'look on the': 502557, 'on the other': 604268, 'the other side': 862553, 'other side of': 620916, 'covid 19 health': 213195, '19 health and': 7480, 'health and financial': 386140, 'and financial crisis': 62870, 'financial crisis this': 306383, 'crisis this wednesday': 218227, 'this wednesday april': 891175, 'wednesday april 15th': 975618, 'april 15th at': 83421, '15th at 1pm': 4043, 'at 1pm et': 97494, '1pm et register': 12694, 'et register below': 282368, 'on uk': 604946, 'uk house': 938455, 'price limited': 675056, 'limited and': 492600, 'and short': 71560, 'short lived': 764639, 'impact on uk': 417898, 'on uk house': 604948, 'uk house price': 938456, 'house price limited': 406495, 'price limited and': 675057, 'limited and short': 492602, 'and short lived': 71562, 'arla': 92866, 'skulduggery': 773170, 'unscrupulous': 943447, 'just wonder': 470326, 'wonder whether': 1004029, 'whether this': 985596, 'isn others': 454611, 'know who': 477028, 'using covid': 950437, '19 an': 4968, 'an excuse': 55931, 'excuse not': 289765, 'to honor': 907948, 'honor commitment': 403240, 'commitment and': 188987, 'and dropping': 61767, 'dropping price': 260717, 'price others': 675801, 'others eg': 621375, 'eg arla': 269693, 'arla are': 92867, 'are collecting': 85420, 'collecting definitely': 186383, 'definitely skulduggery': 232391, 'skulduggery here': 773171, 'here need': 393377, 'from unscrupulous': 338191, 'unscrupulous practice': 943454, 'just wonder whether': 470327, 'wonder whether this': 1004034, 'whether this isn': 985598, 'this isn others': 888490, 'isn others know': 454612, 'others know who': 621512, 'know who are': 477030, 'who are using': 988255, 'are using covid': 91414, 'using covid 19': 950438, 'covid 19 an': 212628, '19 an excuse': 4971, 'an excuse not': 55935, 'excuse not to': 289766, 'not to honor': 572159, 'to honor commitment': 907949, 'honor commitment and': 403241, 'commitment and dropping': 188988, 'and dropping price': 61769, 'dropping price others': 260718, 'price others eg': 675802, 'others eg arla': 621376, 'eg arla are': 269694, 'arla are collecting': 92868, 'are collecting definitely': 85421, 'collecting definitely skulduggery': 186384, 'definitely skulduggery here': 232392, 'skulduggery here need': 773172, 'here need help': 393378, 'need help from': 554983, 'help from unscrupulous': 389777, 'from unscrupulous practice': 338192, 'undervalued': 940954, 'kitconews': 475799, 'metal': 529617, 'is undervalued': 453473, 'undervalued price': 940960, 'hit 00': 398083, 'in medium': 425235, 'term say': 838282, 'say economist': 738600, 'economist kitconews': 267564, 'kitconews gold': 475800, 'gold silver': 356003, 'silver metal': 769832, 'metal economics': 529622, 'economics mining': 267468, 'mining investing': 533281, 'investing finance': 443923, 'gold is undervalued': 355915, 'is undervalued price': 453474, 'undervalued price to': 940961, 'price to hit': 677001, 'to hit 00': 907837, 'hit 00 in': 398084, '00 in medium': 267, 'in medium term': 425240, 'medium term say': 527307, 'term say economist': 838284, 'say economist kitconews': 738601, 'economist kitconews gold': 267565, 'kitconews gold silver': 475801, 'gold silver metal': 356007, 'silver metal economics': 769833, 'metal economics mining': 529623, 'economics mining investing': 267469, 'mining investing finance': 533282, 'cuban': 220163, 'versailles': 954881, 'teamed': 835851, 'sedano': 744823, 'miami staple': 530197, 'staple cuban': 793921, 'cuban restaurant': 220166, 'restaurant versailles': 716782, 'versailles had': 954882, 'their dining': 873019, 'room so': 725968, 'they teamed': 883534, 'teamed up': 835852, 'with sedano': 1000619, 'sedano supermarket': 744824, 'supermarket who': 823852, 'who agreed': 988039, 'hire 400': 396985, '400 of': 18757, 'employee during': 273791, 'miami staple cuban': 530198, 'staple cuban restaurant': 793922, 'cuban restaurant versailles': 220167, 'restaurant versailles had': 716783, 'versailles had to': 954883, 'had to close': 373678, 'close their dining': 182851, 'their dining room': 873020, 'dining room so': 243029, 'room so they': 725969, 'so they teamed': 778483, 'they teamed up': 883535, 'teamed up with': 835856, 'up with sedano': 946680, 'with sedano supermarket': 1000620, 'sedano supermarket who': 744825, 'supermarket who agreed': 823853, 'who agreed to': 988040, 'agreed to hire': 38739, 'to hire 400': 907790, 'hire 400 of': 396986, '400 of their': 18758, 'of their employee': 591659, 'their employee during': 873142, 'employee during the': 273796, 'pickled': 655908, 'ginger': 350181, 'time are': 896323, 'are tough': 91165, 'tough can': 926803, 'find or': 307117, 'or online': 616384, 'online anywhere': 607869, 'anywhere got': 81111, 'got fresh': 358572, 'fresh though': 333086, 'though to': 892932, 'make pickled': 510329, 'pickled ginger': 655909, 'ginger and': 350184, 'it last': 459297, 'time are tough': 896333, 'are tough can': 91169, 'tough can find': 926805, 'can find or': 158332, 'find or online': 307118, 'or online anywhere': 616385, 'online anywhere got': 607870, 'anywhere got fresh': 81112, 'got fresh though': 358573, 'fresh though to': 333087, 'though to make': 892933, 'to make pickled': 909718, 'make pickled ginger': 510330, 'pickled ginger and': 655910, 'ginger and how': 350185, 'and how long': 64823, 'long will it': 501853, 'will it last': 993869, 'cub': 220153, 'new cub': 558570, 'cub fact': 220158, 'fact sheet': 295779, 'sheet order': 756614, 'order consumer': 618143, 'protection amid': 685309, 'read what': 700651, 'it mean': 459567, 'new cub fact': 558571, 'cub fact sheet': 220159, 'fact sheet order': 295781, 'sheet order consumer': 756615, 'order consumer protection': 618146, 'consumer protection amid': 198504, 'protection amid covid': 685310, 'outbreak read what': 628574, 'read what it': 700652, 'what it mean': 981754, 'tnie': 899401, 'let talk': 487106, 'talk oil': 833829, 'oil folk': 596803, 'folk the': 312266, 'the weekend': 871323, 'weekend saw': 977402, 'saw historic': 738136, 'historic oil': 397963, 'output deal': 629260, 'deal so': 229480, 'so how': 777334, 'it impacted': 458694, 'india read': 434580, 'read on': 700478, 'out tnie': 627616, 'let talk oil': 487108, 'talk oil folk': 833830, 'oil folk the': 596804, 'folk the weekend': 312267, 'the weekend saw': 871335, 'weekend saw historic': 977403, 'saw historic oil': 738137, 'historic oil output': 397965, 'oil output deal': 596998, 'output deal so': 629261, 'deal so how': 229481, 'so how ha': 777339, 'how ha it': 407952, 'ha it impacted': 371021, 'it impacted fuel': 458695, 'world and what': 1009292, 'what will it': 982601, 'will it mean': 993870, 'it mean for': 459568, 'mean for india': 524442, 'for india read': 322542, 'india read on': 434581, 'read on to': 700485, 'on to find': 604734, 'to find out': 905928, 'find out tnie': 307154, 'workin': 1008451, 'mongs': 537246, 'lip': 494043, '1st day': 12729, 'day back': 227344, 'back workin': 107484, 'workin at': 1008452, 'supermarket yesterday': 824163, 'yesterday and': 1015657, 'see majority': 745381, 'of folk': 583619, 'seriously others': 751689, 'are mongs': 88098, 'mongs like': 537247, 'who handed': 988895, 'handed me': 376070, 'me 20': 522330, '20 note': 13197, 'note he': 572734, 'wa holding': 962324, 'holding in': 400119, 'in between': 420804, 'between his': 128797, 'his lip': 397582, 'lip socialdistanacing': 494054, '1st day back': 12730, 'day back workin': 227347, 'back workin at': 107485, 'workin at supermarket': 1008454, 'at supermarket yesterday': 100792, 'supermarket yesterday and': 824164, 'yesterday and it': 1015662, 'and it nice': 65561, 'to see majority': 914038, 'see majority of': 745382, 'majority of folk': 509560, 'of folk are': 583620, 'folk are taking': 312097, 'are taking this': 90737, 'this seriously others': 890043, 'seriously others are': 751690, 'others are mongs': 621272, 'are mongs like': 88099, 'mongs like the': 537248, 'like the man': 491380, 'the man who': 859986, 'man who handed': 512332, 'who handed me': 988896, 'handed me 20': 376071, 'me 20 note': 522331, '20 note he': 13198, 'note he wa': 572735, 'he wa holding': 385602, 'wa holding in': 962325, 'holding in between': 400120, 'in between his': 420807, 'between his lip': 128798, 'his lip socialdistanacing': 397583, 'store trip': 810945, 'trip safer': 932146, 'safer amid': 730337, 'of go': 584170, 'go at': 353320, 'at off': 99940, 'off peak': 594055, 'peak hour': 646068, 'hour wipe': 406102, 'the handle': 857070, 'handle of': 376239, 'cart maintain': 165332, 'maintain distance': 508956, 'of at': 580416, 'least foot': 484464, 'others pay': 621575, 'pay with': 645229, 'credit to': 216537, 'contact wash': 200255, 'here how to': 393115, 'to make your': 909768, 'make your grocery': 510757, 'grocery store trip': 365885, 'store trip safer': 810952, 'trip safer amid': 932147, 'safer amid the': 730338, 'spread of go': 790675, 'of go at': 584171, 'go at off': 353322, 'at off peak': 99941, 'off peak hour': 594056, 'peak hour wipe': 646072, 'hour wipe down': 406103, 'wipe down the': 996240, 'down the handle': 257282, 'the handle of': 857073, 'handle of your': 376244, 'of your shopping': 593525, 'your shopping cart': 1025777, 'shopping cart maintain': 762306, 'cart maintain distance': 165333, 'maintain distance of': 508958, 'distance of at': 246780, 'of at least': 580420, 'at least foot': 99493, 'least foot from': 484466, 'foot from others': 318383, 'from others pay': 336744, 'others pay with': 621576, 'pay with credit': 645232, 'with credit to': 997850, 'credit to reduce': 216540, 'reduce contact wash': 705805, 'contact wash your': 200256, 'messagewrap': 529502, 'antimicrobial': 78530, 'facility': 295285, 'messagewrap is': 529503, 'is 99': 445254, '99 99': 23760, '99 effective': 23809, 'effective against': 269206, '19 with': 12121, 'with messagewrap': 999485, 'messagewrap shopper': 529505, 'more protected': 540165, 'protected at': 685121, 'highest traffic': 395870, 'traffic area': 929052, 'area of': 92127, 'checkout we': 175050, 'we just': 972100, 'just received': 469574, 'received this': 703696, 'this news': 889130, 'news from': 560450, 'our independent': 623522, 'independent antimicrobial': 434081, 'antimicrobial testing': 78536, 'testing facility': 839485, 'facility clean': 295317, 'clean supermarket': 180640, 'supermarket messagewrap': 821513, 'messagewrap is 99': 529504, 'is 99 99': 445255, '99 99 effective': 23762, '99 effective against': 23810, 'effective against covid': 269210, 'covid 19 with': 214080, '19 with messagewrap': 12137, 'with messagewrap shopper': 999486, 'messagewrap shopper are': 529506, 'shopper are more': 761395, 'are more protected': 88119, 'more protected at': 540166, 'protected at the': 685123, 'at the highest': 100979, 'the highest traffic': 857352, 'highest traffic area': 395871, 'traffic area of': 929053, 'area of the': 92141, 'the store the': 868117, 'store the checkout': 810590, 'the checkout we': 850779, 'checkout we just': 175052, 'we just received': 972119, 'just received this': 469580, 'received this news': 703698, 'this news from': 889132, 'news from our': 560457, 'from our independent': 336782, 'our independent antimicrobial': 623523, 'independent antimicrobial testing': 434082, 'antimicrobial testing facility': 78538, 'testing facility clean': 839486, 'facility clean supermarket': 295318, 'clean supermarket messagewrap': 180641, '72': 21999, '605': 21133, 'cylinder': 224112, 'bharat': 129341, 'bhushan': 129402, 'ashu': 95135, 'assuring': 97156, 'maintained': 509077, '19 72': 4763, '72 605': 22000, '605 lpg': 21136, 'lpg cylinder': 506315, 'cylinder have': 224117, 'been delivered': 120942, 'delivered in': 233343, 'state during': 795543, 'during last': 262744, 'say food': 738639, 'food civil': 313937, 'civil supply': 179553, 'affair minister': 34067, 'minister mr': 533410, 'mr bharat': 544350, 'bharat bhushan': 129344, 'bhushan ashu': 129403, 'ashu while': 95140, 'while assuring': 986619, 'assuring that': 97163, 'the door': 853558, 'door supply': 255724, 'of lpg': 586059, 'cylinder will': 224127, 'be maintained': 115874, 'maintained and': 509078, '19 72 605': 4764, '72 605 lpg': 22001, '605 lpg cylinder': 21137, 'lpg cylinder have': 506317, 'cylinder have been': 224118, 'have been delivered': 379506, 'been delivered in': 120943, 'delivered in the': 233349, 'the state during': 867768, 'state during last': 795544, 'during last day': 262745, 'last day say': 480184, 'day say food': 228308, 'say food civil': 738641, 'food civil supply': 313938, 'civil supply and': 179555, 'supply and consumer': 824709, 'and consumer affair': 60346, 'consumer affair minister': 196097, 'affair minister mr': 34070, 'minister mr bharat': 533411, 'mr bharat bhushan': 544351, 'bharat bhushan ashu': 129345, 'bhushan ashu while': 129405, 'ashu while assuring': 95141, 'while assuring that': 986620, 'assuring that the': 97164, 'that the door': 846709, 'the door to': 853589, 'to door supply': 904674, 'door supply of': 255725, 'supply of lpg': 825634, 'of lpg cylinder': 586060, 'lpg cylinder will': 506319, 'cylinder will be': 224128, 'will be maintained': 992552, 'be maintained and': 115875, 'maintained and there': 509080, 'lingers': 493715, 'previously': 672012, 'aerosol': 33897, 'lingers in': 493720, 'in air': 420119, 'air longer': 39755, 'than previously': 841041, 'previously thought': 672060, 'thought scientist': 893195, 'scientist warn': 742268, 'warn science': 966959, 'science tech': 742141, 'news sky': 560796, 'sky news': 773208, 'news aerosol': 560194, 'lingers in air': 493721, 'in air longer': 420122, 'air longer than': 39756, 'longer than previously': 502076, 'than previously thought': 841043, 'previously thought scientist': 672062, 'thought scientist warn': 893197, 'scientist warn science': 742269, 'warn science tech': 966961, 'science tech news': 742142, 'tech news sky': 836124, 'news sky news': 560797, 'sky news aerosol': 773209, 'ralphs': 696309, 'growup': 367493, '8am this': 23156, 'morning the': 541486, 'point when': 662695, 'when gave': 983453, 'gave up': 344676, 'up after': 944224, 'after they': 36382, 'were letting': 979838, 'letting 10': 487396, 'in at': 420546, 'time ralphs': 897548, 'ralphs panicbuying': 696312, 'panicbuying stopit': 639059, 'stopit growup': 805528, '8am this morning': 23157, 'this morning the': 889027, 'morning the line': 541488, 'store this wa': 810706, 'this wa the': 891091, 'wa the point': 963463, 'the point when': 863909, 'point when gave': 662696, 'when gave up': 983454, 'gave up after': 344677, 'up after they': 944231, 'after they were': 36393, 'they were letting': 883782, 'were letting 10': 979839, 'letting 10 people': 487398, '10 people in': 1613, 'people in at': 648348, 'in at time': 420558, 'at time ralphs': 101308, 'time ralphs panicbuying': 897549, 'ralphs panicbuying stopit': 696313, 'panicbuying stopit growup': 639060, 'mattieuethanhandsanitizer': 520697, '3pack': 18383, 'loveones': 505019, 'mattieuethanhandsanitizer 3pack': 520698, '3pack for': 18384, '99 help': 23838, 'order today': 618718, 'today protect': 920077, 'yourself family': 1026596, 'family loveones': 298006, 'mattieuethanhandsanitizer 3pack for': 520699, '3pack for 99': 18385, 'for 99 help': 318964, '99 help to': 23840, 'help to stop': 390794, 'spread of order': 790694, 'of order today': 587342, 'order today protect': 618720, 'today protect yourself': 920078, 'protect yourself family': 685091, 'yourself family loveones': 1026597, 'remotely': 710761, 'you take': 1021504, 'take precaution': 832510, 'the take': 869125, 'take step': 832605, 'prevent your': 671770, 'your device': 1023502, 'device from': 239908, 'from catching': 334808, 'catching virus': 167128, 'virus too': 958938, 'too click': 924648, 'for resource': 325156, 'resource on': 714841, 'avoid scam': 105254, 'device secure': 239932, 'secure you': 744473, 'you work': 1022417, 'work remotely': 1005656, 'you take precaution': 1021516, 'take precaution to': 832515, 'precaution to avoid': 669381, 'avoid the take': 105336, 'the take step': 869127, 'take step to': 832608, 'help prevent your': 390352, 'prevent your device': 671771, 'your device from': 1023504, 'device from catching': 239909, 'from catching virus': 334811, 'catching virus too': 167130, 'virus too click': 958939, 'too click below': 924649, 'below for resource': 126649, 'for resource on': 325158, 'resource on how': 714845, 'to avoid scam': 900935, 'avoid scam and': 105255, 'scam and keep': 740005, 'keep your device': 472260, 'your device secure': 1023506, 'device secure you': 239933, 'secure you work': 744474, 'you work remotely': 1022423, 'all unexpected': 45314, 'unexpected hero': 941368, 'crisis nurse': 217772, 'doctor but': 250856, 'also our': 48630, 'clerk delivery': 181681, 'driver transit': 259812, 'transit and': 929622, 'and utility': 74806, 'worker stayhomesavelives': 1007814, 'to all unexpected': 900298, 'all unexpected hero': 45315, 'unexpected hero of': 941369, 'this crisis nurse': 887069, 'crisis nurse and': 217773, 'nurse and doctor': 577197, 'and doctor but': 61576, 'doctor but also': 250857, 'but also our': 145131, 'also our grocery': 48633, 'store clerk delivery': 807000, 'clerk delivery driver': 181682, 'delivery driver transit': 233948, 'driver transit and': 259813, 'transit and utility': 929625, 'and utility worker': 74815, 'utility worker stayhomesavelives': 951343, 'usedtomake': 950134, 'tshirts': 934933, 'makingsupplies': 511514, 'factory that': 296001, 'that usedtomake': 847217, 'usedtomake perfume': 950135, 'perfume tshirts': 651542, 'tshirts car': 934934, 'car are': 163008, 'now makingsupplies': 575283, 'makingsupplies to': 511515, 'the via': 870718, 'via news': 956100, 'news factory': 560396, 'factory facemasks': 295942, 'facemasks ventilator': 295176, 'ventilator handsanitizer': 954565, 'handsanitizer manufacturing': 376577, 'manufacturing pandemic': 513645, 'pandemic ppe': 636218, 'factory that usedtomake': 296003, 'that usedtomake perfume': 847218, 'usedtomake perfume tshirts': 950136, 'perfume tshirts car': 651543, 'tshirts car are': 934935, 'car are now': 163009, 'are now makingsupplies': 88571, 'now makingsupplies to': 575284, 'makingsupplies to fight': 511516, 'fight the via': 304905, 'the via news': 870722, 'via news factory': 956102, 'news factory facemasks': 560397, 'factory facemasks ventilator': 295943, 'facemasks ventilator handsanitizer': 295177, 'ventilator handsanitizer manufacturing': 954566, 'handsanitizer manufacturing pandemic': 376578, 'manufacturing pandemic ppe': 513646, 'panicbuy': 638826, 'buying what': 151339, 'what panic': 981995, 'buying stayhome': 151080, 'stayhome lockdown': 798035, 'lockdown panicbuy': 499769, 'panic buying what': 637960, 'buying what panic': 151343, 'what panic buying': 981996, 'panic buying stayhome': 637900, 'buying stayhome lockdown': 151081, 'stayhome lockdown panicbuy': 798037, 'brawled': 138318, 'fmtnews': 311783, 'buyer have': 149656, 'have stripped': 382811, 'stripped shop': 813878, 'shop shelf': 760761, 'shelf brawled': 756896, 'brawled over': 138319, 'paper fmtnews': 640159, 'fmtnews panicbuying': 311787, 'panic buyer have': 637580, 'buyer have stripped': 149660, 'have stripped shop': 382812, 'stripped shop shelf': 813879, 'shop shelf brawled': 760763, 'shelf brawled over': 756897, 'brawled over toilet': 138320, 'toilet paper fmtnews': 921276, 'paper fmtnews panicbuying': 640160, 'headwind': 386058, 'ecom': 266688, 'resulting': 717689, 'transacting': 929428, 'offline': 596036, 'feedback': 302414, 'mixed': 534618, 'unpack': 943001, 'yesterday posted': 1015837, 'posted about': 666511, 'the profitability': 864623, 'profitability headwind': 682912, 'headwind facing': 386062, 'facing ecom': 295454, 'ecom resulting': 266691, 'resulting from': 717691, 'from shift': 337250, 'shift of': 758366, 'consumer purchasing': 198619, 'purchasing behavior': 689839, 'behavior away': 123924, 'from transacting': 338129, 'transacting offline': 929429, 'offline due': 596039, 'restriction to': 717399, 'and brand': 59144, 'brand feedback': 137843, 'feedback wa': 302438, 'wa mixed': 962641, 'mixed so': 534642, 'so will': 778767, 'will unpack': 995269, 'unpack my': 943004, 'my point': 549801, 'point bit': 662441, 'bit more': 131616, 'yesterday posted about': 1015838, 'posted about the': 666512, 'about the profitability': 26493, 'the profitability headwind': 864624, 'profitability headwind facing': 682913, 'headwind facing ecom': 386063, 'facing ecom resulting': 295455, 'ecom resulting from': 266692, 'resulting from shift': 717695, 'from shift of': 337251, 'shift of consumer': 758367, 'of consumer purchasing': 581764, 'consumer purchasing behavior': 198620, 'purchasing behavior away': 689841, 'behavior away from': 123925, 'away from transacting': 105920, 'from transacting offline': 338130, 'transacting offline due': 929430, 'offline due to': 596040, '19 restriction to': 10184, 'restriction to online': 717403, 'to online retailer': 910947, 'online retailer and': 608877, 'retailer and brand': 718956, 'and brand feedback': 59148, 'brand feedback wa': 137844, 'feedback wa mixed': 302439, 'wa mixed so': 962642, 'mixed so will': 534643, 'so will unpack': 778780, 'will unpack my': 995270, 'unpack my point': 943005, 'my point bit': 549802, 'point bit more': 662442, 'grave': 362421, 'risen': 723084, 'grocery trip': 366081, 'trip are': 932043, 'allowed but': 46139, 'it safe': 460836, 'to assume': 900790, 'assume that': 97013, 'still trying': 801341, 'avoid having': 105142, 'to technology': 916322, 'technology grave': 836307, 'grave concern': 362426, 'over being': 630016, 'being public': 125596, 'space ha': 787110, 'ha risen': 371760, 'risen immensely': 723113, 'immensely over': 417195, 'grocery trip are': 366082, 'trip are allowed': 932044, 'are allowed but': 84378, 'allowed but it': 46140, 'but it safe': 146161, 'it safe to': 460841, 'safe to assume': 730043, 'to assume that': 900792, 'assume that people': 97018, 'that people are': 845686, 'people are still': 647089, 'are still trying': 90493, 'still trying to': 801342, 'to avoid having': 900907, 'avoid having to': 105143, 'the store and': 867979, 'store and turning': 806385, 'and turning to': 74532, 'turning to technology': 935975, 'to technology grave': 916324, 'technology grave concern': 836308, 'grave concern over': 362427, 'concern over being': 193047, 'over being public': 630017, 'being public space': 125597, 'public space ha': 688325, 'space ha risen': 787111, 'ha risen immensely': 371765, 'risen immensely over': 723114, 'immensely over the': 417196, 'former': 329613, 'maidenhead': 508558, 'queueing': 694165, 'refraining': 706750, 'tory': 926064, 'wonderful to': 1004133, 'see our': 745522, 'our former': 623153, 'former prime': 329657, 'minister may': 533400, 'may and': 520924, 'and current': 60813, 'current mp': 221264, 'mp for': 544249, 'for maidenhead': 323151, 'maidenhead not': 508559, 'only setting': 611109, 'setting example': 753625, 'example whilst': 289007, 'whilst queueing': 987676, 'queueing outside': 694178, 'outside her': 629445, 'her local': 392171, 'also refraining': 48775, 'refraining from': 706751, 'from stockpiling': 337425, 'stockpiling leaving': 804007, 'leaving with': 485170, 'one bag': 605980, 'shopping tory': 764234, 'wonderful to see': 1004134, 'to see our': 914056, 'see our former': 745526, 'our former prime': 623154, 'former prime minister': 329658, 'prime minister may': 678147, 'minister may and': 533401, 'may and current': 520925, 'and current mp': 60814, 'current mp for': 221265, 'mp for maidenhead': 544250, 'for maidenhead not': 323152, 'maidenhead not only': 508560, 'not only setting': 570825, 'only setting example': 611110, 'setting example whilst': 753626, 'example whilst queueing': 289008, 'whilst queueing outside': 987677, 'queueing outside her': 694179, 'outside her local': 629446, 'her local supermarket': 392174, 'local supermarket but': 498506, 'but also refraining': 145139, 'also refraining from': 48776, 'refraining from stockpiling': 706754, 'from stockpiling leaving': 337428, 'stockpiling leaving with': 804008, 'leaving with just': 485171, 'with just one': 999129, 'just one bag': 469372, 'one bag of': 605981, 'bag of shopping': 108366, 'of shopping tory': 589672, 'emerge': 272530, 'scam emerge': 740147, 'emerge virus': 272547, 'virus spread': 958781, 'spread attorney': 790439, 'general ashley': 345285, 'ashley moody': 95112, 'moody today': 538318, 'today issued': 919731, 'issued consumer': 456051, 'alert about': 41338, 'the scam': 866409, 'scam run': 740342, 'run the': 727820, 'related scam emerge': 708551, 'scam emerge virus': 740149, 'emerge virus spread': 272548, 'virus spread attorney': 958783, 'spread attorney general': 790440, 'attorney general ashley': 102624, 'general ashley moody': 345286, 'ashley moody today': 95113, 'moody today issued': 538320, 'today issued consumer': 919734, 'issued consumer alert': 456052, 'consumer alert about': 196133, 'alert about new': 41340, 'new scam related': 559547, 'pandemic the scam': 636699, 'the scam run': 866418, 'scam run the': 740343, 'erupts': 280244, 'grip': 364004, 'bound': 136849, 'chinaliedpeopledied': 177111, 'pmqs': 662075, 'london supermarket': 501191, 'supermarket chaos': 819651, 'chaos fight': 173013, 'fight erupts': 304716, 'erupts in': 280245, 'tesco coronavirus': 838687, 'coronavirus panic': 206512, 'panic grip': 638145, 'grip britain': 364010, 'britain video': 140466, 'wa bound': 961740, 'bound to': 136856, 'happen chinaliedpeopledied': 377066, 'chinaliedpeopledied pmqs': 177117, 'pmqs fightcovid19': 662076, 'fightcovid19 chinesevirus': 304985, 'london supermarket chaos': 501193, 'supermarket chaos fight': 819653, 'chaos fight erupts': 173014, 'fight erupts in': 304717, 'erupts in tesco': 280246, 'in tesco coronavirus': 428879, 'tesco coronavirus panic': 838688, 'coronavirus panic grip': 206519, 'panic grip britain': 638146, 'grip britain video': 364011, 'britain video it': 140467, 'video it wa': 956797, 'it wa bound': 462083, 'wa bound to': 961741, 'bound to happen': 136860, 'to happen chinaliedpeopledied': 907150, 'happen chinaliedpeopledied pmqs': 377067, 'chinaliedpeopledied pmqs fightcovid19': 177118, 'pmqs fightcovid19 chinesevirus': 662077, 'coronacrisis head': 204624, 'office put': 595523, 'put price': 690788, 'up please': 945774, 'please explain': 659980, 'coronacrisis head office': 204625, 'head office put': 385788, 'office put price': 595524, 'put price up': 690790, 'price up please': 677252, 'up please explain': 945777, 'shareholder': 755468, 'union': 941863, 'workersunite': 1008330, 'public need': 688173, 'demand retail': 236144, 'retail grocery': 718151, 'food worker': 317665, 'paid time': 634152, 'and half': 64119, 'half hazard': 374181, 'pay if': 644947, '19 corporation': 6141, 'corporation will': 207477, 'never take': 558211, 'take better': 831987, 'better care': 128223, 'employee over': 274099, 'over their': 630788, 'their shareholder': 874675, 'shareholder union': 755488, 'union stand': 941942, 'stand for': 793519, 'for worker': 327929, 'know and': 476252, 'and workersunite': 75886, 'the public need': 864834, 'public need to': 688174, 'need to demand': 555900, 'to demand retail': 904155, 'demand retail grocery': 236145, 'retail grocery and': 718152, 'and food worker': 63109, 'food worker be': 317668, 'be paid time': 116343, 'paid time and': 634153, 'time and half': 896273, 'and half hazard': 64122, 'half hazard pay': 374182, 'hazard pay if': 384568, 'pay if they': 644951, 'if they work': 415140, 'they work during': 883921, 'covid 19 corporation': 212868, '19 corporation will': 6142, 'corporation will never': 207479, 'will never take': 994174, 'never take better': 558212, 'take better care': 831988, 'better care of': 128225, 'care of their': 164118, 'their employee over': 873151, 'employee over their': 274100, 'over their shareholder': 630796, 'their shareholder union': 874677, 'shareholder union stand': 755489, 'union stand for': 941943, 'stand for worker': 793525, 'for worker get': 327936, 'worker get to': 1007028, 'get to know': 348476, 'to know and': 908972, 'know and workersunite': 476260, 'asthma': 97176, 'actually afraid': 30723, 'and stuff': 72614, 'stuff work': 815262, 'at starbucks': 100634, 'starbucks in': 794093, 'have asthma': 379370, 'asthma and': 97179, 'have cough': 380126, 'cough fuck': 208473, 'actually afraid to': 30724, 'afraid to go': 35023, 'to work and': 918686, 'work and stuff': 1004811, 'and stuff work': 72619, 'stuff work at': 815263, 'work at starbucks': 1004899, 'at starbucks in': 100635, 'starbucks in grocery': 794094, 'store have asthma': 808066, 'have asthma and': 379371, 'asthma and still': 97181, 'and still have': 72377, 'still have cough': 800644, 'have cough fuck': 380127, 'cough fuck you': 208474, 'earn': 264768, 'function': 341259, 'compensated': 191540, 'have always': 379221, 'always believed': 49496, 'an economy': 55596, 'with money': 999539, 'money everyone': 536736, 'should earn': 765945, 'earn the': 264813, 'same the': 733326, 'the make': 859948, 'make obvious': 510257, 'obvious why': 578815, 'why none': 991209, 'none of': 566589, 'can function': 158389, 'function without': 341283, 'without garbage': 1002677, 'garbage worker': 343540, 'worker farmer': 1006904, 'farmer fruit': 299380, 'fruit picker': 339122, 'picker grocery': 655832, 'cashier so': 166610, 'they compensated': 881785, 'compensated le': 191543, 'have always believed': 379223, 'always believed that': 49497, 'believed that if': 126433, 'that if we': 844426, 'we re going': 972885, 're going to': 698755, 'to have an': 907200, 'have an economy': 379243, 'an economy with': 55599, 'economy with money': 268365, 'with money everyone': 999540, 'money everyone should': 536737, 'everyone should earn': 287374, 'should earn the': 765947, 'earn the same': 264814, 'the same the': 866307, 'same the make': 733327, 'the make obvious': 859950, 'make obvious why': 510258, 'obvious why none': 578816, 'why none of': 991210, 'none of can': 566592, 'of can function': 581068, 'can function without': 158390, 'function without garbage': 341284, 'without garbage worker': 1002678, 'garbage worker farmer': 343543, 'worker farmer fruit': 1006907, 'farmer fruit picker': 299381, 'fruit picker grocery': 339123, 'picker grocery store': 655833, 'store cashier so': 806891, 'cashier so why': 166612, 'so why are': 778749, 'why are they': 990793, 'are they compensated': 90994, 'they compensated le': 881786, 'endangering': 276098, 'hope everyone': 403458, 'is feeling': 447776, 'feeling well': 303104, 'well it': 978334, 'important right': 418952, 'now to': 576161, 'we aren': 970769, 'aren endangering': 92392, 'endangering ourselves': 276103, 'ourselves or': 625487, 'can handle': 158545, 'handle this': 376283, 'this virus': 890994, 'hope everyone is': 403463, 'everyone is feeling': 287075, 'is feeling well': 447778, 'feeling well it': 303107, 'well it so': 978343, 'it so important': 461116, 'so important right': 777377, 'important right now': 418953, 'right now to': 722161, 'now to self': 576184, 'self quarantine to': 747872, 'quarantine to ensure': 692637, 'ensure we aren': 278121, 'we aren endangering': 970773, 'aren endangering ourselves': 92393, 'endangering ourselves or': 276104, 'ourselves or anyone': 625488, 'or anyone who': 614371, 'anyone who can': 80613, 'who can handle': 988388, 'can handle this': 158549, 'handle this virus': 376287, 'creditchat': 216564, 'your coronavirus': 1023346, 'coronavirus credit': 205730, 'credit question': 216471, 'question answered': 693527, 'answered creditchat': 78169, 'your coronavirus credit': 1023349, 'coronavirus credit question': 205731, 'credit question answered': 216472, 'question answered creditchat': 693532, 'melissa2': 527958, 'announce': 76832, 'melissa2 risky': 527959, 'risky time': 724124, 'to announce': 900545, 'announce supermarket': 76873, 'stocked bus': 803280, 'bus full': 143044, 'of hoarder': 584688, 'hoarder likely': 399064, 'likely headed': 492019, 'headed your': 385922, 'way now': 969732, 'now auspol': 574146, 'melissa2 risky time': 527960, 'risky time to': 724126, 'time to announce': 897944, 'to announce supermarket': 900556, 'announce supermarket is': 76874, 'supermarket is well': 821136, 'is well stocked': 453851, 'well stocked bus': 978591, 'stocked bus full': 803281, 'bus full of': 143045, 'full of hoarder': 340729, 'of hoarder likely': 584689, 'hoarder likely headed': 399065, 'likely headed your': 492020, 'headed your way': 385923, 'your way now': 1026316, 'way now auspol': 969733, 'agoing': 38566, 'omnichannel': 598942, 'more retailer': 540256, 'retailer close': 719077, 'close physical': 182761, 'physical store': 655462, 'or curtail': 614874, 'curtail hour': 221773, 'hour result': 405888, 'is agoing': 445423, 'agoing to': 38567, 'put additional': 690494, 'additional pressure': 31853, 'pressure on': 671197, 'on other': 602552, 'other omnichannel': 620601, 'omnichannel alternative': 598943, 'alternative like': 49235, 'curbside pick': 220641, 'up ecommerce': 944773, 'ecommerce omnichannel': 266813, 'omnichannel retail': 598949, 'retail digital': 718033, 'more retailer close': 540258, 'retailer close physical': 719078, 'close physical store': 182763, 'physical store or': 655470, 'store or curtail': 809322, 'or curtail hour': 614875, 'curtail hour result': 221774, 'hour result of': 405889, '19 it is': 8139, 'it is agoing': 458865, 'is agoing to': 445424, 'agoing to put': 38568, 'to put additional': 912577, 'put additional pressure': 690495, 'additional pressure on': 31854, 'pressure on other': 671217, 'on other omnichannel': 602558, 'other omnichannel alternative': 620602, 'omnichannel alternative like': 598944, 'alternative like grocery': 49236, 'like grocery delivery': 490345, 'grocery delivery and': 364434, 'delivery and curbside': 233659, 'and curbside pick': 60804, 'curbside pick up': 220642, 'pick up ecommerce': 655718, 'up ecommerce omnichannel': 944775, 'ecommerce omnichannel retail': 266814, 'omnichannel retail digital': 598950, 'explores': 292519, 'industryperspectives': 436273, 'retailtrends': 719573, 'fashionindustry': 299881, 'will consumer': 992997, 'behavior evolve': 124028, 'evolve post': 288510, 'from change': 334820, 'in purchasing': 427130, 'purchasing habit': 689873, 'habit to': 372697, 'on health': 601253, 'health explores': 386421, 'explores the': 292533, 'topic industryperspectives': 925793, 'industryperspectives consumerbehavior': 436274, 'consumerbehavior retailtrends': 199625, 'retailtrends fashionindustry': 719574, 'how will consumer': 409222, 'will consumer behavior': 992999, 'consumer behavior evolve': 196473, 'behavior evolve post': 124029, 'evolve post covid': 288511, '19 from change': 7117, 'from change in': 334822, 'change in purchasing': 172129, 'in purchasing habit': 427132, 'purchasing habit to': 689876, 'habit to focus': 372699, 'focus on health': 311876, 'on health explores': 601256, 'health explores the': 386422, 'explores the topic': 292537, 'the topic industryperspectives': 869802, 'topic industryperspectives consumerbehavior': 925794, 'industryperspectives consumerbehavior retailtrends': 436275, 'consumerbehavior retailtrends fashionindustry': 199626, '0808': 1114, '223': 15274, '1133': 2652, 'hand of': 375107, 'picture with': 656221, 'with friend': 998556, 'from scam': 337170, 'report scammer': 712238, 'scammer via': 740648, 'via citizen': 955865, 'citizen advice': 178818, 'advice consumer': 33346, 'on 0808': 598987, '0808 223': 1119, '223 1133': 15279, '1133 be': 2653, 'your hand of': 1024205, 'hand of coronavirus': 375109, 'of coronavirus scam': 581960, 'coronavirus scam and': 206711, 'scam and share': 740018, 'and share this': 71395, 'share this picture': 755292, 'this picture with': 889585, 'picture with friend': 656222, 'with friend and': 998558, 'friend and family': 333499, 'and family to': 62674, 'family to protect': 298330, 'others from scam': 621423, 'from scam report': 337174, 'scam report scammer': 740331, 'report scammer via': 712239, 'scammer via citizen': 740649, 'via citizen advice': 955866, 'citizen advice consumer': 178819, 'advice consumer service': 33348, 'consumer service on': 198947, 'service on 0808': 752649, 'on 0808 223': 598989, '0808 223 1133': 1121, '223 1133 be': 15280, 'foreclosure': 328910, 'restarts': 716252, 'cashflow': 166421, 'reassures': 703215, 'amac': 50590, 'trump stop': 933873, 'stop foreclosure': 804666, 'foreclosure restarts': 328928, 'restarts consumer': 716253, 'consumer cashflow': 196741, 'cashflow reassures': 166428, 'reassures america': 703216, 'america amac': 51446, 'trump stop foreclosure': 933874, 'stop foreclosure restarts': 804668, 'foreclosure restarts consumer': 328929, 'restarts consumer cashflow': 716254, 'consumer cashflow reassures': 196742, 'cashflow reassures america': 166429, 'reassures america amac': 703217, 'salvation': 732900, 'the salvation': 866188, 'salvation army': 732901, 'army of': 93018, 'of jackson': 585502, 'jackson said': 464207, 'it experiencing': 457900, 'experiencing critical': 291639, 'critical shortage': 218658, 'pantry due': 639562, 'demand increase': 235682, 'increase caused': 432713, 'the salvation army': 866189, 'salvation army of': 732903, 'army of jackson': 93022, 'of jackson said': 585503, 'jackson said it': 464208, 'said it experiencing': 731153, 'it experiencing critical': 457901, 'experiencing critical shortage': 291640, 'critical shortage at': 218660, 'shortage at it': 764843, 'at it food': 99323, 'it food pantry': 458055, 'food pantry due': 315773, 'pantry due to': 639563, 'to demand increase': 904146, 'demand increase caused': 235685, 'increase caused by': 432714, 'cleanliness': 181146, 'muhammad': 545584, 'burhaan': 142862, 'literally there': 495095, 'no real': 565276, 'and effective': 61950, 'effective sanitizer': 269299, 'our market': 623862, 'market kashmir': 516665, 'kashmir lockdown': 470984, 'lockdown india': 499528, 'india 2k20': 434273, '2k20 home': 16634, 'home pandemic': 401820, 'pandemic contagious': 635201, 'contagious virus': 200453, 'virus sanitizer': 958717, 'sanitizer hygiene': 735108, 'hygiene cleanliness': 412067, 'cleanliness muhammad': 181155, 'muhammad burhaan': 545585, 'burhaan official': 142863, 'literally there is': 495096, 'is no real': 449964, 'no real and': 565277, 'real and effective': 701034, 'and effective sanitizer': 61952, 'effective sanitizer in': 269300, 'sanitizer in our': 735151, 'in our market': 426314, 'our market kashmir': 623868, 'market kashmir lockdown': 516666, 'kashmir lockdown india': 470985, 'lockdown india 2k20': 499529, 'india 2k20 home': 434274, '2k20 home pandemic': 16635, 'home pandemic contagious': 401821, 'pandemic contagious virus': 635202, 'contagious virus sanitizer': 200455, 'virus sanitizer hygiene': 958719, 'sanitizer hygiene cleanliness': 735109, 'hygiene cleanliness muhammad': 412068, 'cleanliness muhammad burhaan': 181156, 'muhammad burhaan official': 545586, 'fb': 300637, 'nameandshame': 551702, 'friend created': 333567, 'created fb': 215825, 'fb group': 300649, 'group to': 366928, 'to nameandshame': 910470, 'nameandshame all': 551705, 'store selling': 810033, 'selling essential': 749224, 'item at': 463120, 'at extremely': 98604, 'extremely inflated': 293896, 'price feel': 673838, 'feel free': 302632, 'free to': 332233, 'add any': 31399, 'any you': 80057, 'friend created fb': 333568, 'created fb group': 215826, 'fb group to': 300651, 'group to nameandshame': 366935, 'to nameandshame all': 910471, 'nameandshame all the': 551706, 'all the store': 44927, 'the store selling': 868098, 'store selling essential': 810034, 'selling essential item': 749227, 'essential item at': 281189, 'item at extremely': 463125, 'at extremely inflated': 98605, 'extremely inflated price': 293897, 'inflated price feel': 437041, 'price feel free': 673840, 'feel free to': 302634, 'free to add': 332234, 'to add any': 900052, 'add any you': 31402, 'any you find': 80059, 'universally': 942386, 'digital consumer': 242534, 'service may': 752582, 'be universally': 117872, 'universally negative': 942387, 'negative analyst': 556735, 'analyst firm': 57137, 'firm say': 308414, '19 on digital': 8941, 'on digital consumer': 600323, 'digital consumer service': 242536, 'consumer service may': 198946, 'service may not': 752584, 'not be universally': 568478, 'be universally negative': 117873, 'universally negative analyst': 942388, 'negative analyst firm': 556736, 'analyst firm say': 57138, 'oxford': 632656, 'frontline doctor': 338725, 'doctor in': 250962, 'london you': 501233, 'seriously it': 751652, 'bad it': 107912, 'it already': 456410, 'already really': 47606, 'really bad': 701997, 'it predicted': 460423, 'predicted to': 669625, 'worse next': 1010972, 'next weekend': 561709, 'weekend lot': 977368, 'really get': 702216, 'it yet': 462628, 'yet stay': 1016242, 'stay inside': 797092, 'inside oh': 439339, 'oh really': 596435, 'really flattenthecurve': 702200, 'flattenthecurve oxford': 310186, 'frontline doctor in': 338727, 'doctor in london': 250963, 'in london you': 424906, 'london you really': 501234, 'really need to': 702447, 'need to take': 556098, 'to take this': 916248, 'this seriously it': 890041, 'seriously it bad': 751653, 'it bad it': 456689, 'bad it already': 107913, 'it already really': 456415, 'already really bad': 47607, 'really bad and': 701998, 'bad and it': 107760, 'and it predicted': 65569, 'it predicted to': 460424, 'predicted to get': 669628, 'get worse next': 348655, 'worse next weekend': 1010973, 'next weekend lot': 561710, 'weekend lot of': 977369, 'of people do': 587896, 'not really get': 571234, 'really get it': 702217, 'get it yet': 347438, 'it yet stay': 462632, 'yet stay inside': 1016243, 'stay inside oh': 797103, 'inside oh really': 439340, 'oh really flattenthecurve': 596436, 'really flattenthecurve oxford': 702201, 'sound': 786254, 'really like': 702377, 'these video': 880931, 'people influencing': 648476, 'the distribution': 853424, 'distribution sound': 248223, 'sound simple': 786329, 'and calm': 59433, 'calm advice': 156677, 'advice it': 33422, 'world there': 1010058, 'whole supermarket': 990345, 'just stay': 469884, 'safe remember': 729907, 'remember there': 710331, 'there reason': 878990, 'really like these': 702378, 'like these video': 491441, 'these video it': 880932, 'video it nice': 956795, 'to see people': 914059, 'see people influencing': 745562, 'people influencing the': 648477, 'influencing the distribution': 437359, 'the distribution sound': 853426, 'distribution sound simple': 248225, 'sound simple and': 786330, 'simple and calm': 769986, 'and calm advice': 59434, 'calm advice it': 156678, 'advice it not': 33423, 'not the end': 571994, 'the world there': 871985, 'world there no': 1010060, 'need to buy': 555876, 'to buy the': 902316, 'buy the whole': 149312, 'the whole supermarket': 871510, 'whole supermarket just': 990348, 'supermarket just stay': 821230, 'just stay safe': 469889, 'stay safe remember': 797269, 'safe remember there': 729908, 'remember there reason': 710334, 'there reason we': 878991, 'reason we do': 703051, 'we do this': 971356, 'do this 19': 250335, 'got my': 358721, 'my first': 548330, 'first don': 308648, 'don get': 253534, 'get too': 348519, 'too close': 924651, 'head wa': 385859, 'like lady': 490616, 'lady even': 478755, 'even without': 284808, 'without wouldn': 1003063, 'wouldn get': 1012465, 'get close': 346785, 'you quarantineactivities': 1020523, 'just got my': 468864, 'got my first': 358723, 'my first don': 548338, 'first don get': 308649, 'don get too': 253547, 'get too close': 348520, 'too close to': 924658, 'close to me': 182906, 'to me at': 909918, 'me at the': 522479, 'store today in': 810847, 'my head wa': 548637, 'head wa like': 385860, 'wa like lady': 962546, 'like lady even': 490617, 'lady even without': 478756, 'even without wouldn': 284813, 'without wouldn get': 1003064, 'wouldn get close': 1012466, 'get close to': 346786, 'close to you': 182924, 'to you quarantineactivities': 918915, 'this reporter': 889877, 'reporter name': 712625, 'name but': 551621, 'but man': 146344, 'man she': 512225, 'she would': 756486, 'let up': 487196, 'up even': 944801, 'even in': 284229, 'of president': 588375, 'trump attack': 933427, 'not know this': 570305, 'know this reporter': 476895, 'this reporter name': 889878, 'reporter name but': 712626, 'name but man': 551623, 'but man she': 146345, 'man she would': 512226, 'she would not': 756489, 'would not let': 1012078, 'not let up': 570376, 'let up even': 487197, 'up even in': 944803, 'even in the': 284248, 'face of president': 294669, 'of president trump': 588376, 'president trump attack': 670933, 'lifestyle': 489347, 'term online': 838229, 'get massive': 347532, 'massive boost': 519969, 'boost from': 134960, 'the lifestyle': 859348, 'lifestyle change': 489354, 'change of': 172194, 'consumer retail': 198792, 'retail cx': 718021, 'in the long': 429329, 'long term online': 501700, 'term online shopping': 838230, 'shopping will get': 764414, 'will get massive': 993511, 'get massive boost': 347533, 'massive boost from': 519970, 'boost from the': 134962, 'from the lifestyle': 337773, 'the lifestyle change': 859349, 'lifestyle change of': 489355, 'change of covid': 172195, '19 consumer retail': 5983, 'consumer retail cx': 198794, 'badparenting': 108187, 'fuck nobody': 339606, 'nobody should': 566058, 'be letting': 115711, 'letting their': 487447, 'their teen': 874959, 'teen out': 836502, 'house school': 406550, 'the mall': 859963, 'mall are': 511747, 'closed badparenting': 183010, 'actual fuck nobody': 30661, 'fuck nobody should': 339607, 'nobody should be': 566059, 'should be letting': 765660, 'be letting their': 115712, 'letting their teen': 487448, 'their teen out': 874960, 'teen out the': 836503, 'out the house': 627379, 'the house school': 857631, 'house school and': 406551, 'school and the': 741689, 'and the mall': 73468, 'the mall are': 859965, 'mall are closed': 511748, 'are closed badparenting': 85331, 'gotta': 359061, 'crib': 216727, 'vanish': 952416, 'keyser': 473565, 'ser': 751176, 'low hell': 505312, 'hell but': 388988, 'but gotta': 145813, 'gotta stay': 359102, 'the crib': 852329, 'crib soon': 216728, 'soon gas': 785715, 'up covid': 944667, 'to vanish': 918114, 'vanish like': 952417, 'like keyser': 490605, 'keyser ser': 473566, 'are low hell': 87928, 'low hell but': 505313, 'hell but gotta': 388990, 'but gotta stay': 145815, 'gotta stay in': 359103, 'in the crib': 429107, 'the crib soon': 852330, 'crib soon gas': 216729, 'soon gas price': 785716, 'gas price go': 343972, 'go up covid': 354426, 'up covid 19': 944668, '19 is going': 7978, 'going to vanish': 355752, 'to vanish like': 918115, 'vanish like keyser': 952418, 'like keyser ser': 490606, 'resale': 713555, 'resellers': 713974, 'makeuplife': 510922, 'sure why': 827837, 'are shocked': 90047, 'shocked that': 759581, 'that others': 845564, 'selling toilet': 749508, 'at exorbitant': 98589, 'exorbitant resale': 290430, 'resale price': 713561, 'the beauty': 849408, 'beauty community': 118749, 'to resellers': 913338, 'resellers price': 713983, 'gouging sought': 359453, 'sought after': 786204, 'after item': 35845, 'item pricegouging': 463586, 'pricegouging makeuplife': 677826, 'not sure why': 571857, 'sure why people': 827838, 'people are shocked': 647076, 'are shocked that': 90048, 'shocked that others': 759582, 'that others are': 845565, 'others are selling': 621277, 'are selling toilet': 89973, 'selling toilet paper': 749509, 'paper and hand': 639827, 'and hand sanitizer': 64145, 'hand sanitizer at': 375313, 'sanitizer at exorbitant': 734505, 'at exorbitant resale': 98591, 'exorbitant resale price': 290431, 'resale price thanks': 713563, 'thanks to 19': 842202, 'to 19 we': 899558, '19 we in': 11934, 'in the beauty': 429017, 'the beauty community': 849409, 'beauty community are': 118750, 'community are used': 189742, 'used to resellers': 950083, 'to resellers price': 913339, 'resellers price gouging': 713984, 'price gouging sought': 674324, 'gouging sought after': 359454, 'sought after item': 786207, 'after item pricegouging': 35847, 'item pricegouging makeuplife': 463587, 'luara': 506413, 'anderson': 76137, 'shaw': 755812, 'mississippi': 534403, 'great story': 363009, 'story by': 811926, 'by luara': 153113, 'luara anderson': 506414, 'anderson shaw': 76140, 'shaw about': 755813, 'about local': 25655, 'business filling': 143736, 'filling an': 305594, 'an urgent': 56954, 'urgent need': 948348, '19 mississippi': 8663, 'mississippi river': 534409, 'river distilling': 724181, 'distilling co': 247841, 'co to': 184984, 'produce hand': 680287, 'is great story': 448205, 'great story by': 363012, 'story by luara': 811930, 'by luara anderson': 153114, 'luara anderson shaw': 506415, 'anderson shaw about': 76141, 'shaw about local': 755814, 'about local business': 25656, 'local business filling': 497760, 'business filling an': 143737, 'filling an urgent': 305596, 'an urgent need': 56956, 'urgent need in': 948350, 'need in the': 555051, 'wake of 19': 964586, 'of 19 mississippi': 579403, '19 mississippi river': 8664, 'mississippi river distilling': 534410, 'river distilling co': 724182, 'distilling co to': 247842, 'co to produce': 184985, 'to produce hand': 912196, 'produce hand sanitizer': 680290, 'bcuz': 113373, 'everyone panic': 287248, 'during restriction': 262981, 'restriction of': 717331, 'of movement': 586688, 'movement bcuz': 543862, 'bcuz of': 113374, '19 worried': 12204, 'about my': 25761, 'my study': 550248, 'study problem': 814943, 'while everyone panic': 986808, 'everyone panic about': 287249, 'panic about the': 637261, 'about the food': 26399, 'the food during': 855548, 'food during restriction': 314326, 'during restriction of': 262982, 'restriction of movement': 717332, 'of movement bcuz': 586690, 'movement bcuz of': 543863, 'bcuz of covid': 113375, 'covid 19 worried': 214091, '19 worried about': 12205, 'worried about my': 1010506, 'about my study': 25771, 'my study problem': 550249, 'we wanted': 973754, 'you how': 1019255, 'taking action': 833242, 'action across': 29920, 'across and': 29256, 'support you': 827006, 'partner through': 642882, 'time read': 897550, 'our thread': 625134, 'thread below': 893524, 'below to': 126752, 'we wanted to': 973755, 'wanted to tell': 966278, 'tell you how': 837147, 'you how we': 1019263, 'we are taking': 970731, 'are taking action': 90710, 'taking action across': 833243, 'action across and': 29921, 'across and to': 29257, 'and to support': 74202, 'to support you': 915989, 'support you your': 827010, 'your family and': 1023772, 'family and our': 297598, 'and our partner': 68511, 'our partner through': 624284, 'partner through this': 642883, 'through this time': 894849, 'this time read': 890682, 'time read our': 897552, 'read our thread': 700523, 'our thread below': 625135, 'thread below to': 893526, 'below to find': 126754, 'after waiting': 36500, 'hour genuinely': 405641, 'genuinely feel': 345890, 'like when': 491801, 'when wa': 984396, 'wa 16': 961350, 'got in': 358626, 'to club': 902921, 'club relief': 184471, 'relief quarantinelife': 709452, 'getting in to': 349058, 'in to supermarket': 430139, 'to supermarket after': 915769, 'supermarket after waiting': 818817, 'after waiting for': 36501, 'waiting for hour': 964318, 'for hour genuinely': 322392, 'hour genuinely feel': 405642, 'genuinely feel like': 345891, 'feel like when': 302762, 'like when wa': 491805, 'when wa 16': 984397, 'wa 16 and': 961352, '16 and got': 4093, 'and got in': 63856, 'got in to': 358631, 'in to club': 430103, 'to club relief': 902922, 'club relief quarantinelife': 184472, 'capable': 162476, 'quote': 694978, 'stimuluschecks': 801638, 'security are': 744545, 'are capable': 85169, 'capable of': 162480, 'and extra': 62560, 'supply it': 825468, 'it look': 459456, 'they count': 881847, 'count being': 210103, 'being in': 125289, 'the quote': 865078, 'quote from': 694988, 'from trump': 338148, 'trump being': 933439, 'being all': 124830, 'all american': 42000, 'american guess': 52007, 'guess those': 368064, 'on are': 599458, 'not american': 568182, 'american so': 52198, 'sad stimuluschecks': 729241, 'stimuluschecks virus': 801640, 'if people on': 414625, 'people on social': 648970, 'on social security': 603539, 'social security are': 779941, 'security are capable': 744546, 'are capable of': 85170, 'capable of getting': 162481, 'of getting the': 584129, 'getting the and': 349339, 'the and had': 848700, 'had to stock': 373732, 'food and extra': 313227, 'and extra supply': 62561, 'extra supply it': 293666, 'supply it look': 825474, 'it look like': 459458, 'like they count': 491448, 'they count being': 881848, 'count being in': 210104, 'being in the': 125307, 'in the quote': 429493, 'the quote from': 865079, 'quote from trump': 694994, 'from trump being': 338150, 'trump being all': 933440, 'being all american': 124831, 'all american guess': 42002, 'american guess those': 52008, 'guess those on': 368066, 'those on are': 892282, 'on are not': 599460, 'are not american': 88321, 'not american so': 568184, 'american so sad': 52199, 'so sad stimuluschecks': 778142, 'sad stimuluschecks virus': 729242, 'philosophy': 654787, 'landlord': 479333, 'today is': 919718, 'first rent': 308914, 'due date': 261645, 'date since': 226728, 'virus crashed': 958099, 'crashed retail': 215085, 'retail traffic': 718808, 'traffic and': 929045, 'store sale': 809963, 'sale many': 732348, 'many tenant': 514781, 'tenant are': 837829, 'for relief': 325091, 'relief jared': 709375, 'jared burden': 464824, 'burden cover': 142738, 'cover little': 212245, 'little of': 495490, 'the philosophy': 863677, 'philosophy behind': 654788, 'behind how': 124641, 'how some': 408712, 'some landlord': 783180, 'landlord and': 479336, 'and property': 69630, 'property owner': 684317, 'owner are': 632384, 'handling these': 376399, 'these request': 880586, 'today is the': 919725, 'the first rent': 855340, 'first rent due': 308915, 'rent due date': 711071, 'due date since': 261647, 'date since the': 226729, 'since the covid': 770873, '19 virus crashed': 11795, 'virus crashed retail': 958100, 'crashed retail traffic': 215086, 'retail traffic and': 718809, 'traffic and store': 929049, 'and store sale': 72515, 'store sale many': 809969, 'sale many tenant': 732349, 'many tenant are': 514782, 'tenant are asking': 837830, 'are asking for': 84638, 'asking for relief': 95996, 'for relief jared': 325093, 'relief jared burden': 709376, 'jared burden cover': 464825, 'burden cover little': 142739, 'cover little of': 212246, 'little of the': 495493, 'of the philosophy': 591333, 'the philosophy behind': 863678, 'philosophy behind how': 654789, 'behind how some': 124642, 'how some landlord': 408717, 'some landlord and': 783181, 'landlord and property': 479337, 'and property owner': 69631, 'property owner are': 684318, 'owner are handling': 632387, 'are handling these': 87002, 'handling these request': 376400, 'flooding': 310741, 'frustration': 339262, 'the video': 870736, 'video flooding': 956726, 'flooding social': 310756, 'medium farmer': 527094, 'farmer forced': 299376, 'milk some': 531824, 'time ever': 896630, 'ever why': 285597, 'why covid': 990906, 'demand but': 235075, 'there also': 877969, 'also frustration': 48247, 'frustration over': 339274, 'buying limit': 150654, 'limit at': 492295, 'you ve seen': 1022063, 've seen the': 953549, 'seen the video': 747297, 'the video flooding': 870744, 'video flooding social': 956727, 'flooding social medium': 310757, 'social medium farmer': 779850, 'medium farmer forced': 527095, 'farmer forced to': 299377, 'their milk some': 873967, 'milk some for': 531825, 'some for the': 782892, 'first time ever': 309097, 'time ever why': 896634, 'ever why covid': 285598, 'why covid 19': 990907, 'and the loss': 73462, 'loss of food': 503744, 'of food service': 583773, 'service demand but': 752279, 'demand but there': 235085, 'but there also': 147460, 'there also frustration': 877972, 'also frustration over': 48249, 'frustration over buying': 339275, 'over buying limit': 630053, 'buying limit at': 150655, 'limit at grocery': 492296, 'probily': 679436, 'supportaussiebusiness': 827024, 'fuckcovid19': 339718, 'guy can': 368950, 'can probily': 159305, 'probily tell': 679437, 'tell have': 836962, 'been doing': 121016, 'doing some': 252668, 'shopping with': 764424, '19 supportaussiebusiness': 10978, 'supportaussiebusiness fuckcovid19': 827025, 'fuckcovid19 stayhome': 339719, 'you guy can': 1018954, 'guy can probily': 368953, 'can probily tell': 159306, 'probily tell have': 679438, 'tell have been': 836963, 'have been doing': 379517, 'been doing some': 121025, 'doing some online': 252673, 'online shopping with': 609349, 'shopping with this': 764447, 'with this covid': 1001687, 'covid 19 supportaussiebusiness': 213893, '19 supportaussiebusiness fuckcovid19': 10979, 'supportaussiebusiness fuckcovid19 stayhome': 827026, 'structure': 814294, 'deluxe': 234842, 'proven': 686147, 'tradeshow': 928819, 'emergency treatment': 273034, 'treatment structure': 931143, 'structure are': 814297, 'are created': 85613, 'created using': 215924, 'using deluxe': 950451, 'deluxe system': 234845, 'system that': 831331, 'ha proven': 371561, 'proven itself': 686169, 'itself in': 463935, 'the tradeshow': 869865, 'tradeshow industry': 928820, 'industry for': 435832, 'year higher': 1014625, 'higher quality': 395705, 'quality better': 691768, 'price fast': 673828, 'fast shipping': 300028, 'shipping stay': 758919, 'healthy sarscov2': 387754, 'sarscov2 medtwitter': 736850, 'our emergency treatment': 622884, 'emergency treatment structure': 273035, 'treatment structure are': 931144, 'structure are created': 814298, 'are created using': 85615, 'created using deluxe': 215925, 'using deluxe system': 950452, 'deluxe system that': 234846, 'system that ha': 831335, 'that ha proven': 844130, 'ha proven itself': 371564, 'proven itself in': 686170, 'itself in the': 463937, 'in the tradeshow': 429622, 'the tradeshow industry': 869866, 'tradeshow industry for': 928821, 'industry for year': 435834, 'for year higher': 328005, 'year higher quality': 1014627, 'higher quality better': 395706, 'quality better price': 691769, 'better price fast': 128423, 'price fast shipping': 673830, 'fast shipping stay': 300030, 'shipping stay healthy': 758920, 'stay healthy sarscov2': 796917, 'healthy sarscov2 medtwitter': 387755, 'stepmother': 799759, 'my stepmother': 550202, 'stepmother just': 799760, 'just tested': 469973, 'place she': 657677, 'been for': 121165, 'for four': 321685, 'four week': 330697, 'that easy': 843665, 'contract it': 201679, 'my stepmother just': 550203, 'stepmother just tested': 799761, 'just tested positive': 469974, 'only place she': 610986, 'place she ha': 657678, 'ha been for': 369809, 'been for four': 121166, 'for four week': 321690, 'four week is': 330701, 'week is the': 976428, 'store it that': 808594, 'it that easy': 461488, 'that easy to': 843666, 'easy to contract': 265777, 'to contract it': 903425, 'contract it be': 201680, 'it be careful': 456726, 'decorate': 231532, 'cute': 223644, 'mask especially': 518606, 'in situation': 427986, 'be around': 113679, 'around people': 93450, 'like at': 489839, 'pharmacy make': 654372, 'own mask': 632092, 'mask decorate': 518562, 'decorate it': 231533, 'have fun': 380741, 'fun with': 341248, 'your design': 1023491, 'design make': 238248, 'make something': 510478, 'something cute': 784880, 'cute and': 223647, 'friendly flattenthecurve': 333961, 'flattenthecurve stopthespread': 310209, 'wear mask especially': 974385, 'mask especially in': 518608, 'especially in situation': 280530, 'in situation where': 427990, 'situation where you': 772584, 'where you may': 985394, 'you may be': 1019792, 'may be around': 520949, 'be around people': 113682, 'around people like': 93454, 'people like at': 648642, 'like at the': 489844, 'or pharmacy make': 616578, 'pharmacy make your': 654373, 'make your own': 510767, 'your own mask': 1025152, 'own mask decorate': 632093, 'mask decorate it': 518563, 'decorate it and': 231534, 'it and have': 456497, 'and have fun': 64245, 'have fun with': 380745, 'fun with your': 341251, 'with your design': 1002192, 'your design make': 1023493, 'design make something': 238249, 'make something cute': 510479, 'something cute and': 784881, 'cute and friendly': 223648, 'and friendly flattenthecurve': 63339, 'friendly flattenthecurve stopthespread': 333962, 'ounce': 621953, 'tablespoon': 831516, 'aloe': 46780, 'vera': 954725, 'sanitizer ounce': 735504, 'ounce plastic': 621967, 'plastic spray': 658875, 'spray bottle': 790273, 'bottle 16': 136163, '16 ounce': 4149, 'ounce of': 621964, 'isopropyl alcohol': 455557, 'alcohol tablespoon': 41128, 'tablespoon pure': 831517, 'pure aloe': 689958, 'aloe vera': 46789, 'vera 15': 954726, '15 drop': 3702, 'drop essential': 260187, 'essential oil': 281346, 'hand sanitizer ounce': 375520, 'sanitizer ounce plastic': 735505, 'ounce plastic spray': 621968, 'plastic spray bottle': 658876, 'spray bottle 16': 790274, 'bottle 16 ounce': 136164, '16 ounce of': 4150, 'ounce of isopropyl': 621966, 'of isopropyl alcohol': 585348, 'isopropyl alcohol tablespoon': 455563, 'alcohol tablespoon pure': 41129, 'tablespoon pure aloe': 831518, 'pure aloe vera': 689959, 'aloe vera 15': 46790, 'vera 15 drop': 954727, '15 drop essential': 3703, 'drop essential oil': 260188, 'allotted': 45902, 'staff an': 792118, 'an are': 55385, 'provide allotted': 686219, 'allotted shopping': 45903, 'worker during': 1006814, 'this is very': 888454, 'is very good': 453675, 'very good news': 955193, 'news for nh': 560438, 'nh staff an': 562075, 'staff an are': 792119, 'an are going': 55386, 'going to provide': 355677, 'to provide allotted': 912378, 'provide allotted shopping': 686220, 'allotted shopping time': 45904, 'shopping time for': 764142, 'time for worker': 896777, 'for worker during': 327934, 'worker during the': 1006819, 'during the fight': 263128, 'district': 248342, 'apparent': 81880, 'violation': 957509, 'sir the': 771655, 'the district': 853428, 'district sick': 248384, 'safe leave': 729798, 'leave act': 484722, 'an apparent': 55359, 'apparent human': 81892, 'human right': 410599, 'right violation': 722391, 'violation see': 957523, 'see image': 745289, 'sir the district': 771656, 'the district sick': 853430, 'district sick and': 248385, 'sick and safe': 768371, 'and safe leave': 70717, 'safe leave act': 729799, 'leave act is': 484723, 'act is an': 29666, 'is an apparent': 445644, 'an apparent human': 55361, 'apparent human right': 81893, 'human right violation': 410603, 'right violation see': 722393, 'violation see image': 957524, 'iceland': 412698, 'fronted': 338693, 'famous': 298448, 'singer': 771177, 'encouraging': 275709, 'indoors': 435372, 'afer': 33976, 'pleased not': 660793, 'not singing': 571588, 'singing one': 771222, 'these but': 879709, 'great ran': 362935, 'ran on': 696508, 'on national': 602337, 'national tv': 552637, 'tv in': 936120, 'in iceland': 423954, 'iceland country': 412707, 'country not': 210924, 'not supermarket': 571806, 'week fronted': 976258, 'fronted by': 338694, 'by famous': 152547, 'famous in': 298472, 'iceland singer': 412717, 'singer encouraging': 771184, 'encouraging people': 275728, 'to adventure': 900131, 'adventure indoors': 33101, 'indoors this': 435428, 'this easter': 887334, 'easter afer': 265373, 'afer stayhomesavelives': 33979, 'll be pleased': 496610, 'be pleased not': 116447, 'pleased not singing': 660794, 'not singing one': 571590, 'singing one of': 771223, 'of these but': 591814, 'these but this': 879710, 'but this is': 147551, 'is great ran': 448201, 'great ran on': 362936, 'ran on national': 696509, 'on national tv': 602339, 'national tv in': 552638, 'tv in iceland': 936122, 'in iceland country': 423955, 'iceland country not': 412708, 'country not supermarket': 210925, 'not supermarket this': 571811, 'supermarket this week': 823321, 'this week fronted': 891216, 'week fronted by': 976259, 'fronted by famous': 338695, 'by famous in': 152548, 'famous in iceland': 298473, 'in iceland singer': 423956, 'iceland singer encouraging': 412718, 'singer encouraging people': 771185, 'encouraging people to': 275730, 'people to adventure': 649873, 'to adventure indoors': 900132, 'adventure indoors this': 33102, 'indoors this easter': 435429, 'this easter afer': 887335, 'easter afer stayhomesavelives': 265374, 'sunburnt': 818132, 'netflix': 557589, 'charm': 173782, 'addiction': 31633, 'loses': 503513, 'learning': 484171, 'distancing diary': 247097, 'diary day': 240408, 'day am': 227238, 'am sunburnt': 50449, 'sunburnt and': 818133, 'and tired': 74138, 'tired netflix': 899036, 'netflix ha': 557601, 'it charm': 457112, 'charm my': 173783, 'shopping addiction': 761891, 'addiction is': 31640, 'in full': 423158, 'full force': 340606, 'force once': 328471, 'once that': 605715, 'that loses': 844947, 'loses my': 503523, 'my interest': 548874, 'interest may': 441374, 'result to': 717645, 'to learning': 909144, 'learning chinese': 484187, 'chinese so': 177350, 'can yell': 160265, 'social distancing diary': 779588, 'distancing diary day': 247098, 'diary day am': 240409, 'day am sunburnt': 227242, 'am sunburnt and': 50450, 'sunburnt and tired': 818134, 'and tired netflix': 74139, 'tired netflix ha': 899037, 'netflix ha lost': 557602, 'lost it charm': 503875, 'it charm my': 457113, 'charm my online': 173784, 'online shopping addiction': 609015, 'shopping addiction is': 761895, 'addiction is in': 31641, 'is in full': 448772, 'in full force': 423163, 'full force once': 340610, 'force once that': 328472, 'once that loses': 605716, 'that loses my': 844948, 'loses my interest': 503524, 'my interest may': 548876, 'interest may result': 441375, 'may result to': 521462, 'result to learning': 717646, 'to learning chinese': 909145, 'learning chinese so': 484188, 'chinese so can': 177351, 'so can yell': 776733, 'can yell at': 160266, 'yell at the': 1015206, 'at the ceo': 100905, 'ceo of covid': 169773, 'shopping supermarket': 764014, 'supermarket remain': 822193, 'open remember': 612478, 'to practice': 911951, 'good hygiene': 357194, 'out to do': 627638, 'to do your': 904597, 'do your shopping': 250711, 'your shopping supermarket': 1025794, 'shopping supermarket remain': 764018, 'supermarket remain open': 822194, 'remain open remember': 709819, 'open remember to': 612479, 'remember to practice': 710380, 'to practice social': 911963, 'distancing and good': 246969, 'and good hygiene': 63832, 'delgro': 232873, 'smrt': 775967, 'exploring': 292541, 'transport firm': 929885, 'firm such': 308421, 'such comfort': 816408, 'comfort delgro': 187823, 'delgro and': 232874, 'and smrt': 71820, 'smrt road': 775968, 'are exploring': 86370, 'exploring option': 292550, 'option on': 614081, 'help online': 390189, 'grocery platform': 364862, 'platform with': 659057, 'with delivery': 997959, 'delivery amidst': 233646, 'grocery demand': 364457, 'demand grocery': 235588, 'grocery transport': 366079, 'transport delivery': 929877, 'delivery delivery': 233859, 'transport firm such': 929886, 'firm such comfort': 308422, 'such comfort delgro': 816409, 'comfort delgro and': 187824, 'delgro and smrt': 232875, 'and smrt road': 71821, 'smrt road are': 775969, 'road are exploring': 724411, 'are exploring option': 86371, 'exploring option on': 292551, 'option on how': 614082, 'how to help': 409029, 'to help online': 907575, 'help online grocery': 390190, 'online grocery platform': 608324, 'grocery platform with': 364865, 'platform with delivery': 659059, 'with delivery amidst': 997960, 'delivery amidst the': 233647, 'amidst the surge': 52835, 'in demand retail': 422151, 'retail grocery demand': 718154, 'grocery demand grocery': 364458, 'demand grocery transport': 235590, 'grocery transport delivery': 366080, 'transport delivery delivery': 929878, 'alkaline': 41873, 'queen': 693367, 'flourish': 311193, 'strengthen': 813242, 'and organic': 68265, 'organic medication': 619225, 'the alkaline': 848578, 'alkaline water': 41877, 'water queen': 969130, 'queen will': 693399, 'also flourish': 48216, 'flourish panic': 311196, 'and paranoia': 68707, 'paranoia drive': 641429, 'drive people': 259125, 'buy supplement': 149259, 'supplement to': 824428, 'to strengthen': 915666, 'strengthen their': 813255, 'their immune': 873626, 'and prevent': 69405, 'prevent infection': 671655, 'infection seen': 436843, 'seen with': 747358, 'with exorbitant': 998324, 'exorbitant hand': 290395, 'sanitizer price': 735578, 'pharmaceutical company and': 654063, 'company and organic': 190386, 'and organic medication': 68266, 'organic medication the': 619226, 'medication the alkaline': 526682, 'the alkaline water': 848579, 'alkaline water queen': 41878, 'water queen will': 969131, 'queen will also': 693400, 'will also flourish': 992257, 'also flourish panic': 48217, 'flourish panic and': 311197, 'panic and paranoia': 637328, 'and paranoia drive': 68708, 'paranoia drive people': 641430, 'drive people to': 259126, 'people to buy': 649883, 'to buy supplement': 902312, 'buy supplement to': 149260, 'supplement to strengthen': 824429, 'to strengthen their': 915668, 'strengthen their immune': 813256, 'their immune system': 873627, 'immune system and': 417334, 'system and prevent': 831102, 'and prevent infection': 69409, 'prevent infection seen': 671660, 'infection seen with': 436844, 'seen with exorbitant': 747359, 'with exorbitant hand': 998325, 'exorbitant hand sanitizer': 290396, 'hand sanitizer price': 375545, 'elite': 271509, 'iraqi': 444791, 'organize': 619459, 'enact': 275480, 'democratic': 236757, 'commission this': 188905, 'this post': 889670, 'post examines': 666117, 'examines impact': 288842, 'of corruption': 581993, 'corruption corona': 207692, 'spread collapse': 790474, 'iraq elite': 444763, 'elite it': 271516, 'it offer': 459991, 'offer iraqi': 594671, 'iraqi youth': 444801, 'youth who': 1026874, 'have organized': 381835, 'organized the': 619479, 'the powerful': 864162, 'powerful october': 667793, 'revolution organize': 720751, 'organize post': 619468, '19 election': 6739, 'election enact': 271033, 'enact democratic': 275483, 'democratic re': 236768, 'commission this post': 188907, 'this post examines': 889673, 'post examines impact': 666118, 'examines impact of': 288843, 'impact of corruption': 417763, 'of corruption corona': 581994, 'corruption corona virus': 207693, 'corona virus spread': 204354, 'virus spread collapse': 958784, 'spread collapse of': 790475, 'on iraq elite': 601623, 'iraq elite it': 444764, 'elite it offer': 271517, 'it offer iraqi': 459992, 'offer iraqi youth': 594672, 'iraqi youth who': 444802, 'youth who have': 1026875, 'who have organized': 988942, 'have organized the': 381836, 'organized the powerful': 619482, 'the powerful october': 864163, 'powerful october revolution': 667794, 'october revolution organize': 579153, 'revolution organize post': 720753, 'organize post covid': 619469, 'covid 19 election': 213013, '19 election enact': 6740, 'election enact democratic': 271034, 'enact democratic re': 275484, 'motivationmonday': 543317, 'healthcare grocery': 387127, 'you motivationmonday': 1019897, 'to all healthcare': 900253, 'all healthcare grocery': 43077, 'healthcare grocery store': 387129, 'thank you motivationmonday': 841781, 'discourage': 244614, 'it ready': 460613, 'ready hospital': 700893, 'hospital grade': 404433, 'grade hand': 361653, 'sanitizer we': 736040, 'we strongly': 973435, 'strongly discourage': 814225, 'discourage buying': 244617, 'in bulk': 421027, 'bulk and': 142238, 'and inflating': 65209, 'price getting': 674174, 'getting rid': 349238, 'our all': 622051, 'of best': 580679, 'best interest': 127737, 'it ready hospital': 460614, 'ready hospital grade': 700894, 'hospital grade hand': 404434, 'grade hand sanitizer': 361654, 'hand sanitizer we': 375653, 'sanitizer we strongly': 736050, 'we strongly discourage': 973437, 'strongly discourage buying': 814226, 'discourage buying in': 244618, 'buying in bulk': 150528, 'in bulk and': 421028, 'bulk and inflating': 142240, 'and inflating the': 65210, 'the price getting': 864354, 'price getting rid': 674177, 'getting rid of': 349239, 'rid of 19': 721387, 'of 19 is': 579397, '19 is in': 7994, 'is in our': 448796, 'in our all': 426259, 'our all of': 622053, 'all of best': 43679, 'of best interest': 580680, 'supplying': 826274, 'jharkhand': 465425, 'government supplying': 360647, 'supplying month': 826299, 'month ration': 537970, 'in advance': 420048, 'advance to': 32915, 'every district': 285870, 'district jharkhand': 248372, 'jharkhand consumer': 465426, 'minister coronapandemic': 533347, 'government supplying month': 360648, 'supplying month ration': 826300, 'month ration in': 537971, 'ration in advance': 697698, 'in advance to': 420061, 'advance to every': 32917, 'to every district': 905301, 'every district jharkhand': 285871, 'district jharkhand consumer': 248373, 'jharkhand consumer affair': 465427, 'affair minister coronapandemic': 34069, 'admirable': 32545, 'people outside': 649030, 'outside mall': 629477, 'mall supermarket': 511834, 'the internal': 858356, 'internal mall': 441729, 'mall security': 511824, 'staff have': 792511, 'place admirable': 657294, 'admirable social': 32552, 'measure well': 525425, 'well capping': 978093, 'capping off': 162890, 'off how': 593910, 'item person': 463564, 'person can': 652345, 'get like': 347480, 'like alcohol': 489741, 'alcohol bottle': 40945, 'bottle covid': 136212, '19 remains': 10090, 'remains clear': 709993, 'clear and': 181219, 'and present': 69384, 'present health': 670593, 'health threat': 386908, 'of people outside': 587962, 'people outside mall': 649031, 'outside mall supermarket': 629478, 'mall supermarket the': 511836, 'supermarket the internal': 823227, 'the internal mall': 858358, 'internal mall security': 441730, 'mall security and': 511825, 'security and supermarket': 744541, 'and supermarket staff': 72737, 'supermarket staff have': 822852, 'staff have set': 792515, 'have set in': 382485, 'set in place': 753403, 'in place admirable': 426719, 'place admirable social': 657295, 'admirable social distancing': 32553, 'distancing measure well': 247328, 'measure well capping': 525426, 'well capping off': 978094, 'capping off how': 162891, 'off how many': 593912, 'many item person': 514220, 'item person can': 463565, 'person can get': 652347, 'can get like': 158428, 'get like alcohol': 347481, 'like alcohol bottle': 489742, 'alcohol bottle covid': 40946, 'bottle covid 19': 136213, 'covid 19 remains': 213685, '19 remains clear': 10092, 'remains clear and': 709994, 'clear and present': 181221, 'and present health': 69386, 'present health threat': 670594, 'south florida': 786720, 'florida covid': 310915, '19 info': 7872, 'info regarding': 437568, 'regarding store': 707268, 'store supermarket': 810452, 'supermarket giant': 820498, 'giant join': 349817, 'join list': 466762, 'with senior': 1000636, 'hour during': 405552, 'south florida covid': 786723, 'florida covid 19': 310916, 'covid 19 info': 213271, '19 info regarding': 7876, 'info regarding store': 437570, 'regarding store supermarket': 707271, 'store supermarket giant': 810456, 'supermarket giant join': 820506, 'giant join list': 349818, 'join list of': 466763, 'of store with': 590271, 'store with senior': 811400, 'with senior hour': 1000637, 'senior hour during': 750324, 'hour during coronavirus': 405553, 'verbally': 954749, 'physically': 655504, 'accepted': 28048, 'an open': 56653, 'open letter': 612355, 'letter to': 487355, 'public the': 688357, 'way you': 970199, 'you treat': 1021921, 'treat retail': 930878, 'worker is': 1007236, 'is work': 454026, 'large supermarket': 479803, 'and especially': 62236, 'especially during': 280461, 'outbreak being': 628044, 'being verbally': 126027, 'verbally and': 954756, 'sometimes even': 785199, 'even physically': 284468, 'physically abused': 655507, 'abused is': 27696, 'just accepted': 468145, 'accepted by': 28051, 'by part': 153526, 'an open letter': 56656, 'open letter to': 612358, 'letter to the': 487373, 'to the general': 916743, 'general public the': 345461, 'public the way': 688361, 'the way you': 871209, 'way you treat': 970208, 'you treat retail': 1021922, 'treat retail worker': 930879, 'retail worker is': 718892, 'worker is work': 1007244, 'is work for': 454028, 'work for large': 1005157, 'for large supermarket': 322890, 'large supermarket chain': 479806, 'supermarket chain and': 819593, 'chain and especially': 170463, 'and especially during': 62237, 'especially during the': 280464, '19 outbreak being': 9088, 'outbreak being verbally': 628045, 'being verbally and': 126028, 'verbally and sometimes': 954757, 'and sometimes even': 71995, 'sometimes even physically': 785201, 'even physically abused': 284469, 'physically abused is': 655509, 'abused is just': 27697, 'is just accepted': 449117, 'just accepted by': 468146, 'accepted by part': 28052, 'by part of': 153527, 'of the job': 591161, 'hern': 393907, 'ndez': 553408, '1966': 12407, 'imagined': 416837, 'lupe hern': 506805, 'hern ndez': 393908, 'ndez is': 553409, 'true american': 933028, 'in 1966': 419725, '1966 she': 12410, 'she imagined': 756133, 'imagined disinfectant': 416838, 'disinfectant gel': 245673, 'gel intended': 345129, 'intended for': 441050, 'for professional': 324783, 'professional who': 682518, 'who did': 988585, 'to hot': 907993, 'and soap': 71860, 'soap today': 779130, 'today hand': 919606, 'is billion': 446182, 'billion dollar': 130802, 'dollar industry': 253017, 'industry that': 436140, 'ha saved': 371807, 'saved countless': 737729, 'countless life': 210377, 'life disinfectant': 488596, 'lupe hern ndez': 506806, 'hern ndez is': 393909, 'ndez is true': 553410, 'is true american': 453364, 'true american hero': 933029, 'american hero in': 52033, 'hero in 1966': 394012, 'in 1966 she': 419727, '1966 she imagined': 12411, 'she imagined disinfectant': 756134, 'imagined disinfectant gel': 416839, 'disinfectant gel intended': 245674, 'gel intended for': 345130, 'intended for professional': 441053, 'for professional who': 324784, 'professional who did': 682520, 'who did not': 988587, 'not have access': 569809, 'access to hot': 28244, 'to hot water': 907995, 'hot water and': 405065, 'water and soap': 968881, 'and soap today': 71872, 'soap today hand': 779131, 'today hand sanitizer': 919607, 'sanitizer is billion': 735185, 'is billion dollar': 446183, 'billion dollar industry': 130804, 'dollar industry that': 253018, 'industry that ha': 436144, 'that ha saved': 844133, 'ha saved countless': 371809, 'saved countless life': 737730, 'countless life disinfectant': 210378, 'bathroom': 112626, 'make an': 509671, 'emergency phone': 272870, 'phone top': 655045, 'top put': 925700, 'put in': 690610, 'in bathroom': 420725, 'bathroom stall': 112665, 'stall so': 793379, 'can call': 157850, 'case you': 166121, 'you run': 1020956, 'paper toiletpaperemergency': 640969, 'toiletpaperemergency toiletpaper': 923138, 'should we make': 766649, 'we make an': 972333, 'make an emergency': 509677, 'an emergency phone': 55684, 'emergency phone top': 272871, 'phone top put': 655046, 'top put in': 925701, 'put in bathroom': 690612, 'in bathroom stall': 420726, 'bathroom stall so': 112668, 'stall so you': 793380, 'you can call': 1017638, 'can call for': 157853, 'call for help': 155874, 'for help in': 322179, 'help in case': 389893, 'in case you': 421282, 'case you run': 166130, 'you run out': 1020959, 'toilet paper toiletpaperemergency': 921499, 'paper toiletpaperemergency toiletpaper': 640970, 'fails': 296240, 'reject': 708314, 'misinformation': 534057, 'facebook news': 294970, 'news facebook': 560394, 'facebook ad': 294881, 'ad fails': 31093, 'fails to': 296247, 'to reject': 913123, 'reject covid': 708320, '19 misinformation': 8658, 'misinformation via': 534083, 'via consumer': 955873, 'report tested': 712307, 'tested facebook': 839298, 'ad claim': 31081, 'would reject': 1012177, 'reject ad': 708315, 'ad spreading': 31164, 'misinformation the': 534079, 'post facebook': 666124, 'facebook news facebook': 294971, 'news facebook ad': 560395, 'facebook ad fails': 294885, 'ad fails to': 31094, 'fails to reject': 296252, 'to reject covid': 913124, 'reject covid 19': 708321, 'covid 19 misinformation': 213440, '19 misinformation via': 8662, 'misinformation via consumer': 534084, 'via consumer report': 955875, 'consumer report tested': 198732, 'report tested facebook': 712308, 'tested facebook ad': 839299, 'facebook ad claim': 294884, 'ad claim they': 31082, 'claim they would': 179842, 'they would reject': 883952, 'would reject ad': 1012178, 'reject ad spreading': 708316, 'ad spreading covid': 31165, '19 misinformation the': 8660, 'misinformation the post': 534080, 'the post facebook': 864089, 'post facebook ad': 666125, 'followasci': 312589, 'ayurveda': 106367, 'stay vigilant': 797381, 'vigilant stay': 957259, 'stay informed': 797085, 'informed followasci': 438098, 'followasci read': 312590, 'read at': 700298, 'at advertising': 97841, 'advertising branding': 33209, 'branding marketing': 138128, 'marketing facemask': 517602, 'facemask sanitizers': 295101, 'sanitizers disinfectant': 736258, 'disinfectant food': 245661, 'food ayurveda': 313494, 'stay vigilant stay': 797385, 'vigilant stay safe': 957260, 'safe stay informed': 729973, 'stay informed followasci': 797087, 'informed followasci read': 438099, 'followasci read at': 312591, 'read at advertising': 700299, 'at advertising branding': 97842, 'advertising branding marketing': 33210, 'branding marketing facemask': 138129, 'marketing facemask sanitizers': 517603, 'facemask sanitizers disinfectant': 295102, 'sanitizers disinfectant food': 736259, 'disinfectant food ayurveda': 245662, 'idd': 412991, 'bagging': 108520, '59': 20559, 'pneumonia': 662087, 'support idd': 826578, 'idd mental': 412992, 'health guy': 386471, 'do his': 249399, 'his grocery': 397479, 'grocery bagging': 364306, 'bagging job': 108529, 'job told': 466237, 'told management': 923596, 'management could': 512556, 'with him': 998823, 'him 59': 396520, '59 had': 20569, 'had pneumonia': 373413, 'pneumonia they': 662102, 'go support': 354185, 'support him': 826566, 'him during': 396592, 'the night': 861803, 'night and': 562936, 'at other': 100000, 'his house': 397521, 'house th': 406593, 'support idd mental': 826579, 'idd mental health': 412993, 'mental health guy': 528641, 'health guy want': 386472, 'to do his': 904518, 'do his grocery': 249400, 'his grocery bagging': 397480, 'grocery bagging job': 364307, 'bagging job told': 108530, 'job told management': 466238, 'told management could': 923598, 'management could not': 512557, 'could not be': 209432, 'not be in': 568400, 'the store with': 868147, 'store with him': 811381, 'with him 59': 998824, 'him 59 had': 396521, '59 had pneumonia': 20570, 'had pneumonia they': 373414, 'pneumonia they said': 662103, 'they said we': 883250, 'said we were': 731573, 'we were going': 973793, 'going to go': 355610, 'to go support': 906859, 'go support him': 354186, 'support him during': 826567, 'him during the': 396594, 'during the night': 263160, 'the night and': 861804, 'night and at': 562937, 'and at other': 58482, 'at other time': 100002, 'other time in': 621128, 'time in his': 896992, 'in his house': 423730, 'his house th': 397525, 'pillar': 656678, 'essentially': 281896, 'boomed': 134836, 'transformed life': 929590, 'america including': 51562, 'people spend': 649516, 'money these': 537072, 'these chart': 879746, 'chart show': 173849, 'how in': 408045, 'in matter': 425190, 'matter of': 520606, 'week pillar': 976750, 'pillar of': 656681, 'american industry': 52051, 'industry essentially': 435802, 'essentially ground': 281905, 'ground to': 366545, 'to halt': 907095, 'halt while': 374472, 'while others': 987118, 'others boomed': 621311, 'coronavirus outbreak ha': 206389, 'outbreak ha transformed': 628279, 'ha transformed life': 372353, 'transformed life in': 929591, 'life in america': 488751, 'in america including': 420225, 'america including the': 51563, 'including the way': 432192, 'way people spend': 969811, 'people spend their': 649519, 'their money these': 874003, 'money these chart': 537073, 'these chart show': 879747, 'chart show how': 173850, 'show how in': 766979, 'how in matter': 408048, 'in matter of': 425191, 'matter of week': 520616, 'of week pillar': 593004, 'week pillar of': 976751, 'pillar of american': 656682, 'of american industry': 580064, 'american industry essentially': 52052, 'industry essentially ground': 435803, 'essentially ground to': 281906, 'ground to halt': 366546, 'to halt while': 907109, 'halt while others': 374473, 'while others boomed': 987120, 'pennsylvania': 646551, 'trashing': 930189, '35g': 17972, 'pennsylvania supermarket': 646583, 'supermarket say': 822323, 'say coughing': 738539, 'coughing prank': 208736, 'prank prompt': 668946, 'prompt trashing': 683921, 'trashing of': 930190, 'of 35g': 579575, '35g in': 17973, 'in produce': 427014, 'produce other': 680381, 'pennsylvania supermarket say': 646584, 'supermarket say coughing': 822325, 'say coughing prank': 738540, 'coughing prank prompt': 208737, 'prank prompt trashing': 668947, 'prompt trashing of': 683922, 'trashing of 35g': 930191, 'of 35g in': 579576, '35g in produce': 17974, 'in produce other': 427015, 'produce other item': 680383, 'drumlake': 261208, 'eyelid': 294147, 'appear': 82110, 'conti': 200927, 'drumlake nobody': 261209, 'nobody seems': 566056, 'to bat': 901068, 'bat an': 112536, 'an eyelid': 56041, 'eyelid at': 294148, 'giant profiteering': 349847, 'from selling': 337208, 'most basic': 542129, 'basic of': 112019, 'human need': 410570, 'coronacrisis yet': 204870, 'yet some': 1016235, 'people appear': 646902, 'appear to': 82122, 'that landlord': 844837, 'landlord should': 479363, 'should conti': 765873, 'drumlake nobody seems': 261210, 'nobody seems to': 566057, 'seems to bat': 746876, 'to bat an': 901069, 'bat an eyelid': 112537, 'an eyelid at': 56042, 'eyelid at supermarket': 294149, 'at supermarket giant': 100727, 'supermarket giant profiteering': 820511, 'giant profiteering from': 349848, 'profiteering from selling': 683046, 'from selling the': 337214, 'selling the most': 749480, 'the most basic': 860951, 'most basic of': 542133, 'basic of human': 112021, 'of human need': 584876, 'human need during': 410573, 'need during the': 554720, 'during the coronacrisis': 263102, 'the coronacrisis yet': 851793, 'coronacrisis yet some': 204871, 'yet some people': 1016237, 'some people appear': 783503, 'people appear to': 646903, 'appear to think': 82127, 'to think that': 917386, 'think that landlord': 885597, 'that landlord should': 844838, 'landlord should conti': 479364, 'hoarded': 398922, 'indefinite': 434026, 'quran': 695027, 'khwanis': 473751, 'think nation': 885415, 'nation when': 552379, 'when hearing': 983563, '19 hoarded': 7556, 'hoarded the': 398961, 'equipment think': 279849, 'piling raised': 656622, 'raised price': 696022, 'at indefinite': 99287, 'indefinite pricing': 434031, 'pricing started': 677979, 'selling basic': 749177, 'basic hygiene': 111938, 'on black': 599652, 'black started': 132127, 'started making': 794775, 'making fake': 511061, 'fake hand': 296634, 'sanitizers started': 736405, 'started quran': 794820, 'quran khwanis': 695028, 'khwanis when': 473752, 'when told': 984333, 'you think nation': 1021668, 'think nation when': 885416, 'nation when hearing': 552380, 'when hearing about': 983564, 'hearing about covid': 388185, 'covid 19 hoarded': 213212, '19 hoarded the': 7557, 'hoarded the medical': 398964, 'the medical equipment': 860396, 'medical equipment think': 526164, 'equipment think of': 279850, 'think of stock': 885460, 'stock piling raised': 802672, 'piling raised price': 656623, 'raised price of': 696028, 'of mask at': 586260, 'mask at indefinite': 518422, 'at indefinite pricing': 99288, 'indefinite pricing started': 434032, 'pricing started selling': 677980, 'started selling basic': 794829, 'selling basic hygiene': 749180, 'basic hygiene product': 111942, 'hygiene product on': 412159, 'product on black': 681464, 'on black started': 599654, 'black started making': 132128, 'started making fake': 794776, 'making fake hand': 511062, 'fake hand sanitizers': 296637, 'hand sanitizers started': 375722, 'sanitizers started quran': 736406, 'started quran khwanis': 794821, 'quran khwanis when': 695029, 'khwanis when told': 473753, 'gouger': 359208, 'texan': 839713, '621': 21239, '0508': 957, 'office is': 595453, 'is ready': 451253, 'to prosecute': 912284, 'prosecute price': 684619, 'price gouger': 674239, 'gouger we': 359223, 'we deal': 971242, 'any texan': 79951, 'texan who': 839728, 'file pricegouging': 305363, 'pricegouging complaint': 677796, 'complaint should': 192025, 'should call': 765813, 'call 800': 155720, '800 621': 22678, '621 0508': 21240, '0508 or': 958, 'my office is': 549548, 'office is ready': 595461, 'is ready to': 451257, 'ready to prosecute': 700968, 'to prosecute price': 912286, 'prosecute price gouger': 684620, 'price gouger we': 674247, 'gouger we deal': 359224, 'we deal with': 971244, 'deal with any': 229537, 'with any texan': 997282, 'any texan who': 79952, 'texan who need': 839730, 'who need to': 989330, 'need to file': 555936, 'to file pricegouging': 905830, 'file pricegouging complaint': 305364, 'pricegouging complaint should': 677797, 'complaint should call': 192026, 'should call 800': 765814, 'call 800 621': 155724, '800 621 0508': 22679, '621 0508 or': 21241, '0508 or online': 961, 'or online at': 616386, 'confined': 194036, 'howeice': 409332, 'shopping behavior': 762192, 'behavior shift': 124184, 'shift into': 758334, 'into home': 442637, 'home confined': 400917, 'confined buying': 194044, 'buying with': 151376, 'with 23': 996984, '23 increase': 15397, 'increase over': 432973, 'over normal': 630442, 'normal grocery': 567163, 'grocery spending': 365141, 'spending grocery': 788818, 'grocery howeice': 364604, 'grocery shopping behavior': 365002, 'shopping behavior shift': 762212, 'behavior shift into': 124187, 'shift into home': 758335, 'into home confined': 442638, 'home confined buying': 400918, 'confined buying with': 194045, 'buying with 23': 151377, 'with 23 increase': 996985, '23 increase over': 15398, 'increase over normal': 432974, 'over normal grocery': 630443, 'normal grocery spending': 567166, 'grocery spending grocery': 365142, 'spending grocery howeice': 788819, 'contracted': 201728, 'nurse think': 577513, 'think she': 885526, 'she contracted': 755950, 'contracted covid': 201738, 'nurse think she': 577514, 'think she contracted': 885528, 'she contracted covid': 755951, 'contracted covid 19': 201739, 'gate': 344323, 'nokidhungry': 566241, 'cannot continue': 161724, 'continue food': 201037, 'bank need': 110021, 'receive excess': 703472, 'excess feed': 289335, 'feed people': 302357, 'with elderly': 998188, 'elderly vulnerable': 270925, 'vulnerable during': 960938, '19 allow': 4907, 'allow to': 46098, 'at farm': 98625, 'farm gate': 299122, 'gate while': 344357, 'while nokidhungry': 987084, 'cannot continue food': 161725, 'continue food bank': 201038, 'food bank need': 313603, 'bank need to': 110027, 'need to receive': 556034, 'to receive excess': 912916, 'receive excess feed': 703473, 'excess feed people': 289336, 'feed people with': 302359, 'people with elderly': 650445, 'with elderly vulnerable': 998190, 'elderly vulnerable during': 270930, 'vulnerable during 19': 960939, 'during 19 allow': 262401, '19 allow to': 4908, 'allow to buy': 46099, 'buy at farm': 148379, 'at farm gate': 98626, 'farm gate while': 299128, 'gate while nokidhungry': 344358, 'id': 412921, 'ramadan': 696336, 'iftar': 415653, 'traweeh': 930716, 'sad thing': 729262, '19 id': 7650, 'id the': 412956, 'whole of': 990285, 'of ramadan': 588728, 'ramadan is': 696337, 'is mostly': 449746, 'mostly going': 542961, 'be ruined': 116922, 'ruined limited': 727137, 'for iftar': 322471, 'iftar at': 415654, 'to humble': 908051, 'humble ourselves': 410820, 'ourselves because': 625465, 'because others': 119448, 'others barely': 621298, 'barely have': 111015, 'food while': 317591, 'while we': 987541, 'we panic': 972687, 'about tissue': 26703, 'tissue and': 899118, 'sanitizers large': 736331, 'gathering at': 344438, 'at traweeh': 101361, 'traweeh being': 930719, 'being cancelled': 124921, 'sad thing about': 729263, 'thing about covid': 884086, 'covid 19 id': 213242, '19 id the': 7652, 'id the whole': 412957, 'the whole of': 871500, 'whole of ramadan': 990287, 'of ramadan is': 588729, 'ramadan is mostly': 696339, 'is mostly going': 449747, 'mostly going to': 542962, 'to be ruined': 901515, 'be ruined limited': 116923, 'ruined limited food': 727138, 'limited food for': 492631, 'food for iftar': 314543, 'for iftar at': 322472, 'iftar at the': 415655, 'same time we': 733375, 'time we have': 898225, 'have to humble': 383227, 'to humble ourselves': 908052, 'humble ourselves because': 410821, 'ourselves because others': 625466, 'because others barely': 119450, 'others barely have': 621299, 'barely have food': 111016, 'have food while': 380673, 'food while we': 317601, 'while we panic': 987552, 'we panic about': 972688, 'panic about tissue': 637263, 'about tissue and': 26704, 'tissue and hand': 899122, 'and hand sanitizers': 64146, 'hand sanitizers large': 375705, 'sanitizers large gathering': 736332, 'large gathering at': 479669, 'gathering at traweeh': 344445, 'at traweeh being': 101362, 'traweeh being cancelled': 930720, 'ha not': 371357, 'not changed': 568730, 'changed consumer': 172453, 'consumer attitude': 196339, 'attitude to': 102588, 'to advertising': 900136, 'advertising via': 33288, '19 ha not': 7370, 'ha not changed': 371361, 'not changed consumer': 568731, 'changed consumer attitude': 172454, 'consumer attitude to': 196350, 'attitude to advertising': 102589, 'to advertising via': 900137, 'funnel': 341678, 'in colorado': 421560, 'colorado for': 186796, 'for pharmacy': 324521, 'pharmacy pickup': 654418, 'pickup and': 655924, 'you wouldn': 1022463, 'wouldn even': 1012457, 'know anything': 476272, 'anything wa': 80929, 'wa happening': 962272, 'happening another': 377322, 'another case': 77526, 'big twitter': 130086, 'twitter funnel': 936660, 'funnel or': 341679, 'just matter': 469230, 'time covid': 896518, 'store in colorado': 808289, 'in colorado for': 421566, 'colorado for pharmacy': 186797, 'for pharmacy pickup': 324524, 'pharmacy pickup and': 654419, 'pickup and you': 655933, 'and you wouldn': 76060, 'you wouldn even': 1022464, 'wouldn even know': 1012459, 'even know anything': 284276, 'know anything wa': 476274, 'anything wa happening': 80930, 'wa happening another': 962274, 'happening another case': 377323, 'another case of': 77527, 'of the big': 590818, 'the big twitter': 849629, 'big twitter funnel': 130087, 'twitter funnel or': 936661, 'funnel or just': 341680, 'or just matter': 615886, 'just matter of': 469231, 'matter of time': 520615, 'of time covid': 592169, 'time covid 19': 896519, 'contraceptive': 201616, 'lockdown while': 500134, 'while fear': 986826, 'fear run': 301314, 'run low': 727697, 'on contraceptive': 600097, 'contraceptive supply': 201621, 'supply supplier': 825926, 'supplier now': 824576, 'now fear': 574670, 'fear customer': 301096, 'customer face': 222365, 'face tough': 294818, 'tough choice': 926806, 'choice between': 177737, 'between buying': 128745, 'or contraceptive': 614813, '19 lockdown while': 8440, 'lockdown while fear': 500135, 'while fear run': 986827, 'fear run low': 301315, 'run low on': 727699, 'low on contraceptive': 505454, 'on contraceptive supply': 600098, 'contraceptive supply supplier': 201622, 'supply supplier now': 825927, 'supplier now fear': 824577, 'now fear customer': 574672, 'fear customer face': 301097, 'customer face tough': 222367, 'face tough choice': 294819, 'tough choice between': 926807, 'choice between buying': 177738, 'between buying food': 128746, 'buying food or': 150325, 'food or contraceptive': 315648, 'lovely': 504945, 'dull': 262079, 'chilled': 176388, 'xx': 1013917, 'thearchers': 872237, 'evening lovely': 284881, 'lovely hope': 504961, 're well': 699800, 'my day': 547941, 'been dull': 121052, 'dull did': 262080, 'from and': 334502, 'and chilled': 59840, 'chilled xx': 176393, 'xx thearchers': 1013922, 'good evening lovely': 357013, 'evening lovely hope': 284882, 'lovely hope you': 504962, 'hope you re': 403805, 'you re well': 1020792, 're well my': 699801, 'well my day': 978412, 'my day ha': 547944, 'day ha been': 227714, 'ha been dull': 369793, 'been dull did': 121053, 'dull did some': 262081, 'shopping from and': 762752, 'from and chilled': 334508, 'and chilled xx': 59841, 'chilled xx thearchers': 176394, 'employer': 274481, 'globalgoals': 352319, 'employer see': 274537, 'see there': 745925, 'is gap': 447999, 'gap in': 343445, 'your resume': 1025603, 'resume in': 717740, '2020 me': 14438, 'me wa': 523888, 'wa washing': 963663, 'washing my': 967699, 'hand corona': 374878, 'virus socialdistancing': 958767, 'socialdistancing pandemic': 780587, 'pandemic globalgoals': 635499, 'globalgoals meme': 352320, 'meme meme': 528333, 'meme toiletpaper': 528367, 'toiletpaper physicaldistancing': 922345, 'employer see there': 274538, 'see there is': 745926, 'there is gap': 878562, 'is gap in': 448000, 'gap in your': 343449, 'in your resume': 431118, 'your resume in': 1025604, 'resume in 2020': 717741, 'in 2020 me': 419845, '2020 me wa': 14440, 'me wa washing': 523892, 'wa washing my': 963664, 'washing my hand': 967700, 'my hand corona': 548603, 'hand corona virus': 374879, 'corona virus socialdistancing': 204351, 'virus socialdistancing pandemic': 958768, 'socialdistancing pandemic globalgoals': 780588, 'pandemic globalgoals meme': 635500, 'globalgoals meme meme': 352321, 'meme meme toiletpaper': 528339, 'meme toiletpaper physicaldistancing': 528370, 'in gang': 423217, 'gang and': 343389, 'also hire': 48360, 'hire in': 397009, 'in toilet': 430172, 'toilet or': 921169, 'hire extra': 397007, 'extra small': 293642, 'small van': 775178, 'van to': 952312, 'not travel': 572257, 'travel in': 930388, 'group due': 366676, 'have full': 380736, 'full range': 340836, 'of hire': 584641, 'hire van': 397033, 'van and': 952288, 'and welfare': 75393, 'welfare facility': 977949, 'facility call': 295313, 'some incredible': 783107, 'incredible price': 433861, 'on short': 603444, 'short and': 764595, 'term hire': 838169, 'do you work': 250698, 'you work in': 1022420, 'work in gang': 1005309, 'in gang and': 423218, 'gang and also': 343390, 'and also hire': 57958, 'also hire in': 48361, 'hire in toilet': 397010, 'in toilet or': 430173, 'toilet or do': 921170, 'or do you': 615021, 'do you need': 250649, 'need to hire': 555961, 'to hire extra': 907795, 'hire extra small': 397008, 'extra small van': 293643, 'small van to': 775179, 'van to not': 952314, 'to not travel': 910715, 'not travel in': 572260, 'travel in large': 930389, 'in large group': 424586, 'large group due': 479682, 'group due to': 366677, 'we have full': 971825, 'have full range': 380738, 'full range of': 340837, 'range of hire': 696715, 'of hire van': 584642, 'hire van and': 397034, 'van and welfare': 952290, 'and welfare facility': 75394, 'welfare facility call': 977950, 'facility call today': 295314, 'call today and': 156197, 'today and get': 919209, 'get some incredible': 348060, 'some incredible price': 783109, 'incredible price on': 433862, 'price on short': 675715, 'on short and': 603445, 'short and long': 764596, 'and long term': 66353, 'long term hire': 501690, 'dumping': 262223, 'cafeteria': 155142, 'farmer dumping': 299344, 'dumping milk': 262234, 'milk breaking': 531607, 'breaking egg': 138941, 'demand producer': 236079, 'producer are': 680567, 'are cautious': 85212, 'cautious the': 168233, 'virus wipe': 959048, 'wipe out': 996344, 'out sale': 627136, 'sale to': 732583, 'restaurant hotel': 716512, 'hotel and': 405103, 'and cafeteria': 59394, 'cafeteria it': 155147, 'wa heartbreaking': 962297, 'farmer dumping milk': 299345, 'dumping milk breaking': 262237, 'milk breaking egg': 531608, 'breaking egg restaurant': 138944, 'destroy demand producer': 239010, 'demand producer are': 236080, 'producer are cautious': 680570, 'are cautious the': 85213, 'cautious the virus': 168234, 'the virus wipe': 870924, 'virus wipe out': 959049, 'wipe out sale': 996350, 'out sale to': 627138, 'sale to restaurant': 732591, 'to restaurant hotel': 913390, 'restaurant hotel and': 716513, 'hotel and cafeteria': 405104, 'and cafeteria it': 59395, 'cafeteria it wa': 155148, 'it wa heartbreaking': 462124, 'kingdom': 475316, 'horrendous': 404072, 'harrowing': 378535, 'imaginable': 416669, 'traumatized': 930220, 'vegan': 953840, 'animal kingdom': 76620, 'kingdom whose': 475351, 'whose member': 990656, 'member in': 528112, 'china are': 176498, 'are subjected': 90613, 'most horrendous': 542384, 'horrendous and': 404075, 'and harrowing': 64202, 'harrowing form': 378536, 'form of': 329525, 'abuse imaginable': 27641, 'imaginable their': 416672, 'their pain': 874227, 'pain fear': 634222, 'fear and': 301022, 'and cry': 60780, 'cry are': 219849, 'leave you': 485049, 'you traumatized': 1021915, 'traumatized for': 930221, 'life remember': 488986, 'kingdom vegan': 475348, 'remember the animal': 710301, 'the animal kingdom': 848746, 'animal kingdom whose': 76623, 'kingdom whose member': 475352, 'whose member in': 990657, 'member in china': 528113, 'in china are': 421389, 'china are subjected': 176502, 'are subjected to': 90615, 'subjected to some': 815762, 'to some of': 914884, 'the most horrendous': 860996, 'most horrendous and': 542385, 'horrendous and harrowing': 404077, 'and harrowing form': 64203, 'harrowing form of': 378537, 'form of abuse': 329526, 'of abuse imaginable': 579726, 'abuse imaginable their': 27642, 'imaginable their pain': 416673, 'their pain fear': 874228, 'pain fear and': 634223, 'fear and cry': 301025, 'and cry are': 60782, 'cry are enough': 219850, 'are enough to': 86222, 'enough to leave': 277711, 'to leave you': 909171, 'leave you traumatized': 485051, 'you traumatized for': 1021916, 'traumatized for life': 930222, 'for life remember': 322971, 'life remember the': 488987, 'animal kingdom vegan': 76622, 'alert fraudsters': 41426, 'fraudsters are': 331398, 'using supermarket': 950670, 'supermarket branding': 819413, 'branding to': 138139, 'to trick': 917773, 'trick people': 931702, 'to thinking': 917394, 'thinking they': 886010, 'being offered': 125475, 'offered money': 594945, 'off purchase': 594095, 'purchase the': 689669, 'email contains': 272146, 'contains link': 200631, 'link which': 493962, 'which aim': 985641, 'financial detail': 306394, 'detail more': 239214, 'info at': 437422, 'scam alert fraudsters': 739977, 'alert fraudsters are': 41427, 'fraudsters are using': 331407, 'are using supermarket': 91432, 'using supermarket branding': 950671, 'supermarket branding to': 819414, 'branding to trick': 138140, 'to trick people': 917775, 'trick people in': 931704, 'people in to': 648441, 'in to thinking': 430142, 'to thinking they': 917395, 'thinking they are': 886011, 'they are being': 881211, 'are being offered': 84889, 'being offered money': 125480, 'offered money off': 594946, 'money off purchase': 536921, 'off purchase the': 594096, 'purchase the email': 689671, 'the email contains': 854207, 'email contains link': 272147, 'contains link which': 200633, 'link which aim': 493963, 'which aim to': 985642, 'aim to steal': 39563, 'to steal your': 915370, 'steal your personal': 799219, 'your personal and': 1025261, 'personal and or': 652784, 'and or financial': 68212, 'or financial detail': 615309, 'financial detail more': 306395, 'detail more info': 239215, 'more info at': 539548, 'moh': 535555, 'deyalsingh': 240045, 'scientic': 742157, 'moh deyalsingh': 535556, 'deyalsingh panic': 240046, 'drug chloroquine': 260904, 'chloroquine and': 177588, 'and report': 70260, 'gouging it': 359368, 'raise your': 695977, 'our brother': 622279, 'brother keeper': 141079, 'keeper there': 472343, 'no scientic': 565428, 'scientic evidence': 742158, 'evidence to': 288399, 'show it': 767017, 'it treat': 461847, 'treat covid': 930815, '19 lupus': 8492, 'lupus patient': 506822, 'patient need': 644216, 'need the': 555738, 'the drug': 853725, 'moh deyalsingh panic': 535557, 'deyalsingh panic buying': 240047, 'buying of drug': 150789, 'of drug chloroquine': 582844, 'drug chloroquine and': 260905, 'chloroquine and report': 177590, 'and report of': 70264, 'report of price': 712120, 'of price gouging': 588404, 'price gouging it': 674292, 'gouging it is': 359369, 'time to raise': 898038, 'to raise your': 912737, 'raise your price': 695980, 'your price we': 1025421, 'price we are': 677396, 'we are our': 970649, 'are our brother': 88855, 'our brother keeper': 622280, 'brother keeper there': 141080, 'keeper there is': 472344, 'is no scientic': 449970, 'no scientic evidence': 565429, 'scientic evidence to': 742159, 'evidence to show': 288400, 'to show it': 914561, 'show it treat': 767019, 'it treat covid': 461848, 'treat covid 19': 930816, 'covid 19 lupus': 213385, '19 lupus patient': 8493, 'lupus patient need': 506823, 'patient need the': 644218, 'need the drug': 555743, 'preval': 671565, 'wiped': 996441, 'abo': 24596, 'preval lost': 671566, 'lost ve': 503948, 'just finished': 468726, 'finished my': 307908, 'my isolation': 548895, 'isolation after': 455179, 'go food': 353546, 'no online': 564989, 'slot actually': 774094, 'actually wiped': 31018, 'wiped down': 996448, 'the trolley': 870003, 'trolley with': 932502, 'with dettol': 998012, 'dettol wipe': 239536, 'wipe after': 996171, 'after am': 35348, 'am that': 50483, 'that paranoid': 845652, 'paranoid abo': 641432, 'preval lost ve': 671567, 'lost ve just': 503949, 've just finished': 953299, 'just finished my': 468729, 'finished my isolation': 307910, 'my isolation after': 548896, 'isolation after covid': 455180, '19 and had': 5038, 'to go food': 906796, 'go food shopping': 353547, 'food shopping no': 316529, 'shopping no online': 763334, 'no online delivery': 564990, 'online delivery slot': 608092, 'delivery slot actually': 234502, 'slot actually wiped': 774095, 'actually wiped down': 31019, 'wiped down the': 996450, 'down the trolley': 257310, 'the trolley with': 870012, 'trolley with dettol': 932504, 'with dettol wipe': 998014, 'dettol wipe after': 239537, 'wipe after am': 996172, 'after am that': 35349, 'am that paranoid': 50484, 'that paranoid abo': 845653, 'stoppanicking': 805667, 'calmdown': 156835, 'thinkofothers': 886041, 'buying it': 150590, 'not necessary': 570631, 'necessary and': 553949, 'and these': 73875, 'these picture': 880481, 'picture of': 656158, 'of older': 587203, 'people looking': 648705, 'at empty': 98536, 'shelf is': 757229, 'is heartbreaking': 448372, 'heartbreaking stoppanicbuying': 388410, 'stoppanicbuying stoppanicking': 805638, 'stoppanicking calmdown': 805668, 'calmdown thinkofothers': 156838, 'thinkofothers bekind': 886042, 'please stop panic': 660582, 'panic buying it': 637779, 'buying it not': 150599, 'it not necessary': 459899, 'not necessary and': 570633, 'necessary and these': 553954, 'and these picture': 73883, 'these picture of': 880484, 'picture of older': 656168, 'of older people': 587205, 'older people looking': 598655, 'people looking at': 648706, 'looking at empty': 502805, 'at empty shelf': 98537, 'empty shelf is': 275074, 'shelf is heartbreaking': 757237, 'is heartbreaking stoppanicbuying': 448374, 'heartbreaking stoppanicbuying stoppanicking': 388411, 'stoppanicbuying stoppanicking calmdown': 805639, 'stoppanicking calmdown thinkofothers': 805669, 'calmdown thinkofothers bekind': 156839, 'stream': 812771, '4k': 19472, 'hd': 384679, 'are planning': 89098, 'planning to': 658581, 'the stream': 868210, 'stream quality': 812786, 'quality to': 691860, 'avoid general': 105120, 'general internet': 345372, 'internet problem': 441992, 'problem in': 679557, 'europe agree': 283388, 'agree with': 38675, 'that but': 843060, 'but then': 147440, 'then will': 877764, 'will downgrade': 993247, 'downgrade my': 257552, 'my subscription': 550252, 'subscription because': 815880, 'because will': 119837, 'not pay': 570975, 'for 4k': 318855, '4k to': 19475, 'get hd': 347195, 'hd are': 384682, 'about changing': 24949, 'changing price': 172778, 'price too': 677083, 'you are planning': 1017199, 'are planning to': 89100, 'planning to reduce': 658591, 'to reduce the': 913045, 'reduce the stream': 705979, 'the stream quality': 868212, 'stream quality to': 812787, 'quality to avoid': 691861, 'to avoid general': 900901, 'avoid general internet': 105121, 'general internet problem': 345373, 'internet problem in': 441993, 'problem in europe': 679559, 'in europe agree': 422629, 'europe agree with': 283389, 'agree with that': 38681, 'with that but': 1001168, 'that but then': 843068, 'but then will': 147457, 'then will downgrade': 877768, 'will downgrade my': 993248, 'downgrade my subscription': 257553, 'my subscription because': 550253, 'subscription because will': 815881, 'because will not': 119839, 'will not pay': 994252, 'not pay for': 570977, 'pay for 4k': 644866, 'for 4k to': 318857, '4k to get': 19476, 'to get hd': 906496, 'get hd are': 347196, 'hd are you': 384683, 'you thinking about': 1021698, 'thinking about changing': 885844, 'about changing price': 24950, 'changing price too': 172781, 'alias': 41702, 'irregular': 445002, 'smarter': 775467, 'smartmonkey': 775498, 'follow our': 312480, 'latest article': 481213, 'article about': 94230, 'fight alias': 304646, 'alias 19': 41703, 'with logistics': 999296, 'logistics from': 500750, 'from irregular': 336089, 'irregular pattern': 445003, 'pattern in': 644471, 'healthcare logistics': 387162, 'logistics this': 500805, 'crisis demand': 217282, 'demand smarter': 236236, 'smarter supply': 775470, 'and technology': 73070, 'technology learn': 836324, 'how smartmonkey': 408697, 'smartmonkey fight': 775499, 'fight coronavirus': 304698, 'follow our latest': 312482, 'our latest article': 623652, 'latest article about': 481214, 'article about how': 94234, 'how to fight': 409020, 'to fight alias': 905775, 'fight alias 19': 304647, 'alias 19 with': 41704, '19 with logistics': 12135, 'with logistics from': 999298, 'logistics from irregular': 500752, 'from irregular pattern': 336090, 'irregular pattern in': 445004, 'pattern in supermarket': 644475, 'in supermarket supply': 428680, 'supermarket supply to': 823055, 'supply to healthcare': 826010, 'to healthcare logistics': 907378, 'healthcare logistics this': 387163, 'logistics this crisis': 500806, 'this crisis demand': 887031, 'crisis demand smarter': 217284, 'demand smarter supply': 236238, 'smarter supply and': 775471, 'supply and technology': 824755, 'and technology learn': 73072, 'technology learn how': 836325, 'learn how smartmonkey': 483990, 'how smartmonkey fight': 408698, 'smartmonkey fight coronavirus': 775500, 'tackled': 831623, 'man tackled': 512259, 'tackled to': 831632, 'ground by': 366485, 'by supermarket': 154164, 'staff he': 792516, 'he tried': 385547, 'tried to': 931822, 'steal trolley': 799212, 'trolley full': 932414, 'getting out': 349168, 'control this': 202187, 'just virus': 470181, 'is becoming': 446027, 'becoming mental': 120317, 'mental illness': 528654, 'illness crisis': 416356, 'crisis because': 217120, 'is causing': 446413, 'causing people': 168083, 'do these': 250292, 'these thing': 880813, 'man tackled to': 512261, 'tackled to the': 831634, 'to the ground': 916756, 'the ground by': 856843, 'ground by supermarket': 366486, 'by supermarket staff': 154170, 'supermarket staff he': 822853, 'staff he tried': 792517, 'he tried to': 385548, 'tried to steal': 931852, 'to steal trolley': 915369, 'steal trolley full': 799213, 'trolley full of': 932416, 'of food this': 583799, 'food this is': 317191, 'is getting out': 448035, 'getting out of': 349172, 'of control this': 581850, 'control this covid': 202188, '19 is more': 8007, 'more than just': 540637, 'than just virus': 840825, 'just virus it': 470182, 'it is becoming': 458883, 'is becoming mental': 446036, 'becoming mental illness': 120318, 'mental illness crisis': 528656, 'illness crisis because': 416357, 'crisis because it': 217121, 'it is causing': 458899, 'is causing people': 446431, 'causing people to': 168084, 'to do these': 904570, 'do these thing': 250295, 'advises': 33675, 'slap': 773530, 'cdc advises': 168540, 'advises everyone': 33682, 'not slap': 571608, 'slap the': 773546, 'rice at': 721008, 'to the rapid': 917002, '19 the cdc': 11171, 'the cdc advises': 850563, 'cdc advises everyone': 168541, 'advises everyone to': 33683, 'to not slap': 910707, 'not slap the': 571609, 'slap the bag': 773547, 'the bag of': 849179, 'of rice at': 589091, 'rice at the': 721011, 'famine': 298431, 'hunger lack': 411144, 'and famine': 62681, 'famine are': 298434, 'are becoming': 84801, 'becoming major': 120314, 'major problem': 509425, 'and creating': 60714, 'creating chaos': 215985, 'chaos in': 173024, 'some country': 782612, 'is skyrocketing': 451957, 'in poor': 426831, 'poor country': 664152, 'country people': 210951, 'more afraid': 538566, 'afraid of': 34993, 'of famine': 583414, 'famine than': 298443, 'the so': 867398, 'so called': 776680, 'called covid': 156296, 'pandemic disease': 635306, 'hunger lack of': 411145, 'of food supply': 583790, 'food supply and': 316931, 'supply and famine': 824719, 'and famine are': 62682, 'famine are becoming': 298435, 'are becoming major': 84803, 'becoming major problem': 120316, 'major problem and': 509426, 'problem and creating': 679453, 'and creating chaos': 60716, 'creating chaos in': 215986, 'chaos in some': 173025, 'in some country': 428086, 'some country where': 782619, 'where the demand': 985223, 'for food is': 321599, 'food is skyrocketing': 315150, 'is skyrocketing in': 451958, 'skyrocketing in poor': 773435, 'in poor country': 426832, 'poor country people': 664154, 'country people are': 210952, 'people are more': 647021, 'are more afraid': 88107, 'more afraid of': 538567, 'afraid of famine': 34998, 'of famine than': 583416, 'famine than the': 298444, 'than the so': 841273, 'the so called': 867399, 'so called covid': 776681, 'called covid 19': 156297, '19 pandemic disease': 9309, 'janitorial': 464567, 'housekeeping': 407006, 'the janitorial': 858635, 'janitorial housekeeping': 464568, 'housekeeping staff': 407013, 'our hospital': 623463, 'the cafeteria': 850266, 'cafeteria worker': 155151, 'driver the': 259784, 'carrier the': 165025, 'those minimum': 892213, 'wage people': 963938, 'people most': 648792, 'people look': 648697, 'giving thanks for': 351408, 'thanks for all': 842047, 'the people on': 863495, 'line of 19': 493288, 'of 19 the': 579416, '19 the janitorial': 11213, 'the janitorial housekeeping': 858636, 'janitorial housekeeping staff': 464569, 'housekeeping staff at': 407014, 'staff at our': 792237, 'at our hospital': 100015, 'our hospital the': 623471, 'hospital the cafeteria': 404679, 'the cafeteria worker': 850267, 'cafeteria worker the': 155152, 'worker the delivery': 1007924, 'the delivery driver': 853063, 'delivery driver the': 233944, 'driver the mail': 259788, 'the mail carrier': 859891, 'mail carrier the': 508583, 'carrier the grocery': 165026, 'store worker all': 811447, 'worker all those': 1006226, 'all those minimum': 45170, 'those minimum wage': 892214, 'minimum wage people': 533241, 'wage people most': 963939, 'people most people': 648795, 'most people look': 542618, 'people look down': 648699, 'look down on': 502337, 'streamline': 812858, 'agree leave': 38616, 'kid at': 473873, 'home streamline': 402165, 'streamline supermarket': 812861, 'supermarket visit': 823653, 'visit and': 959175, 'and limit': 66168, 'limit contact': 492313, 'contact and': 200008, 'and potential': 69254, 'potential exposure': 667062, 'agree leave the': 38617, 'leave the kid': 484972, 'the kid at': 858779, 'kid at home': 473875, 'at home streamline': 99126, 'home streamline supermarket': 402166, 'streamline supermarket visit': 812862, 'supermarket visit and': 823654, 'visit and limit': 959177, 'and limit contact': 66169, 'limit contact and': 492314, 'contact and potential': 200012, 'and potential exposure': 69256, 'potential exposure to': 667063, 'whenever': 984651, '6ft': 21593, 'sticker': 800078, 'germaphobe': 346367, 'how now': 408415, 'now whenever': 576396, 'whenever you': 984686, 'or bank': 614488, 'bank or': 110073, 'any place': 79654, 'that requires': 846008, 'requires line': 713472, 'wait on': 964163, 'on they': 604578, 'have blue': 379811, 'blue tape': 133476, 'tape marking': 834363, 'marking 6ft': 517895, '6ft or': 21614, 'or sticker': 617223, 'sticker well': 800094, 'well when': 978745, 'can that': 159943, 'that be': 842940, 'be permanent': 116396, 'permanent thing': 652079, 'thing asking': 884171, 'an extreme': 56022, 'extreme germaphobe': 293797, 'germaphobe friend': 346372, 'friend me': 333710, 'you know how': 1019500, 'know how now': 476451, 'how now whenever': 408416, 'now whenever you': 576397, 'whenever you go': 984688, 'you go to': 1018868, 'go to grocery': 354313, 'store or bank': 809315, 'or bank or': 614493, 'bank or any': 110074, 'or any place': 614354, 'any place that': 79656, 'place that requires': 657715, 'that requires line': 846011, 'requires line to': 713473, 'line to wait': 493497, 'to wait on': 918267, 'wait on they': 964165, 'on they have': 604580, 'they have blue': 882297, 'have blue tape': 379812, 'blue tape marking': 133477, 'tape marking 6ft': 834364, 'marking 6ft or': 517896, '6ft or sticker': 21615, 'or sticker well': 617224, 'sticker well when': 800095, 'well when this': 978747, 'all over can': 43856, 'over can that': 630061, 'can that be': 159945, 'that be permanent': 842945, 'be permanent thing': 116399, 'permanent thing asking': 652080, 'thing asking for': 884172, 'asking for an': 95980, 'for an extreme': 319295, 'an extreme germaphobe': 56023, 'extreme germaphobe friend': 293798, 'germaphobe friend me': 346373, 'researchlive': 713953, 'researchlive various': 713954, 'various study': 952652, 'study have': 814906, 'been launched': 121436, 'launched in': 481994, 'it impact': 458690, 'been keeping': 121423, 'keeping track': 472606, 'track of': 928209, 'what research': 982096, 'research is': 713778, 'being conducted': 124981, 'conducted and': 193655, 'is growing': 448231, 'growing daily': 367154, 'daily mrx': 224707, 'researchlive various study': 713955, 'various study have': 952653, 'study have been': 814907, 'have been launched': 379593, 'been launched in': 121437, 'launched in response': 481997, '19 and it': 5052, 'and it impact': 65537, 'it impact on': 458693, 'on consumer attitude': 600026, 'consumer attitude and': 196341, 'attitude and behaviour': 102543, 'and behaviour we': 58854, 'behaviour we ve': 124556, 've been keeping': 952900, 'been keeping track': 121424, 'keeping track of': 472608, 'track of what': 928212, 'of what research': 593061, 'what research is': 982097, 'research is being': 713779, 'is being conducted': 446072, 'being conducted and': 124982, 'conducted and the': 193656, 'and the list': 73453, 'list is growing': 494377, 'is growing daily': 448233, 'growing daily mrx': 367155, 'shopping onlineshopping': 763515, '19 on online': 8959, 'online shopping onlineshopping': 609208, 'catastrophe': 166932, 'functioning': 341319, 'addressed': 32069, 'kindergarten': 475092, 'submit': 815783, 'the minister': 860655, 'minister doe': 533354, 'not appear': 568228, 'have made': 381404, 'made any': 507636, 'any statement': 79847, 'the catastrophe': 850521, 'catastrophe that': 166941, 'could occur': 209466, 'occur if': 579016, 'the functioning': 856036, 'functioning of': 341328, 'of market': 586224, 'not addressed': 568056, 'addressed food': 32078, 'insecurity ha': 439159, 'panic look': 638289, 'like kindergarten': 490612, 'kindergarten and': 475093, 'and could': 60611, 'riot submit': 722621, 'far the minister': 298931, 'the minister doe': 860657, 'minister doe not': 533355, 'doe not appear': 251474, 'not appear to': 568229, 'appear to have': 82125, 'to have made': 907272, 'have made any': 381406, 'made any statement': 507637, 'any statement on': 79848, 'statement on the': 796202, 'on the catastrophe': 604013, 'the catastrophe that': 850522, 'catastrophe that could': 166943, 'that could occur': 843357, 'could occur if': 209467, 'occur if the': 579017, 'if the issue': 414990, 'the issue of': 858574, 'issue of the': 455869, 'of the functioning': 591050, 'the functioning of': 856037, 'functioning of market': 341329, 'of market is': 586233, 'market is not': 516635, 'is not addressed': 450027, 'not addressed food': 568057, 'addressed food insecurity': 32079, 'food insecurity ha': 315065, 'insecurity ha the': 439161, 'potential to make': 667155, 'make the current': 510562, '19 panic look': 9553, 'panic look like': 638290, 'look like kindergarten': 502490, 'like kindergarten and': 490613, 'kindergarten and could': 475094, 'and could lead': 60618, 'to riot submit': 913541, 'largest grocery': 479958, 'united kingdom': 942176, 'kingdom empty': 475321, 'shelf show': 757511, 'are afraid': 84260, 'store good': 807950, 'is the situation': 452939, 'the situation of': 867268, 'situation of one': 772416, 'of the largest': 591174, 'the largest grocery': 858965, 'largest grocery store': 479960, 'tesco in the': 838723, 'the united kingdom': 870418, 'united kingdom empty': 942179, 'kingdom empty shelf': 475322, 'empty shelf show': 275092, 'shelf show how': 757512, 'show how people': 766990, 'how people are': 408494, 'people are afraid': 646920, 'are afraid to': 84268, 'afraid to store': 35029, 'to store good': 915621, 'rediscovering': 705726, 'positive from': 665333, 'pandemic rediscovering': 636311, 'rediscovering local': 705727, 'local butcher': 497790, 'butcher and': 148026, 'and grocer': 63970, 'grocer no': 364143, 'no crowd': 563932, 'crowd no': 219209, 'buyer plenty': 149722, 'food on': 315589, 'on offer': 602477, 'offer and': 594521, 'real sense': 701355, 'sense of': 750550, 'of supporting': 590516, 'supporting smaller': 827189, 'smaller business': 775261, 'business at': 143407, 'time supportlocal': 897790, 'positive from the': 665335, 'the pandemic rediscovering': 863074, 'pandemic rediscovering local': 636312, 'rediscovering local butcher': 705728, 'local butcher and': 497792, 'butcher and grocer': 148028, 'and grocer no': 63973, 'grocer no crowd': 364144, 'no crowd no': 563935, 'crowd no panic': 219210, 'no panic buyer': 565041, 'panic buyer plenty': 637598, 'buyer plenty of': 149723, 'plenty of good': 660952, 'of good quality': 584232, 'quality food on': 691787, 'food on offer': 315597, 'on offer and': 602479, 'offer and the': 594525, 'and the real': 73542, 'the real sense': 865239, 'real sense of': 701356, 'sense of supporting': 750566, 'of supporting smaller': 590518, 'supporting smaller business': 827190, 'smaller business at': 775262, 'business at this': 143410, 'this time supportlocal': 890693, 'still more': 800847, 'more grocery': 539372, 'time groceryshopping': 896871, 'still more grocery': 800849, 'more grocery shopping': 539374, 'grocery shopping tip': 365094, 'shopping tip for': 764156, 'tip for these': 898788, 'for these time': 326982, 'these time groceryshopping': 880840, 'if chloroquine': 413956, 'chloroquine represents': 177625, 'represents true': 712967, 'true cure': 933063, 'cure and': 220696, 'prevention for': 671853, 'then maybe': 877331, 'maybe higher': 521704, 'higher security': 395736, 'security price': 744716, 'price can': 673054, 'can happen': 158555, 'if chloroquine represents': 413958, 'chloroquine represents true': 177626, 'represents true cure': 712968, 'true cure and': 933064, 'cure and prevention': 220704, 'and prevention for': 69427, 'prevention for coronavirus': 671854, 'for coronavirus covid': 320380, 'covid 19 then': 213934, '19 then maybe': 11275, 'then maybe higher': 877333, 'maybe higher security': 521705, 'higher security price': 395737, 'security price can': 744717, 'price can happen': 673062, 'that hand': 844166, 'pocket or': 662187, 'or are': 614402, 'just happy': 468925, 'see me': 745404, 'me 19': 522329, 'is that hand': 452653, 'that hand sanitizer': 844167, 'sanitizer in your': 735163, 'in your pocket': 431113, 'your pocket or': 1025339, 'pocket or are': 662188, 'or are you': 614426, 'are you just': 91814, 'you just happy': 1019423, 'just happy to': 468926, 'to see me': 914042, 'see me 19': 745405, 'rout': 726438, 'apac': 81216, 'latestnews': 481606, 'tuesdaynews': 935212, 'newspicks': 561110, 'been experiencing': 121109, 'experiencing historical': 291662, 'historical rout': 397992, 'rout since': 726447, 'since few': 770592, 'now the': 576029, 'stock rise': 802792, 'in apac': 420446, 'apac region': 81219, 'region latestnews': 707432, 'latestnews tuesdaynews': 481607, 'tuesdaynews newsalert': 935213, 'newsalert newspicks': 560997, 'newspicks updated': 561113, 'updated latestnews': 947395, 'the stock around': 867905, 'the world have': 871885, 'world have been': 1009621, 'have been experiencing': 379531, 'been experiencing historical': 121110, 'experiencing historical rout': 291663, 'historical rout since': 397993, 'rout since few': 726448, 'since few week': 770594, 'few week but': 304139, 'week but now': 976036, 'but now the': 146615, 'now the stock': 576072, 'the stock rise': 867922, 'stock rise and': 802793, 'rise and oil': 722782, 'oil price drop': 597110, 'price drop in': 673573, 'drop in apac': 260225, 'in apac region': 420447, 'apac region latestnews': 81220, 'region latestnews tuesdaynews': 707433, 'latestnews tuesdaynews newsalert': 481608, 'tuesdaynews newsalert newspicks': 935214, 'newsalert newspicks updated': 560998, 'newspicks updated latestnews': 561114, 'coordinated': 203193, 'european hospital': 283585, 'line against': 492934, 'pandemic europe': 635394, 'europe private': 283502, 'private hospital': 678917, 'fully committed': 341029, 'against determined': 37415, 'determined to': 239459, 'life we': 489187, 'system coordinated': 831137, 'coordinated response': 203201, 'response is': 715738, 'is essential': 447540, 'essential more': 281314, 'european hospital are': 283586, 'hospital are on': 404305, 'front line against': 338557, 'line against the': 492936, 'the pandemic europe': 862960, 'pandemic europe private': 635395, 'europe private hospital': 283503, 'private hospital are': 678918, 'hospital are fully': 404301, 'are fully committed': 86744, 'fully committed to': 341030, 'committed to the': 189049, 'to the fight': 916710, 'fight against determined': 304617, 'against determined to': 37416, 'determined to save': 239462, 'save life we': 737564, 'life we are': 489188, 'we are part': 970655, 'of the system': 591519, 'the system coordinated': 869091, 'system coordinated response': 831138, 'coordinated response is': 203202, 'response is essential': 715741, 'is essential more': 447548, 'lifeline': 489295, 'social supermarket': 779977, 'in set': 427828, 'provide lifeline': 686379, 'lifeline to': 489315, 'to resident': 913349, 'in most': 425465, 'most need': 542521, 'need ha': 554944, 'made an': 507630, 'urgent appeal': 948321, 'appeal for': 82059, 'for tinned': 327197, 'amp toiletry': 54724, 'toiletry the': 923445, 'the around': 848914, 'around again': 93176, 'again shop': 37156, 'currently short': 221673, 'of basic': 580563, 'basic item': 111958, 'item result': 463617, 'social supermarket in': 779979, 'supermarket in set': 820975, 'in set up': 427830, 'up to provide': 946419, 'to provide lifeline': 912410, 'provide lifeline to': 686380, 'lifeline to resident': 489316, 'to resident in': 913351, 'resident in most': 714316, 'in most need': 425467, 'most need ha': 542522, 'need ha made': 554947, 'ha made an': 371203, 'made an urgent': 507633, 'an urgent appeal': 56955, 'urgent appeal for': 948323, 'appeal for tinned': 82064, 'for tinned food': 327198, 'tinned food amp': 898610, 'food amp toiletry': 313153, 'amp toiletry the': 54725, 'toiletry the around': 923446, 'the around again': 848915, 'around again shop': 93177, 'again shop is': 37157, 'shop is currently': 760357, 'is currently short': 447002, 'currently short of': 221674, 'short of basic': 764655, 'of basic item': 580574, 'basic item result': 111961, 'item result of': 463618, 'pathetic': 644046, 'stricken': 813591, 'basis': 112213, 'it appears': 456561, 'appears majority': 82192, 'of british': 580890, 'british are': 140489, 'are pathetic': 89000, 'pathetic panic': 644057, 'panic stricken': 638646, 'stricken group': 813599, 'else if': 271734, 'the continued': 851668, 'continued stripping': 201343, 'stripping of': 813907, 'is anything': 445771, 'by british': 152002, 'british on': 140550, 'that basis': 842931, 'basis bloody': 112224, 'bloody ashamed': 133171, 'ashamed to': 95081, 'that at': 842878, 'it appears majority': 456562, 'appears majority of': 82193, 'majority of british': 509551, 'of british are': 580891, 'british are pathetic': 140490, 'are pathetic panic': 89002, 'pathetic panic stricken': 644058, 'panic stricken group': 638648, 'stricken group of': 813600, 'group of everyone': 366790, 'of everyone else': 583251, 'everyone else if': 286861, 'else if the': 271737, 'if the continued': 414961, 'the continued stripping': 851674, 'continued stripping of': 201344, 'stripping of the': 813909, 'supermarket shelf is': 822484, 'shelf is anything': 757232, 'is anything to': 445773, 'go by british': 353397, 'by british on': 152003, 'british on that': 140551, 'on that basis': 603930, 'that basis bloody': 842932, 'basis bloody ashamed': 112225, 'bloody ashamed to': 133172, 'ashamed to be': 95083, 'be that at': 117576, 'that at the': 842882, 'prayer': 669045, 'is staying': 452248, 'safe inside': 729780, 'inside their': 439425, 'home wash': 402443, 'regularly if': 707922, 'if must': 414427, 'must go': 546682, 'outside to': 629613, 'doctor grocery': 250936, 'or work': 617834, 'please social': 660526, 'distance call': 246679, 'call day': 155829, 'family friend': 297814, 'friend can': 333544, 'really make': 702401, 'difference love': 241856, 'love prayer': 504756, 'prayer to': 669075, 'everyone is staying': 287112, 'is staying safe': 452252, 'staying safe inside': 798694, 'safe inside their': 729781, 'inside their home': 439426, 'their home wash': 873579, 'home wash your': 402446, 'hand regularly if': 375198, 'regularly if must': 707923, 'if must go': 414428, 'must go outside': 546688, 'go outside to': 354023, 'outside to go': 629619, 'to the doctor': 916647, 'the doctor grocery': 853463, 'doctor grocery store': 250937, 'store or work': 809381, 'or work please': 617839, 'work please social': 1005617, 'please social distance': 660527, 'social distance call': 779500, 'distance call day': 246680, 'call day to': 155830, 'day to your': 228593, 'to your family': 918978, 'your family friend': 1023780, 'family friend can': 297816, 'friend can really': 333545, 'can really make': 159389, 'really make difference': 702402, 'make difference love': 509835, 'difference love prayer': 241858, 'love prayer to': 504757, 'prayer to you': 669078, 'to you all': 918889, 'drone': 260052, 'guessing': 368115, 'patrol': 644377, 'it official': 459996, 'official city': 595782, 'city drone': 179123, 'drone are': 260057, 'now patrolling': 575518, 'the sky': 867312, 'sky of': 773213, 'my city': 547688, 'city guessing': 179163, 'guessing to': 368137, 'to monitor': 910228, 'monitor street': 537318, 'space hope': 787114, 'hope they': 403700, 'they might': 882674, 'might also': 530866, 'the bog': 849828, 'roll patrol': 725470, 'patrol co': 644380, 'co there': 184977, 'still none': 800884, 'it official city': 459997, 'official city drone': 595783, 'city drone are': 179124, 'drone are now': 260058, 'are now patrolling': 88584, 'now patrolling the': 575519, 'patrolling the sky': 644405, 'the sky of': 867313, 'sky of my': 773214, 'of my city': 586743, 'my city guessing': 547691, 'city guessing to': 179164, 'guessing to monitor': 368138, 'to monitor street': 910237, 'monitor street and': 537319, 'street and public': 812899, 'and public space': 69748, 'public space hope': 688327, 'space hope they': 787115, 'hope they might': 403709, 'they might also': 882675, 'might also be': 530867, 'also be the': 47929, 'be the bog': 117599, 'the bog roll': 849830, 'bog roll patrol': 133959, 'roll patrol co': 725471, 'patrol co there': 644381, 'co there still': 184979, 'there still none': 879101, 'still none in': 800885, 'none in my': 566576, 'in my supermarket': 425634, 'integral': 440939, 'sander': 733683, 'elected': 270989, 'and barely': 58707, 'barely being': 111007, 'being able': 124803, 'not finding': 569430, 'finding toilet': 307562, 'just taste': 469958, 'taste of': 834787, 'an integral': 56382, 'integral part': 440940, 'life if': 488740, 'if bernie': 413897, 'bernie sander': 127382, 'sander is': 733684, 'is elected': 447464, 'elected at': 270990, 'least this': 484662, 'virus ha': 958244, 'shown that': 767615, 'that chinesevirus': 843215, 'store and barely': 806201, 'and barely being': 58708, 'barely being able': 111008, 'being able to': 124804, 'food and not': 313296, 'and not finding': 67737, 'not finding toilet': 569432, 'finding toilet paper': 307563, 'paper is just': 640353, 'is just taste': 449149, 'just taste of': 469959, 'taste of what': 834793, 'of what will': 593069, 'what will be': 982591, 'will be an': 992355, 'be an integral': 113612, 'an integral part': 56383, 'integral part of': 440941, 'of our life': 587499, 'our life if': 623726, 'life if bernie': 488741, 'if bernie sander': 413898, 'bernie sander is': 127383, 'sander is elected': 733685, 'is elected at': 447465, 'elected at least': 270991, 'at least this': 99556, 'least this virus': 484663, 'this virus ha': 891008, 'virus ha shown': 958252, 'ha shown that': 371921, 'shown that chinesevirus': 767617, 'pittsburgh': 657030, 'gazette': 344761, 'virus concern': 958072, 'concern grow': 192984, 'grow here': 367031, 'of when': 593084, 'when and': 983150, 'and where': 75532, 'where can': 984766, 'grocery pittsburgh': 364858, 'pittsburgh post': 657041, 'post gazette': 666144, 'virus concern grow': 958073, 'concern grow here': 192986, 'grow here list': 367032, 'list of when': 494491, 'of when and': 593085, 'when and where': 983153, 'and where can': 75534, 'where can you': 984772, 'can you shop': 160331, 'for grocery pittsburgh': 322047, 'grocery pittsburgh post': 364859, 'pittsburgh post gazette': 657042, 'accessibility': 28317, 'discrimination': 244801, 'managing covid': 512855, '19 disruption': 6572, 'disruption online': 246515, 'online accessibility': 607762, 'accessibility and': 28318, 'and anti': 58174, 'anti discrimination': 78298, 'discrimination in': 244808, 'in school': 427729, 'school insurance': 741834, 'managing covid 19': 512856, 'covid 19 disruption': 212964, '19 disruption online': 6577, 'disruption online accessibility': 246516, 'online accessibility and': 607763, 'accessibility and anti': 28319, 'and anti discrimination': 58176, 'anti discrimination in': 78299, 'discrimination in school': 244809, 'in school insurance': 427732, 'preach': 669225, 'deed': 231795, 'colour': 186845, 'foodshortages': 318136, 'who preach': 989442, 'preach daily': 669226, 'daily of': 224729, 'their good': 873417, 'good deed': 356962, 'deed are': 231796, 'really showing': 702589, 'showing their': 767530, 'their true': 875045, 'true colour': 933050, 'colour coronacrisis': 186850, 'coronacrisis panic': 204687, 'buying leave': 150638, 'leave those': 485003, 'le fortunate': 482955, 'fortunate with': 329906, 'with zero': 1002247, 'zero food': 1027450, 'essential foodshortages': 281052, 'those who preach': 892663, 'who preach daily': 989443, 'preach daily of': 669227, 'daily of their': 224730, 'of their good': 591665, 'their good deed': 873419, 'good deed are': 356963, 'deed are really': 231797, 'are really showing': 89485, 'really showing their': 702591, 'showing their true': 767531, 'their true colour': 875047, 'true colour coronacrisis': 933052, 'colour coronacrisis panic': 186851, 'coronacrisis panic buying': 204689, 'panic buying leave': 637790, 'buying leave those': 150640, 'leave those le': 485004, 'those le fortunate': 892162, 'le fortunate with': 482961, 'fortunate with zero': 329907, 'with zero food': 1002248, 'zero food essential': 1027451, 'food essential foodshortages': 314379, 'norway': 567835, 'large number': 479721, 'not allowed': 568146, 'outside during': 629403, 'pandemic neighbour': 636017, 'neighbour and': 557181, 'and friend': 63320, 'friend often': 333732, 'often take': 596280, 'over grocery': 630260, 'shopping trip': 764249, 'trip spar': 932163, 'spar norway': 787450, 'norway ha': 567840, 'shopping help': 762880, 'make these': 510619, 'these everyday': 879977, 'everyday task': 286628, 'task easier': 834674, 'large number of': 479723, 'people are not': 647027, 'are not allowed': 88317, 'not allowed to': 568149, 'go outside during': 354010, 'outside during the': 629404, 'during the 19': 263077, '19 pandemic neighbour': 9403, 'pandemic neighbour and': 636018, 'neighbour and friend': 557183, 'and friend often': 63331, 'friend often take': 333733, 'often take over': 596282, 'take over grocery': 832470, 'over grocery shopping': 630262, 'grocery shopping trip': 365098, 'shopping trip spar': 764256, 'trip spar norway': 932164, 'spar norway ha': 787451, 'norway ha launched': 567841, 'launched new online': 482015, 'new online shopping': 559213, 'online shopping help': 609143, 'shopping help to': 762881, 'help to make': 390783, 'to make these': 909753, 'make these everyday': 510621, 'these everyday task': 879979, 'everyday task easier': 286629, 'constantly': 195643, 'went grocery': 979026, 'shopping this': 764127, 'this am': 886293, 'am during': 50013, 'during senior': 262999, 'hour people': 405850, 'believe severity': 126320, 'of constantly': 581689, 'constantly lean': 195683, 'over people': 630486, 'reach shelf': 699980, 'shelf rather': 757454, 'than waiting': 841417, 'waiting standing': 964384, 'standing too': 793828, 'close despite': 182605, 'despite store': 238862, 'store marking': 808910, 'marking many': 517903, 'probably carrier': 679232, 'carrier if': 164991, 'went grocery shopping': 979027, 'grocery shopping this': 365093, 'shopping this am': 764128, 'this am during': 886295, 'am during senior': 50014, 'during senior hour': 263001, 'senior hour people': 750328, 'hour people still': 405852, 'people still do': 649590, 'not believe severity': 568558, 'believe severity of': 126321, 'severity of constantly': 754128, 'of constantly lean': 581690, 'constantly lean over': 195684, 'lean over people': 483886, 'over people to': 630492, 'people to reach': 649932, 'to reach shelf': 912806, 'reach shelf rather': 699981, 'shelf rather than': 757455, 'rather than waiting': 697560, 'than waiting standing': 841419, 'waiting standing too': 964386, 'standing too close': 793829, 'too close despite': 924654, 'close despite store': 182608, 'despite store marking': 238863, 'store marking many': 808911, 'marking many are': 517904, 'many are probably': 513774, 'are probably carrier': 89239, 'probably carrier if': 679233, 'dawn': 227040, 'bilbrough': 130461, 'pleaded': 659574, 'stop it': 804777, 'it critical': 457411, 'critical care': 218522, 'care nurse': 164080, 'nurse dawn': 577266, 'dawn bilbrough': 227043, 'bilbrough ha': 130466, 'ha pleaded': 371499, 'pleaded for': 659575, 'buying after': 149866, 'after she': 36182, 'wa unable': 963589, 'buy basic': 148402, 'basic food': 111879, 'item after': 463032, 'after working': 36576, 'working long': 1008764, 'long hour': 501437, 'in hospital': 423804, 'latest on': 481469, 'on click': 599940, 'you just need': 1019428, 'just need to': 469308, 'need to stop': 556090, 'to stop it': 915541, 'stop it critical': 804781, 'it critical care': 457412, 'critical care nurse': 218526, 'care nurse dawn': 164083, 'nurse dawn bilbrough': 577267, 'dawn bilbrough ha': 227046, 'bilbrough ha pleaded': 130467, 'ha pleaded for': 371500, 'pleaded for people': 659576, 'panic buying after': 637634, 'buying after she': 149870, 'after she wa': 36195, 'she wa unable': 756433, 'wa unable to': 963590, 'unable to buy': 939323, 'to buy basic': 902187, 'buy basic food': 148403, 'basic food item': 111890, 'food item after': 315190, 'item after working': 463034, 'after working long': 36584, 'working long hour': 1008766, 'long hour in': 501441, 'hour in hospital': 405687, 'in hospital for': 423809, 'hospital for the': 404414, 'the latest on': 859134, 'latest on click': 481471, 'on click here': 599941, 'forbidding': 328312, 'buyback': 149509, 'dividend': 248601, 'see senate': 745659, 'senate gop': 749703, 'gop to': 358289, 'not give': 569635, 'give billion': 350411, 'billion of': 130868, 'people money': 648782, 'to big': 901811, 'big business': 129676, 'without forbidding': 1002665, 'forbidding stock': 328315, 'stock buyback': 801955, 'buyback or': 149522, 'or raise': 616774, 'raise bonus': 695819, 'bonus dividend': 134355, 'dividend the': 248640, 'gop told': 358291, 'told everyone': 923549, 'everyone that': 287459, '19 wa': 11859, 'no big': 563696, 'big deal': 129735, 'deal just': 229436, 'any flu': 79227, 'flu we': 311494, 'to see senate': 914064, 'see senate gop': 745660, 'senate gop to': 749705, 'gop to not': 358290, 'to not give': 910691, 'not give billion': 569637, 'give billion of': 350412, 'billion of the': 130874, 'the people money': 863491, 'people money to': 648783, 'money to big': 537086, 'to big business': 901812, 'big business without': 129683, 'business without forbidding': 144712, 'without forbidding stock': 1002666, 'forbidding stock buyback': 328316, 'stock buyback or': 801958, 'buyback or raise': 149523, 'or raise bonus': 616775, 'raise bonus dividend': 695820, 'bonus dividend the': 134356, 'dividend the gop': 248641, 'the gop told': 856472, 'gop told everyone': 358292, 'told everyone that': 923551, 'everyone that covid': 287461, 'covid 19 wa': 214037, '19 wa no': 11872, 'wa no big': 962717, 'no big deal': 563698, 'big deal just': 129741, 'deal just like': 229437, 'like any flu': 489809, 'any flu we': 79229, 'flu we want': 311495, 'day the': 228480, 'problem for': 679524, 'many delivery': 513987, 'service is': 752512, 'is ramping': 451227, 'up staff': 946057, 'staff to': 792979, 'up good': 945027, 'in shop': 427890, 'the day the': 852918, 'day the problem': 228496, 'the problem for': 864511, 'problem for many': 679526, 'for many delivery': 323214, 'many delivery service': 513988, 'delivery service is': 234443, 'service is ramping': 752521, 'is ramping up': 451228, 'ramping up staff': 696487, 'up staff to': 946058, 'staff to pick': 792994, 'pick up good': 655726, 'up good in': 945028, 'good in shop': 357249, 'in shop and': 427892, 'shop and deliver': 759845, 'chillin': 176405, 'thenewnormal': 877809, 'really sitting': 702598, 'car in': 163132, 'in packed': 426417, 'packed supermarket': 633642, 'supermarket parking': 821930, 'lot chillin': 504019, 'chillin because': 176406, 'go home': 353656, 'home thenewnormal': 402257, 'people are really': 647054, 'are really sitting': 89486, 'really sitting in': 702599, 'sitting in their': 772123, 'in their car': 429722, 'their car in': 872724, 'car in packed': 163138, 'in packed supermarket': 426419, 'packed supermarket parking': 633647, 'supermarket parking lot': 821932, 'parking lot chillin': 642083, 'lot chillin because': 504020, 'chillin because they': 176407, 'to go home': 906807, 'go home thenewnormal': 353675, 'governs': 361039, 'nadine': 551383, 'if only': 414547, 'only there': 611294, 'some body': 782416, 'body in': 133858, 'could stop': 209723, 'stop this': 805183, 'this by': 886656, 'by shutting': 154009, 'down cafe': 256608, 'and pub': 69733, 'restaurant you': 716829, 'know like': 476567, 'that governs': 844066, 'governs and': 361040, 'the authority': 849072, 'authority do': 103709, 'know of': 476637, 'anything like': 80819, 'that nadine': 845284, 'if only there': 414559, 'only there wa': 611296, 'wa some body': 963274, 'some body in': 782417, 'body in the': 133861, 'the country that': 852161, 'country that could': 211111, 'that could stop': 843366, 'could stop this': 209730, 'stop this by': 805186, 'this by shutting': 886661, 'by shutting down': 154010, 'shutting down cafe': 768256, 'down cafe and': 256609, 'cafe and pub': 155093, 'and pub and': 69734, 'and restaurant you': 70399, 'restaurant you know': 716830, 'you know like': 1019508, 'know like something': 476573, 'like something that': 491219, 'something that governs': 785076, 'that governs and': 844067, 'governs and ha': 361041, 'and ha the': 64087, 'ha the authority': 372188, 'the authority do': 849073, 'authority do you': 103710, 'you know of': 1019517, 'know of anything': 476640, 'of anything like': 580290, 'anything like that': 80822, 'like that nadine': 491328, 'crackdown': 214711, 'consistent': 195481, 'overpricing': 631398, 'tampon': 834135, 'are failing': 86445, 'to crackdown': 903682, 'crackdown on': 214718, 'on surge': 603852, 'in profiteering': 427031, 'profiteering by': 683016, 'by seller': 153917, 'seller one': 749055, 'one consumer': 606097, 'group found': 366702, 'found consistent': 330178, 'consistent overpricing': 195486, 'overpricing of': 631399, 'of household': 584793, 'item including': 463367, 'including cleaning': 431913, 'cleaning product': 181021, 'product hand': 681246, 'sanitiser thermometer': 734028, 'thermometer baby': 879510, 'formula and': 329692, 'and tampon': 73021, 'and are failing': 58313, 'are failing to': 86449, 'failing to crackdown': 296230, 'to crackdown on': 903683, 'crackdown on surge': 214719, 'on surge in': 603853, 'surge in profiteering': 828203, 'in profiteering by': 427032, 'profiteering by seller': 683017, 'by seller one': 153919, 'seller one consumer': 749056, 'one consumer group': 606098, 'consumer group found': 197661, 'group found consistent': 366703, 'found consistent overpricing': 330179, 'consistent overpricing of': 195487, 'overpricing of household': 631400, 'of household item': 584797, 'household item including': 406866, 'item including cleaning': 463368, 'including cleaning product': 431914, 'cleaning product hand': 181031, 'product hand sanitiser': 681247, 'hand sanitiser thermometer': 375250, 'sanitiser thermometer baby': 734030, 'thermometer baby formula': 879511, 'baby formula and': 106616, 'formula and tampon': 329697, 'cannot happen': 161942, 'happen the': 377162, 'time this': 897918, 'cannot happen the': 161944, 'happen the same': 377165, 'same time this': 733371, 'serve': 751859, 'employ': 273431, 'gladly': 351553, 'provid': 686192, 'switch all': 830467, 'your fuel': 1024006, 'station full': 796411, 'full serve': 340872, 'serve you': 751968, 'could also': 208810, 'also employ': 48153, 'employ few': 273437, 'few temporary': 304087, 'temporary people': 837673, 'price lately': 675020, 'lately ll': 480972, 'll gladly': 496805, 'gladly pay': 351556, 'pay little': 644983, 'someone work': 784793, 'and provid': 69686, 'stop the transmission': 805157, 'the transmission of': 869908, 'transmission of covid': 929749, '19 switch all': 11007, 'switch all your': 830468, 'all your fuel': 45566, 'your fuel station': 1024007, 'fuel station full': 340283, 'station full serve': 796412, 'full serve you': 340873, 'serve you could': 751971, 'you could also': 1018074, 'could also employ': 208813, 'also employ few': 48154, 'employ few temporary': 273438, 'few temporary people': 304088, 'temporary people who': 837674, 'who are out': 988186, 'of work with': 593270, 'work with these': 1006049, 'with these low': 1001646, 'these low gas': 880259, 'gas price lately': 343987, 'price lately ll': 675021, 'lately ll gladly': 480973, 'll gladly pay': 496806, 'gladly pay little': 351557, 'pay little more': 644984, 'little more to': 495474, 'to help someone': 907631, 'help someone work': 390548, 'someone work and': 784794, 'work and provid': 1004794, 'analyzes': 57264, 'laboratory': 478462, 'germany consumer': 346284, 'consumer advocate': 196061, 'advocate are': 33823, 'are complaining': 85460, 'about massive': 25706, 'massive restriction': 520085, 'food check': 313925, 'check due': 174423, 'corona crisis': 203902, 'crisis routine': 217989, 'routine check': 726497, 'check at': 174377, 'at company': 98301, 'and sample': 70811, 'sample analyzes': 733456, 'analyzes are': 57265, 'are largely': 87713, 'largely suspended': 479872, 'suspended because': 829604, 'because laboratory': 119223, 'laboratory capacity': 478469, 'capacity are': 162497, 'now used': 576286, 'used for': 949897, 'corona sample': 204158, 'sample and': 733458, 'germany consumer advocate': 346286, 'consumer advocate are': 196065, 'advocate are complaining': 33825, 'are complaining about': 85461, 'complaining about massive': 191888, 'about massive restriction': 25708, 'massive restriction on': 520086, 'restriction on food': 717342, 'on food check': 600848, 'food check due': 313926, 'check due to': 174424, 'to the corona': 916593, 'the corona crisis': 851766, 'corona crisis routine': 203910, 'crisis routine check': 217990, 'routine check at': 726498, 'check at company': 174378, 'at company and': 98302, 'company and sample': 190391, 'and sample analyzes': 70812, 'sample analyzes are': 733457, 'analyzes are largely': 57266, 'are largely suspended': 87715, 'largely suspended because': 479873, 'suspended because laboratory': 829605, 'because laboratory capacity': 119224, 'laboratory capacity are': 478470, 'capacity are now': 162499, 'are now used': 88613, 'now used for': 576287, 'used for corona': 949902, 'for corona sample': 320369, 'corona sample and': 204159, 'regional': 707485, 'usage': 948813, 'pegged': 646328, 'spread regional': 790770, 'regional transmission': 707527, 'transmission operator': 929757, 'and independent': 65143, 'independent system': 434143, 'system operator': 831275, 'operator are': 613347, 'seeing new': 746382, 'and evolving': 62442, 'evolving energy': 288564, 'energy usage': 276613, 'usage pattern': 948849, 'pattern pegged': 644493, 'pegged to': 646329, 'the increasing': 858081, 'increasing number': 433645, 'american isolated': 52057, 'isolated at': 454977, 'home factbox': 401182, 'of the spread': 591483, 'the spread regional': 867636, 'spread regional transmission': 790771, 'regional transmission operator': 707528, 'transmission operator and': 929758, 'operator and independent': 613343, 'and independent system': 65145, 'independent system operator': 434144, 'system operator are': 831276, 'operator are seeing': 613351, 'are seeing new': 89908, 'seeing new and': 746383, 'new and evolving': 558341, 'and evolving energy': 62443, 'evolving energy usage': 288565, 'energy usage pattern': 276615, 'usage pattern pegged': 948850, 'pattern pegged to': 644494, 'pegged to the': 646330, 'to the increasing': 916804, 'the increasing number': 858085, 'increasing number of': 433646, 'number of american': 576920, 'of american isolated': 580065, 'american isolated at': 52058, 'isolated at home': 454978, 'at home factbox': 98992, 'disposed': 246298, 'turkey': 935533, 'find that': 307267, 'the pasta': 863371, 'pasta had': 643734, 'been disposed': 120997, 'disposed of': 246299, 'can live': 158893, 'live now': 495942, 'now turkey': 576231, 'store today to': 810875, 'today to find': 920355, 'to find that': 905943, 'find that the': 307273, 'that the pasta': 846796, 'the pasta had': 863376, 'pasta had been': 643735, 'had been disposed': 372890, 'been disposed of': 120998, 'disposed of how': 246300, 'of how can': 584813, 'how can live': 407503, 'can live now': 158896, 'live now turkey': 495943, 'boss': 135731, 'overcome': 631119, 'gripping': 364057, 'flowing': 311345, 'johnson is': 466602, 'is speaking': 452142, 'supermarket boss': 819396, 'boss today': 135758, 'today about': 919139, 'to overcome': 911298, 'overcome the': 631131, 'is gripping': 448224, 'gripping the': 364060, 'uk they': 938814, 'also discus': 48107, 'discus effort': 244850, 'supply flowing': 825244, 'flowing coronacrisisuk': 311348, 'boris johnson is': 135469, 'johnson is speaking': 466606, 'is speaking to': 452146, 'speaking to supermarket': 787774, 'to supermarket boss': 915777, 'supermarket boss today': 819404, 'boss today about': 135759, 'today about how': 919142, 'how to overcome': 409051, 'to overcome the': 911299, 'overcome the panic': 631134, 'that is gripping': 844594, 'is gripping the': 448225, 'gripping the uk': 364062, 'the uk they': 870292, 'uk they will': 938815, 'they will also': 883827, 'will also discus': 992254, 'also discus effort': 48108, 'discus effort to': 244851, 'effort to keep': 269630, 'keep supply flowing': 471995, 'supply flowing coronacrisisuk': 825245, 'flowing coronacrisisuk coronacrisis': 311349, 'just returned': 469642, 'returned from': 719960, 'store there': 810645, 'all let': 43365, 'other friend': 620273, 'just returned from': 469643, 'returned from my': 719962, 'from my local': 336513, 'grocery store there': 365852, 'store there is': 810649, 'of all let': 579955, 'all let take': 43369, 'let take care': 487100, 'care of each': 164100, 'each other friend': 264174, 'other friend and': 620274, 'friend and we': 333514, 'mandown': 513098, 'hearing report': 388226, 'that photo': 845739, 'now over': 575494, 'over million': 630397, 'million stay': 532357, 'everyone mandown': 287180, 'hearing report that': 388227, 'report that photo': 712326, 'that photo of': 845740, 'photo of empty': 655203, 'shelf are now': 756818, 'are now over': 88581, 'now over million': 575495, 'over million stay': 630400, 'million stay safe': 532358, 'safe everyone mandown': 729648, 'mcnally': 522217, 'egotist': 270082, 'mcnally think': 522218, 'think if': 885291, 'one silver': 607038, 'lining to': 493757, 'nh civil': 561920, 'servant emergency': 751833, 'worker for': 1006966, 'hero they': 394125, 'many celebrity': 513882, 'celebrity are': 168873, 'being shown': 125782, 'shown the': 767622, 'the egotist': 854092, 'egotist that': 270083, 'mcnally think if': 522219, 'think if there': 885293, 'there is one': 878603, 'is one silver': 450508, 'one silver lining': 607039, 'silver lining to': 769829, 'lining to is': 493760, 'to is that': 908529, 'is that we': 452705, 'that we are': 847362, 'we are seeing': 970701, 'are seeing the': 89917, 'seeing the nh': 746502, 'the nh civil': 861732, 'nh civil servant': 561921, 'civil servant emergency': 179542, 'servant emergency service': 751834, 'service supermarket worker': 752882, 'supermarket worker for': 824025, 'worker for the': 1006973, 'for the hero': 326474, 'the hero they': 857300, 'hero they are': 394126, 'are and many': 84547, 'and many celebrity': 66668, 'many celebrity are': 513883, 'celebrity are being': 168874, 'are being shown': 84920, 'being shown the': 125783, 'shown the egotist': 767623, 'the egotist that': 854093, 'egotist that they': 270084, 'collaborate': 185906, 'cider': 178455, 'denmarkinusa': 237035, 'force many': 328437, 'many to': 514818, 'to collaborate': 902947, 'collaborate and': 185907, 'and think': 73959, 'think outside': 885481, 'the box': 849916, 'box due': 137050, 'of handsanitizer': 584442, 'handsanitizer several': 376633, 'several company': 753805, 'are switching': 90693, 'switching their': 830572, 'their production': 874479, 'meet demand': 527455, 'turning cider': 935909, 'cider and': 178456, 'and beer': 58812, 'beer into': 122470, 'into hand': 442612, 'sanitizer denmarkinusa': 734740, 'outbreak force many': 628233, 'force many to': 328439, 'many to collaborate': 514820, 'to collaborate and': 902948, 'collaborate and think': 185908, 'and think outside': 73968, 'think outside the': 885482, 'outside the box': 629587, 'the box due': 849920, 'box due to': 137051, 'due to shortage': 261947, 'to shortage of': 914531, 'shortage of handsanitizer': 765116, 'of handsanitizer several': 584445, 'handsanitizer several company': 376634, 'several company are': 753806, 'company are switching': 190455, 'are switching their': 90695, 'switching their production': 830573, 'their production to': 874484, 'production to meet': 682250, 'to meet demand': 910021, 'meet demand and': 527457, 'and are turning': 58372, 'are turning cider': 91224, 'turning cider and': 935910, 'cider and beer': 178457, 'and beer into': 58814, 'beer into hand': 122472, 'into hand sanitizer': 442613, 'hand sanitizer denmarkinusa': 375368, 'getanalysis': 348760, 'significantdisruption': 769538, 'accompanying': 28494, 'rioting': 722635, 'foodsupplies': 318193, 'supplychains': 826252, 'economicshock': 267495, 'mondaythoughts': 536493, 'mondayreview': 536490, 'mondaymusings': 536487, 'mondaynight': 536489, 'getanalysis significantdisruption': 348761, 'significantdisruption to': 769539, 'to foodsupply': 906117, 'foodsupply it': 318208, 'it accompanying': 456258, 'accompanying shortage': 28495, 'shortage will': 765307, 'bring panic': 140044, 'panic rioting': 638497, 'rioting violence': 722640, 'violence in': 957547, 'country foodsupplies': 210663, 'foodsupplies supplychains': 318196, 'supplychains economicshock': 826257, 'economicshock mondaythoughts': 267496, 'mondaythoughts mondayreview': 536508, 'mondayreview mondaymusings': 536491, 'mondaymusings mondaynight': 536488, 'getanalysis significantdisruption to': 348762, 'significantdisruption to foodsupply': 769540, 'to foodsupply it': 906118, 'foodsupply it accompanying': 318209, 'it accompanying shortage': 456259, 'accompanying shortage will': 28496, 'shortage will bring': 765308, 'will bring panic': 992858, 'bring panic rioting': 140045, 'panic rioting violence': 638498, 'rioting violence in': 722641, 'violence in some': 957548, 'some country foodsupplies': 782614, 'country foodsupplies supplychains': 210664, 'foodsupplies supplychains economicshock': 318197, 'supplychains economicshock mondaythoughts': 826258, 'economicshock mondaythoughts mondayreview': 267497, 'mondaythoughts mondayreview mondaymusings': 536509, 'mondayreview mondaymusings mondaynight': 536492, 'case to': 166069, 'investigate and': 443791, 'and address': 57685, 'address scam': 32025, 'scam well': 740470, 'well educate': 978218, 'educate the': 268761, 'public about': 687826, 'about them': 26597, 'on the case': 604012, 'the case to': 850468, 'case to investigate': 166073, 'to investigate and': 908488, 'investigate and address': 443792, 'and address scam': 57690, 'address scam well': 32026, 'scam well educate': 740471, 'well educate the': 978219, 'educate the public': 268762, 'the public about': 864783, 'public about them': 687830, 'lifesignals': 489336, 'biosensor': 131257, 'lifesignals plan': 489337, 'market biosensor': 516105, 'biosensor patch': 131258, 'patch to': 643948, 'consumer identify': 197792, 'identify covid': 413354, 'lifesignals plan to': 489338, 'plan to market': 658301, 'to market biosensor': 909850, 'market biosensor patch': 516106, 'biosensor patch to': 131259, 'patch to help': 643949, 'help consumer identify': 389519, 'consumer identify covid': 197793, 'identify covid 19': 413355, 'greenville': 363768, 'yeahthatgreenville': 1014324, 'greenville online': 363772, 'store what': 811227, 'before shopping': 123075, 'outbreak yeahthatgreenville': 628842, 'yeahthatgreenville 19': 1014325, 'greenville online grocery': 363773, 'online grocery store': 608333, 'grocery store what': 365945, 'store what you': 811233, 'know before shopping': 476296, 'before shopping during': 123076, 'shopping during coronavirus': 762532, 'during coronavirus outbreak': 262539, 'coronavirus outbreak yeahthatgreenville': 206421, 'outbreak yeahthatgreenville 19': 628843, 'work on': 1005526, 'wednesday and': 975612, 'and terrified': 73123, 'terrified working': 838515, 'working retail': 1008891, 'retail in': 718198, 'store we': 811167, 'line and': 492944, 'though my': 892861, 'my job': 548903, 'being careful': 124927, 'careful the': 164440, 'the human': 857710, 'human are': 410416, 'not my': 570616, 'family isn': 297960, 'isn safe': 454654, 'safe stayhomesavelives': 729985, 'back to work': 107411, 'to work on': 918759, 'work on wednesday': 1005545, 'on wednesday and': 605167, 'wednesday and terrified': 975614, 'and terrified working': 73124, 'terrified working retail': 838516, 'working retail in': 1008892, 'retail in grocery': 718204, 'grocery store we': 365936, 'store we re': 811177, 're on the': 699185, 'front line and': 338558, 'line and even': 492945, 'and even though': 62349, 'even though my': 284710, 'though my job': 892863, 'my job is': 548917, 'job is being': 465898, 'is being careful': 446069, 'being careful the': 124929, 'careful the human': 164441, 'the human are': 857711, 'human are not': 410421, 'are not my': 88417, 'not my family': 570618, 'my family isn': 548209, 'family isn safe': 297961, 'isn safe stayhomesavelives': 454656, 'giancarlo': 349722, 'giancarlo my': 349723, 'giancarlo my local': 349724, 'local supermarket in': 498542, 'supermarket in uk': 820995, 'easterlunch': 265559, 'cornhall': 203718, 'deli': 232915, 'win an': 995537, 'an easterlunch': 55554, 'easterlunch from': 265560, 'from cornhall': 335002, 'cornhall deli': 203719, 'deli and': 232916, 'and socialdistancing': 71901, 'win an easterlunch': 995538, 'an easterlunch from': 55555, 'easterlunch from cornhall': 265561, 'from cornhall deli': 335003, 'cornhall deli and': 203720, 'deli and socialdistancing': 232917, 'and socialdistancing supermarket': 71910, 'the property': 864681, 'ha ground': 370774, 'halt amid': 374421, 'what degree': 981305, 'degree will': 232581, 'will house': 993761, 'price be': 672855, 'the slowdown': 867339, 'slowdown say': 774471, 'could result': 209604, 'house sale': 406540, 'sale plunging': 732453, 'plunging by': 661522, 'by much': 153260, 'much 60': 544680, '60 in': 20953, 'second quarter': 743797, 'quarter of': 693253, 'the year': 872143, 'the property market': 864684, 'property market ha': 684305, 'market ha ground': 516483, 'ha ground to': 370775, 'to halt amid': 907096, 'halt amid the': 374422, 'amid the outbreak': 52705, 'the outbreak but': 862596, 'outbreak but to': 628070, 'but to what': 147595, 'to what degree': 918510, 'what degree will': 981306, 'degree will house': 232582, 'will house price': 993762, 'house price be': 406473, 'price be affected': 672856, 'by the slowdown': 154441, 'the slowdown say': 867343, 'slowdown say this': 774472, 'say this could': 739364, 'this could result': 886934, 'could result in': 209605, 'result in house': 717530, 'in house sale': 423853, 'house sale plunging': 406544, 'sale plunging by': 732454, 'plunging by much': 661523, 'by much 60': 153264, 'much 60 in': 544681, '60 in the': 20956, 'in the second': 429532, 'the second quarter': 866587, 'second quarter of': 743800, 'quarter of the': 693259, 'of the year': 591632, 'petunia': 653892, 'hassle': 378816, 'of petunia': 588084, 'petunia in': 653893, 'now call': 574321, 'ahead for': 39153, 'for hassle': 322123, 'hassle free': 378819, 'free pickup': 332061, 'pickup browse': 655943, 'our annual': 622081, 'annual online': 77413, 'online view': 609681, 'view alternate': 957064, 'alternate shopping': 49190, 'shopping option': 763527, 'plenty of petunia': 660966, 'of petunia in': 588085, 'petunia in stock': 653894, 'in stock now': 428318, 'stock now call': 802508, 'now call ahead': 574322, 'call ahead for': 155748, 'ahead for hassle': 39156, 'for hassle free': 322124, 'hassle free pickup': 378822, 'free pickup browse': 332062, 'pickup browse our': 655944, 'browse our annual': 141280, 'our annual online': 622082, 'annual online view': 77414, 'online view alternate': 609682, 'view alternate shopping': 957065, 'alternate shopping option': 49191, 'flout': 311207, 'exercise during': 290045, 'people continue': 647537, 'to flout': 906019, 'flout the': 311212, 'bench say': 126827, 'say matt': 738924, 'hancock he': 374702, 'ban sport': 109260, 'sport you': 789993, 'ban exercise during': 109197, 'exercise during lockdown': 290046, 'during lockdown if': 262765, 'if people continue': 414612, 'people continue to': 647541, 'continue to flout': 201196, 'to flout the': 906020, 'flout the rule': 311213, 'on bench say': 599620, 'bench say matt': 126828, 'say matt hancock': 738925, 'matt hancock he': 520521, 'hancock he tell': 374703, 'to ban sport': 901022, 'ban sport you': 109261, 'sport you have': 789994, 'have to follow': 383214, 'score': 742345, 'fry': 339280, 'score finally': 742352, 'finally egg': 305977, 'egg supermarket': 269995, 'supermarket groceryshopping': 820587, 'groceryshopping grocery': 366254, 'grocery fry': 364544, 'fry food': 339285, 'score finally egg': 742353, 'finally egg supermarket': 305978, 'egg supermarket groceryshopping': 269996, 'supermarket groceryshopping grocery': 820588, 'groceryshopping grocery fry': 366255, 'grocery fry food': 364545, 'fry food and': 339286, 'food and drug': 313217, 'beacuse': 118256, 'escape': 280303, 'whatsapp': 982862, '94754284300': 23569, 'kindly father': 475128, 'father of': 300299, 'of kid': 585623, 'kid help': 473986, 'help is': 389932, 'required beacuse': 713349, 'beacuse already': 118257, 'already lost': 47512, 'lost my': 503889, '19 entire': 6795, 'ha lockdown': 371169, 'lockdown all': 499112, 'all stock': 44467, 'food over': 315722, 'over kindly': 630351, 'kindly make': 475147, 'make small': 510461, 'small help': 774987, 'live or': 495975, 'or escape': 615175, 'escape for': 280306, 'critical issue': 218595, 'issue my': 455843, 'my whatsapp': 550568, 'whatsapp 94754284300': 982885, 'kindly father of': 475129, 'father of kid': 300300, 'of kid help': 585627, 'kid help is': 473987, 'help is required': 389938, 'is required beacuse': 451447, 'required beacuse already': 713350, 'beacuse already lost': 118258, 'already lost my': 47513, 'lost my job': 503891, 'my job due': 548911, 'covid 19 entire': 213028, '19 entire country': 6796, 'entire country ha': 278657, 'country ha lockdown': 210718, 'ha lockdown all': 371170, 'lockdown all stock': 499117, 'all stock of': 44468, 'stock of food': 802523, 'of food over': 583744, 'food over kindly': 315724, 'over kindly make': 630352, 'kindly make small': 475148, 'make small help': 510462, 'small help to': 774988, 'help to live': 390782, 'to live or': 909347, 'live or escape': 495977, 'or escape for': 615176, 'escape for this': 280307, 'for this critical': 327020, 'this critical issue': 887119, 'critical issue my': 218596, 'issue my whatsapp': 455844, 'my whatsapp 94754284300': 550570, 'oreo': 619170, 'morning felt': 541254, 'felt the': 303460, 'to sneeze': 914790, 'sneeze the': 776273, 'the fear': 855031, 'fear felt': 301118, 'felt wa': 303474, 'wa real': 963054, 'real also': 701026, 'now hoarding': 574939, 'hoarding oreo': 399465, 'this morning felt': 888958, 'morning felt the': 541256, 'felt the need': 303462, 'need to sneeze': 556074, 'to sneeze the': 914793, 'sneeze the fear': 776274, 'the fear felt': 855034, 'fear felt wa': 301119, 'felt wa real': 303475, 'wa real also': 963056, 'real also we': 701027, 'also we are': 49086, 'we are now': 970641, 'are now hoarding': 88559, 'now hoarding oreo': 574940, 'people only': 648988, 'only going': 610529, 'show empty': 766935, 'shelf because': 756877, 'all corvid19uk': 42463, 'are people only': 89041, 'people only going': 648990, 'only going to': 610531, 'supermarket to show': 823415, 'to show empty': 914557, 'show empty shelf': 766936, 'empty shelf because': 275051, 'shelf because we': 756879, 'because we ve': 119817, 'we ve seen': 973708, 've seen them': 953550, 'seen them all': 747304, 'them all corvid19uk': 875339, 'established': 282027, 'dmv grocery': 248963, 'have established': 380482, 'established specific': 282030, 'specific time': 788259, 'dmv grocery store': 248964, 'store have established': 808080, 'have established specific': 380483, 'established specific time': 282031, 'specific time and': 788261, 'time and date': 896264, 'congo': 194419, 'lubumbashi': 506424, 'sack': 729046, 'cdf': 168640, 'the congo': 851450, 'congo in': 194420, 'in lubumbashi': 424958, 'lubumbashi people': 506425, 'will rather': 994563, 'rather die': 697446, 'from starvation': 337405, 'starvation sack': 795178, 'sack of': 729053, 'flour wa': 311182, 'wa 35': 961373, '35 00': 17859, '00 cdf': 121, 'cdf 20': 168641, '20 but': 12981, 'went straight': 979119, 'straight to': 812240, '80 00': 22536, 'cdf 45': 168643, '45 it': 19104, 'it sad': 460823, 'sad the': 729259, 'up quickly': 945879, 'quickly while': 694640, 'almost confined': 46582, 'confined 19': 194037, 'in the congo': 429089, 'the congo in': 851451, 'congo in lubumbashi': 194421, 'in lubumbashi people': 424959, 'lubumbashi people will': 506426, 'people will rather': 650405, 'will rather die': 994564, 'rather die from': 697447, 'die from starvation': 241355, 'from starvation sack': 337411, 'starvation sack of': 795179, 'sack of flour': 729054, 'of flour wa': 583606, 'flour wa 35': 311183, 'wa 35 00': 961374, '35 00 cdf': 17862, '00 cdf 20': 122, 'cdf 20 but': 168642, '20 but went': 12982, 'but went straight': 147775, 'went straight to': 979121, 'straight to 80': 812241, 'to 80 00': 899848, '80 00 cdf': 22537, '00 cdf 45': 123, 'cdf 45 it': 168644, '45 it sad': 19105, 'it sad the': 460832, 'sad the price': 729261, 'the price are': 864330, 'price are going': 672671, 'are going up': 86903, 'going up quickly': 355791, 'up quickly while': 945881, 'quickly while everyone': 694641, 'while everyone is': 986807, 'everyone is almost': 287064, 'is almost confined': 445497, 'almost confined 19': 46583, 'confined 19 and': 194038, '19 and food': 5026, 'country recent': 210985, 'recent state': 703988, 'of emergency': 583023, 'emergency ha': 272734, 'seen skyrocketing': 747235, 'skyrocketing demand': 773418, 'for truck': 327355, 'deliver critical': 233107, 'supply such': 825917, 'such medical': 816636, 'equipment and': 279676, 'food regulation': 316147, 'regulation are': 708056, 'being relaxed': 125664, 'relaxed driver': 708855, 'driver spend': 259749, 'time on': 897396, 'road 19': 724387, 'the country recent': 852138, 'country recent state': 210986, 'recent state of': 703989, 'state of emergency': 795804, 'of emergency ha': 583037, 'emergency ha seen': 272738, 'ha seen skyrocketing': 371845, 'seen skyrocketing demand': 747236, 'skyrocketing demand for': 773421, 'demand for truck': 235511, 'for truck driver': 327356, 'truck driver to': 932801, 'driver to deliver': 259802, 'to deliver critical': 904093, 'deliver critical supply': 233108, 'critical supply such': 218679, 'supply such medical': 825921, 'such medical equipment': 816637, 'medical equipment and': 526146, 'equipment and food': 279679, 'and food regulation': 63085, 'food regulation are': 316148, 'regulation are being': 708057, 'are being relaxed': 84910, 'being relaxed driver': 125665, 'relaxed driver spend': 708856, 'driver spend more': 259750, 'spend more and': 788637, 'and more time': 67222, 'more time on': 540771, 'time on the': 897403, 'the road 19': 865914, 'road 19 trucker': 724388, 'covid but': 214129, 'but oil': 146646, 'about falling': 25218, 'price it': 674909, 'keep price': 471811, 'price low': 675109, 'low so': 505625, 'can pay': 159200, 'fuel fuel': 340178, 'fuel bill': 340130, 'bill remain': 130670, 'remain low': 709780, 'low no': 505419, 'no they': 565705, 'are desperate': 85792, 'desperate to': 238558, 'production 19': 681890, '19 plus': 9735, 'is fighting covid': 447790, 'fighting covid but': 305054, 'covid but oil': 214130, 'but oil producer': 146647, 'oil producer are': 597333, 'producer are worried': 680579, 'worried about falling': 1010488, 'about falling price': 25219, 'falling price it': 297325, 'price it is': 674919, 'it is better': 458885, 'is better to': 446155, 'better to keep': 128565, 'to keep price': 908833, 'keep price low': 471815, 'price low so': 675120, 'low so that': 505628, 'so that people': 778389, 'that people can': 845690, 'people can pay': 647403, 'can pay for': 159202, 'pay for fuel': 644878, 'for fuel fuel': 321800, 'fuel fuel bill': 340179, 'fuel bill remain': 340131, 'bill remain low': 130671, 'remain low no': 709781, 'low no they': 505421, 'no they are': 565706, 'they are desperate': 881248, 'are desperate to': 85795, 'desperate to cut': 238559, 'cut production 19': 223499, 'production 19 plus': 681891, 'result after': 717470, 'the result after': 865687, 'result after the': 717473, 'after the supermarket': 36361, 'marked': 515846, 'wic': 991644, 'dependent': 237357, 'lovethyneighbor': 505040, 'people please': 649128, 'others you': 621810, 'only person': 610952, 'person on': 652553, 'the planet': 863798, 'planet also': 658393, 'also watch': 49083, 'the item': 858600, 'item marked': 463444, 'marked for': 515854, 'for wic': 327873, 'wic purchase': 991657, 'purchase those': 689685, 'item don': 463217, 'have choice': 379964, 'choice please': 177802, 'those dependent': 891923, 'dependent upon': 237373, 'upon getting': 947635, 'getting those': 349382, 'item lovethyneighbor': 463438, 'lovethyneighbor stophoarding': 505041, 'people please think': 649138, 'please think about': 660670, 'about others you': 25882, 'others you re': 621813, 're not the': 699125, 'not the only': 572017, 'the only person': 862328, 'only person on': 610958, 'person on the': 652555, 'on the planet': 604285, 'the planet also': 863799, 'planet also watch': 658394, 'also watch the': 49084, 'watch the item': 968546, 'the item marked': 858609, 'item marked for': 463445, 'marked for wic': 515855, 'for wic purchase': 327874, 'wic purchase those': 991658, 'purchase those item': 689686, 'those item don': 892136, 'item don have': 463218, 'don have choice': 253591, 'have choice please': 379966, 'choice please think': 177803, 'think of those': 885464, 'of those dependent': 592086, 'those dependent upon': 891924, 'dependent upon getting': 237374, 'upon getting those': 947636, 'getting those item': 349383, 'those item lovethyneighbor': 892139, 'item lovethyneighbor stophoarding': 463439, 'grocerystoreworkers': 366388, 'protectlives': 685826, 'savelives': 737775, 'grocerystoreworkers pandemic': 366391, 'pandemic protectlives': 636250, 'protectlives savelives': 685827, 'savelives correction': 737776, 'correction with': 207590, 'with sound': 1000890, 'sound protect': 786323, 'protect grocery': 684849, 'worker now': 1007456, 'now via': 576301, 'grocerystoreworkers pandemic protectlives': 366392, 'pandemic protectlives savelives': 636251, 'protectlives savelives correction': 685828, 'savelives correction with': 737777, 'correction with sound': 207591, 'with sound protect': 1000891, 'sound protect grocery': 786324, 'protect grocery store': 684850, 'store worker now': 811548, 'worker now via': 1007462, 'is for': 447876, 'rich who': 721268, 'up food': 944873, 'food staff': 316722, 'staff for': 792462, 'for almost': 319208, 'almost month': 46690, 'month it': 537805, 'it expose': 457913, 'expose the': 292806, 'the poor': 863963, 'poor because': 664128, 'be forced': 114917, 'risk thier': 723942, 'thier life': 884029, 'take chance': 832021, 'chance for': 171721, 'for survival': 326090, 'survival they': 829087, 'will die': 993178, 'from corona': 335004, 'corona they': 204229, 'get medical': 347552, 'medical help': 526208, 'help they': 390728, 'this is for': 888262, 'is for the': 447893, 'for the rich': 326658, 'the rich who': 865784, 'rich who can': 721269, 'who can stock': 988409, 'can stock up': 159809, 'stock up food': 803083, 'up food staff': 944896, 'food staff for': 316723, 'staff for almost': 792463, 'for almost month': 319212, 'almost month it': 46691, 'month it expose': 537806, 'it expose the': 457914, 'expose the poor': 292807, 'the poor because': 863968, 'poor because they': 664129, 'because they will': 119729, 'will be forced': 992466, 'be forced to': 114918, 'forced to risk': 328650, 'to risk thier': 913606, 'risk thier life': 723943, 'thier life and': 884030, 'life and take': 488488, 'and take chance': 72960, 'take chance for': 832022, 'chance for survival': 171726, 'for survival they': 326094, 'survival they will': 829088, 'they will die': 883841, 'will die from': 993180, 'die from corona': 241343, 'from corona they': 335007, 'corona they will': 204231, 'they will not': 883868, 'will not get': 994224, 'not get medical': 569596, 'get medical help': 347553, 'medical help they': 526211, 'stacking': 792034, 'warrioroflight': 967376, 'warrior': 967359, 'when asking': 983185, 'asking shop': 96056, 'worker stacking': 1007800, 'stacking food': 792035, 'food onto': 315633, 'onto shelf': 611671, 'what she': 982160, 'she doing': 756006, 'doing she': 252643, 'she reply': 756294, 'reply helping': 711737, 'country to': 211158, 'win the': 995582, 'battle over': 112808, 'over covid': 630126, '19 warrioroflight': 11900, 'warrioroflight 8pm': 967377, '8pm thursday': 23238, 'thursday time': 895438, 'to thank': 916416, 'thank our': 841617, 'our warrior': 625303, 'warrior of': 967368, 'of light': 585848, 'when asking shop': 983187, 'asking shop worker': 96057, 'shop worker stacking': 761092, 'worker stacking food': 1007801, 'stacking food onto': 792037, 'food onto shelf': 315634, 'onto shelf in': 611672, 'shelf in her': 757198, 'in her local': 423657, 'local supermarket what': 498612, 'supermarket what she': 823794, 'what she doing': 982162, 'she doing she': 756007, 'doing she reply': 252644, 'she reply helping': 756295, 'reply helping our': 711738, 'helping our country': 391416, 'our country to': 622605, 'country to win': 211173, 'to win the': 918616, 'win the battle': 995583, 'the battle over': 849349, 'battle over covid': 112809, 'over covid 19': 630127, 'covid 19 warrioroflight': 214045, '19 warrioroflight 8pm': 11901, 'warrioroflight 8pm thursday': 967378, '8pm thursday time': 23239, 'thursday time to': 895439, 'time to thank': 898084, 'to thank our': 916430, 'thank our warrior': 841623, 'our warrior of': 625305, 'warrior of light': 967369, 'verry': 954877, 'coincidence': 185660, 'catylization': 167402, 'coldwar2020': 185825, 'are verry': 91452, 'verry low': 954878, 'low just': 505368, 'just fyi': 468787, 'fyi it': 342636, 'not coincidence': 568786, 'coincidence the': 185669, 'oil may': 596953, 'had small': 373517, 'small hand': 774983, 'the catylization': 850535, 'catylization of': 167403, 'pandemic coldwar2020': 635164, 'price are verry': 672762, 'are verry low': 91453, 'verry low just': 954879, 'low just fyi': 505369, 'just fyi it': 468789, 'fyi it not': 342639, 'it not coincidence': 459865, 'not coincidence the': 568787, 'coincidence the price': 185670, 'of oil may': 587188, 'oil may have': 596954, 'may have had': 521238, 'have had small': 380874, 'had small hand': 373518, 'small hand in': 774984, 'hand in the': 375041, 'in the catylization': 429059, 'the catylization of': 850536, 'catylization of the': 167404, '19 pandemic coldwar2020': 9295, 'snap': 776071, 'web': 974932, 'store offer': 809152, 'online click': 608016, 'click amp': 181881, 'amp collect': 53543, 'collect grocery': 186281, 'amp curbside': 53595, 'pickup for': 655961, 'for family': 321382, 'family on': 298114, 'on snap': 603512, 'snap order': 776102, 'order can': 618108, 'be made': 115860, 'made via': 508058, 'via phone': 956167, 'phone learn': 654968, 'more amp': 538606, 'amp view': 54783, 'view additional': 957062, 'additional update': 31891, 'update amp': 946855, 'amp resource': 54391, 'resource in': 714822, 'new resource': 559469, 'resource web': 714929, 'web page': 974954, 'grocery store offer': 365604, 'store offer online': 809154, 'offer online click': 594722, 'online click amp': 608017, 'click amp collect': 181882, 'amp collect grocery': 53544, 'collect grocery shopping': 186283, 'grocery shopping amp': 364995, 'shopping amp curbside': 761951, 'amp curbside pickup': 53596, 'curbside pickup for': 220650, 'pickup for family': 655962, 'for family on': 321392, 'family on snap': 298118, 'on snap order': 603516, 'snap order can': 776103, 'order can also': 618109, 'can also be': 157450, 'also be made': 47925, 'be made via': 115868, 'made via phone': 508059, 'via phone learn': 956169, 'phone learn more': 654969, 'learn more amp': 484015, 'more amp view': 538607, 'amp view additional': 54784, 'view additional update': 957063, 'additional update amp': 31892, 'update amp resource': 946856, 'amp resource in': 54393, 'resource in response': 714823, '19 outbreak at': 9085, 'outbreak at our': 628035, 'at our new': 100023, 'our new resource': 624044, 'new resource web': 559476, 'resource web page': 714930, 'web page at': 974955, 'freaked': 331519, 'muppets freaked': 546132, 'freaked out': 331520, 'out few': 626065, 'ago buying': 38357, 'and acting': 57627, 'will look': 994035, 'look back': 502312, 'that later': 844846, 'later and': 481018, 'ashamed or': 95070, 'those muppets freaked': 892231, 'muppets freaked out': 546133, 'freaked out few': 331524, 'out few week': 626067, 'week ago buying': 975839, 'ago buying toilet': 38358, 'and food and': 63027, 'food and acting': 313167, 'and acting like': 57629, 'they will look': 883861, 'will look back': 994037, 'look back on': 502315, 'back on that': 107202, 'on that later': 603937, 'that later and': 844847, 'later and be': 481020, 'so ashamed or': 776551, 'ashamed or probably': 95071, 'breitbart': 139298, 'agreement': 38765, 'insidertraitor': 439492, 'fridaythoughts': 333350, 'only time': 611346, 'ever post': 285455, 'post breitbart': 666023, 'breitbart article': 139299, 'article where': 94501, 'where in': 984937, 'in agreement': 420110, 'agreement with': 38808, 'them but': 875491, 'article is': 94371, 'is spot': 452174, 'on insidertraitor': 601580, 'insidertraitor fridaythoughts': 439493, 'probably the first': 679398, 'the first and': 855279, 'and only time': 68153, 'only time ever': 611347, 'time ever post': 896632, 'ever post breitbart': 285456, 'post breitbart article': 666024, 'breitbart article where': 139300, 'article where in': 94502, 'where in agreement': 984938, 'in agreement with': 420111, 'agreement with them': 38813, 'with them but': 1001610, 'them but this': 875501, 'but this article': 147541, 'this article is': 886420, 'article is spot': 94374, 'is spot on': 452175, 'spot on insidertraitor': 790088, 'on insidertraitor fridaythoughts': 601581, 'strange': 812369, 'saviour': 738001, 'strange time': 812429, 'time sad': 897601, 'own worst': 632317, 'worst enemy': 1011177, 'enemy or': 276364, 'or our': 616457, 'own saviour': 632191, 'strange time sad': 812431, 'time sad time': 897602, 'sad time we': 729268, 'time we can': 898216, 'we can be': 970912, 'can be our': 157655, 'be our own': 116278, 'our own worst': 624222, 'own worst enemy': 632318, 'worst enemy or': 1011178, 'enemy or our': 276365, 'or our own': 616461, 'our own saviour': 624213, 'dark': 225950, 'gratitudeganstas': 362410, 'hbu': 384649, 'in dark': 421988, 'dark place': 225975, 'place in': 657505, 'life wa': 489178, 'wa part': 962911, 'of group': 584369, 'group chat': 366640, 'chat called': 173925, 'called gratitudeganstas': 156329, 'gratitudeganstas every': 362411, 'all listed': 43390, 'listed something': 494646, 'were grateful': 979701, 'for amid': 319254, 'the chaos': 850689, 'chaos grateful': 173020, 'the small': 867354, 'small biz': 774807, 'biz owner': 131949, 'owner in': 632472, 'my town': 550406, 'town hbu': 927486, 'when wa in': 984401, 'wa in dark': 962364, 'in dark place': 421989, 'dark place in': 225976, 'place in my': 657511, 'in my life': 425593, 'my life wa': 549048, 'life wa part': 489181, 'wa part of': 962912, 'part of group': 642351, 'of group chat': 584370, 'group chat called': 366641, 'chat called gratitudeganstas': 173926, 'called gratitudeganstas every': 156330, 'gratitudeganstas every day': 362412, 'every day we': 285857, 'day we all': 228671, 'we all listed': 970340, 'all listed something': 43391, 'listed something that': 494647, 'something that we': 785083, 'that we were': 847405, 'we were grateful': 973794, 'were grateful for': 979702, 'grateful for amid': 362258, 'for amid the': 319256, 'amid the chaos': 52683, 'the chaos grateful': 850691, 'chaos grateful for': 173021, 'for the small': 326691, 'the small biz': 867356, 'small biz owner': 774811, 'biz owner in': 131950, 'owner in my': 632474, 'in my town': 425638, 'my town hbu': 550412, 'collaborating': 185914, 'host': 404858, 'are collaborating': 85413, 'collaborating with': 185921, 'with to': 1001783, 'to host': 907987, 'host virtual': 404900, 'virtual food': 957743, 'food drive': 314284, 'help meet': 390088, 'assistance amid': 96661, 'crisis participate': 217852, 'participate now': 642560, 'we are collaborating': 970504, 'are collaborating with': 85415, 'collaborating with to': 185923, 'with to host': 1001789, 'to host virtual': 907991, 'host virtual food': 404901, 'virtual food drive': 957744, 'food drive to': 314291, 'drive to help': 259221, 'to help meet': 907561, 'help meet the': 390094, 'food assistance amid': 313423, 'assistance amid the': 96662, '19 crisis participate': 6296, 'crisis participate now': 217853, 'discussed': 244958, 'stability': 791799, 'and putin': 69824, 'putin discussed': 691021, 'discussed virus': 244976, 'and energy': 62125, 'energy market': 276494, 'market stability': 517099, 'stability white': 791827, 'house oott': 406440, 'trump and putin': 933411, 'and putin discussed': 69827, 'putin discussed virus': 691022, 'discussed virus and': 244977, 'virus and energy': 957923, 'and energy market': 62126, 'energy market stability': 276498, 'market stability white': 517101, 'stability white house': 791828, 'white house oott': 987855, 'fermoy': 303549, 'h2': 369376, 'utilising': 951250, 'label': 478325, 're really': 699356, 'really proud': 702497, 'how spar': 408728, 'spar fermoy': 787438, 'fermoy h2': 303550, 'h2 group': 369377, 'group ha': 366708, 'been utilising': 122320, 'utilising their': 951253, 'their digital': 873016, 'digital label': 242587, 'label in': 478345, 'store check': 806952, 'been using': 122313, 'to promote': 912247, 'promote social': 683790, 'we re really': 972945, 're really proud': 699361, 'really proud of': 702498, 'proud of how': 686031, 'of how spar': 584841, 'how spar fermoy': 408729, 'spar fermoy h2': 787439, 'fermoy h2 group': 303551, 'h2 group ha': 369378, 'group ha been': 366710, 'ha been utilising': 369977, 'been utilising their': 122321, 'utilising their digital': 951254, 'their digital label': 873017, 'digital label in': 242588, 'label in store': 478346, 'in store check': 428392, 'store check out': 806953, 'check out how': 174554, 'out how they': 626337, 'how they ve': 408934, 've been using': 952954, 'been using them': 122318, 'them to promote': 876498, 'to promote social': 912255, 'promote social distancing': 683791, 'kinder': 475085, 'about easter': 25146, 'egg mini': 269922, 'mini egg': 533001, 'egg kinder': 269901, 'kinder cream': 475088, 'cream egg': 215544, 'egg how': 269887, 'many can': 513859, 'buy do': 148539, 'any petrol': 79650, 'petrol fuel': 653736, 'fuel shortage': 340279, 'shortage so': 765213, 'bad at': 107769, 'at keeping': 99362, 'keeping up': 472611, 'demand when': 236478, 'get several': 347970, 'several daily': 753819, 'daily delivery': 224574, 'and manufacturing': 66656, 'manufacturing hasn': 513598, 'hasn changed': 378732, 'what about easter': 980967, 'about easter egg': 25147, 'easter egg mini': 265423, 'egg mini egg': 269923, 'mini egg kinder': 533002, 'egg kinder cream': 269902, 'kinder cream egg': 475089, 'cream egg how': 215545, 'egg how many': 269888, 'how many can': 408249, 'many can you': 513862, 'can you buy': 160283, 'you buy do': 1017566, 'buy do not': 148540, 'do not see': 249837, 'not see any': 571474, 'see any petrol': 744919, 'any petrol fuel': 79651, 'petrol fuel shortage': 653737, 'fuel shortage so': 340281, 'shortage so why': 765217, 'why are our': 990779, 'are our food': 88860, 'our food chain': 623102, 'food chain so': 313916, 'chain so bad': 171117, 'so bad at': 776575, 'bad at keeping': 107771, 'at keeping up': 99364, 'keeping up with': 472614, 'up with demand': 946629, 'with demand when': 997996, 'demand when they': 236480, 'when they get': 984261, 'they get several': 882178, 'get several daily': 347971, 'several daily delivery': 753820, 'daily delivery and': 224575, 'delivery and manufacturing': 233667, 'and manufacturing hasn': 66660, 'manufacturing hasn changed': 513599, 'continuous': 201587, 'cyclical': 224079, 'wool': 1004349, 'is majorly': 449529, 'majorly contributing': 509595, 'contributing to': 201918, 'the continuous': 851684, 'continuous cyclical': 201590, 'cyclical downturn': 224082, 'in wool': 430965, 'wool price': 1004354, 'price the': 676817, 'next rising': 561529, 'price cycle': 673381, 'cycle is': 224054, 'is predicted': 450984, 'develop however': 239641, 'however it': 409401, 'be quick': 116664, 'quick process': 694346, '19 is majorly': 8005, 'is majorly contributing': 449530, 'majorly contributing to': 509596, 'contributing to the': 201925, 'to the continuous': 916587, 'the continuous cyclical': 851685, 'continuous cyclical downturn': 201591, 'cyclical downturn in': 224083, 'downturn in wool': 257805, 'in wool price': 430966, 'wool price the': 1004355, 'price the next': 676849, 'the next rising': 861691, 'next rising price': 561530, 'rising price cycle': 723265, 'price cycle is': 673382, 'cycle is predicted': 224055, 'is predicted to': 450985, 'predicted to develop': 669626, 'to develop however': 904247, 'develop however it': 239642, 'however it will': 409407, 'it will not': 462413, 'not be quick': 568440, 'be quick process': 116666, 'mondaymotivation': 536454, 'zone': 1027747, 'increasingly': 433752, 'more protection': 540167, 'compassion for': 191487, 'staff mondaymotivation': 792667, 'mondaymotivation it': 536464, 'like war': 491760, 'war zone': 966609, 'zone more': 1027767, 'them die': 875595, 'die grocery': 241363, 'worker increasingly': 1007224, 'increasingly fear': 433774, 'fear showing': 301327, 'more protection and': 540168, 'protection and compassion': 685314, 'and compassion for': 60207, 'compassion for grocery': 191488, 'store staff mondaymotivation': 810320, 'staff mondaymotivation it': 792668, 'mondaymotivation it feel': 536465, 'feel like war': 302760, 'like war zone': 491761, 'war zone more': 966613, 'zone more of': 1027768, 'more of them': 539886, 'of them die': 591732, 'them die grocery': 875597, 'die grocery worker': 241365, 'grocery worker increasingly': 366180, 'worker increasingly fear': 1007226, 'increasingly fear showing': 433775, 'fear showing up': 301328, 'showing up at': 767549, 'up at work': 944446, 'cr': 214667, 'maureen': 520721, 'mahoney': 508519, 'combating': 187061, 'endrobocalls': 276277, 'you received': 1020856, 'received coronavirus': 703613, 'related robocalls': 708540, 'robocalls from': 724765, 'from scammer': 337176, 'scammer cr': 740557, 'cr maureen': 214670, 'maureen mahoney': 520722, 'mahoney note': 508520, 'note the': 572817, 'fcc need': 300765, 'make combating': 509783, 'combating scam': 187071, 'scam call': 740094, 'call priority': 156082, 'priority endrobocalls': 678560, 'have you received': 383685, 'you received coronavirus': 1020857, 'received coronavirus related': 703614, 'coronavirus related robocalls': 206639, 'related robocalls from': 708541, 'robocalls from scammer': 724766, 'from scammer cr': 337177, 'scammer cr maureen': 740558, 'cr maureen mahoney': 214671, 'maureen mahoney note': 520723, 'mahoney note the': 508521, 'note the fcc': 572821, 'the fcc need': 855001, 'fcc need to': 300766, 'need to make': 555990, 'to make combating': 909637, 'make combating scam': 509784, 'combating scam call': 187072, 'scam call priority': 740097, 'call priority endrobocalls': 156083, 'josh': 467337, 'ross': 726140, 'fact are': 295680, 'your side': 1025805, 'side there': 768901, 'same number': 733180, 'of mouth': 586686, 'mouth to': 543569, 'feed today': 302397, 'today there': 920312, 'were month': 979890, 'ago said': 38451, 'said independent': 731142, 'independent grocer': 434107, 'grocer association': 364106, 'association president': 96979, 'president and': 670757, 'and ceo': 59682, 'ceo josh': 169736, 'josh ross': 467340, 'ross foodsupply': 726143, 'foodsupply groceryshopping': 318204, 'groceryshopping consumer': 366247, 'consumer grocer': 197650, 'the fact are': 854816, 'fact are on': 295682, 'are on your': 88741, 'on your side': 605501, 'your side there': 1025808, 'side there are': 768902, 'there are the': 878173, 'the same number': 866266, 'same number of': 733183, 'number of mouth': 576961, 'of mouth to': 586687, 'mouth to feed': 543571, 'to feed today': 905735, 'feed today there': 302398, 'today there were': 920316, 'there were month': 879323, 'were month ago': 979891, 'month ago said': 537539, 'ago said independent': 38453, 'said independent grocer': 731143, 'independent grocer association': 434109, 'grocer association president': 364107, 'association president and': 96980, 'president and ceo': 670758, 'and ceo josh': 59687, 'ceo josh ross': 169737, 'josh ross foodsupply': 467341, 'ross foodsupply groceryshopping': 726144, 'foodsupply groceryshopping consumer': 318205, 'groceryshopping consumer grocer': 366248, 'witness': 1003105, 'crowdinsights': 219412, 'distancing is': 247237, 'behaviour more': 124480, 'ever especially': 285292, 'especially across': 280426, 'the entertainment': 854344, 'entertainment industry': 278578, 'industry what': 436228, 'what further': 981486, 'further practice': 342134, 'practice do': 668542, 'you predict': 1020406, 'predict we': 669587, 'will witness': 995359, 'witness consumer': 1003111, 'consumer behavioural': 196613, 'behavioural pattern': 124574, 'pattern change': 644453, 'change crowd': 171994, 'crowd crowdinsights': 219149, 'crowdinsights socialdistancing': 219413, 'socialdistancing netflix': 780551, 'social distancing is': 779639, 'distancing is impacting': 247247, 'impacting consumer behaviour': 418192, 'consumer behaviour more': 196589, 'behaviour more than': 124481, 'than ever especially': 840580, 'ever especially across': 285293, 'especially across the': 280427, 'across the entertainment': 29495, 'the entertainment industry': 854345, 'entertainment industry what': 278580, 'industry what further': 436230, 'what further practice': 981487, 'further practice do': 342135, 'practice do you': 668543, 'do you predict': 250659, 'you predict we': 1020407, 'predict we will': 669588, 'we will witness': 973921, 'will witness consumer': 995360, 'witness consumer behavioural': 1003112, 'consumer behavioural pattern': 196614, 'behavioural pattern change': 124575, 'pattern change crowd': 644454, 'change crowd crowdinsights': 171995, 'crowd crowdinsights socialdistancing': 219150, 'crowdinsights socialdistancing netflix': 219414, 'hai': 373927, 'sy': 830654, 'jual': 467591, '60ml': 21159, 'hai sy': 373928, 'sy jual': 830655, 'jual hand': 467592, 'sanitizer 60ml': 734298, '60ml ni': 21164, 'ni handsanitizers': 562302, 'handsanitizers malaysia': 376701, 'hai sy jual': 373929, 'sy jual hand': 830656, 'jual hand sanitizer': 467593, 'hand sanitizer 60ml': 375284, 'sanitizer 60ml ni': 734299, '60ml ni handsanitizers': 21165, 'ni handsanitizers malaysia': 562303, 'shpn': 767653, 'screw': 742784, 'hooded': 403317, 'tyvek': 937708, 'grocery shpn': 365117, 'shpn nj': 767654, 'nj screw': 563457, 'screw it': 742796, 'it full': 458179, 'full hooded': 340630, 'hooded tyvek': 403320, 'tyvek suit': 937709, 'suit glove': 817764, 'glove n95': 352794, 'mask full': 518712, 'full face': 340586, 'shield did': 758149, 'did half': 240625, 'half to': 374287, 'see some': 745711, 'some reaction': 783685, 'reaction and': 700188, 'safe could': 729568, 'could feel': 209172, 'feel by': 302589, 'were let': 979836, 'let in': 486813, 'in 10': 419675, '10 into': 1483, 'store knew': 808655, 'knew made': 476056, 'right decision': 721865, 'grocery shpn nj': 365118, 'shpn nj screw': 767655, 'nj screw it': 563458, 'screw it full': 742797, 'it full hooded': 458181, 'full hooded tyvek': 340631, 'hooded tyvek suit': 403321, 'tyvek suit glove': 937710, 'suit glove n95': 817765, 'glove n95 mask': 352795, 'n95 mask full': 551194, 'mask full face': 518713, 'full face shield': 340587, 'face shield did': 294740, 'shield did half': 758150, 'did half to': 240626, 'half to see': 374291, 'to see some': 914071, 'see some reaction': 745721, 'some reaction and': 783686, 'reaction and half': 700189, 'and half to': 64126, 'half to feel': 374290, 'to feel safe': 905755, 'feel safe could': 302827, 'safe could feel': 729569, 'could feel by': 209173, 'feel by people': 302590, 'by people were': 153559, 'people were let': 650210, 'were let in': 979837, 'let in 10': 486814, 'in 10 into': 419680, '10 into the': 1484, 'into the store': 443176, 'the store knew': 868046, 'store knew made': 808657, 'knew made the': 476057, 'made the right': 507997, 'the right decision': 865807, 'museum': 546232, 'congressional': 194558, 'delegation': 232838, 'equip': 279660, 'outlast': 629001, 'nyc isn': 578002, 'isn nyc': 454600, 'nyc without': 578070, 'without our': 1002810, 'our non': 624082, 'non profit': 566467, 'profit museum': 682815, 'museum but': 546241, 'want our': 965883, 'our museum': 623967, 'museum to': 546253, 'survive covid': 829147, 'them now': 876059, 'that why': 847528, 'why led': 991163, 'the nyc': 862000, 'nyc congressional': 577973, 'congressional delegation': 194559, 'delegation with': 232841, 'with in': 998960, 'calling for': 156541, 'for billion': 319684, 'billion in': 130834, 'in emergency': 422542, 'emergency fund': 272721, 'to equip': 905238, 'equip museum': 279663, 'to outlast': 911271, 'outlast this': 629005, 'nyc isn nyc': 578003, 'isn nyc without': 454601, 'nyc without our': 578071, 'without our non': 1002812, 'our non profit': 624084, 'non profit museum': 566473, 'profit museum but': 682816, 'museum but if': 546242, 'but if we': 146000, 'if we want': 415322, 'we want our': 973748, 'want our museum': 965884, 'our museum to': 623968, 'museum to survive': 546255, 'to survive covid': 916024, 'survive covid 19': 829148, 'need to protect': 556019, 'protect them now': 685006, 'them now that': 876070, 'now that why': 576026, 'that why led': 847539, 'why led the': 991164, 'led the nyc': 485269, 'the nyc congressional': 862002, 'nyc congressional delegation': 577974, 'congressional delegation with': 194560, 'delegation with in': 232842, 'with in calling': 998961, 'in calling for': 421163, 'calling for billion': 156544, 'for billion in': 319685, 'billion in emergency': 130844, 'in emergency fund': 422544, 'emergency fund to': 272726, 'fund to equip': 341522, 'to equip museum': 905239, 'equip museum to': 279664, 'museum to outlast': 546254, 'to outlast this': 911273, 'outlast this pandemic': 629006, 'on leading': 601808, 'leading consumer': 483696, 'consumer bank': 196384, 'bank through': 110249, 'on leading consumer': 601809, 'leading consumer bank': 483697, 'consumer bank through': 196386, 'bank through the': 110250, 'the pandemic via': 863144, 'sinister': 771455, 'nitrile': 563390, 'bizarrely': 131976, 'filter': 305748, 'rendering': 710946, 'useless': 950215, 'out today': 627701, 'essential used': 281741, 'used my': 949966, 'my sinister': 550098, 'sinister black': 771458, 'black nitrile': 132108, 'nitrile glove': 563391, 'glove saw': 352908, 'saw man': 738162, 'on gas': 601065, 'gas mask': 343900, 'mask bizarrely': 518481, 'bizarrely it': 131977, 'it had': 458425, 'no filter': 564218, 'filter on': 305774, 'it rendering': 460710, 'rendering it': 710951, 'it useless': 462000, 'useless wa': 950246, 'wa nice': 962705, 'to escape': 905249, 'escape the': 280313, 'hour supermarket': 405964, 'wa almost': 961477, 'almost civil': 46577, 'civil coronacrisis': 179511, 'go out today': 353994, 'out today for': 627704, 'today for some': 919541, 'for some essential': 325738, 'some essential used': 782765, 'essential used my': 281742, 'used my sinister': 949968, 'my sinister black': 550099, 'sinister black nitrile': 771459, 'black nitrile glove': 132109, 'nitrile glove saw': 563395, 'glove saw man': 352909, 'saw man in': 738163, 'man in full': 512110, 'in full on': 423169, 'full on gas': 340773, 'on gas mask': 601069, 'gas mask bizarrely': 343902, 'mask bizarrely it': 518482, 'bizarrely it had': 131978, 'it had no': 458432, 'had no filter': 373331, 'no filter on': 564219, 'filter on it': 305775, 'on it rendering': 601685, 'it rendering it': 460711, 'rendering it useless': 710952, 'it useless wa': 462001, 'useless wa nice': 950247, 'wa nice to': 962709, 'nice to escape': 562486, 'to escape the': 905250, 'escape the lockdown': 280315, 'the lockdown for': 859598, 'lockdown for an': 499393, 'an hour supermarket': 56103, 'hour supermarket wa': 405967, 'supermarket wa almost': 823688, 'wa almost civil': 961478, 'almost civil coronacrisis': 46578, 'compulsory': 192713, 'onwards': 611708, 'obligatory': 578471, 'wherever': 985457, 'compulsory use': 192724, 'in austria': 420627, 'austria 19': 103591, '19 distribution': 6588, 'take place': 832498, 'place from': 657458, 'from wednesday': 338318, 'wednesday onwards': 975675, 'onwards via': 611713, 'via supermarket': 956270, 'chain from': 170723, 'is obligatory': 450379, 'obligatory to': 578472, 'supermarket medium': 821499, 'term mouth': 838205, 'mouth amp': 543479, 'amp nose': 54186, 'nose protection': 567917, 'protection will': 685688, 'be obligatory': 116138, 'obligatory wherever': 578474, 'wherever people': 985460, 'people pas': 649080, 'pas by': 643091, 'compulsory use of': 192725, 'use of mask': 949418, 'of mask in': 586271, 'mask in austria': 518827, 'in austria 19': 420628, 'austria 19 distribution': 103592, '19 distribution of': 6589, 'distribution of mask': 248177, 'of mask to': 586280, 'mask to take': 519427, 'to take place': 916223, 'take place from': 832503, 'place from wednesday': 657462, 'from wednesday onwards': 338320, 'wednesday onwards via': 975676, 'onwards via supermarket': 611714, 'via supermarket chain': 956271, 'supermarket chain from': 819605, 'chain from this': 170727, 'from this time': 338013, 'this time on': 890672, 'time on it': 897399, 'on it is': 601670, 'it is obligatory': 459026, 'is obligatory to': 450380, 'obligatory to wear': 578473, 'mask in supermarket': 518837, 'in supermarket medium': 428631, 'supermarket medium term': 821500, 'medium term mouth': 527306, 'term mouth amp': 838206, 'mouth amp nose': 543480, 'amp nose protection': 54187, 'nose protection will': 567918, 'protection will be': 685689, 'will be obligatory': 992579, 'be obligatory wherever': 116139, 'obligatory wherever people': 578475, 'wherever people pas': 985461, 'people pas by': 649081, 'tantamount': 834276, 'blackmail': 132189, 'stormont': 811870, 'extortion': 293379, 'supplier of': 824578, 'of paracetamol': 587766, 'paracetamol are': 641222, 'to chemist': 902709, 'chemist this': 175452, 'is tantamount': 452573, 'tantamount to': 834277, 'to blackmail': 901839, 'blackmail there': 132190, 'there should': 879043, 'be stormont': 117386, 'stormont task': 811873, 'force set': 328495, 'tackle extortion': 831568, 'supplier of paracetamol': 824582, 'of paracetamol are': 587767, 'paracetamol are increasing': 641223, 'are increasing their': 87494, 'price to chemist': 676975, 'to chemist this': 902710, 'chemist this is': 175453, 'this is tantamount': 888420, 'is tantamount to': 452574, 'tantamount to blackmail': 834278, 'to blackmail there': 901840, 'blackmail there should': 132191, 'there should be': 879044, 'should be stormont': 765740, 'be stormont task': 117387, 'stormont task force': 811874, 'task force set': 834698, 'force set up': 328496, 'up to tackle': 946433, 'to tackle extortion': 916127, 'remunerative': 710918, 'perishable': 651957, 'crop': 218892, 'benefitting': 127179, 'railway': 695686, '109': 2272, 'train': 929222, 'speedy': 788498, 'govt led': 361183, 'by pm': 153599, 'pm ji': 661920, 'ji ha': 465448, 'ha taken': 372140, 'taken step': 833064, 'ensure remunerative': 278022, 'remunerative price': 710919, 'for perishable': 324486, 'perishable crop': 651962, 'crop benefitting': 218902, 'benefitting the': 127184, 'the farmer': 854940, 'farmer amid': 299244, '19 railway': 9941, 'railway ha': 695701, 'also introduced': 48429, 'introduced 109': 443412, '109 parcel': 2273, 'parcel train': 641530, 'train for': 929254, 'for speedy': 325821, 'speedy transportation': 788503, 'transportation of': 930017, 'and perishable': 68908, 'perishable good': 651981, 'govt led by': 361184, 'led by pm': 485219, 'by pm ji': 153602, 'pm ji ha': 661921, 'ji ha taken': 465449, 'ha taken step': 372150, 'taken step to': 833065, 'step to ensure': 799646, 'to ensure remunerative': 905185, 'ensure remunerative price': 278023, 'remunerative price for': 710920, 'price for perishable': 674023, 'for perishable crop': 324487, 'perishable crop benefitting': 651964, 'crop benefitting the': 218903, 'benefitting the farmer': 127185, 'the farmer amid': 854942, 'farmer amid covid': 299245, 'covid 19 railway': 213647, '19 railway ha': 9942, 'railway ha also': 695702, 'ha also introduced': 369526, 'also introduced 109': 48430, 'introduced 109 parcel': 443413, '109 parcel train': 2274, 'parcel train for': 641531, 'train for speedy': 929255, 'for speedy transportation': 325823, 'speedy transportation of': 788504, 'transportation of essential': 930018, 'of essential and': 583160, 'essential and perishable': 280786, 'and perishable good': 68909, 'vulture': 961286, 'descending': 237915, 'glad ve': 351535, 'got bottle': 358443, 'wine in': 995825, 'in because': 420746, 'because booze': 118956, 'booze aisle': 135153, 'aisle are': 40204, 'the vulture': 871008, 'vulture are': 961291, 'already descending': 47291, 'descending on': 237916, 'supermarket near': 821571, 'near you': 553635, 'you coronacrisis': 1018053, 'glad ve got': 351536, 've got bottle': 953169, 'got bottle of': 358445, 'bottle of wine': 136303, 'of wine in': 593183, 'wine in because': 995826, 'in because booze': 420747, 'because booze aisle': 118957, 'booze aisle are': 135154, 'aisle are just': 40207, 'are just about': 87613, 'just about to': 468139, 'about to empty': 26714, 'to empty the': 905037, 'empty the vulture': 275183, 'the vulture are': 871009, 'vulture are already': 961292, 'are already descending': 84404, 'already descending on': 47292, 'descending on supermarket': 237917, 'on supermarket near': 603797, 'supermarket near you': 821578, 'near you coronacrisis': 553637, 'you coronacrisis lockdown': 1018055, 'prediction': 669646, '19 prediction': 9777, 'prediction for': 669659, 'for house': 322404, 'uk housing': 938462, 'covid 19 prediction': 213602, '19 prediction for': 9778, 'prediction for house': 669660, 'for house price': 322407, 'house price and': 406471, 'and the uk': 73630, 'the uk housing': 870234, 'uk housing market': 938463, 'at people': 100089, 'who sold': 989637, 'sold mask': 781697, 'sanitizers at': 736221, 'looking at people': 502817, 'at people who': 100096, 'people who sold': 650341, 'who sold mask': 989639, 'sold mask and': 781698, 'and sanitizers at': 70894, 'sanitizers at higher': 736226, 'at higher price': 98898, 'hack': 372733, 'nifty': 562680, 'stylus': 815648, 'pen': 646403, 'pin': 656769, 'pad': 633771, 'otherw': 621818, 'here covid': 392903, '19 hack': 7406, 'hack take': 372748, 'your nifty': 1025013, 'nifty stylus': 562690, 'stylus pen': 815649, 'pen shopping': 646412, 'shopping if': 762943, 'you absolutely': 1016782, 'absolutely need': 27394, 'to navigate': 910484, 'navigate the': 553075, 'the pin': 863737, 'pin pad': 656774, 'pad and': 633772, 'supermarket self': 822370, 'self checkout': 747574, 'checkout screen': 174998, 'screen otherw': 742710, 'here covid 19': 392904, 'covid 19 hack': 213177, '19 hack take': 7407, 'hack take your': 372749, 'take your nifty': 832823, 'your nifty stylus': 1025014, 'nifty stylus pen': 562691, 'stylus pen shopping': 815650, 'pen shopping if': 646413, 'shopping if you': 762947, 'if you absolutely': 415385, 'you absolutely need': 1016785, 'absolutely need to': 27396, 'go and use': 353293, 'it to navigate': 461734, 'to navigate the': 910489, 'navigate the pin': 553084, 'the pin pad': 863738, 'pin pad and': 656775, 'pad and supermarket': 633774, 'and supermarket self': 72735, 'supermarket self checkout': 822371, 'self checkout screen': 747582, 'checkout screen otherw': 174999, 'catchup': 167135, 'quick news': 694332, 'news catchup': 560298, 'catchup price': 167138, 'back foot': 106985, 'foot below': 318363, 'below 600': 126585, '600 down': 21077, 'down 40': 256416, '40 amid': 18527, 'the early': 853817, 'early thursday': 264718, 'thursday session': 895424, 'session watch': 753325, 'watch price': 968512, 'free read': 332090, 'quick news catchup': 694333, 'news catchup price': 560300, 'catchup price on': 167139, 'price on the': 675724, 'on the back': 603976, 'the back foot': 849146, 'back foot below': 106986, 'foot below 600': 318364, 'below 600 down': 126586, '600 down 40': 21078, 'down 40 amid': 256418, '40 amid the': 18528, 'amid the early': 52692, 'the early thursday': 853822, 'early thursday session': 264719, 'thursday session watch': 895425, 'session watch price': 753326, 'watch price for': 968515, 'price for free': 673967, 'for free read': 321724, 'free read the': 332091, 'read the news': 700583, 'dear god': 229795, 'god please': 354783, 'this coronavirus': 886893, 'and just': 65693, 'just make': 469215, 'everything go': 287811, 'are coronacrisis': 85572, 'dear god please': 229796, 'god please stop': 354784, 'please stop this': 660594, 'stop this coronavirus': 805187, 'this coronavirus outbreak': 886899, 'coronavirus outbreak and': 206375, 'outbreak and just': 627998, 'and just make': 65708, 'just make everything': 469216, 'make everything go': 509889, 'everything go back': 287812, 'to normal but': 910643, 'normal but can': 567104, 'but can you': 145369, 'can you leave': 160315, 'leave the gas': 484967, 'gas price they': 344035, 'price they are': 676891, 'they are coronacrisis': 881237, 'coronavirus is': 206156, 'over will': 630936, 'paper pasta': 640580, 'pasta egg': 643711, 'egg cleaning': 269826, 'supply you': 826142, 'left toiletpaper': 485700, 'when the coronavirus': 984135, 'the coronavirus is': 851873, 'coronavirus is over': 206170, 'is over will': 450747, 'over will all': 630937, 'will all let': 992235, 'all let me': 43367, 'me know how': 523040, 'how much toilet': 408378, 'toilet paper pasta': 921388, 'paper pasta egg': 640581, 'pasta egg cleaning': 643713, 'egg cleaning supply': 269827, 'cleaning supply you': 181091, 'supply you have': 826145, 'you have left': 1019069, 'have left toiletpaper': 381301, 'have holiday': 380971, 'holiday booked': 400264, 'booked with': 134692, 'now no': 575345, 'longer take': 502059, 'place because': 657345, 'are refusing': 89538, 'for next': 323850, 'year for': 1014560, 'for transfer': 327312, 'transfer can': 929503, 'you raise': 1020539, 'raise this': 695966, 'we have holiday': 971836, 'have holiday booked': 380972, 'holiday booked with': 400265, 'booked with that': 134693, 'with that can': 1001169, 'that can now': 843113, 'can now no': 159066, 'now no longer': 575351, 'no longer take': 564666, 'longer take place': 502061, 'take place because': 832501, 'place because of': 657346, 'they are refusing': 881384, 'are refusing to': 89540, 'refusing to refund': 707099, 'to refund and': 913081, 'refund and have': 706866, 'and have hiked': 64249, 'the price for': 864351, 'price for next': 674012, 'for next year': 323860, 'next year for': 561729, 'year for transfer': 1014570, 'for transfer can': 327313, 'transfer can you': 929504, 'can you raise': 160327, 'you raise this': 1020541, 'raise this please': 695967, 'recovered': 705219, 'fibre': 304403, 'degrading': 232559, 'infusing': 438272, 'global rise': 352178, 'rise of': 722942, 'been huge': 121314, 'huge threat': 410241, 'the recycling': 865377, 'recycling program': 705553, 'program of': 683276, 'of north': 587073, 'north america': 567602, 'america it': 51584, 'been disruption': 121005, 'disruption to': 246536, 'chinese user': 177372, 'user investing': 950296, 'investing in': 443929, 'the recovered': 865368, 'recovered fibre': 705229, 'fibre degrading': 304404, 'degrading stock': 232560, 'price well': 677422, 'well infusing': 978321, 'infusing economic': 438273, 'economic recession': 267222, 'the global rise': 856323, 'global rise of': 352179, 'rise of the': 722953, 'of the ha': 591088, 'the ha been': 856982, 'ha been huge': 369829, 'been huge threat': 121315, 'huge threat to': 410242, 'threat to the': 893742, 'to the recycling': 917010, 'the recycling program': 865378, 'recycling program of': 705554, 'program of north': 683277, 'of north america': 587074, 'north america it': 567606, 'america it ha': 51586, 'ha been disruption': 369786, 'been disruption to': 121007, 'disruption to the': 246549, 'to the chinese': 916557, 'the chinese user': 850870, 'chinese user investing': 177373, 'user investing in': 950297, 'investing in the': 443933, 'in the recovered': 429503, 'the recovered fibre': 865369, 'recovered fibre degrading': 705230, 'fibre degrading stock': 304405, 'degrading stock price': 232561, 'stock price well': 802756, 'price well infusing': 677425, 'well infusing economic': 978322, 'infusing economic recession': 438274, 'sausage': 737399, 'jailed': 464297, 'stolen': 804283, 'sausage jailed': 737411, 'jailed pensioner': 464305, 'pensioner forced': 646680, 'eat from': 265921, 'from bin': 334696, 'bin after': 130993, 'after food': 35685, 'delivery stolen': 234581, 'stolen from': 804288, 'from doorstep': 335197, 'sausage jailed pensioner': 737412, 'jailed pensioner forced': 464306, 'pensioner forced to': 646681, 'forced to eat': 328632, 'to eat from': 904883, 'eat from bin': 265922, 'from bin after': 334697, 'bin after food': 130994, 'after food delivery': 35686, 'food delivery stolen': 314148, 'delivery stolen from': 234582, 'stolen from doorstep': 804290, 'amazonpantry': 51236, 'big pack': 129899, 'pack big': 633027, 'big saving': 129977, 'saving we': 737985, 'we urge': 973595, 'urge you': 948250, 'buy essential': 148566, 'and kitchen': 65864, 'kitchen but': 475702, 'only what': 611464, 'required click': 713361, 'click essential': 181904, 'essential grocery': 281106, 'grocery pantry': 364832, 'pantry amazonpantry': 639514, 'amazonpantry amazon': 51237, 'big pack big': 129900, 'pack big saving': 633028, 'big saving we': 129978, 'saving we urge': 737986, 'we urge you': 973603, 'urge you to': 948251, 'to buy essential': 902223, 'buy essential for': 148572, 'essential for home': 281057, 'for home and': 322340, 'home and kitchen': 400657, 'and kitchen but': 65866, 'kitchen but only': 475703, 'but only what': 146696, 'only what is': 611465, 'what is required': 981722, 'is required click': 451448, 'required click essential': 713362, 'click essential grocery': 181905, 'essential grocery pantry': 281108, 'grocery pantry amazonpantry': 364833, 'pantry amazonpantry amazon': 639515, 'oklahoma': 598057, 'because am': 118927, 'am still': 50431, 'still working': 801427, 'working and': 1008493, 'family is': 297944, 'trip out': 932133, 'public in': 688100, 'week besides': 976005, 'besides to': 127529, 'work back': 1004914, 'back wa': 107441, 'wa shocked': 963190, 'shocked to': 759585, 'how crowded': 407645, 'crowded the': 219365, 'store wa': 811092, 'wa and': 961537, 'and am': 58002, 'am even': 50025, 'hit oklahoma': 398350, 'oklahoma very': 598079, 'store today because': 810836, 'today because am': 919309, 'because am still': 118930, 'am still working': 50438, 'still working and': 801430, 'working and my': 1008504, 'and my family': 67364, 'my family is': 548208, 'family is at': 297946, 'is at home': 445865, 'at home it': 99019, 'home it wa': 401475, 'it wa my': 462151, 'wa my first': 962674, 'my first trip': 548354, 'first trip out': 309135, 'trip out in': 932135, 'in public in': 427083, 'public in week': 688104, 'in week besides': 430746, 'week besides to': 976006, 'besides to work': 127530, 'to work back': 918692, 'work back wa': 1004915, 'back wa shocked': 107445, 'wa shocked to': 963193, 'shocked to see': 759586, 'to see how': 914021, 'see how crowded': 745223, 'how crowded the': 407646, 'crowded the store': 219366, 'the store wa': 868137, 'store wa and': 811099, 'wa and am': 961538, 'and am even': 58012, 'am even more': 50026, 'even more worried': 284390, 'more worried that': 541015, 'worried that is': 1010583, 'that is going': 844590, 'going to hit': 355622, 'to hit oklahoma': 907848, 'hit oklahoma very': 398351, 'oklahoma very hard': 598080, 'exclusive': 289648, 'barn': 111128, 'exclusive panic': 289686, 'for pet': 324507, 'pet spark': 653450, 'spark new': 787542, 'restriction delay': 717257, 'delay at': 232677, 'at pet': 100102, 'pet barn': 653362, 'barn australia': 111129, 'australia pet': 103349, 'pet dog': 653371, 'dog cat': 252057, 'exclusive panic buying': 289687, 'panic buying for': 637735, 'buying for pet': 150357, 'for pet spark': 324512, 'pet spark new': 653451, 'spark new restriction': 787543, 'new restriction delay': 559483, 'restriction delay at': 717258, 'delay at pet': 232678, 'at pet barn': 100103, 'pet barn australia': 653363, 'barn australia pet': 111130, 'australia pet dog': 103350, 'pet dog cat': 653372, 'runoff': 728158, 'farmer across': 299239, 'province are': 687158, 'are dumping': 86024, 'milk due': 531644, 'the foodservice': 855636, 'foodservice industry': 318100, 'industry which': 436236, 'is another': 445727, 'another runoff': 77816, 'runoff effect': 728159, 'dairy farmer across': 224974, 'farmer across the': 299241, 'the province are': 864725, 'province are dumping': 687160, 'are dumping milk': 86025, 'dumping milk due': 262239, 'milk due to': 531645, 'lack of demand': 478617, 'of demand from': 582505, 'demand from the': 235548, 'from the foodservice': 337707, 'the foodservice industry': 855638, 'foodservice industry which': 318101, 'industry which is': 436237, 'which is another': 985982, 'is another runoff': 445740, 'another runoff effect': 77817, 'runoff effect of': 728160, 'liquor company': 494164, 'company turn': 191267, 'turn sanitizer': 935759, 'sanitizer maker': 735336, 'maker amid': 510810, 'liquor company turn': 494165, 'company turn sanitizer': 191268, 'turn sanitizer maker': 935760, 'sanitizer maker amid': 735337, 'maker amid outbreak': 510811, 'spoonie': 789875, 'dbtskills': 228929, 'spoonie living': 789876, 'living dbtskills': 496340, 'dbtskills so': 228930, 'so shit': 778198, 'shit ha': 759120, 'ha hit': 370876, 'the fan': 854914, 'fan and': 298499, 'and pretty': 69400, 'much wherever': 545457, 'wherever you': 985474, 'are covid': 85597, 'is too': 453276, 'too grocery': 924769, 'empty and': 274765, 'and people': 68847, 'getting sent': 349258, 'sent home': 750755, 'work by': 1004963, 'the drove': 853723, 'drove if': 260798, 'been instructed': 121396, 'instructed to': 440527, 'spoonie living dbtskills': 789877, 'living dbtskills so': 496341, 'dbtskills so shit': 228931, 'so shit ha': 778199, 'shit ha hit': 759122, 'ha hit the': 370883, 'hit the fan': 398429, 'the fan and': 854915, 'fan and pretty': 298502, 'and pretty much': 69401, 'pretty much wherever': 671467, 'much wherever you': 545458, 'wherever you are': 985475, 'you are covid': 1017100, 'are covid 19': 85598, '19 is too': 8068, 'is too grocery': 453277, 'too grocery store': 924770, 'are empty and': 86137, 'empty and people': 274773, 'and people are': 68852, 'are getting sent': 86820, 'getting sent home': 349259, 'sent home from': 750758, 'home from work': 401277, 'from work by': 338404, 'work by the': 1004965, 'by the drove': 154313, 'the drove if': 853724, 'drove if you': 260799, 'if you ve': 415549, 've been instructed': 952899, 'been instructed to': 121397, 'instructed to work': 440532, 'storefront': 811732, 'shipped': 758794, 'maxi': 520779, 'strippedmaxi': 813899, 'maxilove': 520788, 'maxidress': 520782, 'nola': 566242, 'neworleans': 560154, 'houstonboutique': 407232, 'our storefront': 624959, 'storefront is': 811737, 'we asked': 970785, 'asked that': 95830, 'all order': 43769, 'order will': 618778, 'be shipped': 117139, 'shipped out': 758803, 'out maxi': 626544, 'maxi strippedmaxi': 520780, 'strippedmaxi maxilove': 813900, 'maxilove maxidress': 520789, 'maxidress shop': 520783, 'shop shopping': 760774, 'shopping nola': 763340, 'nola neworleans': 566243, 'neworleans houstonboutique': 560155, 'our storefront is': 624960, 'storefront is closed': 811738, 'to the we': 917180, 'the we asked': 871215, 'we asked that': 970789, 'asked that you': 95833, 'that you shop': 847742, 'shop online and': 760561, 'online and all': 607806, 'and all order': 57879, 'all order will': 43775, 'order will be': 618780, 'will be shipped': 992678, 'be shipped out': 117142, 'shipped out maxi': 758804, 'out maxi strippedmaxi': 626545, 'maxi strippedmaxi maxilove': 520781, 'strippedmaxi maxilove maxidress': 813901, 'maxilove maxidress shop': 520790, 'maxidress shop shopping': 520784, 'shop shopping nola': 760777, 'shopping nola neworleans': 763341, 'nola neworleans houstonboutique': 566244, 'whether in': 985516, '19 exposure': 6908, 'exposure but': 292961, 'but expert': 145693, 'whether in store': 985517, 'store or online': 809353, 'or online grocery': 616388, 'grocery shopping could': 365011, 'shopping could lead': 762406, 'lead to covid': 483335, 'covid 19 exposure': 213064, '19 exposure but': 6909, 'exposure but expert': 292962, 'but expert say': 145694, 'expert say there': 291962, 'say there are': 739318, 'are way to': 91551, 'way to limit': 970046, 'to limit the': 909302, 'limit the risk': 492519, 'pension': 646643, 'saver': 737805, 'defraud': 232480, 'calculated': 155302, '6bn': 21585, 'pension saver': 646662, 'saver have': 737808, 'been warned': 122345, 'be extra': 114756, 'extra vigilant': 293689, 'vigilant about': 957224, 'to defraud': 904068, 'defraud them': 232490, 'them of': 876073, 'life saving': 489010, 'saving risk': 737954, 'risk advisory': 723354, 'advisory firm': 33760, 'firm calculated': 308325, 'calculated that': 155312, 'that 10': 842426, '10 00s': 1217, '00s of': 707, 'of saver': 589334, 'been fleeced': 121158, 'fleeced out': 310297, 'of 6bn': 579654, '6bn over': 21586, 'year 19': 1014329, 'pension saver have': 646663, 'saver have been': 737809, 'have been warned': 379741, 'been warned to': 122347, 'warned to be': 967044, 'to be extra': 901247, 'be extra vigilant': 114759, 'extra vigilant about': 293690, 'vigilant about scammer': 957226, 'about scammer using': 26148, 'scammer using the': 740645, 'using the to': 950717, 'the to defraud': 869673, 'to defraud them': 904073, 'defraud them of': 232491, 'them of their': 876075, 'of their life': 591676, 'their life saving': 873844, 'life saving risk': 489017, 'saving risk advisory': 737955, 'risk advisory firm': 723355, 'advisory firm calculated': 33761, 'firm calculated that': 308326, 'calculated that 10': 155313, 'that 10 00s': 842427, '10 00s of': 1218, '00s of saver': 711, 'of saver have': 589335, 'have been fleeced': 379544, 'been fleeced out': 121159, 'fleeced out of': 310298, 'out of 6bn': 626672, 'of 6bn over': 579655, '6bn over the': 21587, 'over the year': 630787, 'the year 19': 872144, 'legislation': 485963, 'initiative': 438598, 'expands': 290520, 'the senate': 866700, 'senate ha': 749706, 'the 60': 848163, '60 vote': 21037, 'vote to': 960514, 'to approve': 900675, 'approve the': 83117, 'house passed': 406452, 'passed coronavirus': 643260, 'coronavirus response': 206663, 'response legislation': 715749, 'legislation sending': 485984, 'sending it': 750034, 'to pres': 912014, 'pres trump': 670451, 'trump who': 933976, 'sign it': 769136, 'into law': 442691, 'law thread': 482421, 'thread free': 893545, 'free covid': 331738, 'testing paid': 839597, 'leave boost': 484757, 'boost food': 134954, 'security initiative': 744648, 'initiative expands': 438620, 'expands unemployment': 290545, 'unemployment insurance': 941231, 'breaking the senate': 139065, 'the senate ha': 866703, 'senate ha the': 749707, 'ha the 60': 372185, 'the 60 vote': 848167, '60 vote to': 21038, 'vote to approve': 960515, 'to approve the': 900677, 'approve the house': 83118, 'the house passed': 857623, 'house passed coronavirus': 406453, 'passed coronavirus response': 643261, 'coronavirus response legislation': 206665, 'response legislation sending': 715750, 'legislation sending it': 485985, 'sending it to': 750035, 'it to pres': 461741, 'to pres trump': 912015, 'pres trump who': 670456, 'trump who is': 933977, 'who is expected': 989072, 'expected to sign': 291001, 'to sign it': 914636, 'sign it into': 769137, 'it into law': 458824, 'into law thread': 442693, 'law thread free': 482422, 'thread free covid': 893546, 'free covid 19': 331739, '19 testing paid': 11107, 'testing paid sick': 839598, 'sick leave boost': 768486, 'leave boost food': 484758, 'boost food security': 134955, 'food security initiative': 316356, 'security initiative expands': 744649, 'initiative expands unemployment': 438621, 'expands unemployment insurance': 290546, 'mueller': 545527, 'the at': 848995, 'at mueller': 99792, 'mueller this': 545532, 'morning insane': 541312, 'insane 19': 439024, 'toiletpaper groceryworkers': 922039, 'the at mueller': 849000, 'at mueller this': 99793, 'mueller this morning': 545533, 'this morning insane': 888972, 'morning insane 19': 541313, 'insane 19 toiletpaper': 439025, '19 toiletpaper groceryworkers': 11489, 'institutional': 440482, '19 killed': 8235, 'killed million': 474602, 'million american': 532051, 'american because': 51835, 'didn have': 241081, 'have paid': 381867, 'leave and': 484730, 'economy set': 268209, 'up total': 946473, 'total institutional': 926172, 'institutional failure': 440486, 'failure and': 296261, 'and break': 59171, 'down of': 256994, 'civil society': 179550, 'remember when the': 710418, 'when the covid': 984137, 'covid 19 killed': 213319, '19 killed million': 8236, 'killed million american': 474603, 'million american because': 532053, 'american because we': 51837, 'because we didn': 119798, 'we didn have': 971301, 'didn have paid': 241093, 'have paid sick': 381870, 'sick leave and': 768483, 'leave and then': 484736, 'and then the': 73815, 'then the collapse': 877610, 'collapse of our': 186042, 'of our consumer': 587440, 'our consumer economy': 622532, 'consumer economy set': 197316, 'economy set up': 268210, 'set up total': 753584, 'up total institutional': 946474, 'total institutional failure': 926173, 'institutional failure and': 440487, 'failure and break': 296262, 'and break down': 59172, 'break down of': 138707, 'down of civil': 256996, 'of civil society': 581434, 'clock': 182393, 'roll factory': 725294, 'factory working': 296024, 'working round': 1008899, 'the clock': 851029, 'clock to': 182412, 'with panic': 1000079, 'inside the toilet': 439423, 'the toilet roll': 869711, 'toilet roll factory': 921569, 'roll factory working': 725295, 'factory working round': 296025, 'working round the': 1008900, 'round the clock': 726360, 'the clock to': 851036, 'clock to deal': 182413, 'deal with panic': 229566, 'with panic buying': 1000083, 'will endure': 993312, 'endure after': 276292, 'they mean': 882669, 'for marketer': 323257, 'consumer trend that': 199389, 'trend that will': 931467, 'that will endure': 847572, 'will endure after': 993313, 'endure after covid': 276294, '19 and what': 5136, 'what they mean': 982407, 'they mean for': 882670, 'mean for marketer': 524445, 'travelchatsa': 930595, 'for vegan': 327527, 'vegan sushi': 953888, 'and wine': 75714, 'wine at': 995774, 'at travelchatsa': 101360, 'going for vegan': 355153, 'for vegan sushi': 327528, 'vegan sushi and': 953889, 'sushi and wine': 829451, 'and wine at': 75715, 'wine at travelchatsa': 995775, 'really do': 702122, 'to wonder': 918667, 'wonder why': 1004037, 'it necessary': 459747, 'for whole': 327863, 'really do have': 702125, 'do have to': 249379, 'have to wonder': 383340, 'to wonder why': 918670, 'wonder why it': 1004041, 'why it necessary': 991145, 'it necessary for': 459749, 'necessary for whole': 553996, 'for whole family': 327864, 'whole family to': 990205, 'family to come': 298322, 'to come to': 903054, 'come to the': 187606, 'jerseyplug': 465242, 'yall': 1014061, 'hmu': 398715, 'jerseyplug with': 465243, 'no sport': 565567, 'sport in': 789934, 'life wanna': 489184, 'wanna provide': 965659, 'provide yall': 686551, 'yall with': 1014104, 'with quality': 1000374, 'quality jersey': 691809, 'jersey with': 465235, 'with lower': 999340, 'than retail': 841089, 'retail all': 717800, 'all jersey': 43285, 'jersey now': 465223, 'are 40': 84132, '40 each': 18571, 'each until': 264316, 'until sport': 943834, 'sport return': 789974, 'return due': 719833, 'to dm': 904467, 'dm are': 248875, 'are always': 84492, 'always open': 49675, 'open hmu': 612304, 'jerseyplug with no': 465244, 'with no sport': 999791, 'no sport in': 565568, 'sport in our': 789935, 'in our life': 426310, 'our life wanna': 623738, 'life wanna provide': 489185, 'wanna provide yall': 965660, 'provide yall with': 686552, 'yall with quality': 1014105, 'with quality jersey': 1000375, 'quality jersey with': 691810, 'jersey with lower': 465236, 'with lower price': 999345, 'lower price than': 505970, 'price than retail': 676780, 'than retail all': 841090, 'retail all jersey': 717801, 'all jersey now': 43286, 'jersey now are': 465224, 'now are 40': 574095, 'are 40 each': 84133, '40 each until': 18572, 'each until sport': 264317, 'until sport return': 943835, 'sport return due': 789975, 'return due to': 719834, 'due to dm': 261764, 'to dm are': 904468, 'dm are always': 248876, 'are always open': 84505, 'always open hmu': 49677, 'aide': 39493, 'ups': 947727, 'collector': 186546, 'supplied': 824439, 'hit from': 398231, 'the true': 870044, 'true hero': 933098, 'crisis first': 217374, 'responder nurse': 715497, 'doctor nursing': 251040, 'nursing care': 577603, 'care aide': 163830, 'aide grocery': 39498, 'clerk truck': 181801, 'driver amazon': 259394, 'amazon ups': 51175, 'ups worker': 947783, 'worker trash': 1008049, 'trash collector': 930148, 'collector people': 186576, 'who keep': 989149, 'healthy fed': 387605, 'fed supplied': 301896, 'supplied care': 824452, 'the economy take': 854022, 'economy take hit': 268250, 'take hit from': 832185, 'hit from covid': 398234, 'seeing the true': 746508, 'the true hero': 870051, 'true hero of': 933102, 'this crisis first': 887038, 'crisis first responder': 217375, 'first responder nurse': 308955, 'responder nurse doctor': 715498, 'nurse doctor nursing': 577303, 'doctor nursing care': 251042, 'nursing care aide': 577604, 'care aide grocery': 163831, 'aide grocery store': 39499, 'store clerk truck': 807033, 'clerk truck driver': 181802, 'truck driver amazon': 932762, 'driver amazon ups': 259397, 'amazon ups worker': 51176, 'ups worker trash': 947785, 'worker trash collector': 1008050, 'trash collector people': 930149, 'collector people who': 186577, 'people who keep': 650310, 'who keep safe': 989153, 'keep safe healthy': 471880, 'safe healthy fed': 729746, 'healthy fed supplied': 387607, 'fed supplied care': 301897, 'supplied care for': 824453, 'care for them': 163956, 'am the': 50485, 'one waiting': 607351, 'this to': 890724, 'happen trump': 377197, 'trump toiletpaper': 933928, 'am the only': 50488, 'only one waiting': 610889, 'one waiting for': 607352, 'waiting for this': 964341, 'for this to': 327078, 'this to happen': 890736, 'to happen trump': 907165, 'happen trump toiletpaper': 377198, 'jobless': 466324, '282': 16429, 'gut': 368847, 'punched': 689175, 'developer': 239750, 'lumber': 506661, 'cement': 168996, 'shareknowledge': 755498, 'dcn': 228992, 'week initial': 976395, 'initial jobless': 438534, 'jobless claim': 466329, 'claim have': 179738, 'gone from': 356280, 'from 282': 334259, '282 00': 16430, 'million consumer': 532113, 'being gut': 125209, 'gut punched': 368854, 'punched economy': 689176, 'economy construction': 267770, 'construction developer': 195790, 'developer banking': 239753, 'banking steel': 110459, 'steel lumber': 799342, 'lumber cement': 506662, 'cement 19': 168997, '19 shareknowledge': 10438, 'shareknowledge dcn': 755499, 'dcn canada': 228993, 'in the past': 429441, 'past week initial': 643648, 'week initial jobless': 976396, 'initial jobless claim': 438535, 'jobless claim have': 466332, 'claim have gone': 179739, 'have gone from': 380793, 'gone from 282': 356281, 'from 282 00': 334260, '282 00 to': 16431, '00 to million': 549, 'to million to': 910136, 'million to million': 532390, 'to million consumer': 910133, 'million consumer spending': 532114, 'consumer spending is': 199071, 'spending is being': 788869, 'is being gut': 446087, 'being gut punched': 125210, 'gut punched economy': 368855, 'punched economy construction': 689177, 'economy construction developer': 267771, 'construction developer banking': 195791, 'developer banking steel': 239754, 'banking steel lumber': 110460, 'steel lumber cement': 799343, 'lumber cement 19': 506663, 'cement 19 shareknowledge': 168998, '19 shareknowledge dcn': 10439, 'shareknowledge dcn canada': 755500, 'amex': 52354, 'close our': 182750, 'our gym': 623332, 'gym of': 369336, 'of 16': 579368, '16 20': 4061, '20 our': 13234, 'store of': 809142, 'of 22': 579520, '20 due': 13043, 'the ny': 861993, 'ny mandate': 577895, 'mandate because': 512992, 'virus our': 958579, 'our main': 623834, 'main source': 508816, 'income will': 432498, 'will amex': 992280, 'amex help': 52357, 'my bill': 547449, 'bill due': 130557, 'due today': 262040, 'today cannot': 919362, 'through to': 894860, 'to amex': 900424, 'amex by': 52355, 'by fb': 152559, 'fb or': 300661, 'or phone': 616599, 'phone amp': 654878, 'we had to': 971726, 'to close our': 902891, 'close our gym': 182752, 'our gym of': 623333, 'gym of 16': 369337, 'of 16 20': 579369, '16 20 our': 4062, '20 our retail': 13235, 'retail store of': 718670, 'store of 22': 809143, 'of 22 20': 579521, '22 20 due': 15162, '20 due to': 13044, 'to the ny': 916911, 'the ny mandate': 861997, 'ny mandate because': 577896, 'mandate because of': 512993, '19 virus our': 11825, 'virus our main': 958581, 'our main source': 623840, 'main source of': 508817, 'of income will': 585075, 'income will amex': 432499, 'will amex help': 992281, 'amex help my': 52358, 'help my bill': 390119, 'my bill due': 547452, 'bill due today': 130559, 'due today cannot': 262041, 'today cannot get': 919363, 'cannot get through': 161912, 'get through to': 348442, 'through to amex': 894862, 'to amex by': 900425, 'amex by fb': 52356, 'by fb or': 152560, 'fb or phone': 300662, 'or phone amp': 616600, 'released data': 709032, 'data on': 226318, 'the six': 867287, 'six stage': 772687, 'stage of': 793202, 'behavior during': 124006, 'during including': 262720, 'including prediction': 432114, 'for what': 327790, 'what coming': 981233, 'coming next': 188148, 'next great': 561385, 'released data on': 709033, 'data on the': 226326, 'on the six': 604367, 'the six stage': 867290, 'six stage of': 772688, 'stage of consumer': 793204, 'of consumer behavior': 581712, 'consumer behavior during': 196468, 'behavior during including': 124009, 'during including prediction': 262721, 'including prediction for': 432115, 'prediction for what': 669664, 'for what coming': 327795, 'what coming next': 981234, 'coming next great': 188149, 'next great insight': 561387, 'thug': 895280, '7k': 22473, 'skyrocketed': 773346, 'original': 619550, 'once again': 605555, 'again citizen': 36947, 'citizen of': 178934, 'of pakistan': 587670, 'pakistan look': 634470, 'look up': 502649, 'state for': 795586, 'for public': 324851, 'health facility': 386425, 'facility during': 295325, 'during while': 263411, 'the private': 864482, 'private sector': 678973, 'sector continues': 744142, 'to thug': 917568, 'thug common': 895283, 'common man': 189407, 'man charging': 512024, 'charging 5k': 173449, '5k to': 20719, 'to 7k': 899841, '7k for': 22476, 'for simple': 325628, 'simple test': 770110, 'while hand': 986898, 'price skyrocketed': 676442, 'skyrocketed to': 773390, 'to 300': 899673, '300 of': 17335, 'the original': 862482, 'original price': 619579, 'once again citizen': 605560, 'again citizen of': 36948, 'citizen of pakistan': 178938, 'of pakistan look': 587677, 'pakistan look up': 634471, 'look up to': 502652, 'to the state': 917091, 'the state for': 867774, 'state for public': 795590, 'for public health': 324853, 'public health facility': 688067, 'health facility during': 386428, 'facility during while': 295327, 'during while the': 263412, 'while the private': 987410, 'the private sector': 864489, 'private sector continues': 678976, 'sector continues to': 744143, 'continues to thug': 201504, 'to thug common': 917569, 'thug common man': 895284, 'common man charging': 189410, 'man charging 5k': 512025, 'charging 5k to': 173450, '5k to 7k': 20720, 'to 7k for': 899842, '7k for simple': 22477, 'for simple test': 325629, 'simple test while': 770111, 'test while hand': 839237, 'while hand sanitizer': 986899, 'and mask price': 66760, 'mask price skyrocketed': 519150, 'price skyrocketed to': 676448, 'skyrocketed to 300': 773391, 'to 300 of': 899678, '300 of the': 17336, 'of the original': 591304, 'the original price': 862490, 'paper do': 640096, 'we really': 973017, 'need klopapier': 555135, 'klopapier toiletpaper': 475933, 'toilet paper do': 921257, 'paper do we': 640099, 'do we really': 250483, 'we really need': 973026, 'really need klopapier': 702438, 'need klopapier toiletpaper': 555136, 'socialdistanacing should': 780090, 'should people': 766316, 'sell grocery': 748747, 'grocery at': 364284, 'over inflated': 630322, 'price online': 675746, 'panicbuyinguk socialdistanacing should': 639168, 'socialdistanacing should people': 780093, 'should people be': 766317, 'people be allowed': 647222, 'allowed to sell': 46246, 'to sell grocery': 914154, 'sell grocery at': 748748, 'grocery at over': 364286, 'at over inflated': 100050, 'over inflated price': 630323, 'inflated price online': 437060, 'protips': 685967, 'out protips': 627074, 'protips for': 685968, 'for avoiding': 319541, 'check out protips': 174572, 'out protips for': 627075, 'protips for avoiding': 685969, 'for avoiding scam': 319544, 'evidenced': 288404, 'barren': 111307, 'georgian': 346055, 'evidenced by': 288405, 'by barren': 151931, 'barren grocery': 111310, 'growing line': 367209, 'at nonprofit': 99901, 'nonprofit food': 566681, 'bank georgian': 109861, 'georgian are': 346056, 'are increasingly': 87498, 'increasingly anxious': 433755, 'anxious about': 78826, 'the possibility': 864068, 'possibility they': 665555, 'could go': 209214, 'go hungry': 353688, 'hungry during': 411240, 'via government': 956001, 'evidenced by barren': 288406, 'by barren grocery': 151932, 'barren grocery store': 111311, 'store shelf and': 810057, 'shelf and growing': 756734, 'and growing line': 64013, 'growing line at': 367210, 'line at nonprofit': 492987, 'at nonprofit food': 99902, 'nonprofit food bank': 566682, 'food bank georgian': 313577, 'bank georgian are': 109862, 'georgian are increasingly': 346057, 'are increasingly anxious': 87500, 'increasingly anxious about': 433756, 'anxious about the': 78830, 'about the possibility': 26480, 'the possibility they': 864071, 'possibility they could': 665556, 'they could go': 881829, 'could go hungry': 209218, 'go hungry during': 353690, 'hungry during the': 411243, 'crisis via government': 218315, 'speechless': 788415, 'brooklyn': 140968, 'burn': 142889, 'tie': 895730, 'am speechless': 50420, 'speechless at': 788418, 'this act': 886185, 'act this': 29792, 'this brooklyn': 886617, 'brooklyn bodega': 140975, 'bodega is': 133785, 'offering 10': 594994, '20 off': 13206, 'off all': 593617, 'item much': 463464, 'much respect': 545281, 'respect to': 715078, 'doing this': 252754, 'this others': 889299, 'others note': 621552, 'note do': 572718, 'not burn': 568635, 'burn tie': 142898, 'tie with': 895752, 'make money': 510178, 'money quickly': 536989, 'quickly by': 694489, 'by price': 153652, 'will bite': 992832, 'bite you': 131884, 'the as': 848947, 'as nyclockdown': 94784, 'am speechless at': 50421, 'speechless at this': 788419, 'at this act': 101221, 'this act this': 886188, 'act this brooklyn': 29793, 'this brooklyn bodega': 886618, 'brooklyn bodega is': 140976, 'bodega is offering': 133786, 'is offering 10': 450414, 'offering 10 20': 594995, '10 20 off': 1250, '20 off all': 13207, 'off all food': 593620, 'all food item': 42815, 'food item much': 315217, 'item much respect': 463465, 'much respect to': 545282, 'respect to you': 715086, 'for doing this': 320806, 'doing this others': 252769, 'this others note': 889301, 'others note do': 621553, 'note do not': 572720, 'do not burn': 249687, 'not burn tie': 568636, 'burn tie with': 142899, 'tie with customer': 895753, 'customer who try': 223084, 'try to make': 934639, 'to make money': 909696, 'make money quickly': 510189, 'money quickly by': 536990, 'quickly by price': 694490, 'by price gouging': 153653, 'gouging it will': 359373, 'it will bite': 462378, 'will bite you': 992833, 'bite you in': 131885, 'in the as': 428989, 'the as nyclockdown': 848952, 'yoursafetyismysafety': 1026492, 'forqatarstayhome': 329752, 'moci': 535121, 'food commodity': 313971, 'commodity stock': 189309, 'stock enough': 802082, 'than year': 841479, 'year minister': 1014748, 'minister yoursafetyismysafety': 533505, 'yoursafetyismysafety qatar': 1026494, 'qatar forqatarstayhome': 691489, 'forqatarstayhome moci': 329753, 'food commodity stock': 313979, 'commodity stock enough': 189310, 'stock enough for': 802084, 'enough for more': 277436, 'for more than': 323600, 'more than year': 540701, 'than year minister': 841481, 'year minister yoursafetyismysafety': 1014750, 'minister yoursafetyismysafety qatar': 533506, 'yoursafetyismysafety qatar forqatarstayhome': 1026495, 'qatar forqatarstayhome moci': 691490, 'livestreaming': 496292, 'taobao': 834301, 'persist': 652255, 'ailbaba': 39522, 'jeffclass': 465027, 'jeffsasiatechclass': 465044, 'my podcast': 549798, 'podcast talk': 662310, 'talk on': 833831, 'the rush': 866083, 'to livestreaming': 909358, 'livestreaming and': 496294, 'and taobao': 73024, 'taobao live': 834309, 'live during': 495792, 'during and': 262448, 'to persist': 911672, 'persist ailbaba': 652258, 'ailbaba taobao': 39523, 'taobao china': 834304, 'china digital': 176613, 'digital strategy': 242652, 'strategy jeffclass': 812671, 'jeffclass jeffsasiatechclass': 465028, 'my podcast talk': 549800, 'podcast talk on': 662312, 'talk on the': 833834, 'on the rush': 604340, 'the rush to': 866088, 'rush to livestreaming': 728344, 'to livestreaming and': 909359, 'livestreaming and taobao': 496295, 'and taobao live': 73025, 'taobao live during': 834310, 'live during and': 495793, 'during and why': 262460, 'and why this': 75636, 'going to persist': 355668, 'to persist ailbaba': 911673, 'persist ailbaba taobao': 652259, 'ailbaba taobao china': 39524, 'taobao china digital': 834306, 'china digital strategy': 176614, 'digital strategy jeffclass': 242653, 'strategy jeffclass jeffsasiatechclass': 812672, 'hcws': 384672, 'brave': 138205, 'safeguarding': 730230, 'minority': 533641, 'misleading': 534088, 'of hcws': 584492, 'hcws response': 384677, '19 brave': 5435, 'brave and': 138206, 'and selfless': 71208, 'selfless front': 748527, 'line hcws': 493156, 'hcws are': 384673, 'making sacrifice': 511318, 'sacrifice to': 729114, 'moment through': 536074, 'through safeguarding': 894651, 'safeguarding our': 730233, 'life minority': 488879, 'minority of': 533646, 'hcws exploit': 384675, 'through charging': 894363, 'charging excessive': 173467, 'or making': 616044, 'making misleading': 511219, 'misleading claim': 534091, 'claim about': 179682, 'about their': 26573, 'their product': 874462, 'tale of hcws': 833701, 'of hcws response': 584494, 'hcws response to': 384678, 'covid 19 brave': 212725, '19 brave and': 5436, 'brave and selfless': 138207, 'and selfless front': 71209, 'selfless front line': 748528, 'front line hcws': 338579, 'line hcws are': 493157, 'hcws are making': 384674, 'are making sacrifice': 88002, 'making sacrifice to': 511320, 'sacrifice to meet': 729117, 'meet the moment': 527604, 'the moment through': 860785, 'moment through safeguarding': 536076, 'through safeguarding our': 894652, 'safeguarding our life': 730234, 'our life minority': 623728, 'life minority of': 488880, 'minority of hcws': 533647, 'of hcws exploit': 584493, 'hcws exploit the': 384676, 'exploit the moment': 292365, 'moment through charging': 536075, 'through charging excessive': 894364, 'charging excessive price': 173468, 'excessive price or': 289408, 'price or making': 675783, 'or making misleading': 616046, 'making misleading claim': 511220, 'misleading claim about': 534092, 'claim about their': 179685, 'about their product': 26590, 'gurugram': 368840, 'assures': 97135, 'guru': 368829, 'gram': 361817, 'defeat': 232036, 'gurugram assures': 368841, 'assures people': 97142, 'of guru': 584396, 'guru gram': 368834, 'gram that': 361835, 'amp grocery': 53888, 'item people': 463550, 'need not': 555306, 'panic but': 637442, 'but stay': 147145, 'stay indoors': 797070, 'indoors to': 435431, 'to defeat': 904053, 'defeat covid': 232039, '19 maintain': 8513, 'maintain social': 509031, 'other safeguard': 620867, 'safeguard news': 730208, 'gurugram assures people': 368842, 'assures people of': 97143, 'people of guru': 648917, 'of guru gram': 584397, 'guru gram that': 368835, 'gram that we': 361836, 'we have enough': 971807, 'have enough stock': 380467, 'of food amp': 583643, 'food amp grocery': 313136, 'amp grocery item': 53889, 'grocery item people': 364660, 'item people need': 463555, 'people need not': 648833, 'need not panic': 555308, 'not panic but': 570898, 'panic but stay': 637451, 'but stay indoors': 147147, 'stay indoors to': 797082, 'indoors to defeat': 435432, 'to defeat covid': 904055, 'defeat covid 19': 232040, 'covid 19 maintain': 213390, '19 maintain social': 8514, 'maintain social distancing': 509033, 'distancing and other': 246985, 'and other safeguard': 68398, 'other safeguard news': 620868, 'comfortably': 187883, 'hour earlier': 405558, 'earlier than': 264485, 'usual so': 951021, 'so elderly': 776940, 'disabled customer': 243895, 'customer could': 222276, 'could shop': 209671, 'shop comfortably': 760059, 'comfortably without': 187888, 'an hour earlier': 56080, 'hour earlier than': 405560, 'earlier than usual': 264486, 'than usual so': 841399, 'usual so elderly': 951022, 'so elderly and': 776941, 'and disabled customer': 61391, 'disabled customer could': 243898, 'customer could shop': 222279, 'could shop comfortably': 209672, 'shop comfortably without': 760060, 'comfortably without the': 187889, 'without the shopping': 1002978, 'the shopping frenzy': 867062, 'dunnes': 262304, 'leo': 486383, 'varadkars': 952512, 'repeat': 711500, 'dystopia': 263939, 'dunnes supermarket': 262307, 'have few': 380607, 'few line': 303901, 'of leo': 585781, 'leo varadkars': 486392, 'varadkars covid': 952513, '19 message': 8637, 'message on': 529378, 'on repeat': 603150, 'repeat dystopia': 711509, 'dunnes supermarket have': 262308, 'supermarket have few': 820685, 'have few line': 380612, 'few line of': 303902, 'line of leo': 493305, 'of leo varadkars': 585782, 'leo varadkars covid': 486393, 'varadkars covid 19': 952514, 'covid 19 message': 213429, '19 message on': 8639, 'message on repeat': 529383, 'on repeat dystopia': 603151, '851': 22945, 'pennsylvanian': 646595, 'measured': 525441, 'pa update': 632896, 'update to': 947268, 'date there': 226738, 'are 851': 84145, '851 confirmed': 22946, 'confirmed covid': 194149, 'in pennsylvania': 426576, 'pennsylvania state': 646578, 'state official': 795827, 'are urging': 91392, 'urging pennsylvanian': 948440, 'pennsylvanian to': 646600, 'more measured': 539764, 'measured in': 525448, 'shopping stay': 763967, 'stay with': 797401, 'pa update to': 632897, 'update to date': 947269, 'to date there': 903944, 'date there are': 226739, 'there are 851': 878057, 'are 851 confirmed': 84146, '851 confirmed covid': 22947, 'confirmed covid 19': 194150, 'case in pennsylvania': 165806, 'in pennsylvania state': 426580, 'pennsylvania state official': 646579, 'state official are': 795828, 'official are urging': 595759, 'are urging pennsylvanian': 91393, 'urging pennsylvanian to': 948441, 'pennsylvanian to be': 646601, 'be more measured': 115984, 'more measured in': 539765, 'measured in their': 525449, 'in their grocery': 429745, 'their grocery shopping': 873450, 'grocery shopping stay': 365084, 'shopping stay with': 763969, 'retaliation': 719621, 'tariff': 834587, 'store relatively': 809791, 'relatively young': 708790, 'young customer': 1022584, 'customer just': 222554, 'just told': 470117, 'told me': 923601, 'is chinese': 446523, 'chinese attack': 177195, 'attack in': 102117, 'in retaliation': 427475, 'retaliation for': 719622, 'the tariff': 869153, 'tariff we': 834626, 'we put': 972788, 'put on': 690710, 'on them': 604524, 'them what': 876600, 'the fuck': 855954, 'fuck is': 339587, 'america and': 51447, 'and american': 58064, 'american medium': 52089, 'grocery store relatively': 365711, 'store relatively young': 809792, 'relatively young customer': 708791, 'young customer just': 1022585, 'customer just told': 222559, 'just told me': 470121, 'told me is': 923610, 'me is chinese': 522996, 'is chinese attack': 446524, 'chinese attack in': 177196, 'attack in retaliation': 102120, 'in retaliation for': 427476, 'retaliation for the': 719623, 'for the tariff': 326717, 'the tariff we': 869155, 'tariff we put': 834628, 'we put on': 972791, 'put on them': 690729, 'on them what': 604545, 'them what the': 876602, 'what the fuck': 982318, 'the fuck is': 855968, 'fuck is wrong': 339595, 'wrong with america': 1013149, 'with america and': 997185, 'america and american': 51448, 'and american medium': 58067, 'do if': 249412, 'buy top': 149390, 'or if': 615713, 'the meter': 860541, 'meter itself': 529723, 'what to do': 982453, 'to do if': 904521, 'do if you': 249419, 'go to shop': 354356, 'to shop to': 914496, 'shop to buy': 760941, 'to buy top': 902326, 'buy top up': 149391, 'top up or': 925751, 'up or if': 945682, 'or if you': 615724, 'to the meter': 916879, 'the meter itself': 860543, 'gfc': 349508, 'fintech': 308014, 'australia can': 103245, 'lose consumer': 503429, 'consumer choice': 196791, 'choice under': 177820, 'the cover': 852223, 'cover of': 212266, '19 during': 6673, 'the gfc': 856247, 'gfc competition': 349511, 'competition reduced': 191735, 'reduced and': 706027, 'want covid': 965755, 'kill competition': 474364, 'competition especially': 191695, 'especially new': 280549, 'new idea': 558903, 'idea coming': 413029, 'the fintech': 855256, 'fintech sector': 308029, 'sector my': 744271, 'my comment': 547752, 'comment in': 188422, 'australia can afford': 103246, 'can afford to': 157411, 'afford to lose': 34801, 'to lose consumer': 909457, 'lose consumer choice': 503430, 'consumer choice under': 196797, 'choice under the': 177821, 'under the cover': 940296, 'the cover of': 852224, 'cover of covid': 212268, 'covid 19 during': 212993, '19 during the': 6676, 'during the gfc': 263132, 'the gfc competition': 856248, 'gfc competition reduced': 349513, 'competition reduced and': 191736, 'reduced and don': 706028, 'and don want': 61644, 'don want covid': 254038, 'want covid 19': 965756, '19 to kill': 11438, 'to kill competition': 908923, 'kill competition especially': 474365, 'competition especially new': 191696, 'especially new idea': 280550, 'new idea coming': 558905, 'idea coming from': 413030, 'from the fintech': 337700, 'the fintech sector': 855257, 'fintech sector my': 308030, 'sector my comment': 744272, 'my comment in': 547753, 'comment in the': 188423, 'publicly available': 688575, 'available tool': 104673, 'tool help': 925419, 'help company': 389502, 'company spot': 191102, 'spot pattern': 790092, 'one country': 606125, 'country or': 210943, 'or region': 616826, 'region that': 707466, 'likely repeat': 492091, 'repeat elsewhere': 711510, 'publicly available tool': 688576, 'available tool help': 104674, 'tool help company': 925420, 'help company spot': 389506, 'company spot pattern': 191103, 'spot pattern in': 790093, 'pattern in one': 644474, 'in one country': 426140, 'one country or': 606126, 'country or region': 210946, 'or region that': 616827, 'region that will': 707468, 'that will likely': 847590, 'will likely repeat': 994010, 'likely repeat elsewhere': 492092, 'paper the': 640871, 'spread this': 790833, 'this consumer': 886841, 'behavior expert': 124030, 'expert explains': 291832, 'explains the': 292227, 'chaos we': 173073, 'seeing in': 746332, 'supermarket more': 821533, 'why are people': 990780, 'are people panic': 89044, 'toilet paper the': 921484, 'paper the spread': 640880, 'the spread this': 867641, 'spread this consumer': 790834, 'this consumer behavior': 886842, 'consumer behavior expert': 196474, 'behavior expert explains': 124032, 'expert explains the': 291833, 'explains the chaos': 292231, 'the chaos we': 850695, 'chaos we re': 173075, 'we re seeing': 972958, 're seeing in': 699457, 'seeing in supermarket': 746337, 'in supermarket more': 428632, 'supermarket more via': 821535, 'govindmilk': 361044, 'happymakers': 377772, 'dailyessentials': 224910, 'value to': 952219, 'farmer and': 299250, 'consumer always': 196175, 'always we': 49794, 'safely deliver': 730271, 'deliver your': 233272, 'your most': 1024888, 'most essential': 542299, 'essential daily': 280959, 'daily product': 224753, 'product milk': 681409, 'milk for': 531676, 'the well': 871376, 'of both': 580791, 'both our': 135997, 'and workforce': 75887, 'workforce govindmilk': 1008361, 'govindmilk happymakers': 361045, 'happymakers dailyessentials': 377773, 'dailyessentials lockdown': 224911, 'value to the': 952225, 'to the farmer': 916700, 'the farmer and': 854943, 'farmer and quality': 299260, 'and quality to': 69851, 'quality to the': 691863, 'the consumer always': 851491, 'consumer always we': 196176, 'always we will': 49795, 'continue to safely': 201248, 'to safely deliver': 913714, 'safely deliver your': 730272, 'deliver your most': 233275, 'your most essential': 1024889, 'most essential daily': 542300, 'essential daily product': 280960, 'daily product milk': 224754, 'product milk for': 681410, 'milk for the': 531677, 'for the well': 326777, 'the well being': 871377, 'being of both': 125464, 'of both our': 580795, 'both our consumer': 135998, 'our consumer and': 622519, 'consumer and workforce': 196254, 'and workforce govindmilk': 75888, 'workforce govindmilk happymakers': 1008362, 'govindmilk happymakers dailyessentials': 361046, 'happymakers dailyessentials lockdown': 377774, 'itapema': 462977, 'sc': 739840, 'coro': 203765, 'grocery we': 366113, 'we ordered': 972660, 'ordered online': 618879, 'online just': 608452, 'just shutdown': 469798, 'shutdown it': 768052, 'it online': 460078, 'are huge': 87257, 'huge line': 410086, 'line on': 493322, 'store police': 809605, 'police on': 663136, 'on street': 603711, 'in itapema': 424324, 'itapema sc': 462978, 'sc making': 739850, 'sure people': 827651, 'people stay': 649555, 'home police': 401877, 'police here': 663051, 'here closing': 392873, 'store coro': 807172, 'the grocery we': 856834, 'grocery we ordered': 366117, 'we ordered online': 972664, 'ordered online just': 618883, 'online just shutdown': 608454, 'just shutdown it': 469799, 'shutdown it online': 768053, 'it online store': 460087, 'online store there': 609475, 'store there are': 810646, 'there are huge': 878114, 'are huge line': 87259, 'huge line on': 410090, 'line on all': 493323, 'all grocery store': 43012, 'grocery store police': 365667, 'store police on': 809609, 'police on street': 663137, 'on street in': 603715, 'street in itapema': 812997, 'in itapema sc': 424325, 'itapema sc making': 462979, 'sc making sure': 739851, 'making sure people': 511387, 'sure people stay': 827658, 'people stay at': 649556, 'at home police': 99084, 'home police here': 401878, 'police here closing': 663052, 'here closing all': 392874, 'all store coro': 44492, 'hook': 403339, 'dirty': 243724, 'like need': 490842, 'take sign': 832583, 'sign to': 769239, 'to hook': 907957, 'hook on': 403342, 'trolley to': 932486, 'stop dirty': 804607, 'dirty look': 243758, 'look not': 502542, 'not hoarder': 569991, 'hoarder shopping': 399102, 'several elderly': 753829, 'elderly family': 270671, 'and neighbour': 67510, 'neighbour in': 557218, 'in self': 427782, 'isolation am': 455184, 'am putting': 50329, 'putting it': 691151, 'it off': 459983, 'off long': 593956, 'long possible': 501564, 'possible 19': 665560, 'feel like need': 302732, 'like need to': 490843, 'to take sign': 916235, 'take sign to': 832584, 'sign to hook': 769241, 'to hook on': 907958, 'hook on my': 403343, 'on my supermarket': 602323, 'my supermarket trolley': 550285, 'supermarket trolley to': 823569, 'trolley to stop': 932491, 'to stop dirty': 915514, 'stop dirty look': 804608, 'dirty look not': 243762, 'look not hoarder': 502543, 'not hoarder shopping': 569992, 'hoarder shopping for': 399103, 'shopping for several': 762709, 'for several elderly': 325514, 'several elderly family': 753830, 'elderly family and': 270672, 'family and neighbour': 297596, 'and neighbour in': 67511, 'neighbour in self': 557219, 'in self isolation': 427783, 'self isolation am': 747752, 'isolation am putting': 455185, 'am putting it': 50330, 'putting it off': 691156, 'it off long': 459986, 'off long possible': 593957, 'long possible 19': 501565, 'valet': 951900, 'there grocery': 878442, 'store valet': 811037, 'valet in': 951901, 'my building': 547570, 'building watching': 142151, 'the valet': 870630, 'valet taking': 951903, 'taking cart': 833299, 'cart from': 165307, 'people parking': 649075, 'parking people': 642114, 'people car': 647443, 'etc with': 282897, 'no glove': 564352, 'glove on': 352816, 'on not': 602440, 'sanitizer etc': 734826, 'there grocery store': 878443, 'grocery store valet': 365908, 'store valet in': 811038, 'valet in front': 951902, 'front of my': 338645, 'of my building': 586736, 'my building watching': 547572, 'building watching the': 142152, 'watching the valet': 968806, 'the valet taking': 870631, 'valet taking cart': 951904, 'taking cart from': 833300, 'cart from people': 165308, 'from people parking': 336888, 'people parking people': 649076, 'parking people car': 642115, 'people car etc': 647444, 'car etc with': 163078, 'etc with no': 282899, 'with no glove': 999756, 'no glove on': 564357, 'glove on not': 352823, 'on not using': 602442, 'not using hand': 572376, 'hand sanitizer etc': 375387, 'unavailability': 939435, 'food hoarding': 314822, 'hoarding and': 399174, 'and unavailability': 74593, 'unavailability in': 939438, 'panic can': 637990, 'ask to': 95652, 'bring emergency': 139965, 'ration to': 697742, 'to lasvegas': 909081, 'lasvegas people': 480813, 'most others': 542593, 'others have': 621442, 'have just': 381196, 'just enough': 468673, 'wait out': 964170, 'lockdown or': 499745, 'or confinement': 614789, 'with food hoarding': 998491, 'food hoarding and': 314823, 'hoarding and unavailability': 399193, 'and unavailability in': 74594, 'unavailability in store': 939439, 'in store due': 428407, 'to panic can': 911392, 'panic can you': 637993, 'can you ask': 160276, 'you ask to': 1017320, 'ask to bring': 95654, 'to bring emergency': 902036, 'bring emergency food': 139966, 'food ration to': 316123, 'ration to lasvegas': 697744, 'to lasvegas people': 909082, 'lasvegas people need': 480814, 'people need food': 648821, 'need food and': 554787, 'food and most': 313287, 'and most others': 67272, 'most others have': 542594, 'others have just': 621449, 'have just enough': 381205, 'just enough to': 468674, 'enough to wait': 277729, 'to wait out': 918269, 'wait out the': 964171, 'out the lockdown': 627387, 'the lockdown or': 859622, 'lockdown or confinement': 499746, 'apr': 83354, '1203': 3035, '1182': 2691, '840': 22884, '646': 21322, 'atnix': 101987, 'trending australian': 931530, 'australian news': 103511, 'news story': 560830, 'for 13': 318648, '13 apr': 3182, 'apr 2020': 83362, '2020 1203': 14090, '1203 tweet': 3036, 'tweet 1182': 936306, '1182 tweet': 2692, 'tweet 840': 936321, '840 tweet': 22885, 'tweet 646': 936319, '646 tweet': 21323, 'tweet 621': 936317, '621 tweet': 21242, 'tweet atnix': 936347, 'trending australian news': 931531, 'australian news story': 103512, 'news story for': 560833, 'story for 13': 811973, 'for 13 apr': 318649, '13 apr 2020': 3183, 'apr 2020 1203': 83363, '2020 1203 tweet': 14091, '1203 tweet 1182': 3037, 'tweet 1182 tweet': 936307, '1182 tweet 840': 2693, 'tweet 840 tweet': 936322, '840 tweet 646': 22886, 'tweet 646 tweet': 936320, '646 tweet 621': 21324, 'tweet 621 tweet': 936318, '621 tweet atnix': 21243, 'ya': 1013960, 'who employer': 988689, 'employer don': 274506, 'don care': 253417, 're forced': 698700, 'come into': 187384, 'into work': 443300, 'job keep': 465935, 'keep pharmacy': 471790, 'pharmacy open': 654392, 'and close': 59997, 'health matter': 386626, 'matter too': 520642, 'too ya': 925182, 'ya know': 1014005, 'so what about': 778710, 'what about retail': 980990, 'about retail worker': 26098, 'retail worker who': 718906, 'worker who employer': 1008209, 'who employer don': 988690, 'employer don care': 274507, 'don care and': 253419, 'care and we': 163849, 'we re forced': 972878, 're forced to': 698702, 'forced to come': 328623, 'to come into': 903035, 'come into work': 187396, 'into work in': 443305, 'work in order': 1005333, 'order to keep': 618689, 'keep our job': 471736, 'our job keep': 623600, 'job keep pharmacy': 465936, 'keep pharmacy open': 471791, 'pharmacy open and': 654393, 'open and close': 612052, 'and close the': 60003, 'close the store': 182848, 'the store cashier': 867993, 'cashier and our': 166459, 'and our health': 68492, 'our health matter': 623376, 'health matter too': 386627, 'matter too ya': 520644, 'too ya know': 925183, 'motto': 543370, 'goodbye': 357989, 'fuckyoucorona': 340093, 'new motto': 559118, 'motto now': 543375, 'now until': 576269, 'coronavirus pass': 206536, 'pass goodbye': 643204, 'goodbye online': 357998, 'now fuckyoucorona': 574757, 'new motto now': 559120, 'motto now until': 543376, 'now until the': 576270, 'until the coronavirus': 943849, 'the coronavirus pass': 851891, 'coronavirus pass goodbye': 206537, 'pass goodbye online': 643205, 'goodbye online shopping': 357999, 'shopping for now': 762700, 'for now fuckyoucorona': 323968, 'doubt': 256180, 'ah': 39087, 'bye': 154798, 'jhoots': 465434, 'you prove': 1020478, 'prove beyond': 686100, 'beyond doubt': 129160, 'doubt that': 256214, 'no management': 564694, 'management had': 512572, 'had given': 373137, 'given instruction': 351027, 'instruction to': 440573, 'to introduce': 908468, 'introduce high': 443384, 'they seemed': 883301, 'to apply': 900651, 'entire store': 278746, 'store ah': 806103, 'ah no': 39092, 'in answering': 420412, 'answering that': 78210, 'get off': 347681, 'street before': 812923, '19 hit': 7541, 'hit bye': 398191, 'bye jhoots': 154807, 'can you prove': 160326, 'you prove beyond': 1020479, 'prove beyond doubt': 686101, 'beyond doubt that': 129161, 'doubt that no': 256217, 'that no management': 845360, 'no management had': 564695, 'management had given': 512573, 'had given instruction': 373138, 'given instruction to': 351028, 'instruction to introduce': 440574, 'to introduce high': 908469, 'introduce high price': 443385, 'high price they': 395283, 'price they seemed': 676900, 'they seemed to': 883304, 'seemed to apply': 746727, 'to apply to': 900660, 'apply to the': 82621, 'to the entire': 916675, 'the entire store': 854367, 'entire store ah': 278747, 'store ah no': 806104, 'ah no point': 39093, 'point in answering': 662514, 'in answering that': 420413, 'answering that you': 78211, 'that you will': 847753, 'you will get': 1022336, 'will get off': 993515, 'get off the': 347684, 'off the high': 594247, 'high street before': 395429, 'street before covid': 812924, 'covid 19 hit': 213210, '19 hit bye': 7542, 'hit bye jhoots': 398192, 'repair': 711448, 'apple confirms': 82316, 'confirms device': 194232, 'device left': 239915, 'for repair': 325129, 'repair at': 711453, 'be picked': 116411, 'up due': 944747, 'apple confirms device': 82317, 'confirms device left': 194233, 'device left for': 239917, 'left for repair': 485468, 'for repair at': 325130, 'repair at retail': 711454, 'retail store can': 718621, 'store can be': 806849, 'can be picked': 157662, 'be picked up': 116412, 'picked up due': 655812, 'up due to': 944748, 'buy set': 149163, 'of 24': 579530, '24 pack': 15671, 'paper roll': 640685, 'roll it': 725357, 'it make': 459507, 'many asshole': 513801, 'have stoppanicbuying': 382783, 'people still buy': 649585, 'still buy set': 800317, 'buy set of': 149164, 'set of 24': 753439, 'of 24 pack': 579532, '24 pack of': 15672, 'toilet paper roll': 921424, 'paper roll it': 640691, 'roll it make': 725360, 'it make you': 459520, 'you wonder how': 1022408, 'how many asshole': 408244, 'many asshole people': 513802, 'asshole people think': 96546, 'think they have': 885681, 'they have stoppanicbuying': 882382, 'haborfreight': 372725, 'carol': 164816, 'burnett': 142917, 'quarantine lockdown': 692348, 'lockdown toiletpaper': 500064, 'tp haborfreight': 927824, 'haborfreight toilet': 372726, 'toilet tissue': 921634, 'tissue from': 899149, 'the carol': 850435, 'carol burnett': 164817, 'burnett show': 142920, 'show full': 766957, 'full sketch': 340887, 'sketch via': 772895, 'quarantine lockdown toiletpaper': 692351, 'lockdown toiletpaper tp': 500067, 'toiletpaper tp haborfreight': 922748, 'tp haborfreight toilet': 927825, 'haborfreight toilet tissue': 372727, 'toilet tissue from': 921638, 'tissue from the': 899150, 'from the carol': 337628, 'the carol burnett': 850436, 'carol burnett show': 164819, 'burnett show full': 142921, 'show full sketch': 766958, 'full sketch via': 340888, 'aljazeera': 41868, 'aljazeera reporting': 41869, 'reporting uk': 712780, 'uk household': 938458, 'household have': 406828, 'have bought': 379823, 'bought an': 136496, 'extra billion': 293458, 'dollar of': 253043, 'buying epidemic': 150228, 'epidemic we': 279469, 'experiencing industry': 291672, 'industry say': 436086, 'supply just': 825477, 'just glut': 468822, 'glut of': 353106, 'aljazeera reporting uk': 41870, 'reporting uk household': 712781, 'uk household have': 938459, 'household have bought': 406829, 'have bought an': 379825, 'bought an extra': 136498, 'an extra billion': 56009, 'extra billion dollar': 293460, 'billion dollar of': 130806, 'dollar of food': 253044, 'supply during the': 825196, 'during the panic': 263169, 'panic buying epidemic': 637717, 'buying epidemic we': 150229, 'epidemic we are': 279470, 'we are experiencing': 970552, 'are experiencing industry': 86346, 'experiencing industry say': 291673, 'industry say there': 436088, 'are no shortage': 88281, 'shortage of supply': 765137, 'of supply just': 590487, 'supply just glut': 825478, 'just glut of': 468823, 'glut of over': 353108, 'of over buying': 587621, 'memo': 528396, 'supermarket didn': 819959, 'didn get': 241065, 'the memo': 860465, 'memo about': 528397, 'supermarket didn get': 819960, 'didn get the': 241069, 'get the memo': 348266, 'the memo about': 860466, 'memo about in': 528398, '2p': 16824, '11a': 2707, 'pt': 687600, 'today join': 919753, 'join consumer': 466694, 'advocate and': 33820, 'and expert': 62504, 'and policy': 69164, 'policy for': 663407, 'for on': 324062, 'on relief': 603135, 'relief online': 709405, 'or via': 617663, 'via telephone': 956287, 'telephone at': 836800, 'at 2p': 97576, '2p et': 16825, 'et 11a': 282343, '11a pt': 2712, 'today join consumer': 919754, 'join consumer advocate': 466695, 'consumer advocate and': 196064, 'advocate and expert': 33821, 'and expert from': 62505, 'expert from and': 291844, 'from and policy': 334522, 'and policy for': 69166, 'policy for on': 663411, 'for on relief': 324067, 'on relief online': 603137, 'relief online or': 709406, 'online or via': 608672, 'or via telephone': 617666, 'via telephone at': 956288, 'telephone at 2p': 836801, 'at 2p et': 97577, '2p et 11a': 16826, 'et 11a pt': 282344, 'mecklenburg': 525864, 'pantry across': 639506, 'across mecklenburg': 29385, 'mecklenburg county': 525865, 'county will': 211535, 'will stay': 994958, 'open throughout': 612580, 'order which': 618771, 'which start': 986333, 'start at': 794207, 'at thursday': 101275, 'thursday many': 895395, 'many pantry': 514471, 'pantry are': 639526, 'now supporting': 575943, 'supporting double': 827124, 'double normal': 256029, 'normal demand': 567134, 'demand because': 235059, 'food pantry across': 315764, 'pantry across mecklenburg': 639508, 'across mecklenburg county': 29386, 'mecklenburg county will': 525866, 'county will stay': 211537, 'will stay open': 994964, 'stay open throughout': 797164, 'open throughout the': 612581, 'throughout the stay': 894984, 'home order which': 401786, 'order which start': 618773, 'which start at': 986334, 'start at thursday': 794214, 'at thursday many': 101276, 'thursday many pantry': 895396, 'many pantry are': 514472, 'pantry are now': 639534, 'are now supporting': 88601, 'now supporting double': 575944, 'supporting double normal': 827125, 'double normal demand': 256030, 'normal demand because': 567135, 'demand because of': 235060, 'psa': 687391, 'lather': 481629, 'psa wash': 687446, 'hand be': 374821, 'be sure': 117469, 'to lather': 909087, 'lather with': 481630, 'second if': 743742, 'find water': 307373, 'an antimicrobial': 55338, 'antimicrobial hand': 78533, 'that contains': 843310, 'contains 60': 200617, '60 alcohol': 20879, 'alcohol not': 41051, 'an antibacterial': 55332, 'antibacterial disinfectant': 78355, 'disinfectant it': 245697, 'it virus': 462041, 'psa wash your': 687448, 'your hand wash': 1024239, 'hand wash your': 375939, 'your hand be': 1024169, 'hand be sure': 374823, 'be sure to': 117473, 'sure to lather': 827769, 'to lather with': 909088, 'lather with soap': 481631, 'soap for at': 779008, '20 second if': 13330, 'second if you': 743743, 'if you cannot': 415405, 'you cannot find': 1017860, 'cannot find water': 161853, 'find water you': 307375, 'water you can': 969275, 'can use an': 160087, 'use an antimicrobial': 949035, 'an antimicrobial hand': 55339, 'antimicrobial hand sanitizer': 78534, 'sanitizer that contains': 735858, 'that contains 60': 843311, 'contains 60 alcohol': 200618, '60 alcohol not': 20891, 'alcohol not an': 41052, 'not an antibacterial': 568192, 'an antibacterial disinfectant': 55333, 'antibacterial disinfectant it': 78356, 'disinfectant it virus': 245698, 'told my': 923634, 'my employer': 548092, 'employer wasn': 274555, 'wasn going': 967980, 'work tonight': 1005930, 'tonight because': 924377, 'because didn': 119026, 'didn want': 241255, 'risk bringing': 723423, 'bringing covid': 140153, '19 home': 7564, 'isn taking': 454691, 'taking precaution': 833521, 'precaution and': 669271, 'ha customer': 370298, 'customer coming': 222253, 'from area': 334582, 'case employer': 165725, 'employer said': 274535, 'need you': 556253, 're short': 699507, 'short tonight': 764776, 'told my employer': 923636, 'my employer wasn': 548097, 'employer wasn going': 274556, 'wasn going to': 967981, 'to work tonight': 918800, 'work tonight because': 1005931, 'tonight because didn': 924380, 'because didn want': 119027, 'didn want to': 241258, 'want to risk': 966104, 'to risk bringing': 913590, 'risk bringing covid': 723424, 'bringing covid 19': 140154, 'covid 19 home': 213216, '19 home to': 7565, 'home to my': 402332, 'to my family': 910395, 'family work in': 298400, 'work in retail': 1005340, 'in retail store': 427469, 'retail store that': 718711, 'store that isn': 810556, 'that isn taking': 844682, 'isn taking precaution': 454693, 'taking precaution and': 833522, 'precaution and ha': 669274, 'and ha customer': 64070, 'ha customer coming': 370299, 'customer coming from': 222254, 'coming from area': 188055, 'from area with': 334584, 'area with confirmed': 92282, 'with confirmed case': 997728, 'confirmed case employer': 194138, 'case employer said': 165726, 'employer said we': 274536, 'said we need': 731570, 'we need you': 972569, 'need you we': 556267, 'you we re': 1022202, 'we re short': 972963, 're short tonight': 699509, 'there fuck': 878419, 'great about': 362480, 'of britain': 580886, 'britain any': 140375, 'more nothing': 539852, 'nothing united': 573205, 'united about': 942136, 'this kingdom': 888574, 'kingdom you': 475355, 'the picture': 863722, 'picture absolutely': 656100, 'absolutely shameful': 27444, 'looking at supermarket': 502824, 'at supermarket shelf': 100768, 'supermarket shelf there': 822543, 'shelf there fuck': 757665, 'there fuck all': 878420, 'fuck all great': 339516, 'all great about': 42999, 'great about the': 362483, 'people of britain': 648912, 'of britain any': 580888, 'britain any more': 140376, 'any more nothing': 79489, 'more nothing united': 539853, 'nothing united about': 573206, 'united about this': 942137, 'about this kingdom': 26644, 'this kingdom you': 888575, 'kingdom you get': 475357, 'get the picture': 348279, 'the picture absolutely': 863723, 'picture absolutely shameful': 656102, 'unfortunately fraudsters': 941604, 'fraudsters will': 331441, 'and insecurity': 65250, 'insecurity regarding': 439172, 'page for': 633845, 'for common': 320191, 'common scam': 189446, 'and tip': 74132, 'avoid becoming': 105006, 'becoming victim': 120349, 'very useful': 955640, 'unfortunately fraudsters will': 941606, 'fraudsters will take': 331443, 'opportunity to take': 613732, 'advantage of consumer': 32994, 'of consumer fear': 581739, 'consumer fear and': 197453, 'fear and insecurity': 301033, 'and insecurity regarding': 65251, 'insecurity regarding covid': 439173, '19 the resource': 11243, 'the resource page': 865595, 'resource page for': 714853, 'page for common': 633846, 'for common scam': 320192, 'common scam and': 189447, 'scam and tip': 740023, 'and tip to': 74135, 'tip to avoid': 898923, 'to avoid becoming': 900867, 'avoid becoming victim': 105008, 'becoming victim is': 120351, 'victim is very': 956482, 'is very useful': 453702, 'ppeshortage': 668139, 'and know': 65885, 'know keep': 476557, 'keep posting': 471802, 'posting this': 666696, 'important get': 418812, 'your ppe': 1025368, 'ppe and': 667895, 'and quarantine': 69857, 'quarantine supply': 692599, 'supply online': 825671, 'online not': 608584, 'make huge': 509994, 'huge difference': 410026, 'difference towards': 241878, 'the flattenthecurve': 855396, 'flattenthecurve goal': 310165, 'goal ppeshortage': 354583, 'ppeshortage stayhome': 668142, 'also and know': 47851, 'and know keep': 65892, 'know keep posting': 476558, 'keep posting this': 471803, 'posting this but': 666697, 'but it important': 146132, 'it important get': 458708, 'important get your': 418813, 'get your ppe': 348726, 'your ppe and': 1025369, 'ppe and quarantine': 667905, 'and quarantine supply': 69860, 'quarantine supply online': 692600, 'supply online not': 825673, 'online not in': 608586, 'not in store': 570106, 'in store this': 428466, 'this is one': 888346, 'is one way': 450514, 'one way you': 607387, 'way you can': 970201, 'can make huge': 158933, 'make huge difference': 509995, 'huge difference towards': 410029, 'difference towards the': 241879, 'towards the flattenthecurve': 927261, 'the flattenthecurve goal': 855397, 'flattenthecurve goal ppeshortage': 310166, 'goal ppeshortage stayhome': 354584, 'brilliant but': 139839, 'but how': 145965, 'about showing': 26191, 'showing appreciation': 767421, 'appreciation to': 82897, 'wonderful supermarket': 1004123, 'driver who': 259852, 'are absolutely': 84166, 'absolutely getting': 27367, 'getting all': 348830, 'all through': 45204, 'this monday': 888886, 'monday 8pm': 536222, '8pm anyone': 23211, 'brilliant but how': 139840, 'but how about': 145966, 'how about showing': 407303, 'about showing appreciation': 26192, 'showing appreciation to': 767423, 'appreciation to the': 82900, 'to the wonderful': 917197, 'the wonderful supermarket': 871680, 'wonderful supermarket worker': 1004125, 'delivery driver who': 233956, 'driver who are': 259853, 'who are absolutely': 988094, 'are absolutely getting': 84170, 'absolutely getting all': 27368, 'getting all through': 348831, 'all through this': 45206, 'through this monday': 894831, 'this monday 8pm': 888887, 'monday 8pm anyone': 536223, 'communist': 189668, 'chinacoronavirus': 177085, 'ccpvirus': 168487, 'call it': 155948, 'the communist': 851262, 'communist party': 189675, 'party coronavirus': 642986, 'coronavirus chinacoronavirus': 205649, 'chinacoronavirus wuhan': 177088, 'wuhan china': 1013465, 'china ccpvirus': 176551, 'let call it': 486639, 'call it the': 155961, 'it the communist': 461522, 'the communist party': 851263, 'communist party coronavirus': 189677, 'party coronavirus chinacoronavirus': 642987, 'coronavirus chinacoronavirus wuhan': 205650, 'chinacoronavirus wuhan china': 177089, 'wuhan china ccpvirus': 1013467, 'proudly': 686073, 'equestrianrelief': 279648, 'voltaire': 960110, 'saddle': 729308, 'to who': 918566, 'are proudly': 89307, 'proudly supporting': 686082, 'supporting this': 827220, 'year equestrianrelief': 1014547, 'equestrianrelief enjoy': 279649, 'enjoy great': 277139, 'on voltaire': 605069, 'voltaire design': 960111, 'design saddle': 238258, 'saddle at': 729309, 'at shop': 100507, 'now stayhomesavelives': 575899, 'you to who': 1021858, 'to who are': 918568, 'who are proudly': 988199, 'are proudly supporting': 89308, 'proudly supporting this': 686083, 'supporting this year': 827221, 'this year equestrianrelief': 891571, 'year equestrianrelief enjoy': 1014548, 'equestrianrelief enjoy great': 279650, 'enjoy great price': 277140, 'great price on': 362914, 'price on voltaire': 675735, 'on voltaire design': 605070, 'voltaire design saddle': 960112, 'design saddle at': 238259, 'saddle at shop': 729310, 'at shop now': 100509, 'shop now stayhomesavelives': 760521, '4times': 19547, 'historic opec': 397966, 'russia agreement': 728416, 'agreement to': 38802, 'cut massive': 223424, 'massive supply': 520132, 'oil 4times': 596584, '4times more': 19548, 'than record': 841076, 'record 2008': 704902, '2008 level': 13680, 'level will': 487758, 'definitely get': 232338, 'only country': 610279, 'that stocked': 846498, 'stocked up': 803431, 'up during': 944749, 'during low': 262784, 'advantage others': 33049, 'others to': 621721, 'to suffer': 915732, 'suffer usual': 817246, 'historic opec russia': 397967, 'opec russia agreement': 611957, 'russia agreement to': 728417, 'agreement to cut': 38803, 'to cut massive': 903878, 'cut massive supply': 223425, 'massive supply of': 520133, 'supply of oil': 825638, 'of oil 4times': 587175, 'oil 4times more': 596585, '4times more than': 19549, 'more than record': 540664, 'than record 2008': 841077, 'record 2008 level': 704903, '2008 level will': 13684, 'level will definitely': 487759, 'will definitely get': 993137, 'definitely get the': 232340, 'get the price': 348284, 'price up only': 677248, 'up only country': 945661, 'only country that': 610282, 'country that stocked': 211119, 'that stocked up': 846499, 'stocked up during': 803437, 'up during low': 944757, 'during low price': 262785, 'low price will': 505552, 'price will have': 677568, 'will have an': 993613, 'have an advantage': 379237, 'an advantage others': 55146, 'advantage others to': 33050, 'others to suffer': 621736, 'to suffer usual': 915739, 'blamed': 132315, 'ecomomic': 266915, '416': 18885, 'stitt': 801714, 'tuesday': 935098, 'is largely': 449234, 'largely blamed': 479841, 'blamed for': 132316, 'state ecomomic': 795547, 'ecomomic downturn': 266916, 'downturn and': 257786, 'and an': 58098, 'an estimated': 55852, 'estimated 416': 282280, '416 million': 18886, 'million budget': 532100, 'budget hole': 141798, 'hole non': 400225, 'closed and': 182979, 'energy price': 276534, 'have slumped': 382590, 'slumped stitt': 774718, 'stitt said': 801715, 'said tuesday': 731539, 'tuesday an': 935112, 'additional 40': 31768, 'virus is largely': 958387, 'is largely blamed': 449235, 'largely blamed for': 479842, 'blamed for the': 132318, 'for the state': 326705, 'the state ecomomic': 867769, 'state ecomomic downturn': 795548, 'ecomomic downturn and': 266917, 'downturn and an': 257787, 'and an estimated': 58111, 'an estimated 416': 55854, 'estimated 416 million': 282281, '416 million budget': 18887, 'million budget hole': 532101, 'budget hole non': 141799, 'hole non essential': 400226, 'non essential business': 566332, 'essential business have': 280848, 'business have closed': 143826, 'have closed and': 379993, 'closed and energy': 182983, 'and energy price': 62127, 'energy price have': 276541, 'price have slumped': 674462, 'have slumped stitt': 382591, 'slumped stitt said': 774719, 'stitt said tuesday': 801716, 'said tuesday an': 731540, 'tuesday an additional': 935113, 'an additional 40': 55109, 'kind support': 474982, 'elderly wherever': 270943, 'wherever possible': 985462, 'possible to': 665839, 'grocery vegetable': 366099, 'vegetable or': 954057, 'necessary help': 554001, 'be kind support': 115628, 'kind support the': 474983, 'support the elderly': 826869, 'the elderly wherever': 854159, 'elderly wherever possible': 270944, 'wherever possible to': 985463, 'possible to buy': 665840, 'buy grocery vegetable': 148762, 'grocery vegetable or': 366100, 'vegetable or any': 954058, 'or any other': 614352, 'any other necessary': 79595, 'other necessary help': 620562, 'meaning': 524797, 'loonatics': 503124, 'cabinfever': 155005, 'meaning the': 524838, 'buying loonatics': 150680, 'loonatics could': 503125, 'could live': 209386, 'home coronacrisis': 400937, 'coronacrisis panicbuyinguk': 204694, 'panicbuyinguk cabinfever': 639133, 'meaning the panic': 524839, 'panic buying loonatics': 637801, 'buying loonatics could': 150681, 'loonatics could live': 503126, 'could live for': 209387, 'live for year': 495820, 'for year on': 328011, 'the food they': 855615, 'food they have': 317169, 'they have in': 882328, 'have in their': 381040, 'their home coronacrisis': 873558, 'home coronacrisis panicbuyinguk': 400940, 'coronacrisis panicbuyinguk cabinfever': 204695, 'is starting': 452231, 'to dawn': 903947, 'dawn on': 227054, 'how serious': 408643, 'serious covid': 751359, 'absolutely not': 27408, 'this can': 886678, 'can take': 159893, 'take month': 832335, 'it is starting': 459089, 'is starting to': 452235, 'starting to dawn': 795019, 'to dawn on': 903948, 'dawn on how': 227055, 'on how serious': 601422, 'how serious covid': 408644, 'serious covid 19': 751360, '19 can be': 5603, 'can be that': 157697, 'be that we': 117588, 'we are absolutely': 970465, 'are absolutely not': 84172, 'absolutely not safe': 27410, 'not safe at': 571418, 'safe at work': 729505, 'at work and': 101591, 'work and that': 1004815, 'and that this': 73215, 'that this can': 846982, 'this can take': 886686, 'can take month': 159902, 'swing': 830394, 'unprepared': 943233, 'shock in': 759457, 'full swing': 340914, 'swing government': 830401, 'are lying': 87950, 'lying to': 507085, 'about supply': 26291, 'supply line': 825508, 'line western': 493559, 'world supply': 1010027, 'chain logistics': 170901, 'logistics are': 500724, 'are built': 85077, 'built for': 142179, 'time convenience': 896510, 'convenience rather': 202333, 'than resilience': 841085, 'resilience mostly': 714487, 'mostly see': 543009, 'the unprepared': 870461, 'unprepared who': 943242, 'who trust': 989832, 'trust government': 934260, 'government tweeting': 360751, 'tweeting on': 936478, 'on stophoarding': 603686, 'there is global': 878564, 'is global supply': 448072, 'global supply shock': 352239, 'supply shock in': 825819, 'shock in full': 759458, 'in full swing': 423176, 'full swing government': 340916, 'swing government are': 830402, 'government are lying': 359898, 'are lying to': 87951, 'lying to you': 507088, 'to you about': 918888, 'you about supply': 1016774, 'about supply line': 26294, 'supply line western': 825513, 'line western world': 493560, 'western world supply': 980648, 'world supply chain': 1010028, 'supply chain logistics': 824987, 'chain logistics are': 170902, 'logistics are built': 500725, 'are built for': 85078, 'built for just': 142180, 'for just in': 322793, 'just in time': 469050, 'in time convenience': 430076, 'time convenience rather': 896511, 'convenience rather than': 202334, 'rather than resilience': 697545, 'than resilience mostly': 841086, 'resilience mostly see': 714488, 'mostly see it': 543010, 'see it is': 745335, 'is the unprepared': 452969, 'the unprepared who': 870462, 'unprepared who trust': 943243, 'who trust government': 989833, 'trust government tweeting': 934261, 'government tweeting on': 360752, 'tweeting on stophoarding': 936479, 'phlegm': 654848, 'disappears': 244082, 'breath': 139153, 'recovers': 705274, 'smoothly': 775951, 'secret': 743912, 'draft': 258138, 'supermarket food': 820354, 'food treatment': 317360, 'treatment covid': 931058, '19 long': 8465, 'long take': 501668, 'it once': 460070, 'once the': 605717, 'the phlegm': 863681, 'phlegm disappears': 654849, 'disappears and': 244083, 'the breath': 849982, 'breath recovers': 139183, 'recovers smoothly': 705282, 'smoothly which': 775960, 'the secret': 866602, 'secret recipe': 743928, 'recipe have': 704474, 'have experienced': 380519, 'experienced tweeted': 291619, 'tweeted many': 936439, 'the internet': 858376, 'internet wa': 442048, 'wa often': 962807, 'often blocked': 596168, 'blocked and': 132851, 'the tweet': 870126, 'tweet were': 936425, 'were thrown': 980260, 'thrown into': 895140, 'the draft': 853647, 'the supermarket food': 868597, 'supermarket food treatment': 820365, 'food treatment covid': 317361, 'treatment covid 19': 931059, 'covid 19 long': 213375, '19 long take': 8466, 'long take it': 501669, 'take it once': 832252, 'it once the': 460072, 'once the phlegm': 605730, 'the phlegm disappears': 863682, 'phlegm disappears and': 654850, 'disappears and the': 244084, 'and the breath': 73266, 'the breath recovers': 849984, 'breath recovers smoothly': 139184, 'recovers smoothly which': 705283, 'smoothly which is': 775961, 'which is the': 986059, 'is the secret': 452936, 'the secret recipe': 866604, 'secret recipe have': 743929, 'recipe have experienced': 704476, 'have experienced tweeted': 380525, 'experienced tweeted many': 291620, 'tweeted many time': 936440, 'many time but': 514811, 'time but the': 896423, 'but the internet': 147348, 'the internet wa': 858394, 'internet wa often': 442049, 'wa often blocked': 962808, 'often blocked and': 596169, 'blocked and most': 132852, 'and most of': 67271, 'of the tweet': 591563, 'the tweet were': 870128, 'tweet were thrown': 936426, 'were thrown into': 980261, 'thrown into the': 895141, 'into the draft': 443118, 'diligent': 242866, 'prevalent': 671568, 'being diligent': 125050, 'diligent about': 242867, 'their health': 873509, 'health we': 386940, 'we encourage': 971446, 'to also': 900373, 'in other': 426234, 'other area': 619844, 'in stressful': 428499, 'time scam': 897620, 'scam become': 740074, 'become more': 120055, 'more prevalent': 540134, 'prevalent the': 671571, 'put out': 690747, 'out info': 626417, 'info about': 437401, 'scam to': 740416, 'of please': 588167, 'check this': 174672, 'this out': 889308, 'many people are': 514487, 'people are being': 646936, 'are being diligent': 84847, 'being diligent about': 125051, 'diligent about their': 242868, 'about their health': 26587, 'their health we': 873525, 'health we encourage': 386941, 'we encourage you': 971453, 'you to also': 1021747, 'to also be': 900375, 'also be safe': 47927, 'be safe in': 116962, 'safe in other': 729767, 'in other area': 426235, 'other area in': 619845, 'area in stressful': 92073, 'in stressful time': 428500, 'stressful time scam': 813522, 'time scam become': 897621, 'scam become more': 740075, 'become more prevalent': 120061, 'more prevalent the': 540135, 'prevalent the ha': 671572, 'the ha put': 857010, 'ha put out': 371600, 'put out info': 690753, 'out info about': 626418, 'info about scam': 437409, 'about scam to': 26144, 'scam to be': 740419, 'aware of please': 105637, 'of please check': 588168, 'please check this': 659781, 'check this out': 174677, 'this out and': 889311, 'out and stay': 625696, 'calling 800': 156509, 'by calling 800': 152055, 'calling 800 22': 156510, 'donaldtrump': 254124, 'dowfutures': 256345, 'nasdaqcomposite': 551997, 'donaldtrump dow': 254125, 'dow dowfutures': 256320, 'dowfutures nasdaqcomposite': 256346, 'nasdaqcomposite dow': 551998, 'dow future': 256322, 'future gain': 342331, 'gain over': 342805, 'over 800': 629934, '800 point': 22719, 'point global': 662496, 'rise on': 722958, 'on new': 602372, 'new positive': 559315, '19 number': 8868, 'donaldtrump dow dowfutures': 254126, 'dow dowfutures nasdaqcomposite': 256321, 'dowfutures nasdaqcomposite dow': 256347, 'nasdaqcomposite dow future': 551999, 'dow future gain': 256323, 'future gain over': 342332, 'gain over 800': 342806, 'over 800 point': 629935, '800 point global': 22720, 'point global stock': 662497, 'global stock price': 352222, 'stock price rise': 802746, 'price rise on': 676243, 'rise on new': 722960, 'on new positive': 602379, 'new positive covid': 559317, 'covid 19 number': 213494, 'overweight': 631693, 'ocd': 579087, 'borderline': 135310, 'agoraphobic': 38578, 'addicted': 31626, 'floaty': 310673, 'chair': 171290, 'purell': 690000, 'is done': 447317, 'done we': 255103, 'll all': 496539, 'all be': 42124, 'be overweight': 116318, 'overweight ocd': 631696, 'ocd borderline': 579093, 'borderline agoraphobic': 135311, 'agoraphobic and': 38579, 'and addicted': 57677, 'addicted to': 31627, 'to tv': 917854, 'tv and': 936080, 'shopping basically': 762156, 'basically we': 112178, 'the floaty': 855411, 'floaty chair': 310674, 'chair people': 171305, 'from wall': 338279, 'wall but': 965156, 'with serious': 1000643, 'serious purell': 751458, 'purell addiction': 690001, 'this is done': 888237, 'is done we': 447327, 'done we ll': 255104, 'we ll all': 972230, 'll all be': 496540, 'all be overweight': 42138, 'be overweight ocd': 116320, 'overweight ocd borderline': 631697, 'ocd borderline agoraphobic': 579094, 'borderline agoraphobic and': 135312, 'agoraphobic and addicted': 38580, 'and addicted to': 57678, 'addicted to tv': 31630, 'to tv and': 917855, 'tv and online': 936085, 'online shopping basically': 609043, 'shopping basically we': 762157, 'basically we ll': 112180, 'll be the': 496635, 'be the floaty': 117613, 'the floaty chair': 855412, 'floaty chair people': 310675, 'chair people from': 171306, 'people from wall': 648015, 'from wall but': 338280, 'wall but with': 965157, 'but with serious': 147898, 'with serious purell': 1000646, 'serious purell addiction': 751459, 'picnicking': 656084, 'ballgame': 109090, 'my short': 550065, 'short drive': 764608, 'back picnicking': 107222, 'picnicking family': 656085, 'family group': 297863, 'kid playing': 474082, 'playing ballgame': 659387, 'ballgame cycle': 109091, 'cycle group': 224048, 'group group': 366706, 'of dog': 582763, 'walker picnic': 964997, 'picnic amp': 656072, 'amp play': 54306, 'play game': 659153, 'game at': 343128, 'home cycle': 400982, 'cycle amp': 224033, 'amp dog': 53660, 'dog walk': 252180, 'walk alone': 964730, 'alone don': 46844, 'don gather': 253532, 'gather large': 344386, 'group what': 366963, 'what not': 981943, 'clear come': 181237, 'on my short': 602316, 'my short drive': 550066, 'short drive to': 764609, 'drive to the': 259231, 'supermarket and back': 818935, 'and back picnicking': 58620, 'back picnicking family': 107223, 'picnicking family group': 656086, 'family group of': 297864, 'group of kid': 366794, 'of kid playing': 585629, 'kid playing ballgame': 474083, 'playing ballgame cycle': 659388, 'ballgame cycle group': 109092, 'cycle group group': 224049, 'group group of': 366707, 'group of dog': 366789, 'of dog walker': 582765, 'dog walker picnic': 252184, 'walker picnic amp': 964998, 'picnic amp play': 656073, 'amp play game': 54307, 'play game at': 659154, 'game at home': 343129, 'at home cycle': 98967, 'home cycle amp': 400983, 'cycle amp dog': 224034, 'amp dog walk': 53661, 'dog walk alone': 252181, 'walk alone don': 964731, 'alone don gather': 46845, 'don gather large': 253533, 'gather large group': 344387, 'large group what': 479686, 'group what not': 366964, 'what not clear': 981944, 'not clear come': 568763, 'clear come on': 181238, 'replicates': 711702, 'squaddies': 791451, 'bogroll': 134003, 'now replicates': 575678, 'replicates what': 711703, 'what squaddies': 982239, 'squaddies have': 791452, 'experience in': 291387, 'in army': 420501, 'army store': 93041, 'store one': 809220, 'time stand': 897742, 'line you': 493618, 'cannot have': 161945, 'it only': 460088, 'only matter': 610771, 'time before': 896377, 'our bogroll': 622240, 'in supermarket now': 428639, 'supermarket now replicates': 821671, 'now replicates what': 575679, 'replicates what squaddies': 711704, 'what squaddies have': 982240, 'squaddies have to': 791453, 'have to experience': 383205, 'to experience in': 905457, 'experience in army': 291388, 'in army store': 420502, 'army store one': 93042, 'store one at': 809221, 'one at time': 605970, 'at time stand': 101309, 'time stand behind': 897743, 'the line you': 859427, 'line you cannot': 493619, 'you cannot have': 1017865, 'cannot have that': 161953, 'have that it': 382949, 'that it only': 844731, 'it only matter': 460103, 'only matter of': 610772, 'of time before': 592167, 'time before we': 896383, 'before we have': 123287, 'have to sign': 383301, 'to sign for': 914634, 'sign for our': 769123, 'for our bogroll': 324215, 'fired': 308161, 'ago all': 38324, 'friend got': 333622, 'got fired': 358555, 'fired now': 308183, 'heb covid': 388671, 'is conspiracy': 446769, 'conspiracy between': 195572, 'and texas': 73146, 'week ago all': 975834, 'ago all my': 38325, 'all my friend': 43557, 'my friend got': 548433, 'friend got fired': 333623, 'got fired now': 358556, 'fired now they': 308184, 'now they all': 576101, 'they all work': 881122, 'all work at': 45491, 'work at heb': 1004874, 'at heb covid': 98877, 'heb covid 19': 388672, '19 is conspiracy': 7949, 'is conspiracy between': 446770, 'conspiracy between the': 195573, 'between the government': 128929, 'the government and': 856509, 'government and texas': 359874, 'and texas grocery': 73147, 'bev': 128970, 'to serve': 914255, 'serve our': 751922, 'our client': 622389, 'client while': 182131, 'while following': 986842, 'following local': 312782, 'local and': 497677, 'and national': 67426, 'national guideline': 552533, 'support critical': 826450, 'critical industry': 218583, 'industry such': 436130, 'such consumer': 816417, 'food bev': 313734, 'bev parcel': 128973, 'parcel life': 641509, 'life science': 489025, 'science data': 742095, 'data center': 226167, 'center mission': 169259, 'mission critical': 534349, 'critical and': 218515, 'continuing to serve': 201572, 'to serve our': 914269, 'serve our client': 751923, 'our client while': 622402, 'client while following': 182132, 'while following local': 986843, 'following local and': 312783, 'local and national': 497680, 'and national guideline': 67431, 'national guideline to': 552534, 'guideline to slow': 368488, 'spread of coronavirus': 790660, 'of coronavirus we': 581976, 'coronavirus we support': 207054, 'we support critical': 973453, 'support critical industry': 826451, 'critical industry such': 218586, 'industry such consumer': 436131, 'such consumer good': 816418, 'consumer good food': 197616, 'good food bev': 357053, 'food bev parcel': 313736, 'bev parcel life': 128974, 'parcel life science': 641510, 'life science data': 489026, 'science data center': 742096, 'data center mission': 226169, 'center mission critical': 169260, 'mission critical and': 534350, 'critical and more': 218516, 'horrid': 404150, 'it horrid': 458632, 'horrid seeing': 404151, 'seeing photo': 746417, 'of old': 587199, 'old people': 598406, 'with empty': 998216, 'empty shopping': 275123, 'shopping trolley': 764259, 'and cleared': 59961, 'cleared shelf': 181432, 'shelf if': 757175, 'if do': 414050, 'see one': 745503, 'who seems': 989577, 'to need': 910508, 'help ll': 390006, 'll ask': 496556, 'in urgent': 430476, 'home ll': 401541, 'll freely': 496777, 'freely drive': 332466, 'drive it': 259084, 'it around': 456588, 'around to': 93591, 'it horrid seeing': 458633, 'horrid seeing photo': 404152, 'seeing photo of': 746418, 'photo of old': 655207, 'of old people': 587201, 'old people with': 598423, 'people with empty': 650447, 'with empty shopping': 998221, 'empty shopping trolley': 275124, 'shopping trolley and': 764260, 'trolley and cleared': 932362, 'and cleared shelf': 59962, 'cleared shelf if': 181433, 'shelf if do': 757177, 'if do go': 414052, 'supermarket and if': 819005, 'and if see': 64948, 'if see one': 414763, 'see one who': 745506, 'one who seems': 607458, 'who seems to': 989579, 'seems to need': 746885, 'to need help': 910511, 'need help ll': 554987, 'help ll ask': 390007, 'll ask what': 496557, 'ask what they': 95660, 'they are in': 881305, 'are in urgent': 87458, 'in urgent need': 430477, 'urgent need of': 948351, 'need of and': 555318, 'of and if': 580161, 'and if have': 64935, 'if have it': 414202, 'have it at': 381141, 'it at home': 456619, 'at home ll': 99035, 'home ll freely': 401542, 'll freely drive': 496778, 'freely drive it': 332467, 'drive it around': 259085, 'it around to': 456591, 'around to them': 93596, 'brampton': 137653, 'from reduced': 337054, 'in brampton': 420940, 'brampton are': 137654, 'pandemic 19': 634767, 'from reduced hour': 337055, 'reduced hour to': 706097, 'hour to limit': 406030, 'to limit on': 909291, 'limit on the': 492430, 'on the number': 604256, 'allowed in at': 46163, 'at time here': 101290, 'time here what': 896924, 'here what some': 393820, 'what some grocery': 982217, 'some grocery store': 783007, 'chain in brampton': 170802, 'in brampton are': 420941, 'brampton are doing': 137655, 'the pandemic 19': 862890, 'layoff': 482670, 'completetly': 192385, 'flattened': 310134, 'theirs': 875263, 'leather': 484709, 'internationa': 441746, 'be severe': 117113, 'severe we': 754066, 'see mass': 745397, 'mass layoff': 519799, 'layoff tourism': 482714, 'tourism industry': 926989, 'industry is': 435919, 'is completetly': 446712, 'completetly flattened': 192386, 'flattened theirs': 310137, 'theirs decline': 875267, 'like flower': 490245, 'flower and': 311274, 'and leather': 66044, 'leather leather': 484712, 'leather product': 484716, 'our internationa': 623577, '19 on our': 8960, 'on our economy': 602592, 'our economy might': 622847, 'economy might be': 268073, 'might be severe': 530928, 'be severe we': 117115, 'severe we re': 754067, 'to see mass': 914041, 'see mass layoff': 745399, 'mass layoff tourism': 519800, 'layoff tourism industry': 482715, 'tourism industry is': 926991, 'industry is completetly': 435925, 'is completetly flattened': 446713, 'completetly flattened theirs': 192387, 'flattened theirs decline': 310138, 'theirs decline in': 875268, 'decline in price': 231362, 'price of commodity': 675425, 'of commodity like': 581576, 'commodity like flower': 189208, 'like flower and': 490246, 'flower and leather': 311275, 'and leather leather': 66045, 'leather leather product': 484713, 'leather product to': 484717, 'product to our': 681757, 'to our internationa': 911195, 'extend': 293105, 'custodial': 221955, 'better start': 128485, 'start hearing': 794324, 'hearing people': 388223, 'people extend': 647847, 'extend the': 293125, 'word thank': 1004585, 'your service': 1025724, 'worker custodial': 1006719, 'custodial staff': 221956, 'staff grocery': 792502, 'worker flight': 1006951, 'flight attendant': 310438, 'attendant and': 102333, 'others on': 621565, 'frontline during': 338728, 'better start hearing': 128486, 'start hearing people': 794325, 'hearing people extend': 388224, 'people extend the': 647848, 'extend the word': 293128, 'the word thank': 871720, 'word thank you': 1004586, 'for your service': 328206, 'your service to': 1025741, 'service to healthcare': 752978, 'to healthcare worker': 907387, 'healthcare worker custodial': 387352, 'worker custodial staff': 1006720, 'custodial staff grocery': 221957, 'staff grocery store': 792504, 'store worker flight': 811502, 'worker flight attendant': 1006952, 'flight attendant and': 310439, 'attendant and others': 102334, 'and others on': 68451, 'others on the': 621567, 'the frontline during': 855866, 'frontline during the': 338730, 'mention': 528738, 'to mention': 910081, 'mention it': 528769, 'assume consumer': 97001, 'demand will': 236493, 'same before': 732975, 'before for': 122809, 'for growth': 322075, 'growth to': 367466, 'be double': 114579, 'double digit': 255997, 'not to mention': 572167, 'to mention it': 910088, 'mention it need': 528770, 'it need to': 459755, 'need to assume': 555862, 'to assume consumer': 900791, 'assume consumer demand': 97002, 'consumer demand will': 197176, 'demand will be': 236494, 'will be the': 992721, 'be the same': 117652, 'the same before': 866199, 'same before for': 732976, 'before for growth': 122810, 'for growth to': 322077, 'growth to be': 367467, 'to be double': 901217, 'be double digit': 114580, '30moredays': 17492, 'can let': 158865, 'this die': 887220, 'die little': 241394, 'time reposting': 897571, 'reposting from': 712853, 'from fb': 335427, 'fb post': 300666, 'post lockdown': 666198, 'lockdown 30moredays': 499097, '30moredays staysafe': 17495, 'staysafe toiletpaper': 798941, 'can let this': 158871, 'let this die': 487177, 'this die little': 887221, 'die little humor': 241395, 'little humor in': 495397, 'humor in these': 410886, 'these time reposting': 880847, 'time reposting from': 897572, 'reposting from fb': 712854, 'from fb post': 335429, 'fb post lockdown': 300667, 'post lockdown 30moredays': 666199, 'lockdown 30moredays staysafe': 499098, '30moredays staysafe toiletpaper': 17496, 'staysafe toiletpaper toiletpaperapocalypse': 798943, 'obligation': 578450, 'these it': 880187, 'is inevitable': 448891, 'inevitable that': 436405, 'the stress': 868267, 'stress caused': 813314, 'this public': 889752, 'crisis it': 217604, 'it an': 456463, 'opportunity and': 613583, 'and obligation': 67923, 'obligation for': 578455, 'of medium': 586417, 'medium company': 527045, 'be consumer': 114209, 'consumer centric': 196761, 'centric possible': 169598, 'like these it': 491433, 'these it is': 880190, 'it is inevitable': 458988, 'is inevitable that': 448897, 'inevitable that people': 436407, 'that people will': 845712, 'people will look': 650394, 'will look for': 994039, 'look for way': 502374, 'way to escape': 970026, 'escape the stress': 280316, 'the stress caused': 868271, 'stress caused by': 813315, 'by the impact': 154354, 'impact of this': 417806, 'of this public': 592028, 'this public health': 889754, 'health crisis it': 386340, 'crisis it an': 217605, 'it an opportunity': 456479, 'an opportunity and': 56668, 'opportunity and obligation': 613584, 'and obligation for': 67924, 'obligation for all': 578456, 'for all type': 319182, 'all type of': 45306, 'type of medium': 937568, 'of medium company': 586419, 'medium company to': 527047, 'company to be': 191219, 'to be consumer': 901179, 'be consumer centric': 114211, 'consumer centric possible': 196767, 'northmart': 567805, 'freezing': 332660, 'northern and': 567738, 'and northmart': 67700, 'northmart store': 567806, 'store freezing': 807870, 'freezing price': 332667, 'northern and northmart': 567739, 'and northmart store': 67701, 'northmart store freezing': 567807, 'store freezing price': 807871, 'freezing price for': 332669, 'price for 60': 673919, 'path': 644011, 'southcarolina': 786824, 'jokecoughing': 467174, 'wayspeoplearetheworst laughing': 970226, 'and fake': 62623, 'fake coughing': 296594, 'coughing during': 208679, 'pandemic yesterday': 637083, 'the path': 863386, 'path of': 644021, 'elderly woman': 270953, 'woman in': 1003511, 'me southcarolina': 523518, 'southcarolina walmart': 786825, 'walmart jokecoughing': 965366, 'wayspeoplearetheworst laughing and': 970227, 'laughing and fake': 481806, 'and fake coughing': 62625, 'fake coughing during': 296595, 'coughing during pandemic': 208680, 'during pandemic yesterday': 262909, 'pandemic yesterday in': 637084, 'yesterday in the': 1015779, 'in the path': 429443, 'the path of': 863387, 'path of the': 644024, 'of the elderly': 590976, 'the elderly woman': 854162, 'elderly woman in': 270954, 'woman in front': 1003515, 'front of me': 338643, 'of me southcarolina': 586341, 'me southcarolina walmart': 523519, 'southcarolina walmart jokecoughing': 786826, 'imploring': 418597, 'behave': 123764, 'jostled': 467366, 'cajoled': 155212, 'staff can': 792291, 'be heard': 115178, 'heard imploring': 388091, 'imploring people': 418598, 'to behave': 901721, 'behave themselves': 123794, 'and shouting': 71604, 'shouting slowly': 766798, 'slowly slowly': 774621, 'slowly and': 774576, 'and relax': 70190, 'relax relax': 708824, 'relax old': 708820, 'are jostled': 87605, 'jostled and': 467367, 'and cajoled': 59400, 'cajoled coronacrisis': 155213, 'staff can be': 792293, 'can be heard': 157629, 'be heard imploring': 115180, 'heard imploring people': 388092, 'imploring people to': 418599, 'people to behave': 649880, 'to behave themselves': 901725, 'behave themselves and': 123795, 'themselves and shouting': 876760, 'and shouting slowly': 71605, 'shouting slowly slowly': 766799, 'slowly slowly and': 774622, 'slowly and relax': 774578, 'and relax relax': 70191, 'relax relax old': 708825, 'relax old people': 708821, 'old people are': 598410, 'people are jostled': 647006, 'are jostled and': 87606, 'jostled and cajoled': 467368, 'and cajoled coronacrisis': 59401, 'bagger': 108495, 'msnbc': 544563, 'nytimes': 578153, 'wsj': 1013247, 'cnbc': 184715, 'politico': 663771, 'huffpost': 409942, 'drudge': 260838, 'npr': 576617, 'dailykos': 224916, 'thehill': 872399, 'wapo': 966321, 'nbc': 553231, 'slate': 773690, 'aarp': 24153, 'safest job': 730428, 'job in': 465871, 'america is': 51570, 'is uninsured': 453501, 'uninsured supermarket': 941840, 'supermarket grocerystore': 820589, 'grocerystore bagger': 366294, 'bagger are': 108502, 'they healthy': 882413, 'healthy how': 387661, 'know msnbc': 476614, 'msnbc foxnews': 544569, 'foxnews nytimes': 330807, 'nytimes cnn': 578154, 'cnn wsj': 184785, 'wsj cnbc': 1013248, 'cnbc politico': 184724, 'politico huffpost': 663772, 'huffpost drudge': 409943, 'drudge bbc': 260839, 'bbc gop': 113077, 'gop npr': 358262, 'npr dailykos': 576618, 'dailykos thehill': 224917, 'thehill wapo': 872402, 'wapo nbc': 966324, 'nbc cbs': 553232, 'cbs ap': 168368, 'ap slate': 81214, 'slate aarp': 773691, 'aarp fed': 24154, 'fed nyc': 301856, 'safest job in': 730430, 'job in america': 465872, 'in america is': 420227, 'america is uninsured': 51583, 'is uninsured supermarket': 453502, 'uninsured supermarket grocerystore': 941841, 'supermarket grocerystore bagger': 820590, 'grocerystore bagger are': 366295, 'bagger are they': 108503, 'are they healthy': 91005, 'they healthy how': 882415, 'healthy how do': 387662, 'you know msnbc': 1019511, 'know msnbc foxnews': 476615, 'msnbc foxnews nytimes': 544570, 'foxnews nytimes cnn': 330808, 'nytimes cnn wsj': 578155, 'cnn wsj cnbc': 184786, 'wsj cnbc politico': 1013249, 'cnbc politico huffpost': 184725, 'politico huffpost drudge': 663773, 'huffpost drudge bbc': 409944, 'drudge bbc gop': 260840, 'bbc gop npr': 113078, 'gop npr dailykos': 358263, 'npr dailykos thehill': 576619, 'dailykos thehill wapo': 224918, 'thehill wapo nbc': 872403, 'wapo nbc cbs': 966325, 'nbc cbs ap': 553233, 'cbs ap slate': 168369, 'ap slate aarp': 81215, 'slate aarp fed': 773692, 'aarp fed nyc': 24155, 'sydney': 830684, 'photojournalism': 655317, 'documentary': 251222, 'documentaryphotography': 251231, 'reportage': 712442, 'phot': 655112, 'mask following': 518658, 'following an': 312682, 'of walk': 592887, 'walk past': 964859, 'past retail': 643596, 'store front': 807885, 'front in': 338547, 'in sydney': 428775, 'sydney australia': 830688, 'australia pandemic': 103345, 'pandemic photojournalism': 636181, 'photojournalism documentary': 655318, 'documentary documentaryphotography': 251227, 'documentaryphotography reportage': 251232, 'reportage phot': 712443, 'people wearing face': 650175, 'face mask following': 294539, 'mask following an': 518659, 'following an outbreak': 312683, 'outbreak of walk': 628489, 'of walk past': 592888, 'walk past retail': 964862, 'past retail store': 643597, 'retail store front': 718639, 'store front in': 807887, 'front in sydney': 338548, 'in sydney australia': 428777, 'sydney australia pandemic': 830690, 'australia pandemic photojournalism': 103346, 'pandemic photojournalism documentary': 636182, 'photojournalism documentary documentaryphotography': 655319, 'documentary documentaryphotography reportage': 251228, 'documentaryphotography reportage phot': 251233, 'kidney': 474229, 'kidneybeans': 474248, 'tescos': 838871, 'it worrying': 462542, 'worrying time': 1010841, 'when kidney': 983663, 'kidney bean': 474230, 'bean are': 118295, 'out kidneybeans': 626473, 'kidneybeans tesco': 474249, 'tesco supermarket': 838818, 'supermarket selfisolation': 822376, 'selfisolation isolation': 748461, 'isolation kidney': 455327, 'bean tescos': 118373, 'tescos food': 838874, 'know it worrying': 476549, 'it worrying time': 462543, 'worrying time when': 1010845, 'time when kidney': 898291, 'when kidney bean': 983664, 'kidney bean are': 474231, 'bean are sold': 118297, 'are sold out': 90249, 'sold out kidneybeans': 781738, 'out kidneybeans tesco': 626474, 'kidneybeans tesco supermarket': 474250, 'tesco supermarket selfisolation': 838824, 'supermarket selfisolation isolation': 822377, 'selfisolation isolation kidney': 748462, 'isolation kidney bean': 455328, 'kidney bean tescos': 474233, 'bean tescos food': 118374, 'tescos food shop': 838875, 'consumables': 195920, 'trapped': 930107, 'livelihood': 496189, 'washed': 967605, 'of consumables': 581697, 'consumables and': 195921, 'and edible': 61938, 'edible are': 268539, 'skyrocketing poor': 773445, 'poor mass': 664224, 'mass will': 519895, 'be trapped': 117796, 'trapped indoors': 930112, 'indoors with': 435439, 'no income': 564488, 'or mean': 616094, 'mean of': 524579, 'of livelihood': 585900, 'livelihood covid': 496196, '19 seems': 10390, 'be flattening': 114881, 'curve our': 221884, 'our leader': 623691, 'leader should': 483534, 'should obey': 766279, 'obey or': 578383, 'or be': 614507, 'be washed': 118053, 'washed with': 967622, 'the tide': 869540, 'tide you': 895717, 'pay yourselves': 645258, 'yourselves now': 1026799, 'price of consumables': 675427, 'of consumables and': 581698, 'consumables and edible': 195922, 'and edible are': 61939, 'edible are skyrocketing': 268540, 'are skyrocketing poor': 90168, 'skyrocketing poor mass': 773446, 'poor mass will': 664225, 'mass will be': 519896, 'will be trapped': 992736, 'be trapped indoors': 117798, 'trapped indoors with': 930113, 'indoors with no': 435441, 'with no income': 999763, 'no income or': 564495, 'income or mean': 432427, 'or mean of': 616095, 'mean of livelihood': 524583, 'of livelihood covid': 585901, 'livelihood covid 19': 496197, 'covid 19 seems': 213762, '19 seems to': 10392, 'to be flattening': 901259, 'be flattening the': 114882, 'the curve our': 852702, 'curve our leader': 221885, 'our leader should': 623697, 'leader should obey': 483537, 'should obey or': 766280, 'obey or be': 578384, 'or be washed': 614515, 'be washed with': 118055, 'washed with the': 967623, 'with the tide': 1001518, 'the tide you': 869544, 'tide you can': 895718, 'you can pay': 1017742, 'can pay yourselves': 159209, 'pay yourselves now': 645259, 'influence': 437292, 'opinion question': 613494, 'question doe': 693572, 'it influence': 458793, 'influence you': 437323, 'way or': 969786, 'or another': 614325, 'another to': 77907, 'receive those': 703568, 'those covid': 891897, 'response email': 715681, 'from business': 334753, 'that aren': 842848, 'aren restaurant': 92505, 'restaurant bar': 716327, 'bar hospitality': 110720, 'hospitality would': 404818, 'you avoid': 1017347, 'avoid for': 105109, 'example online': 288960, 'with certain': 997593, 'certain store': 170102, 'haven gotten': 383813, 'gotten one': 359155, 'those email': 891958, 'email yet': 272370, 'opinion question doe': 613495, 'question doe it': 693573, 'doe it influence': 251433, 'it influence you': 458794, 'influence you in': 437324, 'you in one': 1019310, 'in one way': 426156, 'one way or': 607375, 'way or another': 969787, 'or another to': 614329, 'another to receive': 77910, 'to receive those': 912937, 'receive those covid': 703569, 'those covid 19': 891898, '19 response email': 10145, 'response email from': 715682, 'email from business': 272183, 'from business that': 334756, 'business that aren': 144473, 'that aren restaurant': 842855, 'aren restaurant bar': 92506, 'restaurant bar hospitality': 716331, 'bar hospitality would': 110721, 'hospitality would you': 404819, 'would you avoid': 1012404, 'you avoid for': 1017349, 'avoid for example': 105110, 'for example online': 321287, 'example online shopping': 288961, 'shopping with certain': 764429, 'with certain store': 997594, 'certain store if': 170103, 'store if you': 808250, 'if you haven': 415452, 'you haven gotten': 1019148, 'haven gotten one': 383816, 'gotten one of': 359156, 'of those email': 592087, 'those email yet': 891959, 'sl': 773463, 'unlawful': 942557, 'unsubscribing': 943547, 'sl charging': 773464, 'charging client': 173461, 'client unlawful': 182120, 'unlawful price': 942560, 'be unsubscribing': 117882, 'unsubscribing your': 943548, 'all about': 41914, 'about making': 25689, 'making money': 511223, 'sl charging client': 773465, 'charging client unlawful': 173462, 'client unlawful price': 182121, 'unlawful price during': 942561, 'during pandemic we': 262907, 'pandemic we will': 636957, 'will be unsubscribing': 992748, 'be unsubscribing your': 117883, 'unsubscribing your service': 943549, 'your service it': 1025734, 'service it not': 752532, 'it not all': 459857, 'not all about': 568096, 'all about making': 41921, 'about making money': 25692, 'durables': 262348, 'dependence': 237338, 'trend after': 931255, 'after 19': 35277, '19 year': 12242, 'year most': 1014757, 'most affected': 542070, 'affected will': 34461, 'be travel': 117799, 'travel durables': 930345, 'durables shared': 262353, 'shared economy': 755408, 'economy luxury': 268052, 'luxury good': 506932, 'good real': 357628, 'estate home': 282124, 'home entertainment': 401145, 'entertainment consumer': 278556, 'consumer essential': 197374, 'essential telecom': 281646, 'telecom healthcare': 836683, 'and wellness': 75420, 'wellness education': 978838, 'education will': 268884, 'do well': 250501, 'well dependence': 978146, 'dependence on': 237341, 'china will': 177072, 'decrease working': 231612, 'home will': 402504, 'will increase': 993805, 'trend after 19': 931256, 'after 19 year': 35280, '19 year most': 12243, 'year most affected': 1014758, 'most affected will': 542077, 'affected will be': 34462, 'will be travel': 992737, 'be travel durables': 117800, 'travel durables shared': 930346, 'durables shared economy': 262354, 'shared economy luxury': 755409, 'economy luxury good': 268053, 'luxury good real': 506933, 'good real estate': 357629, 'real estate home': 701147, 'estate home entertainment': 282125, 'home entertainment consumer': 401147, 'entertainment consumer essential': 278557, 'consumer essential telecom': 197375, 'essential telecom healthcare': 281648, 'telecom healthcare and': 836684, 'healthcare and wellness': 387035, 'and wellness education': 75422, 'wellness education will': 978839, 'education will do': 268886, 'will do well': 993233, 'do well dependence': 250503, 'well dependence on': 978147, 'dependence on china': 237342, 'on china will': 599911, 'china will decrease': 177073, 'will decrease working': 993122, 'decrease working from': 231613, 'from home will': 335931, 'home will increase': 402508, 'anger': 76411, 'understand there': 940782, 'of anger': 580202, 'anger and': 76412, 'and confusion': 60295, 'confusion regarding': 194397, 'regarding the': 707281, 'the governor': 856635, 'governor emergency': 360898, 'emergency order': 272833, 'order but': 618094, 'would rather': 1012152, 'you mad': 1019743, 'mad at': 507522, 'your state': 1025926, 'and alive': 57850, 'alive than': 41838, 'than sick': 841141, 'sick or': 768550, 'or dead': 614892, 'dead and': 229129, 'and unable': 74588, 'to post': 911905, 'post mean': 666210, 'mean thing': 524718, 'thing on': 884636, 'our social': 624807, 'medium this': 527323, 'understand there is': 940783, 'lot of anger': 504138, 'of anger and': 580203, 'anger and confusion': 76413, 'and confusion regarding': 60299, 'confusion regarding the': 194398, 'regarding the governor': 707291, 'the governor emergency': 856640, 'governor emergency order': 360900, 'emergency order but': 272834, 'order but we': 618097, 'but we would': 147771, 'we would rather': 973976, 'would rather have': 1012155, 'rather have you': 697471, 'have you mad': 383678, 'you mad at': 1019744, 'mad at your': 507527, 'at your state': 101692, 'your state government': 1025931, 'state government and': 795610, 'government and alive': 359858, 'and alive than': 57852, 'alive than sick': 41839, 'than sick or': 841142, 'sick or dead': 768553, 'or dead and': 614893, 'dead and unable': 229133, 'and unable to': 74589, 'unable to post': 939342, 'to post mean': 911914, 'post mean thing': 666211, 'mean thing on': 524719, 'thing on our': 884639, 'on our social': 602630, 'our social medium': 624811, 'social medium this': 779890, 'medium this virus': 527324, 'this virus is': 891013, 'virus is no': 958390, '880': 23064, 'bullion': 142448, 'today extended': 919506, 'extended gain': 293164, 'gain for': 342768, 'for 3rd': 318833, '3rd consecutive': 18419, 'to touch': 917646, 'touch new': 926514, 'new lifetime': 559034, 'lifetime high': 489400, 'high of': 395189, 'of 44': 579586, '44 880': 19002, '880 per': 23065, 'per 10': 650666, '10 gram': 1448, 'gram in': 361825, 'the mumbai': 861141, 'mumbai bullion': 545998, 'bullion market': 142452, 'gold price today': 355977, 'price today extended': 677068, 'today extended gain': 919507, 'extended gain for': 293165, 'gain for 3rd': 342769, 'for 3rd consecutive': 318834, '3rd consecutive day': 18420, 'consecutive day to': 194818, 'day to touch': 228590, 'to touch new': 917652, 'touch new lifetime': 926515, 'new lifetime high': 559035, 'lifetime high of': 489401, 'high of 44': 395190, 'of 44 880': 579587, '44 880 per': 19003, '880 per 10': 23066, 'per 10 gram': 650667, '10 gram in': 1449, 'gram in the': 361826, 'in the mumbai': 429379, 'the mumbai bullion': 861142, 'mumbai bullion market': 545999, 'midday': 530604, 'port': 664873, 'capture': 162938, 'midday today': 530612, 'today port': 920053, 'port melbourne': 664885, 'melbourne cole': 527930, 'cole canned': 185851, 'food aisle': 313074, 'aisle told': 40409, 'told she': 923675, 'in tear': 428834, 'tear this': 835972, 'this capture': 886698, 'capture who': 162951, 'is suffering': 452431, 'suffering from': 817305, 'the me': 860332, 'me first': 522733, 'first unnecessary': 309146, 'unnecessary trend': 942955, 'trend of': 931404, 'midday today port': 530613, 'today port melbourne': 920054, 'port melbourne cole': 664887, 'melbourne cole canned': 527931, 'cole canned food': 185852, 'canned food aisle': 161507, 'food aisle told': 313078, 'aisle told she': 40410, 'told she wa': 923677, 'she wa in': 756416, 'wa in tear': 962387, 'in tear this': 428848, 'tear this capture': 835973, 'this capture who': 886699, 'capture who is': 162952, 'who is suffering': 989119, 'is suffering from': 452432, 'suffering from the': 817314, 'from the me': 337786, 'the me first': 860334, 'me first unnecessary': 522734, 'first unnecessary trend': 309148, 'unnecessary trend of': 942956, 'trend of panic': 931409, 'buying it ha': 150594, 'it ha to': 458418, 'bioeconomy': 131198, 'mol': 535630, 'windscreen': 995745, 'the bioeconomy': 849720, 'bioeconomy hub': 131199, 'hub with': 409845, 'their initiative': 873665, 'initiative and': 438605, 'and mol': 67100, 'mol switching': 535636, 'switching plant': 830566, 'plant from': 658652, 'from making': 336308, 'making windscreen': 511490, 'windscreen wash': 995746, 'to hand': 907115, 'in the bioeconomy': 429024, 'the bioeconomy hub': 849721, 'bioeconomy hub with': 131200, 'hub with their': 409847, 'with their initiative': 1001577, 'their initiative and': 873666, 'initiative and mol': 438606, 'and mol switching': 67101, 'mol switching plant': 535637, 'switching plant from': 830567, 'plant from making': 658653, 'from making windscreen': 336315, 'making windscreen wash': 511491, 'windscreen wash to': 995747, 'wash to hand': 967559, 'to hand sanitizer': 907120, 'brent': 139325, 'xbrusd': 1013796, 'xbr': 1013791, 'lower offer': 505920, 'for brent': 319782, 'brent crude': 139328, 'crude offer': 219547, 'offer below': 594539, 'below at': 126600, 'at price': 100195, 'price 27': 672141, '27 00': 16249, '00 25': 30, '25 50': 15817, '50 25': 19587, '25 00': 15785, '00 24': 28, '24 75': 15551, '75 canceled': 22121, 'canceled xbrusd': 160978, 'xbrusd xbr': 1013797, 'xbr oott': 1013794, 'oott brent': 611762, 'lower offer for': 505921, 'offer for brent': 594616, 'for brent crude': 319783, 'brent crude offer': 139332, 'crude offer below': 219548, 'offer below at': 594540, 'below at price': 126601, 'at price 27': 100196, 'price 27 00': 672142, '27 00 25': 16250, '00 25 50': 31, '25 50 25': 15818, '50 25 00': 19588, '25 00 24': 15787, '00 24 75': 29, '24 75 canceled': 15552, '75 canceled xbrusd': 22122, 'canceled xbrusd xbr': 160979, 'xbrusd xbr oott': 1013799, 'xbr oott brent': 1013795, 'divorce': 248702, 'renegotiate': 710956, 'settlement': 753711, 'still get': 800549, 'get divorce': 346891, 'divorce and': 248703, 'the delay': 853044, 'delay can': 232683, 'we renegotiate': 973079, 'renegotiate the': 710961, 'the term': 869291, 'term what': 838343, 'what happens': 981562, 'happens if': 377470, 'cannot sell': 162084, 'sell the': 748892, 'family home': 297893, 'from child': 334842, 'child support': 176209, 'support to': 826939, 'to financial': 905866, 'financial settlement': 306589, 'settlement your': 753723, 'your question': 1025493, 'about divorce': 25114, 'and crisis': 60755, 'crisis answered': 217067, 'can we still': 160202, 'we still get': 973403, 'still get divorce': 800551, 'get divorce and': 346892, 'divorce and what': 248706, 'and what about': 75447, 'about the delay': 26372, 'the delay can': 853045, 'delay can we': 232684, 'can we renegotiate': 160192, 'we renegotiate the': 973080, 'renegotiate the term': 710962, 'the term what': 869299, 'term what happens': 838344, 'what happens if': 981565, 'happens if we': 377475, 'if we cannot': 415271, 'we cannot sell': 971080, 'cannot sell the': 162085, 'sell the family': 748893, 'the family home': 854893, 'family home from': 297894, 'home from child': 401258, 'from child support': 334844, 'child support to': 176210, 'support to financial': 826943, 'to financial settlement': 905870, 'financial settlement your': 306591, 'settlement your question': 753724, 'your question about': 1025494, 'question about divorce': 693497, 'about divorce and': 25115, 'divorce and crisis': 248704, 'and crisis answered': 60756, 'disadvantaged': 244000, 'another thing': 77899, 'is donate': 447304, 'donate tinned': 254246, 'other supply': 621033, 'charity disadvantaged': 173604, 'disadvantaged people': 244009, 'people really': 649238, 'this especially': 887412, 'especially some': 280604, 'some item': 783143, 'item are': 463087, 'supermarket people': 821945, 'in melbourne': 425247, 'melbourne can': 527924, 'can donate': 158136, 'the auspol': 849050, 'another thing you': 77905, 'thing you can': 885031, 'do is donate': 249441, 'is donate tinned': 447305, 'donate tinned food': 254247, 'tinned food and': 898611, 'and other supply': 68419, 'other supply to': 621043, 'supply to charity': 825999, 'to charity disadvantaged': 902654, 'charity disadvantaged people': 173605, 'disadvantaged people really': 244010, 'people really need': 649245, 'really need this': 702446, 'need this especially': 555815, 'this especially some': 887414, 'especially some item': 280605, 'some item are': 783145, 'item are out': 463102, 'of stock at': 590140, 'stock at supermarket': 801887, 'at supermarket people': 100758, 'supermarket people in': 821951, 'people in melbourne': 648395, 'in melbourne can': 425249, 'melbourne can donate': 527925, 'can donate to': 158142, 'donate to place': 254267, 'to place like': 911752, 'place like the': 657557, 'like the auspol': 491349, 'new our': 559238, 'our shelter': 624743, 'shelter in': 757928, 'place online': 657622, 'online resource': 608863, 'resource guide': 714797, 'guide is': 368334, 'now up': 576273, 'date with': 226759, 'with special': 1000903, 'special grocery': 787938, 'our senior': 624711, 'and list': 66219, 'of open': 587291, 'open food': 612232, 'pantry free': 639590, 'new our shelter': 559239, 'our shelter in': 624744, 'shelter in place': 757933, 'in place online': 426752, 'place online resource': 657623, 'online resource guide': 608864, 'resource guide is': 714800, 'guide is now': 368336, 'is now up': 450354, 'now up to': 576274, 'to date with': 903946, 'date with special': 226762, 'with special grocery': 1000907, 'special grocery shopping': 787940, 'hour for our': 405612, 'for our senior': 324289, 'our senior and': 624712, 'senior and list': 750202, 'and list of': 66220, 'list of open': 494459, 'of open food': 587293, 'open food pantry': 612234, 'food pantry free': 315779, 'pantry free to': 639591, 'free to the': 332250, 'the public in': 864821, 're food': 698697, 'maker and': 510812, 'keeper it': 472339, 'got nation': 358732, 'nation to': 552345, 'feed apply': 302282, 'we re food': 972877, 're food maker': 698699, 'food maker and': 315361, 'maker and shop': 510813, 'and shop keeper': 71503, 'shop keeper it': 760389, 'keeper it just': 472340, 'it just what': 459256, 'just what we': 470290, 'what we do': 982547, 'we do and': 971323, 'do and we': 249073, 'and we ve': 75329, 've got nation': 953189, 'got nation to': 358733, 'nation to feed': 552346, 'to feed apply': 905717, 'feed apply for': 302283, 'apply for our': 82564, 'for our job': 324263, 'can not': 159041, 'up great': 945034, 'great result': 362970, 'result no': 717575, 'no clean': 563812, 'clean getaway': 180548, 'getaway this': 348767, 'time 19': 896178, 'you can not': 1017733, 'can not make': 159050, 'not make this': 570509, 'make this up': 510652, 'this up great': 890932, 'up great result': 945035, 'great result no': 362971, 'result no clean': 717576, 'no clean getaway': 563815, 'clean getaway this': 180549, 'getaway this time': 348768, 'this time 19': 890612, 'rapacious': 696878, 'generalstrike': 345553, 'still house': 800723, 'house of': 406422, 'of card': 581139, 'card consumer': 163489, 'based system': 111763, 'system supported': 831325, 'low quality': 505561, 'quality job': 691811, 'job service': 466150, 'service sector': 752792, 'sector with': 744412, 'with rapacious': 1000395, 'rapacious financial': 696879, 'financial sector': 306569, 'sector maybe': 744265, 'new system': 559716, 'system generalstrike': 831184, 'economy is still': 268014, 'is still house': 452286, 'still house of': 800724, 'house of card': 406423, 'of card consumer': 581140, 'card consumer based': 163490, 'consumer based system': 196411, 'based system supported': 111765, 'system supported by': 831326, 'supported by low': 827044, 'by low quality': 153108, 'low quality job': 505562, 'quality job service': 691812, 'job service sector': 466151, 'service sector with': 752802, 'sector with rapacious': 744414, 'with rapacious financial': 1000396, 'rapacious financial sector': 696880, 'financial sector maybe': 306572, 'sector maybe it': 744266, 'maybe it time': 521727, 'time for new': 896730, 'for new system': 323835, 'new system generalstrike': 559717, 'ladoj': 478724, 'hotline': 405226, '351': 17951, '4889': 19353, 'dispute': 246316, 'lalege': 479131, 'lagov': 478970, 'or pricegouging': 616695, 'pricegouging please': 677837, 'the ladoj': 858902, 'ladoj consumer': 478725, 'protection hotline': 685475, 'hotline at': 405243, '800 351': 22664, '351 4889': 17952, '4889 or': 19354, 'or fill': 615304, 'out consumer': 625875, 'consumer dispute': 197220, 'dispute form': 246323, 'form on': 329547, 'website lalege': 975331, 'lalege lagov': 479132, 'suspect scam or': 829490, 'scam or pricegouging': 740280, 'or pricegouging please': 616696, 'pricegouging please report': 677838, 'please report it': 660387, 'it to the': 461761, 'to the ladoj': 916831, 'the ladoj consumer': 858903, 'ladoj consumer protection': 478726, 'consumer protection hotline': 198535, 'protection hotline at': 685479, 'hotline at 800': 405245, 'at 800 351': 97763, '800 351 4889': 22665, '351 4889 or': 17953, '4889 or fill': 19355, 'or fill out': 615306, 'fill out consumer': 305478, 'out consumer dispute': 625879, 'consumer dispute form': 197221, 'dispute form on': 246325, 'form on our': 329548, 'our website lalege': 625343, 'website lalege lagov': 975332, 'diminishing': 242945, 'tim': 896147, 'leunig': 487472, 'succeeded': 816171, 'adviser': 33656, 'well the': 978653, 'food panic': 315748, 'panic linked': 638277, 'not diminishing': 569031, 'diminishing yet': 242948, 'yet imagine': 1016100, 'imagine if': 416737, 'this happened': 887843, 'happened after': 377216, 'that idiot': 844410, 'idiot tim': 413618, 'tim leunig': 896159, 'leunig succeeded': 487473, 'succeeded get': 816172, 'these idiot': 880140, 'idiot boris': 413469, 'boris government': 135457, 'government adviser': 359834, 'adviser say': 33665, 'say uk': 739417, 'uk could': 938280, 'could import': 209323, 'import all': 418611, 'food like': 315307, 'like singapore': 491194, 'singapore political': 771143, 'political news': 663664, 'well the food': 978659, 'the food panic': 855584, 'food panic linked': 315752, 'panic linked to': 638278, 'linked to is': 493995, 'to is not': 908526, 'is not diminishing': 450064, 'not diminishing yet': 569032, 'diminishing yet imagine': 242949, 'yet imagine if': 1016101, 'imagine if this': 416744, 'if this happened': 415156, 'this happened after': 887844, 'happened after that': 377218, 'after that idiot': 36275, 'that idiot tim': 844412, 'idiot tim leunig': 413619, 'tim leunig succeeded': 896160, 'leunig succeeded get': 487474, 'succeeded get rid': 816173, 'rid of these': 721398, 'of these idiot': 591829, 'these idiot boris': 880142, 'idiot boris government': 413470, 'boris government adviser': 135458, 'government adviser say': 359835, 'adviser say uk': 33666, 'say uk could': 739418, 'uk could import': 938283, 'could import all': 209324, 'import all food': 418612, 'all food like': 42816, 'food like singapore': 315312, 'like singapore political': 491195, 'singapore political news': 771144, 'political news sky': 663665, 'oh this': 596460, 'so great': 777203, 'great also': 362495, 'also how': 48372, 'anyone talk': 80546, 'talk that': 833852, 'that fast': 843843, 'oh this is': 596461, 'is so great': 452011, 'so great also': 777204, 'great also how': 362496, 'also how doe': 48376, 'how doe anyone': 407737, 'doe anyone talk': 251345, 'anyone talk that': 80548, 'talk that fast': 833853, 'coloring': 186834, 'lego': 486066, 'slimming': 773997, 'achievement': 29058, 'cupcake': 220509, 'dough': 256265, 'pot': 666874, 'friday peep': 333273, 'peep please': 646292, 'just think': 470038, 'food if': 314886, 'short on': 764664, 'supply get': 825313, 'you busy': 1017547, 'busy with': 145015, 'kid coloring': 473908, 'coloring pen': 186837, 'pen lego': 646410, 'lego slimming': 486073, 'slimming achievement': 773998, 'achievement kit': 29059, 'kit cupcake': 475530, 'cupcake making': 220510, 'making kit': 511163, 'kit making': 475592, 'making pizza': 511284, 'pizza dough': 657159, 'dough plant': 256268, 'plant pot': 658693, 'pot and': 666875, 'school closed on': 741733, 'closed on friday': 183259, 'on friday peep': 601011, 'friday peep please': 333274, 'peep please do': 646293, 'please do not': 659895, 'do not just': 249770, 'not just think': 570259, 'just think about': 470040, 'think about food': 885084, 'about food if': 25256, 'food if you': 314897, 'you re short': 1020744, 're short on': 699508, 'short on supply': 764666, 'on supply get': 603825, 'supply get thing': 825316, 'get thing to': 348399, 'thing to keep': 884894, 'keep you busy': 472233, 'you busy with': 1017548, 'busy with the': 145017, 'the kid coloring': 858781, 'kid coloring pen': 473909, 'coloring pen lego': 186838, 'pen lego slimming': 646411, 'lego slimming achievement': 486074, 'slimming achievement kit': 773999, 'achievement kit cupcake': 29060, 'kit cupcake making': 475531, 'cupcake making kit': 220511, 'making kit making': 511164, 'kit making pizza': 475593, 'making pizza dough': 511286, 'pizza dough plant': 657160, 'dough plant pot': 256269, 'plant pot and': 658694, 'pot and seed': 666877, 'loving': 505046, 'quiet': 694670, 'atm': 101912, 'loving how': 505057, 'how quiet': 408558, 'quiet the': 694705, 'tube is': 935037, 'is atm': 445879, 'atm covid': 101923, 'is terrible': 452606, 'terrible yes': 838456, 'yes but': 1015390, 'now get': 574767, 'get fantastic': 346988, 'fantastic level': 298594, 'consumer utility': 199435, 'utility for': 951288, 'my 50': 547163, '50 tube': 19893, 'tube ticket': 935051, 'loving how quiet': 505058, 'how quiet the': 408559, 'quiet the tube': 694706, 'the tube is': 870102, 'tube is atm': 935038, 'is atm covid': 445880, 'atm covid 19': 101924, '19 is terrible': 8062, 'is terrible yes': 452611, 'terrible yes but': 838457, 'yes but now': 1015396, 'but now get': 146605, 'now get fantastic': 574771, 'get fantastic level': 346989, 'fantastic level of': 298595, 'level of consumer': 487628, 'of consumer utility': 581783, 'consumer utility for': 199436, 'utility for my': 951289, 'for my 50': 323666, 'my 50 tube': 547164, '50 tube ticket': 19894, 'charity organization': 173665, 'organization particularly': 619412, 'particularly food': 642676, 'food shelf': 316451, 'shelf amp': 756710, 'amp pantry': 54273, 'with increased': 998974, 'for service': 325494, 'service amp': 752064, 'amp fewer': 53791, 'volunteer here': 960283, 'are place': 89093, 'to across': 900003, 'across mn': 29393, 'mn inc': 534797, 'inc visit': 431309, 'charity organization particularly': 173667, 'organization particularly food': 619413, 'particularly food shelf': 642678, 'food shelf amp': 316452, 'shelf amp pantry': 756712, 'amp pantry are': 54275, 'pantry are struggling': 639537, 'are struggling to': 90593, 'up with increased': 946652, 'with increased demand': 998975, 'demand for service': 235495, 'for service amp': 325496, 'service amp fewer': 752066, 'amp fewer volunteer': 53792, 'fewer volunteer here': 304245, 'volunteer here are': 960284, 'here are place': 392754, 'are place you': 89094, 'you can donate': 1017662, 'donate to across': 254249, 'to across mn': 900005, 'across mn inc': 29394, 'mn inc visit': 534798, 'inc visit to': 431310, 'visit to learn': 959413, 'warrant': 967319, 'believe the': 126355, 'the data': 852843, 'data in': 226273, 'iowa warrant': 444515, 'warrant shelterinplace': 967324, 'shelterinplace order': 758006, 'governor that': 360998, 'that being': 842972, 'being said': 125711, 'said continue': 731029, 'limit your': 492570, 'your trip': 1026214, 'store sanitize': 809989, 'sanitize surface': 734219, 'surface and': 827983, 'practice responsible': 668641, 'responsible socialdistancing': 716057, 'not believe the': 568560, 'believe the data': 126359, 'the data in': 852848, 'data in iowa': 226274, 'in iowa warrant': 424140, 'iowa warrant shelterinplace': 444516, 'warrant shelterinplace order': 967325, 'shelterinplace order from': 758008, 'order from the': 618260, 'from the governor': 337727, 'the governor that': 856646, 'governor that being': 360999, 'that being said': 842977, 'being said continue': 125712, 'said continue to': 731030, 'continue to limit': 201217, 'to limit your': 909308, 'limit your trip': 492574, 'your trip to': 1026215, 'grocery store sanitize': 365744, 'store sanitize surface': 809990, 'sanitize surface and': 734220, 'surface and practice': 827985, 'and practice responsible': 69303, 'practice responsible socialdistancing': 668642, 'consumerprotection': 199736, 'in positive': 426853, 'positive news': 665371, 'news announced': 560242, 'announced monday': 76995, 'monday that': 536388, 'ha removed': 371718, 'removed more': 710874, 'than 900': 840309, '900 selling': 23392, 'selling account': 749143, 'account in': 28700, 'it store': 461282, 'coronavirus based': 205541, 'based price': 111717, 'gouging consumer': 359296, 'consumer consumerprotection': 196957, 'consumerprotection pricing': 199748, 'pricing pandemic': 677954, 'in positive news': 426854, 'positive news announced': 665373, 'news announced monday': 560243, 'announced monday that': 76997, 'monday that it': 536389, 'that it ha': 844713, 'it ha removed': 458410, 'ha removed more': 371719, 'removed more than': 710875, 'more than 900': 540585, 'than 900 selling': 840310, '900 selling account': 23393, 'selling account in': 749144, 'account in it': 28701, 'in it store': 424272, 'it store for': 461289, 'store for coronavirus': 807794, 'for coronavirus based': 320375, 'coronavirus based price': 205542, 'based price gouging': 111718, 'price gouging consumer': 674271, 'gouging consumer consumerprotection': 359297, 'consumer consumerprotection pricing': 196958, 'consumerprotection pricing pandemic': 199749, 'prevented': 671784, 'over purchased': 630539, 'purchased panic': 689800, 'buy such': 149252, 'such food': 816498, 'paper should': 640778, 'be returned': 116862, 'returned you': 719989, 'you prevented': 1020425, 'prevented others': 671787, 'having supply': 384298, 'supply now': 825603, 'face your': 294874, 'your decision': 1023474, 'decision it': 231047, 'not our': 570855, 'our problem': 624472, 'problem rent': 679662, 'rent is': 711115, 'is due': 447399, 'due or': 261672, 'or that': 617358, 'that your': 847762, 'over purchased panic': 630540, 'purchased panic buy': 689801, 'panic buy such': 637532, 'buy such food': 149253, 'such food and': 816499, 'food and toilet': 313364, 'toilet paper should': 921451, 'paper should not': 640779, 'not be allowed': 568352, 'allowed to be': 46225, 'to be returned': 901507, 'be returned you': 116863, 'returned you prevented': 719990, 'you prevented others': 1020426, 'prevented others from': 671788, 'others from having': 621420, 'from having supply': 335734, 'having supply now': 384299, 'supply now face': 825605, 'now face your': 574656, 'face your decision': 294875, 'your decision it': 1023475, 'decision it not': 231049, 'it not our': 459906, 'not our problem': 570860, 'our problem rent': 624473, 'problem rent is': 679663, 'rent is due': 711116, 'is due or': 447400, 'due or that': 261673, 'or that your': 617364, 'that your family': 847766, 'your family is': 1023789, 'family is hungry': 297951, 'racism': 695267, 'hyderabad': 411916, 'facial': 295232, 'tanmay': 834265, 'mehta': 527867, 'indiafightscoronavirus': 434741, 'in yet': 431040, 'yet another': 1015989, 'another incident': 77670, 'of racism': 588712, 'racism amid': 695274, 'coronavirus frenzy': 205952, 'frenzy two': 332797, 'two people': 937132, 'were denied': 979513, 'denied entry': 236954, 'entry to': 279030, 'in hyderabad': 423933, 'hyderabad due': 411919, 'their facial': 873230, 'facial feature': 295239, 'feature watch': 301564, 'information report': 437968, 'report by': 711842, 'by tanmay': 154217, 'tanmay mehta': 834266, 'mehta lockdown': 527870, 'lockdown northeast': 499694, 'northeast indiafightscoronavirus': 567723, 'in yet another': 431041, 'yet another incident': 1015993, 'another incident of': 77671, 'incident of racism': 431426, 'of racism amid': 588713, 'racism amid the': 695275, 'the coronavirus frenzy': 851852, 'coronavirus frenzy two': 205953, 'frenzy two people': 332798, 'two people were': 937141, 'people were denied': 650199, 'were denied entry': 979514, 'denied entry to': 236956, 'entry to supermarket': 279036, 'to supermarket in': 915802, 'supermarket in hyderabad': 820911, 'in hyderabad due': 423934, 'hyderabad due to': 411920, 'due to their': 261993, 'to their facial': 917232, 'their facial feature': 873232, 'facial feature watch': 295240, 'feature watch the': 301565, 'watch the video': 968554, 'the video for': 870745, 'video for more': 956732, 'more information report': 539592, 'information report by': 437969, 'report by tanmay': 711849, 'by tanmay mehta': 154218, 'tanmay mehta lockdown': 834267, 'mehta lockdown northeast': 527871, 'lockdown northeast indiafightscoronavirus': 499695, 'knock': 476145, 'application': 82435, 'developed': 239671, 'ecommercebusiness': 266903, 'opportunity knock': 613649, 'knock on': 476160, 'door build': 255538, 'build your': 142022, 'online business': 607954, 'business with': 144695, 'with sign': 1000731, 'up get': 945014, 'your ecommerce': 1023616, 'ecommerce application': 266716, 'application developed': 82447, 'developed in': 239710, 'in few': 422859, 'week time': 977061, 'time grocery': 896865, 'supermarket ecommerce': 820085, 'ecommerce ecommercebusiness': 266759, 'ecommercebusiness newnormal': 266904, 'newnormal retail': 560143, 'opportunity knock on': 613651, 'knock on the': 476162, 'on the door': 604074, 'the door build': 853562, 'door build your': 255539, 'build your online': 142024, 'your online business': 1025069, 'online business with': 607960, 'business with sign': 144704, 'with sign up': 1000733, 'sign up get': 769252, 'up get your': 945016, 'get your ecommerce': 348698, 'your ecommerce application': 1023617, 'ecommerce application developed': 266718, 'application developed in': 82448, 'developed in few': 239711, 'in few week': 422865, 'few week time': 304171, 'week time grocery': 977062, 'time grocery supermarket': 896869, 'grocery supermarket ecommerce': 365995, 'supermarket ecommerce ecommercebusiness': 820086, 'ecommerce ecommercebusiness newnormal': 266760, 'ecommercebusiness newnormal retail': 266905, 'be certain': 114042, 'certain to': 170120, 'thank them': 841654, 'amazon delivery': 50909, 'delivery folk': 234001, 'folk pharmacist': 312234, 'pharmacist hospitality': 654147, 'hospitality staff': 404805, 'course nurse': 211908, 'doctor these': 251130, 'this battle': 886493, 'be certain to': 114043, 'certain to thank': 170121, 'to thank them': 916436, 'thank them for': 841660, 'them for their': 875728, 'for their service': 326869, 'their service grocery': 874661, 'driver amazon delivery': 259396, 'amazon delivery folk': 50910, 'delivery folk pharmacist': 234002, 'folk pharmacist hospitality': 312235, 'pharmacist hospitality staff': 654148, 'hospitality staff and': 404806, 'staff and of': 792149, 'of course nurse': 582065, 'course nurse and': 211909, 'and doctor these': 61583, 'doctor these are': 251131, 'line of this': 493318, 'of this battle': 591940, 'woulf': 1012517, 'it these': 461621, 'these high': 880115, 'sanitiser what': 734044, 'what woulf': 982648, 'woulf it': 1012518, 'it use': 461989, 'use after': 949016, 'come to think': 187608, 'to think of': 917378, 'think of it': 885449, 'of it these': 585455, 'it these high': 461623, 'these high price': 880117, 'price of sanitiser': 675561, 'of sanitiser what': 589281, 'sanitiser what woulf': 734046, 'what woulf it': 982649, 'woulf it use': 1012519, 'it use after': 461990, 'use after the': 949017, 'abouttime': 27025, '30 pay': 17174, 'pay cut': 644823, 'cut 20': 223210, '20 million': 13160, 'the 125': 847879, '125 million': 3070, 'national league': 552550, 'league abouttime': 483842, 'abouttime take': 27026, 'about second': 26154, 'second to': 743849, 'put gate': 690585, 'gate price': 344350, 'up tho': 946287, '30 pay cut': 17175, 'pay cut 20': 644824, 'cut 20 million': 223211, '20 million to': 13163, 'million to the': 532392, 'to the 125': 916470, 'the 125 million': 847880, '125 million to': 3071, 'million to and': 532381, 'to and national': 900514, 'and national league': 67432, 'national league abouttime': 552551, 'league abouttime take': 483843, 'abouttime take about': 27027, 'take about second': 831885, 'about second to': 26155, 'second to put': 743854, 'to put gate': 912589, 'put gate price': 690586, 'gate price up': 344354, 'price up tho': 677263, '14days': 3609, 'we agreed': 970299, 'agreed the': 38729, 'the deadly': 852943, 'deadly virus': 229301, 'virus covid': 958097, 'but sir': 147063, 'sir there': 771658, 'be provision': 116608, 'provision for': 687257, 'that feed': 843851, 'feed on': 302345, 'on daily': 600205, 'daily income': 224641, 'income most': 432412, 'most citizen': 542173, 'citizen can': 178867, 'not afford': 568075, 'to 14days': 899496, '14days food': 3610, 'food remember': 316166, 'remember hunger': 710209, 'hunger kill': 411140, 'kill faster': 474391, 'faster th': 300120, 'we agreed the': 970301, 'agreed the lockdown': 38730, 'lockdown is to': 499558, 'is to reduce': 453235, 'of the deadly': 590931, 'the deadly virus': 852950, 'deadly virus covid': 229304, 'virus covid 19': 958098, '19 but sir': 5526, 'but sir there': 147064, 'sir there should': 771660, 'should be provision': 765701, 'be provision for': 116609, 'provision for those': 687259, 'those that feed': 892533, 'that feed on': 843852, 'feed on daily': 302347, 'on daily income': 600207, 'daily income most': 224642, 'income most citizen': 432413, 'most citizen can': 542174, 'citizen can not': 178871, 'can not afford': 159042, 'not afford to': 568079, 'stock up to': 803124, 'up to 14days': 946322, 'to 14days food': 899497, '14days food remember': 3611, 'food remember hunger': 316167, 'remember hunger kill': 710210, 'hunger kill faster': 411143, 'kill faster th': 474393, 'the cute': 852745, 'cute outfit': 223667, 'outfit not': 628944, 'not gonna': 569711, 'gonna wear': 356650, 'wear this': 974480, 'shopping for all': 762656, 'all the cute': 44709, 'the cute outfit': 852747, 'cute outfit not': 223668, 'outfit not gonna': 628945, 'not gonna wear': 569715, 'gonna wear this': 356654, 'spare': 787466, 'being the': 125924, 'the generous': 856212, 'generous person': 345729, 'person that': 652632, 'that am': 842611, 'am few': 50045, 'ago gave': 38393, 'gave away': 344600, 'away my': 105971, 'my spare': 550178, 'spare hand': 787481, 'group thinking': 366922, 'thinking could': 885891, 'buy more': 148964, 'more few': 539206, 'later despite': 481046, 'despite my': 238794, 'my daily': 547907, 'daily visit': 224868, 'store haven': 808107, 'haven bought': 383767, 'bought any': 136503, 'any and': 78923, 'and stupid': 72622, 'stupid price': 815444, 'on amazon': 599269, 'amazon and': 50847, 'and ebay': 61885, 'being the generous': 125927, 'the generous person': 856213, 'generous person that': 345731, 'person that am': 652633, 'that am few': 842612, 'am few week': 50046, 'week ago gave': 975847, 'ago gave away': 38394, 'gave away my': 344603, 'away my spare': 105972, 'my spare hand': 550179, 'spare hand sanitizers': 787483, 'hand sanitizers to': 375726, 'sanitizers to people': 736425, 'to people in': 911626, 'in the at': 428992, 'the at risk': 849001, 'at risk group': 100363, 'risk group thinking': 723596, 'group thinking could': 366923, 'thinking could buy': 885892, 'could buy more': 208981, 'buy more few': 148969, 'more few week': 539207, 'week later despite': 976467, 'later despite my': 481047, 'despite my daily': 238796, 'my daily visit': 547909, 'daily visit to': 224869, 'visit to the': 959417, 'the store haven': 868034, 'store haven bought': 808108, 'haven bought any': 383768, 'bought any and': 136504, 'any and stupid': 78926, 'and stupid price': 72624, 'stupid price on': 815446, 'price on amazon': 675648, 'on amazon and': 599270, 'amazon and ebay': 50849, 'shirt': 758962, 'lowered': 506061, 'lazzaro': 482758, 'spallanzani': 787372, 'rome': 725743, 'forzaroma': 330071, 'romacares': 725707, 'shirt price': 759001, 'been lowered': 121497, 'lowered to': 506090, 'to 20': 899566, '20 and': 12941, 'all proceeds': 44052, 'proceeds will': 679865, 'be donated': 114540, 'donated to': 254362, 'the lazzaro': 859207, 'lazzaro spallanzani': 482759, 'spallanzani hospital': 787373, 'hospital in': 404463, 'in rome': 427538, 'rome let': 725749, 'let fight': 486710, 'together forzaroma': 920798, 'forzaroma romacares': 330072, 'shirt price have': 759002, 'have been lowered': 379603, 'been lowered to': 121499, 'lowered to 20': 506091, 'to 20 and': 899569, '20 and all': 12943, 'and all proceeds': 57885, 'all proceeds will': 44055, 'proceeds will be': 679866, 'will be donated': 992437, 'be donated to': 114543, 'donated to the': 254369, 'to the lazzaro': 916839, 'the lazzaro spallanzani': 859208, 'lazzaro spallanzani hospital': 482760, 'spallanzani hospital in': 787374, 'hospital in rome': 404474, 'in rome let': 427539, 'rome let fight': 725750, 'let fight this': 486719, 'fight this together': 304921, 'this together forzaroma': 890765, 'together forzaroma romacares': 920799, 'iceland managing': 412713, 'managing director': 512863, 'director richard': 243664, 'richard walker': 721308, 'walker ha': 964994, 'described covid': 237942, 'buying social': 151049, 'social injustice': 779806, 'injustice and': 438725, 'and middle': 66995, 'class privilege': 180244, 'privilege iceland': 679029, 'iceland store': 412720, 'store he': 808115, 'he say': 385390, 'say are': 738434, 'often in': 596214, 'more deprived': 539003, 'deprived area': 237699, 'area where': 92258, 'people cannot': 647424, 'stockpile food': 803743, 'iceland managing director': 412714, 'managing director richard': 512867, 'director richard walker': 243665, 'richard walker ha': 721309, 'walker ha described': 964996, 'ha described covid': 370362, 'described covid 19': 237943, 'panic buying social': 637891, 'buying social injustice': 151050, 'social injustice and': 779807, 'injustice and middle': 438726, 'and middle class': 66996, 'middle class privilege': 530638, 'class privilege iceland': 180245, 'privilege iceland store': 679030, 'iceland store he': 412721, 'store he say': 808121, 'he say are': 385391, 'say are often': 738437, 'are often in': 88691, 'often in more': 596215, 'in more deprived': 425434, 'more deprived area': 539004, 'deprived area where': 237700, 'area where people': 92262, 'where people cannot': 985097, 'people cannot afford': 647426, 'afford to stockpile': 34809, 'to stockpile food': 915470, 'charter': 173862, 'luggage': 506612, 'accommodate': 28424, 'private charter': 678873, 'charter airline': 173863, 'airline set': 40016, 'price generally': 674163, 'generally higher': 345531, 'the pre': 864197, 'pre covid': 669154, 'the apr': 848836, 'apr 16': 83359, '16 flight': 4108, 'flight will': 310560, 'will fly': 993456, 'fly to': 311634, 'to miami': 910107, 'miami allow': 530160, 'allow piece': 46035, 'of luggage': 586070, 'luggage and': 506613, 'may accommodate': 520888, 'accommodate pet': 28433, 'pet if': 653412, 'to return': 913474, 'the please': 863838, 'please seriously': 660468, 'consider this': 195157, 'this option': 889282, 'private charter airline': 678874, 'charter airline set': 173864, 'airline set their': 40017, 'own price generally': 632146, 'price generally higher': 674164, 'generally higher than': 345532, 'higher than the': 395762, 'than the pre': 841261, 'the pre covid': 864198, 'pre covid 19': 669155, 'covid 19 price': 213610, '19 price the': 9821, 'price the apr': 676820, 'the apr 16': 848837, 'apr 16 flight': 83360, '16 flight will': 4109, 'flight will fly': 310562, 'will fly to': 993457, 'fly to miami': 311635, 'to miami allow': 910108, 'miami allow piece': 530161, 'allow piece of': 46036, 'piece of luggage': 656339, 'of luggage and': 586071, 'luggage and may': 506614, 'and may accommodate': 66795, 'may accommodate pet': 520889, 'accommodate pet if': 28434, 'pet if you': 653413, 'you have an': 1019013, 'have an urgent': 379271, 'urgent need to': 948352, 'need to return': 556050, 'to return to': 913481, 'return to the': 719932, 'to the please': 916959, 'the please seriously': 863840, 'please seriously consider': 660469, 'seriously consider this': 751565, 'consider this option': 195164, 'damn grocery': 225355, 'of product': 588477, 'product but': 681024, 'but cant': 145388, 'cant keep': 162316, 'up stocking': 946072, 'stocking because': 803545, 'you damn': 1018144, 'damn crazy': 225336, 'crazy are': 215251, 'spending all': 788724, 'money on': 536927, 'on stuff': 603728, 'stuff that': 815194, 'that isnt': 844683, 'isnt going': 454778, 'going away': 355036, 'away there': 106056, 'or anything': 614373, 'anything else': 80740, 'this panic shopping': 889463, 'panic shopping ha': 638572, 'shopping ha to': 762834, 'stop the damn': 805129, 'the damn grocery': 852814, 'damn grocery store': 225356, 'store have plenty': 808093, 'plenty of product': 660969, 'of product but': 588485, 'product but cant': 681026, 'but cant keep': 145391, 'cant keep up': 162317, 'keep up stocking': 472178, 'up stocking because': 946073, 'stocking because all': 803546, 'because all you': 118922, 'all you damn': 45536, 'you damn crazy': 1018145, 'damn crazy are': 225337, 'crazy are spending': 215252, 'are spending all': 90323, 'spending all your': 788728, 'all your money': 45574, 'your money on': 1024866, 'money on stuff': 536939, 'on stuff that': 603730, 'stuff that isnt': 815196, 'that isnt going': 844684, 'isnt going away': 454779, 'going away there': 355041, 'away there no': 106058, 'there no shortage': 878840, 'of food toilet': 583804, 'paper or anything': 640545, 'or anything else': 614377, 'bullard': 142412, 'in fed': 422853, 'fed bullard': 301788, 'bullard say': 142413, 'say unemployment': 739421, 'unemployment rate': 941266, 'rate may': 697298, 'may hit': 521273, 'hit 30': 398105, 'just in fed': 469035, 'in fed bullard': 422854, 'fed bullard say': 301789, 'bullard say unemployment': 142414, 'say unemployment rate': 739422, 'unemployment rate may': 941274, 'rate may hit': 697299, 'may hit 30': 521275, 'hit 30 in': 398106, '30 in the': 17083, 'to fix': 905988, 'fix your': 309766, 'your toy': 1026194, 'toy during': 927676, 'store repost': 809827, 'repost our': 712830, '19 issue': 8114, 'is resolved': 451463, 'resolved stay': 714650, 'when you need': 984583, 'need to fix': 555938, 'to fix your': 905995, 'fix your toy': 309767, 'your toy during': 1026195, 'toy during these': 927677, 'during these time': 263242, 'these time be': 880838, 'time be sure': 896367, 'sure to support': 827786, 'support the online': 826879, 'the online store': 862282, 'online store repost': 609467, 'store repost our': 809828, 'repost our retail': 712831, 'retail store will': 718730, 'be closed until': 114137, 'closed until the': 183418, 'until the covid': 943850, 'covid 19 issue': 213297, '19 issue is': 8116, 'issue is resolved': 455820, 'is resolved stay': 451464, 'resolved stay safe': 714651, 'of self': 589464, 'isolating with': 455164, 'symptom haven': 830854, 'haven stock': 383904, 'piled food': 656532, 'food can': 313866, 'week what': 977215, 'eat boris': 265869, 'boris we': 135499, 'we haven': 971990, 'been tested': 122149, 'tested perhaps': 839339, 'perhaps we': 651663, 'should go': 766044, 'food govt': 314703, 'govt must': 361204, 'must start': 546899, 'start test': 794541, 'family of self': 298104, 'of self isolating': 589472, 'self isolating with': 747746, 'isolating with covid': 455167, '19 symptom haven': 11016, 'symptom haven stock': 830855, 'haven stock piled': 383905, 'stock piled food': 802640, 'piled food can': 656533, 'food can get': 313869, 'get delivery for': 346862, 'delivery for week': 234035, 'for week what': 327763, 'week what are': 977216, 'going to eat': 355580, 'to eat boris': 904871, 'eat boris we': 265870, 'boris we haven': 135500, 'we haven been': 971991, 'haven been tested': 383764, 'been tested perhaps': 122153, 'tested perhaps we': 839340, 'perhaps we should': 651667, 'we should go': 973274, 'should go out': 766047, 'out to get': 627647, 'get food govt': 347044, 'food govt must': 314704, 'govt must start': 361208, 'must start test': 546900, 'regulate': 707981, 'que': 693304, 'surely the': 827940, 'the exam': 854660, 'exam can': 288790, 'go ahead': 353256, 'ahead the': 39212, 'the school': 866486, 'school are': 741693, 'closed point': 183293, 'point the': 662647, 'exam regulation': 288804, 'regulation state': 708110, 'state there': 795996, 'least one': 484582, 'one metre': 606658, 'metre apart': 529820, 'apart point': 81323, 'point regulate': 662610, 'regulate the': 707991, 'the que': 864998, 'que to': 693322, 'exam point': 288800, 'point we': 662690, 'are closer': 85380, 'closer together': 183523, 'supermarket coronacrisis': 819793, 'surely the exam': 827942, 'the exam can': 854661, 'exam can go': 288791, 'can go ahead': 158489, 'go ahead the': 353259, 'ahead the school': 39214, 'the school are': 866488, 'school are closed': 741695, 'are closed point': 85361, 'closed point the': 183294, 'point the exam': 662648, 'the exam regulation': 854664, 'exam regulation state': 288805, 'regulation state there': 708111, 'state there is': 795997, 'there is at': 878528, 'is at least': 445866, 'at least one': 99532, 'least one metre': 484586, 'one metre apart': 606659, 'metre apart point': 529826, 'apart point regulate': 81324, 'point regulate the': 662611, 'regulate the que': 707996, 'the que to': 865000, 'que to go': 693323, 'go in for': 353705, 'in for the': 423028, 'for the exam': 326419, 'the exam point': 854663, 'exam point we': 288801, 'point we are': 662691, 'we are closer': 970501, 'are closer together': 85383, 'closer together in': 183525, 'together in supermarket': 920835, 'in supermarket coronacrisis': 428579, 'float': 310657, 'nahh': 551418, '19 float': 7024, 'float in': 310658, 'air for': 39731, 'hour nahh': 405771, 'nahh im': 551419, 'im online': 416566, 'covid 19 float': 213103, '19 float in': 7025, 'float in the': 310659, 'the air for': 848485, 'air for hour': 39733, 'for hour nahh': 322397, 'hour nahh im': 405772, 'nahh im online': 551420, 'im online shopping': 416567, 'shopping for this': 762719, 'optician': 613883, 'wolstanton': 1003383, 'stoke': 804239, 'vandalized': 952390, 'to optician': 911037, 'optician wolstanton': 613884, 'wolstanton in': 1003384, 'in stoke': 428361, 'stoke they': 804243, 'put sign': 690813, 'sign in': 769128, 'the bathroom': 849329, 'bathroom saying': 112663, 'you steal': 1021393, 'steal toilet': 799208, 'banned from': 110569, 'entire toilet': 278762, 'paper unit': 641038, 'unit wa': 942112, 'wa vandalized': 963631, 'vandalized and': 952391, 'and stolen': 72462, 'the men': 860471, 'men bathroom': 528467, 'bathroom stop': 112671, 'been to optician': 122223, 'to optician wolstanton': 911038, 'optician wolstanton in': 613885, 'wolstanton in stoke': 1003385, 'in stoke they': 428362, 'stoke they have': 804244, 'they have had': 882323, 'have had to': 380880, 'had to put': 373713, 'to put sign': 912610, 'put sign in': 690814, 'sign in the': 769131, 'in the bathroom': 429010, 'the bathroom saying': 849335, 'bathroom saying that': 112664, 'saying that if': 739700, 'if you steal': 415527, 'you steal toilet': 1021394, 'steal toilet paper': 799209, 'paper you will': 641137, 'you will be': 1022324, 'will be banned': 992373, 'be banned from': 113809, 'banned from the': 110577, 'from the store': 337890, 'store the entire': 810595, 'the entire toilet': 854371, 'entire toilet paper': 278763, 'toilet paper unit': 921511, 'paper unit wa': 641039, 'unit wa vandalized': 942113, 'wa vandalized and': 963632, 'vandalized and stolen': 952392, 'and stolen from': 72463, 'stolen from the': 804291, 'from the men': 337787, 'the men bathroom': 860473, 'men bathroom stop': 528468, 'bathroom stop panic': 112672, 'annualised': 77423, 'robin': 724725, 'bhar': 129338, 'offset': 596087, 'just of': 469356, 'of annualised': 580224, 'annualised supply': 77424, 'supply ha': 825340, 'been cut': 120913, 'far rising': 298908, 'rising to': 723306, '12 for': 2856, '15 for': 3709, 'and 20': 57394, '20 for': 13057, 'and analyst': 58124, 'analyst robin': 57168, 'robin bhar': 724726, 'bhar ass': 129339, 'ass more': 96258, 'more cut': 538939, 'cut will': 223629, 'help offset': 390172, 'offset slump': 596109, 'slump in': 774691, 'demand prevent': 236063, 'prevent price': 671699, 'price from': 674106, 'from falling': 335393, 'falling further': 297272, 'just of annualised': 469357, 'of annualised supply': 580225, 'annualised supply ha': 77425, 'supply ha been': 825341, 'ha been cut': 369765, 'been cut in': 120915, 'cut in response': 223385, '19 so far': 10641, 'so far rising': 777054, 'far rising to': 298909, 'rising to for': 723307, 'to for 12': 906127, 'for 12 for': 318641, '12 for 15': 2857, 'for 15 for': 318666, '15 for and': 3711, 'for and 20': 319314, 'and 20 for': 57397, '20 for and': 13059, 'for and analyst': 319317, 'and analyst robin': 58127, 'analyst robin bhar': 57169, 'robin bhar ass': 724727, 'bhar ass more': 129340, 'ass more cut': 96259, 'more cut will': 538940, 'cut will help': 223630, 'will help offset': 993721, 'help offset slump': 390173, 'offset slump in': 596110, 'slump in demand': 774693, 'in demand prevent': 422146, 'demand prevent price': 236064, 'prevent price from': 671700, 'price from falling': 674113, 'from falling further': 335394, 'oshawa': 619707, 'ont': 611563, 'bcpoli': 113355, 'oshawa ont': 619708, 'ont grocery': 611564, 'employee diagnosed': 273775, 'with 19': 996961, '19 dy': 6677, 'dy in': 263732, 'hospital bcpoli': 404316, 'bcpoli cdnpoli': 113358, 'oshawa ont grocery': 619709, 'ont grocery store': 611565, 'store employee diagnosed': 807476, 'employee diagnosed with': 273776, 'diagnosed with 19': 240236, 'with 19 dy': 996964, '19 dy in': 6678, 'dy in hospital': 263735, 'in hospital bcpoli': 423805, 'hospital bcpoli cdnpoli': 404317, 'chatting': 174007, 'hear and': 387878, 'and chatting': 59770, 'chatting about': 174008, 'from major': 336300, 'major event': 509320, 'event being': 284952, 'cancelled to': 161183, 'in today': 430150, 'today podcast': 920047, 'hear and chatting': 387879, 'and chatting about': 59771, 'chatting about the': 174010, 'about the latest': 26431, 'latest news from': 481455, 'news from major': 560455, 'from major event': 336302, 'major event being': 509321, 'event being cancelled': 284953, 'being cancelled to': 124926, 'cancelled to supermarket': 161184, 'to supermarket queue': 915832, 'queue in today': 693963, 'in today podcast': 430161, 'boost plummeting': 134991, 'plummeting price': 661387, 'russia saudi': 728554, 'saudi price': 737288, 'war top': 966570, 'top oil': 925649, 'have agreed': 379143, 'order to boost': 618666, 'to boost plummeting': 901925, 'boost plummeting price': 134993, 'plummeting price due': 661389, 'crisis and russia': 217048, 'and russia saudi': 70680, 'russia saudi price': 728560, 'saudi price war': 737290, 'price war top': 677379, 'war top oil': 966571, 'top oil producing': 925652, 'producing country have': 680754, 'country have agreed': 210734, 'have agreed to': 379145, 'agreed to cut': 38738, 'lol the': 500959, 'idiot reporter': 413572, 'reporter wa': 712642, 'wa asking': 961593, 'asking question': 96050, 'about oil': 25837, 'but doesn': 145575, 'doesn know': 251862, 'know today': 476909, 'today price': 920067, 'lol the idiot': 500960, 'the idiot reporter': 857846, 'idiot reporter wa': 413573, 'reporter wa asking': 712643, 'wa asking question': 961595, 'asking question about': 96051, 'question about oil': 693502, 'about oil price': 25838, 'oil price but': 597069, 'price but doesn': 672975, 'but doesn know': 145576, 'doesn know today': 251866, 'know today price': 476911, 'today price of': 920070, 'complimentary': 192505, '26 we': 16198, 'we hosted': 972041, 'hosted complimentary': 404919, 'complimentary bite': 192507, 'bite sized': 131873, 'sized live': 772830, 'live roundtable': 496005, 'roundtable discussion': 726395, 'discussion with': 245057, 'the podcast': 863891, 'podcast is': 662290, 'now available': 574149, 'available listen': 104480, 'listen and': 494664, 'and hear': 64405, 'hear how': 387933, 'coping during': 203370, 'time mrx': 897233, 'mrx consumerbehavior': 544469, 'on march 26': 602023, 'march 26 we': 515219, '26 we hosted': 16199, 'we hosted complimentary': 972042, 'hosted complimentary bite': 404920, 'complimentary bite sized': 192508, 'bite sized live': 131875, 'sized live roundtable': 772831, 'live roundtable discussion': 496006, 'roundtable discussion with': 726397, 'discussion with consumer': 245059, 'with consumer the': 997770, 'consumer the podcast': 199269, 'the podcast is': 863894, 'podcast is now': 662291, 'is now available': 450262, 'now available listen': 574160, 'available listen and': 104481, 'listen and hear': 494665, 'and hear how': 64407, 'hear how consumer': 387934, 'how consumer are': 407590, 'consumer are coping': 196288, 'are coping during': 85566, 'coping during this': 203372, 'this time mrx': 890664, 'time mrx consumerbehavior': 897234, 'dig': 242424, 'easiest': 265174, 'fastest': 300139, 'efficient': 269412, 'karel': 470886, 'reason with': 703066, 'empty many': 274946, 'are concerned': 85477, 'their food': 873335, 'supply your': 826150, 'your no': 1025019, 'no dig': 564020, 'dig method': 242440, 'method is': 529779, 'the easiest': 853838, 'easiest fastest': 265175, 'fastest and': 300140, 'most efficient': 542287, 'efficient way': 269441, 'address their': 32050, 'their concern': 872839, 'concern thanks': 193107, 'thanks karel': 842125, 'the reason with': 865282, 'reason with supermarket': 703069, 'with supermarket shelf': 1001061, 'supermarket shelf empty': 822460, 'shelf empty many': 757023, 'empty many are': 274947, 'many are concerned': 513754, 'are concerned about': 85478, 'concerned about their': 193177, 'about their food': 26584, 'their food supply': 873351, 'food supply your': 317021, 'supply your no': 826151, 'your no dig': 1025021, 'no dig method': 564021, 'dig method is': 242441, 'method is the': 529781, 'is the easiest': 452780, 'the easiest fastest': 853839, 'easiest fastest and': 265176, 'fastest and most': 300141, 'and most efficient': 67266, 'most efficient way': 542288, 'efficient way to': 269442, 'way to address': 969985, 'to address their': 900094, 'address their concern': 32051, 'their concern thanks': 872841, 'concern thanks karel': 193108, 'spaniard': 787401, 'spain madrid': 787320, 'madrid toilet': 508237, 'in spain': 428164, 'spain supermarket': 787348, 'full the': 340923, 'the spaniard': 867533, 'spaniard now': 787402, 'now seem': 575758, 'seem to': 746688, 'hoarding beer': 399214, 'wine olive': 995851, 'olive potato': 598743, 'potato chip': 666924, 'chip and': 177499, 'and chocolate': 59870, 'spain madrid toilet': 787321, 'madrid toilet paper': 508238, 'paper is out': 640360, 'is out in': 450662, 'out in spain': 626397, 'in spain supermarket': 428182, 'spain supermarket shelf': 787349, 'shelf are full': 756802, 'are full the': 86735, 'full the spaniard': 340925, 'the spaniard now': 867534, 'spaniard now seem': 787403, 'now seem to': 575759, 'seem to be': 746691, 'to be hoarding': 901309, 'be hoarding beer': 115275, 'hoarding beer and': 399215, 'beer and wine': 122435, 'and wine olive': 75720, 'wine olive potato': 995852, 'olive potato chip': 598744, 'potato chip and': 666925, 'chip and chocolate': 177500, 'rant': 696839, 'gofundme': 354919, 'march 14': 515069, '14 posted': 3520, 'posted hoax': 666535, 'hoax anti': 399698, 'anti socialism': 78326, 'socialism rant': 780975, 'rant on': 696846, 'on fb': 600745, 'fb april': 300643, 'april died': 83574, '19 family': 6936, 'family asking': 297638, 'for gofundme': 321912, 'gofundme donation': 354924, 'march 14 posted': 515072, '14 posted hoax': 3521, 'posted hoax anti': 666536, 'hoax anti socialism': 399699, 'anti socialism rant': 78327, 'socialism rant on': 780976, 'rant on fb': 696848, 'on fb april': 600747, 'fb april died': 300644, 'april died from': 83575, 'covid 19 family': 213073, '19 family asking': 6937, 'family asking for': 297639, 'asking for gofundme': 95987, 'for gofundme donation': 321913, 'monetary': 536534, 'subsided': 815947, 'heavy': 388617, '9ja': 23985, 'insulated': 440616, 'insensitive': 439188, 'unconcerned': 939867, 'else government': 271708, 'making effort': 511034, 'effort in': 269530, 'in form': 423046, 'of monetary': 586597, 'monetary support': 536552, 'support food': 826498, 'supply subsided': 825915, 'subsided price': 815950, 'price among': 672326, 'among others': 53038, 'the heavy': 857221, 'heavy strain': 388660, 'strain people': 812296, 'experiencing from': 291649, 'total lock': 926182, 'down 19': 256384, 'in 9ja': 419969, '9ja the': 23991, 'so insulated': 777418, 'insulated insensitive': 440619, 'insensitive unconcerned': 439203, 'everywhere else government': 288196, 'else government are': 271709, 'government are making': 359899, 'are making effort': 87977, 'making effort in': 511036, 'effort in form': 269532, 'in form of': 423047, 'form of monetary': 329539, 'of monetary support': 586600, 'monetary support food': 536553, 'support food supply': 826504, 'food supply subsided': 317000, 'supply subsided price': 825916, 'subsided price among': 815951, 'price among others': 672328, 'among others to': 53041, 'others to reduce': 621734, 'reduce the heavy': 705962, 'the heavy strain': 857222, 'heavy strain people': 388661, 'strain people are': 812297, 'people are experiencing': 646967, 'are experiencing from': 86341, 'experiencing from the': 291650, 'from the total': 337905, 'the total lock': 869817, 'total lock down': 926183, 'lock down 19': 499021, 'down 19 but': 256385, '19 but in': 5507, 'but in 9ja': 146019, 'in 9ja the': 419970, '9ja the govt': 23992, 'the govt is': 856660, 'govt is so': 361169, 'is so insulated': 452019, 'so insulated insensitive': 777419, 'insulated insensitive unconcerned': 440620, 'vodka': 959948, 'pernod': 652197, 'ricard': 720975, 'fort': 329769, 'smith': 775787, 'tweak': 936278, 'ar': 83793, 'vodka to': 959959, 'to handsanitizer': 907139, 'handsanitizer pernod': 376607, 'pernod ricard': 652198, 'ricard in': 720978, 'in fort': 423052, 'fort smith': 329781, 'smith tweak': 775814, 'tweak process': 936279, 'process to': 679971, 'aid in': 39404, 'in fight': 422873, 'fight news': 304803, 'news time': 560888, 'time record': 897559, 'record fort': 704969, 'smith ar': 775790, 'vodka to handsanitizer': 959961, 'to handsanitizer pernod': 907141, 'handsanitizer pernod ricard': 376608, 'pernod ricard in': 652199, 'ricard in fort': 720979, 'in fort smith': 423054, 'fort smith tweak': 329784, 'smith tweak process': 775815, 'tweak process to': 936280, 'process to aid': 679972, 'to aid in': 900194, 'aid in fight': 39406, 'in fight news': 422875, 'fight news time': 304804, 'news time record': 560889, 'time record fort': 897560, 'record fort smith': 704970, 'fort smith ar': 329782, 'conormcgregor': 194750, 'visor': 959610, 'respirator': 715185, 'oxygen': 632670, 'conormcgregor now': 194751, 'now hate': 574862, 'hate china': 378873, 'china too': 177013, 'too truly': 925138, 'truly terrible': 933342, 'terrible not': 838418, 'people raising': 649225, 'item mask': 463446, 'mask visor': 519485, 'visor glove': 959611, 'glove ventilator': 353001, 'ventilator respirator': 954600, 'respirator oxygen': 715206, 'oxygen you': 632679, 'you name': 1019948, 'name it': 551648, 'been jacked': 121418, 'jacked up': 464147, 'the party': 863320, 'party that': 643044, 'that come': 843257, 'in are': 420476, 'are of': 88639, 'no use': 565819, 'use now': 949393, 'now ccp': 574366, 'conormcgregor now hate': 194752, 'now hate china': 574863, 'hate china too': 378874, 'china too truly': 177014, 'too truly terrible': 925139, 'truly terrible not': 933343, 'terrible not only': 838419, 'these people raising': 880454, 'people raising price': 649226, 'raising price on': 696123, 'price on all': 675647, 'on all our': 599240, 'all our item': 43811, 'our item mask': 623593, 'item mask visor': 463447, 'mask visor glove': 519486, 'visor glove ventilator': 959612, 'glove ventilator respirator': 353003, 'ventilator respirator oxygen': 954601, 'respirator oxygen you': 715207, 'oxygen you name': 632680, 'you name it': 1019949, 'name it the': 551650, 'it the price': 461567, 'the price ha': 864359, 'price ha been': 674377, 'ha been jacked': 369839, 'been jacked up': 121419, 'jacked up the': 464153, 'up the party': 946201, 'the party that': 863324, 'party that come': 643045, 'that come in': 843258, 'come in are': 187360, 'in are of': 420482, 'are of no': 88643, 'of no use': 587049, 'no use now': 565822, 'use now ccp': 949394, 'hire 75': 396992, 'more worker': 541008, 'amazon to hire': 51162, 'to hire 75': 907792, 'hire 75 00': 396993, '75 00 more': 22102, '00 more worker': 349, 'more worker to': 541009, 'worker to cope': 1008001, 'cope with demand': 203345, 'allows': 46370, 'duplicate': 262329, 'mutualaid': 547095, 'someone need': 784575, 'to build': 902079, 'build internet': 141986, 'internet extension': 441935, 'extension that': 293291, 'that allows': 842592, 'allows to': 46401, 'you online': 1020203, 'household basic': 406742, 'while purchasing': 987186, 'purchasing duplicate': 689857, 'duplicate of': 262330, 'item for': 463266, 'for le': 322910, 'fortunate household': 329891, 'household based': 406740, 'list startup': 494540, 'startup mutualaid': 795122, 'someone need to': 784576, 'need to build': 555873, 'to build internet': 902090, 'build internet extension': 141987, 'internet extension that': 441936, 'extension that allows': 293292, 'that allows to': 842595, 'allows to you': 46405, 'to you online': 918913, 'you online shop': 1020206, 'online shop for': 608977, 'shop for your': 760214, 'for your household': 328166, 'your household basic': 1024427, 'household basic food': 406743, 'basic food while': 111899, 'food while purchasing': 317594, 'while purchasing duplicate': 987187, 'purchasing duplicate of': 689858, 'duplicate of those': 262331, 'of those item': 592097, 'those item for': 892137, 'item for le': 463269, 'for le fortunate': 322912, 'le fortunate household': 482959, 'fortunate household based': 329892, 'household based on': 406741, 'based on their': 111698, 'on their shopping': 604506, 'their shopping list': 874722, 'shopping list startup': 763193, 'list startup mutualaid': 494541, 'site would': 772070, 'would go': 1011842, 'site would go': 772071, 'would go back': 1011843, 'economy only': 268131, 'only being': 610171, 'being held': 125223, 'held up': 388945, 'spending meet': 788896, 'meet covid': 527447, 'economy only being': 268132, 'only being held': 610173, 'being held up': 125227, 'held up by': 388947, 'up by consumer': 944549, 'by consumer spending': 152195, 'consumer spending meet': 199074, 'spending meet covid': 788897, 'meet covid 19': 527448, 'monopolise': 537418, 'oh look': 596413, 'look the': 502609, 'ha wiped': 372483, 'wiped out': 996462, 'competition and': 191662, 'and helped': 64483, 'helped the': 391106, 'big supermarket': 130027, 'chain monopolise': 170929, 'monopolise on': 537419, 'we buy': 970872, 'oh look the': 596416, 'look the ha': 502610, 'the ha wiped': 857029, 'ha wiped out': 372484, 'wiped out all': 996466, 'all the competition': 44692, 'the competition and': 851374, 'competition and helped': 191664, 'and helped the': 64486, 'helped the big': 391107, 'the big supermarket': 849626, 'big supermarket chain': 130028, 'supermarket chain monopolise': 819624, 'chain monopolise on': 170930, 'monopolise on everything': 537420, 'on everything we': 600651, 'everything we buy': 288086, 'digital creative': 242541, 'creative medium': 216153, 'medium consumption': 527052, 'consumption and': 199826, 'confidence during': 193853, 'crisis chief': 217214, 'chief marketer': 175942, 'data on digital': 226322, 'on digital creative': 600324, 'digital creative medium': 242542, 'creative medium consumption': 216154, 'medium consumption and': 527054, 'consumption and consumer': 199827, 'and consumer confidence': 60364, 'consumer confidence during': 196894, 'confidence during covid': 193854, '19 crisis chief': 6226, 'crisis chief marketer': 217215, 'to security': 913974, 'security officer': 744689, 'officer to': 595730, 'to artist': 900738, 'to teacher': 916314, 'to scientist': 913911, 'scientist to': 742263, 'food producer': 316000, 'to parent': 911460, 'help fighting': 389720, 'fighting together': 305151, 'together we': 921024, 'will defeat': 993127, 'defeat the': 232047, 'to health worker': 907376, 'health worker to': 386993, 'worker to security': 1008021, 'to security officer': 913975, 'security officer to': 744690, 'officer to artist': 595731, 'to artist to': 900739, 'artist to teacher': 94624, 'to teacher to': 916316, 'teacher to scientist': 835523, 'to scientist to': 913913, 'scientist to grocery': 742264, 'store worker to': 811607, 'worker to food': 1008005, 'to food producer': 906088, 'food producer to': 316006, 'producer to volunteer': 680705, 'volunteer to parent': 960357, 'to parent to': 911463, 'parent to you': 641754, 'to you thank': 918927, 'your best to': 1022952, 'best to help': 127947, 'to help fighting': 907515, 'help fighting together': 389721, 'fighting together we': 305152, 'together we will': 921029, 'we will defeat': 973848, 'will defeat the': 993128, 'arrived': 93937, 'debate': 230306, 'naturally': 552909, 'fuss': 342235, 'london take': 501196, 'note arrived': 572700, 'arrived at': 93944, 'wa one': 962840, 'one elderly': 606228, 'elderly man': 270744, 'man he': 512094, 'arrive but': 93907, 'without debate': 1002581, 'debate all': 230309, 'all naturally': 43582, 'naturally and': 552910, 'and without': 75788, 'without fuss': 1002675, 'fuss he': 342238, 'wa allowed': 961474, 'enter first': 278250, 'first on': 308824, 'on spain': 603584, 'spain lockdown': 787318, 'people in london': 648392, 'in london take': 424899, 'london take note': 501197, 'take note arrived': 832370, 'note arrived at': 572701, 'arrived at the': 93947, 'supermarket and there': 819082, 'and there wa': 73853, 'there wa one': 879258, 'wa one elderly': 962842, 'one elderly man': 606229, 'elderly man he': 270745, 'man he wa': 512095, 'he wa not': 385610, 'not the first': 571998, 'first to arrive': 309124, 'to arrive but': 900729, 'arrive but without': 93909, 'but without debate': 147907, 'without debate all': 1002582, 'debate all naturally': 230310, 'all naturally and': 43583, 'naturally and without': 552911, 'and without fuss': 75794, 'without fuss he': 1002676, 'fuss he wa': 342239, 'he wa allowed': 385584, 'wa allowed to': 961476, 'allowed to enter': 46229, 'to enter first': 905217, 'enter first on': 278251, 'first on spain': 308826, 'on spain lockdown': 603585, 'with user': 1001933, 'user payment': 950309, 'payment policy': 645708, 'policy you': 663547, 'noticed price': 573462, 'hike in': 396217, 'supermarket extra': 820259, 'staff needed': 792675, 'stock shelf': 802826, 'shelf fine': 757084, 'fine hoarder': 307642, 'hoarder take': 399113, 'note no': 572759, 'more special': 540431, 'special sign': 788057, '19 auspol': 5266, 'auspol medium': 103085, 'with user payment': 1001935, 'user payment policy': 950310, 'payment policy you': 645709, 'policy you may': 663548, 'have noticed price': 381716, 'noticed price hike': 573463, 'price hike in': 674531, 'hike in supermarket': 396224, 'in supermarket extra': 428593, 'supermarket extra staff': 820260, 'extra staff needed': 293650, 'staff needed to': 792676, 'needed to stock': 556550, 'to stock shelf': 915451, 'stock shelf fine': 802832, 'shelf fine hoarder': 757085, 'fine hoarder take': 307643, 'hoarder take note': 399114, 'take note no': 832375, 'note no more': 572760, 'no more special': 564818, 'more special sign': 540432, 'special sign of': 788058, 'sign of the': 769175, 'of the time': 591543, 'the time 19': 869572, 'time 19 auspol': 896179, '19 auspol medium': 5267, 'didnt': 241267, 'you didnt': 1018215, 'didnt taken': 241279, '19 seriously': 10417, 'seriously for': 751612, 'dying and': 263778, 'and dont': 61671, 'dont have': 255225, 'have money': 381487, 'concerned with': 193232, 'with is': 999042, 'why you mad': 991592, 'mad at you': 507526, 'at you didnt': 101656, 'you didnt taken': 1018216, 'didnt taken the': 241280, 'taken the covid': 833070, 'covid 19 seriously': 213770, '19 seriously for': 10419, 'seriously for month': 751613, 'for month american': 323508, 'month american are': 537560, 'american are dying': 51802, 'are dying and': 86039, 'dying and dont': 263779, 'and dont have': 61672, 'dont have money': 255228, 'have money and': 381488, 'money and food': 536595, 'and food but': 63032, 'food but the': 313834, 'but the only': 147375, 'only thing you': 611326, 'thing you are': 885030, 'you are concerned': 1017094, 'are concerned with': 85481, 'concerned with is': 193235, 'with is the': 999051, 'is the stock': 452947, 'ownership': 632618, 'decentralized': 230813, 'generational': 345661, 'boomer consumer': 134844, 'economy home': 267942, 'home ownership': 401816, 'ownership car': 632619, 'etc millennials': 282657, 'millennials experience': 532003, 'experience economy': 291353, 'economy travel': 268308, 'travel concert': 930322, 'concert etc': 193263, 'etc due': 282499, 'to great': 906988, 'great recession': 362945, 'recession gen': 704276, 'gen maker': 345223, 'maker economy': 510827, 'economy etc': 267842, '19 local': 8359, 'local decentralized': 497882, 'decentralized production': 230814, 'production will': 682279, 'become generational': 120003, 'generational theme': 345669, 'boomer consumer economy': 134846, 'consumer economy home': 197307, 'economy home ownership': 267943, 'home ownership car': 401817, 'ownership car etc': 632620, 'car etc millennials': 163077, 'etc millennials experience': 282658, 'millennials experience economy': 532004, 'experience economy travel': 291354, 'economy travel concert': 268309, 'travel concert etc': 930323, 'concert etc due': 193264, 'etc due to': 282500, 'due to great': 261794, 'to great recession': 906989, 'great recession gen': 362948, 'recession gen maker': 704277, 'gen maker economy': 345224, 'maker economy etc': 510828, 'economy etc due': 267843, 'covid 19 local': 213365, '19 local decentralized': 8361, 'local decentralized production': 497883, 'decentralized production will': 230815, 'production will become': 682280, 'will become generational': 992794, 'become generational theme': 120004, 'reference': 706483, 'bloc': 132757, 'takeaway from': 832864, 'webinar impact': 975041, 'on global': 601097, 'global business': 351761, 'the specific': 867550, 'specific reference': 788245, 'reference to': 706505, 'healthcare sector': 387270, 'sector country': 744146, 'country with': 211254, 'with high': 998798, 'high consumer': 394964, 'consumer market': 198094, 'and population': 69200, 'population will': 664753, 'will see': 994763, 'see greater': 745161, 'greater investment': 363190, 'the trading': 869867, 'trading bloc': 928842, 'bloc india': 132758, 'india coronaupdatesindia': 434362, 'takeaway from the': 832868, 'from the webinar': 337921, 'the webinar impact': 871267, 'webinar impact of': 975042, '19 on global': 8946, 'on global business': 601100, 'global business with': 351762, 'business with the': 144706, 'with the specific': 1001485, 'the specific reference': 867551, 'specific reference to': 788246, 'reference to healthcare': 706507, 'to healthcare sector': 907383, 'healthcare sector country': 387272, 'sector country with': 744147, 'country with high': 211256, 'with high consumer': 998799, 'high consumer market': 394966, 'consumer market and': 198096, 'market and population': 515981, 'and population will': 69201, 'population will see': 664755, 'will see greater': 994775, 'see greater investment': 745162, 'greater investment in': 363191, 'investment in the': 444013, 'in the trading': 429623, 'the trading bloc': 869868, 'trading bloc india': 928843, 'bloc india coronaupdatesindia': 132759, 'usnews': 950828, 'here why': 393832, 'why via': 991502, 'via usnews': 956349, 'usnews grocerystores': 950830, 'grocerystores toiletpaper': 366383, 'tp hygiene': 927847, 'wiped out of': 996474, 'paper here why': 640269, 'here why via': 393840, 'why via usnews': 991504, 'via usnews grocerystores': 956350, 'usnews grocerystores toiletpaper': 950831, 'grocerystores toiletpaper tp': 366384, 'toiletpaper tp hygiene': 922749, 'shopper form': 761519, 'form long': 329523, 'long queue': 501576, 'supermarket amid': 818900, 'shopper form long': 761520, 'form long queue': 329524, 'long queue outside': 501585, 'queue outside supermarket': 694038, 'outside supermarket amid': 629564, 'supermarket amid panic': 818903, 'you test': 1021549, 'test most': 839091, 'most african': 542078, 'african american': 35171, 'american you': 52332, 'probably see': 679367, 'see large': 745353, 'positive test': 665450, 'if you test': 415538, 'you test most': 1021551, 'test most african': 839092, 'most african american': 542079, 'african american you': 35174, 'american you will': 52334, 'you will probably': 1022350, 'will probably see': 994469, 'probably see large': 679369, 'see large number': 745354, 'of positive test': 588252, 'infromation': 438241, 'ftc post': 339423, 'post coronavirus': 666064, 'coronavirus information': 206143, 'information fda': 437812, 'fda post': 300904, 'disease 2019': 245074, '2019 covid': 13955, '19 infromation': 7885, 'infromation stay': 438242, 'ftc post coronavirus': 339424, 'post coronavirus information': 666067, 'coronavirus information fda': 206145, 'information fda post': 437813, 'fda post coronavirus': 300905, 'post coronavirus disease': 666066, 'coronavirus disease 2019': 205826, 'disease 2019 covid': 245075, '2019 covid 19': 13956, 'covid 19 infromation': 213273, '19 infromation stay': 7886, 'infromation stay safe': 438243, 'candy': 161323, 'had lot': 373266, 'folk yesterday': 312321, 'yesterday getting': 1015749, 'getting one': 349160, 'one or': 606793, 'two thing': 937262, 'store work': 811437, 'just wine': 470307, 'chocolate bar': 177658, 'bar or': 110744, 'or candy': 614657, 'candy appreciate': 161326, 'who genuinely': 988763, 'genuinely are': 345876, 'one but': 606019, 'those many': 892192, 'many who': 514873, 'who aren': 988262, 'aren please': 92480, 'had lot of': 373267, 'lot of folk': 504191, 'of folk yesterday': 583627, 'folk yesterday getting': 312322, 'yesterday getting one': 1015750, 'getting one or': 349161, 'one or two': 606797, 'or two thing': 617576, 'two thing at': 937263, 'grocery store work': 365969, 'store work in': 811441, 'work in and': 1005294, 'in and it': 420369, 'it wa just': 462136, 'wa just wine': 962475, 'just wine and': 470308, 'wine and chocolate': 995764, 'and chocolate bar': 59871, 'chocolate bar or': 177659, 'bar or candy': 110745, 'or candy appreciate': 614658, 'candy appreciate the': 161327, 'appreciate the people': 82761, 'the people who': 863519, 'people who genuinely': 650299, 'who genuinely are': 988764, 'genuinely are getting': 345877, 'are getting food': 86804, 'getting food to': 348988, 'food to feed': 317250, 'feed their loved': 302391, 'loved one but': 504905, 'one but for': 606022, 'but for those': 145756, 'for those many': 327122, 'those many who': 892193, 'many who aren': 514875, 'who aren please': 988268, 'aren please stay': 92481, 'glimpse': 351704, 'craze': 215196, 'korean': 477513, 'spicy': 789233, 'glimpse of': 351708, 'store craze': 807216, 'craze in': 215197, 'in malaysia': 425009, 'malaysia no': 511626, 'no pasta': 565071, 'pasta stock': 643815, 'stock meat': 802470, 'even canned': 283934, 'deadly korean': 229275, 'korean spicy': 477534, 'spicy noodle': 789234, 'noodle 19': 566779, 'glimpse of the': 351711, 'grocery store craze': 365313, 'store craze in': 807217, 'craze in malaysia': 215198, 'in malaysia no': 425014, 'malaysia no pasta': 511627, 'no pasta stock': 565077, 'pasta stock meat': 643816, 'stock meat or': 802471, 'meat or even': 525681, 'or even canned': 615192, 'even canned food': 283935, 'canned food they': 161524, 'food they only': 317173, 'they only left': 882826, 'only left with': 610719, 'left with the': 485748, 'with the deadly': 1001260, 'the deadly korean': 852948, 'deadly korean spicy': 229276, 'korean spicy noodle': 477535, 'spicy noodle 19': 789235, 'shootout': 759785, 'shootout to': 759786, 'doctor the': 251125, 'nurse the': 577504, 'the firefighter': 855264, 'firefighter police': 308223, 'police the': 663236, 'the guy': 856953, 'guy in': 369031, 'the girl': 856266, 'girl in': 350256, 'the bakery': 849199, 'bakery thank': 108886, 'you without': 1022392, 'without you': 1003065, 'worse staysafestayhome': 1010998, 'shootout to all': 759787, 'all the doctor': 44721, 'the doctor the': 853473, 'doctor the nurse': 251127, 'the nurse the': 861987, 'nurse the firefighter': 577506, 'the firefighter police': 855265, 'firefighter police the': 308229, 'police the guy': 663239, 'the guy in': 856960, 'guy in the': 369042, 'and the girl': 73394, 'the girl in': 856267, 'girl in the': 350257, 'in the bakery': 429006, 'the bakery thank': 849207, 'bakery thank you': 108887, 'thank you without': 841846, 'you without you': 1022393, 'without you this': 1003074, 'you this would': 1021708, 'this would be': 891533, 'would be much': 1011622, 'be much much': 116025, 'much much much': 545137, 'much worse staysafestayhome': 545476, 'bullying': 142528, 'unsavory': 943430, 'am scared': 50360, 'scared for': 740962, 'past few': 643539, 'during order': 262841, 'order ve': 618735, 'much bullying': 544770, 'bullying whenever': 142529, 'whenever needed': 984668, 'outside because': 629374, 'because even': 119040, 'an unsavory': 56901, 'unsavory experience': 943431, 'experience today': 291517, 'today comment': 919392, 'comment top': 188465, 'top the': 925734, 'the cake': 850271, 'am scared for': 50361, 'scared for the': 740964, 'the past few': 863354, 'past few week': 643542, 'few week during': 304144, 'week during order': 976177, 'during order ve': 262843, 'order ve had': 618736, 've had so': 953235, 'so much bullying': 777765, 'much bullying whenever': 544771, 'bullying whenever needed': 142530, 'whenever needed to': 984669, 'needed to go': 556537, 'go outside because': 354008, 'outside because even': 629375, 'because even going': 119041, 'even going to': 284131, 'store ha become': 807999, 'ha become an': 369669, 'become an unsavory': 119922, 'an unsavory experience': 56902, 'unsavory experience today': 943432, 'experience today comment': 291518, 'today comment top': 919393, 'comment top the': 188466, 'top the cake': 925735, 'canterbury': 162362, 'shoppingonline': 764516, 'dear people': 229843, 'of canterbury': 581112, 'canterbury probably': 162363, 'probably everywhere': 679259, 'everywhere do': 288191, 'do food': 249308, 'mean there': 524703, 'no supermarket': 565617, 'the over': 862760, '70 eg': 21758, 'eg me': 269713, 'do want': 250453, 'home much': 401633, 'possible shoppingonline': 665773, 'dear people of': 229844, 'people of canterbury': 648913, 'of canterbury probably': 581113, 'canterbury probably everywhere': 162364, 'probably everywhere do': 679260, 'everywhere do you': 288192, 'to do food': 904507, 'do food shopping': 249309, 'food shopping online': 316530, 'shopping online because': 763414, 'online because it': 607918, 'because it mean': 119192, 'it mean there': 459578, 'mean there are': 524704, 'are no supermarket': 88285, 'no supermarket delivery': 565620, 'slot for the': 774189, 'for the over': 326603, 'the over 70': 862761, 'over 70 eg': 629906, '70 eg me': 21759, 'eg me and': 269714, 'me and we': 522433, 'and we really': 75316, 'we really do': 973022, 'really do want': 702128, 'do want to': 250454, 'want to stay': 966129, 'at home much': 99053, 'home much possible': 401635, 'much possible shoppingonline': 545247, 'asymptomatic': 97290, 'stocker': 803487, 'be spread': 117330, 'by asymptomatic': 151899, 'asymptomatic carrier': 97295, 'carrier essential': 164973, 'store overnight': 809417, 'overnight stocker': 631356, 'stocker touch': 803525, 'touch all': 926444, 'that customer': 843415, 'customer buy': 222205, 'buy kroger': 148884, 'kroger family': 477739, 'family co': 297707, 'co fry': 184844, 'fry ordered': 339293, 'ordered protective': 618889, 'protective measure': 685789, 'measure on': 525277, 'on 2020': 599055, '2020 should': 14595, 'not other': 570853, 'store adapt': 806074, 'adapt their': 31274, 'can be spread': 157689, 'be spread by': 117331, 'spread by asymptomatic': 790460, 'by asymptomatic carrier': 151900, 'asymptomatic carrier essential': 97296, 'carrier essential grocery': 164974, 'essential grocery store': 281109, 'grocery store overnight': 365632, 'store overnight stocker': 809418, 'overnight stocker touch': 631357, 'stocker touch all': 803526, 'touch all the': 926445, 'all the stock': 44924, 'the stock that': 867926, 'stock that customer': 802921, 'that customer buy': 843418, 'customer buy kroger': 222207, 'buy kroger family': 148885, 'kroger family co': 477740, 'family co fry': 297708, 'co fry ordered': 184845, 'fry ordered protective': 339294, 'ordered protective measure': 618891, 'protective measure on': 685793, 'measure on 2020': 525278, 'on 2020 should': 599059, '2020 should not': 14596, 'should not other': 766257, 'not other grocery': 570854, 'grocery store adapt': 365176, 'store adapt their': 806075, 'ke': 471222, 'bungoma': 142666, 'container': 200526, 'ke what': 471245, 'doing concerning': 252334, 'concerning the': 193249, 'the bungoma': 850118, 'bungoma washing': 142669, 'hand container': 374876, 'container with': 200564, 'with exaggerated': 998311, 'exaggerated price': 288780, 'price people': 675845, 'people should': 649439, 'not steal': 571716, 'steal our': 799193, 'our tax': 625085, 'tax with': 835125, 'ke what are': 471246, 'you doing concerning': 1018294, 'doing concerning the': 252335, 'concerning the bungoma': 193250, 'the bungoma washing': 850119, 'bungoma washing hand': 142670, 'washing hand container': 967666, 'hand container with': 374877, 'container with exaggerated': 200565, 'with exaggerated price': 998312, 'exaggerated price people': 288781, 'price people should': 675851, 'people should not': 649448, 'should not steal': 766263, 'not steal our': 571717, 'steal our tax': 799194, 'our tax with': 625088, 'tax with the': 835126, 'elimination': 271493, 'america need': 51620, 'need consumer': 554635, 'consumer bailout': 196381, 'bailout one': 108646, 'that offer': 845458, 'offer relief': 594763, 'relief in': 709364, 'of deferred': 582466, 'deferred loan': 232197, 'payment freeze': 645634, 'on interest': 601599, 'interest rate': 441385, 'the elimination': 854197, 'elimination of': 271494, 'of late': 585725, 'late fee': 480870, 'america need consumer': 51621, 'need consumer bailout': 554637, 'consumer bailout one': 196383, 'bailout one that': 108647, 'one that offer': 607184, 'that offer relief': 845461, 'offer relief in': 594764, 'relief in the': 709367, 'in the form': 429215, 'the form of': 855708, 'form of deferred': 329536, 'of deferred loan': 582467, 'deferred loan payment': 232198, 'loan payment freeze': 497496, 'payment freeze on': 645635, 'freeze on interest': 332545, 'on interest rate': 601600, 'interest rate and': 441387, 'rate and the': 697155, 'and the elimination': 73344, 'the elimination of': 854198, 'elimination of late': 271495, 'of late fee': 585727, 'update video': 947297, '19 cough': 6146, 'cough can': 208462, 'coronavirus update video': 207001, 'update video show': 947298, 'show how covid': 766974, 'covid 19 cough': 212870, '19 cough can': 6147, 'cough can spread': 208463, 'spread through supermarket': 790848, 'iq': 444646, 'block': 132765, 'gradually': 361687, 'dear supermarket': 229890, 'supermarket on': 821720, 'the higher': 857327, 'higher iq': 395619, 'iq please': 444650, 'please create': 659865, 'create dedicated': 215632, 'dedicated aisle': 231693, 'aisle or': 40336, 'two with': 937389, 'essential block': 280833, 'block it': 132785, 'and police': 69155, 'police it': 663074, 'stock gradually': 802205, 'gradually during': 361692, 'during day': 262587, 'day coronacrisisuk': 227484, 'coronacrisisuk stophoarding': 204910, 'dear supermarket on': 229893, 'supermarket on behalf': 821722, 'behalf of the': 123761, 'of the higher': 591102, 'the higher iq': 857328, 'higher iq please': 395620, 'iq please create': 444651, 'please create dedicated': 659866, 'create dedicated aisle': 215633, 'dedicated aisle or': 231694, 'aisle or two': 40338, 'or two with': 617581, 'two with the': 937390, 'with the essential': 1001288, 'the essential block': 854497, 'essential block it': 280834, 'block it and': 132786, 'it and police': 456508, 'and police it': 69159, 'police it and': 663075, 'it and stock': 456514, 'and stock gradually': 72407, 'stock gradually during': 802206, 'gradually during day': 361693, 'during day coronacrisisuk': 262588, 'day coronacrisisuk stophoarding': 227485, 'instant': 440088, 'people hoard': 648264, 'hoard toilet': 398892, 'and instant': 65280, 'instant noodle': 440105, 'noodle from': 566798, 'supermarket others': 821845, 'postpone their': 666783, 'their wedding': 875173, 'wedding which': 975586, 'which resulted': 986273, 'in well': 430786, 'well panic': 978469, 'panic wedding': 638771, 'some people hoard': 783519, 'people hoard toilet': 648267, 'hoard toilet roll': 398894, 'toilet roll and': 921550, 'roll and instant': 725176, 'and instant noodle': 65281, 'instant noodle from': 440107, 'noodle from the': 566799, 'the supermarket others': 868732, 'supermarket others have': 821846, 'others have had': 621447, 'had to postpone': 373711, 'to postpone their': 911928, 'postpone their wedding': 666785, 'their wedding which': 875176, 'wedding which resulted': 975587, 'which resulted in': 986274, 'resulted in well': 717688, 'in well panic': 430788, 'well panic wedding': 978470, 'hy': 411882, 'vee': 953685, 'plasticbagban': 658895, 'hy vee': 411885, 'vee just': 953694, 'announced customer': 76939, 'customer can': 222219, 'can no': 159037, 'longer use': 502102, 'use reusable': 949519, 'store recycling': 809775, 'recycling plasticbagban': 705551, 'plasticbagban supermarket': 658896, 'hy vee just': 411890, 'vee just announced': 953695, 'just announced customer': 468191, 'announced customer can': 76940, 'customer can no': 222225, 'can no longer': 159038, 'no longer use': 564670, 'longer use reusable': 502103, 'use reusable bag': 949520, 'reusable bag in': 720145, 'bag in store': 108320, 'in store recycling': 428447, 'store recycling plasticbagban': 809776, 'recycling plasticbagban supermarket': 705552, 'twist': 936592, 'grandparent scam': 361985, 'of grandparent': 584304, 'scam can': 740099, 'take new': 832358, 'new twist': 559791, 'twist and': 936593, 'new sense': 559560, 'of urgency': 592687, 'urgency here': 948303, 'mind this': 532751, 'this blog': 886571, 'blog from': 132939, 'the go': 856380, 'into full': 442574, 'full detail': 340557, 'grandparent scam in': 361987, 'scam in the': 740204, 'in the age': 428972, 'age of grandparent': 37866, 'of grandparent scam': 584305, 'grandparent scam can': 361986, 'scam can take': 740101, 'can take new': 159903, 'take new twist': 832360, 'new twist and': 559792, 'twist and new': 936594, 'and new sense': 67559, 'new sense of': 559561, 'sense of urgency': 750568, 'of urgency here': 592690, 'urgency here what': 948304, 'what to keep': 982458, 'to keep in': 908804, 'in mind this': 425346, 'mind this blog': 532752, 'this blog from': 886576, 'blog from the': 132942, 'from the go': 337723, 'the go into': 856383, 'go into full': 353749, 'into full detail': 442576, 'way out': 969792, 'restriction via': 717412, 'via online': 956131, 'shopping the way': 764097, 'the way out': 871174, 'way out of': 969795, '19 restriction via': 10185, 'restriction via online': 717413, 'presumably': 671291, 'readymeals': 701004, 'hithergreen': 398542, 'lewisham': 487845, 'presumably these': 671296, 'these have': 880102, 'make way': 510703, 'provide space': 686488, 'the handsanitizer': 857080, 'handsanitizer toiletpaper': 376668, 'and readymeals': 69993, 'readymeals they': 701005, 've bought': 952970, 'bought not': 136654, 've really': 953483, 'really thought': 702666, 'thought this': 893262, 'this through': 890596, 'through hithergreen': 894506, 'hithergreen lewisham': 398543, 'lewisham lockdown': 487846, 'lockdown pandemic': 499762, 'pandemic panicbuying': 636156, 'panicbuying panicbuyinguk': 639017, 'presumably these have': 671297, 'these have had': 880104, 'had to make': 373707, 'to make way': 909764, 'make way to': 510705, 'way to provide': 970075, 'to provide space': 912436, 'provide space to': 686489, 'space to store': 787182, 'to store the': 915645, 'store the handsanitizer': 810603, 'the handsanitizer toiletpaper': 857081, 'handsanitizer toiletpaper and': 376669, 'toiletpaper and readymeals': 921727, 'and readymeals they': 69994, 'readymeals they ve': 701006, 'they ve bought': 883640, 've bought not': 952973, 'bought not sure': 136655, 'not sure they': 571848, 'sure they ve': 827745, 'they ve really': 883677, 've really thought': 953485, 'really thought this': 702667, 'thought this through': 893266, 'this through hithergreen': 890598, 'through hithergreen lewisham': 894507, 'hithergreen lewisham lockdown': 398544, 'lewisham lockdown pandemic': 487847, 'lockdown pandemic panicbuying': 499765, 'pandemic panicbuying panicbuyinguk': 636157, 'recipient': 704521, 'bartholow': 111411, 'with recent': 1000414, 'recent policy': 703955, 'change it': 172157, 'it possible': 460388, 'possible that': 665805, 'that california': 843083, 'california could': 155485, 'could roll': 209610, 'out online': 626935, 'state million': 795773, 'million snap': 532353, 'snap recipient': 776108, 'recipient within': 704542, 'within few': 1002352, 'week say': 976837, 'say bartholow': 738449, 'bartholow policy': 111412, 'policy advocate': 663316, 'advocate with': 33859, 'with center': 997582, 'this piece': 889586, 'piece by': 656278, 'by on': 153419, 'with recent policy': 1000417, 'recent policy change': 703956, 'policy change it': 663366, 'change it possible': 172160, 'it possible that': 460391, 'possible that california': 665806, 'that california could': 843084, 'california could roll': 155486, 'could roll out': 209611, 'roll out online': 725454, 'out online grocery': 626936, 'grocery shopping for': 365022, 'shopping for the': 762717, 'the state million': 867793, 'state million snap': 795774, 'million snap recipient': 532354, 'snap recipient within': 776113, 'recipient within few': 704543, 'within few week': 1002355, 'few week say': 304163, 'week say bartholow': 976838, 'say bartholow policy': 738450, 'bartholow policy advocate': 111413, 'policy advocate with': 663318, 'advocate with center': 33860, 'with center in': 997583, 'center in this': 169238, 'in this piece': 429997, 'this piece by': 889587, 'piece by on': 656285, 'by on 19': 153420, 'on 19 crisis': 599029, 'loathe': 497565, 'day 21': 227116, '21 feel': 15002, 'feel better': 302579, 'than yesterday': 841482, 'yesterday online': 1015825, 'shopping still': 763983, 'still weird': 801402, 'weird but': 977746, 'but onwards': 146699, 'onwards stay': 611711, 'safe keep': 729790, 'keep kind': 471629, 'kind will': 475030, 'not become': 568497, 'become thing': 120170, 'thing loathe': 884561, 'loathe in': 497566, 'in others': 426254, 'day 21 feel': 227118, '21 feel better': 15003, 'feel better than': 302584, 'better than yesterday': 128544, 'than yesterday online': 841484, 'yesterday online shopping': 1015826, 'online shopping still': 609286, 'shopping still weird': 763986, 'still weird but': 801403, 'weird but onwards': 977747, 'but onwards stay': 146700, 'onwards stay safe': 611712, 'stay safe keep': 797248, 'safe keep kind': 729791, 'keep kind will': 471630, 'kind will not': 475031, 'will not become': 994189, 'not become thing': 568500, 'become thing loathe': 120171, 'thing loathe in': 884562, 'loathe in others': 497567, 'mazon': 522011, 'the surrounding': 869019, 'surrounding panic': 828754, 'panic impact': 638192, 'impact our': 417909, 'food aid': 313064, 'aid system': 39458, 'system mazon': 831241, 'mazon is': 522012, 'is proud': 451112, 'proud to': 686052, 'be there': 117673, 'there with': 879367, 'resource needed': 714835, 'keep community': 471414, 'community healthy': 189890, 'and fed': 62749, 'and the surrounding': 73607, 'the surrounding panic': 869021, 'surrounding panic impact': 828755, 'panic impact our': 638193, 'impact our food': 417913, 'our food aid': 623098, 'food aid system': 313071, 'aid system mazon': 39459, 'system mazon is': 831242, 'mazon is proud': 522013, 'is proud to': 451113, 'proud to be': 686054, 'to be there': 901589, 'be there with': 117687, 'there with the': 879370, 'with the resource': 1001452, 'the resource needed': 865593, 'resource needed to': 714836, 'to keep community': 908772, 'keep community healthy': 471416, 'community healthy and': 189891, 'healthy and fed': 387522, 'wondered': 1004052, 'arrow': 94031, 'race': 695176, 'sicken': 768696, 'ever wondered': 285606, 'wondered why': 1004061, 'is spreading': 452187, 'spreading just': 790992, 'even follow': 284069, 'follow arrow': 312353, 'arrow around': 94036, 'or keep': 615900, 'keep 2m': 471277, '2m apart': 16658, 'apart some': 81340, 'some member': 783277, 'human race': 410596, 'race actually': 695177, 'actually sicken': 30957, 'sicken me': 768699, 'if you ever': 415431, 'you ever wondered': 1018462, 'ever wondered why': 285608, 'wondered why the': 1004062, 'why the coronavirus': 991410, 'coronavirus is spreading': 206174, 'is spreading just': 452194, 'spreading just go': 790993, 'to supermarket people': 915827, 'supermarket people can': 821948, 'people can even': 647390, 'can even follow': 158251, 'even follow arrow': 284070, 'follow arrow around': 312354, 'arrow around the': 94037, 'around the store': 93559, 'the store or': 868074, 'store or keep': 809342, 'or keep 2m': 615901, 'keep 2m apart': 471278, '2m apart some': 16666, 'apart some member': 81341, 'some member of': 783278, 'of the human': 591116, 'the human race': 857723, 'human race actually': 410597, 'race actually sicken': 695178, 'actually sicken me': 30958, 'buy new': 148991, 'new measure': 559094, 'measure by': 525148, 'supermarket elderly': 820103, 'elderly only': 270789, 'hour online': 405823, 'online priority': 608803, 'priority more': 678607, 'more click': 538819, 'collect close': 186267, 'close some': 182797, 'some store': 783952, 'store counter': 807205, 'counter max': 210231, 'max of': 520764, 'don panic buy': 253797, 'panic buy new': 637507, 'buy new measure': 148994, 'new measure by': 559096, 'measure by supermarket': 525149, 'by supermarket elderly': 154165, 'supermarket elderly only': 820105, 'elderly only shopping': 270791, 'shopping hour online': 762925, 'hour online priority': 405824, 'online priority more': 608804, 'priority more click': 678608, 'more click and': 538820, 'and collect close': 60080, 'collect close some': 186268, 'close some store': 182799, 'some store counter': 783954, 'store counter max': 807206, 'counter max of': 210232, 'max of any': 520765, 'of any grocery': 580259, 'dealt': 229708, 'you spot': 1021329, 'spot any': 790034, 'up exploiting': 944827, 'exploiting those': 292466, 'need by': 554581, 'gouging report': 359442, 'here share': 393550, 'share the': 755243, 'store name': 809025, 'name and': 551604, 'and location': 66312, 'location and': 498848, 'be dealt': 114352, 'dealt with': 229719, 'with do': 998098, 'them get': 875770, 'get away': 346624, 'away with': 106119, 'with greed': 998683, 'greed please': 363426, 'if you spot': 415523, 'you spot any': 1021330, 'spot any store': 790035, 'store hiking price': 808156, 'hiking price up': 396410, 'price up exploiting': 677232, 'up exploiting those': 944828, 'exploiting those in': 292467, 'those in need': 892098, 'in need by': 425732, 'need by price': 554585, 'price gouging report': 674319, 'gouging report it': 359443, 'report it here': 712063, 'it here share': 458572, 'here share the': 393552, 'share the store': 755257, 'the store name': 868061, 'store name and': 809026, 'name and location': 551609, 'and location and': 66313, 'location and it': 498851, 'will be dealt': 992418, 'be dealt with': 114353, 'dealt with do': 229720, 'with do not': 998099, 'not let them': 570373, 'let them get': 487154, 'them get away': 875771, 'get away with': 346627, 'away with greed': 106122, 'with greed please': 998684, 'greed please rt': 363427, 'foresee': 329043, 'declining': 231455, 'persistent': 652268, 'feel confused': 302597, 'confused by': 194328, 'market rise': 517004, 'rise do': 722828, 'not foresee': 569500, 'foresee socialdistancing': 329055, 'socialdistancing declining': 780312, 'declining significantly': 231492, 'significantly until': 769621, 'until reliable': 943818, 'reliable vaccine': 709221, 'is found': 447915, 'found instead': 330255, 'instead see': 440354, 'see industry': 745306, 'industry event': 435806, 'event have': 284989, 'have continued': 380095, 'continued slowdown': 201337, 'slowdown from': 774436, 'from persistent': 336902, 'persistent consumer': 652269, 'change what': 172391, 'what am': 981014, 'am missing': 50218, 'else feel confused': 271689, 'feel confused by': 302598, 'confused by the': 194329, 'by the market': 154373, 'the market rise': 860153, 'market rise do': 517005, 'rise do not': 722829, 'do not foresee': 249740, 'not foresee socialdistancing': 569502, 'foresee socialdistancing declining': 329056, 'socialdistancing declining significantly': 780313, 'declining significantly until': 231493, 'significantly until reliable': 769622, 'until reliable vaccine': 943819, 'reliable vaccine is': 709222, 'vaccine is found': 951727, 'is found instead': 447918, 'found instead see': 330256, 'instead see industry': 440355, 'see industry event': 745307, 'industry event have': 435807, 'event have continued': 284991, 'have continued slowdown': 380096, 'continued slowdown from': 201338, 'slowdown from persistent': 774437, 'from persistent consumer': 336903, 'persistent consumer behavior': 652270, 'consumer behavior change': 196455, 'behavior change what': 123967, 'change what am': 172392, 'what am missing': 981020, 'stakeholder': 793321, 'fda stakeholder': 300925, 'stakeholder call': 793326, 'call no': 156005, 'of animal': 580208, 'animal food': 76596, 'food including': 314992, 'including pet': 432108, 'food related': 316151, 'related ingredient': 708463, 'ingredient no': 438380, 'no wide': 565894, 'wide spread': 991761, 'spread disruption': 790509, 'disruption reported': 246519, 'reported in': 712487, 'chain empty': 170681, 'empty pet': 275003, 'aisle delay': 40238, 'delay ordering': 232735, 'ordering result': 619012, 'of unprecedented': 592655, 'demand more': 235883, 'fda stakeholder call': 300926, 'stakeholder call no': 793327, 'call no shortage': 156007, 'shortage of animal': 765098, 'of animal food': 580212, 'animal food including': 76598, 'food including pet': 314993, 'including pet food': 432109, 'pet food related': 653395, 'food related ingredient': 316152, 'related ingredient no': 708464, 'ingredient no wide': 438381, 'no wide spread': 565895, 'wide spread disruption': 991763, 'spread disruption reported': 790510, 'disruption reported in': 246520, 'reported in supply': 712493, 'in supply chain': 428728, 'supply chain empty': 824952, 'chain empty pet': 170682, 'empty pet food': 275004, 'pet food aisle': 653379, 'food aisle delay': 313075, 'aisle delay ordering': 40239, 'delay ordering result': 232736, 'ordering result of': 619013, 'result of unprecedented': 717620, 'of unprecedented demand': 592656, 'unprecedented demand more': 943121, 'soo': 785560, 'stranger': 812452, 'acceptable': 28011, 'lockdowncanada': 500229, 'supermarketdating': 824219, 'day17': 228860, 'soo my': 785590, 'my thought': 550352, 'thought single': 893215, 'single think': 771419, 'think my': 885409, 'next date': 561322, 'date will': 226757, 'store only': 809237, 'place being': 657352, 'being with': 126062, 'with stranger': 1001002, 'stranger are': 812453, 'are acceptable': 84177, 'acceptable so': 28024, 'keep with': 472210, 'with 6ft': 997051, '6ft rule': 21619, 'rule new': 727296, 'new meaning': 559092, 'meaning to': 524844, 'to clean': 902805, 'clean up': 180669, 'on aisle': 599203, 'aisle socialdistancing': 40372, 'socialdistancing lockdowncanada': 780497, 'lockdowncanada supermarketdating': 500230, 'supermarketdating day17': 824220, 'soo my thought': 785591, 'my thought single': 550359, 'thought single think': 893216, 'single think my': 771420, 'think my next': 885414, 'my next date': 549486, 'next date will': 561323, 'date will be': 226758, 'will be at': 992368, 'be at the': 113738, 'grocery store only': 365615, 'store only place': 809246, 'only place being': 610977, 'place being with': 657353, 'being with stranger': 126064, 'with stranger are': 1001003, 'stranger are acceptable': 812454, 'are acceptable so': 84178, 'acceptable so to': 28025, 'so to keep': 778535, 'to keep with': 908878, 'keep with 6ft': 472211, 'with 6ft rule': 997052, '6ft rule new': 21620, 'rule new meaning': 727297, 'new meaning to': 559093, 'meaning to clean': 524846, 'to clean up': 902816, 'clean up on': 180673, 'up on aisle': 945520, 'on aisle socialdistancing': 599205, 'aisle socialdistancing lockdowncanada': 40373, 'socialdistancing lockdowncanada supermarketdating': 780498, 'lockdowncanada supermarketdating day17': 500231, 'marc': 515043, 'schindler': 741609, 'skim': 773025, 'compromise': 192656, 'quart': 693221, 'unflushable': 941499, 'rag': 695515, 'marc keeping': 515044, 'keeping with': 472619, 'supermarket theme': 823261, 'theme schindler': 876705, 'schindler list': 741610, 'list senior': 494528, 'citizen whose': 179002, 'whose only': 990666, 'list need': 494398, 'need are': 554468, 'are tp': 91173, 'and skim': 71718, 'skim milk': 773028, 'milk must': 531732, 'must compromise': 546599, 'compromise during': 192657, '19 return': 10215, 'return home': 719848, 'with quart': 1000378, 'quart of': 693226, 'of whole': 593138, 'whole milk': 990258, 'milk and': 531553, 'and box': 59126, 'box unflushable': 137189, 'unflushable white': 941502, 'white rag': 987898, 'marc keeping with': 515045, 'keeping with the': 472621, 'with the supermarket': 1001505, 'the supermarket theme': 868847, 'supermarket theme schindler': 823262, 'theme schindler list': 876706, 'schindler list senior': 741611, 'list senior citizen': 494529, 'senior citizen whose': 750260, 'citizen whose only': 179003, 'whose only grocery': 990667, 'only grocery list': 610547, 'grocery list need': 364700, 'list need are': 494399, 'need are tp': 554474, 'are tp and': 91174, 'tp and skim': 927746, 'and skim milk': 71719, 'skim milk must': 773029, 'milk must compromise': 531733, 'must compromise during': 546600, 'compromise during covid': 192658, 'covid 19 return': 213711, '19 return home': 10216, 'return home with': 719856, 'home with quart': 402535, 'with quart of': 1000379, 'quart of whole': 693227, 'of whole milk': 593140, 'whole milk and': 990259, 'milk and box': 531555, 'and box unflushable': 59129, 'box unflushable white': 137190, 'unflushable white rag': 941503, 'delivers': 233580, 'dispenses': 246154, 'vanloon': 952434, 'this cart': 886703, 'cart delivers': 165285, 'delivers grocery': 233591, 'grocery dispenses': 364462, 'dispenses hand': 246155, 'in vanloon': 430532, 'this cart delivers': 886704, 'cart delivers grocery': 165286, 'delivers grocery dispenses': 233593, 'grocery dispenses hand': 364463, 'dispenses hand sanitizer': 246156, 'sanitizer in vanloon': 735161, 'counting': 210353, 'lifesaving': 489330, 'face severe': 294728, 'severe blood': 753993, 'blood shortage': 133142, 'unprecedented number': 943168, 'of blood': 580747, 'blood drive': 133104, 'drive cancellation': 259004, 'cancellation during': 161015, 'outbreak make': 628434, 'an appointment': 55371, 'appointment to': 82693, 'help patient': 390270, 'patient counting': 644157, 'counting on': 210362, 'on lifesaving': 601835, 'lifesaving blood': 489331, 'we now face': 972611, 'now face severe': 574654, 'face severe blood': 294729, 'severe blood shortage': 753994, 'blood shortage due': 133143, 'an unprecedented number': 56892, 'unprecedented number of': 943169, 'number of blood': 576922, 'of blood drive': 580748, 'blood drive cancellation': 133105, 'drive cancellation during': 259005, 'cancellation during this': 161016, 'this outbreak make': 889324, 'outbreak make an': 628435, 'make an appointment': 509674, 'an appointment to': 55373, 'appointment to help': 82694, 'to help patient': 907584, 'help patient counting': 390272, 'patient counting on': 644158, 'counting on lifesaving': 210363, 'on lifesaving blood': 601836, 'ck': 179626, 'ckont': 179670, 'fewer home': 304213, 'home are': 400723, 'sold and': 781619, 'in ck': 421494, 'ck due': 179635, 'crisis however': 217506, 'home is': 401447, 'still up': 801354, 'up ckont': 944602, 'fewer home are': 304214, 'home are being': 400726, 'are being sold': 84926, 'being sold and': 125828, 'sold and put': 781621, 'and put on': 69812, 'put on the': 690728, 'on the market': 604228, 'the market in': 860122, 'market in ck': 516553, 'in ck due': 421495, 'ck due to': 179636, '19 crisis however': 6261, 'crisis however the': 217507, 'however the average': 409468, 'price of home': 675469, 'of home is': 584719, 'home is still': 401459, 'is still up': 452325, 'still up ckont': 801356, 'potty': 667270, 'insecure': 439123, 'have such': 382834, 'such potty': 816686, 'potty mouth': 667273, 'mouth especially': 543509, 'especially with': 280667, 'great reporter': 362957, 'reporter you': 712646, 're insecure': 698902, 'insecure and': 439124, 're killing': 698962, 'killing america': 474654, 'america now': 51627, 'now finding': 574689, 'finding toiletpaper': 307564, 'toiletpaper ha': 922042, 'become challenge': 119948, 'challenge no': 171507, 'you have such': 1019124, 'have such potty': 382837, 'such potty mouth': 816687, 'potty mouth especially': 667274, 'mouth especially with': 543510, 'especially with great': 280670, 'with great reporter': 998673, 'great reporter you': 362959, 'reporter you re': 712648, 'you re insecure': 1020655, 're insecure and': 698903, 'insecure and you': 439126, 'and you re': 76040, 'you re killing': 1020664, 're killing america': 698963, 'killing america now': 474656, 'america now finding': 51628, 'now finding toiletpaper': 574691, 'finding toiletpaper ha': 307565, 'toiletpaper ha become': 922043, 'ha become challenge': 369673, 'become challenge no': 119949, 'challenge no more': 171508, 'just published': 469506, 'published shopping': 688692, 'shopping which': 764387, 'is safer': 451630, 'safer right': 730374, 'now virus': 576305, 'virus debate': 958116, 'debate onlineshopping': 230313, 'onlineshopping amazon': 609882, 'just published shopping': 469510, 'published shopping online': 688693, 'online shopping which': 609342, 'shopping which is': 764391, 'which is safer': 986049, 'is safer right': 451631, 'safer right now': 730375, 'right now virus': 722173, 'now virus debate': 576306, 'virus debate onlineshopping': 958117, 'debate onlineshopping amazon': 230314, 'noticing': 573498, 'intake': 440926, 'are noticing': 88507, 'noticing higher': 573501, 'but le': 146250, 'le intake': 482995, 'intake meanwhile': 440931, 'meanwhile housing': 524984, 'housing assistance': 407053, 'assistance nonprofit': 96720, 'nonprofit is': 566691, 'is receiving': 451339, 'receiving more': 703786, 'more call': 538756, 'call from': 155899, 'help paying': 390278, 'paying rent': 645472, 'rent the': 711185, 'certain nonprofit': 170061, 'nonprofit plus': 566698, 'plus how': 661623, 'food pantry are': 315767, 'pantry are noticing': 639533, 'are noticing higher': 88508, 'noticing higher demand': 573502, 'higher demand but': 395571, 'demand but le': 235078, 'but le intake': 146253, 'le intake meanwhile': 482996, 'intake meanwhile housing': 440932, 'meanwhile housing assistance': 524985, 'housing assistance nonprofit': 407054, 'assistance nonprofit is': 96721, 'nonprofit is receiving': 566693, 'is receiving more': 451341, 'receiving more call': 703787, 'more call from': 538757, 'call from people': 155907, 'from people who': 336897, 'people who need': 650322, 'who need help': 989313, 'need help paying': 554988, 'help paying rent': 390279, 'paying rent the': 645473, 'rent the coronavirus': 711188, 'the coronavirus impact': 851868, 'impact on certain': 417830, 'on certain nonprofit': 599861, 'certain nonprofit plus': 170063, 'nonprofit plus how': 566699, 'plus how you': 661624, 'bodas': 133777, 'uber': 937799, '8k': 23188, 'felicia': 303138, 'lockdownug': 500394, 'bodas are': 133778, 'new uber': 559796, 'uber sent': 937826, 'sent one': 750789, 'get me': 347534, 'me grocery': 522839, 'grocery from': 364538, 'from nearby': 336554, 'nearby supermarket': 553684, 'he charged': 384833, 'charged me': 173401, 'me 8k': 522340, '8k his': 23189, 'his excuse': 397404, 'excuse the': 289772, 'are blocked': 84995, 'blocked how': 132859, 'you gonna': 1018884, 'gonna move': 356585, 'move then': 543744, 'then felicia': 877165, 'felicia stayhomesavelives': 303139, 'stayhomesavelives lockdownug': 798411, 'bodas are the': 133779, 'are the new': 90867, 'the new uber': 861572, 'new uber sent': 559797, 'uber sent one': 937827, 'sent one to': 750790, 'one to get': 607275, 'to get me': 906528, 'get me grocery': 347536, 'me grocery from': 522842, 'grocery from nearby': 364539, 'from nearby supermarket': 336555, 'nearby supermarket and': 553685, 'supermarket and he': 818997, 'and he charged': 64314, 'he charged me': 384834, 'charged me 8k': 173403, 'me 8k his': 522341, '8k his excuse': 23190, 'his excuse the': 397405, 'excuse the road': 289774, 'the road are': 865920, 'road are blocked': 724408, 'are blocked how': 84996, 'blocked how are': 132860, 'are you gonna': 91798, 'you gonna move': 1018887, 'gonna move then': 356586, 'move then felicia': 543745, 'then felicia stayhomesavelives': 877166, 'felicia stayhomesavelives lockdownug': 303140, 'expert do': 291819, 'panic even': 638077, 'outbreak there': 628732, 'chain via': 171213, 'expert do not': 291820, 'not panic even': 570908, 'panic even with': 638079, 'with the coronavirus': 1001248, 'coronavirus outbreak there': 206414, 'outbreak there plenty': 628735, 'food in supply': 314974, 'supply chain via': 825056, 'attn': 102603, 'mart': 518034, 'iqaluit': 444652, 'attn gt': 102604, 'gt northern': 367623, 'northern northmart': 567765, 'have frozen': 380728, 'frozen price': 339011, 'day limiting': 227913, 'key product': 473372, 'product the': 681705, 'north mart': 567667, 'mart in': 518052, 'in iqaluit': 424142, 'iqaluit sign': 444653, 'sign limit': 769145, 'limit soap': 492493, 'soap flu': 778999, 'flu treatment': 311479, 'paper of': 640520, 'which there': 986390, 'shortage purchase': 765189, 'one per': 606846, 'attn gt northern': 102605, 'gt northern northmart': 367624, 'northern northmart store': 567766, 'northmart store have': 567808, 'store have frozen': 808082, 'have frozen price': 380730, 'frozen price for': 339012, '60 day limiting': 20928, 'day limiting purchase': 227914, 'limiting purchase of': 492857, 'purchase of key': 689582, 'of key product': 585616, 'key product the': 473375, 'product the north': 681711, 'the north mart': 861874, 'north mart in': 567668, 'mart in iqaluit': 518053, 'in iqaluit sign': 424143, 'iqaluit sign limit': 444654, 'sign limit soap': 769146, 'limit soap flu': 492494, 'soap flu treatment': 779000, 'flu treatment and': 311480, 'treatment and toilet': 931034, 'toilet paper of': 921373, 'paper of which': 640523, 'of which there': 593111, 'which there is': 986391, 'no shortage purchase': 565499, 'shortage purchase to': 765190, 'purchase to one': 689701, 'to one per': 910919, 'one per household': 606849, 'notchronosandcars': 572678, '5l': 20737, 'rr': 726674, 'sva': 829869, '550bhp': 20420, 'suited': 817830, 'offload': 596066, 'bonkers': 134325, 'sporting': 789995, 'matching': 520321, 'next not': 561473, 'arrive at': 93902, 'at notchronosandcars': 99919, 'notchronosandcars is': 572679, 'is surprise': 452492, 'surprise 5l': 828512, '5l rr': 20740, 'rr sva': 726677, 'sva with': 829870, 'with 550bhp': 997042, '550bhp suited': 20421, 'suited to': 817831, 'to offload': 910868, 'offload this': 596067, 'see no': 745482, 'than supermarket': 841182, 'park when': 642027, 'normal real': 567288, 'real bonkers': 701047, 'bonkers thing': 134328, 'thing seen': 884731, 'seen here': 747054, 'here sporting': 393592, 'sporting not': 790003, 'not matching': 570537, 'matching stayhomesavelives': 520328, 'next not to': 561474, 'not to arrive': 572130, 'to arrive at': 900727, 'arrive at notchronosandcars': 93903, 'at notchronosandcars is': 99920, 'notchronosandcars is surprise': 572680, 'is surprise 5l': 452493, 'surprise 5l rr': 828513, '5l rr sva': 20741, 'rr sva with': 726678, 'sva with 550bhp': 829871, 'with 550bhp suited': 997043, '550bhp suited to': 20422, 'suited to offload': 817832, 'to offload this': 910869, 'offload this will': 596068, 'this will see': 891443, 'will see no': 994788, 'see no more': 745484, 'more than supermarket': 540678, 'than supermarket car': 841183, 'car park when': 163238, 'park when the': 642028, 'when the world': 984215, 'world is back': 1009687, 'is back to': 445951, 'to normal real': 910654, 'normal real bonkers': 567289, 'real bonkers thing': 701048, 'bonkers thing seen': 134329, 'thing seen here': 884732, 'seen here sporting': 747055, 'here sporting not': 393593, 'sporting not matching': 790004, 'not matching stayhomesavelives': 570538, 'yucky': 1027079, 'xenophobe': 1013815, 'man yelled': 512367, 'at me': 99697, 'for buying': 319859, 'buying yucky': 151417, 'yucky garlic': 1027080, 'garlic from': 343684, 'not australian': 568284, 'australian garlic': 103495, 'garlic soo': 343690, 'soo he': 785579, 'he xenophobe': 385707, 'xenophobe who': 1013816, 'who either': 988677, 'either really': 270365, 'love australian': 504612, 'australian commerce': 103463, 'commerce or': 188598, 'or think': 617433, 'is spread': 452180, 'through garlic': 894476, 'man yelled at': 512368, 'yelled at me': 1015228, 'at me at': 99699, 'supermarket today for': 823443, 'today for buying': 919535, 'for buying yucky': 319864, 'buying yucky garlic': 151418, 'yucky garlic from': 1027081, 'garlic from china': 343685, 'from china and': 334849, 'china and not': 176487, 'and not australian': 67717, 'not australian garlic': 568285, 'australian garlic soo': 103496, 'garlic soo he': 343691, 'soo he xenophobe': 785580, 'he xenophobe who': 385708, 'xenophobe who either': 1013817, 'who either really': 988679, 'either really love': 270366, 'really love australian': 702393, 'love australian commerce': 504613, 'australian commerce or': 103464, 'commerce or think': 188599, 'or think covid': 617434, '19 is spread': 8053, 'is spread through': 452186, 'spread through garlic': 790845, 'fatten': 300345, 'curve oh': 221875, 'oh my': 596417, 'my god': 548521, 'god thought': 354816, 'thought it': 893101, 'said fatten': 731068, 'fatten the': 300346, 'curve managed': 221871, 'eat three': 266085, 'week worth': 977281, 'food had': 314755, 'bought on': 136658, 'first day': 308610, 'the curve oh': 852698, 'curve oh my': 221876, 'oh my god': 596419, 'my god thought': 548528, 'god thought it': 354817, 'thought it said': 893106, 'it said fatten': 460852, 'said fatten the': 731069, 'fatten the curve': 300347, 'the curve managed': 852696, 'curve managed to': 221872, 'managed to eat': 512498, 'to eat three': 904906, 'eat three week': 266087, 'three week worth': 894120, 'week worth of': 977283, 'of food had': 583702, 'food had panic': 314757, 'had panic bought': 373385, 'panic bought on': 637426, 'bought on my': 136659, 'on my first': 602284, 'my first day': 548336, 'first day of': 308615, 'day of self': 228100, 'of self isolation': 589473, 'helpnothurt': 391615, 'lookaftereachother': 502696, 'this made': 888732, 'made me': 507834, 'me angry': 522436, 'angry shame': 76491, 'this meant': 888821, 'meant nothing': 524892, 'else because': 271635, 'their greed': 873437, 'greed hope': 363384, 'hope karma': 403527, 'karma bite': 470940, 'bite them': 131878, 'the butt': 850211, 'butt not': 148104, 'not sharing': 571549, 'sharing my': 755555, 'my toliet': 550397, 'them helpnothurt': 875842, 'helpnothurt lookaftereachother': 391616, 'this made me': 888733, 'made me angry': 507835, 'me angry shame': 522437, 'angry shame on': 76492, 'on you this': 605439, 'you this meant': 1021704, 'this meant nothing': 888822, 'meant nothing for': 524893, 'nothing for anyone': 573010, 'for anyone else': 319435, 'anyone else because': 80257, 'else because of': 271636, 'because of their': 119414, 'of their greed': 591666, 'their greed hope': 873439, 'greed hope karma': 363385, 'hope karma bite': 403528, 'karma bite them': 470941, 'bite them in': 131879, 'them in the': 875918, 'in the butt': 429044, 'the butt not': 850213, 'butt not sharing': 148105, 'not sharing my': 571550, 'sharing my toliet': 755559, 'my toliet paper': 550398, 'toliet paper with': 923821, 'paper with them': 641103, 'with them helpnothurt': 1001615, 'them helpnothurt lookaftereachother': 875843, 'holdaway': 400050, 'holdaway we': 400051, 'same thought': 733340, 'thought so': 893219, 'here it': 393264, 'holdaway we had': 400052, 'we had the': 971723, 'had the same': 373626, 'the same thought': 866310, 'same thought so': 733343, 'thought so here': 893220, 'so here it': 777298, 'here it is': 393268, 'right choice': 721840, 'choice buy': 177744, 'buy ammo': 148307, 'make the right': 510581, 'the right choice': 865805, 'right choice buy': 721842, 'choice buy ammo': 177745, 'hantavirus': 377031, 'rodent': 725002, 'hantavirus is': 377034, 'not dangerous': 568957, 'dangerous the': 225787, 'coronavirus it': 206181, 'only found': 610481, 'found in': 330247, 'in rodent': 427526, 'rodent so': 725005, 'are safe': 89785, 'safe unless': 730088, 'unless we': 942655, 'eat rodent': 266039, 'rodent our': 725003, 'food there': 317148, 'also vaccine': 49059, 'vaccine for': 951700, 'so no': 777880, 'hantavirus is not': 377035, 'is not dangerous': 450060, 'not dangerous the': 568958, 'dangerous the coronavirus': 225788, 'the coronavirus it': 851874, 'coronavirus it only': 206184, 'it only found': 460099, 'only found in': 610482, 'found in rodent': 330251, 'in rodent so': 427527, 'rodent so we': 725006, 'so we are': 778656, 'we are safe': 970696, 'are safe unless': 89795, 'safe unless we': 730089, 'unless we eat': 942659, 'we eat rodent': 971435, 'eat rodent our': 266040, 'rodent our food': 725004, 'our food there': 623137, 'food there are': 317149, 'there are also': 878063, 'are also vaccine': 84486, 'also vaccine for': 49060, 'vaccine for it': 951704, 'for it so': 322734, 'it so no': 461121, 'so no need': 777887, 'watchful': 968689, 'protezionecivile': 685955, 'near home': 553520, 'home under': 402386, 'the watchful': 871121, 'watchful eye': 968690, 'eye of': 294064, 'of protezionecivile': 588569, 'shopping this morning': 764131, 'this morning in': 888971, 'morning in the': 541309, 'the supermarket near': 868710, 'supermarket near home': 821573, 'near home under': 553521, 'home under the': 402389, 'under the watchful': 940339, 'the watchful eye': 871122, 'watchful eye of': 968691, 'eye of protezionecivile': 294066, 'airpods': 40078, 'ons': 611538, '9to5mac': 24036, 'techjunkienews': 836183, 'apple tell': 82371, 'tell retail': 837060, 'employee not': 274053, 'offer airpods': 594517, 'airpods or': 40079, 'or apple': 614393, 'apple watch': 82379, 'watch try': 968595, 'try ons': 934529, 'ons coronavirus': 611541, 'coronavirus precaution': 206578, 'precaution 9to5mac': 669261, '9to5mac coronavtj': 24039, 'coronavtj techjunkienews': 207128, 'apple tell retail': 82372, 'tell retail employee': 837061, 'retail employee not': 718074, 'employee not to': 274056, 'not to offer': 572168, 'to offer airpods': 910825, 'offer airpods or': 594518, 'airpods or apple': 40080, 'or apple watch': 614394, 'apple watch try': 82381, 'watch try ons': 968596, 'try ons coronavirus': 934530, 'ons coronavirus precaution': 611542, 'coronavirus precaution 9to5mac': 206579, 'precaution 9to5mac coronavtj': 669262, '9to5mac coronavtj techjunkienews': 24040, 'harper': 378495, 'wood': 1004269, 'close harper': 182651, 'harper wood': 378496, 'wood store': 1004281, 'customer after': 222033, 'after employee': 35617, 'employee dy': 273800, 'dy of': 263744, 'of via': 592791, 'close harper wood': 182652, 'harper wood store': 378498, 'wood store to': 1004282, 'store to customer': 810765, 'to customer after': 903844, 'customer after employee': 222034, 'after employee dy': 35618, 'employee dy of': 273803, 'dy of via': 263751, 'pier': 656393, 'stayhomesa': 798317, 'pier please': 656397, 'please keep': 660146, 'keep asking': 471319, 'asking the': 96074, 'minister where': 533496, 'the ppe': 864165, 'ppe for': 667945, 'our key': 623618, 'nh but': 561906, 'driver postal': 259705, 'postal staff': 666456, 'staff etc': 792418, 'are putting': 89352, 'putting themselves': 691251, 'themselves at': 876772, 'risk every': 723519, 'they go': 882198, 'work stayhomesa': 1005759, 'pier please keep': 656398, 'please keep asking': 660148, 'keep asking the': 471320, 'asking the minister': 96077, 'the minister where': 860659, 'minister where the': 533497, 'where the ppe': 985243, 'the ppe for': 864168, 'ppe for our': 667949, 'for our key': 324264, 'our key worker': 623619, 'key worker is': 473492, 'worker is not': 1007239, 'is not just': 450117, 'not just the': 570256, 'just the nh': 470007, 'the nh but': 861728, 'nh but also': 561907, 'but also the': 145149, 'also the supermarket': 48988, 'supermarket worker delivery': 824009, 'delivery driver postal': 233932, 'driver postal staff': 259707, 'postal staff etc': 666457, 'staff etc etc': 792420, 'etc etc who': 282526, 'who are putting': 988201, 'are putting themselves': 89364, 'putting themselves at': 691253, 'themselves at risk': 876773, 'at risk every': 100358, 'risk every time': 723521, 'every time they': 286320, 'time they go': 897901, 'they go to': 882207, 'to work stayhomesa': 918784, 'wallstreet': 965249, 'helppeoplefirst': 391627, 'will republican': 994658, 'republican realize': 713059, 'is consumer': 446786, 'based that': 111768, 'mean people': 524609, 'people buying': 647339, 'thing when': 884980, 'life back': 488512, 'back you': 107490, 'help wallstreet': 390857, 'wallstreet succeed': 965261, 'succeed there': 816169, 'no market': 564700, 'without consumer': 1002560, 'consumer helppeoplefirst': 197747, 'helppeoplefirst the': 391628, 'come back': 187230, 'when will republican': 984503, 'will republican realize': 994659, 'republican realize that': 713060, 'realize that our': 701857, 'that our economy': 845576, 'our economy is': 622844, 'economy is consumer': 267995, 'is consumer based': 446787, 'consumer based that': 196413, 'based that mean': 111769, 'that mean people': 845117, 'mean people buying': 524611, 'people buying thing': 647353, 'buying thing when': 151210, 'thing when you': 884981, 'when you help': 984570, 'you help people': 1019199, 'people get their': 648060, 'get their life': 348335, 'their life back': 873824, 'life back you': 488513, 'back you help': 107492, 'you help wallstreet': 1019206, 'help wallstreet succeed': 390858, 'wallstreet succeed there': 965262, 'succeed there is': 816170, 'is no market': 449949, 'no market without': 564702, 'market without consumer': 517387, 'without consumer helppeoplefirst': 1002561, 'consumer helppeoplefirst the': 197748, 'helppeoplefirst the market': 391629, 'the market will': 860178, 'market will come': 517353, 'will come back': 992963, 'momentous': 536146, 'benefiting': 127155, 'philanthropy': 654704, 'fest': 303589, 'this momentous': 888884, 'momentous live': 536147, 'live stream': 496029, 'stream benefiting': 812774, 'benefiting the': 127170, 'for disaster': 320738, 'disaster philanthropy': 244232, 'philanthropy covid': 654705, 'response fund': 715701, 'fund discus': 341388, 'of fest': 583490, 'fest the': 303590, 'the olympics': 862157, 'olympics how': 598792, 'how important': 408031, 'important supermarket': 418978, 'how japan': 408151, 'japan and': 464705, 'are affected': 84245, 'in this momentous': 429978, 'this momentous live': 888885, 'momentous live stream': 536148, 'live stream benefiting': 496030, 'stream benefiting the': 812775, 'benefiting the center': 127171, 'center for disaster': 169202, 'for disaster philanthropy': 320740, 'disaster philanthropy covid': 244233, 'philanthropy covid 19': 654706, '19 response fund': 10149, 'response fund discus': 715703, 'fund discus the': 341389, 'discus the status': 244934, 'status of fest': 796686, 'of fest the': 583491, 'fest the olympics': 303591, 'the olympics how': 862159, 'olympics how important': 598793, 'how important supermarket': 408037, 'important supermarket employee': 418979, 'supermarket employee are': 820109, 'employee are and': 273605, 'and how japan': 64821, 'how japan and': 408152, 'japan and the': 464708, 'economy are affected': 267663, 'are affected by': 84247, 'by the pandemic': 154402, 'jose': 467312, 'coronavirus san': 206695, 'san jose': 733553, 'jose grocery': 467315, 'store temporarily': 810521, 'temporarily shuts': 837541, 'down after': 256443, 'coronavirus san jose': 206697, 'san jose grocery': 733555, 'jose grocery store': 467316, 'grocery store temporarily': 365841, 'store temporarily shuts': 810526, 'temporarily shuts down': 837542, 'shuts down after': 768181, 'down after employee': 256448, 'employee dy from': 273802, 'contactless': 200354, 'our contribution': 622555, 'contribution against': 201931, 'against let': 37534, 'let spread': 487063, 'word together': 1004605, 'nation free': 552187, 'app for': 81705, 'for contactless': 320311, 'contactless delivery': 200364, 'takeaway amp': 832842, 'amp manage': 54101, 'manage online': 512412, 'our contribution against': 622556, 'contribution against let': 201932, 'against let spread': 37536, 'let spread the': 487065, 'the word together': 871724, 'word together to': 1004606, 'the nation free': 861233, 'nation free app': 552188, 'free app for': 331657, 'app for contactless': 81706, 'for contactless delivery': 320312, 'contactless delivery takeaway': 200368, 'delivery takeaway amp': 234604, 'takeaway amp manage': 832843, 'amp manage online': 54102, 'manage online ordering': 512413, 'locate': 498799, 'saudi center': 737251, 'prevention said': 671883, 'the work': 871726, 'be carried': 114008, 'it laboratory': 459286, 'laboratory would': 478487, 'would help': 1011905, 'help locate': 390015, 'locate case': 498800, 'and track': 74338, 'track the': 928225, 'disease inside': 245159, 'the kingdom': 858824, 'saudi center for': 737252, 'and prevention said': 69429, 'prevention said that': 671884, 'that the work': 846869, 'the work to': 871742, 'work to be': 1005880, 'to be carried': 901152, 'be carried out': 114009, 'carried out in': 164939, 'out in it': 626381, 'in it laboratory': 424254, 'it laboratory would': 459287, 'laboratory would help': 478488, 'would help locate': 1011911, 'help locate case': 390016, 'locate case of': 498801, 'case of infection': 165909, 'infection and track': 436716, 'and track the': 74339, 'track the spread': 928230, 'of the disease': 590956, 'the disease inside': 853366, 'disease inside the': 245160, 'inside the kingdom': 439416, 'bank see': 110165, 'see record': 745630, 'record demand': 704937, 'month can': 537633, 'food bank see': 313634, 'bank see record': 110167, 'see record demand': 745631, 'record demand for': 704939, 'demand for month': 235456, 'for month and': 323509, 'month and month': 537579, 'and month can': 67127, 'month can you': 537634, 'can you help': 160309, 'shameonyou': 754739, 'done putting': 254982, 'putting your': 691287, 'call price': 156078, 'up when': 946574, 'when people': 983853, 'to chat': 902663, 'chat on': 173941, 'phone more': 654973, 'ever shame': 285496, 'you shameonyou': 1021139, 'well done putting': 978195, 'done putting your': 254983, 'putting your call': 691288, 'your call price': 1023108, 'call price up': 156080, 'price up when': 677270, 'up when people': 946578, 'when people are': 983854, 'people are in': 647001, 'are in isolation': 87403, 'in isolation and': 424189, 'isolation and will': 455205, 'and will need': 75677, 'need to chat': 555883, 'to chat on': 902665, 'chat on the': 173943, 'on the phone': 604282, 'the phone more': 863693, 'phone more than': 654974, 'than ever shame': 840607, 'ever shame on': 285497, 'on you shameonyou': 605436, 'except medicine': 289198, 'medicine store': 526892, 'store no': 809071, 'no grocery': 564377, 'grocery other': 364820, 'item shop': 463631, 'except medicine store': 289199, 'medicine store no': 526893, 'store no grocery': 809078, 'no grocery other': 564379, 'grocery other essential': 364821, 'other essential food': 620162, 'essential food item': 281045, 'food item shop': 315229, 'item shop will': 463633, 'shop will be': 761050, 'allowed to open': 46240, 'accuse': 28930, 'hiding': 394860, 'partner work': 642909, 'on till': 604700, 'till at': 895994, 'at major': 99661, 'had people': 373396, 'people accuse': 646749, 'accuse her': 28931, 'her of': 392238, 'of hiding': 584607, 'hiding toilet': 394883, 'out back': 625756, 'back absolutely': 106821, 'absolutely moron': 27386, 'moron fear': 541592, 'fear the': 301373, 'the stupidity': 868347, 'humanity more': 410756, 'my partner work': 549727, 'partner work on': 642911, 'work on till': 1005543, 'on till at': 604701, 'till at major': 895995, 'at major supermarket': 99665, 'major supermarket she': 509496, 'supermarket she ha': 822407, 'she ha had': 756076, 'ha had people': 370795, 'had people accuse': 373397, 'people accuse her': 646750, 'accuse her of': 28932, 'her of hiding': 392239, 'of hiding toilet': 584608, 'hiding toilet roll': 394885, 'toilet roll out': 921594, 'roll out back': 725447, 'out back absolutely': 625757, 'back absolutely moron': 106822, 'absolutely moron fear': 27387, 'moron fear the': 541593, 'fear the stupidity': 301383, 'the stupidity of': 868348, 'stupidity of humanity': 815546, 'of humanity more': 584888, 'humanity more than': 410757, 'more than covid': 540606, 'an easter': 55550, 'easter basket': 265385, 'basket this': 112398, 'who need an': 989308, 'need an easter': 554403, 'an easter basket': 55551, 'easter basket this': 265390, 'basket this year': 112399, 'this year 19': 891560, 'tilfurthernotice': 895962, 'painting': 634312, 'africanart': 35233, 'cameroon': 157142, '38': 18121, 'mailed': 508684, 'boise': 134065, 'idaho': 412966, 'tilfurthernotice price': 895963, 'all painting': 43901, 'painting are': 634315, 'are suggested': 90637, 'suggested price': 817579, 'price no': 675340, 'no reasonable': 565304, 'reasonable offer': 703105, 'for africanart': 319068, 'africanart refused': 35236, 'refused contact': 707053, 'contact cameroon': 200038, 'cameroon now': 157147, 'go along': 353268, 'with year': 1002134, 'old civil': 598182, 'war so': 966540, 'so time': 778522, 'time tough': 898124, 'tough 38': 926787, '38 painting': 18136, 'painting ready': 634319, 'to mailed': 909552, 'mailed from': 508685, 'from boise': 334705, 'boise idaho': 134066, 'tilfurthernotice price on': 895964, 'on all painting': 599241, 'all painting are': 43902, 'painting are suggested': 634316, 'are suggested price': 90638, 'suggested price no': 817580, 'price no reasonable': 675350, 'no reasonable offer': 565305, 'reasonable offer for': 703106, 'offer for africanart': 594615, 'for africanart refused': 319070, 'africanart refused contact': 35237, 'refused contact cameroon': 707054, 'contact cameroon now': 200039, 'cameroon now ha': 157148, 'ha to go': 372301, 'to go along': 906765, 'go along with': 353269, 'along with year': 47084, 'with year old': 1002135, 'year old civil': 1014818, 'old civil war': 598183, 'civil war so': 179567, 'war so time': 966542, 'so time tough': 778524, 'time tough 38': 898125, 'tough 38 painting': 926788, '38 painting ready': 18137, 'painting ready to': 634320, 'ready to mailed': 700965, 'to mailed from': 909553, 'mailed from boise': 508686, 'from boise idaho': 334706, 'iot': 444468, 'enterprise': 278444, 'home business': 400825, 'business opportunity': 144153, 'knock for': 476152, 'consumer iot': 197927, 'iot supplier': 444478, 'supplier internet': 824560, 'internet of': 441972, 'of thing': 591889, 'thing manufacturer': 884576, 'manufacturer see': 513512, 'huge market': 410096, 'market opening': 516809, 'opening up': 612942, 'the million': 860621, 'new enterprise': 558690, 'enterprise customer': 278445, 'customer working': 223112, 'home business opportunity': 400826, 'business opportunity knock': 144155, 'opportunity knock for': 613650, 'knock for consumer': 476153, 'for consumer iot': 320268, 'consumer iot supplier': 197929, 'iot supplier internet': 444479, 'supplier internet of': 824561, 'internet of thing': 441973, 'of thing manufacturer': 591907, 'thing manufacturer see': 884577, 'manufacturer see huge': 513513, 'see huge market': 745265, 'huge market opening': 410097, 'market opening up': 516811, 'opening up from': 612945, 'from the million': 337789, 'the million of': 860624, 'million of new': 532279, 'of new enterprise': 586964, 'new enterprise customer': 558691, 'enterprise customer working': 278446, 'customer working from': 223113, 'royal': 726609, 'highness': 396110, 'registered': 707634, 'drunkard': 261225, 'comingyi': 188305, 'your royal': 1025653, 'royal highness': 726625, 'highness is': 396111, 'is registered': 451391, 'registered 19': 707635, 'case enough': 165727, 'to issue': 908550, 'issue statement': 455933, 'statement ordering': 796203, 'ordering fixing': 618962, 'fixing of': 309851, 'essential good': 281080, 'good or': 357522, 'or should': 617067, 'should just': 766159, 'go sit': 354142, 'sit close': 771817, 'fellow drunkard': 303285, 'drunkard and': 261226, 'we speak': 973344, 'speak with': 787728, 'with saliva': 1000559, 'saliva comingyi': 732729, 'comingyi out': 188306, 'our mouth': 623951, 'your royal highness': 1025654, 'royal highness is': 726626, 'highness is registered': 396112, 'is registered 19': 451392, 'registered 19 case': 707636, '19 case enough': 5676, 'case enough for': 165728, 'enough for you': 277445, 'for you to': 328094, 'you to issue': 1021792, 'to issue statement': 908558, 'issue statement ordering': 455934, 'statement ordering fixing': 796204, 'ordering fixing of': 618963, 'fixing of price': 309853, 'of price of': 588412, 'price of food': 675454, 'other essential good': 620163, 'essential good or': 281094, 'good or should': 357528, 'or should just': 617069, 'should just go': 766161, 'just go sit': 468828, 'go sit close': 354143, 'sit close to': 771818, 'my fellow drunkard': 548301, 'fellow drunkard and': 303286, 'drunkard and we': 261227, 'and we speak': 75323, 'we speak with': 973346, 'speak with saliva': 787732, 'with saliva comingyi': 1000560, 'saliva comingyi out': 732730, 'comingyi out of': 188307, 'out of our': 626797, 'of our mouth': 587517, 'tremendous': 931212, 'veterinarian': 955731, 'exporting': 292761, 'overseas': 631458, 'to tremendous': 917765, 'tremendous buy': 931213, 'of alcohol': 579889, 'alcohol solvent': 41110, 'solvent hand': 782198, 'sanitizer manufacturer': 735338, 'manufacturer international': 513478, 'international exporter': 441801, 'exporter and': 292742, 'and local': 66287, 'business pharmacy': 144219, 'pharmacy beauty': 654250, 'beauty shop': 118789, 'shop veterinarian': 761001, 'veterinarian are': 955732, 'are purchasing': 89330, 'purchasing these': 689933, 'these alcohol': 879582, 'alcohol and': 40901, 'and exporting': 62535, 'exporting it': 292769, 'it overseas': 460212, 'overseas at': 631461, 'at premium': 100173, 'premium price': 669971, '19 ha led': 7360, 'led to tremendous': 485306, 'to tremendous buy': 917766, 'tremendous buy up': 931214, 'buy up of': 149414, 'up of alcohol': 945495, 'of alcohol solvent': 579899, 'alcohol solvent hand': 41111, 'solvent hand sanitizer': 782199, 'hand sanitizer manufacturer': 375483, 'sanitizer manufacturer international': 735341, 'manufacturer international exporter': 513479, 'international exporter and': 441802, 'exporter and local': 292743, 'and local business': 66288, 'local business pharmacy': 497774, 'business pharmacy beauty': 144220, 'pharmacy beauty shop': 654252, 'beauty shop veterinarian': 118790, 'shop veterinarian are': 761002, 'veterinarian are purchasing': 955733, 'are purchasing these': 89335, 'purchasing these alcohol': 689934, 'these alcohol and': 879583, 'alcohol and exporting': 40904, 'and exporting it': 62537, 'exporting it overseas': 292770, 'it overseas at': 460213, 'overseas at premium': 631462, 'at premium price': 100175, 'suppressing': 827420, 'be suppressing': 117467, 'suppressing used': 827421, 'used iron': 949952, 'iron price': 444926, 'price particularly': 675835, 'particularly if': 642690, 'the sale': 866173, 'sale item': 732320, 'are late': 87717, 'late model': 480894, 'model have': 535257, 'have low': 381392, 'low hour': 505322, 'in great': 423408, 'great condition': 362586, '19 doesn seem': 6616, 'doesn seem to': 251938, 'to be suppressing': 901575, 'be suppressing used': 117468, 'suppressing used iron': 827422, 'used iron price': 949953, 'iron price particularly': 444928, 'price particularly if': 675838, 'particularly if the': 642691, 'if the sale': 415024, 'the sale item': 866179, 'sale item are': 732321, 'item are late': 463096, 'are late model': 87718, 'late model have': 480895, 'model have low': 535258, 'have low hour': 381394, 'low hour and': 505323, 'hour and are': 405391, 'and are in': 58325, 'are in great': 87387, 'in great condition': 423409, 'vunerable': 961301, 'scooter': 742323, 'disabled vunerable': 243979, 'vunerable use': 961309, 'use scooter': 949560, 'scooter so': 742332, 'can manage': 158961, 'manage supermarket': 512430, 'been signed': 121963, 'signed to': 769385, 'shop paying': 760658, 'paying monthly': 645442, 'monthly for': 538171, 'few also': 303710, 'also now': 48585, 'now buying': 574306, 'for old': 324047, 'old parent': 598403, 'parent each': 641621, 'each day': 264034, 'day another': 227300, 'day is': 227831, 'is added': 445345, 'disabled vunerable use': 243980, 'vunerable use scooter': 961310, 'use scooter so': 949562, 'scooter so can': 742333, 'so can manage': 776716, 'can manage supermarket': 158965, 'manage supermarket shop': 512431, 'supermarket shop have': 822587, 'have been signed': 379682, 'been signed to': 121964, 'signed to your': 769386, 'to your online': 919011, 'your online shop': 1025076, 'online shop paying': 608984, 'shop paying monthly': 760659, 'paying monthly for': 645443, 'monthly for few': 538172, 'for few also': 321448, 'few also now': 303711, 'also now buying': 48586, 'now buying for': 574309, 'buying for old': 150356, 'for old parent': 324048, 'old parent each': 598405, 'parent each day': 641622, 'each day another': 264037, 'day another day': 227301, 'another day is': 77568, 'day is added': 227832, 'is added it': 445347, 'dick': 240455, 'mind stoppanicbuying': 532728, 'stoppanicbuying you': 805660, 'need all': 554383, 'those roll': 892406, 'tp also': 927732, 'also save': 48821, 'baby wipe': 106733, 'wipe for': 996259, 'for other': 324171, 'people child': 647458, 'child they': 176225, 'need those': 555829, 'those too': 892560, 'too bottom': 924617, 'line folk': 493089, 'folk don': 312145, 'be dick': 114440, 'with the on': 1001411, 'the on everyone': 862166, 'on everyone mind': 600638, 'everyone mind stoppanicbuying': 287187, 'mind stoppanicbuying you': 532729, 'stoppanicbuying you don': 805661, 'don need all': 253752, 'need all those': 554387, 'all those roll': 45184, 'those roll of': 892407, 'roll of tp': 725423, 'of tp also': 592355, 'tp also save': 927734, 'also save some': 48822, 'save some baby': 737639, 'some baby wipe': 782366, 'baby wipe for': 106737, 'wipe for other': 996265, 'for other people': 324173, 'other people child': 620661, 'people child they': 647459, 'child they need': 176226, 'they need those': 882764, 'need those too': 555832, 'those too bottom': 892561, 'too bottom line': 924618, 'bottom line folk': 136408, 'line folk don': 493090, 'folk don be': 312146, 'don be dick': 253359, 'consumerawareness': 199601, 'surrounding here': 828748, 'ftc tip': 339453, 'scam consumerawareness': 740121, 'scammer are taking': 740545, 'fear surrounding here': 301350, 'surrounding here are': 828749, 'here are the': 392760, 'are the ftc': 90833, 'the ftc tip': 855943, 'ftc tip on': 339454, 'coronavirus scam consumerawareness': 206714, '5t': 20817, '2t': 16862, 'some perspective': 783557, 'perspective all': 653181, 'student loan': 814721, 'about 5t': 24734, '5t it': 20818, 'would cost': 1011736, 'cost far': 207934, 'far le': 298830, 'le to': 483206, 'all outstanding': 43846, 'outstanding consumer': 629691, 'is only': 450528, 'only about': 610024, 'about 2t': 24691, '2t it': 16863, 'some perspective all': 783558, 'perspective all student': 653182, 'all student loan': 44518, 'student loan debt': 814725, 'debt is about': 230507, 'is about 5t': 445268, 'about 5t it': 24735, '5t it would': 20819, 'it would cost': 462587, 'would cost far': 1011739, 'cost far le': 207935, 'far le to': 298833, 'le to cancel': 483207, 'cancel all of': 160833, 'all of it': 43699, 'of it all': 585361, 'it all outstanding': 456365, 'all outstanding consumer': 43847, 'outstanding consumer debt': 629692, 'consumer debt is': 197083, 'debt is only': 230512, 'is only about': 450533, 'only about 2t': 610025, 'about 2t it': 24692, '2t it would': 16864, 'wire': 996547, 'anticipate': 78418, 'wire data': 996552, 'data and': 226116, 'and algorithm': 57846, 'algorithm is': 41658, 'future anticipate': 342257, 'wire data and': 996553, 'data and algorithm': 226118, 'and algorithm is': 57847, 'algorithm is this': 41659, 'this the retail': 890536, 'the retail store': 865730, 'store of the': 809148, 'of the future': 591052, 'the future anticipate': 856067, 'gcc': 344814, 'structural': 814284, 'vanishing': 952423, 'term fallout': 838139, 'fallout of': 297387, 'the gcc': 856194, 'gcc is': 344824, 'bring significant': 140066, 'significant economic': 769441, 'economic structural': 267324, 'structural change': 814285, 'change with': 172402, 'some business': 782443, 'business vanishing': 144610, 'vanishing consumer': 952424, 'change according': 171880, 'long term fallout': 501684, 'term fallout of': 838140, 'fallout of the': 297388, 'of the lockdown': 591198, 'the lockdown in': 859607, 'lockdown in the': 499517, 'in the gcc': 429232, 'the gcc is': 856196, 'gcc is likely': 344825, 'likely to bring': 492132, 'to bring significant': 902050, 'bring significant economic': 140067, 'significant economic structural': 769443, 'economic structural change': 267325, 'structural change with': 814287, 'change with some': 172407, 'with some business': 1000836, 'some business vanishing': 782452, 'business vanishing consumer': 144611, 'vanishing consumer behavior': 952425, 'behavior change according': 123957, 'change according to': 171881, 'according to expert': 28538, 'least they': 484657, 'toiletpaper snake': 922485, 'at least they': 99555, 'least they have': 484660, 'they have toilet': 882397, 'paper toiletpaper snake': 640954, 'opposite': 613774, 'that after': 842514, 'after wks': 36553, 'wks of': 1003250, 'of stay': 590085, 'home guidance': 401315, 'guidance that': 368287, 'shopping grocery': 762807, 'delivery would': 234783, 'would become': 1011675, 'become easier': 119974, 'easier faster': 265140, 'faster but': 300088, 'the opposite': 862408, 'opposite ha': 613792, 'taken place': 833051, 'now find': 574685, 'find yourself': 307411, 'yourself in': 1026643, 'get on': 347695, 'site itself': 771965, 'itself over': 463949, 'over an': 629973, 'an hr': 56111, 'hr amazing': 409599, 'amazing almost': 50637, 'almost encourages': 46611, 'encourages hoarding': 275693, 'you think that': 1021676, 'think that after': 885585, 'that after wks': 842521, 'after wks of': 36554, 'wks of stay': 1003251, 'of stay at': 590087, 'at home guidance': 99000, 'home guidance that': 401316, 'guidance that online': 368289, 'that online shopping': 845515, 'online shopping grocery': 609136, 'shopping grocery delivery': 762808, 'grocery delivery would': 364456, 'delivery would become': 234785, 'would become easier': 1011678, 'become easier faster': 119975, 'easier faster but': 265141, 'faster but the': 300089, 'but the opposite': 147376, 'the opposite ha': 862413, 'opposite ha taken': 613793, 'ha taken place': 372149, 'taken place now': 833053, 'place now find': 657596, 'now find yourself': 574688, 'find yourself in': 307416, 'yourself in line': 1026645, 'to get on': 906547, 'get on the': 347698, 'on the site': 604365, 'the site itself': 867232, 'site itself over': 771966, 'itself over an': 463950, 'over an hr': 629976, 'an hr amazing': 56112, 'hr amazing almost': 409600, 'amazing almost encourages': 50638, 'almost encourages hoarding': 46612, 'tail': 831806, 'hamilton': 374554, 'poshmark': 665126, 'shopforacause': 761138, 'trend for': 931335, 'for tail': 326118, 'tail resale': 831811, 'resale boutique': 713559, 'boutique is': 136937, 'currently closed': 221504, 'outbreak you': 628844, 'can continue': 157979, 'society for': 781211, 'for hamilton': 322102, 'hamilton county': 374555, 'county trend': 211522, 'tail by': 831807, 'shopping our': 763569, 'online poshmark': 608777, 'poshmark store': 665127, 'store here': 808142, 'here shopforacause': 393553, 'trend for tail': 931340, 'for tail resale': 326120, 'tail resale boutique': 831812, 'resale boutique is': 713560, 'boutique is currently': 136938, 'is currently closed': 446990, 'currently closed to': 221506, 'public in response': 688102, '19 outbreak you': 9212, 'outbreak you can': 628846, 'you can continue': 1017651, 'can continue to': 157983, 'support the humane': 826875, 'humane society for': 410675, 'society for hamilton': 781212, 'for hamilton county': 322103, 'hamilton county trend': 374556, 'county trend for': 211523, 'for tail by': 326119, 'tail by shopping': 831808, 'by shopping our': 153997, 'shopping our online': 763570, 'our online poshmark': 624151, 'online poshmark store': 608778, 'poshmark store here': 665128, 'store here shopforacause': 808149, 'very real': 955451, 'real issue': 701228, 'issue we': 455994, 'are hearing': 87070, 'hearing this': 388250, 'option food': 614028, 'bank key': 109964, 'key for': 473296, 'some family': 782813, 'family during': 297753, 'is very real': 453689, 'very real issue': 955455, 'real issue we': 701230, 'issue we are': 455996, 'we are hearing': 970586, 'are hearing this': 87071, 'hearing this all': 388251, 'this all the': 886273, 'all the time': 44943, 'the time panic': 869611, 'time panic buying': 897452, 'an option food': 56681, 'option food bank': 614029, 'food bank key': 313593, 'bank key for': 109965, 'key for some': 473297, 'for some family': 325739, 'some family during': 782814, 'family during covid': 297756, 'mobilio': 535063, 'specifically': 788270, 'simple rt': 770085, 'rt will': 726849, 'the mobilio': 860716, 'mobilio watch': 535064, 'watch company': 968379, 'company ha': 190704, 'ha lowered': 371197, 'lowered all': 506062, 'it watch': 462265, 'to 35': 899694, '35 during': 17887, 'being donated': 125070, 'charity specifically': 173688, 'specifically for': 788277, 'relief you': 709506, 'can check': 157896, 'our instagram': 623561, 'instagram page': 439972, 'simple rt will': 770086, 'rt will help': 726850, 'will help for': 993714, 'help for limited': 389750, 'limited time the': 492759, 'time the mobilio': 897860, 'the mobilio watch': 860717, 'mobilio watch company': 535065, 'watch company ha': 968380, 'company ha lowered': 190712, 'ha lowered all': 371198, 'lowered all it': 506063, 'all it watch': 43280, 'it watch price': 462266, 'watch price to': 968517, 'price to 35': 676958, 'to 35 during': 899695, '35 during this': 17888, 'time of sale': 897358, 'of sale are': 589240, 'sale are being': 732058, 'are being donated': 84851, 'being donated to': 125071, 'donated to charity': 254363, 'to charity specifically': 902660, 'charity specifically for': 173689, 'specifically for covid': 788278, '19 relief you': 10089, 'relief you can': 709507, 'you can check': 1017641, 'can check out': 157898, 'out our instagram': 626978, 'our instagram page': 623562, 'sed': 744814, 'sed uk': 744815, 'uk went': 938875, 'went from': 979010, 'from hundred': 335975, 'hundred to': 411033, 'to thousand': 917534, 'day afghanistan': 227173, 'afghanistan is': 34930, 'now starting': 575887, 'see significant': 745683, 'significant number': 769482, 'lockdown increase': 499524, 'increase and': 432675, 'sed uk went': 744816, 'uk went from': 938876, 'went from hundred': 979016, 'from hundred to': 335976, 'hundred to thousand': 411034, 'to thousand of': 917538, 'thousand of case': 893426, 'of case in': 581169, 'case in matter': 165800, 'matter of day': 520607, 'of day afghanistan': 582374, 'day afghanistan is': 227174, 'afghanistan is now': 34931, 'is now starting': 450341, 'now starting to': 575888, 'starting to see': 795038, 'to see significant': 914067, 'see significant number': 745685, 'significant number of': 769483, 'of case of': 581172, 'case of and': 165887, 'of and lockdown': 580166, 'and lockdown increase': 66323, 'lockdown increase and': 499525, 'recovering': 705253, 'rakamoto': 696196, 'crypto': 219935, 'bitcoin': 131794, 'coin': 185624, 'after closing': 35471, 'of 2020': 579484, '2020 on': 14481, 'worst fall': 1011182, 'fall oil': 297011, 'have shown': 382534, 'shown sign': 767609, 'of recovering': 588842, 'recovering amid': 705254, 'crisis rakamoto': 217936, 'rakamoto thursdaythoughts': 696203, 'thursdaythoughts blockchain': 895472, 'blockchain crypto': 132832, 'crypto bitcoin': 219940, 'bitcoin digital': 131810, 'digital money': 242607, 'money coin': 536676, 'coin dollar': 185634, 'dollar bank': 252954, 'after closing the': 35474, 'closing the first': 183774, 'first quarter of': 308895, 'quarter of 2020': 693255, 'of 2020 on': 579501, '2020 on the': 14483, 'on the worst': 604461, 'the worst fall': 872051, 'worst fall oil': 1011183, 'fall oil price': 297012, 'price have shown': 674458, 'have shown sign': 382537, 'shown sign of': 767610, 'sign of recovering': 769169, 'of recovering amid': 588843, 'recovering amid the': 705255, 'the crisis rakamoto': 852437, 'crisis rakamoto thursdaythoughts': 217937, 'rakamoto thursdaythoughts blockchain': 696204, 'thursdaythoughts blockchain crypto': 895473, 'blockchain crypto bitcoin': 132833, 'crypto bitcoin digital': 219941, 'bitcoin digital money': 131811, 'digital money coin': 242608, 'money coin dollar': 536677, 'coin dollar bank': 185635, 'me when': 523935, 'when find': 983420, 'find pack': 307166, 'me when find': 523939, 'when find pack': 983421, 'find pack of': 307167, 'pack of toiletpaper': 633114, 'of toiletpaper in': 592267, 'toiletpaper in the': 922122, '19 toiletpaper toiletpapercrisis': 11494, 'portugal': 665064, 'portuguese': 665079, 'sonae': 785467, 'continente': 200940, 'worten': 1011314, 'antoniocosta': 78621, 'portugalst': 665078, 'biggest thief': 130340, 'thief in': 884010, 'in portugal': 426847, 'portugal using': 665076, 'trick customer': 931693, 'pay higher': 644931, 'price portuguese': 675956, 'portuguese with': 665082, 'with low': 999327, 'low salary': 505585, 'salary and': 731940, 'and awful': 58599, 'awful pension': 106237, 'pension being': 646646, 'being ripped': 125696, 'off by': 593706, 'by sonae': 154087, 'sonae shop': 785468, 'shop continente': 760070, 'continente worten': 200941, 'worten and': 1011315, 'and antoniocosta': 58195, 'antoniocosta doing': 78622, 'it portugalst': 460387, 'biggest thief in': 130341, 'thief in portugal': 884011, 'in portugal using': 426849, 'portugal using the': 665077, 'using the coronacrisis': 950694, 'the coronacrisis to': 851791, 'coronacrisis to trick': 204832, 'to trick customer': 917774, 'trick customer to': 931694, 'customer to pay': 222974, 'to pay higher': 911535, 'pay higher price': 644934, 'higher price portuguese': 395689, 'price portuguese with': 675957, 'portuguese with low': 665083, 'with low salary': 999338, 'low salary and': 505586, 'salary and awful': 731941, 'and awful pension': 58600, 'awful pension being': 106238, 'pension being ripped': 646647, 'being ripped off': 125697, 'ripped off by': 722704, 'off by sonae': 593713, 'by sonae shop': 154088, 'sonae shop continente': 785469, 'shop continente worten': 760071, 'continente worten and': 200942, 'worten and antoniocosta': 1011316, 'and antoniocosta doing': 58196, 'antoniocosta doing nothing': 78623, 'doing nothing about': 252557, 'nothing about it': 572922, 'about it portugalst': 25591, 'spree': 791125, 'slam': 773478, 'nancy': 551791, 'pelosi': 646359, 'quoted my': 695021, 'supermarket spree': 822799, 'spree word': 791146, 'word for': 1004482, 'for word': 327913, 'word republican': 1004565, 'republican slam': 713069, 'slam nancy': 773485, 'nancy pelosi': 551792, 'pelosi covid': 646364, 'bill wish': 130729, 'wish list': 996784, 'quoted my supermarket': 695022, 'my supermarket spree': 550279, 'supermarket spree word': 822800, 'spree word for': 791147, 'word for word': 1004488, 'for word republican': 327915, 'word republican slam': 1004566, 'republican slam nancy': 713070, 'slam nancy pelosi': 773486, 'nancy pelosi covid': 551794, 'pelosi covid 19': 646365, 'relief bill wish': 709294, 'bill wish list': 130730, 'laundry': 482101, 'additive': 31920, 'crisp': 218481, 'linen': 493632, '41oz': 18891, 'lysol laundry': 507178, 'laundry sanitizer': 482125, 'sanitizer additive': 734316, 'additive crisp': 31925, 'crisp linen': 218486, 'linen 41oz': 493633, 'lysol laundry sanitizer': 507179, 'laundry sanitizer additive': 482126, 'sanitizer additive crisp': 734319, 'additive crisp linen': 31926, 'crisp linen 41oz': 218487, 'snatched': 776171, 'title': 899278, 'advocate worry': 33861, 'worry that': 1010776, 'the check': 850744, 'check expected': 174425, 'arrive soon': 93929, 'soon this': 785855, 'week could': 976116, 'could get': 209197, 'get snatched': 348025, 'snatched by': 776172, 'by payday': 153537, 'payday title': 645338, 'title and': 899279, 'and high': 64550, 'high cost': 394971, 'cost installment': 207985, 'installment lender': 440053, 'lender our': 486245, 'our ha': 623334, 'consumer advocate worry': 196071, 'advocate worry that': 33862, 'worry that the': 1010778, 'that the check': 846679, 'the check expected': 850746, 'check expected to': 174426, 'expected to arrive': 290962, 'to arrive soon': 900731, 'arrive soon this': 93930, 'soon this week': 785858, 'this week could': 891202, 'week could get': 976117, 'could get snatched': 209205, 'get snatched by': 348026, 'snatched by payday': 776173, 'by payday title': 153538, 'payday title and': 645339, 'title and high': 899280, 'and high cost': 64551, 'high cost installment': 394973, 'cost installment lender': 207986, 'installment lender our': 440054, 'lender our ha': 486246, 'our ha the': 623338, 'ha the story': 372228, 'fantasy': 298621, 'tinkering': 898599, 'hamont': 374599, 'more like': 539685, 'like fantasy': 490220, 'fantasy football': 298625, 'football my': 318502, 'wife ha': 991929, 'been tinkering': 122204, 'tinkering with': 898600, 'day hamont': 227723, 'hamont coronacrisis': 374600, 'shopping ha become': 762822, 'ha become more': 369685, 'become more like': 120058, 'more like fantasy': 539689, 'like fantasy football': 490221, 'fantasy football my': 298626, 'football my wife': 318503, 'my wife ha': 550592, 'wife ha been': 991930, 'ha been tinkering': 369957, 'been tinkering with': 122205, 'tinkering with the': 898602, 'with the line': 1001370, 'the line up': 859421, 'line up for': 493523, 'up for day': 944924, 'for day hamont': 320571, 'day hamont coronacrisis': 227724, 'fda issue': 300880, 'issue consumer': 455708, 'alert on': 41477, 'on fraudulent': 600981, 'fraudulent covid': 331454, '19 cure': 6383, 'fda issue consumer': 300881, 'issue consumer alert': 455709, 'consumer alert on': 196152, 'alert on fraudulent': 41480, 'on fraudulent covid': 600982, 'fraudulent covid 19': 331455, 'covid 19 cure': 212898, 'sarawat': 736736, 'ksa': 477816, 'jeddah': 464968, 'madinah': 508120, 'coronaupdate': 205326, 'the recent': 865294, 'recent change': 703830, 'curfew our': 220914, 'our opening': 624162, 'hour ha': 405657, 'been changed': 120813, 'changed to': 172584, 'to 30': 899662, '30 am': 16952, 'to 00': 899407, '00 pm': 437, 'pm corona': 661884, 'corona stayhome': 204194, 'stayhome supermarket': 798194, 'offer sale': 594771, 'sale sarawat': 732505, 'sarawat saudiarabia': 736737, 'saudiarabia ksa': 737343, 'ksa jeddah': 477819, 'jeddah madinah': 464971, 'madinah coronaupdate': 508121, 'coronaupdate staysafe': 205331, 'of the recent': 591393, 'the recent change': 865299, 'recent change to': 703832, 'change to the': 172365, 'to the curfew': 916617, 'the curfew our': 852594, 'curfew our opening': 220915, 'our opening hour': 624163, 'opening hour ha': 612853, 'hour ha now': 405658, 'ha now been': 371391, 'now been changed': 574224, 'been changed to': 120815, 'changed to 30': 172585, 'to 30 am': 899663, '30 am to': 16958, 'am to 00': 50500, 'to 00 pm': 899413, '00 pm corona': 439, 'pm corona stayhome': 661885, 'corona stayhome supermarket': 204196, 'stayhome supermarket offer': 798195, 'supermarket offer sale': 821708, 'offer sale sarawat': 594772, 'sale sarawat saudiarabia': 732506, 'sarawat saudiarabia ksa': 736738, 'saudiarabia ksa jeddah': 737344, 'ksa jeddah madinah': 477820, 'jeddah madinah coronaupdate': 464972, 'madinah coronaupdate staysafe': 508122, 'pity': 657051, 'it town': 461827, 'town just': 927504, 'live pity': 495989, 'pity the': 657062, 'closed now': 183248, 'now due': 574568, 'it town just': 461828, 'town just 15': 927505, 'where live pity': 984991, 'live pity the': 495990, 'pity the club': 657063, 'club is closed': 184448, 'is closed now': 446584, 'closed now due': 183251, 'now due to': 574569, 'with everything': 998298, '19 shopping': 10483, 'safe while': 730138, 'while still': 987320, 'getting what': 349441, 'need check': 554604, 'this amazing': 886299, 'amazing article': 50649, 'online foundation': 608260, 'with everything going': 998302, 'going on with': 355346, 'on with 19': 605336, 'with 19 shopping': 996968, '19 shopping online': 10489, 'online is the': 608437, 'is the best': 452738, 'best way to': 127986, 'stay safe while': 797298, 'safe while still': 730143, 'while still getting': 987321, 'still getting what': 800569, 'getting what you': 349444, 'you need check': 1019974, 'need check out': 554605, 'out this amazing': 627558, 'this amazing article': 886300, 'amazing article on': 50650, 'article on how': 94406, 'how to choose': 408990, 'to choose your': 902746, 'choose your online': 177929, 'your online foundation': 1025072, 'unforeseen': 941539, 'majeure': 509210, 'psychology': 687540, 'the unforeseen': 870393, 'unforeseen force': 941546, 'force majeure': 328426, 'majeure act': 509211, 'of god': 584173, 'god that': 354810, 'seen affect': 746920, 'entire world': 278776, 'world economy': 1009503, 'and psychology': 69729, 'psychology of': 687567, 'buying behavior': 150010, 'behavior since': 124193, 'the 2008': 847989, '2008 global': 13667, 'global financial': 351938, 'thought startup': 893225, 'startup were': 795137, 'were risky': 980078, 'risky before': 724112, 'before it': 122875, 'throw it': 895030, 'into 6th': 442361, '6th gear': 21690, '19 ha been': 7328, 'been the unforeseen': 122171, 'the unforeseen force': 870395, 'unforeseen force majeure': 941547, 'force majeure act': 328427, 'majeure act of': 509212, 'act of god': 29720, 'of god that': 584179, 'god that we': 354811, 'that we ve': 847402, 've seen affect': 953523, 'seen affect the': 746921, 'affect the entire': 34244, 'the entire world': 854374, 'entire world economy': 278778, 'world economy and': 1009504, 'economy and psychology': 267652, 'and psychology of': 69730, 'psychology of consumer': 687568, 'of consumer buying': 581717, 'consumer buying behavior': 196700, 'buying behavior since': 150016, 'behavior since the': 124194, 'since the 2008': 770855, 'the 2008 global': 847993, '2008 global financial': 13668, 'global financial crisis': 351939, 'financial crisis if': 306371, 'crisis if you': 217518, 'if you thought': 415541, 'you thought startup': 1021718, 'thought startup were': 893226, 'startup were risky': 795138, 'were risky before': 980079, 'risky before it': 724113, 'before it time': 122896, 'to throw it': 917564, 'throw it into': 895032, 'it into 6th': 458820, 'into 6th gear': 442362, 'could order': 209485, 'my at': 547342, 'risk parent': 723811, 'parent today': 641755, 'in fact': 422756, 'fact you': 295844, 'allowed new': 46188, 'new account': 558315, 'account think': 28764, 'think how': 885286, 'risk were': 724009, 'were shopping': 980108, 'online those': 609562, 'who must': 989300, 'must isolate': 546737, 'isolate need': 454896, 'do better': 249133, 'could order for': 209486, 'order for my': 618233, 'for my at': 323671, 'my at risk': 547343, 'at risk parent': 100384, 'risk parent today': 723812, 'parent today in': 641756, 'today in fact': 919682, 'in fact you': 422769, 'fact you re': 295846, 're not allowed': 699074, 'not allowed new': 568148, 'allowed new account': 46189, 'new account think': 558317, 'account think how': 28765, 'think how many': 885290, 'how many of': 408276, 'of the at': 590805, 'at risk were': 100414, 'risk were shopping': 724010, 'were shopping online': 980110, 'shopping online those': 763496, 'online those who': 609563, 'those who must': 892657, 'who must isolate': 989303, 'must isolate need': 546738, 'isolate need you': 454897, 'need you to': 556266, 'to do better': 904488, 'friking': 334071, 'payback': 645263, 'about friking': 25282, 'friking time': 334072, 'time thank': 897820, 'thank covid': 841546, '19 just': 8199, 'what humanity': 981613, 'humanity needed': 410758, 'needed now': 556446, 'to remind': 913195, 'remind the': 710506, 'rich to': 721262, 'we screwed': 973149, 'screwed each': 742818, 'other payback': 620651, 'payback time': 645265, 'time fox': 896787, 'fox business': 330746, 'business could': 143588, 'could see': 209627, 'see lowest': 745377, 'lowest gas': 506164, 'in history': 423746, 'history analyst': 398000, 'analyst via': 57192, 'about friking time': 25283, 'friking time thank': 334073, 'time thank covid': 897821, 'thank covid 19': 841547, 'covid 19 just': 213312, '19 just what': 8214, 'just what humanity': 470285, 'what humanity needed': 981614, 'humanity needed now': 410759, 'needed now to': 556451, 'now to remind': 576181, 'to remind the': 913204, 'remind the rich': 710509, 'the rich to': 865783, 'rich to think': 721264, 'to think about': 917370, 'think about the': 885103, 'about the poor': 26479, 'the poor people': 863983, 'poor people for': 664251, 'people for year': 647964, 'for year we': 328020, 'year we screwed': 1015088, 'we screwed each': 973150, 'screwed each other': 742819, 'each other payback': 264207, 'other payback time': 620652, 'payback time fox': 645266, 'time fox business': 896788, 'fox business could': 330748, 'business could see': 143589, 'could see lowest': 209638, 'see lowest gas': 745378, 'lowest gas price': 506165, 'price in history': 674694, 'in history analyst': 423747, 'history analyst via': 398001, 'crashing': 215099, 'overhang': 631223, 'influx': 437378, 'refugee': 706835, 'about pandemic': 25915, 'pandemic hitting': 635644, 'hitting hard': 398569, 'hard crashing': 377898, 'crashing price': 215122, 'price massive': 675177, 'massive overhang': 520059, 'overhang to': 631224, 'to influx': 908379, 'influx of': 437383, 'of desperate': 582554, 'desperate refugee': 238549, 'refugee from': 706845, 'from volatile': 338263, 'volatile social': 960058, 'social movement': 779898, 'and politics': 69178, 'politics this': 663803, 'to watch': 918376, 'concerned about pandemic': 193165, 'about pandemic hitting': 25916, 'pandemic hitting hard': 635646, 'hitting hard crashing': 398570, 'hard crashing price': 377899, 'crashing price massive': 215124, 'price massive overhang': 675178, 'massive overhang to': 520060, 'overhang to influx': 631225, 'to influx of': 908380, 'influx of desperate': 437386, 'of desperate refugee': 582556, 'desperate refugee from': 238550, 'refugee from volatile': 706846, 'from volatile social': 338264, 'volatile social movement': 960059, 'social movement and': 779899, 'movement and politics': 543856, 'and politics this': 69179, 'politics this is': 663804, 'is one to': 450513, 'one to watch': 607289, 'you answered': 1017020, 'answered yes': 78193, 'yes what': 1015604, 'what kind': 981793, 'of bottle': 580800, 'bottle doe': 136216, 'doe your': 251676, 'sanitizer come': 734670, 'if you answered': 415391, 'you answered yes': 1017021, 'answered yes what': 78194, 'yes what kind': 1015605, 'what kind of': 981794, 'kind of bottle': 474878, 'of bottle doe': 580801, 'bottle doe your': 136217, 'doe your hand': 251680, 'your hand sanitizer': 1024219, 'hand sanitizer come': 375346, 'sanitizer come in': 734671, 'shopping double': 762515, 'double during': 256010, 'online shopping double': 609102, 'shopping double during': 762516, 'double during coronavirus': 256011, 'during coronavirus crisis': 262535, 'protectyourworkers': 685874, 'think during': 885218, 'be bagging': 113800, 'bagging your': 108534, 'shopping order': 763557, 'order so': 618587, 'your driver': 1023602, 'driver arent': 259447, 'arent put': 92626, 'put at': 690517, 'it becomes': 456771, 'becomes almost': 120196, 'almost contact': 46584, 'free protectyourworkers': 332084, 'you think during': 1021653, 'think during the': 885219, '19 pandemic that': 9494, 'pandemic that you': 636660, 'that you should': 847743, 'should be bagging': 765566, 'be bagging your': 113801, 'bagging your online': 108535, 'your online shopping': 1025078, 'online shopping order': 609212, 'shopping order so': 763565, 'order so that': 618588, 'so that your': 778410, 'that your driver': 847765, 'your driver arent': 1023604, 'driver arent put': 259448, 'arent put at': 92627, 'put at risk': 690518, 'risk and it': 723374, 'and it becomes': 65489, 'it becomes almost': 456773, 'becomes almost contact': 120197, 'almost contact free': 46585, 'contact free protectyourworkers': 200086, 'are expert': 86356, 'expert at': 291792, 'at shifting': 100503, 'shifting tactic': 758551, 'tactic and': 831685, 'and changing': 59732, 'changing their': 172816, 'their message': 873954, 'message to': 529445, 'to catch': 902494, 'catch you': 167061, 'you off': 1020175, 'off guard': 593875, 'guard here': 367806, 'here quick': 393496, 'quick alert': 694272, 'some current': 782643, 'current government': 221214, 'scam using': 740449, 'scammer are expert': 740532, 'are expert at': 86357, 'expert at shifting': 291794, 'at shifting tactic': 100504, 'shifting tactic and': 758553, 'tactic and changing': 831686, 'and changing their': 59736, 'changing their message': 172819, 'their message to': 873958, 'message to catch': 529448, 'to catch you': 902511, 'catch you off': 167062, 'you off guard': 1020176, 'off guard here': 593876, 'guard here quick': 367807, 'here quick alert': 393497, 'quick alert about': 694273, 'alert about some': 41343, 'about some current': 26226, 'some current government': 782644, 'current government imposter': 221216, 'imposter scam using': 419419, 'scam using covid': 740450, 'diabetic': 240193, 'got this': 358935, 'this email': 887360, 'from ocado': 336631, 'ocado been': 578882, 'been with': 122380, 'from year': 338434, 'year type': 1015056, 'type one': 937594, 'one diabetic': 606181, 'diabetic need': 240196, 'need these': 555793, 'these delivers': 879914, 'delivers if': 233594, 'are fit': 86591, 'fit go': 309475, 'supermarket especially': 820194, 'the young': 872202, 'just got this': 468871, 'got this email': 358938, 'this email from': 887361, 'email from ocado': 272189, 'from ocado been': 336632, 'ocado been with': 578883, 'been with them': 122385, 'with them from': 1001612, 'them from year': 875763, 'from year type': 338440, 'year type one': 1015057, 'type one diabetic': 937595, 'one diabetic need': 606182, 'diabetic need these': 240199, 'need these delivers': 555794, 'these delivers if': 879915, 'delivers if you': 233595, 'you are fit': 1017125, 'are fit go': 86592, 'fit go to': 309476, 'the supermarket especially': 868575, 'supermarket especially the': 820196, 'especially the young': 280633, 'labour': 478511, '22nd': 15334, 'troll': 932342, 'criticised': 218750, 'price skyrocketing': 676450, 'skyrocketing truck': 773456, 'truck stranded': 932860, 'stranded huge': 812351, 'huge labour': 410082, 'labour shortage': 478526, 'shortage had': 764981, 'had predicted': 373421, 'predicted this': 669623, 'on 22nd': 599068, '22nd march': 15345, 'march out': 515429, 'concern for': 192969, 'man but': 512011, 'but certain': 145400, 'certain website': 170128, 'website troll': 975455, 'troll criticised': 932343, 'criticised me': 218755, 'panic pray': 638431, 'pray that': 669019, 'action fast': 30008, 'fast to': 300056, 'reduce suffering': 705949, 'food shortage price': 316599, 'shortage price skyrocketing': 765183, 'price skyrocketing truck': 676456, 'skyrocketing truck stranded': 773457, 'truck stranded huge': 932861, 'stranded huge labour': 812352, 'huge labour shortage': 410083, 'labour shortage had': 478527, 'shortage had predicted': 764982, 'had predicted this': 373422, 'predicted this on': 669624, 'this on 22nd': 889209, 'on 22nd march': 599069, '22nd march out': 15347, 'march out of': 515430, 'out of concern': 626705, 'of concern for': 581642, 'concern for the': 192978, 'the common man': 851253, 'common man but': 189408, 'man but certain': 512012, 'but certain website': 145402, 'certain website troll': 170129, 'website troll criticised': 975456, 'troll criticised me': 932344, 'criticised me for': 218756, 'me for spreading': 522760, 'for spreading panic': 325841, 'spreading panic pray': 791026, 'panic pray that': 638432, 'pray that we': 669021, 'that we take': 847399, 'we take action': 973477, 'take action fast': 831895, 'action fast to': 30009, 'fast to reduce': 300058, 'to reduce suffering': 913042, 'affordability': 34827, 'pa proposed': 632877, 'proposed affordability': 684516, 'affordability board': 34828, 'board are': 133617, 'another attempt': 77501, 'to artificially': 900734, 'artificially control': 94541, 'control drug': 201999, 'will cause': 992884, 'cause shortage': 167728, 'shortage just': 765050, 'crisis peak': 217861, 'peak another': 646049, 'another bad': 77505, 'bad piece': 107980, 'of legislation': 585770, 'legislation see': 485983, 'pa proposed affordability': 632878, 'proposed affordability board': 684517, 'affordability board are': 34829, 'board are just': 133618, 'are just another': 87615, 'just another attempt': 468200, 'another attempt to': 77502, 'attempt to artificially': 102236, 'to artificially control': 900735, 'artificially control drug': 94542, 'control drug price': 202000, 'drug price it': 261049, 'price it will': 674929, 'it will cause': 462380, 'will cause shortage': 992896, 'cause shortage just': 167731, 'shortage just the': 765054, 'just the 19': 469988, 'the 19 crisis': 847913, '19 crisis peak': 6298, 'crisis peak another': 217862, 'peak another bad': 646050, 'another bad piece': 77507, 'bad piece of': 107981, 'piece of legislation': 656338, 'of legislation see': 585771, 'remarkably': 710119, 'of fish': 583558, 'fish in': 309321, 'france ha': 331000, 'dropped remarkably': 260622, 'remarkably since': 710120, 'country wa': 211202, 'wa put': 963016, 'doe that': 251595, 'industry whole': 436242, 'whole read': 990314, 'price of fish': 675453, 'of fish in': 583560, 'fish in france': 309322, 'in france ha': 423077, 'france ha dropped': 331001, 'ha dropped remarkably': 370464, 'dropped remarkably since': 260623, 'remarkably since the': 710121, 'since the country': 770872, 'the country wa': 852176, 'country wa put': 211205, 'wa put on': 963017, 'put on lockdown': 690721, 'lockdown but what': 499216, 'what doe that': 981370, 'doe that mean': 251597, 'that mean for': 845110, 'mean for the': 524453, 'for the industry': 326502, 'the industry whole': 858195, 'industry whole read': 436243, 'whole read more': 990315, 'staysafestayathome': 798981, 'be kinder': 115637, 'kinder and': 475086, 'more loving': 539729, 'loving right': 505063, 'now be': 574190, 'kind tell': 474984, 'supermarket they': 823284, 'doing great': 252427, 'and please': 69103, 'necessary stay': 554080, 'home keep': 401488, 'safe staysafestayathome': 729994, 'world need to': 1009828, 'to be kinder': 901355, 'be kinder and': 115638, 'kinder and more': 475087, 'and more loving': 67189, 'more loving right': 539730, 'loving right now': 505064, 'right now be': 722031, 'now be kind': 574201, 'be kind tell': 115629, 'kind tell the': 474985, 'tell the worker': 837095, 'the worker at': 871748, 'worker at your': 1006485, 'local supermarket they': 498599, 'supermarket they are': 823285, 'are doing great': 85901, 'doing great job': 252430, 'great job and': 362780, 'job and please': 465639, 'and please if': 69108, 'please if it': 660099, 'if it is': 414313, 'is not necessary': 450136, 'not necessary stay': 570639, 'necessary stay home': 554083, 'stay home keep': 796979, 'home keep safe': 401491, 'safe and stay': 729485, 'stay safe staysafestayathome': 797283, 'mum asked': 545878, 'asked my': 95800, 'my dad': 547877, 'dad for': 224319, 'sanitiser for': 733955, 'for her': 322209, 'her handbag': 392091, 'handbag to': 376049, 'to ward': 918330, 'ward off': 966646, 'off he': 593890, 'he returned': 385349, 'this he': 887880, 'didn wonder': 241263, 'so my mum': 777842, 'my mum asked': 549368, 'mum asked my': 545879, 'asked my dad': 95801, 'my dad for': 547887, 'dad for some': 224321, 'for some hand': 325745, 'some hand sanitiser': 783021, 'hand sanitiser for': 375231, 'sanitiser for her': 733957, 'for her handbag': 322220, 'her handbag to': 392094, 'handbag to ward': 376050, 'to ward off': 918331, 'ward off he': 966648, 'off he returned': 593891, 'he returned from': 385350, 'returned from the': 719966, 'the supermarket with': 868911, 'supermarket with this': 823943, 'with this he': 1001701, 'this he didn': 887881, 'he didn wonder': 384886, 'didn wonder why': 241264, 'why it wa': 991149, 'it wa the': 462210, 'wa the only': 963460, 'only thing left': 611307, 'hope this': 403714, 'this help': 887890, 'help some': 390540, 'you if': 1019279, 'you started': 1021362, 'started you': 794923, 'would we': 1012384, 'have shortage': 382524, 'store be': 806658, 'hoarding we': 399643, 'have tp': 383383, 'tp we': 928030, 'hope this help': 403718, 'this help some': 887897, 'help some of': 390542, 'some of you': 783420, 'of you if': 593394, 'you if you': 1019284, 'if you started': 415525, 'you started you': 1021364, 'started you normally': 794924, 'normally would we': 567580, 'would we would': 1012389, 'we would not': 973974, 'not have shortage': 569870, 'have shortage in': 382525, 'shortage in our': 765018, 'in our store': 426342, 'our store be': 624941, 'store be kind': 806662, 'kind and stop': 474813, 'and stop hoarding': 72475, 'stop hoarding we': 804753, 'hoarding we will': 399648, 'will have food': 993633, 'have food we': 380672, 'food we will': 317536, 'will have tp': 993681, 'have tp we': 383386, 'tp we will': 928032, 'naked': 551550, 'supermarket very': 823642, 'very naked': 955369, 'naked apparently': 551551, 'apparently it': 81952, 'been hell': 121272, 'hell for': 389006, 'day queue': 228265, 'door at': 255522, 'at opening': 99983, 'got to work': 358974, 'work supermarket very': 1005784, 'supermarket very naked': 823643, 'very naked apparently': 955370, 'naked apparently it': 551552, 'apparently it been': 81953, 'it been hell': 456794, 'been hell for': 121273, 'hell for the': 389009, 'for the staff': 326703, 'the staff during': 867686, 'staff during the': 792398, 'the day queue': 852906, 'day queue at': 228266, 'queue at the': 693892, 'at the door': 100929, 'the door at': 853560, 'door at opening': 255524, 'at opening time': 99984, 'caetgories': 155077, 'sustain': 829736, 'suffered': 817254, 'the dairy': 852789, 'dairy packaged': 225016, 'personal care': 652797, 'care caetgories': 163876, 'caetgories have': 155078, 'have managed': 381429, 'to sustain': 916072, 'sustain growth': 829739, 'growth in': 367391, 'in vietnam': 430584, 'vietnam market': 957039, 'market while': 517342, 'while beverage': 986649, 'beverage ha': 129006, 'ha suffered': 372104, 'suffered decline': 817257, 'decline despite': 231319, 'despite this': 238911, 'this being': 886543, 'being high': 125239, 'high season': 395400, 'season read': 743427, 'about vietnam': 26825, 'vietnam consumer': 957030, 'change retail': 172245, 'retail movement': 718324, 'movement during': 543868, 'the dairy packaged': 852795, 'dairy packaged food': 225017, 'packaged food and': 633478, 'food and personal': 313305, 'and personal care': 68921, 'personal care caetgories': 652800, 'care caetgories have': 163877, 'caetgories have managed': 155079, 'have managed to': 381430, 'managed to sustain': 512514, 'to sustain growth': 916074, 'sustain growth in': 829740, 'growth in vietnam': 367406, 'in vietnam market': 430585, 'vietnam market while': 957040, 'market while beverage': 517344, 'while beverage ha': 986650, 'beverage ha suffered': 129007, 'ha suffered decline': 372105, 'suffered decline despite': 817258, 'decline despite this': 231320, 'despite this being': 238913, 'this being high': 886544, 'being high season': 125241, 'high season read': 395401, 'season read more': 743428, 'read more about': 700416, 'more about vietnam': 538526, 'about vietnam consumer': 26826, 'vietnam consumer change': 957031, 'consumer change retail': 196779, 'change retail movement': 172247, 'retail movement during': 718325, 'movement during 19': 543869, 'marketed': 517433, 'and marketed': 66715, 'marketed in': 517434, 'crisis but': 217142, 'still higher': 800704, 'higher ckont': 395554, 'sold and marketed': 781620, 'and marketed in': 66716, 'marketed in ck': 517435, '19 crisis but': 6221, 'crisis but the': 217158, 'but the average': 147310, 'is still higher': 452285, 'still higher ckont': 800705, 'circulating': 178677, 'and beware': 58935, 'scam circulating': 740113, 'circulating in': 178680, 'canada profiting': 160534, 'profiting off': 683132, 'and beware of': 58936, 'of the scam': 591438, 'the scam circulating': 866412, 'scam circulating in': 740114, 'circulating in canada': 178681, 'in canada profiting': 421197, 'canada profiting off': 160535, 'profiting off the': 683136, 'off the global': 594246, 'our most': 623944, 'most recent': 542678, 'recent newsletter': 703933, 'out our most': 626982, 'our most recent': 623945, 'most recent newsletter': 542683, 'wfh': 980828, 'trolley everyone': 932405, 'everyone hand': 286985, 'there full': 878422, 'germ why': 346183, 'not providing': 571153, 'providing alcohol': 686932, 'alcohol wipe': 41183, 'clean them': 180658, 'everyone wfh': 287574, 'wfh kid': 980838, 'kid off': 474063, 'off school': 594118, 'school if': 741822, 'what about supermarket': 980991, 'about supermarket trolley': 26289, 'supermarket trolley everyone': 823564, 'trolley everyone hand': 932406, 'everyone hand on': 286986, 'hand on there': 375146, 'on there full': 604553, 'there full of': 878423, 'full of germ': 340726, 'of germ why': 584103, 'germ why are': 346184, 'why are supermarket': 990789, 'are supermarket not': 90652, 'supermarket not providing': 821647, 'not providing alcohol': 571154, 'providing alcohol wipe': 686933, 'alcohol wipe to': 41189, 'wipe to clean': 996394, 'to clean them': 902815, 'clean them down': 180659, 'down with what': 257506, 'with what the': 1002073, 'what the point': 982353, 'the point of': 863903, 'point of everyone': 662559, 'of everyone wfh': 583260, 'everyone wfh kid': 287575, 'wfh kid off': 980839, 'kid off school': 474064, 'off school if': 594120, 'school if you': 741823, 'steepest': 799408, 'deflation': 232442, 'consumerspending': 199769, 'price post': 675961, 'post steepest': 666325, 'steepest plunge': 799413, 'plunge in': 661433, 'in five': 422917, 'year forced': 1014571, 'forced lockdown': 328577, 'lockdown drag': 499321, 'drag on': 258159, 'big concern': 129709, 'concern right': 193082, 'is deflation': 447090, 'deflation chief': 232445, 'chief economist': 175911, 'economist economy': 267542, 'economy 19': 267599, '19 consumerspending': 6001, 'consumer price post': 198428, 'price post steepest': 675964, 'post steepest plunge': 666326, 'steepest plunge in': 799414, 'plunge in five': 661435, 'in five year': 422921, 'five year forced': 309691, 'year forced lockdown': 1014572, 'forced lockdown drag': 328578, 'lockdown drag on': 499322, 'drag on the': 258161, 'on the big': 603987, 'the big concern': 849603, 'big concern right': 129711, 'concern right now': 193083, 'now is deflation': 575066, 'is deflation chief': 447091, 'deflation chief economist': 232446, 'chief economist economy': 175915, 'economist economy 19': 267543, 'economy 19 consumerspending': 267600, 'prevailing': 671542, 'uganda': 937963, 'ugandan': 938001, 'enjoys': 277253, 'the prevailing': 864304, 'prevailing global': 671547, 'pandemic food': 635437, 'shortage hiked': 765000, 'hiked price': 396328, 'supply is': 825432, 'is major': 449519, 'major crisis': 509294, 'crisis anticipated': 217068, 'anticipated in': 78460, 'in uganda': 430371, 'uganda near': 937980, 'near future': 553498, 'future govt': 342340, 'govt ha': 361136, 'ha duty': 370470, 'duty to': 263613, 'create food': 215644, 'food reserve': 316180, 'for time': 327188, 'emergency to': 273028, 'every ugandan': 286348, 'ugandan enjoys': 938007, 'enjoys their': 277254, 'their right': 874591, 'to adequate': 900096, 'adequate food': 32162, 'with the prevailing': 1001437, 'the prevailing global': 864305, 'prevailing global pandemic': 671548, 'global pandemic food': 352087, 'pandemic food shortage': 635441, 'food shortage hiked': 316582, 'shortage hiked price': 765001, 'hiked price of': 396333, 'food supply is': 316962, 'supply is major': 825450, 'is major crisis': 449522, 'major crisis anticipated': 509295, 'crisis anticipated in': 217069, 'anticipated in uganda': 78461, 'in uganda near': 430376, 'uganda near future': 937981, 'near future govt': 553503, 'future govt ha': 342341, 'govt ha duty': 361140, 'ha duty to': 370471, 'duty to create': 263614, 'to create food': 903707, 'create food reserve': 215645, 'food reserve for': 316182, 'reserve for time': 714060, 'for time of': 327190, 'time of emergency': 897328, 'of emergency to': 583060, 'emergency to ensure': 273029, 'to ensure that': 905194, 'ensure that every': 278057, 'that every ugandan': 843759, 'every ugandan enjoys': 286349, 'ugandan enjoys their': 938008, 'enjoys their right': 277255, 'their right to': 874594, 'right to adequate': 722334, 'to adequate food': 900097, 'basingstoke': 112204, 'hey my': 394462, 'friend went': 333886, 'your basingstoke': 1022912, 'basingstoke store': 112211, 'told by': 923535, 'by staff': 154095, 'staff member': 792651, 'member that': 528208, 'been putting': 121756, 'putting up': 691275, 'good because': 356816, 'please tell': 660646, 'isn true': 454746, 'hey my friend': 394463, 'my friend went': 548457, 'friend went into': 333887, 'went into your': 979053, 'into your basingstoke': 443317, 'your basingstoke store': 1022913, 'basingstoke store this': 112212, 'morning and wa': 541170, 'and wa told': 75103, 'wa told by': 963537, 'told by staff': 923540, 'by staff member': 154097, 'staff member that': 792662, 'member that the': 528211, 'the store had': 868031, 'store had been': 808037, 'had been putting': 372906, 'been putting up': 121758, 'putting up price': 691277, 'of good because': 584214, 'good because of': 356817, 'because of please': 119391, 'of please tell': 588172, 'please tell me': 660648, 'tell me this': 837027, 'me this isn': 523715, 'this isn true': 888495, 'bidding': 129511, 'the fractured': 855750, 'fractured federal': 330876, 'federal response': 302049, '19 governor': 7266, 'governor say': 360983, 'now bidding': 574251, 'bidding against': 129512, 'against federal': 37443, 'federal agency': 301943, 'agency each': 38004, 'other for': 620251, 'for scarce': 325373, 'scarce supply': 740809, 'supply driving': 825183, 'the wasted': 871118, 'wasted month': 968252, 'month before': 537613, 'before preparing': 123019, 'for virus': 327574, 'of the fractured': 591041, 'the fractured federal': 855751, 'fractured federal response': 330877, 'federal response to': 302051, 'covid 19 governor': 213159, '19 governor say': 7267, 'governor say they': 360986, 'they re now': 883082, 're now bidding': 699138, 'now bidding against': 574252, 'bidding against federal': 129514, 'against federal agency': 37444, 'federal agency each': 301945, 'agency each other': 38005, 'each other for': 264172, 'other for scarce': 620262, 'for scarce supply': 325377, 'scarce supply driving': 740810, 'supply driving up': 825185, 'up price the': 945837, 'price the wasted': 676865, 'the wasted month': 871119, 'wasted month before': 968253, 'month before preparing': 537615, 'before preparing for': 123020, 'preparing for virus': 670342, 'for virus pandemic': 327577, 'dovetail': 256307, 'frantically': 331193, 'teddie': 836427, 'this story': 890357, 'about keeping': 25614, 'for cheap': 320026, 'cheap shelf': 174186, 'stable protein': 791946, 'protein dovetail': 685886, 'dovetail perfectly': 256308, 'perfectly with': 651407, 'the lead': 859218, 'lead in': 483284, 'my story': 550234, 'story in': 812009, 'which couple': 985782, 'couple frantically': 211586, 'frantically search': 331194, 'for teddie': 326170, 'teddie while': 836428, 'this story about': 890358, 'story about keeping': 811892, 'about keeping up': 25620, 'with demand for': 997978, 'demand for cheap': 235390, 'for cheap shelf': 320029, 'cheap shelf stable': 174187, 'shelf stable protein': 757550, 'stable protein dovetail': 791947, 'protein dovetail perfectly': 685887, 'dovetail perfectly with': 256309, 'perfectly with the': 651408, 'with the lead': 1001364, 'the lead in': 859219, 'lead in my': 483287, 'in my story': 425633, 'my story in': 550237, 'story in which': 812017, 'in which couple': 430858, 'which couple frantically': 985783, 'couple frantically search': 211587, 'frantically search for': 331195, 'search for teddie': 743256, 'for teddie while': 326171, 'teddie while panic': 836429, 'leadership': 483579, 'precedent': 669449, 'reclassified': 704584, 'your leadership': 1024601, 'leadership here': 483613, 'here please': 393460, 'help set': 390517, 'the precedent': 864214, 'precedent for': 669450, 'for groceryworkers': 322064, 'groceryworkers four': 366399, 'four state': 330671, 'state have': 795651, 'have reclassified': 382215, 'reclassified grocery': 704585, 'worker critical': 1006712, 'critical personnel': 218627, 'need your leadership': 556272, 'your leadership here': 1024603, 'leadership here please': 483614, 'here please help': 393461, 'please help set': 660080, 'help set the': 390518, 'set the precedent': 753488, 'the precedent for': 864215, 'precedent for groceryworkers': 669451, 'for groceryworkers four': 322065, 'groceryworkers four state': 366400, 'four state have': 330672, 'state have reclassified': 795657, 'have reclassified grocery': 382216, 'reclassified grocery worker': 704586, 'grocery worker critical': 366167, 'worker critical personnel': 1006713, 'impose': 419228, 'canceling': 160982, 'securing': 744498, 'not impose': 570076, 'impose curfew': 419233, 'curfew demand': 220874, 'demand lock': 235814, 'down or': 257056, 'or expect': 615232, 'expect stay': 290728, 'from everyone': 335332, 'everyone without': 287627, 'without canceling': 1002534, 'canceling rent': 160992, 'related bill': 708381, 'bill well': 130719, 'well securing': 978542, 'securing housing': 744501, 'housing food': 407077, 'basic income': 111948, 'income period': 432436, 'can not impose': 159049, 'not impose curfew': 570077, 'impose curfew demand': 419234, 'curfew demand lock': 220875, 'demand lock down': 235815, 'lock down or': 499045, 'down or expect': 257058, 'or expect stay': 615233, 'expect stay at': 290729, 'at home from': 98996, 'home from everyone': 401261, 'from everyone without': 335338, 'everyone without canceling': 287628, 'without canceling rent': 1002535, 'canceling rent and': 160993, 'rent and all': 711032, 'all other related': 43785, 'other related bill': 620827, 'related bill well': 708382, 'bill well securing': 130720, 'well securing housing': 978543, 'securing housing food': 744502, 'housing food and': 407078, 'and basic income': 58719, 'basic income period': 111954, 'ventured': 954690, 'profusely': 683168, 'thanked': 841864, 'ventured out': 954691, 'parent used': 641762, 'used up': 950116, 'up bottle': 944507, 'handsanitizer on': 376596, 'on just': 601746, 'the cart': 850439, 'cart profusely': 165364, 'profusely thanked': 683169, 'thanked the': 841889, 'the cashier': 850478, 'cashier for': 166521, 'for being': 319623, 'being there': 125935, 'there before': 878235, 'before left': 122903, 'left the': 485665, 'check on': 174506, 'your friend': 1023966, 'retail they': 718785, 'not okay': 570738, 'okay thankful': 598015, 'ventured out for': 954693, 'out for some': 626161, 'some grocery for': 783001, 'grocery for for': 364527, 'for for my': 321669, 'my parent used': 549703, 'parent used up': 641763, 'used up bottle': 950117, 'up bottle of': 944508, 'bottle of handsanitizer': 136284, 'of handsanitizer on': 584444, 'handsanitizer on just': 376597, 'on just the': 601750, 'just the cart': 469996, 'the cart profusely': 850446, 'cart profusely thanked': 165365, 'profusely thanked the': 683171, 'thanked the cashier': 841890, 'the cashier for': 850486, 'cashier for being': 166523, 'for being there': 319641, 'being there before': 125936, 'there before left': 878238, 'before left the': 122905, 'left the store': 485674, 'store please check': 809582, 'please check on': 659776, 'check on your': 174518, 'on your friend': 605468, 'your friend in': 1023971, 'friend in retail': 333655, 'in retail they': 427471, 'retail they are': 718787, 'are not okay': 88425, 'not okay thankful': 570741, 'business or': 144157, 'or individual': 615788, 'individual interested': 435206, 'purchasing sanitizers': 689914, 'sanitizers let': 736333, 'help spread': 390552, 'word discounted': 1004475, 'discounted price': 244592, 'price available': 672822, 'large order': 479730, 'order be': 618071, 'safe there': 730021, 'there africa': 877958, 'if you know': 415460, 'know of business': 476641, 'of business or': 580963, 'business or individual': 144160, 'or individual interested': 615790, 'individual interested in': 435207, 'interested in purchasing': 441464, 'in purchasing sanitizers': 427133, 'purchasing sanitizers let': 689915, 'sanitizers let me': 736334, 'me know and': 523039, 'know and help': 476254, 'and help spread': 64468, 'help spread the': 390554, 'the word discounted': 871701, 'word discounted price': 1004476, 'discounted price available': 244595, 'price available for': 672824, 'available for large': 104374, 'for large order': 322886, 'large order be': 479731, 'order be safe': 618072, 'be safe there': 116972, 'safe there africa': 730022, 'subsequent': 815922, 'the sudden': 868377, 'sudden drop': 816997, 'the subsequent': 868357, 'subsequent fall': 815927, 'fall of': 297001, 'the ruble': 866028, 'ruble will': 727017, 'likely push': 492087, 'push russia': 690315, 'russia into': 728502, 'the sudden drop': 868384, 'sudden drop in': 816998, 'price this month': 676915, 'this month and': 888898, 'and the subsequent': 73600, 'the subsequent fall': 868358, 'subsequent fall of': 815928, 'fall of the': 297006, 'of the ruble': 591425, 'the ruble will': 866030, 'ruble will likely': 727018, 'will likely push': 994009, 'likely push russia': 492088, 'push russia into': 690316, 'ethical': 283063, 'beahelper': 118262, 'an ethical': 55862, 'ethical business': 283066, 'business fighting': 143734, 'fighting hunger': 305088, 'hunger during': 411099, 'outbreak panic': 628520, 'seen food': 747018, 'bank donation': 109784, 'donation dwindle': 254596, 'dwindle more': 263669, 'more why': 540979, 'why not': 991211, 'not beahelper': 568483, 'beahelper and': 118263, 'and volunteer': 75025, 'volunteer with': 960376, 'vulnerable can': 960896, 'can access': 157349, 'access the': 28201, 'is an ethical': 445658, 'an ethical business': 55863, 'ethical business fighting': 283067, 'business fighting hunger': 143735, 'fighting hunger during': 305089, 'hunger during the': 411101, 'the outbreak panic': 862675, 'outbreak panic buying': 628521, 'buying ha seen': 150449, 'ha seen food': 371825, 'seen food bank': 747019, 'food bank donation': 313557, 'bank donation dwindle': 109786, 'donation dwindle more': 254598, 'dwindle more why': 263670, 'more why not': 540981, 'why not beahelper': 991212, 'not beahelper and': 568484, 'beahelper and volunteer': 118264, 'and volunteer with': 75037, 'volunteer with them': 960378, 'with them to': 1001620, 'them to make': 876490, 'sure the most': 827713, 'most vulnerable can': 542869, 'vulnerable can access': 960897, 'can access the': 157357, 'access the food': 28204, 'food they need': 317172, 'dietitian': 241780, 'restraint': 717086, 'poorest': 664358, 'dietitian urge': 241787, 'urge restraint': 948221, 'restraint when': 717091, 'when buying': 983221, 'seen many': 747132, 'buying supply': 151126, 'supply empty': 825207, 'biggest impact': 130259, 'the poorest': 864001, 'poorest most': 664370, 'vulnerable member': 961041, 'dietitian urge restraint': 241788, 'urge restraint when': 948222, 'restraint when buying': 717092, 'when buying food': 983224, 'buying food during': 150311, 'food during pandemic': 314325, 'we have seen': 971932, 'have seen many': 382433, 'seen many people': 747133, 'many people panic': 514526, 'panic buying supply': 637917, 'buying supply empty': 151127, 'supply empty shelf': 825208, 'empty shelf are': 275049, 'shelf are likely': 756811, 'likely to have': 492158, 'to have the': 907322, 'have the biggest': 382963, 'the biggest impact': 849658, 'biggest impact on': 130260, 'on the poorest': 604292, 'the poorest most': 864006, 'poorest most vulnerable': 664371, 'most vulnerable member': 542884, 'vulnerable member of': 961042, 'member of our': 528146, 'of our society': 587565, 'cyber': 223922, 'magecart': 508355, 'skimming': 773036, 'cybercrime': 223955, 'cyberthreats': 224014, 'cyber criminal': 223925, 'unprecedented volume': 943215, 'traffic to': 929149, 'website during': 975249, 'with magecart': 999357, 'magecart credit': 508356, 'card skimming': 163643, 'skimming attack': 773039, 'attack ramping': 102142, 'up cybercrime': 944685, 'cybercrime cyberthreats': 223956, 'cyberthreats via': 224017, 'cyber criminal are': 223926, 'criminal are taking': 216823, 'advantage of unprecedented': 33040, 'of unprecedented volume': 592659, 'unprecedented volume of': 943216, 'of traffic to': 592414, 'traffic to online': 929155, 'shopping website during': 764357, 'website during the': 975250, '19 coronavirus pandemic': 6116, 'coronavirus pandemic with': 206508, 'pandemic with magecart': 637031, 'with magecart credit': 999358, 'magecart credit card': 508357, 'credit card skimming': 216350, 'card skimming attack': 163644, 'skimming attack ramping': 773040, 'attack ramping up': 102143, 'ramping up cybercrime': 696482, 'up cybercrime cyberthreats': 944686, 'cybercrime cyberthreats via': 223957, 'shifted': 758473, 'perception': 651226, 'newest': 560054, 'intelligence': 440982, 'unveils': 944027, 'altering': 49170, 'ha shifted': 371898, 'shifted consumer': 758478, 'consumer perception': 198349, 'perception our': 651242, 'our newest': 624050, 'newest global': 560058, 'global study': 352225, 'study from': 814895, 'from true': 338146, 'true global': 933090, 'global intelligence': 351992, 'intelligence unveils': 441016, 'unveils how': 944030, 'is altering': 445587, 'altering our': 49175, 'our behavior': 622175, 'behavior value': 124284, 'value and': 952084, 'society read': 781292, 'how ha shifted': 407955, 'ha shifted consumer': 371900, 'shifted consumer perception': 758480, 'consumer perception our': 198353, 'perception our newest': 651243, 'our newest global': 624052, 'newest global study': 560059, 'global study from': 352226, 'study from true': 814899, 'from true global': 338147, 'true global intelligence': 933091, 'global intelligence unveils': 351993, 'intelligence unveils how': 441017, 'unveils how the': 944031, 'how the is': 408840, 'the is altering': 858478, 'is altering our': 445589, 'altering our behavior': 49176, 'our behavior value': 622177, 'behavior value and': 124285, 'value and society': 952089, 'and society read': 71923, 'society read more': 781293, 'showmeyourshelves': 767567, 'reserved': 714122, 'dubuque': 261525, 'stayhomechallenge': 798258, 'trumpplague': 934121, 'showmeyourshelves is': 767568, 'is normally': 450014, 'normally reserved': 567531, 'reserved for': 714128, 'for book': 319721, 'book shelf': 134591, 'but wanna': 147718, 'wanna see': 965668, 'shelf during': 756999, 'during show': 263009, 'show me': 767049, 'me here': 522893, 'here dubuque': 392936, 'dubuque iowa': 261526, 'iowa no': 444499, 'no rice': 565362, 'rice coronapocalypse': 721027, 'coronapocalypse stayhomechallenge': 205198, 'stayhomechallenge trumpplague': 798293, 'showmeyourshelves is normally': 767569, 'is normally reserved': 450017, 'normally reserved for': 567532, 'reserved for book': 714129, 'for book shelf': 319722, 'book shelf but': 134592, 'shelf but wanna': 756909, 'but wanna see': 147719, 'wanna see the': 965670, 'store shelf during': 810071, 'shelf during show': 757003, 'during show me': 263010, 'show me here': 767050, 'me here dubuque': 522896, 'here dubuque iowa': 392937, 'dubuque iowa no': 261527, 'iowa no rice': 444500, 'no rice coronapocalypse': 565364, 'rice coronapocalypse stayhomechallenge': 721028, 'coronapocalypse stayhomechallenge trumpplague': 205199, 'occurring': 579058, 'arrgghh': 93884, 'no cleaning': 563818, 'cleaning of': 180991, 'of checkout': 581306, 'checkout mask': 174956, 'on staff': 603624, 'staff or': 792720, 'or social': 617139, 'distancing occurring': 247363, 'occurring in': 579065, 'queue arrgghh': 693879, 'supermarket no cleaning': 821607, 'no cleaning of': 563820, 'cleaning of checkout': 180992, 'of checkout mask': 581307, 'checkout mask glove': 174957, 'mask glove on': 518739, 'glove on staff': 352826, 'on staff or': 603625, 'staff or social': 792723, 'or social distancing': 617140, 'social distancing occurring': 779673, 'distancing occurring in': 247364, 'occurring in queue': 579067, 'in queue arrgghh': 427219, 'crisis scammer': 218005, 'are rife': 89691, 'rife do': 721690, 'give your': 350876, 'people claiming': 647468, 'have cure': 380169, 'for there': 326953, 'is none': 450002, 'none do': 566558, 'personal detail': 652824, 'detail to': 239259, 'anyone giving': 80331, 'giving away': 351238, 'away supermarket': 106039, 'supermarket voucher': 823669, 'voucher they': 960670, 'will wipe': 995353, 'wipe your': 996436, 'your bank': 1022902, 'account clean': 28647, 'clean before': 180480, 'you make': 1019752, 'during crisis scammer': 262564, 'crisis scammer are': 218006, 'scammer are rife': 740542, 'are rife do': 89692, 'rife do not': 721691, 'do not give': 249746, 'not give your': 569649, 'give your money': 350886, 'your money to': 1024873, 'money to people': 537115, 'to people claiming': 911619, 'people claiming to': 647470, 'claiming to have': 179921, 'to have cure': 907224, 'have cure for': 380171, 'cure for there': 220748, 'for there is': 326955, 'there is none': 878597, 'is none do': 450005, 'none do not': 566559, 'give your personal': 350890, 'your personal detail': 1025262, 'personal detail to': 652827, 'detail to anyone': 239260, 'to anyone giving': 900625, 'anyone giving away': 80332, 'giving away supermarket': 351244, 'away supermarket voucher': 106041, 'supermarket voucher they': 823676, 'voucher they will': 960672, 'they will wipe': 883899, 'will wipe your': 995356, 'wipe your bank': 996439, 'your bank account': 1022903, 'bank account clean': 109548, 'account clean before': 28648, 'clean before you': 180482, 'before you make': 123325, 'you make it': 1019758, 'make it to': 510062, 'instoreexperience': 440510, 'consumer ecommerce': 197283, 'ecommerce behavior': 266719, 'being accelerated': 124813, 'accelerated is': 27886, 'here to': 393701, 'stay ecommerce': 796858, 'ecommerce instoreexperience': 266793, 'to consumer ecommerce': 903294, 'consumer ecommerce behavior': 197284, 'ecommerce behavior is': 266720, 'behavior is being': 124094, 'is being accelerated': 446064, 'being accelerated is': 124814, 'accelerated is it': 27887, 'is it here': 449030, 'it here to': 458574, 'here to stay': 393728, 'to stay ecommerce': 915282, 'stay ecommerce instoreexperience': 796859, 'percentage': 651195, 'of coronacrisis': 581904, 'coronacrisis assume': 204517, 'assume lot': 97009, 'will shop': 994843, 'put smile': 690816, 'smile in': 775717, 'normal amazon': 567079, 'amazon you': 51214, 'can choose': 157902, 'choose charitable': 177883, 'charitable and': 173540, 'social organization': 779906, 'organization they': 619436, 'donate of': 254209, 'the annual': 848762, 'annual expense': 77394, 'expense it': 291198, 'huge percentage': 410125, 'percentage but': 651198, 'so easy': 776931, 'easy chose': 265673, 'time of coronacrisis': 897320, 'of coronacrisis assume': 581905, 'coronacrisis assume lot': 204518, 'assume lot of': 97010, 'of people will': 588026, 'people will shop': 650411, 'will shop online': 994845, 'shop online if': 760574, 'if you put': 415496, 'you put smile': 1020508, 'put smile in': 690817, 'smile in front': 775718, 'front of your': 338652, 'of your normal': 593503, 'your normal amazon': 1025027, 'normal amazon you': 567080, 'amazon you can': 51215, 'you can choose': 1017642, 'can choose charitable': 157903, 'choose charitable and': 177884, 'charitable and social': 173541, 'and social organization': 71892, 'social organization they': 779907, 'organization they will': 619437, 'they will donate': 883845, 'will donate of': 993242, 'donate of the': 254210, 'of the annual': 590793, 'the annual expense': 848763, 'annual expense it': 77395, 'expense it not': 291199, 'it not huge': 459885, 'not huge percentage': 570029, 'huge percentage but': 410126, 'percentage but it': 651199, 'but it so': 146165, 'it so easy': 461106, 'so easy chose': 776932, 'prople': 684410, 'nairobi': 551502, 'busia': 143163, 'somehing': 784302, 'noo': 566765, 'kot': 477560, 'utawezana': 951215, 'wait kenyan': 964150, 'kenyan can': 472959, 'can sit': 159632, 'sit on': 771831, 'on bus': 599728, 'bus 40': 142991, '40 prople': 18647, 'prople from': 684411, 'from nairobi': 336539, 'nairobi to': 551512, 'to busia': 902122, 'busia again': 143164, 'again 50': 36866, '50 kenyan': 19737, 'enter supermarket': 278295, 'once but': 605599, 'but kenyan': 146221, 'kenyan cannot': 472962, 'to worship': 918852, 'worship in': 1011124, 'in church': 421464, 'church there': 178412, 'is somehing': 452094, 'somehing somewhere': 784303, 'somewhere noo': 785305, 'noo kot': 566772, 'kot utawezana': 477563, 'wait kenyan can': 964151, 'kenyan can sit': 472961, 'can sit on': 159633, 'sit on bus': 771832, 'on bus 40': 599729, 'bus 40 prople': 142992, '40 prople from': 18648, 'prople from nairobi': 684412, 'from nairobi to': 336540, 'nairobi to busia': 551513, 'to busia again': 902123, 'busia again 50': 143165, 'again 50 kenyan': 36867, '50 kenyan can': 19738, 'kenyan can be': 472960, 'can be allowed': 157578, 'to enter supermarket': 905225, 'enter supermarket at': 278297, 'supermarket at once': 819246, 'at once but': 99955, 'once but kenyan': 605601, 'but kenyan cannot': 146222, 'kenyan cannot be': 472963, 'cannot be allowed': 161633, 'allowed to worship': 46256, 'to worship in': 918853, 'worship in church': 1011125, 'in church there': 421465, 'church there is': 178413, 'there is somehing': 878627, 'is somehing somewhere': 452095, 'somehing somewhere noo': 784304, 'somewhere noo kot': 785306, 'noo kot utawezana': 566773, 'culinary': 220219, 'alright': 47772, 'spain imagine': 787306, 'imagine having': 416726, 'having such': 384292, 'such poor': 816684, 'poor culinary': 664159, 'culinary reputation': 220224, 'reputation people': 713121, 'don even': 253482, 'frenzy brit': 332778, 'brit will': 140357, 'be alright': 113574, 'supermarket in spain': 820984, 'in spain imagine': 428174, 'spain imagine having': 787307, 'imagine having such': 416727, 'having such poor': 384294, 'such poor culinary': 816685, 'poor culinary reputation': 664160, 'culinary reputation people': 220225, 'reputation people don': 713122, 'people don even': 647699, 'don even buy': 253483, 'even buy your': 283923, 'buy your food': 149496, 'your food in': 1023918, 'food in panic': 314958, 'in panic buying': 426478, 'buying frenzy brit': 150377, 'frenzy brit will': 332779, 'brit will be': 140358, 'will be alright': 992354, 'diagnostic': 240260, 'detection': 239349, 'administration ha': 32472, 'ha approved': 369603, 'approved the': 83196, 'first rapid': 308901, 'rapid diagnostic': 696908, 'diagnostic test': 240265, 'test with': 839243, 'with detection': 998010, 'detection time': 239355, 'about 45': 24714, '45 minute': 19114, 'minute the': 533852, 'unitedstates struggle': 942297, 'for testing': 326232, 'and drug administration': 61776, 'drug administration ha': 260854, 'administration ha approved': 32473, 'ha approved the': 369606, 'approved the first': 83198, 'the first rapid': 855338, 'first rapid diagnostic': 308903, 'rapid diagnostic test': 696909, 'diagnostic test with': 240269, 'test with detection': 839244, 'with detection time': 998011, 'detection time of': 239356, 'time of about': 897309, 'of about 45': 579710, 'about 45 minute': 24715, '45 minute the': 19120, 'minute the unitedstates': 533857, 'the unitedstates struggle': 870423, 'unitedstates struggle to': 942298, 'struggle to meet': 814391, 'demand for testing': 235504, 'rock': 724888, 'is war': 453751, 'war just': 966479, 'just not': 469327, 'one you': 607537, 'think trump': 885723, 'trump slow': 933848, 'slow response': 774388, 'is deliberate': 447095, 'deliberate the': 232948, 'the idea': 857822, 'idea is': 413096, 'kill blue': 474359, 'blue state': 133471, 'state voter': 796064, 'voter and': 960571, 'buy real': 149118, 'estate at': 282099, 'at rock': 100424, 'rock bottom': 724893, 'bottom price': 136430, 'after people': 36030, 'people lose': 648709, 'home republican': 401973, 'republican leadership': 713047, 'leadership in': 483617, 'it is war': 459124, 'is war just': 453752, 'war just not': 966481, 'just not the': 469339, 'not the one': 572016, 'the one you': 862236, 'one you think': 607541, 'you think trump': 1021683, 'think trump slow': 885724, 'trump slow response': 933849, 'slow response is': 774389, 'response is deliberate': 715740, 'is deliberate the': 447096, 'deliberate the idea': 232949, 'the idea is': 857823, 'idea is to': 413098, 'is to kill': 453216, 'to kill blue': 908921, 'kill blue state': 474360, 'blue state voter': 133473, 'state voter and': 796065, 'voter and buy': 960572, 'and buy real': 59349, 'buy real estate': 149119, 'real estate at': 701136, 'estate at rock': 282101, 'at rock bottom': 100425, 'rock bottom price': 724897, 'bottom price after': 136431, 'price after people': 672234, 'after people lose': 36033, 'people lose their': 648710, 'lose their home': 503484, 'their home republican': 873572, 'home republican leadership': 401974, 'republican leadership in': 713048, 'leadership in the': 483618, 'fingertip': 307832, '19 how': 7597, 'yourself avoid': 1026541, 'touching surface': 926719, 'surface with': 828096, 'your fingertip': 1023885, 'covid 19 how': 213229, '19 how to': 7610, 'protect yourself avoid': 685084, 'yourself avoid touching': 1026542, 'avoid touching surface': 105355, 'touching surface with': 926723, 'surface with your': 828099, 'with your fingertip': 1002199, 'craft': 214755, 'video on': 956840, 'on youtube': 605522, 'youtube see': 1026915, 'link in': 493853, 'in profile': 427026, 'profile here': 682618, 'here craft': 392905, 'craft idea': 214773, 'idea for': 413044, 'do while': 250534, 'are during': 86028, 'new video on': 559830, 'video on youtube': 956852, 'on youtube see': 605528, 'youtube see link': 1026916, 'see link in': 745364, 'link in profile': 493858, 'in profile here': 427027, 'profile here craft': 682619, 'here craft idea': 392906, 'craft idea for': 214774, 'idea for you': 413055, 'to do while': 904590, 'do while you': 250536, 'while you are': 987585, 'you are during': 1017112, 'are during the': 86029, 'version': 954895, 'graphic': 362156, 'energyco': 276626, 'final version': 305889, 'version of': 954910, 'this graphic': 887746, 'graphic energyco': 362164, 'energyco told': 276627, 'told today': 923775, 'would implement': 1011940, 'implement moratorium': 418397, 'moratorium on': 538441, 'on shut': 603458, 'shut offs': 767909, 'offs and': 596079, 'the utility': 870599, 'utility including': 951290, 'including are': 431882, 'are ordered': 88836, 'final version of': 305890, 'version of this': 954921, 'of this graphic': 591979, 'this graphic energyco': 887747, 'graphic energyco told': 362165, 'energyco told today': 276628, 'told today that': 923776, 'it would implement': 462596, 'would implement moratorium': 1011941, 'implement moratorium on': 418398, 'moratorium on shut': 538451, 'on shut offs': 603459, 'shut offs and': 767910, 'offs and now': 596080, 'and now all': 67820, 'now all of': 573962, 'of the utility': 591581, 'the utility including': 870600, 'utility including are': 951291, 'including are ordered': 431883, 'are ordered to': 88837, 'nessel': 557503, '572': 20499, 'nessel office': 557508, 'office field': 595417, 'field 572': 304446, '572 consumer': 20502, 'complaint on': 192004, 'gouging scam': 359446, 'scam via': 740452, 'nessel office field': 557509, 'office field 572': 595418, 'field 572 consumer': 304447, '572 consumer complaint': 20503, 'consumer complaint on': 196856, 'complaint on covid': 192005, '19 price gouging': 9811, 'price gouging scam': 674321, 'gouging scam via': 359448, 'pharmacy store': 654484, 'you wear': 1022210, 'wear please': 974442, 'when you go': 984564, 'you go out': 1018861, 'the grocery and': 856801, 'grocery and pharmacy': 364252, 'and pharmacy store': 68980, 'pharmacy store you': 654486, 'store you wear': 811699, 'you wear please': 1022216, 'wear please rt': 974443, 'idris': 413709, 'barbershop': 110815, 'secondary': 743880, 'idris if': 413710, 'also safeguard': 48812, 'safeguard their': 730217, 'their consumer': 872848, 'consumer barbershop': 196395, 'barbershop are': 110816, 'are their': 90938, 'worker certified': 1006626, 'certified free': 170234, 'free from': 331857, 'economic benefit': 266993, 'benefit secondary': 127076, 'idris if they': 413711, 'are in consumer': 87366, 'consumer service they': 198951, 'service they must': 752947, 'they must also': 882699, 'must also safeguard': 546475, 'also safeguard their': 48813, 'safeguard their consumer': 730218, 'their consumer barbershop': 872851, 'consumer barbershop are': 196396, 'barbershop are their': 110817, 'are their worker': 90944, 'their worker certified': 875212, 'worker certified free': 1006627, 'certified free from': 170235, 'free from covid': 331859, '19 economic benefit': 6699, 'economic benefit secondary': 266994, 'together so': 920936, 'set wholesale': 753589, 'our coffee': 622421, 'coffee on': 185520, 'home staysafe': 402139, 're all in': 698224, 'this together so': 890782, 'together so we': 920938, 'so we have': 778670, 'we have set': 971937, 'have set wholesale': 382492, 'set wholesale price': 753590, 'wholesale price for': 990471, 'price for all': 673922, 'for all our': 319157, 'all our coffee': 43799, 'our coffee on': 622422, 'coffee on our': 185521, 'our website for': 625338, 'website for you': 975280, 'at home staysafe': 99121, 'biden': 129531, 'biden 2020': 129532, '2020 more': 14454, 'like bidet': 489906, 'bidet 2020': 129546, '2020 toiletpaper': 14667, 'biden 2020 more': 129533, '2020 more like': 14456, 'more like bidet': 539688, 'like bidet 2020': 489907, 'bidet 2020 toiletpaper': 129547, 'the la': 858872, 'vega grocery': 953812, 'those 60': 891768, '60 and': 20897, 'and over': 68553, 'in before': 420755, 'before they': 123209, 'they check': 881750, 'check their': 174661, 'their id': 873616, 'line at the': 492992, 'at the la': 100994, 'the la vega': 858879, 'la vega grocery': 478230, 'vega grocery store': 953813, 'grocery store one': 365613, 'store one for': 809222, 'one for those': 606309, 'for those 60': 327097, 'those 60 and': 891769, '60 and over': 20905, 'and over the': 68563, 'over the other': 630746, 'the other for': 862528, 'other for everyone': 620256, 'for everyone who': 321252, 'everyone who cannot': 287583, 'cannot get in': 161891, 'get in before': 347290, 'in before they': 420757, 'before they check': 123213, 'they check their': 881751, 'check their id': 174662, 'sap': 736673, 'producer on': 680675, 'sunday agreed': 818159, 'their largest': 873785, 'largest ever': 479948, 'ever cut': 285265, 'production in': 682071, 'an effort': 55622, 'support crashing': 826448, 'pandemic continues': 635207, 'to sap': 913760, 'sap global': 736678, 'top oil producer': 925651, 'oil producer on': 597341, 'producer on sunday': 680676, 'on sunday agreed': 603750, 'sunday agreed to': 818160, 'agreed to their': 38750, 'to their largest': 917247, 'their largest ever': 873787, 'largest ever cut': 479949, 'ever cut in': 285266, 'cut in production': 223384, 'in production in': 427023, 'production in an': 682072, 'in an effort': 420292, 'an effort to': 55623, 'effort to support': 269651, 'to support crashing': 915920, 'support crashing price': 826449, 'crashing price the': 215126, 'price the coronavirus': 676827, 'the coronavirus pandemic': 851889, 'coronavirus pandemic continues': 206449, 'pandemic continues to': 635215, 'continues to sap': 201493, 'to sap global': 913761, 'sap global demand': 736679, 'global demand of': 351869, 'demand of fuel': 235948, 'sand': 733658, 'arrives': 93984, 'to europe': 905274, 'europe you': 283531, 'have your': 383707, 'head in': 385750, 'the sand': 866335, 'sand the': 733666, 'the fire': 855258, 'fire is': 308098, 'still small': 801201, 'small so': 775128, 'can ignore': 158713, 'ignore it': 415827, 'it covid': 457383, '19 arrives': 5220, 'arrives in': 93993, 'usa you': 948798, 'you there': 1021628, 'are only': 88757, '15 case': 3679, 'case it': 165833, 'over soon': 630634, 'you worry': 1022443, 'plunging stock': 661546, 'your re': 1025520, 're election': 698593, '19 spread to': 10755, 'spread to europe': 790855, 'to europe you': 905277, 'europe you still': 283532, 'you still have': 1021403, 'still have your': 800668, 'have your head': 383712, 'your head in': 1024262, 'head in the': 385753, 'in the sand': 429526, 'the sand the': 866336, 'sand the fire': 733667, 'the fire is': 855259, 'fire is still': 308099, 'is still small': 452310, 'still small so': 801202, 'small so you': 775129, 'you can ignore': 1017699, 'can ignore it': 158714, 'ignore it covid': 415828, 'it covid 19': 457384, 'covid 19 arrives': 212653, '19 arrives in': 5221, 'arrives in the': 93994, 'in the usa': 429640, 'the usa you': 870557, 'usa you there': 948799, 'you there are': 1021629, 'there are only': 878137, 'are only 15': 88759, 'only 15 case': 609980, '15 case it': 3680, 'case it ll': 165837, 'it ll be': 459417, 'll be over': 496607, 'be over soon': 116304, 'over soon you': 630637, 'soon you worry': 785915, 'you worry about': 1022444, 'worry about what': 1010660, 'about what the': 26899, 'what the plunging': 982351, 'the plunging stock': 863867, 'plunging stock price': 661547, 'stock price will': 802762, 'price will do': 677560, 'do to your': 250410, 'to your re': 919018, 'your re election': 1025522, 'every 20': 285646, '20 donation': 13041, 'donation will': 254733, 'will receive': 994588, 'receive free': 703478, 'free roll': 332117, 'paper shipping': 640756, 'shipping cost': 758838, 'cost extra': 207932, 'extra offer': 293589, 'offer only': 594728, 'only available': 610130, 'available long': 104482, 'long toilet': 501794, 'stock shipping': 802843, 'take longer': 832285, 'usual cuz': 950910, 'cuz corona': 223796, 'corona twitch': 204262, 'twitch corona': 936611, 'corona toiletpaper': 204245, 'toiletpaper coronavid19': 921894, 'every 20 donation': 285647, '20 donation will': 13042, 'donation will receive': 254735, 'will receive free': 994592, 'receive free roll': 703482, 'free roll of': 332118, 'toilet paper shipping': 921448, 'paper shipping cost': 640757, 'shipping cost extra': 758839, 'cost extra offer': 207933, 'extra offer only': 293590, 'offer only available': 594729, 'only available long': 610134, 'available long toilet': 104483, 'long toilet paper': 501795, 'paper is in': 640351, 'is in stock': 448818, 'in stock shipping': 428327, 'stock shipping may': 802844, 'shipping may take': 758871, 'may take longer': 521559, 'take longer than': 832288, 'longer than usual': 502078, 'than usual cuz': 841391, 'usual cuz corona': 950911, 'cuz corona twitch': 223797, 'corona twitch corona': 204263, 'twitch corona toiletpaper': 936612, 'corona toiletpaper coronavid19': 204248, 'intentionally': 441161, 'are company': 85452, 'that manufacture': 845015, 'manufacture cleaning': 513365, 'supply wipe': 826117, 'sanitizers intentionally': 736324, 'intentionally limiting': 441170, 'limiting availability': 492802, 'availability in': 104147, 'are company that': 85454, 'company that manufacture': 191179, 'that manufacture cleaning': 845016, 'manufacture cleaning supply': 513366, 'cleaning supply wipe': 181090, 'supply wipe and': 826118, 'wipe and hand': 996188, 'hand sanitizers intentionally': 375702, 'sanitizers intentionally limiting': 736325, 'intentionally limiting availability': 441171, 'limiting availability in': 492803, 'availability in order': 104149, 'order to increase': 618687, 'to increase price': 908293, 'aolonline': 81179, 'shenanigan': 758056, 'awesome': 106148, 'will trade': 995219, 'trade for': 928495, 'toiletpaper aolonline': 921743, 'aolonline 90': 81180, '90 shenanigan': 23339, 'shenanigan easter': 758057, 'easter awesome': 265382, 'will trade for': 995220, 'trade for toiletpaper': 928497, 'for toiletpaper aolonline': 327253, 'toiletpaper aolonline 90': 921744, 'aolonline 90 shenanigan': 81181, '90 shenanigan easter': 23340, 'shenanigan easter awesome': 758058, 'taxpayer': 835192, '2018': 13866, 'frightening': 334052, 'louder': 504494, 'oilpatch': 597599, 'canada largest': 160483, 'largest oil': 479987, 'company want': 191280, 'want taxpayer': 965949, 'taxpayer bailouts': 835196, 'bailouts like': 108698, 'like suncor': 491258, 'suncor whose': 818141, 'whose ceo': 990625, 'ceo took': 169868, 'took home': 925256, 'home more': 401622, 'than 11': 840168, '11 million': 2556, 'in compensation': 421628, 'compensation in': 191566, 'in 2018': 419782, '2018 cdnpoli': 13876, 'cdnpoli very': 168673, 'very very': 955641, 'very frightening': 955177, 'frightening call': 334055, 'for government': 321957, 'government bailout': 359918, 'bailout grow': 108635, 'grow louder': 367038, 'louder oilpatch': 504497, 'oilpatch face': 597600, 'face bleak': 294335, 'bleak outlook': 132551, 'canada largest oil': 160485, 'largest oil company': 479988, 'oil company want': 596697, 'company want taxpayer': 191281, 'want taxpayer bailouts': 965950, 'taxpayer bailouts like': 835197, 'bailouts like suncor': 108699, 'like suncor whose': 491259, 'suncor whose ceo': 818142, 'whose ceo took': 990626, 'ceo took home': 169869, 'took home more': 925257, 'home more than': 401627, 'more than 11': 540544, 'than 11 million': 840170, '11 million in': 2558, 'million in compensation': 532186, 'in compensation in': 421629, 'compensation in 2018': 191567, 'in 2018 cdnpoli': 419784, '2018 cdnpoli very': 13877, 'cdnpoli very very': 168674, 'very very frightening': 955645, 'very frightening call': 955178, 'frightening call for': 334056, 'call for government': 155870, 'for government bailout': 321959, 'government bailout grow': 359920, 'bailout grow louder': 108636, 'grow louder oilpatch': 367039, 'louder oilpatch face': 504498, 'oilpatch face bleak': 597601, 'face bleak outlook': 294336, 'thank all': 841529, 'employee for': 273857, 'for staying': 325885, 'staying strong': 798712, 'strong during': 814018, 'time many': 897187, 'of underestimate': 592611, 'underestimate and': 940424, 'and underestimate': 74625, 'the sacrifice': 866112, 'sacrifice these': 729110, 'these individual': 880167, 'individual make': 435219, 'like to take': 491627, 'to take moment': 916203, 'moment to thank': 536094, 'to thank all': 916417, 'thank all grocery': 841531, 'store employee for': 807492, 'employee for staying': 273869, 'for staying strong': 325893, 'staying strong during': 798714, 'strong during these': 814019, 'uncertain time many': 939621, 'time many of': 897189, 'many of underestimate': 514398, 'of underestimate and': 592612, 'underestimate and underestimate': 940425, 'and underestimate the': 74626, 'underestimate the sacrifice': 940429, 'the sacrifice these': 866116, 'sacrifice these individual': 729111, 'these individual make': 880169, 'debasish': 230303, 'cardmembers': 163771, 'flexibility': 310360, 'opt': 613857, 'rbi': 698075, 'regulatory': 708157, '1800': 4624, '419': 18888, '2122': 15060, 'hi debasish': 394620, 'debasish we': 230304, 'offering our': 595206, 'consumer cardmembers': 196737, 'cardmembers the': 163772, 'the flexibility': 855400, 'flexibility to': 310378, 'to opt': 911033, 'opt for': 613858, 'for moratorium': 323549, 'moratorium per': 538452, 'per rbi': 650998, 'rbi guideline': 698088, 'guideline on': 368452, '19 regulatory': 10038, 'regulatory package': 708182, 'package please': 633374, 'please call': 659744, 'call at': 155775, 'at 1800': 97489, '1800 419': 4625, '419 2122': 18889, '2122 and': 15061, 'team will': 835829, 'be happy': 115140, 'assist you': 96656, 'you with': 1022375, 'hi debasish we': 394621, 'debasish we are': 230305, 'are offering our': 88673, 'offering our consumer': 595207, 'our consumer cardmembers': 622528, 'consumer cardmembers the': 196738, 'cardmembers the flexibility': 163773, 'the flexibility to': 855402, 'flexibility to opt': 310379, 'to opt for': 911034, 'opt for moratorium': 613859, 'for moratorium per': 323550, 'moratorium per rbi': 538453, 'per rbi guideline': 650999, 'rbi guideline on': 698089, 'guideline on the': 368456, 'covid 19 regulatory': 213680, '19 regulatory package': 10039, 'regulatory package please': 708183, 'package please call': 633375, 'please call at': 659752, 'call at 1800': 155777, 'at 1800 419': 97490, '1800 419 2122': 4626, '419 2122 and': 18890, '2122 and our': 15062, 'and our team': 68523, 'our team will': 625110, 'team will be': 835830, 'will be happy': 992487, 'be happy to': 115143, 'happy to assist': 377706, 'to assist you': 900787, 'assist you with': 96657, 'you with your': 1022391, 've found': 953138, 'found uk': 330455, 'uk brilliant': 938217, 'brilliant in': 139863, 'supply so': 825864, 'anyone is': 80386, 'your place': 1025320, 'place great': 657471, 'price quick': 676048, 'quick delivery': 694303, 'we ve found': 973667, 've found uk': 953145, 'found uk brilliant': 330456, 'uk brilliant in': 938218, 'brilliant in buying': 139864, 'in buying supply': 421109, 'buying supply so': 151128, 'supply so if': 825866, 'so if anyone': 777350, 'if anyone is': 413847, 'anyone is in': 80389, 'is in need': 448789, 'need of anything': 555319, 'anything that your': 80900, 'that your place': 847772, 'your place great': 1025321, 'place great price': 657472, 'great price quick': 362916, 'price quick delivery': 676049, 'claimed': 179875, 'stroke': 813938, 'man recently': 512199, 'recently died': 704071, 'died he': 241563, 'wa friend': 962172, 'manager at': 512682, 'they didn': 881925, 'didn even': 241046, 'even test': 284637, 'test him': 839021, 'him for': 396603, 'and claimed': 59911, 'claimed he': 179880, 'he died': 384887, 'his daughter': 397345, 'daughter said': 226902, 'said he': 731103, 'had underlying': 373777, 'underlying disease': 940477, 'disease he': 245152, 'of stroke': 590307, 'stroke what': 813945, 'on here': 601285, '70 year old': 21866, 'old man recently': 598349, 'man recently died': 512200, 'recently died he': 704072, 'died he wa': 241565, 'he wa friend': 385599, 'wa friend with': 962173, 'friend with the': 333919, 'with the manager': 1001381, 'the manager at': 859994, 'manager at my': 512687, 'my supermarket they': 550282, 'supermarket they didn': 823288, 'they didn even': 881928, 'didn even test': 241049, 'even test him': 284638, 'test him for': 839022, 'him for coronavirus': 396604, 'for coronavirus and': 320374, 'coronavirus and claimed': 205484, 'and claimed he': 59912, 'claimed he died': 179882, 'he died of': 384890, '19 his daughter': 7539, 'his daughter said': 397346, 'daughter said he': 226903, 'said he had': 731109, 'he had underlying': 385062, 'had underlying disease': 373778, 'underlying disease he': 940478, 'disease he died': 245153, 'died of stroke': 241594, 'of stroke what': 590308, 'stroke what is': 813946, 'what is going': 981693, 'going on here': 355320, 'demise': 236653, 'please see': 660447, 'post on': 666247, 'crisis in': 217524, 'in iraq': 424149, 'iraq caused': 444757, 'by corrupt': 152238, 'east corruption': 265304, 'virus collapse': 958065, 'collapse will': 186074, 'the iraqi': 858448, 'iraqi people': 444796, 'people see': 649366, 'the demise': 853119, 'demise of': 236656, 'the green': 856774, 'green survive': 363701, 'survive zone': 829310, 'zone elite': 1027755, 'please see my': 660455, 'see my new': 745458, 'my new post': 549470, 'new post on': 559326, 'post on the': 666261, 'on the crisis': 604050, 'the crisis in': 852393, 'crisis in iraq': 217532, 'in iraq caused': 424151, 'iraq caused by': 444758, 'caused by corrupt': 167834, 'by corrupt governance': 152239, 'global oil price': 352051, 'oil price in': 597166, 'in the new': 429392, 'middle east corruption': 530647, 'east corruption corona': 265305, 'corona virus collapse': 204295, 'virus collapse will': 958066, 'collapse will the': 186075, 'will the iraqi': 995144, 'the iraqi people': 858450, 'iraqi people see': 444797, 'people see the': 649370, 'see the demise': 745825, 'the demise of': 853120, 'demise of the': 236658, 'of the green': 591079, 'the green survive': 856779, 'green survive zone': 363702, 'survive zone elite': 829311, 'boujee': 136787, 'nothing bad': 572942, 'and boujee': 59117, 'boujee about': 136788, 'nothing bad and': 572943, 'bad and boujee': 107759, 'and boujee about': 59118, 'boujee about this': 136789, 'rainbow': 695764, 'colored': 186831, 'immunesystem': 417382, 'immunesupport': 417376, 'store buy': 806821, 'buy rainbow': 149114, 'rainbow colored': 695766, 'colored food': 186832, 'food boost': 313762, 'boost your': 135034, 'your immunesystem': 1024455, 'immunesystem food': 417383, 'is medicine': 449617, 'medicine immunesupport': 526811, 'immunesupport fight': 417377, 'time you go': 898405, 'grocery store buy': 365261, 'store buy rainbow': 806823, 'buy rainbow colored': 149115, 'rainbow colored food': 695767, 'colored food boost': 186833, 'food boost your': 313764, 'boost your immunesystem': 135036, 'your immunesystem food': 1024456, 'immunesystem food is': 417384, 'food is medicine': 315136, 'is medicine immunesupport': 449618, 'medicine immunesupport fight': 526812, 'dorset man': 255906, 'with wiping': 1002106, 'wiping spit': 996527, 'dorset man charged': 255908, 'charged with wiping': 173434, 'with wiping spit': 1002107, 'wiping spit on': 996528, 'supermarket good during': 820544, 'good during crisis': 356987, 'knit': 476120, 'fortnight': 329832, 'our street': 624968, 'street ha': 812986, 'become such': 120146, 'such closer': 816402, 'closer knit': 183503, 'knit community': 476121, 'community since': 190096, 'have whatsapp': 383582, 'whatsapp group': 982890, 'group facebook': 366684, 'facebook group': 294929, 'group plan': 366841, 'not online': 570769, 'online well': 609707, 'well safely': 978531, 'safely shopping': 730317, 'and sharing': 71398, 'sharing ve': 755622, 've learned': 953325, 'learned more': 484128, 'my neighbour': 549439, 'last fortnight': 480238, 'fortnight than': 329843, 'last year': 480716, 'our street ha': 624969, 'street ha become': 812988, 'ha become such': 369699, 'become such closer': 120147, 'such closer knit': 816403, 'closer knit community': 183504, 'knit community since': 476123, 'community since we': 190098, 'since we now': 770981, 'now have whatsapp': 574887, 'have whatsapp group': 383583, 'whatsapp group facebook': 982892, 'group facebook group': 366685, 'facebook group plan': 294933, 'group plan to': 366842, 'plan to help': 658295, 'help people not': 390301, 'people not online': 648871, 'not online well': 570772, 'online well safely': 609708, 'well safely shopping': 978532, 'safely shopping and': 730318, 'shopping and sharing': 762020, 'and sharing ve': 71403, 'sharing ve learned': 755623, 've learned more': 953328, 'learned more about': 484129, 'more about my': 538515, 'about my neighbour': 25766, 'my neighbour in': 549441, 'neighbour in the': 557220, 'the last fortnight': 859011, 'last fortnight than': 480239, 'fortnight than in': 329844, 'the last year': 859057, 'favor': 300456, 'store rocking': 809904, 'rocking my': 724977, 'new from': 558777, 'from if': 336003, 'safe let': 729800, 'in we': 430727, 'we donate': 971398, 'donate one': 254212, 'to child': 902716, 'child in': 176112, 'each one': 264145, 'one we': 607388, 'sell do': 748686, 'do yourself': 250717, 'the favor': 854986, 'favor and': 300457, 'get one': 347700, 'grocery store rocking': 365730, 'store rocking my': 809905, 'rocking my new': 724978, 'my new from': 549459, 'new from if': 558779, 'from if we': 336004, 'to be safe': 901517, 'be safe let': 116963, 'safe let do': 729801, 'let do it': 486678, 'do it in': 249484, 'it in we': 458754, 'in we donate': 430730, 'we donate one': 971399, 'donate one to': 254213, 'one to child': 607271, 'to child in': 902717, 'child in need': 176116, 'in need for': 425744, 'need for each': 554835, 'for each one': 320905, 'each one we': 264148, 'one we sell': 607394, 'we sell do': 973195, 'sell do yourself': 748687, 'do yourself and': 250718, 'yourself and the': 1026528, 'and the favor': 73370, 'the favor and': 854987, 'favor and get': 300458, 'and get one': 63591, 'romantic': 725740, 'newly': 560099, 'mark': 515764, 'gentleman': 345834, 'quarantinedromance': 692920, 'about wine': 26937, 'wine chocolate': 995795, 'chocolate and': 177655, 'and rose': 70598, 'rose the': 726093, 'most romantic': 542718, 'romantic thing': 725741, 'thing my': 884601, 'ha done': 370412, 'done in': 254888, '2020 wake': 14698, '30am to': 17433, 'purchase newly': 689563, 'newly stocked': 560118, 'stocked toilet': 803428, 'the mark': 860077, 'mark of': 515809, 'of true': 592468, 'true gentleman': 933088, 'gentleman quarantinedromance': 345844, 'forget about wine': 329227, 'about wine chocolate': 26938, 'wine chocolate and': 995796, 'chocolate and rose': 177657, 'and rose the': 70599, 'rose the most': 726094, 'the most romantic': 861031, 'most romantic thing': 542719, 'romantic thing my': 725742, 'thing my husband': 884603, 'my husband ha': 548779, 'husband ha done': 411705, 'ha done in': 370416, 'done in 2020': 254889, 'in 2020 wake': 419862, '2020 wake up': 14699, 'wake up at': 964617, 'up at 30am': 944422, 'at 30am to': 97609, '30am to be': 17434, 'of the first': 591030, 'first to purchase': 309129, 'to purchase newly': 912544, 'purchase newly stocked': 689564, 'newly stocked toilet': 560119, 'stocked toilet tissue': 803430, 'store that the': 810577, 'that the mark': 846770, 'the mark of': 860079, 'mark of true': 515811, 'of true gentleman': 592469, 'true gentleman quarantinedromance': 933089, 'senior grandparent': 750306, 'grandparent the': 361991, 'the republican': 865546, 'republican party': 713055, 'party and': 642969, 'and call': 59411, 'call upon': 156208, 'upon you': 947669, 'you join': 1019407, 'the die': 853247, 'die for': 241333, 'the dow': 853619, 'dow movement': 256331, 'movement go': 543873, 'work raise': 1005639, 'raise our': 695893, 'our stock': 624913, 'price help': 674494, 'make america': 509667, 'america young': 51757, 'young again': 1022558, 'senior grandparent the': 750307, 'grandparent the republican': 361992, 'the republican party': 865548, 'republican party and': 713056, 'party and call': 642971, 'and call upon': 59421, 'call upon you': 156211, 'upon you join': 947670, 'you join the': 1019409, 'join the die': 466855, 'the die for': 853248, 'die for the': 241335, 'for the dow': 326394, 'the dow movement': 853621, 'dow movement go': 256332, 'movement go to': 543874, 'to work raise': 918771, 'work raise our': 1005640, 'raise our stock': 695897, 'our stock price': 624921, 'stock price help': 802722, 'price help make': 674497, 'help make america': 390031, 'make america young': 509668, 'america young again': 51758, 'leveraged': 487797, 'heartbreak': 388367, 'must protect': 546816, 'keeping safe': 472540, 'fed in': 301835, 'full power': 340819, 'federal government': 301987, 'be leveraged': 115714, 'leveraged to': 487801, 'ppe worker': 668115, 'worker need': 1007417, 'need business': 554569, 'business must': 144071, 'must step': 546909, 'employee this': 274312, 'this mother': 889047, 'mother heartbreak': 543111, 'heartbreak show': 388368, 'show why': 767281, 'we must protect': 972436, 'must protect the': 546817, 'protect the worker': 684987, 'the worker who': 871771, 'worker who are': 1008194, 'who are keeping': 988167, 'are keeping safe': 87662, 'keeping safe and': 472541, 'safe and fed': 729445, 'and fed in': 62752, 'fed in the': 301837, 'crisis the full': 218175, 'the full power': 856018, 'full power of': 340820, 'power of the': 667652, 'of the federal': 591017, 'the federal government': 855074, 'federal government must': 301999, 'must be leveraged': 546520, 'be leveraged to': 115715, 'leveraged to get': 487802, 'get the ppe': 348283, 'the ppe worker': 864171, 'ppe worker need': 668116, 'worker need business': 1007420, 'need business must': 554571, 'business must step': 144077, 'must step up': 546910, 'up to protect': 946418, 'protect their employee': 684993, 'their employee this': 873157, 'employee this mother': 274313, 'this mother heartbreak': 889049, 'mother heartbreak show': 543112, 'heartbreak show why': 388369, 'firework': 308274, 'lawn': 482501, 'legend': 485925, 'be lighting': 115722, 'lighting some': 489652, 'some firework': 782830, 'firework on': 308279, 'my front': 548460, 'front lawn': 338550, 'lawn to': 482508, 'honor our': 403250, 'nurse first': 577328, 'responder pharmacist': 715507, 'pharmacist walmart': 654190, 'walmart grocery': 965333, 'and everyone': 62395, 'else that': 271904, 'been helping': 121274, 'helping everyone': 391324, 'everyone during': 286834, 'these crazy': 879822, 'crazy day': 215279, 'day you': 228814, 'all legend': 43363, 'legend thank': 485936, 'coronacrisis respect': 204728, 'respect love': 715024, 'll be lighting': 496597, 'be lighting some': 115723, 'lighting some firework': 489653, 'some firework on': 782832, 'firework on my': 308280, 'on my front': 602286, 'my front lawn': 548461, 'front lawn to': 338552, 'lawn to honor': 482509, 'to honor our': 907952, 'honor our doctor': 403251, 'our doctor nurse': 622790, 'doctor nurse first': 251013, 'nurse first responder': 577329, 'first responder pharmacist': 308958, 'responder pharmacist walmart': 715508, 'pharmacist walmart grocery': 654191, 'walmart grocery store': 965339, 'employee and everyone': 273563, 'and everyone else': 62397, 'everyone else that': 286881, 'else that have': 271905, 'have been helping': 379570, 'been helping everyone': 121276, 'helping everyone during': 391325, 'everyone during these': 286836, 'during these crazy': 263232, 'these crazy day': 879824, 'crazy day you': 215280, 'day you are': 228816, 'you are all': 1017050, 'are all legend': 84322, 'all legend thank': 43364, 'legend thank you': 485937, 'thank you coronacrisis': 841713, 'you coronacrisis respect': 1018058, 'coronacrisis respect love': 204729, 'mapleholistics': 514958, 'sanitizer really': 735638, 'really needed': 702448, 'needed some': 556493, 'some so': 783900, 'for adding': 319010, 'adding this': 31705, 'your line': 1024659, 'line handsanitizer': 493151, 'handsanitizer mapleholistics': 376579, 'you for the': 1018677, 'for the hand': 326469, 'hand sanitizer really': 375560, 'sanitizer really needed': 735639, 'really needed some': 702450, 'needed some so': 556494, 'some so thank': 783902, 'you for adding': 1018622, 'for adding this': 319012, 'adding this product': 31706, 'this product to': 889732, 'product to your': 681769, 'to your line': 918997, 'your line handsanitizer': 1024660, 'line handsanitizer mapleholistics': 493152, 'guildford': 368532, 'eve': 283777, 'spare thought': 787504, 'thought for': 893042, 'our amazing': 622056, 'amazing doctor': 50672, 'nurse but': 577223, 'also for': 48224, 'the like': 859364, 'like of': 490900, 'worker just': 1007272, 'been in': 121331, 'in guildford': 423472, 'guildford and': 368533, 'christmas eve': 178170, 'eve the': 283787, 'new delivery': 558621, 'of loo': 586003, 'roll almost': 725166, 'almost gone': 46652, 'gone and': 356205, 'queue but': 693898, 'but staff': 147140, 'staff just': 792595, 'just getting': 468806, 'getting on': 349156, 'spare thought for': 787505, 'thought for our': 893045, 'for our amazing': 324211, 'our amazing doctor': 622058, 'amazing doctor and': 50673, 'and nurse but': 67886, 'nurse but also': 577224, 'but also for': 145114, 'also for the': 48231, 'for the like': 326533, 'the like of': 859369, 'like of supermarket': 490906, 'of supermarket worker': 590460, 'supermarket worker just': 824042, 'worker just been': 1007273, 'just been in': 468302, 'been in guildford': 121348, 'in guildford and': 423473, 'guildford and it': 368534, 'it wa like': 462140, 'wa like christmas': 962541, 'like christmas eve': 490004, 'christmas eve the': 178172, 'eve the new': 283788, 'the new delivery': 861493, 'new delivery of': 558622, 'delivery of loo': 234228, 'of loo roll': 586005, 'loo roll almost': 502167, 'roll almost gone': 725167, 'almost gone and': 46653, 'gone and long': 356207, 'and long queue': 66352, 'long queue but': 501578, 'queue but staff': 693900, 'but staff just': 147142, 'staff just getting': 792596, 'just getting on': 468807, 'getting on with': 349159, 'on with their': 605349, 'with their job': 1001578, 'yes many': 1015481, 'to but': 902145, 'forget too': 329345, 'too supermarket': 925094, 'supermarket amp': 818907, 'amp other': 54236, 'other staff': 620952, 'time all': 896222, 'all playing': 43973, 'playing their': 659455, 'their part': 874248, 'yes many thanks': 1015483, 'thanks to but': 842211, 'to but let': 902154, 'not forget too': 569519, 'forget too supermarket': 329346, 'too supermarket amp': 925095, 'supermarket amp other': 818912, 'amp other staff': 54246, 'other staff at': 620953, 'staff at this': 792241, 'at this difficult': 101232, 'difficult time all': 242275, 'time all playing': 896228, 'all playing their': 43975, 'playing their part': 659456, 'sparking': 787596, 'chain tackle': 171149, 'tackle panicbuying': 831595, 'panicbuying surge': 639071, 'surge concern': 828143, 'concern sparking': 193096, 'sparking panic': 787602, 'buying have': 150468, 'have forced': 380687, 'forced manufacturer': 328581, 'manufacturer distributor': 513450, 'distributor and': 248268, 'and retailer': 70451, 'retailer into': 719217, 'into special': 443005, 'special measure': 787989, 'the spending': 867567, 'spending surge': 788992, 'surge procurement': 828248, 'food chain tackle': 313917, 'chain tackle panicbuying': 171150, 'tackle panicbuying surge': 831596, 'panicbuying surge concern': 639072, 'surge concern sparking': 828144, 'concern sparking panic': 193097, 'sparking panic buying': 787603, 'panic buying have': 637757, 'buying have forced': 150471, 'have forced manufacturer': 380689, 'forced manufacturer distributor': 328582, 'manufacturer distributor and': 513451, 'distributor and retailer': 248272, 'and retailer into': 70461, 'retailer into special': 719218, 'into special measure': 443006, 'special measure to': 787990, 'measure to manage': 525398, 'manage the spending': 512445, 'the spending surge': 867568, 'spending surge procurement': 788993, '4588221st': 19189, 'the 4588221st': 848121, '4588221st try': 19190, 'try is': 934497, 'is success': 452419, 'success ok': 816212, 'ok now': 597844, 'the 4588221st try': 848122, '4588221st try is': 19191, 'try is success': 934498, 'is success ok': 452420, 'success ok now': 816213, 'ok now what': 597847, 'incredibly': 433886, 'unfortunately this': 941656, 'this doesn': 887272, 'doesn surprise': 251957, 'from payer': 336867, 'payer executive': 645351, 'executive that': 289943, 'keeping low': 472472, 'low profile': 505555, 'profile hoping': 682620, 'hoping that': 403938, 'that everything': 843777, 'everything will': 288108, 'is incredibly': 448880, 'incredibly stupid': 433929, 'wa non': 962742, 'profit blue': 682679, 'unfortunately this doesn': 941657, 'this doesn surprise': 887275, 'doesn surprise me': 251958, 'heard from payer': 388084, 'from payer executive': 336868, 'payer executive that': 645352, 'executive that they': 289944, 'are keeping low': 87659, 'keeping low profile': 472473, 'low profile hoping': 505556, 'profile hoping that': 682621, 'hoping that everything': 403940, 'that everything will': 843780, 'everything will stop': 288112, 'will stop this': 995004, 'stop this is': 805191, 'this is incredibly': 888292, 'is incredibly stupid': 448882, 'incredibly stupid and': 433930, 'stupid and it': 815338, 'it wa non': 462157, 'wa non profit': 962743, 'non profit blue': 566470, 'profit blue plan': 682680, 'tpchallenge': 928049, 'also thin': 48999, 'thin paper': 884062, 'towel cloth': 927312, 'cloth can': 184080, 'use bidet': 949073, 'bidet or': 129571, 'the india': 858114, 'india way': 434682, 'way is': 969664, 'also safe': 48810, 'safe solution': 729953, 'solution bidet': 782001, 'bidet toiletpaper': 129579, 'toiletpaperpanic tpchallenge': 923300, 'tpchallenge 19': 928050, 'paper but also': 639965, 'but also thin': 145150, 'also thin paper': 49000, 'thin paper towel': 884063, 'paper towel cloth': 640987, 'towel cloth can': 927313, 'cloth can use': 184081, 'can use bidet': 160088, 'use bidet or': 949074, 'bidet or the': 129573, 'or the india': 617378, 'the india way': 858115, 'india way is': 434683, 'way is also': 969666, 'is also safe': 445577, 'also safe solution': 48811, 'safe solution bidet': 729954, 'solution bidet toiletpaper': 782002, 'bidet toiletpaper toiletpaperapocalypse': 129580, 'toiletpaper toiletpaperapocalypse toiletpaperpanic': 922639, 'toiletpaperapocalypse toiletpaperpanic tpchallenge': 922952, 'toiletpaperpanic tpchallenge 19': 923301, '19 for': 7060, 'this too': 890803, 'too shall': 925052, 'shall pas': 754542, '19 for this': 7079, 'for this too': 327079, 'this too shall': 890806, 'too shall pas': 925054, 'stabilise': 791785, 'fishery': 309383, 'to stabilise': 915111, 'stabilise vegetable': 791794, 'price supply': 676705, 'supply ministry': 825565, 'agriculture and': 38931, 'and fishery': 62939, 'fishery municipality': 309388, 'step to stabilise': 799667, 'to stabilise vegetable': 915114, 'stabilise vegetable price': 791795, 'vegetable price supply': 954075, 'price supply ministry': 676708, 'supply ministry of': 825566, 'ministry of agriculture': 533539, 'of agriculture and': 579843, 'agriculture and fishery': 38933, 'and fishery municipality': 62940, 'recession2020': 704421, 'can america': 157485, 'america afford': 51440, 'afford another': 34672, 'another two': 77923, 'two trillion': 937286, 'package if': 633298, 'if another': 413820, 'another pandemic': 77751, 'pandemic hit': 635636, 'world again': 1009269, 'again next': 37084, 'year how': 1014636, 'how afraid': 407327, 'afraid should': 35011, 'should american': 765512, 'american be': 51832, 'be right': 116887, 'now gas': 574761, 'usa no': 948701, 'no concern': 563865, 'concern recession2020': 193066, 'recession2020 is': 704423, 'is here': 448414, 'can america afford': 157486, 'america afford another': 51441, 'afford another two': 34673, 'another two trillion': 77924, 'two trillion stimulus': 937287, 'stimulus package if': 801582, 'package if another': 633299, 'if another pandemic': 413821, 'another pandemic hit': 77752, 'pandemic hit the': 635643, 'hit the world': 398453, 'the world again': 871808, 'world again next': 1009270, 'again next year': 37085, 'next year how': 561730, 'year how afraid': 1014637, 'how afraid should': 407328, 'afraid should american': 35012, 'should american be': 765513, 'american be right': 51833, 'be right now': 116889, 'right now gas': 722067, 'now gas price': 574762, 'the usa no': 870547, 'usa no concern': 948702, 'no concern recession2020': 563866, 'concern recession2020 is': 193067, 'recession2020 is here': 704424, 'always rely': 49711, 'on home': 601349, 'delivery we': 234724, 'both disabled': 135892, 'disabled had': 243915, 'to brave': 901988, 'brave the': 138234, 'in year': 431016, 'year no': 1014761, 'several week': 753958, 'week shelf': 976861, 'shelf almost': 756699, 'empty both': 274805, 'both at': 135862, 'risk ca': 723442, 'we always rely': 970419, 'always rely on': 49712, 'rely on home': 709642, 'on home delivery': 601351, 'home delivery we': 401054, 'delivery we are': 234725, 'we are both': 970492, 'are both disabled': 85034, 'both disabled had': 135893, 'disabled had to': 243916, 'had to brave': 373667, 'to brave the': 901991, 'brave the supermarket': 138237, 'today for the': 919542, 'time in year': 897021, 'in year no': 431028, 'year no slot': 1014762, 'no slot available': 565522, 'slot available for': 774134, 'available for several': 104381, 'for several week': 325519, 'several week shelf': 753962, 'week shelf almost': 976862, 'shelf almost empty': 756701, 'almost empty both': 46603, 'empty both at': 274806, 'both at the': 135864, 'at the high': 100977, 'the high end': 857318, 'high end of': 395059, 'of the high': 591101, 'high risk ca': 395349, 'cannabisproducts': 161480, '49 of': 19399, 'of participant': 587789, 'participant did': 642539, 'did stock': 240823, 'on cannabisproducts': 599802, 'cannabisproducts 34': 161481, '34 of': 17822, 'participant are': 642535, 'are consuming': 85534, 'consuming more': 199802, 'more cannabis': 538764, 'cannabis than': 161449, 'usual of': 950983, 'participant prefer': 642547, 'prefer cannabis': 669730, 'cannabis over': 161425, '49 of participant': 19400, 'of participant did': 587791, 'participant did stock': 642540, 'did stock up': 240824, 'up on cannabisproducts': 945535, 'on cannabisproducts 34': 599803, 'cannabisproducts 34 of': 161482, '34 of participant': 17824, 'of participant are': 587790, 'participant are consuming': 642536, 'are consuming more': 85535, 'consuming more cannabis': 199803, 'more cannabis than': 538765, 'cannabis than usual': 161450, 'than usual of': 841398, 'usual of participant': 950985, 'of participant prefer': 587792, 'participant prefer cannabis': 642548, 'prefer cannabis over': 669731, 'cannabis over food': 161426, 'wheeze': 983089, 'scared to': 741019, 'to cough': 903606, 'cough or': 208528, 'or wheeze': 617779, 'wheeze in': 983090, 'scared to cough': 741021, 'to cough or': 903610, 'cough or wheeze': 208532, 'or wheeze in': 617780, 'wheeze in the': 983091, 'birmingham': 131376, 'calpol': 156896, 'shutthemup': 768239, 'what wrong': 982650, 'people birmingham': 647285, 'birmingham pharmacy': 131382, 'pharmacy chain': 654270, 'chain sell': 171092, 'sell calpol': 748658, 'calpol for': 156908, '19 99': 4769, '99 and': 23772, 'and paracetamol': 68699, 'paracetamol for': 641240, '99 they': 23899, 'should hang': 766054, 'hang their': 376940, 'in shame': 427852, 'shame calpol': 754585, 'calpol is': 156913, 'for child': 320051, 'child how': 176109, 'can pharmacist': 159226, 'pharmacist allow': 654107, 'allow child': 45924, 'child to': 176231, 'feel pain': 302803, 'pain if': 634228, 'parent cannot': 641599, 'it shutthemup': 461046, 'what wrong with': 982653, 'with people birmingham': 1000138, 'people birmingham pharmacy': 647286, 'birmingham pharmacy chain': 131383, 'pharmacy chain sell': 654272, 'chain sell calpol': 171093, 'sell calpol for': 748659, 'calpol for 19': 156909, 'for 19 99': 318695, '19 99 and': 4772, '99 and paracetamol': 23776, 'and paracetamol for': 68701, 'paracetamol for 99': 641241, 'for 99 they': 318965, '99 they should': 23900, 'they should hang': 883369, 'should hang their': 766055, 'hang their head': 376941, 'their head in': 873502, 'head in shame': 385752, 'in shame calpol': 427853, 'shame calpol is': 754586, 'calpol is for': 156914, 'is for child': 447880, 'for child how': 320053, 'child how can': 176110, 'how can pharmacist': 407512, 'can pharmacist allow': 159227, 'pharmacist allow child': 654108, 'allow child to': 45925, 'child to feel': 176232, 'to feel pain': 905753, 'feel pain if': 302804, 'pain if the': 634229, 'if the parent': 415013, 'the parent cannot': 863282, 'parent cannot afford': 641600, 'cannot afford it': 161602, 'afford it shutthemup': 34719, 'mega': 527815, 'mr president': 544388, 'president there': 670920, 'to send': 914200, 'send spy': 749951, 'spy we': 791416, 'shall do': 754527, 'the reporting': 865541, 'reporting ourselves': 712733, 'ourselves here': 625476, 'at mega': 99723, 'mega standard': 527820, 'standard supermarket': 793701, 'supermarket robbing': 822257, 'robbing due': 724682, 'mr president there': 544391, 'president there no': 670921, 'need to send': 556063, 'to send spy': 914223, 'send spy we': 749953, 'spy we shall': 791417, 'we shall do': 973218, 'shall do the': 754528, 'do the reporting': 250256, 'the reporting ourselves': 865542, 'reporting ourselves here': 712734, 'ourselves here are': 625477, 'are the at': 90798, 'the at mega': 848998, 'at mega standard': 99724, 'mega standard supermarket': 527821, 'standard supermarket robbing': 793705, 'supermarket robbing due': 822258, 'robbing due to': 724683, 'communism': 189661, 'younger': 1022678, 'losing': 503532, 'comp': 190307, 'tec': 836022, 'chinaliedandpeopledied communism': 177101, 'communism unfair': 189666, 'unfair trade': 941446, 'trade practice': 928547, 'practice drive': 668546, 'for younger': 328110, 'younger people': 1022692, 'people they': 649814, 'up home': 945094, 'for first': 321500, 'time home': 896937, 'home buyer': 400855, 'buyer so': 149751, 'just that': 469979, 're losing': 699014, 'losing job': 503563, 'and factory': 62608, 'factory we': 296010, 'away our': 105988, 'home our': 401797, 'business our': 144163, 'our comp': 622493, 'comp tec': 190318, 'chinaliedandpeopledied communism unfair': 177102, 'communism unfair trade': 189667, 'unfair trade practice': 941447, 'trade practice drive': 928549, 'practice drive up': 668547, 'drive up rent': 259249, 'up rent for': 945909, 'rent for younger': 711091, 'for younger people': 328111, 'younger people they': 1022694, 'people they will': 649824, 'they will drive': 883846, 'will drive up': 993258, 'drive up home': 259245, 'up home price': 945096, 'home price for': 401903, 'price for first': 673964, 'for first time': 321504, 'first time home': 309100, 'time home buyer': 896938, 'home buyer so': 400857, 'buyer so it': 149752, 'so it not': 777476, 'it not just': 459891, 'not just that': 570255, 'just that we': 469985, 'that we re': 847389, 'we re losing': 972918, 're losing job': 699016, 'losing job and': 503564, 'job and factory': 465626, 'and factory we': 62609, 'factory we re': 296011, 'we re giving': 972884, 're giving away': 698743, 'giving away our': 351242, 'away our home': 105989, 'our home our': 623455, 'home our business': 401798, 'our business our': 622288, 'business our comp': 144164, 'our comp tec': 622494, 'safetytips': 730820, 'leave space': 484941, 'you and': 1016975, 'health safetytips': 386822, 'safetytips use': 730824, 'use sanitizer': 949533, 'sanitizer health': 735066, 'leave space for': 484943, 'space for you': 787104, 'for you and': 328034, 'you and health': 1016992, 'and health safetytips': 64365, 'health safetytips use': 386823, 'safetytips use sanitizer': 730825, 'use sanitizer health': 949542, 'sanitizer health care': 735067, 'discard': 244314, 'jaffa': 464238, 'hello please': 389205, 'please put': 660339, 'on glove': 601117, 'glove when': 353026, 'you enter': 1018424, 'please discard': 659879, 'discard used': 244326, 'used glove': 949919, 'the garbage': 856148, 'garbage can': 343514, 'can glove': 158484, 'glove are': 352592, 'are single': 90141, 'single use': 771423, 'use outside': 949470, 'outside grocery': 629441, 'in jaffa': 424333, 'hello please put': 389206, 'please put on': 660343, 'put on glove': 690717, 'on glove when': 601118, 'glove when you': 353029, 'when you enter': 984557, 'you enter the': 1018429, 'the supermarket please': 868756, 'supermarket please discard': 822012, 'please discard used': 659880, 'discard used glove': 244327, 'used glove in': 949921, 'glove in the': 352735, 'in the garbage': 429228, 'the garbage can': 856149, 'garbage can glove': 343515, 'can glove are': 158485, 'glove are single': 352596, 'are single use': 90142, 'single use outside': 771424, 'use outside grocery': 949471, 'outside grocery store': 629442, 'store in jaffa': 808324, 'it broke': 456924, 'broke my': 140840, 'my heart': 548645, 'heart today': 388349, 'today walking': 920461, 'and seeing': 71156, 'the look': 859704, 'look of': 502545, 'of absolute': 579718, 'absolute panic': 27267, 'panic on': 638357, 'people face': 647851, 'face because': 294331, 'selfish clown': 748056, 'clown emptying': 184362, 'emptying the': 275290, 'shelf fucking': 757105, 'fucking asshole': 339802, 'asshole damn': 96521, 'damn 2020': 225307, '2020 fucking': 14324, 'fucking covid': 339840, 'it broke my': 456925, 'broke my heart': 140841, 'my heart today': 548662, 'heart today walking': 388350, 'today walking around': 920462, 'walking around the': 965028, 'around the supermarket': 93561, 'supermarket and seeing': 819056, 'and seeing the': 71164, 'seeing the look': 746499, 'the look of': 859706, 'look of absolute': 502546, 'of absolute panic': 579720, 'absolute panic on': 27270, 'panic on all': 638358, 'on all the': 599251, 'all the elderly': 44730, 'the elderly people': 854135, 'elderly people face': 270821, 'people face because': 647852, 'face because of': 294332, 'of all these': 579984, 'these selfish clown': 880645, 'selfish clown emptying': 748057, 'clown emptying the': 184363, 'emptying the shelf': 275292, 'the shelf fucking': 866839, 'shelf fucking asshole': 757106, 'fucking asshole damn': 339803, 'asshole damn 2020': 96522, 'damn 2020 fucking': 225308, '2020 fucking covid': 14325, 'fucking covid 19': 339841, 'shri': 767670, 'gopalaiah': 358300, 'hon': 403029, 'ble': 132463, 'metrology': 529959, 'dd': 229008, 'chandana': 171856, '12pm': 3121, '04': 911, '080': 1094, '23542599': 15477, '699': 21537, 'interact': 441192, '19 special': 10718, 'special live': 787985, 'live phone': 495987, 'phone in': 654963, 'in program': 427035, 'program with': 683322, 'with shri': 1000714, 'shri gopalaiah': 767673, 'gopalaiah hon': 358301, 'hon ble': 403031, 'ble minister': 132464, 'minister for': 533366, 'supply consumer': 825099, 'affair and': 33994, 'and legal': 66087, 'legal metrology': 485881, 'metrology department': 529960, 'department watch': 237291, 'watch it': 968453, 'on dd': 600233, 'dd chandana': 229009, 'chandana from': 171857, 'from 12pm': 334186, '12pm today': 3131, 'today 14': 919122, '14 04': 3380, '04 20': 914, '20 call': 12985, 'at 080': 97388, '080 23542599': 1095, '23542599 699': 15478, '699 to': 21542, 'to interact': 908447, 'interact stayathome': 441199, 'stayathome indiafightscorona': 797507, 'covid 19 special': 213839, '19 special live': 10722, 'special live phone': 787986, 'live phone in': 495988, 'phone in program': 654965, 'in program with': 427036, 'program with shri': 683323, 'with shri gopalaiah': 1000715, 'shri gopalaiah hon': 767674, 'gopalaiah hon ble': 358302, 'hon ble minister': 403032, 'ble minister for': 132465, 'minister for food': 533368, 'for food civil': 321569, 'civil supply consumer': 179556, 'supply consumer affair': 825100, 'consumer affair and': 196076, 'affair and legal': 33996, 'and legal metrology': 66089, 'legal metrology department': 485882, 'metrology department watch': 529961, 'department watch it': 237292, 'watch it on': 968456, 'it on dd': 460037, 'on dd chandana': 600234, 'dd chandana from': 229010, 'chandana from 12pm': 171858, 'from 12pm today': 334187, '12pm today 14': 3132, 'today 14 04': 919123, '14 04 20': 3381, '04 20 call': 915, '20 call at': 12986, 'call at 080': 155776, 'at 080 23542599': 97389, '080 23542599 699': 1096, '23542599 699 to': 15479, '699 to interact': 21543, 'to interact stayathome': 908449, 'interact stayathome indiafightscorona': 441200, 'recommends': 704823, 'nonmedical': 566653, 'doc': 250732, 'now recommends': 575656, 'recommends wearing': 704857, 'wearing nonmedical': 974747, 'nonmedical face': 566654, 'limit no': 492382, 'no mask': 564703, 'mask time': 519385, 'be creative': 114284, 'creative people': 216157, 'people here': 648243, 'here made': 393323, 'made diy': 507716, 'mask like': 518912, 'like one': 490922, 'in video': 430582, 'video doc': 956705, 'doc suggested': 250758, 'suggested this': 817590, 'this lab': 888578, 'lab tested': 478293, 'tested one': 839333, 'now recommends wearing': 575657, 'recommends wearing nonmedical': 704861, 'wearing nonmedical face': 974748, 'nonmedical face covering': 566655, 'public to limit': 688376, 'to limit no': 909288, 'limit no mask': 492383, 'no mask time': 564715, 'mask time to': 519386, 'to be creative': 901187, 'be creative people': 114289, 'creative people here': 216158, 'people here made': 648249, 'here made diy': 393324, 'made diy mask': 507717, 'diy mask like': 248757, 'mask like one': 518915, 'like one in': 490923, 'one in video': 606486, 'in video doc': 430583, 'video doc suggested': 956706, 'doc suggested this': 250759, 'suggested this lab': 817591, 'this lab tested': 888579, 'lab tested one': 478295, 'iaarchitects': 412517, 'remained': 709921, 'architecture': 84055, 'iaarchitects grocery': 412518, 'interesting to': 441633, 'watch they': 968566, 'have remained': 382258, 'remained open': 709941, '19 take': 11024, 'data around': 226130, 'around foot': 93288, 'foot traffic': 318452, 'traffic in': 929098, 'store recently': 809770, 'recently some': 704150, 'data may': 226298, 'may surprise': 521546, 'surprise you': 828565, 'you retail': 1020923, 'retail architecture': 717850, 'iaarchitects grocery chain': 412519, 'have been interesting': 379583, 'been interesting to': 121402, 'interesting to watch': 441639, 'to watch they': 918392, 'watch they have': 968567, 'they have remained': 882371, 'have remained open': 382259, 'remained open during': 709942, 'open during covid': 612196, 'covid 19 take': 213906, '19 take look': 11028, 'look at some': 502294, 'at some of': 100576, 'of the data': 590927, 'the data around': 852844, 'data around foot': 226131, 'around foot traffic': 93289, 'foot traffic in': 318459, 'traffic in grocery': 929099, 'grocery store recently': 365710, 'store recently some': 809774, 'recently some of': 704151, 'the data may': 852849, 'data may surprise': 226299, 'may surprise you': 521547, 'surprise you retail': 828567, 'you retail architecture': 1020924, 'quarantining': 693076, 'while essential': 986799, 'essential quarantining': 281438, 'quarantining yourself': 693093, 'home can': 400865, 'your relationship': 1025554, 'relationship and': 708686, 'and physical': 68998, 'physical and': 655369, 'health learn': 386608, 'manage your': 512470, 'your mental': 1024813, 'health while': 386954, 'while social': 987288, 'while essential quarantining': 986800, 'essential quarantining yourself': 281439, 'quarantining yourself in': 693094, 'yourself in your': 1026648, 'in your home': 431093, 'your home can': 1024344, 'home can have': 400866, 'can have an': 158573, 'have an impact': 379254, 'impact on your': 417902, 'on your relationship': 605496, 'your relationship and': 1025555, 'relationship and physical': 708687, 'and physical and': 68999, 'physical and mental': 655370, 'mental health learn': 528644, 'health learn how': 386609, 'how to manage': 409043, 'to manage your': 909803, 'manage your mental': 512473, 'your mental health': 1024814, 'mental health while': 528652, 'health while social': 386955, 'while social distancing': 987289, 'buck': 141647, 'when pandemic': 983838, 'pandemic struck': 636576, 'struck like': 814264, '19 some': 10691, 'panic it': 638235, 'it human': 458657, 'human nature': 410565, 'nature but': 552944, 'be strong': 117402, 'strong learning': 814063, 'learning some': 484237, 'some trick': 784118, 'trick to': 931714, 'cut down': 223306, 'down your': 257526, 'food budget': 313794, 'budget can': 141765, 'can save': 159501, 'save you': 737704, 'you some': 1021300, 'some few': 782821, 'few buck': 303734, 'buck 19': 141648, 'when pandemic struck': 983840, 'pandemic struck like': 636577, 'struck like the': 814265, 'like the case': 491357, 'covid 19 some': 213831, '19 some people': 10694, 'some people panic': 783529, 'people panic it': 649058, 'panic it human': 638239, 'it human nature': 458659, 'human nature but': 410567, 'nature but we': 552945, 'but we have': 147748, 'to be strong': 901568, 'be strong learning': 117403, 'strong learning some': 814064, 'learning some trick': 484238, 'some trick to': 784119, 'trick to cut': 931716, 'to cut down': 903872, 'cut down your': 223310, 'down your food': 257528, 'your food budget': 1023910, 'food budget can': 313795, 'budget can save': 141766, 'can save you': 159508, 'save you some': 737707, 'you some few': 1021301, 'some few buck': 782822, 'few buck 19': 303735, 'pet retail': 653440, 'retail official': 718341, 'making temporary': 511397, 'temporary change': 837589, 'store operation': 809290, 'and associate': 58457, 'associate the': 96899, 'pet retail official': 653441, 'retail official are': 718342, 'official are making': 595758, 'are making temporary': 88006, 'making temporary change': 511398, 'temporary change to': 837591, 'change to store': 172363, 'to store operation': 915633, 'store operation to': 809297, 'operation to help': 613281, 'safety of their': 730657, 'of their customer': 591655, 'customer and associate': 222067, 'and associate the': 58460, 'associate the pandemic': 96900, 'the pandemic continues': 862936, 'smarten': 775465, 'ok folk': 597795, 'folk this': 312273, 'simply beyond': 770188, 'beyond stupid': 129235, 'stupid why': 815499, 'police not': 663103, 'not there': 572055, 'there immediately': 878499, 'immediately to': 417163, 'to shut': 914600, 'shut that': 767936, 'that down': 843614, 'down what': 257456, 'what bunch': 981148, 'of crazy': 582120, 'crazy people': 215385, 'even go': 284123, 'aisle in': 40272, 'it smarten': 461090, 'smarten up': 775466, 'ok folk this': 597796, 'folk this is': 312276, 'this is simply': 888399, 'is simply beyond': 451928, 'simply beyond stupid': 770189, 'beyond stupid why': 129237, 'stupid why are': 815500, 'why are the': 990790, 'are the police': 90884, 'the police not': 863925, 'police not there': 663104, 'not there immediately': 572057, 'there immediately to': 878500, 'immediately to shut': 417168, 'to shut that': 914611, 'shut that down': 767937, 'that down what': 843615, 'down what bunch': 257458, 'what bunch of': 981149, 'bunch of crazy': 142621, 'of crazy people': 582121, 'crazy people will': 215388, 'people will not': 650401, 'will not even': 994215, 'not even go': 569251, 'even go down': 284124, 'go down the': 353499, 'down the aisle': 257262, 'the aisle in': 848523, 'aisle in grocery': 40275, 'store with people': 811396, 'with people down': 1000144, 'people down it': 647723, 'down it smarten': 256896, 'it smarten up': 461091, 'free school': 332135, 'school meal': 741851, 'meal guidance': 524173, 'guidance for': 368224, 'for school': 325386, 'school inc': 741828, 'inc food': 431282, 'parcel and': 641476, 'free school meal': 332137, 'school meal guidance': 741857, 'meal guidance for': 524174, 'guidance for school': 368234, 'for school inc': 325387, 'school inc food': 741829, 'inc food parcel': 431283, 'food parcel and': 315809, 'parcel and supermarket': 641479, 'and supermarket voucher': 72748, 'hoarding toilet': 399614, 'and book': 59061, 'book causing': 134492, 'causing massive': 168062, 'massive shortage': 520110, 'shortage cannot': 764873, 'cannot help': 161954, 'the sanitizer': 866348, 'book got': 134536, 'got ya': 359022, 'ya covered': 1013974, 'covered corona': 212408, 'corona coronapandemic': 203887, 'are hoarding toilet': 87213, 'hoarding toilet paper': 399615, 'sanitizer and book': 734389, 'and book causing': 59062, 'book causing massive': 134493, 'causing massive shortage': 168064, 'massive shortage cannot': 520111, 'shortage cannot help': 764874, 'cannot help you': 161959, 'help you with': 391010, 'you with the': 1022389, 'with the toilet': 1001520, 'paper or the': 640559, 'or the sanitizer': 617395, 'the sanitizer but': 866351, 'sanitizer but when': 734616, 'but when it': 147818, 'come to book': 187558, 'to book got': 901896, 'book got ya': 134537, 'got ya covered': 359023, 'ya covered corona': 1013975, 'covered corona coronapandemic': 212409, 'ribbon': 720958, 'modern': 535370, 'worker usually': 1008090, 'get 10': 346451, '10 discount': 1396, 'discount get': 244477, 'get each': 346922, 'manager to': 512814, 'to match': 909891, 'match that': 520303, 'that average': 842902, 'average 10': 104790, 'to fund': 906328, 'fund free': 341413, 'free ribbon': 332109, 'ribbon that': 720961, 'can pick': 159231, 'wear to': 974485, 'show absolute': 766845, 'absolute love': 27256, 'love for': 504664, 'these modern': 880308, 'modern hero': 535388, 'supermarket worker usually': 824109, 'worker usually get': 1008091, 'usually get 10': 951120, 'get 10 discount': 346453, '10 discount get': 1400, 'discount get each': 244478, 'get each store': 346923, 'each store manager': 264282, 'store manager to': 808895, 'manager to match': 512816, 'to match that': 909893, 'match that average': 520304, 'that average 10': 842903, 'average 10 to': 104791, '10 to fund': 1732, 'to fund free': 906330, 'fund free ribbon': 341414, 'free ribbon that': 332110, 'ribbon that customer': 720962, 'that customer can': 843419, 'customer can pick': 222227, 'can pick up': 159233, 'pick up in': 655731, 'up in store': 945182, 'in store and': 428383, 'store and wear': 806400, 'and wear to': 75355, 'wear to show': 974487, 'to show absolute': 914550, 'show absolute love': 766846, 'absolute love for': 27257, 'love for these': 504669, 'for these modern': 326973, 'these modern hero': 880309, 'really really': 702510, 'really worried': 702717, 'many little': 514236, 'little kid': 495424, 'kid will': 474167, 'will go': 993539, 'go seriously': 354093, 'seriously hungry': 751632, 'hungry due': 411238, 'only meal': 610775, 'meal some': 524279, 'some kid': 783169, 'kid get': 473964, 'get are': 346598, 'at school': 100470, 'school they': 741950, 'be seriously': 117096, 'hungry for': 411248, 'week when': 977220, 'they close': 881762, 'close especially': 182627, 'especially also': 280434, 'is denying': 447123, 'denying food': 237151, 'bank normal': 110036, 'normal stock': 567338, 'really really worried': 702516, 'really worried about': 702718, 'about how many': 25453, 'how many little': 408269, 'many little kid': 514237, 'little kid will': 495426, 'kid will go': 474168, 'will go seriously': 993556, 'go seriously hungry': 354094, 'seriously hungry due': 751634, 'hungry due to': 411239, 'to the only': 916923, 'the only meal': 862320, 'only meal some': 610776, 'meal some kid': 524281, 'some kid get': 783170, 'kid get are': 473965, 'get are at': 346599, 'are at school': 84681, 'at school they': 100473, 'school they could': 741951, 'they could be': 881816, 'could be seriously': 208919, 'be seriously hungry': 117097, 'seriously hungry for': 751635, 'hungry for week': 411249, 'for week when': 327764, 'week when they': 977226, 'when they close': 984246, 'they close especially': 881763, 'close especially also': 182628, 'especially also stockpiling': 280435, 'also stockpiling is': 48912, 'stockpiling is denying': 803998, 'is denying food': 447125, 'denying food bank': 237152, 'food bank normal': 313605, 'bank normal stock': 110037, 'some tip': 784061, '19 groceryshopping': 7295, 'groceryshopping quarantine': 366272, 'quarantine meal': 692364, 'some tip to': 784069, 'tip to help': 898930, 'help you stock': 390998, 'on food during': 600858, 'food during covid': 314319, 'covid 19 groceryshopping': 213168, '19 groceryshopping quarantine': 7296, 'groceryshopping quarantine meal': 366273, 'agree and': 38591, 'seen so': 747237, 'much kindness': 545030, 'kindness in': 475207, 'my little': 549079, 'little neighborhood': 495477, 'neighborhood here': 557126, 'here lovely': 393321, 'lovely story': 504994, 'story from': 811980, 'agree and ve': 38592, 'and ve seen': 74852, 've seen so': 953547, 'seen so much': 747240, 'so much kindness': 777789, 'much kindness in': 545031, 'kindness in my': 475208, 'in my little': 425595, 'my little neighborhood': 549081, 'little neighborhood here': 495479, 'neighborhood here lovely': 557127, 'here lovely story': 393322, 'lovely story from': 504995, 'story from my': 811985, 'appts': 83346, 'hotmessus': 405288, 'china had': 176698, 'bank disinfect': 109770, 'disinfect money': 245552, 'and gave': 63494, 'gave supermarket': 344660, 'supermarket appts': 819137, 'appts only': 83349, 'only allowing': 610064, 'allowing one': 46309, 'household to': 406970, 'shopping we': 764345, 'shut shit': 767925, 'shit down': 759091, 'down hotmessus': 256840, 'china had the': 176700, 'had the bank': 373609, 'the bank disinfect': 849235, 'bank disinfect money': 109771, 'disinfect money and': 245553, 'money and gave': 536596, 'and gave supermarket': 63497, 'gave supermarket appts': 344661, 'supermarket appts only': 819138, 'appts only allowing': 83350, 'only allowing one': 610066, 'allowing one person': 46310, 'one person per': 606865, 'per household to': 650893, 'household to the': 406973, 'to the shopping': 917060, 'the shopping we': 867078, 'shopping we can': 764347, 'we can even': 970942, 'can even get': 158252, 'even get it': 284107, 'get it together': 347432, 'it together to': 461776, 'together to shut': 921001, 'to shut shit': 914609, 'shut shit down': 767926, 'shit down hotmessus': 759092, 'let give': 486742, 'give thanks': 350727, 'those great': 892030, 'great american': 362499, 'american worker': 52320, 'wage under': 963980, 'under 10': 939954, '10 hour': 1466, 'hour they': 405991, 'they pick': 882878, 'pick process': 655680, 'process pack': 679941, 'pack ship': 633151, 'ship truck': 758728, 'truck stock': 932854, 'of maybe': 586311, 'maybe after': 521636, 'll think': 497067, 'about giving': 25307, 'giving them': 351419, 'them raise': 876203, 'let give thanks': 486746, 'give thanks to': 350728, 'thanks to those': 842270, 'to those great': 917503, 'those great american': 892031, 'great american worker': 362500, 'american worker at': 52321, 'worker at minimum': 1006469, 'at minimum wage': 99753, 'minimum wage under': 533248, 'wage under 10': 963981, 'under 10 hour': 939955, '10 hour they': 1470, 'hour they pick': 405994, 'they pick process': 882880, 'pick process pack': 655681, 'process pack ship': 679943, 'pack ship truck': 633152, 'ship truck stock': 758729, 'truck stock and': 932855, 'stock and sell': 801831, 'and sell the': 71218, 'sell the food': 748894, 'the food for': 855551, 'for the rest': 326652, 'rest of maybe': 716198, 'of maybe after': 586312, 'maybe after this': 521637, 'over we ll': 630899, 'we ll think': 972283, 'll think about': 497068, 'think about giving': 885085, 'about giving them': 25310, 'giving them raise': 351425, 'conscious': 194789, 'chairman': 171317, 'fcb': 300748, 'safety are': 730473, 'are two': 91242, 'two aspect': 936787, 'aspect that': 96223, 'decision significantly': 231085, 'significantly in': 769582, 'era people': 280074, 'more conscious': 538861, 'conscious about': 194790, 'their well': 875184, 'being group': 125205, 'group chairman': 366636, 'chairman amp': 171320, 'ceo fcb': 169698, 'fcb india': 300749, 'and safety are': 70738, 'safety are two': 730475, 'are two aspect': 91244, 'two aspect that': 936788, 'aspect that will': 96224, 'that will impact': 847584, 'impact consumer decision': 417607, 'consumer decision significantly': 197103, 'decision significantly in': 231086, 'significantly in the': 769585, 'the post covid': 864084, '19 era people': 6823, 'era people will': 280075, 'people will be': 650379, 'be more conscious': 115968, 'more conscious about': 538862, 'conscious about their': 194791, 'about their well': 26596, 'their well being': 875185, 'well being group': 978057, 'being group chairman': 125206, 'group chairman amp': 366637, 'chairman amp ceo': 171321, 'amp ceo fcb': 53512, 'ceo fcb india': 169699, 'brain nervous': 137598, 'nervous system': 557478, 'system affected': 831081, 'affected in': 34372, 'of severe': 589548, 'severe covid': 754001, 'brain nervous system': 137599, 'nervous system affected': 557479, 'system affected in': 831082, 'affected in in': 34373, 'in in case': 423998, 'in case of': 421266, 'case of severe': 165925, 'of severe covid': 589549, 'severe covid 19': 754002, 'googling': 358220, 'shake': 754401, 'combed': 187087, 'stats': 796609, 'snapshot': 776151, 'effecting': 269188, 'martech': 518077, 'is googling': 448159, 'googling new': 358223, 'to shake': 914322, 'shake hand': 754408, 'hand we': 375969, 'we combed': 971145, 'combed through': 187088, 'through sea': 894659, 'sea of': 743098, 'of stats': 590081, 'stats fact': 796614, 'and insight': 65257, 'you quick': 1020533, 'quick snapshot': 694382, 'snapshot of': 776157, 'marketing world': 517754, 'world this': 1010065, 'is effecting': 447445, 'effecting it': 269191, 'it digitalmarketing': 457557, 'digitalmarketing martech': 242778, 'world is googling': 1009700, 'is googling new': 448160, 'googling new way': 358224, 'new way to': 559857, 'way to shake': 970093, 'to shake hand': 914323, 'shake hand we': 754411, 'hand we combed': 375971, 'we combed through': 971146, 'combed through sea': 187089, 'through sea of': 894660, 'sea of stats': 743101, 'of stats fact': 590082, 'stats fact and': 796615, 'fact and insight': 295676, 'and insight to': 65261, 'insight to give': 439647, 'to give you': 906729, 'give you quick': 350864, 'you quick snapshot': 1020534, 'quick snapshot of': 694383, 'snapshot of the': 776163, 'of the marketing': 591223, 'the marketing world': 860191, 'marketing world this': 517755, 'world this week': 1010067, 'week and how': 975916, 'and how is': 64819, 'how is effecting': 408092, 'is effecting it': 447446, 'effecting it digitalmarketing': 269192, 'it digitalmarketing martech': 457558, 'swiss': 830443, 'syngenta': 831001, 'monthey': 538154, 'to urgent': 917992, 'appeal by': 82056, 'by swiss': 154190, 'swiss authority': 830446, 'authority syngenta': 103788, 'syngenta is': 831002, 'is joining': 449102, 'joining force': 466967, 'force corp': 328366, 'corp to': 207219, 'it monthey': 459659, 'monthey site': 538155, 'hospital pharmacy': 404560, 'response to urgent': 715892, 'to urgent appeal': 917993, 'urgent appeal by': 948322, 'appeal by swiss': 82057, 'by swiss authority': 154191, 'swiss authority syngenta': 830448, 'authority syngenta is': 103789, 'syngenta is joining': 831003, 'is joining force': 449103, 'joining force corp': 466968, 'force corp to': 328367, 'corp to make': 207220, 'handsanitizer at it': 376483, 'at it monthey': 99331, 'it monthey site': 459660, 'monthey site for': 538156, 'site for use': 771923, 'use in hospital': 949276, 'in hospital pharmacy': 423814, 'releasethesnydercut': 709112, 'batmanvsuperman': 112706, 'feel going': 302641, 'get supply': 348149, 'now releasethesnydercut': 575669, 'releasethesnydercut batmanvsuperman': 709113, 'how it feel': 408129, 'it feel going': 457970, 'feel going to': 302642, 'to get supply': 906608, 'get supply for': 348156, 'supply for the': 825280, 'for the right': 326659, 'the right now': 865815, 'right now releasethesnydercut': 722124, 'now releasethesnydercut batmanvsuperman': 575670, 'yamah': 1014116, 'kezily': 473622, '52': 20242, 'flee': 310282, 'midnight': 530738, 'be better': 113835, 'better for': 128286, 'kill than': 474503, 'than for': 840668, 'for hunger': 322452, 'hunger said': 411183, 'said mother': 731239, 'four yamah': 330707, 'yamah kezily': 1014119, 'kezily 52': 473623, '52 of': 20253, 'of west': 593029, 'west point': 980528, 'point who': 662712, 'who trade': 989815, 'trade at': 928417, 'downtown market': 257753, 'market people': 516838, 'and flee': 62963, 'flee at': 310285, 'at midnight': 99737, 'would be better': 1011558, 'be better for': 113837, 'better for virus': 128290, 'for virus to': 327581, 'virus to kill': 958923, 'to kill than': 908942, 'kill than for': 474504, 'than for hunger': 840670, 'for hunger said': 322453, 'hunger said mother': 411184, 'said mother of': 731240, 'mother of four': 543145, 'of four yamah': 583888, 'four yamah kezily': 330708, 'yamah kezily 52': 1014120, 'kezily 52 of': 473624, '52 of west': 20254, 'of west point': 593035, 'west point who': 980529, 'point who trade': 662714, 'who trade at': 989816, 'trade at the': 928418, 'at the downtown': 100930, 'the downtown market': 853636, 'downtown market people': 257754, 'market people stock': 516839, 'food and flee': 313234, 'and flee at': 62964, 'flee at midnight': 310286, 'then let': 877308, 'let the': 487116, 'hospital take': 404666, 'take four': 832137, 'four day': 330596, 'day holiday': 227758, 'holiday you': 400392, 'you die': 1018217, 'die faster': 241329, 'faster from': 300100, 'from lack': 336187, 'food than': 317073, 'no acceptable': 563574, 'acceptable excuse': 28014, 'for pulling': 324856, 'pulling anyone': 688929, 'anyone offline': 80440, 'offline when': 596060, 'supply structure': 825913, 'structure is': 814305, 'already stressed': 47687, 'stressed long': 813448, 'is demand': 447109, 'then let the': 877310, 'let the hospital': 487129, 'the hospital take': 857537, 'hospital take four': 404667, 'take four day': 832138, 'four day holiday': 330598, 'day holiday you': 227759, 'holiday you die': 400393, 'you die faster': 1018218, 'die faster from': 241330, 'faster from lack': 300101, 'from lack of': 336188, 'of food than': 583792, 'food than from': 317076, 'is no acceptable': 449909, 'no acceptable excuse': 563575, 'acceptable excuse for': 28015, 'excuse for pulling': 289745, 'for pulling anyone': 324857, 'pulling anyone offline': 688930, 'anyone offline when': 80441, 'offline when the': 596061, 'when the supply': 984203, 'the supply structure': 868961, 'supply structure is': 825914, 'structure is already': 814306, 'is already stressed': 445538, 'already stressed long': 47688, 'stressed long there': 813449, 'long there is': 501737, 'there is demand': 878546, 'is demand they': 447115, 'demand they should': 236378, 'produced': 680501, 'our friend': 623177, 'at have': 98859, 'have produced': 382057, 'produced new': 680527, 'consumer check': 196786, 'major trend': 509519, 'commerce and': 188511, 'our friend at': 623181, 'friend at have': 333529, 'at have produced': 98862, 'have produced new': 382058, 'produced new report': 680528, 'new report on': 559450, 'report on covid': 712143, 'the consumer check': 851509, 'consumer check out': 196787, 'out the major': 627389, 'the major trend': 859939, 'major trend in': 509520, 'trend in commerce': 931362, 'in commerce and': 421594, 'commerce and what': 188517, 'mean for you': 524455, 'minimize': 533099, 'dignity': 242828, 'to minimize': 910157, 'minimize the': 533123, '19 now': 8849, 'now offer': 575393, 'pantry service': 639660, 'service supporting': 752887, 'supporting organization': 827162, 'organization like': 619395, 'these that': 880805, 'provide both': 686238, 'both food': 135906, 'and dignity': 61358, 'dignity to': 242837, 'community is': 189929, 'is crucial': 446956, 'to minimize the': 910169, 'minimize the spread': 533131, 'covid 19 now': 213490, '19 now offer': 8857, 'now offer online': 575394, 'shopping for food': 762675, 'for food pantry': 321611, 'food pantry service': 315795, 'pantry service supporting': 639662, 'service supporting organization': 752888, 'supporting organization like': 827163, 'organization like these': 619398, 'like these that': 491439, 'these that provide': 880807, 'that provide both': 845883, 'provide both food': 686239, 'both food and': 135907, 'food and dignity': 313211, 'and dignity to': 61359, 'dignity to our': 242838, 'to our community': 911163, 'our community is': 622465, 'community is crucial': 189931, 'command': 188320, 'much would': 545482, 'long would': 501866, 'take for': 832127, 'supermarket essential': 820198, 'to install': 908415, 'install and': 439983, 'and implement': 65018, 'implement disinfectant': 418381, 'spray shower': 790329, 'shower at': 767363, 'at each': 98498, 'each entrance': 264070, 'entrance door': 278872, 'please executive': 659973, 'executive command': 289868, 'command this': 188327, 'this into': 888151, 'law immediately': 482310, 'how much would': 408387, 'much would it': 545483, 'would it cost': 1011965, 'it cost and': 457345, 'cost and how': 207857, 'how long would': 408218, 'long would it': 501867, 'would it take': 1011968, 'it take for': 461423, 'take for every': 832130, 'for every single': 321176, 'every single supermarket': 286193, 'single supermarket essential': 771409, 'supermarket essential store': 820202, 'essential store to': 281597, 'store to install': 810780, 'to install and': 908416, 'install and implement': 439984, 'and implement disinfectant': 65020, 'implement disinfectant spray': 418382, 'disinfectant spray shower': 245759, 'spray shower at': 790330, 'shower at each': 767364, 'at each entrance': 98499, 'each entrance door': 264071, 'entrance door to': 278873, 'spread of please': 790700, 'of please executive': 588169, 'please executive command': 659974, 'executive command this': 289869, 'command this into': 188328, 'this into law': 888152, 'into law immediately': 442692, 'breast': 139131, 'cabbage': 154940, 'bought turkey': 136770, 'turkey breast': 935543, 'breast the': 139144, 'other day': 620072, 'day at': 227326, 'today thought': 920344, 'thought go': 893058, 'go get': 353602, 'get cabbage': 346732, 'cabbage and': 154941, 'and sweet': 72928, 'sweet potato': 830243, 'potato wth': 667005, 'wth how': 1013366, 'can north': 159039, 'carolina grocery': 164840, 'store not': 809099, 'have sweet': 382880, 'potato better': 666916, 'better see': 128456, 'some post': 783607, 'post of': 666222, 'of amazing': 580022, 'amazing meal': 50741, 'bought turkey breast': 136771, 'turkey breast the': 935544, 'breast the other': 139145, 'the other day': 862520, 'other day at': 620074, 'day at the': 227337, 'the store today': 868128, 'store today thought': 810874, 'today thought go': 920345, 'thought go get': 893059, 'go get cabbage': 353603, 'get cabbage and': 346733, 'cabbage and sweet': 154942, 'and sweet potato': 72929, 'sweet potato wth': 830249, 'potato wth how': 667006, 'wth how can': 1013367, 'how can north': 407506, 'can north carolina': 159040, 'north carolina grocery': 567632, 'carolina grocery store': 164841, 'grocery store not': 365596, 'store not have': 809107, 'not have sweet': 569875, 'have sweet potato': 382881, 'sweet potato better': 830245, 'potato better see': 666917, 'better see some': 128458, 'see some post': 745720, 'some post of': 783608, 'post of amazing': 666223, 'of amazing meal': 580024, 'tom': 923903, 'coburn': 185177, 'letter covid': 487304, '19 what': 11996, 'would dr': 1011776, 'dr tom': 258114, 'tom coburn': 923912, 'coburn do': 185178, 'do hey': 249397, 'hey congress': 394352, 'congress end': 194501, 'end secret': 275954, 'secret health': 743920, 'care price': 164154, 'covid and': 214123, 'letter covid 19': 487305, 'covid 19 what': 214061, '19 what would': 12007, 'what would dr': 982642, 'would dr tom': 1011777, 'dr tom coburn': 258115, 'tom coburn do': 923913, 'coburn do hey': 185179, 'do hey congress': 249398, 'hey congress end': 394353, 'congress end secret': 194502, 'end secret health': 275955, 'secret health care': 743921, 'health care price': 386244, 'care price for': 164155, 'price for covid': 673943, 'for covid and': 320432, 'covid and beyond': 214124, 'coordinate': 203180, 'spokesman': 789772, 'russia is': 728503, 'to coordinate': 903498, 'coordinate with': 203189, 'exporter to': 292759, 'help stabilize': 390557, 'stabilize the': 791861, 'oil market': 596936, 'market according': 515907, 'to spokesman': 915030, 'spokesman following': 789775, 'following dramatic': 312723, 'dramatic fall': 258288, 'amid price': 52600, 'and plunging': 69133, 'plunging demand': 661526, 'pandemic oott': 636111, 'russia is ready': 728504, 'ready to coordinate': 700947, 'to coordinate with': 903502, 'coordinate with other': 203190, 'with other oil': 999957, 'other oil exporter': 620597, 'oil exporter to': 596780, 'exporter to help': 292760, 'to help stabilize': 907633, 'help stabilize the': 390559, 'stabilize the global': 791862, 'the global oil': 856313, 'global oil market': 352049, 'oil market according': 596937, 'market according to': 515908, 'according to spokesman': 28588, 'to spokesman following': 915031, 'spokesman following dramatic': 789776, 'following dramatic fall': 312724, 'dramatic fall in': 258289, 'fall in price': 296961, 'in price amid': 426947, 'price amid price': 672316, 'amid price war': 52602, 'price war and': 677350, 'war and plunging': 966362, 'and plunging demand': 69134, 'plunging demand due': 661528, 'the pandemic oott': 863042, 'getting ready': 349215, 'getting ready to': 349217, 'respectfully': 715132, 'continuation': 200976, 'dontb': 255326, 'employee respectfully': 274146, 'respectfully request': 715135, 'to testing': 916400, 'testing of': 839580, 'of asap': 580384, 'asap and': 94857, 'the continuation': 851664, 'continuation of': 200977, 'that access': 842479, 'access until': 28300, 'until vaccine': 943914, 'available dontb': 104327, 'store employee respectfully': 807526, 'employee respectfully request': 274147, 'respectfully request that': 715136, 'request that employee': 713199, 'that employee truck': 843701, 'driver and manager': 259417, 'manager of grocery': 512760, 'store have access': 808065, 'access to testing': 28287, 'to testing of': 916405, 'testing of asap': 839581, 'of asap and': 580385, 'asap and for': 94859, 'and for the': 63161, 'for the continuation': 326357, 'the continuation of': 851665, 'continuation of that': 200978, 'of that access': 590707, 'that access until': 842481, 'access until vaccine': 28301, 'until vaccine is': 943916, 'is available dontb': 445913, '200ml': 13734, 'coronastopkarona': 205277, 'of sanitisers': 589283, 'sanitisers and': 734057, 'increasing day': 433574, 'day by': 227416, 'by day': 152299, 'country due': 210591, 'to outbreak': 911265, 'government decided': 360008, 'decided that': 230881, 'that 200ml': 842449, '200ml sanitisers': 13743, 'sanitisers cannot': 734073, 'sold for': 781662, '100 coronastopkarona': 1870, 'price of sanitisers': 675562, 'of sanitisers and': 589284, 'sanitisers and mask': 734062, 'and mask are': 66743, 'mask are increasing': 518399, 'are increasing day': 87479, 'increasing day by': 433575, 'day by day': 227418, 'by day in': 152301, 'day in our': 227805, 'in our country': 426274, 'our country due': 622586, 'country due to': 210592, 'due to outbreak': 261892, 'to outbreak the': 911270, 'outbreak the government': 628711, 'the government decided': 856521, 'government decided that': 360009, 'decided that 200ml': 230882, 'that 200ml sanitisers': 842450, '200ml sanitisers cannot': 13744, 'sanitisers cannot be': 734074, 'cannot be sold': 161647, 'be sold for': 117282, 'sold for more': 781671, 'than 100 coronastopkarona': 840157, '210': 15042, 'stib': 800017, '37': 18062, '210 00': 15043, '00 testing': 511, 'kit for': 475540, 'for nursing': 323995, 'home stib': 402142, 'stib report': 800018, 'report rise': 712224, 'in non': 425922, 'essential travel': 281718, 'travel you': 930578, 'put your': 690986, 'your recycling': 1025535, 'recycling out': 705549, 'out again': 625584, 'again property': 37130, 'in 37': 419918, '37 year': 18090, '210 00 testing': 15044, '00 testing kit': 512, 'testing kit for': 839539, 'kit for nursing': 475546, 'for nursing home': 323996, 'nursing home stib': 577620, 'home stib report': 402143, 'stib report rise': 800019, 'report rise in': 712225, 'rise in non': 722891, 'in non essential': 425923, 'non essential travel': 566369, 'essential travel you': 281728, 'travel you can': 930579, 'you can put': 1017757, 'can put your': 159354, 'put your recycling': 690994, 'your recycling out': 1025536, 'recycling out again': 705550, 'out again property': 625585, 'again property price': 37131, 'property price to': 684342, 'price to fall': 676991, 'to fall for': 905632, 'fall for first': 296911, 'time in 37': 896975, 'in 37 year': 419919, 'legitimately': 486061, 'bekindtoeachother': 126123, 'driver welcome': 259842, 'welcome to': 977899, 'club you': 184504, 'may now': 521396, 'now legitimately': 575194, 'legitimately exchange': 486062, 'exchange wave': 289493, 'wave with': 969398, 'the peep': 863433, 'peep within': 646300, 'within other': 1002401, 'other passing': 620647, 'passing emergency': 643374, 'service vehicle': 753035, 'vehicle bekindtoeachother': 954254, 'delivery driver welcome': 233953, 'driver welcome to': 259843, 'welcome to the': 977908, 'to the club': 916570, 'the club you': 851085, 'club you may': 184505, 'you may now': 1019807, 'may now legitimately': 521397, 'now legitimately exchange': 575195, 'legitimately exchange wave': 486063, 'exchange wave with': 289494, 'wave with the': 969399, 'with the peep': 1001424, 'the peep within': 863434, 'peep within other': 646301, 'within other passing': 1002402, 'other passing emergency': 620648, 'passing emergency service': 643375, 'emergency service vehicle': 272971, 'service vehicle bekindtoeachother': 753036, 'trumpviruscoverup': 934205, 'votebluetosaveamerica': 960542, 'voteblue2020': 960536, 'all full': 42893, 'of shit': 589597, 'shit toiletpaper': 759270, 'toiletpaper trumpviruscoverup': 922775, 'trumpviruscoverup trumpvirus': 934212, 'trumpvirus votebluetosaveamerica': 934200, 'votebluetosaveamerica sundaythoughts': 960543, 'sundaythoughts voteblue2020': 818358, 'maybe it because': 521720, 'it because they': 456762, 'because they re': 119715, 'they re all': 882990, 're all full': 698216, 'all full of': 42895, 'full of shit': 340755, 'of shit toiletpaper': 589605, 'shit toiletpaper trumpviruscoverup': 759271, 'toiletpaper trumpviruscoverup trumpvirus': 922776, 'trumpviruscoverup trumpvirus votebluetosaveamerica': 934213, 'trumpvirus votebluetosaveamerica sundaythoughts': 934201, 'votebluetosaveamerica sundaythoughts voteblue2020': 960544, 'hammerkopf': 374591, 'expect drastic': 290634, 'drastic change': 258395, 'behavior even': 124025, 'post crisis': 666081, 'world hammerkopf': 1009617, 'hammerkopf by': 374592, 'expect drastic change': 290635, 'drastic change in': 258396, 'consumer behavior even': 196472, 'behavior even in': 124027, 'even in post': 284245, 'in post crisis': 426861, 'post crisis world': 666084, 'crisis world hammerkopf': 218439, 'world hammerkopf by': 1009618, 'online stock': 609436, 'of face': 583356, 'in usa': 430482, 'usa regular': 948736, 'regular price': 707835, 'price piece': 675873, 'piece made': 656322, 'made in': 507786, 'in retweet': 427482, 'retweet limited': 720059, 'limited value': 492788, 'value with': 952249, 'with every': 998271, 'every purchase': 286129, 'online stock of': 609437, 'stock of face': 802522, 'of face mask': 583359, 'mask in usa': 518841, 'in usa regular': 430494, 'usa regular price': 948737, 'regular price piece': 707843, 'price piece made': 675874, 'piece made in': 656324, 'made in retweet': 507793, 'in retweet limited': 427483, 'retweet limited value': 720060, 'limited value with': 492789, 'value with every': 952250, 'with every purchase': 998278, 'spiv': 789621, 'reselling': 713987, 'desperately': 238565, 'coronacrisis profiteering': 204715, 'profiteering spiv': 683093, 'spiv what': 789626, 'government going': 360126, 'these spiv': 880713, 'spiv who': 789628, 'who profit': 989454, 'profit on': 682826, 'on ebay': 600484, 'ebay etc': 266449, 'etc emptying': 282512, 'and reselling': 70299, 'reselling basic': 713988, 'who desperately': 988574, 'desperately need': 238570, 'coronacrisis profiteering spiv': 204716, 'profiteering spiv what': 683094, 'spiv what is': 789627, 'is the government': 452810, 'the government going': 856542, 'government going to': 360127, 'do with these': 250572, 'with these spiv': 1001659, 'these spiv who': 880715, 'spiv who profit': 789629, 'who profit on': 989456, 'profit on ebay': 682828, 'on ebay etc': 600490, 'ebay etc emptying': 266450, 'etc emptying supermarket': 282513, 'shelf and reselling': 756757, 'and reselling basic': 70300, 'reselling basic item': 713989, 'basic item at': 111959, 'item at exorbitant': 463123, 'at exorbitant price': 98590, 'exorbitant price to': 290424, 'price to vulnerable': 677061, 'vulnerable and essential': 960858, 'and essential people': 62257, 'essential people who': 281381, 'people who desperately': 650283, 'who desperately need': 988575, 'desperately need them': 238573, 'staycalm': 797831, 'carefulness': 164488, 'carelessness': 164538, 'feel young': 302945, 'again nothing': 37088, 'nothing stay': 573162, 'stay forever': 796877, 'forever or': 329133, 'or stay': 617206, 'stay the': 797343, 'same oil': 733184, 'hit 18': 398091, 'low some': 505632, 'some interesting': 783130, 'interesting stock': 441616, 'stock near': 802487, 'near multi': 553552, 'multi year': 545678, 'low staycalm': 505641, 'staycalm nothing': 797832, 'nothing last': 573076, 'last forever': 480235, 'forever we': 329155, 'will win': 995348, 'win fight': 995548, 'against carefulness': 37356, 'carefulness cost': 164489, 'cost you': 208165, 'you nothing': 1020138, 'nothing carelessness': 572972, 'carelessness may': 164539, 'may cost': 521105, 'life staysafe': 489061, 'feel young again': 302946, 'young again nothing': 1022559, 'again nothing stay': 37089, 'nothing stay forever': 573163, 'stay forever or': 796878, 'forever or stay': 329135, 'or stay the': 617210, 'stay the same': 797346, 'the same oil': 866267, 'same oil price': 733185, 'oil price hit': 597160, 'price hit 18': 674556, 'hit 18 year': 398092, 'year low some': 1014733, 'low some interesting': 505634, 'some interesting stock': 783133, 'interesting stock near': 441617, 'stock near multi': 802488, 'near multi year': 553553, 'multi year low': 545679, 'year low staycalm': 1014734, 'low staycalm nothing': 505642, 'staycalm nothing last': 797833, 'nothing last forever': 573077, 'last forever we': 480237, 'forever we will': 329156, 'we will win': 973920, 'will win fight': 995350, 'win fight against': 995549, 'fight against carefulness': 304610, 'against carefulness cost': 37357, 'carefulness cost you': 164490, 'cost you nothing': 208170, 'you nothing carelessness': 1020139, 'nothing carelessness may': 572973, 'carelessness may cost': 164540, 'may cost you': 521107, 'cost you your': 208175, 'you your life': 1022499, 'your life staysafe': 1024644, 'pollution': 663894, 'rudy': 727069, 'giuliani': 350344, 'disappear': 244028, 'heelcomic': 388775, 'comedian': 187717, 'positive side': 665428, 'side effect': 768806, '19 reduction': 10023, 'in traffic': 430260, 'traffic reduction': 929126, 'in gas': 423221, 'price reduction': 676133, 'in pollution': 426828, 'pollution made': 663906, 'made rudy': 507945, 'rudy giuliani': 727070, 'giuliani disappear': 350345, 'disappear 19': 244029, '19 cornavirusoutbreak': 6045, 'cornavirusoutbreak pandemic': 203615, 'pandemic heelcomic': 635610, 'heelcomic comedy': 388776, 'comedy comedian': 187736, 'comedian laugh': 187724, 'positive side effect': 665429, 'side effect to': 768810, 'effect to covid': 269143, 'covid 19 reduction': 213673, '19 reduction in': 10024, 'reduction in traffic': 706372, 'in traffic reduction': 430262, 'traffic reduction in': 929127, 'reduction in gas': 706365, 'in gas price': 423223, 'gas price reduction': 344016, 'price reduction in': 676134, 'reduction in pollution': 706368, 'in pollution made': 426830, 'pollution made rudy': 663907, 'made rudy giuliani': 507946, 'rudy giuliani disappear': 727071, 'giuliani disappear 19': 350346, 'disappear 19 cornavirusoutbreak': 244030, '19 cornavirusoutbreak pandemic': 6046, 'cornavirusoutbreak pandemic heelcomic': 203616, 'pandemic heelcomic comedy': 635611, 'heelcomic comedy comedian': 388777, 'comedy comedian laugh': 187738, 'steady': 799112, 'underway': 940964, 'and around': 58395, 'about foodsupply': 25271, 'foodsupply in': 318206, 'coronacrisis but': 204534, 'but domestic': 145584, 'domestic supply': 253234, 'currently steady': 221677, 'steady plan': 799136, 'keep it': 471604, 'way are': 969469, 'are underway': 91304, 'underway in': 940965, 'of increased': 585076, 'demand interesting': 235704, 'interesting read': 441600, 'many people in': 514512, 'the and around': 848682, 'and around the': 58399, 'world are worried': 1009329, 'worried about foodsupply': 1010490, 'about foodsupply in': 25272, 'foodsupply in the': 318207, 'of the coronacrisis': 590896, 'the coronacrisis but': 851777, 'coronacrisis but domestic': 204535, 'but domestic supply': 145585, 'domestic supply is': 253236, 'supply is currently': 825437, 'is currently steady': 447004, 'currently steady plan': 221678, 'steady plan to': 799137, 'plan to keep': 658299, 'to keep it': 908806, 'keep it that': 471623, 'it that way': 461503, 'that way are': 847339, 'way are underway': 969471, 'are underway in': 91305, 'underway in light': 940969, 'light of increased': 489556, 'of increased demand': 585077, 'increased demand interesting': 433276, 'demand interesting read': 235705, 'fitted': 309539, 'sterilize': 799859, 'askgovwhitmer': 95921, 'can impose': 158732, 'impose retail': 419260, 'store regulation': 809787, 'regulation more': 708079, 'more specifically': 540433, 'specifically grocery': 788283, 'their essential': 873173, 'employee fitted': 273851, 'fitted with': 309542, 'with glove': 998621, 'and sterilize': 72348, 'sterilize their': 799862, 'their steel': 874820, 'steel cart': 799317, 'cart on': 165344, 'which covid': 985789, 'remains alive': 709991, 'alive for': 41817, 'for up': 327458, 'to day': 903949, 'day askgovwhitmer': 227323, 'can impose retail': 158733, 'impose retail store': 419261, 'retail store regulation': 718690, 'store regulation more': 809788, 'regulation more specifically': 708080, 'more specifically grocery': 540434, 'specifically grocery store': 788284, 'store to have': 810775, 'to have their': 907323, 'have their essential': 383049, 'their essential employee': 873174, 'essential employee fitted': 281001, 'employee fitted with': 273852, 'fitted with glove': 309543, 'with glove and': 998622, 'glove and face': 352558, 'mask and sterilize': 518373, 'and sterilize their': 72349, 'sterilize their steel': 799863, 'their steel cart': 874821, 'steel cart on': 799318, 'cart on which': 165345, 'on which covid': 605278, 'which covid 19': 985790, '19 remains alive': 10091, 'remains alive for': 709992, 'alive for up': 41818, 'for up to': 327460, 'up to day': 946368, 'to day askgovwhitmer': 903950, 'many state': 514723, 'state like': 795736, 'like assam': 489835, 'assam do': 96295, 'financial resource': 306556, 'for three': 327172, 'week no': 976563, 'one ha': 606384, 'ha stock': 372065, 'stock or': 802581, 'or preparation': 616673, 'preparation for': 670032, 'up it': 945235, 'difficult for': 242219, 'many state like': 514725, 'state like assam': 795737, 'like assam do': 489836, 'assam do not': 96296, 'have the financial': 382984, 'the financial resource': 855224, 'financial resource to': 306558, 'resource to tackle': 714915, 'tackle the lockdown': 831609, 'lockdown for three': 499401, 'for three week': 327177, 'three week no': 894112, 'week no one': 976568, 'no one ha': 564937, 'one ha stock': 606392, 'ha stock or': 372067, 'stock or preparation': 802590, 'or preparation for': 616674, 'preparation for 21': 670033, '21 day price': 14996, 'day price too': 228248, 'price too are': 677085, 'too are going': 924588, 'going up it': 355787, 'up it will': 945251, 'will be difficult': 992427, 'be difficult for': 114457, 'difficult for to': 242233, 'for to manage': 327226, 'choosing': 177937, 'masked': 519613, 'entire grocery': 278681, 'add do': 31422, 'not treat': 572265, 'people choosing': 647464, 'choosing to': 177942, 'mask though': 519380, 'doing something': 252674, 'something wrong': 785153, 'wrong or': 1013071, 'or though': 617441, 'though you': 892948, 'fear them': 301387, 'them many': 876006, 'many masked': 514267, 'masked know': 519618, 'best practice': 127840, 'practice for': 668560, 'thank you and': 841689, 'you and thanks': 1017008, 'the entire grocery': 854357, 'entire grocery industry': 278682, 'grocery industry like': 364628, 'industry like to': 435968, 'like to add': 491571, 'to add do': 900055, 'add do not': 31423, 'do not treat': 249874, 'not treat people': 572267, 'treat people choosing': 930871, 'people choosing to': 647465, 'choosing to wear': 177946, 'wear mask though': 974407, 'mask though they': 519382, 're doing something': 698547, 'doing something wrong': 252676, 'something wrong or': 785154, 'wrong or though': 1013072, 'or though you': 617442, 'though you need': 892949, 'need to fear': 555931, 'to fear them': 905702, 'fear them many': 301388, 'them many masked': 876007, 'many masked know': 514269, 'masked know the': 519619, 'know the best': 476811, 'the best practice': 849542, 'best practice for': 127844, 'practice for them': 668571, 'costar': 208186, 'newer': 560047, 'estate market': 282146, 'market new': 516752, 'by costar': 152240, 'costar found': 208187, 'found la': 330271, 'la rental': 478206, 'particularly for': 642679, 'for newer': 323845, 'newer apartment': 560048, 'apartment appear': 81389, 'way down': 969556, 'down are': 256530, 'you renter': 1020904, 'renter anyone': 711297, 'experiencing the': 291708, 'drop reach': 260378, 'me please': 523337, 'the real estate': 865221, 'real estate market': 701155, 'estate market new': 282153, 'market new report': 516753, 'new report by': 559444, 'report by costar': 711844, 'by costar found': 152241, 'costar found la': 208188, 'found la rental': 330272, 'la rental price': 478207, 'rental price particularly': 711268, 'price particularly for': 675836, 'particularly for newer': 642682, 'for newer apartment': 323846, 'newer apartment appear': 560049, 'apartment appear to': 81390, 'appear to be': 82123, 'to be on': 901420, 'the way down': 871150, 'way down are': 969558, 'down are you': 256532, 'are you renter': 91844, 'you renter anyone': 1020906, 'renter anyone experiencing': 711298, 'anyone experiencing the': 80318, 'experiencing the drop': 291709, 'the drop reach': 853712, 'drop reach out': 260379, 'out to me': 627663, 'to me please': 909948, 'plexiglas': 661027, 'far no': 298863, 'one from': 606325, 'our head': 623360, 'office seems': 595537, 'have jumped': 381189, 'jumped at': 467921, 'the chance': 850658, 'chance to': 171791, 'stand on': 793559, 'on cash': 599841, 'for shift': 325543, 'shift with': 758467, 'or plexiglas': 616630, 'plexiglas way': 661045, 'so far no': 777044, 'far no one': 298865, 'no one from': 564933, 'one from our': 606328, 'from our head': 336777, 'our head office': 623362, 'head office seems': 385789, 'office seems to': 595538, 'seems to have': 746880, 'to have jumped': 907262, 'have jumped at': 381191, 'jumped at the': 467922, 'at the chance': 100906, 'the chance to': 850663, 'chance to stand': 171819, 'to stand on': 915160, 'stand on cash': 793560, 'on cash for': 599842, 'cash for shift': 166237, 'for shift with': 325546, 'shift with no': 758468, 'with no mask': 999765, 'no mask or': 564712, 'mask or plexiglas': 519074, 'or plexiglas way': 616631, 'plexiglas way to': 661046, 'to go grocery': 906802, 'go grocery store': 353627, 'escaping': 280327, 'shoe': 759649, 'to should': 914535, 'an education': 55607, 'how have': 407968, 'survive without': 829298, 'amp water': 54806, 'water whilst': 969258, 'whilst escaping': 987631, 'escaping war': 280330, 'war we': 966592, 'so quick': 778099, 'quick to': 694408, 'to judge': 908699, 'judge them': 467639, 'not very': 572387, 'good at': 356785, 'at being': 98118, 'their shoe': 874698, 'due to should': 261948, 'to should be': 914536, 'should be an': 765552, 'be an education': 113599, 'an education on': 55608, 'on how have': 601402, 'how have to': 407975, 'have to survive': 383314, 'to survive without': 916056, 'survive without food': 829300, 'without food amp': 1002652, 'food amp water': 313154, 'amp water whilst': 54815, 'water whilst escaping': 969259, 'whilst escaping war': 987632, 'escaping war we': 280331, 'war we are': 966593, 'are so quick': 90214, 'so quick to': 778101, 'quick to judge': 694411, 'to judge them': 908702, 'judge them but': 467640, 'them but not': 875498, 'but not very': 146579, 'not very good': 572389, 'very good at': 955185, 'good at being': 356787, 'at being in': 98119, 'being in their': 125308, 'in their shoe': 429775, 'overwhelming': 631735, 'the6ix': 872232, 'facing overwhelming': 295556, 'overwhelming demand': 631738, 'chain warn': 171220, 'delivery delay': 233853, 'delay via': 232757, 'via canada': 955845, 'canada ontario': 160516, 'ontario toronto': 611633, 'toronto the6ix': 926001, 'the6ix stayathome': 872235, 'facing overwhelming demand': 295557, 'overwhelming demand grocery': 631743, 'demand grocery chain': 235589, 'grocery chain warn': 364371, 'chain warn of': 171221, 'warn of food': 966943, 'food delivery delay': 314117, 'delivery delay via': 233858, 'delay via canada': 232758, 'via canada ontario': 955846, 'canada ontario toronto': 160518, 'ontario toronto the6ix': 611634, 'toronto the6ix stayathome': 926002, 'jason': 464839, 'skypes': 773274, 'unnecessarily': 942843, 'stageit': 793235, 'on jason': 601727, 'jason offer': 464858, 'offer skypes': 594793, 'skypes for': 773275, '100 care': 1853, 'care package': 164134, 'for 200': 318738, '200 but': 13458, 'cannot because': 161658, 'because where': 119833, 'live food': 495813, 'really hard': 702259, 'get due': 346918, 'buyer cannot': 149602, 'cannot risk': 162068, 'risk spending': 723893, 'spending unnecessarily': 789035, 'unnecessarily if': 942860, 'it go': 458254, 'go tip': 354263, 'on stageit': 603627, 'stageit now': 793236, 'get call': 346736, 'that it covid': 844701, '19 it on': 8146, 'it on jason': 460046, 'on jason offer': 601729, 'jason offer skypes': 464859, 'offer skypes for': 594794, 'skypes for 100': 773276, 'for 100 care': 318626, '100 care package': 1854, 'care package for': 164136, 'package for 200': 633273, 'for 200 but': 318739, '200 but cannot': 13459, 'but cannot because': 145379, 'cannot because where': 161662, 'because where live': 119834, 'where live food': 984985, 'live food is': 495814, 'food is really': 315146, 'is really hard': 451302, 'really hard to': 702262, 'hard to get': 378066, 'to get due': 906466, 'get due to': 346919, 'to panic buyer': 911389, 'panic buyer cannot': 637560, 'buyer cannot risk': 149603, 'cannot risk spending': 162069, 'risk spending unnecessarily': 723894, 'spending unnecessarily if': 789036, 'unnecessarily if you': 942861, 'you can afford': 1017615, 'afford it go': 34713, 'it go tip': 458267, 'go tip on': 354264, 'tip on stageit': 898862, 'on stageit now': 603628, 'stageit now get': 793237, 'now get call': 574770, 'get call from': 346738, 'blink': 132714, 'geared': 345011, 'quota': 694971, 'oil rising': 597402, 'rising little': 723243, 'little after': 495227, 'after russia': 36135, 'russia signal': 728569, 'signal it': 769302, 'see price': 745596, 'little higher': 495386, 'higher did': 395578, 'they blink': 881567, 'blink saudi': 132715, 'saudi haven': 737269, 'haven answered': 383740, 'answered yet': 78195, 'is look': 449438, 'new round': 559515, 'round of': 726340, 'of talk': 590586, 'talk geared': 833796, 'geared at': 345012, 'at quota': 100234, 'quota cut': 694972, 'cut wait': 223625, 'wait and': 964072, 'see on': 745497, 'one economy': 606224, 'economy figure': 267868, 'figure strongly': 305236, 'strongly amidst': 814216, '19 shutdown': 10518, 'oil rising little': 597403, 'rising little after': 723244, 'little after russia': 495228, 'after russia signal': 36136, 'russia signal it': 728570, 'signal it would': 769303, 'it would like': 462599, 'to see price': 914060, 'see price little': 745603, 'price little higher': 675076, 'little higher did': 495387, 'higher did they': 395579, 'did they blink': 240866, 'they blink saudi': 881568, 'blink saudi haven': 132716, 'saudi haven answered': 737270, 'haven answered yet': 383741, 'answered yet but': 78196, 'yet but my': 1016022, 'but my guess': 146431, 'guess is look': 367992, 'is look for': 449441, 'look for new': 502365, 'for new round': 323831, 'new round of': 559516, 'round of talk': 726347, 'of talk geared': 590588, 'talk geared at': 833797, 'geared at quota': 345013, 'at quota cut': 100235, 'quota cut wait': 694973, 'cut wait and': 223626, 'wait and see': 964075, 'and see on': 71140, 'see on this': 745500, 'on this one': 604624, 'this one economy': 889235, 'one economy figure': 606225, 'economy figure strongly': 267869, 'figure strongly amidst': 305237, 'strongly amidst covid': 814217, 'covid 19 shutdown': 213796, 'reminds': 710642, 'birdbox': 131359, 'after day': 35535, 'home went': 402473, 'went out': 979080, 'out just': 626461, 'just now': 469343, 'grocery road': 364910, 'road parking': 724489, 'parking and': 642058, 'supermarket were': 823783, 'were empty': 979560, 'that scary': 846151, 'scary man': 741160, 'man it': 512127, 'it reminds': 460706, 'reminds me': 710645, 'me of': 523242, 'of birdbox': 580715, 'birdbox movie': 131364, 'movie birdbox': 543992, 'birdbox staysafestayhome': 131366, 'after day at': 35537, 'day at home': 227332, 'at home went': 99167, 'home went out': 402474, 'went out just': 979088, 'out just now': 626467, 'just now to': 469352, 'now to buy': 576164, 'buy grocery road': 148758, 'grocery road parking': 364911, 'road parking and': 724490, 'parking and supermarket': 642059, 'and supermarket were': 72750, 'supermarket were empty': 823784, 'were empty that': 979574, 'empty that scary': 275174, 'that scary man': 846152, 'scary man it': 741161, 'man it reminds': 512128, 'it reminds me': 460707, 'reminds me of': 710648, 'me of birdbox': 523243, 'of birdbox movie': 580716, 'birdbox movie birdbox': 131365, 'movie birdbox staysafestayhome': 543994, 'togetherathome': 921066, 'have great': 380828, 'great weekend': 363108, 'weekend stay': 977411, 'happy thing': 377696, 'thing will': 884986, 'get better': 346663, 'better soon': 128477, 'soon toiletpaper': 785873, 'toiletpaper socialdistancing': 922490, 'socialdistancing togetherathome': 780820, 'togetherathome saturdaymorning': 921071, 'have great weekend': 380837, 'great weekend stay': 363109, 'weekend stay safe': 977414, 'and happy thing': 64180, 'happy thing will': 377698, 'thing will get': 884990, 'will get better': 993497, 'get better soon': 346669, 'better soon toiletpaper': 128478, 'soon toiletpaper socialdistancing': 785874, 'toiletpaper socialdistancing togetherathome': 922494, 'socialdistancing togetherathome saturdaymorning': 780821, 'yolo socialdistanacing': 1016536, 'distraction yolo socialdistanacing': 247914, 'criticized': 218772, 'small farmer': 774946, 'farmer reliant': 299490, 'on restaurant': 603168, 'and direct': 61371, 'with little': 999254, 'little end': 495329, 'end in': 275845, 'in sight': 427938, 'sight trillion': 769064, 'stimulus includes': 801552, 'includes support': 431814, 'for ag': 319076, 'ag but': 36773, 'but ha': 145834, 'been criticized': 120904, 'criticized doing': 218777, 'doing little': 252511, 'little for': 495350, 'for smaller': 325670, 'smaller scale': 775293, 'scale operation': 739907, 'small farmer reliant': 774947, 'farmer reliant on': 299491, 'reliant on restaurant': 709260, 'on restaurant and': 603169, 'restaurant and direct': 716282, 'and direct to': 61374, 'consumer sale are': 198856, 'sale are feeling': 732061, 'feeling the financial': 303073, '19 with little': 12134, 'with little end': 999255, 'little end in': 495330, 'end in sight': 275846, 'in sight trillion': 427949, 'sight trillion stimulus': 769065, 'trillion stimulus includes': 932004, 'stimulus includes support': 801553, 'includes support for': 431815, 'support for ag': 826506, 'for ag but': 319077, 'ag but ha': 36774, 'but ha been': 145835, 'ha been criticized': 369764, 'been criticized doing': 120905, 'criticized doing little': 218778, 'doing little for': 252512, 'little for smaller': 495351, 'for smaller scale': 325671, 'smaller scale operation': 775294, 'pile': 656480, 'uncaring': 939553, 'apparently we': 82036, 'world that': 1010040, 'that stock': 846489, 'stock pile': 802626, 'pile food': 656491, 'food wonder': 317659, 'because these': 119680, 'selfish stupid': 748278, 'stupid rude': 815452, 'rude and': 727029, 'and and': 58132, 'and uncaring': 74597, 'uncaring about': 939554, 'others guess': 621435, 'guess so': 368034, 'so stockpiling': 778270, 'stockpiling panickbuyinguk': 804046, 'panickbuyinguk stayathome': 639238, 'apparently we are': 82037, 'we are the': 970736, 'the only country': 862296, 'only country in': 610280, 'the world that': 871983, 'world that stock': 1010045, 'that stock pile': 846494, 'stock pile food': 802629, 'pile food wonder': 656495, 'food wonder why': 317660, 'wonder why is': 1004040, 'why is it': 991112, 'is it because': 449012, 'it because these': 456761, 'because these people': 119682, 'people are selfish': 647070, 'are selfish stupid': 89938, 'selfish stupid rude': 748279, 'stupid rude and': 815453, 'rude and and': 727030, 'and and uncaring': 58138, 'and uncaring about': 74598, 'uncaring about others': 939555, 'about others guess': 25880, 'others guess so': 621436, 'guess so stockpiling': 368035, 'so stockpiling panickbuyinguk': 778271, 'stockpiling panickbuyinguk stayathome': 804047, 'therona': 879557, 'you trying': 1021939, 'coordinate for': 203181, 'store therona': 810655, 'when you trying': 984610, 'you trying to': 1021941, 'trying to coordinate': 934786, 'to coordinate for': 903499, 'coordinate for the': 203182, 'grocery store therona': 365853, 'eua': 283296, 'gas the': 344150, 'the sell': 866684, 'off dragged': 593778, 'dragged european': 258178, 'european gas': 283576, 'price further': 674142, 'further down': 342037, 'wednesday on': 975673, 'of collapse': 581520, 'to 16': 899516, '16 year': 4194, 'and fall': 62633, 'in eua': 422624, 'eua price': 283299, 'to 21': 899610, '21 month': 15019, 'month low': 537838, 'gas the sell': 344152, 'the sell off': 866689, 'sell off dragged': 748815, 'off dragged european': 593779, 'dragged european gas': 258179, 'european gas price': 283577, 'gas price further': 343970, 'price further down': 674143, 'further down on': 342039, 'down on wednesday': 257044, 'on wednesday on': 605176, 'wednesday on the': 975674, 'back of collapse': 107167, 'of collapse in': 581522, 'price to 16': 676955, 'to 16 year': 899520, '16 year low': 4195, 'year low and': 1014709, 'low and fall': 505125, 'and fall in': 62635, 'fall in eua': 296947, 'in eua price': 422625, 'eua price to': 283303, 'price to 21': 676956, 'to 21 month': 899613, '21 month low': 15020, 'enquiry': 277803, 'relating': 708649, 'experiencing high': 291656, 'high volume': 395513, 'of enquiry': 583127, 'enquiry due': 277809, 'and event': 62358, 'event cancellation': 284954, 'cancellation related': 161061, 'coronavirus read': 206619, 'advice for': 33365, 'right travel': 722368, 'cancellation relating': 161063, 'relating to': 708650, 'are experiencing high': 86343, 'experiencing high volume': 291658, 'high volume of': 395515, 'volume of enquiry': 960154, 'of enquiry due': 583128, 'enquiry due to': 277810, 'due to travel': 262004, 'to travel and': 917722, 'travel and event': 930251, 'and event cancellation': 62359, 'event cancellation related': 284959, 'cancellation related to': 161062, '19 coronavirus read': 6119, 'coronavirus read our': 206621, 'read our advice': 700496, 'our advice for': 622031, 'advice for consumer': 33368, 'for consumer for': 320259, 'consumer for the': 197525, 'latest on consumer': 481472, 'on consumer right': 600075, 'consumer right travel': 198831, 'right travel and': 722369, 'event cancellation relating': 284960, 'cancellation relating to': 161064, 'relating to covid': 708652, 'postman': 666716, 'this terrible': 890488, 'terrible pandemic': 838420, 'more respect': 540241, 'our wonderful': 625392, 'wonderful nh': 1004100, 'staff unskilled': 793029, 'unskilled worker': 943490, 'worker supermarket': 1007852, 'worker postman': 1007616, 'postman waste': 666740, 'waste collector': 968095, 'collector etc': 186560, 'keep this': 472129, 'hope that after': 403640, 'that after this': 842520, 'after this terrible': 36415, 'this terrible pandemic': 890490, 'terrible pandemic is': 838421, 'pandemic is over': 635788, 'is over people': 450719, 'over people will': 630493, 'will have more': 993652, 'have more respect': 381505, 'more respect for': 540244, 'respect for our': 714997, 'for our wonderful': 324312, 'our wonderful nh': 625394, 'wonderful nh staff': 1004101, 'nh staff unskilled': 562108, 'staff unskilled worker': 793030, 'unskilled worker such': 943494, 'worker such healthcare': 1007848, 'healthcare worker supermarket': 387387, 'worker supermarket worker': 1007861, 'supermarket worker postman': 824075, 'worker postman waste': 1007617, 'postman waste collector': 666741, 'waste collector etc': 968097, 'collector etc they': 186561, 'who keep this': 989157, 'keep this country': 472131, 'this country running': 886968, 'grocery market': 364713, 'supermarket hour': 820796, 'senior wishing': 750451, 'wishing everyone': 996876, 'everyone health': 287002, 'safety during': 730516, 'grocery market and': 364714, 'market and supermarket': 515994, 'and supermarket hour': 72723, 'supermarket hour for': 820799, 'for senior wishing': 325486, 'senior wishing everyone': 750452, 'wishing everyone health': 996877, 'everyone health and': 287003, 'and safety during': 70743, 'safety during these': 730518, 'during these trying': 263246, 'rosy': 726152, 'pleading': 659581, 'scrambling': 742560, 'med': 525867, 'trumpmeltdown': 934093, 'if thing': 415141, 'thing were': 884972, 'were rosy': 980080, 'rosy lying': 726153, 'lying claim': 507067, 'claim healthcare': 179741, 'worker wouldn': 1008301, 'wouldn be': 1012434, 'be pleading': 116442, 'pleading for': 659582, 'for supply': 326038, 'supply governor': 825334, 'governor wouldn': 361030, 'be scrambling': 117024, 'scrambling patient': 742561, 'patient would': 644322, 'would have': 1011865, 'have med': 381455, 'med we': 525932, 'would all': 1011497, 'have handsanitizer': 380895, 'handsanitizer and': 376476, 'toiletpaper trumpmeltdown': 922770, 'if thing were': 415143, 'thing were rosy': 884976, 'were rosy lying': 980081, 'rosy lying claim': 726154, 'lying claim healthcare': 507068, 'claim healthcare worker': 179742, 'healthcare worker wouldn': 387400, 'worker wouldn be': 1008302, 'wouldn be pleading': 1012445, 'be pleading for': 116443, 'pleading for supply': 659586, 'for supply governor': 326046, 'supply governor wouldn': 825335, 'governor wouldn be': 361031, 'wouldn be scrambling': 1012446, 'be scrambling patient': 117025, 'scrambling patient would': 742562, 'patient would have': 644323, 'would have med': 1011884, 'have med we': 381457, 'med we would': 525933, 'we would all': 973963, 'would all have': 1011501, 'all have handsanitizer': 43049, 'have handsanitizer and': 380896, 'handsanitizer and toiletpaper': 376478, 'and toiletpaper trumpmeltdown': 74247, 'single grocery': 771305, 'employee work': 274459, 'work harder': 1005240, 'the nigeria': 861796, 'nigeria lockdowneffect': 562764, 'lockdowneffect stayathome': 500267, 'every single grocery': 286184, 'single grocery store': 771306, 'store employee work': 807577, 'employee work harder': 274461, 'work harder than': 1005242, 'harder than the': 378187, 'than the president': 841262, 'of the nigeria': 591275, 'the nigeria lockdowneffect': 861799, 'nigeria lockdowneffect stayathome': 562765, 'perfumery': 651554, 'mullin3': 545637, 'smart take': 775433, 'take in': 832216, 'the perfumery': 863553, 'perfumery and': 651555, 'other distillery': 620117, 'distillery currently': 247744, 'currently making': 221584, 'sanitizer by': 734617, 'by mullin3': 153266, 'mullin3 for': 545638, 'smart take in': 775434, 'take in time': 832222, 'in time here': 430082, 'time here are': 896922, 'of the perfumery': 591330, 'the perfumery and': 863554, 'perfumery and other': 651556, 'and other distillery': 68313, 'other distillery currently': 620118, 'distillery currently making': 247745, 'currently making hand': 221585, 'hand sanitizer by': 375333, 'sanitizer by mullin3': 734623, 'by mullin3 for': 153267, 'gonna need': 356587, 'need more': 555251, 'more toiletpaper': 540809, 'gonna need more': 356588, 'need more toiletpaper': 555269, 'meanwhile in': 524986, 'italy toiletpaper': 462955, 'toiletpaperapocalypse socialdistancing': 922920, 'socialdistancing stay': 780721, 'quarantine funny': 692214, 'funny video': 341809, 'video fun': 956748, 'meanwhile in italy': 524991, 'in italy toiletpaper': 424322, 'italy toiletpaper toiletpaperpanic': 462956, 'toiletpaper toiletpaperpanic toiletpaperapocalypse': 922710, 'toiletpaperpanic toiletpaperapocalypse socialdistancing': 923272, 'toiletpaperapocalypse socialdistancing stay': 922921, 'socialdistancing stay home': 780722, 'stay home quarantine': 796997, 'home quarantine funny': 401933, 'quarantine funny video': 692216, 'funny video fun': 341810, 'depend': 237306, 'cook': 202714, 'you regularly': 1020894, 'regularly depend': 707911, 'depend on': 237309, 'on going': 601127, 'eat ordering': 266013, 'ordering food': 618964, 're hungry': 698842, 'hungry then': 411318, 'then learning': 877301, 'learning how': 484211, 'to cook': 903476, 'cook also': 202719, 'potential spread': 667139, 'one trip': 607311, 'supermarket versus': 823640, 'versus several': 954953, 'several trip': 753950, 'to from': 906260, 'from takeaway': 337536, 'takeaway spot': 832906, 'spot for': 790053, 'if you regularly': 415509, 'you regularly depend': 1020895, 'regularly depend on': 707912, 'depend on going': 237314, 'on going out': 601134, 'out to eat': 627639, 'to eat ordering': 904897, 'eat ordering food': 266014, 'ordering food when': 618971, 'food when you': 317576, 'you re hungry': 1020650, 're hungry then': 698847, 'hungry then learning': 411319, 'then learning how': 877302, 'learning how to': 484212, 'how to cook': 409001, 'to cook also': 903477, 'cook also help': 202720, 'also help to': 48350, 'help to limit': 390781, 'limit the potential': 492514, 'the potential spread': 864128, 'potential spread of': 667141, '19 one trip': 8982, 'one trip to': 607312, 'the supermarket versus': 868884, 'supermarket versus several': 823641, 'versus several trip': 954954, 'several trip to': 753951, 'trip to from': 932190, 'to from takeaway': 906267, 'from takeaway spot': 337537, 'takeaway spot for': 832907, 'spot for you': 790055, 'for you or': 328077, 'you or delivery': 1020224, 'policethesupermarkets': 663292, 'fatal': 300221, 'policethesupermarkets fatal': 663293, 'fatal pathogen': 300231, 'pathogen death': 644076, 'death is': 230094, 'spreading in': 790980, 'hungry please': 411299, 'me where': 523950, 'are stoppanicbuying': 90538, 'stoppanicbuying socialdistancing': 805608, 'socialdistancing police': 780611, 'police could': 662959, 'could you': 209840, 'policethesupermarkets fatal pathogen': 663294, 'fatal pathogen death': 300232, 'pathogen death is': 644077, 'death is spreading': 230100, 'is spreading in': 452193, 'spreading in supermarket': 790984, 'supermarket and vulnerable': 819097, 'vulnerable people are': 961080, 'people are going': 646989, 'are going hungry': 86888, 'going hungry please': 355205, 'hungry please tell': 411300, 'tell me where': 837031, 'me where the': 523954, 'where the police': 985242, 'the police are': 863914, 'police are stoppanicbuying': 662921, 'are stoppanicbuying socialdistancing': 90539, 'stoppanicbuying socialdistancing police': 805609, 'socialdistancing police could': 780612, 'police could you': 662960, 'indication': 435020, 'have also': 379205, 'also fallen': 48193, 'fallen significantly': 297180, 'significantly since': 769617, 'economic fallout': 267096, '19 shock': 10467, 'shock is': 759465, 'is ongoing': 450515, 'ongoing and': 607596, 'and increasingly': 65135, 'increasingly difficult': 433768, 'to predict': 911985, 'predict but': 669554, 'clear indication': 181267, 'indication that': 435030, 'that thing': 846967, 'worse for': 1010929, 'for zimbabwe': 328254, 'commodity price have': 189273, 'price have also': 674411, 'have also fallen': 379212, 'also fallen significantly': 48194, 'fallen significantly since': 297181, 'significantly since the': 769618, 'since the start': 770906, 'crisis the economic': 218169, 'the economic fallout': 853903, 'economic fallout from': 267097, 'fallout from the': 297383, 'from the covid': 337659, 'covid 19 shock': 213786, '19 shock is': 10469, 'shock is ongoing': 759466, 'is ongoing and': 450517, 'ongoing and increasingly': 607597, 'and increasingly difficult': 65136, 'increasingly difficult to': 433769, 'difficult to predict': 242344, 'to predict but': 911986, 'predict but there': 669556, 'there are clear': 878082, 'are clear indication': 85303, 'clear indication that': 181268, 'indication that thing': 435033, 'that thing will': 846974, 'will get much': 993513, 'get much worse': 347621, 'much worse for': 545475, 'worse for zimbabwe': 1010935, 'houring': 406125, 'wakefield': 964636, 'in sainsburys': 427634, 'sainsburys supermarket': 731788, 'supermarket que': 822107, 'que for': 693313, 'four houring': 330614, 'houring tested': 406126, '19 hundred': 7629, 'hundred in': 410983, 'in wakefield': 430656, 'wakefield could': 964639, 'be infected': 115476, 'infected critical': 436558, 'care bed': 163867, 'bed running': 120416, 'out only': 626937, 'only five': 610445, 'five left': 309628, 'wakefield area': 964637, 'area people': 92161, 'man in sainsburys': 512117, 'in sainsburys supermarket': 427635, 'sainsburys supermarket que': 731789, 'supermarket que for': 822108, 'que for four': 693314, 'for four houring': 321687, 'four houring tested': 330615, 'houring tested positive': 406127, 'covid 19 hundred': 213235, '19 hundred in': 7630, 'hundred in wakefield': 410984, 'in wakefield could': 430658, 'wakefield could be': 964640, 'could be infected': 208887, 'be infected critical': 115480, 'infected critical care': 436559, 'critical care bed': 218523, 'care bed running': 163868, 'bed running out': 120417, 'running out only': 728029, 'out only five': 626939, 'only five left': 610446, 'five left in': 309629, 'left in wakefield': 485521, 'in wakefield area': 430657, 'wakefield area people': 964638, 'area people to': 92162, 'people to be': 649879, 'to be left': 901360, 'left to die': 485685, 'patent': 643980, 'arses': 94112, 'so this': 778495, 'now competition': 574421, 'competition to': 191745, 'own the': 632258, 'to vaccine': 918101, 'is any': 445754, 'any country': 79076, 'country going': 210689, 'the vaccine': 870618, 'vaccine recipe': 951759, 'recipe away': 704445, 'away to': 106068, 'all sure': 44571, 'private company': 678879, 'west will': 980550, 'will charge': 992928, 'charge high': 173254, 'any vaccine': 80005, 'vaccine and': 951649, 'have patent': 381903, 'patent coming': 643983, 'coming out': 188161, 'out their': 627445, 'their arses': 872512, 'so this is': 778499, 'is now competition': 450272, 'now competition to': 574422, 'competition to own': 191748, 'to own the': 911337, 'own the right': 632260, 'right to vaccine': 722359, 'to vaccine is': 918103, 'vaccine is any': 951722, 'is any country': 445756, 'any country going': 79078, 'country going to': 210696, 'going to give': 355609, 'to give the': 906717, 'give the vaccine': 350756, 'the vaccine recipe': 870624, 'vaccine recipe away': 951760, 'recipe away to': 704446, 'away to all': 106069, 'to all sure': 900289, 'all sure that': 44572, 'sure that the': 827700, 'that the private': 846810, 'the private company': 864483, 'private company in': 678881, 'in the west': 429673, 'the west will': 871400, 'west will charge': 980551, 'will charge high': 992929, 'charge high price': 173255, 'high price for': 395249, 'price for any': 673927, 'for any vaccine': 319429, 'any vaccine and': 80006, 'vaccine and have': 951652, 'and have patent': 64261, 'have patent coming': 381904, 'patent coming out': 643984, 'coming out their': 188165, 'out their arses': 627446, 'countermeasure': 210334, 'enough capacity': 277342, 'capacity to': 162584, 'support all': 826334, 'all customer': 42499, 'customer especially': 222341, 'current high': 221225, 'care with': 164271, 'with short': 1000701, 'term rental': 838261, 'truck learn': 932826, 'our countermeasure': 622577, 'countermeasure and': 210335, 'business here': 143842, '19 update we': 11692, 'update we have': 947309, 'have enough capacity': 380443, 'enough capacity to': 277343, 'capacity to support': 162594, 'to support all': 915901, 'support all customer': 826335, 'all customer especially': 42501, 'customer especially the': 222343, 'especially the current': 280621, 'the current high': 852640, 'current high demand': 221226, 'high demand in': 395014, 'demand in food': 235668, 'in food retail': 422982, 'food retail and': 316203, 'health care with': 386254, 'care with short': 164273, 'with short term': 1000703, 'short term rental': 764747, 'term rental truck': 838265, 'rental truck learn': 711286, 'truck learn more': 932827, 'about our countermeasure': 25887, 'our countermeasure and': 622578, 'countermeasure and what': 210337, 'and what this': 75490, 'what this mean': 982436, 'mean for your': 524456, 'for your business': 328125, 'your business here': 1023061, 'scolded': 742294, 'aa': 24076, 'just scolded': 469722, 'scolded my': 742295, 'my father': 548245, 'father who': 300318, 'who wanted': 989930, 'tomorrow for': 924081, 'walk when': 964918, 'need anything': 554450, 'anything at': 80691, 'home what': 402476, 'the older': 862150, 'older generation': 598606, 'generation why': 345650, 'why cannot': 990867, 'cannot they': 162180, 'they understand': 883600, 'suffer the': 817235, 'most if': 542386, '19 aa': 4777, 'just scolded my': 469723, 'scolded my father': 742297, 'my father who': 548252, 'father who wanted': 300322, 'who wanted to': 989931, 'wanted to go': 966254, 'supermarket tomorrow for': 823499, 'tomorrow for walk': 924087, 'for walk when': 327630, 'walk when we': 964919, 'when we don': 984439, 'we don need': 971388, 'don need anything': 253754, 'need anything at': 554451, 'anything at home': 80692, 'at home what': 99168, 'home what wrong': 402480, 'wrong with the': 1013164, 'with the older': 1001410, 'the older generation': 862152, 'older generation why': 598608, 'generation why cannot': 345652, 'why cannot they': 990876, 'cannot they understand': 162183, 'they understand that': 883603, 'understand that they': 940736, 'that they will': 846961, 'they will suffer': 883892, 'will suffer the': 995025, 'suffer the most': 817237, 'the most if': 860997, 'most if they': 542388, 'if they get': 415111, 'they get infected': 882168, 'infected with covid': 436667, 'covid 19 aa': 212567, 'valuable': 952011, 'new2020': 560008, 'most valuable': 542850, 'valuable commodity': 952017, 'commodity 2020': 189107, '2020 happy': 14356, 'happy mother': 377658, 'mother day': 543078, 'day mum': 227996, 'mum toiletpaper': 545957, 'toiletroll stayathome': 923382, 'stayathome new2020': 797552, 'new2020 mothersday2020': 560009, 'the most valuable': 861059, 'most valuable commodity': 542852, 'valuable commodity 2020': 952018, 'commodity 2020 happy': 189108, '2020 happy mother': 14357, 'happy mother day': 377659, 'mother day mum': 543085, 'day mum toiletpaper': 227997, 'mum toiletpaper toiletroll': 545958, 'toiletpaper toiletroll stayathome': 922734, 'toiletroll stayathome new2020': 923383, 'stayathome new2020 mothersday2020': 797553, 'more idiot': 539470, 'idiot at': 413459, 'work causing': 1004985, 'causing unnecessary': 168143, 'unnecessary problem': 942925, 'problem of': 679620, 'supermarket he': 820721, 'he got': 385002, 'got enough': 358537, 'enough rice': 277598, 'rice to': 721154, 'to last': 909058, 'last him': 480267, 'year panicshopping': 1014902, 'panicshopping pricegougers': 639450, 'pricegougers idiot': 677774, 'more idiot at': 539471, 'idiot at work': 413462, 'at work causing': 101594, 'work causing unnecessary': 1004986, 'causing unnecessary problem': 168145, 'unnecessary problem of': 942926, 'problem of empty': 679624, 'empty shelf in': 275073, 'shelf in supermarket': 757219, 'in supermarket he': 428614, 'supermarket he got': 820723, 'he got enough': 385003, 'got enough rice': 358538, 'enough rice to': 277599, 'rice to last': 721155, 'to last him': 909064, 'last him for': 480268, 'him for year': 396606, 'for year panicshopping': 328012, 'year panicshopping pricegougers': 1014903, 'panicshopping pricegougers idiot': 639451, 'trusted': 934334, 'iconmeals': 412813, 'prep': 669993, 'jessejames10': 465248, 'sponsored': 789833, 'dodge': 251269, 'some folk': 782847, 'not being': 568524, 'get quality': 347865, 'from trusted': 338155, 'trusted source': 934345, 'source with': 786586, 'with iconmeals': 998928, 'iconmeals they': 412816, 'the meal': 860339, 'meal prep': 524248, 'prep company': 669998, 'company you': 191364, 'can trust': 160051, 'trust stock': 934311, 'up save': 945946, 'save 10': 737459, '10 off': 1575, 'off my': 593979, 'my code': 547720, 'code jessejames10': 185373, 'jessejames10 sponsored': 465249, 'sponsored ad': 789834, 'ad dodge': 31090, 'some folk are': 782848, 'folk are worried': 312100, 'worried about not': 1010508, 'about not being': 25812, 'not being able': 568525, 'able to get': 24486, 'to get quality': 906569, 'get quality food': 347867, 'quality food from': 691785, 'food from trusted': 314619, 'from trusted source': 338157, 'trusted source with': 934351, 'source with iconmeals': 786587, 'with iconmeals they': 998930, 'iconmeals they are': 412817, 'are the meal': 90862, 'the meal prep': 860342, 'meal prep company': 524250, 'prep company you': 669999, 'company you can': 191365, 'you can trust': 1017816, 'can trust stock': 160055, 'trust stock up': 934312, 'stock up save': 803112, 'up save 10': 945947, 'save 10 off': 737461, '10 off my': 1578, 'off my code': 593981, 'my code jessejames10': 547722, 'code jessejames10 sponsored': 185374, 'jessejames10 sponsored ad': 465250, 'sponsored ad dodge': 789835, 'paisley country': 634376, 'and his': 64590, 'his wife': 397912, 'wife kimberly': 991941, 'kimberly are': 474772, 'brad paisley country': 137527, 'paisley country star': 634377, 'paisley and his': 634369, 'and his wife': 64619, 'his wife kimberly': 397916, 'wife kimberly are': 991942, 'kimberly are helping': 474773, 'are helping the': 87111, 'helping the elderly': 391491, 'elderly in their': 270717, 'in their community': 429728, 'pay mortgage': 645002, 'mortgage due': 541889, 'coronavirus what': 207059, 'know where': 477011, 'turn for': 935668, 'help via': 390847, 'can pay mortgage': 159203, 'pay mortgage due': 645003, 'mortgage due to': 541890, 'to coronavirus what': 903576, 'coronavirus what you': 207062, 'to know where': 909004, 'know where to': 477019, 'where to turn': 985316, 'to turn for': 917842, 'turn for help': 935670, 'for help via': 322190, 'victoria restaurant': 956547, 'restaurant offer': 716598, 'offer it': 594673, 'it entire': 457835, 'entire stock': 278743, 'staff it': 792583, 'it close': 457183, 'close due': 182619, 'victoria restaurant offer': 956548, 'restaurant offer it': 716599, 'offer it entire': 594674, 'it entire stock': 457837, 'entire stock of': 278744, 'food to staff': 317292, 'to staff it': 915135, 'staff it close': 792584, 'it close due': 457184, 'close due to': 182620, 'interhill': 441670, 'unlike most': 942714, 'frontliners do': 338886, 'privilege to': 679039, 'their ration': 874527, 'ration and': 697631, 'grocery order': 364808, 'order takeaway': 618613, 'takeaway or': 832895, 'or have': 615575, 'their commitment': 872810, 'commitment towards': 189012, 'community interhill': 189928, 'unlike most of': 942715, 'of our medical': 587511, 'medical frontliners do': 526185, 'frontliners do not': 338888, 'the privilege to': 864495, 'privilege to drop': 679040, 'drop by the': 260148, 'by the supermarket': 154453, 'supermarket for their': 820424, 'for their ration': 326864, 'their ration and': 874528, 'ration and grocery': 697634, 'and grocery order': 63994, 'grocery order takeaway': 364814, 'order takeaway or': 618614, 'takeaway or have': 832896, 'or have food': 615582, 'have food delivery': 380653, 'food delivery in': 314133, 'delivery in view': 234120, 'view of their': 957131, 'of their commitment': 591650, 'their commitment towards': 872813, 'commitment towards the': 189014, 'towards the community': 927259, 'the community interhill': 851280, 'adaa': 31203, 'lax': 482575, 'great advice': 362488, 'advice here': 33400, 'here from': 393025, 'the adaa': 848336, 'adaa about': 31204, 'about coping': 25019, 'coping with': 203393, 'our situation': 624792, 'situation lax': 772366, 'some great advice': 782982, 'great advice here': 362490, 'advice here from': 33402, 'here from the': 393030, 'from the adaa': 337592, 'the adaa about': 848337, 'adaa about coping': 31205, 'about coping with': 25020, 'coping with our': 203402, 'with our situation': 1000017, 'our situation lax': 624794, '19 trend': 11575, 'trend see': 931438, 'pandemic consumer': 635185, 'covid 19 trend': 213984, '19 trend see': 11580, 'trend see the': 931440, 'see the pandemic': 745869, 'the pandemic consumer': 862935, 'pandemic consumer impact': 635191, 'ruby': 727019, 'princess': 678212, 'guardian': 367883, 'ruby princess': 727020, 'princess linked': 678213, 'to 11th': 899460, '11th covid': 2749, 'death criminal': 230010, 'criminal investigation': 216848, 'investigation launched': 443880, 'launched it': 482002, 'it happened': 458465, 'happened world': 377304, 'world news': 1009830, 'news the': 560863, 'the guardian': 856905, 'ruby princess linked': 727021, 'princess linked to': 678214, 'linked to 11th': 493986, 'to 11th covid': 899462, '11th covid 19': 2750, '19 death criminal': 6442, 'death criminal investigation': 230011, 'criminal investigation launched': 216849, 'investigation launched it': 443881, 'launched it happened': 482005, 'it happened world': 458470, 'happened world news': 377305, 'world news the': 1009833, 'news the guardian': 560866, 'dispose': 246287, 'but people': 146761, 'please dont': 659934, 'dont dispose': 255208, 'dispose your': 246296, 'your glove': 1024055, 'amp face': 53770, 'parking garage': 642070, 'garage lot': 343492, 'dont know who': 255247, 'know who need': 477038, 'to know this': 908998, 'know this but': 476889, 'this but people': 886647, 'but people please': 146771, 'people please dont': 649132, 'please dont dispose': 659936, 'dont dispose your': 255209, 'dispose your glove': 246297, 'your glove amp': 1024056, 'glove amp face': 352547, 'amp face mask': 53771, 'face mask at': 294518, 'mask at the': 518434, 'the supermarket parking': 868745, 'supermarket parking garage': 821931, 'parking garage lot': 642071, 'onpoli': 611530, 'ordered mask': 618866, 'sanitizer from': 734942, 'evening but': 284865, 'be dead': 114339, 'dead before': 229137, 'they arrive': 881493, 'arrive cdnpoli': 93910, 'cdnpoli onpoli': 168664, 'onpoli stayhome': 611536, 'stayhome amazon': 797940, 'ordered mask and': 618867, 'mask and hand': 518333, 'hand sanitizer from': 375414, 'sanitizer from this': 734952, 'from this evening': 337995, 'this evening but': 887436, 'evening but could': 284866, 'but could be': 145465, 'could be dead': 208855, 'be dead before': 114340, 'dead before they': 229138, 'before they arrive': 123211, 'they arrive cdnpoli': 881494, 'arrive cdnpoli onpoli': 93911, 'cdnpoli onpoli stayhome': 168666, 'onpoli stayhome amazon': 611537, 'anhydrous': 76530, 'ammonia': 52929, 'input': 438964, 'downside': 257695, 'industrial': 435529, 'anhydrous ammonia': 76531, 'ammonia is': 52934, 'is off': 450405, 'off 100': 593591, '100 from': 1904, 'from same': 337152, 'same week': 733415, 'week last': 976460, 'year price': 1014908, 'on input': 601576, 'input like': 438979, 'like anhydrous': 489798, 'ammonia could': 52930, 'could continue': 209043, 'continue the': 201147, 'the trend': 869959, 'trend to': 931475, 'the downside': 853629, 'downside china': 257699, 'large importer': 479699, 'importer of': 419204, 'of ammonia': 580089, 'ammonia for': 52932, 'for industrial': 322553, 'industrial purpose': 435565, 'anhydrous ammonia is': 76533, 'ammonia is off': 52935, 'is off 100': 450406, 'off 100 from': 593592, '100 from same': 1905, 'from same week': 337153, 'same week last': 733416, 'week last year': 976462, 'last year price': 480732, 'year price on': 1014910, 'price on input': 675685, 'on input like': 601577, 'input like anhydrous': 438980, 'like anhydrous ammonia': 489799, 'anhydrous ammonia could': 76532, 'ammonia could continue': 52931, 'could continue the': 209044, 'continue the trend': 201148, 'the trend to': 869968, 'trend to the': 931479, 'to the downside': 916651, 'the downside china': 853630, 'downside china is': 257700, 'china is large': 176751, 'is large importer': 449232, 'large importer of': 479700, 'importer of ammonia': 419205, 'of ammonia for': 580090, 'ammonia for industrial': 52933, 'for industrial purpose': 322555, 'your supermarket': 1026034, 'staff there': 792958, 'there working': 879371, 'hard at': 377870, 'the minute': 860671, 'minute and': 533726, 'and trying': 74511, 'demand calling': 235096, 'calling them': 156633, 'them doesn': 875614, 'doesn help': 251830, 'help coronacrisis': 389541, 'be nice to': 116084, 'nice to your': 562503, 'to your supermarket': 919033, 'your supermarket staff': 1026063, 'supermarket staff there': 822899, 'staff there working': 792961, 'there working hard': 879373, 'working hard at': 1008679, 'hard at the': 377872, 'at the minute': 101023, 'the minute and': 860672, 'minute and trying': 533732, 'and trying to': 74513, 'the demand calling': 853087, 'demand calling them': 235097, 'calling them doesn': 156634, 'them doesn help': 875615, 'doesn help coronacrisis': 251834, 'alarmist': 40713, 'overly': 631308, 'nih': 563205, 'to sound': 914930, 'sound alarmist': 786260, 'alarmist overly': 40716, 'overly expensive': 631313, 'expensive or': 291271, 'or press': 616681, 'press panic': 671066, 'panic button': 637455, 'button but': 148203, 'the nih': 861814, 'nih asked': 563206, 'asked for': 95740, 'for domestic': 320809, 'domestic feed': 253187, 'feed produce': 302363, 'produce to': 680471, 'be tested': 117553, 'after being': 35398, 'being killed': 125359, 'killed livestock': 474598, 'livestock food': 496266, 'product more': 681416, 'want to sound': 966124, 'to sound alarmist': 914931, 'sound alarmist overly': 786261, 'alarmist overly expensive': 40717, 'overly expensive or': 631314, 'expensive or press': 291272, 'or press panic': 616682, 'press panic button': 671067, 'panic button but': 637456, 'button but ha': 148204, 'but ha the': 145842, 'ha the nih': 372215, 'the nih asked': 861815, 'nih asked for': 563207, 'asked for domestic': 95743, 'for domestic feed': 320811, 'domestic feed produce': 253188, 'feed produce to': 302364, 'produce to be': 680472, 'to be tested': 901581, 'be tested for': 117557, 'tested for the': 839308, '19 after being': 4853, 'after being killed': 35413, 'being killed livestock': 125361, 'killed livestock food': 474599, 'livestock food product': 496267, 'food product more': 316027, '1bn': 12592, 'tesco crisis': 838689, 'crisis share': 218026, 'share slump': 755211, 'slump supermarket': 774706, 'giant face': 349770, 'face near': 294631, 'near 1bn': 553451, '1bn hit': 12597, 'hit over': 398362, 'over cost': 630123, 'tesco crisis share': 838690, 'crisis share slump': 218027, 'share slump supermarket': 755212, 'slump supermarket giant': 774707, 'supermarket giant face': 820501, 'giant face near': 349772, 'face near 1bn': 294632, 'near 1bn hit': 553452, '1bn hit over': 12598, 'hit over cost': 398364, 'nt': 576720, 'worker so': 1007789, 'so sorry': 778248, 'hear that': 387984, 'are behaving': 84815, 'behaving like': 123835, 'like nt': 490889, 'dear supermarket worker': 229895, 'supermarket worker so': 824084, 'worker so sorry': 1007792, 'so sorry to': 778251, 'sorry to hear': 786095, 'to hear that': 907414, 'hear that your': 388002, 'that your customer': 847764, 'your customer are': 1023405, 'customer are behaving': 222114, 'are behaving like': 84820, 'behaving like nt': 123836, 'could prove': 209539, 'prove to': 686123, 'very serious': 955516, 'serious economic': 751378, 'economic shock': 267274, 'shock leading': 759472, 'deep recession': 231916, 'recession in': 704291, '2020 however': 14371, 'not last': 570325, 'last expert': 480201, 'expert predict': 291916, 'predict the': 669583, 'worst will': 1011306, 'over within': 630946, 'within three': 1002446, 'three to': 894084, 'to six': 914687, 'six month': 772664, 'could trigger': 209790, 'trigger strong': 931887, 'strong economic': 814021, 'economic recovery': 267229, 'recovery and': 705289, 'will bounce': 992845, 'back quickly': 107242, 'the 19 could': 847912, '19 could prove': 6159, 'could prove to': 209540, 'prove to be': 686124, 'to be very': 901621, 'be very serious': 117985, 'very serious economic': 955518, 'serious economic shock': 751379, 'economic shock leading': 267276, 'shock leading to': 759473, 'leading to deep': 483755, 'to deep recession': 904050, 'deep recession in': 231919, 'recession in 2020': 704293, 'in 2020 however': 419839, '2020 however the': 14374, 'however the crisis': 409471, 'crisis will not': 218418, 'will not last': 994240, 'not last expert': 570326, 'last expert predict': 480202, 'expert predict the': 291919, 'predict the worst': 669584, 'the worst will': 872082, 'worst will be': 1011307, 'will be over': 992595, 'be over within': 116308, 'over within three': 630947, 'within three to': 1002447, 'three to six': 894088, 'to six month': 914689, 'six month this': 772674, 'month this could': 538066, 'this could trigger': 886938, 'could trigger strong': 209791, 'trigger strong economic': 931888, 'strong economic recovery': 814022, 'economic recovery and': 267231, 'recovery and price': 705291, 'and price will': 69488, 'price will bounce': 677554, 'will bounce back': 992846, 'bounce back quickly': 136807, 'fabulous': 294260, 'we open': 972653, 'open always': 612037, 'will remain': 994624, 'remain constant': 709740, 'and stable': 72182, 'stable with': 791968, 'regular supply': 707882, 'of fabulous': 583354, 'fabulous local': 294261, 'local product': 498301, 'product there': 681716, 'definitely no': 232369, 'panic farmer': 638088, 'and producer': 69556, 'always working': 49810, 'have wonderful': 383618, 'and drink': 61724, 'drink inthistogether': 258843, 'tomorrow we open': 924237, 'we open always': 972654, 'open always we': 612038, 'we will remain': 973898, 'will remain constant': 994628, 'remain constant and': 709741, 'constant and stable': 195603, 'and stable with': 72183, 'stable with our': 791969, 'with our regular': 1000015, 'our regular supply': 624576, 'regular supply of': 707883, 'supply of fabulous': 825623, 'of fabulous local': 583355, 'fabulous local product': 294263, 'local product there': 498303, 'product there is': 681717, 'there is definitely': 878545, 'is definitely no': 447085, 'definitely no need': 232370, 'to panic farmer': 911396, 'panic farmer and': 638089, 'farmer and producer': 299259, 'and producer are': 69558, 'producer are always': 680569, 'are always working': 84510, 'always working hard': 49811, 'hard to ensure': 378061, 'ensure we have': 278124, 'we have wonderful': 971988, 'have wonderful food': 383620, 'food and drink': 313215, 'and drink inthistogether': 61730, 'scrutinised': 742943, 'collusion': 186678, 'nb': 553192, 'critical that': 218684, 'that any': 842672, 'any drop': 79144, 'in farm': 422794, 'of beef': 580609, 'beef is': 120516, 'is scrutinised': 451695, 'scrutinised for': 742944, 'for collusion': 320155, 'collusion between': 186679, 'between processor': 128866, 'processor amp': 680055, 'amp that': 54636, 'we watch': 973760, 'watch what': 968609, 'happens in': 377477, 'supermarket price': 822055, 'price nb': 675307, 'nb competition': 553193, 'competition rule': 191737, 'rule currently': 727230, 'currently suspended': 221686, 'suspended for': 829612, 'critical that any': 218685, 'that any drop': 842676, 'any drop in': 79145, 'drop in farm': 260245, 'in farm gate': 422796, 'farm gate price': 299126, 'gate price of': 344353, 'price of beef': 675412, 'of beef is': 580613, 'beef is scrutinised': 120517, 'is scrutinised for': 451696, 'scrutinised for collusion': 742945, 'for collusion between': 320156, 'collusion between processor': 186680, 'between processor amp': 128867, 'processor amp that': 680056, 'amp that we': 54641, 'that we watch': 847404, 'we watch what': 973761, 'watch what happens': 968610, 'what happens in': 981566, 'happens in relation': 377481, 'relation to supermarket': 708676, 'to supermarket price': 915831, 'supermarket price nb': 822058, 'price nb competition': 675308, 'nb competition rule': 553194, 'competition rule currently': 191739, 'rule currently suspended': 727231, 'currently suspended for': 221687, 'arising': 92806, 'secretary': 743942, 'simrandeep': 770334, 'singh': 771196, 'jammu': 464444, 'situation arising': 772198, 'arising due': 92807, '19 secretary': 10378, 'secretary food': 743954, 'affair simrandeep': 34085, 'simrandeep singh': 770335, 'singh today': 771201, 'issued an': 456037, 'an order': 56690, 'order declaring': 618160, 'declaring 16': 231271, '16 service': 4165, 'service essential': 752337, 'and commodity': 60153, 'commodity within': 189342, 'within the': 1002426, 'the union': 870402, 'union territory': 941944, 'territory of': 838570, 'of jammu': 585506, 'jammu and': 464445, 'and kashmir': 65742, 'view of the': 957130, 'the situation arising': 867244, 'situation arising due': 772199, 'arising due to': 92808, 'covid 19 secretary': 213757, '19 secretary food': 10379, 'secretary food civil': 743955, 'consumer affair simrandeep': 196101, 'affair simrandeep singh': 34086, 'simrandeep singh today': 770336, 'singh today issued': 771202, 'today issued an': 919732, 'issued an order': 456039, 'an order declaring': 56695, 'order declaring 16': 618161, 'declaring 16 service': 231272, '16 service essential': 4167, 'service essential service': 752338, 'essential service and': 281496, 'service and commodity': 752075, 'and commodity within': 60157, 'commodity within the': 189343, 'within the union': 1002442, 'the union territory': 870411, 'union territory of': 941945, 'territory of jammu': 838571, 'of jammu and': 585507, 'jammu and kashmir': 464446, 'neat': 553883, 'syrup': 831062, 'at neat': 99863, 'neat line': 553884, 'line pharmacy': 493357, 'pharmacy lady': 654368, 'lady who': 478868, 'came in': 157012, 'bought six': 136707, 'six syrup': 772696, 'syrup for': 831065, 'child said': 176194, 'wa 50': 961387, '50 50': 19589, '50 cure': 19663, 'coronavirus before': 205554, 'before but': 122680, 'president confirmed': 670788, 'confirmed today': 194209, 'up immediately': 945139, 'at neat line': 99864, 'neat line pharmacy': 553885, 'line pharmacy lady': 493358, 'pharmacy lady who': 654369, 'lady who came': 478869, 'who came in': 988364, 'came in and': 157013, 'in and bought': 420352, 'and bought six': 59112, 'bought six syrup': 136708, 'six syrup for': 772697, 'syrup for child': 831066, 'for child said': 320059, 'child said they': 176195, 'said they said': 731484, 'they said it': 883242, 'said it wa': 731172, 'it wa 50': 462054, 'wa 50 50': 961388, '50 50 cure': 19590, '50 cure for': 19664, 'cure for coronavirus': 220738, 'for coronavirus before': 320376, 'coronavirus before but': 205555, 'before but the': 122682, 'but the president': 147383, 'the president confirmed': 864257, 'president confirmed today': 670789, 'confirmed today that': 194210, 'that it should': 844742, 'should be used': 765759, 'be used for': 117914, 'used for sure': 949910, 'for sure the': 326078, 'sure the price': 827716, 'the price would': 864441, 'price would go': 677661, 'would go up': 1011847, 'go up immediately': 354433, 'crisis on': 217808, 'on energy': 600560, 'energy consumption': 276416, 'consumption oil': 199918, 'price human': 674603, 'human capital': 410451, 'capital strategy': 162688, 'and esg': 62234, 'esg join': 280361, '19 crisis on': 6292, 'crisis on energy': 217811, 'on energy consumption': 600562, 'energy consumption oil': 276418, 'consumption oil price': 199919, 'oil price human': 597164, 'price human capital': 674604, 'human capital strategy': 410452, 'capital strategy and': 162689, 'strategy and esg': 812608, 'and esg join': 62235, 'charity especially': 173612, 'especially food': 280476, 'and pantry': 68680, 'and fewer': 62819, 'across minnesota': 29389, 'minnesota including': 533611, 'including united': 432237, 'united way': 942262, 'of greater': 584319, 'greater twin': 363256, 'twin city': 936570, 'charity especially food': 173613, 'especially food shelf': 280479, 'food shelf and': 316453, 'shelf and pantry': 756751, 'and pantry are': 68681, 'struggling to meet': 814511, 'to meet increased': 910030, 'for service and': 325497, 'service and fewer': 752086, 'and fewer volunteer': 62821, 'to across minnesota': 900004, 'across minnesota including': 29390, 'minnesota including united': 533613, 'including united way': 432238, 'united way of': 942266, 'way of greater': 969757, 'of greater twin': 584322, 'greater twin city': 363257, 'biking': 130439, 'my 1st': 547133, 'day off': 228120, 'off work': 594406, 'work this': 1005854, 'already making': 47518, 'making me': 511192, 'me do': 522659, 'do funny': 249325, 'funny thing': 341800, 'thing wa': 884946, 'wa biking': 961703, 'biking to': 130440, 'supermarket actually': 818772, 'actually said': 30940, 'said good': 731085, 'morning to': 541505, 'to complete': 903135, 'complete stranger': 192155, 'my 1st day': 547134, '1st day off': 12732, 'day off work': 228133, 'off work this': 594414, 'work this covid': 1005855, '19 is already': 7932, 'is already making': 445525, 'already making me': 47520, 'making me do': 511195, 'me do funny': 522661, 'do funny thing': 249326, 'funny thing wa': 341803, 'thing wa biking': 884948, 'wa biking to': 961704, 'biking to the': 130441, 'the supermarket actually': 868445, 'supermarket actually said': 818773, 'actually said good': 30941, 'said good morning': 731086, 'good morning to': 357413, 'morning to complete': 541507, 'to complete stranger': 903138, 'derrell': 237885, 'peel': 646251, 'agnews': 38311, 'topstory': 925868, 'cattlemarkets': 167386, 'farmincome': 299601, 'ag economist': 36790, 'economist derrell': 267533, 'derrell peel': 237886, 'peel say': 646259, 'say market': 738919, 'market recovery': 516966, 'recovery from': 705330, 'from impact': 336010, 'impact could': 417622, 'be lengthy': 115707, 'lengthy read': 486336, 'and listen': 66221, 'listen agnews': 494662, 'agnews topstory': 38312, 'topstory market': 925869, 'market cattlemarkets': 516154, 'cattlemarkets farmincome': 167387, 'farmincome price': 299602, 'ag economist derrell': 36791, 'economist derrell peel': 267534, 'derrell peel say': 237887, 'peel say market': 646260, 'say market recovery': 738920, 'market recovery from': 516967, 'recovery from impact': 705333, 'from impact could': 336011, 'impact could be': 417623, 'could be lengthy': 208892, 'be lengthy read': 115708, 'lengthy read more': 486337, 'read more and': 700420, 'more and listen': 538616, 'and listen agnews': 66222, 'listen agnews topstory': 494663, 'agnews topstory market': 38313, 'topstory market cattlemarkets': 925870, 'market cattlemarkets farmincome': 516155, 'cattlemarkets farmincome price': 167388, 'sanitizer with': 736128, 'with simple': 1000738, 'simple ingredient': 770040, 'ingredient 19': 438342, 'hand sanitizer with': 375671, 'sanitizer with simple': 736140, 'with simple ingredient': 1000740, 'simple ingredient 19': 770041, 'excited': 289520, 'never did': 557947, 'did think': 240873, 'think would': 885795, 'this excited': 887478, 'excited to': 289569, 'find toilet': 307344, 'never did think': 557948, 'did think would': 240874, 'think would be': 885796, 'would be this': 1011660, 'be this excited': 117703, 'this excited to': 887479, 'excited to find': 289573, 'to find toilet': 905948, 'find toilet paper': 307345, 'paper toiletpaper pandemic': 640950, 'lorain': 503293, 'battling': 112858, 'whomever': 990574, 'in lorain': 424921, 'lorain are': 503294, 'adjusting store': 32355, 'give people': 350643, 'up without': 946706, 'without battling': 1002514, 'battling large': 112861, 'crowd please': 219234, 'with whomever': 1002098, 'whomever you': 990581, 'feel could': 302601, 'could use': 209803, 'information more': 437892, 'store in lorain': 808335, 'in lorain are': 424922, 'lorain are adjusting': 503295, 'are adjusting store': 84233, 'adjusting store hour': 32356, 'store hour to': 808212, 'hour to give': 406024, 'to give people': 906702, 'give people most': 350646, 'people most vulnerable': 648796, 'most vulnerable to': 542898, 'vulnerable to the': 961236, 'to the opportunity': 916926, 'opportunity to stock': 613729, 'stock up without': 803135, 'up without battling': 946707, 'without battling large': 1002515, 'battling large crowd': 112862, 'large crowd please': 479636, 'crowd please share': 219235, 'share with whomever': 755359, 'with whomever you': 1002099, 'whomever you feel': 990582, 'you feel could': 1018536, 'feel could use': 302602, 'could use this': 209810, 'use this information': 949728, 'this information more': 888114, 'information more here': 437893, 'canon': 162249, 'india canon': 434335, 'canon employee': 162250, 'employee across': 273511, 'across india': 29347, 'india come': 434347, 'together contribute': 920751, 'to pm': 911843, 'pm care': 661873, 'care fund': 163968, 'india canon employee': 434336, 'canon employee across': 162251, 'employee across india': 273512, 'across india come': 29349, 'india come together': 434348, 'come together contribute': 187625, 'together contribute to': 920752, 'contribute to pm': 201881, 'to pm care': 911845, 'pm care fund': 661875, 'temperaturecontrolsolutions': 837413, 'prolong': 683615, 'industry also': 435617, 'also need': 48546, 'about preparing': 25981, 'post disaster': 666095, 'disaster recovery': 244238, 'recovery to': 705407, 'running our': 728019, 'our temperaturecontrolsolutions': 625117, 'temperaturecontrolsolutions can': 837414, 'can prolong': 159315, 'prolong your': 683618, 'your stock': 1025951, 'stock helping': 802228, 'helping you': 391549, 'running after': 727895, 'the food industry': 855561, 'food industry also': 315003, 'industry also need': 435618, 'also need to': 48553, 'think about preparing': 885097, 'about preparing for': 25982, 'preparing for post': 670333, 'for post disaster': 324637, 'post disaster recovery': 666096, 'disaster recovery to': 244239, 'recovery to keep': 705409, 'keep the food': 472045, 'chain running our': 171068, 'running our temperaturecontrolsolutions': 728020, 'our temperaturecontrolsolutions can': 625118, 'temperaturecontrolsolutions can prolong': 837415, 'can prolong your': 159316, 'prolong your stock': 683619, 'your stock helping': 1025953, 'stock helping you': 802229, 'helping you keep': 391554, 'you keep the': 1019451, 'keep the supply': 472076, 'chain running after': 171064, 'running after 19': 727896, 'swine': 830385, 'graduate': 361708, 'ridden': 721410, 'seemingly': 746735, 'manufactured': 513396, 'realistic': 701661, 'conclusion': 193316, 'the swine': 869058, 'swine flu': 830386, 'flu while': 311498, 'while in': 986936, 'in graduate': 423398, 'graduate school': 361719, 'school spent': 741929, 'spent month': 789144, 'month bed': 537605, 'bed ridden': 120414, 'ridden million': 721415, 'million caught': 532109, 'caught it': 167431, 'and thousand': 74061, 'thousand died': 893388, 'died don': 241528, 'don remember': 253866, 'of seemingly': 589457, 'seemingly manufactured': 746740, 'manufactured mass': 513406, 'mass hysteria': 519786, 'hysteria logic': 412461, 'logic and': 500643, 'number lead': 576908, 'to realistic': 912855, 'realistic conclusion': 701662, 'conclusion about': 193317, 'caught the swine': 167462, 'the swine flu': 869059, 'swine flu while': 830388, 'flu while in': 311499, 'while in graduate': 986942, 'in graduate school': 423399, 'graduate school spent': 361720, 'school spent month': 741930, 'spent month bed': 789145, 'month bed ridden': 537606, 'bed ridden million': 120415, 'ridden million caught': 721416, 'million caught it': 532110, 'caught it around': 167432, 'it around the': 456590, 'world and thousand': 1009290, 'and thousand died': 74062, 'thousand died don': 893389, 'died don remember': 241529, 'don remember this': 253868, 'remember this type': 710355, 'type of seemingly': 937582, 'of seemingly manufactured': 589459, 'seemingly manufactured mass': 746741, 'manufactured mass hysteria': 513407, 'mass hysteria logic': 519789, 'hysteria logic and': 412462, 'logic and number': 500644, 'and number lead': 67880, 'number lead to': 576909, 'lead to realistic': 483381, 'to realistic conclusion': 912856, 'realistic conclusion about': 701663, 'conclusion about this': 193319, 'about this situation': 26659, 'nationally': 552688, 'regionally': 707531, 'rwanda will': 728753, 'will always': 992270, 'always do': 49530, 'continue supporting': 201139, 'supporting to': 827225, 'to seller': 914191, 'seller and': 748964, 'consumer nationally': 198177, 'nationally regionally': 552695, 'regionally and': 707532, 'and internationally': 65327, 'internationally by': 441878, 'by providing': 153673, 'providing effective': 686973, 'and efficient': 61962, 'efficient logistics': 269428, 'logistics let': 500769, 'all embrace': 42673, 'embrace shopping': 272487, 'and shipping': 71473, 'shipping to': 758931, 'rwanda will always': 728754, 'will always do': 992272, 'always do it': 49531, 'do it best': 249464, 'it best to': 456857, 'best to continue': 127941, 'to continue supporting': 903406, 'continue supporting to': 201141, 'supporting to seller': 827226, 'to seller and': 914192, 'seller and consumer': 748965, 'and consumer nationally': 60405, 'consumer nationally regionally': 198178, 'nationally regionally and': 552696, 'regionally and internationally': 707533, 'and internationally by': 65328, 'internationally by providing': 441879, 'by providing effective': 153675, 'providing effective and': 686974, 'effective and efficient': 269218, 'and efficient logistics': 61964, 'efficient logistics let': 269429, 'logistics let all': 500770, 'let all embrace': 486555, 'all embrace shopping': 42674, 'embrace shopping and': 272488, 'shopping and shipping': 762022, 'and shipping to': 71478, 'shipping to avoid': 758934, 'avoid the epidemic': 105321, 'realizing': 701928, 'wind': 995618, 'heat': 388489, 'invest': 443744, 'proof': 683985, 'today realizing': 920101, 'realizing how': 701929, 'how fragile': 407881, 'fragile our': 330898, 'our system': 625061, 'system are': 831111, 'are wind': 91641, 'wind storm': 995633, 'storm on': 811830, 'on saturday': 603292, 'saturday meant': 737041, 'meant no': 524890, 'no power': 565155, 'power no': 667645, 'no heat': 564411, 'heat cancelled': 388492, 'cancelled grocery': 161117, 'delivery mean': 234177, 'food trying': 317374, 'trying not': 934722, 'panic or': 638363, 'or immediately': 615736, 'immediately invest': 417118, 'invest in': 443750, 'in bunker': 421059, 'bunker but': 142675, 'but and': 145185, 'our are': 622106, 'future proof': 342432, 'proof my': 684001, 'my home': 548682, 'today realizing how': 920102, 'realizing how fragile': 701930, 'how fragile our': 407883, 'fragile our system': 330899, 'our system are': 625062, 'system are wind': 831119, 'are wind storm': 91642, 'wind storm on': 995634, 'storm on saturday': 811831, 'on saturday meant': 603300, 'saturday meant no': 737042, 'meant no power': 524891, 'no power no': 565159, 'power no heat': 667647, 'no heat cancelled': 564412, 'heat cancelled grocery': 388493, 'cancelled grocery delivery': 161118, 'grocery delivery mean': 364446, 'delivery mean no': 234178, 'mean no food': 524566, 'no food trying': 564281, 'food trying not': 317375, 'trying not to': 934723, 'to panic or': 911414, 'panic or immediately': 638367, 'or immediately invest': 615737, 'immediately invest in': 417119, 'invest in bunker': 443753, 'in bunker but': 421060, 'bunker but and': 142676, 'but and our': 145188, 'and our are': 68476, 'our are making': 622108, 'are making me': 87992, 'making me want': 511207, 'want to future': 966039, 'to future proof': 906348, 'future proof my': 342433, 'proof my home': 684002, 'worker start': 1007805, 'start dying': 794284, 'from coronavirus': 335009, 'coronavirus at': 205523, 'least four': 484474, 'four people': 330651, 'had worked': 373807, 'walmart trader': 965452, 'joe and': 466402, 'and giant': 63640, 'giant have': 349793, 'died in': 241569, 'day from': 227653, 'grocery worker start': 366189, 'worker start dying': 1007806, 'start dying from': 794286, 'dying from coronavirus': 263819, 'from coronavirus at': 335011, 'coronavirus at least': 205528, 'at least four': 99495, 'least four people': 484477, 'four people who': 330653, 'people who had': 650304, 'who had worked': 988892, 'had worked at': 373808, 'worked at walmart': 1006105, 'at walmart trader': 101479, 'walmart trader joe': 965453, 'trader joe and': 928708, 'joe and giant': 466403, 'and giant have': 63642, 'giant have died': 349795, 'have died in': 380269, 'died in recent': 241573, 'recent day from': 703860, 'day from covid': 227657, 'californian': 155636, 'caneedsyou': 161361, 'calling all': 156515, 'all californian': 42270, 'californian food': 155643, 'line providing': 493364, 'providing vulnerable': 687135, 'vulnerable californian': 960892, 'during but': 262480, 'but volunteer': 147699, 'volunteer are': 960223, 'demand ha': 235599, 'ha never': 371318, 'never been': 557886, 'been higher': 121283, 'higher ha': 395605, 'in but': 421092, 'now caneedsyou': 574339, 'caneedsyou visit': 161362, 'calling all californian': 156517, 'all californian food': 42271, 'californian food bank': 155644, 'bank are at': 109640, 'front line providing': 338596, 'line providing vulnerable': 493365, 'providing vulnerable californian': 687136, 'vulnerable californian food': 960893, 'californian food during': 155645, 'food during but': 314318, 'during but volunteer': 262486, 'but volunteer are': 147700, 'volunteer are low': 960226, 'and the demand': 73320, 'the demand ha': 853098, 'demand ha never': 235611, 'ha never been': 371319, 'never been higher': 557896, 'been higher ha': 121285, 'higher ha stepped': 395606, 'stepped in but': 799773, 'in but now': 421096, 'but now caneedsyou': 146598, 'now caneedsyou visit': 574340, 'caneedsyou visit to': 161363, 'query': 693449, 'googletrends': 358217, 'searchresults': 743343, 'gl': 351471, 'really interesting': 702344, 'interesting search': 441609, 'search topic': 743297, 'topic and': 925774, 'and search': 71104, 'search query': 743283, 'query you': 693462, 'can simply': 159626, 'simply search': 770278, 'search by': 743228, 'by your': 154784, 'location time': 498971, 'time period': 897475, 'period category': 651734, 'category search': 167209, 'search type': 743299, 'type googletrends': 937528, 'googletrends searchresults': 358218, 'searchresults my': 743344, 'my example': 548116, 'example wa': 288999, 'wa coronavirus': 961877, 'coronavirus gl': 205990, 'really interesting search': 702346, 'interesting search topic': 441610, 'search topic and': 743298, 'topic and search': 925776, 'and search query': 71107, 'search query you': 743284, 'query you can': 693463, 'you can simply': 1017785, 'can simply search': 159627, 'simply search by': 770279, 'search by your': 743229, 'by your location': 154789, 'your location time': 1024733, 'location time period': 498972, 'time period category': 897476, 'period category search': 651735, 'category search type': 167210, 'search type googletrends': 743300, 'type googletrends searchresults': 937529, 'googletrends searchresults my': 358219, 'searchresults my example': 743345, 'my example wa': 548117, 'example wa coronavirus': 289000, 'wa coronavirus gl': 961878, 'chase': 173880, 'an endless': 55738, 'endless chase': 276219, 'chase for': 173883, 'for toilet': 327246, 'toiletpaper animation': 921738, 'feel like an': 302698, 'like an endless': 489766, 'an endless chase': 55739, 'endless chase for': 276220, 'chase for toilet': 173884, 'for toilet paper': 327248, 'paper toiletpaper animation': 640944, 'designated': 238286, 'shopping should': 763877, 'have designated': 380237, 'designated day': 238290, 'day per': 228204, 'people 55': 646725, '55 and': 20364, 'older or': 598634, 'or disabled': 614977, 'disabled suggest': 243970, 'suggest tuesday': 817549, 'tuesday and': 935114, 'and friday': 63309, 'just for': 468742, 'not everyone': 569297, 'everyone can': 286764, 'up early': 944765, 'early to': 264720, 'open store': 612520, 'earlier help': 264452, 'shopping should have': 763881, 'should have designated': 766072, 'have designated day': 380238, 'designated day per': 238291, 'day per week': 228207, 'per week for': 651066, 'week for people': 976233, 'for people 55': 324442, 'people 55 and': 646726, '55 and older': 20365, 'and older or': 68042, 'older or disabled': 598635, 'or disabled suggest': 614981, 'disabled suggest tuesday': 243971, 'suggest tuesday and': 817550, 'tuesday and friday': 935115, 'and friday just': 63311, 'friday just for': 333250, 'just for them': 468761, 'for them not': 326910, 'them not everyone': 876053, 'not everyone can': 569298, 'everyone can get': 286769, 'get up early': 348563, 'up early to': 944771, 'early to open': 264733, 'to open store': 911006, 'open store earlier': 612521, 'store earlier help': 807420, 'earlier help others': 264453, 'buckscounty': 141701, 'need second': 555545, 'second mortgage': 743765, 'mortgage so': 541960, 'afford hand': 34700, 'emergency is': 272758, 'illegal call': 416205, 'call buckscounty': 155799, 'buckscounty consumer': 141702, 'need second mortgage': 555546, 'second mortgage so': 743766, 'mortgage so you': 541961, 'can afford hand': 157399, 'afford hand sanitizer': 34701, 'sanitizer price gouging': 735582, 'gouging in the': 359352, 'midst of an': 530779, 'of an emergency': 580107, 'an emergency is': 55678, 'emergency is illegal': 272761, 'is illegal call': 448665, 'illegal call buckscounty': 416206, 'call buckscounty consumer': 155800, 'buckscounty consumer protection': 141703, '0469315906': 936, 'atanda': 101705, 'afeez': 33973, 'ademola': 32146, 'gtbank': 367664, 'hustling': 411842, 'dem': 234854, '0469315906 atanda': 937, 'atanda afeez': 101706, 'afeez ademola': 33974, 'ademola gtbank': 32147, 'gtbank pls': 367665, 'sir help': 771580, 'me am': 522388, 'am young': 50585, 'young boy': 1022570, 'boy in': 137261, 'street of': 813045, 'of lagos': 585704, 'lagos hustling': 478931, 'hustling alone': 411843, 'alone mama': 46882, 'mama de': 511924, 'de house': 229072, 'house de': 406258, 'de call': 229043, 'call say': 156100, 'say she': 739125, 'she need': 756228, 'need money': 555244, 'house used': 406649, 'send dem': 749839, 'dem money': 234876, 'money every': 536734, 'every month': 286020, 'month but': 537626, '0469315906 atanda afeez': 938, 'atanda afeez ademola': 101707, 'afeez ademola gtbank': 33975, 'ademola gtbank pls': 32148, 'gtbank pls sir': 367666, 'pls sir help': 661179, 'sir help me': 771581, 'help me am': 390061, 'me am young': 522390, 'am young boy': 50586, 'young boy in': 1022571, 'boy in the': 137262, 'in the street': 429579, 'the street of': 868239, 'street of lagos': 813047, 'of lagos hustling': 585706, 'lagos hustling alone': 478932, 'hustling alone mama': 411844, 'alone mama de': 46883, 'mama de house': 511925, 'de house de': 229073, 'house de call': 406259, 'de call say': 229044, 'call say she': 156101, 'say she need': 739129, 'she need money': 756233, 'need money to': 555246, 'money to stock': 537119, 'food for house': 314542, 'for house used': 322408, 'house used to': 406650, 'used to send': 950087, 'to send dem': 914207, 'send dem money': 749840, 'dem money every': 234877, 'money every month': 536735, 'every month but': 286021, 'fooled': 318321, 'contacting': 200343, 'texting': 839981, 'taken advantage': 832932, 'of during': 582876, 'mom dad': 535716, 'dad kid': 224362, 'kid do': 473924, 'be fooled': 114900, 'fooled follow': 318324, 'follow these': 312553, 'step if': 799556, 'have question': 382128, 'about anyone': 24819, 'anyone contacting': 80242, 'contacting you': 200352, 'you by': 1017592, 'by phone': 153572, 'phone email': 654949, 'email texting': 272327, 'texting any': 839982, 'any thing': 79957, 'thing or': 884653, 'or way': 617734, 'way about': 969426, 'not be taken': 568467, 'be taken advantage': 117498, 'taken advantage of': 832933, 'advantage of during': 33000, 'of during the': 582877, 'during the mom': 263155, 'the mom dad': 860735, 'mom dad kid': 535718, 'dad kid do': 224363, 'kid do not': 473925, 'not be fooled': 568386, 'be fooled follow': 114901, 'fooled follow these': 318325, 'follow these step': 312559, 'these step if': 880724, 'step if you': 799557, 'you have question': 1019100, 'have question about': 382129, 'question about anyone': 693492, 'about anyone contacting': 24820, 'anyone contacting you': 80243, 'contacting you by': 200353, 'you by phone': 1017593, 'by phone email': 153576, 'phone email texting': 654950, 'email texting any': 272328, 'texting any thing': 839983, 'any thing or': 79959, 'thing or way': 884657, 'or way about': 617735, 'minimal': 533046, 'wa otherwise': 962869, 'otherwise an': 621824, 'an interesting': 56400, 'interesting article': 441509, 'article took': 94491, 'took huge': 925258, 'huge wrong': 410264, 'wrong turn': 1013139, 'turn at': 935647, 'end to': 276003, 'the overall': 862766, 'overall impact': 631018, 'ha so': 371976, 'far been': 298720, 'been minimal': 121527, 'what wa otherwise': 982519, 'wa otherwise an': 962870, 'otherwise an interesting': 621825, 'an interesting article': 56402, 'interesting article took': 441515, 'article took huge': 94492, 'took huge wrong': 925259, 'huge wrong turn': 410265, 'wrong turn at': 1013140, 'turn at the': 935648, 'the end to': 854308, 'end to be': 276005, 'to be sure': 901576, 'be sure the': 117472, 'sure the overall': 827715, 'the overall impact': 862768, 'overall impact of': 631019, '19 on the': 8968, 'global food system': 351953, 'food system ha': 317046, 'system ha so': 831194, 'ha so far': 371977, 'so far been': 777014, 'far been minimal': 298721, 'parenting': 641792, 'and child': 59825, 'child experience': 176084, 'experience covid': 291338, 're facing': 698659, 'facing similar': 295600, 'similar anxiety': 769885, 'anxiety and': 78649, 'and finding': 62898, 'finding some': 307536, 'some silver': 783874, 'lining learn': 493744, 'new parenting': 559258, 'parenting through': 641805, 'pandemic study': 636580, 'consumer research': 198748, 'research team': 713852, 'parent and child': 641568, 'and child experience': 59828, 'child experience covid': 176085, 'experience covid 19': 291339, '19 they re': 11314, 'they re facing': 883031, 're facing similar': 698663, 'facing similar anxiety': 295601, 'similar anxiety and': 769886, 'anxiety and finding': 78652, 'and finding some': 62902, 'finding some silver': 307538, 'some silver lining': 783875, 'silver lining learn': 769824, 'lining learn more': 493745, 'more from the': 539310, 'the new parenting': 861538, 'new parenting through': 559259, 'parenting through the': 641806, 'the pandemic study': 863111, 'pandemic study from': 636581, 'study from consumer': 814896, 'from consumer research': 334971, 'consumer research team': 198761, 'sad that': 729249, 'that uk': 847159, 'uk are': 938185, 'not doing': 569083, 'doing anything': 252295, 'profiteering during': 683024, 'this awful': 886472, 'awful time': 106241, 'time example': 896639, 'example among': 288864, 'among many': 53019, 'many that': 514788, 'been trading': 122265, 'trading for': 928858, 'day selling': 228331, 'selling antibacterial': 749156, 'antibacterial and': 78347, 'and baby': 58607, 'baby item': 106644, 'price obviously': 675387, 'obviously profit': 578849, 'profit are': 682663, 'important corvid19uk': 418774, 'corvid19uk coronacrisis': 207745, 'it sad that': 460831, 'sad that uk': 729256, 'that uk are': 847161, 'uk are not': 938193, 'are not doing': 88352, 'not doing anything': 569084, 'doing anything to': 252299, 'anything to stop': 80919, 'stop profiteering during': 804943, 'profiteering during this': 683028, 'during this awful': 263262, 'this awful time': 886475, 'awful time example': 106243, 'time example among': 896640, 'example among many': 288865, 'among many that': 53022, 'many that have': 514789, 'have been trading': 379725, 'been trading for': 122267, 'trading for day': 928859, 'for day selling': 320583, 'day selling antibacterial': 228332, 'selling antibacterial and': 749157, 'antibacterial and baby': 78349, 'and baby item': 58610, 'baby item at': 106645, 'item at inflated': 463129, 'inflated price obviously': 437056, 'price obviously profit': 675388, 'obviously profit are': 578850, 'profit are more': 682665, 'are more important': 88113, 'more important corvid19uk': 539488, 'important corvid19uk coronacrisis': 418775, 'envoy': 279220, 'david': 226974, 'nabarro': 551346, 'ndtv': 553430, 'watch india': 968449, 'ha chance': 370112, 'of really': 588802, 'really getting': 702220, 'getting ahead': 348828, 'it who': 462355, 'who special': 989645, 'special envoy': 787909, 'envoy dr': 279221, 'dr david': 257993, 'david nabarro': 226994, 'nabarro on': 551347, 'on ndtv': 602349, 'watch india ha': 968450, 'india ha chance': 434440, 'ha chance of': 370113, 'chance of really': 171767, 'of really getting': 588804, 'really getting on': 702222, 'getting on top': 349158, 'of this virus': 592064, 'this virus and': 890998, 'virus and getting': 957927, 'and getting ahead': 63618, 'getting ahead of': 348829, 'ahead of it': 39185, 'of it who': 585465, 'it who special': 462358, 'who special envoy': 989646, 'special envoy dr': 787910, 'envoy dr david': 279222, 'dr david nabarro': 257994, 'david nabarro on': 226995, 'nabarro on ndtv': 551348, 'commit': 188966, 'cookbook': 202800, 'alternatively': 49293, 'isolationtips': 455551, 'wellbeingtips': 978805, 'coronavirus life': 206226, 'life tip': 489127, 'tip commit': 898732, 'commit to': 188976, 'making recipe': 511304, 'recipe from': 704469, 'from cookbook': 334994, 'cookbook alternatively': 202801, 'alternatively use': 49294, 'app or': 81743, 'or website': 617752, 'website bbc': 975219, 'bbc good': 113075, 'have huge': 380993, 'huge stock': 410211, 'of recipe': 588830, 'recipe for': 704457, 'all family': 42753, 'family size': 298228, 'size and': 772757, 'and budget': 59231, 'budget isolationtips': 141804, 'isolationtips wellbeingtips': 455552, 'coronavirus life tip': 206227, 'life tip commit': 489128, 'tip commit to': 898733, 'commit to making': 188980, 'to making recipe': 909778, 'making recipe from': 511305, 'recipe from cookbook': 704471, 'from cookbook alternatively': 334995, 'cookbook alternatively use': 202802, 'alternatively use an': 49295, 'use an app': 949036, 'an app or': 55356, 'app or website': 81747, 'or website bbc': 617753, 'website bbc good': 975220, 'bbc good food': 113076, 'good food have': 357061, 'food have huge': 314784, 'have huge stock': 380998, 'huge stock of': 410212, 'stock of recipe': 802540, 'of recipe for': 588831, 'recipe for all': 704458, 'for all family': 319125, 'all family size': 42755, 'family size and': 298229, 'size and budget': 772758, 'and budget isolationtips': 59233, 'budget isolationtips wellbeingtips': 141805, 'hartman': 378584, 'spotlight': 790160, 'functionalfoods': 341308, 'functionality': 341311, 'immunity': 417387, 'opportunity in': 613642, 'in functional': 423181, 'functional food': 341294, 'beverage supplement': 129038, 'supplement in': 824414, 'coronavirus age': 205472, 'age new': 37851, 'new hartman': 558859, 'hartman group': 378585, 'group study': 366896, 'study launch': 814926, 'launch spotlight': 481945, 'spotlight on': 790171, 'on impact': 601501, 'coronavirus on': 206336, 'consumer wellness': 199502, 'wellness lifestyle': 978848, 'lifestyle functionalfoods': 489362, 'functionalfoods functionality': 341309, 'functionality supplement': 341314, 'supplement immunity': 824413, 'opportunity in functional': 613644, 'in functional food': 423182, 'functional food beverage': 341295, 'food beverage supplement': 313748, 'beverage supplement in': 129039, 'supplement in the': 824415, 'in the coronavirus': 429098, 'the coronavirus age': 851802, 'coronavirus age new': 205473, 'age new hartman': 37852, 'new hartman group': 558860, 'hartman group study': 378586, 'group study launch': 366897, 'study launch spotlight': 814927, 'launch spotlight on': 481946, 'spotlight on impact': 790172, 'on impact of': 601503, 'impact of coronavirus': 417761, 'of coronavirus on': 581952, 'coronavirus on consumer': 206338, 'on consumer wellness': 600083, 'consumer wellness lifestyle': 199503, 'wellness lifestyle functionalfoods': 978849, 'lifestyle functionalfoods functionality': 489363, 'functionalfoods functionality supplement': 341310, 'functionality supplement immunity': 341315, 'stigma': 800140, 'booster': 135053, 'fighting stigma': 305118, 'stigma corona': 800143, 'virus herb': 958278, 'herb and': 392566, 'and natural': 67441, 'natural food': 552826, 'for immunity': 322484, 'immunity booster': 417395, 'booster covid': 135054, '19 day': 6428, 'india so': 434614, 'is time': 453158, 'time demand': 896551, 'must aware': 546483, 'aware about': 105601, 'the healthy': 857203, 'healthy eating': 387590, 'eating and': 266171, 'for increasing': 322532, 'increasing immunity': 433622, 'immunity corona': 417404, 'virus affected': 957894, 'fighting stigma corona': 305119, 'stigma corona virus': 800144, 'corona virus herb': 204314, 'virus herb and': 958279, 'herb and natural': 392567, 'and natural food': 67442, 'natural food for': 552827, 'food for immunity': 314544, 'for immunity booster': 322485, 'immunity booster covid': 417396, 'booster covid 19': 135055, 'covid 19 day': 212914, '19 day per': 6431, 'day per day': 228205, 'day in india': 227798, 'in india so': 424052, 'india so this': 434616, 'this is time': 888429, 'is time demand': 453161, 'time demand that': 896553, 'demand that we': 236342, 'that we must': 847383, 'we must aware': 972403, 'must aware about': 546484, 'aware about the': 105602, 'about the healthy': 26411, 'the healthy eating': 857205, 'healthy eating and': 387591, 'eating and food': 266175, 'and food for': 63050, 'food for increasing': 314545, 'for increasing immunity': 322533, 'increasing immunity corona': 433623, 'immunity corona virus': 417405, 'corona virus affected': 204281, 'queing': 693431, 'carpark': 164880, 'bro said': 140693, 'are queing': 89376, 'queing out': 693436, 'massive carpark': 519979, 'carpark out': 164881, 'half way': 374296, 'way up': 970140, 'street good': 812984, 'good hr': 357189, 'hr wait': 409675, 'bro said they': 140694, 'said they are': 731470, 'they are queing': 881373, 'are queing out': 89377, 'queing out the': 693437, 'out the supermarket': 627426, 'the supermarket the': 868846, 'supermarket the whole': 823257, 'whole of the': 990290, 'of the massive': 591227, 'the massive carpark': 860263, 'massive carpark out': 519980, 'carpark out of': 164882, 'of it and': 585364, 'it and half': 456496, 'and half way': 64128, 'half way up': 374297, 'way up the': 970148, 'up the street': 946221, 'the street good': 868231, 'street good hr': 812985, 'good hr wait': 357190, 'lacking': 478683, 'spiral': 789415, 'it give': 458238, 'give sense': 350689, 'control at': 201971, 're lacking': 698973, 'lacking that': 478693, 'people hear': 648228, 'that other': 845560, 'something and': 784847, 'say oh': 739013, 'oh need': 596422, 'that too': 847094, 'too and': 924575, 'just spiral': 469848, 'spiral to': 789432, 'this level': 888617, 'level where': 487753, 'the thing about': 869448, 'thing about panic': 884089, 'buying is that': 150582, 'is that it': 452659, 'that it give': 844709, 'it give sense': 458239, 'give sense of': 350690, 'sense of control': 750555, 'of control at': 581841, 'control at time': 201973, 'time when we': 898309, 'when we re': 984462, 'we re lacking': 972909, 're lacking that': 698974, 'lacking that people': 478695, 'that people hear': 845695, 'people hear that': 648229, 'hear that other': 387995, 'that other people': 845562, 'other people are': 620657, 'are buying something': 85131, 'buying something and': 151061, 'something and they': 784851, 'and they say': 73936, 'they say oh': 883277, 'say oh need': 739014, 'oh need that': 596423, 'need that too': 555735, 'that too and': 847096, 'too and it': 924580, 'and it just': 65544, 'it just spiral': 459245, 'just spiral to': 469849, 'spiral to this': 789433, 'to this level': 917439, 'this level where': 888620, 'level where we': 487755, 'where we have': 985342, 'we have none': 971877, 'represented': 712928, 'liz': 496505, 'hallock': 374386, 'state nonprofit': 795783, 'nonprofit washlite': 566712, 'washlite represented': 967836, 'represented by': 712929, 'by liz': 153064, 'liz hallock': 496508, 'hallock gov': 374387, 'gov file': 359583, 'file lawsuit': 305353, 'lawsuit on': 482539, 'april against': 83533, 'news others': 560679, 'for violation': 327565, 'violation of': 957517, 'act including': 29661, 'including for': 431968, 'for calling': 319881, 'calling hoax': 156572, 'washington state nonprofit': 967807, 'state nonprofit washlite': 795784, 'nonprofit washlite represented': 566713, 'washlite represented by': 967837, 'represented by liz': 712931, 'by liz hallock': 153065, 'liz hallock gov': 496509, 'hallock gov file': 374388, 'gov file lawsuit': 359584, 'file lawsuit on': 305354, 'lawsuit on april': 482540, 'on april against': 599444, 'april against fox': 83534, 'fox news others': 330767, 'news others for': 560680, 'others for violation': 621415, 'for violation of': 327566, 'violation of the': 957521, 'the consumer protection': 851578, 'protection act including': 685279, 'act including for': 29662, 'including for calling': 431969, 'for calling hoax': 319882, 'beloved': 126528, 'fossil': 330076, 'finite': 307944, 'divesting': 248580, 'dinosaur': 243129, 'truth 19': 934376, 'than your': 841501, 'your beloved': 1022941, 'beloved oil': 126539, 'oil cartel': 596665, 'cartel fossil': 165449, 'fossil fuel': 330077, 'fuel is': 340190, 'is finite': 447821, 'finite smart': 307947, 'smart investor': 775384, 'investor are': 444106, 'are divesting': 85874, 'divesting it': 248581, 'only dinosaur': 610336, 'dinosaur like': 243136, 'you who': 1022302, 'who benefit': 988316, 'from high': 335787, 'high fuel': 395097, 'want people': 965896, 'people back': 647208, 'pump propping': 689096, 'your portfolio': 1025355, 'truth 19 pandemic': 934377, '19 pandemic is': 9369, 'pandemic is more': 635783, 'is more important': 449711, 'important than your': 419004, 'than your beloved': 841503, 'your beloved oil': 1022942, 'beloved oil cartel': 126540, 'oil cartel fossil': 596667, 'cartel fossil fuel': 165450, 'fossil fuel is': 330082, 'fuel is finite': 340192, 'is finite smart': 447822, 'finite smart investor': 307948, 'smart investor are': 775385, 'investor are divesting': 444107, 'are divesting it': 85875, 'divesting it only': 248582, 'it only dinosaur': 460095, 'only dinosaur like': 610337, 'dinosaur like you': 243137, 'like you who': 491885, 'you who benefit': 1022304, 'who benefit from': 988317, 'benefit from high': 126985, 'from high fuel': 335788, 'high fuel price': 395098, 'fuel price which': 340261, 'price which is': 677512, 'which is why': 986066, 'is why you': 453986, 'why you want': 991603, 'you want people': 1022151, 'want people back': 965897, 'people back at': 647209, 'back at the': 106894, 'at the pump': 101070, 'the pump propping': 864906, 'pump propping up': 689097, 'propping up your': 684587, 'up your portfolio': 946748, 'skint': 773116, 'boredom': 135391, 'divorced': 248715, 'get fat': 346996, 'fat skint': 300215, 'skint from': 773121, 'from online': 336690, 'online boredom': 607946, 'boredom shopping': 135412, 'and divorced': 61543, 'to get fat': 906477, 'get fat skint': 346998, 'fat skint from': 300216, 'skint from online': 773122, 'from online boredom': 336691, 'online boredom shopping': 607947, 'boredom shopping and': 135413, 'shopping and divorced': 761976, 'numerator': 577111, 'data is': 226282, 'ready the': 700931, 'the numerator': 861967, 'numerator buying': 577112, 'behavior index': 124090, 'index now': 434223, 'now show': 575820, 'show 14': 766835, '14 of': 3506, 'of 14': 579351, '14 channel': 3433, 'channel trending': 172940, 'trending up': 931582, 'up compared': 944625, 'to 2019': 899595, '2019 and': 13932, 'and channel': 59737, 'channel increased': 172893, 'increased at': 433202, 'the beginning': 849430, 'beginning of': 123642, 'week stay': 976914, 'healthy friend': 387642, '19 consumer data': 5966, 'consumer data is': 197059, 'data is ready': 226289, 'is ready the': 451256, 'ready the numerator': 700933, 'the numerator buying': 861968, 'numerator buying behavior': 577113, 'buying behavior index': 150014, 'behavior index now': 124092, 'index now show': 434224, 'now show 14': 575821, 'show 14 of': 766836, '14 of 14': 3507, 'of 14 channel': 579352, '14 channel trending': 3434, 'channel trending up': 172942, 'trending up compared': 931583, 'up compared to': 944626, 'compared to 2019': 191420, 'to 2019 and': 899596, '2019 and channel': 13934, 'and channel increased': 59740, 'channel increased at': 172894, 'increased at the': 433203, 'at the beginning': 100885, 'the beginning of': 849437, 'beginning of week': 123654, 'of week stay': 593006, 'week stay healthy': 976916, 'stay healthy friend': 796905, 'redmeat': 705752, 'hoardersgonnahoard': 399159, 'yesterday no': 1015815, 'no chicken': 563794, 'chicken breast': 175754, 'breast on': 139138, 'the truck': 870029, 'truck today': 932872, 'today no': 919929, 'no redmeat': 565312, 'redmeat hoardersgonnahoard': 705755, 'yesterday no chicken': 1015816, 'no chicken breast': 563796, 'chicken breast on': 175757, 'breast on the': 139139, 'on the truck': 604415, 'the truck today': 870038, 'truck today no': 932873, 'today no redmeat': 919936, 'no redmeat hoardersgonnahoard': 565313, 'broad': 140699, 'credit risk': 216499, 'global retail': 352176, 'have increased': 381048, 'increased dramatically': 433300, 'dramatically the': 258376, 'the effort': 854080, '19 result': 10189, 'closure change': 183864, 'habit and': 372547, 'and heightened': 64427, 'heightened risk': 388823, 'of broad': 580897, 'broad based': 140700, 'based macroeconomic': 111644, 'macroeconomic decline': 507485, 'credit risk to': 216500, 'risk to the': 723971, 'the global retail': 856322, 'global retail sector': 352177, 'sector have increased': 744211, 'have increased dramatically': 381058, 'increased dramatically the': 433302, 'dramatically the effort': 258377, 'the effort to': 854085, 'effort to contain': 269615, 'to contain covid': 903363, 'covid 19 result': 213706, '19 result in': 10192, 'result in store': 717551, 'in store closure': 428395, 'store closure change': 807086, 'closure change to': 183865, 'change to shopping': 172361, 'to shopping habit': 914518, 'shopping habit and': 762836, 'habit and heightened': 372556, 'and heightened risk': 64428, 'heightened risk of': 388824, 'risk of broad': 723729, 'of broad based': 580898, 'broad based macroeconomic': 140702, 'based macroeconomic decline': 111645, '25th': 16102, 'pleasant': 659597, 'haul': 378987, 'january 25th': 464639, '25th started': 16110, 'started warning': 794898, 'warning people': 967178, 'people about': 646737, 'when contracted': 983284, 'contracted h1n1': 201740, 'h1n1 and': 369369, 'not pleasant': 571043, 'pleasant saw': 659614, 'saw this': 738286, 'coming back': 187999, 'back and': 106847, 'then started': 877561, 'started stocking': 794842, 'up buying': 944533, 'sanitiser knew': 733985, 'knew this': 476088, 'be long': 115806, 'long haul': 501430, 'haul no': 378996, 'one wa': 607341, 'wa listening': 962569, 'on january 25th': 601723, 'january 25th started': 464640, '25th started warning': 16112, 'started warning people': 794899, 'warning people about': 967179, 'people about the': 646742, 'about the when': 26562, 'the when contracted': 871433, 'when contracted h1n1': 983285, 'contracted h1n1 and': 201741, 'h1n1 and it': 369370, 'it wa not': 462159, 'wa not pleasant': 962769, 'not pleasant saw': 571045, 'pleasant saw this': 659615, 'saw this coming': 738291, 'this coming back': 886810, 'coming back and': 188000, 'back and then': 106866, 'and then started': 73812, 'then started stocking': 877562, 'started stocking up': 794843, 'stocking up buying': 803615, 'up buying mask': 944535, 'buying mask and': 150701, 'and sanitiser knew': 70833, 'sanitiser knew this': 733986, 'knew this would': 476090, 'would be long': 1011616, 'be long haul': 115809, 'long haul no': 501432, 'haul no one': 378997, 'no one wa': 564979, 'one wa listening': 607348, 'apologizes': 81645, 'store apologizes': 806440, 'apologizes for': 81646, 'hike amid': 396192, 'grocery store apologizes': 365210, 'store apologizes for': 806441, 'apologizes for price': 81647, 'price hike amid': 674525, 'hike amid the': 396193, 'bheki': 129374, 'cele': 168770, 'enca': 275515, 'criminalized': 216899, 'cigarette': 178473, 'threatened': 893772, 'kissing': 475468, 'da min': 224229, 'min bheki': 532523, 'bheki cele': 129375, 'cele on': 168771, 'on enca': 600555, 'enca today': 275516, 'today keep': 919767, 'keep on': 471699, 'on fighting': 600782, 'fighting all': 305031, 'all sa': 44219, 'sa people': 728920, 'people instead': 648485, 'virus he': 958268, 'he already': 384723, 'already criminalized': 47275, 'criminalized supermarket': 216902, 'supermarket cigarette': 819697, 'cigarette wine': 178497, 'wine during': 995807, '19 threatened': 11379, 'threatened to': 893788, 'ban alcohol': 109165, 'alcohol even': 41002, 'even wine': 284796, 'wine permanently': 995871, 'permanently now': 652104, 'said no': 731253, 'no kissing': 564562, 'kissing at': 475469, 'da min bheki': 224230, 'min bheki cele': 532524, 'bheki cele on': 129376, 'cele on enca': 168772, 'on enca today': 600556, 'enca today keep': 275518, 'today keep on': 919769, 'keep on fighting': 471702, 'on fighting all': 600783, 'fighting all sa': 305032, 'all sa people': 44220, 'sa people instead': 728922, 'people instead of': 648486, 'instead of the': 440328, 'the virus he': 870840, 'virus he already': 958269, 'he already criminalized': 384724, 'already criminalized supermarket': 47276, 'criminalized supermarket cigarette': 216903, 'supermarket cigarette wine': 819698, 'cigarette wine during': 178498, 'wine during covid': 995808, 'covid 19 threatened': 213948, '19 threatened to': 11380, 'threatened to ban': 893789, 'to ban alcohol': 901017, 'ban alcohol even': 109166, 'alcohol even wine': 41003, 'even wine permanently': 284798, 'wine permanently now': 995872, 'permanently now he': 652105, 'now he said': 574906, 'he said no': 385370, 'said no kissing': 731257, 'no kissing at': 564563, 'abdul': 24293, 'oblivious': 578488, 'enforcing': 276810, 'socialdistanacing coronacrisis': 780051, 'coronacrisis social': 204758, 'supermarket did': 819957, 'did my': 240693, 'my bit': 547462, 'bit for': 131568, 'every tom': 286329, 'tom dick': 923916, 'dick and': 240456, 'and abdul': 57532, 'abdul to': 24298, 'ask are': 95488, 'queue oblivious': 694014, 'oblivious to': 578491, 'me social': 523499, 'distancing this': 247550, 'is sadly': 451611, 'sadly why': 729378, 'need safety': 555535, 'safety plan': 730676, 'plan enforcing': 658105, 'socialdistanacing coronacrisis social': 780052, 'coronacrisis social distancing': 204759, 'distancing in my': 247230, 'local supermarket did': 498516, 'supermarket did my': 819958, 'did my bit': 240695, 'my bit for': 547465, 'bit for every': 131569, 'for every tom': 321183, 'every tom dick': 286330, 'tom dick and': 923917, 'dick and abdul': 240457, 'and abdul to': 57533, 'abdul to ask': 24299, 'to ask are': 900748, 'ask are you': 95489, 'are you in': 91811, 'the queue oblivious': 865048, 'queue oblivious to': 694015, 'oblivious to me': 578493, 'to me social': 909953, 'me social distancing': 523500, 'social distancing this': 779743, 'distancing this is': 247551, 'this is sadly': 888387, 'is sadly why': 451612, 'sadly why we': 729379, 'why we need': 991526, 'we need safety': 972539, 'need safety plan': 555536, 'safety plan enforcing': 730677, 'virus 10': 957883, 'world via': 1010129, 'after the virus': 36367, 'the virus 10': 870791, 'virus 10 consumer': 957884, 'consumer trend for': 199374, 'trend for post': 931339, 'for post world': 324639, 'post world via': 666419, 'away 600': 105766, '600 of': 21097, 'pantry in': 639609, 'in chicago': 421363, 'chicago struggling': 175692, 'struggling under': 814526, 'under covid': 940061, 'related demand': 708415, 'and feel': 62773, 'feel fucking': 302635, 'fucking great': 339876, 'it anyone': 456545, 'else want': 271962, 'me will': 523980, 'spend that': 788679, 'that shit': 846261, 'just gave away': 468792, 'gave away 600': 344601, 'away 600 of': 105767, '600 of other': 21099, 'other people money': 620678, 'money to food': 537098, 'to food pantry': 906086, 'food pantry in': 315786, 'pantry in chicago': 639610, 'in chicago struggling': 421369, 'chicago struggling under': 175693, 'struggling under covid': 814527, 'under covid 19': 940062, '19 related demand': 10049, 'related demand for': 708418, 'service and feel': 752085, 'and feel fucking': 62774, 'feel fucking great': 302636, 'fucking great about': 339877, 'great about it': 362482, 'about it anyone': 25566, 'it anyone else': 456547, 'anyone else want': 80300, 'else want to': 271963, 'to give me': 906691, 'give me will': 350584, 'me will spend': 523983, 'will spend that': 994916, 'spend that shit': 788680, 'lord': 503301, 'cow': 214450, 'our lord': 623807, 'lord ha': 503308, 'made other': 507893, 'other food': 620231, 'food available': 313469, 'to than': 916414, 'just meat': 469254, 'meat know': 525641, 'know meat': 476596, 'meat price': 525696, 'have skyrocketed': 382571, 'skyrocketed due': 773362, 'but guess': 145829, 'eat vegetable': 266096, 'vegetable know': 954025, 'know amazing': 476245, 'amazing right': 50774, 'right give': 721909, 'the cow': 852249, 'cow and': 214451, 'sheep break': 756538, 'break let': 138761, 'them enjoy': 875650, 'enjoy life': 277145, 'life little': 488851, 'our lord ha': 623809, 'lord ha made': 503309, 'ha made other': 371213, 'made other food': 507894, 'other food available': 620234, 'food available to': 313480, 'available to than': 104661, 'to than just': 916415, 'than just meat': 840818, 'just meat know': 469255, 'meat know meat': 525642, 'know meat price': 476597, 'meat price have': 525699, 'price have skyrocketed': 674460, 'have skyrocketed due': 382574, 'skyrocketed due to': 773363, 'due to but': 261716, 'to but guess': 902152, 'but guess what': 145831, 'guess what you': 368090, 'you can eat': 1017669, 'can eat vegetable': 158204, 'eat vegetable know': 266097, 'vegetable know amazing': 954026, 'know amazing right': 476246, 'amazing right give': 50775, 'right give the': 721911, 'give the cow': 350733, 'the cow and': 852250, 'cow and sheep': 214452, 'and sheep break': 71437, 'sheep break let': 756539, 'break let them': 138762, 'let them enjoy': 487152, 'them enjoy life': 875651, 'enjoy life little': 277147, 'florida public': 310969, 'public utility': 688448, 'cut energy': 223317, 'florida public utility': 310971, 'public utility cut': 688449, 'utility cut energy': 951279, 'cut energy price': 223318, 'energy price during': 276540, 'theshoppies': 881013, 'coronavirus wash': 207044, 'hand or': 375150, 'after handling': 35746, 'handling bill': 376335, 'bill coin': 130539, 'coin or': 185639, 'other document': 620119, 'document staysafestayhome': 251208, 'staysafestayhome washyourhands': 799038, 'washyourhands theshoppies': 967928, 'stay safe from': 797237, 'safe from the': 729701, 'the coronavirus wash': 851941, 'coronavirus wash your': 207045, 'your hand or': 1024209, 'hand or use': 375156, 'or use hand': 617619, 'hand sanitizer after': 375291, 'sanitizer after handling': 734325, 'after handling bill': 35747, 'handling bill coin': 376336, 'bill coin or': 130540, 'coin or other': 185641, 'or other document': 616431, 'other document staysafestayhome': 620120, 'document staysafestayhome washyourhands': 251209, 'staysafestayhome washyourhands theshoppies': 799039, 'teleworking': 836881, 'teleworking during': 836882, 'outbreak here': 628300, 'teleworking during the': 836883, 'the outbreak here': 862639, 'outbreak here are': 628301, 'are some online': 90275, 'some online security': 783445, 'dad that': 224390, 'that getting': 844003, 'getting tested': 349335, 'tested tomorrow': 839385, '19 because': 5326, 'store told': 810892, 'told all': 923520, 'tested my': 839323, 'mom began': 535693, 'cry tried': 219925, 'reassure her': 703189, 'her that': 392428, 'be okay': 116178, 'okay didn': 597972, 'want my': 965857, 'dad to': 224396, 'worry if': 1010726, 'if tested': 414926, 'told my mom': 923638, 'my mom dad': 549266, 'mom dad that': 535719, 'dad that getting': 224391, 'that getting tested': 844005, 'getting tested tomorrow': 349337, 'tested tomorrow for': 839386, 'tomorrow for covid': 924084, 'covid 19 because': 212685, '19 because the': 5335, 'because the manager': 119635, 'grocery store told': 365874, 'store told all': 810893, 'told all employee': 923521, 'all employee that': 42680, 'employee that we': 274292, 'that we should': 847394, 'should be tested': 765747, 'be tested my': 117560, 'tested my mom': 839324, 'my mom began': 549259, 'mom began to': 535694, 'began to cry': 123444, 'to cry tried': 903783, 'cry tried to': 219926, 'tried to reassure': 931842, 'to reassure her': 912889, 'reassure her that': 703190, 'her that be': 392429, 'that be okay': 842943, 'be okay didn': 116180, 'okay didn want': 597973, 'didn want my': 241257, 'want my mom': 965860, 'mom dad to': 535720, 'dad to worry': 224397, 'to worry if': 918839, 'worry if tested': 1010730, 'if tested positive': 414927, '12p': 3116, '8ppl': 23244, 'giant morrison': 349828, 'morrison and': 541700, 'and asda': 58417, 'asda have': 94923, 'have reduced': 382226, 'reduced their': 706187, 'by 12p': 151536, '12p per': 3119, 'per litre': 650920, 'litre for': 495151, 'for petrol': 324518, 'petrol and': 653708, 'and 8ppl': 57518, '8ppl for': 23245, 'for diesel': 320695, 'diesel the': 241697, 'continues coronavirus': 201382, 'coronavirus fuel': 205966, 'fall morrison': 296989, 'asda introduce': 94933, 'introduce unprecedented': 443407, 'unprecedented cut': 943102, 'supermarket giant morrison': 820508, 'giant morrison and': 349829, 'morrison and asda': 541701, 'and asda have': 58418, 'asda have reduced': 94925, 'have reduced their': 382235, 'reduced their fuel': 706189, 'fuel price by': 340223, 'price by 12p': 673002, 'by 12p per': 151537, '12p per litre': 3120, 'per litre for': 650923, 'litre for petrol': 495153, 'for petrol and': 324519, 'petrol and 8ppl': 653710, 'and 8ppl for': 57519, '8ppl for diesel': 23246, 'for diesel the': 320698, 'diesel the coronavirus': 241698, '19 crisis continues': 6232, 'crisis continues coronavirus': 217247, 'continues coronavirus fuel': 201383, 'coronavirus fuel price': 205967, 'fuel price fall': 340230, 'price fall morrison': 673790, 'fall morrison and': 296990, 'and asda introduce': 58419, 'asda introduce unprecedented': 94934, 'introduce unprecedented cut': 443408, 'notgoodenough': 572902, '86y': 23009, '300miles': 17364, 'sainsburys vulnerable': 731804, 'vulnerable notgoodenough': 961055, 'notgoodenough elderly': 572903, 'elderly totally': 270923, 'totally impossible': 926356, 'get online': 347707, 'for 86y': 318933, '86y mum': 23010, 'who life': 989203, 'life 300miles': 488439, '300miles away': 17365, 'away now': 105975, 'now from': 574750, 'own account': 631864, 'account like': 28714, 'like used': 491704, 'do shame': 250070, 'on sainsburys': 603258, 'sainsburys vulnerable notgoodenough': 731805, 'vulnerable notgoodenough elderly': 961056, 'notgoodenough elderly totally': 572904, 'elderly totally impossible': 270924, 'totally impossible to': 926357, 'impossible to get': 419399, 'to get online': 906549, 'get online shopping': 347712, 'shopping for 86y': 762654, 'for 86y mum': 318934, '86y mum who': 23011, 'mum who life': 545976, 'who life 300miles': 989204, 'life 300miles away': 488440, '300miles away now': 17366, 'away now from': 105976, 'now from my': 574754, 'from my own': 336520, 'my own account': 549633, 'own account like': 631865, 'account like used': 28715, 'like used to': 491705, 'used to do': 950051, 'to do shame': 904552, 'do shame on': 250071, 'shame on sainsburys': 754627, 'bluffing': 133515, 'arab': 83817, 'length': 486307, 'russian are': 728613, 'are bluffing': 85001, 'bluffing and': 133516, 'just called': 468410, 'called them': 156465, 'them on': 876082, 'it no': 459822, 'one except': 606261, 'except some': 289222, 'some arab': 782308, 'arab field': 83828, 'field can': 304459, 'survive with': 829294, 'this low': 888722, 'low for': 505282, 'any length': 79407, 'length of': 486316, 'million question': 532333, 'the after': 848414, 'we know': 972146, 'because the russian': 119642, 'the russian are': 866095, 'russian are bluffing': 728614, 'are bluffing and': 85002, 'bluffing and just': 133517, 'and just called': 65696, 'just called them': 468417, 'called them on': 156466, 'them on it': 876090, 'on it no': 601675, 'it no one': 459832, 'no one except': 564931, 'one except some': 606263, 'except some arab': 289223, 'some arab field': 782309, 'arab field can': 83829, 'field can survive': 304460, 'can survive with': 159881, 'survive with price': 829296, 'with price this': 1000315, 'price this low': 676914, 'this low for': 888724, 'low for any': 505283, 'for any length': 319414, 'any length of': 79408, 'length of time': 486322, 'of time the': 592187, 'time the million': 897859, 'the million question': 860626, 'million question is': 532334, 'question is what': 693634, 'is what is': 453881, 'the new normal': 861532, 'normal for the': 567156, 'for the after': 326296, 'the after covid': 848415, '19 we know': 11935, 'we know is': 972153, 'know is not': 476510, 'turner': 935895, 'andler': 76156, 'inittogether': 438677, 'goodnews': 358069, 'ruleyournest': 727444, 'we received': 973032, 'received the': 703690, 'the bottle': 849895, 'bottle from': 136225, 'from allen': 334443, 'allen turner': 45747, 'turner and': 935896, 'and andler': 58140, 'andler packaging': 76157, 'packaging hand': 633545, 'important we': 419102, 'we fight': 971545, 'truly inittogether': 933326, 'inittogether goodnews': 438678, 'goodnews ruleyournest': 358075, 'thank you we': 841844, 'you we received': 1022204, 'we received the': 973036, 'received the bottle': 703691, 'the bottle from': 849896, 'bottle from allen': 136226, 'from allen turner': 334444, 'allen turner and': 45748, 'turner and andler': 935897, 'and andler packaging': 58141, 'andler packaging hand': 76158, 'packaging hand sanitizer': 633546, 'sanitizer is so': 735210, 'is so important': 452017, 'so important we': 777379, 'important we fight': 419104, 'we fight we': 971549, 'fight we are': 304942, 'we are truly': 970744, 'are truly inittogether': 91219, 'truly inittogether goodnews': 933327, 'inittogether goodnews ruleyournest': 438679, 'screened': 742747, 'forehead': 328949, 'scanner': 740726, 'commonsense': 189500, 'these aren': 879645, 'aren question': 92493, 'can answer': 157501, 'answer but': 78021, 'but question': 146875, 'can ask': 157529, 'ask why': 95667, 'why aren': 990800, 'aren all': 92308, 'worker being': 1006521, 'being screened': 125725, 'screened forehead': 742748, 'forehead scanner': 328950, 'scanner for': 740731, 'for temperature': 326193, 'temperature when': 837409, 'they report': 883203, 'report for': 711950, 'work commonsense': 1004995, 'these aren question': 879648, 'aren question you': 92494, 'question you can': 693821, 'you can answer': 1017621, 'can answer but': 157502, 'answer but question': 78022, 'but question you': 146876, 'you can ask': 1017623, 'can ask why': 157531, 'ask why aren': 95668, 'why aren all': 990801, 'aren all grocery': 92309, 'store worker being': 811462, 'worker being screened': 1006525, 'being screened forehead': 125726, 'screened forehead scanner': 742749, 'forehead scanner for': 328951, 'scanner for temperature': 740732, 'for temperature when': 326195, 'temperature when they': 837410, 'when they report': 984278, 'they report for': 883204, 'report for work': 711959, 'for work commonsense': 327920, 'uspoli': 950845, 'asking other': 96035, 'country for': 210665, 'to ventilator': 918137, 'ventilator to': 954625, 'the cdnpoli': 850579, 'cdnpoli uspoli': 168670, 'the is asking': 858480, 'is asking other': 445830, 'asking other country': 96036, 'other country for': 620015, 'country for everything': 210667, 'for everything from': 321256, 'everything from hand': 287803, 'from hand sanitizer': 335720, 'sanitizer to ventilator': 735953, 'to ventilator to': 918138, 'ventilator to help': 954628, 'help fight the': 389717, 'fight the cdnpoli': 304885, 'the cdnpoli uspoli': 850580, 'sell meal': 748794, 'restaurant amid': 716262, 'pandemic supermarket': 636593, 'supermarket news': 821597, 'sell meal from': 748795, 'meal from local': 524164, 'from local restaurant': 336256, 'local restaurant amid': 498335, 'restaurant amid covid': 716263, '19 pandemic supermarket': 9486, 'pandemic supermarket news': 636598, 'indianrailways': 434946, 'withdrew': 1002287, 'concessional': 193285, 'precautionary': 669412, 'ians': 412557, 'after increasing': 35818, 'of platform': 588163, 'platform ticket': 659030, 'ticket the': 895668, 'the indianrailways': 858136, 'indianrailways on': 434947, 'on thursday': 604662, 'thursday withdrew': 895456, 'withdrew most': 1002288, 'most concessional': 542199, 'concessional ticket': 193288, 'ticket facility': 895611, 'facility in': 295345, 'in train': 430264, 'train precautionary': 929271, 'precautionary measure': 669419, 'contain the': 200493, 'of official': 587165, 'official said': 595897, 'said railway': 731327, 'railway photo': 695710, 'photo ians': 655177, 'after increasing the': 35819, 'price of platform': 675535, 'of platform ticket': 588164, 'platform ticket the': 659036, 'ticket the indianrailways': 895670, 'the indianrailways on': 858137, 'indianrailways on thursday': 434948, 'on thursday withdrew': 604686, 'thursday withdrew most': 895457, 'withdrew most concessional': 1002289, 'most concessional ticket': 542200, 'concessional ticket facility': 193289, 'ticket facility in': 895612, 'facility in train': 295348, 'in train precautionary': 430265, 'train precautionary measure': 929272, 'precautionary measure to': 669431, 'measure to contain': 525387, 'to contain the': 903368, 'contain the spread': 200502, 'spread of official': 790690, 'of official said': 587166, 'official said railway': 595903, 'said railway photo': 731328, 'railway photo ians': 695711, 'understanding shifting': 940886, 'shifting consumer': 758516, 'purchase behavior': 689382, '19 landscape': 8269, 'landscape is': 479405, 'incredibly important': 433905, 'understand what': 940802, 'understanding shifting consumer': 940887, 'shifting consumer purchase': 758522, 'consumer purchase behavior': 198612, 'purchase behavior in': 689385, 'covid 19 landscape': 213333, '19 landscape is': 8270, 'landscape is incredibly': 479406, 'is incredibly important': 448881, 'incredibly important to': 433907, 'important to understand': 419076, 'to understand what': 917916, 'understand what next': 940804, 'colony': 186713, 'trap': 930086, 'yr back': 1027010, 'back wrote': 107488, 'wrote this': 1013222, 'blog that': 133024, 'how planning': 408520, 'make other': 510281, 'it colony': 457200, 'colony through': 186719, 'through debt': 894412, 'debt trap': 230589, 'trap strategy': 930098, 'strategy today': 812737, 'today with': 920548, 'with spread': 1000926, 'of amp': 580091, 'amp constant': 53555, 'constant chinese': 195604, 'chinese equity': 177251, 'equity buying': 279924, 'of corporation': 581987, 'corporation at': 207387, 'at cheap': 98237, 'cheap price': 174170, 'holding this': 400182, 'this true': 890864, 'true read': 933151, 'read to': 700636, 'yr back wrote': 1027011, 'back wrote this': 107489, 'wrote this blog': 1013223, 'this blog that': 886579, 'blog that how': 133025, 'that how planning': 844383, 'how planning to': 408521, 'planning to make': 658588, 'to make other': 909711, 'make other country': 510282, 'other country it': 620021, 'country it colony': 210830, 'it colony through': 457201, 'colony through debt': 186720, 'through debt trap': 894413, 'debt trap strategy': 230590, 'trap strategy today': 930099, 'strategy today with': 812738, 'today with spread': 920560, 'with spread of': 1000927, 'spread of amp': 790649, 'of amp constant': 580094, 'amp constant chinese': 53556, 'constant chinese equity': 195605, 'chinese equity buying': 177252, 'equity buying of': 279925, 'buying of corporation': 150787, 'of corporation at': 581988, 'corporation at cheap': 207388, 'at cheap price': 98238, 'cheap price is': 174177, 'price is holding': 674868, 'is holding this': 448522, 'holding this true': 400183, 'this true read': 890866, 'true read to': 933152, 'read to understand': 700640, 'confronting': 194311, 'confronting animation': 194312, 'animation show': 76733, 'how far': 407836, 'far covid': 298750, '19 infected': 7838, 'infected person': 436618, 'person cough': 652375, 'can travel': 160033, 'confronting animation show': 194313, 'animation show how': 76734, 'show how far': 766976, 'how far covid': 407840, 'far covid 19': 298751, 'covid 19 infected': 213265, '19 infected person': 7843, 'infected person cough': 436619, 'person cough can': 652376, 'cough can travel': 208464, 'can travel in': 160037, 'travel in supermarket': 930392, 'in supermarket via': 428704, 'mitchell': 534514, 'many logistics': 514246, 'logistics provider': 500785, 'provider going': 686726, 'going above': 354990, 'above and': 27048, 'beyond to': 129254, 'ensure delivery': 277910, 'supermarket supplychain': 823058, 'supplychain pharmaceutical': 826213, 'pharmaceutical medical': 654083, 'supply equipment': 825217, 'equipment check': 279706, 'local company': 497848, 'company such': 191126, 'such mitchell': 816640, 'mitchell logistics': 534517, 'logistics helping': 500754, 'helping with': 391544, 'with relief': 1000448, 'there are so': 878163, 'are so many': 90210, 'so many logistics': 777671, 'many logistics provider': 514247, 'logistics provider going': 500786, 'provider going above': 686727, 'going above and': 354991, 'above and beyond': 27049, 'and beyond to': 58952, 'beyond to ensure': 129255, 'to ensure delivery': 905149, 'ensure delivery of': 277911, 'delivery of supermarket': 234236, 'of supermarket supplychain': 590447, 'supermarket supplychain pharmaceutical': 823060, 'supplychain pharmaceutical medical': 826214, 'pharmaceutical medical supply': 654084, 'medical supply equipment': 526439, 'supply equipment check': 825219, 'equipment check out': 279707, 'check out local': 174558, 'out local company': 626514, 'local company such': 497850, 'company such mitchell': 191127, 'such mitchell logistics': 816641, 'mitchell logistics helping': 534518, 'logistics helping with': 500755, 'helping with relief': 391545, 'bank pressure': 110109, 'pressure health': 671168, 'care firm': 163934, 'bank pressure health': 110110, 'pressure health care': 671169, 'health care firm': 386231, 'care firm to': 163935, 'firm to raise': 308444, 'raise price amid': 695905, 'price amid crisis': 672311, 'gilead': 350116, 'submitted': 815812, 'rescind': 713599, 'orphan': 619661, 'designation': 238320, 'granted': 362058, 'investigational': 443896, 'waiving': 964556, 'accompany': 28491, 'gilead ha': 350117, 'ha submitted': 372092, 'submitted request': 815819, 'fda to': 300936, 'to rescind': 913322, 'rescind the': 713602, 'the orphan': 862497, 'orphan drug': 619662, 'drug designation': 260932, 'designation it': 238323, 'wa granted': 962245, 'granted for': 362071, 'it investigational': 458835, 'investigational antiviral': 443897, 'antiviral for': 78587, 'the treatment': 869942, 'treatment of': 931104, 'is waiving': 453735, 'waiving all': 964557, 'all benefit': 42173, 'benefit that': 127097, 'that accompany': 842482, 'accompany the': 28492, 'the designation': 853183, 'designation read': 238328, 'gilead ha submitted': 350118, 'ha submitted request': 372093, 'submitted request to': 815820, 'request to the': 713223, 'to the fda': 916703, 'the fda to': 855026, 'fda to rescind': 300940, 'to rescind the': 913323, 'rescind the orphan': 713603, 'the orphan drug': 862498, 'orphan drug designation': 619663, 'drug designation it': 260933, 'designation it wa': 238324, 'it wa granted': 462121, 'wa granted for': 962246, 'granted for it': 362072, 'for it investigational': 322715, 'it investigational antiviral': 458836, 'investigational antiviral for': 443898, 'antiviral for the': 78588, 'for the treatment': 326741, 'the treatment of': 869944, 'treatment of covid': 931109, '19 and is': 5050, 'and is waiving': 65441, 'is waiving all': 453736, 'waiving all benefit': 964558, 'all benefit that': 42174, 'benefit that accompany': 127098, 'that accompany the': 842483, 'accompany the designation': 28493, 'the designation read': 853185, 'designation read more': 238329, 'mentalillness': 528697, 'mentalhealthawareness': 528694, 'mentalillnessawareness': 528701, 'so stressed': 778281, 'out need': 626616, 'on junk': 601744, 'can stress': 159837, 'stress eat': 813318, 'eat may': 265976, 'may need': 521348, 'need some': 555585, 'some booze': 782422, 'booze too': 135186, 'too saferathome': 925038, 'saferathome stress': 730414, 'stress anxiety': 813302, 'anxiety mentalhealth': 78749, 'mentalhealth mentalillness': 528682, 'mentalillness mentalhealthawareness': 528699, 'mentalhealthawareness mentalillnessawareness': 528695, 'so stressed out': 778282, 'stressed out need': 813454, 'out need to': 626618, 'up on junk': 945586, 'on junk food': 601745, 'junk food so': 468038, 'food so can': 316647, 'so can stress': 776726, 'can stress eat': 159838, 'stress eat may': 813319, 'eat may need': 265977, 'may need some': 521354, 'need some booze': 555586, 'some booze too': 782423, 'booze too saferathome': 135187, 'too saferathome stress': 925039, 'saferathome stress anxiety': 730415, 'stress anxiety mentalhealth': 813304, 'anxiety mentalhealth mentalillness': 78750, 'mentalhealth mentalillness mentalhealthawareness': 528683, 'mentalillness mentalhealthawareness mentalillnessawareness': 528700, 'bandito': 109417, 'like bandito': 489867, 'bandito to': 109418, 'can at': 157540, 'least wear': 484691, 'wear six': 974459, 'six gun': 772650, 'gun on': 368710, 'my side': 550085, 'have to wear': 383338, 'wear mask like': 974392, 'mask like bandito': 518913, 'like bandito to': 489868, 'bandito to go': 109419, 'the supermarket can': 868504, 'supermarket can at': 819496, 'can at least': 157541, 'at least wear': 99565, 'least wear six': 484692, 'wear six gun': 974460, 'six gun on': 772651, 'gun on my': 368712, 'on my side': 602319, 'tp is': 927853, 'in many': 425046, 'many store': 514732, 'took store': 925335, 'store week': 811201, 'replenish complete': 711638, 'complete sell': 192147, 'out toiletpaperpanic': 627715, 'toiletpaperpanic toiletpaper': 923261, 'tp is back': 927854, 'is back in': 445949, 'back in many': 107088, 'in many store': 425063, 'many store do': 514736, 'not buy it': 568651, 'buy it if': 148855, 'not out it': 570862, 'out it only': 626448, 'it only took': 460114, 'only took store': 611381, 'took store week': 925336, 'store week to': 811203, 'week to replenish': 977093, 'to replenish complete': 913255, 'replenish complete sell': 711639, 'complete sell out': 192148, 'sell out toiletpaperpanic': 748843, 'out toiletpaperpanic toiletpaper': 627716, 'toiletpaperpanic toiletpaper toiletpapercrisis': 923267, 'tumbled': 935317, 'nigeria africa': 562708, 'africa largest': 35101, 'producer whose': 680718, 'whose revenue': 990676, 'revenue have': 720436, 'have tumbled': 383420, 'tumbled with': 935336, 'is seeking': 451724, 'seeking nearly': 746650, 'nearly billion': 553809, 'billion from': 130823, 'from lender': 336213, 'lender to': 486255, 'fund it': 341441, 'it fight': 457992, 'nigeria africa largest': 562709, 'africa largest oil': 35103, 'largest oil producer': 479992, 'oil producer whose': 597348, 'producer whose revenue': 680719, 'whose revenue have': 990677, 'revenue have tumbled': 720437, 'have tumbled with': 383424, 'tumbled with the': 935337, 'with the fall': 1001297, 'price is seeking': 674887, 'is seeking nearly': 451726, 'seeking nearly billion': 746651, 'nearly billion from': 553810, 'billion from lender': 130825, 'from lender to': 336214, 'lender to fund': 486257, 'to fund it': 906331, 'fund it fight': 341442, 'it fight against': 457993, '19 and falling': 5023, 'booming': 134865, 'miami ha': 530182, 'ha drive': 370447, 'through grocery': 894490, 'and because': 58791, 'business is': 143947, 'is booming': 446219, 'booming via': 134906, 'miami ha drive': 530183, 'ha drive through': 370448, 'drive through grocery': 259180, 'through grocery store': 894491, 'store and because': 806203, 'and because of': 58795, 'the business is': 850170, 'business is booming': 143950, 'is booming via': 446233, 'pd': 645930, 'daycare': 228889, 'take minute': 832326, 'minute to': 533866, 'send special': 749947, 'special thank': 788067, 'everyone on': 287228, 'line fighting': 493085, 'fighting the': 305124, 'to hospital': 907961, 'hospital employee': 404389, 'employee healthcare': 273932, 'employee emergency': 273812, 'responder pd': 715505, 'pd daycare': 645933, 'daycare and': 228890, 'wanted to take': 966277, 'to take minute': 916202, 'take minute to': 832327, 'minute to send': 533875, 'to send special': 914221, 'send special thank': 749948, 'special thank you': 788068, 'to everyone on': 905345, 'everyone on the': 287233, 'front line fighting': 338572, 'line fighting the': 493086, 'fighting the covid': 305126, 'you to hospital': 1021788, 'to hospital employee': 907968, 'hospital employee healthcare': 404392, 'employee healthcare worker': 273933, 'store employee emergency': 807483, 'employee emergency responder': 273813, 'emergency responder pd': 272927, 'responder pd daycare': 715506, 'pd daycare and': 645934, 'daycare and everyone': 228891, 'and everyone who': 62413, 'who is doing': 989067, 'is doing their': 447292, 'doing their part': 252739, 'chain like': 170888, 'like smith': 491203, 'smith and': 775788, 'and costco': 60592, 'costco are': 208198, 'taking more': 833442, 'more measure': 539762, 'some retail': 783754, 'worker worry': 1008296, 'worry they': 1010783, 'supermarket chain like': 819619, 'chain like smith': 170893, 'like smith and': 491204, 'smith and costco': 775789, 'and costco are': 60593, 'costco are taking': 208199, 'are taking more': 90725, 'taking more measure': 833443, 'more measure to': 539763, 'measure to limit': 525397, 'limit the spread': 492520, '19 in their': 7792, 'their store but': 874850, 'store but some': 806809, 'but some retail': 147103, 'some retail worker': 783762, 'retail worker worry': 718910, 'worker worry they': 1008297, 'worry they might': 1010784, 'they might not': 882682, 'might not be': 531091, 'be mostly': 116007, 'mostly ruined': 543005, 'gathering in': 344465, 'in traweeh': 430275, 'traweeh are': 930717, 'are canceled': 85155, 'the sad thing': 866120, '19 is that': 8063, 'that the whole': 846867, 'ramadan is going': 696338, 'to be mostly': 901391, 'be mostly ruined': 116008, 'mostly ruined limited': 543006, 'large gathering in': 479671, 'gathering in traweeh': 344468, 'in traweeh are': 430276, 'traweeh are canceled': 930718, 'go please': 354054, 'go toiletpaper': 354389, 'toiletpaper tank': 922576, 'please don go': 659914, 'don go please': 253571, 'go please don': 354055, 'don go toiletpaper': 253575, 'go toiletpaper tank': 354390, 'govmnts': 361047, 'commodification': 189102, 'issue revealed': 455914, 'by govmnts': 152718, 'govmnts try': 361048, 'amp commodity': 53545, 'commodity is': 189202, 'is commodification': 446676, 'commodification itself': 189103, 'in losing': 424926, 'losing your': 503616, 'job mean': 466002, 'mean relying': 524625, 'on benefit': 599622, 'benefit subsidized': 127087, 'subsidized housing': 815993, 'mean losing': 524535, 'healthcare to': 387321, 'to shelter': 914398, 'shelter to': 757953, 'to dignity': 904304, 'the real issue': 865224, 'real issue revealed': 701229, 'issue revealed by': 455915, 'revealed by govmnts': 720262, 'by govmnts try': 152719, 'govmnts try to': 361049, 'try to boost': 934605, 'to boost demand': 901916, 'boost demand for': 134941, 'service amp commodity': 752065, 'amp commodity is': 53546, 'commodity is commodification': 189203, 'is commodification itself': 446677, 'commodification itself in': 189104, 'itself in losing': 463936, 'in losing your': 424927, 'losing your job': 503617, 'your job mean': 1024532, 'job mean relying': 466003, 'mean relying on': 524626, 'relying on benefit': 709668, 'on benefit subsidized': 599625, 'benefit subsidized housing': 127088, 'subsidized housing food': 815994, 'housing food bank': 407079, 'bank in it': 109920, 'in it mean': 424258, 'it mean losing': 459571, 'mean losing your': 524536, 'losing your right': 503618, 'your right to': 1025634, 'right to healthcare': 722341, 'to healthcare to': 907385, 'healthcare to shelter': 387323, 'to shelter to': 914401, 'shelter to dignity': 757955, 'buffooninoffice': 141888, 'factual': 296037, 'laden': 478721, 'rachelmaddow': 695226, 'blathering': 132449, 'fact go': 295726, 'supermarket before': 819343, 'the buffooninoffice': 850088, 'buffooninoffice arrives': 141889, 'arrives 15': 93985, '15 minute': 3772, 'minute late': 533785, 'his non': 397641, 'non factual': 566382, 'factual laden': 296038, 'laden briefing': 478722, 'briefing rachelmaddow': 139733, 'rachelmaddow is': 695227, 'is always': 445590, 'always right': 49724, 'right people': 722226, 'more scared': 540321, 'scared and': 740938, 'and nervous': 67518, 'nervous when': 557487, 'the orange': 862441, 'orange one': 617932, 'one start': 607082, 'start blathering': 794229, 'fact go to': 295727, 'the supermarket before': 868483, 'supermarket before the': 819351, 'before the buffooninoffice': 123144, 'the buffooninoffice arrives': 850089, 'buffooninoffice arrives 15': 141890, 'arrives 15 minute': 93986, '15 minute late': 3777, 'minute late to': 533786, 'late to his': 480928, 'to his non': 907819, 'his non factual': 397642, 'non factual laden': 566383, 'factual laden briefing': 296039, 'laden briefing rachelmaddow': 478723, 'briefing rachelmaddow is': 139734, 'rachelmaddow is always': 695228, 'is always right': 445600, 'always right people': 49728, 'right people only': 722227, 'people only get': 648989, 'only get more': 610504, 'get more scared': 347600, 'more scared and': 540322, 'scared and nervous': 740941, 'and nervous when': 67523, 'nervous when the': 557488, 'when the orange': 984180, 'the orange one': 862444, 'orange one start': 617933, 'one start blathering': 607083, 'appealing': 82096, 're appealing': 698297, 'appealing to': 82104, 'american to': 52259, 'take these': 832699, 'protect each': 684817, 'other and': 619819, 'virus doesn': 958141, 'doesn spread': 251947, 'we re appealing': 972825, 're appealing to': 698298, 'appealing to all': 82105, 'to all american': 900230, 'all american to': 42004, 'american to take': 52271, 'to take these': 916247, 'take these step': 832702, 'these step to': 880726, 'step to protect': 799660, 'to protect each': 912300, 'protect each other': 684818, 'each other and': 264154, 'other and to': 619834, 'and to ensure': 74168, 'that the virus': 846862, 'the virus doesn': 870826, 'virus doesn spread': 958143, 'tneans': 899398, 'table': 831449, 'insecurity wa': 439182, 'wa hitting': 962314, 'hitting tn': 398606, 'tn amp': 899380, 'the before': 849427, 'food insecure': 315050, 'insecure household': 439129, 'household could': 406775, 'could double': 209107, 'double there': 256075, 'there never': 878783, 'been more': 121537, 'important time': 419041, 'keep fighting': 471502, 'fighting for': 305069, 'for tneans': 327209, 'tneans to': 899399, 'the table': 869104, 'table via': 831508, 'food insecurity wa': 315074, 'insecurity wa hitting': 439183, 'wa hitting tn': 962315, 'hitting tn amp': 398607, 'tn amp the': 899381, 'amp the before': 54644, 'the before covid': 849428, '19 now the': 8860, 'now the of': 576053, 'the of food': 862053, 'of food insecure': 583718, 'food insecure household': 315053, 'insecure household could': 439130, 'household could double': 406776, 'could double there': 209110, 'double there never': 256076, 'there never been': 878784, 'never been more': 557900, 'been more important': 121542, 'more important time': 539495, 'important time to': 419043, 'time to we': 898099, 'to we will': 918410, 'will keep fighting': 993893, 'keep fighting for': 471503, 'fighting for tneans': 305084, 'for tneans to': 327210, 'tneans to have': 899400, 'have food on': 380658, 'food on the': 315604, 'on the table': 604396, 'the table via': 869113, 'tap': 834313, '99b': 23933, 'company tap': 191151, 'tap nearly': 834328, 'nearly 99b': 553794, '99b amid': 23934, 'amid borrowing': 52398, 'borrowing surge': 135637, 'some consumer company': 782591, 'consumer company tap': 196839, 'company tap nearly': 191152, 'tap nearly 99b': 834329, 'nearly 99b amid': 553795, '99b amid borrowing': 23935, 'amid borrowing surge': 52399, 'southsudan': 786910, 'prior': 678358, 'foodinsecurity': 317980, 'movement restriction': 543923, 'restriction related': 717364, 'the response': 865617, 'in southsudan': 428158, 'southsudan are': 786911, 'are leading': 87738, 'to reduced': 913052, 'reduced food': 706078, 'food import': 314911, 'import increased': 418639, 'and shortage': 71567, 'buying prior': 150922, 'prior to': 678366, 'over 20': 629799, '20 00': 12852, 'of catastrophic': 581197, 'catastrophic level': 166957, 'of foodinsecurity': 583832, 'movement restriction related': 543930, 'restriction related to': 717365, 'to the response': 917022, 'the response to': 865624, 'response to 19': 715824, 'to 19 in': 899541, '19 in southsudan': 7783, 'in southsudan are': 428159, 'southsudan are leading': 786912, 'are leading to': 87742, 'leading to reduced': 483773, 'to reduced food': 913053, 'reduced food import': 706079, 'food import increased': 314913, 'import increased price': 418640, 'increased price and': 433410, 'price and shortage': 672537, 'and shortage of': 71571, 'shortage of panic': 765125, 'panic buying prior': 637851, 'buying prior to': 150923, 'prior to over': 678376, 'to over 20': 911286, 'over 20 00': 629800, '20 00 people': 12861, '00 people were': 421, 'people were at': 650196, 'were at risk': 979355, 'risk of catastrophic': 723731, 'of catastrophic level': 581198, 'catastrophic level of': 166958, 'level of foodinsecurity': 487638, 'freed': 332354, 'food volume': 317438, 'volume due': 960131, 'to significant': 914646, 'significant increase': 769465, 'in distribution': 422316, 'distribution cost': 248138, 'cost at': 207875, 'at britain': 98167, 'britain largest': 140418, 'tesco the': 838829, 'chain of': 170952, 'of certain': 581247, 'item wa': 463789, 'wa freed': 962170, 'freed up': 332355, 'up supplychain': 946106, 'increase in food': 432835, 'in food volume': 422992, 'food volume due': 317439, 'volume due to': 960132, 'due to measure': 261865, 'to measure to': 909986, 'measure to curb': 525391, 'curb the covid': 220581, 'pandemic ha led': 635554, 'led to significant': 485298, 'to significant increase': 914647, 'significant increase in': 769466, 'increase in distribution': 432830, 'in distribution cost': 422317, 'distribution cost at': 248139, 'cost at britain': 207876, 'at britain largest': 98168, 'britain largest supermarket': 140419, 'largest supermarket tesco': 480033, 'supermarket tesco the': 823154, 'tesco the supply': 838831, 'supply chain of': 825000, 'chain of certain': 170955, 'of certain item': 581253, 'certain item wa': 170042, 'item wa freed': 463792, 'wa freed up': 962171, 'freed up supplychain': 332356, 'civilization': 179585, 'chinesewuhanvirus': 177474, 'chineseinfluenza': 177419, 'the panicking': 863245, 'people act': 646758, 'have brain': 379836, 'brain and': 137582, 'll survive': 497053, 'survive pandemic': 829221, 'pandemic poem': 636201, 'poem plague': 662356, 'plague poetry': 657982, 'poetry survival': 662384, 'survival civilization': 829025, 'civilization chinesewuhanvirus': 179588, 'chinesewuhanvirus chineseinfluenza': 177478, 'chineseinfluenza toiletpaper': 177420, 'stop the panicking': 805145, 'the panicking people': 863246, 'panicking people act': 639369, 'people act like': 646759, 'act like you': 29691, 'like you have': 491873, 'you have brain': 1019020, 'have brain and': 379837, 'brain and we': 137584, 'we ll survive': 972281, 'll survive pandemic': 497055, 'survive pandemic poem': 829223, 'pandemic poem plague': 636202, 'poem plague poetry': 662357, 'plague poetry survival': 657983, 'poetry survival civilization': 662385, 'survival civilization chinesewuhanvirus': 829026, 'civilization chinesewuhanvirus chineseinfluenza': 179589, 'chinesewuhanvirus chineseinfluenza toiletpaper': 177479, 'chineseinfluenza toiletpaper toiletpapercrisis': 177421, 'stunning': 815312, 'what great': 981517, 'price absolutely': 672198, 'absolutely stunning': 27452, 'stunning response': 815317, 'and what great': 75466, 'what great time': 981520, 'time to increase': 898002, 'to increase your': 908309, 'your price absolutely': 1025393, 'price absolutely stunning': 672199, 'absolutely stunning response': 27453, 'stunning response to': 815318, 'did it': 240656, 'only take': 611231, 'for sa': 325283, 'sa network': 728914, 'network to': 557772, 'cut off': 223437, 'data price': 226349, 'we been': 970833, 'been waiting': 122338, 'long one': 501538, 'one could': 606114, 'could say': 209622, 'say maybe': 738926, 'did it only': 240664, 'it only take': 460108, 'only take for': 611232, 'take for sa': 832133, 'for sa network': 325284, 'sa network to': 728915, 'network to cut': 557774, 'to cut off': 903880, 'cut off the': 223445, 'off the data': 594242, 'the data price': 852850, 'data price we': 226365, 'price we been': 677397, 'we been waiting': 970835, 'been waiting for': 122339, 'waiting for too': 964344, 'too long one': 924865, 'long one could': 501539, 'one could say': 606117, 'could say maybe': 209623, 'say maybe it': 738928, 'maybe it not': 521726, 'it not so': 459920, 'not so bad': 571618, 'hype': 412258, 'hysteria medium': 412463, 'medium hype': 527139, 'hype and': 412259, 'and pure': 69792, 'pure stupidity': 689985, 'stupidity coronapocalypse': 815527, 'mass hysteria medium': 519790, 'hysteria medium hype': 412464, 'medium hype and': 527140, 'hype and pure': 412260, 'and pure stupidity': 69795, 'pure stupidity coronapocalypse': 689986, 'more advertising': 538554, 'advertising making': 33244, 'making false': 511064, 'claim around': 179696, 'affair ministry': 34074, 'ministry to': 533574, 'to set': 914287, 'set guideline': 753385, 'guideline for': 368421, 'for advertising': 319040, 'advertising around': 33207, 'around read': 93457, 'no more advertising': 564794, 'more advertising making': 538555, 'advertising making false': 33245, 'making false claim': 511065, 'false claim around': 297409, 'claim around covid': 179697, '19 consumer affair': 5952, 'consumer affair ministry': 196098, 'affair ministry to': 34078, 'ministry to set': 533579, 'to set guideline': 914289, 'set guideline for': 753386, 'guideline for advertising': 368423, 'for advertising around': 319041, 'advertising around read': 33208, 'around read more': 93458, 'glaring': 351585, 'salute all': 732847, 'cashier standing': 166616, 'standing there': 793820, 'there engaging': 878352, 'people despite': 647636, 'of contacting': 581805, 'contacting the': 200348, 'other group': 620322, 'group the': 366916, 'personnel all': 653072, 'all are': 42035, 'the glaring': 856277, 'glaring hero': 351586, 'hero god': 393998, 'bless all': 132580, 'salute all the': 732849, 'all the unsung': 44962, 'hero in this': 394020, 'in this outbreak': 429990, 'this outbreak the': 889331, 'outbreak the grocery': 628712, 'store cashier standing': 806892, 'cashier standing there': 166617, 'standing there engaging': 793821, 'there engaging with': 878353, 'engaging with people': 276926, 'with people despite': 1000141, 'people despite the': 647637, 'despite the risk': 238898, 'risk of contacting': 723736, 'of contacting the': 581807, 'contacting the virus': 200349, 'the virus the': 870907, 'virus the other': 958887, 'the other group': 862531, 'other group the': 620326, 'group the medical': 366918, 'the medical personnel': 860401, 'medical personnel all': 526293, 'personnel all are': 653073, 'all are the': 42051, 'are the glaring': 90834, 'the glaring hero': 856278, 'glaring hero god': 351587, 'hero god bless': 393999, 'god bless all': 354654, 've probably': 953445, 'probably caught': 679234, 'via their': 956315, 'their panic': 874231, 'buying crowding': 150170, 'crowding together': 219410, 'people food': 647937, 'they ve probably': 883671, 've probably caught': 953447, 'probably caught the': 679235, 'caught the via': 167463, 'the via their': 870724, 'via their panic': 956318, 'their panic buying': 874233, 'panic buying crowding': 637697, 'buying crowding together': 150171, 'crowding together with': 219411, 'together with other': 921041, 'with other people': 999958, 'other people food': 620665, 'brunt': 141358, 'dust': 263441, 'beaten': 118601, 'remeber': 710134, 'tom brunt': 923909, 'brunt rt': 141364, 'rt tom': 726840, 'brunt when': 141368, 'the dust': 853790, 'dust ha': 263446, 'ha settled': 371873, 'settled and': 753701, 'have beaten': 379419, 'beaten we': 118608, 'have finally': 380627, 'finally learnt': 306051, 'learnt the': 484282, 'the lesson': 859298, 'lesson that': 486509, 'that society': 846376, 'society most': 781273, 'most important': 542394, 'important people': 418916, 'people nurse': 648898, 'doctor cleaner': 250872, 'cleaner teacher': 180841, 'teacher warehouse': 835530, 'warehouse supermarket': 966779, 'supermarket etc': 820209, 'etc remeber': 282724, 'remeber to': 710135, 'to respect': 913370, 'respect them': 715068, 'them you': 876674, 'tom brunt rt': 923910, 'brunt rt tom': 141365, 'rt tom brunt': 726841, 'tom brunt when': 923911, 'brunt when the': 141369, 'when the dust': 984145, 'the dust ha': 853791, 'dust ha settled': 263447, 'ha settled and': 371874, 'settled and we': 753702, 'we have beaten': 971763, 'have beaten we': 379420, 'beaten we will': 118609, 'will have finally': 993632, 'have finally learnt': 380628, 'finally learnt the': 306052, 'learnt the lesson': 484283, 'the lesson that': 859300, 'lesson that society': 486510, 'that society most': 846379, 'society most important': 781274, 'most important people': 542409, 'important people nurse': 418919, 'people nurse doctor': 648899, 'nurse doctor cleaner': 577288, 'doctor cleaner teacher': 250874, 'cleaner teacher warehouse': 180842, 'teacher warehouse supermarket': 835531, 'warehouse supermarket etc': 966780, 'supermarket etc remeber': 820214, 'etc remeber to': 282725, 'remeber to respect': 710136, 'to respect them': 913375, 'respect them you': 715070, 'them you never': 876679, 'reminder': 710538, 'reminder of': 710572, 'of safe': 589213, 'reminder of safe': 710574, 'of safe distance': 589214, 'safe distance at': 729584, 'distance at the': 246657, 'silver hour': 769808, 'are great': 86946, 'great initiative': 362757, 'initiative in': 438632, 'supermarket how': 820807, 'about reserved': 26086, 'reserved aisle': 714123, 'aisle that': 40386, 'is replenished': 451432, 'replenished regularly': 711674, 'regularly or': 707937, 'or pick': 616603, 'up service': 945964, 'service for': 752373, 'life every': 488633, 'silver hour for': 769809, 'for senior are': 325456, 'senior are great': 750217, 'are great initiative': 86952, 'great initiative in': 362761, 'initiative in supermarket': 438635, 'in supermarket how': 428615, 'supermarket how about': 820808, 'how about reserved': 407300, 'about reserved aisle': 26087, 'reserved aisle that': 714125, 'aisle that is': 40387, 'that is replenished': 844645, 'is replenished regularly': 451433, 'replenished regularly or': 711675, 'regularly or pick': 707938, 'or pick up': 616605, 'pick up service': 655758, 'up service for': 945966, 'service for those': 752395, 'who work hard': 990038, 'hard to save': 378085, 'save life every': 737539, 'life every day': 488634, 'redundancy': 706406, 'asked you': 95913, 'question to': 693773, 'put to': 690925, 'our panel': 624241, 'panel of': 637192, 'of expert': 583325, 'expert here': 291853, 'their response': 874570, 'response on': 715768, 'consumer refund': 198661, 'refund redundancy': 706952, 'redundancy employer': 706409, 'employer right': 274533, 'earlier this week': 264495, 'week we asked': 977187, 'we asked you': 970793, 'asked you for': 95914, 'for your question': 328197, 'your question to': 1025505, 'question to put': 693780, 'to put to': 912621, 'put to our': 690927, 'to our panel': 911229, 'our panel of': 624243, 'panel of expert': 637193, 'of expert here': 583326, 'expert here are': 291854, 'here are their': 392761, 'are their response': 90942, 'their response on': 874573, 'response on consumer': 715769, 'on consumer refund': 600071, 'consumer refund redundancy': 198664, 'refund redundancy employer': 706953, 'redundancy employer right': 706410, 'employer right and': 274534, 'right and more': 721759, 'job amp': 465612, 'amp they': 54682, 'been told': 122235, 'isolate stay': 454915, 'home so': 402081, 'so nearly': 777855, 'american went': 52293, 'bought firearm': 136559, 'firearm do': 308144, 'that cause': 843179, 'cause zombie': 167815, 'zombie or': 1027717, 'or maybe': 616084, 'the neighbor': 861427, 'neighbor are': 556983, 'are coming': 85428, 'people are likely': 647013, 'likely to lose': 492163, 'to lose their': 909464, 'their job amp': 873696, 'job amp they': 465613, 'amp they ve': 54687, 've been told': 952947, 'been told to': 122246, 'told to isolate': 923751, 'to isolate stay': 908543, 'isolate stay home': 454916, 'stay home so': 797003, 'home so nearly': 402084, 'so nearly million': 777856, 'nearly million american': 553842, 'million american went': 532060, 'american went out': 52294, 'went out and': 979081, 'out and bought': 625646, 'and bought firearm': 59105, 'bought firearm do': 136560, 'firearm do they': 308145, 'do they think': 250320, 'they think that': 883564, 'think that cause': 885588, 'that cause zombie': 843185, 'cause zombie or': 167816, 'zombie or maybe': 1027718, 'or maybe the': 616091, 'maybe the neighbor': 521832, 'the neighbor are': 861428, 'neighbor are coming': 556984, 'are coming for': 85433, 'coming for their': 188050, 'recruiting': 705481, 'fao anyone': 298646, 'recent week': 704011, 'week due': 976173, '19 please': 9709, 'visit your': 959438, 'are recruiting': 89518, 'recruiting retail': 705494, 'retail experience': 718105, 'experience is': 291402, 'not essential': 569211, 'fao anyone who': 298647, 'who ha lost': 988855, 'ha lost their': 371189, 'lost their job': 503925, 'their job in': 873717, 'job in recent': 465878, 'in recent week': 427320, 'recent week due': 704016, 'week due to': 976175, 'covid 19 please': 213590, '19 please visit': 9731, 'please visit your': 660730, 'visit your local': 959440, 'local store and': 498454, 'store and check': 806215, 'and check if': 59781, 'they are recruiting': 881382, 'are recruiting retail': 89519, 'recruiting retail experience': 705495, 'retail experience is': 718107, 'experience is not': 291403, 'is not essential': 450072, 'massow': 520190, 'agricultural': 38863, 'ease': 265064, 'canada and': 160353, 'and mike': 67005, 'mike von': 531285, 'von massow': 960423, 'massow professor': 520191, 'professor of': 682573, 'food agricultural': 313057, 'agricultural and': 38869, 'and resource': 70320, 'resource economics': 714761, 'economics at': 267433, 'guelph said': 367949, 'probably seen': 679370, 'worst of': 1011227, 'are restocked': 89641, 'restocked the': 716964, 'could ease': 209125, 'ease even': 265078, 'canada and mike': 160358, 'and mike von': 67006, 'mike von massow': 531286, 'von massow professor': 960424, 'massow professor of': 520192, 'professor of food': 682575, 'of food agricultural': 583637, 'food agricultural and': 313058, 'agricultural and resource': 38871, 'and resource economics': 70323, 'resource economics at': 714762, 'economics at the': 267435, 'at the university': 101136, 'of guelph said': 584378, 'guelph said we': 367950, 'said we ve': 731572, 'we ve probably': 973696, 've probably seen': 953449, 'probably seen the': 679372, 'seen the worst': 747298, 'the worst of': 872063, 'worst of panic': 1011234, 'buying and product': 149925, 'and product are': 69562, 'product are restocked': 680947, 'are restocked the': 89644, 'restocked the panic': 716966, 'the panic could': 863196, 'panic could ease': 638020, 'could ease even': 209126, 'ease even more': 265079, 'weightloss': 977722, 'diet': 241709, 'quarentinelife': 693185, 'laughitthrough': 481828, 'staypositive': 798762, 'well never': 978414, 'never get': 558011, 'the weightloss': 871355, 'weightloss side': 977723, 'effect from': 269003, 'from anything': 334559, 'anything but': 80694, 'like just': 490587, 'just might': 469266, 'might now': 531099, 'now nofood': 575361, 'nofood diet': 566143, 'diet quarentinelife': 241747, 'quarentinelife recipe': 693201, 'recipe will': 704515, 'be laughitthrough': 115660, 'laughitthrough what': 481829, 'else can': 271652, 'do staypositive': 250176, 'well never get': 978415, 'never get the': 558014, 'get the weightloss': 348311, 'the weightloss side': 871356, 'weightloss side effect': 977724, 'side effect from': 768808, 'effect from anything': 269004, 'from anything but': 334560, 'anything but it': 80697, 'but it look': 146135, 'look like just': 502489, 'like just might': 490588, 'just might now': 469268, 'might now nofood': 531100, 'now nofood diet': 575362, 'nofood diet quarentinelife': 566144, 'diet quarentinelife recipe': 241748, 'quarentinelife recipe will': 693202, 'recipe will definitely': 704516, 'definitely be laughitthrough': 232310, 'be laughitthrough what': 115661, 'laughitthrough what else': 481830, 'what else can': 981407, 'else can you': 271657, 'can you do': 160294, 'you do staypositive': 1018272, '492kg': 19414, 'thoughtless': 893366, 'wasteless': 968290, 'of 492kg': 579603, '492kg person': 19415, 'person of': 652550, 'of municipal': 586722, 'municipal waste': 546093, 'waste in': 968134, 'europe let': 283472, 'let hope': 486801, 'that thoughtless': 847021, 'thoughtless panic': 893367, 'not increase': 570118, 'increase this': 433127, 'this amount': 886309, 'amount it': 53197, 'already now': 47531, 'now expected': 574644, 'increase food': 432769, 'waste even': 968113, 'urge to': 948233, 'buy smart': 149187, 'smart try': 775444, 'be wasteless': 118061, 'looking at an': 502798, 'average of 492kg': 104880, 'of 492kg person': 579604, '492kg person of': 19416, 'person of municipal': 652551, 'of municipal waste': 586723, 'municipal waste in': 546094, 'waste in europe': 968135, 'in europe let': 422644, 'europe let hope': 283473, 'let hope that': 486806, 'hope that thoughtless': 403659, 'that thoughtless panic': 847022, 'thoughtless panic shopping': 893369, 'panic shopping will': 638595, 'shopping will not': 764415, 'will not increase': 994233, 'not increase this': 570126, 'increase this amount': 433129, 'this amount it': 886311, 'amount it is': 53198, 'it is already': 458870, 'is already now': 445526, 'already now expected': 47532, 'now expected to': 574646, 'expected to increase': 290984, 'to increase food': 908280, 'increase food waste': 432774, 'food waste even': 317479, 'waste even in': 968114, 'even in challenging': 284230, 'challenging time we': 171654, 'time we urge': 898239, 'we urge to': 973602, 'urge to buy': 948234, 'to buy smart': 902301, 'buy smart try': 149188, 'smart try to': 775445, 'try to be': 934604, 'to be wasteless': 901632, 'pitch': 656995, 'appalling': 81833, 'classic': 180312, '130': 3289, 'heritage': 393896, 'favourite': 300588, 'your email': 1023640, 'email today': 272343, '19 included': 7799, 'included sale': 431702, 'sale pitch': 732447, 'pitch about': 656996, 'about online': 25849, 'shopping you': 764486, 'you appalling': 1017031, 'appalling described': 81835, 'described classic': 237938, 'classic favorite': 180327, 'favorite for': 300515, 'an english': 55755, 'english company': 277052, 'company with': 191343, 'with 130': 996944, '130 year': 3302, 'year of': 1014770, 'of heritage': 584592, 'heritage that': 393899, 'is appalling': 445777, 'appalling it': 81841, 'it favourite': 457964, 'favourite good': 300593, 'at shoe': 100505, 'shoe but': 759659, 'but crap': 145481, 'crap at': 214886, 'your email today': 1023644, 'email today about': 272344, 'today about covid': 919141, 'covid 19 included': 213254, '19 included sale': 7800, 'included sale pitch': 431703, 'sale pitch about': 732448, 'pitch about online': 656997, 'about online shopping': 25851, 'online shopping you': 609358, 'shopping you appalling': 764487, 'you appalling described': 1017032, 'appalling described classic': 81836, 'described classic favorite': 237939, 'classic favorite for': 180328, 'favorite for an': 300516, 'for an english': 319283, 'an english company': 55756, 'english company with': 277053, 'company with 130': 191344, 'with 130 year': 996945, '130 year of': 3303, 'year of heritage': 1014780, 'of heritage that': 584593, 'heritage that is': 393900, 'that is appalling': 844556, 'is appalling it': 445780, 'appalling it favourite': 81842, 'it favourite good': 457965, 'favourite good at': 300594, 'good at shoe': 356798, 'at shoe but': 100506, 'shoe but crap': 759660, 'but crap at': 145482, 'energy crude': 276425, 'energy crude oil': 276426, 'fall by over': 296873, 'got two': 358997, 'two email': 936912, 'one about': 605852, 'about help': 25368, 'help during': 389604, 'other info': 620427, 'just got two': 468873, 'got two email': 358998, 'two email from': 936913, 'email from one': 272190, 'from one about': 336679, 'one about help': 605854, 'about help during': 25369, 'help during covid': 389607, 'and the other': 73503, 'the other info': 862537, 'other info about': 620428, 'info about price': 437408, 'they provide': 882928, 'provide mask': 686383, 'of employee': 583071, 'employee contracting': 273732, 'contracting the': 201784, 'no look': 564676, 'look in': 502414, 'at no': 99891, 'one like': 606598, 'at high': 98892, 'risk it': 723647, 'about money': 25742, 'will they provide': 995183, 'they provide mask': 882932, 'provide mask and': 686384, 'mask and look': 518345, 'and look at': 66364, 'at the risk': 101081, 'risk of employee': 723745, 'of employee contracting': 583073, 'employee contracting the': 273733, 'contracting the virus': 201792, 'the virus that': 870906, 'virus that no': 958874, 'that no look': 845359, 'no look in': 564677, 'look in every': 502416, 'in every supermarket': 422691, 'every supermarket at': 286240, 'supermarket at no': 819245, 'at no one': 99894, 'no one like': 564947, 'one like mask': 606602, 'like mask and': 490721, 'mask and they': 518378, 'they are at': 881206, 'are at high': 84667, 'at high risk': 98895, 'high risk it': 395361, 'risk it all': 723648, 'it all about': 456334, 'all about money': 41922, 'about money and': 25743, 'money and greed': 536598, 'nobel': 565964, 'quatantine': 693294, 'nurtricrops': 577638, 'quinoa': 694753, 'this adversity': 886212, 'adversity of': 33134, 'of nobel': 587050, 'nobel covid': 565965, '19 where': 12028, 'the almost': 848592, 'almost whole': 46768, 'is quatantine': 451172, 'quatantine lockdown': 693295, 'lockdown grow': 499433, 'grow nurtricrops': 367044, 'nurtricrops dedicated': 577639, 'dedicated team': 231738, 'team is': 835696, 'service so': 752838, 'food yes': 317694, 'are ready': 89457, 'ready with': 700997, 'of quinoa': 588704, 'quinoa and': 694754, 'and looking': 66373, 'to export': 905504, 'export the': 292713, 'at peak': 100085, 'in this adversity': 429902, 'this adversity of': 886214, 'adversity of nobel': 33135, 'of nobel covid': 587051, 'nobel covid 19': 565966, 'covid 19 where': 214066, '19 where the': 12031, 'where the almost': 985215, 'the almost whole': 848595, 'almost whole world': 46769, 'whole world is': 990384, 'world is quatantine': 1009714, 'is quatantine lockdown': 451173, 'quatantine lockdown grow': 693296, 'lockdown grow nurtricrops': 499434, 'grow nurtricrops dedicated': 367045, 'nurtricrops dedicated team': 577640, 'dedicated team is': 231739, 'team is at': 835698, 'is at your': 445878, 'at your service': 101690, 'your service so': 1025737, 'service so you': 752843, 'so you never': 778848, 'you never run': 1020081, 'of food yes': 583826, 'food yes we': 317695, 'yes we are': 1015594, 'we are ready': 970680, 'are ready with': 89462, 'ready with stock': 700998, 'with stock of': 1000975, 'stock of quinoa': 802538, 'of quinoa and': 588705, 'quinoa and looking': 694755, 'and looking forward': 66376, 'forward to export': 330024, 'to export the': 905509, 'export the demand': 292715, 'the demand is': 853101, 'demand is at': 235714, 'is at peak': 445870, 'never said': 558162, 'is blocked': 446207, 'blocked what': 132872, 'wa trying': 963581, 'to point': 911856, 'is they': 453050, 'selling it': 749310, 'an exorbitant': 55952, 'price had': 674394, 'had tweeted': 373769, 'tweeted to': 936457, 'the matter': 860296, 'matter now': 520604, 'now see': 575743, 'never said that': 558164, 'that the supply': 846847, 'the supply is': 868951, 'supply is blocked': 825435, 'is blocked what': 446208, 'blocked what wa': 132873, 'what wa trying': 982527, 'wa trying to': 963582, 'trying to point': 934840, 'to point out': 911860, 'point out is': 662581, 'out is they': 626437, 'is they are': 453051, 'they are selling': 881402, 'are selling it': 89961, 'selling it at': 749311, 'it at an': 456610, 'at an exorbitant': 97986, 'an exorbitant price': 55954, 'exorbitant price had': 290411, 'price had tweeted': 674399, 'had tweeted to': 373770, 'tweeted to and': 936458, 'to and to': 900530, 'and to look': 74182, 'look into the': 502435, 'into the matter': 443149, 'the matter now': 860299, 'matter now see': 520605, 'now see what': 575754, 'see what is': 746035, 'rob': 724613, 'bandana': 109363, 'everyone look': 287166, 'are gonna': 86912, 'gonna rob': 356604, 'rob the': 724634, 'these bandana': 879669, 'bandana mask': 109376, 'everyone look like': 287167, 'like they are': 491447, 'they are gonna': 881288, 'are gonna rob': 86920, 'gonna rob the': 356605, 'rob the grocery': 724635, 'same time with': 733376, 'time with these': 898361, 'with these bandana': 1001635, 'these bandana mask': 879670, 'mexico': 529988, 'argentina': 92639, 'ambitious': 51304, '2019 the': 14025, 'new president': 559332, 'of mexico': 586462, 'mexico and': 529991, 'and argentina': 58386, 'argentina announced': 92640, 'announced plan': 77019, 'boost their': 135023, 'their struggling': 874881, 'struggling economy': 814437, 'economy ambitious': 267624, 'ambitious oil': 51305, 'oil project': 597377, 'project that': 683539, 'would boost': 1011687, 'boost state': 135016, 'state revenue': 795905, 'revenue but': 720385, 'caused serious': 167948, 'serious price': 751450, 'price crash': 673313, 'crash in': 214987, 'the crude': 852541, 'in 2019 the': 419810, '2019 the new': 14026, 'the new president': 861542, 'new president of': 559333, 'president of mexico': 670867, 'of mexico and': 586463, 'mexico and argentina': 529992, 'and argentina announced': 58387, 'argentina announced plan': 92641, 'announced plan to': 77020, 'plan to boost': 658270, 'to boost their': 901932, 'boost their struggling': 135026, 'their struggling economy': 874882, 'struggling economy ambitious': 814438, 'economy ambitious oil': 267625, 'ambitious oil project': 51306, 'oil project that': 597378, 'project that would': 683543, 'that would boost': 847680, 'would boost state': 1011688, 'boost state revenue': 135017, 'state revenue but': 795906, 'revenue but covid': 720386, '19 ha caused': 7331, 'ha caused serious': 370098, 'caused serious price': 167950, 'serious price crash': 751451, 'price crash in': 673323, 'crash in the': 214998, 'in the crude': 429113, 'the crude oil': 852542, 'crude oil market': 219562, 'coronachainscare': 204461, 'buying buy': 150069, 'buy product': 149104, 'and leave': 66046, 'neighbor pandemic': 557068, 'food toiletpaper': 317318, 'toiletpaper coronachainscare': 921879, 'coronachainscare stoppanicbuying': 204466, 'stoppanicbuying retail': 805600, 'panic buying buy': 637666, 'buying buy product': 150071, 'buy product and': 149105, 'product and leave': 680890, 'and leave some': 66059, 'your neighbor pandemic': 1024960, 'neighbor pandemic food': 557069, 'pandemic food toiletpaper': 635442, 'food toiletpaper coronachainscare': 317319, 'toiletpaper coronachainscare stoppanicbuying': 921880, 'coronachainscare stoppanicbuying retail': 204467, 'accumulating': 28861, 'panic australia': 637387, 'australia the': 103398, 'coronavirus doe': 205838, 'not mean': 570549, 'will run': 994726, 'food our': 315704, 'our farmer': 623019, 'farmer produce': 299479, 'produce enough': 680250, 'for 75': 318913, '75 million': 22142, 'people stop': 649645, 'stop accumulating': 804424, 'accumulating stock': 28866, 'stock writes': 803210, 'writes the': 1012874, 'not panic australia': 570895, 'panic australia the': 637388, 'australia the coronavirus': 103400, 'the coronavirus doe': 851835, 'coronavirus doe not': 205839, 'doe not mean': 251508, 'not mean that': 570553, 'mean that we': 524689, 'we will run': 973901, 'will run out': 994728, 'of food our': 583743, 'food our farmer': 315706, 'our farmer produce': 623025, 'farmer produce enough': 299480, 'produce enough for': 680252, 'enough for 75': 277428, 'for 75 million': 318915, '75 million people': 22144, 'million people stop': 532315, 'people stop accumulating': 649647, 'stop accumulating stock': 804425, 'accumulating stock writes': 28867, 'stock writes the': 803211, 'writes the minister': 1012875, 'the minister of': 860658, 'minister of agriculture': 533421, 'undoc': 941019, 'indiscriminate': 435105, 'thus': 895497, 'threatens': 893836, 'undoc worker': 941020, 'worker pick': 1007574, 'pick our': 655669, 'our vegetable': 625259, 'vegetable stock': 954097, 'stock our': 802597, 'shelf cook': 756958, 'cook our': 202765, 'food maintain': 315355, 'maintain our': 509005, 'elderly this': 270907, 'is indiscriminate': 448885, 'indiscriminate it': 435106, 'affect everyone': 34141, 'everyone equally': 286893, 'equally thus': 279641, 'thus when': 895539, 'when one': 983797, 'one part': 606835, 'our pop': 624392, 'pop is': 664433, 'is vulnerable': 453726, 'it threatens': 461668, 'threatens all': 893837, 'undoc worker pick': 941021, 'worker pick our': 1007575, 'pick our vegetable': 655670, 'our vegetable stock': 625260, 'vegetable stock our': 954098, 'stock our shelf': 802603, 'our shelf cook': 624740, 'shelf cook our': 756959, 'cook our food': 202766, 'our food maintain': 623114, 'food maintain our': 315356, 'maintain our home': 509006, 'our home take': 623456, 'home take care': 402185, 'care of our': 164113, 'of our elderly': 587457, 'our elderly this': 622871, 'elderly this virus': 270909, 'virus is indiscriminate': 958382, 'is indiscriminate it': 448886, 'indiscriminate it affect': 435107, 'it affect everyone': 456282, 'affect everyone equally': 34142, 'everyone equally thus': 286894, 'equally thus when': 279642, 'thus when one': 895540, 'when one part': 983801, 'one part of': 606836, 'of our pop': 587540, 'our pop is': 624393, 'pop is vulnerable': 664437, 'is vulnerable to': 453727, 'virus it threatens': 958422, 'it threatens all': 461669, 'threatens all of': 893838, 'featuring': 301577, 'b2b': 106452, 'd2c': 224195, 'watershed': 969302, 'pivoting': 657124, 'linkedin': 493998, 'round up': 726375, 'week top': 977114, 'top retail': 925711, 'retail story': 718742, 'from world': 338428, 'world featuring': 1009544, 'featuring b2b': 301580, 'b2b go': 106460, 'go d2c': 353438, 'd2c online': 224202, 'shopping watershed': 764343, 'watershed moment': 969303, 'moment in': 535964, 'the manufacturer': 860022, 'manufacturer pivoting': 513502, 'pivoting production': 657127, 'retail rent': 718441, 'rent read': 711172, 'on linkedin': 601871, 'round up of': 726378, 'up of the': 945507, 'the week top': 871318, 'week top retail': 977115, 'top retail story': 925712, 'retail story from': 718743, 'story from world': 811988, 'from world featuring': 338429, 'world featuring b2b': 1009545, 'featuring b2b go': 301581, 'b2b go d2c': 106461, 'go d2c online': 353439, 'd2c online grocery': 224203, 'grocery shopping watershed': 365105, 'shopping watershed moment': 764344, 'watershed moment in': 969305, 'moment in the': 535967, 'in the manufacturer': 429338, 'the manufacturer pivoting': 860025, 'manufacturer pivoting production': 513503, 'pivoting production and': 657128, 'production and retail': 681932, 'and retail rent': 70441, 'retail rent read': 718443, 'rent read on': 711173, 'read on linkedin': 700481, 'associated': 96914, 'proceed': 679833, 'clinical': 182319, 'potential for': 667069, 'long distance': 501392, 'distance animal': 246646, 'animal transport': 76671, 'transport to': 929961, 'spread disease': 790503, 'disease is': 245161, 'is deeply': 447070, 'deeply worrying': 231999, 'worrying the': 1010835, 'the european': 854578, 'european food': 283573, 'safety authority': 730478, 'authority ha': 103731, 'stress associated': 813308, 'associated with': 96933, 'with handling': 998731, 'handling and': 376331, 'and transport': 74381, 'transport may': 929906, 'cause latent': 167629, 'latent infection': 481008, 'infection to': 436870, 'to proceed': 912167, 'proceed to': 679836, 'to clinical': 902851, 'clinical disease': 182322, 'the potential for': 864118, 'potential for long': 667074, 'for long distance': 323075, 'long distance animal': 501393, 'distance animal transport': 246647, 'animal transport to': 76672, 'transport to spread': 929963, 'to spread disease': 915059, 'spread disease is': 790504, 'disease is deeply': 245163, 'is deeply worrying': 447071, 'deeply worrying the': 232000, 'worrying the european': 1010836, 'the european food': 854583, 'european food safety': 283574, 'food safety authority': 316265, 'safety authority ha': 730479, 'authority ha said': 103733, 'ha said that': 371796, 'that the stress': 846844, 'the stress associated': 868269, 'stress associated with': 813309, 'associated with handling': 96935, 'with handling and': 998732, 'handling and transport': 376332, 'and transport may': 74382, 'transport may cause': 929907, 'may cause latent': 521074, 'cause latent infection': 167630, 'latent infection to': 481009, 'infection to proceed': 436871, 'to proceed to': 912168, 'proceed to clinical': 679837, 'to clinical disease': 902852, 'executive at': 289859, 'china share': 176941, 'learned about': 484103, 'about managing': 25696, 'managing operation': 512882, 'operation remotely': 613247, 'remotely during': 710766, 'executive at consumer': 289860, 'at consumer company': 98315, 'consumer company in': 196834, 'in china share': 421436, 'china share what': 176942, 'share what they': 755347, 'what they ve': 982420, 'they ve learned': 883663, 've learned about': 953326, 'learned about managing': 484105, 'about managing operation': 25697, 'managing operation remotely': 512883, 'operation remotely during': 613248, 'remotely during the': 710767, 'local facebook': 497931, 'group one': 366818, 'one officer': 606779, 'officer off': 595687, 'so her': 777291, 'her husband': 392118, 'husband also': 411667, 'also officer': 48603, 'officer go': 595658, 'them thought': 876437, 'thought even': 893033, 'even idiot': 284194, 'idiot could': 413495, 'could understand': 209801, 'the advice': 848380, 'advice not': 33439, 'household ha': 406825, 'it clearly': 457167, 'clearly not': 181529, 'my local facebook': 549111, 'local facebook group': 497932, 'facebook group one': 294932, 'group one officer': 366819, 'one officer off': 606780, 'officer off work': 595688, 'off work with': 594417, 'work with covid': 1006026, '19 so her': 10644, 'so her husband': 777292, 'her husband also': 392119, 'husband also officer': 411668, 'also officer go': 48604, 'officer go to': 595659, 'supermarket for them': 820425, 'for them thought': 326926, 'them thought even': 876439, 'thought even idiot': 893034, 'even idiot could': 284195, 'idiot could understand': 413496, 'could understand the': 209802, 'understand the advice': 940743, 'the advice not': 848384, 'advice not to': 33440, 'not to go': 572155, 'or anyone in': 614370, 'your household ha': 1024430, 'household ha it': 406827, 'ha it clearly': 371015, 'it clearly not': 457168, 'pessimism': 653312, 'shanghai': 754797, 'globaltrade': 352431, 'globaleconomy': 352311, 'the optimism': 862424, 'optimism of': 613909, 'demand recovery': 236115, 'recovery is': 705350, 'is completely': 446699, 'completely replaced': 192339, 'replaced with': 711606, 'with pessimism': 1000190, 'pessimism shanghai': 653321, 'shanghai source': 754808, 'source said': 786541, 'said what': 731579, 'some cause': 782504, 'are feeding': 86512, 'feeding into': 302464, 'global steel': 352215, 'steel market': 799344, 'market pessimism': 516842, 'pessimism china': 653315, 'china economy': 176632, 'economy industrial': 267974, 'industrial globaltrade': 435542, 'globaltrade globaleconomy': 352432, 'the optimism of': 862425, 'optimism of demand': 613910, 'of demand recovery': 582509, 'demand recovery is': 236117, 'recovery is completely': 705351, 'is completely replaced': 446708, 'completely replaced with': 192340, 'replaced with pessimism': 711607, 'with pessimism shanghai': 1000191, 'pessimism shanghai source': 653322, 'shanghai source said': 754809, 'source said what': 786543, 'said what are': 731580, 'what are some': 981066, 'are some cause': 90259, 'some cause that': 782505, 'cause that are': 167754, 'that are feeding': 842749, 'are feeding into': 86513, 'feeding into the': 302465, 'into the global': 443132, 'the global steel': 856329, 'global steel market': 352216, 'steel market pessimism': 799346, 'market pessimism china': 516843, 'pessimism china economy': 653316, 'china economy industrial': 176635, 'economy industrial globaltrade': 267975, 'industrial globaltrade globaleconomy': 435543, 'polis': 663568, 'copolitics': 203418, 'maskchallenge': 519611, 'gov polis': 359663, 'polis ha': 663569, 'ha asked': 369627, 'when outside': 983834, 'house at': 406205, 'example suggested': 288972, 'suggested mask': 817575, 'mask design': 518564, 'design below': 238220, 'below copolitics': 126622, 'copolitics maskchallenge': 203419, 'gov polis ha': 359664, 'polis ha asked': 663570, 'ha asked that': 369632, 'asked that everyone': 95831, 'that everyone wear': 843774, 'mask when outside': 519539, 'when outside the': 983835, 'outside the house': 629596, 'the house at': 857593, 'house at the': 406208, 'store for example': 807802, 'for example suggested': 321290, 'example suggested mask': 288973, 'suggested mask design': 817576, 'mask design below': 518565, 'design below copolitics': 238221, 'below copolitics maskchallenge': 126623, 'yay': 1014192, 'dear when': 229916, 'when your': 984621, 'your gas': 1024025, 'start shooting': 794495, 'why your': 991605, 'into his': 442631, 'his amp': 397191, 'amp his': 53944, 'his friend': 397456, 'friend pocket': 333757, 'pocket having': 662174, 'having it': 384125, 'it happen': 458460, 'an added': 55098, 'added bonus': 31549, 'bonus yay': 134423, 'dear when your': 229917, 'when your gas': 984626, 'your gas price': 1024026, 'gas price start': 344027, 'price start shooting': 676613, 'start shooting up': 794496, 'shooting up here': 759782, 'up here why': 945080, 'here why your': 393842, 'why your money': 991608, 'your money is': 1024863, 'is going into': 448093, 'going into his': 355236, 'into his amp': 442632, 'his amp his': 397192, 'amp his friend': 53947, 'his friend pocket': 397458, 'friend pocket having': 333758, 'pocket having it': 662175, 'having it happen': 384127, 'it happen during': 458461, 'is an added': 445635, 'an added bonus': 55099, 'added bonus yay': 31550, 'leafy': 483835, 'surrey': 828692, 'educated': 268780, 'fck': 300789, 'nhsworkers': 562279, 'in leafy': 424655, 'leafy surrey': 483836, 'surrey where': 828704, 'where educated': 984852, 'educated people': 268785, 'really should': 702580, 'know better': 476307, 'better we': 128602, 'keep frontline': 471529, 'frontline medical': 338788, 'staff healthy': 792523, 'healthy fck': 387603, 'fck toilet': 300790, 'paper basic': 639927, 'food stophoarding': 316831, 'stophoarding now': 805433, 'now nhsworkers': 575342, 'it happening in': 458474, 'happening in leafy': 377364, 'in leafy surrey': 424656, 'leafy surrey where': 483837, 'surrey where educated': 828705, 'where educated people': 984853, 'educated people really': 268786, 'people really should': 649248, 'really should know': 702582, 'should know better': 766178, 'know better we': 476311, 'better we need': 128603, 'to keep frontline': 908791, 'keep frontline medical': 471530, 'frontline medical staff': 338789, 'medical staff healthy': 526397, 'staff healthy fck': 792524, 'healthy fck toilet': 387604, 'fck toilet paper': 300791, 'toilet paper basic': 921199, 'paper basic food': 639928, 'basic food stophoarding': 111895, 'food stophoarding now': 316832, 'stophoarding now nhsworkers': 805434, 'starkist': 794173, 'cracker': 214724, 'is low': 449472, 'low key': 505372, 'key the': 473415, 'best market': 127760, 'market research': 516991, 'what item': 981766, 'people would': 650535, 'would never': 1012055, 'never buy': 557919, 'buy even': 148581, 'global virus': 352282, 'virus outbreak': 958586, 'see you': 746099, 'you starkist': 1021351, 'starkist ready': 794174, 'eat tuna': 266092, 'tuna and': 935370, 'and cracker': 60678, 'cracker coronapocolypse': 214727, 'coronapocolypse panicshopping': 205236, 'this is low': 888308, 'is low key': 449477, 'low key the': 505373, 'key the best': 473416, 'the best market': 849523, 'best market research': 127761, 'market research for': 516994, 'research for grocery': 713721, 'store to know': 810783, 'know what item': 476962, 'what item people': 981768, 'item people would': 463557, 'people would never': 650539, 'would never buy': 1012056, 'never buy even': 557920, 'buy even in': 148583, 'even in global': 284237, 'in global virus': 423344, 'global virus outbreak': 352283, 'virus outbreak they': 958592, 'outbreak they see': 628741, 'they see you': 883296, 'see you starkist': 746113, 'you starkist ready': 1021352, 'starkist ready to': 794175, 'to eat tuna': 904908, 'eat tuna and': 266093, 'tuna and cracker': 935371, 'and cracker coronapocolypse': 60679, 'cracker coronapocolypse panicshopping': 214728, 'ha handsanitizer': 370819, 'handsanitizer sold': 376642, 'out everywhere': 626038, 'everywhere learn': 288230, 'own with': 632308, 'this book': 886593, 'book ad': 134455, 'ad virus': 31187, 'pandemic coronaoutbreak': 635224, 'coronaoutbreak coronacrisis': 205111, 'ha handsanitizer sold': 370820, 'handsanitizer sold out': 376643, 'sold out everywhere': 781732, 'out everywhere learn': 626039, 'everywhere learn how': 288231, 'your own with': 1025170, 'own with this': 632312, 'with this book': 1001681, 'this book ad': 886594, 'book ad virus': 134456, 'ad virus pandemic': 31188, 'virus pandemic coronaoutbreak': 958599, 'pandemic coronaoutbreak coronacrisis': 635225, 'are fake': 86455, 'fake product': 296690, 'and charity': 59756, 'charity that': 173692, 'that scam': 846140, 'scam people': 740294, 'crisis learn': 217649, 'can protect': 159319, 'know that there': 476793, 'that there are': 846893, 'there are fake': 878102, 'are fake product': 86456, 'fake product and': 296691, 'product and charity': 680878, 'and charity that': 59761, 'charity that scam': 173696, 'that scam people': 846142, 'scam people out': 740300, 'of their money': 591680, 'their money in': 874000, 'the crisis learn': 852400, 'crisis learn more': 217651, 'learn more and': 484016, 'more and how': 538614, 'and how you': 64845, 'you can protect': 1017754, 'can protect yourself': 159327, 'yourself and your': 1026531, 'and your money': 76085, 'birx': 131467, 'sacramento': 729065, 'bee': 120466, 'nationalemergency': 552646, 'birx moment': 131470, 'be going': 115048, 'friend safe': 333785, 'safe the': 730015, 'the sacramento': 866110, 'sacramento bee': 729068, 'bee pandemic': 120469, 'pandemic nationalemergency': 636005, 'nationalemergency publichealth': 552647, 'birx moment to': 131472, 'moment to not': 536085, 'to not be': 910681, 'not be going': 568391, 'be going to': 115055, 'store keep your': 808645, 'keep your family': 472265, 'family and your': 297615, 'and your friend': 76076, 'your friend safe': 1023975, 'friend safe the': 333790, 'safe the sacramento': 730017, 'the sacramento bee': 866111, 'sacramento bee pandemic': 729069, 'bee pandemic nationalemergency': 120470, 'pandemic nationalemergency publichealth': 636006, 'stir': 801694, 'leader we': 483565, 'spread so': 790797, 'on walk': 605090, 'walk everyone': 964776, 'so stir': 778265, 'stir crazy': 801695, 'crazy that': 215436, 'twice day': 936520, 'day see': 228320, 'our neighbor': 624004, 'friend there': 333834, 'leader we do': 483567, 'want to spread': 966125, 'to spread so': 915078, 'spread so you': 790801, 'you can only': 1017736, 'can only go': 159125, 'only go to': 610522, 'or on walk': 616375, 'on walk everyone': 605091, 'walk everyone we': 964778, 'everyone we are': 287560, 'are so stir': 90219, 'so stir crazy': 778266, 'stir crazy that': 801699, 'crazy that we': 215439, 'that we go': 847373, 'grocery store twice': 365890, 'store twice day': 810975, 'twice day see': 936521, 'day see all': 228321, 'see all our': 744878, 'all our neighbor': 43819, 'our neighbor and': 624005, 'neighbor and friend': 556977, 'and friend there': 63335, 'friend there and': 333835, 'there and continue': 877997, 'continue to spread': 201263, 'to spread and': 915052, 'spread and look': 790414, 'and look for': 66365, 'look for toiletpaper': 502373, 'polluting': 663889, 'climatecrisis': 182249, 'heel': 388765, 'reduce polluting': 705892, 'polluting industry': 663890, 'and reduce': 70092, 'reduce consumer': 705800, 'consumer culture': 197033, 'culture is': 220298, 'inevitable but': 436366, 'the climatecrisis': 851023, 'climatecrisis is': 182252, 'is constantly': 446775, 'constantly postponed': 195687, 'postponed now': 666820, 'plague on': 657978, 'our heel': 623406, 'heel there': 388771, 'no remind': 565327, 'remind me': 710487, 'me tomorrow': 523814, 'tomorrow read': 924169, 'read my': 700461, 'my editorial': 548063, 'editorial on': 268676, 'on on': 602506, 'reduce polluting industry': 705893, 'polluting industry and': 663891, 'industry and reduce': 435648, 'and reduce consumer': 70093, 'reduce consumer culture': 705801, 'consumer culture is': 197035, 'culture is inevitable': 220300, 'is inevitable but': 448893, 'inevitable but the': 436367, 'but the response': 147398, 'to the climatecrisis': 916568, 'the climatecrisis is': 851024, 'climatecrisis is constantly': 182253, 'is constantly postponed': 446778, 'constantly postponed now': 195688, 'postponed now with': 666821, 'with the plague': 1001429, 'the plague on': 863784, 'plague on our': 657979, 'on our heel': 602606, 'our heel there': 623407, 'heel there no': 388772, 'there no remind': 878838, 'no remind me': 565328, 'remind me tomorrow': 710489, 'me tomorrow read': 523816, 'tomorrow read my': 924170, 'read my editorial': 700464, 'my editorial on': 548064, 'editorial on on': 268677, 'weary': 974831, 'realized': 701889, 'thrust': 895258, 'panick': 639186, 'clerk went': 181817, 'and looked': 66370, 'looked into': 502725, 'the weary': 871249, 'weary eye': 974832, 'the clerk': 851003, 'clerk thanked': 181782, 'thanked her': 841874, 'and realized': 70007, 'realized that': 701908, 'that she': 846232, 'wa thrust': 963510, 'thrust on': 895261, 'this panick': 889471, 'panick new': 639192, 'new breed': 558418, 'breed of': 139272, 'responder they': 715533, 'serve their': 751949, 'your grocery clerk': 1024121, 'grocery clerk went': 364385, 'clerk went to': 181818, 'store today and': 810832, 'today and looked': 919220, 'and looked into': 66372, 'looked into the': 502726, 'into the weary': 443185, 'the weary eye': 871250, 'weary eye of': 974833, 'eye of the': 294067, 'of the clerk': 590865, 'the clerk thanked': 851007, 'clerk thanked her': 181783, 'thanked her and': 841875, 'her and realized': 391851, 'and realized that': 70009, 'realized that she': 701913, 'that she wa': 846245, 'she wa thrust': 756430, 'wa thrust on': 963511, 'thrust on the': 895262, 'of this panick': 592023, 'this panick new': 889472, 'panick new breed': 639193, 'new breed of': 558419, 'breed of first': 139273, 'of first responder': 583554, 'first responder they': 308968, 'responder they are': 715534, 'hard to serve': 378088, 'to serve their': 914273, 'serve their community': 751950, 'vegetarian': 954139, 'ghost': 349667, 'shoppingcrazy': 764502, 'first went': 309179, 'asian vegetarian': 95371, 'vegetarian market': 954149, 'market it': 516651, 'it usually': 462004, 'usually quiet': 951142, 'quiet it': 694684, 'of long': 585996, 'line then': 493461, 'then had': 877225, 'are ghost': 86839, 'ghost town': 349674, 'town what': 927581, 'hell that': 389069, 'wa really': 963058, 'really stressful': 702619, 'stressful pandemic': 813502, 'pandemic shoppingcrazy': 636447, 'first went to': 309181, 'to the asian': 916496, 'the asian vegetarian': 848968, 'asian vegetarian market': 95372, 'vegetarian market it': 954150, 'market it usually': 516655, 'it usually quiet': 462008, 'usually quiet it': 951143, 'quiet it wa': 694685, 'full of long': 340739, 'of long line': 585998, 'long line then': 501507, 'line then had': 493462, 'then had to': 877226, 'and the shelf': 73580, 'shelf are ghost': 756803, 'are ghost town': 86840, 'ghost town what': 349679, 'town what the': 927582, 'what the hell': 982325, 'the hell that': 857248, 'hell that wa': 389070, 'that wa really': 847306, 'wa really stressful': 963067, 'really stressful pandemic': 702621, 'stressful pandemic shoppingcrazy': 813503, 'washable': 967593, 'copious': 203412, 'handwashing': 376815, 'in keeping': 424454, 'distancing platform': 247399, 'platform we': 659055, 'have supplied': 382855, 'supplied all': 824442, 'our field': 623060, 'field personnel': 304500, 'personnel with': 653176, 'with washable': 1002026, 'washable reusable': 967598, 'reusable face': 720158, 'and copious': 60548, 'copious amount': 203413, 'sanitizer remember': 735647, 'remember keep': 710220, 'washing those': 967737, 'those hand': 892042, 'hand handwashing': 375004, 'in keeping with': 424459, 'keeping with our': 472620, 'with our social': 1000018, 'our social distancing': 624809, 'social distancing platform': 779687, 'distancing platform we': 247400, 'platform we have': 659056, 'we have supplied': 971954, 'have supplied all': 382857, 'supplied all of': 824443, 'of our field': 587474, 'our field personnel': 623061, 'field personnel with': 304501, 'personnel with washable': 653177, 'with washable reusable': 1002027, 'washable reusable face': 967599, 'reusable face mask': 720159, 'mask and copious': 518313, 'and copious amount': 60549, 'copious amount of': 203414, 'amount of hand': 53226, 'hand sanitizer remember': 375563, 'sanitizer remember keep': 735648, 'remember keep washing': 710222, 'keep washing those': 472200, 'washing those hand': 967738, 'those hand handwashing': 892044, 'af': 33946, '19 got': 7248, 'got gas': 358578, 'price sick': 676399, 'sick af': 768353, 'covid 19 got': 213155, '19 got gas': 7250, 'got gas price': 358580, 'gas price sick': 344022, 'price sick af': 676400, 'muji': 545597, '19 friend': 7111, 'friend of': 333728, 'of mine': 586551, 'mine in': 532898, 'at muji': 99794, 'muji store': 545600, 'and muji': 67313, 'muji decided': 545598, 'decided not': 230872, 'pay his': 644939, 'who decided': 988543, 'take leave': 832267, 'coronavirus his': 206078, 'his colleague': 397294, 'colleague have': 186210, 'started petition': 794803, 'petition if': 653611, 'sign that': 769220, 'be great': 115087, '19 friend of': 7112, 'friend of mine': 333730, 'of mine in': 586555, 'mine in the': 532902, 'in the work': 429689, 'the work at': 871727, 'work at muji': 1004884, 'at muji store': 99795, 'muji store and': 545601, 'store and muji': 806298, 'and muji decided': 67314, 'muji decided not': 545599, 'decided not to': 230874, 'not to pay': 572170, 'to pay his': 911536, 'pay his employee': 644941, 'employee who decided': 274424, 'who decided to': 988544, 'decided to take': 230934, 'to take leave': 916194, 'take leave during': 832268, 'leave during the': 484775, 'the coronavirus his': 851866, 'coronavirus his colleague': 206079, 'his colleague have': 397296, 'colleague have started': 186212, 'have started petition': 382727, 'started petition if': 794804, 'petition if you': 653612, 'if you could': 415416, 'you could help': 1018092, 'could help them': 209295, 'help them and': 390698, 'them and sign': 875397, 'and sign that': 71658, 'sign that would': 769227, 'that would be': 847679, 'would be great': 1011592, 'to all supermarket': 900288, 'all supermarket worker': 44558, 'supermarket worker please': 824070, 'worker please stay': 1007592, 'funded': 341575, 'shore': 764572, 'mondaymotivation if': 536462, 'this quarantinelife': 889783, 'quarantinelife over': 692983, 'over doe': 630151, 'doe nothing': 251538, 'else only': 271821, 'only hope': 610607, 'hope it': 403512, 'give wallstreet': 350829, 'wallstreet new': 965257, 'new found': 558758, 'found appreciation': 330162, 'appreciation for': 82873, 'driven economy': 259311, 'they stop': 883481, 'stop trying': 805242, 'hoard all': 398748, 'the tax': 869169, 'tax payer': 835058, 'payer funded': 645353, 'funded money': 341579, 'planet in': 658413, 'in off': 426061, 'off shore': 594157, 'shore account': 764573, 'mondaymotivation if this': 536463, 'if this quarantinelife': 415168, 'this quarantinelife over': 889784, 'quarantinelife over doe': 692984, 'over doe nothing': 630152, 'doe nothing else': 251539, 'nothing else only': 572995, 'else only hope': 271822, 'only hope it': 610608, 'hope it give': 403516, 'it give wallstreet': 458240, 'give wallstreet new': 350830, 'wallstreet new found': 965258, 'new found appreciation': 558759, 'found appreciation for': 330163, 'appreciation for the': 82880, 'for the term': 326722, 'the term consumer': 869293, 'term consumer driven': 838097, 'consumer driven economy': 197249, 'driven economy and': 259312, 'economy and they': 267658, 'and they stop': 73942, 'they stop trying': 883482, 'stop trying to': 805243, 'trying to hoard': 934818, 'to hoard all': 907863, 'hoard all the': 398749, 'all the tax': 44939, 'the tax payer': 869172, 'tax payer funded': 835059, 'payer funded money': 645354, 'funded money on': 341580, 'money on the': 536940, 'the planet in': 863803, 'planet in off': 658414, 'in off shore': 426063, 'off shore account': 594158, 'cache': 155044, 'umm': 939239, 'aussie': 103109, 'buying gun': 150424, 'gun to': 368748, 'their toilet': 875003, 'paper cache': 639989, 'cache umm': 155045, 'umm so': 939250, 'the are': 848855, 'are aussie': 84697, 'aussie gonna': 103124, 'gonna do': 356511, 'american are panic': 51811, 'panic buying gun': 637753, 'buying gun to': 150427, 'gun to protect': 368749, 'protect their toilet': 685000, 'their toilet paper': 875004, 'toilet paper cache': 921217, 'paper cache umm': 639990, 'cache umm so': 155046, 'umm so what': 939251, 'so what the': 778723, 'what the are': 982293, 'the are aussie': 848857, 'are aussie gonna': 84698, 'aussie gonna do': 103125, 'been report': 121822, 'government may': 360345, 'may send': 521488, 'send check': 749825, 'check to': 174681, 'to american': 900411, 'american during': 51928, 'please note': 660245, 'note that': 572796, 'that while': 847512, 'while nothing': 987088, 'nothing ha': 573024, 'been confirmed': 120864, 'confirmed scammer': 194187, 'likely try': 492187, 'advantage this': 33068, 'link from': 493841, 'ftc tell': 339451, 'have been report': 379660, 'been report that': 121823, 'report that the': 712330, 'that the government': 846737, 'the government may': 856562, 'government may send': 360350, 'may send check': 521489, 'send check to': 749826, 'check to american': 174682, 'to american during': 900414, 'american during the': 51930, '19 outbreak please': 9170, 'outbreak please note': 628537, 'please note that': 660247, 'note that while': 572816, 'that while nothing': 847515, 'while nothing ha': 987089, 'nothing ha been': 573025, 'ha been confirmed': 369755, 'been confirmed scammer': 120867, 'confirmed scammer will': 194188, 'scammer will likely': 740657, 'will likely try': 994015, 'likely try to': 492188, 'take advantage this': 831921, 'advantage this link': 33069, 'this link from': 888644, 'link from the': 493843, 'the ftc tell': 855942, 'ftc tell you': 339452, 'you what to': 1022272, 'jacksonville': 464211, 'reaching': 700066, 'folk in': 312191, 'in jacksonville': 424329, 'jacksonville need': 464218, 'learn social': 484057, 'distancing at': 247017, 'store people': 809485, 'people reaching': 649229, 'reaching over': 700105, 'stay foot': 796870, 'foot back': 318359, 'back please': 107226, 'please and': 659659, 'and wait': 75112, 'wait your': 964259, 'your turn': 1026226, 'folk in jacksonville': 312193, 'in jacksonville need': 424332, 'jacksonville need to': 464219, 'need to learn': 555985, 'to learn social': 909136, 'learn social distancing': 484058, 'social distancing at': 779560, 'distancing at the': 247023, 'grocery store people': 365647, 'store people reaching': 809493, 'people reaching over': 649230, 'reaching over people': 700107, 'over people stay': 630491, 'people stay foot': 649559, 'stay foot back': 796873, 'foot back please': 318360, 'back please and': 107227, 'please and wait': 659663, 'and wait your': 75115, 'wait your turn': 964260, 'doyoufeelluckypunk': 257857, 'mexicanstandoff': 529987, 'when have': 983520, 'past person': 643587, 'an aisle': 55215, 'store looking': 808827, 'sanitizer doyoufeelluckypunk': 734791, 'doyoufeelluckypunk mexicanstandoff': 257858, 'when have to': 983524, 'have to walk': 383336, 'to walk past': 918304, 'walk past person': 964861, 'past person in': 643588, 'person in an': 652474, 'in an aisle': 420275, 'an aisle at': 55216, 'aisle at the': 40215, 'grocery store looking': 365543, 'store looking for': 808828, 'looking for toilet': 502911, 'paper or hand': 640552, 'or hand sanitizer': 615557, 'hand sanitizer doyoufeelluckypunk': 375380, 'sanitizer doyoufeelluckypunk mexicanstandoff': 734792, 'me sitting': 523478, 'home trying': 402376, 'spend what': 788696, 'what money': 981876, 'have when': 383584, 'when normally': 983778, 'normally be': 567482, 'for whatever': 327811, 'whatever life': 982776, 'life ha': 488701, 'me sitting at': 523479, 'at home trying': 99153, 'home trying not': 402377, 'not to spend': 572187, 'to spend what': 915000, 'spend what money': 788697, 'what money do': 981877, 'money do have': 536705, 'do have when': 249380, 'have when normally': 383586, 'when normally be': 983779, 'normally be online': 567483, 'shopping for whatever': 762730, 'for whatever life': 327812, 'whatever life ha': 982777, 'life ha to': 488706, 'ha to offer': 372310, 'some best': 782402, 'are some best': 90258, 'some best practice': 782403, 'practice for grocery': 668566, 'for grocery shopping': 322051, 'grocery shopping during': 365018, 'shopping during the': 762543, 'the pandemic we': 863149, 'are all in': 84316, 'ring': 722509, 'researcher': 713894, 'techforgood': 836175, 'smarttech': 775548, 'wearabletech': 974510, 'the rescue': 865560, 'rescue high': 713620, 'high tech': 395447, 'tech ring': 836137, 'ring are': 722510, 'helping researcher': 391452, 'researcher to': 713935, 'gather data': 344374, 'from thousand': 338037, 'an early': 55539, 'early warning': 264745, 'warning system': 967199, 'can identify': 158704, 'identify people': 413362, 'via techforgood': 956280, 'techforgood smarttech': 836176, 'smarttech wearabletech': 775549, 'consumer data to': 197063, 'data to the': 226468, 'to the rescue': 917019, 'the rescue high': 865562, 'rescue high tech': 713621, 'high tech ring': 395450, 'tech ring are': 836138, 'ring are helping': 722511, 'are helping researcher': 87105, 'helping researcher to': 391453, 'researcher to gather': 713936, 'to gather data': 906375, 'gather data from': 344375, 'data from thousand': 226239, 'from thousand of': 338038, 'thousand of american': 893423, 'of american to': 580079, 'american to create': 52265, 'to create an': 903700, 'create an early': 215606, 'an early warning': 55547, 'early warning system': 264746, 'warning system that': 967201, 'system that can': 831334, 'that can identify': 843108, 'can identify people': 158706, 'identify people in': 413363, 'in the early': 429156, 'the early stage': 853821, 'early stage of': 264701, 'stage of via': 793209, 'of via techforgood': 592793, 'via techforgood smarttech': 956281, 'techforgood smarttech wearabletech': 836177, 'iced': 412693, 'you enjoy': 1018414, 'enjoy your': 277209, 'your coffee': 1023247, 'coffee iced': 185493, 'iced link': 412696, 'do you enjoy': 250625, 'you enjoy your': 1018415, 'enjoy your coffee': 277211, 'your coffee iced': 1023248, 'coffee iced link': 185494, 'iced link to': 412697, 'link to buy': 493923, 'to buy 19': 902166, 'adopt': 32667, 'summerbod2021': 818027, 'biggest joke': 130265, 'joke of': 467115, 'mine wa': 532935, 'wa throwing': 963508, 'throwing out': 895101, 'the junk': 858710, 'to adopt': 900125, 'adopt healthier': 32668, 'healthier lifestyle': 387459, 'lifestyle about': 489348, 'about month': 25744, 'ago now': 38436, 'now these': 576097, 'very limited': 955312, 'limited in': 492654, 'food option': 315638, 'option due': 614016, 'panic shopper': 638549, 'shopper summerbod2021': 761726, 'the biggest joke': 849659, 'biggest joke of': 130266, 'joke of mine': 467117, 'of mine wa': 586560, 'mine wa throwing': 532936, 'wa throwing out': 963509, 'throwing out all': 895102, 'all the junk': 44800, 'the junk food': 858711, 'junk food in': 468037, 'the house to': 857643, 'house to adopt': 406623, 'to adopt healthier': 900126, 'adopt healthier lifestyle': 32669, 'healthier lifestyle about': 387460, 'lifestyle about month': 489349, 'about month and': 25745, 'month and few': 537574, 'and few day': 62814, 'few day ago': 303766, 'day ago now': 227204, 'ago now these': 38438, 'now these grocery': 576098, 'store are very': 806535, 'are very limited': 91469, 'very limited in': 955313, 'limited in food': 492655, 'in food option': 422977, 'food option due': 315641, 'option due to': 614017, 'to panic shopper': 911426, 'panic shopper summerbod2021': 638557, 'autumm': 104085, 'inconvenienc': 432584, 'umm autumm': 939242, 'autumm we': 104086, 'our club': 622416, 'club stocked': 184483, 'stocked and': 803255, 'price fair': 673759, 'fair one': 296359, 'would expect': 1011800, 'expect paper': 290694, 'paper product': 640619, 'product cleaning': 681061, 'demand member': 235857, 'member prepare': 528177, 'the possible': 864072, 'possible impact': 665676, 'do apologize': 249094, 'the inconvenienc': 858056, 'umm autumm we': 939243, 'autumm we will': 104087, 'we will work': 973922, 'will work to': 995369, 'work to keep': 1005890, 'keep our club': 471723, 'our club stocked': 622417, 'club stocked and': 184484, 'stocked and price': 803267, 'and price fair': 69448, 'price fair one': 673764, 'fair one would': 296361, 'one would expect': 607511, 'would expect paper': 1011802, 'expect paper product': 290695, 'paper product cleaning': 640626, 'product cleaning supply': 681062, 'cleaning supply and': 181074, 'supply and other': 824744, 'and other item': 68352, 'other item are': 620443, 'item are in': 463094, 'in high demand': 423680, 'high demand member': 395020, 'demand member prepare': 235858, 'member prepare for': 528178, 'for the possible': 326628, 'the possible impact': 864076, 'possible impact of': 665677, '19 we do': 11925, 'we do apologize': 971325, 'do apologize for': 249095, 'apologize for the': 81640, 'for the inconvenienc': 326496, 'nurseproblems': 577564, 'this it': 888512, 'remember we': 710398, 'have each': 380402, 'have some': 382619, 'sanitizer nurseproblems': 735442, 'at time like': 101296, 'like this it': 491500, 'this it important': 888518, 'important to remember': 419065, 'to remember we': 913194, 'remember we have': 710399, 'we have each': 971804, 'have each other': 380403, 'other and hand': 619825, 'sanitizer we still': 736049, 'we still have': 973407, 'still have some': 800661, 'have some hand': 382630, 'hand sanitizer nurseproblems': 375508, 'regard': 707126, 'this regard': 889848, 'regard we': 707162, 'are grateful': 86941, 'grateful that': 362310, 'that farmer': 843839, 'across ma': 29377, 'ma are': 507252, 'and nutrition': 67904, 'nutrition during': 577716, 'the emergency': 854219, 'emergency support': 273007, 'local farmer': 497945, 'farmer by': 299316, 'farm store': 299187, 'store ordering': 809389, 'ordering online': 618991, 'via delivery': 955911, 'in this regard': 430004, 'this regard we': 889850, 'regard we are': 707163, 'we are grateful': 970581, 'are grateful that': 86943, 'grateful that farmer': 362311, 'that farmer across': 843840, 'farmer across ma': 299240, 'across ma are': 29378, 'ma are working': 507253, 'hard to support': 378093, 'to support food': 915931, 'support food security': 826502, 'security and nutrition': 744536, 'and nutrition during': 67905, 'nutrition during the': 577717, 'during the emergency': 263121, 'the emergency support': 854234, 'emergency support your': 273009, 'support your local': 827020, 'your local farmer': 1024693, 'local farmer by': 497947, 'farmer by shopping': 299317, 'by shopping at': 153990, 'shopping at farm': 762096, 'at farm store': 98627, 'farm store ordering': 299190, 'store ordering online': 809390, 'ordering online or': 618998, 'or via delivery': 617664, 'baguio': 108540, 'observing': 578647, 'disiplinamuna': 245957, 'tatakbaguio': 834843, 'philippine': 654721, 'look resident': 502582, 'resident line': 714325, 'basic good': 111906, 'in baguio': 420665, 'baguio city': 108541, 'city while': 179455, 'while observing': 987093, 'observing social': 578655, 'distancing disiplinamuna': 247101, 'disiplinamuna tatakbaguio': 245958, 'tatakbaguio from': 834844, 'from philippine': 336913, 'philippine star': 654745, 'look resident line': 502583, 'resident line up': 714326, 'up to buy': 946363, 'buy basic good': 148404, 'basic good at': 111909, 'good at grocery': 356791, 'store in baguio': 808271, 'in baguio city': 420666, 'baguio city while': 108542, 'city while observing': 179456, 'while observing social': 987094, 'observing social distancing': 578656, 'social distancing disiplinamuna': 779590, 'distancing disiplinamuna tatakbaguio': 247102, 'disiplinamuna tatakbaguio from': 245959, 'tatakbaguio from philippine': 834845, 'from philippine star': 336914, 'supermarketnews': 824224, 'two kroger': 936995, 'kroger co': 477730, 'co store': 184961, 'associate diagnosed': 96858, 'with coronavirus': 997793, 'coronavirus kroger': 206201, 'kroger supermarketnews': 477775, 'two kroger co': 936997, 'kroger co store': 477731, 'co store associate': 184962, 'store associate diagnosed': 806564, 'associate diagnosed with': 96860, 'diagnosed with coronavirus': 240238, 'with coronavirus kroger': 997804, 'coronavirus kroger supermarketnews': 206202, 'injection': 438700, 'alt': 49137, 'bearish': 118457, 'equal': 279593, 'probability': 679183, 'confirming': 194220, '2460': 15748, 'spx will': 791386, 'will fluctuate': 993453, 'fluctuate with': 311513, 'large swing': 479814, 'swing due': 830395, 'to trillion': 917782, 'trillion liquidity': 931988, 'liquidity injection': 494142, 'injection amp': 438701, 'amp covid': 53590, 'fear unemployment': 301411, 'unemployment number': 941255, 'number slow': 577052, 'spending with': 789058, 'lower corporate': 505822, 'corporate profit': 207323, 'profit here': 682761, 'is alt': 445585, 'alt bearish': 49138, 'bearish with': 118467, 'with equal': 998245, 'equal probability': 279606, 'probability need': 679184, 'need confirming': 554627, 'confirming price': 194221, 'price action': 672212, 'action below': 29970, 'below 2460': 126564, 'spx will fluctuate': 791387, 'will fluctuate with': 993455, 'fluctuate with large': 311514, 'with large swing': 999174, 'large swing due': 479815, 'swing due to': 830396, 'due to trillion': 262005, 'to trillion liquidity': 917783, 'trillion liquidity injection': 931989, 'liquidity injection amp': 494143, 'injection amp covid': 438702, 'amp covid 19': 53591, '19 fear unemployment': 6960, 'fear unemployment number': 301412, 'unemployment number slow': 941257, 'number slow down': 577053, 'slow down in': 774346, 'down in consumer': 256856, 'consumer spending with': 199107, 'spending with lower': 789060, 'with lower corporate': 999342, 'lower corporate profit': 505823, 'corporate profit here': 207326, 'profit here is': 682762, 'here is alt': 393212, 'is alt bearish': 445586, 'alt bearish with': 49139, 'bearish with equal': 118468, 'with equal probability': 998246, 'equal probability need': 279607, 'probability need confirming': 679185, 'need confirming price': 554628, 'confirming price action': 194222, 'price action below': 672213, 'action below 2460': 29971, 'protectionism': 685699, 'net': 557534, 'avoiding protectionism': 105483, 'protectionism monitoring': 685704, 'monitoring price': 537363, 'and supporting': 72860, 'supporting the': 827205, 'vulnerable through': 961206, 'through social': 894679, 'social safety': 779937, 'safety net': 730633, 'net can': 557537, 'can limit': 158874, 'outbreak how': 628318, 'avoiding protectionism monitoring': 105484, 'protectionism monitoring price': 685705, 'monitoring price and': 537364, 'price and supporting': 672554, 'and supporting the': 72866, 'supporting the vulnerable': 827215, 'the vulnerable through': 871001, 'vulnerable through social': 961207, 'through social safety': 894680, 'social safety net': 779938, 'safety net can': 730635, 'net can limit': 557538, 'can limit the': 158876, 'limit the impact': 492511, 'the outbreak how': 862643, 'outbreak how to': 628320, 'how to minimize': 409046, 'minimize the impact': 533126, 'of on food': 587216, 'on food security': 600905, 'city open': 179305, 'open online': 612417, 'shopping service': 763839, 'service amid': 752059, 'city open online': 179306, 'open online grocery': 612418, 'grocery shopping service': 365079, 'shopping service amid': 763840, 'service amid covid': 752061, 'tf': 839995, 'product ketchup': 681338, 'ketchup is': 473174, 'in extremely': 422744, 'extremely high': 293889, 'demand limit': 235808, 'limit per': 492446, 'household tf': 406966, 'tf you': 840011, 'you talking': 1021530, 'about ve': 26819, 'that stuff': 846535, 'my fridge': 548413, 'fridge for': 333392, 'for last': 322891, 'sign in grocery': 769130, 'store this product': 810702, 'this product ketchup': 889731, 'product ketchup is': 681339, 'ketchup is in': 473175, 'is in extremely': 448769, 'in extremely high': 422745, 'extremely high demand': 293890, 'high demand limit': 395017, 'demand limit per': 235809, 'limit per household': 492448, 'per household tf': 650892, 'household tf you': 406967, 'tf you talking': 840012, 'you talking about': 1021531, 'talking about ve': 833994, 'about ve got': 26820, 'bottle of that': 136298, 'of that stuff': 590745, 'that stuff in': 846536, 'stuff in my': 815097, 'in my fridge': 425577, 'my fridge for': 548414, 'fridge for last': 333393, 'for last year': 322892, 'consumerconfidence': 199647, 'dipped': 243223, 'showed': 767316, 'french consumerconfidence': 332724, 'consumerconfidence dipped': 199650, 'dipped at': 243224, 'march before': 515294, 'government imposed': 360207, 'imposed nationwide': 419297, 'nationwide lockdown': 552738, 'lockdown over': 499753, 'outbreak monthly': 628457, 'monthly survey': 538205, 'survey showed': 828951, 'showed on': 767344, 'french consumerconfidence dipped': 332725, 'consumerconfidence dipped at': 199651, 'dipped at the': 243225, 'start of march': 794411, 'of march before': 586201, 'march before the': 515295, 'before the government': 123167, 'the government imposed': 856547, 'government imposed nationwide': 360209, 'imposed nationwide lockdown': 419298, 'nationwide lockdown over': 552744, 'lockdown over the': 499754, 'over the outbreak': 630747, 'the outbreak monthly': 862666, 'outbreak monthly survey': 628458, 'monthly survey showed': 538206, 'survey showed on': 828952, 'showed on friday': 767345, 'anxietyindex': 78821, 'anxietyindex is': 78822, 'clear proxy': 181305, 'proxy for': 687338, 'confidence ceo': 193840, 'ceo via': 169874, 'anxietyindex is clear': 78823, 'is clear proxy': 446549, 'clear proxy for': 181306, 'proxy for consumer': 687339, 'consumer confidence ceo': 196888, 'confidence ceo via': 193841, 'supermarket why': 823867, 'providing your': 687148, 'staff with': 793097, 'with ppe': 1000274, 'ppe glove': 667960, 'mask this': 519377, 'very contagious': 955079, 'contagious and': 200430, 'have duty': 380397, 'duty of': 263598, 'of care': 581141, 'staff you': 793124, 'failing them': 296225, 'in real': 427289, 'danger 19': 225631, '19 coronacrisisuk': 6066, 'uk supermarket why': 938781, 'supermarket why are': 823868, 'are you not': 91825, 'you not providing': 1020127, 'not providing your': 571167, 'providing your staff': 687151, 'your staff with': 1025922, 'staff with ppe': 793100, 'with ppe glove': 1000276, 'ppe glove mask': 667961, 'glove mask this': 352785, 'mask this virus': 519378, 'virus is very': 958412, 'is very contagious': 453671, 'very contagious and': 955080, 'contagious and you': 200431, 'you have duty': 1019041, 'have duty of': 380398, 'duty of care': 263599, 'of care to': 581146, 'care to your': 164238, 'to your staff': 919029, 'your staff you': 1025923, 'staff you are': 793125, 'you are failing': 1017119, 'are failing them': 86448, 'failing them they': 296226, 'them they are': 876410, 'are in real': 87428, 'in real danger': 427291, 'real danger 19': 701102, 'danger 19 coronacrisisuk': 225632, 'century': 169604, 'balance': 108962, 'therefore': 879412, 'alternativefacts': 49291, 'fakenews there': 296767, 'there wasn': 879283, 'wasn panic': 968005, 'in century': 421316, 'century american': 169609, 'american employer': 51944, 'employer have': 274512, 'been forced': 121171, 'work life': 1005431, 'life balance': 488514, 'balance and': 108963, 'and therefore': 73861, 'therefore we': 879473, 'something besides': 784868, 'besides fast': 127498, 'food alternativefacts': 313109, 'alternativefacts quarantinelife': 49292, 'fakenews there wasn': 296768, 'there wasn panic': 879286, 'wasn panic buy': 968006, 'panic buy at': 637468, 'time in century': 896983, 'in century american': 421317, 'century american employer': 169610, 'american employer have': 51945, 'employer have been': 274513, 'have been forced': 379547, 'been forced to': 121173, 'forced to respect': 328648, 'to respect the': 913374, 'respect the work': 715067, 'the work life': 871734, 'work life balance': 1005432, 'life balance and': 488515, 'balance and therefore': 108965, 'and therefore we': 73870, 'therefore we can': 879474, 'we can have': 970960, 'can have something': 158586, 'have something besides': 382651, 'something besides fast': 784869, 'besides fast food': 127499, 'fast food alternativefacts': 299954, 'food alternativefacts quarantinelife': 313110, 're happy': 698782, 'occasion food': 578940, 'bank try': 110273, 'having on': 384197, 'on community': 599988, 'we re happy': 972890, 're happy to': 698783, 'happy to rise': 377719, 'to rise to': 913580, 'the occasion food': 862029, 'occasion food bank': 578941, 'food bank try': 313660, 'bank try to': 110274, 'try to meet': 934640, 'demand that is': 236334, 'that is having': 844597, 'is having on': 448331, 'having on community': 384198, 'poisoning': 662799, 'pepperoni': 650654, 'even post': 284479, 'fb that': 300677, 'daughter ha': 226848, 'ha food': 370644, 'food poisoning': 315876, 'poisoning without': 662815, 'without people': 1002834, 'town freaking': 927465, 'and thinking': 73976, 'thinking it': 885930, '19 did': 6541, 'did she': 240799, 'she eat': 756015, 'eat some': 266052, 'some bad': 782372, 'bad pepperoni': 107974, 'pepperoni boy': 650655, 'cannot even post': 161797, 'even post on': 284482, 'post on fb': 666252, 'on fb that': 600752, 'fb that my': 300678, 'that my daughter': 845261, 'my daughter ha': 547925, 'daughter ha food': 226850, 'ha food poisoning': 370648, 'food poisoning without': 315883, 'poisoning without people': 662816, 'without people from': 1002835, 'people from my': 647997, 'from my town': 336530, 'my town freaking': 550411, 'town freaking out': 927466, 'freaking out and': 331543, 'out and thinking': 625703, 'and thinking it': 73979, 'thinking it covid': 885933, 'covid 19 did': 212952, '19 did she': 6542, 'did she eat': 240800, 'she eat some': 756016, 'eat some bad': 266053, 'some bad pepperoni': 782373, 'bad pepperoni boy': 107975, 'tfl': 840016, 'funeral': 341655, 'storr': 811875, 'tfl supervisor': 840021, 'supervisor teacher': 824395, 'teacher funeral': 835466, 'funeral director': 341662, 'director charity': 243607, 'charity worker': 173721, 'supermarket manager': 821450, 'manager meet': 512745, 'the heroic': 857305, 'heroic woman': 394204, 'woman doing': 1003473, 'country essential': 210622, 'essential job': 281243, 'of storr': 590273, 'tfl supervisor teacher': 840022, 'supervisor teacher funeral': 824396, 'teacher funeral director': 835467, 'funeral director charity': 341663, 'director charity worker': 243608, 'charity worker delivery': 173723, 'driver supermarket manager': 259765, 'supermarket manager meet': 821455, 'manager meet the': 512746, 'meet the heroic': 527601, 'the heroic woman': 857307, 'heroic woman doing': 394205, 'woman doing the': 1003474, 'doing the country': 252715, 'the country essential': 852073, 'country essential job': 210623, 'essential job at': 281245, 'job at the': 465682, 'at the most': 101028, 'the most important': 860999, 'most important time': 542414, 'important time of': 419042, 'time of storr': 897363, 'coatbridge': 185143, 'cab': 154919, '01236': 743, '421447': 18927, 'casonline': 166739, 'urgent coronavirus': 948334, 'update coatbridge': 946904, 'coatbridge cab': 185144, 'cab will': 154938, 'for face': 321351, 'face to': 294812, 'to face': 905556, 'face advice': 294283, 'advice service': 33495, 'service we': 753050, 'answer enquiry': 78046, 'enquiry by': 277807, 'phone on': 654984, 'on 01236': 598959, '01236 421447': 744, '421447 or': 18928, 'or by': 614624, 'by mail': 153121, 'mail adviser': 508569, 'adviser casonline': 33661, 'casonline org': 166740, 'org uk': 619198, 'uk we': 938867, 'your understanding': 1026243, 'urgent coronavirus update': 948335, 'coronavirus update coatbridge': 206989, 'update coatbridge cab': 946905, 'coatbridge cab will': 185145, 'cab will no': 154939, 'longer be open': 501938, 'open for face': 612246, 'for face to': 321353, 'face to face': 294815, 'to face advice': 905557, 'face advice service': 294284, 'advice service we': 33497, 'service we will': 753056, 'continue to answer': 201163, 'to answer enquiry': 900581, 'answer enquiry by': 78047, 'enquiry by phone': 277808, 'by phone on': 153579, 'phone on 01236': 654985, 'on 01236 421447': 598960, '01236 421447 or': 745, '421447 or by': 18929, 'or by mail': 614626, 'by mail adviser': 153122, 'mail adviser casonline': 508570, 'adviser casonline org': 33662, 'casonline org uk': 166741, 'org uk we': 619199, 'uk we thank': 938872, 'we thank you': 973515, 'for your understanding': 328224, 'gael': 342704, 'fashingbauer': 299785, 'love seeing': 504768, 'all they': 45065, 'they way': 883731, 'and helping': 64492, 'helping others': 391409, 'others the': 621701, 'news is': 560550, 'that distillery': 843558, 'distillery now': 247785, 'now making': 575275, 'by gael': 152655, 'gael fashingbauer': 342705, 'fashingbauer cooper': 299786, 'cooper via': 203130, 'via kindness': 956049, 'kindness pr': 475221, 'love seeing all': 504769, 'seeing all they': 746212, 'all they way': 45070, 'they way people': 883732, 'way people and': 969805, 'people and brand': 646848, 'and brand are': 59146, 'brand are stepping': 137755, 'up and helping': 944333, 'and helping others': 64494, 'helping others the': 391412, 'others the latest': 621704, 'latest news is': 481456, 'news is that': 560559, 'is that distillery': 452641, 'that distillery now': 843559, 'distillery now making': 247786, 'now making hand': 575277, 'sanitizer by gael': 734620, 'by gael fashingbauer': 152656, 'gael fashingbauer cooper': 342706, 'fashingbauer cooper via': 299787, 'cooper via kindness': 203131, 'via kindness pr': 956050, 'nonno': 566661, 'pappou': 641186, 'southern': 786851, 'summer': 817950, 'nonno and': 566662, 'and pappou': 68697, 'pappou are': 641187, 'guy who': 369223, 'who make': 989245, 'you laugh': 1019559, 'laugh when': 481778, 'visit southern': 959360, 'southern europe': 786856, 'in summer': 428540, 'summer protect': 817999, 'them protect': 876191, 'protect all': 684769, 'all older': 43733, 'hand before': 374827, 'before and': 122622, 'after your': 36613, 'nonno and pappou': 566663, 'and pappou are': 68698, 'pappou are the': 641188, 'are the guy': 90840, 'the guy who': 856966, 'guy who make': 369230, 'who make you': 989258, 'make you laugh': 510740, 'you laugh when': 1019562, 'laugh when you': 481779, 'when you visit': 984613, 'you visit southern': 1022086, 'visit southern europe': 959361, 'southern europe in': 786857, 'europe in summer': 283459, 'in summer protect': 428542, 'summer protect them': 818000, 'protect them protect': 685007, 'them protect all': 876192, 'protect all older': 684770, 'all older people': 43735, 'older people in': 598652, 'people in europe': 648372, 'in europe and': 422630, 'europe and you': 283404, 'and you stay': 76049, 'you stay home': 1021372, 'stay home wash': 797022, 'your hand before': 1024171, 'hand before and': 374828, 'before and after': 122623, 'and after your': 57763, 'after your trip': 36620, 'store we can': 811170, 'can do it': 158108, 'it in europe': 458729, 'achieve': 29014, 'the environment': 854397, 'environment ha': 279110, 'been clean': 120824, 'clean oil': 180594, 'been low': 121494, 'low why': 505746, 'why did': 990914, 'did have': 240627, 'take deadly': 832051, 'to achieve': 899983, 'achieve both': 29017, 'both thing': 136075, 'the environment ha': 854402, 'environment ha never': 279111, 'never been clean': 557890, 'been clean oil': 120825, 'clean oil price': 180595, 'price have never': 674439, 'have never been': 381572, 'never been low': 557899, 'been low why': 121496, 'low why did': 505748, 'why did have': 990917, 'did have to': 240629, 'to take deadly': 916170, 'take deadly virus': 832053, 'deadly virus to': 229307, 'virus to achieve': 958920, 'to achieve both': 899985, 'achieve both thing': 29018, 'plummeting due': 661377, 'the aa': 848226, 'aa so': 24087, 'how low': 408229, 'low might': 505409, 'might price': 531105, 'price become': 672870, 'become by': 119944, 'price are plummeting': 672712, 'are plummeting due': 89123, 'plummeting due to': 661378, '19 pandemic according': 9251, 'to the aa': 916479, 'the aa so': 848227, 'aa so how': 24088, 'so how low': 777341, 'how low might': 408232, 'low might price': 505410, 'might price become': 531106, 'price become by': 672871, 'become by the': 119945, 'of the month': 591251, 'reminding': 710620, 'hey it': 394431, 'your favorite': 1023818, 'favorite old': 300532, 'lady reminding': 478820, 'reminding you': 710640, 'report is': 712050, 'is reliable': 451416, 'reliable source': 709212, 'good information': 357267, 'information coronavirus': 437789, 'hey it your': 394434, 'it your favorite': 462659, 'your favorite old': 1023830, 'favorite old lady': 300533, 'old lady reminding': 598326, 'lady reminding you': 478821, 'reminding you that': 710641, 'you that consumer': 1021568, 'that consumer report': 843300, 'consumer report is': 198712, 'report is reliable': 712054, 'is reliable source': 451417, 'reliable source of': 709213, 'source of good': 786524, 'of good information': 584225, 'good information coronavirus': 357268, 'trashed': 930184, 'pennsylvania ha': 646569, 'ha trashed': 372359, 'trashed 35': 930185, '00 worth': 614, 'after woman': 36555, 'woman intentionally': 1003525, 'intentionally coughed': 441165, 'it during': 457719, 'store in pennsylvania': 808370, 'in pennsylvania ha': 426579, 'pennsylvania ha trashed': 646571, 'ha trashed 35': 372360, 'trashed 35 00': 930186, '35 00 worth': 17867, '00 worth of': 615, 'of food after': 583635, 'food after woman': 313050, 'after woman intentionally': 36559, 'woman intentionally coughed': 1003527, 'intentionally coughed on': 441166, 'coughed on it': 208629, 'on it during': 601654, 'it during the': 457724, 'this different': 887222, 'different than': 242084, 'than standing': 841162, 'is this different': 453083, 'this different than': 887223, 'different than standing': 242086, 'than standing in': 841163, 'line to go': 493487, 'go into grocery': 353751, 'introducing': 443481, 'masterclass': 520222, 'playbook': 659263, 'gary': 343734, 'vaynerchuk': 952768, 'introducing the': 443508, 'great mind': 362824, 'mind masterclass': 532688, 'masterclass series': 520223, 'series where': 751312, 'where industry': 984942, 'expert offer': 291891, 'offer short': 594788, 'short lesson': 764633, 'their playbook': 874324, 'playbook in': 659268, 'first class': 308573, 'class gary': 180194, 'gary vaynerchuk': 343748, 'vaynerchuk discus': 952769, 'discus changing': 244831, 'behavior due': 124004, '19 suggestion': 10935, 'suggestion for': 817635, 'future watch': 342511, 'watch for': 968411, 'introducing the great': 443509, 'the great mind': 856726, 'great mind masterclass': 362825, 'mind masterclass series': 532689, 'masterclass series where': 520224, 'series where industry': 751313, 'where industry expert': 984943, 'industry expert offer': 435815, 'expert offer short': 291892, 'offer short lesson': 594789, 'short lesson from': 764634, 'lesson from their': 486484, 'from their playbook': 337948, 'their playbook in': 874325, 'playbook in our': 659269, 'in our first': 426291, 'our first class': 623079, 'first class gary': 308574, 'class gary vaynerchuk': 180195, 'gary vaynerchuk discus': 343749, 'vaynerchuk discus changing': 952770, 'discus changing consumer': 244832, 'consumer behavior due': 196467, 'behavior due to': 124005, 'covid 19 suggestion': 213886, '19 suggestion for': 10936, 'suggestion for the': 817640, 'the future watch': 856094, 'future watch for': 342512, 'watch for free': 968414, 'news these': 560877, 'these pensioner': 880418, 'pensioner queued': 646693, 'queued outside': 694154, 'be among': 113584, 'first shopper': 309003, 'shopper this': 761749, 'morning here': 541294, 'say about': 738381, 'affecting them': 34580, 'news these pensioner': 560879, 'these pensioner queued': 880419, 'pensioner queued outside': 646694, 'queued outside supermarket': 694156, 'outside supermarket to': 629576, 'supermarket to be': 823357, 'to be among': 901105, 'be among the': 113585, 'the first shopper': 855345, 'first shopper this': 309004, 'shopper this morning': 761750, 'this morning here': 888968, 'morning here what': 541296, 'here what they': 393822, 'what they had': 982401, 'they had to': 882267, 'to say about': 913803, 'say about how': 738386, 'about how the': 25477, 'how the outbreak': 408859, 'outbreak is affecting': 628369, 'is affecting them': 445399, '19 offer': 8896, 'online lesson': 608481, 'lesson online': 486500, 'online research': 608861, 'research online': 713804, 'online communication': 608025, 'communication online': 189627, 'online purchasing': 608832, 'purchasing online': 689897, 'online meeting': 608535, 'meeting online': 527740, 'education online': 268850, 'love think': 504823, 'think our': 885479, 'life will': 489213, 'take shape': 832563, 'shape online': 754842, 'online from': 608267, 'covid 19 offer': 213506, '19 offer online': 8898, 'offer online lesson': 594723, 'online lesson online': 608482, 'lesson online research': 486502, 'online research online': 608862, 'research online communication': 713805, 'online communication online': 608026, 'communication online purchasing': 189628, 'online purchasing online': 608834, 'purchasing online meeting': 689898, 'online meeting online': 608537, 'meeting online education': 527741, 'online education online': 608162, 'education online shopping': 268852, 'shopping online love': 763455, 'online love think': 608511, 'love think our': 504824, 'think our life': 885480, 'our life will': 623740, 'life will take': 489219, 'will take shape': 995079, 'take shape online': 832564, 'shape online from': 754843, 'online from now': 608270, 'from now on': 336610, 'a9': 24073, 'bolster': 134140, 'a9 use': 24074, 'use tool': 949769, 'tool like': 925426, 'add your': 31532, 'your positive': 1025358, 'positive cell': 665281, 'utility payment': 951300, 'payment could': 645578, 'help bolster': 389419, 'bolster score': 134145, 'score until': 742378, 'crisis end': 217345, 'a9 use tool': 24075, 'use tool like': 949770, 'tool like to': 925427, 'to add your': 900073, 'add your positive': 31536, 'your positive cell': 1025359, 'positive cell phone': 665282, 'cell phone and': 168957, 'phone and utility': 654888, 'and utility payment': 74811, 'utility payment could': 951301, 'payment could help': 645580, 'could help bolster': 209278, 'help bolster score': 389420, 'bolster score until': 134146, 'score until covid': 742379, '19 crisis end': 6243, 'bunny': 142697, 'tooth': 925485, 'fairy': 296481, 'parentinginapandemic': 641809, 'easterbunny': 265547, 'toothfairy': 925491, 'the easter': 853848, 'easter bunny': 265396, 'bunny and': 142698, 'the tooth': 869767, 'tooth fairy': 925488, 'fairy maintained': 296482, 'maintained social': 509089, 'house tonight': 406640, 'tonight the': 924498, 'fairy paid': 296484, 'paid pandemic': 634104, 'pandemic price': 636231, 'price tonight': 677080, 'tonight mama': 924443, 'mama only': 511930, 'only had': 610556, 'had 10': 372795, '10 and': 1311, 'where take': 985199, 'take cash': 832015, 'cash to': 166352, 'get change': 346759, 'change parentinginapandemic': 172224, 'parentinginapandemic easterbunny': 641810, 'easterbunny toothfairy': 265552, 'toothfairy socialdistancing': 925492, 'the easter bunny': 853849, 'easter bunny and': 265397, 'bunny and the': 142700, 'and the tooth': 73620, 'the tooth fairy': 869768, 'tooth fairy maintained': 925489, 'fairy maintained social': 296483, 'maintained social distancing': 509091, 'distancing in the': 247234, 'the house tonight': 857645, 'house tonight the': 406641, 'tonight the tooth': 924500, 'tooth fairy paid': 925490, 'fairy paid pandemic': 296485, 'paid pandemic price': 634105, 'pandemic price tonight': 636237, 'price tonight mama': 677081, 'tonight mama only': 924444, 'mama only had': 511931, 'only had 10': 610557, 'had 10 and': 372796, '10 and 20': 1312, 'and 20 and': 57395, '20 and no': 12946, 'and no where': 67651, 'no where take': 565886, 'where take cash': 985200, 'take cash to': 832016, 'cash to get': 166356, 'to get change': 906436, 'get change parentinginapandemic': 346760, 'change parentinginapandemic easterbunny': 172225, 'parentinginapandemic easterbunny toothfairy': 641811, 'easterbunny toothfairy socialdistancing': 265553, 'acted': 29832, 'everyone hadn': 286983, 'hadn acted': 373838, 'acted stupid': 29846, 'and started': 72254, 'started panic': 794799, 'buying there': 151194, 'been plenty': 121666, 'this day': 887166, 'day coronacrisis': 227483, 'if everyone hadn': 414091, 'everyone hadn acted': 286984, 'hadn acted stupid': 373839, 'acted stupid and': 29847, 'stupid and started': 815343, 'and started panic': 72258, 'started panic buying': 794800, 'panic buying there': 637929, 'buying there would': 151200, 'there would have': 879377, 'would have been': 1011870, 'have been plenty': 379632, 'been plenty of': 121667, 'and supply to': 72821, 'supply to this': 826032, 'to this day': 917420, 'this day coronacrisis': 887167, 'accepting': 28065, 'carside': 165235, 'customer we': 223040, 'are limiting': 87815, 'limiting in': 492827, 'to further': 906342, 'further reduce': 342144, 'reduce risk': 705919, 'team and': 835575, 'and accepting': 57580, 'accepting phone': 28086, 'order at': 618060, 'at both': 98150, 'both location': 135959, 'location carside': 498872, 'carside pick': 165236, 'pick ups': 655779, 'ups and': 947728, 'and nationwide': 67438, 'nationwide shipping': 552755, 'message to our': 529455, 'our customer we': 622678, 'customer we are': 223042, 'we are limiting': 970610, 'are limiting in': 87817, 'limiting in store': 492828, 'in store pickup': 428441, 'store pickup and': 809559, 'pickup and shopping': 655929, 'and shopping to': 71555, 'shopping to further': 764175, 'to further reduce': 906345, 'further reduce risk': 342145, 'reduce risk and': 705920, 'risk and ensure': 723371, 'and ensure the': 62167, 'of our team': 587576, 'our team and': 625094, 'team and community': 835576, 'and community we': 60180, 'community we are': 190207, 'we are open': 970647, 'open and accepting': 612047, 'and accepting phone': 57581, 'accepting phone and': 28087, 'phone and online': 654884, 'and online order': 68111, 'online order at': 608680, 'order at both': 618062, 'at both location': 98154, 'both location carside': 135960, 'location carside pick': 498873, 'carside pick ups': 165237, 'pick ups and': 655780, 'ups and nationwide': 947731, 'and nationwide shipping': 67439, 'mid': 530537, 'food sanitizer': 316296, 'sanitizer toilet': 735962, 'paper life': 640412, 'insurance american': 440668, 'american instant': 52053, 'instant online': 440111, 'online life': 608486, 'insurance and': 440672, 'other financial': 620223, 'financial help': 306439, 'help say': 390488, 'seen 50': 746915, '50 increase': 19729, 'in life': 424704, 'insurance application': 440675, 'application since': 82479, 'since mid': 770735, 'mid february': 530565, 'february source': 301741, 'essential food sanitizer': 281048, 'food sanitizer toilet': 316297, 'sanitizer toilet paper': 735963, 'toilet paper life': 921336, 'paper life insurance': 640413, 'life insurance american': 488781, 'insurance american instant': 440669, 'american instant online': 52054, 'instant online life': 440112, 'online life insurance': 608487, 'life insurance and': 488782, 'insurance and other': 440674, 'and other financial': 68328, 'other financial help': 620224, 'financial help say': 306442, 'help say it': 390489, 'say it ha': 738844, 'it ha seen': 458411, 'ha seen 50': 371820, 'seen 50 increase': 746916, '50 increase in': 19730, 'increase in life': 432843, 'in life insurance': 424707, 'life insurance application': 488783, 'insurance application since': 440676, 'application since mid': 82480, 'since mid february': 770738, 'mid february source': 530568, 'new advice': 558324, 'supermarket trip': 823541, 'trip during': 932065, 'outbreak touching': 628764, 'touching trolley': 926745, 'trolley good': 932419, 'and standing': 72224, 'other shopper': 620898, 'shopper could': 761469, 'new advice for': 558325, 'advice for supermarket': 33375, 'for supermarket trip': 326031, 'supermarket trip during': 823543, 'trip during outbreak': 932066, 'during outbreak touching': 262852, 'outbreak touching trolley': 628765, 'touching trolley good': 926747, 'trolley good and': 932420, 'good and standing': 356750, 'and standing too': 72227, 'close to other': 182911, 'to other shopper': 911121, 'other shopper could': 620901, 'shopper could result': 761471, 'result in the': 717552, 'in the transmission': 429624, 'marianos': 515684, 'played': 659270, 'mariano': 515679, 'so wa': 778637, 'in marianos': 425134, 'marianos grocery': 515687, 'today looking': 919837, 'what come': 981227, 'come over': 187480, 'store music': 809002, 'music well': 546353, 'well played': 978482, 'played mariano': 659279, 'mariano well': 515682, 'so wa in': 778641, 'wa in marianos': 962374, 'in marianos grocery': 425135, 'marianos grocery store': 515688, 'store today looking': 810853, 'today looking for': 919838, 'looking for essential': 502864, 'for essential and': 321094, 'essential and what': 280792, 'and what come': 75455, 'what come over': 981231, 'come over their': 187481, 'over their in': 630792, 'in store music': 428429, 'store music well': 809003, 'music well played': 546354, 'well played mariano': 978484, 'played mariano well': 659280, 'mariano well played': 515683, 'hello exec': 389156, 'exec how': 289818, 'pandemic affecting': 634806, 'affecting your': 34594, 'customer prospect': 222723, 'prospect and': 684665, 'general let': 345397, 'which topic': 986406, 'topic where': 925824, 'where consumer': 984785, 'data would': 226501, 'would most': 1012040, 'most help': 542379, 'by taking': 154202, 'this min': 888854, 'min survey': 532576, 'survey dc': 828853, 'hello exec how': 389157, 'exec how is': 289819, 'how is the': 408113, 'is the covid': 452757, '19 pandemic affecting': 9254, 'pandemic affecting your': 634807, 'affecting your customer': 34596, 'your customer prospect': 1023418, 'customer prospect and': 222724, 'prospect and consumer': 684667, 'consumer in general': 197820, 'in general let': 423253, 'general let know': 345398, 'know which topic': 477027, 'which topic where': 986407, 'topic where consumer': 925825, 'where consumer data': 984786, 'consumer data would': 197065, 'data would most': 226502, 'would most help': 1012041, 'most help you': 542380, 'help you by': 390957, 'you by taking': 1017596, 'by taking this': 154209, 'taking this min': 833617, 'this min survey': 888856, 'min survey dc': 532577, 'demonstrably': 236825, 'bt': 141463, 'his attitude': 397214, 'attitude is': 102564, 'only insensitive': 610646, 'insensitive it': 439193, 'it demonstrably': 457518, 'demonstrably illegal': 236826, 'illegal to': 416248, 'see wouldn': 746093, 'wouldn call': 1012451, 'call bt': 155797, 'bt consumer': 141464, 'staff essential': 792416, 'essential what': 281780, 'do can': 249174, 'his attitude is': 397215, 'attitude is not': 102565, 'is not only': 450145, 'not only insensitive': 570804, 'only insensitive it': 610647, 'insensitive it demonstrably': 439194, 'it demonstrably illegal': 457519, 'demonstrably illegal to': 236827, 'illegal to see': 416255, 'to see wouldn': 914101, 'see wouldn call': 746094, 'wouldn call bt': 1012452, 'call bt consumer': 155798, 'bt consumer sale': 141465, 'consumer sale staff': 198860, 'sale staff essential': 732545, 'staff essential what': 792417, 'essential what they': 281785, 'what they do': 982399, 'they do can': 881958, 'do can be': 249175, 'zoom take': 1027827, 'take lead': 832264, 'lead over': 483303, 'over microsoft': 630393, 'microsoft team': 530517, 'team coronavirus': 835617, 'coronavirus keep': 206195, 'american at': 51824, 'zoom take lead': 1027828, 'take lead over': 832266, 'lead over microsoft': 483304, 'over microsoft team': 630394, 'microsoft team coronavirus': 530518, 'team coronavirus keep': 835618, 'coronavirus keep american': 206196, 'keep american at': 471309, 'american at home': 51825, 'logicallysummaries': 500677, 'logicallysummaries update': 500678, 'update railway': 947184, 'railway increase': 695706, 'increase platform': 432987, 'ticket price': 895640, 'by five': 152597, 'five time': 309668, 'logicallysummaries update railway': 500679, 'update railway increase': 947185, 'railway increase platform': 695707, 'increase platform ticket': 432988, 'platform ticket price': 659035, 'ticket price by': 895644, 'price by five': 673022, 'by five time': 152598, 'uh': 938073, 'grimy': 363981, 'old art': 598149, 'art but': 94142, 'but uh': 147641, 'uh so': 938085, 'so really': 778115, 'really want': 702696, 'want animal': 965711, 'animal crossing': 76568, 'crossing and': 219076, 'and uh': 74571, 'uh have': 938080, 'low fund': 505291, 'uh can': 938076, 'really work': 702715, 'work cu': 1005020, 'cu of': 220135, 'own condition': 631922, 'condition amp': 193390, 'amp uh': 54750, 'uh covid': 938078, 'so yeah': 778827, 'yeah gonna': 1014257, 'some last': 783184, 'last min': 480316, 'min comms': 532527, 'comms the': 189525, 'the comment': 851207, 'comment desperate': 188409, 'desperate time': 238555, 'time call': 896440, 'for grimy': 322018, 'grimy measure': 363982, 'old art but': 598150, 'art but uh': 94143, 'but uh so': 147642, 'uh so really': 938086, 'so really want': 778117, 'really want animal': 702697, 'want animal crossing': 965712, 'animal crossing and': 76569, 'crossing and uh': 219078, 'and uh have': 74573, 'uh have low': 938081, 'have low fund': 381393, 'low fund and': 505292, 'fund and uh': 341361, 'and uh can': 74572, 'uh can really': 938077, 'can really work': 159392, 'really work cu': 702716, 'work cu of': 1005021, 'cu of my': 220136, 'my own condition': 549636, 'own condition amp': 631923, 'condition amp uh': 193391, 'amp uh covid': 54751, 'uh covid 19': 938079, '19 so yeah': 10659, 'so yeah gonna': 778828, 'yeah gonna do': 1014258, 'gonna do some': 356513, 'do some last': 250124, 'some last min': 783185, 'last min comms': 480317, 'min comms the': 532528, 'comms the price': 189526, 'the price will': 864439, 'will be in': 992512, 'in the comment': 429084, 'the comment desperate': 851210, 'comment desperate time': 188410, 'desperate time call': 238556, 'time call for': 896442, 'call for grimy': 155871, 'for grimy measure': 322019, 've either': 953071, 'either seen': 270367, 'seen bare': 746964, 'bare grocery': 110900, 'person during': 652408, 'the initial': 858276, 'or trending': 617530, 'trending online': 931560, 'online but': 607961, 'what shocked': 982170, 'shocked most': 759577, 'most american': 542086, 'american wasn': 52289, 'wasn the': 968024, 'the mad': 859861, 'dash it': 226071, 'were flying': 979644, 'by now we': 153376, 'now we ve': 576357, 'we ve either': 973657, 've either seen': 953072, 'either seen bare': 270368, 'seen bare grocery': 746965, 'bare grocery store': 110902, 'store shelf in': 810083, 'shelf in person': 757213, 'in person during': 426625, 'person during the': 652409, 'during the initial': 263144, 'the initial panic': 858280, 'initial panic or': 438549, 'panic or trending': 638369, 'or trending online': 617531, 'trending online but': 931561, 'online but what': 607971, 'but what shocked': 147797, 'what shocked most': 982172, 'shocked most american': 759578, 'most american wasn': 542092, 'american wasn the': 52290, 'wasn the mad': 968028, 'the mad dash': 859862, 'mad dash it': 507539, 'dash it wa': 226072, 'wa the product': 963465, 'the product that': 864595, 'product that were': 681703, 'that were flying': 847439, 'were flying off': 979645, 'requested': 713243, 'rhapsody': 720875, 'vinyl': 957472, 'hey guelph': 394399, 'guelph what': 367951, 'great today': 363073, 'little one': 495501, 'one requested': 606955, 'requested rhapsody': 713254, 'rhapsody in': 720876, 'in blue': 420882, 'blue on': 133458, 'on vinyl': 605050, 'hey guelph what': 394400, 'guelph what great': 367952, 'what great today': 981521, 'great today my': 363075, 'today my little': 919902, 'my little one': 549082, 'little one requested': 495503, 'one requested rhapsody': 606956, 'requested rhapsody in': 713255, 'rhapsody in blue': 720877, 'in blue on': 420883, 'blue on vinyl': 133459, 'spain now': 787329, 'now under': 576247, 'under national': 940168, 'national emergency': 552487, 'emergency no': 272817, 'but plenty': 146809, 'paper ready': 640659, 'for trade': 327303, 'spain now under': 787331, 'now under national': 576249, 'under national emergency': 940169, 'national emergency no': 552492, 'emergency no food': 272819, 'no food at': 564251, 'store but plenty': 806805, 'but plenty of': 146810, 'toilet paper ready': 921413, 'paper ready for': 640660, 'ready for trade': 700878, 'the curious': 852598, 'curious impact': 220981, 'behavior get': 124043, 'touch with': 926574, 'an from': 56051, 'following this': 312919, 'this topic': 890813, 'the curious impact': 852599, 'curious impact of': 220982, 'consumer behavior get': 196478, 'behavior get in': 124044, 'in touch with': 430235, 'touch with an': 926575, 'with an from': 997213, 'an from if': 56052, 'from if you': 336005, 'you are following': 1017126, 'are following this': 86629, 'following this topic': 312921, 'dominated': 253279, 'fog': 312020, 'horn': 404058, 'pandemic cause': 635105, 'cause panicked': 167697, 'panicked people': 639275, 'empty their': 275185, 'their mind': 873971, 'mind along': 532615, 'shelf doomsday': 756991, 'doomsday warning': 255481, 'warning are': 967089, 'spreading online': 791016, 'online dominated': 608124, 'dominated by': 253280, 'by maga': 153119, 'maga fog': 508276, 'fog horn': 312021, 'horn in': 404059, 'than four': 840673, 'week they': 977033, 'it hoax': 458603, 'to ut': 918093, 'pandemic cause panicked': 635106, 'cause panicked people': 167698, 'panicked people to': 639277, 'people to empty': 649897, 'to empty their': 905038, 'empty their mind': 275186, 'their mind along': 873973, 'mind along with': 532616, 'along with supermarket': 47081, 'supermarket shelf doomsday': 822455, 'shelf doomsday warning': 756992, 'doomsday warning are': 255482, 'warning are spreading': 967090, 'are spreading online': 90338, 'spreading online dominated': 791017, 'online dominated by': 608125, 'dominated by maga': 253281, 'by maga fog': 153120, 'maga fog horn': 508277, 'fog horn in': 312022, 'horn in le': 404060, 'in le than': 424650, 'le than four': 483171, 'than four week': 840675, 'four week they': 330703, 'week they have': 977035, 'they have pivoted': 882361, 'pivoted from it': 657116, 'from it hoax': 336119, 'it hoax to': 458606, 'hoax to ut': 399746, 'upcoming': 946781, 'related supply': 708581, 'supply problem': 825730, 'problem stress': 679686, 'stress on': 813372, 'china disruption': 176615, 'disruption were': 246553, 'were initial': 979795, 'initial issue': 438532, 'issue stress': 455941, 'beverage supply': 129040, 'chain reflect': 171035, 'reflect economics': 706608, 'economics of': 267472, 'fear upcoming': 301413, 'upcoming stress': 946811, 'stress from': 813326, 'from collapsing': 334907, 'collapsing demand': 186132, 'will reflect': 994612, 'of sudden': 590369, 'sudden stop': 817045, 'stop via': 805253, 'related supply problem': 708583, 'supply problem stress': 825736, 'problem stress on': 679687, 'stress on supply': 813375, 'on supply chain': 603820, 'supply chain from': 824962, 'chain from china': 170724, 'from china disruption': 334856, 'china disruption were': 176616, 'disruption were initial': 246554, 'were initial issue': 979796, 'initial issue stress': 438533, 'issue stress on': 455942, 'stress on food': 813373, 'on food beverage': 600846, 'food beverage supply': 313749, 'beverage supply chain': 129041, 'supply chain reflect': 825018, 'chain reflect economics': 171036, 'reflect economics of': 706609, 'economics of fear': 267473, 'of fear upcoming': 583465, 'fear upcoming stress': 301414, 'upcoming stress from': 946812, 'stress from collapsing': 813327, 'from collapsing demand': 334908, 'collapsing demand will': 186134, 'demand will reflect': 236504, 'will reflect economics': 994613, 'economics of sudden': 267474, 'of sudden stop': 590375, 'sudden stop via': 817046, 'quiz': 694951, 'quizetimemorningswithamazon': 694962, 'and playing': 69095, 'playing amazon': 659377, 'amazon quiz': 51084, 'quiz grab': 694956, 'grab the': 361545, 'win amazing': 995535, 'amazing price': 50767, 'from play': 336936, 'play indoor': 659175, 'indoor game': 435355, 'game and': 343117, 'and quiz': 69890, 'quiz stay': 694958, 'healthy quarantineactivities': 387741, 'quarantineactivities coronacrisis': 692737, 'lockdown quizetimemorningswithamazon': 499835, 'day of quarantine': 228093, 'of quarantine and': 588651, 'quarantine and playing': 692020, 'and playing amazon': 69096, 'playing amazon quiz': 659378, 'amazon quiz grab': 51085, 'quiz grab the': 694957, 'grab the opportunity': 361547, 'to win amazing': 918609, 'win amazing price': 995536, 'amazing price from': 50768, 'price from play': 674116, 'from play indoor': 336937, 'play indoor game': 659176, 'indoor game and': 435356, 'game and quiz': 343119, 'and quiz stay': 69891, 'quiz stay at': 694959, 'home and stay': 400691, 'and stay healthy': 72293, 'stay healthy quarantineactivities': 796915, 'healthy quarantineactivities coronacrisis': 387742, 'quarantineactivities coronacrisis lockdown': 692738, 'coronacrisis lockdown quizetimemorningswithamazon': 204657, 'of fake': 583379, 'fake website': 296742, 'website selling': 975408, 'product such': 681651, 'such hand': 816536, 'gel and': 345096, 'offering cure': 595058, 'cure or': 220783, 'or testing': 617349, 'for seek': 325413, 'seek advice': 746563, 'from or': 336710, 'or visit': 617680, 'beware of fake': 129077, 'of fake website': 583384, 'fake website selling': 296744, 'website selling product': 975409, 'selling product such': 749418, 'product such hand': 681656, 'such hand gel': 816537, 'hand gel and': 374974, 'gel and offering': 345097, 'and offering cure': 67983, 'offering cure or': 595059, 'cure or testing': 220787, 'or testing kit': 617350, 'kit for seek': 475549, 'for seek advice': 325414, 'seek advice on': 746564, 'advice on consumer': 33454, 'on consumer protection': 600069, 'consumer protection from': 198530, 'protection from or': 685459, 'from or visit': 336717, 'godrej': 354883, 'patanjali': 643919, 'hul': 410333, 'sir godrej': 771568, 'godrej patanjali': 354896, 'patanjali hul': 643920, 'hul and': 410334, 'from 75': 334332, '75 to': 22166, 'also hul': 48382, 'hul announce': 410337, 'announce 100': 76833, '100 crore': 1875, 'crore support': 218969, 'sir godrej patanjali': 771569, 'godrej patanjali hul': 354897, 'patanjali hul and': 643921, 'hul and others': 410336, 'and others reduced': 68456, 'reduced price of': 706153, 'sanitizer from 75': 734943, 'from 75 to': 334333, '75 to 25': 22168, 'to 25 and': 899634, '25 and also': 15838, 'and also hul': 57960, 'also hul announce': 48383, 'hul announce 100': 410338, 'announce 100 crore': 76834, '100 crore support': 1877, 'coronahero': 204968, 'are coronavirus': 85574, 'crisis unsung': 218298, 'hero coronahero': 393969, 'worker are coronavirus': 1006379, 'are coronavirus crisis': 85575, 'coronavirus crisis unsung': 205775, 'crisis unsung hero': 218299, 'unsung hero coronahero': 943554, 'campus': 157324, 'is link': 449377, 'provider so': 686783, 'that campus': 843088, 'campus food': 157333, 'worker can': 1006582, 'paid during': 633999, 'crisis join': 217623, 'me by': 522543, 'by sending': 153940, 'sending an': 750006, 'email now': 272247, 'this is link': 888305, 'is link to': 449379, 'link to get': 493930, 'to get to': 906623, 'get to continue': 348462, 'continue to pay': 201228, 'pay it food': 644968, 'it food service': 458057, 'food service provider': 316428, 'service provider so': 752736, 'provider so that': 686784, 'so that campus': 778362, 'that campus food': 843089, 'campus food service': 157334, 'service worker can': 753091, 'worker can be': 1006584, 'can be paid': 157657, 'be paid during': 116333, 'paid during the': 634000, '19 crisis join': 6271, 'crisis join me': 217625, 'join me by': 466772, 'me by sending': 522550, 'by sending an': 153941, 'sending an email': 750007, 'an email now': 55658, 'alhadulilah': 41677, 'reunion': 720130, 'madam': 507585, 'pmb': 662035, 'palliative': 634597, 'bvn': 151487, 'transferred': 929546, 'alhadulilah for': 41678, 'for reunion': 325212, 'reunion madam': 720131, 'madam please': 507588, 'please talk': 660644, 'to pmb': 911848, 'pmb on': 662036, 'on providing': 602989, 'providing palliative': 687067, 'palliative to': 634598, 'to nigerian': 910603, 'nigerian staying': 562878, 'home hunger': 401391, 'faster dan': 300092, 'dan covid': 225526, '19 40': 4745, '40 million': 18605, 'million nigerian': 532253, 'nigerian ve': 562898, 've bvn': 952978, 'bvn thru': 151488, 'thru which': 895243, 'which money': 986162, 'money can': 536658, 'be transferred': 117789, 'transferred to': 929551, 'nigerian to': 562889, 'alhadulilah for reunion': 41679, 'for reunion madam': 325213, 'reunion madam please': 720132, 'madam please talk': 507589, 'please talk to': 660645, 'talk to pmb': 833887, 'to pmb on': 911849, 'pmb on providing': 662037, 'on providing palliative': 602992, 'providing palliative to': 687068, 'palliative to nigerian': 634599, 'to nigerian staying': 910605, 'nigerian staying at': 562879, 'at home hunger': 99009, 'home hunger kill': 401392, 'kill faster dan': 474392, 'faster dan covid': 300093, 'dan covid 19': 225527, 'covid 19 40': 212560, '19 40 million': 4746, '40 million nigerian': 18608, 'million nigerian ve': 532254, 'nigerian ve bvn': 562899, 've bvn thru': 952979, 'bvn thru which': 151489, 'thru which money': 895244, 'which money can': 986163, 'money can be': 536659, 'can be transferred': 157703, 'be transferred to': 117790, 'transferred to nigerian': 929552, 'to nigerian to': 910606, 'nigerian to stock': 562891, 'stock food at': 802124, 'untapped': 943615, 'buylists': 151429, 'hunkering': 411344, 'update event': 946946, 'event through': 285090, 'march are': 515279, 'cancelled at': 161087, 'at untapped': 101412, 'untapped new': 943616, 'new buylists': 558434, 'buylists are': 151430, 'down for': 256765, 'time being': 896386, 'being stay': 125854, 'tuned to': 935446, 'so grab': 777198, 'grab game': 361489, 'play while': 659250, 'while hunkering': 986928, 'hunkering down': 411345, 'card on': 163592, 'our site': 624786, 'site stay': 772013, 'safe be': 729510, '19 update event': 11661, 'update event through': 946947, 'event through the': 285091, 'through the end': 894732, 'of march are': 586200, 'march are cancelled': 515281, 'are cancelled at': 85161, 'cancelled at untapped': 161088, 'at untapped new': 101413, 'untapped new buylists': 943617, 'new buylists are': 558435, 'buylists are still': 151431, 'are still down': 90415, 'still down for': 800461, 'down for the': 256778, 'for the time': 326732, 'the time being': 869578, 'time being stay': 896392, 'being stay tuned': 125855, 'stay tuned to': 797366, 'tuned to this': 935447, 'to this space': 917462, 'space for update': 787103, 'for update the': 327472, 'update the retail': 947254, 'is open so': 450579, 'open so grab': 612502, 'so grab game': 777199, 'grab game to': 361490, 'to play while': 911807, 'play while hunkering': 659252, 'while hunkering down': 986929, 'hunkering down or': 411347, 'down or order': 257061, 'or order card': 616412, 'order card on': 618124, 'card on our': 163593, 'on our site': 602628, 'our site stay': 624788, 'site stay safe': 772014, 'stay safe be': 797213, 'safe be well': 729515, 'indicating': 435001, 'screeching': 742667, 'historically': 397994, 'toronto housing': 925949, 'staying resilient': 798685, 'resilient amid': 714512, 'outbreak however': 628322, 'however there': 409487, 'are sign': 90121, 'sign indicating': 769134, 'indicating activity': 435002, 'activity may': 30473, 'be coming': 114151, 'to screeching': 913929, 'screeching halt': 742668, 'halt price': 374451, 'are up': 91349, 'by 14': 151541, '14 year': 3544, 'year over': 1014898, 'over year': 630952, 'year so': 1014957, 'month we': 538103, 'we entered': 971470, 'entered it': 278364, 'it with': 462462, 'with historically': 998851, 'historically low': 397995, 'low le': 505378, 'toronto housing price': 925950, 'housing price are': 407129, 'price are staying': 672743, 'are staying resilient': 90376, 'staying resilient amid': 798686, 'resilient amid the': 714513, '19 outbreak however': 9137, 'outbreak however there': 628323, 'however there are': 409488, 'there are sign': 878161, 'are sign indicating': 90123, 'sign indicating activity': 769135, 'indicating activity may': 435003, 'activity may be': 30474, 'may be coming': 520963, 'be coming to': 114154, 'coming to screeching': 188228, 'to screeching halt': 913930, 'screeching halt price': 742670, 'halt price are': 374452, 'price are up': 672759, 'are up by': 91361, 'up by 14': 944540, 'by 14 year': 151542, '14 year over': 3546, 'year over year': 1014901, 'over year so': 630959, 'year so far': 1014958, 'far this month': 298941, 'this month we': 888922, 'month we entered': 538106, 'we entered it': 971471, 'entered it with': 278365, 'it with historically': 462473, 'with historically low': 998852, 'historically low le': 397996, 'least if': 484512, 'pub are': 687664, 'are shut': 90088, 'shut the': 767939, 'the moron': 860922, 'moron will': 541652, 'be panic': 116351, 'buying booze': 150036, 'booze in': 135163, 'supermarket rather': 822158, 'than food': 840657, 'or loo': 616006, 'at least if': 99509, 'least if the': 484513, 'if the pub': 415020, 'the pub are': 864765, 'pub are shut': 687668, 'are shut the': 90093, 'shut the moron': 767941, 'the moron will': 860924, 'moron will be': 541653, 'will be panic': 992599, 'be panic buying': 116352, 'panic buying booze': 637658, 'buying booze in': 150037, 'booze in the': 135164, 'the supermarket rather': 868770, 'supermarket rather than': 822159, 'rather than food': 697519, 'than food or': 840660, 'food or loo': 315659, 'or loo roll': 616007, 'loo roll coronacrisis': 502173, 'enewsletter': 276645, 'forest': 329078, 'week enewsletter': 976190, 'enewsletter to': 276646, 'about even': 25189, 'more fantastic': 539196, 'fantastic local': 298598, 'local service': 498384, 'service being': 752177, 'being provided': 125590, 'provided in': 686619, 'new forest': 558752, 'forest from': 329079, 'from delivery': 335123, 'delivery amp': 233648, 'amp takeaway': 54617, 'takeaway online': 832890, 'and virtual': 74969, 'virtual class': 957725, 'class sign': 180256, 'receive next': 703517, 'next week': 561667, 'week here': 976325, 'look at this': 502302, 'at this week': 101266, 'this week enewsletter': 891211, 'week enewsletter to': 976191, 'enewsletter to find': 276647, 'find out about': 307132, 'out about even': 625551, 'about even more': 25190, 'even more fantastic': 284355, 'more fantastic local': 539197, 'fantastic local service': 298599, 'local service being': 498385, 'service being provided': 752179, 'being provided in': 125592, 'provided in the': 686620, 'the new forest': 861504, 'new forest from': 558753, 'forest from delivery': 329080, 'from delivery amp': 335124, 'delivery amp takeaway': 233651, 'amp takeaway online': 54618, 'takeaway online shopping': 832892, 'shopping and virtual': 762039, 'and virtual class': 74970, 'virtual class sign': 957726, 'class sign up': 180257, 'up to receive': 946422, 'to receive next': 912926, 'receive next week': 703518, 'next week here': 561685, '1per': 12678, 'intend': 441039, 'mr price': 544396, 'of some': 589887, 'product just': 681336, 'just ridiculous': 469644, 'ridiculous high': 721550, 'high paracetamol': 395210, '400 and': 18717, 'buy 1per': 148252, '1per person': 12679, 'person what': 652710, 'you intend': 1019360, 'intend to': 441040, 'mr price of': 544397, 'price of some': 675572, 'of some product': 589903, 'some product just': 783649, 'product just ridiculous': 681337, 'just ridiculous high': 469645, 'ridiculous high paracetamol': 721551, 'high paracetamol in': 395211, 'paracetamol in some': 641248, 'in some store': 428105, 'some store ha': 783956, 'store ha increased': 808010, 'increased by 400': 433227, 'by 400 and': 151651, '400 and is': 18719, 'and is limited': 65415, 'is limited to': 449366, 'limited to buy': 492768, 'to buy 1per': 902167, 'buy 1per person': 148253, '1per person what': 12680, 'person what do': 652711, 'do you intend': 250640, 'you intend to': 1019361, 'intend to do': 441044, 'workfromhome': 1008407, 'husband assures': 411679, 'assures me': 97138, 'me we': 523910, 'but like': 146273, 'like he': 490394, 'he guy': 385011, 'guy 19': 368880, 'toiletpaper workfromhome': 922864, 'my husband assures': 548771, 'husband assures me': 411680, 'assures me we': 97139, 'me we have': 523913, 'have enough toilet': 380470, 'paper but like': 639969, 'but like he': 146276, 'like he guy': 490397, 'he guy 19': 385012, 'guy 19 toiletpaper': 368881, '19 toiletpaper workfromhome': 11496, 'bakkt': 108946, '300m': 17359, 'digitalsecurities': 242804, 'seriesa': 751317, 'seriesb': 751320, 'securitytoken': 744808, 'sto': 801744, 'securitytokens': 744811, 'digitalsecurity': 242807, 'bakkt head': 108949, 'head toward': 385847, 'toward summer': 927152, 'summer launch': 817986, 'consumer app': 196262, 'app while': 81803, 'while closing': 986692, 'closing 300m': 183568, '300m series': 17362, 'series app': 751228, 'app bakkt': 81681, 'bakkt blockchain': 108947, 'blockchain 19': 132814, '19 crypto': 6371, 'crypto digitalsecurities': 219944, 'digitalsecurities ice': 242805, 'ice seriesa': 412679, 'seriesa seriesb': 751318, 'seriesb securitytoken': 751321, 'securitytoken sto': 744809, 'sto securitytokens': 801747, 'securitytokens digitalsecurity': 744813, 'bakkt head toward': 108950, 'head toward summer': 385848, 'toward summer launch': 927153, 'summer launch of': 817987, 'launch of it': 481932, 'of it consumer': 585379, 'it consumer app': 457280, 'consumer app while': 196264, 'app while closing': 81804, 'while closing 300m': 986693, 'closing 300m series': 183569, '300m series app': 17363, 'series app bakkt': 751229, 'app bakkt blockchain': 81682, 'bakkt blockchain 19': 108948, 'blockchain 19 crypto': 132815, '19 crypto digitalsecurities': 6372, 'crypto digitalsecurities ice': 219945, 'digitalsecurities ice seriesa': 242806, 'ice seriesa seriesb': 412680, 'seriesa seriesb securitytoken': 751319, 'seriesb securitytoken sto': 751322, 'securitytoken sto securitytokens': 744810, 'sto securitytokens digitalsecurity': 801749, 'regarding at': 707176, 'least get': 484484, 'keep going': 471540, 'store must': 809004, 'close at': 182552, 'at 10': 97395, '10 meaning': 1516, 'meaning everyone': 524806, 'to midnight': 910118, 'midnight must': 530751, 'must work': 547005, 'to 10': 899418, 'regarding at least': 707177, 'at least get': 99498, 'least get to': 484486, 'get to keep': 348475, 'to keep going': 908795, 'keep going to': 471552, 'going to my': 355658, 'to my job': 910411, 'my job at': 548905, 'supermarket store must': 823008, 'store must close': 809006, 'must close at': 546587, 'close at 10': 182553, 'at 10 meaning': 97406, '10 meaning everyone': 1517, 'meaning everyone who': 524807, 'everyone who work': 287611, 'who work to': 990045, 'work to midnight': 1005894, 'to midnight must': 910121, 'midnight must work': 530752, 'must work to': 547007, 'work to 10': 1005879, 'serviceindustry': 753141, 'calling grocery': 156566, 'hero right': 394079, 'now service': 575780, 'industry worker': 436258, 'always hero': 49618, 'hero without': 394176, 'you would': 1022445, 'have stocked': 382767, 'stocked grocery': 803329, 'or almost': 614294, 'almost anything': 46551, 'else hero': 271732, 'hero serviceindustry': 394085, 'everyone is calling': 287069, 'is calling grocery': 446352, 'calling grocery store': 156567, 'store worker hero': 811524, 'worker hero right': 1007125, 'hero right now': 394080, 'right now service': 722131, 'now service industry': 575781, 'service industry worker': 752503, 'industry worker are': 436259, 'worker are always': 1006366, 'are always hero': 84501, 'always hero without': 49619, 'hero without them': 394177, 'without them you': 1002996, 'them you would': 876681, 'you would never': 1022455, 'would never have': 1012060, 'never have stocked': 558053, 'have stocked grocery': 382768, 'stocked grocery store': 803330, 'store or almost': 809311, 'or almost anything': 614295, 'almost anything else': 46552, 'anything else hero': 80744, 'else hero serviceindustry': 271733, '36': 17991, 'only good': 610532, 'an all': 55235, 'low 36': 505088, '36 yes': 18028, 'yes please': 1015515, 'please when': 660770, 'it through': 461672, 'will them': 995164, 'them gas': 875768, 'better not': 128378, 'not shoot': 571555, 'the only good': 862310, 'only good thing': 610533, 'good thing to': 357854, 'thing to come': 884880, 'to come from': 903029, 'come from covid': 187302, 'is that gas': 452650, 'are at an': 84663, 'at an all': 97975, 'an all time': 55239, 'time low 36': 897161, 'low 36 yes': 505089, '36 yes please': 18029, 'yes please when': 1015516, 'please when we': 660772, 'when we make': 984456, 'we make it': 972337, 'make it through': 510060, 'it through this': 461680, 'through this and': 894803, 'this and we': 886356, 'we will them': 973916, 'will them gas': 995165, 'them gas price': 875769, 'gas price better': 343937, 'price better not': 672917, 'better not shoot': 128381, 'not shoot up': 571557, 'laid': 479002, 'pouring': 667452, 'passion': 643414, 'writing': 1012882, 'hi will': 394775, 'will write': 995372, 'write you': 1012800, 'you short': 1021177, 'short story': 764695, 'story or': 812097, 'or essay': 615177, 'essay of': 280711, 'your choice': 1023212, 'choice wa': 177822, 'wa recently': 963070, 'recently temporarily': 704161, 'temporarily laid': 837502, 'laid off': 479008, 'off due': 593784, 'am hoping': 50124, 'hoping to': 403950, 'meet by': 527427, 'by pouring': 153632, 'pouring my': 667453, 'heart into': 388303, 'my original': 549618, 'original passion': 619572, 'passion writing': 643419, 'writing price': 1012920, 'low am': 505113, 'am by': 49964, 'by no': 153338, 'no mean': 564741, 'mean professional': 524621, 'professional but': 682430, 'hi will write': 394776, 'will write you': 995373, 'write you short': 1012801, 'you short story': 1021178, 'short story or': 764697, 'story or essay': 812098, 'or essay of': 615178, 'essay of your': 280712, 'of your choice': 593451, 'your choice wa': 1023215, 'choice wa recently': 177823, 'wa recently temporarily': 963072, 'recently temporarily laid': 704162, 'temporarily laid off': 837503, 'laid off due': 479017, 'off due to': 593785, 'outbreak and am': 627983, 'and am hoping': 58020, 'am hoping to': 50125, 'hoping to make': 403955, 'end meet by': 275876, 'meet by pouring': 527428, 'by pouring my': 153633, 'pouring my heart': 667454, 'my heart into': 548655, 'heart into my': 388304, 'into my original': 442785, 'my original passion': 549619, 'original passion writing': 619573, 'passion writing price': 643420, 'writing price are': 1012921, 'are low am': 87918, 'low am by': 505114, 'am by no': 49965, 'by no mean': 153339, 'no mean professional': 564743, 'mean professional but': 524622, 'professional but will': 682431, 'arak': 83984, 'bali': 109037, 'far we': 298970, 've produced': 953452, 'produced 10': 680502, '10 600': 1284, '600 bottle': 21069, 'sanitizer using': 735996, 'using arak': 950395, 'arak and': 83985, 'and bali': 58670, 'bali police': 109040, 'police have': 663037, 'have given': 380769, 'given them': 351168, 'them out': 876122, 'so far we': 777067, 'far we ve': 298972, 'we ve produced': 973697, 've produced 10': 953453, 'produced 10 600': 680503, '10 600 bottle': 1285, '600 bottle of': 21070, 'bottle of hand': 136283, 'hand sanitizer using': 375639, 'sanitizer using arak': 735997, 'using arak and': 950396, 'arak and bali': 83986, 'and bali police': 58671, 'bali police have': 109041, 'police have given': 663042, 'have given them': 380775, 'given them out': 351169, 'them out to': 876135, 'out to people': 627670, 'people in need': 648401, 'nationalizing': 552679, 'dolling': 253137, 'def': 232012, 'stamp after': 793397, 'after hording': 35799, 'supply creating': 825119, 'creating shortage': 216071, 'and driving': 61755, 'and nationalizing': 67436, 'nationalizing and': 552680, 'and foreign': 63193, 'foreign plant': 328998, 'plant blocking': 658631, 'blocking their': 132892, 'their export': 873209, 'export ccp': 292619, 'ccp have': 168460, 'have begun': 379750, 'begun dolling': 123705, 'dolling out': 253138, 'out mask': 626542, 'equipment much': 279784, 'is def': 447072, 'stamp after hording': 793398, 'after hording medical': 35800, 'hording medical supply': 404023, 'medical supply creating': 526435, 'supply creating shortage': 825120, 'creating shortage and': 216072, 'shortage and driving': 764815, 'and driving up': 61758, 'price and nationalizing': 672475, 'and nationalizing and': 67437, 'nationalizing and foreign': 552681, 'and foreign plant': 63196, 'foreign plant blocking': 328999, 'plant blocking their': 658632, 'blocking their export': 132893, 'their export ccp': 873210, 'export ccp have': 292620, 'ccp have begun': 168461, 'have begun dolling': 379752, 'begun dolling out': 123706, 'dolling out mask': 253139, 'out mask and': 626543, 'mask and medical': 518348, 'and medical equipment': 66875, 'medical equipment much': 526158, 'equipment much of': 279785, 'much of which': 545202, 'of which is': 593105, 'which is def': 986000, 'applying': 82629, 'work because': 1004922, 'of consider': 581684, 'consider applying': 194956, 'applying at': 82630, 're out of': 699223, 'of work because': 593243, 'work because of': 1004923, 'because of consider': 119320, 'of consider applying': 581685, 'consider applying at': 194957, 'applying at your': 82631, 'grocery store they': 365855, 'store they need': 810673, 'they need the': 882762, 'need the help': 555748, 'unveiled': 944014, 'cole ha': 185862, 'told shopper': 923678, 'to pack': 911344, 'pack their': 633164, 'own grocery': 632029, 'giant unveiled': 349885, 'unveiled new': 944015, 'rule aimed': 727178, 'keeping shopper': 472551, 'shopper and': 761356, 'and staff': 72188, 'cole ha told': 185863, 'ha told shopper': 372340, 'told shopper to': 923680, 'shopper to pack': 761771, 'to pack their': 911348, 'pack their own': 633165, 'their own grocery': 874179, 'own grocery to': 632032, 'grocery to limit': 366054, 'the supermarket giant': 868609, 'supermarket giant unveiled': 820517, 'giant unveiled new': 349886, 'unveiled new rule': 944016, 'new rule aimed': 559518, 'rule aimed at': 727179, 'aimed at keeping': 39571, 'at keeping shopper': 99363, 'keeping shopper and': 472552, 'shopper and staff': 761372, 'and staff safe': 72198, 'safe in store': 729769, 'behavior threshold impact': 124249, 'differentiate': 242143, 'stock we': 803155, 'course follow': 211862, 'follow government': 312393, 'sensible that': 750663, 'not live': 570436, 'in police': 426822, 'police state': 663208, 'implement the': 418432, 'law and': 482205, 'only the': 611257, 'law they': 482419, 'to differentiate': 904289, 'differentiate between': 242144, 'between guidance': 128791, 'guidance and': 368203, 'and rule': 70626, 'from supermarket if': 337487, 'supermarket if it': 820830, 'if it in': 414311, 'it in stock': 458746, 'in stock we': 428341, 'stock we should': 803160, 'we should of': 973284, 'should of course': 766283, 'of course follow': 582050, 'course follow government': 211863, 'follow government advice': 312394, 'advice and be': 33303, 'and be sensible': 58766, 'be sensible that': 117085, 'sensible that being': 750664, 'being said we': 125716, 'said we do': 731564, 'do not live': 249778, 'not live in': 570437, 'live in police': 495880, 'in police state': 426824, 'police state they': 663209, 'state they are': 795999, 'they are there': 881432, 'are there to': 90963, 'there to implement': 879187, 'to implement the': 908180, 'implement the law': 418436, 'the law and': 859180, 'law and only': 482211, 'and only the': 68151, 'only the law': 611269, 'the law they': 859195, 'law they need': 482420, 'need to differentiate': 555904, 'to differentiate between': 904290, 'differentiate between guidance': 242145, 'between guidance and': 128792, 'guidance and rule': 368206, 'closethemalls': 183556, 'anyone currently': 80248, 'currently shopping': 221671, 'at department': 98422, 'you realize': 1020827, 'supporting company': 827117, 'not care': 568690, 'it employee': 457796, 'employee closethemalls': 273723, 'to anyone currently': 900622, 'anyone currently shopping': 80249, 'currently shopping at': 221672, 'shopping at department': 762091, 'at department store': 98423, 'do you realize': 250667, 'you realize that': 1020829, 'realize that you': 701866, 'you are supporting': 1017249, 'are supporting company': 90662, 'supporting company that': 827118, 'company that doe': 191166, 'doe not care': 251482, 'not care about': 568691, 'care about the': 163806, 'the health and': 857177, 'and safety of': 70751, 'safety of it': 730649, 'of it employee': 585389, 'it employee closethemalls': 457799, 'token': 923473, 'are your': 91888, 'child entitled': 176078, 'meal food': 524143, 'food voucher': 317440, 'voucher released': 960662, 'released how': 709043, 'get 15': 346463, '15 supermarket': 3836, 'supermarket token': 823490, 'token for': 923474, 'child please': 176174, 'please read': 660351, 'are your child': 91891, 'your child entitled': 1023201, 'child entitled to': 176079, 'entitled to free': 278833, 'to free school': 906238, 'school meal food': 741856, 'meal food voucher': 524144, 'food voucher released': 317441, 'voucher released how': 960663, 'released how to': 709044, 'how to get': 409026, 'to get 15': 906400, 'get 15 supermarket': 346465, '15 supermarket token': 3837, 'supermarket token for': 823491, 'token for your': 923475, 'for your child': 328129, 'your child please': 1023205, 'child please read': 176175, 'doe affect': 251320, 'affect safety': 34219, 'water via': 969241, 'via water': 956363, 'how doe affect': 407735, 'doe affect safety': 251321, 'affect safety of': 34220, 'drinking water via': 258948, 'water via water': 969242, 'blighty': 132673, 'mauritius': 520724, 'beautiful': 118665, 'paradisal': 641306, 'paradise': 641309, 'in blighty': 420876, 'blighty and': 132674, 'and wow': 75938, 'wow how': 1012566, 'how thing': 408938, 'thing have': 884399, 'changed mauritius': 172506, 'mauritius wa': 520727, 'wa amazing': 961517, 'amazing beautiful': 50651, 'beautiful paradisal': 118701, 'paradisal bubble': 641307, 'bubble away': 141584, 'the reality': 865256, 'reality of': 701767, '19 empty': 6775, 'all social': 44377, 'social plan': 779912, 'plan on': 658190, 'hold for': 399926, 'it gardening': 458200, 'gardening running': 343652, 'running reading': 728041, 'reading cooking': 700747, 'cooking and': 202842, 'and work': 75844, 'going forward': 355155, 'forward paradise': 329999, 'back in blighty': 107081, 'in blighty and': 420877, 'blighty and wow': 132675, 'and wow how': 75939, 'wow how thing': 1012567, 'how thing have': 408940, 'thing have changed': 884401, 'have changed mauritius': 379939, 'changed mauritius wa': 172507, 'mauritius wa amazing': 520728, 'wa amazing beautiful': 961518, 'amazing beautiful paradisal': 50652, 'beautiful paradisal bubble': 118702, 'paradisal bubble away': 641308, 'bubble away from': 141585, 'from the reality': 337850, 'the reality of': 865261, 'reality of covid': 701770, 'covid 19 empty': 213020, '19 empty supermarket': 6777, 'shelf and all': 756718, 'and all social': 57891, 'all social plan': 44381, 'social plan on': 779913, 'plan on hold': 658194, 'on hold for': 601342, 'hold for now': 399929, 'for now so': 323982, 'now so it': 575849, 'so it gardening': 777462, 'it gardening running': 458201, 'gardening running reading': 343653, 'running reading cooking': 728042, 'reading cooking and': 700748, 'cooking and work': 202846, 'and work going': 75854, 'work going forward': 1005216, 'going forward paradise': 355162, 'mentality': 528702, 'casually': 166801, 'jolly': 467211, 'the mentality': 860483, 'mentality of': 528711, 'people clearly': 647481, 'clearly in': 181522, 'risk or': 723798, 'or vulnerable': 617694, 'vulnerable category': 960902, 'category casually': 167168, 'casually walking': 166808, 'with someone': 1000874, 'else like': 271782, 'it jolly': 459205, 'jolly what': 467217, 'what don': 981382, 'don you': 254088, 'understand about': 940582, 'about stay': 26249, 'fuck at': 339529, 'home stayhomesavelives': 402132, 'don understand the': 254010, 'understand the mentality': 940766, 'the mentality of': 860484, 'mentality of people': 528712, 'of people clearly': 587886, 'people clearly in': 647482, 'clearly in the': 181523, 'high risk or': 395367, 'risk or vulnerable': 723804, 'or vulnerable category': 617698, 'vulnerable category casually': 960905, 'category casually walking': 167169, 'casually walking around': 166809, 'supermarket with someone': 823938, 'with someone else': 1000877, 'someone else like': 784450, 'else like it': 271783, 'like it jolly': 490544, 'it jolly what': 459207, 'jolly what don': 467218, 'what don you': 981387, 'don you understand': 254093, 'you understand about': 1021961, 'understand about stay': 940584, 'about stay the': 26251, 'stay the fuck': 797345, 'the fuck at': 855957, 'fuck at home': 339530, 'at home stayhomesavelives': 99120, 'inquire': 438996, 'sheltered': 757967, 'needed immediate': 556398, 'immediate work': 417044, 'work think': 1005849, 'think one': 885471, 'the 1st': 847968, '1st thing': 12811, 'thing inquire': 884452, 'inquire about': 438997, 'driving for': 259927, 'for amazon': 319229, 'amazon or': 51059, 'pharmacy which': 654552, 'which do': 985825, 'not typically': 572302, 'typically have': 937657, 'have delivery': 380226, 'service but': 752187, 'but are': 145206, 'are critical': 85626, 'critical for': 218561, 'the deeply': 853024, 'deeply sheltered': 231995, 'sheltered unemployment': 757970, 'if needed immediate': 414461, 'needed immediate work': 556400, 'immediate work think': 417045, 'work think one': 1005850, 'think one of': 885472, 'of the 1st': 590762, 'the 1st thing': 847977, '1st thing inquire': 12812, 'thing inquire about': 884453, 'inquire about is': 438998, 'about is driving': 25551, 'is driving for': 447384, 'driving for amazon': 259928, 'for amazon or': 319230, 'amazon or one': 51062, 'or pharmacy which': 616592, 'pharmacy which do': 654554, 'which do not': 985826, 'do not typically': 249878, 'not typically have': 572303, 'typically have delivery': 937658, 'have delivery service': 380229, 'delivery service but': 234428, 'service but are': 752188, 'but are critical': 145211, 'are critical for': 85627, 'critical for the': 218564, 'for the deeply': 326374, 'the deeply sheltered': 853025, 'deeply sheltered unemployment': 231996, 'interaction': 441228, 'locking': 500516, 'shopping walking': 764337, 'walking dog': 965047, 'dog avoiding': 252041, 'avoiding interaction': 105465, 'interaction other': 441258, 'dog and': 252030, 'my last': 548975, 'last contact': 480154, 'awhile with': 106270, 'with good': 998637, 'good friend': 357106, 'friend for': 333604, 'for his': 322293, 'his birthday': 397246, 'birthday haven': 131434, 'haven seen': 383879, 'seen my': 747145, 'daughter lately': 226884, 'lately who': 480993, 'doing her': 252442, 'her college': 391951, 'college class': 186605, 'class online': 180232, 'online locking': 608504, 'locking it': 500517, 'it down': 457687, 'grocery shopping walking': 365104, 'shopping walking dog': 764338, 'walking dog avoiding': 965049, 'dog avoiding interaction': 252042, 'avoiding interaction other': 105466, 'interaction other people': 441259, 'other people walking': 620695, 'people walking dog': 650129, 'walking dog and': 965048, 'dog and my': 252034, 'and my last': 67375, 'my last contact': 548976, 'last contact for': 480155, 'contact for awhile': 200078, 'for awhile with': 319554, 'awhile with good': 106271, 'with good friend': 998640, 'good friend for': 357109, 'friend for his': 333607, 'for his birthday': 322296, 'his birthday haven': 397247, 'birthday haven seen': 131435, 'haven seen my': 383886, 'seen my daughter': 747146, 'my daughter lately': 547932, 'daughter lately who': 226885, 'lately who is': 480994, 'is doing her': 447277, 'doing her college': 252443, 'her college class': 391952, 'college class online': 186606, 'class online locking': 180234, 'online locking it': 608505, 'locking it down': 500518, 'batmeat': 112707, 'only batmeat': 610143, 'batmeat left': 112708, 'shelf 19': 756672, 'only batmeat left': 610144, 'batmeat left on': 112709, 'supermarket shelf 19': 822417, 'oversold': 631528, 'retracement': 719735, '2800': 16423, 'trading usually': 928951, 'usually in': 951126, 'these type': 880906, 'market you': 517401, 'see rally': 745624, 'rally to': 696288, 'work off': 1005524, 'the weekly': 871342, 'weekly oversold': 977522, 'oversold price': 631540, 'and pessimism': 68939, 'pessimism before': 653313, 'next leg': 561424, 'leg down': 485806, 'down most': 256966, 'most time': 542816, 'the 50': 848135, '50 percent': 19812, 'percent retracement': 651174, 'retracement is': 719736, 'good target': 357814, 'target think': 834516, 'see 2800': 744864, '2800 before': 16424, 'before 200': 122592, 'trading usually in': 928952, 'usually in these': 951127, 'in these type': 429874, 'these type of': 880907, 'type of market': 937567, 'of market you': 586240, 'market you see': 517403, 'you see rally': 1021062, 'see rally to': 745625, 'rally to work': 696290, 'to work off': 918758, 'work off the': 1005525, 'off the weekly': 594283, 'the weekly oversold': 871347, 'weekly oversold price': 977523, 'oversold price and': 631541, 'price and pessimism': 672496, 'and pessimism before': 68940, 'pessimism before the': 653314, 'before the next': 123176, 'the next leg': 861674, 'next leg down': 561425, 'leg down most': 485807, 'down most time': 256968, 'most time the': 542817, 'time the 50': 897842, 'the 50 percent': 848138, '50 percent retracement': 19815, 'percent retracement is': 651175, 'retracement is good': 719737, 'is good target': 448152, 'good target think': 357815, 'target think we': 834517, 'think we see': 885771, 'we see 2800': 973154, 'see 2800 before': 744865, '2800 before 200': 16425, 'this quick': 889790, 'quick survey': 694390, 'survey on': 828915, 'on telehealth': 603894, 'telehealth we': 836767, 'to better': 901783, 'better understand': 128584, 'understand consumer': 940616, 'perception trump': 651252, 'trump stayhome': 933865, 'at this quick': 101251, 'this quick survey': 889791, 'quick survey on': 694391, 'survey on telehealth': 828919, 'on telehealth we': 603895, 'telehealth we are': 836768, 'we are doing': 970531, 'doing to better': 252787, 'to better understand': 901791, 'better understand consumer': 128585, 'understand consumer perception': 940621, 'consumer perception trump': 198355, 'perception trump stayhome': 651253, 'dreaded': 258568, 'cbdd': 168337, 'new hand': 558850, 'just released': 469597, 'released earlier': 709034, 'week response': 976814, 'the dreaded': 853678, 'dreaded cbdd': 258571, 'out our new': 626983, 'our new hand': 624033, 'new hand sanitizer': 558851, 'sanitizer and we': 734456, 'and we just': 75299, 'we just released': 972120, 'just released earlier': 469598, 'released earlier this': 709035, 'this week response': 891259, 'week response to': 976816, 'response to aid': 715825, 'aid in the': 39408, 'against the dreaded': 37655, 'the dreaded cbdd': 853680, 'least some': 484630, 'some supermarket': 784001, 'offered week': 594986, 'week paid': 976719, 'leave if': 484832, 'call in': 155937, 'in over': 426374, 'at least some': 99546, 'least some supermarket': 484634, 'some supermarket worker': 784012, 'being offered week': 125482, 'offered week paid': 594987, 'week paid sick': 976721, 'sick leave if': 768497, 'leave if they': 484833, 'they have to': 882396, 'have to call': 383173, 'to call in': 902380, 'call in over': 155940, 'in over covid': 426377, 'lee': 485312, 'tennessee': 837945, 'gov lee': 359627, 'lee say': 485325, 'say tennessee': 739212, 'tennessee ha': 837952, 'ha strong': 372088, 'strong food': 814035, 'chain but': 170561, 'but hoarding': 145946, 'hoarding hurt': 399370, 'hurt he': 411580, 'he warns': 385645, 'warns against': 967243, 'against hoarding': 37493, 'gov lee say': 359628, 'lee say tennessee': 485327, 'say tennessee ha': 739213, 'tennessee ha strong': 837953, 'ha strong food': 372089, 'strong food supply': 814036, 'supply chain but': 824921, 'chain but hoarding': 170564, 'but hoarding hurt': 145947, 'hoarding hurt he': 399371, 'hurt he warns': 411582, 'he warns against': 385646, 'warns against hoarding': 967246, 'against hoarding and': 37494, 'hoarding and panic': 399184, 'robbed': 724640, 'burglarized': 142843, 'appalling fear': 81837, 'be robbed': 116901, 'robbed or': 724651, 'or burglarized': 614598, 'burglarized more': 142846, 'often even': 596192, 'food thing': 317183, 'are happening': 87005, 'happening with': 377439, 'london and': 501011, 'and london': 66345, 'london panic': 501147, 'buying doesn': 150198, 'this is appalling': 888178, 'is appalling fear': 445778, 'appalling fear that': 81838, 'fear that people': 301366, 'will be robbed': 992657, 'be robbed or': 116904, 'robbed or burglarized': 724652, 'or burglarized more': 614599, 'burglarized more often': 142847, 'more often even': 539900, 'often even just': 596193, 'even just for': 284264, 'just for food': 468748, 'for food thing': 321642, 'food thing are': 317184, 'thing are happening': 884156, 'are happening with': 87007, 'happening with covid': 377441, '19 in london': 7764, 'in london and': 424874, 'london and london': 501014, 'and london panic': 66346, 'london panic buying': 501148, 'panic buying doesn': 637707, 'buying doesn help': 150199, 'late at': 480854, 'at night': 99879, 'night 00': 562917, '00 and': 64, 'how on': 408427, 'on every': 600615, 'supermarket farmer': 820275, 'market etc': 516342, 'etc woman': 282900, 'woman and': 1003395, 'and men': 66944, 'men like': 528504, 'like them': 491415, 'them will': 876633, 'work non': 1005497, 'non stop': 566504, 'replenish every': 711640, 'every shelve': 286162, 'shelve next': 758038, 'staff across': 792076, 'world people': 1009886, 'be hero': 115231, 'hero to': 394132, 'keep humanity': 471587, 'humanity fed': 410723, 'fed thank': 301900, 'late at night': 480856, 'at night 00': 99880, 'night 00 and': 562918, '00 and is': 66, 'and is amazing': 65389, 'amazing how on': 50708, 'how on every': 408429, 'on every supermarket': 600622, 'every supermarket farmer': 286249, 'supermarket farmer market': 820276, 'farmer market etc': 299446, 'market etc woman': 516345, 'etc woman and': 282901, 'woman and men': 1003399, 'and men like': 66945, 'men like them': 528505, 'like them will': 491419, 'them will work': 876641, 'will work non': 995367, 'work non stop': 1005498, 'non stop to': 566507, 'stop to replenish': 805224, 'to replenish every': 913256, 'replenish every shelve': 711641, 'every shelve next': 286163, 'shelve next to': 758039, 'next to the': 561632, 'to the medical': 916877, 'medical staff across': 526383, 'staff across the': 792078, 'the world people': 871935, 'world people like': 1009888, 'people like them': 648650, 'like them are': 491417, 'them are and': 875415, 'are and will': 84554, 'will be hero': 992497, 'be hero to': 115239, 'hero to keep': 394133, 'to keep humanity': 908803, 'keep humanity fed': 471588, 'humanity fed thank': 410724, 'fed thank them': 301901, 'fca': 300720, 'specialty': 788163, 'fletcher': 310334, 'george': 345988, 'silber': 769693, '19 new': 8767, 'new fca': 558729, 'fca guidance': 300723, 'guidance on': 368261, 'credit and': 216304, 'the implication': 857966, 'implication for': 418547, 'for ab': 318971, 'ab and': 24166, 'and specialty': 72072, 'specialty finance': 788166, 'finance read': 306259, 'by richard': 153814, 'richard fletcher': 721297, 'fletcher and': 310335, 'and george': 63548, 'george silber': 346017, 'covid 19 new': 213472, '19 new fca': 8769, 'new fca guidance': 558730, 'fca guidance on': 300724, 'guidance on consumer': 368262, 'consumer credit and': 197015, 'credit and the': 216310, 'and the implication': 73418, 'the implication for': 857968, 'implication for ab': 418548, 'for ab and': 318972, 'ab and specialty': 24168, 'and specialty finance': 72073, 'specialty finance read': 788167, 'finance read our': 306260, 'latest article by': 481215, 'article by richard': 94285, 'by richard fletcher': 153815, 'richard fletcher and': 721298, 'fletcher and george': 310336, 'and george silber': 63549, 'banner': 110605, 'store under': 810991, 'the metro': 860549, 'metro banner': 529904, 'banner are': 110606, 'reducing store': 706318, 'hour starting': 405950, 'starting thursday': 795008, 'thursday amid': 895344, 'grocery store under': 365897, 'store under the': 810992, 'under the metro': 940320, 'the metro banner': 860551, 'metro banner are': 529905, 'banner are reducing': 110607, 'are reducing store': 89531, 'reducing store hour': 706319, 'store hour starting': 808209, 'hour starting thursday': 405951, 'starting thursday amid': 795009, 'thursday amid the': 895345, 'abundancemindset': 27595, 'the budget': 850082, 'budget to': 141824, 'do online': 249934, 'in home': 423778, 'quarantine suggest': 692594, 'suggest that': 817535, 'you use': 1021997, 'use that': 949640, 'that money': 845207, 'to invest': 908483, 'your future': 1024018, 'future instead': 342363, 'instead grow': 440193, 'grow your': 367086, 'your asset': 1022861, 'asset not': 96449, 'not your': 572624, 'your bill': 1022967, 'bill invest': 130601, 'invest abundancemindset': 443745, 'those who have': 892639, 'who have the': 988963, 'have the budget': 382964, 'the budget to': 850084, 'budget to do': 141825, 'to do online': 904538, 'do online shopping': 249937, 'shopping while in': 764396, 'while in home': 986944, 'in home quarantine': 423787, 'home quarantine suggest': 401936, 'quarantine suggest that': 692595, 'suggest that you': 817540, 'that you use': 847749, 'you use that': 1022005, 'use that money': 949645, 'that money to': 845212, 'money to invest': 537106, 'to invest in': 908485, 'invest in your': 443768, 'in your future': 431083, 'your future instead': 1024019, 'future instead grow': 342364, 'instead grow your': 440194, 'grow your asset': 367087, 'your asset not': 1022862, 'asset not your': 96450, 'not your bill': 572627, 'your bill invest': 1022969, 'bill invest abundancemindset': 130602, 'unreal': 943287, 'cbob': 168359, '85': 22907, '28': 16369, 'unreal price': 943298, 'price chicago': 673125, 'chicago benchmark': 175648, 'benchmark wholesale': 126854, 'wholesale cbob': 990427, 'cbob 85': 168360, '85 gasoline': 22918, 'gasoline plunged': 344249, 'plunged yesterday': 661510, 'to 15': 899500, '15 per': 3817, 'per gallon': 650838, 'gallon the': 343063, 'least 28': 484352, '28 year': 16415, 'year chart': 1014463, 'chart from': 173830, 'unreal price chicago': 943299, 'price chicago benchmark': 673126, 'chicago benchmark wholesale': 175649, 'benchmark wholesale cbob': 126855, 'wholesale cbob 85': 990428, 'cbob 85 gasoline': 168361, '85 gasoline plunged': 22919, 'gasoline plunged yesterday': 344250, 'plunged yesterday to': 661511, 'yesterday to 15': 1015901, 'to 15 per': 899502, '15 per gallon': 3818, 'per gallon the': 650858, 'gallon the lowest': 343064, 'the lowest price': 859819, 'lowest price in': 506209, 'price in at': 674664, 'in at least': 420552, 'at least 28': 99448, 'least 28 year': 484353, '28 year chart': 16416, 'year chart from': 1014464, 'mypov at': 550785, 'on hiring': 601314, 'hiring big': 397074, 'big retailer': 129963, 'hire 500': 396987, '500 00': 19926, 'demand surge': 236299, 'surge for': 828166, 'and staple': 72229, 'staple spread': 793987, 'spread small': 790794, 'business can': 143485, 'can compete': 157946, 'compete via': 191600, 'mypov at least': 550786, 'least some good': 484631, 'some good news': 782970, 'good news on': 357454, 'news on hiring': 560664, 'on hiring big': 601315, 'hiring big retailer': 397075, 'big retailer are': 129964, 'retailer are out': 719013, 'are out to': 88891, 'out to hire': 627652, 'to hire 500': 907791, 'hire 500 00': 396988, '500 00 people': 19933, '00 people to': 420, 'people to handle': 649906, 'handle the demand': 376268, 'the demand surge': 853112, 'demand surge for': 236306, 'surge for food': 828169, 'food and staple': 313343, 'and staple spread': 72232, 'staple spread small': 793988, 'spread small business': 790795, 'small business can': 774843, 'business can compete': 143489, 'can compete via': 157947, 'psychologist': 687528, 'yarrow': 1014176, 'psyche': 687499, 'consumer psychologist': 198588, 'psychologist detail': 687533, 'detail what': 239275, 'what business': 981150, 'know during': 476358, '19 kit': 8248, 'kit yarrow': 475678, 'yarrow discus': 1014177, 'nation psyche': 552293, 'psyche during': 687500, 'what critical': 981286, 'to reaching': 912811, 'reaching consumer': 700081, 'consumer navigating': 198181, 'navigating the': 553127, 'pandemic today': 636799, 'consumer psychologist detail': 198590, 'psychologist detail what': 687534, 'detail what business': 239276, 'what business need': 981154, 'to know during': 908977, 'know during covid': 476359, 'covid 19 kit': 213324, '19 kit yarrow': 8249, 'kit yarrow discus': 475679, 'yarrow discus the': 1014178, 'discus the nation': 244925, 'the nation psyche': 861257, 'nation psyche during': 552294, 'psyche during crisis': 687501, 'during crisis and': 262552, 'crisis and what': 217060, 'and what critical': 75458, 'what critical to': 981287, 'critical to reaching': 218711, 'to reaching consumer': 912812, 'reaching consumer navigating': 700082, 'consumer navigating the': 198182, 'navigating the pandemic': 553130, 'the pandemic today': 863131, 'so angry': 776512, 'angry the': 76500, 'everywhere is': 288225, 'getting shut': 349267, 'down due': 256704, '19 risk': 10242, 'but supermarket': 147215, 'open can': 612143, 'to catching': 902512, 'catching the': 167111, 'no adequate': 563588, 'adequate safety': 32178, 'measure are': 525112, 'being put': 125618, 'place for': 657439, 'so angry the': 776516, 'angry the fact': 76501, 'fact that everywhere': 295798, 'that everywhere is': 843783, 'everywhere is getting': 288226, 'is getting shut': 448042, 'getting shut down': 349268, 'shut down due': 767819, 'down due to': 256705, 'covid 19 risk': 213721, '19 risk but': 10243, 'risk but supermarket': 723429, 'but supermarket are': 147216, 'supermarket are still': 819185, 'still open can': 800955, 'open can we': 612144, 'we do something': 971350, 'something about this': 784835, 'about this supermarket': 26665, 'this supermarket staff': 890438, 'staff are at': 792177, 'high risk to': 395374, 'risk to catching': 723951, 'to catching the': 902516, 'catching the virus': 167121, 'virus and no': 957935, 'and no adequate': 67600, 'no adequate safety': 563590, 'adequate safety measure': 32179, 'safety measure are': 730620, 'measure are being': 525113, 'are being put': 84901, 'being put in': 125621, 'put in place': 690619, 'in place for': 426734, 'place for the': 657449, 'for the employee': 326409, 'tender': 837897, 'rfp': 720862, 'disinfector': 245930, 'ethericoil': 283033, 'ether': 283020, 'ethylalcohol': 283137, 'hygienedevice': 412200, 'hygienekit': 412203, 'hygienicbag': 412242, 'rectifiedspirit': 705510, 'sanitization': 734136, 'global tender': 352249, 'tender rfp': 837908, 'rfp for': 720863, 'disinfectant sanitizer': 245745, '19 find': 7008, 'find now': 307103, 'now disinfectant': 574536, 'disinfectant disinfector': 245645, 'disinfector ethericoil': 245931, 'ethericoil ether': 283034, 'ether ethylalcohol': 283021, 'ethylalcohol hygienedevice': 283138, 'hygienedevice hygienekit': 412201, 'hygienekit hygienicbag': 412204, 'hygienicbag rectifiedspirit': 412243, 'rectifiedspirit sanitization': 705511, 'sanitization sanitizer': 734149, 'sanitizer 19': 734280, 'global tender rfp': 352250, 'tender rfp for': 837909, 'rfp for disinfectant': 720864, 'for disinfectant sanitizer': 320753, 'disinfectant sanitizer to': 245750, 'sanitizer to fight': 735921, 'covid 19 find': 213098, '19 find now': 7011, 'find now disinfectant': 307104, 'now disinfectant disinfector': 574537, 'disinfectant disinfector ethericoil': 245646, 'disinfector ethericoil ether': 245932, 'ethericoil ether ethylalcohol': 283035, 'ether ethylalcohol hygienedevice': 283022, 'ethylalcohol hygienedevice hygienekit': 283139, 'hygienedevice hygienekit hygienicbag': 412202, 'hygienekit hygienicbag rectifiedspirit': 412205, 'hygienicbag rectifiedspirit sanitization': 412244, 'rectifiedspirit sanitization sanitizer': 705512, 'sanitization sanitizer 19': 734150, 'snyders': 776442, 'centurytowers': 169622, 'shoplocalkcmo': 761244, 'snyderssupermarket': 776445, 'pickupanddelivery': 656056, 'kcmo': 471201, 'thanks snyders': 842179, 'snyders supermarket': 776443, 'and centurytowers': 59680, 'centurytowers for': 169623, 'for allowing': 319204, 'allowing me': 46304, 'what need': 981902, 'need before': 554528, 'easter shoplocalkcmo': 265490, 'shoplocalkcmo snyderssupermarket': 761245, 'snyderssupermarket pickupanddelivery': 776446, 'pickupanddelivery stayhomesavelives': 656057, 'stayhomesavelives kcmo': 798403, 'kcmo snyders': 471202, 'thanks snyders supermarket': 842180, 'snyders supermarket and': 776444, 'supermarket and centurytowers': 818956, 'and centurytowers for': 59681, 'centurytowers for allowing': 169624, 'for allowing me': 319205, 'allowing me to': 46306, 'me to get': 523753, 'to get what': 906644, 'get what need': 348621, 'what need before': 981903, 'need before easter': 554529, 'before easter shoplocalkcmo': 122759, 'easter shoplocalkcmo snyderssupermarket': 265491, 'shoplocalkcmo snyderssupermarket pickupanddelivery': 761246, 'snyderssupermarket pickupanddelivery stayhomesavelives': 776447, 'pickupanddelivery stayhomesavelives kcmo': 656058, 'stayhomesavelives kcmo snyders': 798404, 'kcmo snyders supermarket': 471203, 'stayactive': 797416, 'stayhealthy': 797889, 'golflife': 356158, 'elk': 271534, 'grove': 366991, 'going and': 355008, 'and exclusive': 62461, 'exclusive nationwide': 289680, 'nationwide course': 552722, 'course and': 211834, 'research stayactive': 713847, 'stayactive stayhealthy': 797417, 'stayhealthy golflife': 797895, 'golflife elk': 356159, 'elk grove': 271535, 'grove california': 366992, 'out the link': 627385, 'below for on': 126647, 'for on going': 324065, 'on going and': 601128, 'going and exclusive': 355009, 'and exclusive nationwide': 62462, 'exclusive nationwide course': 289681, 'nationwide course and': 552723, 'course and consumer': 211835, 'and consumer research': 60423, 'consumer research stayactive': 198759, 'research stayactive stayhealthy': 713848, 'stayactive stayhealthy golflife': 797418, 'stayhealthy golflife elk': 797896, 'golflife elk grove': 356160, 'elk grove california': 271536, 'flashing': 310044, 'clarification': 180060, 'buying started': 151074, 'started the': 794849, 'moment news': 536002, 'news channel': 560309, 'channel began': 172863, 'began flashing': 123383, 'flashing chief': 310045, 'chief secretary': 175971, 'secretary initial': 743960, 'initial statement': 438556, 'statement it': 796185, 'been pure': 121746, 'pure chaos': 689965, 'chaos since': 173057, 'since then': 770920, 'then despite': 877118, 'despite clarification': 238693, 'panic buying started': 637898, 'buying started the': 151076, 'started the moment': 794851, 'the moment news': 860771, 'moment news channel': 536003, 'news channel began': 560310, 'channel began flashing': 172864, 'began flashing chief': 123384, 'flashing chief secretary': 310046, 'chief secretary initial': 175973, 'secretary initial statement': 743961, 'initial statement it': 438557, 'statement it ha': 796186, 'ha been pure': 369884, 'been pure chaos': 121747, 'pure chaos since': 689966, 'chaos since then': 173058, 'since then despite': 770921, 'then despite clarification': 877119, 'is selfish': 451740, 'selfish have': 748116, 'have consideration': 380076, 'others especially': 621380, 'especially those': 280636, 'have disability': 380289, 'disability panicbuying': 243838, 'panicbuying 19': 638891, 'this ha to': 887817, 'buying is selfish': 150579, 'is selfish have': 451744, 'selfish have consideration': 748117, 'have consideration for': 380077, 'for others especially': 324190, 'others especially those': 621382, 'especially those who': 280639, 'who are elderly': 988135, 'are elderly and': 86103, 'elderly and have': 270572, 'and have disability': 64233, 'have disability panicbuying': 380290, 'disability panicbuying 19': 243839, 'seo': 751039, 'sem': 749579, 'smo': 775845, 'smm': 775829, 'websitedesign': 975505, 'websitedevelopment': 975513, 'mobileappdevelopment': 535042, 'economy ha': 267915, 'ha hurt': 370897, 'hurt investor': 411587, 'investor sentiment': 444205, 'sentiment and': 750891, 'and brought': 59223, 'brought down': 141144, 'down stock': 257212, 'major market': 509385, 'market seo': 517039, 'seo sem': 751050, 'sem smo': 749584, 'smo smm': 775847, 'smm websitedesign': 775837, 'websitedesign websitedevelopment': 975511, 'websitedevelopment mobileappdevelopment': 975514, 'surrounding the impact': 828771, 'global economy ha': 351898, 'economy ha hurt': 267921, 'ha hurt investor': 370898, 'hurt investor sentiment': 411588, 'investor sentiment and': 444206, 'sentiment and brought': 750895, 'and brought down': 59224, 'brought down stock': 141145, 'down stock price': 257215, 'stock price in': 802725, 'price in major': 674706, 'in major market': 424988, 'major market seo': 509389, 'market seo sem': 517040, 'seo sem smo': 751052, 'sem smo smm': 749585, 'smo smm websitedesign': 775848, 'smm websitedesign websitedevelopment': 775838, 'websitedesign websitedevelopment mobileappdevelopment': 975512, 'day mayhem': 227972, 'mayhem at': 521907, 'the till': 869553, 'till tesco': 896097, 'shut after': 767779, 'after dozen': 35579, 'mother day mayhem': 543084, 'day mayhem at': 227973, 'mayhem at the': 521908, 'at the till': 101125, 'the till tesco': 869563, 'till tesco supermarket': 896098, 'tesco supermarket is': 838823, 'supermarket is forced': 821089, 'forced to shut': 328656, 'to shut after': 914601, 'shut after dozen': 767780, 'after dozen of': 35580, 'dozen of via': 257900, 'tirelessly': 899068, 'uninterrupted': 941848, 'grocery retail': 364894, 'stock clerk': 801986, 'clerk who': 181823, 'working tirelessly': 1008972, 'tirelessly to': 899088, 'amp supply': 54591, 'is uninterrupted': 453503, 'uninterrupted please': 941855, 'person when': 652712, 'see them': 745911, 'to all grocery': 900252, 'all grocery retail': 43010, 'grocery retail and': 364895, 'retail and stock': 717837, 'and stock clerk': 72403, 'stock clerk who': 801993, 'clerk who are': 181824, 'are working tirelessly': 91723, 'working tirelessly to': 1008977, 'tirelessly to ensure': 899089, 'ensure that our': 278064, 'that our food': 845580, 'our food amp': 623099, 'food amp supply': 313149, 'amp supply chain': 54593, 'chain is uninterrupted': 170851, 'is uninterrupted please': 453504, 'uninterrupted please don': 941856, 'please don forget': 659912, 'forget to say': 329331, 'you to the': 1021848, 'to the worker': 917200, 'the worker in': 871752, 'worker in person': 1007193, 'in person when': 426646, 'person when you': 652713, 'you see them': 1021073, 'see them 19': 745912, 'so ha': 777222, 'ha raised': 371624, 'raised the': 696043, 'their cleaning': 872788, 'pandemic speaks': 636520, 'speaks volume': 787810, 'their character': 872760, 'character company': 173152, 'company price': 190971, 'gouging is': 359360, 'just shameful': 469772, 'shameful pricegouging': 754698, 'so ha raised': 777225, 'ha raised the': 371630, 'raised the price': 696044, 'price of all': 675402, 'of all their': 579983, 'all their cleaning': 44994, 'their cleaning supply': 872789, 'cleaning supply during': 181076, 'supply during this': 825197, 'this pandemic speaks': 889426, 'pandemic speaks volume': 636521, 'speaks volume of': 787811, 'volume of their': 960160, 'of their character': 591647, 'their character company': 872761, 'character company price': 173153, 'company price gouging': 190972, 'price gouging is': 674291, 'gouging is just': 359363, 'is just shameful': 449147, 'just shameful pricegouging': 469773, 'tdsb': 835317, 'the tdsb': 869187, 'tdsb continues': 835318, 'can to': 160001, 'support ontario': 826715, 'ontario effort': 611589, '19 today': 11466, 'are shipping': 90040, 'shipping another': 758824, 'another 10': 77465, '00 mask': 316, 'the ministry': 860660, 'government amp': 359855, 'amp consumer': 53561, 'our province': 624500, 'update the tdsb': 947258, 'the tdsb continues': 869188, 'tdsb continues to': 835319, 'continues to do': 201469, 'to do everything': 904502, 'do everything we': 249271, 'everything we can': 288087, 'we can to': 971032, 'can to support': 160017, 'to support ontario': 915953, 'support ontario effort': 826716, 'ontario effort to': 611590, 'effort to minimize': 269633, 'covid 19 today': 213959, '19 today we': 11473, 'today we are': 920470, 'we are shipping': 970709, 'are shipping another': 90041, 'shipping another 10': 758825, 'another 10 00': 77466, '10 00 mask': 1203, '00 mask to': 322, 'mask to the': 519428, 'to the ministry': 916882, 'the ministry of': 860663, 'ministry of government': 533546, 'of government amp': 584268, 'government amp consumer': 359856, 'amp consumer service': 53572, 'consumer service to': 198952, 'service to help': 752979, 'to help our': 907579, 'help our province': 390237, '1200': 3019, 'ppv': 668404, 'ifollow': 415641, 'fhd': 304350, '07939252948': 1062, 'iptv': 444625, 'firestick': 308263, 'magbox': 508353, 'ipeetv': 444548, 'premium offer': 669964, 'offer get': 594637, 'for deal': 320597, 'deal over': 229464, '300 channel': 17290, 'channel over': 172915, 'over 1200': 629780, '1200 movie': 3028, 'movie and': 543986, 'and series': 71283, 'series free': 751253, 'trial available': 931633, 'available sport': 104597, 'sport movie': 789949, 'movie music': 544024, 'music ppv': 546320, 'ppv event': 668405, 'event kid': 285010, 'kid uk': 474149, 'uk usa': 938848, 'usa ifollow': 948665, 'ifollow catch': 415642, 'up fhd': 944855, 'fhd whatsapp': 304351, 'whatsapp 07939252948': 982865, '07939252948 iptv': 1063, 'iptv firestick': 444626, 'firestick magbox': 308264, 'magbox ipeetv': 508354, 'premium offer get': 669965, 'offer get in': 594638, 'touch for deal': 926481, 'for deal over': 320599, 'deal over 300': 229465, 'over 300 channel': 629825, '300 channel over': 17291, 'channel over 1200': 172916, 'over 1200 movie': 629781, '1200 movie and': 3029, 'movie and series': 543987, 'and series free': 71284, 'series free trial': 751254, 'free trial available': 332275, 'trial available sport': 931634, 'available sport movie': 104598, 'sport movie music': 789950, 'movie music ppv': 544025, 'music ppv event': 546321, 'ppv event kid': 668406, 'event kid uk': 285011, 'kid uk usa': 474150, 'uk usa ifollow': 938851, 'usa ifollow catch': 948666, 'ifollow catch up': 415643, 'catch up fhd': 167049, 'up fhd whatsapp': 944856, 'fhd whatsapp 07939252948': 304352, 'whatsapp 07939252948 iptv': 982866, '07939252948 iptv firestick': 1064, 'iptv firestick magbox': 444627, 'firestick magbox ipeetv': 308265, 'interacted': 441215, 'that use': 847212, 'use most': 949376, 'most had': 542363, 'had worker': 373809, 'worker test': 1007897, 'test positive': 839126, '19 crazy': 6193, 'crazy to': 215458, 'people probably': 649188, 'probably interacted': 679294, 'interacted with': 441216, 'store that use': 810579, 'that use most': 847213, 'use most had': 949377, 'most had worker': 542364, 'had worker test': 373810, 'worker test positive': 1007898, 'test positive for': 839128, 'covid 19 crazy': 212884, '19 crazy to': 6194, 'crazy to think': 215462, 'to think how': 917375, 'how many people': 408279, 'many people probably': 514530, 'people probably interacted': 649189, 'probably interacted with': 679295, 'interacted with that': 441218, 'with that person': 1001178, 'cliamtechange': 181876, 'lesson for': 486471, 'for resilience': 325152, 'resilience or': 714491, 'system very': 831364, 'very important': 955247, 'for dealing': 320600, 'with future': 998592, 'future cliamtechange': 342285, 'cliamtechange other': 181877, 'other shock': 620896, 'shock just': 759468, 'time supply': 897787, 'with sudden': 1001038, 'sudden surge': 817047, 'demand since': 236221, '19 took': 11511, 'took hold': 925254, 'lesson for resilience': 486474, 'for resilience or': 325153, 'resilience or not': 714492, 'or not of': 616307, 'not of food': 570720, 'of food system': 583791, 'food system very': 317057, 'system very important': 831365, 'very important for': 955248, 'important for dealing': 418800, 'for dealing with': 320601, 'dealing with future': 229667, 'with future cliamtechange': 998593, 'future cliamtechange other': 342286, 'cliamtechange other shock': 181878, 'other shock just': 620897, 'shock just in': 759469, 'in time supply': 430088, 'time supply chain': 897788, 'chain struggling to': 171141, 'struggling to cope': 814498, 'cope with sudden': 203358, 'with sudden surge': 1001040, 'sudden surge in': 817048, 'in demand since': 422153, 'demand since covid': 236223, 'covid 19 took': 213966, '19 took hold': 11512, 'losangeles': 503388, 'gunsales': 368794, 'scary gun': 741152, 'sale gone': 732244, 'usa amid': 948585, 'amid due': 52455, 'shortage people': 765170, 'people expect': 647840, 'expect kind': 290665, 'unrest and': 943336, 'why they': 991448, 'on arm': 599464, 'arm and': 92880, 'ammunition too': 52959, 'too losangeles': 924874, 'losangeles gunsales': 503397, 'gunsales gun': 368795, 'scary gun sale': 741153, 'gun sale gone': 368719, 'sale gone up': 732245, 'gone up in': 356422, 'up in usa': 945191, 'in usa amid': 430486, 'usa amid due': 948586, 'amid due to': 52456, 'due to food': 261789, 'to food shortage': 906097, 'food shortage people': 316597, 'shortage people expect': 765171, 'people expect kind': 647841, 'expect kind of': 290666, 'kind of civil': 474880, 'of civil unrest': 581435, 'civil unrest and': 179559, 'unrest and that': 943338, 'and that why': 73221, 'that why they': 847548, 'why they stock': 991461, 'up on arm': 945526, 'on arm and': 599465, 'arm and ammunition': 92881, 'and ammunition too': 58088, 'ammunition too losangeles': 52960, 'too losangeles gunsales': 924875, 'losangeles gunsales gun': 503398, 'commission report': 188885, 'report scam': 712231, 'scam here': 740188, 'here and': 392697, 'follow them': 312549, 'facebook for': 294913, 'fear surrounding covid': 301349, 'trade commission report': 928456, 'commission report scam': 188888, 'report scam here': 712234, 'scam here and': 740189, 'here and follow': 392704, 'and follow them': 63016, 'follow them on': 312550, 'them on facebook': 876087, 'on facebook for': 600702, 'facebook for update': 294917, 'eligibility': 271405, 'been laid': 121433, '19 believe': 5364, 'believe am': 126241, 'am eligible': 50015, 'eligible for': 271416, 'the 80': 848195, '80 self': 22626, 'self employment': 747636, 'employment scheme': 274644, 'scheme wa': 741594, 'wa looking': 962586, 'if take': 414911, 'this part': 889480, 'time job': 897091, 'will this': 995189, 'this affect': 886220, 'affect my': 34187, 'my eligibility': 548080, 'eligibility for': 271406, 'employed scheme': 273490, 'scheme gov': 741569, 'have been laid': 379592, 'been laid off': 121435, 'laid off work': 479035, 'off work due': 594410, 'covid 19 believe': 212693, '19 believe am': 5365, 'believe am eligible': 126242, 'am eligible for': 50016, 'eligible for the': 271427, 'for the 80': 326292, 'the 80 self': 848199, '80 self employment': 22627, 'self employment scheme': 747640, 'employment scheme wa': 274645, 'scheme wa looking': 741596, 'wa looking to': 962593, 'looking to help': 503032, 'help out at': 390245, 'out at local': 625745, 'at local supermarket': 99610, 'local supermarket if': 498540, 'supermarket if take': 820835, 'if take this': 414915, 'take this part': 832713, 'this part time': 889483, 'part time job': 642451, 'time job will': 897093, 'job will this': 466300, 'will this affect': 995190, 'this affect my': 886223, 'affect my eligibility': 34188, 'my eligibility for': 548081, 'eligibility for the': 271407, 'self employed scheme': 747630, 'employed scheme gov': 273491, 'cloud': 184301, 'is cloud': 446618, 'cloud coronavirus': 184302, 'coronavirus lingers': 206232, 'yes we get': 1015596, 'we get it': 971615, 'get it this': 347429, 'it this thing': 461654, 'thing is cloud': 884465, 'is cloud coronavirus': 446619, 'cloud coronavirus lingers': 184303, 'coronavirus lingers in': 206233, 'infant': 436471, 'nobody had': 566012, 'had covid': 372998, 'wa food': 962143, 'were diaper': 979521, 'diaper for': 240359, 'for infant': 322556, 'infant everything': 436478, 'everything wa': 288070, 'wa okay': 962815, 'okay until': 598031, 'until this': 943897, 'nobody had covid': 566013, 'had covid 19': 372999, '19 there wa': 11291, 'there wa food': 879239, 'wa food at': 962145, 'store there were': 810653, 'there were diaper': 879315, 'were diaper for': 979522, 'diaper for infant': 240360, 'for infant everything': 322557, 'infant everything wa': 436479, 'everything wa okay': 288076, 'wa okay until': 962818, 'okay until this': 598032, 'until this happened': 943900, 'steelguru': 799368, 'oilpricecrash': 597649, 'brentcrude': 139359, 'crash coronavirus': 214958, 'spread steelguru': 790806, 'steelguru link': 799369, 'link 19': 493776, '19 oilpricecrash': 8912, 'oilpricecrash brentcrude': 597650, 'brentcrude wti': 139362, 'oil price crash': 597092, 'price crash coronavirus': 673318, 'crash coronavirus covid': 214959, '19 spread steelguru': 10750, 'spread steelguru link': 790807, 'steelguru link 19': 799370, 'link 19 oilpricecrash': 493777, '19 oilpricecrash brentcrude': 8913, 'oilpricecrash brentcrude wti': 597651, 'follow on': 312475, 'woodman for': 1004312, 'for lunch': 323144, 'lunch and': 506704, 'government doing': 360044, 'follow on my': 312478, 'on my wife': 602330, 'to the woodman': 917198, 'the woodman for': 871690, 'woodman for lunch': 1004313, 'for lunch and': 323145, 'lunch and there': 506708, 'are the government': 90836, 'the government doing': 856530, 'government doing to': 360047, 'doing to address': 252785, 'squeo': 791564, 'squeo work': 791565, 'meat department': 525536, 'in michigan': 425285, 'michigan he': 530347, 'he know': 385175, 'know several': 476706, 'several grocery': 753855, 'and one': 68083, 'his area': 397201, 'is concerned': 446725, 'concerned that': 193214, 'that some': 846381, 'some shopper': 783849, 'shopper behavior': 761430, 'is putting': 451155, 'putting people': 691198, 'in unnecessary': 430447, 'unnecessary danger': 942905, 'squeo work in': 791566, 'in the meat': 429351, 'the meat department': 860379, 'meat department of': 525539, 'department of kroger': 237244, 'of kroger supermarket': 585684, 'kroger supermarket in': 477773, 'supermarket in michigan': 820934, 'in michigan he': 425288, 'michigan he know': 530348, 'he know several': 385178, 'know several grocery': 476707, 'several grocery store': 753856, 'store worker who': 811624, 'worker who have': 1008216, 'who have tested': 988962, '19 and one': 5073, 'and one person': 68091, 'one person in': 606862, 'person in his': 652481, 'in his area': 423715, 'his area who': 397202, 'area who ha': 92272, 'who ha died': 988842, 'ha died he': 370379, 'died he is': 241564, 'he is concerned': 385116, 'is concerned that': 446726, 'concerned that some': 193220, 'that some shopper': 846395, 'some shopper behavior': 783851, 'shopper behavior is': 761432, 'behavior is putting': 124103, 'is putting people': 451160, 'putting people in': 691200, 'people in unnecessary': 648447, 'in unnecessary danger': 430448, 'are everyone': 86284, 'everyone politician': 287289, 'politician shop': 663739, 'shop store': 760854, 'chain keep': 170871, 'keep telling': 472014, 'telling to': 837284, 'panic there': 638694, 'stock put': 802772, 'put them': 690888, 'shelf then': 757661, 'all must': 43533, 'must stop': 546918, 'stop telling': 805103, 'telling and': 837187, 'something now': 784987, 'now cov': 574472, 'why are everyone': 990770, 'are everyone politician': 86285, 'everyone politician shop': 287290, 'politician shop store': 663740, 'shop store and': 760855, 'store and supermarket': 806360, 'supermarket chain keep': 819615, 'chain keep telling': 170872, 'keep telling to': 472016, 'telling to not': 837287, 'to not to': 910713, 'to panic there': 911432, 'panic there is': 638695, 'of food stock': 583785, 'food stock put': 316808, 'stock put them': 802773, 'put them on': 690892, 'them on the': 876096, 'the shelf then': 866890, 'shelf then you': 757662, 'then you all': 877778, 'you all must': 1016892, 'all must stop': 43535, 'must stop telling': 546925, 'stop telling and': 805104, 'telling and do': 837188, 'and do something': 61560, 'do something now': 250147, 'something now cov': 784988, 'implied': 418576, 'the their': 869416, 'their leading': 873800, 'leading story': 483742, 'of top': 592311, 'top employee': 925571, 'employee having': 273927, 'having covid': 384016, 'way the': 969931, 'story lead': 812028, 'in heavily': 423620, 'heavily implied': 388581, 'implied supermarket': 418579, 'worker when': 1008177, 'fact corporate': 295703, 'corporate employee': 207273, 'no interaction': 564513, 'interaction in': 441247, 'shame on and': 754620, 'on and for': 599355, 'for the their': 326727, 'the their leading': 869419, 'their leading story': 873801, 'leading story of': 483743, 'story of top': 812078, 'of top employee': 592313, 'top employee having': 925572, 'employee having covid': 273928, 'having covid 19': 384017, '19 the way': 11263, 'the way the': 871194, 'way the story': 969942, 'the story lead': 868178, 'story lead in': 812029, 'lead in heavily': 483286, 'in heavily implied': 423622, 'heavily implied supermarket': 388582, 'implied supermarket worker': 418580, 'supermarket worker when': 824121, 'worker when it': 1008178, 'when it wa': 983656, 'it wa in': 462129, 'wa in fact': 962366, 'in fact corporate': 422758, 'fact corporate employee': 295704, 'corporate employee who': 207274, 'employee who had': 274426, 'who had no': 988885, 'had no interaction': 373334, 'no interaction in': 564514, 'interaction in store': 441249, 'in store with': 428474, 'with the general': 1001314, 'statement consumer': 796169, '00 via': 585, 'statement consumer complaint': 796170, '15 00 via': 3635, 'honest': 403053, 'depriving': 237710, 'love saying': 504766, 'it true': 461862, 'true wereinthistogether': 933218, 'wereinthistogether but': 980381, 'let be': 486611, 'be honest': 115290, 'honest there': 403081, 'are absolute': 84162, 'absolute danger': 27230, 'danger of': 225672, 'of stockpiling': 590220, 'stockpiling depriving': 803939, 'depriving vulnerable': 237720, 'also employer': 48155, 'employer who': 274557, 'their most': 874008, 'vulnerable staff': 961174, 'love saying it': 504767, 'saying it true': 739628, 'it true wereinthistogether': 461869, 'true wereinthistogether but': 933219, 'wereinthistogether but let': 980382, 'but let be': 146263, 'let be honest': 486616, 'be honest there': 115296, 'honest there are': 403082, 'there are absolute': 878059, 'are absolute danger': 84163, 'absolute danger of': 27231, 'danger of stockpiling': 225685, 'of stockpiling depriving': 590222, 'stockpiling depriving vulnerable': 803940, 'depriving vulnerable people': 237721, 'vulnerable people of': 961102, 'people of essential': 648915, 'of essential food': 583167, 'food and so': 313335, 'so on there': 777944, 'on there are': 604552, 'are also employer': 84449, 'also employer who': 48156, 'employer who are': 274558, 'who are not': 988177, 'are not there': 88485, 'not there for': 572056, 'there for their': 878412, 'for their most': 326851, 'their most vulnerable': 874011, 'most vulnerable staff': 542894, 'nike': 563218, 'outfitter': 628962, 'armor': 92966, 'nike urban': 563235, 'urban outfitter': 948117, 'outfitter and': 628963, 'and under': 74616, 'under armor': 940008, 'armor are': 92969, 'few of': 303957, 'the retailer': 865736, 'retailer closing': 719082, 'closing store': 183759, 'rapidly spreading': 697022, 'spreading coronavirus': 790952, 'nike urban outfitter': 563236, 'urban outfitter and': 948118, 'outfitter and under': 628964, 'and under armor': 74618, 'under armor are': 940009, 'armor are just': 92970, 'are just few': 87622, 'just few of': 468708, 'few of the': 303960, 'of the retailer': 591416, 'the retailer closing': 865738, 'retailer closing store': 719084, 'closing store amid': 183760, 'amid the rapidly': 52711, 'the rapidly spreading': 865154, 'rapidly spreading coronavirus': 697023, 'spreading coronavirus pandemic': 790955, 'trajectory': 929385, 'sinha': 771454, 'after giving': 35712, 'giving return': 351379, 'return of': 719869, '23 74': 15372, '74 in': 22086, '2019 is': 13975, 'it upward': 461980, 'upward trajectory': 947967, 'trajectory with': 929391, 'with uncertainty': 1001888, 'uncertainty around': 939657, 'economic situation': 267290, 'situation writes': 772609, 'writes sandeep': 1012866, 'sandeep sinha': 733682, 'after giving return': 35713, 'giving return of': 351380, 'return of 23': 719870, 'of 23 74': 579526, '23 74 in': 15373, '74 in 2019': 22087, 'in 2019 is': 419806, '2019 is likely': 13978, 'likely to continue': 492138, 'continue it upward': 201055, 'it upward trajectory': 461982, 'upward trajectory with': 947968, 'trajectory with uncertainty': 929393, 'with uncertainty around': 1001891, 'uncertainty around the': 939661, 'around the economic': 93537, 'the economic situation': 853916, 'economic situation writes': 267295, 'situation writes sandeep': 772610, 'writes sandeep sinha': 1012867, 'portioning': 665030, 'duffex': 262050, 'losfeliz': 503529, 'ghosttown': 349694, 'shelf portioning': 757422, 'portioning food': 665031, 'food sale': 316285, 'empty restaurant': 275021, 'in lf': 424689, 'lf photo': 487879, 'photo duffex': 655155, 'duffex losfeliz': 262051, 'losfeliz losangeles': 503530, 'losangeles ghosttown': 503395, 'ghosttown californialockdown': 349695, 'empty grocery store': 274897, 'store shelf portioning': 810091, 'shelf portioning food': 757423, 'portioning food sale': 665032, 'food sale and': 316286, 'sale and empty': 732038, 'and empty restaurant': 62082, 'empty restaurant in': 275022, 'restaurant in lf': 716520, 'in lf photo': 424690, 'lf photo duffex': 487880, 'photo duffex losfeliz': 655156, 'duffex losfeliz losangeles': 262052, 'losfeliz losangeles ghosttown': 503531, 'losangeles ghosttown californialockdown': 503396, 'loaf': 497354, 'soreen': 785985, 'supermarket across': 818765, 'road today': 724528, 'some lunch': 783241, 'lunch managed': 506732, 'some diet': 782684, 'diet ginger': 241725, 'ginger beer': 350188, 'and soft': 71928, 'soft drink': 781467, 'drink loaf': 258853, 'loaf of': 497363, 'of soreen': 589935, 'the supermarket across': 868443, 'supermarket across the': 818767, 'across the road': 29520, 'the road today': 865938, 'road today to': 724530, 'today to get': 920356, 'get some lunch': 348061, 'some lunch managed': 783242, 'lunch managed to': 506733, 'managed to get': 512502, 'get some diet': 348050, 'some diet ginger': 782685, 'diet ginger beer': 241726, 'ginger beer and': 350189, 'beer and soft': 122431, 'and soft drink': 71929, 'soft drink loaf': 781470, 'drink loaf of': 258854, 'loaf of soreen': 497368, 'parade': 641291, 'sixth': 772740, 'avenue': 104772, 'victorious': 956560, 'roman': 725714, 'to parade': 911454, 'parade nurse': 641295, 'doctor down': 250895, 'down sixth': 257188, 'sixth avenue': 772741, 'avenue like': 104778, 'like victorious': 491736, 'victorious roman': 956563, 'roman army': 725717, 'army when': 93055, 'over there': 630806, 'there need': 878780, 'be statue': 117357, 'statue of': 796646, 'need to parade': 556007, 'to parade nurse': 911455, 'parade nurse and': 641296, 'and doctor down': 61577, 'doctor down sixth': 250896, 'down sixth avenue': 257189, 'sixth avenue like': 772742, 'avenue like victorious': 104779, 'like victorious roman': 491737, 'victorious roman army': 956564, 'roman army when': 725718, 'army when this': 93056, 'when this thing': 984312, 'thing is over': 884479, 'is over there': 450737, 'over there need': 630808, 'there need to': 878782, 'to be statue': 901561, 'be statue of': 117358, 'statue of them': 796648, 'of them in': 591747, 'them in park': 875908, 'biggest supermarket': 130329, 'will impose': 993789, 'impose restriction': 419258, 'to buying': 902349, 'buying maximum': 150705, 'maximum of': 520825, 'of three': 592140, 'three product': 894045, 'product per': 681515, 'per line': 650913, 'line from': 493119, 'from thursday': 338043, 'thursday it': 895389, 'it cope': 457319, 'the biggest supermarket': 849680, 'biggest supermarket will': 130335, 'supermarket will impose': 823885, 'will impose restriction': 993790, 'impose restriction on': 419259, 'restriction on all': 717336, 'on all customer': 599221, 'all customer to': 42504, 'customer to buying': 222958, 'to buying maximum': 902353, 'buying maximum of': 150706, 'maximum of three': 520828, 'of three product': 592148, 'three product per': 894046, 'product per line': 681516, 'per line from': 650914, 'line from thursday': 493126, 'from thursday it': 338045, 'thursday it cope': 895390, 'it cope with': 457320, 'with the high': 1001332, 'the high demand': 857317, 'high demand from': 395010, 'pandemic the company': 636670, 'the company ha': 851329, 'company ha announced': 190706, 'debit': 230368, 'snide': 776335, 'guaranteed': 367732, 'missing something': 534326, 'something all': 784840, 'these cafe': 879714, 'cafe etc': 155107, 'etc doing': 282497, 'doing takeaway': 252696, 'takeaway only': 832893, 'only debit': 610319, 'debit card': 230371, 'card only': 163600, 'only this': 611333, 'isn happening': 454536, 'italy spain': 462916, 'spain not': 787327, 'being snide': 125808, 'snide government': 776336, 'government have': 360181, 'have guaranteed': 380850, 'guaranteed wage': 367756, 'wage why': 963992, 'still opening': 800985, 'opening it': 612864, 'go fully': 353595, 'fully shut': 341078, 'down supermarket': 257230, 'am missing something': 50221, 'missing something all': 534327, 'something all these': 784842, 'all these cafe': 45024, 'these cafe etc': 879715, 'cafe etc doing': 155109, 'etc doing takeaway': 282498, 'doing takeaway only': 252698, 'takeaway only debit': 832894, 'only debit card': 610320, 'debit card only': 230372, 'card only this': 163601, 'only this isn': 611335, 'this isn happening': 888486, 'isn happening in': 454538, 'happening in italy': 377363, 'in italy spain': 424317, 'italy spain not': 462918, 'spain not being': 787328, 'not being snide': 568550, 'being snide government': 125809, 'snide government have': 776337, 'government have guaranteed': 360184, 'have guaranteed wage': 380851, 'guaranteed wage why': 367757, 'wage why you': 963993, 'why you still': 991601, 'you still opening': 1021409, 'still opening it': 800986, 'opening it need': 612866, 'to go fully': 906799, 'go fully shut': 353596, 'fully shut down': 341079, 'shut down supermarket': 767855, 'down supermarket only': 257233, 'handsoap': 376733, 'sosamerica': 786197, 'hey world': 394554, 'world me': 1009797, 'me again': 522361, 'again america': 36880, 'america if': 51557, 'know an': 476249, 'an american': 55281, 'american please': 52135, 'send them': 749966, 'them care': 875523, 'package we': 633452, 'need handsoap': 554954, 'handsoap hand': 376734, 'sanitizer tp': 735969, 'tp basic': 927757, 'hygiene item': 412116, 'item we': 463797, 'we cant': 971092, 'cant find': 162288, 'find here': 306957, 'even begin': 283878, 'begin protect': 123556, 'protect ourselves': 684904, 'ourselves at': 625462, 'basic level': 111968, 'level from': 487564, 'from sosamerica': 337357, 'sosamerica 19': 786198, 'hey world me': 394556, 'world me again': 1009798, 'me again america': 522362, 'again america if': 36881, 'america if you': 51559, 'you know an': 1019482, 'know an american': 476250, 'an american please': 55287, 'american please send': 52136, 'please send them': 660466, 'send them care': 749967, 'them care package': 875524, 'care package we': 164139, 'package we need': 633453, 'we need handsoap': 972493, 'need handsoap hand': 554955, 'handsoap hand sanitizer': 376735, 'hand sanitizer tp': 375632, 'sanitizer tp basic': 735971, 'tp basic hygiene': 927758, 'basic hygiene item': 111940, 'hygiene item we': 412117, 'item we cant': 463800, 'we cant find': 971096, 'cant find here': 162292, 'find here to': 306958, 'here to even': 393708, 'to even begin': 905284, 'even begin protect': 283879, 'begin protect ourselves': 123557, 'protect ourselves at': 684906, 'ourselves at the': 625464, 'most basic level': 542130, 'basic level from': 111970, 'level from sosamerica': 487565, 'from sosamerica 19': 337358, 'sake': 731845, 'are imploring': 87334, 'imploring shopper': 418600, 'follow few': 312379, 'few simple': 304064, 'simple rule': 770088, 'rule for': 727236, 'the sake': 866171, 'sake of': 731864, 'others do': 621362, 'not stop': 571750, 'chat shop': 173953, 'shop alone': 759821, 'alone and': 46810, 'shop once': 760552, 'channel any': 172861, 'any anger': 78927, 'and frustration': 63381, 'frustration elsewhere': 339269, 'store employee are': 807458, 'employee are imploring': 273619, 'are imploring shopper': 87335, 'imploring shopper to': 418601, 'shopper to follow': 761763, 'to follow few': 906048, 'follow few simple': 312380, 'few simple rule': 304065, 'simple rule for': 770089, 'rule for the': 727239, 'for the sake': 326668, 'the sake of': 866172, 'sake of others': 731869, 'of others do': 587388, 'others do not': 621364, 'do not stop': 249857, 'not stop to': 571761, 'stop to chat': 805213, 'to chat shop': 902667, 'chat shop alone': 173954, 'shop alone and': 759822, 'alone and only': 46815, 'and only shop': 68150, 'only shop once': 611118, 'shop once week': 760555, 'once week and': 605788, 'week and channel': 975905, 'and channel any': 59739, 'channel any anger': 172862, 'any anger and': 78928, 'anger and frustration': 76414, 'and frustration elsewhere': 63383, 'cheering': 175141, 'petrolprice': 653851, 'americafirst': 51759, 'see everyone': 745089, 'everyone cheering': 286777, 'cheering for': 175144, 'for low': 323122, 'but where': 147831, 'where are': 984737, 'going petrolprice': 355421, 'petrolprice americafirst': 653852, 'see everyone cheering': 745090, 'everyone cheering for': 286778, 'cheering for low': 175145, 'for low gas': 323127, 'gas price but': 343939, 'price but where': 672993, 'but where are': 147832, 'where are you': 984745, 'are you going': 91797, 'you going petrolprice': 1018881, 'going petrolprice americafirst': 355422, '131': 3307, '882': 23076, 'customer consumer': 222269, 'business service': 144360, 'ha committed': 370208, '19 instead': 7894, 'of coming': 581544, 'to cbs': 902544, 'cbs in': 168371, 'person please': 652582, 'call on': 156021, 'on 131': 599009, '131 882': 3308, '882 or': 23077, 'safety of staff': 730653, 'of staff and': 590015, 'and customer consumer': 60838, 'customer consumer and': 222270, 'and business service': 59301, 'business service ha': 144361, 'service ha committed': 752434, 'ha committed to': 370210, 'committed to social': 189046, 'distancing to help': 247565, 'covid 19 instead': 213278, '19 instead of': 7895, 'instead of coming': 440246, 'of coming to': 581545, 'coming to cbs': 188220, 'to cbs in': 902545, 'cbs in person': 168372, 'in person please': 426639, 'person please call': 652583, 'please call on': 659753, 'call on 131': 156027, 'on 131 882': 599010, '131 882 or': 3309, '882 or go': 23078, 'or go to': 615491, 'go to at': 354277, 'to at this': 900810, 'everyone ha': 286957, 'gone nut': 356341, 'nut for': 577660, 'for bog': 319708, 'roll but': 725223, 'but from': 145778, 'from experience': 335357, 'experience stock': 291490, 'on diy': 600360, 'diy stuff': 248774, 'stuff food': 815066, 'll want': 497094, 'to sort': 914921, 'sort your': 786160, 'your garden': 1024022, 'garden and': 343578, 'and job': 65657, 'house coronacrisis': 406243, 'ok so everyone': 597883, 'so everyone ha': 776975, 'everyone ha gone': 286965, 'ha gone nut': 370729, 'gone nut for': 356342, 'nut for bog': 577661, 'for bog roll': 319709, 'bog roll but': 133948, 'roll but from': 725226, 'but from experience': 145780, 'from experience stock': 335360, 'experience stock up': 291491, 'up on diy': 945544, 'on diy stuff': 600362, 'diy stuff food': 248775, 'stuff food shop': 815067, 'food shop not': 316487, 'shop not going': 760503, 'going to close': 355553, 'to close and': 902857, 'close and you': 182545, 'and you ll': 76031, 'you ll want': 1019676, 'll want to': 497095, 'want to sort': 966123, 'to sort your': 914929, 'sort your garden': 786161, 'your garden and': 1024023, 'garden and job': 343579, 'and job in': 65662, 'job in the': 465882, 'the house coronacrisis': 857602, 'house coronacrisis staysafestayhome': 406244, 'dried': 258743, 'diversify': 248537, 'localbusiness': 498718, 'like restaurant': 491081, 'restaurant quality': 716653, 'quality italian': 691807, 'italian food': 462696, 'food wine': 317635, 'wine delivered': 995803, 'door wine': 255781, 'wine pasta': 995867, 'and dried': 61722, 'dried good': 258750, 'good with': 357965, 'queue we': 694124, 'business looking': 144018, 'to diversify': 904459, 'diversify in': 248540, 'these tricky': 880882, 'you too': 1021881, 'too shoplocal': 925055, 'shoplocal localbusiness': 761224, 'would you like': 1012413, 'you like restaurant': 1019611, 'like restaurant quality': 491082, 'restaurant quality italian': 716654, 'quality italian food': 691808, 'italian food wine': 462698, 'food wine delivered': 317637, 'wine delivered to': 995804, 'your door wine': 1023582, 'door wine pasta': 255782, 'wine pasta and': 995868, 'pasta and dried': 643678, 'and dried good': 61723, 'dried good with': 258751, 'good with no': 357970, 'with no supermarket': 999793, 'no supermarket queue': 565625, 'supermarket queue we': 822138, 'queue we are': 694125, 'are small business': 90184, 'small business looking': 774873, 'business looking to': 144020, 'looking to diversify': 503026, 'to diversify in': 904460, 'diversify in these': 248541, 'in these tricky': 429869, 'these tricky time': 880883, 'tricky time and': 931750, 'and we hope': 75298, 'we hope we': 972039, 'hope we can': 403764, 'can help you': 158673, 'help you too': 391005, 'you too shoplocal': 1021886, 'too shoplocal localbusiness': 925056, 'mobbing': 534921, 'follow that': 312518, 'that truck': 847129, 'truck serious': 932846, 'serious toiletpaper': 751499, 'toiletpaper mobbing': 922244, 'mobbing toiletpaper': 534922, 'follow that truck': 312519, 'that truck serious': 847130, 'truck serious toiletpaper': 932847, 'serious toiletpaper mobbing': 751500, 'toiletpaper mobbing toiletpaper': 922245, 'kohl': 477327, 'retail chain': 717936, 'chain kohl': 170878, 'kohl will': 477336, 'will close': 992941, 'store nationwide': 809029, 'nationwide until': 552770, 'least april': 484392, 'department store and': 237265, 'store and retail': 806330, 'and retail chain': 70427, 'retail chain kohl': 717940, 'chain kohl will': 170879, 'kohl will close': 477337, 'will close all': 992942, 'close all of': 182505, 'of it store': 585447, 'it store nationwide': 461294, 'store nationwide until': 809033, 'nationwide until at': 552771, 'at least april': 99464, 'least april due': 484398, 'restocked on': 716957, 'daily basis': 224504, 'basis sometimes': 112277, 'sometimes more': 785223, 'than once': 840972, 'store are being': 806461, 'being restocked on': 125689, 'restocked on daily': 716958, 'on daily basis': 600206, 'daily basis sometimes': 224511, 'basis sometimes more': 112278, 'sometimes more than': 785224, 'more than once': 540655, 'than once day': 840973, 'excerpt': 289322, 'lasting': 480760, 'consume': 195929, 'small excerpt': 774939, 'excerpt from': 289323, 'from good': 335664, 'good article': 356776, 'article the': 94481, 'triggering massive': 931943, 'massive change': 519981, 'way movie': 969714, 'movie are': 543988, 'are released': 89554, 'released which': 709104, 'have lasting': 381252, 'lasting effect': 480763, 'people consume': 647532, 'consume hollywood': 195936, 'hollywood entertainment': 400452, 'small excerpt from': 774940, 'excerpt from good': 289324, 'from good article': 335665, 'good article the': 356782, 'article the coronavirus': 94482, 'coronavirus is triggering': 206179, 'is triggering massive': 453358, 'triggering massive change': 931944, 'massive change in': 519982, 'change in the': 172138, 'the way movie': 871167, 'way movie are': 969715, 'movie are released': 543989, 'are released which': 89556, 'released which could': 709105, 'which could have': 985777, 'could have lasting': 209258, 'have lasting effect': 381253, 'lasting effect on': 480765, 'effect on how': 269088, 'on how people': 601417, 'how people consume': 408498, 'people consume hollywood': 647533, 'consume hollywood entertainment': 195937, 'dug': 262053, 'channelsight': 172969, 'analyse': 56998, 'we dug': 971425, 'dug into': 262054, 'own data': 631936, 'data here': 226265, 'at channelsight': 98228, 'channelsight to': 172970, 'to analyse': 900477, 'analyse consumer': 57001, 'behaviour before': 124372, 'before during': 122751, 'lockdown were': 500124, 'were introduced': 979801, 'introduced in': 443426, 'in number': 425994, 'market read': 516951, 'our blog': 622222, 'blog here': 132944, 'we dug into': 971426, 'dug into our': 262055, 'into our own': 442825, 'our own data': 624201, 'own data here': 631937, 'data here at': 226266, 'here at channelsight': 392780, 'at channelsight to': 98229, 'channelsight to analyse': 172971, 'to analyse consumer': 900478, 'analyse consumer behaviour': 57002, 'consumer behaviour before': 196554, 'behaviour before during': 124373, 'before during and': 122752, 'during and after': 262450, 'and after the': 57757, 'after the lockdown': 36332, 'the lockdown were': 859638, 'lockdown were introduced': 500125, 'were introduced in': 979802, 'introduced in number': 443427, 'in number of': 425995, 'number of market': 576958, 'of market read': 586237, 'market read more': 516953, 'read more on': 700448, 'more on our': 539929, 'on our blog': 602578, 'our blog here': 622226, 'institute of': 440423, 'of chemical': 581317, 'chemical technology': 175386, 'technology is': 836318, 'introduce sanitizer': 443394, 'tunnel with': 935481, 'low cost': 505209, 'cost estimate': 207926, 'estimate at': 282232, 'at crowded': 98373, 'crowded place': 219333, 'avoid infection': 105160, 'institute of chemical': 440424, 'of chemical technology': 581321, 'chemical technology is': 175387, 'technology is ready': 836321, 'ready to introduce': 700962, 'to introduce sanitizer': 908472, 'introduce sanitizer tunnel': 443395, 'sanitizer tunnel with': 735980, 'tunnel with low': 935482, 'with low cost': 999330, 'low cost estimate': 505210, 'cost estimate at': 207927, 'estimate at crowded': 282233, 'at crowded place': 98375, 'crowded place to': 219339, 'place to avoid': 657746, 'to avoid infection': 900911, 'cruel': 219661, 'jill': 465481, 'realizes': 701925, 'jcpenney': 464919, 'how cruel': 407650, 'cruel of': 219673, 'not close': 568772, 'week two': 977134, 'two you': 937414, 'worst retail': 1011256, 'reason all': 702863, 'closing jill': 183676, 'jill is': 465482, 'is horrible': 448545, 'horrible person': 404115, 'person hope': 652465, 'she realizes': 756284, 'realizes what': 701926, 'she did': 755983, 'did hope': 240647, 'hope jcpenney': 403523, 'jcpenney get': 464920, 'get slammed': 348014, 'slammed and': 773495, 'and criticized': 60762, 'criticized by': 218775, 'by everyone': 152507, 'everyone now': 287217, 'how cruel of': 407651, 'cruel of you': 219674, 'of you to': 593427, 'you to not': 1021813, 'to not close': 910686, 'not close for': 568774, 'close for week': 182645, 'for week two': 327758, 'week two you': 977136, 'two you are': 937415, 'the worst retail': 872072, 'worst retail store': 1011257, 'the world this': 871988, 'world this is': 1010066, 'the reason all': 865267, 'reason all store': 702864, 'all store are': 44488, 'store are closing': 806465, 'are closing jill': 85394, 'closing jill is': 183677, 'jill is horrible': 465483, 'is horrible person': 448547, 'horrible person hope': 404116, 'person hope she': 652466, 'hope she realizes': 403621, 'she realizes what': 756285, 'realizes what she': 701927, 'what she did': 982161, 'she did hope': 755984, 'did hope jcpenney': 240648, 'hope jcpenney get': 403524, 'jcpenney get slammed': 464922, 'get slammed and': 348015, 'slammed and criticized': 773496, 'and criticized by': 60763, 'criticized by everyone': 218776, 'by everyone now': 152510, 'impressed': 419441, 'impressed supermarket': 419450, 'have introduced': 381113, 'introduced special': 443449, 'special time': 788078, 'people etc': 647818, 'etc but': 282445, 'but seriously': 147012, 'seriously there': 751753, 'shopping available': 762124, 'are meant': 88055, 'be isolating': 115553, 'impressed supermarket have': 419451, 'supermarket have introduced': 820691, 'have introduced special': 381118, 'introduced special time': 443450, 'special time for': 788079, 'time for the': 896763, 'for the older': 326596, 'the older people': 862154, 'older people etc': 598646, 'people etc but': 647820, 'etc but seriously': 282449, 'but seriously there': 147015, 'seriously there need': 751754, 'be more online': 115986, 'online shopping available': 609040, 'shopping available for': 762125, 'available for those': 104386, 'who are meant': 988174, 'are meant to': 88056, 'to be isolating': 901346, 'our hand': 623343, 'new supply': 559701, 'our volunteer': 625285, 'client safe': 182087, 'safe on': 729848, 'bank frontline': 109855, 'frontline if': 338764, 'stocked please': 803370, 'donating some': 254497, 'some to': 784075, 'you help we': 1019207, 'help we re': 390867, 'get our hand': 347726, 'our hand on': 623349, 'hand on new': 375137, 'on new supply': 602384, 'new supply of': 559702, 'supply of sanitizer': 825645, 'sanitizer to keep': 735931, 'keep our volunteer': 471758, 'our volunteer and': 625286, 'volunteer and client': 960212, 'and client safe': 59989, 'client safe on': 182090, 'safe on the': 729849, 'food bank frontline': 313576, 'bank frontline if': 109856, 'frontline if you': 338765, 're well stocked': 699803, 'well stocked please': 978602, 'stocked please consider': 803371, 'consider donating some': 194986, 'donating some to': 254500, 'love that': 504794, 'that included': 844470, 'included this': 431706, 'this quote': 889792, 'quote in': 694995, 'their coverage': 872913, 'affecting banking': 34489, 'banking share': 110455, 'thanks bank': 842024, 'need health': 554966, 'health policy': 386745, 'policy solution': 663496, 'solution not': 782059, 'not interest': 570157, 'rate cut': 697190, 'really love that': 702396, 'love that included': 504796, 'that included this': 844471, 'included this quote': 431708, 'this quote in': 889795, 'quote in their': 694996, 'in their coverage': 429731, 'their coverage of': 872914, 'coverage of how': 212368, 'of how is': 584829, 'how is affecting': 408080, 'is affecting banking': 445380, 'affecting banking share': 34490, 'banking share price': 110456, 'share price thanks': 755184, 'price thanks bank': 676787, 'thanks bank need': 842025, 'bank need health': 110024, 'need health policy': 554967, 'health policy solution': 386747, 'policy solution not': 663497, 'solution not interest': 782060, 'not interest rate': 570158, 'interest rate cut': 441390, 'bank will': 110311, 'will benefit': 992817, 'to by': 902357, 'by 250': 151613, '250 from': 16016, 'from special': 337371, 'special fighting': 787920, 'fighting fund': 305086, 'fund match': 341461, 'match fund': 520291, 'fund regular': 341487, 'regular donation': 707768, 'bank which': 110296, 'seen 40': 746913, '40 increase': 18583, 'demand can': 235100, 'this crucial': 887129, 'crucial work': 219487, 'food bank will': 313673, 'bank will benefit': 110314, 'will benefit to': 992825, 'benefit to by': 127112, 'to by 250': 902358, 'by 250 from': 151614, '250 from special': 16017, 'from special fighting': 337372, 'special fighting fund': 787921, 'fighting fund match': 305087, 'fund match fund': 341462, 'match fund regular': 520292, 'fund regular donation': 341488, 'regular donation to': 707769, 'donation to the': 254717, 'the bank which': 849257, 'bank which ha': 110297, 'which ha seen': 985896, 'ha seen 40': 371819, 'seen 40 increase': 746914, '40 increase in': 18584, 'in demand can': 422113, 'demand can you': 235102, 'you help support': 1019200, 'help support to': 390620, 'support to this': 826955, 'to this crucial': 917418, 'this crucial work': 887131, 'bowl': 136968, 'begging': 123480, 'wanker': 965600, 'those local': 892172, 'shop charging': 760029, 'charging 10': 173438, 'roll 99': 725158, 'for basic': 319582, 'essential remember': 281451, 'this won': 891484, 'won last': 1003856, 'forever and': 329093, 'need customer': 554655, 'customer soon': 222866, 'soon to': 785861, 'going don': 355108, 'don come': 253434, 'come bowl': 187248, 'bowl in': 136972, 'in hand': 423523, 'hand begging': 374836, 'begging when': 123494, 'go under': 354408, 'under wanker': 940373, 'those local shop': 892173, 'local shop charging': 498396, 'shop charging 10': 760030, 'charging 10 for': 173439, '10 for toilet': 1439, 'for toilet roll': 327249, 'toilet roll 99': 921547, 'roll 99 for': 725159, '99 for hand': 23824, 'for hand sanitiser': 322106, 'sanitiser and over': 733917, 'and over inflated': 68560, 'inflated price for': 437043, 'price for basic': 673931, 'for basic essential': 319583, 'basic essential remember': 111873, 'essential remember this': 281452, 'remember this won': 710357, 'this won last': 891485, 'won last forever': 1003857, 'last forever and': 480236, 'forever and you': 329098, 'll need customer': 496908, 'need customer soon': 554656, 'customer soon to': 222867, 'soon to keep': 785866, 'keep you going': 472238, 'you going don': 1018879, 'going don come': 355109, 'don come bowl': 253435, 'come bowl in': 187249, 'bowl in hand': 136973, 'in hand begging': 423525, 'hand begging when': 374837, 'begging when you': 123495, 'you go under': 1018869, 'go under wanker': 354410, 'preference': 669770, 'rewarded': 720804, 'chinamarketing': 177125, 'theskinny': 881025, 'the capacity': 850354, 'in growing': 423462, 'growing their': 367242, 'their awareness': 872535, 'awareness and': 105684, 'and preference': 69349, 'preference in': 669786, 'be rewarded': 116878, 'rewarded with': 720811, 'strength of': 813227, 'market chinamarketing': 516167, 'chinamarketing theskinny': 177128, 'that have the': 844239, 'have the capacity': 382966, 'the capacity to': 850358, 'capacity to invest': 162589, 'invest in growing': 443756, 'in growing their': 423463, 'growing their awareness': 367243, 'their awareness and': 872536, 'awareness and preference': 105686, 'and preference in': 69351, 'preference in china': 669787, 'china are likely': 176501, 'to be rewarded': 901509, 'be rewarded with': 116880, 'rewarded with the': 720812, 'with the strength': 1001502, 'the strength of': 868264, 'strength of the': 813231, 'the chinese consumer': 850849, 'chinese consumer market': 177229, 'consumer market chinamarketing': 198098, 'market chinamarketing theskinny': 516168, 'worldhealthday': 1010238, 'fetterhealth': 303632, 'this opportunity': 889277, 'opportunity on': 613664, 'on worldhealthday': 605380, 'worldhealthday to': 1010249, 'remind you': 710515, 'use good': 949239, 'hygiene especially': 412085, 'especially right': 280585, 'hand thoroughly': 375849, 'thoroughly and': 891753, 'and often': 68006, 'sanitizer healthcare': 735070, 'healthcare fetterhealth': 387109, 'want to take': 966140, 'take this opportunity': 832711, 'this opportunity on': 889278, 'opportunity on worldhealthday': 613666, 'on worldhealthday to': 605381, 'worldhealthday to remind': 1010250, 'to remind you': 913206, 'remind you to': 710518, 'you to use': 1021853, 'to use good': 918031, 'use good hygiene': 949240, 'good hygiene especially': 357198, 'hygiene especially right': 412086, 'especially right now': 280586, 'right now in': 722084, 'now in the': 575015, 'coronavirus pandemic it': 206469, 'pandemic it important': 635822, 'important to wash': 419077, 'your hand thoroughly': 1024231, 'hand thoroughly and': 375850, 'thoroughly and often': 891755, 'and often or': 68011, 'often or use': 596249, 'hand sanitizer healthcare': 375439, 'sanitizer healthcare fetterhealth': 735071, 'rattled': 697892, 'ha rattled': 371631, 'rattled bank': 697893, 'bank industry': 109938, 'and economy': 61920, 'economy around': 267674, 'world answer': 1009297, 'answer the': 78109, 'the burning': 850134, 'money investor': 536840, 'investor money': 444183, 'the ha rattled': 857012, 'ha rattled bank': 371632, 'rattled bank industry': 697894, 'bank industry and': 109939, 'industry and economy': 435634, 'and economy around': 61922, 'economy around the': 267675, 'the world answer': 871813, 'world answer the': 1009299, 'answer the burning': 78110, 'the burning question': 850135, 'burning question about': 142926, 'question about what': 693509, 'about what it': 26889, 'for your money': 328177, 'your money investor': 1024862, 'money investor money': 536841, 'ngisho': 561829, 'wena': 978915, 'depreciation': 237563, 'rand': 696567, 'life after': 488443, 'in sa': 427600, 'sa economy': 728886, 'actual horror': 30672, 'horror movie': 404201, 'movie ngisho': 544030, 'ngisho wena': 561830, 'wena higher': 978920, 'higher unemployment': 395779, 'rate wena': 697409, 'higher job': 395623, 'loss wena': 503800, 'wena junk': 978925, 'junk status': 468050, 'status wena': 796707, 'wena education': 978916, 'education system': 268869, 'system crisis': 831143, 'crisis wena': 218369, 'higher tax': 395742, 'tax wena': 835119, 'and wena': 75425, 'wena further': 978918, 'further depreciation': 342029, 'depreciation of': 237566, 'the rand': 865134, 'rand it': 696572, 'it mess': 459607, 'life after covid': 488444, '19 in sa': 7781, 'in sa economy': 427603, 'sa economy will': 728887, 'economy will be': 268356, 'be the actual': 117592, 'the actual horror': 848323, 'actual horror movie': 30673, 'horror movie ngisho': 404202, 'movie ngisho wena': 544031, 'ngisho wena higher': 561831, 'wena higher unemployment': 978924, 'higher unemployment rate': 395781, 'unemployment rate wena': 941280, 'rate wena higher': 697410, 'wena higher job': 978921, 'higher job loss': 395624, 'job loss wena': 465986, 'loss wena junk': 503801, 'wena junk status': 978926, 'junk status wena': 468052, 'status wena education': 796708, 'wena education system': 978917, 'education system crisis': 268870, 'system crisis wena': 831144, 'crisis wena higher': 218370, 'wena higher tax': 978923, 'higher tax wena': 395746, 'tax wena higher': 835120, 'wena higher price': 978922, 'higher price and': 395663, 'price and wena': 672579, 'and wena further': 75426, 'wena further depreciation': 978919, 'further depreciation of': 342030, 'depreciation of the': 237567, 'of the rand': 591386, 'the rand it': 865135, 'rand it mess': 696574, 'surrounding and': 828726, 'quarantine that': 692605, 'that seems': 846170, 'be spreading': 117334, 'globe thought': 352483, 'wa only': 962849, 'only fitting': 610443, 'fitting slash': 309563, 'slash price': 773584, 'our digital': 622750, 'digital product': 242627, 'there lot': 878734, 'of the fear': 591015, 'the fear surrounding': 855038, 'fear surrounding and': 301347, 'surrounding and the': 828727, 'and the quarantine': 73536, 'the quarantine that': 864978, 'quarantine that seems': 692606, 'that seems to': 846173, 'to be spreading': 901559, 'be spreading around': 117336, 'spreading around the': 790931, 'around the globe': 93540, 'the globe thought': 856364, 'globe thought it': 352484, 'thought it wa': 893107, 'it wa only': 462165, 'wa only fitting': 962855, 'only fitting slash': 610444, 'fitting slash price': 309564, 'slash price on': 773587, 'price on our': 675704, 'on our digital': 602590, 'our digital product': 622754, 'digital product for': 242628, 'product for you': 681209, 'for you there': 328092, 'you there lot': 1021632, 'there lot of': 878735, 'slowed': 774480, 'lira': 494226, 'turkey inflation': 935553, 'inflation slowed': 437243, 'slowed for': 774495, 'five month': 309643, 'month in': 537785, 'march lower': 515407, 'and dip': 61367, 'in economic': 422478, 'economic activity': 266953, 'activity amid': 30368, 'pandemic more': 635974, 'than offset': 840964, 'offset upward': 596121, 'upward pressure': 947957, 'pressure from': 671160, 'the lira': 859462, 'lira depreciation': 494227, 'depreciation report': 237568, 'turkey inflation slowed': 935554, 'inflation slowed for': 437244, 'slowed for the': 774496, 'time in five': 896988, 'in five month': 422919, 'five month in': 309644, 'month in march': 537794, 'in march lower': 425109, 'march lower oil': 515408, 'price and dip': 672395, 'and dip in': 61368, 'dip in economic': 243189, 'in economic activity': 422479, 'economic activity amid': 266954, 'activity amid the': 30369, 'the pandemic more': 863026, 'pandemic more than': 635980, 'more than offset': 540654, 'than offset upward': 840966, 'offset upward pressure': 596122, 'upward pressure from': 947958, 'pressure from the': 671165, 'from the lira': 337775, 'the lira depreciation': 859463, 'lira depreciation report': 494228, 'difference during': 241832, 'are some way': 90294, 'some way you': 784191, 'can make difference': 158928, 'make difference during': 509830, 'difference during the': 241833, 'pandemic via fda': 636897, '20mbs': 14911, 'kot can': 477561, 'also entertain': 48167, 'entertain at': 278504, 'at affordable': 97845, 'affordable price': 34867, 'price 20mbs': 672128, '20mbs the': 14912, 'is needed': 449858, 'by health': 152778, 'hospital priority': 404573, 'priority lockdown': 678604, 'kot can also': 477562, 'can also entertain': 157457, 'also entertain at': 48168, 'entertain at affordable': 278505, 'at affordable price': 97846, 'affordable price 20mbs': 34869, 'price 20mbs the': 672129, '20mbs the money': 14913, 'the money is': 860815, 'money is needed': 536846, 'is needed by': 449860, 'needed by health': 556323, 'by health care': 152780, 'care worker and': 164276, 'worker and hospital': 1006305, 'and hospital priority': 64748, 'hospital priority lockdown': 404574, 'notoviptesting': 573613, 'freemasstestingnowph': 332483, 'poverty rate': 667512, 'rate no': 697304, 'no salary': 565392, 'salary increase': 731977, 'increase increase': 432882, 'increase of': 432929, 'is domino': 447300, 'domino effect': 253303, 'effect it': 269023, 'it might': 459610, 'be ideal': 115342, 'ideal to': 413279, 'to conduct': 903186, 'conduct free': 193642, 'free mass': 331965, 'mass testing': 519878, 'testing it': 839525, 'be efficient': 114655, 'efficient an': 269413, 'an opinion': 56663, 'opinion regarding': 613496, 'regarding house': 707223, 'of representative': 588947, 'representative special': 712913, 'special session': 788053, '19 notoviptesting': 8843, 'notoviptesting freemasstestingnowph': 573614, 'poverty rate no': 667513, 'rate no salary': 697307, 'no salary increase': 565394, 'salary increase increase': 731978, 'increase increase of': 432883, 'increase of price': 432942, 'of price it': 588410, 'it is domino': 458937, 'is domino effect': 447301, 'domino effect it': 253304, 'effect it might': 269024, 'it might be': 459611, 'might be ideal': 530903, 'be ideal to': 115344, 'ideal to conduct': 413280, 'to conduct free': 903187, 'conduct free mass': 193643, 'free mass testing': 331966, 'mass testing it': 519882, 'testing it must': 839526, 'must be efficient': 546502, 'be efficient an': 114656, 'efficient an opinion': 269414, 'an opinion regarding': 56664, 'opinion regarding house': 613497, 'regarding house of': 707224, 'house of representative': 406426, 'of representative special': 588950, 'representative special session': 712914, 'special session on': 788054, 'session on covid': 753297, 'covid 19 notoviptesting': 213488, '19 notoviptesting freemasstestingnowph': 8844, 'terrifying': 838520, 'floating': 310660, 'terrifying video': 838546, 'one cough': 606108, 'spread cloud': 790472, 'cloud of': 184309, 'of across': 579748, 'that lingers': 844891, 'lingers for': 493718, 'for min': 323443, 'min extremely': 532535, 'extremely small': 293924, 'small particle': 775057, 'particle of': 642588, 'this size': 890200, 'size don': 772773, 'don sink': 253912, 'sink on': 771480, 'floor but': 310780, 'but instead': 146062, 'instead move': 440224, 'move along': 543602, 'along in': 47005, 'air current': 39711, 'current or': 221278, 'or remain': 616843, 'remain floating': 709744, 'floating in': 310665, 'in same': 427674, 'same space': 733298, 'terrifying video show': 838547, 'show how one': 766987, 'how one cough': 408432, 'one cough can': 606109, 'can spread cloud': 159702, 'spread cloud of': 790473, 'cloud of across': 184310, 'of across supermarket': 579749, 'across supermarket that': 29472, 'supermarket that lingers': 823189, 'that lingers for': 844892, 'lingers for min': 493719, 'for min extremely': 323444, 'min extremely small': 532536, 'extremely small particle': 293926, 'small particle of': 775058, 'particle of this': 642589, 'of this size': 592039, 'this size don': 890201, 'size don sink': 772774, 'don sink on': 253913, 'sink on the': 771482, 'the floor but': 855420, 'floor but instead': 310781, 'but instead move': 146067, 'instead move along': 440225, 'move along in': 543603, 'along in the': 47006, 'the air current': 848483, 'air current or': 39712, 'current or remain': 221280, 'or remain floating': 616844, 'remain floating in': 709745, 'floating in same': 310666, 'in same space': 427678, 'all anyone': 42029, 'is talking': 452569, 'about at': 24833, 'moment but': 535885, '19 affecting': 4845, 'consumer finance': 197471, 'finance full': 306200, 'full post': 340815, 'it all anyone': 456335, 'all anyone is': 42030, 'anyone is talking': 80393, 'is talking about': 452570, 'talking about at': 833956, 'about at the': 24836, 'the moment but': 860743, 'moment but how': 535887, 'but how is': 145971, 'how is covid': 408087, 'covid 19 affecting': 212591, '19 affecting consumer': 4846, 'affecting consumer finance': 34503, 'consumer finance full': 197477, 'finance full post': 306201, 'remaining': 709951, 'maintaining': 509092, 'all help': 43090, 'to flatten': 905998, 'curve by': 221839, 'by remaining': 153757, 'remaining indoors': 709969, 'indoors and': 435373, 'and limiting': 66188, 'limiting contact': 492805, 'with others': 999966, 'others regularly': 621615, 'regularly washing': 707973, 'washing our': 967702, 'and maintaining': 66530, 'maintaining good': 509108, 'good personal': 357552, 'personal hygiene': 652870, 'hygiene standard': 412168, 'standard here': 793669, 'here step': 393602, 'together we can': 921026, 'we can all': 970904, 'can all help': 157426, 'all help to': 43093, 'help to flatten': 390774, 'to flatten the': 906000, 'the curve by': 852688, 'curve by remaining': 221841, 'by remaining indoors': 153758, 'remaining indoors and': 709970, 'indoors and limiting': 435380, 'and limiting contact': 66189, 'limiting contact with': 492806, 'contact with others': 200281, 'with others regularly': 999972, 'others regularly washing': 621616, 'regularly washing our': 707974, 'washing our hand': 967703, 'our hand and': 623344, 'hand and maintaining': 374765, 'and maintaining good': 66531, 'maintaining good personal': 509109, 'good personal hygiene': 357553, 'personal hygiene standard': 652878, 'hygiene standard here': 412169, 'standard here step': 793670, 'here step to': 393604, 'step to stop': 799669, 'least it': 484522, 'not war': 572451, 'at least it': 99511, 'least it not': 484525, 'it not war': 459934, 'pistachio': 656984, 'retailworkers': 719593, 'weneedrationing': 978935, 'all he': 43069, 'he wanted': 385642, 'wanted wa': 966287, 'chicken just': 175808, 'just wish': 470311, 'wish could': 996747, 'given it': 351029, 'to him': 907768, 'him heartbreaking': 396621, 'heartbreaking meanwhile': 388385, 'meanwhile guy': 524976, 'guy wa': 369193, 'buy can': 148463, 'can of': 159079, 'of soup': 589936, 'soup and': 786367, 'and another': 58160, 'another trying': 77921, 'buy bag': 148396, 'of pistachio': 588128, 'pistachio retail': 656985, 'retail retailworkers': 718492, 'retailworkers stophoarding': 719598, 'stophoarding weneedrationing': 805515, 'have food all': 380647, 'food all he': 313085, 'all he wanted': 43070, 'he wanted wa': 385644, 'wanted wa some': 966288, 'wa some chicken': 963275, 'some chicken just': 782524, 'chicken just wish': 175809, 'just wish could': 470312, 'wish could have': 996749, 'could have given': 209254, 'have given it': 380770, 'given it to': 351034, 'it to him': 461725, 'to him heartbreaking': 907772, 'him heartbreaking meanwhile': 396622, 'heartbreaking meanwhile guy': 388386, 'meanwhile guy wa': 524977, 'guy wa trying': 369200, 'trying to buy': 934774, 'to buy can': 902198, 'buy can of': 148464, 'can of soup': 159093, 'of soup and': 589937, 'soup and another': 786368, 'and another trying': 58167, 'another trying to': 77922, 'to buy bag': 902186, 'buy bag of': 148397, 'bag of pistachio': 108361, 'of pistachio retail': 588129, 'pistachio retail retailworkers': 656986, 'retail retailworkers stophoarding': 718494, 'retailworkers stophoarding weneedrationing': 719599, 'austin': 103170, '46m': 19247, 'being publicly': 125598, 'publicly owned': 688593, 'owned mean': 632345, 'mean making': 524544, 'community today': 190181, 'today austin': 919294, 'austin city': 103177, 'city council': 179111, 'council approved': 209963, 'approved utility': 83210, 'utility relief': 951307, 'relief package': 709418, 'package that': 633414, 'will provide': 994503, 'provide 46m': 686205, 'being publicly owned': 125599, 'publicly owned mean': 688594, 'owned mean making': 632346, 'mean making sure': 524545, 'making sure we': 511393, 'sure we take': 827811, 'we take care': 973479, 'of the customer': 590922, 'the customer in': 852724, 'customer in our': 222501, 'our community today': 622487, 'community today austin': 190182, 'today austin city': 919295, 'austin city council': 103178, 'city council approved': 179113, 'council approved utility': 209964, 'approved utility relief': 83211, 'utility relief package': 951308, 'relief package that': 709426, 'package that will': 633417, 'that will provide': 847599, 'will provide 46m': 994506, 'closed across': 182955, 'country from': 210674, 'partner michael': 642853, 'michael brown': 530221, 'brown we': 141262, 'uncharted territory': 939795, 'territory the': 838580, 'initial two': 438558, 'week period': 976743, 'closing is': 183667, 'the minimum': 860646, 'minimum we': 533252, 'can expect': 158275, 'to measure taken': 909983, 'measure taken to': 525356, 'taken to stop': 833106, 'spread of retail': 790702, 'retail store have': 718641, 'store have closed': 808073, 'have closed across': 379991, 'closed across the': 182956, 'the country from': 852084, 'country from our': 210676, 'our partner michael': 624280, 'partner michael brown': 642854, 'michael brown we': 530222, 'brown we are': 141263, 'in uncharted territory': 430411, 'uncharted territory the': 939799, 'territory the initial': 838582, 'the initial two': 858282, 'initial two week': 438559, 'two week period': 937352, 'week period of': 976744, 'period of store': 651854, 'of store closing': 590246, 'store closing is': 807074, 'closing is the': 183668, 'is the minimum': 452864, 'the minimum we': 860651, 'minimum we can': 533253, 'we can expect': 970945, 'airborne': 39830, 'jose please': 467319, 'help publix': 390386, 'in florida': 422934, 'florida hotline': 310949, 'hotline said': 405259, 'said publix': 731322, 'publix doesn': 688754, 'doesn allow': 251692, 'allow cashier': 45920, 'cashier to': 166639, 'we follow': 971578, 'follow guideline': 312398, 'guideline help': 368434, 'help covid': 389547, 'is airborne': 445433, 'airborne they': 39854, 'must change': 546577, 'change now': 172188, 'now protect': 575605, 'protect cashier': 684795, 'cashier with': 166668, 'jose please help': 467320, 'please help publix': 660077, 'help publix grocery': 390387, 'store in florida': 808302, 'in florida hotline': 422940, 'florida hotline said': 310950, 'hotline said publix': 405260, 'said publix doesn': 731324, 'publix doesn allow': 688755, 'doesn allow cashier': 251693, 'allow cashier to': 45921, 'cashier to wear': 166641, 'wear glove or': 974344, 'or mask we': 616074, 'mask we follow': 519510, 'we follow guideline': 971581, 'follow guideline help': 312399, 'guideline help covid': 368435, 'help covid 19': 389548, 'pandemic is airborne': 635755, 'is airborne they': 445435, 'airborne they must': 39855, 'they must change': 882701, 'must change now': 546580, 'change now protect': 172190, 'now protect cashier': 575606, 'protect cashier with': 684796, 'cashier with mask': 166670, 'itr': 463898, 'alan': 40655, 'beaulieu': 118646, 'edition': 268603, 'biweekly': 131921, 'market causing': 516159, 'causing concern': 168009, 'business join': 143970, 'join itr': 466758, 'itr president': 463899, 'president alan': 670749, 'alan beaulieu': 40656, 'beaulieu this': 118647, 'next edition': 561350, 'edition of': 268625, 'our biweekly': 622216, 'biweekly black': 131922, 'swan webinar': 829968, 'webinar series': 975096, 'oil price or': 597211, 'price or the': 675794, 'or the stock': 617398, 'stock market causing': 802382, 'market causing concern': 516160, 'causing concern for': 168011, 'concern for your': 192979, 'your business join': 1023064, 'business join itr': 143972, 'join itr president': 466759, 'itr president alan': 463900, 'president alan beaulieu': 670750, 'alan beaulieu this': 40657, 'beaulieu this friday': 118648, 'friday for the': 333225, 'the next edition': 861663, 'next edition of': 561351, 'edition of our': 268632, 'of our biweekly': 587427, 'our biweekly black': 622217, 'biweekly black swan': 131923, 'black swan webinar': 132138, 'swan webinar series': 829969, 'placed': 657867, 'the order': 862446, 'order are': 618052, 'are placed': 89095, 'placed over': 657912, 'phone or': 654986, 'their facebook': 873228, 'facebook page': 294983, 're able': 698167, 'sustain those': 829750, 'those cost': 891890, 'cost because': 207878, 'of help': 584540, 'from community': 334929, 'community donation': 189822, 'she said the': 756314, 'said the order': 731446, 'the order are': 862448, 'order are placed': 618054, 'are placed over': 89096, 'placed over the': 657913, 'over the phone': 630751, 'the phone or': 863696, 'phone or via': 654989, 'or via their': 617667, 'via their facebook': 956316, 'their facebook page': 873229, 'facebook page for': 294984, 'page for low': 633848, 'for low price': 323130, 'low price they': 505542, 'they re able': 882985, 're able to': 698169, 'able to sustain': 24556, 'to sustain those': 916078, 'sustain those cost': 829751, 'those cost because': 891891, 'cost because of': 207879, 'because of help': 119349, 'of help from': 584543, 'help from community': 389767, 'from community donation': 334930, 'christian we': 178130, 'opportunity right': 613675, 'practice two': 668696, 'two of': 937080, 'our value': 625252, 'and command': 60124, 'week you': 977294, 'can love': 158910, 'and obey': 67920, 'obey authority': 578379, 'authority by': 103698, 'by staying': 154109, 'owe it': 631820, 'to doctor': 904600, 'employee restaurant': 274148, 'christian we have': 178131, 'we have an': 971756, 'have an opportunity': 379268, 'an opportunity right': 56673, 'opportunity right now': 613676, 'now to practice': 576176, 'to practice two': 911966, 'practice two of': 668697, 'two of our': 937090, 'of our value': 587585, 'our value and': 625253, 'value and command': 952086, 'and command this': 60125, 'command this week': 188329, 'this week you': 891302, 'week you can': 977296, 'you can love': 1017721, 'can love your': 158912, 'neighbor and obey': 556978, 'and obey authority': 67921, 'obey authority by': 578380, 'authority by staying': 103699, 'by staying home': 154112, 'staying home we': 798628, 'home we owe': 402457, 'we owe it': 972681, 'owe it to': 631821, 'it to doctor': 461710, 'to doctor nurse': 904606, 'doctor nurse grocery': 251017, 'nurse grocery store': 577346, 'store employee restaurant': 807527, 'employee restaurant worker': 274151, 'restaurant worker and': 716813, 'worker and so': 1006335, 'and so many': 71846, 'so many more': 777677, 'to everybody': 905318, 'everybody working': 286509, 'pandemic thanks': 636643, 'and everybody': 62386, 'you to everybody': 1021772, 'to everybody working': 905323, 'everybody working on': 286510, 'working on the': 1008825, 'front line to': 338614, 'line to battle': 493479, 'battle the covid': 112825, '19 pandemic thanks': 9493, 'pandemic thanks to': 636645, 'thanks to hospital': 842235, 'employee emergency service': 273814, 'service and everybody': 752084, 'and everybody who': 62389, 'everybody who is': 286507, 'jennifer': 465090, 'chudy': 178299, 'portage': 664935, 'it wonderful': 462495, 'wonderful thing': 1004128, 'any way': 80034, 'can so': 159654, 'so happy': 777239, 'happy we': 377724, 'way said': 969851, 'said jennifer': 731176, 'jennifer chudy': 465093, 'chudy portage': 178300, 'portage store': 664936, 'store team': 810512, 'team leader': 835719, 'it wonderful thing': 462496, 'wonderful thing to': 1004130, 'thing to be': 884877, 'able to help': 24491, 'help people in': 390298, 'people in any': 648347, 'in any way': 420441, 'any way we': 80040, 'way we can': 970169, 'we can so': 971013, 'can so happy': 159656, 'so happy we': 777247, 'happy we can': 377726, 'can help in': 158626, 'help in this': 389912, 'in this way': 430043, 'this way said': 891136, 'way said jennifer': 969852, 'said jennifer chudy': 731177, 'jennifer chudy portage': 465094, 'chudy portage store': 178301, 'portage store team': 664937, 'store team leader': 810514, 'in disturbing': 422321, 'disturbing time': 248423, 'supermarket in disturbing': 820891, 'in disturbing time': 422324, 'disturbing time with': 248424, 'mineral': 532969, 'irreversible': 445103, 'texas potential': 839806, '10 each': 1409, 'each mineral': 264119, 'mineral level': 532970, 'level cut': 487545, 'cut if': 223368, 'if deal': 414030, 'deal go': 229412, 'through maybe': 894572, 'maybe price': 521779, 'my opinion': 549600, 'opinion it': 613472, 'doesn really': 251919, 'really matter': 702407, 'matter the': 520629, 'the damage': 852803, 'to shale': 914326, 'shale is': 754501, 'already done': 47301, 'and irreversible': 65382, 'texas potential for': 839807, 'potential for 10': 667070, 'for 10 each': 318612, '10 each mineral': 1410, 'each mineral level': 264120, 'mineral level cut': 532971, 'level cut if': 487546, 'cut if deal': 223369, 'if deal go': 414031, 'deal go through': 229413, 'go through maybe': 354249, 'through maybe price': 894573, 'maybe price will': 521780, 'price will go': 677567, 'will go up': 993563, 'go up but': 354423, 'up but in': 944523, 'in my opinion': 425608, 'my opinion it': 549603, 'opinion it doesn': 613473, 'it doesn really': 457639, 'doesn really matter': 251921, 'really matter the': 702408, 'matter the damage': 520630, 'the damage to': 852808, 'damage to shale': 225241, 'to shale is': 914328, 'shale is already': 754502, 'is already done': 445517, 'already done and': 47302, 'done and irreversible': 254774, 'walmart the': 965431, 'on response': 603166, 'response starting': 715793, 'starting march': 794970, 'march 15': 515073, '15 walmart': 3860, 'walmart store': 965415, 'and neighborhood': 67508, 'neighborhood market': 557136, 'open from': 612269, 'to 11': 899449, '11 until': 2606, 'notice online': 573327, 'shopping remains': 763738, 'remains open': 710039, 'walmart the latest': 965432, 'latest on response': 481477, 'on response starting': 603167, 'response starting march': 715794, 'starting march 15': 794971, 'march 15 walmart': 515077, '15 walmart store': 3861, 'walmart store and': 965416, 'store and neighborhood': 806304, 'and neighborhood market': 67509, 'neighborhood market will': 557137, 'will be open': 992591, 'be open from': 116244, 'open from to': 612272, 'from to 11': 338052, 'to 11 until': 899451, '11 until further': 2607, 'further notice online': 342110, 'notice online shopping': 573328, 'online shopping remains': 609246, 'shopping remains open': 763739, 'appealed': 82087, 'minister the': 533469, 'most hon': 542382, 'hon dr': 403035, 'minnis appealed': 533625, 'appealed to': 82092, 'to bahamian': 900997, 'in reaction': 427279, 'prime minister the': 678160, 'minister the most': 533471, 'the most hon': 860995, 'most hon dr': 542383, 'hon dr hubert': 403036, 'hubert minnis appealed': 409885, 'minnis appealed to': 533626, 'appealed to bahamian': 82093, 'to bahamian and': 900998, 'supply in reaction': 825408, 'in reaction to': 427280, 'reaction to news': 700219, 'trump is': 933639, 'is propaganda': 451099, 'propaganda artist': 684058, 'trump is propaganda': 933654, 'is propaganda artist': 451100, 'revers': 720509, 'asia petrochemical': 95214, 'share mixed': 755097, 'mixed on': 534637, 'on virus': 605055, 'virus fear': 958179, 'fear oil': 301266, 'oil revers': 597396, 'revers early': 720510, 'early loss': 264636, 'loss icis': 503697, 'petrochemical crude': 653680, 'supply energy': 825211, 'energy chemical': 276402, 'asia petrochemical share': 95218, 'petrochemical share mixed': 653701, 'share mixed on': 755098, 'mixed on virus': 534639, 'on virus fear': 605057, 'virus fear oil': 958180, 'fear oil revers': 301267, 'oil revers early': 597397, 'revers early loss': 720511, 'early loss icis': 264637, 'loss icis asia': 503698, 'icis asia petrochemical': 412746, 'asia petrochemical crude': 95215, 'petrochemical crude oil': 653681, 'oil price supply': 597280, 'price supply energy': 676707, 'supply energy chemical': 825212, 'unfolding': 941515, 'the unfolding': 870388, 'unfolding covid': 941516, 'far having': 298805, 'having little': 384140, 'change for': 172053, 'the worse': 872025, 'worse and': 1010863, 'and soon': 71999, 'soon if': 785744, 'if anxiety': 413822, 'anxiety driven': 78690, 'driven panic': 259335, 'by major': 153131, 'major food': 509333, 'food importer': 314915, 'importer take': 419209, 'take hold': 832188, 'hold the': 400014, 'food programme': 316058, 'programme news': 683343, 'news centre': 560308, 'the unfolding covid': 870389, 'unfolding covid 19': 941517, 'pandemic is so': 635796, 'is so far': 452004, 'so far having': 777035, 'far having little': 298806, 'having little impact': 384142, 'chain but that': 170567, 'but that could': 147284, 'that could change': 843344, 'could change for': 209010, 'change for the': 172056, 'for the worse': 326790, 'the worse and': 872027, 'worse and soon': 1010865, 'and soon if': 72001, 'soon if anxiety': 785745, 'if anxiety driven': 413823, 'anxiety driven panic': 78691, 'driven panic by': 259336, 'panic by major': 637984, 'by major food': 153132, 'major food importer': 509337, 'food importer take': 314916, 'importer take hold': 419210, 'take hold the': 832198, 'hold the world': 400025, 'world food programme': 1009556, 'food programme news': 316060, 'programme news centre': 683344, 'wa killed': 962491, 'killed here': 474590, 'in texas': 428888, 'texas because': 839744, 'price many': 675163, 'many here': 514133, 'here fear': 392965, 'fear greater': 301143, 'greater and': 363136, 'severe damage': 754006, 'the texas': 869337, 'texas economy': 839763, 'economy than': 268259, '19 he': 7468, 'if texas': 414928, 'texas loses': 839800, 'loses he': 503521, 'he done': 384916, 'he wa killed': 385606, 'wa killed here': 962492, 'killed here in': 474591, 'here in texas': 393186, 'in texas because': 428889, 'texas because of': 839745, 'because of low': 119372, 'of low oil': 586044, 'oil price many': 597188, 'price many here': 675164, 'many here fear': 514134, 'here fear greater': 392966, 'fear greater and': 301144, 'greater and more': 363138, 'and more severe': 67215, 'more severe damage': 540368, 'severe damage to': 754007, 'damage to the': 225242, 'to the texas': 917121, 'the texas economy': 869341, 'texas economy than': 839765, 'economy than covid': 268261, 'covid 19 he': 213194, '19 he know': 7474, 'he know if': 385176, 'know if texas': 476483, 'if texas loses': 414929, 'texas loses he': 839801, 'loses he done': 503522, 'please ask': 659673, 'to suspend': 916064, 'suspend consumer': 829551, 'card interest': 163559, 'interest during': 441341, 'the asset': 848977, 'asset to': 96480, 'we consumer': 971175, 'please ask to': 659678, 'ask to suspend': 95655, 'to suspend consumer': 916067, 'suspend consumer credit': 829553, 'consumer credit card': 197016, 'credit card interest': 216340, 'card interest during': 163560, 'interest during this': 441342, 'this time they': 890701, 'time they have': 897902, 'they have the': 882388, 'have the asset': 382961, 'the asset to': 848979, 'asset to deal': 96481, 'deal with this': 229585, 'with this we': 1001737, 'this we consumer': 891147, 'we consumer don': 971176, 'worker face': 1006894, 'an uncertain': 56822, 'uncertain future': 939587, 'future during': 342307, '19 quarantine': 9904, 'quarantine food': 692193, 'bank across': 109563, 'across arizona': 29264, 'arizona plan': 92849, 'face unprecedented': 294831, 'demand here': 235633, 'help ease': 389618, 'ease the': 265102, 'the burden': 850122, 'worker face an': 1006895, 'face an uncertain': 294294, 'an uncertain future': 56825, 'uncertain future during': 939588, 'future during the': 342308, 'covid 19 quarantine': 213642, '19 quarantine food': 9910, 'quarantine food bank': 692194, 'food bank across': 313510, 'bank across arizona': 109565, 'across arizona plan': 29265, 'arizona plan to': 92850, 'plan to face': 658289, 'to face unprecedented': 905578, 'face unprecedented demand': 294832, 'unprecedented demand here': 943117, 'demand here what': 235634, 'to help ease': 907500, 'help ease the': 389623, 'ease the burden': 265103, 'advertiser': 33170, 'soil': 781569, 'spat': 787631, 'hoped': 403824, 'meltdown': 527981, 'tomorrow advertiser': 924007, 'advertiser we': 33185, 'speak to': 787706, 'to denmark': 904172, 'denmark couple': 237011, 'couple who': 211710, 'who contracted': 988489, 'cruise they': 219713, 're back': 698337, 'home soil': 402096, 'soil man': 781572, 'man spat': 512241, 'spat at': 787632, 'at police': 100153, 'he hoped': 385096, 'hoped they': 403831, 'got coronavirus': 358504, 'coronavirus after': 205465, 'supermarket meltdown': 821503, 'meltdown and': 527982, 'local left': 498148, 'the dark': 852833, 'dark after': 225951, 'after sharing': 36178, 'sharing bus': 755512, 'bus with': 143111, '19 carrier': 5651, 'tomorrow advertiser we': 924008, 'advertiser we speak': 33186, 'we speak to': 973345, 'speak to denmark': 787711, 'to denmark couple': 904173, 'denmark couple who': 237012, 'couple who contracted': 211712, 'who contracted covid': 988490, '19 on cruise': 8940, 'on cruise they': 600179, 'cruise they re': 219715, 'they re back': 882999, 're back on': 698338, 'back on home': 107188, 'on home soil': 601354, 'home soil man': 402097, 'soil man spat': 781573, 'man spat at': 512242, 'spat at police': 787634, 'at police and': 100154, 'police and said': 662909, 'and said he': 70764, 'said he hoped': 731110, 'he hoped they': 385097, 'hoped they got': 403832, 'they got coronavirus': 882221, 'got coronavirus after': 358505, 'coronavirus after supermarket': 205468, 'after supermarket meltdown': 36261, 'supermarket meltdown and': 821504, 'meltdown and local': 527983, 'and local left': 66298, 'local left in': 498149, 'in the dark': 429122, 'the dark after': 852834, 'dark after sharing': 225952, 'after sharing bus': 36179, 'sharing bus with': 755513, 'bus with covid': 143112, 'covid 19 carrier': 212763, 'abhishek': 24333, 'muralidharan': 546146, 'whatpackaging': 982833, 'spends': 789066, 'raw': 697952, 'material': 520362, 'abhishek muralidharan': 24334, 'muralidharan of': 546147, 'of whatpackaging': 593073, 'whatpackaging say': 982834, 'food will': 317616, 'the manufacturing': 860027, 'manufacturing and': 513556, 'and packaging': 68615, 'packaging sector': 633569, 'consumer spends': 199109, 'spends will': 789077, 'hit due': 398217, 'the sourcing': 867502, 'sourcing of': 786618, 'of raw': 588756, 'raw production': 697990, 'production material': 682123, 'material plus': 520404, 'plus unavailability': 661706, 'unavailability and': 939436, 'and rising': 70543, 'rising cost': 723188, 'abhishek muralidharan of': 24335, 'muralidharan of whatpackaging': 546148, 'of whatpackaging say': 593074, 'whatpackaging say the': 982835, 'say the supply': 739307, 'the supply and': 868939, 'and demand of': 61164, 'demand of food': 235947, 'of food will': 583820, 'food will be': 317617, 'challenge to both': 171576, 'to both the': 901954, 'both the manufacturing': 136068, 'the manufacturing and': 860029, 'manufacturing and packaging': 513557, 'and packaging sector': 68616, 'packaging sector consumer': 633570, 'sector consumer spends': 744137, 'consumer spends will': 199110, 'spends will take': 789078, 'will take hit': 995071, 'take hit due': 832184, 'hit due to': 398218, 'to the sourcing': 917081, 'the sourcing of': 867503, 'sourcing of raw': 786619, 'of raw production': 588760, 'raw production material': 697991, 'production material plus': 682124, 'material plus unavailability': 520405, 'plus unavailability and': 661707, 'unavailability and rising': 939437, 'and rising cost': 70545, 'angeles': 76356, 'alert grocery': 41441, 'the los': 859735, 'los angeles': 503357, 'angeles area': 76363, 'area have': 92040, 'started offering': 794790, 'offering specific': 595262, 'risk population': 723831, 'population including': 664698, 'including senior': 432138, 'with disability': 998053, 'disability to': 243856, 'outbreak check': 628100, 'alert grocery store': 41442, 'in the los': 429331, 'the los angeles': 859736, 'los angeles area': 503360, 'angeles area have': 76364, 'area have started': 92045, 'have started offering': 382726, 'started offering specific': 794791, 'offering specific time': 595263, 'specific time for': 788262, 'time for at': 896692, 'for at risk': 319519, 'at risk population': 100390, 'risk population including': 723832, 'population including senior': 664700, 'including senior and': 432139, 'senior and those': 750212, 'and those with': 74044, 'those with disability': 892717, 'with disability to': 998066, 'disability to shop': 243857, 'to shop during': 914456, 'shop during the': 760119, 'the outbreak check': 862601, 'outbreak check with': 628104, 'store for hour': 807813, 'market basket': 516073, 'basket shaw': 112388, 'shaw employee': 755819, 'massachusetts test': 519926, 'market basket shaw': 516083, 'basket shaw employee': 112389, 'shaw employee in': 755820, 'employee in massachusetts': 273964, 'in massachusetts test': 425179, 'massachusetts test positive': 519927, 'uditraj': 937912, 'harvesting': 378649, 'exempt': 289963, 'insecticide': 439120, 'msp': 544574, 'uditraj appeal': 937913, 'appeal to': 82076, 'to central': 902564, 'central govt': 169393, 'govt harvesting': 361149, 'harvesting season': 378662, 'season is': 743406, 'ongoing abt': 607590, 'abt to': 27552, 'end reduce': 275946, 'reduce fuel': 705840, 'price exempt': 673728, 'exempt agri': 289964, 'agri equipment': 38838, 'equipment insecticide': 279759, 'insecticide from': 439121, 'from gst': 335709, 'gst ensure': 367552, 'ensure procurement': 278012, 'procurement at': 680107, 'at msp': 99785, 'msp 50': 544575, '50 cost': 19657, 'cost waive': 208153, 'waive interest': 964516, 'interest on': 441383, 'on crop': 600171, 'crop loan': 218936, 'loan ensure': 497432, 'ensure supply': 278042, 'uditraj appeal to': 937914, 'appeal to central': 82077, 'to central govt': 902567, 'central govt harvesting': 169397, 'govt harvesting season': 361150, 'harvesting season is': 378663, 'season is ongoing': 743409, 'is ongoing abt': 450516, 'ongoing abt to': 607591, 'abt to end': 27553, 'to end reduce': 905084, 'end reduce fuel': 275947, 'reduce fuel price': 705841, 'fuel price exempt': 340229, 'price exempt agri': 673729, 'exempt agri equipment': 289965, 'agri equipment insecticide': 38839, 'equipment insecticide from': 279760, 'insecticide from gst': 439122, 'from gst ensure': 335710, 'gst ensure procurement': 367553, 'ensure procurement at': 278013, 'procurement at msp': 680108, 'at msp 50': 99786, 'msp 50 cost': 544576, '50 cost waive': 19658, 'cost waive interest': 208154, 'waive interest on': 964517, 'interest on crop': 441384, 'on crop loan': 600172, 'crop loan ensure': 218937, 'loan ensure supply': 497433, 'ensure supply chain': 278043, 'pakistan yesterday': 634519, 'store full': 807896, 'buying in pakistan': 150535, 'in pakistan yesterday': 426450, 'pakistan yesterday and': 634520, 'yesterday and today': 1015670, 'and today grocery': 74222, 'grocery store full': 365418, 'store full of': 807897, 'full of ppl': 340748, 'just stop': 469906, 'stop doing': 804615, 'just stop doing': 469909, 'stop doing it': 804617, 'spurred': 791348, 'strategic': 812534, 'overproduction': 631407, 'detrimental': 239490, 'venezuela': 954428, 'algeria': 41630, 'ecuador': 268431, 'price spurred': 676585, 'spurred on': 791351, 'and saudi': 70933, 'arabia strategic': 83932, 'strategic overproduction': 812550, 'overproduction will': 631408, 'have significantly': 382553, 'significantly detrimental': 769565, 'detrimental effect': 239491, 'public finance': 687997, 'finance and': 306150, 'and thus': 74107, 'thus the': 895535, 'service of': 752632, 'vulnerable oil': 961057, 'producer venezuela': 680710, 'venezuela iraq': 954444, 'iraq algeria': 444750, 'algeria ecuador': 41635, 'oil price spurred': 597268, 'price spurred on': 676586, 'spurred on by': 791352, 'on by covid': 599761, '19 and saudi': 5098, 'and saudi arabia': 70934, 'saudi arabia strategic': 737213, 'arabia strategic overproduction': 83933, 'strategic overproduction will': 812551, 'overproduction will have': 631409, 'will have significantly': 993672, 'have significantly detrimental': 382554, 'significantly detrimental effect': 769566, 'detrimental effect on': 239492, 'effect on the': 269097, 'on the public': 604314, 'the public finance': 864809, 'public finance and': 687998, 'finance and thus': 306157, 'and thus the': 74112, 'thus the social': 895538, 'the social service': 867419, 'social service of': 779960, 'service of vulnerable': 752635, 'of vulnerable oil': 592872, 'vulnerable oil producer': 961058, 'oil producer venezuela': 597347, 'producer venezuela iraq': 680711, 'venezuela iraq algeria': 954445, 'iraq algeria ecuador': 444751, 'steep': 799377, 'intercity': 441307, 'china railway': 176897, 'railway to': 695721, 'offer steep': 594808, 'steep discount': 799383, 'discount on': 244505, 'on ticket': 604689, 'ticket to': 895671, 'encourage people': 275618, 'travel again': 930235, 'again state': 37180, 'state medium': 795769, 'medium report': 527249, 'report price': 712191, 'price slashed': 676459, 'slashed by': 773616, 'much 45': 544675, '45 on': 19123, 'on 200': 599048, '200 train': 13554, 'train service': 929277, 'for 25': 318777, '25 intercity': 15890, 'intercity railway': 441308, 'railway starting': 695715, 'starting wed': 795069, 'china railway to': 176898, 'railway to offer': 695722, 'to offer steep': 910849, 'offer steep discount': 594809, 'steep discount on': 799384, 'discount on ticket': 244515, 'on ticket to': 604690, 'ticket to encourage': 895672, 'to encourage people': 905064, 'encourage people to': 275620, 'people to travel': 649958, 'to travel again': 917721, 'travel again state': 930236, 'again state medium': 37181, 'state medium report': 795770, 'medium report price': 527253, 'report price slashed': 712193, 'price slashed by': 676461, 'slashed by much': 773618, 'by much 45': 153263, 'much 45 on': 544676, '45 on 200': 19124, 'on 200 train': 599049, '200 train service': 13555, 'train service for': 929278, 'service for 25': 752374, 'for 25 intercity': 318782, '25 intercity railway': 15891, 'intercity railway starting': 441309, 'railway starting wed': 695716, 'some stuff': 783978, 'stuff wa': 815237, 'shelf how': 757166, 'buying stuff': 151110, 'stuff without': 815260, 'without thinking': 1003000, 'thinking for': 885906, 'others 19': 621233, 'went for grocery': 979003, 'store to buy': 810760, 'to buy some': 902303, 'buy some stuff': 149215, 'some stuff wa': 783987, 'stuff wa shocked': 815240, 'to see empty': 914003, 'empty shelf how': 275071, 'shelf how people': 757170, 'are buying stuff': 85132, 'buying stuff without': 151114, 'stuff without thinking': 815261, 'without thinking for': 1003002, 'thinking for others': 885907, 'for others 19': 324182, 'ganja': 343418, 'the ganja': 856134, 'ganja price': 343419, 'by 50': 151659, '50 this': 19879, 'with global': 998616, 'market management': 516700, 'to the ganja': 916741, 'the ganja price': 856135, 'ganja price will': 343420, 'go up by': 354424, 'up by 50': 944546, 'by 50 this': 151673, '50 this is': 19880, 'is in line': 448783, 'line with global': 493576, 'with global market': 998618, 'global market management': 352027, 'sayentrepreneur': 739532, 'nk95': 563493, '3ply': 18386, 'syima': 830750, 'sayentrepreneur nk95': 739533, 'nk95 facemasks': 563494, 'facemasks 3ply': 295121, '3ply surgical': 18395, 'surgical we': 828387, 'have ready': 382173, 'ready stock': 700922, 'for good': 321923, 'quality surgical': 691854, 'surgical face': 828342, 'thermometer and': 879504, 'sanitizer ready': 735636, 'distribute for': 247977, 'are interested': 87554, 'interested to': 441490, 'buy email': 148560, 'email syima': 272312, 'syima com': 830751, 'sayentrepreneur nk95 facemasks': 739534, 'nk95 facemasks 3ply': 563495, 'facemasks 3ply surgical': 295122, '3ply surgical we': 18397, 'surgical we have': 828388, 'we have ready': 971915, 'have ready stock': 382174, 'ready stock for': 700923, 'stock for good': 802169, 'for good quality': 321941, 'good quality surgical': 357608, 'quality surgical face': 691855, 'surgical face mask': 828343, 'face mask thermometer': 294597, 'mask thermometer and': 519365, 'thermometer and hand': 879506, 'hand sanitizer ready': 375559, 'sanitizer ready to': 735637, 'ready to distribute': 700953, 'to distribute for': 904441, 'distribute for those': 247978, 'those who need': 892658, 'who need please': 989323, 'need please contact': 555438, 'contact me if': 200139, 'you are interested': 1017153, 'are interested to': 87558, 'interested to buy': 441491, 'to buy email': 902221, 'buy email syima': 148561, 'email syima com': 272313, 'icymi': 412862, 'icymi police': 412901, 'officer handed': 595664, 'handed out': 376073, 'out roll': 627119, 'paper at': 639892, 'at sydney': 100811, 'sydney supermarket': 830710, 'to calm': 902392, 'calm shopper': 156796, 'shopper who': 761825, 'buying during': 150212, 'icymi police officer': 412902, 'police officer handed': 663121, 'officer handed out': 595665, 'handed out roll': 376077, 'out roll of': 627121, 'toilet paper at': 921194, 'paper at sydney': 639903, 'at sydney supermarket': 100812, 'sydney supermarket to': 830717, 'supermarket to try': 823423, 'try to calm': 934609, 'to calm shopper': 902396, 'calm shopper who': 156799, 'shopper who are': 761826, 'who are panic': 988190, 'panic buying during': 637713, 'buying during the': 150214, 'during the epidemic': 263123, 'dougmcmillon': 256287, 'counted': 210182, 'essentialworker': 281936, 'everyday ceo': 286542, 'ceo dougmcmillon': 169690, 'dougmcmillon tell': 256288, 'tell lie': 836996, 'lie about': 488324, 'is protecting': 451106, 'protecting associate': 685180, 'associate we': 96905, 'no hand': 564395, 'sanitizer no': 735410, 'no ppe': 565162, 'ppe hundred': 667974, 'customer they': 222933, 'are counted': 85589, 'counted not': 210183, 'no option': 565002, 'option but': 614002, 'but come': 145427, 'work or': 1005555, 'paid essentialworker': 634005, 'essentialworker frontline': 281941, 'everyday ceo dougmcmillon': 286543, 'ceo dougmcmillon tell': 169691, 'dougmcmillon tell lie': 256289, 'tell lie about': 836997, 'lie about how': 488325, 'how the company': 408807, 'the company is': 851333, 'company is protecting': 190808, 'is protecting associate': 451107, 'protecting associate we': 685181, 'associate we have': 96906, 'have no hand': 381632, 'no hand sanitizer': 564397, 'hand sanitizer no': 375503, 'sanitizer no ppe': 735418, 'no ppe hundred': 565164, 'ppe hundred of': 667975, 'hundred of customer': 410997, 'of customer they': 582285, 'customer they are': 222934, 'they are counted': 881238, 'are counted not': 85590, 'counted not limited': 210184, 'not limited and': 570413, 'limited and we': 492603, 'have no option': 381642, 'no option but': 565003, 'option but come': 614003, 'but come to': 145429, 'come to work': 187617, 'to work or': 918761, 'work or not': 1005565, 'or not get': 616297, 'not get paid': 569601, 'get paid essentialworker': 347765, 'paid essentialworker frontline': 634006, 'government want': 360779, 'provide home': 686350, 'service take': 752891, 'take online': 832421, 'shopping like': 763160, 'like amazon': 489749, 'amazon flipkart': 50942, 'flipkart for': 310615, 'work it': 1005384, 'it also': 456417, 'if government want': 414177, 'government want to': 360781, 'want to provide': 966092, 'to provide home': 912404, 'provide home delivery': 686351, 'home delivery service': 401043, 'delivery service take': 234467, 'service take online': 752892, 'take online shopping': 832422, 'online shopping like': 609173, 'shopping like amazon': 763161, 'like amazon flipkart': 489752, 'amazon flipkart for': 50944, 'flipkart for work': 310617, 'for work it': 327925, 'work it also': 1005386, 'it also help': 456430, 'also help in': 48347, 'help in social': 389905, 'cork': 203545, 'pound': 667357, 'and hotel': 64764, 'hotel close': 405132, '19 cork': 6043, 'cork based': 203546, 'based fruit': 111591, 'vegetable supplier': 954101, 'supplier ha': 824538, 'been left': 121448, 'with almost': 997170, 'almost 60': 46517, '60 00': 20858, '00 pound': 444, 'pound of': 667390, 'of fresh': 583941, 'fresh stock': 333077, 'stock appealing': 801847, 'charity who': 173716, 'who could': 988503, 'could need': 209422, 'make contact': 509795, 'restaurant and hotel': 716289, 'and hotel close': 64768, 'hotel close to': 405133, 'close to limit': 182905, 'covid 19 cork': 212863, '19 cork based': 6044, 'cork based fruit': 203547, 'based fruit and': 111592, 'and vegetable supplier': 74896, 'vegetable supplier ha': 954102, 'supplier ha been': 824539, 'ha been left': 369842, 'been left with': 121449, 'left with almost': 485742, 'with almost 60': 997173, 'almost 60 00': 46518, '60 00 pound': 20859, '00 pound of': 446, 'pound of fresh': 667396, 'of fresh stock': 583948, 'fresh stock appealing': 333078, 'stock appealing to': 801848, 'appealing to charity': 82106, 'to charity who': 902662, 'charity who could': 173718, 'who could need': 988508, 'could need food': 209423, 'need food to': 554811, 'food to make': 317270, 'to make contact': 909639, 'uptick': 947902, 'york food': 1016615, 'pantry face': 639575, 'unprecedented and': 943077, 'and extreme': 62565, 'extreme uptick': 293840, 'uptick in': 947905, 'need via': 556158, 'new york food': 559930, 'york food pantry': 1016616, 'food pantry face': 315776, 'pantry face an': 639576, 'face an unprecedented': 294295, 'an unprecedented and': 56880, 'unprecedented and extreme': 943079, 'and extreme uptick': 62566, 'extreme uptick in': 293841, 'uptick in need': 947910, 'in need via': 425779, 'yelp': 1015283, 'businesstrategyandprofitability': 144796, 'financialnews': 306704, 'mobilepayments': 535058, 'onlineordering': 609847, 'report yelp': 712439, 'yelp finding': 1015286, 'finding show': 307534, 'pandemic stricken': 636571, 'stricken businesstrategyandprofitability': 813592, 'businesstrategyandprofitability covid': 144797, '19 delivery': 6474, 'delivery financialnews': 233996, 'financialnews food': 306705, 'beverage mobilepayments': 129018, 'mobilepayments onlineordering': 535059, 'onlineordering sustainability': 609850, 'sustainability trend': 829782, 'report yelp finding': 712440, 'yelp finding show': 1015287, 'finding show consumer': 307535, 'interest in pandemic': 441357, 'in pandemic stricken': 426467, 'pandemic stricken businesstrategyandprofitability': 636572, 'stricken businesstrategyandprofitability covid': 813593, 'businesstrategyandprofitability covid 19': 144798, 'covid 19 delivery': 212927, '19 delivery financialnews': 6475, 'delivery financialnews food': 233997, 'financialnews food beverage': 306706, 'food beverage mobilepayments': 313744, 'beverage mobilepayments onlineordering': 129019, 'mobilepayments onlineordering sustainability': 535060, 'onlineordering sustainability trend': 609851, 'are healthy': 87062, 'no risk': 565373, 'no symptom': 565654, 'not use': 572353, 'use supermarket': 949619, 'supermarket home': 820778, 'time save': 897609, 'save this': 737682, 'this capacity': 886696, 'capacity for': 162519, 'you are healthy': 1017139, 'are healthy at': 87064, 'healthy at no': 387538, 'at no risk': 99895, 'no risk and': 565374, 'risk and have': 723373, 'have no symptom': 381658, 'no symptom of': 565658, '19 please do': 9715, 'do not use': 249882, 'not use supermarket': 572360, 'use supermarket home': 949621, 'supermarket home delivery': 820779, 'home delivery slot': 401047, 'slot at this': 774125, 'this time save': 890685, 'time save this': 897610, 'save this capacity': 737683, 'this capacity for': 886697, 'capacity for those': 162525, 'who need it': 989315, 'admission': 32580, 'so online': 777951, 'almost impossible': 46671, 'impossible with': 419410, 'supermarket pretty': 822051, 'in breakdown': 420956, 'breakdown all': 138831, 'all urban': 45336, 'urban supermarket': 948126, 'visit are': 959185, 'are opportunity': 88825, '19 transmission': 11542, 'transmission and': 929724, 'hospital admission': 404262, 'admission will': 32585, 'increase result': 433040, 'result worrying': 717663, 'worrying through': 1010839, 'so online grocery': 777952, 'grocery shopping is': 365043, 'shopping is now': 763065, 'is now almost': 450258, 'now almost impossible': 573975, 'almost impossible with': 46673, 'impossible with the': 419411, 'with the system': 1001512, 'the system for': 869094, 'system for all': 831167, 'for all supermarket': 319173, 'all supermarket pretty': 44550, 'supermarket pretty much': 822053, 'pretty much in': 671456, 'much in breakdown': 545007, 'in breakdown all': 420957, 'breakdown all urban': 138832, 'all urban supermarket': 45337, 'urban supermarket visit': 948127, 'supermarket visit are': 823655, 'visit are opportunity': 959186, 'are opportunity for': 88826, 'opportunity for covid': 613609, 'covid 19 transmission': 213976, '19 transmission and': 11543, 'transmission and hospital': 929725, 'and hospital admission': 64742, 'hospital admission will': 404264, 'admission will increase': 32586, 'will increase result': 993823, 'increase result worrying': 433042, 'result worrying through': 717664, 'worrying through this': 1010840, 'through this dilemma': 894813, 'goto': 359053, 'stayathomesavelives': 797795, 'have launched': 381258, 'launched volunteer': 482048, 'volunteer shopping': 960328, 'shopping card': 762288, 'people unable': 650040, 'shopping customer': 762427, 'can buy': 157809, 'buy card': 148473, 'card online': 163596, 'online top': 609619, 'volunteer family': 960256, 'or friend': 615394, 'friend to': 333843, 'shopping goto': 762801, 'goto stayathomesavelives': 359058, 'asda have launched': 94924, 'have launched volunteer': 381264, 'launched volunteer shopping': 482050, 'volunteer shopping card': 960329, 'shopping card to': 762289, 'card to people': 163684, 'to people unable': 911643, 'people unable to': 650041, 'unable to go': 939332, 'buy their shopping': 149320, 'their shopping customer': 874715, 'shopping customer can': 762428, 'customer can buy': 222221, 'can buy card': 157816, 'buy card online': 148474, 'card online top': 163599, 'online top up': 609620, 'top up and': 925747, 'up and give': 944327, 'and give to': 63669, 'give to volunteer': 350797, 'to volunteer family': 918231, 'volunteer family or': 960257, 'family or friend': 298129, 'or friend to': 615397, 'friend to pay': 333847, 'to pay for': 911529, 'pay for shopping': 644901, 'for shopping goto': 325582, 'shopping goto stayathomesavelives': 762802, 'italystaystrong': 462974, 'the still': 867887, 'still isn': 800756, 'isn in': 454553, 'any sort': 79834, 'of lock': 585945, 'with spike': 1000918, 'high death': 394983, 'death more': 230130, 'outside than': 629583, 'usual and': 950883, 'before opening': 122975, 'time wa': 898199, 'wa joke': 962445, 'joke uk': 467150, 'uk coronacrisisuk': 938275, 'coronacrisisuk nh': 204893, 'nh stayathome': 562114, 'stayathome stayhomestaysafe': 797654, 'stayhomestaysafe italystaystrong': 798517, 'and the still': 73594, 'the still isn': 867888, 'still isn in': 800757, 'isn in any': 454554, 'in any sort': 420438, 'any sort of': 79835, 'sort of lock': 786128, 'of lock down': 585946, 'lock down with': 499063, 'down with spike': 257503, 'with spike in': 1000919, 'spike in high': 789300, 'in high death': 423679, 'high death more': 394984, 'death more people': 230131, 'more people outside': 540035, 'people outside than': 649033, 'outside than usual': 629584, 'than usual and': 841388, 'usual and the': 950885, 'supermarket before opening': 819350, 'before opening time': 122979, 'opening time wa': 612932, 'time wa joke': 898202, 'wa joke uk': 962446, 'joke uk coronacrisisuk': 467151, 'uk coronacrisisuk nh': 938277, 'coronacrisisuk nh stayathome': 204894, 'nh stayathome stayhomestaysafe': 562115, 'stayathome stayhomestaysafe italystaystrong': 797655, 'rwandan': 728756, 'opting': 613966, 'more rwandan': 540288, 'rwandan are': 728757, 'are opting': 88827, 'opting for': 613967, 'more rwandan are': 540289, 'rwandan are opting': 728760, 'are opting for': 88828, 'opting for online': 613969, 'online shopping amid': 609025, 'in desperation': 422214, 'desperation new': 238602, 'york state': 1016665, 'state pay': 795852, '15 time': 3851, 'the normal': 861859, 'normal price': 567264, 'in desperation new': 422215, 'desperation new york': 238603, 'new york state': 559950, 'york state pay': 1016669, 'state pay up': 795853, 'up to 15': 946323, 'to 15 time': 899504, '15 time the': 3852, 'time the normal': 897862, 'the normal price': 861865, 'normal price for': 567273, 'price for medical': 674000, 'for medical equipment': 323379, 'king': 475244, 'cresskill': 216660, 'enjoyed': 277215, 'tpr': 928087, 'payitforward': 645530, 'supportsmallbusiness': 827283, 'and thank': 73155, 'thank grocery': 841590, 'worker hope': 1007135, 'everyone at': 286712, 'at king': 99380, 'king in': 475268, 'in cresskill': 421865, 'cresskill enjoyed': 216661, 'enjoyed the': 277221, 'the tpr': 869846, 'tpr lunch': 928088, 'lunch payitforward': 506740, 'payitforward supportsmallbusiness': 645531, 'our local restaurant': 623784, 'local restaurant and': 498336, 'restaurant and thank': 716302, 'and thank grocery': 73157, 'thank grocery store': 841591, 'store worker hope': 811525, 'worker hope everyone': 1007137, 'hope everyone at': 403459, 'everyone at king': 286716, 'at king in': 99383, 'king in cresskill': 475269, 'in cresskill enjoyed': 421866, 'cresskill enjoyed the': 216662, 'enjoyed the tpr': 277222, 'the tpr lunch': 869847, 'tpr lunch payitforward': 928089, 'lunch payitforward supportsmallbusiness': 506741, 'shelteringinplace': 757976, 'normal some': 567326, 'clerk safe': 181759, 'please shelteringinplace': 660503, 'shelteringinplace and': 757979, 'sick yes': 768689, 'yes meant': 1015486, 'yell that': 1015216, 'real take': 701383, 'it seriously': 460987, 'new normal some': 559170, 'normal some tip': 567327, 'keep you and': 472231, 'you and your': 1017015, 'and your store': 76099, 'your store clerk': 1025965, 'store clerk safe': 807023, 'clerk safe in': 181760, 'safe in the': 729770, 'age of please': 37871, 'of please shelteringinplace': 588171, 'please shelteringinplace and': 660504, 'shelteringinplace and do': 757980, 'feel sick yes': 302847, 'sick yes meant': 768690, 'yes meant to': 1015487, 'meant to yell': 524915, 'to yell that': 918877, 'yell that is': 1015217, 'that is real': 844644, 'is real take': 451282, 'real take it': 701385, 'take it seriously': 832254, 'discovery': 244729, 'thermal': 879491, 'detecting': 239346, 'camera': 157105, 'interesting discovery': 441544, 'discovery consumer': 244730, 'consumer thermal': 199274, 'thermal technology': 879499, 'technology will': 836396, 'not work': 572525, 'medical use': 526492, 'use case': 949093, 'case such': 166044, 'such detecting': 816444, 'detecting covid': 239347, '19 fever': 6974, 'fever here': 303676, 'one pro': 606919, 'pro camera': 679102, 'camera in': 157118, 'in action': 420011, 'action body': 29976, 'body temperature': 133895, 'temperature is': 837377, 'is way': 453787, 'too low': 924876, 'low cc': 505185, 'interesting discovery consumer': 441545, 'discovery consumer thermal': 244732, 'consumer thermal technology': 199275, 'thermal technology will': 879500, 'technology will not': 836397, 'will not work': 994287, 'not work for': 572530, 'work for medical': 1005161, 'for medical use': 323386, 'medical use case': 526493, 'use case such': 949094, 'case such detecting': 166045, 'such detecting covid': 816445, 'detecting covid 19': 239348, 'covid 19 fever': 213085, '19 fever here': 6975, 'fever here the': 303677, 'here the one': 393659, 'the one pro': 862217, 'one pro camera': 606920, 'pro camera in': 679103, 'camera in action': 157119, 'in action body': 420013, 'action body temperature': 29978, 'body temperature is': 133896, 'temperature is way': 837378, 'is way too': 453796, 'way too low': 970128, 'too low cc': 924877, 'robust': 724830, 'infographic that': 437640, 'that show': 846297, 'how highly': 408000, 'highly complex': 396039, 'complex the': 192417, 'international supply': 441857, 'for pasta': 324410, 'pasta is': 643743, 'is staple': 452225, 'staple struggling': 793991, 'demand result': 236140, 'of industrial': 585145, 'industrial food': 435539, 'food manufacturing': 315378, 'manufacturing supply': 513670, 'always felt': 49553, 'felt robust': 303444, 'robust but': 724835, 'ha exposed': 370566, 'exposed area': 292829, 'for innovation': 322590, 'infographic that show': 437641, 'that show how': 846299, 'show how highly': 766978, 'how highly complex': 408001, 'highly complex the': 396040, 'complex the international': 192418, 'the international supply': 858372, 'international supply chain': 441858, 'chain for pasta': 170718, 'for pasta is': 324411, 'pasta is staple': 643745, 'is staple struggling': 452226, 'staple struggling to': 793992, 'meet demand result': 527475, 'demand result of': 236141, 'result of industrial': 717598, 'of industrial food': 585146, 'industrial food manufacturing': 435541, 'food manufacturing supply': 315382, 'manufacturing supply chain': 513671, 'supply chain have': 824969, 'chain have always': 170757, 'have always felt': 379225, 'always felt robust': 49554, 'felt robust but': 303445, 'robust but this': 724836, 'but this pandemic': 147554, 'this pandemic ha': 889390, 'pandemic ha exposed': 635544, 'ha exposed area': 370568, 'exposed area for': 292830, 'area for innovation': 92014, 'stabbing': 791771, 'lg': 487892, 'government cannot': 359966, 'stop young': 805296, 'people stabbing': 649524, 'stabbing themselves': 791774, 'themselves how': 876824, 'they going': 882210, 'stop these': 805172, 'bastard going': 112481, 'pub come': 687699, 'know lg': 476564, 'if this government': 415154, 'this government cannot': 887735, 'government cannot stop': 359968, 'cannot stop young': 162141, 'stop young people': 805297, 'young people stabbing': 1022646, 'people stabbing themselves': 649525, 'stabbing themselves how': 791775, 'themselves how are': 876825, 'how are they': 407418, 'are they going': 91002, 'they going to': 882212, 'going to stop': 355725, 'to stop these': 915586, 'stop these bastard': 805173, 'these bastard going': 879677, 'bastard going to': 112482, 'to the pub': 916991, 'the pub come': 864769, 'pub come on': 687700, 'come on you': 187453, 'on you know': 605428, 'you know lg': 1019506, 'mathew': 520489, 'mcconaughey': 522109, 'coronaviruses': 207120, 'mathew mcconaughey': 520490, 'mcconaughey on': 522110, 'on coronaviruses': 600128, 'coronaviruses news': 207121, 'news celebrity': 560305, 'celebrity hope': 168886, 'hope toiletpaper': 403749, 'toiletpaperpanic movie': 923226, 'mathew mcconaughey on': 520491, 'mcconaughey on coronaviruses': 522111, 'on coronaviruses news': 600129, 'coronaviruses news celebrity': 207122, 'news celebrity hope': 560306, 'celebrity hope toiletpaper': 168887, 'hope toiletpaper toiletpaperpanic': 403750, 'toiletpaper toiletpaperpanic movie': 922698, 'morbidity': 538465, 'npa': 576605, 'rajan': 696171, 'just covid': 468535, 'hit people': 398372, 'with pre': 1000281, 'pre existing': 669167, 'existing condition': 290293, 'condition hard': 193456, 'hard indian': 377950, 'indian economy': 434820, 'ha co': 370183, 'co morbidity': 184885, 'morbidity like': 538470, 'like huge': 490460, 'huge npa': 410100, 'npa weak': 576606, 'weak growth': 974023, 'growth low': 367415, 'low consumer': 505197, 'spending it': 788886, 'will hit': 993748, 'economy hard': 267928, 'hard it': 377954, 'to employ': 905014, 'employ highly': 273441, 'highly experienced': 396065, 'experienced staff': 291604, 'staff like': 792615, 'like rajan': 491058, 'rajan and': 696172, 'and curb': 60801, 'the wave': 871136, 'just covid 19': 468536, '19 hit people': 7549, 'hit people with': 398374, 'people with pre': 650471, 'with pre existing': 1000282, 'pre existing condition': 669168, 'existing condition hard': 290297, 'condition hard indian': 193458, 'hard indian economy': 377951, 'indian economy ha': 434822, 'economy ha co': 267917, 'ha co morbidity': 370184, 'co morbidity like': 184887, 'morbidity like huge': 538471, 'like huge npa': 490461, 'huge npa weak': 410101, 'npa weak growth': 576607, 'weak growth low': 974024, 'growth low consumer': 367416, 'low consumer spending': 505198, 'consumer spending it': 199072, 'spending it will': 788889, 'it will hit': 462403, 'will hit the': 993749, 'hit the economy': 398428, 'the economy hard': 853977, 'economy hard it': 267929, 'hard it is': 377956, 'advisable to employ': 33567, 'to employ highly': 905016, 'employ highly experienced': 273442, 'highly experienced staff': 396067, 'experienced staff like': 291605, 'staff like rajan': 792618, 'like rajan and': 491059, 'rajan and curb': 696173, 'and curb the': 60802, 'curb the wave': 220586, 'prof': 682333, 'miguel': 531253, 'gomez': 356167, 'chain because': 170544, 'are longer': 87876, 'longer they': 502087, 'be disrupted': 114494, 'disrupted than': 246413, 'than domestic': 840512, 'chain faculty': 170689, 'faculty fellow': 296045, 'fellow and': 303265, 'and prof': 69586, 'prof miguel': 682360, 'miguel gomez': 531254, 'gomez tell': 356172, 'tell supplychains': 837072, 'global supply chain': 352232, 'supply chain because': 824914, 'chain because they': 170546, 'they are longer': 881328, 'are longer they': 87879, 'longer they are': 502088, 'they are more': 881336, 'to be disrupted': 901211, 'be disrupted than': 114495, 'disrupted than domestic': 246414, 'than domestic supply': 840513, 'domestic supply chain': 253235, 'supply chain faculty': 824954, 'chain faculty fellow': 170690, 'faculty fellow and': 296046, 'fellow and prof': 303266, 'and prof miguel': 69587, 'prof miguel gomez': 682361, 'miguel gomez tell': 531256, 'gomez tell supplychains': 356173, 'ebt': 266575, 'reimbursing': 708239, 'currently on': 221607, 'snap ebt': 776091, 'ebt food': 266582, 'food stamp': 316726, 'stamp is': 793426, 'is reimbursing': 451399, 'reimbursing grocery': 708240, 'grocery purchase': 364882, 'purchase one': 689597, 'one time': 607252, 'time only': 897415, 'only up': 611405, '50 sign': 19848, 'the type': 870164, 'of relief': 588913, 'relief we': 709497, 'family barely': 297647, 'barely making': 111021, 'making end': 511038, 'meet and': 527414, 'getting their': 349363, 'hour cut': 405513, 'cut or': 223459, 'or laid': 615920, 'you re currently': 1020598, 're currently on': 698495, 'currently on snap': 221612, 'on snap ebt': 603514, 'snap ebt food': 776092, 'ebt food stamp': 266583, 'food stamp is': 316736, 'stamp is reimbursing': 793427, 'is reimbursing grocery': 451400, 'reimbursing grocery purchase': 708241, 'grocery purchase one': 364884, 'purchase one time': 689598, 'one time only': 607260, 'time only up': 897420, 'only up to': 611406, 'to 50 sign': 899747, '50 sign up': 19849, 'sign up at': 769248, 'up at this': 944443, 'at this is': 101237, 'is the type': 452966, 'the type of': 870165, 'type of relief': 937578, 'of relief we': 588917, 'relief we need': 709498, 'we need for': 972485, 'need for family': 554840, 'for family barely': 321384, 'family barely making': 297648, 'barely making end': 111022, 'making end meet': 511039, 'end meet and': 275875, 'meet and getting': 527415, 'and getting their': 63627, 'getting their hour': 349368, 'their hour cut': 873594, 'hour cut or': 405516, 'cut or laid': 223462, 'or laid off': 615921, 'june': 467985, 'aftermath': 36649, 'following sunday': 312863, 'sunday signing': 818265, 'signing off': 769639, 'off of': 594001, 'opec agreement': 611834, 'record million': 705026, 'barrel day': 111210, 'in may': 425193, 'may amp': 520922, 'amp june': 54036, 'june price': 468011, 'little changed': 495283, 'changed in': 172494, 'in aftermath': 420096, 'aftermath record': 36661, 'record oil': 705038, 'cut fail': 223327, 'make wave': 510701, 'wave in': 969353, 'in hit': 423762, 'following sunday signing': 312864, 'sunday signing off': 818266, 'signing off of': 769640, 'off of opec': 594007, 'of opec agreement': 587283, 'opec agreement to': 611836, 'cut production by': 223502, 'production by record': 681952, 'by record million': 153737, 'record million barrel': 705027, 'million barrel day': 532085, 'barrel day in': 111212, 'day in may': 227801, 'in may amp': 425194, 'may amp june': 520923, 'amp june price': 54037, 'june price little': 468012, 'price little changed': 675075, 'little changed in': 495284, 'changed in aftermath': 172495, 'in aftermath record': 420097, 'aftermath record oil': 36662, 'record oil output': 705039, 'oil output cut': 596997, 'output cut fail': 629251, 'cut fail to': 223328, 'fail to make': 296109, 'to make wave': 909763, 'make wave in': 510702, 'wave in hit': 969354, 'essential check': 280889, 'please remember': 660366, 'least metre': 484552, 'go out for': 353953, 'out for food': 626119, 'for food essential': 321580, 'food essential check': 314377, 'essential check out': 280891, 'our latest update': 623683, 'latest update on': 481591, 'update on supermarket': 947135, 'on supermarket opening': 603799, 'opening hour please': 612857, 'hour please remember': 405865, 'please remember to': 660376, 'remember to stay': 710385, 'stay at least': 796771, 'at least metre': 99523, 'least metre apart': 484553, 'metre apart from': 529822, 'apart from others': 81270, '100 people': 2014, 'every store': 286216, 'store put': 809710, 'put essential': 690563, 'grocery pharmacy': 364844, 'pharmacy health': 654342, 'care at': 163855, 'at greater': 98801, 'greater risk': 363226, 'risk 19': 723344, '100 people in': 2018, 'people in every': 648374, 'in every store': 422690, 'every store every': 286218, 'store every day': 807651, 'every day the': 285849, 'day the amount': 228481, 'people in retail': 648423, 'retail store put': 718687, 'store put essential': 809711, 'put essential worker': 690564, 'essential worker grocery': 281833, 'worker grocery pharmacy': 1007062, 'grocery pharmacy health': 364846, 'pharmacy health care': 654343, 'health care at': 386220, 'care at greater': 163856, 'at greater risk': 98802, 'greater risk 19': 363227, 'chosen': 178028, 'pictured': 656223, 'bcdocs': 113321, 'am an': 49883, 'emergency physician': 272872, 'physician my': 655539, 'my increased': 548842, 'increased exposure': 433314, 'exposure mean': 292988, 'have chosen': 379968, 'chosen to': 178036, 'isolate from': 454862, 'safe this': 730033, 'daughter pictured': 226896, 'pictured with': 656230, 'their cousin': 872908, 'cousin with': 212098, 'with whom': 1002096, 'whom they': 990572, 're staying': 699580, 'staying if': 798631, 'this you': 891611, 'home stayhome': 402127, 'stayhome bcdocs': 797948, 'am an emergency': 49884, 'an emergency physician': 55685, 'emergency physician my': 272875, 'physician my increased': 655540, 'my increased exposure': 548843, 'increased exposure mean': 433315, 'exposure mean that': 292989, 'mean that have': 524677, 'that have chosen': 844200, 'have chosen to': 379969, 'chosen to isolate': 178037, 'to isolate from': 908537, 'isolate from my': 454863, 'from my family': 336506, 'my family to': 548231, 'family to keep': 298329, 'them safe this': 876238, 'safe this is': 730036, 'is how see': 448595, 'how see my': 408634, 'see my daughter': 745450, 'my daughter pictured': 547935, 'daughter pictured with': 226897, 'pictured with their': 656231, 'with their cousin': 1001563, 'their cousin with': 872909, 'cousin with whom': 212099, 'with whom they': 1002097, 'whom they re': 990573, 'they re staying': 883131, 're staying if': 699583, 'staying if can': 798632, 'if can do': 413923, 'do this you': 250375, 'this you can': 891613, 'you can stay': 1017792, 'can stay home': 159739, 'stay home stayhome': 797005, 'home stayhome bcdocs': 402128, 'gaining': 342872, '29': 16452, '2017': 13849, 'grocery is': 364636, 'is gaining': 447997, 'gaining momentum': 342881, 'momentum with': 536162, 'with sale': 1000553, 'sale estimated': 732189, 'estimated to': 282307, 'reach 29': 699874, '29 billion': 16468, 'in 2021': 419866, '2021 more': 14784, 'than double': 840516, 'double the': 256065, 'the 14': 847890, '14 billion': 3427, 'in 2017': 419778, '2017 how': 13855, 'are grocer': 86963, 'grocer handling': 364135, 'handling the': 376390, 'the constant': 851473, 'constant competition': 195608, 'offer both': 594543, 'both online': 135991, 'store option': 809308, 'option ecommerce': 614023, 'ecommerce robot': 266851, 'online grocery is': 608320, 'grocery is gaining': 364638, 'is gaining momentum': 447998, 'gaining momentum with': 342884, 'momentum with sale': 536163, 'with sale estimated': 1000555, 'sale estimated to': 732190, 'estimated to reach': 282311, 'to reach 29': 912790, 'reach 29 billion': 699875, '29 billion in': 16469, 'billion in 2021': 130837, 'in 2021 more': 419870, '2021 more than': 14785, 'more than double': 540608, 'than double the': 840519, 'double the 14': 256066, 'the 14 billion': 847891, '14 billion in': 3428, 'billion in 2017': 130835, 'in 2017 how': 419779, '2017 how are': 13856, 'how are grocer': 407403, 'are grocer handling': 86964, 'grocer handling the': 364136, 'handling the constant': 376391, 'the constant competition': 851474, 'constant competition to': 195609, 'competition to offer': 191747, 'to offer both': 910827, 'offer both online': 594544, 'both online and': 135992, 'online and in': 607823, 'and in store': 65071, 'in store option': 428438, 'store option ecommerce': 809309, 'option ecommerce robot': 614025, 'puppet': 689297, 'asleep': 96184, 'waking': 964662, 'censor': 169013, 'good question': 357609, 'question consider': 693566, 'this control': 886856, 'control the': 202161, 'are sell': 89944, 'out puppet': 627078, 'puppet 90': 689298, '90 are': 23276, 'are asleep': 84651, 'asleep know': 96191, 'to wake': 918288, 'the 90': 848210, '90 the': 23345, 'the waking': 871036, 'waking up': 964665, 'the censor': 850589, 'censor the': 169014, '90 asleep': 23278, 'good question consider': 357610, 'question consider this': 693567, 'consider this control': 195159, 'this control the': 886857, 'control the world': 202177, 'world are sell': 1009323, 'are sell out': 89945, 'sell out puppet': 748841, 'out puppet 90': 627079, 'puppet 90 are': 689299, '90 are asleep': 23277, 'are asleep know': 84652, 'asleep know and': 96192, 'know and are': 476253, 'and are trying': 58371, 'trying to wake': 934897, 'to wake up': 918290, 'wake up the': 964629, 'up the 90': 946153, 'the 90 the': 848214, '90 the do': 23347, 'the do not': 853450, 'not want the': 572445, 'want the waking': 965965, 'the waking up': 871037, 'waking up the': 964667, '90 the censor': 23346, 'the censor the': 850590, 'censor the to': 169016, 'the to keep': 869683, 'keep the 90': 472022, 'the 90 asleep': 848213, 'heart hurt': 388300, 'hurt for': 411574, 'this 27': 886161, 'old essential': 598243, 'worker black': 1006532, 'disability sacrificed': 243850, 'sacrificed by': 729122, 'by giant': 152677, 'food no': 315540, 'glove no': 352804, 'mask no': 519004, 'no sanitizer': 565405, 'sanitizer her': 735077, 'her mom': 392197, 'mom say': 535800, 'say gone': 738692, 'gone for': 356277, 'my heart hurt': 548654, 'heart hurt for': 388301, 'hurt for the': 411575, 'for the loss': 326540, 'loss of this': 503755, 'of this 27': 591932, 'this 27 year': 886162, 'year old essential': 1014825, 'old essential worker': 598244, 'essential worker black': 281821, 'worker black woman': 1006533, 'black woman with': 132158, 'woman with disability': 1003696, 'with disability sacrificed': 998063, 'disability sacrificed by': 243851, 'sacrificed by giant': 729123, 'by giant food': 152679, 'giant food no': 349774, 'food no glove': 315544, 'no glove no': 564356, 'glove no mask': 352808, 'no mask no': 564710, 'mask no sanitizer': 519013, 'no sanitizer her': 565408, 'sanitizer her mom': 735078, 'her mom say': 392198, 'mom say gone': 535801, 'say gone for': 738693, 'gone for 20': 356278, 'upshot': 947846, 'armageddon': 92923, 'coronageddon': 204956, 'one unexpected': 607324, 'unexpected upshot': 941391, 'upshot of': 947847, 'of armageddon': 580365, 'armageddon when': 92926, 'kid ask': 473869, 'don really': 253852, 'say yeah': 739503, 'yeah sorry': 1014294, 'sorry guy': 786053, 'guy that': 369172, 'all sold': 44385, 'today coronageddon': 919407, 'one unexpected upshot': 607325, 'unexpected upshot of': 941392, 'upshot of armageddon': 947848, 'of armageddon when': 580366, 'armageddon when the': 92927, 'when the kid': 984168, 'the kid ask': 858778, 'kid ask for': 473870, 'ask for thing': 95539, 'for thing from': 326993, 'store that you': 810583, 'that you don': 847720, 'you don really': 1018328, 'don really want': 253856, 'really want to': 702702, 'want to buy': 966005, 'buy them you': 149334, 'them you can': 876676, 'you can just': 1017708, 'just say yeah': 469707, 'say yeah sorry': 739505, 'yeah sorry guy': 1014295, 'sorry guy that': 786055, 'guy that thing': 369174, 'that thing wa': 846973, 'thing wa all': 884947, 'wa all sold': 961469, 'all sold out': 44386, 'sold out today': 781752, 'out today coronageddon': 627702, 'deeper': 231952, 'egoism': 270074, 'coexistence': 185443, 'mutual': 547084, 'ha deeper': 370339, 'deeper meaning': 231964, 'move away': 543614, 'oriented egoism': 619523, 'egoism to': 270077, 'to solidarity': 914861, 'solidarity based': 781925, 'based coexistence': 111537, 'coexistence where': 185444, 'where le': 984979, 'le is': 482999, 'enough more': 277523, 'more being': 538712, 'being than': 125917, 'than having': 840732, 'having and': 383975, 'are practicing': 89170, 'practicing an': 668719, 'an ability': 55033, 'ability that': 24386, 'ha almost': 369495, 'almost been': 46562, 'been lost': 121485, 'lost mutual': 503887, 'mutual regard': 547093, 'regard respect': 707144, 'respect take': 715052, 'believe that the': 126352, 'that the ha': 846740, 'the ha deeper': 856988, 'ha deeper meaning': 370340, 'deeper meaning to': 231965, 'meaning to move': 524847, 'to move away': 910304, 'move away from': 543615, 'away from consumer': 105869, 'from consumer oriented': 334965, 'consumer oriented egoism': 198294, 'oriented egoism to': 619524, 'egoism to solidarity': 270078, 'to solidarity based': 914862, 'solidarity based coexistence': 781926, 'based coexistence where': 111538, 'coexistence where le': 185445, 'where le is': 984980, 'le is enough': 483000, 'is enough more': 447515, 'enough more being': 277524, 'more being than': 538714, 'being than having': 125918, 'than having and': 840734, 'having and we': 383977, 'we are practicing': 970665, 'are practicing an': 89171, 'practicing an ability': 668720, 'an ability that': 55034, 'ability that ha': 24387, 'that ha almost': 844105, 'ha almost been': 369496, 'almost been lost': 46563, 'been lost mutual': 121487, 'lost mutual regard': 503888, 'mutual regard respect': 547094, 'regard respect take': 707145, 'respect take care': 715053, 'celebrated': 168809, 'culling': 220237, 'mitigating': 534547, 'guilt': 368535, 'celebrated culling': 168812, 'culling 40': 220238, '40 book': 18538, 'book from': 134530, 'my personal': 549740, 'personal collection': 652804, 'collection by': 186419, 'by online': 153432, 'at book': 98148, 'book and': 134468, 'co and': 184806, 'and ordering': 68255, 'ordering 100': 618936, 'of book': 580773, 'book for': 134525, 'for curbside': 320484, 'up mitigating': 945388, 'mitigating guilt': 534552, 'guilt by': 368538, 'by reminding': 153759, 'reminding myself': 710630, 'myself doing': 550846, 'doing my': 252539, 'local pg': 498268, 'pg business': 653942, 'celebrated culling 40': 168813, 'culling 40 book': 220239, '40 book from': 18539, 'book from my': 134531, 'from my personal': 336522, 'my personal collection': 549741, 'personal collection by': 652805, 'collection by online': 186420, 'by online shopping': 153436, 'online shopping at': 609038, 'shopping at book': 762089, 'at book and': 98149, 'book and co': 134469, 'and co and': 60035, 'co and ordering': 184807, 'and ordering 100': 68256, 'ordering 100 00': 618937, '100 00 worth': 1804, 'worth of book': 1011406, 'of book for': 580775, 'book for curbside': 134526, 'for curbside pick': 320485, 'pick up mitigating': 655735, 'up mitigating guilt': 945389, 'mitigating guilt by': 534553, 'guilt by reminding': 368539, 'by reminding myself': 153760, 'reminding myself doing': 710631, 'myself doing my': 550847, 'doing my part': 252544, 'my part to': 549711, 'part to support': 642473, 'support local pg': 826631, 'local pg business': 498269, 'pg business during': 653943, 'business during the': 143672, 'carlsberg': 164760, 'ambition': 51302, 'carlsberg pivoting': 164761, 'pivoting to': 657131, 'large scale': 479783, 'scale hand': 739891, 'production not': 682135, 'first beverage': 308543, 'beverage firm': 129002, 'do so': 250083, 'so but': 776665, 'the firm': 855268, 'firm remains': 308410, 'remains incredibly': 710027, 'incredibly consistent': 433891, 'consistent with': 195491, 'their sustainability': 874931, 'sustainability ambition': 829755, 'ambition carlsberg': 51303, 'carlsberg pivoting to': 164762, 'pivoting to large': 657136, 'to large scale': 909047, 'large scale hand': 479786, 'scale hand sanitizer': 739892, 'sanitizer production not': 735603, 'production not the': 682137, 'the first beverage': 855284, 'first beverage firm': 308544, 'beverage firm to': 129003, 'firm to do': 308440, 'to do so': 904554, 'do so but': 250088, 'so but the': 776669, 'but the firm': 147338, 'the firm remains': 855272, 'firm remains incredibly': 308411, 'remains incredibly consistent': 710028, 'incredibly consistent with': 433892, 'consistent with their': 195495, 'with their sustainability': 1001602, 'their sustainability ambition': 874932, 'sustainability ambition carlsberg': 829756, 'libyan': 488090, 'improve': 419514, 'we done': 971406, 'done our': 254973, 'of fighting': 583502, 'fighting by': 305045, 'by simply': 154020, 'simply staying': 770290, 'but libyan': 146266, 'libyan gov': 488091, 'gov didn': 359575, 'didn provide': 241164, 'provide cash': 686242, 'cash lower': 166270, 'price improve': 674641, 'improve health': 419525, 'care or': 164130, 'we done our': 971408, 'done our part': 254975, 'our part of': 624263, 'part of fighting': 642348, 'of fighting by': 583503, 'fighting by simply': 305046, 'by simply staying': 154022, 'simply staying home': 770291, 'home but libyan': 400837, 'but libyan gov': 146267, 'libyan gov didn': 488092, 'gov didn provide': 359576, 'didn provide cash': 241165, 'provide cash lower': 686243, 'cash lower price': 166271, 'lower price improve': 505961, 'price improve health': 674642, 'improve health care': 419526, 'health care or': 386241, 'care or anything': 164131, 'unruly': 943376, 'unruly survey': 943381, 'survey reveals': 828938, 'reveals consumer': 720311, '19 age': 4867, 'unruly survey reveals': 943382, 'survey reveals consumer': 828941, 'reveals consumer behavior': 720312, 'covid 19 age': 212597, 'importing': 419215, 'worsens': 1011106, 'futurefocus': 342540, 'to decline': 904012, 'in crude': 421923, 'major importing': 509360, 'importing country': 419218, 'country such': 211093, 'such india': 816569, 'and india': 65146, 'india china': 434342, 'china price': 176886, 'could fall': 209159, 'fall further': 296922, 'further if': 342063, 'pandemic worsens': 637059, 'worsens around': 1011109, 'world read': 1009925, 'how oil': 408425, 'affected futurefocus': 34361, 'outbreak ha led': 628272, 'led to decline': 485275, 'to decline in': 904015, 'decline in crude': 231346, 'in crude oil': 421926, 'crude oil demand': 219554, 'oil demand from': 596744, 'demand from major': 235539, 'from major importing': 336304, 'major importing country': 509361, 'importing country such': 419221, 'country such india': 211094, 'such india and': 816570, 'india and india': 434297, 'and india china': 65147, 'india china price': 434344, 'china price could': 176887, 'price could fall': 673280, 'could fall further': 209167, 'fall further if': 296923, 'further if the': 342064, 'if the pandemic': 415010, 'the pandemic worsens': 863164, 'pandemic worsens around': 637060, 'worsens around the': 1011110, 'the world read': 871947, 'world read more': 1009926, 'about how oil': 25457, 'how oil price': 408426, 'been affected futurefocus': 120623, 'latest in': 481387, 'the prevention': 864310, 'more 1st': 538481, '1st care': 12719, 'care hand': 163980, 'sanitizers in': 736315, 'for convenient': 320341, 'convenient shopping': 202413, 'no waiting': 565846, 'waiting period': 964376, 'period at': 651720, 'at avoid': 98082, 'latest in the': 481391, 'in the prevention': 429469, 'the prevention of': 864311, 'prevention of covid': 671877, '19 with more': 12138, 'with more 1st': 999549, 'more 1st care': 538482, '1st care hand': 12720, 'care hand sanitizers': 163982, 'hand sanitizers in': 375701, 'sanitizers in stock': 736320, 'in stock online': 428320, 'stock online for': 802573, 'online for convenient': 608221, 'for convenient shopping': 320342, 'convenient shopping and': 202414, 'shopping and no': 762003, 'and no waiting': 67647, 'no waiting period': 565847, 'waiting period at': 964378, 'period at avoid': 651721, 'at avoid touching': 98083, 'touching your face': 926754, 'conversation': 202451, 'switchtostandard': 830590, 'definition': 232418, 'important phone': 418922, 'phone conversation': 654939, 'conversation with': 202495, 'with ceo': 997586, 'to beat': 901652, 'beat we': 118583, 'we stayathome': 973390, 'stayathome teleworking': 797678, 'teleworking streaming': 836886, 'streaming help': 812821, 'lot but': 504003, 'but infrastructure': 146054, 'infrastructure might': 438211, 'in strain': 428482, 'strain to': 812305, 'secure internet': 744443, 'internet access': 441893, 'access for': 28125, 'let switchtostandard': 487096, 'switchtostandard definition': 830591, 'definition when': 232428, 'when hd': 983525, 'hd is': 384686, 'important phone conversation': 418923, 'phone conversation with': 654940, 'conversation with ceo': 202500, 'with ceo of': 997590, 'ceo of to': 169792, 'of to beat': 592206, 'to beat we': 901659, 'beat we stayathome': 118584, 'we stayathome teleworking': 973391, 'stayathome teleworking streaming': 797679, 'teleworking streaming help': 836887, 'streaming help lot': 812822, 'help lot but': 390022, 'lot but infrastructure': 504004, 'but infrastructure might': 146055, 'infrastructure might be': 438212, 'might be in': 530905, 'be in strain': 115436, 'in strain to': 428483, 'strain to secure': 812307, 'to secure internet': 913965, 'secure internet access': 744444, 'internet access for': 441897, 'access for all': 28126, 'for all let': 319145, 'all let switchtostandard': 43368, 'let switchtostandard definition': 487097, 'switchtostandard definition when': 830592, 'definition when hd': 232429, 'when hd is': 983526, 'hd is not': 384687, 'galaxy': 342916, 'winding': 995653, 'knew making': 476058, 'making chocolate': 510990, 'chocolate mean': 177685, 'mean am': 524355, 'am key': 50163, 'nh police': 562043, 'police or': 663140, 'or supermarket': 617274, 'supermarket yes': 824156, 'not making': 570514, 'making galaxy': 511083, 'galaxy bar': 342917, 'bar wa': 110783, 'wa fun': 962187, 'fun winding': 341246, 'winding up': 995654, 'up kid': 945279, 'kid saying': 474098, 'saying wa': 739746, 'wa key': 962479, 'school though': 741954, 'who knew making': 989168, 'knew making chocolate': 476059, 'making chocolate mean': 510991, 'chocolate mean am': 177686, 'mean am key': 524356, 'am key worker': 50164, 'key worker nh': 473500, 'worker nh police': 1007439, 'nh police or': 562045, 'police or supermarket': 663142, 'or supermarket yes': 617291, 'supermarket yes but': 824158, 'yes but not': 1015395, 'but not making': 146545, 'not making galaxy': 570517, 'making galaxy bar': 511084, 'galaxy bar wa': 342919, 'bar wa fun': 110784, 'wa fun winding': 962191, 'fun winding up': 341247, 'winding up kid': 995655, 'up kid saying': 945280, 'kid saying wa': 474099, 'saying wa key': 739747, 'wa key worker': 962480, 'key worker they': 473521, 'worker they had': 1007965, 'had to stay': 373730, 'stay at school': 796773, 'at school though': 100474, 'defeated': 232053, 'parson': 642213, 'remember our': 710242, 'our unity': 625230, 'unity we': 942329, 'we defeated': 971250, 'defeated prop': 232057, 'prop we': 684053, 'that type': 847153, 'of unity': 592641, 'unity again': 942315, 'again please': 37111, 'contact governor': 200089, 'governor parson': 360962, 'parson and': 642214, 'demand he': 235629, 'he take': 385497, 'action to': 30161, 'protect our': 684887, 'those out': 892296, 'remember our unity': 710244, 'our unity we': 625231, 'unity we defeated': 942330, 'we defeated prop': 971251, 'defeated prop we': 232058, 'prop we need': 684054, 'we need that': 972555, 'need that type': 555736, 'that type of': 847154, 'type of unity': 937591, 'of unity again': 592642, 'unity again please': 942316, 'again please contact': 37112, 'please contact governor': 659835, 'contact governor parson': 200090, 'governor parson and': 360963, 'parson and demand': 642215, 'and demand he': 61156, 'demand he take': 235630, 'he take action': 385498, 'take action to': 831903, 'action to protect': 30173, 'to protect our': 912320, 'protect our grocery': 684895, 'store worker and': 811453, 'worker and take': 1006338, 'and take care': 72959, 'care of those': 164122, 'of those out': 592107, 'those out of': 892297, 'respondent': 715371, 'skill': 772941, 'posed': 665119, 'almost 70': 46523, 'house respondent': 406524, 'respondent believe': 715378, 'believe their': 126368, 'their comms': 872818, 'comms team': 189523, 'the skill': 867299, 'skill required': 772971, 'challenge posed': 171531, 'posed by': 665120, 'almost 70 of': 46524, '70 of in': 21801, 'of in house': 585027, 'in house respondent': 423852, 'house respondent believe': 406525, 'respondent believe their': 715379, 'believe their comms': 126369, 'their comms team': 872819, 'comms team have': 189524, 'team have the': 835668, 'have the skill': 383026, 'the skill required': 867301, 'skill required to': 772972, 'required to handle': 713399, 'handle the challenge': 376266, 'the challenge posed': 850649, 'challenge posed by': 171532, 'posed by the': 665123, 'instability': 439892, 'pancake': 634705, 'sugar': 817421, 'bringmeauntjemima': 140223, 'finalstraw': 306142, 'job most': 466010, 'city wa': 179446, 'wa shut': 963223, 'and although': 57985, 'although stressed': 49353, 'facing some': 295606, 'some financial': 782827, 'financial instability': 306466, 'instability it': 439898, 'it seemed': 460935, 'seemed like': 746715, 'like everything': 490196, 'wa being': 961676, 'being handled': 125213, 'handled well': 376317, 'well went': 978740, 'get pancake': 347779, 'pancake and': 634706, 'and syrup': 72938, 'syrup they': 831069, 'had sugar': 373580, 'sugar free': 817456, 'free syrup': 332204, 'syrup bringmeauntjemima': 831063, 'bringmeauntjemima finalstraw': 140224, 'my job most': 548923, 'job most of': 466011, 'of the city': 590864, 'the city wa': 850963, 'city wa shut': 179447, 'wa shut down': 963224, 'to and although': 900485, 'and although stressed': 57988, 'although stressed and': 49354, 'stressed and facing': 813439, 'and facing some': 62605, 'facing some financial': 295607, 'some financial instability': 782829, 'financial instability it': 306467, 'instability it seemed': 439899, 'it seemed like': 460936, 'seemed like everything': 746716, 'like everything wa': 490198, 'everything wa being': 288071, 'wa being handled': 961680, 'being handled well': 125214, 'handled well went': 376318, 'well went to': 978741, 'to get pancake': 906555, 'get pancake and': 347780, 'pancake and syrup': 634707, 'and syrup they': 72939, 'syrup they only': 831070, 'they only had': 882823, 'only had sugar': 610561, 'had sugar free': 373581, 'sugar free syrup': 817458, 'free syrup bringmeauntjemima': 332205, 'syrup bringmeauntjemima finalstraw': 831064, 'become stressful': 120139, 'stressful supermarket': 813511, 'supermarket soldout': 822767, 'soldout coronavid19': 781841, 'coronavid19 coronacrisis': 205379, 'coronacrisis lockdownuk': 204658, 'supermarket shopping ha': 822635, 'ha become stressful': 369696, 'become stressful supermarket': 120141, 'stressful supermarket soldout': 813513, 'supermarket soldout coronavid19': 822768, 'soldout coronavid19 coronacrisis': 781842, 'coronavid19 coronacrisis lockdownuk': 205381, 'europeanunion': 283621, 'unitedkingdom': 942274, 'wttc': 1013432, 'consumerrefunds': 199757, 'risk if': 723616, 'government do': 360027, 'not provide': 571138, 'provide flexibility': 686297, 'flexibility around': 310363, 'around consumer': 93252, 'refund europeanunion': 706899, 'europeanunion unitedkingdom': 283624, 'unitedkingdom wttc': 942277, 'wttc consumerrefunds': 1013433, 'million of job': 532271, 'of job at': 585528, 'job at risk': 465679, 'at risk if': 100369, 'risk if government': 723618, 'if government do': 414173, 'government do not': 360031, 'do not provide': 249807, 'not provide flexibility': 571142, 'provide flexibility around': 686298, 'flexibility around consumer': 310364, 'around consumer refund': 93253, 'consumer refund europeanunion': 198662, 'refund europeanunion unitedkingdom': 706900, 'europeanunion unitedkingdom wttc': 283625, 'unitedkingdom wttc consumerrefunds': 942278, 'manonfire': 513323, 'cod': 185305, 'modernwarfare': 535422, 'blownup': 133409, 'searchanddestroy': 743309, 'denzelwashington': 237165, 'goodmovies': 358045, 'cleanhands': 180880, 'losmanos': 503622, 'superbowl': 818624, 'playoff': 659488, 'ohio': 596511, 'bobsburgers': 133757, 'bologna': 134132, 'team manonfire': 835722, 'manonfire cod': 513324, 'cod modernwarfare': 185314, 'modernwarfare blownup': 535423, 'blownup searchanddestroy': 133410, 'searchanddestroy denzelwashington': 743310, 'denzelwashington goodmovies': 237166, 'goodmovies toiletpaper': 358046, 'toiletpaper cleanhands': 921858, 'cleanhands losmanos': 180881, 'losmanos cleveland': 503623, 'nfl superbowl': 561781, 'superbowl playoff': 818625, 'playoff ohio': 659493, 'ohio bobsburgers': 596526, 'bobsburgers bologna': 133758, 'bologna fuel': 134133, 'fuel via': 340308, 'take one for': 832416, 'for the team': 326719, 'the team manonfire': 869210, 'team manonfire cod': 835723, 'manonfire cod modernwarfare': 513325, 'cod modernwarfare blownup': 185315, 'modernwarfare blownup searchanddestroy': 535424, 'blownup searchanddestroy denzelwashington': 133411, 'searchanddestroy denzelwashington goodmovies': 743311, 'denzelwashington goodmovies toiletpaper': 237167, 'goodmovies toiletpaper cleanhands': 358047, 'toiletpaper cleanhands losmanos': 921859, 'cleanhands losmanos cleveland': 180882, 'losmanos cleveland brown': 503624, 'cleveland brown nfl': 181845, 'brown nfl superbowl': 141249, 'nfl superbowl playoff': 561782, 'superbowl playoff ohio': 818626, 'playoff ohio bobsburgers': 659494, 'ohio bobsburgers bologna': 596527, 'bobsburgers bologna fuel': 133759, 'bologna fuel via': 134134, 'stepford': 799718, 'stepfordwives': 799721, 'when supermarket': 984092, 'were well': 980345, 'distancing wa': 247600, 'only something': 611167, 'something used': 785122, 'used in': 949937, 'in stepford': 428267, 'stepford stepfordwives': 799719, 'stepfordwives socialdistancing': 799722, 'remember when supermarket': 710417, 'when supermarket shelf': 984095, 'supermarket shelf were': 822562, 'shelf were well': 757777, 'were well stocked': 980346, 'well stocked and': 978590, 'stocked and social': 803270, 'and social distancing': 71885, 'social distancing wa': 779758, 'distancing wa only': 247605, 'wa only something': 962861, 'only something used': 611168, 'something used in': 785123, 'used in stepford': 949944, 'in stepford stepfordwives': 428268, 'stepford stepfordwives socialdistancing': 799720, 'shutitdown': 768158, 'announced shutting': 77031, 'shutting of': 768287, 'some restaurant': 783751, 'and reduced': 70100, 'reduced trading': 706201, 'trading hour': 928869, 'hour what': 406085, 'that shutitdown': 846306, 'shutitdown quarantinelife': 768159, 'retail store announced': 718607, 'store announced shutting': 806411, 'announced shutting of': 77032, 'shutting of some': 768288, 'of some restaurant': 589904, 'some restaurant in': 783752, 'restaurant in store': 716525, 'store and reduced': 806327, 'and reduced trading': 70107, 'reduced trading hour': 706202, 'trading hour what': 928870, 'hour what is': 406086, 'point of that': 662568, 'of that shutitdown': 590742, 'that shutitdown quarantinelife': 846307, 'hardy': 378349, 'you walk': 1022106, 'walk into': 964816, 'the cunt': 852568, 'cunt horders': 220366, 'horders have': 404010, 'have cleaned': 379981, 'place wasting': 657808, 'wasting my': 968321, 'time tom': 898115, 'tom hardy': 923918, 'hardy legend': 378352, 'legend via': 485940, 'when you walk': 984614, 'you walk into': 1022108, 'walk into supermarket': 964821, 'supermarket and see': 819055, 'and see the': 71145, 'see the cunt': 745821, 'the cunt horders': 852570, 'cunt horders have': 220367, 'horders have cleaned': 404011, 'have cleaned out': 379982, 'cleaned out the': 180723, 'out the place': 627405, 'the place wasting': 863778, 'place wasting my': 657809, 'wasting my time': 968322, 'my time tom': 550377, 'time tom hardy': 898116, 'tom hardy legend': 923919, 'hardy legend via': 378353, 'plot': 661077, 'to plot': 911823, 'plot and': 661078, 'ensure cattle': 277900, 'contact if': 200098, 'access to plot': 28268, 'to plot and': 911824, 'plot and ensure': 661079, 'and ensure cattle': 62162, 'ensure cattle and': 277901, 'market and on': 515978, 'and on consumer': 68054, 'on consumer plate': 600066, 'available please contact': 104558, 'please contact if': 659836, 'contact if you': 200099, 'any question or': 79720, 'outcome': 628853, 'rajagopalan': 696168, 'yves': 1027132, 'breton': 139390, 'retail outcome': 718365, 'outcome by': 628856, 'by sri': 154093, 'sri rajagopalan': 791603, 'rajagopalan yves': 696169, 'yves le': 1027133, 'le breton': 482864, 'consumer retail outcome': 198797, 'retail outcome by': 718366, 'outcome by sri': 628857, 'by sri rajagopalan': 154094, 'sri rajagopalan yves': 791604, 'rajagopalan yves le': 696170, 'yves le breton': 1027134, 'venezuelan': 954455, 'my usual': 550471, 'usual grocery': 950953, 'had line': 373246, 'line out': 493343, 'door waiting': 255772, 'in 100': 419685, 'store so': 810211, 'to another': 900564, 'another grocery': 77647, 'store went': 811213, 'went right': 979100, 'right on': 722201, 'in got': 423383, 'got everything': 358545, 'everything needed': 287930, 'needed if': 556394, 'can prevent': 159289, 'prevent it': 671664, 'it am': 456445, 'like venezuelan': 491725, 'to my usual': 910446, 'my usual grocery': 550476, 'usual grocery store': 950955, 'store it had': 808577, 'it had line': 458431, 'had line out': 373247, 'line out the': 493344, 'out the door': 627361, 'the door waiting': 853593, 'door waiting to': 255773, 'waiting to get': 964402, 'get in 100': 347288, 'in 100 people': 419686, 'in store so': 428457, 'store so went': 810240, 'went to another': 979139, 'to another grocery': 900567, 'another grocery store': 77648, 'grocery store went': 365942, 'store went right': 811214, 'went right on': 979101, 'right on in': 722203, 'on in got': 601527, 'in got everything': 423384, 'got everything needed': 358546, 'everything needed if': 287933, 'needed if can': 556395, 'if can prevent': 413931, 'can prevent it': 159290, 'prevent it am': 671665, 'it am not': 456446, 'am not going': 50251, 'going to stand': 355717, 'line for food': 493102, 'for food like': 321603, 'food like venezuelan': 315316, 'ofall': 593573, 'circuit': 178631, 'economical': 267371, 'my suggestion': 550254, 'virus first': 958186, 'first ofall': 308817, 'ofall shutdown': 593574, 'shutdown or': 768077, 'or limited': 615969, 'limited down': 492618, 'down circuit': 256635, 'circuit our': 178640, 'our india': 623524, 'india stock': 434625, 'market for': 516405, 'for economical': 320948, 'economical stability': 267380, 'stability for': 791808, 'week plz': 976759, 'plz banned': 661801, 'banned meat': 110580, 'any non': 79519, 'non vegetarian': 566520, 'vegetarian food': 954142, 'food because': 313701, 'my suggestion for': 550255, 'suggestion for covid': 817638, '19 virus first': 11799, 'virus first ofall': 958187, 'first ofall shutdown': 308818, 'ofall shutdown or': 593575, 'shutdown or limited': 768078, 'or limited down': 615970, 'limited down circuit': 492619, 'down circuit our': 256636, 'circuit our india': 178641, 'our india stock': 623525, 'india stock market': 434626, 'stock market for': 802399, 'market for economical': 516409, 'for economical stability': 320949, 'economical stability for': 267381, 'stability for few': 791810, 'for few week': 321460, 'few week plz': 304162, 'week plz banned': 976760, 'plz banned meat': 661802, 'banned meat or': 110581, 'meat or any': 525679, 'or any non': 614349, 'any non vegetarian': 79521, 'non vegetarian food': 566521, 'vegetarian food because': 954144, 'food because of': 313709, 'impacting online': 418245, 'behavior via': 124286, 'is impacting online': 448710, 'impacting online shopping': 418246, 'online shopping behavior': 609050, 'shopping behavior via': 762214, 'newz': 561231, 'chelmsford': 175303, 'easton': 265632, 'coronavirus newz': 206319, 'newz report': 561232, 'report newz': 712097, 'report from': 711969, 'from employee': 335271, 'employee market': 274038, 'market tested': 517168, 'coronavirus market': 206266, 'basket chelmsford': 112315, 'chelmsford shaw': 175304, 'shaw easton': 755817, 'easton ma': 265633, 'positive for coronavirus': 665318, 'for coronavirus newz': 320386, 'coronavirus newz report': 206320, 'newz report newz': 561234, 'report newz report': 712098, 'newz report from': 561233, 'report from employee': 711975, 'from employee market': 335272, 'employee market tested': 274039, 'market tested positive': 517169, 'for coronavirus market': 320385, 'coronavirus market basket': 206267, 'market basket chelmsford': 516077, 'basket chelmsford shaw': 112316, 'chelmsford shaw easton': 175305, 'shaw easton ma': 755818, 'stating': 796298, 'entity': 278841, 'invalid': 443579, 'really they': 702653, 'they cause': 881733, 'cause worldwide': 167804, 'worldwide now': 1010394, 're buying': 698397, 'buying major': 150692, 'major majority': 509379, 'majority stock': 509581, 'stock in': 802256, 'all large': 43344, 'large company': 479619, 'company since': 191083, 'since price': 770796, 'have crashed': 380145, 'crashed all': 215061, 'all country': 42472, 'country should': 211045, 'should pas': 766308, 'pas law': 643117, 'law stating': 482404, 'stating that': 796305, 'stock bought': 801932, 'bought by': 136527, 'by chinese': 152117, 'chinese entity': 177249, 'entity in': 278853, '2020 are': 14148, 'are invalid': 87563, 'invalid even': 443580, 'if found': 414125, 'china is really': 176760, 'is really they': 451320, 'really they cause': 702655, 'they cause worldwide': 881734, 'cause worldwide now': 167805, 'worldwide now they': 1010395, 'now they re': 576114, 'they re buying': 883006, 're buying major': 698399, 'buying major majority': 150693, 'major majority stock': 509380, 'majority stock in': 509582, 'stock in all': 802257, 'in all large': 420171, 'all large company': 43345, 'large company since': 479620, 'company since price': 191085, 'since price have': 770798, 'price have crashed': 674420, 'have crashed all': 380146, 'crashed all country': 215062, 'all country should': 42477, 'country should pas': 211049, 'should pas law': 766309, 'pas law stating': 643118, 'law stating that': 482405, 'stating that stock': 796309, 'that stock bought': 846490, 'stock bought by': 801933, 'bought by chinese': 136528, 'by chinese entity': 152118, 'chinese entity in': 177250, 'entity in 2020': 278854, 'in 2020 are': 419818, '2020 are invalid': 14149, 'are invalid even': 87564, 'invalid even if': 443581, 'even if found': 284202, 'if found in': 414127, 'found in the': 330252, 'arynews': 94706, 'diesel cash': 241653, 'cash price': 166311, 'price latest': 675024, 'latest to': 481582, 'to slump': 914750, 'slump from': 774689, 'from fallout': 335398, 'fallout arynews': 297373, 'diesel cash price': 241654, 'cash price latest': 166312, 'price latest to': 675025, 'latest to slump': 481584, 'to slump from': 914753, 'slump from fallout': 774690, 'from fallout arynews': 335399, 'see excessive': 745097, 'increase for': 432775, 'necessity report': 554253, 'to office': 910861, 'you see excessive': 1021035, 'see excessive price': 745098, 'excessive price increase': 289406, 'price increase for': 674772, 'increase for necessity': 432784, 'for necessity report': 323795, 'necessity report it': 554254, 'it to office': 461737, 'labourer': 478532, 'improvished': 419619, 'poonch': 664039, 'support in': 826582, 'food shelter': 316459, 'shelter provided': 757947, 'to stranded': 915658, 'stranded labourer': 812360, 'labourer and': 478533, 'other improvished': 620403, 'improvished by': 419620, 'by district': 152380, 'district administration': 248347, 'administration poonch': 32497, 'poonch and': 664040, 'ngo no': 561851, 'well taken': 978636, 'taken care': 832979, 'support in term': 826585, 'of food shelter': 583774, 'food shelter provided': 316463, 'shelter provided to': 757948, 'provided to stranded': 686655, 'to stranded labourer': 915659, 'stranded labourer and': 812361, 'labourer and other': 478535, 'and other improvished': 68346, 'other improvished by': 620404, 'improvished by district': 419621, 'by district administration': 152381, 'district administration poonch': 248349, 'administration poonch and': 32498, 'poonch and ngo': 664041, 'and ngo no': 67580, 'ngo no need': 561852, 'to panic everything': 911395, 'panic everything is': 638084, 'everything is well': 287890, 'is well taken': 453852, 'well taken care': 978637, 'taken care of': 832980, 'get mortgage': 347609, 'mortgage help': 541901, 'help excellent': 389671, 'excellent advice': 289070, 'from also': 334447, 'also helpful': 48351, 'helpful detail': 391171, 'detail from': 239189, 'and 15': 57376, '15 19': 3641, 'to get mortgage': 906538, 'get mortgage help': 347610, 'mortgage help excellent': 541902, 'help excellent advice': 389672, 'excellent advice from': 289071, 'advice from also': 33380, 'from also helpful': 334448, 'also helpful detail': 48352, 'helpful detail from': 391172, 'detail from and': 239190, 'from and 15': 334504, 'and 15 19': 57377, 'wednesdaywisdom': 975737, 'drove through': 260812, 'through our': 894611, 'our town': 625175, 'town today': 927570, 'today it': 919735, 'it looked': 459462, 'looked like': 502730, 'like normal': 490869, 'day grocery': 227696, 'store parking': 809467, 'lot still': 504373, 'still packed': 801015, 'packed people': 633635, 'eating inside': 266229, 'inside restaurant': 439369, 'restaurant reported': 716663, 'reported case': 712471, 'our county': 622611, 'county this': 211512, 'isn going': 454518, 'down until': 257412, 'until people': 943810, 'people become': 647236, 'serious wednesdaywisdom': 751511, 'drove through our': 260813, 'through our town': 894621, 'our town today': 625176, 'town today it': 927571, 'today it looked': 919743, 'it looked like': 459463, 'looked like normal': 502735, 'like normal day': 490871, 'normal day grocery': 567130, 'day grocery store': 227698, 'grocery store parking': 365641, 'store parking lot': 809468, 'parking lot still': 642105, 'lot still packed': 504375, 'still packed people': 801017, 'packed people eating': 633636, 'people eating inside': 647764, 'eating inside restaurant': 266230, 'inside restaurant reported': 439370, 'restaurant reported case': 716664, 'reported case of': 712477, 'case of in': 165908, 'of in our': 585036, 'in our county': 426275, 'our county this': 622614, 'county this isn': 211513, 'this isn going': 888483, 'isn going to': 454523, 'going to slow': 355711, 'slow down until': 774354, 'down until people': 257414, 'until people become': 943812, 'people become more': 647237, 'become more serious': 120063, 'more serious wednesdaywisdom': 540361, 'hm': 398645, 'twitterdogs': 936749, 'alien': 41735, 'oh wow': 596494, 'wow you': 1012628, 'guy are': 368894, 'are finally': 86563, 'finally here': 306040, 'here that': 393635, 'that honor': 844362, 'honor we': 403258, 'also very': 49061, 'very special': 955576, 'special specie': 788059, 'specie ok': 788183, 'ok hm': 597823, 'hm sorry': 398648, 'sorry but': 786024, 'but twitterdogs': 147637, 'twitterdogs alien': 936750, 'alien toiletpaper': 41748, 'oh wow you': 596495, 'wow you guy': 1012630, 'you guy are': 1018950, 'guy are finally': 368899, 'are finally here': 86564, 'finally here that': 306041, 'here that honor': 393636, 'that honor we': 844363, 'honor we are': 403259, 'we are also': 970475, 'are also very': 84487, 'also very special': 49065, 'very special specie': 955577, 'special specie ok': 788060, 'specie ok hm': 788184, 'ok hm sorry': 597824, 'hm sorry but': 398649, 'sorry but twitterdogs': 786032, 'but twitterdogs alien': 147638, 'twitterdogs alien toiletpaper': 936751, 'fred': 331572, 'meyer': 530030, 'hoglets': 399848, 'spent the': 789171, 'past hour': 643548, 'hour filling': 405583, 'for fred': 321699, 'fred meyer': 331574, 'meyer now': 530040, 'expected some': 290938, 'stock not': 802499, 'entire freaking': 278677, 'freaking list': 331539, 'list greedy': 494344, 'greedy greedy': 363522, 'greedy hoglets': 363529, 'hoglets stoppanicbuying': 399849, 'spent the past': 789175, 'the past hour': 863357, 'past hour filling': 643549, 'hour filling an': 405584, 'filling an order': 305595, 'an order for': 56698, 'order for fred': 618228, 'for fred meyer': 321700, 'fred meyer now': 331578, 'meyer now expected': 530041, 'now expected some': 574645, 'expected some thing': 290939, 'some thing to': 784045, 'of stock not': 590176, 'stock not the': 802502, 'not the entire': 571995, 'the entire freaking': 854356, 'entire freaking list': 278678, 'freaking list greedy': 331540, 'list greedy greedy': 494345, 'greedy greedy hoglets': 363523, 'greedy hoglets stoppanicbuying': 363530, 'hrc': 409682, 'rebar': 703243, 'flat steel': 310099, 'steel ha': 799332, 'been hit': 121296, 'than long': 840853, 'long steel': 501653, 'steel in': 799336, '2020 auto': 14164, 'auto industry': 103875, 'industry key': 435952, 'consumer of': 198234, 'of flat': 583581, 'affected heavily': 34366, 'heavily by': 388567, 'no surprise': 565640, 'surprise that': 828545, 'that hrc': 844389, 'hrc price': 409683, 'is below': 446125, 'below rebar': 126718, 'rebar now': 703244, 'now china': 574377, 'china steel': 176954, 'market economy': 516323, 'economy globaltrade': 267895, 'flat steel ha': 310100, 'steel ha been': 799333, 'ha been hit': 369827, 'been hit harder': 121299, 'harder than long': 378185, 'than long steel': 840854, 'long steel in': 501654, 'steel in 2020': 799337, 'in 2020 auto': 419819, '2020 auto industry': 14165, 'auto industry key': 103879, 'industry key consumer': 435953, 'key consumer of': 473262, 'consumer of flat': 198240, 'of flat steel': 583584, 'ha been affected': 369711, 'been affected heavily': 120624, 'affected heavily by': 34367, 'heavily by covid': 388568, 'it is no': 459021, 'is no surprise': 449979, 'no surprise that': 565644, 'surprise that hrc': 828547, 'that hrc price': 844390, 'hrc price is': 409684, 'price is below': 674859, 'is below rebar': 446129, 'below rebar now': 126719, 'rebar now china': 703245, 'now china steel': 574378, 'china steel market': 176955, 'steel market economy': 799345, 'market economy globaltrade': 516325, 'writerslife': 1012818, 'happily': 377549, 'printer': 678322, 'cartridge': 165541, 'lightbulb': 489627, 'stew': 799979, 'writerslife so': 1012820, 'for provision': 324842, 'provision and': 687247, 'can happily': 158559, 'happily say': 377558, 'say am': 738409, 'am having': 50118, 'having printer': 384231, 'printer cartridge': 678325, 'cartridge and': 165542, 'and lightbulb': 66150, 'lightbulb stew': 489630, 'stew for': 799982, 'writerslife so went': 1012821, 'store for provision': 807830, 'for provision and': 324843, 'provision and can': 687248, 'and can happily': 59456, 'can happily say': 158561, 'happily say am': 377559, 'say am having': 738411, 'am having printer': 50119, 'having printer cartridge': 384232, 'printer cartridge and': 678326, 'cartridge and lightbulb': 165544, 'and lightbulb stew': 66151, 'lightbulb stew for': 489631, 'stew for dinner': 799983, 'now let': 575196, 'see if': 745272, 'if walmart': 415248, 'walmart is': 965358, 'is restocking': 451476, 'restocking first': 716998, 'first in': 308721, 'line toiletpaper': 493501, 'so now let': 777907, 'now let see': 575198, 'let see if': 487033, 'see if walmart': 745284, 'if walmart is': 415249, 'walmart is restocking': 965364, 'is restocking first': 451477, 'restocking first in': 716999, 'first in line': 308723, 'in line toiletpaper': 424780, 'pse': 687461, 'intervene': 442154, 'establish': 282013, 'pse intervene': 687462, 'intervene on': 442163, 'basic commodity': 111844, 'commodity and': 189122, 'and establish': 62272, 'establish task': 282025, 'force just': 328420, 'like what': 491792, 'you did': 1018195, 'did on': 240748, 'pse intervene on': 687463, 'intervene on price': 442164, 'price of basic': 675411, 'of basic commodity': 580565, 'basic commodity and': 111847, 'commodity and establish': 189125, 'and establish task': 62273, 'establish task force': 282026, 'task force just': 834690, 'force just like': 328421, 'just like what': 469160, 'like what you': 491800, 'what you did': 982669, 'you did on': 1018199, 'did on covid': 240749, 'please reserve': 660395, 'reserve the': 714104, 'month medicine': 537857, 'medicine house': 526807, 'house food': 406296, 'item child': 463180, 'child product': 176178, 'product do': 681131, 'what gonna': 981509, 'gonna happen': 356547, 'happen in': 377101, 'one month': 606677, 'month everyone': 537711, 'ha kid': 371074, 'kid and': 473848, 'please reserve the': 660396, 'reserve the stock': 714107, 'the stock for': 867910, 'stock for month': 802172, 'for month medicine': 323529, 'month medicine house': 537858, 'medicine house food': 526808, 'house food item': 406298, 'food item child': 315199, 'item child product': 463181, 'child product do': 176179, 'product do not': 681132, 'not know what': 570307, 'know what gonna': 476955, 'what gonna happen': 981510, 'gonna happen in': 356549, 'happen in one': 377105, 'in one month': 426150, 'one month everyone': 606681, 'month everyone ha': 537712, 'everyone ha kid': 286969, 'ha kid and': 371075, 'kid and old': 473856, 'and old people': 68035, 'old people in': 598414, 'people in house': 648382, 'sneak': 776187, 'herses': 394250, 'coronatips': 205311, 'rupaul': 728173, 'rupaulsdragrace': 728176, 'dontbeshady': 255352, 'clerk when': 181819, 'see customer': 745023, 'customer try': 222997, 'to sneak': 914788, 'sneak buying': 776188, 'more hand': 539381, 'no she': 565476, 'she done': 756008, 'done already': 254764, 'already had': 47388, 'had herses': 373179, 'herses corona': 394251, 'corona tip': 204241, 'tip obey': 898842, 'the limit': 859380, 'limit coronatips': 492315, 'coronatips rupaul': 205312, 'rupaul rupaulsdragrace': 728174, 'rupaulsdragrace dontbeshady': 728177, 'me grocery clerk': 522841, 'grocery clerk when': 364386, 'clerk when see': 181820, 'when see customer': 983972, 'see customer try': 745028, 'customer try to': 222998, 'try to sneak': 934667, 'to sneak buying': 914789, 'sneak buying more': 776189, 'buying more hand': 150730, 'more hand sanitizer': 539382, 'sanitizer no she': 735420, 'no she done': 565477, 'she done already': 756009, 'done already had': 254765, 'already had herses': 47394, 'had herses corona': 373180, 'herses corona tip': 394252, 'corona tip obey': 204242, 'tip obey the': 898843, 'obey the limit': 578390, 'the limit coronatips': 859383, 'limit coronatips rupaul': 492316, 'coronatips rupaul rupaulsdragrace': 205313, 'rupaul rupaulsdragrace dontbeshady': 728175, 'ensure everyone': 277931, 'everyone safety': 287336, 'from spreading': 337386, 'spreading new': 791005, 'new shopping': 559587, 'shopping rule': 763786, 'be applied': 113666, 'applied to': 82498, 'store corona': 807173, 'to ensure everyone': 905157, 'ensure everyone safety': 277934, 'everyone safety and': 287337, 'safety and prevent': 730459, 'and prevent the': 69413, 'prevent the virus': 671738, 'the virus from': 870834, 'virus from spreading': 958217, 'from spreading new': 337390, 'spreading new shopping': 791007, 'new shopping rule': 559591, 'shopping rule will': 763788, 'will be applied': 992361, 'be applied to': 113668, 'applied to the': 82505, 'the store corona': 868001, 'store corona stayhome': 807176, 'kenney': 472790, 'extinctionrebellion': 293367, 'fridaysforfuture': 333347, 'fossilfuels': 330094, 'tarsands': 834641, 'plummeting and': 661363, 'and alberta': 57824, 'alberta jason': 40806, 'jason kenney': 464846, 'kenney is': 472794, 'is lobbying': 449414, 'for giant': 321876, 'giant government': 349780, 'bailout for': 108632, 'for big': 319671, 'big oil': 129882, 'oil add': 596590, 'your voice': 1026293, 'voice to': 960004, 'say no': 738978, 'no extinctionrebellion': 564179, 'extinctionrebellion fridaysforfuture': 293368, 'fridaysforfuture fossilfuels': 333348, 'fossilfuels tarsands': 330097, 'are plummeting and': 89122, 'plummeting and alberta': 661364, 'and alberta jason': 57825, 'alberta jason kenney': 40807, 'jason kenney is': 464847, 'kenney is lobbying': 472795, 'is lobbying for': 449415, 'lobbying for giant': 497595, 'for giant government': 321877, 'giant government bailout': 349781, 'government bailout for': 359919, 'bailout for big': 108633, 'for big oil': 319674, 'big oil add': 129883, 'oil add your': 596591, 'add your voice': 31539, 'your voice to': 1026295, 'voice to say': 960005, 'to say no': 913831, 'say no extinctionrebellion': 738981, 'no extinctionrebellion fridaysforfuture': 564180, 'extinctionrebellion fridaysforfuture fossilfuels': 293369, 'fridaysforfuture fossilfuels tarsands': 333349, 'capsule': 162905, 'posterity': 666621, 'creating time': 216089, 'time capsule': 896452, 'capsule of': 162908, 'of posterity': 588266, 'posterity news': 666622, 'news article': 560248, 'article personal': 94426, 'personal thought': 652979, 'thought consumer': 893006, 'consumer email': 197344, 'email church': 272139, 'church response': 178398, 'response government': 715713, 'letter but': 487292, 'today realized': 920098, 'need meme': 555232, 'meme send': 528355, 'send me': 749879, 'best one': 127806, 'one so': 607060, 'can add': 157372, 'add them': 31504, 'creating time capsule': 216090, 'time capsule of': 896454, 'capsule of 19': 162909, 'of 19 for': 579393, '19 for the': 7077, 'sake of posterity': 731870, 'of posterity news': 588267, 'posterity news article': 666623, 'news article personal': 560250, 'article personal thought': 94427, 'personal thought consumer': 652980, 'thought consumer email': 893008, 'consumer email church': 197346, 'email church response': 272140, 'church response government': 178400, 'response government letter': 715714, 'government letter but': 360313, 'letter but today': 487293, 'but today realized': 147605, 'today realized that': 920100, 'realized that need': 701911, 'that need meme': 845304, 'need meme send': 555233, 'meme send me': 528356, 'send me the': 749892, 'me the best': 523639, 'the best one': 849532, 'best one so': 127807, 'one so can': 607061, 'so can add': 776700, 'can add them': 157373, 'contributes': 201899, 'conventional': 202442, 'rotation': 726182, 'nitrogen': 563396, 'fixation': 309771, 'break from': 138731, 'remind all': 710478, 'the vegan': 870667, 'vegan out': 953878, 'there that': 879137, 'that organic': 845555, 'organic food': 619213, 'food contributes': 314009, 'contributes to': 201902, 'to far': 905669, 'far more': 298842, 'more demand': 538987, 'demand to': 236386, 'to animal': 900541, 'animal agriculture': 76544, 'agriculture than': 39038, 'than conventional': 840456, 'conventional food': 202443, 'and yes': 75969, 'yes this': 1015568, 'this account': 886180, 'for crop': 320463, 'crop rotation': 218942, 'rotation and': 726183, 'and nitrogen': 67597, 'nitrogen fixation': 563397, 'break from covid': 138732, '19 to remind': 11453, 'to remind all': 913196, 'remind all the': 710479, 'all the vegan': 44969, 'the vegan out': 870668, 'vegan out there': 953879, 'out there that': 627515, 'there that organic': 879142, 'that organic food': 845556, 'organic food contributes': 619215, 'food contributes to': 314010, 'contributes to far': 201903, 'to far more': 905670, 'far more demand': 298847, 'more demand to': 538994, 'demand to animal': 236388, 'to animal agriculture': 900542, 'animal agriculture than': 76547, 'agriculture than conventional': 39039, 'than conventional food': 840457, 'conventional food and': 202444, 'food and yes': 313386, 'and yes this': 75974, 'yes this account': 1015570, 'this account for': 886181, 'account for crop': 28664, 'for crop rotation': 320464, 'crop rotation and': 218943, 'rotation and nitrogen': 726184, 'and nitrogen fixation': 67598, 'pal': 634550, 'stuck inside': 814607, 'our pal': 624235, 'pal at': 634551, 'have slashed': 382582, 'slashed price': 773642, 'on bunch': 599726, 'of great': 584312, 'great game': 362699, 'game including': 343190, 'including sausage': 432134, 'sausage party': 737413, 'party their': 643046, 'their game': 873395, 'game based': 343130, 'our song': 624847, 'stuck inside our': 814613, 'inside our pal': 439351, 'our pal at': 624236, 'pal at have': 634552, 'at have slashed': 98865, 'have slashed price': 382584, 'slashed price on': 773645, 'price on bunch': 675657, 'on bunch of': 599727, 'bunch of great': 142627, 'of great game': 584314, 'great game including': 362700, 'game including sausage': 343191, 'including sausage party': 432135, 'sausage party their': 737414, 'party their game': 643047, 'their game based': 873396, 'game based on': 343131, 'based on our': 111689, 'on our song': 602631, 'simonyan': 769975, 'devastating': 239574, 'biochemicalwarfare': 131183, '20 66': 12915, '66 barrel': 21415, 'barrel lowest': 111245, 'price ever': 673714, 'ever russia': 285475, 'russia simonyan': 728571, 'simonyan this': 769976, 'worst ve': 1011299, 'seen oil': 747164, 'price pray': 675969, 'this devastating': 887214, 'devastating wuhan': 239607, 'wuhan biochemicalwarfare': 1013461, 'biochemicalwarfare on': 131184, 'on world': 605378, 'world by': 1009387, 'oil price 20': 597028, 'price 20 66': 672121, '20 66 barrel': 12916, '66 barrel lowest': 21416, 'barrel lowest price': 111247, 'lowest price ever': 506208, 'price ever russia': 673716, 'ever russia simonyan': 285476, 'russia simonyan this': 728572, 'simonyan this is': 769977, 'is the worst': 452981, 'the worst ve': 872081, 'worst ve seen': 1011300, 've seen oil': 953540, 'seen oil price': 747165, 'oil price pray': 597221, 'price pray for': 675970, 'pray for you': 669009, 'for you all': 328033, 'you all to': 1016918, 'all to survive': 45251, 'survive this devastating': 829261, 'this devastating wuhan': 887215, 'devastating wuhan biochemicalwarfare': 239608, 'wuhan biochemicalwarfare on': 1013462, 'biochemicalwarfare on world': 131185, 'on world by': 605379, 'simpleton': 770158, 'pointless': 662766, 'stayhomesavelives or': 798422, 'be selfish': 117053, 'selfish simpleton': 748258, 'simpleton and': 770159, 'for pointless': 324601, 'pointless journey': 662770, 'sunday because': 818176, 're closed': 698429, 'stayhomesavelives or be': 798423, 'or be selfish': 614512, 'be selfish simpleton': 117063, 'selfish simpleton and': 748259, 'simpleton and go': 770160, 'go for pointless': 353570, 'for pointless journey': 324602, 'pointless journey to': 662771, 'journey to supermarket': 467489, 'to supermarket on': 915820, 'supermarket on easter': 821725, 'on easter sunday': 600481, 'easter sunday because': 265504, 'sunday because they': 818177, 'they re closed': 883010, 'operative': 613330, 'workingsmart': 1009136, 'workingsafe': 1009135, 'our co': 622418, 'co operative': 184924, 'operative is': 613331, 'to providing': 912454, 'providing canadian': 686952, 'with fresh': 998550, 'fresh dairy': 332943, 'product while': 681845, 'while taking': 987363, 'taking every': 833346, 'every precaution': 286118, 'precaution for': 669313, 'our employee': 622887, 'employee customer': 273747, 'farmer view': 299563, 'view our': 957143, 'our full': 623211, 'full statement': 340891, 'at workingsmart': 101631, 'workingsmart workingsafe': 1009137, 'our co operative': 622420, 'co operative is': 184925, 'operative is committed': 613332, 'committed to providing': 189044, 'to providing canadian': 912455, 'providing canadian with': 686953, 'canadian with fresh': 160776, 'with fresh dairy': 998552, 'fresh dairy and': 332944, 'dairy and food': 224953, 'and food product': 63081, 'food product while': 316034, 'product while taking': 681849, 'while taking every': 987364, 'taking every precaution': 833347, 'every precaution for': 286122, 'precaution for the': 669315, 'for the health': 326471, 'health of our': 386688, 'of our employee': 587459, 'our employee customer': 622890, 'employee customer and': 273748, 'customer and farmer': 222074, 'and farmer view': 62704, 'farmer view our': 299564, 'view our full': 957144, 'our full statement': 623218, 'full statement on': 340892, 'statement on covid': 796198, '19 online at': 8989, 'online at workingsmart': 607903, 'at workingsmart workingsafe': 101632, 'ipsos': 444615, 'mori': 541107, 'to ipsos': 908501, 'ipsos mori': 444620, 'mori 50': 541108, '50 of': 19764, 'of chinese': 581374, 'chinese and': 177189, 'and 31': 57448, '31 of': 17599, 'of italian': 585470, 'italian consumer': 462688, 'consumer say': 198863, 're shopping': 699500, 'online more': 608552, 'frequently to': 332878, 'purchase product': 689639, 'product they': 681720, 'they usually': 883628, 'usually buy': 951101, 'buy in': 148809, 'ongoing outbreak': 607667, 'according to ipsos': 28557, 'to ipsos mori': 908502, 'ipsos mori 50': 444621, 'mori 50 of': 541109, '50 of chinese': 19766, 'of chinese and': 581375, 'chinese and 31': 177190, 'and 31 of': 57450, '31 of italian': 17601, 'of italian consumer': 585471, 'italian consumer say': 462690, 'consumer say they': 198864, 'they re shopping': 883124, 're shopping online': 699505, 'shopping online more': 763458, 'online more frequently': 608558, 'more frequently to': 539293, 'frequently to purchase': 332879, 'to purchase product': 912548, 'purchase product they': 689641, 'product they usually': 681725, 'they usually buy': 883629, 'usually buy in': 951103, 'buy in store': 148817, 'in store during': 428408, 'store during the': 807410, 'during the ongoing': 263164, 'the ongoing outbreak': 862251, 'emphasis': 273367, 'franceschini': 331056, 'the opec': 862371, 'opec meeting': 611909, 'meeting and': 527668, 'it failed': 457930, 'failed outcome': 296156, 'outcome serve': 628875, 'serve evidence': 751889, 'challenge economy': 171441, 'currently facing': 221528, 'facing while': 295658, 'while government': 986882, 'government with': 360821, 'an emphasis': 55699, 'emphasis on': 273372, 'chinese administration': 177184, 'administration attempt': 32455, '19 elizabeth': 6744, 'elizabeth franceschini': 271530, 'the opec meeting': 862375, 'opec meeting and': 611910, 'meeting and it': 527671, 'and it failed': 65525, 'it failed outcome': 457931, 'failed outcome serve': 296157, 'outcome serve evidence': 628876, 'serve evidence of': 751890, 'evidence of the': 288372, 'of the challenge': 590855, 'the challenge economy': 850640, 'challenge economy are': 171442, 'economy are currently': 267667, 'are currently facing': 85664, 'currently facing while': 221530, 'facing while government': 295659, 'while government with': 986885, 'government with an': 360822, 'with an emphasis': 997209, 'an emphasis on': 55701, 'emphasis on the': 273376, 'on the chinese': 604024, 'the chinese administration': 850842, 'chinese administration attempt': 177185, 'administration attempt to': 32456, 'attempt to handle': 102245, 'handle the spread': 376275, 'spread of 19': 790647, 'of 19 elizabeth': 579389, '19 elizabeth franceschini': 6745, 'chill': 176344, 'thanks govt': 842093, 'govt for': 361124, 'the beautiful': 849405, 'beautiful step': 118716, 'to lockdown': 909396, 'city should': 179353, 'should ve': 766622, 've done': 953057, 'done earlier': 254824, 'earlier stay': 264479, 'home enjoy': 401141, 'enjoy family': 277131, 'family time': 298315, 'time kindly': 897104, 'kindly don': 475123, 'don ask': 253344, 'and chill': 59835, 'chill together': 176381, 'together don': 920765, 'panic try': 638736, 'store sugar': 810442, 'sugar usual': 817479, 'usual food': 950942, 'item and': 463050, 'water don': 968965, 'thanks govt for': 842094, 'govt for the': 361127, 'for the beautiful': 326318, 'the beautiful step': 849406, 'beautiful step to': 118717, 'step to lockdown': 799655, 'to lockdown the': 909406, 'lockdown the city': 500006, 'the city should': 850957, 'city should ve': 179356, 'should ve done': 766624, 've done earlier': 953058, 'done earlier stay': 254825, 'earlier stay home': 264480, 'stay home enjoy': 796958, 'home enjoy family': 401142, 'enjoy family time': 277132, 'family time kindly': 298316, 'time kindly don': 897105, 'kindly don ask': 475124, 'don ask your': 253345, 'ask your friend': 95685, 'your friend and': 1023967, 'friend and their': 333513, 'their family to': 873273, 'to come and': 903019, 'come and chill': 187212, 'and chill together': 59839, 'chill together don': 176382, 'together don panic': 920766, 'don panic try': 253815, 'panic try and': 638737, 'try and store': 934456, 'and store sugar': 72518, 'store sugar usual': 810443, 'sugar usual food': 817480, 'usual food item': 950943, 'food item and': 315193, 'item and water': 463083, 'and water don': 75235, 'water don panic': 968966, 'buying put': 150940, 'delivery network': 234198, 'network however': 557728, 'predict which': 669591, 'which item': 986078, 'item consumer': 463188, 'will stock': 994988, 'on if': 601479, 'continues seo': 201435, 'panic buying put': 637856, 'buying put additional': 150941, 'pressure on the': 671219, 'the food delivery': 855541, 'food delivery network': 314136, 'delivery network however': 234199, 'network however it': 557729, 'however it is': 409403, 'it is difficult': 458929, 'is difficult to': 447175, 'to predict which': 911992, 'predict which item': 669592, 'which item consumer': 986080, 'item consumer will': 463190, 'consumer will stock': 199553, 'will stock up': 994992, 'up on if': 945581, 'on if the': 601481, 'if the spread': 415033, 'virus continues seo': 958078, 'continues seo sem': 201436, 'following against': 312673, 'after washing': 36507, 'soap stock': 779117, 'with enough': 998231, 'food isolate': 315169, 'isolate yourself': 454958, 'virus hold': 958294, 'hold onto': 399984, 'onto god': 611660, 'god god': 354715, 'will heal': 993692, 'heal our': 386069, 'in jesus': 424388, 'jesus name': 465308, 'name good': 551633, 'morning fightcovid19': 541257, 'take note of': 832377, 'note of the': 572771, 'of the following': 591037, 'the following against': 855495, 'following against covid': 312674, '19 after washing': 4859, 'after washing your': 36509, 'with soap stock': 1000806, 'soap stock your': 779118, 'stock your store': 803232, 'your store with': 1025997, 'store with enough': 811375, 'with enough food': 998233, 'enough food isolate': 277402, 'food isolate yourself': 315170, 'isolate yourself from': 454961, 'yourself from the': 1026623, 'from the corona': 337654, 'corona virus hold': 204316, 'virus hold onto': 958295, 'hold onto god': 399985, 'onto god god': 611661, 'god god will': 354716, 'god will heal': 354837, 'will heal our': 993693, 'heal our world': 386070, 'our world in': 625408, 'world in jesus': 1009660, 'in jesus name': 424390, 'jesus name good': 465309, 'name good morning': 551634, 'good morning fightcovid19': 357405, 'the image': 857890, 'image have': 416633, 'have resulted': 382305, 'in outrage': 426368, 'outrage food': 629307, 'food codvid19': 313955, 'codvid19 uk': 185417, 'uk panicbuying': 938611, 'the image have': 857891, 'image have resulted': 416634, 'have resulted in': 382306, 'resulted in outrage': 717681, 'in outrage food': 426369, 'outrage food codvid19': 629308, 'food codvid19 uk': 313956, 'codvid19 uk panicbuying': 185418, 'anybody': 80063, 'anybody looking': 80101, 'sanitizer hit': 735085, 'hit my': 398332, 'dm if': 248895, 'not rt': 571402, 'rt to': 726833, 'someone out': 784595, 'out handsanitizer': 626258, 'anybody looking for': 80102, 'looking for hand': 502871, 'hand sanitizer hit': 375442, 'sanitizer hit my': 735086, 'hit my dm': 398333, 'my dm if': 548011, 'dm if not': 248897, 'if not rt': 414507, 'not rt to': 571403, 'rt to help': 726836, 'help someone out': 390547, 'someone out handsanitizer': 784596, 'whereamask': 985410, 'mystar991': 550993, 'scary video': 741214, 'spread coronavirus': 790488, 'coronavirus across': 205447, 'supermarket whereamask': 823832, 'whereamask socialdistancing': 985411, 'socialdistancing mystar991': 780542, 'scary video show': 741215, 'cough spread coronavirus': 208563, 'spread coronavirus across': 790489, 'coronavirus across supermarket': 205448, 'across supermarket whereamask': 29473, 'supermarket whereamask socialdistancing': 823833, 'whereamask socialdistancing mystar991': 985412, 'worker positive for': 1007610, 'proliferate': 683597, 'fraudsters and': 331394, 'and scammer': 71038, 'will proliferate': 994481, 'proliferate with': 683598, 'new illegal': 558906, 'illegal scheme': 416240, 'scheme designed': 741559, 'take money': 832332, 'money out': 536959, 'people pocket': 649142, 'pocket outline': 662189, 'outline what': 629102, 'and isn': 65446, 'isn doing': 454472, 'this must': 889066, 'read piece': 700532, 'fraudsters and scammer': 331397, 'and scammer will': 71042, 'scammer will proliferate': 740659, 'will proliferate with': 994482, 'proliferate with new': 683599, 'with new illegal': 999705, 'new illegal scheme': 558907, 'illegal scheme designed': 416241, 'scheme designed to': 741560, 'designed to take': 238366, 'to take money': 916204, 'take money out': 832334, 'money out of': 536961, 'out of people': 626803, 'of people pocket': 587967, 'people pocket outline': 649143, 'pocket outline what': 662190, 'outline what should': 629103, 'what should do': 982184, 'should do and': 765922, 'do and isn': 249068, 'and isn doing': 65447, 'isn doing to': 454474, 'doing to protect': 252798, 'protect consumer in': 684807, 'consumer in this': 197836, 'in this must': 429980, 'this must read': 889068, 'must read piece': 546835, 'penn': 646529, 'reliability': 709185, 'increased economic': 433308, 'economic turmoil': 267344, 'turmoil caused': 935616, 'that blocking': 842999, 'blocking energy': 132882, 'energy infrastructure': 276481, 'infrastructure project': 438213, 'project such': 683535, 'the penn': 863439, 'penn east': 646530, 'east pipeline': 265336, 'pipeline threatens': 656916, 'threatens the': 893855, 'america energy': 51511, 'energy reliability': 276572, 'reliability and': 709186, 'time of increased': 897342, 'of increased economic': 585078, 'increased economic turmoil': 433309, 'economic turmoil caused': 267345, 'turmoil caused by': 935617, 'by the we': 154478, 'the we are': 871214, 'we are concerned': 970508, 'are concerned that': 85479, 'concerned that blocking': 193215, 'that blocking energy': 843000, 'blocking energy infrastructure': 132883, 'energy infrastructure project': 276482, 'infrastructure project such': 438214, 'project such the': 683536, 'such the penn': 816805, 'the penn east': 863440, 'penn east pipeline': 646531, 'east pipeline threatens': 265337, 'pipeline threatens the': 656917, 'threatens the future': 893856, 'future of america': 342388, 'of america energy': 580039, 'america energy reliability': 51512, 'energy reliability and': 276573, 'reliability and supply': 709187, 'service taking': 752893, 'demand many': 235837, 'business hit': 143847, 'hit hard': 398246, 'hard by': 377883, 'lockdown are': 499164, 'are finding': 86569, 'finding new': 307505, 'survive 7news': 829117, 'delivery service taking': 234468, 'service taking food': 752895, 'taking food to': 833367, 'food to family': 317249, 'to family are': 905653, 'family are struggling': 297634, 'with demand many': 997982, 'demand many business': 235839, 'many business hit': 513845, 'business hit hard': 143849, 'hit hard by': 398249, 'hard by the': 377887, '19 lockdown are': 8370, 'lockdown are finding': 499166, 'are finding new': 86572, 'finding new way': 307508, 'way to survive': 970110, 'to survive 7news': 916015, 'shotoniphone': 765459, 'iphonography': 444596, 'to somewhere': 914919, 'somewhere with': 785328, 'le hurt': 482981, 'hurt in': 411585, 'heart but': 388275, 'my pocket': 549796, 'pocket supermarket': 662207, 'supermarket covi': 819848, 'covi 19': 212535, 'groceryshopping shotoniphone': 366276, 'shotoniphone iphonography': 765460, 'off to somewhere': 594326, 'to somewhere with': 914920, 'somewhere with le': 785329, 'with le hurt': 999188, 'le hurt in': 482982, 'hurt in my': 411586, 'in my heart': 425584, 'my heart but': 548650, 'heart but in': 388276, 'in my pocket': 425613, 'my pocket supermarket': 549797, 'pocket supermarket covi': 662208, 'supermarket covi 19': 819849, 'covi 19 groceryshopping': 212536, '19 groceryshopping shotoniphone': 7297, 'groceryshopping shotoniphone iphonography': 366277, 'so lot': 777595, 'about deregulation': 25096, 'deregulation and': 237842, 'sector effort': 744178, 'effort almost': 269465, 'almost none': 46706, 'none about': 566544, 'government itself': 360291, 'itself is': 463938, 'doing re': 252620, 're production': 699318, 'of test': 590680, 'test and': 838910, 'and ppes': 69287, 'so lot of': 777596, 'lot of talk': 504297, 'of talk about': 590587, 'talk about deregulation': 833736, 'about deregulation and': 25097, 'deregulation and private': 237843, 'and private sector': 69527, 'private sector effort': 678977, 'sector effort almost': 744179, 'effort almost none': 269466, 'almost none about': 46707, 'none about what': 566545, 'what the government': 982322, 'the government itself': 856555, 'government itself is': 360292, 'itself is doing': 463939, 'is doing re': 447287, 'doing re production': 252623, 're production and': 699319, 'production and distribution': 681921, 'distribution of test': 248181, 'of test and': 590681, 'test and ppes': 838916, 'tm': 899350, 'face off': 294682, 'off 3m': 593600, '3m brings': 18305, 'brings tm': 140280, 'tm suit': 899351, 'suit against': 817750, 'against company': 37368, 'company inflating': 190784, 'for mask': 323266, 'mask now': 519027, 're needed': 699059, 'needed more': 556432, 'ever ma': 285403, 'face off 3m': 294683, 'off 3m brings': 593601, '3m brings tm': 18306, 'brings tm suit': 140281, 'tm suit against': 899352, 'suit against company': 817751, 'against company inflating': 37369, 'company inflating price': 190785, 'inflating price for': 437117, 'price for mask': 673997, 'for mask now': 323278, 'mask now that': 519032, 'now that they': 576022, 'that they re': 846947, 'they re needed': 883077, 're needed more': 699060, 'needed more than': 556433, 'than ever ma': 840592, 'oldman': 598717, 'sad on': 729204, 'this that': 890508, 'out supermarket': 627275, 'supermarket massachusetts': 821469, 'massachusetts oldman': 519919, 'it sad on': 460826, 'sad on what': 729205, 'doing during this': 252368, 'during this that': 263325, 'this that lot': 890510, 'food that they': 317101, 'that they had': 846934, 'had to throw': 373736, 'to throw out': 917565, 'throw out supermarket': 895044, 'out supermarket massachusetts': 627279, 'supermarket massachusetts oldman': 821470, 'lago': 478910, 'yard': 1014151, 'mar lago': 515017, 'lago get': 478911, 'your 95': 1022720, '95 mask': 23586, 'the trump': 870060, 'trump yard': 933993, 'yard sale': 1014162, 'sale covid': 732146, 'test at': 838926, 'at special': 100602, 'special price': 788024, 'price almost': 672277, 'almost free': 46649, 'mar lago get': 515018, 'lago get your': 478912, 'get your 95': 348689, 'your 95 mask': 1022721, '95 mask at': 23587, 'at the trump': 101132, 'the trump yard': 870071, 'trump yard sale': 933994, 'yard sale covid': 1014163, 'sale covid 19': 732147, '19 test at': 11069, 'test at special': 838931, 'at special price': 100603, 'special price almost': 788026, 'price almost free': 672279, 'explicit': 292282, 'hidden': 394805, 'co2': 185024, 'sliding': 773917, 'subsidy': 816003, 'carbontax': 163435, 'coronavirus bailouts': 205539, 'bailouts should': 108700, 'be explicit': 114741, 'explicit not': 292283, 'not hidden': 569957, 'hidden by': 394810, 'by co2': 152144, 'co2 tax': 185035, 'cut and': 223227, 'and nothing': 67799, 'for oil': 324031, 'oil money': 596959, 'money won': 537187, 'won go': 1003820, 'into production': 442895, 'production job': 682099, 'job when': 466282, 'when oil': 983791, 'are sliding': 90172, 'sliding energy': 773918, 'energy oil': 276521, 'oil airline': 596594, 'airline saudiarabia': 40012, 'saudiarabia opec': 737350, 'opec subsidy': 611969, 'subsidy co2': 816006, 'co2 carbontax': 185026, 'coronavirus bailouts should': 205540, 'bailouts should be': 108701, 'should be explicit': 765619, 'be explicit not': 114742, 'explicit not hidden': 292284, 'not hidden by': 569958, 'hidden by co2': 394811, 'by co2 tax': 152145, 'co2 tax cut': 185036, 'tax cut and': 834953, 'cut and nothing': 223230, 'and nothing for': 67803, 'nothing for oil': 573012, 'for oil money': 324037, 'oil money won': 596960, 'money won go': 537188, 'won go into': 1003824, 'go into production': 353764, 'into production job': 442896, 'production job when': 682100, 'job when oil': 466283, 'when oil price': 983793, 'price are sliding': 672737, 'are sliding energy': 90173, 'sliding energy oil': 773919, 'energy oil airline': 276522, 'oil airline saudiarabia': 596595, 'airline saudiarabia opec': 40013, 'saudiarabia opec subsidy': 737351, 'opec subsidy co2': 611970, 'subsidy co2 carbontax': 816007, 'collaboration': 185924, '3d': 18232, 'tech in': 836105, 'corona technology': 204214, 'is helping': 448391, 'helping deal': 391303, 'crisis never': 217749, 'never before': 557909, 'before digital': 122741, 'digital communication': 242528, 'communication working': 189659, 'working online': 1008831, 'online distance': 608112, 'distance learning': 246757, 'learning online': 484225, 'online online': 608615, 'shopping scientific': 763818, 'scientific collaboration': 742169, 'collaboration drone': 185926, 'drone 3d': 260053, '3d printing': 18252, 'printing and': 678336, 'more technology': 540528, 'technology workfromhome': 836398, 'tech in the': 836107, 'of corona technology': 581900, 'corona technology is': 204215, 'technology is helping': 836320, 'is helping deal': 448396, 'helping deal with': 391304, '19 crisis never': 6288, 'crisis never before': 217750, 'never before digital': 557910, 'before digital communication': 122742, 'digital communication working': 242529, 'communication working online': 189660, 'working online distance': 1008832, 'online distance learning': 608113, 'distance learning online': 246759, 'learning online online': 484227, 'online online shopping': 608617, 'online shopping scientific': 609260, 'shopping scientific collaboration': 763819, 'scientific collaboration drone': 742170, 'collaboration drone 3d': 185927, 'drone 3d printing': 260054, '3d printing and': 18253, 'printing and more': 678337, 'and more technology': 67219, 'more technology workfromhome': 540529, 'stated': 796124, 'athanasia': 101741, 'crisis make': 217691, 'make all': 509652, 'your account': 1022733, 'account eligible': 28658, 'for coronacrisis': 320371, 'coronacrisis relief': 204725, 'relief stated': 709464, 'stated in': 796134, 'news release': 560743, 'release by': 708927, 'by mr': 153252, 'mr athanasia': 544346, 'athanasia please': 101742, 'the people are': 863454, 'are in crisis': 87370, 'in crisis make': 421888, 'crisis make all': 217692, 'make all of': 509654, 'all of your': 43728, 'of your account': 593442, 'your account eligible': 1022736, 'account eligible for': 28659, 'eligible for coronacrisis': 271419, 'for coronacrisis relief': 320372, 'coronacrisis relief stated': 204727, 'relief stated in': 709465, 'stated in this': 796135, 'in this news': 429983, 'this news release': 889134, 'news release by': 560744, 'release by mr': 708928, 'by mr athanasia': 153253, 'mr athanasia please': 544347, 'athanasia please help': 101743, 'please help the': 660083, 'ct': 220082, 'webcast': 974974, 'parksdata': 642143, 'impacting every': 418215, 'every business': 285703, 'business please': 144233, 'please join': 660129, 'join on': 466795, 'at pm': 100139, 'pm ct': 661886, 'ct for': 220102, 'for webinar': 327675, 'with research': 1000472, 'research analyst': 713659, 'analyst in': 57147, 'in discussing': 422295, 'discussing covid': 244987, 'technology register': 836347, 'register marketresearch': 707582, 'marketresearch webcast': 517868, 'webcast parksdata': 974979, 'know is impacting': 476507, 'is impacting every': 448702, 'impacting every business': 418216, 'every business please': 285706, 'business please join': 144234, 'please join on': 660136, 'join on thursday': 466801, 'on thursday march': 604673, '26 at pm': 16152, 'at pm ct': 100141, 'pm ct for': 661888, 'ct for webinar': 220103, 'for webinar with': 327679, 'webinar with research': 975142, 'with research analyst': 1000473, 'research analyst in': 713661, 'analyst in discussing': 57148, 'in discussing covid': 422296, 'discussing covid 19': 244988, 'on consumer technology': 600081, 'consumer technology register': 199237, 'technology register marketresearch': 836348, 'register marketresearch webcast': 707583, 'marketresearch webcast parksdata': 517869, 'attacked': 102180, 'badge': 108119, 'news hero': 560511, 'hero worker': 394178, 'worker ha': 1007073, 'been attacked': 120707, 'attacked for': 102187, 'her id': 392128, 'id badge': 412931, 'badge at': 108120, 'supermarket hero': 820747, 'breaking news hero': 139003, 'news hero worker': 560512, 'hero worker ha': 394179, 'worker ha been': 1007074, 'ha been attacked': 369727, 'been attacked for': 120708, 'attacked for her': 102188, 'for her id': 322223, 'her id badge': 392129, 'id badge at': 412932, 'badge at supermarket': 108121, 'at supermarket hero': 100733, 'resolve': 714630, 'emergency doctor': 272671, 'doctor asks': 250843, 'asks why': 96173, 'why staff': 991371, 'better mask': 128361, 'mask than': 519335, 'than hospital': 840752, 'hospital staff': 404625, 'frontline of': 338801, 'of treatment': 592441, 'treatment what': 931168, 'is government': 448167, 'to resolve': 913363, 'resolve this': 714642, 'this shortage': 890118, 'of ppe': 588313, 'ppe health': 667971, 'emergency doctor asks': 272672, 'doctor asks why': 250844, 'asks why staff': 96174, 'why staff at': 991372, 'staff at the': 792240, 'the local retail': 859567, 'local retail store': 498348, 'store have better': 808069, 'have better mask': 379778, 'better mask than': 128362, 'mask than hospital': 519336, 'than hospital staff': 840754, 'hospital staff at': 404629, 'at the frontline': 100956, 'the frontline of': 855883, 'frontline of treatment': 338808, 'of treatment what': 592444, 'treatment what is': 931169, 'what is government': 981696, 'is government doing': 448169, 'doing to resolve': 252799, 'to resolve this': 913365, 'resolve this shortage': 714643, 'this shortage of': 890119, 'shortage of ppe': 765130, 'of ppe health': 588318, 'all takeaway': 44597, 'takeaway drink': 832851, 'drink we': 258896, 'got better': 358433, 'better drink': 128268, 'drink than': 258881, 'than any': 840345, 'll avoid': 496559, 'isolation without': 455513, 'without nice': 1002801, 'nice selection': 562470, 'selection of': 747523, 'alcohol to': 41145, 'you through': 1021725, 'through shoplocal': 894673, 'shoplocal coronacrisis': 761223, 'off all takeaway': 593627, 'all takeaway drink': 44598, 'takeaway drink we': 832852, 'drink we ve': 258897, 've got better': 953168, 'got better drink': 358434, 'better drink than': 128269, 'drink than any': 258882, 'than any supermarket': 840352, 'any supermarket and': 79888, 'supermarket and you': 819111, 'you ll avoid': 1019641, 'll avoid the': 496560, 'avoid the madness': 105327, 'the madness you': 859871, 'madness you can': 508223, 'can go into': 158501, 'go into isolation': 353754, 'into isolation without': 442669, 'isolation without nice': 455515, 'without nice selection': 1002802, 'nice selection of': 562471, 'selection of alcohol': 747525, 'of alcohol to': 579902, 'alcohol to see': 41157, 'to see you': 914102, 'see you through': 746115, 'you through shoplocal': 1021730, 'through shoplocal coronacrisis': 894674, 'wetherspoon': 980775, 'timmartin': 898528, 'bos of': 135683, 'of wetherspoon': 593043, 'wetherspoon pub': 980780, 'pub ha': 687710, 'ha suggested': 372110, 'suggested his': 817569, 'his 40': 397172, '40 00': 18509, '00 staff': 495, 'staff should': 792859, 'tesco indicating': 838724, 'indicating the': 435016, 'company would': 191360, 'not continue': 568860, 'pay employee': 644843, 'having shut': 384268, 'shut their': 767947, 'door due': 255576, '19 wetherspoon': 11990, 'wetherspoon crisis': 980778, 'crisis timmartin': 218241, 'the bos of': 849883, 'bos of wetherspoon': 135685, 'of wetherspoon pub': 593044, 'wetherspoon pub ha': 980782, 'pub ha suggested': 687711, 'ha suggested his': 372111, 'suggested his 40': 817570, 'his 40 00': 397173, '40 00 staff': 18513, '00 staff should': 497, 'staff should go': 792863, 'should go to': 766049, 'work at tesco': 1004904, 'at tesco indicating': 100843, 'tesco indicating the': 838725, 'indicating the company': 435017, 'the company would': 851365, 'company would not': 191362, 'would not continue': 1012075, 'not continue to': 568861, 'to pay employee': 911526, 'pay employee having': 644845, 'employee having shut': 273929, 'having shut their': 384269, 'shut their door': 767948, 'their door due': 873068, 'door due to': 255577, 'to the spread': 917085, 'covid 19 wetherspoon': 214060, '19 wetherspoon crisis': 11991, 'wetherspoon crisis timmartin': 980779, 'haulage': 379005, 'sewerage': 754166, 'crematorium': 216648, 'cemetery': 169004, 'teaching': 835545, 'would that': 1012313, 'same clown': 733000, 'clown who': 184382, 'want water': 966167, 'water gas': 969008, 'gas electricity': 343832, 'electricity fuel': 271174, 'fuel distribution': 340159, 'distribution port': 248198, 'port distribution': 664879, 'distribution centre': 248128, 'centre haulage': 169504, 'haulage sewerage': 379007, 'sewerage supermarket': 754167, 'supermarket crematorium': 819860, 'crematorium cemetery': 216649, 'cemetery medical': 169007, 'medical teaching': 526473, 'teaching emergency': 835550, 'emergency employee': 272679, 'employee etc': 273823, 'work through': 1005865, 'and would that': 75934, 'would that be': 1012315, 'that be the': 842948, 'the same clown': 866208, 'same clown who': 733001, 'clown who want': 184384, 'who want water': 989929, 'want water gas': 966168, 'water gas electricity': 969009, 'gas electricity fuel': 343833, 'electricity fuel distribution': 271175, 'fuel distribution port': 340160, 'distribution port distribution': 248199, 'port distribution centre': 664880, 'distribution centre haulage': 248130, 'centre haulage sewerage': 169505, 'haulage sewerage supermarket': 379008, 'sewerage supermarket crematorium': 754168, 'supermarket crematorium cemetery': 819861, 'crematorium cemetery medical': 216650, 'cemetery medical teaching': 169008, 'medical teaching emergency': 526474, 'teaching emergency employee': 835551, 'emergency employee etc': 272680, 'employee etc to': 273824, 'etc to work': 282843, 'to work through': 918794, 'pun': 689148, 'greatest': 363268, 'found my': 330290, 'my secret': 550010, 'secret stash': 743934, 'the quality': 864948, 'quality is': 691805, 'is crap': 446876, 'crap pun': 214907, 'pun intended': 689151, 'intended but': 441048, 'it think': 461638, 'the greatest': 856748, 'greatest toilet': 363296, 'paper ever': 640142, 'ever created': 285261, 'created inquire': 215836, 'inquire within': 438999, 'within pandemic': 1002409, 'found my secret': 330293, 'my secret stash': 550011, 'secret stash of': 743935, 'stash of toiletpaper': 795295, 'of toiletpaper for': 592263, 'toiletpaper for anyone': 921998, 'anyone who need': 80626, 'need it the': 555111, 'it the quality': 461569, 'the quality is': 864950, 'quality is crap': 691806, 'is crap pun': 446877, 'crap pun intended': 214908, 'pun intended but': 689152, 'intended but it': 441049, 'but it think': 146172, 'it think it': 461640, 'think it the': 885352, 'it the greatest': 461540, 'the greatest toilet': 856757, 'greatest toilet paper': 363297, 'toilet paper ever': 921270, 'paper ever created': 640143, 'ever created inquire': 285262, 'created inquire within': 215837, 'inquire within pandemic': 439000, 'wet': 980727, 'outbreak many': 628437, 'many dog': 514004, 'dog owner': 252143, 'owner have': 632457, 'on pet': 602776, 'food find': 314468, 'out what': 627804, 'what option': 981968, 'option you': 614150, 'if wet': 415351, 'wet or': 980747, 'or dry': 615089, 'dry food': 261261, '19 outbreak many': 9153, 'outbreak many dog': 628439, 'many dog owner': 514005, 'dog owner have': 252144, 'owner have been': 632458, 'forced to stock': 328658, 'up on pet': 945604, 'on pet food': 602777, 'pet food find': 653384, 'food find out': 314470, 'find out what': 307156, 'out what option': 627808, 'what option you': 981972, 'option you have': 614153, 'you have if': 1019059, 'have if wet': 381009, 'if wet or': 415352, 'wet or dry': 980748, 'or dry food': 615090, 'dry food supply': 261266, 'repression': 712971, 'distracted': 247889, 'september': 751152, 'am extremely': 50037, 'that government': 844056, 'using cover': 950435, 'cover to': 212307, 'action not': 30082, 'not supported': 571824, 'by public': 153685, 'health emergency': 386393, 'emergency just': 272766, 'just plain': 469451, 'old repression': 598446, 'repression while': 712972, 'is distracted': 447242, 'distracted there': 247894, 'be pressure': 116528, 'pressure like': 671182, 'after september': 36168, 'september 11': 751153, '11 not': 2561, 'speak out': 787703, 'am extremely concerned': 50038, 'extremely concerned that': 293864, 'concerned that government': 193217, 'that government are': 844058, 'government are using': 359907, 'are using cover': 91413, 'using cover to': 950436, 'cover to take': 212309, 'take action not': 831898, 'action not supported': 30085, 'not supported by': 571825, 'supported by public': 827045, 'by public health': 153686, 'public health emergency': 688065, 'health emergency just': 386398, 'emergency just plain': 272768, 'just plain old': 469452, 'plain old repression': 658010, 'old repression while': 598447, 'repression while the': 712973, 'world is distracted': 1009693, 'is distracted there': 447243, 'distracted there will': 247895, 'will be pressure': 992617, 'be pressure like': 116529, 'pressure like after': 671183, 'like after september': 489730, 'after september 11': 36169, 'september 11 not': 751154, '11 not to': 2562, 'not to speak': 572186, 'to speak out': 914963, 'longevity': 502124, 'invisible': 444242, 'inhale': 438423, 'bam': 109137, 'what scary': 982131, 'scary about': 741125, 'about longevity': 25663, 'longevity on': 502125, 'on surface': 603843, 'air is': 39751, 'make grocery': 509950, 'store run': 809915, 'run and': 727559, 'from shopper': 337268, 'shopper we': 761807, 'could walk': 209820, 'through an': 894318, 'an invisible': 56451, 'invisible cloud': 444243, 'coronavirus left': 206224, 'left behind': 485418, 'behind by': 124609, 'by another': 151863, 'another shopper': 77848, 'shopper inhale': 761568, 'inhale it': 438424, 'and bam': 58673, 'bam this': 109138, 'is from': 447940, 'what scary about': 982132, 'scary about longevity': 741126, 'about longevity on': 25664, 'longevity on surface': 502126, 'on surface and': 603844, 'surface and in': 827984, 'and in the': 65074, 'the air is': 848488, 'air is that': 39752, 'is that if': 452657, 'if we make': 415293, 'we make grocery': 972335, 'make grocery store': 509952, 'grocery store run': 365733, 'store run and': 809916, 'run and stay': 727562, 'and stay six': 72302, 'away from shopper': 105909, 'from shopper we': 337271, 'shopper we could': 761808, 'we could walk': 971220, 'could walk through': 209821, 'walk through an': 964891, 'through an invisible': 894322, 'an invisible cloud': 56452, 'invisible cloud of': 444244, 'cloud of coronavirus': 184311, 'of coronavirus left': 581948, 'coronavirus left behind': 206225, 'left behind by': 485420, 'behind by another': 124610, 'by another shopper': 151867, 'another shopper inhale': 77849, 'shopper inhale it': 761569, 'inhale it and': 438425, 'it and bam': 456483, 'and bam this': 58674, 'bam this is': 109139, 'this is from': 888264, 'earlier opec': 264470, 'representing about': 712938, 'about 10': 24629, 'earlier opec russia': 264471, 'nation agreed to': 552104, 'amount representing about': 53277, 'representing about 10': 712939, 'about 10 of': 24630, 'individual who': 435277, 'dangerous but': 225726, 'stamp currently': 793417, 'currently can': 221490, 'used online': 949982, 'online forcing': 608249, 'forcing some': 328733, 'health at': 386173, 'risk just': 723654, 'to access': 899947, 'access delivery': 28108, 'major equity': 509318, 'equity issue': 279949, 'for individual who': 322552, 'individual who are': 435279, 'vulnerable to covid': 961217, 'store is dangerous': 808482, 'is dangerous but': 447027, 'dangerous but food': 225727, 'but food stamp': 145740, 'food stamp currently': 316735, 'stamp currently can': 793418, 'currently can be': 221491, 'be used online': 117920, 'used online forcing': 949983, 'online forcing some': 608251, 'forcing some to': 328734, 'some to put': 784079, 'put their health': 690879, 'their health at': 873512, 'health at risk': 386175, 'at risk just': 100373, 'risk just to': 723656, 'just to buy': 470085, 'buy food not': 148664, 'food not being': 315559, 'able to access': 24443, 'to access delivery': 899949, 'access delivery is': 28109, 'delivery is major': 234141, 'is major equity': 449525, 'major equity issue': 509319, 'out my': 626593, 'my latest': 548981, 'article make': 94386, 'make online': 510272, 'shopping appealing': 762054, 'appealing during': 82099, 'check out my': 174560, 'out my latest': 626602, 'my latest article': 548982, 'latest article make': 481220, 'article make online': 94387, 'make online shopping': 510274, 'online shopping appealing': 609033, 'shopping appealing during': 762055, 'appealing during covid': 82100, 'disappointing': 244131, 'fortune': 329924, 'is disappointing': 447194, 'disappointing so': 244143, 'so see': 778162, 'see online': 745507, 'shop making': 760438, 'making absolute': 510938, 'absolute fortune': 27236, 'fortune from': 329929, 'selling mask': 749334, 'and respiratory': 70345, 'respiratory mask': 715246, 'for inflated': 322559, 'like triple': 491665, 'triple the': 932264, 'the standard': 867723, 'standard price': 793694, 'it is disappointing': 458931, 'is disappointing so': 447195, 'disappointing so see': 244144, 'so see online': 778163, 'see online shop': 745509, 'online shop making': 608979, 'shop making absolute': 760439, 'making absolute fortune': 510939, 'absolute fortune from': 27237, 'fortune from selling': 329931, 'from selling mask': 337211, 'selling mask and': 749335, 'mask and respiratory': 518363, 'and respiratory mask': 70346, 'respiratory mask for': 715247, 'mask for inflated': 518682, 'for inflated price': 322560, 'inflated price like': 437052, 'price like triple': 675048, 'like triple the': 491666, 'triple the standard': 932265, 'the standard price': 867725, 'thewalkingdead': 881062, 'today went': 920496, 'pharmacy and': 654206, 'glove trying': 352986, 'touch my': 926509, 'face keeping': 294494, 'keeping distance': 472405, 'distance to': 246862, 'others trying': 621749, 'it fast': 457957, 'fast possible': 300013, 'possible and': 665567, 'finally washing': 306134, 'hand back': 374815, 'home really': 401947, 'really felt': 702198, 'of thewalkingdead': 591879, 'today went to': 920503, 'the pharmacy and': 863648, 'pharmacy and the': 654226, 'and the supermarket': 73605, 'supermarket with glove': 823922, 'with glove trying': 998626, 'glove trying not': 352987, 'not to touch': 572202, 'to touch my': 917651, 'touch my face': 926510, 'my face keeping': 548159, 'face keeping distance': 294495, 'keeping distance to': 472409, 'distance to others': 246865, 'to others trying': 911142, 'others trying to': 621750, 'do it fast': 249476, 'it fast possible': 457958, 'fast possible and': 300014, 'possible and finally': 665570, 'and finally washing': 62862, 'finally washing my': 306135, 'my hand back': 548602, 'hand back at': 374816, 'at home really': 99090, 'home really felt': 401948, 'really felt like': 702199, 'felt like being': 303405, 'like being in': 489900, 'being in an': 125290, 'in an episode': 420299, 'episode of thewalkingdead': 279545, 'extending': 293219, 'menoume': 528607, 'spiti': 789578, 'greece': 363337, 'legislation extending': 485966, 'extending supermarket': 293230, 'hour published': 405877, 'published in': 688654, 'in government': 423390, 'government gazette': 360119, 'gazette menoume': 344764, 'menoume spiti': 528608, 'spiti stayathome': 789579, 'stayathome greece': 797487, 'legislation extending supermarket': 485967, 'extending supermarket opening': 293231, 'opening hour published': 612858, 'hour published in': 405878, 'published in government': 688657, 'in government gazette': 423393, 'government gazette menoume': 360120, 'gazette menoume spiti': 344765, 'menoume spiti stayathome': 528609, 'spiti stayathome greece': 789580, 'all told': 45265, 'distance 6ft': 246621, '6ft apart': 21594, 'apart yet': 81379, 'yet every': 1016059, 'every shop': 286167, 'just stand': 469861, 'stand right': 793579, 'right up': 722381, 'your as': 1022839, 'as and': 94716, 'wearing king': 974669, 'king mask': 475280, 'funny how we': 341745, 'are all told': 84367, 'all told to': 45266, 'told to social': 923764, 'to social distance': 914822, 'social distance 6ft': 779494, 'distance 6ft apart': 246622, '6ft apart yet': 21600, 'apart yet every': 81380, 'yet every shop': 1016061, 'every shop supermarket': 286168, 'shop supermarket in': 760862, 'in the whole': 429679, 'whole of uk': 990291, 'of uk the': 592580, 'uk the customer': 938806, 'the customer just': 852726, 'customer just stand': 222558, 'just stand right': 469863, 'stand right up': 793581, 'right up your': 722384, 'up your as': 946731, 'your as and': 1022841, 'as and wearing': 94718, 'and wearing king': 75360, 'wearing king mask': 974670, 'buying panicbuying': 150872, 'panic buying panicbuying': 637839, 'buying panicbuying stoppanicbuying': 150876, 'eleven': 271387, 'eleven firm': 271388, 'firm are': 308314, 'under investigation': 940138, 'investigation for': 443867, 'for product': 324770, 'product used': 681799, 'to mitigate': 910192, 'mitigate the': 534539, '19 increase': 7808, 'eleven firm are': 271389, 'firm are under': 308319, 'are under investigation': 91279, 'under investigation for': 940140, 'investigation for hiking': 443868, 'for hiking their': 322279, 'their price the': 874428, 'price the demand': 676828, 'demand for product': 235482, 'for product used': 324777, 'product used to': 681801, 'used to mitigate': 950070, 'to mitigate the': 910198, 'mitigate the spread': 534544, 'covid 19 increase': 213256, 'belief': 126196, 'mark cuban': 515777, 'cuban say': 220168, 'he belief': 384780, 'belief 3m': 126197, '3m isn': 18325, 'doing enough': 252374, 'get mask': 347524, 'mask where': 519549, 'needed most': 556434, 'most during': 542274, 'during national': 262807, 'emergency via': 273038, 'via 3m': 955781, '3m pricegouging': 18332, 'pricegouging coronavirus': 677802, 'mark cuban say': 515778, 'cuban say he': 220169, 'say he belief': 738726, 'he belief 3m': 384781, 'belief 3m isn': 126198, '3m isn doing': 18326, 'isn doing enough': 454473, 'doing enough to': 252378, 'enough to keep': 277709, 'price low and': 675113, 'low and get': 505126, 'and get mask': 63586, 'get mask where': 347529, 'mask where they': 519552, 'where they re': 985285, 're needed most': 699061, 'needed most during': 556435, 'most during national': 542275, 'during national emergency': 262810, 'national emergency via': 552497, 'emergency via 3m': 273039, 'via 3m pricegouging': 955782, '3m pricegouging coronavirus': 18333, 'generated': 345571, 'pointed': 662730, 'clarified': 180069, 'sufficiently': 817405, 'mitigation': 534556, 'opec et': 611882, 'et al': 282347, 'al cannot': 40563, 'damage generated': 225199, 'generated by': 345572, 'been already': 120646, 'already pointed': 47574, 'pointed out': 662733, 'out ha': 626250, 'ha clarified': 370155, 'clarified sufficiently': 180071, 'sufficiently info': 817406, 'info is': 437504, 'is free': 447923, 'free out': 332039, 'read ease': 700327, 'ease pressure': 265096, 'pressure most': 671190, 'most probably': 542661, 'probably storage': 679384, 'storage and': 805949, 'from sliding': 337313, 'sliding further': 773920, 'further so': 342164, 'so mitigation': 777742, 'opec et al': 611883, 'et al cannot': 282349, 'al cannot stop': 40564, 'cannot stop the': 162136, 'stop the damage': 805128, 'the damage generated': 852807, 'damage generated by': 225200, 'generated by covid': 345574, 'ha been already': 369716, 'been already pointed': 120648, 'already pointed out': 47575, 'pointed out ha': 662734, 'out ha clarified': 626251, 'ha clarified sufficiently': 370156, 'clarified sufficiently info': 180072, 'sufficiently info is': 817407, 'info is free': 437506, 'is free out': 447928, 'free out there': 332040, 'out there to': 627520, 'there to read': 879189, 'to read ease': 912829, 'read ease pressure': 700328, 'ease pressure most': 265097, 'pressure most probably': 671191, 'most probably storage': 542664, 'probably storage and': 679385, 'storage and prevent': 805951, 'and prevent price': 69412, 'price from sliding': 674118, 'from sliding further': 337314, 'sliding further so': 773921, 'further so mitigation': 342165, 'jeff': 464996, 'farber': 299004, 'to scrub': 913939, 'scrub down': 742895, 'store item': 808601, 'item these': 463717, 'day food': 227611, 'safety expert': 730525, 'expert prof': 291922, 'prof jeff': 682354, 'jeff farber': 465007, 'farber of': 299005, 'of offered': 587161, 'his thought': 397856, 'is it necessary': 449041, 'it necessary to': 459750, 'necessary to scrub': 554128, 'to scrub down': 913940, 'scrub down all': 742896, 'down all grocery': 256461, 'grocery store item': 365495, 'store item these': 808605, 'item these day': 463718, 'these day food': 879873, 'day food safety': 227613, 'food safety expert': 316268, 'safety expert prof': 730526, 'expert prof jeff': 291923, 'prof jeff farber': 682355, 'jeff farber of': 465008, 'farber of offered': 299006, 'of offered his': 587162, 'offered his thought': 594933, 'his thought to': 397858, 'thought to the': 893279, 'returning': 719996, 'sure should': 827670, 'should say': 766433, 'would appear': 1011526, 'appear that': 82117, 'that toiletpaper': 847078, 'toiletpaper supply': 922564, 'supply may': 825547, 'be returning': 116864, 'returning to': 720021, 'normal after': 567070, 'after fortnight': 35687, 'fortnight of': 329839, 'shelf have': 757141, 'seen some': 747243, 'some looroll': 783226, 'looroll in': 503172, 'supermarket toiletpaperpanic': 823488, 'toiletpaperpanic panicbuying': 923229, 'am not sure': 50259, 'not sure should': 571844, 'sure should say': 827671, 'should say this': 766434, 'say this but': 739362, 'it would appear': 462582, 'would appear that': 1011527, 'appear that toiletpaper': 82119, 'that toiletpaper supply': 847081, 'toiletpaper supply may': 922566, 'supply may be': 825548, 'may be returning': 521023, 'be returning to': 116866, 'returning to normal': 720023, 'to normal after': 910639, 'normal after fortnight': 567072, 'after fortnight of': 35688, 'fortnight of empty': 329841, 'empty shelf have': 275069, 'shelf have seen': 757146, 'have seen some': 382443, 'seen some looroll': 747247, 'some looroll in': 783227, 'looroll in supermarket': 503173, 'in supermarket toiletpaperpanic': 428696, 'supermarket toiletpaperpanic panicbuying': 823489, 'skimping': 773047, 'clued': 184565, 'bank to': 110253, 'make down': 509862, 'down payment': 257078, 'on house': 601372, 'some quality': 783677, 'quality tp': 691864, 'tp that': 927969, 'that extra': 843807, 'extra soft': 293644, 'soft stuff': 781486, 'stuff no': 815139, 'no skimping': 565515, 'skimping they': 773048, 'wouldn accept': 1012432, 'accept it': 27964, 'one clued': 606069, 'clued them': 184566, 'how valuable': 409131, 'valuable this': 952054, 'stuff is': 815102, 'now toiletpaper': 576192, 'toiletpaperapocalypse quarantineandchill': 922916, 'the bank to': 849256, 'bank to make': 110260, 'to make down': 909654, 'make down payment': 509863, 'down payment on': 257080, 'payment on house': 645690, 'on house with': 601374, 'house with some': 406694, 'with some quality': 1000859, 'some quality tp': 783678, 'quality tp that': 691865, 'tp that extra': 927970, 'that extra soft': 843812, 'extra soft stuff': 293645, 'soft stuff no': 781487, 'stuff no skimping': 815141, 'no skimping they': 565516, 'skimping they wouldn': 773049, 'they wouldn accept': 883958, 'wouldn accept it': 1012433, 'accept it ha': 27965, 'it ha no': 458402, 'ha no one': 371346, 'no one clued': 564924, 'one clued them': 606070, 'clued them in': 184567, 'them in on': 875907, 'in on how': 426120, 'on how valuable': 601428, 'how valuable this': 409134, 'valuable this stuff': 952055, 'this stuff is': 890392, 'stuff is now': 815103, 'is now toiletpaper': 450349, 'now toiletpaper toiletpaperapocalypse': 576198, 'toiletpaper toiletpaperapocalypse quarantineandchill': 922636, 'kke': 475865, 'backed': 107527, 'union mostly': 941911, 'mostly kke': 542973, 'kke backed': 475866, 'backed planning': 107536, 'planning day': 658531, 'of action': 579750, 'action in': 30045, 'wednesday say': 975686, 'need better': 554534, 'better health': 128313, 'protection 19': 685266, 'union mostly kke': 941912, 'mostly kke backed': 542974, 'kke backed planning': 475867, 'backed planning day': 107537, 'planning day of': 658532, 'day of action': 228052, 'of action in': 579752, 'action in support': 30048, 'in support of': 428737, 'support of supermarket': 826694, 'supermarket worker on': 824059, 'worker on wednesday': 1007492, 'on wednesday say': 605180, 'wednesday say they': 975687, 'say they need': 739344, 'they need better': 882722, 'need better health': 554535, 'better health protection': 128316, 'health protection 19': 386772, 'coeliacs': 185440, 'lactose': 478704, 'intolerant': 443340, 'xmas': 1013877, 'are removing': 89580, 'removing all': 710894, 'the free': 855762, 'shelf put': 757445, 'put extra': 690570, 'extra stock': 293655, 'on so': 603519, 'about coeliacs': 24975, 'coeliacs like': 185441, 'like my': 490814, 'daughter lactose': 226879, 'lactose intolerant': 478706, 'intolerant like': 443343, 'daughter in': 226862, 'in law': 424628, 'law bad': 482226, 'bad enough': 107837, 'enough they': 277678, 'they reduce': 883174, 'reduce this': 705990, 'this stock': 890333, 'at xmas': 101644, 'xmas easter': 1013880, 'easter etc': 265428, 'supermarket are removing': 819181, 'are removing all': 89581, 'removing all the': 710896, 'all the free': 44753, 'the free from': 855764, 'free from food': 331860, 'from food from': 335508, 'from the shelf': 337876, 'the shelf put': 866871, 'shelf put extra': 757446, 'put extra stock': 690572, 'extra stock on': 293656, 'stock on so': 802563, 'on so what': 603525, 'what about coeliacs': 980963, 'about coeliacs like': 24976, 'coeliacs like my': 185442, 'like my daughter': 490818, 'my daughter lactose': 547931, 'daughter lactose intolerant': 226880, 'lactose intolerant like': 478707, 'intolerant like my': 443344, 'my daughter in': 547928, 'daughter in law': 226863, 'in law bad': 424630, 'law bad enough': 482227, 'bad enough they': 107844, 'enough they reduce': 277680, 'they reduce this': 883177, 'reduce this stock': 705991, 'this stock at': 890334, 'stock at xmas': 801891, 'at xmas easter': 101645, 'xmas easter etc': 1013881, 'troop': 932536, 'definitely frontline': 232336, 'frontline troop': 338848, 'troop but': 932539, 'but shout': 147050, 'staff who': 793083, 'job customer': 465766, 'customer facing': 222368, 'facing and': 295399, 'facing 19': 295394, 'nh staff are': 562077, 'staff are definitely': 792184, 'are definitely frontline': 85735, 'definitely frontline troop': 232337, 'frontline troop but': 338849, 'troop but shout': 932540, 'but shout out': 147051, 'to supermarket staff': 915837, 'supermarket staff who': 822906, 'staff who are': 793085, 'who are doing': 988133, 'great job customer': 362784, 'job customer facing': 465767, 'customer facing and': 222370, 'facing and customer': 295400, 'and customer facing': 60840, 'customer facing 19': 222369, 'brigaid': 139781, 'trustedhelpatyourfingertips': 934357, 'safe stayhomestaysafe': 729986, 'stayhomestaysafe socialdistancing': 798524, 'socialdistancing brigaid': 780254, 'brigaid trustedhelpatyourfingertips': 139782, 'stay home stay': 797004, 'stay safe stayhomestaysafe': 797280, 'safe stayhomestaysafe socialdistancing': 729987, 'stayhomestaysafe socialdistancing brigaid': 798525, 'socialdistancing brigaid trustedhelpatyourfingertips': 780255, 'lyon': 507139, '1m': 12645, 'my main': 549189, 'main supermarket': 508832, 'in lyon': 424967, 'lyon the': 507148, 'are confined': 85487, 'confined 1m': 194039, '1m from': 12657, 'other it': 620438, 'it quiet': 460583, 'quiet no': 694688, 'and plenty': 69123, 'food the': 317111, 'situation appears': 772194, 'be different': 114445, 'uk which': 938887, 'just walked into': 470210, 'walked into my': 964958, 'into my main': 442784, 'my main supermarket': 549193, 'main supermarket in': 508835, 'supermarket in lyon': 820926, 'in lyon the': 424970, 'lyon the shopper': 507149, 'the shopper are': 867049, 'shopper are confined': 761386, 'are confined 1m': 85488, 'confined 1m from': 194040, '1m from each': 12658, 'each other it': 264187, 'other it quiet': 620439, 'it quiet no': 460584, 'quiet no queue': 694689, 'no queue and': 565261, 'queue and plenty': 693868, 'and plenty of': 69124, 'of food the': 583795, 'food the situation': 317132, 'the situation appears': 867243, 'situation appears to': 772195, 'to be different': 901203, 'be different in': 114447, 'different in the': 241968, 'the uk which': 870301, 'uk which ha': 938888, 'which ha no': 985892, 'ha no restriction': 371349, 'skyrocketing because': 773412, 'shopping cbs': 762333, 'cbs boston': 168370, 'egg price are': 269956, 'are skyrocketing because': 90162, 'skyrocketing because of': 773413, 'because of panic': 119387, 'of panic shopping': 587734, 'panic shopping cbs': 638566, 'shopping cbs boston': 762334, 'roi': 725052, 'capitalmarkets': 162846, 'roi price': 725053, 'price first': 673875, 'first ever': 308662, 'ever 50': 285182, '50 year': 19914, 'year bond': 1014438, 'bond to': 134269, 'fund covid': 341380, 'relief effort': 709316, 'effort capitalmarkets': 269497, 'capitalmarkets finance': 162847, 'roi price first': 725054, 'price first ever': 673876, 'first ever 50': 308663, 'ever 50 year': 285183, '50 year bond': 19916, 'year bond to': 1014439, 'bond to fund': 134270, 'to fund covid': 906329, 'fund covid 19': 341381, '19 relief effort': 10078, 'relief effort capitalmarkets': 709321, 'effort capitalmarkets finance': 269498, 'winner': 996014, 'became': 118856, 'downloaded': 257645, 'overtaking': 631612, 'grocery ha': 364579, 'ha surged': 372122, 'surged during': 828304, 'clear winner': 181386, 'winner so': 996043, 'far walmart': 298968, 'grocery became': 364310, 'became the': 118890, 'number one': 577022, 'one most': 606697, 'most downloaded': 542266, 'downloaded app': 257646, 'shopping category': 762329, 'category on': 167199, 'the iphone': 858438, 'iphone app': 444560, 'app store': 81764, 'store overtaking': 809419, 'overtaking amazon': 631613, 'demand for online': 235465, 'for online grocery': 324105, 'online grocery ha': 608318, 'grocery ha surged': 364581, 'ha surged during': 372124, 'surged during the': 828305, 'pandemic and walmart': 634916, 'and walmart is': 75162, 'walmart is clear': 965359, 'is clear winner': 446552, 'clear winner so': 181387, 'winner so far': 996044, 'so far walmart': 777066, 'far walmart grocery': 298969, 'walmart grocery became': 965336, 'grocery became the': 364311, 'became the number': 118892, 'the number one': 861958, 'number one most': 577025, 'one most downloaded': 606698, 'most downloaded app': 542267, 'downloaded app in': 257647, 'app in the': 81723, 'in the shopping': 429546, 'the shopping category': 867058, 'shopping category on': 762330, 'category on the': 167202, 'on the iphone': 604189, 'the iphone app': 858440, 'iphone app store': 444561, 'app store overtaking': 81767, 'store overtaking amazon': 809420, 'think price': 885501, 'stay below': 796792, 'below 30': 126572, '30 one': 17160, 'one year': 607521, 'year but': 1014442, 'know covid': 476340, '19 russia': 10274, 'saudi oil': 737281, 'dont think price': 255297, 'think price can': 885502, 'price can stay': 673066, 'can stay below': 159737, 'stay below 30': 796793, 'below 30 one': 126575, '30 one year': 17161, 'one year but': 607524, 'year but who': 1014452, 'but who know': 147853, 'who know covid': 989180, 'know covid 19': 476341, 'covid 19 russia': 213732, '19 russia saudi': 10275, 'russia saudi oil': 728559, 'saudi oil war': 737283, '19 aftermath': 4860, 'aftermath third': 36667, 'order cancelled': 618115, 'cancelled grave': 161115, 'grave crisis': 362428, 'crisis grip': 217423, 'grip export': 364013, 'export hub': 292651, 'hub via': 409837, 'via overseas': 956154, 'overseas buyer': 631467, 'to renegotiate': 913226, 'renegotiate contract': 710957, 'contract term': 201703, 'term and': 838054, 'and seek': 71167, 'seek cut': 746571, 'in product': 427016, 'covid 19 aftermath': 212594, '19 aftermath third': 4861, 'aftermath third of': 36668, 'third of order': 886087, 'of order cancelled': 587330, 'order cancelled grave': 618117, 'cancelled grave crisis': 161116, 'grave crisis grip': 362429, 'crisis grip export': 217424, 'grip export hub': 364014, 'export hub via': 292652, 'hub via overseas': 409838, 'via overseas buyer': 956155, 'overseas buyer are': 631468, 'buyer are using': 149580, 'are using the': 91433, 'using the crisis': 950697, 'the crisis to': 852465, 'crisis to renegotiate': 218253, 'to renegotiate contract': 913227, 'renegotiate contract term': 710958, 'contract term and': 201704, 'term and seek': 838060, 'and seek cut': 71168, 'seek cut in': 746572, 'cut in product': 223383, 'in product price': 427018, 'gaffney': 342710, 'group have': 366719, 'have sought': 382661, 'reassure the': 703198, 'public that': 688351, 'that shelf': 846248, 'shelf will': 757810, 'remain stocked': 709864, 'to bulk': 902101, 'grocery gaffney': 364548, 'gaffney report': 342711, 'report more': 712088, 'government and the': 359875, 'and the main': 73467, 'the main supermarket': 859913, 'main supermarket group': 508834, 'supermarket group have': 820595, 'group have sought': 366722, 'have sought to': 382662, 'sought to reassure': 786217, 'to reassure the': 912892, 'reassure the public': 703199, 'the public that': 864858, 'public that shelf': 688355, 'that shelf will': 846250, 'shelf will remain': 757812, 'will remain stocked': 994636, 'remain stocked and': 709865, 'stocked and there': 803272, 'need to bulk': 555874, 'to bulk buy': 902102, 'bulk buy grocery': 142257, 'buy grocery gaffney': 148753, 'grocery gaffney report': 364549, 'gaffney report more': 342712, 'lockdownparis': 500359, 'deserted': 238006, 'lockdownparis day': 500360, 'day street': 228421, 'street deserted': 812945, 'deserted when': 238015, 'lockdownparis day street': 500361, 'day street deserted': 228422, 'street deserted when': 812946, 'deserted when went': 238016, 'when went out': 984489, 'went out to': 979095, 'alcohol in': 41027, 'in homemade': 423794, 'sanitizer lower': 735315, 'lower immunity': 505877, 'immunity part': 417418, 'part full': 642282, 'alcohol in homemade': 41031, 'in homemade hand': 423795, 'hand sanitizer lower': 375478, 'sanitizer lower immunity': 735316, 'lower immunity part': 505878, 'immunity part full': 417419, 'part full video': 642283, 'we greatly': 971689, 'greatly appreciate': 363307, 'the foundation': 855727, 'foundation providing': 330502, 'providing funding': 687008, 'funding to': 341621, 'clothing pantry': 184274, 'pantry to': 639696, 'growing food': 367196, 'insecurity issue': 439168, 'issue during': 455726, 'this funding': 887659, 'funding will': 341634, 'for pantry': 324373, 'pantry operation': 639642, 'operation and': 613130, 'and emergency': 62034, 'the additional': 848344, 'additional demand': 31807, 'we greatly appreciate': 971690, 'greatly appreciate the': 363309, 'appreciate the foundation': 82756, 'the foundation providing': 855730, 'foundation providing funding': 330503, 'providing funding to': 687009, 'funding to our': 341626, 'to our food': 911182, 'our food clothing': 623103, 'food clothing pantry': 313949, 'clothing pantry to': 184275, 'pantry to address': 639697, 'address the growing': 32036, 'the growing food': 856879, 'growing food insecurity': 367197, 'food insecurity issue': 315069, 'insecurity issue during': 439169, 'issue during the': 455727, '19 crisis this': 6337, 'crisis this funding': 218223, 'this funding will': 887660, 'funding will be': 341635, 'will be used': 992754, 'used for pantry': 949909, 'for pantry operation': 324375, 'pantry operation and': 639643, 'operation and emergency': 613133, 'and emergency food': 62035, 'food to meet': 317273, 'meet the additional': 527592, 'the additional demand': 848346, 'who walk': 989923, 'problem it': 679576, 'it up': 461952, 'people who walk': 650355, 'who walk into': 989924, 'walk into retail': 964820, 'store you are': 811679, 'the problem it': 864515, 'problem it up': 679581, 'it up to': 461972, 'up to you': 946452, 'to you to': 918933, 'you to make': 1021803, 'make this shit': 510649, 'available at home': 104251, 'at home retail': 99093, 'dankie': 225868, 'dankie so': 225869, 'can they': 159972, 'reduce whiskey': 706004, 'whiskey price': 987775, 'can fight': 158295, 'dankie so can': 225870, 'so can they': 776728, 'can they reduce': 159979, 'they reduce whiskey': 883178, 'reduce whiskey price': 706005, 'whiskey price so': 987776, 'price so we': 676517, 'so we can': 778660, 'we can fight': 970948, 'can fight this': 158299, 'fight this covid': 304915, 'reassuring': 703224, 'talked to': 833941, 'from about': 334358, 'store panic': 809455, 'panic they': 638700, 're reassuring': 699365, 'reassuring people': 703233, 'people there': 649805, 'chain coronacrisis': 170620, 'talked to expert': 833943, 'to expert from': 905466, 'expert from about': 291842, 'from about grocery': 334360, 'grocery store panic': 365637, 'store panic they': 809460, 'panic they re': 638702, 'they re reassuring': 883109, 're reassuring people': 699366, 'reassuring people there': 703235, 'people there is': 649807, 'supply chain coronacrisis': 824939, 'sacrificial': 729128, 'lamb': 479150, 'responder the': 715529, 'employee the': 274294, 'other sacrificial': 620861, 'sacrificial lamb': 729129, 'lamb for': 479153, 'for capitalism': 319927, 'capitalism profit': 162778, 'profit by': 682685, 'by fighting': 152582, 'for raising': 324946, 'raising the': 696140, 'wage and': 963803, 'and hazard': 64307, 'thank the first': 841639, 'the first responder': 855341, 'first responder the': 308967, 'responder the healthcare': 715531, 'the healthcare worker': 857202, 'healthcare worker the': 387389, 'worker the grocery': 1007930, 'store employee the': 807551, 'employee the essential': 274296, 'the essential worker': 854528, 'essential worker and': 281814, 'worker and all': 1006270, 'the other sacrificial': 862552, 'other sacrificial lamb': 620862, 'sacrificial lamb for': 729130, 'lamb for capitalism': 479154, 'for capitalism profit': 319928, 'capitalism profit by': 162779, 'profit by fighting': 682688, 'by fighting for': 152583, 'fighting for raising': 305078, 'for raising the': 324954, 'raising the minimum': 696145, 'the minimum wage': 860650, 'minimum wage and': 533222, 'wage and hazard': 963812, 'and hazard pay': 64308, 'about she': 26173, 'she tweeted': 756397, 'tweeted on': 936441, 'march 10': 515049, '10 remember': 1652, 'is strong': 452383, 'strong the': 814131, 'strong amp': 813968, 'amp job': 54030, 'job are': 465653, 'are growing': 86971, 'growing which': 367257, 'which put': 986250, 'best economic': 127674, 'economic position': 267206, 'position to': 665192, 'tackle amp': 831556, 'amp keep': 54042, 'american safe': 52175, 'concerned about she': 193171, 'about she tweeted': 26174, 'she tweeted on': 756398, 'tweeted on march': 936442, 'on march 10': 602007, 'march 10 remember': 515050, '10 remember this': 1653, 'remember this the': 710354, 'this the consumer': 890516, 'consumer is strong': 197942, 'is strong the': 452392, 'strong the economy': 814132, 'economy is strong': 268015, 'is strong amp': 452384, 'strong amp job': 813969, 'amp job are': 54031, 'job are growing': 465657, 'are growing which': 86977, 'growing which put': 367258, 'which put in': 986252, 'put in the': 690622, 'in the best': 429020, 'the best economic': 849508, 'best economic position': 127676, 'economic position to': 267208, 'position to tackle': 665199, 'to tackle amp': 916123, 'tackle amp keep': 831557, 'amp keep american': 54043, 'keep american safe': 471311, 'wallet': 965208, 'disturbing that': 248419, 'that scammer': 846143, 'already trying': 47729, 'crisis don': 217304, 'them stay': 876321, 'vigilant and': 957233, 'about step': 26258, 'step you': 799712, 'yourself your': 1026770, 'information and': 437732, 'your wallet': 1026301, 'disturbing that scammer': 248422, 'that scammer are': 846144, 'scammer are already': 740527, 'are already trying': 84429, 'already trying to': 47730, 'trying to exploit': 934802, 'exploit the crisis': 292363, 'the crisis don': 852366, 'crisis don let': 217305, 'don let them': 253695, 'let them stay': 487162, 'them stay vigilant': 876325, 'stay vigilant and': 797382, 'vigilant and visit': 957238, 'and visit to': 74987, 'learn about step': 483942, 'about step you': 26259, 'step you can': 799713, 'you can take': 1017806, 'can take to': 159908, 'take to protect': 832739, 'protect yourself your': 685107, 'yourself your personal': 1026773, 'your personal information': 1025264, 'personal information and': 652887, 'information and your': 437749, 'and your wallet': 76101, 'seasonal': 743461, 'food ha': 314741, 'been overwhelming': 121637, 'overwhelming many': 631756, 'many part': 514476, 'and seasonal': 71109, 'seasonal worker': 743481, 'now facing': 574657, 'facing their': 295625, 'their second': 874635, 'second pay': 743790, 'pay period': 645042, 'period without': 651935, 'without income': 1002730, 'income report': 432448, 'say the demand': 739274, 'for food ha': 321588, 'food ha been': 314745, 'ha been overwhelming': 369864, 'been overwhelming many': 121639, 'overwhelming many part': 631757, 'many part time': 514478, 'part time and': 642443, 'time and seasonal': 896294, 'and seasonal worker': 71110, 'seasonal worker are': 743482, 'worker are now': 1006409, 'are now facing': 88548, 'now facing their': 574659, 'facing their second': 295626, 'their second pay': 874636, 'second pay period': 743791, 'pay period without': 645043, 'period without income': 651936, 'without income report': 1002732, 'prepper': 670379, 'prepping': 670418, 'the ultimate': 870310, 'ultimate prepper': 939125, 'prepper we': 670392, 'have 80': 379102, '80 box': 22557, 'box roll': 137152, 'of scott': 589413, 'scott toilet': 742466, 'stock 49': 801754, '49 prepping': 19401, 'prepping toiletpaper': 670429, 'toiletpaper coronapocolypse': 921892, 'coronapocolypse outbreak': 205231, 'outbreak panicbuying': 628522, 'the ultimate prepper': 870317, 'ultimate prepper we': 939126, 'prepper we have': 670393, 'we have 80': 971743, 'have 80 box': 379103, '80 box roll': 22558, 'box roll of': 137153, 'roll of scott': 725416, 'of scott toilet': 589414, 'scott toilet paper': 742467, 'paper in stock': 640330, 'in stock 49': 428277, 'stock 49 prepping': 801755, '49 prepping toiletpaper': 19402, 'prepping toiletpaper coronapocolypse': 670430, 'toiletpaper coronapocolypse outbreak': 921893, 'coronapocolypse outbreak panicbuying': 205232, 'srilanka': 791607, 'lka': 496519, 'tamil': 834102, 'tamilnadu': 834109, 'enter into': 278262, 'finally you': 306140, 'you saw': 1020992, 'saw the': 738260, 'entrance srilanka': 278899, 'srilanka lka': 791613, 'lka tamil': 496524, 'tamil tamilnadu': 834107, 'tamilnadu india': 834112, 'waiting in long': 964353, 'in long queue': 424913, 'long queue to': 501588, 'queue to enter': 694093, 'to enter into': 905220, 'enter into supermarket': 278263, 'supermarket and finally': 818983, 'and finally you': 62863, 'finally you saw': 306141, 'you saw the': 1020994, 'saw the entrance': 738265, 'the entrance srilanka': 854385, 'entrance srilanka lka': 278900, 'srilanka lka tamil': 791615, 'lka tamil tamilnadu': 496525, 'tamil tamilnadu india': 834108, 'detects': 239362, 'facebookads': 295006, 'ppc': 667881, 'protect against': 684756, 'against inflated': 37513, 'price facebook': 673755, 'facebook is': 294947, 'is banning': 445993, 'banning more': 110635, 'more type': 540838, 'of ad': 579763, 'ad for': 31099, 'product which': 681835, 'which required': 986268, 'the content': 851657, 'content will': 200858, 'be removed': 116787, 'removed if': 710866, 'if facebook': 414107, 'facebook detects': 294899, 'detects abuse': 239363, 'abuse around': 27618, 'around these': 93581, 'in organic': 426227, 'organic post': 619231, 'post too': 666379, 'too facebook': 924722, 'facebook facebookads': 294907, 'facebookads ppc': 295007, 'ppc corona': 667882, 'to protect against': 912290, 'protect against inflated': 684764, 'against inflated price': 37514, 'inflated price facebook': 437040, 'price facebook is': 673756, 'facebook is banning': 294948, 'is banning more': 445994, 'banning more type': 110636, 'more type of': 540839, 'type of ad': 937546, 'of ad for': 579764, 'ad for product': 31104, 'for product which': 324778, 'product which required': 681841, 'which required to': 986269, 'required to prevent': 713404, '19 the content': 11180, 'the content will': 851659, 'content will be': 200859, 'will be removed': 992644, 'be removed if': 116789, 'removed if facebook': 710867, 'if facebook detects': 414108, 'facebook detects abuse': 294900, 'detects abuse around': 239364, 'abuse around these': 27619, 'around these product': 93582, 'these product in': 880557, 'product in organic': 681293, 'in organic post': 426228, 'organic post too': 619232, 'post too facebook': 666380, 'too facebook facebookads': 924723, 'facebook facebookads ppc': 294908, 'facebookads ppc corona': 295008, 'kroger is': 477744, 'denying paid': 237155, 'to quarantined': 912653, 'quarantined worker': 692894, 'worker despite': 1006770, 'despite promise': 238821, 'promise two': 683706, 'quarantine because': 692046, 'of contracting': 581830, '19 say': 10323, 'the chain': 850628, 'is refusing': 451387, 'kroger is denying': 477745, 'is denying paid': 447127, 'denying paid leave': 237156, 'paid leave to': 634066, 'leave to quarantined': 485014, 'to quarantined worker': 912654, 'quarantined worker despite': 692895, 'worker despite promise': 1006772, 'despite promise two': 238823, 'promise two kroger': 683707, 'two kroger supermarket': 937000, 'kroger supermarket employee': 477772, 'employee who need': 274431, 'need to self': 556062, 'self quarantine because': 747846, 'quarantine because they': 692047, 'high risk of': 395366, 'risk of contracting': 723739, 'of contracting covid': 581833, 'covid 19 say': 213745, '19 say that': 10326, 'say that the': 739252, 'that the chain': 846678, 'the chain is': 850630, 'chain is refusing': 170843, 'is refusing to': 451388, 'refusing to provide': 707098, 'unsettled': 943474, 'triggerchange': 931900, 'repealbillc71': 711497, 'notforsale': 572890, 'an individual': 56281, 'individual or': 435233, 'or family': 615265, 'family considering': 297717, 'considering how': 195377, 'how best': 407452, 'best they': 127922, 'can improve': 158734, 'improve their': 419548, 'own security': 632194, 'security economic': 744589, 'economic food': 267100, 'yes physical': 1015513, 'physical during': 655419, 'during dangerous': 262582, 'and unsettled': 74710, 'unsettled time': 943475, 'time triggerchange': 898130, 'triggerchange repealbillc71': 931901, 'repealbillc71 notforsale': 711498, 'notforsale matt': 572891, 'gurney on': 368827, 'wrong with an': 1013150, 'with an individual': 997217, 'an individual or': 56284, 'individual or family': 435234, 'or family considering': 615266, 'family considering how': 297718, 'considering how best': 195378, 'how best they': 407453, 'best they can': 127923, 'they can improve': 881638, 'can improve their': 158735, 'improve their own': 419549, 'their own security': 874201, 'own security economic': 632195, 'security economic food': 744590, 'economic food and': 267101, 'and yes physical': 75971, 'yes physical during': 1015514, 'physical during dangerous': 655420, 'during dangerous and': 262583, 'dangerous and unsettled': 225723, 'and unsettled time': 74711, 'unsettled time triggerchange': 943476, 'time triggerchange repealbillc71': 898131, 'triggerchange repealbillc71 notforsale': 931902, 'repealbillc71 notforsale matt': 711499, 'notforsale matt gurney': 572892, 'matt gurney on': 520519, 'gurney on covid': 368828, 'habra': 372728, 'exclusively': 289707, 'la habra': 478171, 'habra is': 372729, 'is trying': 453393, 'help local': 390008, 'local senior': 498382, 'senior during': 750281, 'by opening': 153444, 'door half': 255602, 'half hour': 374183, 'early each': 264584, 'day exclusively': 227585, 'exclusively for': 289714, 'shopper 65': 761335, '65 and': 21334, 'supermarket in la': 820919, 'in la habra': 424563, 'la habra is': 478172, 'habra is trying': 372730, 'is trying to': 453396, 'trying to help': 934817, 'to help local': 907553, 'help local senior': 390012, 'local senior during': 498383, 'senior during the': 750283, '19 pandemic by': 9280, 'pandemic by opening': 635074, 'by opening it': 153445, 'opening it door': 612865, 'it door half': 457680, 'door half hour': 255603, 'half hour early': 374185, 'hour early each': 405563, 'early each day': 264585, 'each day exclusively': 264042, 'day exclusively for': 227586, 'exclusively for shopper': 289722, 'for shopper 65': 325568, 'shopper 65 and': 761336, '65 and older': 21336, 'teaming': 835869, 'needy': 556665, 'charlottenc': 173776, 'makingadifference': 511510, 'for teaming': 326164, 'teaming up': 835870, 'local hospital': 498086, 'other needy': 620574, 'needy group': 556684, 'group in': 366737, 'the charlottenc': 850710, 'charlottenc area': 173777, 'area makingadifference': 92107, 'kudos to and': 477881, 'to and for': 900502, 'and for teaming': 63159, 'for teaming up': 326165, 'teaming up to': 835871, 'up to make': 946396, 'sanitizer to give': 735923, 'give to local': 350792, 'to local hospital': 909378, 'local hospital and': 498087, 'hospital and other': 404284, 'and other needy': 68370, 'other needy group': 620575, 'needy group in': 556685, 'group in the': 366741, 'in the charlottenc': 429066, 'the charlottenc area': 850711, 'charlottenc area makingadifference': 173778, 'an interest': 56398, 'interest read': 441409, 'make an interest': 509684, 'an interest read': 56399, 'sharp': 755666, 'volatility': 960064, 'separation': 751111, 'pandemic along': 634824, 'with sharp': 1000664, 'sharp decline': 755673, 'heightened volatility': 388831, 'volatility in': 960075, 'global equity': 351922, 'equity market': 279954, 'prompted to': 683949, 'the separation': 866717, 'separation of': 751118, 'it business': 456935, 'business stockmarket': 144420, 'the pandemic along': 862898, 'pandemic along with': 634825, 'along with sharp': 47079, 'with sharp decline': 1000665, 'sharp decline in': 755675, 'decline in commodity': 231343, 'commodity price and': 189259, 'price and heightened': 672431, 'and heightened volatility': 64429, 'heightened volatility in': 388832, 'volatility in global': 960078, 'in global equity': 423331, 'global equity market': 351924, 'equity market have': 279957, 'market have prompted': 516508, 'have prompted to': 382076, 'prompted to postpone': 683950, 'postpone the separation': 666782, 'the separation of': 866718, 'separation of it': 751119, 'of it business': 585372, 'it business stockmarket': 456941, 'trainee': 929308, 'geriatric': 346076, 'shattered': 755789, 'son trainee': 785450, 'trainee nurse': 929309, 'nurse ha': 577347, 'come off': 187423, 'off 12': 593593, 'in geriatric': 423267, 'geriatric ward': 346077, 'ward in': 966642, 'london hospital': 501090, 'hospital he': 404448, 'he shattered': 385430, 'shattered and': 755790, 'and starving': 72270, 'starving he': 795254, 'he go': 384990, 'see this': 745935, 'buyer he': 149661, 'he looking': 385206, 'looking after': 502773, 'your loved': 1024745, 'thank him': 841597, 'my son trainee': 550170, 'son trainee nurse': 785451, 'trainee nurse ha': 929310, 'nurse ha just': 577349, 'ha just come': 371048, 'just come off': 468495, 'come off 12': 187424, 'off 12 hour': 593594, 'hour shift in': 405916, 'shift in geriatric': 758323, 'in geriatric ward': 423268, 'geriatric ward in': 346078, 'ward in london': 966643, 'in london hospital': 424882, 'london hospital he': 501092, 'hospital he shattered': 404450, 'he shattered and': 385431, 'shattered and starving': 755791, 'and starving he': 72271, 'starving he go': 795255, 'he go to': 384994, 'go to his': 354320, 'to his local': 907818, 'and see this': 71147, 'see this so': 745954, 'this so thank': 890223, 'thank you panic': 841796, 'panic buyer he': 637581, 'buyer he looking': 149662, 'he looking after': 385207, 'looking after your': 502787, 'after your loved': 36617, 'your loved one': 1024746, 'loved one and': 504902, 'one and this': 605909, 'and this is': 73998, 'is how you': 448605, 'how you thank': 409290, 'you thank him': 1021554, 'wondering what': 1004189, 'what impact': 981644, 'impact covid': 417624, 'shopping me': 763262, 'wondering what impact': 1004192, 'what impact covid': 981645, 'impact covid 19': 417625, 'having on online': 384204, 'online shopping me': 609184, 'shopping me too': 763264, 'interviewed': 442273, 'adapting': 31321, 'ceo along': 169634, 'with several': 1000653, 'several other': 753911, 'other agency': 619807, 'agency leader': 38035, 'leader wa': 483563, 'wa interviewed': 962422, 'interviewed by': 442276, 'by news': 153326, 'news to': 560892, 'evolving medium': 288571, 'medium landscape': 527164, 'landscape and': 479391, 'are adapting': 84220, 'adapting to': 31340, 'crisis watch': 218333, 'ceo along with': 169635, 'along with several': 47078, 'with several other': 1000654, 'several other agency': 753912, 'other agency leader': 619808, 'agency leader wa': 38037, 'leader wa interviewed': 483564, 'wa interviewed by': 962423, 'interviewed by news': 442279, 'by news to': 153328, 'news to discus': 560895, 'to discus the': 904383, 'discus the evolving': 244917, 'the evolving medium': 854649, 'evolving medium landscape': 288572, 'medium landscape and': 527165, 'landscape and how': 479393, 'brand are adapting': 137739, 'are adapting to': 84224, 'adapting to the': 31352, 'current crisis watch': 221162, 'crisis watch it': 218334, 'watch it here': 968454, 'woke': 1003354, 'woke up': 1003355, 'up feeling': 944847, 'feeling ill': 302999, 'ill with': 416186, 'no family': 564188, 'family close': 297705, 'by not': 153356, 'them at': 875428, 'risk have': 723602, 'no fresh': 564301, 'fruit veg': 339162, 'veg am': 953711, 'am plant': 50305, 'based have': 111608, 'to venture': 918139, 'venture out': 954677, 'food don': 314260, 'think have': 885273, 'have corona': 380112, 'corona checked': 203853, 'checked my': 174758, 'my temp': 550339, 'temp but': 837317, 'eat borisjohnson': 265871, 'woke up feeling': 1003360, 'up feeling ill': 944849, 'feeling ill with': 303001, 'ill with no': 416188, 'with no family': 999750, 'no family close': 564189, 'family close by': 297706, 'close by not': 182584, 'by not that': 153365, 'not that would': 571978, 'would put them': 1012142, 'put them at': 690889, 'them at risk': 875446, 'at risk have': 100364, 'risk have no': 723603, 'have no fresh': 381629, 'no fresh fruit': 564303, 'fresh fruit veg': 333000, 'fruit veg am': 339163, 'veg am plant': 953712, 'am plant based': 50306, 'plant based have': 658623, 'based have to': 111609, 'have to venture': 383332, 'to venture out': 918140, 'venture out to': 954683, 'out to my': 627664, 'supermarket for food': 820396, 'for food don': 321577, 'food don think': 314264, 'don think have': 253976, 'think have corona': 885275, 'have corona checked': 380113, 'corona checked my': 203854, 'checked my temp': 174760, 'my temp but': 550340, 'temp but have': 837318, 'have to eat': 383200, 'to eat borisjohnson': 904872, 'crise': 216947, 'leipzig': 486129, 'first booking': 308549, 'booking just': 134731, 'just after': 468170, '19 crise': 6203, 'crise please': 216948, 'please book': 659727, 'book your': 134643, 'car for': 163085, 'for leipzig': 322935, 'leipzig airport': 486130, 'airport transfer': 40130, 'transfer at': 929501, 'at leipzig': 99572, 'leipzig germany': 486132, 'special price will': 788033, 'will be available': 992369, 'be available for': 113756, 'available for the': 104384, 'the first booking': 855285, 'first booking just': 308550, 'booking just after': 134732, 'just after covid': 468171, 'covid 19 crise': 212889, '19 crise please': 6204, 'crise please book': 216949, 'please book your': 659728, 'book your car': 134645, 'your car for': 1023132, 'car for leipzig': 163087, 'for leipzig airport': 322936, 'leipzig airport transfer': 486131, 'airport transfer at': 40131, 'transfer at leipzig': 929502, 'at leipzig germany': 99573, 'salesman': 732690, 'article from': 94325, 'from saudiarabia': 337165, 'saudiarabia give': 737336, 'give broad': 350424, 'broad picture': 140706, 'most widespread': 542915, 'widespread scam': 991861, 'scam fake': 740154, 'fake vaccine': 296731, 'vaccine online': 951742, 'shopping door': 762513, 'door scam': 255702, 'scam salesman': 740344, 'salesman and': 732691, 'personal shopper': 652960, 'shopper for': 761514, 'elderly phishing': 270852, 'email investment': 272217, 'investment fake': 443987, 'fake charity': 296573, 'charity etc': 173614, 'this article from': 886415, 'article from saudiarabia': 94333, 'from saudiarabia give': 337166, 'saudiarabia give broad': 737337, 'give broad picture': 350425, 'broad picture of': 140707, 'picture of the': 656173, 'the most widespread': 861065, 'most widespread scam': 542916, 'widespread scam fake': 991862, 'scam fake vaccine': 740158, 'fake vaccine online': 296734, 'vaccine online shopping': 951743, 'online shopping door': 609101, 'shopping door to': 762514, 'to door scam': 904671, 'door scam salesman': 255704, 'scam salesman and': 740345, 'salesman and personal': 732692, 'and personal shopper': 68931, 'personal shopper for': 652962, 'shopper for the': 761518, 'the elderly phishing': 854137, 'elderly phishing email': 270853, 'phishing email investment': 654817, 'email investment fake': 272218, 'investment fake charity': 443988, 'fake charity etc': 296576, 'vulgar': 960796, 'bil': 130447, 'natnl': 552793, 'assoc': 96830, 'tril': 931946, 'just give': 468809, 'you few': 1018549, 'few example': 303826, 'example so': 288966, 'll understand': 497082, 'how vulgar': 409153, 'vulgar some': 960797, 'on is': 601627, 'airline industry': 39976, 'industry 50': 435593, '50 bil': 19628, 'bil the': 130452, 'private space': 678989, 'space industry': 787123, 'industry bil': 435692, 'the candy': 850334, 'candy industry': 161340, 'industry 500': 435595, '500 mil': 20018, 'mil the': 531301, 'the hotel': 857562, 'hotel industry': 405153, 'industry 150': 435588, '150 bil': 3895, 'the natnl': 861315, 'natnl assoc': 552794, 'assoc of': 96835, 'of manufacturing': 586163, 'manufacturing tril': 513682, 'let me just': 486901, 'me just give': 523033, 'just give you': 468814, 'give you few': 350857, 'you few example': 1018550, 'few example so': 303828, 'example so you': 288967, 'so you ll': 778846, 'you ll understand': 1019675, 'll understand how': 497083, 'understand how vulgar': 940653, 'how vulgar some': 409154, 'vulgar some of': 960798, 'some of what': 783416, 'of what is': 593056, 'going on is': 355324, 'on is the': 601637, 'is the airline': 452725, 'the airline industry': 848499, 'airline industry 50': 39977, 'industry 50 bil': 435594, '50 bil the': 19629, 'bil the private': 130455, 'the private space': 864490, 'private space industry': 678990, 'space industry bil': 787124, 'industry bil the': 435693, 'bil the candy': 130453, 'the candy industry': 850335, 'candy industry 500': 161341, 'industry 500 mil': 435596, '500 mil the': 20019, 'mil the hotel': 531302, 'the hotel industry': 857563, 'hotel industry 150': 405154, 'industry 150 bil': 435589, '150 bil the': 3896, 'bil the natnl': 130454, 'the natnl assoc': 861316, 'natnl assoc of': 552795, 'assoc of manufacturing': 96836, 'of manufacturing tril': 586166, 'oops': 611748, 'oops our': 611752, 'local fred': 497987, 'meyer ha': 530038, 'no curbside': 563942, 'pickup time': 656033, 'time available': 896353, 'were grocery': 979707, 'be trying': 117831, 'that service': 846209, 'increase availability': 432687, 'availability during': 104137, 'oops our local': 611753, 'our local fred': 623771, 'local fred meyer': 497988, 'fred meyer ha': 331577, 'meyer ha no': 530039, 'ha no curbside': 371335, 'no curbside pickup': 563943, 'curbside pickup time': 220662, 'pickup time available': 656036, 'time available for': 896355, 'the next day': 861662, 'next day it': 561331, 'day it seems': 227855, 'seems like if': 746811, 'like if you': 490478, 'you were grocery': 1022248, 'were grocery store': 979708, 'store you might': 811693, 'might be trying': 530935, 'be trying to': 117832, 'trying to staff': 934877, 'to staff that': 915139, 'staff that service': 792933, 'that service and': 846210, 'service and increase': 752091, 'and increase availability': 65102, 'increase availability during': 432688, 'cambridge': 156938, 'store cutting': 807255, 'cutting opening': 223752, 'hour staff': 405946, 'staff say': 792826, 'say to': 739382, 'allow for': 45962, 'for extra': 321342, 'extra restocking': 293621, 'restocking after': 716980, 'after panic': 36014, 'to accommodate': 899967, 'accommodate deep': 28425, 'cleaning operation': 180994, 'operation cambridge': 613161, 'food store cutting': 316848, 'store cutting opening': 807256, 'cutting opening hour': 223753, 'opening hour staff': 612859, 'hour staff say': 405947, 'staff say to': 792827, 'say to allow': 739383, 'to allow for': 900337, 'allow for extra': 45965, 'for extra restocking': 321347, 'extra restocking after': 293622, 'restocking after panic': 716981, 'after panic buying': 36016, 'buying and to': 149941, 'and to accommodate': 74148, 'to accommodate deep': 899968, 'accommodate deep cleaning': 28426, 'deep cleaning operation': 231863, 'cleaning operation cambridge': 180995, 'advice stay': 33508, 'leave when': 485036, 'absolutely must': 27388, 'must when': 547001, 'up where': 946584, 'go lot': 353813, 'open many': 612374, 'some major': 783249, 'major payment': 509409, 'payment and': 645540, 'and pickup': 69019, 'pickup change': 655950, 'know the advice': 476807, 'the advice stay': 848387, 'advice stay home': 33509, 'home and only': 400673, 'and only leave': 68141, 'only leave when': 610710, 'leave when you': 485037, 'when you absolutely': 984533, 'you absolutely must': 1016784, 'absolutely must when': 27390, 'must when you': 547002, 'when you do': 984553, 'you do need': 1018262, 'stock up where': 803132, 'up where can': 946585, 'can you go': 160305, 'you go lot': 1018858, 'go lot of': 353814, 'lot of store': 504289, 'of store are': 590239, 'store are still': 806527, 'still open many': 800968, 'open many with': 612375, 'many with some': 514889, 'with some major': 1000852, 'some major payment': 783253, 'major payment and': 509410, 'payment and pickup': 645545, 'and pickup change': 69022, 'fantancy': 298571, 'githurai44': 350340, 'sterdo': 799829, 'sijasema': 769672, 'kitu': 475835, 'check fantancy': 174429, 'fantancy house': 298572, 'house githurai44': 406323, 'githurai44 next': 350341, 'to sterdo': 915390, 'sterdo supermarket': 799830, 'told not': 923643, 'about anything': 24824, 'anything concerning': 80712, 'concerning update': 193256, 'update sijasema': 947208, 'sijasema kitu': 769673, 'kitu kenya': 475836, 'check fantancy house': 174430, 'fantancy house githurai44': 298573, 'house githurai44 next': 406324, 'githurai44 next to': 350342, 'next to sterdo': 561630, 'to sterdo supermarket': 915391, 'sterdo supermarket we': 799831, 'supermarket we were': 823759, 'we were told': 973816, 'were told not': 980277, 'told not to': 923644, 'not to talk': 572199, 'talk about anything': 833728, 'about anything concerning': 24825, 'anything concerning update': 80713, 'concerning update sijasema': 193257, 'update sijasema kitu': 947209, 'sijasema kitu kenya': 769674, 'dharmesh': 240105, 'store contest': 807155, 'join now': 466793, 'now friend': 574748, 'friend sensible': 333801, 'sensible dharmesh': 750639, 'wuhan grocery store': 1013492, 'grocery store contest': 365297, 'store contest alert': 807156, 'puzzle join now': 691331, 'join now friend': 466794, 'now friend sensible': 574749, 'friend sensible dharmesh': 333802, 'imabouttocooksoon': 416612, 'nice walk': 562508, 'walk home': 964798, 'they ran': 882978, 'ran out': 696510, 'bag good': 108304, 'good time': 357862, 'time quarantine': 897539, 'quarantine harlem': 692243, 'harlem imabouttocooksoon': 378375, 'nice walk home': 562509, 'walk home from': 964799, 'the supermarket after': 868448, 'supermarket after they': 818816, 'after they ran': 36391, 'they ran out': 882979, 'ran out of': 696511, 'all the bag': 44665, 'the bag good': 849177, 'bag good time': 108305, 'good time quarantine': 357866, 'time quarantine harlem': 897542, 'quarantine harlem imabouttocooksoon': 692244, 'heaving': 388611, 'implement social': 418428, 'distancing when': 247629, 'when every': 983391, 'is heaving': 448379, 'heaving with': 388614, 'people seems': 649383, 'at present': 100176, 'present it': 670604, 'follow this': 312561, 'advice coronacrisisuk': 33349, 'coronacrisisuk socialdistancing': 204904, 'socialdistancing bbc': 780243, 'how are we': 407420, 'supposed to implement': 827364, 'to implement social': 908178, 'implement social distancing': 418429, 'social distancing when': 779765, 'distancing when every': 247631, 'when every shop': 983393, 'shop supermarket is': 760863, 'supermarket is heaving': 821095, 'is heaving with': 448380, 'heaving with people': 388616, 'with people seems': 1000163, 'people seems that': 649385, 'seems that at': 746855, 'that at present': 842881, 'at present it': 100178, 'present it impossible': 670605, 'impossible to follow': 419398, 'to follow this': 906067, 'follow this advice': 312562, 'this advice coronacrisisuk': 886216, 'advice coronacrisisuk socialdistancing': 33350, 'coronacrisisuk socialdistancing bbc': 204905, 'weren': 980391, 'popping': 664513, 'handler': 376319, 'overlooked': 631287, 'racist': 695300, 'blast': 132407, 'chine': 177180, 'these weren': 880960, 'weren just': 980405, 'china wild': 177070, 'wild food': 992055, 'restaurant were': 716795, 'were popping': 979986, 'popping up': 664519, 'meet international': 527515, 'international demand': 441786, 'and handler': 64152, 'handler first': 376322, 'first caught': 308567, 'caught covid': 167412, 'wa on': 962819, 'january but': 464650, 'been overlooked': 121631, 'overlooked for': 631294, 'for racist': 324940, 'racist blast': 695307, 'blast against': 132408, 'against poor': 37585, 'poor chine': 664147, 'these weren just': 880961, 'weren just in': 980406, 'just in china': 469030, 'in china wild': 421448, 'china wild food': 177071, 'wild food restaurant': 992056, 'food restaurant were': 316197, 'restaurant were popping': 716796, 'were popping up': 979987, 'popping up to': 664524, 'up to meet': 946399, 'to meet international': 910032, 'meet international demand': 527516, 'international demand and': 441787, 'demand and handler': 234968, 'and handler first': 64153, 'handler first caught': 376323, 'first caught covid': 308568, 'caught covid 19': 167413, '19 this wa': 11354, 'this wa on': 891082, 'wa on the': 962835, 'on the news': 604251, 'the news in': 861613, 'news in january': 560531, 'in january but': 424356, 'january but ha': 464651, 'ha been overlooked': 369862, 'been overlooked for': 121633, 'overlooked for racist': 631295, 'for racist blast': 324941, 'racist blast against': 695308, 'blast against poor': 132409, 'against poor chine': 37586, 'savant': 737455, 'aignos': 39519, 'dvd': 263633, 'publisher': 688711, 'booksale': 134773, 'helping relieve': 391450, 'relieve quarantine': 709534, 'quarantine boredom': 692056, 'boredom all': 135392, 'all savant': 44238, 'savant aignos': 737456, 'aignos printed': 39520, 'printed book': 678310, 'book cd': 134494, 'cd and': 168524, 'and dvd': 61815, 'dvd ordered': 263636, 'ordered from': 618851, 'our publisher': 624512, 'publisher store': 688728, 'store 25': 806030, '25 off': 15924, 'off suggested': 594201, 'suggested retail': 817581, 'price through': 676939, 'through 31': 894295, '31 may': 17589, 'may 2020': 520875, '2020 using': 14688, '19 discount': 6559, 'discount code': 244456, 'code at': 185335, 'at checkout': 98245, 'checkout booksale': 174893, 'helping relieve quarantine': 391451, 'relieve quarantine boredom': 709535, 'quarantine boredom all': 692057, 'boredom all savant': 135393, 'all savant aignos': 44239, 'savant aignos printed': 737457, 'aignos printed book': 39521, 'printed book cd': 678311, 'book cd and': 134495, 'cd and dvd': 168525, 'and dvd ordered': 61816, 'dvd ordered from': 263637, 'ordered from our': 618853, 'from our publisher': 336794, 'our publisher store': 624513, 'publisher store 25': 688729, 'store 25 off': 806032, '25 off suggested': 15926, 'off suggested retail': 594202, 'suggested retail price': 817582, 'retail price through': 718418, 'price through 31': 676940, 'through 31 may': 894297, '31 may 2020': 17590, 'may 2020 using': 520877, '2020 using covid': 14689, 'covid 19 discount': 212959, '19 discount code': 6560, 'discount code at': 244457, 'code at checkout': 185336, 'at checkout booksale': 98246, 'distrust': 248398, 'the spectrum': 867554, 'spectrum of': 788338, 'of distrust': 582726, 'distrust in': 248399, 'pandemic fda': 635427, 'say buy': 738475, 'bought month': 136641, 'month worth': 538144, 'worth don': 1011353, 'sale surge': 732553, 'surge don': 828150, 'foot ha': 318384, 'fueled dollar': 340326, 'devaluation fear': 239553, 'noticed the spectrum': 573489, 'the spectrum of': 867555, 'spectrum of distrust': 788339, 'of distrust in': 582727, 'distrust in this': 248400, 'time of the': 897367, '19 pandemic fda': 9326, 'pandemic fda say': 635428, 'fda say buy': 300921, 'say buy food': 738476, 'week people bought': 976735, 'people bought month': 647296, 'bought month worth': 136642, 'month worth don': 538146, 'worth don panic': 1011354, 'don panic gun': 253805, 'gun sale surge': 368723, 'sale surge don': 732555, 'surge don worry': 828151, 'don worry we': 254087, 'worry we will': 1010800, 'will be back': 992370, 'our foot ha': 623148, 'foot ha fueled': 318385, 'ha fueled dollar': 370687, 'fueled dollar devaluation': 340327, 'dollar devaluation fear': 252978, 'wisconsin': 996599, 'voting': 960595, 'polling': 663874, 'donning': 255152, 'november': 573844, 'negotiable': 556900, 'thousand in': 893400, 'in wisconsin': 430928, 'wisconsin are': 996602, 'are voting': 91501, 'voting at': 960596, 'crowded polling': 219342, 'polling place': 663875, 'pandemic donning': 635330, 'donning facemasks': 255153, 'facemasks and': 295125, 'and risking': 70563, 'health it': 386583, 'be prepared': 116512, 'for easy': 320924, 'easy and': 265645, 'and secure': 71117, 'secure vote': 744466, 'vote by': 960475, 'mail everywhere': 508609, 'everywhere in': 288217, 'in november': 425976, 'november it': 573858, 'not negotiable': 570690, 'thousand in wisconsin': 893404, 'in wisconsin are': 430929, 'wisconsin are voting': 996603, 'are voting at': 91502, 'voting at crowded': 960597, 'at crowded polling': 98376, 'crowded polling place': 219343, 'polling place during': 663876, 'place during pandemic': 657417, 'during pandemic donning': 262864, 'pandemic donning facemasks': 635331, 'donning facemasks and': 255154, 'facemasks and risking': 295127, 'and risking their': 70566, 'risking their health': 724095, 'their health it': 873520, 'health it doesn': 386584, 'it doesn have': 457632, 'doesn have to': 251829, 'to be this': 901592, 'be this way': 117704, 'this way we': 891139, 'way we need': 970176, 'to be prepared': 901453, 'be prepared for': 116519, 'prepared for easy': 670195, 'for easy and': 320925, 'easy and secure': 265653, 'and secure vote': 71121, 'secure vote by': 744467, 'vote by mail': 960476, 'by mail everywhere': 153124, 'mail everywhere in': 508610, 'everywhere in november': 288220, 'in november it': 425979, 'november it not': 573859, 'it not negotiable': 459901, 'loong': 503127, 'guy and': 368886, 'and gal': 63457, 'gal if': 342905, 'mostly online': 542986, 'and hasn': 64208, 'hasn been': 378721, 'been directly': 120984, '19 start': 10778, 'start running': 794473, 'running facebook': 727954, 'ad the': 31178, 'price haven': 674472, 'been this': 122183, 'for loong': 323106, 'loong time': 503128, 'time let': 897125, 'guy and gal': 368888, 'and gal if': 63458, 'gal if your': 342906, 'if your business': 415570, 'your business is': 1023063, 'business is mostly': 143956, 'is mostly online': 449748, 'mostly online and': 542987, 'online and hasn': 607816, 'and hasn been': 64209, 'hasn been directly': 378726, 'been directly impacted': 120985, 'directly impacted by': 243557, 'covid 19 start': 213854, '19 start running': 10779, 'start running facebook': 794474, 'running facebook ad': 727955, 'facebook ad the': 294888, 'ad the price': 31180, 'the price haven': 864361, 'price haven been': 674473, 'haven been this': 383765, 'been this low': 122187, 'low for loong': 505284, 'for loong time': 323107, 'loong time this': 503129, 'time this is': 897919, 'the time let': 869602, 'time let talk': 897127, 'gon': 356174, 'my kid': 548938, 'kid gon': 473968, 'gon be': 356175, 'be writing': 118163, 'writing essay': 1012899, 'essay on': 280713, '19 acted': 4799, 'acted an': 29833, 'shock internationally': 759463, 'internationally influencing': 441882, 'influencing global': 437355, 'trade consumer': 928464, 'behaviour and': 124357, 'and equity': 62227, 'my kid gon': 548946, 'kid gon be': 473969, 'gon be writing': 356176, 'be writing essay': 118165, 'writing essay on': 1012900, 'essay on how': 280714, 'on how covid': 601391, 'covid 19 acted': 212577, '19 acted an': 4800, 'acted an economic': 29834, 'an economic shock': 55586, 'economic shock internationally': 267275, 'shock internationally influencing': 759464, 'internationally influencing global': 441883, 'influencing global trade': 437356, 'global trade consumer': 352261, 'trade consumer behaviour': 928465, 'consumer behaviour and': 196553, 'behaviour and equity': 124361, 'and equity market': 62228, 'restaurateur': 716841, 'ldn': 482802, 'ours': 625428, 'all fellow': 42776, 'fellow restaurateur': 303325, 'restaurateur who': 716842, 'find themselves': 307316, 'themselves closing': 876790, 'closing their': 183781, 'their restaurant': 874577, 'day ldn': 227885, 'ldn are': 482803, 'distribution and': 248106, 'and desperately': 61260, 'your excess': 1023705, 'inventory we': 443723, 'we gave': 971596, 'gave them': 344668, 'them ours': 876120, 'ours yesterday': 625447, 'yesterday find': 1015731, 'help yourself': 391030, 'all fellow restaurateur': 42777, 'fellow restaurateur who': 303326, 'restaurateur who may': 716843, 'who may find': 989271, 'may find themselves': 521193, 'find themselves closing': 307318, 'themselves closing their': 876791, 'closing their restaurant': 183784, 'their restaurant in': 874579, 'restaurant in the': 716527, 'coming day ldn': 188022, 'day ldn are': 227886, 'ldn are on': 482805, 'line of food': 493302, 'food distribution and': 314223, 'distribution and desperately': 248108, 'and desperately need': 61261, 'desperately need your': 238576, 'need your excess': 556270, 'your excess inventory': 1023707, 'excess inventory we': 289348, 'inventory we gave': 443724, 'we gave them': 971597, 'gave them ours': 344672, 'them ours yesterday': 876121, 'ours yesterday find': 625448, 'yesterday find out': 1015732, 'out how to': 626339, 'to help yourself': 907672, 'microtarget': 530524, 'riskmanagement': 724106, 'true that': 933182, 'is detailed': 447145, 'detailed enough': 239288, 'predict my': 669572, 'my age': 547235, 'age health': 37829, 'health gender': 386458, 'gender and': 345246, 'where ll': 984999, 'll go': 496807, 'go then': 354215, 'then that': 877604, 'that same': 846104, 'same data': 733016, 'data can': 226157, 'help state': 390566, 'state health': 795659, 'department microtarget': 237228, 'microtarget testing': 530525, 'testing and': 839432, 'and testing': 73141, 'testing aid': 839426, 'aid can': 39361, 'can my': 159019, 'my digital': 547987, 'digital twin': 242678, 'twin save': 936577, 'save my': 737595, 'life one': 488941, 'one day': 606144, 'day risk': 228285, 'risk riskmanagement': 723855, 'riskmanagement marketing': 724108, 'if it true': 414339, 'it true that': 461867, 'true that consumer': 933183, 'that consumer data': 843297, 'data is detailed': 226286, 'is detailed enough': 447146, 'detailed enough to': 239289, 'enough to predict': 277716, 'to predict my': 911990, 'predict my age': 669573, 'my age health': 547238, 'age health gender': 37831, 'health gender and': 386459, 'gender and where': 345248, 'and where ll': 75537, 'where ll go': 985000, 'll go then': 496812, 'go then that': 354216, 'then that same': 877605, 'that same data': 846105, 'same data can': 733017, 'data can help': 226158, 'can help state': 158657, 'help state health': 390567, 'state health department': 795660, 'health department microtarget': 386375, 'department microtarget testing': 237229, 'microtarget testing and': 530526, 'testing and testing': 839443, 'and testing aid': 73142, 'testing aid can': 839427, 'aid can my': 39362, 'can my digital': 159021, 'my digital twin': 547988, 'digital twin save': 242679, 'twin save my': 936578, 'save my life': 737596, 'my life one': 549029, 'life one day': 488942, 'one day risk': 606163, 'day risk riskmanagement': 228286, 'risk riskmanagement marketing': 723856, 'sherwin': 758091, 'donates': 254376, 'sherwin williams': 758092, 'williams to': 995453, 'begin making': 123534, 'sanitizer donates': 734785, 'donates 250': 254383, '250 00': 16008, 'coat in': 185133, 'sherwin williams to': 758093, 'williams to begin': 995454, 'to begin making': 901711, 'begin making hand': 123537, 'hand sanitizer donates': 375379, 'sanitizer donates 250': 734786, 'donates 250 00': 254384, '250 00 mask': 16009, '00 mask glove': 320, 'mask glove and': 518724, 'glove and lab': 352568, 'lab coat in': 478254, 'coat in fight': 185134, 'in fight against': 422874, 'georgia': 346024, 'destroyed': 239041, 'stifled': 800132, 'wreaking': 1012693, 'havoc': 384417, 'gapol': 343475, 'real people': 701296, 'of georgia': 584089, 'georgia at': 346027, 'of 2018': 579474, '2018 hurricane': 13882, 'hurricane michael': 411486, 'michael destroyed': 530234, 'destroyed billion': 239046, 'their crop': 872923, 'crop in': 218928, '2019 chinese': 13951, 'chinese tariff': 177367, 'tariff stifled': 834620, 'stifled trade': 800135, 'year covid': 1014498, 'is wreaking': 454094, 'wreaking havoc': 1012694, 'havoc on': 384430, 'the fresh': 855799, 'produce market': 680346, 'market before': 516095, 'it even': 457854, 'started gapol': 794738, 'the real people': 865229, 'real people of': 701300, 'people of georgia': 648916, 'of georgia at': 584090, 'georgia at the': 346028, 'end of 2018': 275887, 'of 2018 hurricane': 579475, '2018 hurricane michael': 13883, 'hurricane michael destroyed': 411487, 'michael destroyed billion': 530235, 'destroyed billion of': 239047, 'billion of dollar': 130870, 'of dollar of': 582780, 'dollar of their': 253045, 'of their crop': 591654, 'their crop in': 872925, 'crop in 2019': 218929, 'in 2019 chinese': 419802, '2019 chinese tariff': 13952, 'chinese tariff stifled': 177368, 'tariff stifled trade': 834621, 'stifled trade and': 800136, 'trade and price': 928410, 'and price this': 69479, 'price this year': 676929, 'this year covid': 891566, 'year covid 19': 1014499, '19 is wreaking': 8085, 'is wreaking havoc': 454095, 'wreaking havoc on': 1012698, 'havoc on the': 384433, 'on the fresh': 604132, 'the fresh produce': 855803, 'fresh produce market': 333058, 'produce market before': 680347, 'market before it': 516096, 'before it even': 122882, 'it even get': 457855, 'even get started': 284110, 'get started gapol': 348104, 'retailer hiked': 719190, 'of cough': 582005, 'cold medicine': 185779, 'medicine by': 526750, 'by 10': 151506, '10 last': 1497, 'week according': 975817, 'to snapshot': 914786, 'snapshot analysis': 776152, 'retailer hiked the': 719191, 'price of cough': 675429, 'of cough and': 582006, 'cough and cold': 208446, 'and cold medicine': 60063, 'cold medicine by': 185780, 'medicine by 10': 526751, 'by 10 last': 151515, '10 last week': 1499, 'last week according': 480628, 'week according to': 975818, 'according to snapshot': 28587, 'to snapshot analysis': 914787, 'snapshot analysis of': 776153, 'analysis of the': 57070, 'of the impact': 591128, 'of on the': 587230, 'on the economy': 604085, 'croozefmnews': 218885, 'terribly': 838459, 'mbarara': 522051, 'refusal': 707006, 'sh100': 754308, 'croozefmnews price': 218890, 'price terribly': 676769, 'terribly increase': 838468, 'increase mbarara': 432910, 'mbarara trader': 522052, 'trader suspended': 928770, 'for refusal': 325065, 'refusal to': 707007, 'pay sh100': 645104, 'croozefmnews price terribly': 218891, 'price terribly increase': 676770, 'terribly increase mbarara': 838469, 'increase mbarara trader': 432911, 'mbarara trader suspended': 522053, 'trader suspended for': 928771, 'suspended for refusal': 829614, 'for refusal to': 325066, 'refusal to pay': 707009, 'to pay sh100': 911556, 'important tip': 419044, 'shopping post': 763663, 'important tip for': 419045, 'tip for safe': 898778, 'for safe online': 325290, 'online shopping post': 609231, 'shopping post covid': 763664, 'hypothesis': 412416, 'mobility': 535074, 'hypothesis mid': 412417, 'mid march': 530572, 'march grocery': 515379, 'grocery buying': 364333, 'buying panic': 150866, 'panic resulted': 638487, 'more spreading': 540438, 'spreading of': 791010, 'coronavirus many': 206264, 'many case': 513877, 'case we': 166093, 'see now': 745489, 'are result': 89657, 'food google': 314696, 'google mobility': 358174, 'mobility chart': 535081, 'chart for': 173827, 'pharmacy below': 654255, 'hypothesis mid march': 412418, 'mid march grocery': 530574, 'march grocery buying': 515380, 'grocery buying panic': 364334, 'buying panic resulted': 150868, 'panic resulted in': 638488, 'resulted in more': 717679, 'in more spreading': 425445, 'more spreading of': 540439, 'spreading of coronavirus': 791011, 'of coronavirus many': 581950, 'coronavirus many case': 206265, 'many case we': 513881, 'case we see': 166098, 'we see now': 973165, 'see now are': 745490, 'now are result': 574098, 'are result of': 89658, 'of the rush': 591427, 'rush to buy': 728339, 'buy food google': 148650, 'food google mobility': 314697, 'google mobility chart': 358175, 'mobility chart for': 535082, 'chart for grocery': 173828, 'for grocery and': 322022, 'and pharmacy below': 68966, 'hypocrite': 412405, 'boycotthul': 137375, 'you hypocrite': 1019270, 'hypocrite for': 412409, '25 price': 15954, 'hike of': 396235, 'of soap': 589816, 'sanitizer when': 736069, 'it most': 459678, 'most boycotthul': 542141, 'on you hypocrite': 605423, 'you hypocrite for': 1019271, 'hypocrite for 10': 412410, 'for 10 to': 318620, '10 to 25': 1729, 'to 25 price': 899640, '25 price hike': 15955, 'price hike of': 674534, 'hike of soap': 396239, 'of soap and': 589819, 'soap and hand': 778912, 'hand sanitizer when': 375659, 'sanitizer when people': 736071, 'when people need': 983864, 'people need it': 648830, 'need it most': 555096, 'it most boycotthul': 459681, 'wednesdaythoughts': 975721, 'these is': 880183, 'favorite condiment': 300501, 'condiment food': 193379, 'during food': 262643, 'food wednesdaymotivation': 317539, 'wednesdaymotivation wednesdaythoughts': 975717, 'wednesdaythoughts here': 975726, 'some packaged': 783491, 'item you': 463861, 'of these is': 591836, 'these is your': 880184, 'is your favorite': 454145, 'your favorite condiment': 1023822, 'favorite condiment food': 300502, 'condiment food during': 193380, 'food during food': 314321, 'during food wednesdaymotivation': 262645, 'food wednesdaymotivation wednesdaythoughts': 317540, 'wednesdaymotivation wednesdaythoughts here': 975718, 'wednesdaythoughts here are': 975727, 'are some packaged': 90280, 'some packaged food': 783493, 'packaged food item': 633481, 'food item you': 315244, 'item you can': 463865, 'you can stock': 1017796, 'yallaregettingonmynerves': 1014108, 'know they': 476871, 're putting': 699334, 'putting those': 691262, 'those arrow': 891809, 'arrow on': 94047, 'floor of': 310829, 'for reason': 324998, 'reason you': 703072, 'should probably': 766335, 'probably follow': 679261, 'them very': 876576, 'very annoyed': 954991, 'annoyed grocery': 77352, 'employee yallaregettingonmynerves': 274476, 'yallaregettingonmynerves essentialworkers': 1014109, 'ya know they': 1014008, 'know they re': 476880, 'they re putting': 883104, 're putting those': 699337, 'putting those arrow': 691263, 'those arrow on': 891810, 'arrow on the': 94048, 'the floor of': 855426, 'floor of every': 310830, 'of every grocery': 583240, 'store for reason': 807832, 'for reason you': 325008, 'reason you should': 703075, 'you should probably': 1021212, 'should probably follow': 766336, 'probably follow them': 679262, 'follow them very': 312552, 'them very annoyed': 876577, 'very annoyed grocery': 954993, 'annoyed grocery store': 77353, 'store employee yallaregettingonmynerves': 807580, 'employee yallaregettingonmynerves essentialworkers': 274477, 'signatory': 769342, 'spearheaded': 787825, 'anna': 76768, 'vailant': 951848, 'rage': 695539, 'evermore': 285631, 'relevant': 709143, 'to signatory': 914644, 'signatory to': 769343, 'important letter': 418867, 'letter spearheaded': 487351, 'spearheaded by': 787826, 'by anna': 151859, 'anna and': 76769, 'and covered': 60660, 'covered here': 212416, 'here with': 393847, 'more store': 540473, 'our vailant': 625250, 'vailant retail': 951849, 'retail staff': 718591, 'staff on': 792714, 'frontline making': 338782, 'them vulnerable': 876581, 'supermarket version': 823638, 'of road': 589141, 'road rage': 724495, 'rage this': 695550, 'is evermore': 447573, 'evermore relevant': 285632, 'pleased to signatory': 660803, 'to signatory to': 914645, 'signatory to this': 769344, 'to this important': 917431, 'this important letter': 888025, 'important letter spearheaded': 418869, 'letter spearheaded by': 487352, 'spearheaded by anna': 787827, 'by anna and': 151860, 'anna and covered': 76770, 'and covered here': 60661, 'covered here with': 212417, 'here with more': 393848, 'with more store': 999564, 'more store closure': 540476, 'store closure and': 807084, 'closure and our': 183841, 'and our vailant': 68525, 'our vailant retail': 625251, 'vailant retail staff': 951850, 'retail staff on': 718596, 'staff on the': 792717, 'the frontline making': 855879, 'frontline making them': 338783, 'making them vulnerable': 511447, 'them vulnerable to': 876583, 'vulnerable to supermarket': 961234, 'to supermarket version': 915855, 'supermarket version of': 823639, 'version of road': 954919, 'of road rage': 589142, 'road rage this': 724496, 'rage this is': 695551, 'this is evermore': 888248, 'is evermore relevant': 447574, 'aapka': 24121, 'apna': 81490, 'jantacurfew': 464593, 'make india': 510004, 'india safer': 434598, 'safer from': 730365, 'home via': 402425, 'via dime': 955919, 'dime aapka': 242912, 'aapka apna': 24122, 'apna shopping': 81491, 'shopping gang': 762771, 'this jantacurfew': 888536, 'jantacurfew success': 464601, 'success fightcovid19': 816197, 'let make india': 486883, 'make india safer': 510007, 'india safer from': 434599, 'safer from shop': 730366, 'from shop online': 337264, 'shop online from': 760570, 'online from home': 608269, 'from home via': 335926, 'home via dime': 402426, 'via dime aapka': 955920, 'dime aapka apna': 242913, 'aapka apna shopping': 24123, 'apna shopping gang': 81492, 'shopping gang and': 762772, 'gang and make': 343391, 'and make this': 66583, 'make this jantacurfew': 510644, 'this jantacurfew success': 888537, 'jantacurfew success fightcovid19': 464602, 'nook': 566825, 'animalcrossing': 76692, 'acnh': 29138, 'tomnook': 923991, 'leave it': 484845, 'the nook': 861847, 'nook to': 566831, 'to profiteer': 912238, 'profiteer in': 682961, 'crisis animalcrossing': 217063, 'animalcrossing acnh': 76693, 'acnh tomnook': 29143, 'tomnook toiletpaper': 923992, 'leave it to': 484849, 'to the nook': 916904, 'the nook to': 861849, 'nook to profiteer': 566832, 'to profiteer in': 912240, 'profiteer in crisis': 682962, 'in crisis animalcrossing': 421873, 'crisis animalcrossing acnh': 217064, 'animalcrossing acnh tomnook': 76694, 'acnh tomnook toiletpaper': 29144, 'tomnook toiletpaper toiletroll': 923993, 'drunk': 261214, 'blono': 133095, 'so told': 778557, 'place so': 657687, 'so hit': 777312, 'people deal': 647606, 'deal differently': 229379, 'differently this': 242167, 'woman wa': 1003646, 'so drunk': 776925, 'drunk she': 261221, 'she couldn': 755960, 'couldn walk': 209939, 'walk her': 964794, 'friend told': 333857, 'her to': 392458, 'to ride': 913518, 'ride on': 721454, 'cart she': 165378, 'she went': 756458, 'went by': 978973, 'by it': 152942, 'wa obvious': 962795, 'obvious she': 578802, 'had wet': 373792, 'wet herself': 980735, 'herself people': 394238, 'are losing': 87893, 'losing it': 503559, 'it coronacrisis': 457329, 'coronacrisis blono': 204525, 'so told to': 778558, 'told to shelter': 923762, 'to shelter in': 914399, 'in place so': 426762, 'place so hit': 657689, 'so hit the': 777313, 'hit the grocery': 398430, 'store people deal': 809489, 'people deal differently': 647607, 'deal differently this': 229380, 'differently this woman': 242168, 'this woman wa': 891483, 'woman wa so': 1003651, 'wa so drunk': 963256, 'so drunk she': 776926, 'drunk she couldn': 261222, 'she couldn walk': 755963, 'couldn walk her': 209940, 'walk her friend': 964795, 'her friend told': 392062, 'friend told her': 333859, 'told her to': 923570, 'her to ride': 392470, 'to ride on': 913520, 'ride on the': 721455, 'on the cart': 604011, 'the cart she': 850447, 'cart she went': 165379, 'she went by': 756460, 'went by it': 978974, 'by it wa': 152948, 'it wa obvious': 462161, 'wa obvious she': 962797, 'obvious she had': 578803, 'she had wet': 756110, 'had wet herself': 373793, 'wet herself people': 980736, 'herself people are': 394239, 'people are losing': 647017, 'are losing it': 87898, 'losing it coronacrisis': 503561, 'it coronacrisis blono': 457330, 'putnam': 691069, 'chamber': 171665, 'partnering': 642930, 'putnam county': 691070, 'county chamber': 211338, 'chamber of': 171670, 'of commerce': 581548, 'commerce is': 188580, 'is partnering': 450809, 'partnering with': 642931, 'with restaurant': 1000491, 'county to': 211514, 'share online': 755134, 'online list': 608494, 'some service': 783829, 'offered during': 594917, 'putnam county chamber': 691071, 'county chamber of': 211339, 'chamber of commerce': 171671, 'of commerce is': 581552, 'commerce is partnering': 188585, 'is partnering with': 450810, 'partnering with restaurant': 642935, 'with restaurant and': 1000492, 'restaurant and business': 716276, 'and business in': 59285, 'the county to': 852199, 'county to share': 211516, 'to share online': 914355, 'share online list': 755135, 'online list of': 608495, 'list of some': 494474, 'of some service': 589906, 'some service being': 783830, 'service being offered': 752178, 'being offered during': 125478, 'restocked daily': 716946, 'daily sometimes': 224805, 'store are restocked': 806515, 'are restocked daily': 89643, 'restocked daily sometimes': 716948, 'daily sometimes more': 224806, 'jogger': 466495, 'strange my': 812406, 'my experience': 548126, 'experience at': 291319, 'two grocery': 936946, 'store go': 807941, 'is 180': 445173, '180 degree': 4618, 'degree opposite': 232571, 'opposite first': 613790, 'first jogger': 308745, 'jogger now': 466496, 'now grocery': 574825, 'store customer': 807243, 'customer andrew': 222108, 'andrew hmm': 76183, 'strange my experience': 812407, 'my experience at': 548127, 'experience at the': 291320, 'at the two': 101133, 'the two grocery': 870150, 'two grocery store': 936947, 'grocery store go': 365433, 'store go to': 807944, 'to is 180': 908519, 'is 180 degree': 445174, '180 degree opposite': 4619, 'degree opposite first': 232572, 'opposite first jogger': 613791, 'first jogger now': 308746, 'jogger now grocery': 466497, 'now grocery store': 574828, 'grocery store customer': 365319, 'store customer andrew': 807244, 'customer andrew hmm': 222109, 'spending ha': 788823, 'shifted dramatically': 758481, 'dramatically since': 258374, 'since most': 770747, 'spending economics': 788797, 'consumer spending ha': 199065, 'spending ha shifted': 788830, 'ha shifted dramatically': 371901, 'shifted dramatically since': 758483, 'dramatically since most': 258375, 'since most people': 770753, 'most people have': 542614, 'have to stay': 383307, 'home spending economics': 402105, 'economy memo': 268070, 'memo by': 528400, 'is affecting the': 445397, 'affecting the world': 34576, 'the world economy': 871862, 'world economy memo': 1009508, 'economy memo by': 268071, 'memo by read': 528401, 'luckily': 506493, 'dive': 248474, 'with driving': 998142, 'driving even': 259923, 'more usage': 540874, 'usage strong': 948853, 'strong strategy': 814125, 'is critical': 446937, 'critical now': 218616, 'then ever': 877155, 'ever luckily': 285399, 'luckily and': 506494, 'and april': 58282, 'april 16': 83423, '16 webinar': 4190, 'webinar will': 975136, 'will dive': 993218, 'dive into': 248487, 'into growing': 442608, 'growing app': 367125, 'app awareness': 81679, 'and targeting': 73035, 'targeting high': 834566, 'high lifetime': 395160, 'lifetime value': 489411, 'value user': 952229, 'with driving even': 998143, 'driving even more': 259924, 'even more usage': 284387, 'more usage strong': 540875, 'usage strong strategy': 948854, 'strong strategy is': 814126, 'strategy is critical': 812666, 'is critical now': 446941, 'critical now more': 218618, 'now more then': 575316, 'more then ever': 540720, 'then ever luckily': 877156, 'ever luckily and': 285400, 'luckily and april': 506495, 'and april 16': 58283, 'april 16 webinar': 83426, '16 webinar will': 4191, 'webinar will dive': 975137, 'will dive into': 993219, 'dive into growing': 248488, 'into growing app': 442609, 'growing app awareness': 367126, 'app awareness and': 81680, 'awareness and targeting': 105688, 'and targeting high': 73037, 'targeting high lifetime': 834567, 'high lifetime value': 395161, 'lifetime value user': 489412, 'musing': 546396, 'any thought': 79963, 'thought leadership': 893112, 'leadership out': 483641, 'there around': 878194, 'around what': 93619, 'what consumer': 981247, 'change airline': 171895, 'airline should': 40018, 'should make': 766205, 'make if': 509999, 'if gov': 414167, 'gov give': 359589, 'give industry': 350536, 'industry bail': 435677, 'out ve': 627766, 've heard': 953244, 'heard congressional': 388071, 'congressional staff': 194565, 'are musing': 88171, 'musing on': 546397, 'any thought leadership': 79965, 'thought leadership out': 893114, 'leadership out there': 483642, 'out there around': 627469, 'there around what': 878196, 'around what consumer': 93621, 'what consumer change': 981251, 'consumer change airline': 196776, 'change airline should': 171896, 'airline should make': 40020, 'should make if': 766207, 'make if gov': 510000, 'if gov give': 414169, 'gov give industry': 359590, 'give industry bail': 350537, 'industry bail out': 435678, 'bail out ve': 108593, 'out ve heard': 627767, 've heard congressional': 953247, 'heard congressional staff': 388072, 'congressional staff are': 194566, 'staff are musing': 792197, 'are musing on': 88172, 'musing on the': 546398, 'on the idea': 604169, 'michigan hospital': 530349, 'hospital need': 404521, 'help hospital': 389870, 'are accepting': 84179, 'accepting donation': 28076, 'donation of': 254644, 'of personal': 588060, 'personal protection': 652941, 'protection equipment': 685415, 'equipment ppe': 279804, 'ppe such': 668059, 'and bleach': 59001, 'bleach you': 132532, 'find full': 306930, 'full list': 340664, 'of item': 585475, 'donate at': 254159, 'michigan hospital need': 530350, 'hospital need your': 404522, 'your help hospital': 1024302, 'help hospital are': 389871, 'hospital are accepting': 404295, 'are accepting donation': 84180, 'accepting donation of': 28077, 'donation of personal': 254651, 'of personal protection': 588062, 'personal protection equipment': 652942, 'protection equipment ppe': 685417, 'equipment ppe such': 279810, 'ppe such hand': 668061, 'such hand sanitizer': 816539, 'sanitizer glove and': 734988, 'glove and bleach': 352555, 'and bleach you': 59003, 'bleach you can': 132533, 'you can find': 1017676, 'can find full': 158321, 'find full list': 306931, 'full list of': 340667, 'list of item': 494447, 'of item and': 585476, 'item and how': 463057, 'and how to': 64841, 'how to donate': 409011, 'to donate at': 904644, 'traceability': 928137, 'digitalassetlive': 242695, 'like blockchain': 489919, 'blockchain based': 132822, 'based traceability': 111772, 'traceability is': 928139, 'way forward': 969591, 'forward in': 329985, 'post 19': 665966, '19 time': 11397, 'time digitalassetlive': 896561, 'digitalassetlive blockchain': 242696, 'blockchain traceability': 132843, 'traceability food': 928138, 'look like blockchain': 502466, 'like blockchain based': 489920, 'blockchain based traceability': 132824, 'based traceability is': 111773, 'traceability is the': 928140, 'is the only': 452878, 'only way forward': 611439, 'way forward in': 969592, 'forward in the': 329986, 'the post 19': 864079, 'post 19 time': 665968, '19 time digitalassetlive': 11400, 'time digitalassetlive blockchain': 896562, 'digitalassetlive blockchain traceability': 242697, 'blockchain traceability food': 132844, '01': 715, 'most soap': 542755, 'sanitizer brand': 734591, 'brand claim': 137796, 'claim that': 179830, 'that their': 846875, 'product kill': 681340, 'germ you': 346190, 'happens to': 377510, 'the remaining': 865490, 'remaining 01': 709954, 'is it that': 449064, 'it that most': 461494, 'that most soap': 845234, 'most soap and': 542756, 'and sanitizer brand': 70861, 'sanitizer brand claim': 734592, 'brand claim that': 137797, 'claim that their': 179836, 'that their product': 846885, 'their product kill': 874470, 'product kill 99': 681341, 'of germ you': 584105, 'germ you wonder': 346193, 'you wonder what': 1022410, 'wonder what happens': 1004009, 'what happens to': 981568, 'happens to the': 377514, 'to the remaining': 917014, 'the remaining 01': 865492, 'tuesdaythoughts': 935215, 'familiesfirst': 297539, 'report stay': 712278, 'safe michigan': 729823, 'michigan tuesdaythoughts': 530382, 'tuesdaythoughts familiesfirst': 935220, 'consumer report stay': 198729, 'report stay safe': 712279, 'stay safe michigan': 797253, 'safe michigan tuesdaythoughts': 729824, 'michigan tuesdaythoughts familiesfirst': 530383, 'workmate': 1009149, 'symptomatic': 830957, 'father is': 300290, 'warehouse of': 966742, 'italy apparently': 462766, 'his workmate': 397928, 'workmate who': 1009150, 'who happens': 988899, 'an indian': 56269, 'indian national': 434862, 'national wa': 552639, 'wa sent': 963164, 'sent back': 750740, 'being symptomatic': 125894, 'symptomatic for': 830958, 'my father is': 548248, 'father is working': 300292, 'working at warehouse': 1008532, 'at warehouse of': 101497, 'warehouse of supermarket': 966743, 'supermarket in italy': 820913, 'in italy apparently': 424291, 'italy apparently one': 462767, 'one of his': 606746, 'of his workmate': 584672, 'his workmate who': 397929, 'workmate who happens': 1009151, 'who happens to': 988900, 'happens to be': 377511, 'to be an': 901106, 'be an indian': 113610, 'an indian national': 56271, 'indian national wa': 434863, 'national wa sent': 552640, 'wa sent back': 963165, 'sent back home': 750741, 'back home for': 107058, 'home for being': 401224, 'for being symptomatic': 319639, 'being symptomatic for': 125895, 'symptomatic for covid': 830959, 'prospecting': 684703, 'might go': 530998, 'beach later': 118217, 'collect some': 186319, 'some more': 783315, 'more gold': 539353, 'gold from': 355894, 'this awesome': 886467, 'awesome sand': 106196, 'sand we': 733668, 'have here': 380934, 'know thing': 476883, 'going bad': 355051, 'bad when': 108081, 'find gold': 306938, 'gold at': 355859, 'beach but': 118194, 'will post': 994429, 'post the': 666349, 'result later': 717563, 'later today': 481148, 'today gold': 919579, 'gold prospecting': 355983, 'might go to': 530999, 'the beach later': 849384, 'beach later and': 118218, 'later and collect': 481021, 'and collect some': 60089, 'collect some more': 186320, 'some more gold': 783320, 'more gold from': 539354, 'gold from this': 355895, 'from this awesome': 337986, 'this awesome sand': 886470, 'awesome sand we': 106197, 'sand we have': 733669, 'we have here': 971834, 'have here you': 380936, 'here you know': 393857, 'you know thing': 1019531, 'know thing are': 476884, 'thing are going': 884153, 'are going bad': 86878, 'going bad when': 355052, 'bad when you': 108083, 'when you can': 984544, 'can find gold': 158324, 'find gold at': 306939, 'gold at the': 355862, 'at the beach': 100884, 'the beach but': 849378, 'beach but no': 118195, 'but no toilet': 146504, 'paper roll at': 640687, 'supermarket will post': 823888, 'will post the': 994430, 'post the result': 666355, 'the result later': 865696, 'result later today': 717564, 'later today gold': 481149, 'today gold prospecting': 919580, 'prophylactic': 684404, 'hydroxychloroquineandazithromycin': 412020, 'medicaladvice': 526514, 'malaria': 511547, 'trump recommends': 933785, 'recommends people': 704838, 'people take': 649713, 'take drug': 832084, 'drug prophylactic': 261069, 'prophylactic hydroxychloroquineandazithromycin': 684405, 'hydroxychloroquineandazithromycin at': 412021, 'least he': 484502, 'said not': 731265, 'not doctor': 569074, 'doctor medicaladvice': 250978, 'medicaladvice malaria': 526515, 'malaria lupus': 511563, 'lupus fda': 506816, 'fda ftc': 300859, 'ftc trumppressbriefing': 339462, 'trumppressbriefing and': 934128, 'trump recommends people': 933786, 'recommends people take': 704839, 'people take drug': 649715, 'take drug prophylactic': 832085, 'drug prophylactic hydroxychloroquineandazithromycin': 261070, 'prophylactic hydroxychloroquineandazithromycin at': 684406, 'hydroxychloroquineandazithromycin at least': 412022, 'at least he': 99505, 'least he said': 484503, 'he said not': 385371, 'said not doctor': 731266, 'not doctor medicaladvice': 569077, 'doctor medicaladvice malaria': 250979, 'medicaladvice malaria lupus': 526516, 'malaria lupus fda': 511564, 'lupus fda ftc': 506817, 'fda ftc trumppressbriefing': 300861, 'ftc trumppressbriefing and': 339463, 'drank': 258388, 'fairprice': 296456, 'another covid': 77551, '19 story': 10891, 'people thinking': 649840, 'joke guess': 467092, 'guess two': 368072, 'two teen': 937253, 'teen charged': 836480, 'after one': 35982, 'one allegedly': 605880, 'allegedly placed': 45697, 'placed juice': 657897, 'juice he': 467749, 'he drank': 384919, 'drank back': 258389, 'on fairprice': 600720, 'fairprice supermarket': 296461, 'another covid 19': 77552, 'covid 19 story': 213875, '19 story of': 10899, 'story of people': 812070, 'of people thinking': 588002, 'people thinking it': 649841, 'thinking it is': 885935, 'it is joke': 458995, 'is joke guess': 449107, 'joke guess two': 467093, 'guess two teen': 368073, 'two teen charged': 937254, 'teen charged after': 836481, 'charged after one': 173368, 'after one allegedly': 35983, 'one allegedly placed': 605881, 'allegedly placed juice': 45698, 'placed juice he': 657898, 'juice he drank': 467750, 'he drank back': 384920, 'drank back on': 258390, 'back on fairprice': 107186, 'on fairprice supermarket': 600721, 'fairprice supermarket shelf': 296462, 'tied': 895755, 'singular': 771448, 'insightintelligence': 439686, 'many generational': 514092, 'generational attitude': 345662, 'attitude have': 102558, 'been tied': 122198, 'tied to': 895756, 'to singular': 914674, 'singular event': 771449, 'event like': 285012, 'world war': 1010134, 'war the': 966545, 'depression financial': 237649, 'financial recession': 306548, 'recession 11': 704198, '11 will': 2613, 'the habit': 857031, 'habit of': 372658, 'change post': 172229, 'post pandemic': 666274, 'pandemic insight': 635736, 'insight retail': 439629, 'cx insightintelligence': 223913, 'many generational attitude': 514093, 'generational attitude have': 345663, 'attitude have been': 102559, 'have been tied': 379719, 'been tied to': 122199, 'tied to singular': 895759, 'to singular event': 914675, 'singular event like': 771450, 'event like the': 285013, 'like the world': 491410, 'the world war': 872001, 'world war the': 1010138, 'war the great': 966546, 'great depression financial': 362627, 'depression financial recession': 237650, 'financial recession 11': 306549, 'recession 11 will': 704199, '11 will be': 2614, 'of them will': 591776, 'them will the': 876640, 'will the habit': 995143, 'the habit of': 857032, 'habit of consumer': 372660, 'of consumer change': 581719, 'consumer change post': 196778, 'change post pandemic': 172230, 'post pandemic insight': 666276, 'pandemic insight retail': 635737, 'insight retail cx': 439630, 'retail cx insightintelligence': 718023, '1k': 12617, 'here amazing': 392679, 'amazing proposal': 50772, 'proposal 2k': 684451, '2k per': 16627, 'per adult': 650685, 'adult 1k': 32782, '1k per': 12623, 'per child': 650763, 'child suspend': 176211, 'business credit': 143595, 'credit payment': 216447, 'payment stop': 645739, 'stop negative': 804846, 'negative credit': 556751, 'credit report': 216481, 'report suspend': 712295, 'suspend debt': 829558, 'debt collection': 230438, 'collection recovery': 186462, 'and debt': 61000, 'debt recovery': 230544, 'recovery wage': 705418, 'wage bill': 963831, 'bill prohibition': 130665, 'prohibition of': 683440, 'eviction foreclosure': 288314, 'foreclosure billion': 328918, 'billion homeless': 130830, 'homeless assistance': 402735, 'here amazing proposal': 392680, 'amazing proposal 2k': 50773, 'proposal 2k per': 684452, '2k per adult': 16628, 'per adult 1k': 650686, 'adult 1k per': 32783, '1k per child': 12624, 'per child suspend': 650765, 'child suspend consumer': 176213, 'suspend consumer and': 829552, 'small business credit': 774850, 'business credit payment': 143597, 'credit payment stop': 216452, 'payment stop negative': 645740, 'stop negative credit': 804847, 'negative credit report': 556754, 'credit report suspend': 216485, 'report suspend debt': 712296, 'suspend debt collection': 829560, 'debt collection recovery': 230450, 'collection recovery and': 186463, 'recovery and debt': 705290, 'and debt recovery': 61001, 'debt recovery wage': 230545, 'recovery wage bill': 705419, 'wage bill prohibition': 963832, 'bill prohibition of': 130666, 'prohibition of eviction': 683441, 'of eviction foreclosure': 583281, 'eviction foreclosure billion': 288316, 'foreclosure billion homeless': 328919, 'billion homeless assistance': 130831, 'admits': 32620, 'calockdown': 156878, 'store spokesman': 810282, 'spokesman admits': 789773, 'admits shortage': 32623, 'shortage are': 764834, 'say when': 739475, 'when shelf': 984009, 'be restocked': 116842, 'restocked calockdown': 716940, 'calockdown hoarder': 156880, 'hoarder via': 399141, 'grocery store spokesman': 365791, 'store spokesman admits': 810283, 'spokesman admits shortage': 789774, 'admits shortage are': 32624, 'shortage are unprecedented': 764840, 'are unprecedented and': 91333, 'unprecedented and say': 943080, 'and say when': 71012, 'say when shelf': 739476, 'when shelf will': 984011, 'shelf will be': 757811, 'will be restocked': 992650, 'be restocked calockdown': 116843, 'restocked calockdown hoarder': 716941, 'calockdown hoarder via': 156881, 'bold': 134086, 'global situation': 352200, 'situation with': 772593, 'is bold': 446215, 'bold proof': 134093, 'proof of': 684003, 'how crucial': 407647, 'crucial ecommerce': 219444, 'ecommerce ha': 266782, 'become for': 119997, 'society and': 781152, 'how big': 407455, 'big it': 129839, 'it potential': 460402, 'every retailer': 286143, 'retailer there': 719366, 'still is': 800754, 'the global situation': 856326, 'global situation with': 352201, 'situation with is': 772599, 'with is bold': 999043, 'is bold proof': 446216, 'bold proof of': 134094, 'proof of how': 684005, 'of how crucial': 584819, 'how crucial ecommerce': 407648, 'crucial ecommerce ha': 219445, 'ecommerce ha become': 266783, 'ha become for': 369676, 'become for our': 119998, 'for our society': 324292, 'our society and': 624818, 'society and how': 781155, 'and how big': 64802, 'how big it': 407457, 'big it potential': 129840, 'it potential for': 460403, 'potential for every': 667071, 'for every retailer': 321174, 'every retailer there': 286146, 'retailer there still': 719367, 'there still is': 879099, 'foothold': 318547, 'yoy': 1026945, 'california home': 155518, 'sale were': 732640, 'were getting': 979677, 'getting strong': 349310, 'strong foothold': 814037, 'foothold in': 318548, 'february pre': 301735, 'outbreak with': 628827, 'up yoy': 946762, 'yoy realestate': 1026969, 'realestate housing': 701485, 'california home sale': 155520, 'home sale were': 402009, 'sale were getting': 732642, 'were getting strong': 979679, 'getting strong foothold': 349311, 'strong foothold in': 814038, 'foothold in february': 318549, 'in february pre': 422847, 'february pre covid': 301736, '19 outbreak with': 9210, 'outbreak with sale': 628832, 'with sale and': 1000554, 'sale and price': 732045, 'and price up': 69482, 'price up yoy': 677276, 'up yoy realestate': 946765, 'yoy realestate housing': 1026970, 'british online': 140552, 'supermarket said': 822293, 'said growth': 731094, 'last three': 480554, 'week wa': 977169, 'wa double': 962021, 'double that': 256063, 'it first': 458021, 'quarter panicked': 693262, 'shopper stock': 761713, 'good ahead': 356703, 'an expected': 55961, 'expected shutdown': 290936, 'shutdown to': 768112, 'british online supermarket': 140553, 'online supermarket said': 609502, 'supermarket said growth': 822294, 'said growth in': 731095, 'growth in the': 367405, 'the last three': 859048, 'last three week': 480556, 'three week wa': 894119, 'week wa double': 977171, 'wa double that': 962022, 'double that of': 256064, 'that of it': 845444, 'of it first': 585393, 'it first quarter': 458029, 'first quarter panicked': 308896, 'quarter panicked shopper': 693263, 'panicked shopper stock': 639291, 'shopper stock up': 761715, 'up on good': 945570, 'on good ahead': 601141, 'good ahead of': 356704, 'ahead of an': 39172, 'of an expected': 580115, 'an expected shutdown': 55963, 'expected shutdown to': 290937, 'shutdown to tackle': 768114, 'pune': 689190, 'chennai': 175495, 'rtold': 726865, 'dart': 226034, 'deliver material': 233164, 'material required': 520411, 'manufacture sanitizer': 513388, 'from pune': 337001, 'pune to': 689205, 'to chennai': 902712, 'chennai rtold': 175500, 'rtold to': 726866, 'bring the': 140082, 'the material': 860285, 'material to': 520425, 'to mumbai': 910354, 'mumbai airport': 545989, 'airport that': 40122, 'too after': 924566, 'after charging': 35460, 'charging 30': 173447, '30 extra': 17041, 'extra kudos': 293560, 'your blue': 1022979, 'blue dart': 133443, 'dart that': 226037, 'operating only': 613094, 'refused to deliver': 707070, 'to deliver material': 904104, 'deliver material required': 233165, 'material required to': 520412, 'required to manufacture': 713403, 'to manufacture sanitizer': 909820, 'manufacture sanitizer from': 513389, 'sanitizer from pune': 734949, 'from pune to': 337002, 'pune to chennai': 689206, 'to chennai rtold': 902713, 'chennai rtold to': 175501, 'rtold to bring': 726867, 'to bring the': 902053, 'bring the material': 140086, 'the material to': 860288, 'material to mumbai': 520428, 'to mumbai airport': 910355, 'mumbai airport that': 545990, 'airport that too': 40123, 'that too after': 847095, 'too after charging': 924567, 'after charging 30': 35461, 'charging 30 extra': 173448, '30 extra kudos': 17042, 'extra kudos to': 293561, 'kudos to your': 477889, 'to your blue': 918955, 'your blue dart': 1022980, 'blue dart that': 133445, 'dart that is': 226038, 'that is operating': 844635, 'is operating only': 450593, 'operating only for': 613096, 'for the profit': 326637, 'fooddelivery': 317890, 'pretty impossible': 671433, 'impossible not': 419386, 'no fooddelivery': 564283, 'fooddelivery available': 317893, 'pretty impossible not': 671434, 'impossible not to': 419387, 'the supermarket if': 868639, 'supermarket if there': 820836, 'is no fooddelivery': 449930, 'no fooddelivery available': 564284, 'costco in': 208238, 'in toronto': 430198, 'toronto limiting': 925956, 'limiting toilet': 492885, 'to two': 917862, 'two package': 937123, 'package per': 633370, 'costco in toronto': 208241, 'in toronto limiting': 430206, 'toronto limiting toilet': 925957, 'limiting toilet paper': 492886, 'paper to two': 640929, 'to two package': 917868, 'two package per': 937125, 'package per person': 633371, 'perpetrate': 652212, 'cyberscam': 223981, 'beready': 127284, 'donotfallforit': 255177, 'that bad': 842918, 'bad actor': 107741, 'actor will': 30603, 'use crisis': 949145, 'like covid19': 490060, 'covid19 pandemic': 214341, 'to perpetrate': 911670, 'perpetrate crime': 652213, 'crime but': 216774, 'reality is': 701749, 'will cybersecurity': 993090, 'cybersecurity cyberscam': 223992, 'cyberscam beready': 223982, 'beready donotfallforit': 127285, 'donotfallforit important': 255178, 'important message': 418880, 'from ftc': 335584, 'ftc about': 339368, 'sad that bad': 729250, 'that bad actor': 842919, 'bad actor will': 107748, 'actor will use': 30604, 'will use crisis': 995284, 'use crisis like': 949146, 'crisis like covid19': 217662, 'like covid19 pandemic': 490061, 'covid19 pandemic to': 214345, 'pandemic to perpetrate': 636788, 'to perpetrate crime': 911671, 'perpetrate crime but': 652214, 'crime but the': 216775, 'but the reality': 147394, 'the reality is': 865260, 'reality is they': 701752, 'is they will': 453056, 'they will cybersecurity': 883836, 'will cybersecurity cyberscam': 993091, 'cybersecurity cyberscam beready': 223993, 'cyberscam beready donotfallforit': 223983, 'beready donotfallforit important': 127286, 'donotfallforit important message': 255179, 'important message from': 418882, 'message from ftc': 529313, 'from ftc about': 335585, 'ftc about covid': 339370, 'efficiently': 269443, 'x1m': 1013753, 'work each': 1005076, 'each cage': 264003, 'cage of': 155169, 'stock efficiently': 802078, 'efficiently we': 269450, 'empty complete': 274840, 'complete supermarket': 192158, 'supermarket cage': 819488, 'cage 1m': 155159, '1m x1m': 12665, 'x1m square': 1013754, 'square by': 791467, 'by 2m': 151623, '2m high': 16694, 'high onto': 395204, 'onto the': 611679, 'one product': 606923, 'product off': 681457, 'the cage': 850268, 'cage because': 155165, 'because customer': 119012, 'customer ha': 222421, 'that item': 844761, 'we work each': 973941, 'work each cage': 1005077, 'each cage of': 264004, 'cage of stock': 155171, 'of stock efficiently': 590160, 'stock efficiently we': 802079, 'efficiently we are': 269451, 'are not going': 88382, 'going to empty': 355584, 'to empty complete': 905031, 'empty complete supermarket': 274841, 'complete supermarket cage': 192159, 'supermarket cage 1m': 819489, 'cage 1m x1m': 155160, '1m x1m square': 12666, 'x1m square by': 1013755, 'square by 2m': 791468, 'by 2m high': 151624, '2m high onto': 16695, 'high onto the': 395205, 'onto the floor': 611681, 'floor to get': 310849, 'to get one': 906548, 'get one product': 347705, 'one product off': 606925, 'product off the': 681458, 'off the bottom': 594233, 'bottom of the': 136420, 'of the cage': 590842, 'the cage because': 850269, 'cage because customer': 155166, 'because customer ha': 119014, 'customer ha to': 222424, 'ha to have': 372304, 'to have that': 907321, 'have that item': 382950, 'at can': 98187, '19 19': 4707, 'left for at': 485462, 'for at can': 319515, 'at can be': 98188, 'covid 19 19': 212553, 'emotionally': 273318, 'exhausted': 290146, 'empathic': 273336, 'tapped': 834390, 'ty': 937479, 'emotionally exhausted': 273323, 'exhausted from': 290158, 'and explaining': 62512, 'explaining to': 292192, 'and mom': 67104, 'mom with': 535845, 'with young': 1002174, 'young kid': 1022609, 'kid sorry': 474112, 'know when': 476995, 'more hurt': 539461, 'hurt am': 411543, 'am someone': 50416, 'low empathic': 505263, 'empathic reserve': 273337, 'reserve and': 714032, 'and tapped': 73028, 'tapped out': 834391, 'home ty': 402385, 'emotionally exhausted from': 273324, 'exhausted from work': 290159, 'from work in': 338412, 'store and explaining': 806241, 'and explaining to': 62513, 'explaining to the': 292194, 'elderly and mom': 270579, 'and mom with': 67105, 'mom with young': 535847, 'with young kid': 1002175, 'young kid sorry': 1022610, 'kid sorry we': 474113, 'we are out': 970650, 'out of that': 626849, 'of that and': 590709, 'that and don': 842653, 'and don know': 61634, 'don know when': 253675, 'know when we': 477009, 'when we ll': 984454, 'll get more': 496789, 'get more hurt': 347590, 'more hurt am': 539462, 'hurt am someone': 411544, 'am someone with': 50417, 'someone with low': 784788, 'with low empathic': 999332, 'low empathic reserve': 505264, 'empathic reserve and': 273338, 'reserve and tapped': 714034, 'and tapped out': 73029, 'tapped out please': 834393, 'stay home ty': 797017, 'individualism': 435291, 'britain stockpiling': 140446, 'stockpiling panic': 804041, 'panic reveals': 638491, 'reveals the': 720346, 'nation crisis': 552152, 'crisis of': 217778, 'of individualism': 585136, 'individualism there': 435296, 'there must': 878773, 'be another': 113629, 'another way': 77955, 'way my': 969718, 'my article': 547318, 'vulnerable will': 961257, 'most via': 542856, 'britain stockpiling panic': 140447, 'stockpiling panic reveals': 804043, 'panic reveals the': 638492, 'reveals the nation': 720352, 'the nation crisis': 861224, 'nation crisis of': 552153, 'crisis of individualism': 217785, 'of individualism there': 585137, 'individualism there must': 435297, 'there must be': 878774, 'must be another': 546492, 'be another way': 113634, 'another way my': 77957, 'way my article': 969719, 'my article on': 547323, 'how the most': 408851, 'most vulnerable will': 542900, 'vulnerable will suffer': 961259, 'the most via': 861060, 'most via the': 542857, 'via the uk': 956312, 'bengal': 127192, 'variety': 952555, 'touched': 926590, 'potato price': 666969, 'in west': 430795, 'west bengal': 980463, 'bengal rise': 127203, 'rise by': 722801, 'by 20': 151566, '20 one': 13227, 'the variety': 870643, 'variety which': 952576, 'which were': 986475, 'were selling': 980098, 'selling for': 749251, '15 17': 3639, '17 per': 4375, 'per kg': 650896, 'kg week': 473674, 'ago ha': 38397, 'ha touched': 372346, 'touched 20': 926593, '20 22': 12887, '22 kg': 15216, 'kg in': 473656, 'retail market': 718310, 'market wholesale': 517348, 'of potato': 588270, 'potato have': 666943, 'jumped to': 467952, 'to 13': 899482, '13 per': 3249, 'kg from': 473653, 'from 10': 334159, '10 11': 1227, '11 kg': 2544, 'potato price in': 666970, 'price in west': 674751, 'in west bengal': 430797, 'west bengal rise': 980468, 'bengal rise by': 127204, 'rise by 20': 722802, 'by 20 one': 151573, '20 one of': 13228, 'of the variety': 591584, 'the variety which': 870645, 'variety which were': 952577, 'which were selling': 986479, 'were selling for': 980100, 'selling for 15': 749252, 'for 15 17': 318663, '15 17 per': 3640, '17 per kg': 4376, 'per kg week': 650902, 'kg week ago': 473675, 'week ago ha': 975848, 'ago ha touched': 38399, 'ha touched 20': 372347, 'touched 20 22': 926594, '20 22 kg': 12888, '22 kg in': 15217, 'kg in some': 473658, 'in some retail': 428100, 'some retail market': 783759, 'retail market wholesale': 718313, 'market wholesale price': 517349, 'wholesale price of': 990476, 'price of potato': 675538, 'of potato have': 588273, 'potato have jumped': 666944, 'have jumped to': 381194, 'jumped to 13': 467953, 'to 13 per': 899487, '13 per kg': 3250, 'per kg from': 650899, 'kg from 10': 473654, 'from 10 11': 334160, '10 11 kg': 1228, '11 kg week': 2545, 'boycottvodafone': 137400, 'list increasing': 494366, 'pandemic imagine': 635682, 'imagine profiteering': 416769, 'from boycottvodafone': 334724, 'add to this': 31525, 'to this list': 917440, 'this list increasing': 888658, 'list increasing their': 494367, 'the pandemic imagine': 862994, 'pandemic imagine profiteering': 635683, 'imagine profiteering from': 416770, 'profiteering from boycottvodafone': 683038, 'freelancer': 332440, 'contractor': 201810, 'loophole': 503162, 'ifs': 415650, '2m freelancer': 16690, 'freelancer and': 332441, 'and contractor': 60507, 'contractor could': 201813, 'could miss': 209412, 'on crucial': 600173, 'crucial income': 219453, 'income support': 432461, 'support because': 826381, 'of loophole': 586011, 'loophole in': 503163, 'govt rescue': 361263, 'rescue package': 713628, 'package the': 633418, 'the ifs': 857858, 'ifs ha': 415651, 'warned the': 967032, 'the scheme': 866482, 'scheme isn': 741570, 'isn comprehensive': 454464, 'comprehensive enough': 192634, 'enough explains': 277373, 'explains how': 292208, 'how and': 407359, 'why here': 991065, '2m freelancer and': 16691, 'freelancer and contractor': 332443, 'and contractor could': 60508, 'contractor could miss': 201814, 'could miss out': 209414, 'miss out on': 534176, 'out on crucial': 626901, 'on crucial income': 600174, 'crucial income support': 219454, 'income support because': 432463, 'support because of': 826382, 'because of loophole': 119369, 'of loophole in': 586012, 'loophole in the': 503164, 'in the govt': 429239, 'the govt rescue': 856673, 'govt rescue package': 361264, 'rescue package the': 713630, 'package the ifs': 633421, 'the ifs ha': 857859, 'ifs ha warned': 415652, 'ha warned the': 372458, 'warned the scheme': 967035, 'the scheme isn': 866483, 'scheme isn comprehensive': 741571, 'isn comprehensive enough': 454465, 'comprehensive enough explains': 192635, 'enough explains how': 277374, 'explains how and': 292210, 'how and why': 407365, 'and why here': 75626, 'aiding': 39513, 'shadab': 754324, 'amidst do': 52790, 'of sending': 589502, 'sending out': 750067, 'out precautionary': 627061, 'precautionary message': 669433, 'message and': 529261, 'all sort': 44393, 'of aid': 579854, 'aid that': 39460, 'can provide': 159328, 'provide to': 686520, 'panic through': 638711, 'through disinfecting': 894431, 'disinfecting source': 245874, 'source could': 786466, 'helping word': 391547, 'word aiding': 1004444, 'aiding connection': 39514, 'connection like': 194707, 'like clean': 490013, 'clean food': 180529, 'medical resource': 526365, 'resource shadab': 714874, 'amidst do not': 52791, 'not be afraid': 568351, 'be afraid of': 113525, 'afraid of sending': 35004, 'of sending out': 589505, 'sending out precautionary': 750071, 'out precautionary message': 627062, 'precautionary message and': 669434, 'message and all': 529262, 'and all sort': 57892, 'all sort of': 44394, 'sort of aid': 786116, 'of aid that': 579856, 'aid that you': 39461, 'that you can': 847715, 'you can provide': 1017755, 'can provide to': 159334, 'provide to help': 686521, 'help people around': 390285, 'people around the': 647144, 'world to not': 1010085, 'to not panic': 910702, 'not panic through': 570942, 'panic through disinfecting': 638712, 'through disinfecting source': 894432, 'disinfecting source could': 245875, 'source could be': 786467, 'could be helping': 208877, 'be helping word': 115220, 'helping word aiding': 391548, 'word aiding connection': 1004445, 'aiding connection like': 39515, 'connection like clean': 194708, 'like clean food': 490014, 'clean food and': 180531, 'food and medical': 313281, 'and medical resource': 66882, 'medical resource shadab': 526367, 'raunheim': 697902, 'hessen': 394289, 'impression': 419460, 'germany raunheim': 346344, 'raunheim hessen': 697903, 'hessen in': 394290, 'in raunheim': 427265, 'hessen man': 394292, 'man 47': 511963, '47 had': 19255, 'the impression': 857992, 'impression that': 419472, 'the distance': 853414, 'between him': 128795, 'him and': 396535, 'and two': 74548, 'two other': 937108, 'other customer': 620054, 'checkout area': 174884, 'area wa': 92252, 'wa too': 963549, 'too small': 925067, 'germany raunheim hessen': 346345, 'raunheim hessen in': 697904, 'hessen in supermarket': 394291, 'supermarket in raunheim': 820965, 'in raunheim hessen': 427266, 'raunheim hessen man': 697905, 'hessen man 47': 394293, 'man 47 had': 511964, '47 had the': 19256, 'had the impression': 373619, 'the impression that': 857995, 'impression that the': 419474, 'that the distance': 846706, 'the distance between': 853418, 'distance between him': 246664, 'between him and': 128796, 'him and two': 396544, 'and two other': 74554, 'two other customer': 937109, 'other customer in': 620061, 'customer in the': 222510, 'in the checkout': 429068, 'the checkout area': 850756, 'checkout area wa': 174885, 'area wa too': 92253, 'wa too small': 963556, 'granada': 361853, 'in granada': 423402, 'granada completely': 361854, 'completely unreal': 192370, 'unreal 19': 943288, 'is the queue': 452911, 'the supermarket in': 868642, 'supermarket in granada': 820905, 'in granada completely': 423403, 'granada completely unreal': 361855, 'completely unreal 19': 192371, 'difficulty': 242361, 'hello nigerian': 389199, 'nigerian how': 562857, 'you market': 1019785, 'market raising': 516928, 'raising food': 696082, 'price etc': 673706, 'etc you': 282915, 'causing corruption': 168014, 'corruption and': 207689, 'and difficulty': 61350, 'difficulty in': 242384, 'country please': 210959, 'excuse we': 289792, 'government help': 360191, 'help ourselves': 390240, 'ourselves we': 625502, 'we help': 972010, 'and yourself': 76105, 'yourself thank': 1026713, 'hello nigerian how': 389200, 'nigerian how do': 562858, 'do you market': 250646, 'you market raising': 1019786, 'market raising food': 516929, 'raising food price': 696083, 'food price etc': 315938, 'price etc you': 673709, 'etc you are': 282916, 'you are causing': 1017084, 'are causing corruption': 85202, 'causing corruption and': 168015, 'corruption and difficulty': 207690, 'and difficulty in': 61352, 'difficulty in the': 242388, 'the country please': 852129, 'country please let': 210960, 'please let not': 660184, 'let not use': 486946, 'not use an': 572354, 'use an excuse': 949038, 'an excuse we': 55937, 'excuse we do': 289793, 'do the government': 250245, 'the government help': 856546, 'government help ourselves': 360192, 'help ourselves we': 390241, 'ourselves we help': 625503, 'we help the': 972013, 'help the government': 390653, 'government and yourself': 359880, 'and yourself thank': 76108, 'yourself thank you': 1026714, 'grocery store will': 365956, 'store will survive': 811349, 'infosec': 438153, 'doing infosec': 252470, 'is doing infosec': 447280, 'are carrying': 85183, 'carrying this': 165220, 'country on': 210935, 'their shoulder': 874728, 'shoulder it': 766696, 'worker it': 1007245, 'it grocery': 458351, 'it truck': 461860, 'the that are': 869364, 'that are carrying': 842725, 'are carrying this': 85187, 'carrying this country': 165221, 'this country on': 886963, 'country on their': 210938, 'on their shoulder': 604507, 'their shoulder it': 874729, 'shoulder it retail': 766697, 'it retail worker': 460752, 'retail worker it': 718893, 'worker it grocery': 1007246, 'it grocery store': 458355, 'store worker it': 811531, 'worker it truck': 1007254, 'it truck driver': 461861, 'from ruby': 337131, 'ruby tuesday': 727022, 'tuesday saying': 935178, 'be selling': 117070, 'selling restaurant': 749425, 'restaurant staple': 716710, 'staple like': 793968, 'like meat': 490766, 'drink that': 258883, 'take home': 832201, 'have milk': 381468, 'milk by': 531615, 'the gallon': 856111, 'gallon fresh': 343007, 'meat veggie': 525793, 'veggie dessert': 954178, 'dessert smart': 238947, 'smart idea': 775383, 'email from ruby': 272193, 'from ruby tuesday': 337132, 'ruby tuesday saying': 727023, 'tuesday saying they': 935179, 'saying they ll': 739727, 'they ll be': 882585, 'll be selling': 496625, 'be selling restaurant': 117074, 'selling restaurant staple': 749426, 'restaurant staple like': 716711, 'staple like meat': 793970, 'like meat and': 490767, 'meat and drink': 525473, 'and drink that': 61733, 'drink that you': 258885, 'that you take': 847747, 'you take home': 1021510, 'take home instead': 832204, 'instead of having': 440271, 'for some item': 325746, 'some item they': 783153, 'item they have': 463724, 'they have milk': 882344, 'have milk by': 381470, 'milk by the': 531616, 'by the gallon': 154332, 'the gallon fresh': 856113, 'gallon fresh meat': 343008, 'fresh meat veggie': 333033, 'meat veggie dessert': 525794, 'veggie dessert smart': 954179, 'dessert smart idea': 238948, 'jacket': 464154, 'time time': 897933, 'do unnecessary': 250431, 'unnecessary online': 942916, 'shopping clothes': 762372, 'clothes household': 184165, 'item etc': 463239, 'etc think': 282819, 'driver delivering': 259500, '100 home': 1918, 'not put': 571172, 'risk for': 723535, 'new jacket': 558954, 'jacket leave': 464157, 'leave them': 484986, 'deliver essential': 233115, 'not see this': 571489, 'see this time': 745958, 'this time time': 890702, 'time time to': 897935, 'time to do': 897979, 'to do unnecessary': 904577, 'do unnecessary online': 250432, 'unnecessary online shopping': 942917, 'online shopping clothes': 609073, 'shopping clothes household': 762373, 'clothes household item': 184166, 'household item etc': 406863, 'item etc think': 463240, 'etc think of': 282820, 'think of the': 885462, 'of the delivery': 590940, 'delivery driver delivering': 233898, 'driver delivering to': 259502, 'delivering to over': 233558, 'to over 100': 911285, 'over 100 home': 629768, '100 home day': 1919, 'home day do': 400989, 'day do not': 227528, 'do not put': 249808, 'not put them': 571178, 'at risk for': 100360, 'risk for the': 723561, 'sake of new': 731868, 'of new jacket': 586971, 'new jacket leave': 558955, 'jacket leave them': 464158, 'leave them to': 484988, 'them to deliver': 876467, 'to deliver essential': 904097, 'cabinet': 154973, 'fond': 312989, 'wantonly': 966318, 'liable': 487954, 'breaching': 138366, 'smes': 775640, 'informal': 437679, 'cushioning': 221923, 'cabinet official': 154992, 'said government': 731090, 'not consider': 568829, 'consider application': 194954, 'application from': 82459, 'business which': 144658, 'are fond': 86630, 'fond of': 312992, 'of wantonly': 592902, 'wantonly increasing': 966319, 'commodity including': 189196, 'including those': 432201, 'are found': 86664, 'found liable': 330277, 'liable of': 487958, 'of breaching': 580830, 'breaching the': 138375, 'lockdown guideline': 499437, 'guideline under': 368492, 'under it': 940143, 'it smes': 461095, 'smes and': 775641, 'and informal': 65215, 'informal sector': 437688, 'sector cushioning': 744154, 'cushioning fund': 221924, 'cabinet official said': 154993, 'official said government': 595899, 'said government will': 731091, 'government will not': 360816, 'will not consider': 994201, 'not consider application': 568830, 'consider application from': 194955, 'application from business': 82460, 'from business which': 334758, 'business which are': 144659, 'which are fond': 985681, 'are fond of': 86631, 'fond of wantonly': 312993, 'of wantonly increasing': 592903, 'wantonly increasing price': 966320, 'increasing price of': 433677, 'of commodity including': 581575, 'commodity including those': 189198, 'including those that': 432204, 'that are found': 842753, 'are found liable': 86665, 'found liable of': 330278, 'liable of breaching': 487959, 'of breaching the': 580832, 'breaching the covid': 138376, '19 lockdown guideline': 8388, 'lockdown guideline under': 499439, 'guideline under it': 368493, 'under it smes': 940145, 'it smes and': 461096, 'smes and informal': 775642, 'and informal sector': 65217, 'informal sector cushioning': 437689, 'sector cushioning fund': 744155, 'recent global': 703906, 'global economic': 351878, 'economic challenge': 266998, 'challenge resulting': 171544, 'falling crude': 297225, 'price governor': 674352, 'governor ha': 360905, 'announced series': 77027, 'of measure': 586368, 'the recent global': 865310, 'recent global economic': 703907, 'global economic challenge': 351880, 'economic challenge resulting': 267001, 'challenge resulting from': 171545, 'resulting from the': 717696, 'pandemic and falling': 634876, 'and falling crude': 62638, 'falling crude oil': 297226, 'oil price governor': 597154, 'price governor ha': 674353, 'governor ha announced': 360906, 'ha announced series': 369564, 'announced series of': 77028, 'series of measure': 751273, 'of measure to': 586370, 'measure to mitigate': 525399, 'oahu': 578252, 'islandlife': 454332, 'hawaii': 384443, 'hog': 399828, 'pig': 656432, 'hawaiianislands': 384467, 'they heard': 882419, 'the island': 858551, 'island of': 454300, 'of oahu': 587131, 'oahu is': 578253, 'is shutting': 451907, 'and wanted': 75169, 'don blame': 253391, 'blame them': 132308, 'them chinavirus': 875531, 'chinavirus grocery': 177158, 'grocery islandlife': 364643, 'islandlife hawaii': 454333, 'hawaii hog': 384452, 'hog pig': 399836, 'pig hawaiianislands': 656447, 'they heard the': 882421, 'heard the island': 388149, 'the island of': 858552, 'island of oahu': 454302, 'of oahu is': 587132, 'oahu is shutting': 578254, 'is shutting down': 451910, 'shutting down and': 768253, 'down and wanted': 256523, 'and wanted to': 75172, 'wanted to stock': 966275, 'on food don': 600856, 'food don blame': 314261, 'don blame them': 253393, 'blame them chinavirus': 132309, 'them chinavirus grocery': 875532, 'chinavirus grocery islandlife': 177159, 'grocery islandlife hawaii': 364644, 'islandlife hawaii hog': 454334, 'hawaii hog pig': 384453, 'hog pig hawaiianislands': 399837, 'enrollment': 277845, 'aca': 27755, 'cobra': 185172, 'you considering': 1018020, 'considering re': 195401, 're opening': 699212, 'opening enrollment': 612826, 'enrollment for': 277846, 'for aca': 318989, 'aca health': 27758, 'health plan': 386738, 'help laid': 389985, 'off worker': 594419, 'pay cobra': 644811, 'cobra price': 185173, 'have health': 380906, 'care during': 163913, 'pandemic healthcare': 635604, 'healthcare obamacare': 387194, 'are you considering': 91778, 'you considering re': 1018021, 'considering re opening': 195402, 're opening enrollment': 699213, 'opening enrollment for': 612827, 'enrollment for aca': 277847, 'for aca health': 318990, 'aca health plan': 27759, 'health plan this': 386742, 'plan this would': 658261, 'this would help': 891539, 'would help laid': 1011910, 'help laid off': 389986, 'laid off worker': 479036, 'off worker so': 594425, 'worker so they': 1007793, 'so they do': 778468, 'have to pay': 383262, 'to pay cobra': 911522, 'pay cobra price': 644812, 'cobra price to': 185174, 'price to have': 676997, 'to have health': 907250, 'have health care': 380907, 'health care during': 386228, 'care during pandemic': 163914, 'during pandemic healthcare': 262871, 'pandemic healthcare obamacare': 635605, 'undoubtably': 941037, 'regulator': 708136, 'are many': 88024, 'many company': 513914, 'company listed': 190853, 'listed on': 494633, 'on various': 605020, 'various stock': 952647, 'market pushing': 516923, 'pushing false': 690414, 'false story': 297462, 'about finding': 25238, 'finding cure': 307452, 'or vaccine': 617636, 'vaccine simply': 951767, 'simply to': 770304, 'to push': 912565, 'push their': 690326, 'their share': 874670, 'up ve': 946515, 've identified': 953271, 'identified few': 413330, 'of undoubtably': 592620, 'undoubtably many': 941038, 'many medium': 514273, 'medium need': 527180, 'this or': 889283, 'or regulator': 616830, 'regulator need': 708147, 'there are many': 878124, 'are many company': 88025, 'many company listed': 513919, 'company listed on': 190855, 'listed on various': 494637, 'on various stock': 605023, 'various stock market': 952648, 'stock market pushing': 802426, 'market pushing false': 516924, 'pushing false story': 690415, 'false story about': 297463, 'story about finding': 811885, 'about finding cure': 25239, 'finding cure or': 307454, 'cure or vaccine': 220788, 'or vaccine simply': 617639, 'vaccine simply to': 951768, 'simply to push': 770307, 'to push their': 912573, 'push their share': 690328, 'their share price': 874673, 'share price up': 755188, 'price up ve': 677267, 'up ve identified': 946518, 've identified few': 953272, 'identified few of': 413331, 'few of undoubtably': 303962, 'of undoubtably many': 592621, 'undoubtably many medium': 941039, 'many medium need': 514274, 'medium need to': 527181, 'to stop doing': 915517, 'stop doing this': 804620, 'doing this or': 252768, 'this or regulator': 889288, 'or regulator need': 616831, 'regulator need to': 708148, 'swarming': 830000, 'uklockdownnow so': 939022, 'only allowed': 610059, 'essential guarantee': 281111, 'guarantee that': 367717, 'fucking vulture': 340051, 'vulture all': 961287, 'all swarming': 44581, 'swarming there': 830003, 'there in': 878503, 'their 100': 872414, '100 at': 1840, 'time how': 896952, 'that gonna': 844039, 'be controlled': 114225, 'controlled if': 202240, 'they claim': 881756, 'to he': 907353, 'he there': 385516, 'essential reason': 281446, 'uklockdownnow so people': 939023, 'so people are': 777993, 'people are only': 647033, 'are only allowed': 88760, 'only allowed to': 610063, 'supermarket for essential': 820394, 'for essential guarantee': 321105, 'essential guarantee that': 281112, 'guarantee that will': 367720, 'that will not': 847595, 'will not stop': 994275, 'not stop the': 571759, 'stop the fucking': 805132, 'the fucking vulture': 855992, 'fucking vulture all': 340052, 'vulture all swarming': 961288, 'all swarming there': 44582, 'swarming there in': 830004, 'there in their': 878509, 'in their 100': 429707, 'their 100 at': 872415, '100 at opening': 1841, 'opening time how': 612925, 'time how is': 896954, 'is that gonna': 452651, 'that gonna be': 844040, 'gonna be controlled': 356467, 'be controlled if': 114228, 'controlled if they': 202242, 'if they claim': 415101, 'they claim to': 881759, 'claim to he': 179850, 'to he there': 907355, 'he there for': 385517, 'there for an': 878403, 'for an essential': 319286, 'an essential reason': 55830, 'lettuce': 487452, 'seal': 743175, 'tip at': 898713, 'supermarket grab': 820558, 'grab plastic': 361523, 'plastic produce': 658871, 'produce bag': 680202, 'bag put': 108392, 'hand inside': 375047, 'inside and': 439216, 'up something': 946042, 'something like': 784962, 'like head': 490402, 'head of': 385764, 'of lettuce': 585792, 'lettuce then': 487462, 'then drop': 877139, 'drop it': 260283, 'into another': 442403, 'another bag': 77508, 'bag and': 108215, 'and seal': 71101, 'seal it': 743178, 'up this': 946276, 'not touching': 572237, 'touching everyone': 926671, 'else produce': 271846, 'produce sanitize': 680424, 'sanitize shopping': 734210, 'food shopping tip': 316541, 'shopping tip at': 764155, 'tip at supermarket': 898715, 'at supermarket grab': 100728, 'supermarket grab plastic': 820560, 'grab plastic produce': 361524, 'plastic produce bag': 658872, 'produce bag put': 680204, 'bag put their': 108394, 'put their hand': 690877, 'their hand inside': 873478, 'hand inside and': 375048, 'inside and use': 439224, 'and use that': 74785, 'use that to': 949647, 'that to pick': 847060, 'pick up something': 655763, 'up something like': 946043, 'something like head': 784963, 'like head of': 490403, 'head of lettuce': 385772, 'of lettuce then': 585794, 'lettuce then drop': 487463, 'then drop it': 877140, 'drop it into': 260285, 'it into another': 458822, 'into another bag': 442404, 'another bag and': 77509, 'bag and seal': 108224, 'and seal it': 71103, 'seal it up': 743179, 'it up this': 461970, 'up this way': 946285, 'this way you': 891140, 'way you re': 970205, 're not touching': 699127, 'not touching everyone': 572238, 'touching everyone else': 926672, 'everyone else produce': 286875, 'else produce sanitize': 271847, 'produce sanitize shopping': 680425, 'sanitize shopping cart': 734211, 'thinker': 885830, 'pandamonium': 634730, 'norespect': 567021, 'gainesville': 342867, 'you pre': 1020402, 'pre thinker': 669212, 'thinker you': 885831, 'all feel': 42769, 'feel smart': 302851, 'smart because': 775348, 'got ahead': 358387, 'ready good': 700884, 'good good': 357135, 'you pandamonium': 1020278, 'pandamonium norespect': 634731, 'norespect nofood': 567022, 'nofood gainesville': 566148, 'gainesville georgia': 342871, 'you pre thinker': 1020403, 'pre thinker you': 669213, 'thinker you all': 885832, 'you all feel': 1016876, 'all feel smart': 42771, 'feel smart because': 302852, 'smart because you': 775349, 'because you got': 119868, 'you got ahead': 1018893, 'got ahead of': 358388, 'ahead of the': 39193, 'pandemic you are': 637089, 'you are ready': 1017212, 'are ready good': 89460, 'ready good good': 700885, 'good good for': 357137, 'good for you': 357096, 'for you pandamonium': 328079, 'you pandamonium norespect': 1020279, 'pandamonium norespect nofood': 634732, 'norespect nofood gainesville': 567023, 'nofood gainesville georgia': 566149, 'out an': 625626, 'update list': 947058, 'list here': 494350, 'here chamber': 392855, 'chamber member': 171668, 'member want': 528231, 'be included': 115452, 'included on': 431695, 'list or': 494505, 'or need': 616226, 'your communication': 1023264, 'communication on': 189625, 'medium fill': 527101, 'this survey': 890453, 'check out an': 174535, 'out an update': 625639, 'an update list': 56926, 'update list here': 947059, 'list here chamber': 494353, 'here chamber member': 392856, 'chamber member want': 171669, 'member want to': 528232, 'to be included': 901331, 'be included on': 115454, 'included on this': 431697, 'this list or': 888661, 'list or need': 494506, 'or need to': 616229, 'need to share': 556066, 'to share your': 914374, 'share your communication': 755371, 'your communication on': 1023265, 'communication on social': 189626, 'social medium fill': 779852, 'medium fill out': 527102, 'fill out this': 305483, 'out this survey': 627588, 'landed': 479312, 'toiletpaper went': 922825, 'went like': 979060, 'like hot': 490451, 'hot cake': 404994, 'cake when': 155263, 'when first': 983426, 'first landed': 308752, 'landed on': 479315, 'scene but': 741314, 'but why': 147856, 'not back': 568314, 'back someone': 107279, 'someone educate': 784441, 'educate me': 268757, 'understand that toiletpaper': 940738, 'that toiletpaper went': 847084, 'toiletpaper went like': 922826, 'went like hot': 979061, 'like hot cake': 490452, 'hot cake when': 404995, 'cake when first': 155264, 'when first landed': 983427, 'first landed on': 308753, 'landed on the': 479316, 'on the scene': 604345, 'the scene but': 866463, 'scene but why': 741315, 'but why is': 147861, 'is it not': 449042, 'it not back': 459860, 'not back someone': 568315, 'back someone educate': 107280, 'someone educate me': 784442, 'educate me please': 268758, 'not great': 569742, 'great not': 362851, 'thought you': 893334, 'you be': 1017387, 'be spring': 117339, 'spring come': 791189, 'come but': 187252, 'work get': 1005207, 'and ask': 58424, 'for job': 322766, 'job they': 466196, 'll take': 497058, 'take you': 832810, 'you on': 1020187, 'll earn': 496726, 'earn whilst': 264819, 'whilst assist': 987609, 'assist the': 96642, 'nation fightcovid19': 552176, 'fightcovid19 keepsafe': 304993, 'it not great': 459883, 'not great not': 569746, 'great not where': 362852, 'not where you': 572497, 'where you thought': 985398, 'you thought you': 1021722, 'thought you be': 893335, 'you be spring': 1017400, 'be spring come': 117340, 'spring come but': 791190, 'come but if': 187253, 'of work get': 593251, 'work get to': 1005210, 'supermarket and ask': 818933, 'and ask for': 58427, 'ask for job': 95528, 'for job they': 322767, 'job they ll': 466202, 'they ll take': 882615, 'll take you': 497064, 'take you on': 832811, 'you on and': 1020188, 'on and you': 599382, 'you ll earn': 1019647, 'll earn whilst': 496728, 'earn whilst assist': 264820, 'whilst assist the': 987610, 'assist the nation': 96644, 'the nation fightcovid19': 861231, 'nation fightcovid19 keepsafe': 552177, 'ikea temporarily': 416058, 'temporarily closing': 837473, 'closing brick': 183601, 'mortar online': 541821, 'shopping click': 762368, 'collect limited': 186297, 'limited home': 492642, 'delivery still': 234576, 'available an': 104217, 'our response': 624621, 'ikea temporarily closing': 416059, 'temporarily closing brick': 837475, 'closing brick mortar': 183602, 'brick mortar online': 139589, 'mortar online shopping': 541822, 'online shopping click': 609072, 'shopping click collect': 762369, 'click collect limited': 181897, 'collect limited home': 186298, 'limited home delivery': 492643, 'home delivery still': 401048, 'delivery still available': 234577, 'still available an': 800220, 'available an update': 104219, 'on our response': 602624, 'our response to': 624622, 'stuffccedoes': 815270, 'paper tube': 641032, 'tube seed': 935045, 'seed starting': 746172, 'starting an': 794938, 'an easy': 55556, 'easy at': 265658, 'home activity': 400554, 'activity for': 30425, 'family stuffccedoes': 298266, 'stuffccedoes garden': 815271, 'garden seed': 343621, 'seed quarantine': 746162, 'quarantine toiletpaper': 692643, 'paper tube seed': 641033, 'tube seed starting': 935046, 'seed starting an': 746173, 'starting an easy': 794939, 'an easy at': 55557, 'easy at home': 265659, 'at home activity': 98931, 'home activity for': 400555, 'activity for the': 30428, 'for the whole': 326780, 'whole family stuffccedoes': 990204, 'family stuffccedoes garden': 298267, 'stuffccedoes garden seed': 815272, 'garden seed quarantine': 343622, 'seed quarantine toiletpaper': 746163, 'hofmann': 399825, 'hofmann sausage': 399826, 'sausage company': 737403, 'company donates': 190608, 'donates food': 254389, 'hofmann sausage company': 399827, 'sausage company donates': 737404, 'company donates food': 190609, 'donates food to': 254390, 'food to help': 317262, 'to help during': 907498, 'great video': 363094, 'video feel': 956724, 'my kitchen': 548961, 'kitchen is': 475719, 'is clean': 446540, 'clean and': 180454, 'family even': 297765, 'even after': 283807, 'store psa': 809699, 'psa safe': 687428, 'safe grocery': 729723, 'pandemic updated': 636881, 'updated via': 947457, 'great video feel': 363095, 'video feel like': 956725, 'feel like my': 302731, 'like my kitchen': 490824, 'my kitchen is': 548963, 'kitchen is clean': 475721, 'is clean and': 446541, 'clean and safe': 180466, 'and safe for': 70711, 'safe for my': 729680, 'my family even': 548194, 'family even after': 297766, 'even after the': 283819, 'grocery store psa': 365689, 'store psa safe': 809700, 'psa safe grocery': 687429, 'safe grocery shopping': 729724, 'grocery shopping in': 365039, 'shopping in covid': 762958, '19 pandemic updated': 9513, 'pandemic updated via': 636882, 'containment': 200595, 'ramp': 696431, 'metropolitan': 529963, 'confidence plunge': 193933, 'plunge containment': 661425, 'containment measure': 200602, 'measure ramp': 525302, 'ramp up': 696434, 'up daily': 944687, 'daily commentary': 224550, 'curve team': 221898, 'team consumer': 835615, 'up 25th': 944145, '25th of': 16108, 'continues through': 201453, 'the metropolitan': 860554, 'consumer confidence plunge': 196913, 'confidence plunge containment': 193936, 'plunge containment measure': 661426, 'containment measure ramp': 200606, 'measure ramp up': 525303, 'ramp up daily': 696438, 'up daily commentary': 944688, 'daily commentary by': 224551, 'commentary by the': 188478, 'by the curve': 154302, 'the curve team': 852706, 'curve team consumer': 221899, 'team consumer confidence': 835616, 'ramp up 25th': 696435, 'up 25th of': 944146, '25th of march': 16109, 'of march 2020': 586196, '2020 the spread': 14643, '19 virus continues': 11792, 'virus continues through': 958079, 'continues through the': 201454, 'through the metropolitan': 894749, 'malaysia is': 511614, 'key source': 473394, 'commodity for': 189179, 'for singapore': 325632, 'singapore which': 771164, 'which import': 985945, 'import more': 418645, 'than 90': 840307, 'malaysia is key': 511617, 'is key source': 449188, 'key source of': 473395, 'source of commodity': 786518, 'of commodity for': 581571, 'commodity for singapore': 189180, 'for singapore which': 325633, 'singapore which import': 771165, 'which import more': 985946, 'import more than': 418646, 'more than 90': 540584, 'than 90 of': 840308, '90 of it': 23316, 'of it food': 585394, 'it food product': 458056, 'singalong': 771091, 'week singalong': 976881, 'singalong is': 771092, 'our super': 625000, 'super supermarket': 818597, 'this week singalong': 891265, 'week singalong is': 976882, 'singalong is for': 771093, 'is for our': 447887, 'for our super': 324299, 'our super supermarket': 625002, 'super supermarket worker': 818599, 'photo show': 655241, 'travel across': 930231, 'aisle 19': 40183, 'photo show how': 655242, 'single cough can': 771265, 'can travel across': 160034, 'travel across supermarket': 930233, 'across supermarket aisle': 29465, 'supermarket aisle 19': 818829, 'finally had': 306035, 'supermarket omg': 821718, 'omg so': 598910, 'far foot': 298776, 'foot is': 318394, 'is socialdistancing': 452059, 'finally had to': 306036, 'the supermarket omg': 868725, 'supermarket omg so': 821719, 'omg so many': 598911, 'many people there': 514537, 'people there with': 649809, 'there with no': 879369, 'mask no glove': 519009, 'glove no idea': 352807, 'idea how far': 413073, 'how far foot': 407841, 'far foot is': 298777, 'foot is socialdistancing': 318395, 'the bug': 850090, 'bug are': 141892, 'they good': 882218, 'them close': 875533, 'bless the bug': 132594, 'the bug are': 850091, 'bug are they': 141894, 'are they good': 91004, 'they good pet': 882219, 'keep them close': 472105, 'rain': 695729, 'defence': 232087, 'my lovely': 549168, 'lovely husband': 504963, 'husband kindly': 411732, 'kindly took': 475177, 'took this': 925355, 'me standing': 523532, 'queue battling': 693894, 'battling with': 112889, 'with rain': 1000393, 'rain glove': 695740, 'and bag': 58639, 'bag for': 108285, 'life do': 488603, 'realise how': 701593, 'how bat': 407445, 'bat shit': 112552, 'shit crazy': 759084, 'crazy this': 215444, 'this look': 888706, 'look but': 502325, 'my defence': 547970, 'defence wa': 232096, 'only adhering': 610035, 'to guideline': 907075, 'guideline issued': 368442, 'my lovely husband': 549170, 'lovely husband kindly': 504964, 'husband kindly took': 411733, 'kindly took this': 475178, 'took this photo': 925359, 'photo of me': 655205, 'of me standing': 586343, 'me standing in': 523533, 'supermarket queue battling': 822118, 'queue battling with': 693895, 'battling with rain': 112891, 'with rain glove': 1000394, 'rain glove and': 695741, 'glove and bag': 352553, 'and bag for': 58641, 'bag for life': 108287, 'for life do': 322966, 'life do realise': 488605, 'do realise how': 250024, 'realise how bat': 701594, 'how bat shit': 407446, 'bat shit crazy': 112553, 'shit crazy this': 759085, 'crazy this look': 215445, 'this look but': 888709, 'look but in': 502326, 'in my defence': 425561, 'my defence wa': 547972, 'defence wa only': 232097, 'wa only adhering': 962852, 'only adhering to': 610036, 'adhering to guideline': 32236, 'to guideline issued': 907077, 'guideline issued by': 368443, 'issued by the': 456044, 'nurse desperation': 577275, 'desperation panic': 238608, 'buyer clear': 149610, 'clear shelf': 181313, 'shelf an': 756714, 'an exhausted': 55943, 'exhausted nurse': 290162, 'ha urged': 372414, 'urged panicked': 948267, 'about other': 25870, 'people after': 646780, 'after finding': 35667, 'finding supermarket': 307545, 'nurse desperation panic': 577276, 'desperation panic buyer': 238609, 'panic buyer clear': 637563, 'buyer clear shelf': 149611, 'clear shelf an': 181314, 'shelf an exhausted': 756716, 'an exhausted nurse': 55945, 'exhausted nurse ha': 290164, 'nurse ha urged': 577351, 'ha urged panicked': 372417, 'urged panicked shopper': 948268, 'panicked shopper to': 639292, 'shopper to think': 761777, 'think about other': 885092, 'about other people': 25872, 'other people after': 620654, 'people after finding': 646782, 'after finding supermarket': 35670, 'finding supermarket shelf': 307546, 'cornwall': 203748, 'begging those': 123490, 'have plan': 381945, 'to cornwall': 903521, 'cornwall to': 203761, 'isolate to': 454929, 'away we': 106094, 'one main': 606631, 'main hospital': 508759, 'that struggle': 846531, 'struggle at': 814334, 'best of': 127791, 'time supermarket': 897783, 'empty please': 275011, 'of cornwall': 581881, 'cornwall and': 203751, 'bit to': 131714, 'begging those who': 123491, 'who have plan': 988945, 'have plan to': 381948, 'plan to come': 658276, 'come to cornwall': 187563, 'to cornwall to': 903522, 'cornwall to self': 203762, 'to self isolate': 914123, 'self isolate to': 747691, 'isolate to please': 454931, 'to please stay': 911821, 'please stay away': 660546, 'stay away we': 796788, 'away we have': 106096, 'we have one': 971883, 'have one main': 381791, 'one main hospital': 606632, 'main hospital that': 508760, 'hospital that struggle': 404673, 'that struggle at': 846532, 'struggle at the': 814335, 'at the best': 100888, 'the best of': 849531, 'best of time': 127800, 'of time supermarket': 592185, 'time supermarket shelf': 897785, 'are empty please': 86164, 'empty please think': 275012, 'people of cornwall': 648914, 'of cornwall and': 581883, 'cornwall and do': 203752, 'and do your': 61571, 'your bit to': 1022975, 'bit to help': 131717, 'here acting': 392658, 'it black': 456884, 'black friday': 132058, 'people out here': 649021, 'out here acting': 626270, 'here acting like': 392659, 'acting like it': 29882, 'like it black': 490525, 'it black friday': 456885, 'black friday for': 132059, 'friday for toilet': 333226, 'lockdown2020': 500193, 'jantacurfew2020': 464605, 'hantavir': 377029, 'yesmanservices': 1015626, 'on corona': 600109, 'virus lockdown': 958465, 'lockdown lockdown2020': 499608, 'lockdown2020 jantacurfew2020': 500194, 'jantacurfew2020 hantavir': 464606, 'hantavir yesmanservices': 377030, 'online shopping on': 609205, 'shopping on corona': 763386, 'on corona virus': 600112, 'corona virus lockdown': 204323, 'virus lockdown lockdown2020': 958466, 'lockdown lockdown2020 jantacurfew2020': 499609, 'lockdown2020 jantacurfew2020 hantavir': 500195, 'jantacurfew2020 hantavir yesmanservices': 464607, 'narendramodi': 551913, 'the rise': 865845, 'rise vegetable': 723055, 'vegetable seller': 954083, 'selling at': 749160, 'at double': 98485, 'price govt': 674354, 'govt need': 361211, 'to takeover': 916268, 'takeover the': 833217, 'essential supply': 281617, 'supply poor': 825719, 'survive like': 829200, 'this stayhomestaysafe': 890317, 'stayhomestaysafe narendramodi': 798520, 'narendramodi ar': 551914, 'buying is on': 150572, 'on the rise': 604337, 'the rise vegetable': 865861, 'rise vegetable seller': 723056, 'vegetable seller are': 954084, 'seller are selling': 748979, 'are selling at': 89950, 'selling at double': 749165, 'at double price': 98486, 'double price govt': 256037, 'price govt need': 674356, 'govt need to': 361212, 'need to takeover': 556099, 'to takeover the': 916269, 'takeover the distribution': 833218, 'the distribution of': 853425, 'distribution of essential': 248173, 'of essential supply': 583189, 'essential supply poor': 281627, 'supply poor people': 825720, 'poor people will': 664258, 'able to survive': 24555, 'to survive like': 916037, 'survive like this': 829201, 'like this stayhomestaysafe': 491534, 'this stayhomestaysafe narendramodi': 890318, 'stayhomestaysafe narendramodi ar': 798521, '09': 1144, 'ringd': 722547, 'shady': 754352, 'pretendingtocare': 671344, 'delivery but': 233759, 'but changing': 145413, 'price overnight': 675819, 'overnight tried': 631366, 'order an': 618020, 'an original': 56715, 'original chicken': 619558, 'chicken sandwich': 175853, 'sandwich meal': 733744, '10pm last': 2376, 'wa 09': 961342, '09 this': 1162, 'morning it': 541318, 'at 09': 97391, '09 medium': 1158, 'medium onion': 527197, 'onion ringd': 607734, 'ringd went': 722548, 'from 29': 334261, '29 to': 16503, '99 shady': 23888, 'shady pretendingtocare': 754353, 'offering free delivery': 595117, 'free delivery but': 331752, 'delivery but changing': 233760, 'but changing price': 145414, 'changing price overnight': 172780, 'price overnight tried': 675821, 'overnight tried to': 631367, 'tried to order': 931838, 'to order an': 911062, 'order an original': 618021, 'an original chicken': 56716, 'original chicken sandwich': 619559, 'chicken sandwich meal': 175854, 'sandwich meal at': 733745, 'meal at 10pm': 524106, 'at 10pm last': 97432, '10pm last night': 2377, 'last night and': 480366, 'night and it': 562942, 'it wa 09': 462052, 'wa 09 this': 961343, '09 this morning': 1163, 'this morning it': 888975, 'morning it at': 541319, 'it at 09': 456608, 'at 09 medium': 97394, '09 medium onion': 1159, 'medium onion ringd': 527198, 'onion ringd went': 607735, 'ringd went from': 722549, 'went from 29': 979012, 'from 29 to': 334263, '29 to 99': 16504, 'to 99 shady': 899891, '99 shady pretendingtocare': 23889, 'needing': 556608, 'my normal': 549506, 'normal anxiety': 567092, 'to amp': 900428, 'amp up': 54761, 'of needing': 586920, 'needing to': 556632, 'do supermarket': 250191, 'by myself': 153292, 'myself let': 550902, 'alone adding': 46806, 'adding the': 31701, 'anxiety to': 78806, 'my normal anxiety': 549507, 'normal anxiety and': 567093, 'anxiety and panic': 78655, 'and panic is': 68656, 'panic is starting': 638224, 'starting to amp': 795012, 'to amp up': 900432, 'amp up at': 54762, 'up at the': 944440, 'at the thought': 101121, 'thought of needing': 893145, 'of needing to': 586921, 'needing to do': 556634, 'to do supermarket': 904564, 'do supermarket run': 250193, 'supermarket run by': 822270, 'run by myself': 727594, 'by myself let': 153293, 'myself let alone': 550903, 'let alone adding': 486579, 'alone adding the': 46807, 'adding the covid': 31702, '19 anxiety to': 5163, 'anxiety to it': 78807, 'vi': 955766, 'ikoyi': 416064, 'marina': 515742, 'unlimited': 942771, 'healthylifestyle': 387846, 'doculandnigeria': 251187, 'safe buy': 729528, 'sanitizers hand': 736294, 'wash in': 967506, 'our branch': 622252, 'branch in': 137678, 'in vi': 430575, 'vi ikoyi': 955767, 'ikoyi marina': 416065, 'marina and': 515743, 'and abuja': 57568, 'abuja cheaper': 27572, 'cheaper price': 174264, 'price unlimited': 677207, 'unlimited quantity': 942789, 'quantity printing': 691954, 'printing healthylifestyle': 678342, 'healthylifestyle health': 387847, 'health handwash': 386477, 'handwash handsanitizer': 376772, 'handsanitizer lagos': 376566, 'lagos abuja': 478918, 'abuja doculandnigeria': 27576, 'stay safe buy': 797216, 'safe buy hand': 729529, 'buy hand sanitizers': 148772, 'hand sanitizers hand': 375698, 'sanitizers hand wash': 736296, 'hand wash in': 375927, 'wash in our': 967507, 'in our branch': 426266, 'our branch in': 622254, 'branch in vi': 137680, 'in vi ikoyi': 430576, 'vi ikoyi marina': 955768, 'ikoyi marina and': 416066, 'marina and abuja': 515744, 'and abuja cheaper': 57570, 'abuja cheaper price': 27573, 'cheaper price unlimited': 174266, 'price unlimited quantity': 677208, 'unlimited quantity printing': 942791, 'quantity printing healthylifestyle': 691955, 'printing healthylifestyle health': 678343, 'healthylifestyle health handwash': 387848, 'health handwash handsanitizer': 386478, 'handwash handsanitizer lagos': 376773, 'handsanitizer lagos abuja': 376567, 'lagos abuja doculandnigeria': 478919, '19de': 12519, 'in man': 425023, 'man is': 512119, 'is totally': 453301, 'totally freaking': 926336, 'supermarket 19de': 818739, 'in man is': 425024, 'man is totally': 512124, 'is totally freaking': 453304, 'totally freaking out': 926337, 'freaking out in': 331546, 'out in the': 626401, 'the supermarket 19de': 868440, 'that decided': 843461, 'protect older': 684879, 'older and': 598573, 'vulnerable customer': 960920, 'to supermarket that': 915844, 'supermarket that decided': 823183, 'that decided to': 843462, 'decided to protect': 230928, 'to protect older': 912318, 'protect older and': 684880, 'older and vulnerable': 598576, 'and vulnerable customer': 75050, 'racking': 695366, 'pandemic highlight': 635629, 'highlight the': 395964, 'top pot': 925665, 'pot producer': 666893, 'producer even': 680608, 'even before': 283867, 'pot company': 666880, 'company were': 191296, 'were racking': 980018, 'racking up': 695369, 'up lot': 945349, 'sale growth': 732250, 'and ample': 58093, 'ample cash': 54878, 'cash flow': 166226, 'flow given': 311233, 'market potential': 516870, 'potential and': 667016, 'low share': 505598, 'main player': 508789, 'player look': 659318, 'like bargain': 489874, 'the pandemic highlight': 862989, 'pandemic highlight the': 635631, 'highlight the top': 395976, 'the top pot': 869790, 'top pot producer': 925667, 'pot producer even': 666894, 'producer even before': 680609, 'even before covid': 283871, '19 hit the': 7550, 'hit the top': 398451, 'top pot company': 925666, 'pot company were': 666881, 'company were racking': 191298, 'were racking up': 980019, 'racking up lot': 695371, 'up lot of': 945350, 'lot of sale': 504273, 'of sale growth': 589245, 'sale growth and': 732251, 'growth and ample': 367340, 'and ample cash': 58094, 'ample cash flow': 54879, 'cash flow given': 166228, 'flow given the': 311234, 'given the market': 351142, 'the market potential': 860142, 'market potential and': 516871, 'potential and the': 667017, 'and the low': 73463, 'the low share': 859784, 'low share price': 505599, 'share price the': 755185, 'price the main': 676846, 'the main player': 859908, 'main player look': 508790, 'player look like': 659319, 'look like bargain': 502462, 'understanding the covid': 940890, '19 effect on': 6725, 'effect on online': 269089, 'relax stay': 708826, 'calm the': 156810, 'the majority': 859940, 'are mild': 88076, 'mild most': 531334, 'people recover': 649254, 'recover especially': 705172, 'especially if': 280506, 'healthy young': 387819, 'young person': 1022652, 'person the': 652639, 'best thing': 127924, 'keep others': 471720, 'others safe': 621623, 'safe is': 729782, 'love you': 504883, 'relax stay calm': 708828, 'stay calm the': 796817, 'calm the majority': 156812, 'the majority of': 859946, 'majority of case': 509552, 'of case are': 581165, 'case are mild': 165642, 'are mild most': 88077, 'mild most people': 531335, 'most people recover': 542625, 'people recover especially': 649255, 'recover especially if': 705173, 'especially if you': 280512, 'are healthy young': 87069, 'healthy young person': 387822, 'young person the': 1022653, 'person the best': 652641, 'the best thing': 849558, 'best thing you': 127931, 'do to keep': 250391, 'to keep others': 908820, 'keep others safe': 471721, 'others safe is': 621625, 'safe is to': 729786, 'is to stock': 453250, 'food and water': 313379, 'and water and': 75231, 'water and staying': 968882, 'and staying home': 72320, 'staying home for': 798609, 'home for few': 401230, 'few week we': 304174, 'week we love': 977196, 'we love you': 972312, 'biologicalweapon': 131230, 'terrorism': 838596, 'collap': 185951, 'kinda make': 475061, 'wonder if': 1003964, 'is biologicalweapon': 446184, 'biologicalweapon what': 131231, 'what better': 981114, 'invoke terrorism': 444310, 'terrorism on': 838612, 'on society': 603543, 'society than': 781320, 'than through': 841333, 'body that': 133898, 'make that': 510550, 'society function': 781215, 'function gov': 341266, 'gov close': 359552, 'close border': 182570, 'border panic': 135268, 'panic run': 638501, 'run on': 727731, 'supply economic': 825200, 'economic collap': 267010, 'kinda make you': 475062, 'you wonder if': 1022409, 'wonder if is': 1003970, 'if is biologicalweapon': 414276, 'is biologicalweapon what': 446185, 'biologicalweapon what better': 131232, 'what better way': 981116, 'way to invoke': 970042, 'to invoke terrorism': 908499, 'invoke terrorism on': 444311, 'terrorism on society': 838613, 'on society than': 603545, 'society than through': 781321, 'than through the': 841334, 'through the body': 894720, 'the body that': 849826, 'body that make': 133899, 'that make that': 845003, 'make that society': 510553, 'that society function': 846377, 'society function gov': 781216, 'function gov close': 341267, 'gov close border': 359553, 'close border panic': 182571, 'border panic run': 135269, 'panic run on': 638502, 'run on food': 727734, 'and supply economic': 72785, 'supply economic collap': 825201, 'demand via': 236435, '19 demand via': 6489, 'hayward': 384535, 'cox': 214516, 'agent': 38143, 'uphold': 947569, 'undertaking': 940947, 'valuation': 952060, 'inspection': 439763, 'maintenance': 509157, 'compliance': 192434, 'mark hayward': 515785, 'hayward david': 384536, 'david cox': 226979, 'cox said': 214519, 'it vital': 462044, 'vital agent': 959669, 'agent continue': 38162, 'to uphold': 917983, 'uphold the': 947572, 'highest standard': 395865, 'standard follow': 793659, 'follow best': 312361, 'practice when': 668700, 'when undertaking': 984360, 'undertaking valuation': 940952, 'valuation viewing': 952067, 'viewing inspection': 957205, 'inspection maintenance': 439770, 'maintenance cleaning': 509160, 'cleaning maintain': 180976, 'maintain compliance': 508950, 'compliance with': 192445, 'protection regulation': 685588, 'mark hayward david': 515786, 'hayward david cox': 384537, 'david cox said': 226980, 'cox said it': 214520, 'said it vital': 731171, 'it vital agent': 462045, 'vital agent continue': 959670, 'agent continue to': 38163, 'continue to uphold': 201277, 'to uphold the': 917984, 'uphold the highest': 947573, 'the highest standard': 857351, 'highest standard follow': 395867, 'standard follow best': 793660, 'follow best practice': 312362, 'best practice when': 127851, 'practice when undertaking': 668702, 'when undertaking valuation': 984363, 'undertaking valuation viewing': 940953, 'valuation viewing inspection': 952068, 'viewing inspection maintenance': 957206, 'inspection maintenance cleaning': 439772, 'maintenance cleaning maintain': 509161, 'cleaning maintain compliance': 180977, 'maintain compliance with': 508951, 'compliance with the': 192448, 'consumer protection regulation': 198556, 'jerseyans': 465239, 'grewal and': 363867, 'the division': 853434, 'division of': 248677, 'affair warned': 34096, 'warned new': 967009, 'new jerseyans': 558983, 'jerseyans to': 465240, 'remain vigilant': 709908, 'vigilant against': 957229, 'against consumer': 37372, 'scam caused': 740105, 'uncertainty and': 939648, 'and fear': 62734, 'gurbir grewal and': 368817, 'grewal and the': 363868, 'and the division': 73330, 'the division of': 853435, 'division of consumer': 248680, 'consumer affair warned': 196105, 'affair warned new': 34097, 'warned new jerseyans': 967010, 'new jerseyans to': 558984, 'jerseyans to remain': 465241, 'to remain vigilant': 913178, 'remain vigilant against': 709909, 'vigilant against consumer': 957230, 'against consumer scam': 37373, 'consumer scam caused': 198867, 'scam caused by': 740106, 'by the uncertainty': 154467, 'the uncertainty and': 870338, 'uncertainty and fear': 939650, 'and fear surrounding': 62742, 'diversification': 248531, 'diversification ha': 248532, 'failed here': 296140, 'invest when': 443774, 'all price': 44026, 'diversification ha failed': 248533, 'ha failed here': 370580, 'failed here how': 296141, 'how to invest': 409034, 'to invest when': 908486, 'invest when all': 443775, 'when all price': 983132, 'all price fall': 44030, 'legislature': 486016, 'listing': 494823, 'premier jason': 669897, 'speaking from': 787759, 'the alberta': 848553, 'alberta legislature': 40808, 'legislature on': 486017, 'now today': 576190, 'facing not': 295551, 'not one': 570758, 'one crisis': 606133, 'but three': 147569, 'three he': 893944, 'say listing': 738895, 'listing covid': 494836, 'recession and': 704202, 'of energy': 583107, 'premier jason kenney': 669898, 'kenney is speaking': 472796, 'is speaking from': 452144, 'speaking from the': 787760, 'from the alberta': 337596, 'the alberta legislature': 848554, 'alberta legislature on': 40809, 'legislature on right': 486018, 'right now today': 722162, 'now today we': 576191, 'we are facing': 970556, 'are facing not': 86425, 'facing not one': 295552, 'not one crisis': 570762, 'one crisis but': 606134, 'crisis but three': 217160, 'but three he': 147570, 'three he say': 893945, 'he say listing': 385395, 'say listing covid': 738896, 'listing covid 19': 494837, '19 the global': 11197, 'the global recession': 856320, 'global recession and': 352152, 'recession and the': 704208, 'collapse of energy': 186036, 'of energy price': 583110, '16th': 4281, 'posit': 665147, 'then after': 876971, 'the 16th': 847903, '16th what': 4292, 'were you': 980362, 'you saying': 1021008, 'saying to': 739741, 'public concerned': 687922, 'about remember': 26075, 'strong job': 814059, 'economic posit': 267205, 'and then after': 73740, 'then after the': 876972, 'after the 16th': 36282, 'the 16th what': 847904, '16th what kind': 4293, 'kind of thing': 474949, 'of thing were': 591921, 'thing were you': 884979, 'were you saying': 980366, 'you saying to': 1021011, 'saying to the': 739743, 'the public concerned': 864796, 'public concerned about': 687923, 'concerned about remember': 193169, 'about remember this': 26076, 'is strong job': 452390, 'strong job are': 814060, 'best economic posit': 127675, 'critically': 218731, 'reputable': 713111, 're reading': 699350, 'reading this': 700806, 'twitter so': 936717, 'ahead and': 39134, 'and assume': 58465, 'that like': 844885, 'been overwhelmed': 121634, 'overwhelmed with': 631731, 'with source': 1000892, 'information about': 437699, '19 examine': 6880, 'examine what': 288824, 'reading critically': 700749, 'critically and': 218734, 'seek out': 746594, 'out reputable': 627107, 'reputable source': 713112, 'source tip': 786563, 'the ma': 859852, 'ma government': 507270, 'you re reading': 1020719, 're reading this': 699352, 'reading this on': 700813, 'this on twitter': 889222, 'on twitter so': 604926, 'twitter so we': 936719, 'so we re': 778679, 'to go ahead': 906762, 'go ahead and': 353257, 'ahead and assume': 39135, 'and assume that': 58466, 'assume that like': 97017, 'that like you': 844888, 'like you ve': 491883, 've been overwhelmed': 952915, 'been overwhelmed with': 121636, 'overwhelmed with source': 631734, 'with source of': 1000893, 'source of information': 786527, 'of information about': 585192, 'information about covid': 437704, 'covid 19 examine': 213053, '19 examine what': 6881, 'examine what you': 288826, 'what you re': 982689, 're reading critically': 699351, 'reading critically and': 700750, 'critically and seek': 218735, 'and seek out': 71170, 'seek out reputable': 746596, 'out reputable source': 627108, 'reputable source tip': 713113, 'source tip from': 786564, 'from the ma': 337782, 'the ma government': 859853, 'hea': 385711, 'supply coronacrisis': 825106, 'coronacrisis hea': 204622, 'hea th': 385712, 'stop the panic': 805143, 'buying there is': 151197, 'of supply coronacrisis': 590475, 'supply coronacrisis hea': 825107, 'coronacrisis hea th': 204623, 'storm facing': 811798, 'facing hunger': 295494, 'hunger crisis': 411082, 'bank soar': 110195, 'soar foodinsecurity': 779244, 'perfect storm facing': 651345, 'storm facing hunger': 811799, 'facing hunger crisis': 295495, 'hunger crisis demand': 411084, 'crisis demand for': 217283, 'food bank soar': 313642, 'bank soar foodinsecurity': 110197, 'hobby': 399763, 'emptier': 274711, 'fake news': 296667, 'news you': 560976, 'have only': 381808, 'only proven': 611030, 'proven my': 686176, 'point do': 662463, 'below look': 126691, 'look well': 502663, 'stocked find': 803315, 'find better': 306834, 'better hobby': 128324, 'hobby supermarket': 399779, 'are emptier': 86130, 'emptier delivery': 274712, 'delivery are': 233708, 'think is fake': 885311, 'is fake news': 447717, 'fake news you': 296678, 'news you have': 560979, 'you have only': 1019087, 'have only proven': 381811, 'only proven my': 611031, 'proven my point': 686177, 'my point do': 549803, 'point do the': 662464, 'do the shelf': 250264, 'the shelf in': 866849, 'shelf in the': 757221, 'story below look': 811921, 'below look well': 126692, 'look well stocked': 502664, 'well stocked find': 978595, 'stocked find better': 803316, 'find better hobby': 306836, 'better hobby supermarket': 128325, 'hobby supermarket shelf': 399780, 'shelf are emptier': 756796, 'are emptier delivery': 86131, 'emptier delivery are': 274713, 'delivery are taking': 233725, 'germophobe': 346384, 'saw young': 738337, 'young guy': 1022603, 'guy at': 368916, 'melbourne yesterday': 527946, 'yesterday who': 1015954, 'who wa': 989897, 'wa wearing': 963674, 'wearing industrial': 974659, 'industrial google': 435544, 'google gas': 358148, 'and pair': 68634, 'of black': 580730, 'black latex': 132077, 'glove thought': 352966, 'thought he': 893075, 'wa germophobe': 962199, 'germophobe infected': 346385, 'an isolation': 56476, 'saw young guy': 738339, 'young guy at': 1022604, 'guy at supermarket': 368918, 'supermarket in melbourne': 820931, 'in melbourne yesterday': 425251, 'melbourne yesterday who': 527947, 'yesterday who wa': 1015955, 'who wa wearing': 989920, 'wa wearing industrial': 963677, 'wearing industrial google': 974660, 'industrial google gas': 435545, 'google gas mask': 358149, 'gas mask and': 343901, 'mask and pair': 518355, 'and pair of': 68635, 'pair of black': 634333, 'of black latex': 580733, 'black latex glove': 132078, 'latex glove thought': 481624, 'glove thought he': 352967, 'thought he wa': 893077, 'he wa germophobe': 385600, 'wa germophobe infected': 962200, 'germophobe infected with': 346386, 'infected with and': 436666, 'with and should': 997251, 'and should be': 71588, 'should be in': 765647, 'be in an': 115390, 'in an isolation': 420322, 'tohoku': 921114, 'reaction of': 700200, 'of consumption': 581794, 'in japan': 424367, 'japan to': 464766, 'the tohoku': 869704, 'tohoku earthquake': 921115, 'reaction of consumption': 700201, 'of consumption and': 581795, 'consumption and price': 199831, 'and price in': 69455, 'price in japan': 674701, 'in japan to': 424376, 'japan to the': 464768, 'and the tohoku': 73618, 'the tohoku earthquake': 869705, 'influencers': 437336, 'involve': 444328, 'detached': 239138, 'influencers acting': 437338, 'like ordering': 490939, 'online doesn': 608122, 'doesn involve': 251851, 'involve human': 444333, 'being working': 126069, 'in warehouse': 430679, 'warehouse and': 966676, 'and putting': 69831, 'contracting spreading': 201782, 'shopping isn': 763089, 'isn risk': 454650, 'risk free': 723566, 'free alternative': 331633, 'alternative do': 49220, 'not contribute': 568864, 'contribute by': 201867, 'by adding': 151750, 'adding to': 31707, 'demand just': 235773, 'bc you': 113319, 're that': 699683, 'that detached': 843515, 'detached from': 239139, 'influencers acting like': 437339, 'acting like ordering': 29885, 'like ordering online': 490940, 'ordering online doesn': 618993, 'online doesn involve': 608123, 'doesn involve human': 251852, 'involve human being': 444334, 'human being working': 410448, 'being working in': 126070, 'working in warehouse': 1008738, 'in warehouse and': 430680, 'warehouse and putting': 966684, 'and putting themselves': 69842, 'of contracting spreading': 581835, 'contracting spreading covid': 201783, '19 online shopping': 8994, 'online shopping isn': 609161, 'shopping isn risk': 763090, 'isn risk free': 454651, 'risk free alternative': 723567, 'free alternative do': 331634, 'alternative do not': 49221, 'do not contribute': 249707, 'not contribute by': 568865, 'contribute by adding': 201868, 'by adding to': 151754, 'adding to demand': 31708, 'to demand just': 904148, 'demand just bc': 235774, 'just bc you': 468265, 'bc you re': 113320, 'you re that': 1020774, 're that detached': 699684, 'that detached from': 843516, 'detached from it': 239140, 'fitbit': 309504, 'ace': 28978, '58': 20516, 'camelcamelcamel': 157093, 'wow this': 1012606, 'really cheap': 702056, 'cheap of': 174150, 'you price': 1020427, 'kid fitbit': 473951, 'fitbit ace': 309505, 'ace wa': 28980, 'wa 49': 961385, '49 99': 19378, '99 this': 23903, 'morning now': 541382, 'it 58': 456214, '58 go': 20534, 'to camelcamelcamel': 902401, 'camelcamelcamel to': 157094, 'check price': 174598, 'price history': 674552, 'history and': 398002, 'there notice': 878878, 'notice saying': 573347, 'saying you': 739771, 've told': 953631, 'stop tracking': 805235, 'tracking price': 928352, '19 profiteering': 9840, 'profiteering much': 683064, 'wow this is': 1012608, 'is really cheap': 451292, 'really cheap of': 702057, 'cheap of you': 174151, 'of you price': 593412, 'you price of': 1020428, 'price of kid': 675483, 'of kid fitbit': 585625, 'kid fitbit ace': 473952, 'fitbit ace wa': 309506, 'ace wa 49': 28981, 'wa 49 99': 961386, '49 99 this': 19380, '99 this morning': 23904, 'this morning now': 888992, 'morning now it': 541383, 'now it 58': 575103, 'it 58 go': 456215, '58 go to': 20535, 'go to camelcamelcamel': 354286, 'to camelcamelcamel to': 902402, 'camelcamelcamel to check': 157095, 'to check price': 902692, 'check price history': 174599, 'price history and': 674553, 'history and there': 398005, 'and there notice': 73847, 'there notice saying': 878879, 'notice saying you': 573348, 'saying you ve': 739777, 'you ve told': 1022070, 've told them': 953633, 'them to stop': 876516, 'to stop tracking': 915590, 'stop tracking price': 805236, 'tracking price due': 928353, 'covid 19 profiteering': 213618, '19 profiteering much': 9842, 'purveyor': 690230, 'chatting with': 174031, 'some top': 784095, 'top mail': 925609, 'mail order': 508636, 'order purveyor': 618528, 'purveyor today': 690233, 'seeing 300': 746198, '300 surge': 17349, 'in sale': 427645, 'sale but': 732109, 'they seem': 883299, 'doing good': 252424, 'of managing': 586142, 'managing supply': 512892, 'and restocking': 70403, 'restocking quickly': 717014, 'quickly if': 694545, 'saw out': 738199, 'stock check': 801975, 'check back': 174381, 'chatting with some': 174032, 'with some top': 1000869, 'some top mail': 784096, 'top mail order': 925610, 'mail order purveyor': 508638, 'order purveyor today': 618529, 'purveyor today and': 690234, 'today and some': 919223, 'and some are': 71950, 'some are seeing': 782327, 'are seeing 300': 89884, 'seeing 300 surge': 746199, '300 surge in': 17350, 'surge in sale': 828209, 'in sale but': 427649, 'sale but they': 732112, 'but they seem': 147516, 'they seem to': 883300, 'to be doing': 901214, 'be doing good': 114516, 'doing good job': 252425, 'good job of': 357297, 'job of managing': 466034, 'of managing supply': 586145, 'managing supply chain': 512893, 'chain and restocking': 170476, 'and restocking quickly': 70406, 'restocking quickly if': 717015, 'quickly if you': 694547, 'if you saw': 415515, 'you saw out': 1020993, 'saw out of': 738200, 'of stock check': 590148, 'stock check back': 801976, 'just routine': 469651, 'routine trip': 726538, 'with stay': 1000951, 'safe when': 730133, 'out 19': 625527, 'just routine trip': 469652, 'routine trip to': 726539, 'store with stay': 811405, 'with stay home': 1000952, 'stay safe when': 797297, 'safe when you': 730135, 'go out 19': 353930, 'truce': 932704, 'surge on': 828236, 'on hope': 601357, 'war truce': 966574, 'truce sign': 932711, 'that saudiarabia': 846125, 'saudiarabia and': 737327, 'russia may': 728512, 'may end': 521142, 'end an': 275765, 'an oil': 56573, 'oil feud': 596790, 'feud sent': 303642, 'sent price': 750797, 'price surge on': 676724, 'surge on hope': 828237, 'on hope of': 601359, 'hope of price': 403574, 'of price war': 588418, 'price war truce': 677380, 'war truce sign': 966578, 'truce sign that': 932712, 'sign that saudiarabia': 769224, 'that saudiarabia and': 846126, 'saudiarabia and russia': 737329, 'and russia may': 70674, 'russia may end': 728513, 'may end an': 521143, 'end an oil': 275766, 'an oil feud': 56575, 'oil feud sent': 596791, 'feud sent price': 303643, 'sent price up': 750800, 'luscious': 506853, 'vegetation': 954155, 'locust': 500551, 'grazed': 362465, 'crate': 215135, '5lines': 20745, 'mpy': 544338, 'such luscious': 816612, 'luscious vegetation': 506854, 'vegetation such': 954156, 'such ordered': 816661, 'ordered growth': 618858, 'growth so': 367456, 'so fresh': 777119, 'for moment': 323482, 'but next': 146471, 'next it': 561421, 'if locust': 414389, 'locust had': 500569, 'had grazed': 373147, 'grazed it': 362466, 'ground crate': 366491, 'crate and': 215136, 'and wood': 75835, 'wood 5lines': 1004270, '5lines supermarket': 20746, 'supermarket poetry': 822033, 'poetry locust': 662374, 'locust mpy': 500574, 'such luscious vegetation': 816613, 'luscious vegetation such': 506855, 'vegetation such ordered': 954157, 'such ordered growth': 816662, 'ordered growth so': 618859, 'growth so fresh': 367457, 'so fresh for': 777120, 'fresh for moment': 332988, 'for moment but': 323484, 'moment but next': 535889, 'but next it': 146472, 'next it if': 561423, 'it if locust': 458673, 'if locust had': 414390, 'locust had grazed': 500571, 'had grazed it': 373148, 'grazed it to': 362467, 'the ground crate': 856846, 'ground crate and': 366492, 'crate and wood': 215137, 'and wood 5lines': 75836, 'wood 5lines supermarket': 1004271, '5lines supermarket poetry': 20747, 'supermarket poetry locust': 822034, 'poetry locust mpy': 662375, 'surplus': 828472, 'roast': 724589, 'mince': 532598, 'retailer have': 719175, 'to balance': 901008, 'balance out': 108980, 'the surplus': 869016, 'surplus of': 828490, 'steak and': 799153, 'and roast': 70579, 'roast caused': 724590, 'recent panic': 703951, 'of mince': 586538, 'mince are': 532599, 'on shop': 603430, 'promote these': 683798, 'these cut': 879846, 'cut for': 223342, 'weekend to': 977427, 'alleviate the': 45823, 'problem that': 679698, 'that panic': 845642, 'retailer have an': 719176, 'opportunity to balance': 613695, 'to balance out': 901009, 'balance out the': 108981, 'out the surplus': 627427, 'the surplus of': 869018, 'surplus of steak': 828495, 'of steak and': 590106, 'steak and roast': 799154, 'and roast caused': 70580, 'roast caused by': 724591, 'by the recent': 154422, 'the recent panic': 865319, 'recent panic buying': 703952, 'buying of mince': 150797, 'of mince are': 586539, 'mince are calling': 532600, 'are calling on': 85150, 'calling on shop': 156615, 'on shop to': 603433, 'shop to promote': 760952, 'to promote these': 912259, 'promote these cut': 683799, 'these cut for': 879847, 'cut for the': 223347, 'for the easter': 326402, 'the easter weekend': 853855, 'easter weekend to': 265525, 'weekend to alleviate': 977428, 'to alleviate the': 900317, 'alleviate the problem': 45827, 'the problem that': 864524, 'problem that panic': 679704, 'that panic buying': 845644, 'buying ha caused': 150432, 'bir': 131316, 'ddettir': 229025, 'permarketlerin': 652114, 'lojistik': 500852, 'hizmeti': 398618, 'avusturya': 105526, 'ordusu': 619114, 'deste': 238961, 'iyle': 464082, 'yap': 1014148, 'yor': 1016562, 'tedavisi': 836421, 'milyon': 532488, 'luk': 506627, 'ara': 83814, 'rma': 724274, 'geli': 345182, 'tirme': 899101, 'esi': 280370, 'klad': 475871, 'ge': 344920, 'hafta': 373869, 'paketi': 634412, 'klanm': 475878, 'viyana': 959851, 'haberler': 372534, 'bu': 141569, 'kadar': 470582, 'bir ddettir': 131319, 'ddettir permarketlerin': 229026, 'permarketlerin lojistik': 652115, 'lojistik hizmeti': 500853, 'hizmeti avusturya': 398619, 'avusturya ordusu': 105527, 'ordusu deste': 619115, 'deste iyle': 238962, 'iyle yap': 464083, 'yap yor': 1014149, 'yor corona': 1016565, 'corona tedavisi': 204216, 'tedavisi in': 836422, 'in 22': 419883, '22 milyon': 15227, 'milyon luk': 532489, 'luk bir': 506628, 'bir ara': 131317, 'ara rma': 83815, 'rma geli': 724275, 'geli tirme': 345183, 'tirme esi': 899102, 'esi klad': 280371, 'klad met': 475872, 'met ge': 529574, 'ge en': 344923, 'en hafta': 275380, 'hafta da': 373870, 'da 35': 224211, '35 milyon': 17899, 'luk yard': 506630, 'yard paketi': 1014160, 'paketi klanm': 634413, 'klanm viyana': 475879, 'viyana dan': 959852, 'dan haberler': 225532, 'haberler bu': 372535, 'bu kadar': 141574, 'bir ddettir permarketlerin': 131320, 'ddettir permarketlerin lojistik': 229027, 'permarketlerin lojistik hizmeti': 652116, 'lojistik hizmeti avusturya': 500854, 'hizmeti avusturya ordusu': 398620, 'avusturya ordusu deste': 105528, 'ordusu deste iyle': 619116, 'deste iyle yap': 238963, 'iyle yap yor': 464084, 'yap yor corona': 1014150, 'yor corona tedavisi': 1016566, 'corona tedavisi in': 204217, 'tedavisi in 22': 836423, 'in 22 milyon': 419885, '22 milyon luk': 15228, 'milyon luk bir': 532490, 'luk bir ara': 506629, 'bir ara rma': 131318, 'ara rma geli': 83816, 'rma geli tirme': 724276, 'geli tirme esi': 345184, 'tirme esi klad': 899103, 'esi klad met': 280372, 'klad met ge': 475873, 'met ge en': 529575, 'ge en hafta': 344924, 'en hafta da': 275381, 'hafta da 35': 373871, 'da 35 milyon': 224212, '35 milyon luk': 17900, 'milyon luk yard': 532491, 'luk yard paketi': 506631, 'yard paketi klanm': 1014161, 'paketi klanm viyana': 634414, 'klanm viyana dan': 475880, 'viyana dan haberler': 959853, 'dan haberler bu': 225533, 'haberler bu kadar': 372536, 'doe soap': 251579, 'soap work': 779187, 'work well': 1005987, 'well hand': 978265, 'virus via': 958976, 'doe soap work': 251580, 'soap work well': 779189, 'work well hand': 1005988, 'well hand sanitizer': 978266, 'sanitizer for virus': 734927, 'for virus via': 327582, 'isolates': 455043, 'believing': 126447, 'himself': 396788, 'thi': 883977, 'ng': 561792, 'latest report': 481523, 'report chairman': 711858, 'chairman of': 171348, 'online ocado': 608599, 'ocado ha': 578896, 'he self': 385422, 'self isolates': 747707, 'isolates believing': 455044, 'believing himself': 126452, 'himself to': 396818, 'infected the': 436645, 'first thi': 309071, 'thi ng': 883978, 'ng is': 561795, 'is don': 447302, 'there isn': 878659, 'latest report chairman': 481524, 'report chairman of': 711859, 'chairman of online': 171349, 'of online ocado': 587257, 'online ocado ha': 608600, 'ocado ha said': 578897, 'ha said today': 371799, 'said today there': 731526, 'today there is': 920314, 'food in supermarket': 314973, 'supermarket he self': 820728, 'he self isolates': 385423, 'self isolates believing': 747708, 'isolates believing himself': 455045, 'believing himself to': 126453, 'himself to be': 396819, 'to be infected': 901335, 'be infected the': 115486, 'infected the first': 436646, 'the first thi': 855355, 'first thi ng': 309072, 'thi ng is': 883979, 'ng is don': 561796, 'is don panic': 447303, 'don panic there': 253814, 'panic there isn': 638696, 'there isn going': 878667, 'deploys': 237482, 'gafoodindustry': 342713, 'publix deploys': 688750, 'deploys contactless': 237483, 'contactless payment': 200374, 'payment for': 645617, 'extra covid': 293488, '19 safety': 10287, 'safety supermarket': 730741, 'news supplychain': 560842, 'supplychain grocerystore': 826187, 'grocerystore gafoodindustry': 366306, 'publix deploys contactless': 688751, 'deploys contactless payment': 237484, 'contactless payment for': 200377, 'payment for extra': 645620, 'for extra covid': 321343, 'extra covid 19': 293489, 'covid 19 safety': 213736, '19 safety supermarket': 10289, 'safety supermarket news': 730742, 'supermarket news supplychain': 821598, 'news supplychain grocerystore': 560843, 'supplychain grocerystore gafoodindustry': 826188, 'scarf': 741061, 'wrapped': 1012670, 'pan': 634657, 'splain': 789630, 'come up': 187651, 'when walking': 984416, 'around with': 93635, 'my scarf': 549994, 'scarf wrapped': 741093, 'wrapped around': 1012671, 'around my': 93405, 'face try': 294820, 'talk me': 833819, 'of protecting': 588547, 'protecting myself': 685216, 'myself some': 550933, 'some poor': 783597, 'poor gentleman': 664179, 'gentleman just': 345842, 'got his': 358606, 'his feeling': 397423, 'feeling hurt': 302997, 'to pan': 911362, 'pan splain': 634670, 'splain germ': 789631, 'germ to': 346167, 'all favor': 42763, 'favor cover': 300460, 'cover your': 212323, 'not come up': 568799, 'come up to': 187652, 'up to me': 946398, 'to me in': 909935, 'me in supermarket': 522975, 'in supermarket when': 428712, 'supermarket when walking': 823810, 'when walking around': 984417, 'walking around with': 965030, 'around with my': 93640, 'with my scarf': 999651, 'my scarf wrapped': 549995, 'scarf wrapped around': 741094, 'wrapped around my': 1012672, 'around my face': 93408, 'my face try': 548165, 'face try to': 294821, 'try to talk': 934673, 'to talk me': 916284, 'talk me out': 833820, 'me out of': 523305, 'out of protecting': 626814, 'of protecting myself': 588549, 'protecting myself some': 685218, 'myself some poor': 550934, 'some poor gentleman': 783598, 'poor gentleman just': 664180, 'gentleman just got': 345843, 'just got his': 468858, 'got his feeling': 358607, 'his feeling hurt': 397424, 'feeling hurt he': 302998, 'hurt he wanted': 411581, 'he wanted to': 385643, 'wanted to pan': 966263, 'to pan splain': 911363, 'pan splain germ': 634671, 'splain germ to': 789632, 'germ to me': 346168, 'to me do': 909925, 'me do all': 522660, 'do all favor': 249040, 'all favor cover': 42764, 'favor cover your': 300461, 'cover your face': 212324, 'barbie': 110823, 'doll': 252936, 'cause you': 167808, 'you pay': 1020303, 'pay more': 644998, 'more for': 539259, 'for barbie': 319580, 'barbie doll': 110824, 'doll it': 252937, 'paid le': 634048, 'le the': 483195, 'price keep': 674985, 'up we': 946540, 'more with': 540993, 'with or': 999932, 'or without': 617824, 'worse news': 1010970, 'that many': 845021, 'may stop': 521536, 'buying barbie': 149989, 'barbie of': 110826, 'her carrying': 391919, 'carrying virus': 165224, 'may cause you': 521077, 'cause you pay': 167811, 'you pay more': 1020308, 'pay more for': 644999, 'more for barbie': 539261, 'for barbie doll': 319581, 'barbie doll it': 110825, 'doll it not': 252938, 'not like that': 570401, 'like that have': 491319, 'that have paid': 844226, 'have paid le': 381869, 'paid le the': 634050, 'le the price': 483196, 'the price keep': 864378, 'price keep going': 674987, 'keep going up': 471554, 'going up we': 355797, 'up we ll': 946545, 'we ll pay': 972269, 'll pay more': 496947, 'pay more with': 645001, 'more with or': 540997, 'with or without': 999936, 'or without the': 617827, 'without the worse': 1002983, 'the worse news': 872031, 'worse news is': 1010971, 'is that many': 452665, 'that many people': 845028, 'many people may': 514519, 'people may stop': 648760, 'may stop buying': 521537, 'stop buying barbie': 804530, 'buying barbie of': 149990, 'barbie of the': 110827, 'the fear of': 855037, 'fear of her': 301239, 'of her carrying': 584568, 'her carrying virus': 391920, 'out since': 627195, 'since lockdown': 770705, 'lockdown today': 500060, 'today the': 920277, 'weekly food': 977491, 'shop just': 760379, 'just weird': 470270, 'weird road': 977780, 'road empty': 724444, 'at best': 98124, 'best quarter': 127877, 'quarter the': 693264, 'usual number': 950981, 'people shelf': 649413, 'shelf pretty': 757429, 'pretty full': 671412, 'full plenty': 340813, 'trip out since': 932137, 'out since lockdown': 627197, 'since lockdown today': 770709, 'lockdown today the': 500062, 'today the weekly': 920305, 'the weekly food': 871345, 'weekly food shop': 977493, 'food shop just': 316485, 'shop just weird': 760382, 'just weird road': 470271, 'weird road empty': 977781, 'road empty supermarket': 724447, 'empty supermarket at': 275156, 'supermarket at best': 819235, 'at best quarter': 98129, 'best quarter the': 127878, 'quarter the usual': 693266, 'the usual number': 870589, 'usual number of': 950982, 'of people shelf': 587981, 'people shelf pretty': 649414, 'shelf pretty full': 757430, 'pretty full plenty': 671413, 'full plenty of': 340814, 'plenty of loo': 660957, 'veteran': 955712, 'are higher': 87154, 'higher item': 395621, 'are harder': 87018, 'get still': 348116, 'still won': 801416, 'won give': 1003818, 'give up': 350811, 'on helping': 601269, 'helping veteran': 391537, 'veteran in': 955715, 'need but': 554572, 'support them': 826904, 'price are higher': 672676, 'are higher item': 87158, 'higher item are': 395622, 'item are harder': 463093, 'are harder to': 87020, 'harder to get': 378194, 'to get still': 906602, 'get still won': 348117, 'still won give': 801417, 'won give up': 1003819, 'give up on': 350817, 'up on helping': 945576, 'on helping veteran': 601274, 'helping veteran in': 391538, 'veteran in need': 955716, 'in need but': 425731, 'need but will': 554578, 'but will do': 147877, 'will do what': 993234, 'do what can': 250510, 'what can to': 981182, 'to support them': 915977, 'is gas': 448001, 'best thing to': 127928, 'to come out': 903042, 'come out of': 187470, '19 is gas': 7975, 'is gas price': 448003, 'resisted': 714599, 've resisted': 953503, 'resisted adding': 714600, '19 social': 10665, 'medium noise': 527183, 'noise up': 566235, 'up until': 946496, 'until now': 943797, 'of yesterday': 593355, 'yesterday update': 1015909, 'let you': 487211, 'situation here': 772303, 'at good': 98780, 'trying our': 934726, 'our best': 622188, 'best not': 127785, 'open unless': 612621, 'are ad': 84219, 'we ve resisted': 973705, 've resisted adding': 953504, 'resisted adding to': 714601, 'adding to the': 31713, 'covid 19 social': 213827, '19 social medium': 10668, 'social medium noise': 779867, 'medium noise up': 527185, 'noise up until': 566236, 'up until now': 946499, 'until now but': 943798, 'now but in': 574287, 'but in light': 146028, 'light of yesterday': 489568, 'of yesterday update': 593357, 'yesterday update we': 1015910, 'update we wanted': 947312, 'wanted to let': 966260, 'to let you': 909221, 'let you all': 487212, 'know the situation': 476850, 'the situation here': 867258, 'situation here at': 772304, 'here at good': 392782, 'at good food': 98781, 'good food we': 357067, 'food we re': 317533, 'we re trying': 972994, 're trying our': 699738, 'trying our best': 934727, 'our best not': 622194, 'best not panic': 127788, 'panic we re': 638768, 'going to stay': 355720, 'stay open unless': 797165, 'open unless we': 612623, 'unless we are': 942658, 'we are ad': 970467, 'still learning': 800783, 'learning more': 484218, 'daily it': 224648, 'any extra': 79206, 'extra precaution': 293608, 'precaution you': 669410, 'can via': 160117, 're still learning': 699596, 'still learning more': 800784, 'learning more about': 484219, 'about the daily': 26369, 'the daily it': 852781, 'daily it good': 224649, 'it good idea': 458298, 'good idea to': 357222, 'idea to take': 413210, 'to take any': 916158, 'take any extra': 831943, 'any extra precaution': 79208, 'extra precaution you': 293616, 'precaution you can': 669411, 'you can via': 1017823, '46': 19213, '385': 18151, 'mcx': 522250, '44049': 19034, 'gloom': 352496, 'on gold': 601138, 'massive rush': 520091, 'rush for': 728292, 'haven demand': 383780, 'demand gold': 235577, 'gold future': 355896, 'future hit': 342351, 'hit all': 398123, 'of 46': 579594, '46 385': 19218, '385 10': 18152, 'gram mcx': 361829, 'mcx future': 522251, 'future at': 342263, 'at 44049': 97655, '44049 kg': 19035, 'kg economic': 473651, 'economic uncertainty': 267347, 'financial gloom': 306422, 'gloom fuel': 352497, 'impact on gold': 417854, 'on gold price': 601139, 'gold price massive': 355965, 'price massive rush': 675179, 'massive rush for': 520092, 'rush for safe': 728293, 'for safe haven': 325289, 'safe haven demand': 729738, 'haven demand gold': 383781, 'demand gold future': 235578, 'gold future hit': 355897, 'future hit all': 342352, 'hit all time': 398125, 'time high of': 896931, 'high of 46': 395191, 'of 46 385': 579595, '46 385 10': 19219, '385 10 gram': 18153, '10 gram mcx': 1450, 'gram mcx future': 361830, 'mcx future at': 522252, 'future at 44049': 342264, 'at 44049 kg': 97656, '44049 kg economic': 19036, 'kg economic uncertainty': 473652, 'economic uncertainty and': 267349, 'uncertainty and global': 939651, 'and global financial': 63695, 'global financial gloom': 351940, 'financial gloom fuel': 306423, 'sooner': 785916, 'institute national': 440421, 'national quarantine': 552593, 'quarantine everyone': 692181, 'everyone except': 286897, 'except essential': 289142, 'essential personnel': 281384, 'personnel is': 653121, 'restricted to': 717165, 'unless going': 942607, 'store medical': 808938, 'medical facility': 526170, 'facility etc': 295328, 'etc the': 282794, 'employee salary': 274179, 'salary is': 731979, 'is their': 452985, 'their average': 872533, 'average monthly': 104866, 'monthly income': 538178, 'income while': 432494, 'while under': 987490, 'under quarantine': 940215, 'the sooner': 867484, 'sooner this': 785930, 'sooner everything': 785917, 'will return': 994686, 'institute national quarantine': 440422, 'national quarantine everyone': 552595, 'quarantine everyone except': 692183, 'everyone except essential': 286898, 'except essential personnel': 289143, 'essential personnel is': 281387, 'personnel is restricted': 653123, 'is restricted to': 451482, 'restricted to their': 717171, 'to their home': 917239, 'their home unless': 873578, 'home unless going': 402397, 'unless going to': 942608, 'grocery store medical': 365563, 'store medical facility': 808940, 'medical facility etc': 526173, 'facility etc the': 295330, 'etc the employee': 282795, 'the employee salary': 854266, 'employee salary is': 274180, 'salary is their': 731980, 'is their average': 452986, 'their average monthly': 872534, 'average monthly income': 104867, 'monthly income while': 538179, 'income while under': 432496, 'while under quarantine': 987491, 'under quarantine the': 940221, 'quarantine the sooner': 692613, 'the sooner this': 867486, 'sooner this is': 785931, 'is done the': 447325, 'done the sooner': 255043, 'the sooner everything': 867485, 'sooner everything will': 785918, 'everything will return': 288111, 'will return to': 994690, 'return to normal': 719923, 'empathetic': 273327, 'giving empathetic': 351275, 'empathetic loving': 273332, 'loving young': 505073, 'man continue': 512033, 'exercise precaution': 290089, 'giving empathetic loving': 351276, 'empathetic loving young': 273333, 'loving young man': 505074, 'young man continue': 1022616, 'man continue to': 512034, 'continue to exercise': 201191, 'to exercise precaution': 905415, 'enhancing': 277110, 'are stocked': 90511, 'stocked for': 803321, 'but disruption': 145546, 'disruption may': 246503, 'may happen': 521225, 'the must': 861156, 'be kept': 115593, 'kept alive': 473014, 'alive by': 41804, 'by enhancing': 152496, 'enhancing safety': 277111, 'net keeping': 557555, 'trade open': 928543, 'open amp': 612041, 'amp supporting': 54602, 'supporting small': 827185, 'shelf are stocked': 756830, 'are stocked for': 90515, 'stocked for now': 803322, 'for now but': 323966, 'now but disruption': 574281, 'but disruption may': 145547, 'disruption may happen': 246504, 'may happen the': 521228, 'happen the must': 377164, 'the must be': 861159, 'must be kept': 546517, 'be kept alive': 115594, 'kept alive by': 473015, 'alive by enhancing': 41805, 'by enhancing safety': 152497, 'enhancing safety net': 277112, 'safety net keeping': 730640, 'net keeping the': 557556, 'keeping the global': 472578, 'the global trade': 856335, 'global trade open': 352262, 'trade open amp': 928544, 'open amp supporting': 612043, 'amp supporting small': 54603, 'supporting small farmer': 827187, 'small farmer to': 774948, 'produce more food': 680364, 'holland': 400420, 'sitution': 772617, 'landal': 479306, 'rebook': 703274, 'unacceptable': 939355, 'cancelled my': 161137, 'my holiday': 548676, 'holiday in': 400317, 'in holland': 423772, 'holland 16': 400421, '16 03': 4057, '03 20': 848, '19 sitution': 10601, 'sitution landal': 772618, 'landal will': 479307, 'price deliberately': 673414, 'deliberately so': 232978, 'so customer': 776823, 'other option': 620617, 'to rebook': 912895, 'rebook in': 703279, 'november this': 573864, 'is unacceptable': 453422, 'cancelled my holiday': 161139, 'my holiday in': 548678, 'holiday in holland': 400318, 'in holland 16': 423773, 'holland 16 03': 400422, '16 03 20': 4058, '03 20 due': 850, 'covid 19 sitution': 213811, '19 sitution landal': 10602, 'sitution landal will': 772619, 'landal will not': 479308, 'not refund and': 571280, 'refund and increase': 706867, 'and increase price': 65107, 'increase price deliberately': 433000, 'price deliberately so': 673415, 'deliberately so customer': 232979, 'so customer have': 776825, 'customer have no': 222441, 'have no other': 381643, 'no other option': 565017, 'other option but': 620618, 'option but to': 614005, 'but to rebook': 147589, 'to rebook in': 912897, 'rebook in november': 703280, 'in november this': 425981, 'november this is': 573865, 'this is unacceptable': 888443, 'interruption': 442120, 'have discovered': 380296, 'discovered new': 244691, 'live and': 495718, 'work teleworking': 1005789, 'teleworking is': 836884, 'is cool': 446831, 'cool can': 202995, 'can focus': 158359, 'focus no': 311851, 'no interruption': 564521, 'interruption plus': 442127, 'plus food': 661602, 'food coffee': 313957, 'coffee always': 185451, 'always good': 49582, 'good like': 357329, 'like shopping': 491178, 'okay in this': 597987, '19 health crisis': 7482, 'health crisis have': 386337, 'crisis have discovered': 217457, 'have discovered new': 380297, 'discovered new way': 244692, 'way to live': 970047, 'to live and': 909335, 'live and work': 495722, 'and work teleworking': 75862, 'work teleworking is': 1005790, 'teleworking is cool': 836885, 'is cool can': 446832, 'cool can focus': 202996, 'can focus no': 158360, 'focus no interruption': 311852, 'no interruption plus': 564522, 'interruption plus food': 442128, 'plus food coffee': 661603, 'food coffee always': 313958, 'coffee always good': 185452, 'always good like': 49583, 'good like shopping': 357333, 'like shopping for': 491181, 'grocery online with': 364791, 'online with delivery': 609744, 'nofilter': 566127, 'champagne': 171673, 'penis': 646522, 'nofilter do': 566128, 're offering': 699156, 'offering loo': 595181, 'roll hand': 725326, 'sanitizer egg': 734814, 'egg champagne': 269818, 'champagne or': 171674, 'or big': 614551, 'big penis': 129908, 'penis just': 646523, 'interested you': 441493, 'not worth': 572577, 'worth it': 1011375, 'it socialdistancing': 461149, 'socialdistancing london': 780503, 'london united': 501221, 'nofilter do not': 566129, 'do not care': 249689, 'not care what': 568699, 'care what you': 164264, 'you re offering': 1020688, 're offering loo': 699162, 'offering loo roll': 595182, 'loo roll hand': 502181, 'roll hand sanitizer': 725329, 'hand sanitizer egg': 375385, 'sanitizer egg champagne': 734815, 'egg champagne or': 269819, 'champagne or big': 171675, 'or big penis': 614554, 'big penis just': 129909, 'penis just not': 646524, 'just not interested': 469332, 'not interested you': 570163, 'interested you re': 441494, 're not worth': 699131, 'not worth it': 572580, 'worth it socialdistancing': 1011383, 'it socialdistancing london': 461150, 'socialdistancing london london': 780504, 'london london united': 501125, 'london united kingdom': 501222, 'sprayable': 790352, 'diameter': 240317, 'nozzle': 576602, 'active': 30251, 'liquidator': 494118, 'medical center': 526088, 'is stocking': 452338, 'stocking these': 803611, 'these small': 880700, 'just 75': 468122, '75 alcohol': 22106, 'alcohol so': 41106, 'is sprayable': 452178, 'sprayable like': 790353, 'find way': 307376, 'of bunch': 580934, 'of diameter': 582579, 'diameter spray': 240318, 'spray nozzle': 790313, 'nozzle which': 576603, 'then convert': 877092, 'convert every': 202527, 'every bottle': 285698, 'bottle into': 136250, 'into an': 442387, 'an active': 55082, 'active liquidator': 30275, 'medical center is': 526091, 'center is stocking': 169243, 'is stocking these': 452340, 'stocking these small': 803612, 'these small bottle': 880701, 'hand sanitizer it': 375461, 'sanitizer it is': 735227, 'it is just': 458996, 'is just 75': 449116, 'just 75 alcohol': 468123, '75 alcohol so': 22108, 'alcohol so it': 41107, 'so it is': 777468, 'it is sprayable': 459087, 'is sprayable like': 452179, 'sprayable like to': 790354, 'like to find': 491591, 'to find way': 905951, 'find way to': 307377, 'hold of bunch': 399965, 'of bunch of': 580935, 'bunch of diameter': 142623, 'of diameter spray': 582580, 'diameter spray nozzle': 240319, 'spray nozzle which': 790314, 'nozzle which then': 576604, 'which then convert': 986386, 'then convert every': 877093, 'convert every bottle': 202528, 'every bottle into': 285699, 'bottle into an': 136251, 'into an active': 442388, 'an active liquidator': 55083, 'busiest': 143178, 'tomorrow the': 924193, 'the charity': 850704, 'charity checkout': 173592, 'checkout donation': 174908, 'donation link': 254635, 'link is': 493863, 'below please': 126710, 'ensure food': 277939, 'those relying': 892390, 'on britain': 599704, 'britain busiest': 140389, 'busiest food': 143181, 'coming month': 188134, 'month during': 537693, 'crisis when': 218377, 'when demand': 983334, 'increase thank': 433095, 'tomorrow the charity': 924194, 'the charity checkout': 850705, 'charity checkout donation': 173593, 'checkout donation link': 174909, 'donation link is': 254636, 'link is below': 493865, 'is below please': 446128, 'below please continue': 126711, 'please continue to': 659849, 'to donate to': 904656, 'donate to ensure': 254253, 'to ensure food': 905160, 'ensure food supply': 277944, 'food supply for': 316953, 'supply for those': 825283, 'for those relying': 327132, 'those relying on': 892391, 'relying on britain': 709669, 'on britain busiest': 599706, 'britain busiest food': 140390, 'busiest food bank': 143182, 'the coming month': 851197, 'coming month during': 188137, 'month during the': 537694, 'the crisis when': 852477, 'crisis when demand': 218378, 'when demand will': 983335, 'demand will increase': 236501, 'will increase thank': 993826, 'increase thank you': 433096, 'bac': 106793, '3a': 18200, 'cannonwater': 161578, 'limited stock': 492721, 'stock bac': 801899, 'bac stop': 106796, 'stop 3a': 804416, '3a instant': 18203, 'instant handsanitizer': 440097, 'handsanitizer in': 376557, 'stock get': 802195, 'get hand': 347184, 'prevent spread': 671719, 'of buy': 581005, 'buy now': 149013, 'now cannonwater': 574341, 'limited stock bac': 492723, 'stock bac stop': 801900, 'bac stop 3a': 106797, 'stop 3a instant': 804417, '3a instant handsanitizer': 18204, 'instant handsanitizer in': 440098, 'handsanitizer in stock': 376558, 'in stock get': 428303, 'stock get hand': 802196, 'get hand sanitizer': 347185, 'to prevent spread': 912090, 'prevent spread of': 671720, 'spread of buy': 790655, 'of buy now': 581006, 'buy now cannonwater': 149014, 'teamcvs': 835849, 'have significant': 382548, 'significant demand': 769423, 'full and': 340474, 'and part': 68723, 'time retail': 897576, 'associate across': 96840, 'country link': 210868, 'apply teamcvs': 82596, 'teamcvs hiring': 835850, 'we have significant': 971939, 'have significant demand': 382549, 'significant demand for': 769424, 'demand for full': 235426, 'for full and': 321807, 'full and part': 340479, 'and part time': 68725, 'part time retail': 642453, 'time retail store': 897578, 'retail store associate': 718611, 'store associate across': 806559, 'associate across the': 96841, 'the country link': 852110, 'country link to': 210869, 'link to apply': 493922, 'to apply teamcvs': 900658, 'apply teamcvs hiring': 82597, 'protect you': 685046, 'family from': 297824, 'from make': 336306, 'own or': 632116, 'or at': 614439, 'home please': 401862, 'help end': 389635, 'safe from here': 729695, 'from here how': 335778, 'to protect you': 912347, 'protect you and': 685047, 'and your family': 76073, 'your family from': 1023781, 'family from make': 297827, 'from make your': 336307, 'your own or': 1025153, 'own or at': 632117, 'or at home': 614444, 'at home please': 99083, 'home please retweet': 401867, 'to help end': 907502, 'help end the': 389636, 'the dramatic': 853658, 'dramatic job': 258297, 'loss and': 503631, 'and layoff': 66000, 'layoff due': 482686, 'have many': 381433, 'people wondering': 650503, 'wondering about': 1004147, 'financial future': 306420, 'the dramatic job': 853663, 'dramatic job loss': 258298, 'job loss and': 465965, 'loss and layoff': 503635, 'and layoff due': 66001, 'layoff due to': 482688, '19 crisis have': 6257, 'crisis have many': 217459, 'have many people': 381437, 'many people wondering': 514551, 'people wondering about': 650504, 'wondering about their': 1004150, 'about their financial': 26583, 'their financial future': 873322, 'realheros': 701574, 'surreal': 828662, 'later want': 481162, 'thank healthcare': 841594, 'the realheros': 865251, 'realheros during': 701576, 'this surreal': 890451, 'surreal time': 828675, 'with distance': 998091, 'distance we': 246885, 'about week later': 26870, 'week later want': 976469, 'later want to': 481163, 'want to thank': 966144, 'to thank healthcare': 916427, 'thank healthcare worker': 841596, 'healthcare worker first': 387358, 'employee and all': 273553, 'all other essential': 43780, 'other essential worker': 620187, 'essential worker they': 281859, 'are the realheros': 90893, 'the realheros during': 865252, 'realheros during this': 701577, 'during this surreal': 263322, 'this surreal time': 890452, 'surreal time stay': 828676, 'safe and with': 729495, 'and with distance': 75766, 'with distance we': 998092, 'distance we can': 246886, 'up before': 944478, 'the crack': 852260, 'crack of': 214705, 'of dawn': 582371, 'dawn to': 227058, 'for chicken': 320048, 'breast and': 139132, 'egg not': 269936, 'not fan': 569366, 'changing me': 172747, 'woke up before': 1003358, 'up before the': 944482, 'before the crack': 123152, 'the crack of': 852262, 'crack of dawn': 214706, 'of dawn to': 582372, 'dawn to go': 227059, 'store for chicken': 807792, 'for chicken breast': 320049, 'chicken breast and': 175755, 'breast and egg': 139133, 'and egg not': 61978, 'egg not fan': 269937, 'not fan of': 569367, 'fan of how': 298527, 'how is changing': 408085, 'is changing me': 446475, 'csis': 220047, 'ben': 126813, 'cahill': 155187, 'csis energy': 220048, 'energy expert': 276449, 'expert ben': 291800, 'ben cahill': 126816, 'cahill ass': 155188, 'april opec': 83652, 'agreement in': 38774, 'market turmoil': 517266, 'csis energy expert': 220049, 'energy expert ben': 276450, 'expert ben cahill': 291801, 'ben cahill ass': 126817, 'cahill ass the': 155189, 'ass the april': 96280, 'the april opec': 848840, 'april opec agreement': 83653, 'opec agreement in': 611835, 'agreement in the': 38775, 'wake of oil': 964598, 'of oil market': 587187, 'oil market turmoil': 596951, 'socialist': 781002, 'real image': 701215, 'in socialist': 428051, 'socialist venezuela': 781023, 'venezuela before': 954437, 'every shelf': 286159, 'store seriously': 810039, 'seriously are': 751535, 'really that': 702643, 'that dumb': 843646, 'dumb coronacrisis': 262097, 'real image of': 701216, 'image of supermarket': 416651, 'supermarket in socialist': 820981, 'in socialist venezuela': 428052, 'socialist venezuela before': 781024, 'venezuela before and': 954438, 'before and it': 122629, 'and it on': 65564, 'it on every': 460041, 'on every shelf': 600621, 'every shelf in': 286161, 'every store seriously': 286224, 'store seriously are': 810040, 'seriously are you': 751537, 'you really that': 1020844, 'really that dumb': 702644, 'that dumb coronacrisis': 843647, 'arrange': 93680, 'reservist': 714161, 'could your': 209854, 'home staff': 402111, 'staff arrange': 792218, 'arrange online': 93688, 'living facility': 496350, 'facility located': 295353, 'located on': 498821, 'site reservist': 772001, 'reservist leave': 714162, 'order several': 618566, 'delivery cost': 233827, 'care could your': 163904, 'could your care': 209855, 'care home staff': 164001, 'home staff arrange': 402113, 'staff arrange online': 792219, 'arrange online food': 93689, 'assisted living facility': 96815, 'living facility located': 496351, 'facility located on': 295354, 'located on the': 498822, 'on the same': 604344, 'the same site': 866297, 'same site reservist': 733290, 'site reservist leave': 772002, 'reservist leave their': 714163, 'leave their shopping': 484985, 'staff order several': 792727, 'order several re': 618567, 'avoid delivery cost': 105081, 'delivery cost and': 233828, 'cost and that': 207865, 'vat': 952723, 'should significantly': 766473, 'significantly reduce': 769607, 'reduce vat': 706000, 'vat to': 952739, 'boost consumer': 134931, 'demand around': 235029, 'world with': 1010195, 'with particularly': 1000101, 'particularly aggressive': 642660, 'aggressive reduction': 38253, 'in country': 421821, 'country hardest': 210731, 'we should significantly': 973293, 'should significantly reduce': 766475, 'significantly reduce vat': 769610, 'reduce vat to': 706001, 'vat to boost': 952740, 'to boost consumer': 901913, 'boost consumer demand': 134934, 'consumer demand around': 197116, 'demand around the': 235030, 'the world with': 872009, 'world with particularly': 1010200, 'with particularly aggressive': 1000102, 'particularly aggressive reduction': 642662, 'aggressive reduction in': 38254, 'reduction in country': 706359, 'in country hardest': 421826, 'country hardest hit': 210732, 'hardest hit by': 378216, 'hit by the': 398188, 'by the outbreak': 154401, 'lick': 488194, 'gone crazy': 356246, 'crazy stayhomesavelives': 215425, 'stayhomesavelives coronavirus': 798366, 'coronavirus arrest': 205517, 'arrest after': 93745, 'after men': 35926, 'men lick': 528500, 'lick hand': 488197, 'wipe food': 996257, 'ha gone crazy': 370722, 'gone crazy stayhomesavelives': 356248, 'crazy stayhomesavelives coronavirus': 215426, 'stayhomesavelives coronavirus arrest': 798367, 'coronavirus arrest after': 205518, 'arrest after men': 93747, 'after men lick': 35927, 'men lick hand': 528501, 'lick hand and': 488198, 'hand and wipe': 374788, 'and wipe food': 75735, 'wipe food from': 996258, 'food from supermarket': 314615, 'coronanl': 205093, 'franchise': 331060, 'photohops': 655314, 'deletes': 232852, 'sentence': 750858, 'stacker': 791999, '19 coronanl': 6072, 'coronanl supermarket': 205095, 'supermarket franchise': 820445, 'franchise photohops': 331069, 'photohops picture': 655315, 'picture and': 656105, 'and deletes': 61071, 'deletes the': 232853, 'last sentence': 480489, 'sentence shelf': 750868, 'shelf stacker': 757551, 'stacker we': 792030, 'cannot live': 162001, 'live without': 496124, 'you 14': 1016745, '14 euro': 3468, 'euro minimum': 283363, '19 coronanl supermarket': 6073, 'coronanl supermarket franchise': 205096, 'supermarket franchise photohops': 820446, 'franchise photohops picture': 331070, 'photohops picture and': 655316, 'picture and deletes': 656106, 'and deletes the': 61072, 'deletes the last': 232854, 'the last sentence': 859038, 'last sentence shelf': 480490, 'sentence shelf stacker': 750869, 'shelf stacker we': 757564, 'stacker we cannot': 792031, 'we cannot live': 971071, 'cannot live without': 162002, 'live without you': 496127, 'without you 14': 1003066, 'you 14 euro': 1016746, '14 euro minimum': 3469, 'euro minimum wage': 283364, 'humannature': 410798, 'enough police': 277569, 'to enforce': 905112, 'enforce food': 276668, 'food rationing': 316124, 'rationing at': 697791, 'at every': 98563, 'from national': 336545, 'national guard': 552518, 'guard emptyshelves': 367796, 'emptyshelves nofood': 275308, 'nofood hoarder': 566150, 'hoarder humannature': 399047, 'have enough police': 380461, 'enough police to': 277570, 'police to enforce': 663251, 'to enforce food': 905117, 'enforce food rationing': 276669, 'food rationing at': 316126, 'rationing at every': 697792, 'at every grocery': 98568, 'store do we': 807335, 'we need help': 972494, 'help from national': 389773, 'from national guard': 336547, 'national guard emptyshelves': 552522, 'guard emptyshelves nofood': 367797, 'emptyshelves nofood hoarder': 275309, 'nofood hoarder humannature': 566151, 'spindini': 789405, 'spindini on': 789406, 'on south': 603582, 'south main': 786765, 'main is': 508763, 'now south': 575873, 'main grocery': 508754, 'grocery what': 366127, 'idea our': 413151, 'our downtown': 622803, 'downtown neighbor': 257755, 'neighbor they': 557072, 'have special': 382673, 'and first': 62929, 'responder well': 715549, 'well senior': 978547, 'spindini on south': 789407, 'on south main': 603583, 'south main is': 786767, 'main is now': 508764, 'is now south': 450339, 'now south main': 575874, 'south main grocery': 786766, 'main grocery what': 508756, 'grocery what great': 366129, 'what great idea': 981518, 'great idea our': 362732, 'idea our downtown': 413152, 'our downtown neighbor': 622804, 'downtown neighbor they': 257756, 'neighbor they have': 557073, 'they have special': 882380, 'have special hour': 382675, 'for healthcare and': 322157, 'healthcare and first': 387028, 'and first responder': 62932, 'first responder well': 308973, 'responder well senior': 715550, 'greatgeneration': 363303, 'psa message': 687412, 'message please': 529400, 'call an': 155756, 'elderly neighbor': 270767, 'neighbor or': 557065, 'my case': 547630, 'case tonight': 166084, 'tonight see': 924486, 'anything there': 80903, 'no good': 564365, 'good reason': 357632, 'to pharmacy': 911691, 'now if': 574969, 'if each': 414067, 'each of': 264131, 'of doe': 582758, 'doe our': 251543, 'part we': 642483, 'the greatgeneration': 856758, 'psa message please': 687413, 'message please call': 529401, 'please call an': 659751, 'call an elderly': 155757, 'an elderly neighbor': 55639, 'elderly neighbor or': 270773, 'neighbor or in': 557067, 'or in my': 615754, 'in my case': 425548, 'my case tonight': 547631, 'case tonight see': 166085, 'tonight see if': 924487, 'see if they': 745283, 'if they need': 415119, 'they need anything': 882717, 'need anything there': 554462, 'anything there is': 80904, 'is no good': 449936, 'no good reason': 564371, 'good reason why': 357638, 'reason why you': 703065, 'why you should': 991599, 'you should go': 1021193, 'go to pharmacy': 354337, 'to pharmacy or': 911694, 'pharmacy or supermarket': 654402, 'or supermarket right': 617285, 'right now if': 722083, 'now if each': 574971, 'if each of': 414068, 'each of doe': 264133, 'of doe our': 582760, 'doe our part': 251546, 'our part we': 624269, 'part we can': 642484, 'we can save': 971002, 'can save the': 159507, 'save the greatgeneration': 737657, 'no 19': 563558, '19 food': 7039, 'gouging name': 359389, 'and shame': 71358, 'shame all': 754578, 'gouger for': 359217, 'for lettuce': 322953, 'lettuce is': 487458, 'is ridiculous': 451514, 'ridiculous fruit': 721544, 'veg price': 953777, 'price skyrocket': 676435, 'skyrocket amid': 773284, 'no 19 food': 563559, '19 food price': 7048, 'food price gouging': 315945, 'price gouging name': 674300, 'gouging name and': 359390, 'name and shame': 551611, 'and shame all': 71359, 'shame all price': 754579, 'all price gouger': 44033, 'price gouger for': 674244, 'gouger for lettuce': 359218, 'for lettuce is': 322955, 'lettuce is ridiculous': 487459, 'is ridiculous fruit': 451518, 'ridiculous fruit and': 721545, 'and veg price': 74865, 'veg price skyrocket': 953778, 'price skyrocket amid': 676436, 'skyrocket amid covid': 773286, 'upto': 947919, 'accidently': 28415, 'rcb': 698102, 'ipl2020': 444597, 'go upto': 354449, 'upto the': 947934, 'supermarket pick': 821987, 'up some': 946025, 'grocery accidently': 364207, 'accidently ended': 28416, 'in rcb': 427272, 'rcb trophy': 698103, 'trophy cabinet': 932565, 'cabinet stoppanicbuying': 155000, 'stoppanicbuying ipl2020': 805582, 'decided to go': 230917, 'to go upto': 906875, 'go upto the': 354450, 'upto the supermarket': 947935, 'the supermarket pick': 868751, 'supermarket pick up': 821989, 'pick up some': 655762, 'up some grocery': 946033, 'some grocery accidently': 782999, 'grocery accidently ended': 364208, 'accidently ended up': 28417, 'ended up in': 276142, 'up in rcb': 945175, 'in rcb trophy': 427273, 'rcb trophy cabinet': 698104, 'trophy cabinet stoppanicbuying': 932567, 'cabinet stoppanicbuying ipl2020': 155001, 'pipe': 656870, 'plc': 659520, 'the search': 866555, 'for commercial': 320181, 'commercial production': 188722, 'production remain': 682197, 'remain pipe': 709840, 'pipe dream': 656873, 'dream high': 258595, 'high annual': 394930, 'annual financial': 77396, 'financial loss': 306487, 'oil plc': 597011, 'plc due': 659521, 'to delay': 904079, 'delay and': 232670, 'and recent': 70037, 'recent decline': 703877, 'their worsening': 875241, 'why doe the': 990955, 'doe the search': 251618, 'the search for': 866556, 'search for commercial': 743244, 'for commercial production': 320184, 'commercial production remain': 188723, 'production remain pipe': 682198, 'remain pipe dream': 709841, 'pipe dream high': 656874, 'dream high annual': 258596, 'high annual financial': 394931, 'annual financial loss': 77397, 'financial loss of': 306489, 'loss of billion': 503737, 'of billion for': 580711, 'billion for oil': 130822, 'for oil plc': 324040, 'oil plc due': 597012, 'plc due to': 659522, 'due to delay': 261757, 'to delay and': 904080, 'delay and recent': 232672, 'and recent decline': 70038, 'recent decline in': 703878, 'decline in oil': 231361, 'price and their': 672560, 'and their worsening': 73728, 'preaching': 669235, 'kaki': 470687, 'meja': 527886, 'jangan': 464522, 'tapi': 834387, 'funny that': 341794, 'friend keep': 333694, 'on preaching': 602878, 'preaching about': 669236, 'about kaki': 25612, 'kaki meja': 470688, 'meja jangan': 527887, 'jangan tapi': 464523, 'tapi in': 834388, 'and showing': 71623, 'showing that': 767515, 'can sell': 159564, 'sell item': 748774, 'ever heard': 285349, 'heard ethical': 388075, 'ethical selling': 283088, 'funny that one': 341796, 'that one of': 845500, 'my friend keep': 548442, 'friend keep on': 333695, 'keep on preaching': 471706, 'on preaching about': 602879, 'preaching about kaki': 669237, 'about kaki meja': 25613, 'kaki meja jangan': 470689, 'meja jangan tapi': 527888, 'jangan tapi in': 464524, 'tapi in the': 834389, '19 and showing': 5106, 'and showing that': 71625, 'showing that you': 767519, 'you can sell': 1017777, 'can sell item': 159566, 'sell item from': 748776, 'item from china': 463282, 'from china for': 334860, 'china for time': 176668, 'for time the': 327191, 'time the real': 897871, 'real price have': 701313, 'price have you': 674471, 'have you ever': 383665, 'you ever heard': 1018459, 'ever heard ethical': 285350, 'heard ethical selling': 388076, 'trumpepicfailure': 934037, 'new trumpepicfailure': 559789, 'trumpepicfailure to': 934038, 'toiletpaper is business': 922135, 'is business opportunity': 446313, 'business opportunity in': 144154, 'opportunity in new': 613646, 'in new trumpepicfailure': 425832, 'new trumpepicfailure to': 559790, 'trumpepicfailure to manage': 934039, '9to5mac apple': 24037, '9to5mac apple confirms': 24038, 'panic placed': 638419, 'placed grocery': 657880, 'for wednesday': 327682, 'wednesday afternoon': 975608, 'afternoon because': 36675, 'into store': 443014, 'store make': 808852, 'me panic': 523317, 'panic panic': 638394, 'panic despite': 638031, 'despite running': 238842, 'of milk': 586500, 'milk today': 531873, 'thing wasn': 884953, 'wasn able': 967952, 'find were': 307380, 'were chicken': 979438, 'chicken ended': 175779, 'up getting': 945017, 'getting chicken': 348902, 'chicken tender': 175866, 'tender and': 837898, 'and paper': 68692, 'covid 19 food': 213110, '19 food panic': 7046, 'food panic placed': 315753, 'panic placed grocery': 638420, 'placed grocery order': 657881, 'grocery order for': 364811, 'order for pickup': 618239, 'for pickup for': 324548, 'pickup for wednesday': 655965, 'for wednesday afternoon': 327683, 'wednesday afternoon because': 975609, 'afternoon because the': 36676, 'because the idea': 119630, 'the idea of': 857826, 'idea of going': 413127, 'of going into': 584192, 'going into store': 355245, 'into store make': 443018, 'store make me': 808854, 'make me panic': 510138, 'me panic panic': 523321, 'panic panic despite': 638395, 'panic despite running': 638032, 'despite running out': 238843, 'out of milk': 626789, 'of milk today': 586521, 'milk today only': 531874, 'today only thing': 919990, 'only thing wasn': 611323, 'thing wasn able': 884954, 'wasn able to': 967953, 'able to find': 24481, 'to find were': 905952, 'find were chicken': 307381, 'were chicken ended': 979439, 'chicken ended up': 175780, 'ended up getting': 276140, 'up getting chicken': 945018, 'getting chicken tender': 348903, 'chicken tender and': 175867, 'tender and paper': 837899, 'and paper towel': 68696, 'anniversary': 76815, 'market plunge': 516860, 'plunge put': 661453, 'put pension': 690765, 'pension freedom': 646654, 'freedom to': 332389, 'the test': 869310, 'test on': 839106, 'it five': 458036, 'year anniversary': 1014412, 'anniversary beard': 76818, 'market plunge put': 516862, 'plunge put pension': 661454, 'put pension freedom': 690766, 'pension freedom to': 646655, 'freedom to the': 332395, 'to the test': 917119, 'the test on': 869316, 'test on it': 839109, 'on it five': 601660, 'it five year': 458037, 'five year anniversary': 309689, 'year anniversary beard': 1014413, 'temporarywork': 837728, 'temporaryvacancy': 837725, 'musicaltheatre': 546364, 'westend': 980579, 'lockdownlondon': 500314, 'do any': 249081, 'you lovely': 1019734, 'lovely people': 504971, 'work need': 1005484, 'want any': 965715, 'any temporary': 79945, 'temporary work': 837720, 'with me': 999437, 'at sainsburys': 100448, 'sainsburys in': 731761, 'in sydenham': 428773, 'sydenham im': 830680, 'im hiring': 416547, 'hiring hit': 397104, 'up hiring': 945083, 'hiring temporarywork': 397133, 'temporarywork temporaryvacancy': 837729, 'temporaryvacancy work': 837726, 'work job': 1005396, 'job musicaltheatre': 466012, 'musicaltheatre westend': 546365, 'westend sydenham': 980582, 'sydenham retail': 830682, 'retail lockdownlondon': 718293, 'do any of': 249083, 'any of you': 79543, 'of you lovely': 593400, 'you lovely people': 1019735, 'lovely people who': 504975, 'of work need': 593259, 'work need want': 1005485, 'need want any': 556171, 'want any temporary': 965719, 'any temporary work': 79946, 'temporary work with': 837721, 'work with me': 1006038, 'with me at': 999440, 'me at sainsburys': 522477, 'at sainsburys in': 100449, 'sainsburys in sydenham': 731763, 'in sydenham im': 428774, 'sydenham im hiring': 830681, 'im hiring hit': 416548, 'hiring hit me': 397105, 'me up hiring': 523857, 'up hiring temporarywork': 945085, 'hiring temporarywork temporaryvacancy': 397134, 'temporarywork temporaryvacancy work': 837730, 'temporaryvacancy work job': 837727, 'work job musicaltheatre': 1005397, 'job musicaltheatre westend': 466013, 'musicaltheatre westend sydenham': 546366, 'westend sydenham retail': 980583, 'sydenham retail lockdownlondon': 830683, 'here information': 393203, 'avoid being': 105009, 'being victim': 126038, 'the here information': 857289, 'here information on': 393204, 'to avoid being': 900868, 'avoid being victim': 105011, 'being victim of': 126040, 'victim of scam': 956500, 'governor stay': 360992, 'work order': 1005569, 'order is': 618330, 'in effect': 422504, 'effect learn': 269028, 'beach and': 118187, 'today covid': 919413, 'update read': 947188, 'the governor stay': 856645, 'governor stay at': 360993, 'at home or': 99069, 'home or work': 401759, 'or work order': 617838, 'work order is': 1005570, 'order is now': 618336, 'is now in': 450294, 'now in effect': 574998, 'in effect learn': 422507, 'effect learn more': 269029, 'about what that': 26898, 'what that mean': 982284, 'for the beach': 326316, 'the beach and': 849376, 'beach and the': 118189, 'and the grocery': 73402, 'store in today': 808404, 'in today covid': 430155, 'today covid 19': 919414, '19 update read': 11681, 'update read more': 947189, 'read more at': 700422, 'safe you': 730166, 'animal washyourhands': 76677, 'washyourhands staysafe': 967921, 'staysafe stoppanicbuying': 798927, 'stay safe you': 797303, 'safe you filthy': 730167, 'filthy animal washyourhands': 305792, 'animal washyourhands staysafe': 76678, 'washyourhands staysafe stoppanicbuying': 967922, 'newspaper': 561079, 'chancellor': 171839, 'merkel': 529143, 'berlin': 127335, 'newspaper post': 561096, 'post image': 666164, 'of german': 584106, 'german chancellor': 346208, 'chancellor merkel': 171844, 'merkel shopping': 529171, 'at berlin': 98122, 'berlin supermarket': 127346, 'newspaper post image': 561097, 'post image of': 666165, 'image of german': 416646, 'of german chancellor': 584107, 'german chancellor merkel': 346211, 'chancellor merkel shopping': 171846, 'merkel shopping at': 529172, 'shopping at berlin': 762087, 'at berlin supermarket': 98123, 'berlin supermarket in': 127349, 'supermarket in time': 820993, 'preserving': 670720, 'generation before': 345600, 'before were': 123296, 'were skilled': 980133, 'skilled at': 772993, 'at preserving': 100183, 'preserving seasonal': 670726, 'seasonal harvest': 743469, 'harvest and': 378603, 'and living': 66262, 'living off': 496424, 'extra food': 293511, 'when other': 983819, 'supply became': 824839, 'became scarce': 118885, 'scarce it': 740793, 'is useful': 453619, 'useful skill': 950189, 'skill to': 772978, 'it allows': 456394, 'generation before were': 345601, 'before were skilled': 123297, 'were skilled at': 980134, 'skilled at preserving': 772994, 'at preserving seasonal': 100184, 'preserving seasonal harvest': 670727, 'seasonal harvest and': 743470, 'harvest and living': 378604, 'and living off': 66264, 'living off of': 496426, 'off of that': 594010, 'of that extra': 590719, 'that extra food': 843810, 'extra food when': 293519, 'food when other': 317570, 'when other supply': 983821, 'other supply became': 621036, 'supply became scarce': 824840, 'became scarce it': 118886, 'scarce it is': 740794, 'it is useful': 459120, 'is useful skill': 453623, 'useful skill to': 950190, 'skill to have': 772979, 'have it allows': 381139, 'it allows to': 456396, 'allows to stock': 46404, 'food for time': 314583, 'for time when': 327193, 'when we need': 984459, 'we need it': 972501, 'chapter': 173129, 'chapter something': 173137, 'something of': 784991, 'damn why': 225465, 'cannot go': 161921, 'chapter something of': 173138, 'something of the': 784994, 'of the damn': 590925, 'the damn why': 852819, 'damn why we': 225466, 'why we cannot': 991519, 'we cannot go': 971063, 'cannot go to': 161933, 'verizon': 954819, 'so other': 777963, 'than waiving': 841421, 'waiving late': 964563, 'fee is': 302188, 'there anything': 878034, 'else verizon': 271956, 'verizon is': 954823, 'to actually': 900027, 'actually help': 30836, 'help customer': 389554, 'customer while': 223069, '19 those': 11358, 'in small': 428009, 'small town': 775158, 'town are': 927438, 'are paying': 89006, 'paying ridiculous': 645474, 'so other than': 777964, 'other than waiving': 621087, 'than waiving late': 841422, 'waiving late fee': 964564, 'late fee is': 480873, 'fee is there': 302191, 'is there anything': 452999, 'there anything else': 878035, 'anything else verizon': 80752, 'else verizon is': 271957, 'verizon is doing': 954824, 'doing to actually': 252783, 'to actually help': 900029, 'actually help customer': 30838, 'help customer while': 389562, 'customer while we': 223070, 'while we deal': 987545, 'deal with covid': 229546, 'covid 19 those': 213943, '19 those of': 11359, 'those of in': 892264, 'of in small': 585043, 'in small town': 428025, 'small town are': 775160, 'town are paying': 927441, 'are paying ridiculous': 89011, 'paying ridiculous price': 645475, 'ridiculous price just': 721593, 'price just for': 674973, 'just for necessity': 468754, 'cpd': 214573, 'supervising': 824379, 'fatally': 300256, 'flawed': 310266, 'be people': 116387, 'who die': 988596, 'die who': 241481, 'walmart because': 965283, 'this policy': 889649, 'policy cpd': 663371, 'cpd supervising': 214574, 'supervising attorney': 824380, 'attorney for': 102616, 'worker justice': 1007275, 'justice on': 470424, 'how walmart': 409160, 'walmart emergency': 965315, 'emergency sick': 272980, 'is fatally': 447754, 'fatally flawed': 300259, 'will be people': 992603, 'be people who': 116388, 'people who die': 650287, 'who die who': 988598, 'die who work': 241482, 'work at walmart': 1004910, 'at walmart because': 101473, 'walmart because of': 965284, 'of this policy': 592026, 'this policy cpd': 889651, 'policy cpd supervising': 663372, 'cpd supervising attorney': 214575, 'supervising attorney for': 824381, 'attorney for worker': 102618, 'for worker justice': 327939, 'worker justice on': 1007276, 'justice on how': 470425, 'on how walmart': 601431, 'how walmart emergency': 409161, 'walmart emergency sick': 965316, 'emergency sick leave': 272981, 'sick leave is': 768498, 'leave is fatally': 484840, 'is fatally flawed': 447755, 'nielsen': 562636, 'nielsen six': 562653, 'six threshold': 772702, 'threshold of': 894150, 'behavior regarding': 124167, '19 seo': 10414, 'mobileappdevelopment digitalmarketing': 535043, 'nielsen six threshold': 562655, 'six threshold of': 772703, 'threshold of consumer': 894151, 'consumer behavior regarding': 196505, 'behavior regarding covid': 124168, 'covid 19 seo': 213768, '19 seo sem': 10415, 'websitedevelopment mobileappdevelopment digitalmarketing': 975515, 'shutdown are': 767995, 'bank demand': 109759, '19 shutdown are': 10520, 'shutdown are increasing': 767996, 'are increasing food': 87485, 'food bank demand': 313550, 'inclined': 431491, 'premise': 669918, 'demographic': 236786, 'on older': 602502, 'older guest': 598611, 'guest le': 368166, 'le inclined': 482993, 'inclined to': 431492, 'use off': 949436, 'off premise': 594083, 'premise channel': 669923, 'channel operator': 172911, 'are scrambling': 89868, 'scrambling to': 742563, 'reach this': 699997, 'this demographic': 887205, 'demographic that': 236795, 'than third': 841308, 'industry traffic': 436187, 'interesting article on': 441512, 'article on the': 94414, 'of on older': 587221, 'on older guest': 602504, 'older guest le': 598612, 'guest le inclined': 368167, 'le inclined to': 482994, 'inclined to use': 431495, 'to use off': 918051, 'use off premise': 949437, 'off premise channel': 594084, 'premise channel operator': 669924, 'channel operator are': 172912, 'operator are scrambling': 613350, 'are scrambling to': 89869, 'scrambling to reach': 742571, 'to reach this': 912810, 'reach this demographic': 699998, 'this demographic that': 887206, 'demographic that is': 236796, 'that is responsible': 844647, 'responsible for more': 716037, 'more than third': 540686, 'than third of': 841309, 'third of the': 886090, 'of the restaurant': 591410, 'restaurant industry traffic': 716531, 'cwa': 223883, 'advocacy': 33794, 'lift': 489421, 'cwa and': 223884, 'consumer advocacy': 196057, 'advocacy group': 33803, 'group urge': 366951, 'urge broadband': 948163, 'broadband ceo': 140718, 'ceo to': 169858, 'to lift': 909258, 'lift data': 489436, 'data cap': 226159, 'cap and': 162405, 'and waive': 75129, 'waive fee': 964513, 'fee staysafe': 302231, 'staysafe stayhome': 798899, 'cwa and consumer': 223885, 'and consumer advocacy': 60344, 'consumer advocacy group': 196059, 'advocacy group urge': 33806, 'group urge broadband': 366953, 'urge broadband ceo': 948164, 'broadband ceo to': 140719, 'ceo to lift': 169861, 'to lift data': 909260, 'lift data cap': 489437, 'data cap and': 226160, 'cap and waive': 162407, 'and waive fee': 75130, 'waive fee staysafe': 964515, 'fee staysafe stayhome': 302232, 'streamer': 812803, 'gen medium': 345225, 'medium consumer': 527048, 'consumer streamer': 199167, 'gen medium consumer': 345226, 'medium consumer streamer': 527050, 'shouted': 766779, 'separate': 751063, 'got verbally': 359004, 'verbally abused': 954752, 'abused and': 27683, 'and shouted': 71602, 'shouted at': 766780, 'at by': 98178, 'by two': 154617, 'two group': 936948, 'of woman': 593220, 'woman today': 1003638, 'today separate': 920158, 'separate occasion': 751078, 'occasion because': 578934, 'have restricted': 382300, 'restricted product': 717158, 'to of': 910810, 'thing each': 884295, 'each corvid19uk': 264019, 'corvid19uk corona': 207743, 'corona retail': 204143, 'retailworkers supermarket': 719600, 'got verbally abused': 359005, 'verbally abused and': 954753, 'abused and shouted': 27684, 'and shouted at': 71603, 'shouted at by': 766782, 'at by two': 98182, 'by two group': 154619, 'two group of': 936949, 'group of woman': 366809, 'of woman today': 593223, 'woman today separate': 1003640, 'today separate occasion': 920159, 'separate occasion because': 751079, 'occasion because we': 578935, 'we have restricted': 971924, 'have restricted product': 382301, 'restricted product to': 717160, 'product to of': 681756, 'to of the': 910814, 'of the same': 591431, 'same thing each': 733333, 'thing each corvid19uk': 884296, 'each corvid19uk corona': 264020, 'corvid19uk corona retail': 207744, 'corona retail retailworkers': 204144, 'retail retailworkers supermarket': 718495, 'calgary': 155414, 'involving': 444390, 'westjet': 980675, 'of tuesday': 592491, 'tuesday afternoon': 935108, 'afternoon the': 36717, 'the calgary': 850275, 'calgary based': 155417, 'based airline': 111497, 'airline identified': 39969, 'identified 14': 413321, '14 case': 3429, '19 involving': 7921, 'involving passenger': 444408, 'passenger yyc': 643362, 'yyc westjet': 1027158, 'of tuesday afternoon': 592492, 'tuesday afternoon the': 935109, 'afternoon the calgary': 36718, 'the calgary based': 850276, 'calgary based airline': 155418, 'based airline identified': 111499, 'airline identified 14': 39970, 'identified 14 case': 413322, '14 case of': 3430, 'covid 19 involving': 213289, '19 involving passenger': 7922, 'involving passenger yyc': 444409, 'passenger yyc westjet': 643363, 'intimidating': 442336, 'daunt taking': 226941, 'taking it': 833406, 'it well': 462305, 'well abusing': 977990, 'abusing his': 27713, 'his staff': 397810, 'staff now': 792688, 'for talking': 326148, 'talking utter': 834057, 'shit before': 759068, 'before threatening': 123233, 'threatening job': 893812, 'then intimidating': 877272, 'intimidating author': 442337, 'author who': 103653, 'who should': 989610, 'than to': 841337, 'out against': 625586, 'against waterstones': 37739, 'james daunt taking': 464395, 'daunt taking it': 226942, 'taking it well': 833415, 'it well abusing': 462306, 'well abusing his': 977991, 'abusing his staff': 27714, 'his staff now': 397815, 'staff now for': 792689, 'now for talking': 574726, 'for talking utter': 326150, 'talking utter shit': 834058, 'utter shit before': 951430, 'shit before threatening': 759070, 'before threatening job': 123234, 'threatening job and': 893813, 'job and then': 465643, 'and then intimidating': 73776, 'then intimidating author': 877273, 'intimidating author who': 442338, 'author who should': 103654, 'who should know': 989613, 'know better than': 476310, 'better than to': 128540, 'than to speak': 841344, 'speak out against': 787704, 'out against waterstones': 625587, 'are holding': 87216, 'holding special': 400159, 'senior amp': 750192, 'amp people': 54282, 'more comment': 538837, 'comment below': 188389, 'below grateful': 126661, 'working around': 1008514, 'to restock': 913397, 'restock shelf': 716900, 'shelf keep': 757265, 'store clean': 806983, 'clean amp': 180452, 'store are holding': 806486, 'are holding special': 87221, 'holding special hour': 400162, 'for senior amp': 325454, 'senior amp people': 750193, 'amp people with': 54285, 'people with disability': 650443, 'with disability if': 998059, 'disability if you': 243829, 'know of more': 476645, 'of more comment': 586641, 'more comment below': 538838, 'comment below grateful': 188392, 'below grateful for': 126662, 'grateful for our': 362270, 'for our grocery': 324250, 'are working around': 91688, 'working around the': 1008515, 'around the clock': 93527, 'clock to restock': 182418, 'to restock shelf': 913410, 'restock shelf keep': 716905, 'shelf keep their': 757266, 'keep their store': 472097, 'their store clean': 874852, 'store clean amp': 806984, 'clean amp help': 180453, 'amp help our': 53926, 'to include': 908242, 'include key': 431583, 'your special': 1025879, 'worker am': 1006242, 'going in': 355212, 'monday next': 536342, 'child of': 176155, 'worker teacher': 1007882, 'teacher when': 835534, 'when can': 983230, 'shop covi': 760080, 'any other supermarket': 79608, 'other supermarket you': 621029, 'supermarket you need': 824201, 'need to include': 555969, 'to include key': 908247, 'include key worker': 431584, 'key worker in': 473489, 'worker in your': 1007212, 'in your special': 431124, 'your special hour': 1025880, 'hour for nh': 405609, 'for nh worker': 323866, 'nh worker am': 562171, 'worker am going': 1006245, 'am going in': 50086, 'going in on': 355219, 'in on monday': 426122, 'on monday next': 602176, 'monday next week': 536343, 'next week to': 561701, 'week to look': 977086, 'look after the': 502225, 'after the child': 36293, 'the child of': 850823, 'child of the': 176161, 'the nh worker': 861772, 'nh worker teacher': 562196, 'worker teacher when': 1007890, 'teacher when can': 835535, 'when can shop': 983233, 'can shop covi': 159603, 'posting again': 666641, 'again md': 37068, 'md employee': 522264, 'not wearing': 572473, 'mask today': 519431, 'today told': 920379, 'me management': 523136, 'management said': 512623, 'would get': 1011826, 'get employee': 346934, 'employee mask': 274040, 'week seriously': 976853, 'seriously hello': 751624, 'hello reporter': 389207, 'posting again md': 666642, 'again md employee': 37069, 'md employee not': 522265, 'employee not wearing': 274057, 'not wearing mask': 572477, 'wearing mask today': 974721, 'mask today told': 519435, 'today told me': 920380, 'told me management': 923612, 'me management said': 523137, 'management said it': 512624, 'it would get': 462591, 'would get employee': 1011828, 'get employee mask': 346935, 'employee mask in': 274041, 'mask in week': 518844, 'in week seriously': 430765, 'week seriously hello': 976854, 'seriously hello reporter': 751625, 'connectivity': 194727, 'connect': 194592, 'connectivity is': 194734, 'why ally': 990731, 'ally are': 46429, 'asking broadband': 95949, 'cap waive': 162453, 'fee do': 302157, 'everything within': 288116, 'within their': 1002443, 'people connect': 647526, 'connect to': 194627, 'world from': 1009570, 'home stop': 402156, 'connectivity is essential': 194735, 'is essential during': 447542, 'essential during time': 280981, 'during time of': 263347, 'of crisis that': 582189, 'crisis that why': 218158, 'that why ally': 847530, 'why ally are': 990732, 'ally are asking': 46430, 'are asking broadband': 84635, 'asking broadband ceo': 95950, 'data cap waive': 226162, 'cap waive fee': 162454, 'waive fee do': 964514, 'fee do everything': 302158, 'do everything within': 249272, 'everything within their': 288118, 'within their power': 1002445, 'power to help': 667709, 'help people connect': 390287, 'people connect to': 647527, 'connect to the': 194629, 'to the world': 917202, 'the world from': 871873, 'world from home': 1009572, 'from home stop': 335907, 'home stop the': 402158, 'fortunately': 329908, 'my grandparent': 548557, 'grandparent in': 361979, 'law what': 482443, 'need from': 554889, 'pick it': 655657, 'out during': 625985, 'they told': 883571, 'me all': 522368, 'need is': 555063, 'is wine': 453999, 'wine priority': 995875, 'priority fortunately': 678572, 'fortunately there': 329917, 'no wine': 565901, 'wine shortage': 995891, 'shortage right': 765201, 'now stayhome': 575895, 'asked my grandparent': 95802, 'my grandparent in': 548560, 'grandparent in law': 361980, 'in law what': 424638, 'law what they': 482444, 'they need from': 882735, 'need from the': 554892, 'grocery store so': 365779, 'store so can': 810216, 'so can pick': 776721, 'can pick it': 159232, 'pick it up': 655658, 'it up and': 461954, 'up and they': 944382, 'and they don': 73903, 'don have to': 253622, 'get out during': 347735, 'out during this': 625991, 'during this virus': 263335, 'this virus outbreak': 891019, 'outbreak they told': 628742, 'they told me': 883572, 'told me all': 923602, 'me all they': 522371, 'all they need': 45069, 'they need is': 882745, 'need is wine': 555076, 'is wine priority': 454000, 'wine priority fortunately': 995876, 'priority fortunately there': 678573, 'fortunately there no': 329918, 'there no wine': 878850, 'no wine shortage': 565903, 'wine shortage right': 995892, 'shortage right now': 765202, 'right now stayhome': 722142, '60seconds': 21170, 'becreative': 120361, 'bebetter': 118844, 'besafe': 127431, 'paper challenge': 640020, 'challenge is': 171491, 'great way': 363099, 'fun be': 341138, 'creative improve': 216142, 'improve soft': 419539, 'soft hand': 781473, 'hand eye': 374929, 'eye coordination': 294030, 'coordination 60seconds': 203212, '60seconds toiletpaper': 21171, 'toiletpaper becreative': 921797, 'becreative bebetter': 120362, 'bebetter besafe': 118845, 'toilet paper challenge': 921225, 'paper challenge is': 640021, 'challenge is great': 171492, 'is great way': 448213, 'great way to': 363100, 'way to have': 970036, 'to have fun': 907243, 'have fun be': 380743, 'fun be creative': 341139, 'be creative improve': 114287, 'creative improve soft': 216143, 'improve soft hand': 419540, 'soft hand and': 781474, 'hand and hand': 374761, 'and hand eye': 64139, 'hand eye coordination': 374930, 'eye coordination 60seconds': 294031, 'coordination 60seconds toiletpaper': 203213, '60seconds toiletpaper becreative': 21172, 'toiletpaper becreative bebetter': 921798, 'becreative bebetter besafe': 120363, 'extortionately': 293407, 'haji': 374078, 'briefing covid19': 139703, 'covid19 such': 214380, 'such shame': 816744, 'shame that': 754647, 'big asian': 129625, 'supermarket started': 822920, 'started charging': 794706, 'charging extortionately': 173473, 'extortionately high': 293412, 'are haji': 86984, 'haji such': 374081, 'shame for': 754595, 'these shameless': 880664, 'briefing covid19 such': 139705, 'covid19 such shame': 214381, 'such shame that': 816746, 'shame that some': 754650, 'that some of': 846390, 'the big asian': 849596, 'big asian supermarket': 129626, 'asian supermarket started': 95363, 'supermarket started charging': 822921, 'started charging extortionately': 794708, 'charging extortionately high': 173474, 'extortionately high price': 293413, 'high price most': 395258, 'price most of': 675277, 'of the owner': 591310, 'the owner are': 862805, 'owner are haji': 632386, 'are haji such': 86986, 'haji such shame': 374082, 'such shame for': 816745, 'shame for these': 754596, 'for these shameless': 326980, 'adulterated': 32872, 'who use': 989858, 'use sell': 949567, 'sell drug': 748692, 'drug help': 260972, 'help needed': 390137, 'needed is': 556408, 'there change': 878275, 'market stable': 517104, 'stable have': 791921, 'have price': 382035, 'price gone': 674218, 'up have': 945061, 'have deal': 380186, 'deal got': 229416, 'got smaller': 358836, 'smaller are': 775252, 'more adulterated': 538552, 'adulterated drug': 32873, 'drug are': 260880, 'are new': 88221, 'new drug': 558650, 'drug appearing': 260877, 'appearing are': 82161, 'people shifting': 649418, 'shifting to': 758563, 'to alternative': 900382, 'people who use': 650352, 'who use sell': 989862, 'use sell drug': 949568, 'sell drug help': 748693, 'drug help needed': 260973, 'help needed is': 390138, 'needed is there': 556409, 'is there change': 453003, 'there change in': 878276, 'market is the': 516646, 'is the market': 452859, 'the market stable': 860162, 'market stable have': 517105, 'stable have price': 791922, 'have price gone': 382038, 'price gone up': 674221, 'gone up have': 356421, 'up have deal': 945062, 'have deal got': 380187, 'deal got smaller': 229417, 'got smaller are': 358837, 'smaller are there': 775253, 'are there more': 90957, 'there more adulterated': 878765, 'more adulterated drug': 538553, 'adulterated drug are': 32874, 'drug are new': 260881, 'are new drug': 88222, 'new drug appearing': 558651, 'drug appearing are': 260878, 'appearing are people': 82162, 'are people shifting': 89048, 'people shifting to': 649419, 'shifting to alternative': 758564, 'ritual': 724151, 'meaningful': 524853, 'facetime': 295208, 'self care': 747555, 'care tip': 164233, 'tip start': 898902, 'start new': 794394, 'new isolation': 558950, 'isolation ritual': 455406, 'ritual create': 724152, 'create meaningful': 215683, 'meaningful ritual': 524858, 'ritual each': 724154, 'day like': 227906, 'walk at': 964749, 'at 4pm': 97671, '4pm or': 19505, 'or facetime': 615249, 'facetime family': 295215, 'family member': 298022, 'member every': 528073, 'every night': 286038, 'night for': 562993, 'more tip': 540779, 'manage stress': 512428, 'stress level': 813354, 'level during': 487553, '19 isolation': 8104, 'isolation please': 455390, 'please go': 660036, 'self care tip': 747560, 'care tip start': 164234, 'tip start new': 898903, 'start new isolation': 794397, 'new isolation ritual': 558951, 'isolation ritual create': 455407, 'ritual create meaningful': 724153, 'create meaningful ritual': 215684, 'meaningful ritual each': 524859, 'ritual each day': 724155, 'each day like': 264045, 'day like going': 227908, 'like going for': 490319, 'for walk at': 327611, 'walk at 4pm': 964750, 'at 4pm or': 97672, '4pm or facetime': 19506, 'or facetime family': 615251, 'facetime family member': 295216, 'family member every': 298031, 'member every night': 528074, 'every night for': 286041, 'night for more': 562996, 'for more tip': 323603, 'more tip to': 540782, 'tip to manage': 898933, 'to manage stress': 909798, 'manage stress level': 512429, 'stress level during': 813356, 'level during covid': 487554, 'covid 19 isolation': 213296, '19 isolation please': 8108, 'isolation please go': 455391, 'please go to': 660040, 'boerne': 133935, 'eatery': 266153, 'afloat': 34941, 'showcase': 767307, 'smallbusiness boerne': 775211, 'boerne texas': 133936, 'texas my': 839802, 'my hometown': 548698, 'hometown eatery': 402984, 'eatery ha': 266156, 'ha turned': 372378, 'turned into': 935843, 'stay afloat': 796744, 'afloat let': 34958, 'let showcase': 487050, 'showcase small': 767310, 'survive if': 829185, 'in boerne': 420888, 'texas stop': 839825, 'stop by': 804553, 'some homemade': 783052, 'homemade bread': 402818, 'bread they': 138612, 'no line': 564605, 'smallbusiness boerne texas': 775212, 'boerne texas my': 133937, 'texas my hometown': 839803, 'my hometown eatery': 548699, 'hometown eatery ha': 402985, 'eatery ha turned': 266157, 'ha turned into': 372380, 'turned into grocery': 935845, 'to stay afloat': 915268, 'stay afloat let': 796748, 'afloat let showcase': 34959, 'let showcase small': 487051, 'showcase small business': 767311, 'small business who': 774903, 'business who need': 144670, 'to survive if': 916034, 'survive if you': 829189, 're in boerne': 698864, 'in boerne texas': 420889, 'boerne texas stop': 133938, 'texas stop by': 839826, 'stop by and': 804555, 'by and buy': 151835, 'and buy some': 59352, 'buy some homemade': 149207, 'some homemade bread': 783053, 'homemade bread they': 402819, 'bread they re': 138613, 'they re on': 883085, 're on main': 699179, 'main street and': 508825, 'street and no': 812897, 'and no line': 67620, 'mncs': 534819, 'beautiful most': 118699, 'most indian': 542445, 'indian business': 434787, 'business house': 143856, 'house have': 406336, 'have come': 380025, 'come forward': 187295, 'forward while': 330051, 'while most': 987064, 'most mncs': 542515, 'mncs across': 534820, 'across sector': 29445, 'consumer pharma': 198363, 'pharma food': 654031, 'food fmcg': 314477, 'fmcg and': 311712, 'been seen': 121896, 'seen coming': 746981, '19 support': 10972, 'support they': 826915, 'make lot': 510102, 'of money': 586601, 'money with': 537181, 'beautiful most indian': 118700, 'most indian business': 542446, 'indian business house': 434788, 'business house have': 143858, 'house have come': 406337, 'have come forward': 380028, 'come forward while': 187298, 'forward while most': 330052, 'while most mncs': 987067, 'most mncs across': 542516, 'mncs across sector': 534821, 'across sector consumer': 29446, 'sector consumer pharma': 744135, 'consumer pharma food': 198364, 'pharma food fmcg': 654032, 'food fmcg and': 314478, 'fmcg and other': 311714, 'and other sector': 68400, 'other sector have': 620881, 'sector have not': 744212, 'not been seen': 568518, 'been seen coming': 121898, 'seen coming to': 746983, 'coming to pm': 188226, 'pm care for': 661874, 'care for covid': 163943, 'covid 19 support': 213892, '19 support they': 10977, 'support they make': 826918, 'they make lot': 882648, 'make lot of': 510103, 'lot of money': 504231, 'of money with': 586622, 'ranchi': 696553, 'nrlm': 576637, 'adoting': 32752, 'ayurved': 106362, 'ranchi nrlm': 696554, 'nrlm we': 576638, 'can control': 157989, 'control covid': 201990, 'effect by': 268977, 'by adoting': 151760, 'adoting ayurved': 32753, 'ayurved social': 106365, 'distancing cleanliness': 247081, 'cleanliness and': 181147, 'eating vegetarian': 266331, 'food avoid': 313484, 'avoid panic': 105206, 'panic stay': 638621, 'ranchi nrlm we': 696555, 'nrlm we can': 576639, 'we can control': 970926, 'can control covid': 157990, 'control covid 19': 201991, '19 effect by': 6723, 'effect by adoting': 268978, 'by adoting ayurved': 151761, 'adoting ayurved social': 32755, 'ayurved social distancing': 106366, 'social distancing cleanliness': 779582, 'distancing cleanliness and': 247082, 'cleanliness and eating': 181148, 'and eating vegetarian': 61884, 'eating vegetarian food': 266332, 'vegetarian food avoid': 954143, 'food avoid panic': 313487, 'avoid panic stay': 105211, 'panic stay at': 638622, 'tpi': 928068, 're tracking': 699728, 'tracking daily': 928331, 'daily change': 224541, 'uncertainty tpi': 939773, 'tpi coronavirus': 928069, 'consumer uncertainty': 199411, 'uncertainty index': 939705, 'index show': 434241, 'show rising': 767116, 'rising uncertainty': 723314, 'in twitter': 430351, 'twitter sentiment': 936708, 'sentiment this': 751009, 'week tweet': 977131, 'tweet volume': 936423, 'volume remain': 960167, 'remain high': 709757, 'high for': 395090, 'more chart': 538803, 'chart here': 173832, 'we re tracking': 972992, 're tracking daily': 699729, 'tracking daily change': 928332, 'daily change in': 224542, 'change in economic': 172116, 'in economic uncertainty': 422483, 'economic uncertainty tpi': 267351, 'uncertainty tpi coronavirus': 939774, 'tpi coronavirus consumer': 928070, 'coronavirus consumer uncertainty': 205689, 'consumer uncertainty index': 199412, 'uncertainty index show': 939706, 'index show rising': 434244, 'show rising uncertainty': 767117, 'rising uncertainty in': 723316, 'uncertainty in twitter': 939701, 'in twitter sentiment': 430353, 'twitter sentiment this': 936710, 'sentiment this week': 751011, 'this week tweet': 891287, 'week tweet volume': 977132, 'tweet volume remain': 936424, 'volume remain high': 960168, 'remain high for': 709760, 'high for more': 395092, 'for more chart': 323557, 'more chart here': 538804, 'ha today': 372324, 'today proposed': 920074, 'proposed range': 684537, 'measure stop': 525346, 'stop gap': 804681, 'gap to': 343465, 'support user': 826966, 'certain consumer': 169981, 'credit product': 216456, 'product if': 681271, 'if confirmed': 413977, 'confirmed the': 194201, 'measure would': 525437, 'would start': 1012264, 'into force': 442565, 'force by': 328350, 'by april': 151881, 'ha today proposed': 372327, 'today proposed range': 920076, 'proposed range of': 684538, 'range of temporary': 696723, 'temporary measure stop': 837666, 'measure stop gap': 525347, 'stop gap to': 804682, 'gap to support': 343467, 'to support user': 915983, 'support user of': 826967, 'user of certain': 950305, 'of certain consumer': 581248, 'certain consumer credit': 169983, 'consumer credit product': 197024, 'credit product if': 216459, 'product if confirmed': 681273, 'if confirmed the': 413978, 'confirmed the measure': 194203, 'the measure would': 860375, 'measure would start': 525438, 'would start to': 1012265, 'start to come': 794576, 'come into force': 187389, 'into force by': 442566, 'force by april': 328351, 'by april 2020': 151882, 'timeframe': 898453, 'tried twice': 931853, 'twice this': 936547, 'paper from': 640194, 'from different': 335142, 'different place': 242029, 'and none': 67680, 'none available': 566553, 'available looked': 104484, 'looked to': 502752, 'there already': 877966, 'already week': 47757, 'delivery timeframe': 234647, 'timeframe not': 898454, 'going well': 355806, 'well this': 978688, 'tried twice this': 931854, 'twice this week': 936549, 'week to buy': 977070, 'to buy toilet': 902323, 'toilet paper from': 921280, 'paper from different': 640195, 'from different place': 335144, 'different place and': 242030, 'place and none': 657317, 'and none available': 67681, 'none available looked': 566554, 'available looked to': 104485, 'looked to order': 502754, 'order online shopping': 618480, 'shopping and there': 762031, 'and there already': 73828, 'there already week': 877968, 'already week delivery': 47758, 'week delivery timeframe': 976142, 'delivery timeframe not': 234648, 'timeframe not going': 898455, 'not going well': 569705, 'going well this': 355807, 'bang': 109441, 'momentum here': 536152, 'here supermarket': 393623, 'empty return': 275025, 'return flight': 719837, 'flight are': 310430, 'are rare': 89437, 'rare school': 697095, 'open but': 612125, 'but access': 145049, 'to aged': 900176, 'aged care': 37947, 'care facility': 163924, 'facility is': 295350, 'closed the': 183363, 'best went': 127996, 'local mall': 498165, 'mall yesterday': 511864, 'wa ghost': 962204, 'town bang': 927443, 'virus is gaining': 958373, 'gaining momentum here': 342883, 'momentum here supermarket': 536153, 'here supermarket shelf': 393625, 'are empty return': 86166, 'empty return flight': 275026, 'return flight are': 719838, 'flight are rare': 310434, 'are rare school': 89438, 'rare school are': 697096, 'school are open': 741698, 'are open but': 88787, 'open but access': 612126, 'but access to': 145050, 'access to aged': 28215, 'to aged care': 900177, 'aged care facility': 37948, 'care facility is': 163928, 'facility is closed': 295351, 'is closed the': 446589, 'closed the government': 183365, 'government is doing': 360249, 'is doing it': 447281, 'doing it best': 252481, 'it best went': 456859, 'best went to': 127997, 'my local mall': 549126, 'local mall yesterday': 498166, 'mall yesterday and': 511865, 'it wa ghost': 462118, 'wa ghost town': 962205, 'ghost town bang': 349676, 'harassing': 377822, 'pedestrian': 646208, 'bonding': 134281, '19 benefit': 5372, 'benefit no': 127033, 'no mass': 564716, 'mass shooting': 519853, 'shooting or': 759769, 'or school': 616980, 'school shooting': 741915, 'shooting in': 759765, 'month gas': 537749, 'have dropped': 380369, 'dropped significantly': 260626, 'significantly have': 769577, 'seen video': 747346, 'police harassing': 663035, 'harassing pedestrian': 377829, 'pedestrian and': 646209, 'or shooting': 617050, 'shooting pedestrian': 759773, 'pedestrian out': 646213, 'fear for': 301128, 'life family': 488647, 'family bonding': 297661, 'bonding time': 134282, 'work stressful': 1005770, 'stressful job': 813501, 'covid 19 benefit': 212697, '19 benefit no': 5374, 'benefit no mass': 127034, 'no mass shooting': 564717, 'mass shooting or': 519855, 'shooting or school': 759770, 'or school shooting': 616981, 'school shooting in': 741916, 'shooting in month': 759766, 'in month gas': 425416, 'month gas price': 537750, 'gas price have': 343976, 'price have dropped': 674426, 'have dropped significantly': 380384, 'dropped significantly have': 260627, 'significantly have not': 769578, 'not seen video': 571513, 'seen video of': 747347, 'video of police': 956831, 'of police harassing': 588198, 'police harassing pedestrian': 663036, 'harassing pedestrian and': 377830, 'pedestrian and or': 646210, 'and or shooting': 68230, 'or shooting pedestrian': 617051, 'shooting pedestrian out': 759775, 'pedestrian out of': 646214, 'out of fear': 626733, 'of fear for': 583455, 'fear for their': 301132, 'for their life': 326845, 'their life family': 873830, 'life family bonding': 488648, 'family bonding time': 297662, 'bonding time for': 134283, 'who work stressful': 990042, 'work stressful job': 1005771, 'moral': 538393, 'schmutz': 741631, 'performing': 651490, 'random': 696597, 'so guess': 777214, 'guess the': 368046, 'the moral': 860870, 'moral of': 538405, 'story is': 812018, 'is check': 446502, 'check your': 174728, 'your damn': 1023451, 'damn face': 225347, 'face for': 294444, 'for schmutz': 325384, 'schmutz before': 741632, 'before performing': 123011, 'performing random': 651504, 'random act': 696598, 'of kindness': 585642, 'public toiletpaper': 688385, 'toiletpapercrisis panicbuyers': 923051, 'panicbuyers groceryshopping': 638855, 'groceryshopping kindness': 366270, 'kindness 19': 475182, 'so guess the': 777217, 'guess the moral': 368053, 'the moral of': 860872, 'moral of the': 538406, 'of the story': 591499, 'the story is': 868177, 'story is check': 812019, 'is check your': 446503, 'check your damn': 174731, 'your damn face': 1023452, 'damn face for': 225348, 'face for schmutz': 294446, 'for schmutz before': 325385, 'schmutz before performing': 741633, 'before performing random': 123012, 'performing random act': 651505, 'random act of': 696599, 'act of kindness': 29724, 'of kindness in': 585647, 'kindness in public': 475209, 'in public toiletpaper': 427106, 'public toiletpaper toiletpapercrisis': 688386, 'toiletpaper toiletpapercrisis panicbuyers': 922660, 'toiletpapercrisis panicbuyers groceryshopping': 923052, 'panicbuyers groceryshopping kindness': 638856, 'groceryshopping kindness 19': 366271, 'louisiana': 504538, 'satan': 736920, 'louisiana church': 504541, 'church expecting': 178359, 'expecting 00': 291026, '00 at': 71, 'at easter': 98513, 'service despite': 752286, 'coronavirus satan': 206707, 'satan and': 736921, 'virus will': 959038, 'louisiana church expecting': 504542, 'church expecting 00': 178360, 'expecting 00 at': 291027, '00 at easter': 73, 'at easter service': 98514, 'easter service despite': 265486, 'service despite coronavirus': 752287, 'despite coronavirus satan': 238709, 'coronavirus satan and': 206708, 'satan and virus': 736922, 'and virus will': 74980, 'virus will not': 959045, 'boomplay': 134911, '19 boomplay': 5417, 'boomplay prepared': 134912, 'drop subscription': 260400, 'subscription price': 815902, 'covid 19 boomplay': 212717, '19 boomplay prepared': 5418, 'boomplay prepared to': 134913, 'prepared to drop': 670250, 'to drop subscription': 904781, 'drop subscription price': 260401, 'rewe': 720818, 'potsdam': 667258, 'people wait': 650104, 'enter shop': 278287, 'shop behind': 759982, 'behind red': 124690, 'red line': 705595, 'line that': 493444, 'that mark': 845039, 'mark the': 515829, 'distance customer': 246688, 'keep between': 471343, 'between them': 128939, 'at rewe': 100308, 'rewe grocery': 720819, 'in potsdam': 426868, 'potsdam germany': 667259, 'germany reuters': 346348, 'people wait to': 650110, 'wait to enter': 964225, 'to enter shop': 905223, 'enter shop behind': 278288, 'shop behind red': 759983, 'behind red line': 124691, 'red line that': 705596, 'line that mark': 493448, 'that mark the': 845040, 'mark the distance': 515830, 'the distance customer': 853419, 'distance customer have': 246690, 'customer have to': 222443, 'have to keep': 383234, 'to keep between': 908760, 'keep between them': 471344, 'between them at': 128942, 'them at rewe': 875444, 'at rewe grocery': 100309, 'rewe grocery store': 720820, 'store in potsdam': 808374, 'in potsdam germany': 426869, 'potsdam germany reuters': 667260, 'll probably': 496962, 'see high': 745193, 'high number': 395183, 'american you ll': 52333, 'you ll probably': 1019668, 'll probably see': 496964, 'probably see high': 679368, 'see high number': 745195, 'high number of': 395184, 'hosted our': 404923, 'first live': 308767, 'live consumer': 495770, 'consumer roundtable': 198841, 'discussion to': 245049, 'take pulse': 832534, 'pulse on': 688985, 'consumer evolving': 197382, 'evolving attitude': 288545, 'are five': 86593, 'five takeaway': 309663, 'takeaway of': 832886, 'we learned': 972178, 'learned mrx': 484130, 'we hosted our': 972043, 'hosted our first': 404924, 'our first live': 623082, 'first live consumer': 308768, 'live consumer roundtable': 495772, 'consumer roundtable discussion': 198842, 'roundtable discussion to': 726396, 'discussion to take': 245050, 'to take pulse': 916228, 'take pulse on': 832535, 'pulse on consumer': 688986, 'on consumer evolving': 600044, 'consumer evolving attitude': 197383, 'evolving attitude and': 288546, 'and behavior during': 58840, 'behavior during the': 124012, 'coronavirus pandemic here': 206463, 'here are five': 392740, 'are five takeaway': 86596, 'five takeaway of': 309664, 'takeaway of what': 832887, 'what we learned': 982555, 'we learned mrx': 972180, 'learned mrx consumerbehavior': 484131, 'odds': 579206, 'isn hard': 454539, 'hard any': 377866, 'any big': 78972, 'support must': 826653, 'must put': 546823, 'it worker': 462515, 'make serious': 510446, 'serious long': 751421, 'term change': 838089, 'the odds': 862038, 'odds they': 579219, 'ever need': 285426, 'another bailout': 77510, 'bailout here': 108637, 'are eight': 86088, 'eight requirement': 270195, 'requirement for': 713431, 'any bailouts': 78960, 'bailouts you': 108710, 'can read': 159381, 'read them': 700596, 'this isn hard': 888487, 'isn hard any': 454540, 'hard any big': 377867, 'any big company': 78973, 'company that need': 191181, 'that need support': 845310, 'need support must': 555688, 'support must put': 826654, 'must put it': 546824, 'put it worker': 690651, 'it worker first': 462520, 'worker first and': 1006948, 'first and make': 308503, 'and make serious': 66574, 'make serious long': 510447, 'serious long term': 751422, 'long term change': 501676, 'term change to': 838091, 'change to reduce': 172358, 'reduce the odds': 705969, 'the odds they': 862042, 'odds they ever': 579220, 'they ever need': 882059, 'ever need another': 285427, 'need another bailout': 554446, 'another bailout here': 77511, 'bailout here are': 108638, 'here are eight': 392737, 'are eight requirement': 86089, 'eight requirement for': 270196, 'requirement for any': 713432, 'for any bailouts': 319395, 'any bailouts you': 78961, 'bailouts you can': 108711, 'you can read': 1017760, 'can read them': 159384, 'read them here': 700597, 'thats': 847797, 'pilling': 656689, 'fuckoffcoronavirus': 340074, 'wake me': 964583, 'shit all': 759050, 'over no': 630433, 'no summer': 565615, 'summer holiday': 817980, 'holiday no': 400336, 'no pub': 565241, 'pub no': 687736, 'no football': 564289, 'football all': 318482, 'all thats': 44652, 'thats left': 847818, 'selfish stock': 748268, 'stock pilling': 802681, 'pilling at': 656690, 'store fuckoffcoronavirus': 807895, 'wake me up': 964584, 'me up when': 523864, 'up when this': 946581, 'when this shit': 984310, 'this shit all': 890074, 'shit all blow': 759051, 'blow over no': 133342, 'over no food': 630434, 'no food no': 564264, 'food no summer': 315553, 'no summer holiday': 565616, 'summer holiday no': 817981, 'holiday no pub': 400338, 'no pub no': 565242, 'pub no football': 687737, 'no football all': 564290, 'football all thats': 318484, 'all thats left': 44653, 'thats left is': 847819, 'left is selfish': 485527, 'is selfish stock': 451746, 'selfish stock pilling': 748270, 'stock pilling at': 802682, 'pilling at the': 656691, 'the store fuckoffcoronavirus': 868025, 'kindnesspandemic': 475236, 'thinkingofothers': 886037, 'kind think': 474993, 'others and': 621250, 'my method': 549238, 'method of': 529782, 'of trying': 592488, 'remain positive': 709844, 'positive please': 665415, 'please give': 660023, 'give this': 350777, 'this read': 889809, 'read kindnesspandemic': 700389, 'kindnesspandemic thinkingofothers': 475239, 'thinkingofothers mentalhealthawareness': 886040, 'be kind think': 115631, 'kind think of': 474995, 'of others and': 587382, 'others and if': 621259, 'want to read': 966097, 'to read my': 912835, 'read my method': 700466, 'my method of': 549240, 'method of trying': 529786, 'of trying to': 592490, 'trying to remain': 934855, 'to remain positive': 913170, 'remain positive please': 709845, 'positive please give': 665416, 'please give this': 660032, 'give this read': 350780, 'this read kindnesspandemic': 889812, 'read kindnesspandemic thinkingofothers': 700390, 'kindnesspandemic thinkingofothers mentalhealthawareness': 475240, 'hurry': 411501, 'fighttogether': 305167, 'belgavi': 126159, 'tnc': 899397, 'inside download': 439251, 'download the': 257623, 'the app': 848816, 'get 50': 346485, 'off on': 594019, 'your first': 1023891, 'first medicine': 308784, 'medicine order': 526861, 'order install': 618328, 'install now': 439998, 'now hurry': 574963, 'hurry limited': 411515, 'only sanitizer': 611083, 'handsanitizer quarantine': 376620, 'lockdown fighttogether': 499380, 'fighttogether stayathome': 305170, 'stayathome staysafe': 797658, 'staysafe belgavi': 798786, 'belgavi tnc': 126160, 'safe stay inside': 729974, 'stay inside download': 797097, 'inside download the': 439252, 'download the app': 257624, 'the app and': 848817, 'app and get': 81672, 'and get 50': 63559, 'get 50 off': 346486, '50 off on': 19781, 'off on your': 594023, 'on your first': 605465, 'your first medicine': 1023893, 'first medicine order': 308785, 'medicine order install': 526862, 'order install now': 618329, 'install now hurry': 439999, 'now hurry limited': 574964, 'hurry limited time': 411516, 'limited time only': 492757, 'time only sanitizer': 897418, 'only sanitizer handsanitizer': 611085, 'sanitizer handsanitizer quarantine': 735036, 'handsanitizer quarantine lockdown': 376621, 'quarantine lockdown fighttogether': 692349, 'lockdown fighttogether stayathome': 499381, 'fighttogether stayathome staysafe': 305171, 'stayathome staysafe belgavi': 797659, 'staysafe belgavi tnc': 798787, 'baseline': 111783, 'primarily': 678027, 'ha grown': 370778, 'grown 25': 367267, '25 from': 15868, 'from march': 336340, 'march 13': 515065, '13 15': 3159, '15 compared': 3684, 'to baseline': 901057, 'baseline period': 111784, 'march 11': 515052, '11 driven': 2514, 'driven primarily': 259345, 'primarily by': 678028, 'ongoing situation': 607688, 'ecommerce ha grown': 266784, 'ha grown 25': 370779, 'grown 25 from': 367268, '25 from march': 15870, 'from march 13': 336342, 'march 13 15': 515066, '13 15 compared': 3160, '15 compared to': 3685, 'compared to baseline': 191422, 'to baseline period': 901058, 'baseline period of': 111785, 'period of march': 651847, 'of march 11': 586192, 'march 11 driven': 515055, '11 driven primarily': 2515, 'driven primarily by': 259346, 'primarily by online': 678029, 'by online grocery': 153434, 'grocery shopping due': 365017, 'to the ongoing': 916920, 'the ongoing situation': 862255, 'ongoing situation with': 607691, 'situation with covid': 772595, 'paycheck': 645267, 'wreck': 1012703, 're dying': 698578, 'dying so': 263865, 'eat and': 265845, 'get paycheck': 347796, 'paycheck not': 645299, 'not worker': 572542, 'local iga': 498100, 'iga store': 415691, 'had protection': 373433, 'and each': 61833, 'each were': 264334, 'were too': 980282, 'close like': 182700, 'like nothing': 490883, 'nothing wa': 573210, 'wa wrong': 963749, 'wrong foodsupply': 1013032, 'foodsupply can': 318199, 'can wreck': 160258, 'wreck it': 1012708, 'be soon': 117311, 'soon groceryworkers': 785731, 'they re dying': 883022, 're dying so': 698579, 'dying so we': 263866, 'we can eat': 970938, 'can eat and': 158190, 'eat and they': 265849, 'they can get': 881632, 'can get paycheck': 158442, 'get paycheck not': 347797, 'paycheck not worker': 645300, 'not worker at': 572543, 'worker at my': 1006470, 'my local iga': 549122, 'local iga store': 498102, 'iga store had': 415692, 'store had protection': 808044, 'had protection and': 373434, 'protection and each': 685316, 'and each were': 61837, 'each were too': 264335, 'were too close': 980284, 'too close like': 924656, 'close like nothing': 182701, 'like nothing wa': 490885, 'nothing wa wrong': 573212, 'wa wrong foodsupply': 963750, 'wrong foodsupply can': 1013033, 'foodsupply can wreck': 318200, 'can wreck it': 160259, 'wreck it and': 1012709, 'and that may': 73201, 'may be soon': 521032, 'be soon groceryworkers': 117312, '19 guide': 7312, 'guide how': 368330, 'manage and': 512373, 'during great': 262668, '19 guide how': 7313, 'guide how to': 368331, 'to manage and': 909787, 'manage and during': 512374, 'and during great': 61809, 'during great advice': 262669, 'great advice from': 362489, 'advice from our': 33390, 'from our friend': 336773, 'fema': 303483, 'competing': 191623, 'medicalequipment': 526522, 'protectivegear': 685820, 'trumpliesamericansdie': 934080, 'eucommission': 283310, 'dear usa': 229907, 'usa trump': 948777, 'trump fema': 933555, 'fema this': 303496, 'avoid state': 105295, 'state competing': 795469, 'competing with': 191645, 'with each': 998162, 'for medicalequipment': 323388, 'medicalequipment protectivegear': 526524, 'protectivegear trumpliesamericansdie': 685821, 'trumpliesamericansdie eu': 934081, 'eu eucommission': 283229, 'dear usa trump': 229908, 'usa trump fema': 948779, 'trump fema this': 933556, 'fema this is': 303497, 'how you avoid': 409273, 'you avoid state': 1017354, 'avoid state competing': 105296, 'state competing with': 795472, 'competing with each': 191646, 'with each other': 998164, 'other and driving': 619823, 'up price for': 945814, 'price for medicalequipment': 674001, 'for medicalequipment protectivegear': 323389, 'medicalequipment protectivegear trumpliesamericansdie': 526525, 'protectivegear trumpliesamericansdie eu': 685822, 'trumpliesamericansdie eu eucommission': 934082, 'is beyond': 446158, 'beyond ridiculous': 129223, 'ridiculous went': 721636, 'place my': 657582, 'usual dog': 950930, 'dog food': 252075, 'food order': 315675, 'the individual': 858140, 'individual food': 435181, 'food were': 317549, 'were sold': 980147, 'that possible': 845789, 'possible do': 665628, 'you feed': 1018528, 'feed your': 302410, 'your dog': 1023552, 'dog the': 252173, 'same amount': 732960, 'amount every': 53174, 'level of people': 487653, 'of people panic': 587964, 'buying is beyond': 150561, 'is beyond ridiculous': 446162, 'beyond ridiculous went': 129225, 'ridiculous went to': 721637, 'went to place': 979182, 'to place my': 911753, 'place my usual': 657586, 'my usual dog': 550475, 'usual dog food': 950931, 'dog food order': 252087, 'food order online': 315682, 'order online at': 618465, 'online at and': 607884, 'at and all': 97998, 'all the individual': 44794, 'the individual food': 858146, 'individual food were': 435182, 'food were sold': 317551, 'were sold out': 980149, 'sold out how': 781734, 'out how is': 626326, 'is that possible': 452679, 'that possible do': 845791, 'possible do you': 665630, 'do you feed': 250629, 'you feed your': 1018529, 'feed your dog': 302411, 'your dog the': 1023557, 'dog the same': 252174, 'the same amount': 866195, 'same amount every': 732961, 'amount every month': 53175, 'traveller': 930667, 'regionalsecurity': 707534, 'paper symbol': 640861, 'symbol of': 830768, 'via virus': 956357, 'virus health': 958272, 'health healthcare': 386485, 'healthcare medicine': 387186, 'medicine science': 526881, 'science research': 742128, 'research travel': 713874, 'travel traveller': 930551, 'traveller economy': 930670, 'economy politics': 268146, 'politics regionalsecurity': 663799, 'regionalsecurity who': 707535, 'who tp': 989813, 'toiletpaper loo': 922202, 'toilet paper symbol': 921480, 'paper symbol of': 640862, 'symbol of the': 830773, 'coronavirus crisis via': 205777, 'crisis via virus': 218319, 'via virus health': 956358, 'virus health healthcare': 958273, 'health healthcare medicine': 386487, 'healthcare medicine science': 387187, 'medicine science research': 526882, 'science research travel': 742130, 'research travel traveller': 713876, 'travel traveller economy': 930552, 'traveller economy politics': 930671, 'economy politics regionalsecurity': 268148, 'politics regionalsecurity who': 663800, 'regionalsecurity who tp': 707536, 'who tp toiletpaper': 989814, 'tp toiletpaper loo': 928000, 'over week': 630906, 'really aren': 701993, 'aren taking': 92543, 'time in over': 897006, 'in over week': 426381, 'over week people': 630914, 'week people really': 976740, 'people really aren': 649240, 'really aren taking': 701994, 'aren taking this': 92547, 'this seriously are': 890036, 'seriously are they': 751536, 'lcdc': 482793, 'cabby': 154954, 'mercedes': 528942, 'lcdc just': 482794, 'just spoke': 469850, 'to cabby': 902362, 'cabby who': 154959, 'now working': 576474, 'working supermarket': 1008927, 'supermarket checkout': 819661, 'checkout to': 175039, 'that cabby': 843079, 'cabby said': 154955, 'said took': 731529, 'took 100': 925190, '100 out': 2010, 'account and': 28625, 'the hotline': 857567, 'hotline is': 405248, 'never answered': 557858, 'answered not': 78179, 'good mercedes': 357384, 'lcdc just spoke': 482795, 'just spoke to': 469851, 'spoke to cabby': 789725, 'to cabby who': 902363, 'cabby who is': 154960, 'who is now': 989095, 'is now working': 450358, 'now working supermarket': 576476, 'working supermarket checkout': 1008929, 'supermarket checkout to': 819672, 'checkout to make': 175041, 'meet and that': 527417, 'and that cabby': 73183, 'that cabby said': 843080, 'cabby said took': 154956, 'said took 100': 731530, 'took 100 out': 925191, '100 out of': 2011, 'of their account': 591639, 'their account and': 872453, 'account and the': 28630, 'and the hotline': 73410, 'the hotline is': 857568, 'hotline is never': 405249, 'is never answered': 449879, 'never answered not': 557859, 'answered not good': 78180, 'not good mercedes': 569725, '01892': 786, '838': 22867, '619': 21212, 'advice or': 33463, 'or information': 615799, 'consumer issue': 197946, 'issue debt': 455715, 'debt employment': 230476, 'employment family': 274598, 'and relationship': 70186, 'relationship matter': 708700, 'matter housing': 520569, 'housing welfare': 407166, 'welfare benefit': 977942, 'benefit or': 127054, 'else during': 271679, 'open just': 612347, 'just call': 468407, 'call 01892': 155673, '01892 838': 787, '838 619': 22868, '619 or': 21215, 'email info': 272211, 'info org': 437543, 'org advice': 619175, 'you need advice': 1019961, 'need advice or': 554373, 'advice or information': 33464, 'or information about': 615800, 'information about consumer': 437702, 'about consumer issue': 24999, 'consumer issue debt': 197948, 'issue debt employment': 455716, 'debt employment family': 230477, 'employment family and': 274599, 'family and relationship': 297599, 'and relationship matter': 70187, 'relationship matter housing': 708701, 'matter housing welfare': 520570, 'housing welfare benefit': 407167, 'welfare benefit or': 977943, 'benefit or anything': 127055, 'anything else during': 80743, 'else during the': 271680, 'outbreak we are': 628794, 'still open just': 800965, 'open just call': 612348, 'just call 01892': 468408, 'call 01892 838': 155674, '01892 838 619': 788, '838 619 or': 22869, '619 or email': 21216, 'or email info': 615146, 'email info org': 272214, 'info org advice': 437544, 'salford': 732711, 'refuse': 707010, 'salford coronavirus': 732712, 'coronavirus case': 205611, 'by just': 152972, 'just people': 469443, 'people urged': 650060, 'make 30': 509635, '30 second': 17216, 'second thank': 743827, 'you video': 1022081, 'staff health': 792519, 'worker refuse': 1007676, 'refuse collector': 707011, 'salford coronavirus case': 732713, 'coronavirus case increase': 205616, 'case increase by': 165817, 'increase by just': 432708, 'by just people': 152975, 'just people urged': 469445, 'people urged to': 650062, 'urged to make': 948290, 'to make 30': 909615, 'make 30 second': 509636, '30 second thank': 17217, 'second thank you': 743828, 'thank you video': 841840, 'you video for': 1022082, 'video for frontline': 956729, 'for frontline worker': 321781, 'frontline worker supermarket': 338872, 'worker supermarket staff': 1007860, 'supermarket staff health': 822854, 'staff health worker': 792522, 'health worker refuse': 386989, 'worker refuse collector': 1007677, 'refuse collector etc': 707013, 'for stop': 325923, 'leave enough': 484778, 'community is calling': 189930, 'is calling for': 446351, 'calling for stop': 156561, 'for stop to': 325925, 'stop to panic': 805222, 'buying and leave': 149918, 'and leave enough': 66050, 'leave enough food': 484779, 'for the and': 326301, 'the and most': 848709, 'and most people': 67273, 'most people in': 542617, 'people in society': 648431, 'anyone asked': 80184, 'asked the': 95834, 'bank why': 110308, 'to tap': 916295, 'tap our': 834332, 'our pin': 624347, 'pin into': 656772, 'into card': 442449, 'card reader': 163628, 'reader when': 700707, 'amount is': 53195, 'over 30': 629817, '30 the': 17233, 'on these': 604556, 'these in': 880154, 'supermarket must': 821551, 'be off': 116149, 'the scale': 866403, 'scale just': 739895, 'just raise': 469543, 'raise contactless': 695825, 'contactless to': 200386, 'to 100': 899433, '100 for': 1899, 'ha anyone asked': 369577, 'anyone asked the': 80185, 'asked the bank': 95836, 'the bank why': 849258, 'bank why we': 110310, 'why we still': 991530, 'still have to': 800666, 'have to tap': 383317, 'to tap our': 916296, 'tap our pin': 834333, 'our pin into': 624348, 'pin into card': 656773, 'into card reader': 442450, 'card reader when': 163632, 'reader when the': 700708, 'when the amount': 984126, 'the amount is': 848652, 'amount is over': 53196, 'is over 30': 450680, 'over 30 the': 629822, '30 the amount': 17234, 'amount of germ': 53224, 'germ on these': 346140, 'on these in': 604566, 'these in supermarket': 880157, 'in supermarket must': 428636, 'supermarket must be': 821552, 'must be off': 546527, 'be off the': 116150, 'off the scale': 594265, 'the scale just': 866405, 'scale just raise': 739896, 'just raise contactless': 469544, 'raise contactless to': 695826, 'contactless to 100': 200387, 'to 100 for': 899437, '100 for now': 1903, 'my platform': 549788, 'platform because': 658949, 'because think': 119734, 'important thank': 419005, 'it 19': 456181, 'posting this on': 666698, 'this on all': 889210, 'on all my': 599235, 'all my platform': 43568, 'my platform because': 549789, 'platform because think': 658950, 'because think it': 119735, 'think it important': 885337, 'it important thank': 458709, 'important thank your': 419006, 'worker we need': 1008146, 'need it 19': 555078, 'soybean': 786976, 'scenario': 741244, 'the 30': 848084, '30 corn': 17004, 'and 30': 57438, '30 soybean': 17224, 'soybean price': 786985, 'are based': 84784, 'on current': 600182, 'current cash': 221118, 'cash bid': 166182, 'bid for': 129470, '2020 crop': 14262, 'crop and': 218893, 'necessarily the': 553934, 'worst case': 1011153, 'case scenario': 165999, 'scenario for': 741255, 'for return': 325209, 'return in': 719858, 'the 30 corn': 848085, '30 corn price': 17005, 'corn price and': 203581, 'price and 30': 672355, 'and 30 soybean': 57444, '30 soybean price': 17225, 'soybean price are': 786987, 'price are based': 672637, 'are based on': 84785, 'based on current': 111674, 'on current cash': 600185, 'current cash bid': 221119, 'cash bid for': 166183, 'bid for the': 129472, 'for the 2020': 326283, 'the 2020 crop': 848020, '2020 crop and': 14263, 'crop and are': 218894, 'are not necessarily': 88418, 'not necessarily the': 570629, 'necessarily the worst': 553936, 'the worst case': 872043, 'worst case scenario': 1011156, 'case scenario for': 166002, 'scenario for return': 741258, 'for return in': 325210, 'return in 2020': 719859, 'dtc': 261383, 'slated': 773693, 'to shift': 914410, 'shift from': 758291, 'from nice': 336582, 'have product': 382060, 'to must': 910361, 'product many': 681396, 'many dtc': 514014, 'dtc unicorn': 261403, 'unicorn are': 941726, 'are slated': 90170, 'slated to': 773694, 'to struggle': 915685, 'sale continue to': 732141, 'continue to shift': 201257, 'to shift from': 914413, 'shift from nice': 758296, 'from nice to': 336583, 'nice to have': 562488, 'to have product': 907292, 'have product to': 382063, 'product to must': 681755, 'to must have': 910364, 'must have product': 546705, 'have product many': 382062, 'product many dtc': 681397, 'many dtc unicorn': 514015, 'dtc unicorn are': 261404, 'unicorn are slated': 941727, 'are slated to': 90171, 'slated to struggle': 773695, 'k12': 470556, 'care center': 163882, 'center close': 169171, 'close in': 182669, 'pandemic advocate': 634800, 'processing worker': 680048, 'be eligible': 114659, 'same emergency': 733048, 'emergency child': 272627, 'care available': 163858, 'to front': 906269, 'line medical': 493258, 'worker education': 1006830, 'education k12': 268833, 'school and child': 741683, 'and child care': 59826, 'child care center': 176037, 'care center close': 163883, 'center close in': 169172, 'close in response': 182673, 'the pandemic advocate': 862895, 'pandemic advocate are': 634801, 'advocate are calling': 33824, 'are calling for': 85146, 'calling for grocery': 156553, 'store and food': 806244, 'and food processing': 63079, 'food processing worker': 315993, 'processing worker to': 680050, 'worker to be': 1007997, 'to be eligible': 901233, 'be eligible for': 114660, 'the same emergency': 866220, 'same emergency child': 733049, 'emergency child care': 272628, 'child care available': 176036, 'care available to': 163859, 'available to front': 104644, 'to front line': 906271, 'front line medical': 338590, 'line medical worker': 493260, 'medical worker education': 526501, 'worker education k12': 1006831, 'midtown': 530799, 'newyorklockdown': 561220, 'newyorktough': 561230, 'of midtown': 586490, 'midtown cheering': 530800, 'cheering on': 175146, 'our every': 622934, 'day hero': 227756, 'hero health': 394005, 'delivery team': 234606, 'team grocery': 835650, 'clerk stock': 181771, 'stock room': 802797, 'room worker': 725994, 'you ny': 1020167, 'ny coronalockdown': 577845, 'coronalockdown newyorklockdown': 205039, 'newyorklockdown newyorktough': 561225, 'all of midtown': 43702, 'of midtown cheering': 586491, 'midtown cheering on': 530801, 'cheering on our': 175147, 'on our every': 602594, 'our every day': 622935, 'every day hero': 285818, 'day hero health': 227757, 'hero health care': 394006, 'worker delivery team': 1006748, 'delivery team grocery': 234608, 'team grocery store': 835651, 'store clerk stock': 807026, 'clerk stock room': 181773, 'stock room worker': 802799, 'room worker we': 725996, 'worker we love': 1008145, 'love you ny': 504887, 'you ny coronalockdown': 1020168, 'ny coronalockdown newyorklockdown': 577846, 'coronalockdown newyorklockdown newyorktough': 205040, 'employee need': 274049, 'be classified': 114092, 'classified emergency': 180350, 'store employee need': 807513, 'employee need to': 274051, 'to be classified': 901165, 'be classified emergency': 114094, 'classified emergency worker': 180352, 'emergency worker we': 273067, 'worker we are': 1008139, 'line and have': 492947, 'and have already': 64220, 'have already done': 379186, 'already done this': 47303, 'rang': 696672, 'well isn': 978331, 'isn that': 454697, 'just great': 468880, 'great dr': 362642, 'dr rang': 258081, 'rang me': 696677, 'me last': 523050, 'risk my': 723698, 'dad got': 224330, 'got letter': 358667, 'letter today': 487376, 'week so': 976887, 'so tried': 778570, 'online no': 608579, 'available so': 104593, 'so look': 777592, 'like ll': 490658, 'well isn that': 978332, 'isn that just': 454700, 'that just great': 844790, 'just great dr': 468881, 'great dr rang': 362643, 'dr rang me': 258082, 'rang me last': 696678, 'me last week': 523051, 'week and said': 975933, 'and said to': 70780, 'said to stay': 731521, 'to stay in': 915294, 'stay in high': 797046, 'in high risk': 423687, 'high risk my': 395363, 'risk my dad': 723699, 'my dad got': 547891, 'dad got letter': 224331, 'got letter today': 358670, 'letter today to': 487378, 'today to stay': 920369, 'stay in for': 797045, 'in for 12': 423006, '12 week so': 2989, 'week so tried': 976894, 'so tried to': 778571, 'tried to shop': 931850, 'to shop online': 914480, 'shop online no': 760578, 'online no slot': 608583, 'slot available so': 774139, 'available so look': 104594, 'so look like': 777594, 'look like ll': 502491, 'like ll have': 490660, 'll have to': 496834, 'go shopping after': 354103, 'shopping after all': 761905, 'career': 164330, 'all joke': 43289, 'aside there': 95440, 'job career': 465726, 'career that': 164361, 'essential from': 281069, 'from healthcare': 335749, 'healthcare professional': 387225, 'professional to': 682512, 'worker show': 1007779, 'show kindness': 767025, 'kindness we': 475231, 'all literally': 43394, 'literally dealing': 494976, 'and all joke': 57870, 'all joke aside': 43290, 'joke aside there': 467059, 'aside there are': 95441, 'lot of job': 504216, 'of job career': 585530, 'job career that': 465727, 'career that are': 164362, 'that are essential': 842744, 'are essential from': 86248, 'essential from healthcare': 281071, 'from healthcare professional': 335751, 'healthcare professional to': 387243, 'professional to grocery': 682513, 'store worker show': 811583, 'worker show kindness': 1007780, 'show kindness we': 767026, 'kindness we are': 475232, 'are all literally': 84323, 'all literally dealing': 43395, 'literally dealing with': 494977, '19 in real': 7777, 'in real time': 427295, 'meditate': 526945, 'tuesdaytreat': 935234, '2020 ha': 14351, 'been on': 121593, 'on roll': 603217, 'roll this': 725546, 'but through': 147572, 'through it': 894534, 'all we': 45400, 'must keep': 546743, 'the faith': 854856, 'faith meditate': 296524, 'meditate pray': 526948, 'pray and': 668986, 'that god': 844028, 'god is': 354745, 'stayhome cake': 797961, 'cake dessert': 155227, 'dessert tuesdaytreat': 238950, 'tuesdaytreat sweet': 935235, 'sweet tissue': 830258, '2020 ha been': 14352, 'ha been on': 369859, 'been on roll': 121597, 'on roll this': 603219, 'roll this year': 725547, 'this year but': 891563, 'year but through': 1014450, 'but through it': 147574, 'through it all': 894535, 'it all we': 456384, 'all we must': 45409, 'we must keep': 972424, 'must keep the': 546746, 'keep the faith': 472043, 'the faith meditate': 854857, 'faith meditate pray': 296525, 'meditate pray and': 526949, 'pray and know': 668987, 'and know that': 65893, 'know that god': 476764, 'that god is': 844029, 'god is in': 354746, 'is in control': 448759, 'in control toiletpaper': 421766, 'control toiletpaper stayhome': 202200, 'toiletpaper stayhome cake': 922523, 'stayhome cake dessert': 797962, 'cake dessert tuesdaytreat': 155228, 'dessert tuesdaytreat sweet': 238951, 'tuesdaytreat sweet tissue': 935236, 'curse': 221749, 'multinational': 545708, 'whooping': 990592, 'india at': 434317, 'moment hope': 535958, 'you stop': 1021434, 'to curse': 903829, 'curse these': 221756, 'these multinational': 880325, 'multinational company': 545709, 'company by': 190508, 'by claiming': 152126, 'claiming that': 179908, 'that ur': 847196, 'ur is': 948021, 'by whooping': 154748, 'whooping 15': 990593, '15 by': 3676, 'is doing for': 447274, 'doing for india': 252413, 'for india at': 322538, 'india at this': 434319, 'at this moment': 101243, 'this moment hope': 888873, 'moment hope that': 535959, 'hope that you': 403664, 'that you stop': 847746, 'you stop to': 1021441, 'stop to curse': 805215, 'to curse these': 903830, 'curse these multinational': 221757, 'these multinational company': 880326, 'multinational company by': 545710, 'company by claiming': 190509, 'by claiming that': 152127, 'claiming that ur': 179912, 'that ur is': 847199, 'ur is only': 948022, 'is only one': 450544, 'only one who': 610891, 'one who care': 607439, 'care for india': 163948, 'for india price': 322541, 'india price slashed': 434573, 'slashed by whooping': 773619, 'by whooping 15': 154749, 'whooping 15 by': 990594, 'mylan': 550742, 'nv': 577788, 'didn they': 241230, 'they handed': 882277, 'handed him': 376066, 'him huge': 396631, 'though mylan': 892864, 'mylan nv': 550752, 'nv ha': 577791, 'started producing': 794815, 'producing the': 680808, 'drug again': 260860, 'again the': 37206, 'the indian': 858118, 'indian export': 434828, 'export ban': 292611, 'ban will': 109292, 'likely lead': 492045, 'to spike': 915007, 'drug thanks': 261106, 'president constant': 670790, 'constant promotion': 195625, 'promotion of': 683870, 'for treatment': 327338, 'no they didn': 565707, 'they didn they': 881935, 'didn they handed': 241232, 'they handed him': 882278, 'handed him huge': 376067, 'him huge profit': 396632, 'huge profit and': 410148, 'profit and even': 682653, 'even though mylan': 284711, 'though mylan nv': 892865, 'mylan nv ha': 550753, 'nv ha started': 577792, 'ha started producing': 372047, 'started producing the': 794817, 'producing the drug': 680809, 'the drug again': 853726, 'drug again the': 260861, 'again the indian': 37210, 'the indian export': 858122, 'indian export ban': 434829, 'export ban will': 292613, 'ban will likely': 109294, 'will likely lead': 994005, 'likely lead to': 492046, 'lead to spike': 483389, 'to spike in': 915009, 'spike in price': 789308, 'in price for': 426964, 'for the drug': 326397, 'the drug thanks': 853739, 'drug thanks to': 261107, 'to the president': 916976, 'the president constant': 864258, 'president constant promotion': 670791, 'constant promotion of': 195626, 'promotion of using': 683874, 'of using it': 592722, 'using it for': 950529, 'it for treatment': 458105, 'ijustwanttogobacktomynormallife': 416013, 'legit just': 486031, 'just thought': 470058, 'thought cannot': 892994, 'do laundry': 249556, 'laundry in': 482113, 'same day': 733020, 'day way': 228668, 'much activity': 544694, 'activity going': 30429, 'on god': 601123, 'god miss': 354772, 'miss having': 534145, 'having life': 384138, '19 ijustwanttogobacktomynormallife': 7671, 'ijustwanttogobacktomynormallife sundaythoughts': 416014, 'legit just thought': 486032, 'just thought cannot': 470060, 'thought cannot go': 892995, 'store and do': 806229, 'and do laundry': 61554, 'do laundry in': 249558, 'laundry in the': 482114, 'in the same': 429524, 'the same day': 866215, 'same day way': 733038, 'day way too': 228669, 'too much activity': 924911, 'much activity going': 544695, 'activity going on': 30430, 'going on god': 355318, 'on god miss': 601125, 'god miss having': 354773, 'miss having life': 534146, 'having life 19': 384139, 'life 19 ijustwanttogobacktomynormallife': 488435, '19 ijustwanttogobacktomynormallife sundaythoughts': 7672, 'saudiaramco': 737370, 'comfortable': 187864, 'aramco': 83990, 'geopolitics': 345981, 'oilandgas': 597535, 'subsea': 815919, 'alxcltd': 49818, 'saudiaramco is': 737376, 'very comfortable': 955060, 'comfortable with': 187878, 'with 30': 996996, '30 oil': 17154, 'oil energy': 596766, 'energy aramco': 276394, 'aramco saudi': 83999, 'saudi oilprice': 737284, 'oilprice crudeoil': 597608, 'crudeoil politics': 219647, 'politics geopolitics': 663784, 'geopolitics corona': 345982, 'corona chinavirus': 203855, 'chinavirus health': 177160, 'health oil': 386709, 'oil gas': 596823, 'gas oilandgas': 343911, 'oilandgas subsea': 597557, 'subsea commodity': 815920, 'commodity economics': 189169, 'economics market': 267466, 'market trading': 517254, 'trading alxcltd': 928831, 'saudiaramco is very': 737377, 'is very comfortable': 453669, 'very comfortable with': 955062, 'comfortable with 30': 187879, 'with 30 oil': 997000, '30 oil energy': 17155, 'oil energy aramco': 596767, 'energy aramco saudi': 276395, 'aramco saudi oilprice': 84000, 'saudi oilprice crudeoil': 737285, 'oilprice crudeoil politics': 597609, 'crudeoil politics geopolitics': 219648, 'politics geopolitics corona': 663785, 'geopolitics corona chinavirus': 345983, 'corona chinavirus health': 203856, 'chinavirus health oil': 177161, 'health oil gas': 386710, 'oil gas oilandgas': 596827, 'gas oilandgas subsea': 343912, 'oilandgas subsea commodity': 597558, 'subsea commodity economics': 815921, 'commodity economics market': 189170, 'economics market trading': 267467, 'market trading alxcltd': 517255, 'journalism': 467405, 'neither': 557312, 'brighton': 139815, 'more non': 539850, 'non news': 566440, 'poor journalism': 664206, 'journalism from': 467408, 'the there': 869426, 'are queue': 89384, 'the few': 855114, 'few queuing': 304029, 'queuing in': 694215, 'one are': 605940, 'not spaced': 571662, 'spaced out': 787214, 'out neither': 626619, 'neither is': 557329, 'the guideline': 856927, 'guideline three': 368479, 'three metre': 893982, 'metre it': 529856, 'it two': 461891, 'two socialdistancing': 937229, 'socialdistancing brighton': 780256, 'more non news': 539851, 'non news and': 566441, 'news and poor': 560234, 'and poor journalism': 69190, 'poor journalism from': 664207, 'journalism from the': 467409, 'from the there': 337899, 'the there are': 869427, 'there are queue': 878152, 'are queue at': 89385, 'queue at every': 693887, 'at every supermarket': 98572, 'every supermarket and': 286239, 'supermarket and food': 818984, 'and food store': 63095, 'food store the': 316862, 'store the few': 810597, 'the few queuing': 855121, 'few queuing in': 304030, 'queuing in this': 694220, 'in this one': 429986, 'this one are': 889229, 'one are not': 605944, 'are not spaced': 88469, 'not spaced out': 571663, 'spaced out neither': 787215, 'out neither is': 626620, 'neither is the': 557330, 'is the guideline': 452816, 'the guideline three': 856933, 'guideline three metre': 368480, 'three metre it': 893983, 'metre it two': 529857, 'it two socialdistancing': 461894, 'two socialdistancing brighton': 937230, 'lighten': 489632, 'happy saturday': 377670, 'saturday everyone': 737019, 'we lighten': 972190, 'lighten the': 489633, 'the mood': 860861, 'mood with': 538295, 'awesome meme': 106184, 'meme everyone': 528314, 'making thanks': 511401, 'idea let': 413112, 'see who': 746065, 'who get': 988768, 'more creative': 538919, 'creative and': 216122, 'happy saturday everyone': 377671, 'saturday everyone we': 737020, 'everyone we thought': 287567, 'thought we lighten': 893300, 'we lighten the': 972191, 'lighten the mood': 489634, 'the mood with': 860866, 'mood with this': 538296, 'with this awesome': 1001678, 'this awesome meme': 886469, 'awesome meme everyone': 106185, 'meme everyone is': 528315, 'everyone is making': 287088, 'is making thanks': 449556, 'making thanks to': 511402, 'thanks to for': 842225, 'to for the': 906158, 'for the idea': 326488, 'the idea let': 857825, 'idea let see': 413116, 'let see who': 487039, 'see who get': 746067, 'who get more': 988774, 'get more creative': 347581, 'more creative and': 538920, 'creative and go': 216123, 'and go toiletpaper': 63787, 'steve': 799944, 'hendrickson': 391765, 'naturalgas': 552890, 'natgas': 552079, 'steve hendrickson': 799945, 'hendrickson discus': 391766, 'discus why': 244952, 'for natural': 323779, 'be showing': 117167, 'showing sign': 767499, 'of improvement': 585014, 'improvement naturalgas': 419581, 'naturalgas natgas': 552893, 'natgas upstream': 552082, 'upstream oilandgas': 947885, 'steve hendrickson discus': 799946, 'hendrickson discus why': 391767, 'discus why the': 244953, 'why the outlook': 991425, 'outlook for natural': 629154, 'for natural gas': 323780, 'could be showing': 208922, 'be showing sign': 117169, 'showing sign of': 767500, 'sign of improvement': 769163, 'of improvement naturalgas': 585015, 'improvement naturalgas natgas': 419582, 'naturalgas natgas upstream': 552894, 'natgas upstream oilandgas': 552083, 'dementia': 236626, 'basic to': 112089, 'feed my': 302337, 'family making': 298007, 'making do': 511026, 'what little': 981825, 'little food': 495346, 'get but': 346723, 'but worst': 147940, 'all cannot': 42299, 'cannot visit': 162208, 'visit my': 959302, 'my elderly': 548069, 'elderly mother': 270758, 'mother because': 543064, 'cancer and': 161242, 'and dementia': 61188, 'dementia and': 236627, 'and doesn': 61592, 'have much': 381528, 'much time': 545384, 'time left': 897123, 'left be': 485411, 'have stop': 382778, 'buy stophoarding': 149241, 'cannot find the': 161849, 'find the basic': 307282, 'the basic to': 849320, 'basic to feed': 112090, 'to feed my': 905728, 'feed my family': 302339, 'my family making': 548212, 'family making do': 298008, 'making do with': 511028, 'do with what': 250577, 'with what little': 1002071, 'what little food': 981826, 'little food can': 495348, 'can get but': 158409, 'get but worst': 346726, 'but worst of': 147941, 'worst of all': 1011228, 'of all cannot': 579928, 'all cannot visit': 42300, 'cannot visit my': 162209, 'visit my elderly': 959303, 'my elderly mother': 548072, 'elderly mother because': 270759, 'mother because she': 543065, 'because she ha': 119546, 'she ha cancer': 756070, 'ha cancer and': 370054, 'cancer and dementia': 161243, 'and dementia and': 61189, 'dementia and doesn': 236629, 'and doesn have': 61595, 'doesn have much': 251824, 'have much time': 381533, 'much time left': 545385, 'time left be': 897124, 'left be grateful': 485412, 'be grateful for': 115083, 'grateful for what': 362278, 'for what you': 327810, 'what you have': 982678, 'you have stop': 1019120, 'have stop the': 382781, 'the panic buy': 863189, 'panic buy stophoarding': 637531, 'respected': 715098, 'login': 500683, 'essenti': 280737, 'respected sir': 715108, 'sir have': 771577, 'have suggestion': 382847, 'can develop': 158057, 'develop app': 239629, 'which every': 985850, 'every small': 286203, 'to login': 909413, 'login to': 500688, 'sell their': 748899, 'good online': 357512, 'and normal': 67693, 'normal consumer': 567117, 'consumer like': 198043, 'me can': 522560, 'order essenti': 618193, 'respected sir have': 715114, 'sir have suggestion': 771579, 'have suggestion for': 382849, 'suggestion for you': 817641, 'you to fight': 1021775, 'you can develop': 1017656, 'can develop app': 158058, 'develop app in': 239630, 'app in which': 81725, 'in which every': 430860, 'which every small': 985851, 'every small retailer': 286204, 'small retailer have': 775097, 'retailer have to': 719188, 'have to login': 383243, 'to login to': 909414, 'login to sell': 500689, 'to sell their': 914179, 'sell their good': 748900, 'their good online': 873421, 'good online and': 357514, 'online and normal': 607826, 'and normal consumer': 67694, 'normal consumer like': 567119, 'consumer like me': 198044, 'like me can': 490739, 'me can order': 522563, 'can order essenti': 159169, 'pas but': 643088, 'but pls': 146811, 'pls do': 661125, 'best by': 127615, 'there maintain': 878739, 'maintain your': 509075, 'distance wash': 246881, 'sanitizer pls': 735557, 'pls is': 661145, 'not thing': 572071, 'to joke': 908688, 'joke with': 467168, 'with pls': 1000237, 'shall pas but': 754543, 'pas but pls': 643090, 'but pls do': 146812, 'pls do your': 661128, 'do your best': 250700, 'your best by': 1022946, 'best by staying': 127617, 'by staying at': 154110, 'at home if': 99011, 'home if there': 401399, 'if there no': 415072, 'need for you': 554879, 'be out there': 116292, 'out there and': 627467, 'there and if': 878003, 'if you really': 415503, 'out there maintain': 627498, 'there maintain your': 878740, 'maintain your distance': 509076, 'your distance wash': 1023539, 'distance wash your': 246882, 'hand sanitizer pls': 375537, 'sanitizer pls is': 735558, 'pls is not': 661146, 'is not thing': 450206, 'not thing to': 572072, 'thing to joke': 884893, 'to joke with': 908689, 'joke with pls': 467169, 'cagnaccio': 155183, 'rubbish': 726982, 'cagnaccio we': 155184, 'been bonkers': 120750, 'bonkers for': 134326, 'several year': 753972, 'year all': 1014375, 'this rubbish': 889928, 'rubbish about': 726983, 'about leaving': 25632, 'the eu': 854552, 'eu and': 283196, 'll thrive': 497069, 'thrive because': 894204, 'uk is': 938479, 'such strong': 816775, 'strong nation': 814073, 'nation then': 552333, 'then covid': 877098, '19 come': 5887, 'come along': 187201, 'along and': 46977, 'people start': 649535, 'start stockpiling': 794522, 'stockpiling fighting': 803955, 'over pasta': 630484, 'pasta in': 643739, 'cagnaccio we ve': 155185, 've been bonkers': 952867, 'been bonkers for': 120751, 'bonkers for several': 134327, 'for several year': 325520, 'several year all': 753974, 'year all this': 1014376, 'all this rubbish': 45130, 'this rubbish about': 889929, 'rubbish about leaving': 726984, 'about leaving the': 25633, 'leaving the eu': 485148, 'the eu and': 854553, 'eu and how': 283198, 'how we ll': 409181, 'we ll thrive': 972284, 'll thrive because': 497070, 'thrive because the': 894205, 'because the uk': 119655, 'the uk is': 870239, 'uk is such': 938487, 'is such strong': 452428, 'such strong nation': 816776, 'strong nation then': 814074, 'nation then covid': 552334, 'then covid 19': 877099, 'covid 19 come': 212827, '19 come along': 5888, 'come along and': 187202, 'along and people': 46978, 'and people start': 68879, 'people start stockpiling': 649538, 'start stockpiling fighting': 794523, 'stockpiling fighting over': 803956, 'fighting over pasta': 305109, 'over pasta in': 630485, 'pasta in the': 643742, 'surestwaytolegalresearch': 827973, 'supremecourt': 827438, 'scconline': 741239, '19 centre': 5739, 'centre had': 169500, 'had submitted': 373574, 'submitted before': 815815, 'the court': 852214, 'court that': 212011, 'panic wa': 638754, 'wa created': 961893, 'created by': 215788, 'by some': 154072, 'some fake': 782808, 'news that': 560857, 'the lock': 859585, 'down would': 257511, 'would last': 1011979, 'month surestwaytolegalresearch': 538025, 'surestwaytolegalresearch supremecourt': 827974, 'supremecourt scconline': 827439, 'covid 19 centre': 212776, '19 centre had': 5740, 'centre had submitted': 169501, 'had submitted before': 373575, 'submitted before the': 815816, 'before the court': 123150, 'the court that': 852217, 'court that panic': 212012, 'that panic wa': 845645, 'panic wa created': 638756, 'wa created by': 961894, 'created by some': 215794, 'by some fake': 154074, 'some fake news': 782809, 'fake news that': 296677, 'news that the': 560861, 'that the lock': 846762, 'the lock down': 859586, 'lock down would': 499064, 'down would last': 257513, 'would last for': 1011980, 'last for more': 480230, 'than three month': 841328, 'three month surestwaytolegalresearch': 894001, 'month surestwaytolegalresearch supremecourt': 538026, 'surestwaytolegalresearch supremecourt scconline': 827975, 'facing short': 295591, 'term financial': 838143, 'financial issue': 306478, 'issue because': 455688, 'of contact': 581799, 'contact your': 200305, 'example some': 288968, 'some bank': 782378, 'bank might': 110007, 'waive certain': 964501, 'certain fee': 170006, 'fee or': 302210, 'or delay': 614921, 'delay payment': 232737, 'payment learn': 645665, 'you re facing': 1020618, 're facing short': 698661, 'facing short term': 295592, 'short term financial': 764736, 'term financial issue': 838144, 'financial issue because': 306479, 'issue because of': 455689, 'because of contact': 119322, 'of contact your': 581804, 'contact your bank': 200307, 'your bank to': 1022907, 'bank to see': 110262, 'what they can': 982394, 'they can do': 881625, 'can do for': 158103, 'do for you': 249319, 'for you for': 328056, 'you for example': 1018635, 'for example some': 321288, 'example some bank': 288969, 'some bank might': 782380, 'bank might be': 110008, 'might be open': 530922, 'be open to': 116255, 'open to waive': 612605, 'to waive certain': 918281, 'waive certain fee': 964502, 'certain fee or': 170007, 'fee or delay': 302212, 'or delay payment': 614922, 'delay payment learn': 232738, 'payment learn more': 645666, 'world innovation': 1009674, 'post world innovation': 666417, 'jane': 464496, 'southworth': 786931, 'diverisfiedindustrials': 248516, 'biocide': 131189, 'of environmental': 583137, 'environmental and': 279183, 'and chemical': 59808, 'chemical regulation': 175381, 'regulation jane': 708075, 'jane southworth': 464503, 'southworth provides': 786932, 'provides regulatory': 686888, 'regulatory guidance': 708173, 'for chemical': 320041, 'chemical company': 175342, 'company manufacturing': 190878, 'manufacturing hand': 513595, 'during diverisfiedindustrials': 262604, 'diverisfiedindustrials chemical': 248517, 'chemical handsanitizer': 175352, 'handsanitizer reach': 376624, 'reach biocide': 699902, 'biocide manufacturing': 131190, 'head of environmental': 385769, 'of environmental and': 583138, 'environmental and chemical': 279184, 'and chemical regulation': 59809, 'chemical regulation jane': 175382, 'regulation jane southworth': 708076, 'jane southworth provides': 464504, 'southworth provides regulatory': 786933, 'provides regulatory guidance': 686889, 'regulatory guidance for': 708175, 'guidance for chemical': 368226, 'for chemical company': 320042, 'chemical company manufacturing': 175344, 'company manufacturing hand': 190879, 'manufacturing hand sanitizer': 513596, 'sanitizer during diverisfiedindustrials': 734799, 'during diverisfiedindustrials chemical': 262605, 'diverisfiedindustrials chemical handsanitizer': 248518, 'chemical handsanitizer reach': 175353, 'handsanitizer reach biocide': 376625, 'reach biocide manufacturing': 699903, 'can honestly': 158691, 'honestly say': 403130, 'that humanity': 844400, 'humanity will': 410779, 'same again': 732952, 'again we': 37259, 'finally reached': 306074, 'reached the': 700058, 'no return': 565356, 'return selfish': 719894, 'ha destroyed': 370363, 'destroyed all': 239042, 'all faith': 42747, 'faith in': 296514, 'society panic': 781284, 'panic stockpiling': 638632, 'after working in': 36583, 'working in my': 1008722, 'grocery store can': 365265, 'store can honestly': 806855, 'can honestly say': 158692, 'honestly say that': 403131, 'say that humanity': 739236, 'that humanity will': 844401, 'humanity will never': 410780, 'never be the': 557884, 'the same again': 866193, 'same again we': 732957, 'again we have': 37261, 'we have finally': 971816, 'have finally reached': 380629, 'finally reached the': 306075, 'reached the point': 700060, 'point of no': 662561, 'of no return': 587047, 'no return selfish': 565359, 'return selfish panic': 719895, 'selfish panic buying': 748189, 'buying ha destroyed': 150433, 'ha destroyed all': 370364, 'destroyed all faith': 239043, 'all faith in': 42748, 'faith in our': 296519, 'in our society': 426338, 'our society panic': 624828, 'society panic stockpiling': 781285, 'while quarantined': 987190, 'quarantined will': 692889, 'will send': 994808, 'send help': 749869, 'shopping while quarantined': 764397, 'while quarantined will': 987193, 'quarantined will send': 692890, 'will send help': 994810, 'lapping': 479536, 'lapping please': 479537, 'please everybody': 659967, 'everybody wash': 286498, 'hand at': 374804, 'sec or': 743630, 'or get': 615425, 'get med': 347550, 'lapping please everybody': 479538, 'please everybody wash': 659968, 'everybody wash your': 286499, 'your hand at': 1024166, 'hand at least': 374806, 'least 20 sec': 484343, '20 sec or': 13318, 'sec or more': 743631, 'or more and': 616165, 'more and stay': 538620, 'store or get': 809335, 'or get med': 615431, 'divided': 248593, 'deployed': 237457, 'believe it': 126298, 'plenty for': 660921, 'everyone but': 286745, 'it divided': 457597, 'divided equally': 248596, 'equally the': 279639, 'army should': 93036, 'be deployed': 114413, 'deployed at': 237458, 'limit place': 492453, 'place on': 657614, 'on purchasing': 603016, 'purchasing certain': 689848, 'item the': 463706, 'be involved': 115545, 'in delivering': 422088, 'delivering food': 233491, 'are self': 89928, 'believe it true': 126304, 'true that there': 933186, 'is plenty for': 450904, 'plenty for everyone': 660923, 'for everyone but': 321201, 'everyone but only': 286749, 'but only if': 146689, 'only if it': 610620, 'if it divided': 414296, 'it divided equally': 457598, 'divided equally the': 248597, 'equally the army': 279640, 'the army should': 848910, 'army should be': 93038, 'should be deployed': 765600, 'be deployed at': 114414, 'deployed at every': 237459, 'supermarket and limit': 819011, 'and limit place': 66175, 'limit place on': 492454, 'place on purchasing': 657619, 'on purchasing certain': 603018, 'purchasing certain item': 689849, 'certain item the': 170041, 'item the army': 463707, 'army should also': 93037, 'should also be': 765499, 'also be involved': 47923, 'be involved in': 115546, 'involved in delivering': 444349, 'in delivering food': 422089, 'delivering food to': 233496, 'food to those': 317301, 'who are self': 988212, 'are self isolating': 89929, 'ftse': 339483, 'ursday': 948482, 'demic': 236643, 'london finance': 501062, 'finance report': 306263, 'report surging': 712288, 'surging oil': 828438, 'price lifted': 675039, 'lifted uk': 489496, 'uk commodity': 938251, 'commodity heavy': 189186, 'heavy ftse': 388639, 'ftse 100': 339484, '100 on': 2000, 'on th': 603921, 'th ursday': 840059, 'ursday although': 948483, 'mood wa': 538293, 'wa fragile': 962167, 'fragile the': 330906, 'country saw': 211029, 'saw record': 738225, 'record surge': 705066, 'in death': 422043, 'death from': 230046, 'the pan': 862878, 'pan demic': 634662, 'demic that': 236644, 'that threatens': 847025, 'london finance report': 501063, 'finance report surging': 306264, 'report surging oil': 712289, 'surging oil price': 828439, 'oil price lifted': 597180, 'price lifted uk': 675040, 'lifted uk commodity': 489497, 'uk commodity heavy': 938252, 'commodity heavy ftse': 189187, 'heavy ftse 100': 388640, 'ftse 100 on': 339486, '100 on th': 2003, 'on th ursday': 603923, 'th ursday although': 840060, 'ursday although the': 948484, 'although the mood': 49362, 'the mood wa': 860865, 'mood wa fragile': 538294, 'wa fragile the': 962169, 'fragile the country': 330907, 'the country saw': 852148, 'country saw record': 211030, 'saw record surge': 738227, 'record surge in': 705067, 'surge in death': 828186, 'in death from': 422045, 'death from the': 230051, 'from the pan': 337823, 'the pan demic': 862880, 'pan demic that': 634663, 'demic that threatens': 236645, 'pedro': 646231, 'perez': 651262, 'listen to': 494727, 'latest installment': 481409, 'installment of': 440055, 'the prepare': 864235, 'to care': 902456, 'care podcast': 164148, 'we talk': 973491, 'to pedro': 911596, 'pedro perez': 646234, 'perez the': 651267, 'the deputy': 853169, 'deputy chief': 237783, 'chief for': 175931, 'division for': 248671, 'the tx': 870161, 'tx attorney': 937438, 'general about': 345272, 'listen to the': 494753, 'to the latest': 916836, 'the latest installment': 859121, 'latest installment of': 481410, 'installment of the': 440057, 'of the prepare': 591358, 'the prepare to': 864236, 'prepare to care': 670137, 'to care podcast': 902461, 'care podcast where': 164149, 'podcast where we': 662329, 'where we talk': 985351, 'we talk to': 973497, 'talk to pedro': 833885, 'to pedro perez': 911597, 'pedro perez the': 646236, 'perez the deputy': 651268, 'the deputy chief': 853170, 'deputy chief for': 237784, 'chief for the': 175932, 'protection division for': 685397, 'division for the': 248672, 'for the tx': 326746, 'the tx attorney': 870162, 'tx attorney general': 937439, 'attorney general about': 102622, 'general about how': 345273, 'how to look': 409040, 'out for and': 626097, 'for and report': 319339, 'and report price': 70266, 'report price gouging': 712192, 'woollies': 1004395, 'firing': 308283, 'copping': 203449, 'of woollies': 593232, 'woollies employee': 1004396, 'tear capture': 835938, 'capture the': 162947, 'the firing': 855266, 'firing line': 308292, 'of panicbuyers': 587739, 'panicbuyers please': 638871, 'all staff': 44412, 'staff they': 792962, 'they really': 883159, 'really are': 701985, 'are copping': 85570, 'copping the': 203452, 'the brunt': 850059, 'brunt let': 141359, 'let show': 487048, 'show each': 766925, 'other little': 620478, 'little kindness': 495427, 'photo of woollies': 655221, 'of woollies employee': 593233, 'woollies employee in': 1004397, 'employee in tear': 273972, 'in tear capture': 428838, 'tear capture the': 835939, 'capture the reality': 162948, 'the reality for': 865258, 'reality for supermarket': 701735, 'supermarket worker in': 824038, 'worker in the': 1007205, 'in the firing': 429203, 'the firing line': 855267, 'firing line of': 308293, 'line of panicbuyers': 493310, 'of panicbuyers please': 587740, 'panicbuyers please be': 638872, 'please be nice': 659708, 'nice to all': 562484, 'to all staff': 900284, 'all staff they': 44416, 'staff they really': 792967, 'they really are': 883160, 'really are copping': 701986, 'are copping the': 85571, 'copping the brunt': 203453, 'the brunt let': 850060, 'brunt let show': 141360, 'let show each': 487049, 'show each other': 766926, 'each other little': 264192, 'other little kindness': 620481, 'keyworker': 473574, 'unpaid': 943022, 'cheer ll': 175114, 'work tomorrow': 1005926, 'tomorrow again': 924011, 'again ll': 37056, 'still stand': 801223, 'at stupid': 100669, 'stupid clock': 815368, 'clock with': 182426, 'family keyworker': 297977, 'keyworker but': 473575, 'no nh': 564870, 'nh badge': 561897, 'badge ll': 108124, 'll drop': 496723, 'drop my': 260308, 'my hour': 548716, 'hour unpaid': 406053, 'unpaid but': 943023, 'get top': 348521, 'up thankyou': 946143, 'thankyou 19': 842318, 'cheer ll go': 175115, 'll go to': 496813, 'to work tomorrow': 918799, 'work tomorrow again': 1005927, 'tomorrow again ll': 924012, 'again ll still': 37057, 'll still stand': 497039, 'still stand in': 801224, 'stand in supermarket': 793534, 'in supermarket at': 428561, 'supermarket at stupid': 819251, 'at stupid clock': 100670, 'stupid clock with': 815369, 'clock with no': 182427, 'with no food': 999753, 'no food left': 564261, 'food left for': 315291, 'left for my': 485466, 'my family keyworker': 548211, 'family keyworker but': 297978, 'keyworker but with': 473576, 'but with no': 147897, 'with no nh': 999769, 'no nh badge': 564871, 'nh badge ll': 561898, 'badge ll drop': 108125, 'll drop my': 496724, 'drop my hour': 260309, 'my hour unpaid': 548718, 'hour unpaid but': 406054, 'unpaid but will': 943024, 'but will not': 147884, 'not get top': 569616, 'get top up': 348522, 'top up thankyou': 925752, 'up thankyou 19': 946144, 'settle': 753669, 'intelligent': 441018, 'since all': 770494, 'the greedy': 856762, 'greedy people': 363562, 'people took': 649987, 'took every': 925232, 'every pack': 286078, 'paper have': 640258, 'to settle': 914299, 'settle for': 753676, 'an intelligent': 56384, 'intelligent toilet': 441035, 'toilet coronapocalypse': 921142, 'coronapocalypse toiletpaper': 205200, 'toiletpaperapocalypse toilet': 922924, 'toilet bidet': 921131, 'bidet toiletpapergate': 129583, 'toiletpapergate upgrade': 923172, 'since all the': 770496, 'all the greedy': 44770, 'the greedy people': 856769, 'greedy people took': 363570, 'people took every': 649988, 'took every pack': 925233, 'every pack of': 286079, 'toilet paper have': 921302, 'paper have to': 640262, 'have to settle': 383297, 'to settle for': 914301, 'settle for an': 753677, 'for an intelligent': 319302, 'an intelligent toilet': 56385, 'intelligent toilet coronapocalypse': 441036, 'toilet coronapocalypse toiletpaper': 921143, 'coronapocalypse toiletpaper toiletpaperpanic': 205203, 'toiletpaperpanic toiletpaperapocalypse toilet': 923274, 'toiletpaperapocalypse toilet bidet': 922925, 'toilet bidet toiletpapergate': 921132, 'bidet toiletpapergate upgrade': 129584, 'em': 272048, 'cnas': 184709, 're self': 699470, 'self quarantining': 747877, 'quarantining inside': 693083, 'home let': 401521, 'men and': 528452, 'line the': 493450, 'the leo': 859296, 'leo firefighter': 486386, 'firefighter em': 308211, 'em emt': 272059, 'emt doctor': 275337, 'nurse cnas': 577247, 'cnas grocery': 184710, 'countless others': 210386, 'others keep': 621504, 'your prayer': 1025370, 'while we re': 987553, 'we re self': 972959, 're self quarantining': 699473, 'self quarantining inside': 747878, 'quarantining inside our': 693084, 'inside our home': 439350, 'our home let': 623453, 'home let not': 401524, 'forget the men': 329303, 'the men and': 860472, 'men and woman': 528455, 'and woman who': 75813, 'woman who are': 1003672, 'front line the': 338612, 'line the leo': 493453, 'the leo firefighter': 859297, 'leo firefighter em': 486387, 'firefighter em emt': 308212, 'em emt doctor': 272060, 'emt doctor nurse': 275338, 'doctor nurse cnas': 251005, 'nurse cnas grocery': 577248, 'cnas grocery store': 184711, 'store worker truck': 811609, 'driver and countless': 259410, 'and countless others': 60641, 'countless others keep': 210388, 'others keep them': 621508, 'them in your': 875925, 'in your prayer': 431114, 'stockmarketcrash': 803686, 'closure rise': 184018, 'coronavirus stockmarket': 206828, 'stockmarket stockmarketcrash': 803675, 'store closure rise': 807106, 'closure rise due': 184019, 'the coronavirus stockmarket': 851919, 'coronavirus stockmarket stockmarketcrash': 206829, 'signofthetimes': 769662, 'brief': 139661, 'signofthetimes brief': 769663, 'brief thread': 139681, 'thread on': 893585, 'on early': 600458, 'early morning': 264649, 'morning grocery': 541272, 'shopping just': 763114, 'just outside': 469417, 'outside denver': 629401, 'denver amid': 237114, 'outbreak this': 628746, 'wa outside': 962885, 'outside my': 629489, 'store few': 807712, 'few minute': 303913, 'minute before': 533742, 'it opened': 460126, 'opened at': 612708, 'at wanted': 101488, 'run when': 727861, 'when knew': 983667, 'knew it': 476051, 'it wouldn': 462610, 'be crowded': 114301, 'crowded this': 219367, 'not normal': 570699, 'signofthetimes brief thread': 769664, 'brief thread on': 139682, 'thread on early': 893587, 'on early morning': 600459, 'early morning grocery': 264650, 'morning grocery shopping': 541273, 'grocery shopping just': 365045, 'shopping just outside': 763118, 'just outside denver': 469418, 'outside denver amid': 629402, 'denver amid outbreak': 237115, 'amid outbreak this': 52563, 'outbreak this wa': 628749, 'this wa outside': 891084, 'wa outside my': 962886, 'outside my local': 629492, 'grocery store few': 365394, 'store few minute': 807714, 'few minute before': 303915, 'minute before it': 533744, 'before it opened': 122892, 'it opened at': 460128, 'opened at wanted': 612710, 'at wanted to': 101489, 'wanted to make': 966261, 'quick run when': 694363, 'run when knew': 727862, 'when knew it': 983668, 'knew it wouldn': 476055, 'it wouldn be': 462611, 'wouldn be crowded': 1012440, 'be crowded this': 114302, 'crowded this is': 219368, 'is not normal': 450138, 'don mess': 253737, 'mess with': 529245, 'with russian': 1000536, 'russian cashier': 728617, 'don mess with': 253738, 'mess with russian': 529246, 'with russian cashier': 1000537, 'coincides': 185677, 'rainy': 695791, 'unavoidable': 939470, 'disrupt': 246364, 'foreseeable': 329057, 'acute': 31033, '19 coincides': 5869, 'coincides with': 185678, 'the rainy': 865122, 'rainy season': 695795, 'season march': 743411, 'march may': 515411, 'may the': 521564, 'the unavoidable': 870335, 'unavoidable lockdown': 939475, 'lockdown lock': 499601, 'lock ups': 499086, 'ups disrupt': 947738, 'disrupt the': 246376, 'of agricultural': 579838, 'agricultural activity': 38864, 'activity the': 30508, 'next foreseeable': 561372, 'foreseeable problem': 329072, 'problem is': 679565, 'is hunger': 448632, 'hunger the': 411196, 'food remains': 316163, 'remains demand': 709995, 'demand rise': 236154, 'rise the': 723016, 'the urgency': 870526, 'urgency to': 948306, 'treat farming': 930833, 'farming essential': 299617, 'essential becomes': 280825, 'becomes more': 120237, 'more acute': 538548, 'covid 19 coincides': 212820, '19 coincides with': 5870, 'coincides with the': 185679, 'with the rainy': 1001448, 'the rainy season': 865123, 'rainy season march': 695796, 'season march may': 743412, 'march may the': 515412, 'may the unavoidable': 521568, 'the unavoidable lockdown': 870336, 'unavoidable lockdown lock': 939476, 'lockdown lock ups': 499602, 'lock ups disrupt': 499087, 'ups disrupt the': 947739, 'disrupt the chain': 246377, 'the chain of': 850631, 'chain of agricultural': 170953, 'of agricultural activity': 579839, 'agricultural activity the': 38866, 'activity the next': 30509, 'the next foreseeable': 861666, 'next foreseeable problem': 561373, 'foreseeable problem is': 329073, 'problem is hunger': 679568, 'is hunger the': 448633, 'hunger the need': 411198, 'for food remains': 321623, 'food remains demand': 316164, 'remains demand rise': 709996, 'demand rise the': 236156, 'rise the urgency': 723018, 'the urgency to': 870527, 'urgency to treat': 948308, 'to treat farming': 917748, 'treat farming essential': 930834, 'farming essential becomes': 299618, 'essential becomes more': 280826, 'becomes more acute': 120238, 'shopify': 761156, 'slide': 773892, 'deck': 231129, 'the process': 864545, 'process of': 679930, 'of setting': 589539, 'setting up': 753652, 'up an': 944293, 'our webinar': 625322, 'webinar take': 975104, 'online shopify': 608994, 'shopify is': 761157, 'trial for': 931641, 'all new': 43621, 'new customer': 558575, 'customer webinar': 223049, 'webinar slide': 975099, 'slide deck': 773897, 'in the process': 429477, 'the process of': 864549, 'process of setting': 679935, 'of setting up': 589540, 'setting up an': 753653, 'up an online': 944297, 'an online store': 56637, 'online store check': 609445, 'out our webinar': 626998, 'our webinar take': 625325, 'webinar take the': 975105, 'take the time': 832682, 'the time you': 869635, 'time you need': 898409, 'store online shopify': 809229, 'online shopify is': 608995, 'shopify is offering': 761158, 'free trial for': 332276, 'trial for all': 931642, 'for all new': 319151, 'all new customer': 43622, 'new customer webinar': 558583, 'customer webinar slide': 223050, 'webinar slide deck': 975100, 'attend': 102296, 'consultancy': 195847, 'training': 929322, 'commerce mobile': 188590, 'mobile money': 534995, 'money wallet': 537145, 'wallet see': 965223, 'see surge': 745771, 'demand online': 235983, 'shopping increase': 763004, 'permanent eve': 652048, 'eve after': 283778, 'after pandemic': 36011, 'over attend': 630008, 'attend my': 102311, 'day consultancy': 227473, 'consultancy training': 195854, 'commerce mobile money': 188591, 'mobile money wallet': 534997, 'money wallet see': 537146, 'wallet see surge': 965224, 'see surge in': 745772, 'in demand online': 422145, 'demand online shopping': 235984, 'online shopping increase': 609154, 'shopping increase due': 763007, '19 the trend': 11258, 'the trend is': 869963, 'trend is going': 931380, 'to be permanent': 901439, 'be permanent eve': 116397, 'permanent eve after': 652049, 'eve after pandemic': 283779, 'after pandemic is': 36012, 'is over attend': 450687, 'over attend my': 630009, 'attend my day': 102312, 'my day consultancy': 547943, 'day consultancy training': 227474, 'shameless capitalism': 754722, 'capitalism sport': 162780, 'sport direct': 789915, 'direct hike': 243335, 'after store': 36251, 'closure amid': 183827, 'shameless capitalism sport': 754723, 'capitalism sport direct': 162781, 'sport direct hike': 789918, 'direct hike price': 243337, 'hike price after': 396251, 'price after store': 672236, 'after store closure': 36252, 'store closure amid': 807083, 'closure amid crisis': 183828, 'see so': 745703, 'aren even': 92399, 'even making': 284320, 'making an': 510953, 'others socialdistancing': 621649, 'still very': 801372, 'people we': 650151, 'pandemic yet': 637085, 'yet let': 1016132, 'be smart': 117230, 'smart louisiana': 775392, 'store and see': 806341, 'and see so': 71144, 'see so many': 745705, 'many people who': 514547, 'people who aren': 650264, 'who aren even': 988265, 'aren even making': 92402, 'even making an': 284321, 'making an attempt': 510954, 'attempt to stay': 102263, 'from others socialdistancing': 336749, 'others socialdistancing is': 621650, 'socialdistancing is still': 780475, 'is still very': 452326, 'still very important': 801373, 'very important people': 955250, 'important people we': 418920, 'people we re': 650157, 'not out of': 570863, 'out of this': 626855, 'of this pandemic': 592021, 'this pandemic yet': 889452, 'pandemic yet let': 637086, 'yet let be': 1016133, 'let be smart': 486621, 'be smart louisiana': 117235, 'maniac': 513154, 'the if': 857853, 'cheaper than': 174274, 'than me': 840875, 'me staying': 523545, 'like maniac': 490697, 'maniac im': 513157, 'im kidding': 416553, 'kidding btw': 474202, 'btw but': 141530, 'to go back': 906773, 'work and take': 1004812, 'and take the': 72980, 'take the if': 832656, 'the if get': 857854, 'if get covid': 414143, '19 it would': 8164, 'would be cheaper': 1011566, 'be cheaper than': 114075, 'cheaper than me': 174278, 'than me staying': 840877, 'me staying at': 523546, 'home and online': 400672, 'shopping like maniac': 763167, 'like maniac im': 490699, 'maniac im kidding': 513158, 'im kidding btw': 416554, 'kidding btw but': 474203, 'btw but not': 141531, 'but not really': 146557, 'smarting': 775483, 'ipa': 444523, 'pivot': 657072, 'skull': 773173, 'still smarting': 801203, 'smarting at': 775484, 'supermarket solution': 822769, 'solution ipa': 782050, 'ipa pivot': 444534, 'pivot on': 657090, 'are skull': 90154, 'skull snap': 773174, 'still smarting at': 801204, 'smarting at your': 775485, 'at your supermarket': 101695, 'your supermarket solution': 1026062, 'supermarket solution ipa': 822770, 'solution ipa pivot': 782051, 'ipa pivot on': 444535, 'pivot on covid': 657091, 'covid 19 are': 212647, '19 are skull': 5206, 'are skull snap': 90155, 'realitytv': 701825, 'realitytv this': 701828, 'we line': 972203, 'practice socialdistancing': 668655, 'realitytv this is': 701829, 'is how we': 448603, 'how we line': 409178, 'we line up': 972204, 'up at my': 944435, 'local supermarket to': 498601, 'supermarket to practice': 823397, 'to practice socialdistancing': 911964, 'dotheirpart': 255955, 'let list': 486874, 'list the': 494552, 'heard of': 388116, 'pharmacy business': 654260, 'are requiring': 89614, 'requiring their': 713532, 'continue working': 201293, 'pandemic answer': 634924, 'answer below': 78017, 'below let': 126686, 'make list': 510091, 'list so': 494535, 'bring it': 140010, 'public attention': 687883, 'attention dotheirpart': 102436, 'let list the': 486875, 'list the company': 494553, 'the company you': 851366, 'company you ve': 191366, 'you ve heard': 1022045, 've heard of': 953250, 'heard of that': 388127, 'of that are': 590710, 'that are not': 842786, 'are not in': 88396, 'not in the': 570109, 'the healthcare grocery': 857194, 'healthcare grocery or': 387128, 'grocery or pharmacy': 364806, 'or pharmacy business': 616571, 'pharmacy business and': 654261, 'business and are': 143286, 'and are requiring': 58353, 'are requiring their': 89615, 'requiring their worker': 713533, 'their worker to': 875221, 'worker to continue': 1008000, 'to continue working': 903412, 'continue working during': 201294, 'working during this': 1008605, 'this pandemic answer': 889368, 'pandemic answer below': 634925, 'answer below let': 78018, 'below let make': 126687, 'let make list': 486884, 'make list so': 510095, 'list so we': 494536, 'we can bring': 970916, 'can bring it': 157797, 'bring it to': 140014, 'the public attention': 864791, 'public attention dotheirpart': 687884, 'ironically': 444944, 'traveled': 930596, '80km': 22760, 'gasprices': 344280, 'roadtrip': 724562, 'so gas': 777152, 'about 80': 24747, '80 liter': 22597, 'liter haven': 494921, 'that low': 844961, 'low in': 505330, 'long time': 501762, 'time ironically': 897048, 'ironically we': 444949, 'haven traveled': 383915, 'traveled 80km': 930597, '80km in': 22761, 'half gasprices': 374177, 'gasprices roadtrip': 344303, 'so gas price': 777153, 'are at about': 84661, 'at about 80': 97834, 'about 80 liter': 24748, '80 liter haven': 22598, 'liter haven seen': 494922, 'haven seen them': 383891, 'seen them that': 747309, 'them that low': 876379, 'that low in': 844963, 'low in long': 505335, 'in long time': 424915, 'long time ironically': 501773, 'time ironically we': 897049, 'ironically we haven': 444950, 'we haven traveled': 971998, 'haven traveled 80km': 383916, 'traveled 80km in': 930598, '80km in the': 22762, 'past week and': 643640, 'week and half': 975914, 'and half gasprices': 64121, 'half gasprices roadtrip': 374178, 'wa going': 962218, 'be bad': 113790, 'bad but': 107794, 'not this': 572098, 'knew it wa': 476053, 'it wa going': 462119, 'wa going to': 962221, 'to be bad': 901123, 'be bad but': 113791, 'bad but not': 107799, 'but not this': 146574, 'not this bad': 572100, 'mandatory the': 513068, 'joke the': 467140, 'the marina': 860072, 'marina are': 515745, 'supermarket everyday': 820230, 'everyday in': 286577, 'florida come': 310911, 'come tragedy': 187634, 'tragedy drastic': 929169, 'drastic measure': 258407, 'mandatory the people': 513069, 'the people think': 863511, 'people think that': 649835, 'think that is': 885594, 'that is joke': 844612, 'is joke the': 449109, 'joke the marina': 467141, 'the marina are': 860073, 'marina are full': 515746, 'full the people': 340924, 'the people go': 863474, 'the supermarket everyday': 868580, 'supermarket everyday in': 820231, 'everyday in florida': 286579, 'in florida come': 422938, 'florida come tragedy': 310912, 'come tragedy drastic': 187635, 'tragedy drastic measure': 929170, 'pork': 664781, 'cordon': 203504, 'gruyere': 367528, 'sauce': 737133, 'healthy during': 387583, 'find chicken': 306845, 'chicken at': 175747, 'try this': 934590, 'this pork': 889664, 'pork cordon': 664788, 'cordon blue': 203505, 'blue with': 133486, 'with gruyere': 998704, 'gruyere cheese': 367529, 'cheese sauce': 175213, 'sauce and': 737134, 'herb butter': 392570, 'everyone is safe': 287106, 'is safe and': 451615, 'and healthy during': 64385, 'healthy during this': 387586, 'difficult time when': 242318, 'time when you': 898312, 'when you cannot': 984545, 'cannot find chicken': 161835, 'find chicken at': 306846, 'chicken at the': 175749, 'grocery store try': 365887, 'store try this': 810965, 'try this pork': 934594, 'this pork cordon': 889665, 'pork cordon blue': 664789, 'cordon blue with': 203506, 'blue with gruyere': 133487, 'with gruyere cheese': 998705, 'gruyere cheese sauce': 367530, 'cheese sauce and': 175214, 'sauce and herb': 737138, 'and herb butter': 64524, 'herb butter pasta': 392571, 'exit': 290361, 'unloading': 942810, 'the station': 867832, 'head out': 385802, 'and cover': 60657, 'cover news': 212264, 'news spotted': 560808, 'spotted line': 790201, 'line outside': 493345, 'the wine': 871601, 'wine store': 995905, 'got told': 358979, 'wait outside': 964172, 'outside for': 629428, 'to exit': 905426, 'exit the': 290376, 'store which': 811269, 'which just': 986086, 'to happened': 907168, 'be unloading': 117876, 'unloading fresh': 942811, 'fresh shipment': 333073, 'shipment of': 758763, 'paper socialdistancing': 640798, 'left the station': 485673, 'the station to': 867834, 'station to head': 796536, 'to head out': 907361, 'head out and': 385803, 'out and cover': 625655, 'and cover news': 60658, 'cover news spotted': 212265, 'news spotted line': 560809, 'spotted line outside': 790202, 'line outside the': 493351, 'outside the wine': 629606, 'the wine store': 871605, 'wine store and': 995906, 'and got told': 63866, 'got told to': 358982, 'told to wait': 923772, 'to wait outside': 918270, 'wait outside for': 964174, 'outside for customer': 629429, 'for customer to': 320514, 'customer to exit': 222962, 'to exit the': 905427, 'exit the grocery': 290377, 'grocery store which': 365948, 'store which just': 811273, 'which just to': 986088, 'just to happened': 470094, 'to happened to': 907169, 'happened to be': 377274, 'to be unloading': 901613, 'be unloading fresh': 117877, 'unloading fresh shipment': 942812, 'fresh shipment of': 333074, 'shipment of toilet': 758770, 'toilet paper socialdistancing': 921457, 'retailstrong please': 719554, 'retailstrong please join': 719555, 'please join by': 660131, 'retailer during the': 719126, 'the space': 867528, 'space of': 787145, 'from looking': 336274, 'to going': 906900, 'my shopping': 550052, 'not wanting': 572449, 'case catch': 165678, 'catch scary': 167022, 'scary time': 741203, 'in the space': 429556, 'the space of': 867530, 'space of week': 787148, 'week ve gone': 977161, 've gone from': 953157, 'gone from looking': 356285, 'from looking forward': 336275, 'forward to going': 330027, 'to going to': 906903, 'supermarket to get': 823374, 'get my shopping': 347639, 'my shopping to': 550062, 'shopping to not': 764183, 'to not wanting': 910717, 'not wanting to': 572450, 'wanting to go': 966304, 'go in case': 353703, 'in case catch': 421257, 'case catch scary': 165679, 'catch scary time': 167023, 'all normal': 43654, 'normal again': 567075, 'again church': 36945, 'church need': 178388, 'need easter': 554726, 'all spread': 44410, 'spread out': 790738, 'out remember': 627103, 'remember you': 710431, 'closer than': 183507, 'think to': 885713, 'to person': 911674, 'person at': 652322, 'out line': 626504, 'store america': 806160, 'is coming': 446649, 'to make it': 909685, 'make it all': 510018, 'it all normal': 456361, 'all normal again': 43655, 'normal again church': 567076, 'again church need': 36946, 'church need easter': 178389, 'need easter service': 554727, 'easter service we': 265489, 'service we can': 753052, 'can all spread': 157434, 'all spread out': 44411, 'spread out remember': 790739, 'out remember you': 627104, 'remember you are': 710432, 'you are closer': 1017089, 'are closer than': 85381, 'closer than you': 183511, 'than you think': 841499, 'you think to': 1021682, 'think to person': 885716, 'to person at': 911675, 'person at the': 652323, 'at the check': 100909, 'the check out': 850747, 'check out line': 174557, 'out line of': 626507, 'line of grocery': 493303, 'grocery store america': 365190, 'store america is': 806161, 'america is coming': 51572, 'is coming back': 446651, 'prioritise': 678385, 'different society': 242063, 'society prioritise': 781290, 'prioritise different': 678388, 'different thing': 242096, 'thing the': 884828, 'the tea': 869189, 'tea aisle': 835331, 'different society prioritise': 242064, 'society prioritise different': 781291, 'prioritise different thing': 678389, 'different thing the': 242099, 'thing the tea': 884837, 'the tea aisle': 869190, 'tea aisle in': 835332, 'aisle in london': 40276, 'in london supermarket': 424898, 'only bought': 610186, 'bought thing': 136749, 'for immediate': 322478, 'immediate use': 417041, 'use plus': 949487, 'plus couple': 661581, 'thing for': 884326, '90 year': 23355, 'old and': 598131, 'am surprised': 50464, 'surprised at': 828570, 'many clearly': 513906, 'clearly over': 181539, 'old were': 598526, 'the very': 870699, 'very crowded': 955090, 'crowded aisle': 219288, 'supermarket only bought': 821768, 'only bought thing': 610189, 'bought thing need': 136750, 'thing need for': 884611, 'need for immediate': 554846, 'for immediate use': 322479, 'immediate use plus': 417042, 'use plus couple': 949488, 'plus couple of': 661582, 'couple of thing': 211647, 'of thing for': 591898, 'thing for 90': 884327, 'for 90 year': 318950, '90 year old': 23356, 'year old and': 1014808, 'old and am': 598133, 'and am surprised': 58034, 'am surprised at': 50465, 'surprised at how': 828571, 'at how many': 99223, 'how many clearly': 408253, 'many clearly over': 513907, 'clearly over 70': 181540, 'over 70 year': 629926, 'year old were': 1014875, 'old were shopping': 598527, 'were shopping in': 980109, 'shopping in the': 762990, 'in the very': 429646, 'the very crowded': 870702, 'very crowded aisle': 955091, 'sprayer': 790368, 'force to': 328521, 'think again': 885122, 'again about': 36868, 'we poop': 972718, 'poop seriously': 664067, 'seriously if': 751636, 'you adopt': 1016827, 'adopt the': 32678, 'water sprayer': 969160, 'sprayer an': 790369, 'to toiletpaper': 917624, 'toiletpaper you': 922888, 'you won': 1022396, 'won need': 1003875, 'buy 60': 148267, '60 pack': 20979, 'of tissue': 592199, 'tissue for': 899145, 'for doomsday': 320835, 'doomsday toiletpaperpanic': 255480, 'force to think': 328534, 'to think again': 917371, 'think again about': 885123, 'again about the': 36869, 'about the way': 26557, 'way we poop': 970177, 'we poop seriously': 972719, 'poop seriously if': 664068, 'seriously if you': 751639, 'if you adopt': 415387, 'you adopt the': 1016828, 'adopt the water': 32681, 'the water sprayer': 871127, 'water sprayer an': 969161, 'sprayer an alternative': 790370, 'alternative to toiletpaper': 49275, 'to toiletpaper you': 917626, 'toiletpaper you won': 922891, 'you won need': 1022402, 'won need to': 1003877, 'to buy 60': 902172, 'buy 60 pack': 148268, '60 pack of': 20980, 'pack of tissue': 633112, 'of tissue for': 592201, 'tissue for doomsday': 899147, 'for doomsday toiletpaperpanic': 320836, 'dental': 237080, 'hygienist': 412247, 'amber': 51294, 'sanchez': 733602, 'dental hygienist': 237081, 'hygienist amber': 412248, 'amber metro': 51295, 'metro sanchez': 529938, 'sanchez explains': 733605, 'how she': 408655, 'she found': 756040, 'found solution': 330373, 'solution to': 782090, 'the dry': 853749, 'dry hand': 261276, 'hand that': 375817, 'that result': 846027, 'result from': 717507, 'from practicing': 336966, 'practicing hand': 668729, 'hand hygiene': 375025, 'hygiene on': 412129, 'basis now': 112257, 'ever dentistry': 285269, 'dental hygienist amber': 237082, 'hygienist amber metro': 412249, 'amber metro sanchez': 51296, 'metro sanchez explains': 529939, 'sanchez explains how': 733606, 'explains how she': 292217, 'how she found': 408658, 'she found solution': 756042, 'found solution to': 330374, 'solution to the': 782115, 'to the dry': 916657, 'the dry hand': 853751, 'dry hand that': 261277, 'hand that result': 375819, 'that result from': 846028, 'result from practicing': 717512, 'from practicing hand': 336967, 'practicing hand hygiene': 668730, 'hand hygiene on': 375029, 'hygiene on daily': 412130, 'daily basis now': 224509, 'basis now more': 112258, 'than ever dentistry': 840577, 'one keeping': 606552, 'internet and': 441904, 'medium going': 527119, 'from the health': 337737, 'health and supermarket': 386157, 'supermarket worker the': 824095, 'worker the real': 1007938, 'the real hero': 865222, 'real hero are': 701197, 'hero are the': 393940, 'the one keeping': 862206, 'one keeping the': 606553, 'keeping the internet': 472579, 'the internet and': 858377, 'internet and social': 441907, 'social medium going': 779856, 'shadow': 754336, 'tote': 926416, 'delayed': 232763, 'product drop': 681135, 'drop added': 260107, 'added the': 31610, 'the shadow': 866760, 'shadow tote': 754347, 'tote to': 926417, 'my shop': 550044, 'shop shipping': 760767, 'domestic have': 253196, 'been decreased': 120933, 'decreased and': 231620, 'all item': 43281, 'item can': 463171, 'shipped internationally': 758801, 'internationally please': 441884, 'that due': 843644, '19 item': 8169, 'item may': 463450, 'be delayed': 114382, 'delayed so': 232812, 'so pls': 778033, 'pls be': 661113, 'product drop added': 681136, 'drop added the': 260108, 'added the shadow': 31611, 'the shadow tote': 866764, 'shadow tote to': 754348, 'tote to my': 926418, 'to my shop': 910434, 'my shop shipping': 550050, 'shop shipping price': 760768, 'shipping price for': 758893, 'price for domestic': 673952, 'for domestic have': 320813, 'domestic have been': 253197, 'have been decreased': 379504, 'been decreased and': 120934, 'decreased and all': 231621, 'and all item': 57869, 'all item can': 43282, 'item can now': 463172, 'can now be': 159057, 'now be shipped': 574205, 'be shipped internationally': 117141, 'shipped internationally please': 758802, 'internationally please note': 441885, 'note that due': 572800, 'that due to': 843645, 'covid 19 item': 213300, '19 item may': 8170, 'item may be': 463451, 'may be delayed': 520971, 'be delayed so': 114386, 'delayed so pls': 232813, 'so pls be': 778034, 'pls be patient': 661115, 'finalized': 305916, 'sold just': 781691, 'just delivered': 468568, 'delivered take': 233398, 'our reduced': 624563, 'for quick': 324914, 'quick sale': 694364, 'sale all': 732024, 'all sale': 44233, 'are finalized': 86561, 'finalized with': 305921, 'with proper': 1000341, 'proper precaution': 684130, 'sanitized vehicle': 734267, 'vehicle delivery': 954257, 'sold just delivered': 781692, 'just delivered take': 468570, 'delivered take advantage': 233399, 'advantage of our': 33021, 'of our reduced': 587553, 'our reduced price': 624564, 'reduced price due': 706146, 'we have reduced': 971918, 'have reduced price': 382231, 'reduced price for': 706149, 'price for quick': 674033, 'for quick sale': 324917, 'quick sale all': 694365, 'sale all sale': 732026, 'all sale are': 44234, 'sale are finalized': 732062, 'are finalized with': 86562, 'finalized with proper': 305922, 'with proper precaution': 1000344, 'proper precaution and': 684131, 'precaution and sanitized': 669278, 'and sanitized vehicle': 70854, 'sanitized vehicle delivery': 734268, 'vehicle delivery available': 954258, 'scuffle': 742957, 'respectful': 715122, 'justsaying': 470512, 'medium scare': 527265, 'scare with': 740930, 'with pic': 1000204, 'supermarket scuffle': 822347, 'scuffle but': 742962, 'local sainsbury': 498362, 'sainsbury this': 731734, 'morning young': 541556, 'young and': 1022564, 'old alike': 598127, 'alike have': 41781, 'been nothing': 121577, 'but kind': 146229, 'and respectful': 70339, 'respectful to': 715127, 'to each': 904818, 'other justsaying': 620455, 'the medium scare': 860439, 'medium scare with': 527266, 'scare with pic': 740931, 'with pic of': 1000205, 'pic of panic': 655614, 'buying and supermarket': 149936, 'and supermarket scuffle': 72734, 'supermarket scuffle but': 822348, 'scuffle but in': 742963, 'my local sainsbury': 549137, 'local sainsbury this': 498365, 'sainsbury this morning': 731735, 'this morning young': 889042, 'morning young and': 541557, 'young and old': 1022567, 'and old alike': 68033, 'old alike have': 598128, 'alike have been': 41782, 'have been nothing': 379619, 'been nothing but': 121578, 'nothing but kind': 572956, 'but kind and': 146230, 'kind and respectful': 474811, 'and respectful to': 70340, 'respectful to each': 715128, 'to each other': 904828, 'each other justsaying': 264188, 'earnings': 264888, 'ubs': 937863, 'wealth': 974142, 'claudia': 180398, 'panseri': 639480, 'preservation': 670683, 'expect deep': 290627, 'deep but': 231850, 'but short': 147043, 'short earnings': 764610, 'earnings recession': 264926, 'recession ahead': 704200, 'ahead earnings': 39147, 'earnings hit': 264915, 'hit much': 398330, 'much harder': 544976, 'harder in': 378170, 'in developed': 422234, 'developed market': 239718, 'market than': 517170, 'than em': 840543, 'em ubs': 272087, 'ubs global': 937866, 'global wealth': 352295, 'wealth management': 974173, 'management claudia': 512550, 'claudia panseri': 180399, 'panseri we': 639483, 'we also': 970393, 'also expect': 48176, 'expect dividend': 290632, 'dividend to': 248642, 'be hurt': 115332, 'hurt company': 411557, 'company focus': 190666, 'on balance': 599544, 'balance sheet': 108982, 'sheet and': 756592, 'and cash': 59603, 'cash preservation': 166310, 'we expect deep': 971494, 'expect deep but': 290628, 'deep but short': 231851, 'but short earnings': 147044, 'short earnings recession': 764611, 'earnings recession ahead': 264927, 'recession ahead earnings': 704201, 'ahead earnings hit': 39148, 'earnings hit much': 264916, 'hit much harder': 398331, 'much harder in': 544979, 'harder in developed': 378171, 'in developed market': 422236, 'developed market than': 239720, 'market than em': 517171, 'than em ubs': 840544, 'em ubs global': 272088, 'ubs global wealth': 937867, 'global wealth management': 352296, 'wealth management claudia': 974174, 'management claudia panseri': 512551, 'claudia panseri we': 180401, 'panseri we also': 639484, 'we also expect': 970397, 'also expect dividend': 48177, 'expect dividend to': 290633, 'dividend to be': 248643, 'to be hurt': 901320, 'be hurt company': 115333, 'hurt company focus': 411558, 'company focus on': 190667, 'focus on balance': 311864, 'on balance sheet': 599545, 'balance sheet and': 108983, 'sheet and cash': 756593, 'and cash preservation': 59606, 'supermarket charging': 819654, 'charging normal': 173506, 'for pack': 324345, 'pack loo': 633068, 'loo paper': 502152, 'for normal': 323913, 'price plus': 675941, 'plus per': 661656, 'per pack': 650965, 'pack for': 633045, 'plus 10': 661553, '10 per': 1619, 'pack extra': 633037, 'extra money': 293578, 'money go': 536784, 'to charitable': 902646, 'charitable fund': 173544, 'local supermarket charging': 498510, 'supermarket charging normal': 819655, 'charging normal price': 173507, 'price for pack': 674020, 'for pack loo': 324346, 'pack loo paper': 633069, 'loo paper for': 502155, 'paper for normal': 640180, 'for normal price': 323915, 'normal price plus': 567279, 'price plus per': 675943, 'plus per pack': 661657, 'per pack for': 650967, 'pack for normal': 633047, 'price plus 10': 675942, 'plus 10 per': 661554, '10 per pack': 1623, 'per pack extra': 650966, 'pack extra money': 633038, 'extra money go': 293581, 'money go to': 536785, 'go to charitable': 354287, 'to charitable fund': 902647, 'could dip': 209084, 'dip due': 243180, 'to production': 912225, 'production increase': 682077, 'increase expert': 432763, 'say read': 739091, 'gasoline price could': 344255, 'price could dip': 673277, 'could dip due': 209085, 'dip due to': 243181, 'due to production': 261914, 'to production increase': 912228, 'production increase expert': 682078, 'increase expert say': 432764, 'expert say read': 291957, 'say read more': 739092, 'commercial in': 188710, '2021 are': 14765, 'like were': 491785, 'or loved': 616016, 'one overly': 606814, 'overly exposed': 631315, 'to lysol': 909531, 'lysol hand': 507174, 'or bleach': 614560, 'bleach during': 132494, 'pandemic of': 636067, '2020 then': 14647, 'for compensation': 320209, 'compensation please': 191572, '800 covid19': 22695, 'covid19 to': 214392, 'you qualify': 1020518, 'commercial in 2021': 188711, 'in 2021 are': 419867, '2021 are gonna': 14766, 'are gonna be': 86913, 'gonna be like': 356474, 'be like were': 115753, 'like were you': 491787, 'were you or': 980365, 'you or loved': 1020225, 'or loved one': 616017, 'loved one overly': 504919, 'one overly exposed': 606815, 'overly exposed to': 631316, 'exposed to lysol': 292898, 'to lysol hand': 909533, 'lysol hand sanitizer': 507175, 'sanitizer and or': 734424, 'and or bleach': 68207, 'or bleach during': 614561, 'bleach during the': 132495, 'the pandemic of': 863038, 'pandemic of 2020': 636068, 'of 2020 then': 579506, '2020 then you': 14648, 'then you may': 877788, 'may be eligible': 520978, 'eligible for compensation': 271418, 'for compensation please': 320210, 'compensation please call': 191573, 'please call 800': 659748, 'call 800 covid19': 155727, '800 covid19 to': 22696, 'covid19 to see': 214395, 'to see if': 914025, 'see if you': 745287, 'if you qualify': 415497, 'rectify': 705513, 'both amp': 135842, 'amp can': 53493, 'can meet': 158986, 'meet online': 527542, 'shopping demand': 762467, 'why can': 990857, 'they use': 883611, 'found themselves': 330420, 'themselves unemployed': 876920, 'unemployed because': 941111, 'to rectify': 913000, 'rectify this': 705514, 'both amp can': 135843, 'amp can meet': 53495, 'can meet online': 158990, 'meet online shopping': 527544, 'online shopping demand': 609089, 'shopping demand so': 762470, 'demand so why': 236246, 'so why can': 778751, 'why can they': 990862, 'can they use': 159984, 'they use the': 883620, 'use the people': 949686, 'who have found': 988924, 'have found themselves': 380707, 'found themselves unemployed': 330422, 'themselves unemployed because': 876921, 'unemployed because of': 941112, 'of the to': 591546, 'the to rectify': 869688, 'to rectify this': 913001, 'brunswick': 141355, 'new brunswick': 558422, 'brunswick food': 141356, 'bank bracing': 109687, 'for double': 320837, 'double demand': 255994, 'outbreak cbc': 628092, 'new brunswick food': 558423, 'brunswick food bank': 141357, 'food bank bracing': 313531, 'bank bracing for': 109688, 'bracing for double': 137500, 'for double demand': 320838, 'double demand amid': 255995, '19 outbreak cbc': 9096, 'outbreak cbc news': 628093, 'stat': 795314, 'southkorea': 786890, 'lol what': 500975, 'what stat': 982248, 'stat barrel': 795315, 'barrel of': 111250, 'oil is': 596901, 'now worth': 576481, 'worth le': 1011388, 'than one': 840976, 'one delivery': 606172, 'delivery pizza': 234340, 'pizza would': 657213, 'in southkorea': 428152, 'southkorea global': 786893, 'slump to': 774712, 'low yesterday': 505756, 'yesterday on': 1015822, 'on outbreak': 602648, 'outbreak saudi': 628596, 'saudi russia': 737295, 'russia price': 728544, 'lol what stat': 500976, 'what stat barrel': 982249, 'stat barrel of': 795316, 'barrel of oil': 111255, 'of oil is': 587186, 'oil is now': 596909, 'is now worth': 450359, 'now worth le': 576484, 'worth le than': 1011389, 'le than one': 483184, 'than one delivery': 840977, 'one delivery pizza': 606174, 'delivery pizza would': 234341, 'pizza would cost': 657214, 'would cost you': 1011742, 'cost you in': 208168, 'you in southkorea': 1019318, 'in southkorea global': 428153, 'southkorea global oil': 786894, 'oil price slump': 597263, 'price slump to': 676495, 'slump to an': 774713, 'year low yesterday': 1014742, 'low yesterday on': 505757, 'yesterday on outbreak': 1015823, 'on outbreak saudi': 602649, 'outbreak saudi russia': 628597, 'saudi russia price': 737299, 'russia price war': 728545, 'yeah braving': 1014238, 'store after': 806080, 'up more': 945401, 'more essential': 539144, 'item wish': 463834, 'wish me': 996789, 'me good': 522825, 'yeah braving the': 1014239, 'braving the grocery': 138288, 'grocery store after': 365179, 'store after work': 806087, 'work today to': 1005913, 'pick up more': 655736, 'up more essential': 945403, 'more essential item': 539147, 'essential item wish': 281238, 'item wish me': 463835, 'wish me good': 996790, 'me good luck': 522826, 'coli': 185896, 'botulism': 136452, 'winning': 996058, 'doesn get': 251797, 'you it': 1019383, 'the coli': 851143, 'coli and': 185897, 'and botulism': 59098, 'botulism in': 136453, 'store winning': 811355, 'winning aren': 996059, 'aren we': 92580, 'we happy': 971733, 'be living': 115781, 'greatest god': 363276, 'god fearing': 354692, 'fearing country': 301475, 'god green': 354724, 'green earth': 363660, 'so if covid': 777352, '19 doesn get': 6612, 'doesn get you': 251804, 'get you it': 348677, 'you it ll': 1019386, 'be the coli': 117605, 'the coli and': 851144, 'coli and botulism': 185898, 'and botulism in': 59099, 'botulism in the': 136454, 'food you panic': 317719, 'you panic buy': 1020283, 'grocery store winning': 365958, 'store winning aren': 811356, 'winning aren we': 996060, 'aren we happy': 92584, 'we happy to': 971734, 'happy to be': 377707, 'to be living': 901369, 'be living in': 115782, 'in the greatest': 429243, 'the greatest god': 856751, 'greatest god fearing': 363277, 'god fearing country': 354693, 'fearing country on': 301476, 'country on god': 210937, 'on god green': 601124, 'god green earth': 354725, 'professional grocery': 682447, 'employee delivery': 273766, 'driver pharmacy': 259692, 'worker mail': 1007341, 'carrier firefighter': 164981, 'police nursing': 663106, 'home employee': 401131, 'else who': 271980, 'now america': 574003, 'america thankyou': 51692, 'the medical professional': 860403, 'medical professional grocery': 526331, 'professional grocery store': 682448, 'store employee delivery': 807475, 'employee delivery driver': 273767, 'delivery driver pharmacy': 233928, 'driver pharmacy worker': 259694, 'pharmacy worker mail': 654580, 'worker mail carrier': 1007342, 'mail carrier firefighter': 508581, 'carrier firefighter police': 164982, 'firefighter police nursing': 308226, 'police nursing home': 663107, 'nursing home employee': 577615, 'home employee and': 401132, 'everyone else who': 286888, 'else who is': 271984, 'who is working': 989130, 'is working to': 454050, 'working to save': 1009002, 'life and keep': 488481, 'and keep all': 65749, 'keep all going': 471295, 'all going right': 42954, 'right now america': 722018, 'now america thankyou': 574004, 'something with': 785147, 'my hair': 548595, 'hair now': 373992, 'now online': 575447, 'for cute': 320518, 'cute baseball': 223651, 'baseball cap': 111484, 'cap stayhome': 162446, 'tried to do': 931833, 'to do something': 904558, 'do something with': 250158, 'something with my': 785148, 'with my hair': 999630, 'my hair now': 548596, 'hair now online': 373993, 'now online shopping': 575451, 'shopping for cute': 762669, 'for cute baseball': 320519, 'cute baseball cap': 223652, 'baseball cap stayhome': 111486, 'bruh': 141330, 'bruh still': 141335, 'still waiting': 801378, '19 intervention': 7912, 'intervention price': 442197, 'bruh still waiting': 141336, 'still waiting for': 801379, 'waiting for is': 964320, 'for is covid': 322665, 'covid 19 intervention': 213285, '19 intervention price': 7913, 'schedule': 741420, 'food anywhere': 313396, 'anywhere grocery': 81113, 'empty wa': 275224, 'wa counting': 961885, 'me through': 523726, 'they show': 883392, 'show food': 766948, 'delivery time': 234640, 'available no': 104507, 'to schedule': 913894, 'schedule beyond': 741429, 'beyond day': 129155, 'day out': 228176, 'out have': 626261, 'have completely': 380058, 'completely given': 192298, 'given up': 351195, 'no food anywhere': 564250, 'food anywhere grocery': 313397, 'anywhere grocery store': 81114, 'store empty wa': 807587, 'empty wa counting': 275225, 'wa counting on': 961886, 'counting on to': 210364, 'on to see': 604759, 'see me through': 745410, 'me through this': 523729, 'through this crisis': 894811, 'this crisis but': 887023, 'crisis but no': 217151, 'but no they': 146503, 'no they show': 565709, 'they show food': 883393, 'show food in': 766949, 'food in stock': 314970, 'stock but no': 801946, 'but no delivery': 146482, 'no delivery time': 563994, 'delivery time available': 234643, 'time available no': 896356, 'available no option': 104510, 'no option to': 565005, 'option to schedule': 614131, 'to schedule beyond': 913895, 'schedule beyond day': 741430, 'beyond day out': 129156, 'day out have': 228177, 'out have completely': 626262, 'have completely given': 380060, 'completely given up': 192299, 'given up on': 351198, 'up on them': 945629, 'trickiest': 931725, 'terminal': 838356, 'pressing': 671113, 'waving': 969402, 'one the': 607196, 'the trickiest': 869980, 'trickiest thing': 931726, 'this with': 891455, 'to checkout': 902701, 'checkout at': 174886, 'the contaminated': 851654, 'contaminated credit': 200654, 'card machine': 163575, 'machine terminal': 507405, 'terminal and': 838357, 'and having': 64293, 'keep pressing': 471809, 'pressing button': 671114, 'button yes': 148217, 'yes no': 1015492, 'no cash': 563770, 'cash back': 166171, 'back etc': 106981, 'etc wear': 282865, 'glove just': 352748, 'just waving': 470252, 'waving cc': 969405, 'cc would': 168413, 'le risky': 483103, 'one the trickiest': 607204, 'the trickiest thing': 869981, 'trickiest thing in': 931727, 'thing in time': 884443, 'like this with': 491552, 'this with the': 891466, 'with the at': 1001207, 'the at the': 849002, 'store is trying': 808543, 'trying to checkout': 934778, 'to checkout at': 902702, 'checkout at the': 174889, 'at the contaminated': 100914, 'the contaminated credit': 851656, 'contaminated credit card': 200655, 'credit card machine': 216343, 'card machine terminal': 163577, 'machine terminal and': 507406, 'terminal and having': 838358, 'and having to': 64301, 'having to keep': 384350, 'to keep pressing': 908832, 'keep pressing button': 471810, 'pressing button yes': 671115, 'button yes no': 148218, 'yes no no': 1015494, 'no no cash': 564873, 'no cash back': 563771, 'cash back etc': 166175, 'back etc wear': 106982, 'etc wear glove': 282866, 'wear glove just': 974340, 'glove just waving': 352750, 'just waving cc': 470253, 'waving cc would': 969406, 'cc would be': 168414, 'would be le': 1011613, 'be le risky': 115674, 'been praised': 121689, 'island supplied': 454312, 'supplied with': 824476, 'supermarket worker have': 824031, 'worker have been': 1007082, 'have been praised': 379638, 'been praised for': 121690, 'praised for pulling': 668885, 'for pulling out': 324858, 'stop to keep': 805220, 'keep the island': 472051, 'the island supplied': 858553, 'island supplied with': 454313, 'supplied with food': 824477, 'other essential during': 620158, 'essential during the': 280979, 'saleem': 732662, 'safi': 730864, 'imran': 419638, 'khan': 473701, 'ik': 416015, 'resignation': 714471, 'imf': 416894, 'ig': 415661, 'punjab': 689267, 'fazlu': 300635, 'dharna': 240106, 'saleem safi': 732663, 'safi in': 730865, 'in report': 427398, 'report card': 711854, 'card imran': 163549, 'imran govt': 419639, 'govt failed': 361114, 'control imran': 202025, 'imran khan': 419641, 'khan govt': 473706, 'govt should': 361275, 'should resign': 766412, 'resign there': 714469, 'be national': 116045, 'national govt': 552513, 'govt representing': 361261, 'representing all': 712940, 'all stakeholder': 44419, 'stakeholder he': 793328, 'he previously': 385303, 'previously demanded': 672031, 'demanded ik': 236552, 'ik resignation': 416018, 'resignation over': 714472, 'over imf': 630308, 'imf loan': 416902, 'loan usd': 497550, 'usd price': 948929, 'price ig': 674625, 'ig punjab': 415668, 'punjab tomato': 689280, 'tomato price': 923958, 'price fazlu': 673831, 'fazlu dharna': 300636, 'saleem safi in': 732664, 'safi in report': 730866, 'in report card': 427399, 'report card imran': 711855, 'card imran govt': 163550, 'imran govt failed': 419640, 'govt failed to': 361115, 'failed to control': 296174, 'to control imran': 903446, 'control imran khan': 202026, 'imran khan govt': 419642, 'khan govt should': 473707, 'govt should resign': 361281, 'should resign there': 766413, 'resign there should': 714470, 'should be national': 765676, 'be national govt': 116046, 'national govt representing': 552515, 'govt representing all': 361262, 'representing all stakeholder': 712941, 'all stakeholder he': 44420, 'stakeholder he previously': 793329, 'he previously demanded': 385304, 'previously demanded ik': 672032, 'demanded ik resignation': 236553, 'ik resignation over': 416019, 'resignation over imf': 714473, 'over imf loan': 630309, 'imf loan usd': 416903, 'loan usd price': 497551, 'usd price ig': 948930, 'price ig punjab': 674626, 'ig punjab tomato': 415669, 'punjab tomato price': 689281, 'tomato price fazlu': 923960, 'price fazlu dharna': 673832, 'at houston': 99202, 'houston food': 407198, 'bank here': 109901, 'help family': 389677, 'your community': 1023266, '19 ha doubled': 7341, 'ha doubled the': 370434, 'doubled the demand': 256144, 'demand for meal': 235452, 'for meal at': 323352, 'meal at houston': 524108, 'at houston food': 99203, 'houston food bank': 407199, 'food bank here': 313584, 'bank here how': 109902, 'here how you': 393118, 'can help family': 158616, 'help family in': 389680, 'family in your': 297930, 'in your community': 431069, 'chore': 177996, 'eyewear': 294153, 'sunglass': 818373, 'run any': 727566, 'any essential': 79189, 'essential chore': 280892, 'chore have': 178005, 'have learned': 381276, 'use protective': 949499, 'protective eyewear': 685743, 'eyewear or': 294154, 'or sunglass': 617269, 'sunglass would': 818382, 'than nothing': 840949, 'nothing everything': 573003, 'everything possible': 287973, 'prevent getting': 671632, 'getting and': 348838, 'store or having': 809338, 'having to run': 384361, 'to run any': 913656, 'run any essential': 727567, 'any essential chore': 79190, 'essential chore have': 280893, 'chore have learned': 178006, 'have learned that': 381279, 'learned that it': 484145, 'that it is': 844720, 'advisable to use': 33570, 'to use protective': 918057, 'use protective eyewear': 949500, 'protective eyewear or': 685744, 'eyewear or sunglass': 294155, 'or sunglass would': 617271, 'sunglass would be': 818383, 'be better than': 113843, 'better than nothing': 128528, 'than nothing everything': 840950, 'nothing everything possible': 573004, 'everything possible to': 287974, 'possible to prevent': 665849, 'to prevent getting': 912063, 'prevent getting and': 671633, 'getting and spreading': 348841, 'and spreading it': 72156, 'spreading it to': 790991, 'it to my': 461733, 'to my mom': 910419, 'newyork': 561179, 'cornell': 203628, 'battle to': 112834, 'keep worker': 472216, 'worker safe': 1007718, 'safe during': 729609, 'pandemic nearly': 636013, 'nearly 40': 553777, '40 craft': 18561, 'craft distillery': 214771, 'distillery in': 247761, 'in newyork': 425851, 'newyork have': 561188, 'have turned': 383425, 'turned to': 935885, 'making handsanitizer': 511105, 'handsanitizer with': 376680, 'with guidance': 998706, 'guidance from': 368236, 'from cornell': 335000, 'cornell ny': 203631, 'ny nyc': 577904, 'the battle to': 849351, 'battle to keep': 112836, 'to keep worker': 908879, 'keep worker safe': 472218, 'worker safe during': 1007719, 'safe during the': 729614, 'the pandemic nearly': 863031, 'pandemic nearly 40': 636014, 'nearly 40 craft': 553778, '40 craft distillery': 18562, 'craft distillery in': 214772, 'distillery in newyork': 247764, 'in newyork have': 425852, 'newyork have turned': 561189, 'have turned to': 383431, 'turned to making': 935886, 'to making handsanitizer': 909776, 'making handsanitizer with': 511107, 'handsanitizer with guidance': 376681, 'with guidance from': 998707, 'guidance from cornell': 368237, 'from cornell ny': 335001, 'cornell ny nyc': 203632, 'indie': 435057, 'indie toy': 435062, 'toy retailer': 927693, 'retailer step': 719331, 'indie toy retailer': 435063, 'toy retailer step': 927694, 'retailer step up': 719332, 'step up during': 799686, 'up during crisis': 944753, 'approaching': 83012, 'faltering': 297492, 'category3': 167236, 'evacuation': 283692, 'devastation': 239609, 'were wishing': 980349, 'wishing but': 996874, 'but hurricane': 145980, 'hurricane season': 411488, 'is approaching': 445795, 'approaching live': 83016, 'in houston': 423867, 'houston pretty': 407217, 'pretty worried': 671525, 'what covid19': 981278, 'covid19 low': 214334, 'price faltering': 673819, 'faltering economy': 297495, 'economy category3': 267747, 'category3 or': 167237, 'or hurricane': 615698, 'hurricane evacuation': 411472, 'evacuation devastation': 283695, 'devastation co': 239614, 'not that this': 571976, 'that this is': 846996, 'is what you': 453907, 'what you were': 982700, 'you were wishing': 1022262, 'were wishing but': 980350, 'wishing but hurricane': 996875, 'but hurricane season': 145981, 'hurricane season is': 411489, 'season is approaching': 743407, 'is approaching live': 445796, 'approaching live in': 83017, 'live in houston': 495868, 'in houston pretty': 423871, 'houston pretty worried': 407218, 'pretty worried about': 671526, 'worried about what': 1010530, 'about what covid19': 26880, 'what covid19 low': 981279, 'covid19 low oil': 214335, 'oil price faltering': 597128, 'price faltering economy': 673820, 'faltering economy category3': 297496, 'economy category3 or': 267748, 'category3 or hurricane': 167238, 'or hurricane evacuation': 615699, 'hurricane evacuation devastation': 411473, 'evacuation devastation co': 283696, 'assigned': 96601, 'company will': 191327, 'will expand': 993369, 'it warehouse': 462239, 'and strength': 72546, 'strength to': 813234, 'pandemic 100': 634763, '00 worker': 604, 'be assigned': 113713, 'assigned to': 96602, 'the company will': 851363, 'company will expand': 191331, 'will expand it': 993371, 'expand it warehouse': 290460, 'it warehouse and': 462240, 'warehouse and strength': 966687, 'and strength to': 72547, 'strength to cope': 813235, 'with the increase': 1001344, 'in demand amid': 422102, 'the pandemic 100': 862888, 'pandemic 100 00': 634764, '100 00 worker': 1803, '00 worker will': 612, 'worker will be': 1008246, 'will be assigned': 992367, 'be assigned to': 113714, 'assigned to increase': 96603, 'dichotomy': 240450, 'thankstrump': 842312, 'to process': 912170, 'process the': 679964, 'the dichotomy': 853243, 'dichotomy of': 240453, 'home delivering': 401003, 'delivering hr': 233515, 'hr training': 409673, 'training webinars': 929370, 'webinars usual': 975158, 'usual when': 951064, 'when if': 983583, 'if need': 414451, 'medicine have': 526800, 'have wear': 383566, 'go wait': 354473, 'wait in': 964138, 'for rationed': 324965, 'rationed food': 697778, 'local under': 498666, 'under stocked': 940264, 'fuck thankstrump': 339650, 'hard to process': 378080, 'to process the': 912176, 'process the dichotomy': 679966, 'the dichotomy of': 853244, 'dichotomy of working': 240454, 'from home delivering': 335852, 'home delivering hr': 401004, 'delivering hr training': 233516, 'hr training webinars': 409674, 'training webinars usual': 929371, 'webinars usual when': 975159, 'usual when if': 951065, 'when if need': 983584, 'if need food': 414452, 'need food or': 554803, 'or medicine have': 616117, 'medicine have wear': 526802, 'have wear mask': 383567, 'and glove to': 63742, 'glove to go': 352970, 'to go wait': 906881, 'go wait in': 354474, 'wait in line': 964141, 'line for rationed': 493111, 'for rationed food': 324966, 'rationed food at': 697779, 'food at local': 313448, 'at local under': 99611, 'local under stocked': 498667, 'under stocked grocery': 940265, 'store what the': 811231, 'the fuck thankstrump': 855973, 'tjmaxx': 899321, 'burlington': 142881, 'how incredibly': 408058, 'incredibly irresponsible': 433908, 'irresponsible these': 445082, 'these retailer': 880600, 'open place': 612444, 'like tjmaxx': 491568, 'tjmaxx burlington': 899322, 'burlington ross': 142884, 'ross etc': 726141, 'etc anywhere': 282413, 'anywhere that': 81156, 'considered luxury': 195307, 'luxury should': 506959, 'open they': 612567, 'reason push': 702982, 'push that': 690321, 'that instead': 844523, 'instead forcing': 440184, 'forcing your': 328754, 'your people': 1025245, 'how incredibly irresponsible': 408060, 'incredibly irresponsible these': 433909, 'irresponsible these retailer': 445083, 'these retailer are': 880602, 'retailer are for': 718998, 'are for staying': 86648, 'for staying open': 325890, 'staying open place': 798678, 'open place like': 612445, 'place like tjmaxx': 657558, 'like tjmaxx burlington': 491569, 'tjmaxx burlington ross': 899323, 'burlington ross etc': 142885, 'ross etc anywhere': 726142, 'etc anywhere that': 282414, 'anywhere that is': 81157, 'that is considered': 844569, 'is considered luxury': 446749, 'considered luxury should': 195308, 'luxury should not': 506960, 'not be open': 568426, 'be open they': 116253, 'open they have': 612569, 'they have online': 882356, 'have online shopping': 381807, 'shopping for reason': 762708, 'for reason push': 325003, 'reason push that': 702983, 'push that instead': 690322, 'that instead forcing': 844524, 'instead forcing your': 440185, 'forcing your people': 328755, 'your people to': 1025248, 'people to risk': 649935, 'to risk their': 913605, 'risk their health': 723936, 'florida resident': 310972, 'resident working': 714407, 'drive real': 259134, 'my winter': 550617, 'winter home': 996125, 'home dream': 401099, 'dream reality': 258613, 'reality thanks': 701797, 'thanks guy': 842097, 'guy knew': 369065, 'knew could': 476030, 'could count': 209055, 'count on': 210142, 'you well': 1022230, 'well cnn': 978107, 'florida resident working': 310975, 'resident working hard': 714408, 'hard to drive': 378060, 'to drive real': 904746, 'drive real estate': 259135, 'estate price down': 282178, 'price down and': 673518, 'down and making': 256502, 'and making my': 66595, 'making my winter': 511241, 'my winter home': 550618, 'winter home dream': 996126, 'home dream reality': 401100, 'dream reality thanks': 258614, 'reality thanks guy': 701798, 'thanks guy knew': 842099, 'guy knew could': 369066, 'knew could count': 476031, 'could count on': 209056, 'count on you': 210149, 'on you well': 605443, 'you well cnn': 1022231, 'ko': 477285, 'olau': 598112, 'helpingothers': 391563, 'helping this': 391511, 'company they': 191204, 'responder healthcare': 715475, 'essential civil': 280896, 'civil personnel': 179526, 'personnel ko': 653126, 'ko olau': 477289, 'olau distillery': 598113, 'distillery sanitizer': 247806, 'sanitizer supply': 735831, 'supply fund': 825303, 'fund 19': 341345, '19 helpingothers': 7504, 'please consider helping': 659816, 'consider helping this': 195020, 'helping this company': 391512, 'this company they': 886826, 'company they are': 191205, 'are doing this': 85932, 'doing this for': 252763, 'this for the': 887597, 'first responder healthcare': 308947, 'responder healthcare worker': 715477, 'worker and essential': 1006289, 'and essential civil': 62247, 'essential civil personnel': 280897, 'civil personnel ko': 179527, 'personnel ko olau': 653127, 'ko olau distillery': 477290, 'olau distillery sanitizer': 598114, 'distillery sanitizer supply': 247807, 'sanitizer supply fund': 735832, 'supply fund 19': 825304, 'fund 19 helpingothers': 341346, 'emphatically': 273400, 'nyu': 578159, 'tandon': 834155, 'expressing': 293080, 'we emphatically': 971442, 'emphatically support': 273401, 'support demand': 826454, 'demand made': 235827, 'made by': 507666, 'by nyu': 153383, 'nyu tandon': 578164, 'tandon food': 834156, 'service employee': 752324, 'employee represented': 274142, 'for emergency': 321013, 'emergency pay': 272854, 'healthcare benefit': 387046, 'crisis use': 218305, 'send an': 749808, 'to nyu': 910776, 'nyu expressing': 578160, 'expressing your': 293091, 'we emphatically support': 971443, 'emphatically support demand': 273402, 'support demand made': 826455, 'demand made by': 235828, 'made by nyu': 507672, 'by nyu tandon': 153384, 'nyu tandon food': 578165, 'tandon food service': 834157, 'food service employee': 316414, 'service employee represented': 752328, 'employee represented by': 274143, 'represented by for': 712930, 'by for emergency': 152621, 'for emergency pay': 321021, 'emergency pay and': 272855, 'and healthcare benefit': 64372, 'healthcare benefit during': 387047, 'this crisis use': 887105, 'crisis use this': 218306, 'use this link': 949731, 'this link to': 888649, 'link to send': 493945, 'to send an': 914201, 'send an email': 749809, 'an email to': 55661, 'email to nyu': 272340, 'to nyu expressing': 910777, 'nyu expressing your': 578161, 'expressing your support': 293092, 'harry': 378544, 'brennan': 139320, 'personalfinance': 652998, 'if lose': 414395, 'job or': 466061, 'from how': 335958, 'to claim': 902784, 'claim benefit': 179706, 'to securing': 913972, 'securing mortgage': 744507, 'mortgage holiday': 541905, 'holiday harry': 400305, 'harry brennan': 378545, 'brennan explains': 139321, 'explains all': 292200, 'all coronacrisisuk': 42458, 'coronacrisisuk personalfinance': 204897, 'do you do': 250624, 'you do if': 1018255, 'do if lose': 249417, 'if lose your': 414396, 'your job or': 1024535, 'job or get': 466065, 'or get sick': 615436, 'get sick from': 347993, 'sick from how': 768453, 'from how to': 335961, 'how to claim': 408991, 'to claim benefit': 902785, 'claim benefit to': 179707, 'benefit to securing': 127123, 'to securing mortgage': 913973, 'securing mortgage holiday': 744508, 'mortgage holiday harry': 541907, 'holiday harry brennan': 400306, 'harry brennan explains': 378546, 'brennan explains all': 139322, 'explains all coronacrisisuk': 292201, 'all coronacrisisuk personalfinance': 42459, 'learn what': 484088, 'what question': 982074, 'question hospitality': 693612, 'hospitality leader': 404788, 'be asking': 113706, 'asking themselves': 96083, 'themselves right': 876878, 'what action': 980998, 'action step': 30136, 'step they': 799636, 'learn what question': 484092, 'what question hospitality': 982075, 'question hospitality leader': 693613, 'hospitality leader should': 404789, 'leader should be': 483535, 'should be asking': 765559, 'be asking themselves': 113708, 'asking themselves right': 96086, 'themselves right now': 876879, 'now and what': 574068, 'and what action': 75448, 'what action step': 981000, 'action step they': 30137, 'step they should': 799637, 'should consider in': 765858, 'consider in the': 195028, 'face of covid': 294650, 'rba': 698061, 'joyce': 467532, 'mccutch': 522134, 'up next': 945452, 'next on': 561477, 'our special': 624854, 'special coverage': 787874, 'of continues': 581822, 'continues speaks': 201445, 'speaks with': 787812, 'now out': 575492, 'of hospital': 584761, 'hospital latest': 404490, 'latest from': 481356, 'from dr': 335208, 'dr auspol': 257964, 'auspol rba': 103091, 'rba by': 698062, 'by interview': 152933, 'interview alan': 442204, 'alan joyce': 40660, 'joyce act': 467533, 'kindness by': 475190, 'by mccutch': 153187, 'up next on': 945454, 'next on our': 561479, 'on our special': 602632, 'our special coverage': 624858, 'special coverage of': 787876, 'coverage of continues': 212366, 'of continues speaks': 581823, 'continues speaks with': 201446, 'speaks with someone': 787816, 'with someone who': 1000881, 'someone who had': 784760, 'who had it': 988881, 'had it now': 373211, 'it now out': 459959, 'now out of': 575493, 'out of hospital': 626756, 'of hospital latest': 584764, 'hospital latest from': 404491, 'latest from dr': 481358, 'from dr auspol': 335209, 'dr auspol rba': 257965, 'auspol rba by': 103092, 'rba by interview': 698063, 'by interview alan': 152934, 'interview alan joyce': 442205, 'alan joyce act': 40661, 'joyce act of': 467534, 'of kindness by': 585643, 'kindness by mccutch': 475191, 'rescue group': 713618, 'group busy': 366623, 'busy keeping': 144928, 'demand during': 235269, 'houston food rescue': 407200, 'food rescue group': 316177, 'rescue group busy': 713619, 'group busy keeping': 366624, 'busy keeping up': 144929, 'up with high': 946649, 'with high demand': 998801, 'high demand during': 395005, 'demand during covid': 235271, 'voted this': 960562, 'and out': 68532, 'the polling': 863957, 'minute went': 533896, 'and waited': 75116, 'waited an': 964268, 'buy egg': 148554, 'egg because': 269792, 'voted this morning': 960563, 'morning in and': 541305, 'in and out': 420381, 'and out of': 68535, 'of the polling': 591346, 'the polling place': 863958, 'polling place in': 663877, 'place in 10': 657506, 'in 10 minute': 419682, '10 minute went': 1544, 'minute went to': 533897, 'the local farm': 859547, 'local farm store': 497942, 'farm store and': 299188, 'store and waited': 806393, 'and waited an': 75117, 'waited an hour': 964269, 'hour in line': 405690, 'line to buy': 493481, 'to buy egg': 902219, 'buy egg because': 148556, 'egg because the': 269793, 'because the grocery': 119627, 'store are out': 806506, 'gujarat': 368607, 'surat': 827461, 'resorted': 714683, 'pelted': 646386, 'stone': 804334, 'detained': 239309, 'dcp': 228994, 'rakesh': 696214, 'barot': 111167, 'gujarat migrant': 368612, 'migrant worker': 531226, 'in surat': 428744, 'surat resorted': 827468, 'resorted to': 714684, 'to violence': 918186, 'violence on': 957553, 'street allegedly': 812885, 'allegedly fearing': 45685, 'fearing extension': 301479, 'extension of': 293286, 'of lockdown': 585947, 'lockdown worker': 500169, 'worker blocked': 1006534, 'blocked road': 132865, 'road pelted': 724491, 'pelted stone': 646389, 'stone police': 804345, 'police reached': 663179, 'spot detained': 790049, 'detained 60': 239310, '60 70': 20869, '70 people': 21821, 've come': 952997, 'were demanding': 979511, 'demanding to': 236619, 'home said': 402001, 'said dcp': 731037, 'dcp surat': 228997, 'surat rakesh': 827466, 'rakesh barot': 696215, 'barot 10': 111168, 'gujarat migrant worker': 368613, 'migrant worker in': 531230, 'worker in surat': 1007203, 'in surat resorted': 428745, 'surat resorted to': 827469, 'resorted to violence': 714689, 'to violence on': 918188, 'violence on street': 957554, 'on street allegedly': 603712, 'street allegedly fearing': 812886, 'allegedly fearing extension': 45686, 'fearing extension of': 301480, 'extension of lockdown': 293287, 'of lockdown worker': 585966, 'lockdown worker blocked': 500170, 'worker blocked road': 1006535, 'blocked road pelted': 132866, 'road pelted stone': 724492, 'pelted stone police': 646390, 'stone police reached': 804346, 'police reached the': 663180, 'reached the spot': 700061, 'the spot detained': 867598, 'spot detained 60': 790050, 'detained 60 70': 239311, '60 70 people': 20871, '70 people we': 21822, 'people we ve': 650165, 'we ve come': 973646, 've come to': 953003, 'come to know': 187579, 'know that they': 476795, 'that they were': 846960, 'they were demanding': 883763, 'were demanding to': 979512, 'demanding to go': 236620, 'go back home': 353344, 'back home said': 107066, 'home said dcp': 402002, 'said dcp surat': 731038, 'dcp surat rakesh': 228998, 'surat rakesh barot': 827467, 'rakesh barot 10': 696216, 'outbreak drive': 628180, 'demand economy': 235280, 'will the outbreak': 995149, 'the outbreak drive': 862614, 'outbreak drive the': 628182, 'drive the on': 259168, 'the on demand': 862164, 'on demand economy': 600277, 'va': 951527, 'dept': 237725, 'have updated': 383472, 'updated my': 947403, 'my blog': 547475, 'blog with': 133046, 'with link': 999243, 'the va': 870611, 'va dept': 951539, 'dept of': 237740, 'of education': 582977, 'education new': 268843, 'for parent': 324388, 'and remote': 70231, 'remote learning': 710711, 'learning and': 484182, 'and link': 66202, 'gouging or': 359412, 'or consumer': 614792, 'consumer fraud': 197532, 'fraud relating': 331334, 'covid crisis': 214144, 'crisis news': 217753, 'have updated my': 383473, 'updated my blog': 947404, 'my blog with': 547480, 'blog with link': 133047, 'with link to': 999245, 'link to the': 493950, 'to the va': 917166, 'the va dept': 870612, 'va dept of': 951540, 'dept of education': 237744, 'of education new': 582978, 'education new resource': 268844, 'new resource for': 559470, 'resource for parent': 714786, 'for parent and': 324389, 'parent and remote': 641574, 'and remote learning': 70232, 'remote learning and': 710713, 'learning and link': 484184, 'and link to': 66204, 'link to report': 493943, 'to report price': 913280, 'price gouging or': 674309, 'gouging or consumer': 359414, 'or consumer fraud': 614794, 'consumer fraud relating': 197539, 'fraud relating to': 331335, 'relating to the': 708658, 'the covid crisis': 852230, 'covid crisis news': 214145, 'partnership': 642938, 'consumer emotion': 197350, 'emotion and': 273256, 'behavior we': 124293, 've created': 953018, 'created mobile': 215850, 'mobile market': 534989, 'research community': 713697, 'community in': 189911, 'in partnership': 426540, 'partnership with': 642947, 'with mrx': 999587, 'better understand how': 128586, 'understand how covid': 940640, 'impacting consumer emotion': 418194, 'consumer emotion and': 197351, 'emotion and behavior': 273257, 'and behavior we': 58847, 'behavior we ve': 124296, 'we ve created': 973649, 've created mobile': 953020, 'created mobile market': 215851, 'mobile market research': 534991, 'market research community': 516993, 'research community in': 713698, 'community in partnership': 189918, 'in partnership with': 426541, 'partnership with mrx': 642955, 'found one': 330316, 'one bottle': 606009, 'sanitizer on': 735452, 'take week': 832789, 'delivery wonder': 234759, 'the liquor': 859459, 'open alcohol': 612029, 'alcohol could': 40976, 'used sanitizer': 950002, 'sanitizer maybe': 735361, 'maybe lol': 521741, 'just found one': 468771, 'found one bottle': 330317, 'one bottle of': 606011, 'hand sanitizer on': 375512, 'sanitizer on amazon': 735454, 'amazon and it': 50853, 'it ll take': 459433, 'll take week': 497063, 'take week for': 832790, 'week for delivery': 976224, 'for delivery wonder': 320654, 'delivery wonder if': 234760, 'wonder if the': 1003976, 'if the liquor': 414994, 'the liquor store': 859461, 'liquor store are': 494202, 'store are open': 806504, 'are open alcohol': 88783, 'open alcohol could': 612030, 'alcohol could be': 40977, 'could be used': 208934, 'be used sanitizer': 117923, 'used sanitizer maybe': 950003, 'sanitizer maybe lol': 735362, 'adjusts': 32386, 'lounge': 504557, 'americanairlines': 52335, 'marketscreener': 517873, 'american airline': 51772, 'airline adjusts': 39912, 'adjusts food': 32387, 'and lounge': 66421, 'lounge service': 504562, 'service in': 752472, '19 americanairlines': 4958, 'americanairlines stock': 52336, 'stock marketscreener': 802460, 'american airline adjusts': 51773, 'airline adjusts food': 39913, 'adjusts food and': 32388, 'food and lounge': 313276, 'and lounge service': 66422, 'lounge service in': 504563, 'service in response': 752480, 'covid 19 americanairlines': 212625, '19 americanairlines stock': 4959, 'americanairlines stock marketscreener': 52337, 'brawl': 138306, 'root': 726010, 'police forced': 663018, 'hand out': 375158, 'out toilet': 627708, 'paper panic': 640570, 'buying spark': 151066, 'spark supermarket': 787558, 'supermarket brawl': 819417, 'brawl in': 138311, 'australia amid': 103220, 'pandemic resume': 636354, 'resume police': 717744, 'officer toilet': 595733, 'paper attendant': 639910, 'attendant it': 102354, 'it appalling': 456557, 'appalling this': 81845, 'necessary bad': 553963, 'bad parenting': 107972, 'parenting is': 641797, 'is tap': 452575, 'tap root': 834336, 'root psychology': 726019, 'police forced to': 663019, 'forced to hand': 328635, 'to hand out': 907116, 'hand out toilet': 375164, 'out toilet paper': 627709, 'toilet paper panic': 921384, 'paper panic buying': 640572, 'panic buying spark': 637894, 'buying spark supermarket': 151067, 'spark supermarket brawl': 787559, 'supermarket brawl in': 819418, 'brawl in australia': 138312, 'in australia amid': 420594, 'australia amid pandemic': 103221, 'amid pandemic resume': 52575, 'pandemic resume police': 636355, 'resume police officer': 717745, 'police officer toilet': 663133, 'officer toilet paper': 595734, 'toilet paper attendant': 921195, 'paper attendant it': 639911, 'attendant it appalling': 102355, 'it appalling this': 456558, 'appalling this is': 81846, 'this is necessary': 888328, 'is necessary bad': 449843, 'necessary bad parenting': 553964, 'bad parenting is': 107973, 'parenting is tap': 641798, 'is tap root': 452576, 'tap root psychology': 834337, 'ipex': 444549, 'icis global': 412759, 'global petrochemical': 352125, 'petrochemical index': 653684, 'index ipex': 434209, 'ipex for': 444550, 'for march': 323244, 'march hit': 515381, 'hit level': 398301, 'level not': 487622, 'seen since': 747231, 'since april': 770509, 'april 2009': 83448, '2009 icis': 13714, 'icis petrochemical': 412771, 'petrochemical ipex': 653686, 'ipex polymer': 444552, 'polymer chemical': 663941, 'icis global petrochemical': 412760, 'global petrochemical index': 352126, 'petrochemical index ipex': 653685, 'index ipex for': 434210, 'ipex for march': 444551, 'for march hit': 323247, 'march hit level': 515382, 'hit level not': 398302, 'level not seen': 487623, 'not seen since': 571511, 'seen since april': 747233, 'since april 2009': 770510, 'april 2009 icis': 83449, '2009 icis petrochemical': 13715, 'icis petrochemical ipex': 412773, 'petrochemical ipex polymer': 653687, 'ipex polymer chemical': 444553, 'polymer chemical price': 663942, 'and personnel': 68935, 'personnel who': 653174, 'who risk': 989547, 'health to': 386915, 'provide for': 686316, 'for during': 320881, 'worker and personnel': 1006324, 'and personnel who': 68936, 'personnel who risk': 653175, 'who risk their': 989548, 'their health to': 873524, 'health to provide': 386922, 'to provide for': 912395, 'provide for during': 686317, 'for during this': 320884, 'this pandemic thank': 889432, 'sentiment collapse': 750906, 'collapse amid': 185959, 'amid massive': 52528, 'massive job': 520050, 'loss the': 503786, 'the unprecedented': 870450, 'unprecedented economic': 943134, 'is crushing': 446970, 'crushing the': 219819, 'the labor': 858885, 'labor market': 478423, 'consumer sentiment collapse': 198906, 'sentiment collapse amid': 750907, 'collapse amid massive': 185960, 'amid massive job': 52529, 'massive job loss': 520051, 'job loss the': 465985, 'loss the unprecedented': 503788, 'the unprecedented economic': 870455, 'unprecedented economic impact': 943136, '19 outbreak is': 9142, 'outbreak is crushing': 628372, 'is crushing the': 446971, 'crushing the labor': 219820, 'the labor market': 858887, 'labor market and': 478424, 'market and consumer': 515957, 'silk': 769729, 'scrunchies': 742937, 'wichita': 991663, 'relentlesslyoriginal': 709140, 'from silk': 337292, 'silk scrunchies': 769734, 'scrunchies to': 742938, 'to vintage': 918182, 'vintage top': 957461, 'blog is': 132956, 'your one': 1025065, 'stop for': 804661, 'online local': 608498, 'local shopping': 498433, 'matter where': 520660, 'can support': 159855, 'the wichita': 871530, 'wichita region': 991668, 'region during': 707409, 'beyond relentlesslyoriginal': 129221, 'relentlesslyoriginal read': 709141, 'blog at': 132904, 'from silk scrunchies': 337293, 'silk scrunchies to': 769735, 'scrunchies to vintage': 742939, 'to vintage top': 918183, 'vintage top the': 957462, 'top the latest': 925736, 'the latest blog': 859078, 'latest blog is': 481237, 'blog is your': 132957, 'is your one': 454160, 'your one stop': 1025067, 'one stop for': 607111, 'stop for online': 804664, 'for online local': 324107, 'online local shopping': 608500, 'local shopping no': 498435, 'shopping no matter': 763331, 'no matter where': 564735, 'matter where you': 520661, 'where you are': 985383, 'you are you': 1017295, 'are you can': 91772, 'you can support': 1017803, 'can support the': 159863, 'support the wichita': 826891, 'the wichita region': 871531, 'wichita region during': 991669, 'region during covid': 707410, '19 and beyond': 4993, 'and beyond relentlesslyoriginal': 58949, 'beyond relentlesslyoriginal read': 129222, 'relentlesslyoriginal read the': 709142, 'read the latest': 700581, 'latest blog at': 481232, 'terfs': 838043, 'trans': 929418, 'vax': 952759, 'seat': 743501, 'boose': 134923, 'myth': 551042, 'terf': 838040, 'hey terfs': 394516, 'terfs heard': 838044, 'that vaccine': 847223, 'vaccine turn': 951790, 'turn you': 935814, 'you trans': 1021911, 'trans so': 929423, 'should all': 765484, 'all avoid': 42098, '19 vax': 11733, 'vax when': 952760, 'also remember': 48781, 'to lick': 909235, 'lick supermarket': 488209, 'supermarket counter': 819840, 'counter and': 210190, 'public transit': 688393, 'transit seat': 929645, 'seat to': 743520, 'to boose': 901910, 'boose your': 134924, 'system in': 831205, 'time social': 897704, 'is myth': 449814, 'myth have': 551048, 'have terf': 382936, 'terf meet': 838041, 'meet up': 527644, 'hey terfs heard': 394517, 'terfs heard that': 838045, 'heard that vaccine': 388146, 'that vaccine turn': 847224, 'vaccine turn you': 951791, 'turn you trans': 935815, 'you trans so': 1021912, 'trans so you': 929424, 'so you should': 778850, 'you should all': 1021181, 'should all avoid': 765485, 'all avoid the': 42099, 'avoid the covid': 105319, 'covid 19 vax': 214018, '19 vax when': 11734, 'vax when we': 952761, 'when we get': 984444, 'get it also': 347392, 'it also remember': 456437, 'also remember to': 48782, 'remember to lick': 710375, 'to lick supermarket': 909238, 'lick supermarket counter': 488210, 'supermarket counter and': 819841, 'counter and public': 210191, 'and public transit': 69749, 'public transit seat': 688398, 'transit seat to': 929646, 'seat to boose': 743521, 'to boose your': 901911, 'boose your immune': 134925, 'immune system in': 417342, 'system in these': 831208, 'in these tough': 429867, 'tough time social': 926863, 'time social distancing': 897705, 'distancing is myth': 247251, 'is myth have': 449815, 'myth have terf': 551049, 'have terf meet': 382937, 'terf meet up': 838042, 'is meat': 449613, 'meat the': 525768, 'next american': 561283, 'consumer hoarding': 197758, 'hoarding focus': 399294, 'focus so': 311921, 'happy went': 377727, 'to full': 906312, 'full plant': 340809, 'based diet': 111552, 'diet last': 241737, 'the bright': 849998, 'bright side': 139790, 'side maybe': 768833, 'take focus': 832123, 'focus off': 311858, 'off toilet': 594341, 'paper hoarding': 640279, 'is meat the': 449614, 'meat the next': 525770, 'the next american': 861653, 'next american consumer': 561284, 'american consumer hoarding': 51894, 'consumer hoarding focus': 197759, 'hoarding focus so': 399295, 'focus so happy': 311922, 'so happy went': 777248, 'happy went to': 377728, 'went to full': 979152, 'to full plant': 906314, 'full plant based': 340810, 'plant based diet': 658620, 'based diet last': 111553, 'diet last year': 241738, 'last year on': 480730, 'on the bright': 604000, 'the bright side': 849999, 'bright side maybe': 139794, 'side maybe it': 768834, 'maybe it will': 521730, 'it will take': 462445, 'will take focus': 995068, 'take focus off': 832124, 'focus off toilet': 311859, 'off toilet paper': 594342, 'toilet paper hoarding': 921307, 'luxurybrand': 506980, 'luxurylifestyle': 506991, 'after shopper': 36202, 'shopper will': 761831, 'return but': 719822, 're living': 699004, 'living through': 496460, 'through pandemic': 894625, 'change them': 172313, 'them maybe': 876016, 'maybe forever': 521681, 'forever fashion': 329113, 'fashion luxurybrand': 299829, 'luxurybrand shoppingonline': 506981, 'shoppingonline look': 764523, 'look luxurylifestyle': 502537, 'luxurylifestyle retail': 506992, 'retail brand': 717892, 'consumer after shopper': 196114, 'after shopper will': 36203, 'shopper will return': 761835, 'will return but': 994687, 'return but they': 719824, 'but they re': 147514, 'they re living': 883071, 're living through': 699006, 'living through pandemic': 496462, 'through pandemic that': 894626, 'pandemic that will': 636658, 'that will change': 847563, 'will change them': 992921, 'change them maybe': 172314, 'them maybe forever': 876017, 'maybe forever fashion': 521682, 'forever fashion luxurybrand': 329114, 'fashion luxurybrand shoppingonline': 299830, 'luxurybrand shoppingonline look': 506982, 'shoppingonline look luxurylifestyle': 764524, 'look luxurylifestyle retail': 502538, 'luxurylifestyle retail brand': 506993, 'stockton': 804158, 'defying': 232509, 'lipstick': 494063, 'polish': 663575, 'in stockton': 428356, 'stockton california': 804159, 'california some': 155575, 'really out': 702474, 'here defying': 392915, 'defying the': 232516, 'the stayathome': 867851, 'stayhome order': 798062, 'buy lipstick': 148903, 'lipstick and': 494064, 'and nail': 67411, 'nail polish': 551452, 'retail store here': 718643, 'store here in': 808148, 'here in stockton': 393183, 'in stockton california': 428357, 'stockton california some': 804160, 'california some of': 155577, 'you are really': 1017213, 'are really out': 89482, 'really out here': 702475, 'out here defying': 626276, 'here defying the': 392916, 'defying the stayathome': 232517, 'the stayathome stayhome': 867853, 'stayathome stayhome order': 797639, 'stayhome order to': 798063, 'order to buy': 618669, 'to buy lipstick': 902260, 'buy lipstick and': 148904, 'lipstick and nail': 494065, 'and nail polish': 67412, 'saint': 731812, 'the church': 850886, 'church of': 178392, 'of jesus': 585520, 'christ of': 178082, 'of latter': 585731, 'latter day': 481677, 'day saint': 228294, 'saint is': 731820, 'closing some': 183753, 'some distribution': 782704, 'distribution store': 248230, 'the church of': 850890, 'church of jesus': 178393, 'of jesus christ': 585521, 'jesus christ of': 465291, 'christ of latter': 178083, 'of latter day': 585732, 'latter day saint': 481678, 'day saint is': 228295, 'saint is closing': 731821, 'is closing some': 446613, 'closing some distribution': 183754, 'some distribution store': 782705, 'distribution store and': 248231, 'store and limiting': 806282, 'and limiting the': 66192, 'limiting the hour': 492877, 'the hour of': 857582, 'of operation of': 587301, 'operation of others': 613233, 'of others in': 587395, 'others in response': 621478, 'amidst shift': 52815, 'habit mean': 372648, 'mean ecommerce': 524408, 'ever before': 285220, 'before way': 123280, 'grow online': 367048, 'sale include': 732307, 'include guest': 431569, 'guest checkout': 368148, 'checkout reduced': 174988, 'reduced delivery': 706050, 'cost clear': 207888, 'clear return': 181307, 'return policy': 719883, 'policy live': 663439, 'live chat': 495766, 'chat read': 173949, 'amidst shift in': 52816, 'consumer habit mean': 197690, 'habit mean ecommerce': 372649, 'mean ecommerce is': 524409, 'ecommerce is now': 266796, 'is now more': 450301, 'now more important': 575310, 'important than ever': 418991, 'than ever before': 840572, 'ever before way': 285229, 'before way to': 123281, 'way to grow': 970034, 'to grow online': 907035, 'grow online sale': 367049, 'online sale include': 608919, 'sale include guest': 732308, 'include guest checkout': 431570, 'guest checkout reduced': 368149, 'checkout reduced delivery': 174989, 'reduced delivery cost': 706051, 'delivery cost clear': 233829, 'cost clear return': 207889, 'clear return policy': 181308, 'return policy live': 719886, 'policy live chat': 663440, 'live chat read': 495767, 'chat read more': 173950, 'all from': 42872, 'just be': 468266, 'food when people': 317571, 'when people take': 983868, 'people take it': 649719, 'take it all': 832240, 'it all from': 456347, 'all from supermarket': 42876, 'from supermarket just': 337490, 'supermarket just be': 821220, 'just be nice': 468275, 'dear hope': 229808, 'are aware': 84729, 'and taking': 72993, 'taking measure': 833439, 'tackle future': 831575, 'future problem': 342431, 'dear hope you': 229809, 'hope you are': 403790, 'you are aware': 1017068, 'are aware of': 84730, 'aware of this': 105644, 'of this and': 591937, 'this and taking': 886349, 'and taking measure': 72998, 'taking measure to': 833440, 'measure to tackle': 525410, 'to tackle future': 916129, 'tackle future problem': 831576, 'johnston': 466647, 'ain': 39601, 'noth': 572905, 'al johnston': 40580, 'johnston said': 466648, 'said you': 731604, 'you ain': 1016857, 'ain seen': 39652, 'seen noth': 747151, 'noth in': 572906, 'yet housing': 1016093, 'for sharp': 325536, 'sharp correction': 755671, 'correction covid': 207553, 'al johnston said': 40581, 'johnston said you': 466649, 'said you ain': 731605, 'you ain seen': 1016858, 'ain seen noth': 39653, 'seen noth in': 747152, 'noth in yet': 572907, 'in yet housing': 431042, 'yet housing price': 1016094, 'are in for': 87384, 'in for sharp': 423027, 'for sharp correction': 325537, 'sharp correction covid': 755672, 'correction covid 19': 207554, '19 is only': 8018, 'is only the': 450552, 'only the start': 611276, 'start of this': 794416, 'abc15': 24272, 'worker family': 1006902, 'family worry': 298405, 'about potential': 25976, 'fear job': 301181, 'loss abc15': 503626, 'abc15 arizona': 24273, 'store worker family': 811493, 'worker family worry': 1006903, 'family worry about': 298406, 'worry about potential': 1010650, 'about potential exposure': 25979, 'exposure to but': 293005, 'to but fear': 902150, 'but fear job': 145704, 'fear job loss': 301183, 'job loss abc15': 465964, 'loss abc15 arizona': 503627, 'speculator': 788369, 'italylockdown': 462970, 'silver price': 769847, 'price bounce': 672949, 'back but': 106911, 'remain volatile': 709912, 'volatile socialdistance': 960060, 'socialdistance border': 780140, 'border gold': 135249, 'silver mining': 769834, 'mining investment': 533283, 'investment speculator': 444059, 'speculator market': 788374, 'market profit': 516915, 'profit stock': 682861, 'stock china': 801983, 'china italylockdown': 176773, 'italylockdown trump': 462972, 'trump borisjohnson': 933445, 'borisjohnson currency': 135517, 'currency wealth': 221071, 'wealth health': 974168, 'silver price bounce': 769848, 'price bounce back': 672950, 'bounce back but': 136802, 'back but will': 106915, 'but will remain': 147886, 'will remain volatile': 994637, 'remain volatile socialdistance': 709915, 'volatile socialdistance border': 960061, 'socialdistance border gold': 780141, 'border gold silver': 135250, 'gold silver mining': 356008, 'silver mining investment': 769835, 'mining investment speculator': 533284, 'investment speculator market': 444060, 'speculator market profit': 788376, 'market profit stock': 516918, 'profit stock china': 682862, 'stock china italylockdown': 801985, 'china italylockdown trump': 176774, 'italylockdown trump borisjohnson': 462973, 'trump borisjohnson currency': 933446, 'borisjohnson currency wealth': 135518, 'currency wealth health': 221072, 'sainsbury extends': 731664, 'extends dedicated': 293247, 'dedicated shopping': 231730, 'sainsbury extends dedicated': 731665, 'extends dedicated shopping': 293248, 'dedicated shopping hour': 231731, 'for nh and': 323862, 'nh and social': 561881, 'and social care': 71880, 'social care worker': 779456, 'emi': 273164, 'tht': 895263, 'institution': 440450, 'orpenalties': 619658, 'incase': 431335, 'in near': 425701, 'future till': 342480, 'crisis curb': 217272, 'curb down': 220554, 'down narendra': 256974, 'modi ji': 535466, 'ji pls': 465458, 'pls exempt': 661133, 'exempt month': 289979, 'month emi': 537701, 'emi for': 273167, 'india consumer': 434353, 'loan personal': 497504, 'personal loan': 652910, 'loan request': 497522, 'request tht': 713205, 'tht no': 895266, 'no financial': 564222, 'financial institution': 306469, 'institution or': 440468, 'bank take': 110226, 'any action': 78894, 'action orpenalties': 30104, 'orpenalties incase': 619659, 'incase people': 431340, 'pay but': 644794, 'am already': 49867, 'already paid': 47557, 'paid 350': 633948, 'in near future': 425703, 'near future till': 553511, 'future till the': 342481, 'till the covid': 896103, '19 crisis curb': 6233, 'crisis curb down': 217273, 'curb down narendra': 220555, 'down narendra modi': 256975, 'narendra modi ji': 551910, 'modi ji pls': 535468, 'ji pls exempt': 465459, 'pls exempt month': 661134, 'exempt month emi': 289980, 'month emi for': 537702, 'emi for the': 273168, 'for the citizen': 326344, 'the citizen of': 850909, 'citizen of india': 178936, 'of india consumer': 585100, 'india consumer loan': 434354, 'consumer loan personal': 198065, 'loan personal loan': 497506, 'personal loan request': 652912, 'loan request tht': 497523, 'request tht no': 713206, 'tht no financial': 895267, 'no financial institution': 564223, 'financial institution or': 306472, 'institution or bank': 440469, 'or bank take': 614495, 'bank take any': 110227, 'take any action': 831941, 'any action orpenalties': 78896, 'action orpenalties incase': 30105, 'orpenalties incase people': 619660, 'incase people are': 431341, 'able to pay': 24517, 'to pay but': 911520, 'pay but am': 644795, 'but am already': 145157, 'am already paid': 49868, 'already paid 350': 47558, '30k': 17449, 'auspol2020': 103100, 'loyalty': 506286, 'one shop': 607017, 'shop open': 760602, 'open within': 612685, 'within 30k': 1002322, '30k and': 17450, 'the others': 862566, 'shopping normal': 763342, 'normal aussie': 567096, 'aussie want': 103146, 'week normal': 976578, 'normal auspol2020': 567094, 'auspol2020 australia': 103101, 'australia use': 103416, 'use your': 949828, 'your loyalty': 1024752, 'loyalty card': 506289, 'card for': 163519, 'and it time': 65591, 'time to have': 897994, 'to have one': 907286, 'have one shop': 381797, 'one shop open': 607018, 'shop open within': 760606, 'open within 30k': 612686, 'within 30k and': 1002323, '30k and the': 17451, 'and the others': 73504, 'the others for': 862568, 'others for online': 621410, 'online shopping normal': 609198, 'shopping normal aussie': 763343, 'normal aussie want': 567098, 'aussie want to': 103147, 'want to only': 966074, 'once week normal': 605798, 'week normal auspol2020': 976579, 'normal auspol2020 australia': 567095, 'auspol2020 australia use': 103102, 'australia use your': 103417, 'use your loyalty': 949838, 'your loyalty card': 1024753, 'loyalty card for': 506291, 'card for good': 163521, 'in central': 421309, 'central texas': 169427, 'texas the': 839840, 'been time': 122202, 'weekly amount': 977466, 'amount the': 53283, 'staff struggled': 792894, '19 case increase': 5682, 'case increase in': 165818, 'increase in central': 432822, 'in central texas': 421312, 'central texas the': 169430, 'texas the demand': 839841, 'demand for grocery': 235434, 'for grocery ha': 322033, 'grocery ha been': 364580, 'ha been time': 369956, 'been time the': 122203, 'time the weekly': 897883, 'the weekly amount': 871344, 'weekly amount the': 977467, 'amount the staff': 53284, 'the staff struggled': 867702, 'staff struggled to': 792895, 'struggled to keep': 814412, 'legalnews': 485920, 'wisconsin company': 996608, 'company accused': 190347, 'gouging legalnews': 359379, 'legalnews wisconsin': 485921, 'wisconsin company accused': 996609, 'company accused of': 190348, 'accused of price': 28952, 'price gouging legalnews': 674295, 'gouging legalnews wisconsin': 359380, 'paramedic struggle': 641401, 'buying over': 150854, 'paramedic struggle to': 641402, 'uk panic buying': 938609, 'panic buying over': 637837, 'buying over lockdown': 150857, 'tip shop': 898895, 'local asian': 497701, 'supermarket bought': 819407, 'bought toilet': 136761, 'paper rice': 640680, 'rice pasta': 721098, 'pasta sauce': 643801, 'and lot': 66412, 'fresh veggie': 333104, 'veggie and': 954165, 'were super': 980196, 'super happy': 818512, 'tip shop in': 898897, 'shop in your': 760332, 'in your local': 431103, 'your local asian': 1024678, 'local asian supermarket': 497704, 'asian supermarket bought': 95357, 'supermarket bought toilet': 819408, 'bought toilet paper': 136762, 'toilet paper rice': 921422, 'paper rice pasta': 640682, 'rice pasta sauce': 721104, 'pasta sauce and': 643802, 'sauce and lot': 737139, 'and lot of': 66413, 'lot of fresh': 504194, 'of fresh veggie': 583951, 'fresh veggie and': 333105, 'veggie and the': 954167, 'and the employee': 73346, 'the employee were': 854271, 'employee were super': 274404, 'were super happy': 980198, 'super happy to': 818513, 'to see customer': 913997, 'growing putting': 367228, 'putting in': 691137, 'face and': 294296, 'future keep': 342369, 'worried about she': 1010518, 'is strong and': 452385, 'strong and the': 813982, 'are growing putting': 86975, 'growing putting in': 367229, 'putting in the': 691145, 'position to face': 665196, 'to face and': 905558, 'face and the': 294303, 'the future keep': 856080, 'future keep american': 342371, 'pakistan stimulus': 634506, 'package is': 633311, 'way ahead': 969437, 'pakistan stimulus package': 634508, 'stimulus package is': 801583, 'package is way': 633313, 'is way ahead': 453788, 'way ahead of': 969438, 'ahead of india': 39184, 'robertson': 724719, 'robertson county': 724720, 'county business': 211332, 'keep customer': 471440, 'safe amid': 729424, 'amid high': 52502, 'robertson county business': 724721, 'county business is': 211333, 'business is working': 143961, 'working to keep': 1008992, 'to keep customer': 908778, 'keep customer and': 471441, 'and employee safe': 62065, 'employee safe amid': 274166, 'safe amid high': 729425, 'amid high demand': 52503, 'high demand food': 395008, 'demand food delivery': 235358, 'gd': 344846, 'malaysialockdown': 511651, 'it gd': 458206, 'gd move': 344847, 'move to': 543750, 'lower fuel': 505864, 'we observe': 972619, 'observe malaysialockdown': 578589, 'malaysialockdown due': 511652, 'still best': 800286, 'to stayhomestaysafe': 915348, 'it gd move': 458207, 'gd move to': 344848, 'move to lower': 543758, 'to lower fuel': 909497, 'lower fuel price': 505865, 'fuel price while': 340262, 'price while we': 677529, 'while we observe': 987551, 'we observe malaysialockdown': 972620, 'observe malaysialockdown due': 578590, 'malaysialockdown due to': 511653, 'to but it': 902153, 'but it still': 146167, 'it still best': 461246, 'still best to': 800287, 'best to stayhomestaysafe': 127965, 'for email': 321009, 'or expert': 615236, 'expert saying': 291966, 'have info': 381083, 'the for': 855664, 'most up': 542841, 'date info': 226659, 'virus visit': 958982, 'visit cdc': 959212, 'cdc website': 168632, 'website website': 975474, 'watch for email': 968412, 'for email claiming': 321010, 'be from or': 114969, 'from or expert': 336713, 'or expert saying': 615237, 'expert saying they': 291967, 'saying they have': 739726, 'they have info': 882331, 'have info about': 381084, 'info about the': 437410, 'about the for': 26400, 'the for the': 855674, 'the most up': 861056, 'most up to': 542842, 'to date info': 903928, 'date info about': 226660, 'about the virus': 26553, 'the virus visit': 870915, 'virus visit cdc': 958983, 'visit cdc website': 959213, 'cdc website website': 168633, 'go off': 353866, 'work must': 1005477, 'or drive': 615069, 'thru testing': 895225, 'testing centre': 839473, 'centre on': 169528, 'park testing': 641994, 'anyone who go': 80618, 'who go off': 988792, 'go off work': 353871, 'off work must': 594413, 'work must go': 1005478, 'must go to': 546690, 'go to walk': 354379, 'to walk in': 918302, 'walk in or': 964806, 'in or drive': 426198, 'or drive thru': 615074, 'drive thru testing': 259207, 'thru testing centre': 895226, 'testing centre on': 839474, 'centre on supermarket': 169530, 'on supermarket car': 603781, 'car park testing': 163235, 'by make': 153135, 'it rain': 460594, 'by make it': 153136, 'make it rain': 510052, 'pp': 667865, 'propylene': 684601, 'sluggish': 774657, 'owing': 631849, 'week pp': 976768, 'pp price': 667876, 'declined in': 231428, 'in asia': 420516, 'asia the': 95231, 'fall wa': 297107, 'wa prompted': 963004, 'prompted by': 683926, 'by bearish': 151937, 'bearish upstream': 118465, 'upstream energy': 947881, 'energy and': 276384, 'and propylene': 69639, 'propylene value': 684606, 'value coupled': 952108, 'with continued': 997775, 'continued sluggish': 201339, 'sluggish buying': 774658, 'buying sentiment': 151003, 'sentiment across': 750888, 'asian region': 95328, 'region owing': 707446, 'owing to': 631850, 'the widespread': 871541, 'widespread deadly': 991841, 'deadly watch': 229308, 'watch now': 968487, 'this week pp': 891251, 'week pp price': 976769, 'pp price declined': 667877, 'price declined in': 673406, 'declined in asia': 231429, 'in asia the': 420526, 'asia the price': 95232, 'the price fall': 864348, 'price fall wa': 673802, 'fall wa prompted': 297108, 'wa prompted by': 963005, 'prompted by bearish': 683927, 'by bearish upstream': 151938, 'bearish upstream energy': 118466, 'upstream energy and': 947882, 'energy and propylene': 276391, 'and propylene value': 69641, 'propylene value coupled': 684607, 'value coupled with': 952109, 'coupled with continued': 211727, 'with continued sluggish': 997776, 'continued sluggish buying': 201340, 'sluggish buying sentiment': 774659, 'buying sentiment across': 151004, 'sentiment across the': 750890, 'across the asian': 29482, 'the asian region': 848964, 'asian region owing': 95329, 'region owing to': 707447, 'owing to the': 631853, 'to the widespread': 917191, 'the widespread deadly': 871544, 'widespread deadly watch': 991842, 'deadly watch now': 229309, 'clap8': 179974, 'generosity': 345701, 'thoughtfulness': 893363, 'manic': 513161, 'courteous': 212019, 'all clap8': 42359, 'clap8 tonight': 179975, 'tonight to': 924503, 'who support': 989713, 'support those': 826930, 'have today': 383344, 'today saw': 920138, 'saw generosity': 738119, 'generosity and': 345704, 'and thoughtfulness': 74059, 'thoughtfulness during': 893364, 'during my': 262801, 'the manic': 860018, 'manic shopping': 513164, 'shopping began': 762189, 'began most': 123408, 'are friendly': 86686, 'friendly and': 333938, 'and courteous': 60649, 'courteous it': 212022, 'good that': 357816, 'they remember': 883196, 'remember it': 710216, 'let all clap8': 486550, 'all clap8 tonight': 42360, 'clap8 tonight to': 179976, 'tonight to thank': 924510, 'to thank everyone': 916423, 'thank everyone who': 841561, 'everyone who support': 287606, 'who support those': 989715, 'support those who': 826936, 'who have today': 988966, 'have today saw': 383346, 'today saw generosity': 920140, 'saw generosity and': 738120, 'generosity and thoughtfulness': 345706, 'and thoughtfulness during': 74060, 'thoughtfulness during my': 893365, 'during my first': 262802, 'supermarket since the': 822705, 'since the manic': 770894, 'the manic shopping': 860019, 'manic shopping began': 513165, 'shopping began most': 762190, 'began most people': 123409, 'most people are': 542610, 'people are friendly': 646981, 'are friendly and': 86687, 'friendly and courteous': 333940, 'and courteous it': 60650, 'courteous it good': 212023, 'it good that': 458303, 'good that they': 357822, 'that they remember': 846949, 'they remember it': 883197, 'psychologist on': 687537, 'brand should': 138005, 'should respond': 766416, 'tip from consumer': 898795, 'from consumer psychologist': 334969, 'consumer psychologist on': 198592, 'psychologist on how': 687538, 'on how brand': 601386, 'how brand should': 407469, 'brand should respond': 138010, 'should respond to': 766417, 'respond to coronavirus': 715316, 'acc': 27793, 'the acc': 848281, 'acc concerning': 27802, 'concerning travel': 193254, 'cancellation refund': 161058, 'refund on': 706934, 'page you': 633924, 'will find': 993441, 'latest information': 481398, 'travel event': 930353, 'cancellation in': 161026, 'updated regularly': 947428, 'regularly new': 707933, 'new guidance': 558828, 'guidance is': 368247, 'from the acc': 337591, 'the acc concerning': 848282, 'acc concerning travel': 27803, 'concerning travel cancellation': 193255, 'travel cancellation refund': 930312, 'cancellation refund on': 161059, 'refund on this': 706937, 'on this page': 604626, 'this page you': 889360, 'page you will': 633925, 'you will find': 1022335, 'will find the': 993444, 'find the latest': 307292, 'the latest information': 859119, 'latest information on': 481400, 'information on consumer': 437908, 'right travel event': 722370, 'travel event cancellation': 930355, 'event cancellation in': 284956, 'cancellation in relation': 161027, 'relation to covid': 708673, '19 this will': 11357, 'be updated regularly': 117892, 'updated regularly new': 947430, 'regularly new guidance': 707934, 'new guidance is': 558829, 'guidance is available': 368248, '3400': 17835, 'be flying': 114885, 'flying with': 311688, 'ever again': 285186, 'again totally': 37245, 'totally profiting': 926384, 'off desperate': 593765, 'desperate people': 238544, 'people vulnerability': 650099, 'vulnerability during': 960813, 'pandemic wa': 636908, 'wa charged': 961807, 'charged over': 173409, 'over 3400': 629833, '3400 for': 17836, 'way flight': 969574, 'flight from': 310474, 'from australia': 334612, 'australia ireland': 103310, 'ireland normal': 444837, 'are roughly': 89748, 'roughly 700': 726285, '700 you': 21911, 'will lose': 994050, 'lose many': 503450, 'many cu': 513965, 'not be flying': 568385, 'be flying with': 114886, 'flying with you': 311689, 'with you ever': 1002148, 'you ever again': 1018454, 'ever again totally': 285193, 'again totally profiting': 37246, 'totally profiting off': 926385, 'profiting off desperate': 683134, 'off desperate people': 593766, 'desperate people vulnerability': 238546, 'people vulnerability during': 650100, 'vulnerability during covid': 960814, '19 pandemic wa': 9518, 'pandemic wa charged': 636910, 'wa charged over': 961808, 'charged over 3400': 173410, 'over 3400 for': 629834, '3400 for one': 17838, 'for one way': 324093, 'one way flight': 607368, 'way flight from': 969575, 'flight from australia': 310475, 'from australia ireland': 334613, 'australia ireland normal': 103311, 'ireland normal price': 444838, 'normal price are': 567268, 'price are roughly': 672728, 'are roughly 700': 89749, 'roughly 700 you': 726286, '700 you will': 21912, 'you will lose': 1022342, 'will lose many': 994054, 'lose many cu': 503451, 'people worried': 650527, 'coronavirus specifically': 206795, 'specifically about': 788271, 'having toilet': 384378, 'sitting here': 772107, 'here thinking': 393683, 'thinking hope': 885915, 'all these people': 45047, 'these people worried': 880465, 'people worried about': 650528, 'worried about coronavirus': 1010482, 'about coronavirus specifically': 25032, 'coronavirus specifically about': 206796, 'specifically about supermarket': 788272, 'about supermarket having': 26282, 'supermarket having toilet': 820720, 'having toilet paper': 384379, 'paper and canned': 639813, 'canned food while': 161528, 'food while sitting': 317596, 'while sitting here': 987279, 'sitting here thinking': 772108, 'here thinking hope': 393684, 'thinking hope they': 885916, 'hope they have': 403708, 'have in stock': 381037, 'additive 41oz': 31921, '41oz bottle': 18892, 'sanitizer additive 41oz': 734317, 'additive 41oz bottle': 31922, 'pandemic truck': 636842, 'you so': 1021285, 'the pandemic truck': 863136, 'pandemic truck driver': 636843, 'driver and grocery': 259414, 'thank you so': 841812, 'you so much': 1021288, 'panickbuying': 639195, 'so dead': 776844, 'not talking': 571940, 'food panickbuying': 315761, 'have never seen': 381584, 'seen supermarket so': 747265, 'supermarket so dead': 822729, 'so dead in': 776846, 'dead in my': 229151, 'my life and': 549012, 'life and not': 488486, 'and not talking': 67779, 'not talking about': 571941, 'talking about the': 833988, 'about the lack': 26430, 'lack of people': 478640, 'people but the': 647324, 'but the lack': 147352, 'of food panickbuying': 583746, 'lucky': 506532, 'hit our': 398358, 'economy those': 268283, 'of lucky': 586068, 'lucky to': 506580, 'have stable': 382705, 'stable job': 791931, 'job have': 465852, 'our smallbusiness': 624803, 'smallbusiness community': 775217, 'community here': 189892, 'here some': 393573, 'hit our economy': 398359, 'our economy those': 622852, 'economy those of': 268284, 'those of lucky': 892265, 'of lucky to': 586069, 'lucky to have': 506582, 'to have stable': 907312, 'have stable job': 382707, 'stable job have': 791932, 'job have duty': 465854, 'have duty to': 380399, 'duty to support': 263618, 'support our smallbusiness': 826739, 'our smallbusiness community': 624804, 'smallbusiness community here': 775218, 'community here some': 189894, 'here some tip': 393586, 'some tip on': 784067, 'on how you': 601434, '20k': 14901, 'twitter need': 936694, 'do report': 250040, 'report someone': 712264, 'someone hoarding': 784504, 'have at': 379374, 'least 20k': 484348, '20k and': 14902, 'to resell': 913334, 'resell them': 713968, 'hospital stophoarding': 404654, 'stophoarding stayhome': 805473, 'stayhome healthcareheroes': 798016, 'twitter need you': 936695, 'need you how': 556258, 'you how do': 1019257, 'how do report': 407725, 'do report someone': 250042, 'report someone hoarding': 712265, 'someone hoarding mask': 784505, 'hoarding mask they': 399422, 'mask they say': 519375, 'they say they': 883282, 'they have at': 882293, 'have at least': 379376, 'at least 20k': 99446, 'least 20k and': 484349, '20k and trying': 14903, 'trying to resell': 934857, 'to resell them': 913337, 'resell them to': 713970, 'them to hospital': 876480, 'to hospital stophoarding': 907979, 'hospital stophoarding stayhome': 404655, 'stophoarding stayhome healthcareheroes': 805474, 'confidence among': 193812, 'among hispanic': 53013, 'hispanic plunged': 397934, 'plunged in': 661491, 'coronavirus creates': 205728, 'creates uncertainty': 215968, 'uncertainty about': 939638, 'the length': 859292, 'unprecedented disruption': 943128, 'american life': 52071, 'consumer confidence among': 196884, 'confidence among hispanic': 193813, 'among hispanic plunged': 53014, 'hispanic plunged in': 397935, 'plunged in the': 661492, 'of 2020 the': 579505, 'the coronavirus creates': 851825, 'coronavirus creates uncertainty': 205729, 'creates uncertainty about': 215969, 'uncertainty about the': 939640, 'about the length': 26434, 'the length of': 859294, 'length of an': 486317, 'of an unprecedented': 580132, 'an unprecedented disruption': 56886, 'unprecedented disruption to': 943129, 'disruption to american': 246538, 'to american life': 900419, 'with info': 999002, 'info before': 437427, 'you act': 1016792, 'act stop': 29776, 'stop ask': 804459, 'ask yourself': 95689, 'yourself who': 1026756, 'want me': 965852, 'what evidence': 981434, 'evidence support': 288385, 'support this': 826922, 'message then': 529437, 'answer guide': 78057, 'guide your': 368384, 'next step': 561564, 'step more': 799586, 'overwhelmed with info': 631732, 'with info before': 999003, 'info before you': 437428, 'before you act': 123311, 'you act stop': 1016797, 'act stop ask': 29777, 'stop ask yourself': 804460, 'ask yourself who': 95694, 'yourself who is': 1026757, 'message from what': 529326, 'from what do': 338339, 'do they want': 250322, 'they want me': 883710, 'want me to': 965853, 'me to do': 523749, 'to do what': 904587, 'do what evidence': 250512, 'what evidence support': 981435, 'evidence support this': 288386, 'support this message': 826925, 'this message then': 888843, 'message then let': 529438, 'let the answer': 487118, 'the answer guide': 848768, 'answer guide your': 78058, 'guide your next': 368385, 'your next step': 1025006, 'next step more': 561569, 'step more via': 799587, 'spur': 791323, 'verified': 954779, 'gasbuddy': 344192, 'spurbp': 791342, '815': 22787, 'laurel': 482147, 'ky': 478062, '40741': 18823, 'fridaythoughts conveniencestore': 333352, 'conveniencestore spur': 202377, 'spur ha': 791330, 'ha 99': 369424, 'cent per': 169106, 'gallon for': 343004, 'for regular': 325070, 'regular gas': 707780, 'gas ha': 343866, 'been verified': 122326, 'verified buy': 954780, 'buy gasbuddy': 148728, 'gasbuddy spurbp': 344195, 'spurbp station': 791343, 'station 815': 796322, '815 laurel': 22790, 'laurel rd': 482150, 'rd london': 698137, 'london ky': 501107, 'ky 40741': 478063, '40741 gasprices': 18824, 'gasprices low': 344297, 'fridaythoughts conveniencestore spur': 333353, 'conveniencestore spur ha': 202378, 'spur ha 99': 791331, 'ha 99 cent': 369425, '99 cent per': 23797, 'cent per gallon': 169107, 'per gallon for': 650844, 'gallon for regular': 343006, 'for regular gas': 325074, 'regular gas ha': 707782, 'gas ha been': 343867, 'ha been verified': 369978, 'been verified buy': 122327, 'verified buy gasbuddy': 954781, 'buy gasbuddy spurbp': 148729, 'gasbuddy spurbp station': 344196, 'spurbp station 815': 791344, 'station 815 laurel': 796323, '815 laurel rd': 22791, 'laurel rd london': 482151, 'rd london ky': 698138, 'london ky 40741': 501108, 'ky 40741 gasprices': 478064, '40741 gasprices low': 18825, 'gasprices low price': 344298, 'low price are': 505500, 'price are result': 672721, 'the global virus': 856336, 'desperately seeking': 238582, 'seeking toilet': 746662, 'pasta or': 643773, 'sanitiser some': 734020, 'relief is': 709371, 'just week': 470262, 'week away': 975969, 'desperately seeking toilet': 238583, 'seeking toilet paper': 746663, 'paper pasta or': 640583, 'pasta or hand': 643776, 'or hand sanitiser': 615556, 'hand sanitiser some': 375246, 'sanitiser some relief': 734021, 'some relief is': 783725, 'relief is just': 709372, 'is just week': 449155, 'just week away': 470264, 'okay so': 598000, 'so all': 776478, '19 stuff': 10917, 'now getting': 574777, 'getting me': 349112, 'me worried': 524017, 'worried single': 1010577, 'single mother': 771340, 'two child': 936829, 'child one': 176162, 'ha lot': 371190, 'medical problem': 526312, 'problem already': 679446, 'already struggling': 47693, 'with debt': 997942, 'debt so': 230562, 'already can': 47248, 'afford food': 34693, 'be eating': 114638, 'eating until': 266326, 'until can': 943708, 'of debt': 582426, 'okay so all': 598001, 'so all this': 776481, 'all this covid': 45097, 'covid 19 stuff': 213880, '19 stuff is': 10920, 'is now getting': 450289, 'now getting me': 574778, 'getting me worried': 349113, 'me worried single': 524019, 'worried single mother': 1010578, 'single mother of': 771341, 'mother of two': 543147, 'of two child': 592538, 'two child one': 936830, 'child one ha': 176163, 'one ha lot': 606388, 'ha lot of': 371191, 'lot of medical': 504226, 'of medical problem': 586395, 'medical problem already': 526313, 'problem already struggling': 679447, 'already struggling with': 47699, 'struggling with debt': 814534, 'with debt so': 997944, 'debt so we': 230564, 'so we already': 778655, 'we already can': 970389, 'already can afford': 47249, 'can afford food': 157397, 'afford food but': 34694, 'food but now': 313825, 'now the price': 576063, 'going up so': 355793, 'up so we': 946020, 'we will not': 973885, 'not be eating': 568376, 'be eating until': 114642, 'eating until can': 266327, 'until can get': 943709, 'can get out': 158439, 'out of debt': 626718, 'riasrd': 720946, 'never forget': 558002, 'forget everyone': 329248, 'we riasrd': 973105, 'riasrd raised': 720947, 'raised their': 696045, 'during you': 263427, 'you better': 1017460, 'better pray': 128412, 'pray thing': 669027, 'thing don': 884279, 'get worst': 348661, 'worst because': 1011148, 'we coming': 971150, 'will never forget': 994164, 'never forget everyone': 558003, 'forget everyone and': 329249, 'everyone and company': 286695, 'and company that': 60195, 'company that we': 191193, 'that we riasrd': 847390, 'we riasrd raised': 973106, 'riasrd raised their': 720948, 'raised their price': 696046, 'price during you': 673639, 'during you better': 263428, 'you better pray': 1017465, 'better pray thing': 128413, 'pray thing don': 669028, 'thing don get': 884280, 'don get worst': 253549, 'get worst because': 348662, 'worst because we': 1011149, 'because we coming': 119796, 'we coming to': 971151, 'coming to see': 188229, 'weekday': 977300, 'weallneedfood': 974140, 'wife she': 991974, 'she working': 756482, 'working weekday': 1009036, 'weekday and': 977301, 'and weekend': 75382, 'weekend in': 977356, 'demand some': 236254, 'buy my': 148979, 'my hero': 548668, 'hero weallneedfood': 394155, 'weallneedfood 19': 974141, 'of my wife': 586832, 'my wife she': 550600, 'wife she working': 991975, 'she working weekday': 756483, 'working weekday and': 1009037, 'weekday and weekend': 977302, 'and weekend in': 75383, 'weekend in food': 977357, 'in food production': 422980, 'food production to': 316052, 'production to keep': 682246, 'with demand some': 997990, 'demand some people': 236256, 'panic buy my': 637505, 'buy my hero': 148984, 'my hero weallneedfood': 548671, 'hero weallneedfood 19': 394156, 'jessie': 465260, 'wright': 1012751, 'pat': 643912, 'jessie always': 465261, 'always wright': 49812, 'wright pat': 1012752, 'pat henry': 643913, 'henry 54': 391780, 'jessie always wright': 465262, 'always wright pat': 49813, 'wright pat henry': 1012753, 'pat henry 54': 643914, 'served': 751980, 'tweaking': 936284, 'the shame': 866773, 'shame about': 754576, 'about debenhams': 25082, 'debenhams is': 230359, 'it held': 458530, 'held some': 388926, 'good people': 357546, 'people yet': 650561, 'truth wa': 934416, 'had served': 373490, 'served it': 751994, 'it purpose': 460559, 'purpose retail': 690153, 'store year': 811655, 'year ago': 1014347, 'ago and': 38331, 'and needed': 67487, 'needed massive': 556426, 'of direction': 582637, 'direction rather': 243481, 'than tweaking': 841364, 'tweaking to': 936291, 'going covid': 355091, '19 accelerated': 4785, 'accelerated not': 27890, 'not created': 568924, 'created the': 215906, 'issue one': 455874, 'many coming': 513910, 'the shame about': 866774, 'shame about debenhams': 754577, 'about debenhams is': 25083, 'debenhams is that': 230360, 'that it held': 844716, 'it held some': 458532, 'held some good': 388927, 'some good people': 782972, 'good people yet': 357549, 'people yet the': 650564, 'yet the truth': 1016261, 'the truth wa': 870094, 'truth wa it': 934417, 'wa it had': 962432, 'it had served': 458433, 'had served it': 373491, 'served it purpose': 751995, 'it purpose retail': 460561, 'purpose retail store': 690154, 'retail store year': 718736, 'store year ago': 811656, 'year ago and': 1014349, 'ago and needed': 38342, 'and needed massive': 67488, 'needed massive change': 556427, 'massive change of': 519983, 'change of direction': 172196, 'of direction rather': 582639, 'direction rather than': 243482, 'rather than tweaking': 697557, 'than tweaking to': 841365, 'tweaking to get': 936292, 'to get it': 906517, 'get it going': 347407, 'it going covid': 458280, 'going covid 19': 355092, 'covid 19 accelerated': 212572, '19 accelerated not': 4786, 'accelerated not created': 27891, 'not created the': 568925, 'created the issue': 215908, 'the issue one': 858576, 'issue one of': 455875, 'of many coming': 586173, 'many coming up': 513911, 'mtn': 544627, 'southafrica': 786794, 'mtn cut': 544628, 'cut data': 223288, '50 in': 19723, 'in southafrica': 428135, 'southafrica in': 786806, 'solidarity for': 781931, '19 nothing': 8836, 'changed here': 172489, 'nigeria where': 562820, 'the bulk': 850103, 'bulk of': 142327, 'mtn cut data': 544629, 'cut data price': 223289, 'data price by': 226355, 'price by 50': 673009, 'by 50 in': 151666, '50 in southafrica': 19727, 'in southafrica in': 428136, 'southafrica in solidarity': 786807, 'in solidarity for': 428072, 'solidarity for covid': 781932, 'covid 19 nothing': 213486, '19 nothing ha': 8837, 'nothing ha changed': 573027, 'ha changed here': 370125, 'changed here in': 172490, 'here in nigeria': 393170, 'in nigeria where': 425891, 'nigeria where they': 562821, 'where they make': 985284, 'they make the': 882651, 'make the bulk': 510559, 'the bulk of': 850105, 'bulk of their': 142332, 'meatshop': 525827, 'coimbatorecorporation': 185618, 'lockdowndiary': 500238, 'thecovaipost': 872307, 'up following': 944869, 'following lockdown': 312784, 'lockdown shop': 499906, 'to coimbatore': 902941, 'coimbatore corporation': 185612, 'corporation norm': 207446, 'norm meatshop': 567049, 'meatshop price': 525828, 'price coimbatorecorporation': 673163, 'coimbatorecorporation lockdown': 185619, 'lockdown lockdowndiary': 499612, 'lockdowndiary fightagainstcoronavirus': 500239, 'fightagainstcoronavirus thecovaipost': 304967, 'thecovaipost coimbatore': 872308, 'meat price go': 525697, 'go up following': 354430, 'up following lockdown': 944870, 'following lockdown shop': 312786, 'lockdown shop not': 499907, 'shop not adhering': 760502, 'adhering to coimbatore': 32234, 'to coimbatore corporation': 902942, 'coimbatore corporation norm': 185613, 'corporation norm meatshop': 207447, 'norm meatshop price': 567050, 'meatshop price coimbatorecorporation': 525829, 'price coimbatorecorporation lockdown': 673164, 'coimbatorecorporation lockdown lockdowndiary': 185620, 'lockdown lockdowndiary fightagainstcoronavirus': 499613, 'lockdowndiary fightagainstcoronavirus thecovaipost': 500240, 'fightagainstcoronavirus thecovaipost coimbatore': 304968, 'cowering': 214477, 'hub told': 409831, 'me today': 523802, 'should stock': 766507, 'on more': 602203, 'preserve what': 670709, 'hell cowering': 388996, 'hub told me': 409832, 'told me today': 923628, 'me today that': 523805, 'today that should': 920272, 'that should stock': 846292, 'should stock up': 766508, 'up on more': 945592, 'on more food': 602205, 'more food to': 539257, 'food to preserve': 317282, 'to preserve what': 912023, 'preserve what the': 670710, 'the hell cowering': 857239, 'shoved': 766822, 'knocking': 476179, 'yelped': 1015299, 'monday when': 536414, 'when reaching': 983922, 'reaching for': 700083, 'some apple': 782305, 'apple an': 82303, 'lady looked': 478789, 'looked 80': 502699, '80 shoved': 22628, 'shoved in': 766825, 'me so': 523488, 'so shocked': 778202, 'at someone': 100586, 'someone knocking': 784546, 'knocking into': 476182, 'me yelped': 524035, 'yelped jumped': 1015300, 'jumped back': 467923, 'back she': 107267, 'she got': 756057, 'the apple': 848826, 'apple but': 82312, 'but lord': 146318, 'lord know': 503313, 'that her': 844315, 'her at': 391863, 'on supermarket on': 603798, 'supermarket on monday': 821728, 'on monday when': 602191, 'monday when reaching': 536415, 'when reaching for': 983923, 'reaching for some': 700084, 'for some apple': 325728, 'some apple an': 782307, 'apple an old': 82304, 'old lady looked': 598323, 'lady looked 80': 478790, 'looked 80 shoved': 502700, '80 shoved in': 22629, 'shoved in front': 766826, 'of me so': 586340, 'me so shocked': 523496, 'so shocked at': 778203, 'shocked at someone': 759556, 'at someone knocking': 100588, 'someone knocking into': 784547, 'knocking into me': 476183, 'into me yelped': 442750, 'me yelped jumped': 524036, 'yelped jumped back': 1015301, 'jumped back she': 467924, 'back she got': 107268, 'she got the': 756061, 'got the apple': 358895, 'the apple but': 848827, 'apple but lord': 82313, 'but lord know': 146319, 'lord know what': 503314, 'what else if': 981410, 'else if that': 271736, 'if that her': 414938, 'that her at': 844316, 'comsumption': 192784, 'premiumization': 669983, 'winetasting': 995964, 'winedrinking': 995930, 'winelover': 995938, 'wineindustry': 995934, 'very interesting': 955272, 'is shifting': 451848, 'shifting wine': 758571, 'wine comsumption': 995799, 'comsumption are': 192785, 'of premiumization': 588359, 'premiumization winetasting': 669984, 'winetasting winedrinking': 995965, 'winedrinking winelover': 995931, 'winelover wineindustry': 995939, 'very interesting article': 955274, 'on how is': 601403, 'how is shifting': 408106, 'is shifting wine': 451854, 'shifting wine comsumption': 758572, 'wine comsumption are': 995800, 'comsumption are we': 192786, 'we seeing the': 973180, 'seeing the end': 746494, 'end of premiumization': 275910, 'of premiumization winetasting': 588360, 'premiumization winetasting winedrinking': 669985, 'winetasting winedrinking winelover': 995966, 'winedrinking winelover wineindustry': 995932, 'dispensary': 246117, 'stance': 793466, 'stalker': 793348, 'of am': 580019, 'am out': 50293, 'of touch': 592336, 'some friend': 782910, 'friend family': 333596, 'family but': 297671, 'that dispensary': 843554, 'dispensary went': 246126, 'to year': 918868, 'ago know': 38416, 'know their': 476856, 'their new': 874048, 'new hour': 558896, 'hour their': 405987, 'staff their': 792955, 'their delivery': 872992, 'delivery stance': 234569, 'stance price': 793477, 'stop texting': 805113, 'texting ve': 839990, 'had stalker': 373549, 'stalker with': 793349, 'more chill': 538810, 'because of am': 119306, 'of am out': 580021, 'am out of': 50294, 'out of touch': 626864, 'of touch with': 592339, 'touch with some': 926582, 'with some friend': 1000845, 'some friend family': 782911, 'friend family but': 333597, 'family but you': 297676, 'but you know': 147989, 'you know who': 1019544, 'know who do': 477034, 'not need an': 570652, 'need an update': 554411, 'update on that': 947137, 'on that dispensary': 603934, 'that dispensary went': 843555, 'dispensary went to': 246127, 'went to year': 979206, 'to year ago': 918869, 'year ago know': 1014354, 'ago know their': 38417, 'know their new': 476858, 'their new hour': 874051, 'new hour their': 558898, 'hour their staff': 405988, 'their staff their': 874800, 'staff their delivery': 792956, 'their delivery stance': 872996, 'delivery stance price': 234570, 'stance price they': 793478, 'price they will': 676905, 'not stop texting': 571758, 'stop texting ve': 805115, 'texting ve had': 839991, 've had stalker': 953236, 'had stalker with': 373550, 'stalker with more': 793350, 'with more chill': 999552, 'shelf cleared': 756943, 'cleared new': 181419, 'zealand hit': 1027291, 'hit 20': 398093, '20 covid': 13017, 'supermarket shelf cleared': 822443, 'shelf cleared new': 756945, 'cleared new zealand': 181420, 'new zealand hit': 559988, 'zealand hit 20': 1027292, 'hit 20 covid': 398094, '20 covid 19': 13018, 'johnlewis': 466571, 'lewis say': 487842, 'say all': 738401, 'all 50': 41904, 'close on': 182734, 'monday night': 536344, 'night due': 562984, 'coronavirus johnlewis': 206187, 'johnlewis retail': 466572, 'john lewis say': 466539, 'lewis say all': 487843, 'say all 50': 738402, 'all 50 of': 41905, '50 of it': 19771, 'it store will': 461303, 'store will close': 811328, 'will close on': 992946, 'close on monday': 182737, 'on monday night': 602177, 'monday night due': 536347, 'night due to': 562985, 'to coronavirus johnlewis': 903556, 'coronavirus johnlewis retail': 206188, 'johnlewis retail via': 466573, 'fitch': 309507, 'sovereign': 786937, 'fitch say': 309512, 'say rapid': 739083, 'rapid deterioration': 696906, 'deterioration in': 239416, 'global sovereign': 352206, 'sovereign rating': 786944, 'rating outlook': 697594, 'outlook due': 629143, 'fall make': 296983, 'make additional': 509646, 'fitch say rapid': 309513, 'say rapid deterioration': 739084, 'rapid deterioration in': 696907, 'deterioration in global': 239418, 'in global sovereign': 423339, 'global sovereign rating': 352207, 'sovereign rating outlook': 786946, 'rating outlook due': 697595, 'outlook due to': 629144, 'price fall make': 673789, 'fall make additional': 296984, 'worker everywhere': 1006883, 'everywhere panicbuying': 288243, 'letter to supermarket': 487372, 'supermarket worker everywhere': 824018, 'worker everywhere panicbuying': 1006885, 'rmbs': 724289, 'performance': 651423, 'borrower': 135611, 'on european': 600605, 'european ab': 283534, 'and rmbs': 70573, 'rmbs transaction': 724290, 'transaction will': 929485, 'be diverse': 114503, 'diverse with': 248529, 'credit performance': 216454, 'performance varying': 651474, 'varying among': 952676, 'among transaction': 53102, 'transaction backed': 929437, 'backed by': 107528, 'lending and': 486268, 'those backed': 891830, 'by commercial': 152155, 'commercial borrower': 188676, 'borrower read': 135624, 'read why': 700663, 'effect of 19': 269041, 'of 19 on': 579406, '19 on european': 8942, 'on european ab': 600606, 'european ab and': 283535, 'ab and rmbs': 24167, 'and rmbs transaction': 70574, 'rmbs transaction will': 724291, 'transaction will be': 929486, 'will be diverse': 992434, 'be diverse with': 114504, 'diverse with credit': 248530, 'with credit performance': 997849, 'credit performance varying': 216455, 'performance varying among': 651475, 'varying among transaction': 952677, 'among transaction backed': 53103, 'transaction backed by': 929438, 'backed by consumer': 107530, 'by consumer lending': 152187, 'consumer lending and': 198030, 'lending and those': 486269, 'and those backed': 74020, 'those backed by': 891831, 'backed by commercial': 107529, 'by commercial borrower': 152156, 'commercial borrower read': 188677, 'borrower read why': 135625, 'read why here': 700665, 'hardly': 378241, 'nor': 566929, 'hardly any': 378244, 'any socialdistancing': 79828, 'socialdistancing seen': 780665, 'seen at': 746956, 'at vegetable': 101433, 'store neither': 809054, 'neither are': 557313, 'are shopkeeper': 90052, 'shopkeeper enforcing': 761178, 'enforcing it': 276821, 'it nor': 459840, 'nor are': 566939, 'than aware': 840375, 'aware customer': 105610, 'customer it': 222544, 'it bit': 456878, 'bit scary': 131693, 'scary visiting': 741216, 'visiting store': 959549, 'hardly any socialdistancing': 378251, 'any socialdistancing seen': 79830, 'socialdistancing seen at': 780666, 'seen at vegetable': 746960, 'at vegetable and': 101434, 'vegetable and grocery': 953925, 'grocery store neither': 365588, 'store neither are': 809055, 'neither are shopkeeper': 557314, 'are shopkeeper enforcing': 90053, 'shopkeeper enforcing it': 761179, 'enforcing it nor': 276822, 'it nor are': 459841, 'nor are more': 566940, 'are more than': 88123, 'more than aware': 540594, 'than aware customer': 840376, 'aware customer it': 105611, 'customer it bit': 222545, 'it bit scary': 456881, 'bit scary visiting': 131694, 'scary visiting store': 741217, 'visiting store now': 959551, 'disastrous': 244279, 'disrupts': 246562, 'disastrous situation': 244292, 'situation mountain': 772389, 'being wasted': 126049, 'wasted in': 968239, 'the disrupts': 853409, 'disrupts the': 246571, 'disastrous situation mountain': 244293, 'situation mountain of': 772390, 'mountain of food': 543425, 'food are being': 313404, 'are being wasted': 84942, 'being wasted in': 126051, 'wasted in the': 968241, 'the the disrupts': 869379, 'the disrupts the': 853411, 'disrupts the supply': 246572, 'murphy': 546199, 'humidor': 410843, 'latest covid': 481279, 'update per': 947160, 'per governor': 650870, 'governor murphy': 360940, 'murphy our': 546204, 'and humidor': 64869, 'humidor will': 410844, 'for grab': 321972, 'grab go': 361491, 'go we': 354484, 'be delivering': 114403, 'delivering if': 233517, 'needed must': 556436, 'be 21': 113420, '21 to': 15033, 'to accept': 899935, 'accept delivery': 27953, 'delivery unfortunately': 234705, 'unfortunately we': 941660, 'our lounge': 623812, 'latest covid 19': 481280, '19 update per': 11676, 'update per governor': 947161, 'per governor murphy': 650871, 'governor murphy our': 360941, 'murphy our retail': 546205, 'store and humidor': 806263, 'and humidor will': 64870, 'humidor will remain': 410845, 'will remain open': 994634, 'remain open for': 709810, 'open for grab': 612248, 'for grab go': 321973, 'grab go we': 361492, 'go we will': 354487, 'we will also': 973833, 'will also be': 992251, 'also be delivering': 47919, 'be delivering if': 114406, 'delivering if needed': 233518, 'if needed must': 414462, 'needed must be': 556437, 'must be 21': 546489, 'be 21 to': 113421, '21 to accept': 15034, 'to accept delivery': 899939, 'accept delivery unfortunately': 27954, 'delivery unfortunately we': 234706, 'unfortunately we have': 941662, 'have to close': 383179, 'close our lounge': 182753, 'pseudomed': 687468, 'uc': 937872, 'irvine': 445127, 'debunked': 230633, 'rejuvi': 708348, 'liver': 496224, 'attributed': 102744, 'herbalife': 392587, 'digest 20': 242447, '20 pseudomed': 13283, 'pseudomed uc': 687469, 'uc irvine': 937877, 'irvine naturopath': 445129, '19 debunked': 6460, 'debunked rejuvi': 230634, 'rejuvi marketer': 708349, 'marketer cure': 517460, 'cure all': 220693, 'all claim': 42357, 'claim liver': 179761, 'liver failure': 496229, 'failure in': 296273, 'in 23': 419886, '23 year': 15442, 'old attributed': 598155, 'attributed to': 102745, 'to supplement': 915867, 'supplement more': 824416, 'more regulatory': 540209, 'regulatory trouble': 708186, 'trouble for': 932610, 'for herbalife': 322239, 'herbalife where': 392588, 'report fraudulent': 711961, '19 product': 9835, 'health digest 20': 386381, 'digest 20 pseudomed': 242448, '20 pseudomed uc': 13284, 'pseudomed uc irvine': 687470, 'uc irvine naturopath': 937878, 'irvine naturopath covid': 445130, 'covid 19 debunked': 212920, '19 debunked rejuvi': 6461, 'debunked rejuvi marketer': 230635, 'rejuvi marketer cure': 708350, 'marketer cure all': 517461, 'cure all claim': 220694, 'all claim liver': 42358, 'claim liver failure': 179762, 'liver failure in': 496230, 'failure in 23': 296274, 'in 23 year': 419887, '23 year old': 15443, 'year old attributed': 1014811, 'old attributed to': 598156, 'attributed to supplement': 102748, 'to supplement more': 915868, 'supplement more regulatory': 824417, 'more regulatory trouble': 540210, 'regulatory trouble for': 708187, 'trouble for herbalife': 932613, 'for herbalife where': 322240, 'herbalife where to': 392589, 'where to report': 985310, 'to report fraudulent': 913271, 'report fraudulent covid': 711962, 'covid 19 product': 213616, 'trade one': 928539, 'one roll': 606971, 'chicken must': 175818, 'must live': 546754, 'angeles dm': 76373, 'me got': 522829, 'the super': 868425, 'super soft': 818583, 'soft toiletpaper': 781493, 'toiletpaper chicken': 921856, 'will trade one': 995221, 'trade one roll': 928540, 'one roll of': 606975, 'paper for chicken': 640176, 'for chicken must': 320050, 'chicken must live': 175819, 'must live in': 546755, 'live in los': 495874, 'in los angeles': 424924, 'los angeles dm': 503364, 'angeles dm me': 76374, 'dm me got': 248906, 'me got the': 522832, 'got the super': 358916, 'the super soft': 868431, 'super soft toiletpaper': 818584, 'soft toiletpaper chicken': 781494, 'marketcrash': 517414, 'chinesecoronavirus': 177402, 'chucknorris': 178297, 'breakingnews': 139086, 'breaking wuhanvirus': 139083, 'wuhanvirus marketcrash': 1013578, 'marketcrash chinavirus': 517415, 'chinavirus chinesecoronavirus': 177152, 'chinesecoronavirus maga': 177407, 'maga cdc': 508273, 'cdc washyourhands': 168630, 'washyourhands toiletpaper': 967929, 'toiletpaper water': 922819, 'water chucknorris': 968941, 'chucknorris breakingnews': 178298, 'breaking wuhanvirus marketcrash': 139084, 'wuhanvirus marketcrash chinavirus': 1013579, 'marketcrash chinavirus chinesecoronavirus': 517416, 'chinavirus chinesecoronavirus maga': 177153, 'chinesecoronavirus maga cdc': 177408, 'maga cdc washyourhands': 508274, 'cdc washyourhands toiletpaper': 168631, 'washyourhands toiletpaper water': 967932, 'toiletpaper water chucknorris': 922820, 'water chucknorris breakingnews': 968942, 'illjustorderfromthecharmery': 416332, 'week went': 977211, 'paper meat': 640460, 'or bread': 614579, 'bread this': 138614, 'morning went': 541541, 'went and': 978951, 'no ice': 564458, 'cream glad': 215549, 'glad everyone': 351488, 'everyone got': 286951, 'got their': 358919, 'their priority': 874446, 'priority straight': 678660, 'straight illjustorderfromthecharmery': 812218, 'last week went': 480692, 'week went to': 977212, 'store and there': 806374, 'wa no toilet': 962738, 'toilet paper meat': 921356, 'paper meat or': 640461, 'meat or bread': 525680, 'or bread this': 614582, 'bread this morning': 138615, 'this morning went': 889037, 'morning went and': 541542, 'went and there': 978955, 'wa no ice': 962725, 'no ice cream': 564459, 'ice cream glad': 412653, 'cream glad everyone': 215550, 'glad everyone got': 351489, 'everyone got their': 286952, 'got their priority': 358921, 'their priority straight': 874449, 'priority straight illjustorderfromthecharmery': 678661, 'laughed': 481790, 'store couple': 807207, 'couple day': 211574, 'realized not': 701898, 'not many': 570529, 'many folk': 514075, 'folk know': 312205, 'cook cook': 202733, 'cook aisle': 202715, 'aisle full': 40253, 'of dry': 582856, 'dry rice': 261296, 'rice and': 720987, 'and dry': 61785, 'dry bean': 261243, 'bean replenished': 118355, 'replenished my': 711672, 'my bean': 547412, 'bean supply': 118371, 'just laughed': 469112, 'laughed all': 481791, 'went into the': 979051, 'grocery store couple': 365309, 'store couple day': 807208, 'couple day back': 211576, 'day back for': 227345, 'back for few': 106992, 'for few thing': 321459, 'few thing and': 304092, 'thing and realized': 884131, 'and realized not': 70008, 'realized not many': 701899, 'not many folk': 570530, 'many folk know': 514077, 'folk know how': 312206, 'know how to': 476463, 'to cook cook': 903480, 'cook cook aisle': 202734, 'cook aisle full': 202716, 'aisle full of': 40255, 'full of dry': 340718, 'of dry rice': 582858, 'dry rice and': 261297, 'rice and dry': 720991, 'and dry bean': 61786, 'dry bean replenished': 261244, 'bean replenished my': 118356, 'replenished my bean': 711673, 'my bean supply': 547413, 'bean supply and': 118372, 'supply and just': 824731, 'and just laughed': 65702, 'just laughed all': 469113, 'laughed all stay': 481792, 'all stay safe': 44445, 'juha': 467722, 'saarinen': 728976, 'coronavirus juha': 206189, 'juha saarinen': 467723, 'saarinen online': 728977, 'online government': 608306, 'government service': 360584, 'shopping must': 763304, 'be robust': 116907, 'robust during': 724839, '19 coronavirus juha': 6108, 'coronavirus juha saarinen': 206190, 'juha saarinen online': 467724, 'saarinen online government': 728978, 'online government service': 608307, 'government service and': 360585, 'service and grocery': 752089, 'and grocery shopping': 64002, 'grocery shopping must': 365054, 'shopping must be': 763305, 'must be robust': 546541, 'be robust during': 116908, 'robust during pandemic': 724840, 'during pandemic via': 262906, 'canal': 160787, 'get essential': 346948, 'essential but': 280868, 'it amazing': 456450, 'amazing the': 50800, 'of there': 591796, 'london no': 501139, 'no socialdistancing': 565550, 'socialdistancing lot': 780505, 'lot and': 503979, 'around along': 93182, 'along the': 47024, 'the canal': 850325, 'canal you': 160794, 'to get essential': 906470, 'get essential but': 346949, 'essential but it': 280871, 'but it amazing': 146097, 'it amazing the': 456453, 'amazing the number': 50801, 'number of there': 577001, 'of there are': 591797, 'there are in': 878115, 'are in london': 87411, 'in london no': 424890, 'london no socialdistancing': 501140, 'no socialdistancing lot': 565553, 'socialdistancing lot and': 780506, 'lot and lot': 503983, 'of people walking': 588019, 'people walking around': 650128, 'walking around along': 965020, 'around along the': 93183, 'along the canal': 47026, 'the canal you': 850326, 'canal you may': 160795, 'you may die': 1019795, 'edit': 268577, 'selfquarantine': 748557, 'wa watching': 963665, 'watching tv': 968816, 'an can': 55517, 'one scene': 606995, 'scene showed': 741356, 'showed basketball': 767317, 'basketball crowd': 112432, 'crowd throwing': 219277, 'throwing toilet': 895115, 'at end': 98540, 'of game': 584032, 'game re': 343233, 're edit': 698589, 'edit may': 268585, 'be needed': 116056, 'needed toiletpaperpanic': 556556, 'toiletpaperapocalypse sport': 922922, 'sport selfquarantine': 789978, 'selfquarantine selfisolation': 748572, 'selfisolation toiletpaper': 748509, 'wa watching tv': 963667, 'watching tv and': 968817, 'tv and an': 936081, 'and an can': 58107, 'an can be': 55518, 'can be on': 157650, 'be on and': 116188, 'on and one': 599365, 'and one scene': 68093, 'one scene showed': 606996, 'scene showed basketball': 741357, 'showed basketball crowd': 767318, 'basketball crowd throwing': 112433, 'crowd throwing toilet': 219278, 'throwing toilet paper': 895116, 'roll at end': 725197, 'at end of': 98541, 'end of game': 275898, 'of game re': 584033, 'game re edit': 343234, 're edit may': 698590, 'edit may be': 268586, 'may be needed': 521010, 'be needed toiletpaperpanic': 116060, 'needed toiletpaperpanic toiletpaperapocalypse': 556557, 'toiletpaperpanic toiletpaperapocalypse sport': 923273, 'toiletpaperapocalypse sport selfquarantine': 922923, 'sport selfquarantine selfisolation': 789979, 'selfquarantine selfisolation toiletpaper': 748574, 'tearful': 835978, 'video york': 956974, 'york nurse': 1016643, 'nurse who': 577542, 'who made': 989240, 'made tearful': 507980, 'tearful plea': 835990, 'plea over': 659554, 'over supermarket': 630661, 'ha symptom': 372138, 'video york nurse': 956975, 'york nurse who': 1016644, 'nurse who made': 577547, 'who made tearful': 989244, 'made tearful plea': 507982, 'tearful plea over': 835992, 'plea over supermarket': 659555, 'over supermarket panic': 630663, 'supermarket panic buying': 821902, 'buying ha symptom': 150451, 'little something': 495579, 'something we': 785130, 'together recently': 920908, 'recently how': 704111, 'handsanitizer diy': 376513, 'little something we': 495580, 'something we put': 785136, 'we put together': 972797, 'put together recently': 690944, 'together recently how': 920909, 'recently how to': 704112, 'to make homemade': 909677, 'sanitizer handsanitizer diy': 735033, 'wary': 967403, 'be wary': 118048, 'wary of': 967404, 'purchase be wary': 689379, 'be wary of': 118049, 'wary of scam': 967410, 'of scam and': 589355, 'skype': 773256, 'running session': 728055, 'session in': 753283, 'on managing': 601981, 'managing shopping': 512888, 'amp staying': 54562, 'staying in': 798633, 'in contact': 421735, 'via skype': 956239, 'skype or': 773265, 'facetime older': 295219, 'to help in': 907543, 'help in their': 389910, 'their community are': 872823, 'community are running': 189739, 'are running session': 89770, 'running session in': 728056, 'session in on': 753285, 'in on managing': 426121, 'on managing shopping': 601986, 'managing shopping online': 512889, 'shopping online amp': 763407, 'online amp staying': 607804, 'amp staying in': 54563, 'staying in contact': 798635, 'in contact via': 421737, 'contact via skype': 200252, 'via skype or': 956240, 'skype or facetime': 773266, 'or facetime older': 615252, 'centered': 169336, 'coronacrisis retail': 204730, 'risk in': 723622, 'more 200': 538483, '200 customer': 13475, 'customer centered': 222241, 'centered supermarket': 169345, 'happen month': 377116, 'month end': 537703, 'end anyway': 275775, 'anyway customer': 80998, 'customer is': 222534, 'right they': 722301, 'can kiss': 158829, 'kiss you': 475463, 'coronacrisis retail employee': 204731, 'employee are at': 273607, 'at risk in': 100370, 'risk in day': 723624, 'in day like': 422013, 'day like this': 227911, 'like this more': 491507, 'this more 200': 888926, 'more 200 customer': 538484, '200 customer centered': 13476, 'customer centered supermarket': 222242, 'centered supermarket what': 169346, 'supermarket what will': 823795, 'will happen month': 993599, 'happen month end': 377117, 'month end anyway': 537704, 'end anyway customer': 275776, 'anyway customer is': 80999, 'customer is always': 222536, 'always right they': 49729, 'right they can': 722303, 'they can kiss': 881648, 'can kiss you': 158830, 'kiss you if': 475464, 'you if they': 1019282, 'if they want': 415136, 'intreo': 443363, 'quay': 693301, 'the intreo': 858408, 'intreo office': 443364, 'office are': 595365, 'provide social': 686480, 'social welfare': 780012, 'welfare service': 977969, 'the parking': 863298, 'the george': 856221, 'george quay': 346015, 'quay office': 693302, 'office keep': 595472, 'with emergency': 998201, 'when offering': 983789, 'offering thanks': 595276, 'during the staff': 263198, 'the staff at': 867683, 'at the intreo': 100989, 'the intreo office': 858409, 'intreo office are': 443365, 'office are working': 595370, 'working to provide': 1008998, 'to provide social': 912434, 'provide social welfare': 686481, 'social welfare service': 780013, 'welfare service this': 977970, 'service this is': 752956, 'is the parking': 452886, 'the parking lot': 863299, 'parking lot of': 642097, 'lot of the': 504302, 'of the george': 591061, 'the george quay': 856222, 'george quay office': 346016, 'quay office keep': 693303, 'office keep them': 595473, 'them in mind': 875906, 'in mind along': 425336, 'along with emergency': 47052, 'with emergency service': 998203, 'store worker when': 811622, 'worker when offering': 1008179, 'when offering thanks': 983790, 'relaxing': 708886, 'quarantinis': 693095, 'dynamic': 263898, 'duo': 262321, 'review': 720551, '21st': 15136, 'are relaxing': 89550, 'relaxing in': 708891, 'while having': 986905, 'having some': 384277, 'some quarantinis': 783679, 'quarantinis our': 693096, 'our dynamic': 622818, 'dynamic duo': 263904, 'duo review': 262322, 'review life': 720570, 'in during': 422420, 'during 21st': 262423, '21st century': 15139, 'century apocalypse': 169611, 'and consumer are': 60350, 'consumer are relaxing': 196304, 'are relaxing in': 89551, 'relaxing in lockdown': 708892, 'in lockdown while': 424857, 'lockdown while having': 500136, 'while having some': 986907, 'having some quarantinis': 384279, 'some quarantinis our': 783680, 'quarantinis our dynamic': 693097, 'our dynamic duo': 622819, 'dynamic duo review': 263905, 'duo review life': 262323, 'review life in': 720571, 'life in during': 488757, 'in during 21st': 422422, 'during 21st century': 262424, '21st century apocalypse': 15140, 'somalia': 782218, 'all eye': 42730, 'eye will': 294127, '2020 consumer': 14239, 'index report': 434237, 'report which': 712430, 'be published': 116614, 'on 15th': 599013, '15th april': 4038, 'april in': 83618, 'february food': 301716, 'price inflation': 674822, 'inflation wa': 437258, 'wa market': 962621, 'market price': 516878, 'in somalia': 428077, 'somalia what': 782221, 'all eye will': 42733, 'eye will be': 294128, 'be on march': 116203, 'on march 2020': 602016, 'march 2020 consumer': 515153, '2020 consumer price': 14242, 'consumer price index': 198425, 'price index report': 674814, 'index report which': 434238, 'report which will': 712433, 'which will be': 986481, 'will be published': 992624, 'be published on': 116615, 'published on 15th': 688672, 'on 15th april': 599014, '15th april in': 4040, 'april in february': 83619, 'in february food': 422843, 'february food price': 301717, 'food price inflation': 315952, 'price inflation wa': 674827, 'inflation wa market': 437259, 'wa market price': 962622, 'market price expected': 516887, 'to increase to': 908307, 'increase to covid': 433135, 'increase in somalia': 432867, 'in somalia what': 428078, 'somalia what do': 782222, 'supply what': 826091, 'aisle crowd': 40232, 'crowd during': 219153, 'pandemic information': 635733, 'and guidance': 64038, 'guidance about': 368195, 'changing quickly': 172782, 'the asked': 848970, 'the expert': 854729, 'if you must': 415479, 'you must go': 1019920, 'go to store': 354363, 'store or supermarket': 809373, 'or supermarket for': 617281, 'food or supply': 315671, 'or supply what': 617301, 'supply what the': 826093, 'what the best': 982297, 'way to navigate': 970057, 'navigate the aisle': 553076, 'the aisle crowd': 848518, 'aisle crowd during': 40233, 'crowd during the': 219154, 'the pandemic information': 862999, 'pandemic information and': 635734, 'information and guidance': 437736, 'and guidance about': 64039, 'guidance about the': 368196, 'virus is changing': 958368, 'is changing quickly': 446480, 'changing quickly so': 172783, 'quickly so the': 694601, 'so the asked': 778415, 'the asked the': 848971, 'asked the expert': 95841, 'pandemic2020': 637103, 'that pandemic': 845638, 'pandemic pandemic2020': 636145, 'pandemic2020 panicbuying': 637106, 'panicbuying tp': 639099, 'paper what that': 641078, 'what that pandemic': 982285, 'that pandemic pandemic2020': 845639, 'pandemic pandemic2020 panicbuying': 636146, 'pandemic2020 panicbuying tp': 637107, 'panicbuying tp toiletpaper': 639100, 'going all': 355006, 'keep fed': 471497, 'frontline worker at': 338860, 'worker at grocery': 1006463, 'store are going': 806481, 'are going all': 86876, 'going all out': 355007, 'all out to': 43843, 'out to keep': 627656, 'to keep fed': 908787, 'coronapimpin': 205173, 'sexydistancing': 754234, 'sexy': 754224, 'igotyouboo': 415937, 'my newest': 549478, 'newest pick': 560064, 'up line': 945321, 'line hey': 493171, 'hey girl': 394390, 'girl hey': 350252, 'hey got': 394396, 'got what': 359012, 'need coronapimpin': 554645, 'coronapimpin sexydistancing': 205174, 'sexydistancing sexy': 754235, 'sexy funny': 754225, 'funny bored': 341708, 'bored laugh': 135355, 'laugh comedy': 481718, 'comedian funny': 187722, 'funny igotyouboo': 341749, 'igotyouboo toiletpaper': 415938, 'toiletpaper lysol': 922214, 'my newest pick': 549480, 'newest pick up': 560065, 'pick up line': 655734, 'up line hey': 945322, 'line hey girl': 493172, 'hey girl hey': 394391, 'girl hey got': 350253, 'hey got what': 394398, 'got what you': 359015, 'you need coronapimpin': 1019978, 'need coronapimpin sexydistancing': 554646, 'coronapimpin sexydistancing sexy': 205175, 'sexydistancing sexy funny': 754236, 'sexy funny bored': 754226, 'funny bored laugh': 341709, 'bored laugh comedy': 135356, 'laugh comedy comedian': 481719, 'comedy comedian funny': 187737, 'comedian funny igotyouboo': 187723, 'funny igotyouboo toiletpaper': 341750, 'igotyouboo toiletpaper lysol': 415939, 'supermarket hasn': 820671, 'hasn put': 378766, 'put one': 690732, 'family rule': 298192, 'rule when': 727403, 'shopping socialdistancing': 763937, 'the only supermarket': 862348, 'only supermarket hasn': 611222, 'supermarket hasn put': 820672, 'hasn put one': 378767, 'put one person': 690735, 'person per family': 652577, 'per family rule': 650834, 'family rule when': 298193, 'rule when shopping': 727404, 'when shopping socialdistancing': 984026, 'excitement': 289582, 'rot': 726157, 'hopefully enough': 403849, 'enough people': 277556, 'amazing person': 50758, 'person excitement': 652423, 'excitement and': 289583, 'filling cupboard': 305601, 'cupboard with': 220502, 'than they': 841296, 'eat before': 265861, 'it rot': 460803, 'rot keep': 726167, 'keep calm': 471375, 'calm and': 156681, 'hopefully enough people': 403850, 'enough people will': 277559, 'people will see': 650410, 'will see this': 994796, 'see this amazing': 745938, 'this amazing person': 886304, 'amazing person excitement': 50759, 'person excitement and': 652424, 'excitement and stop': 289584, 'and stop filling': 72473, 'stop filling cupboard': 804650, 'filling cupboard with': 305602, 'cupboard with more': 220503, 'with more food': 999555, 'more food than': 539255, 'food than they': 317080, 'than they can': 841298, 'they can eat': 881628, 'can eat before': 158191, 'eat before it': 265862, 'before it rot': 122893, 'it rot keep': 460805, 'rot keep calm': 726168, 'keep calm and': 471377, 'calm and stop': 156698, 'and stop panic': 72481, 'sakal': 731836, 'sakalnews': 731842, 'viral': 957583, 'sakalmedia': 731839, 'lockdownnow': 500331, 'coronavirus india': 206129, 'india panic': 434565, 'in pune': 427115, 'pune lead': 689195, 'in vegetable': 430544, 'fruit price': 339128, 'price sakal': 676288, 'sakal sakalnews': 731837, 'sakalnews viral': 731843, 'viral news': 957608, 'news sakalmedia': 560766, 'sakalmedia india': 731840, 'india corona': 434357, 'corona lockdownnow': 204045, 'lockdownnow lockdown': 500334, 'coronavirus india panic': 206130, 'india panic buying': 434566, 'buying in pune': 150538, 'in pune lead': 427118, 'pune lead to': 689196, 'lead to surge': 483392, 'surge in vegetable': 828215, 'in vegetable fruit': 430546, 'vegetable fruit price': 953992, 'fruit price sakal': 339129, 'price sakal sakalnews': 676289, 'sakal sakalnews viral': 731838, 'sakalnews viral news': 731844, 'viral news sakalmedia': 957609, 'news sakalmedia india': 560767, 'sakalmedia india corona': 731841, 'india corona lockdownnow': 434359, 'corona lockdownnow lockdown': 204046, 'in here': 423667, 'here wa': 393774, 'not bought': 568604, 'bought this': 136751, 'nothing fresh': 573018, 'fresh left': 333018, 'me staysafestayhome': 523547, 'staysafestayhome socialdistanacing': 799016, 'socialdistanacing stoppanicbuying': 780115, 'stoppanicbuying stopthespread': 805647, 'note that most': 572805, 'that most of': 845230, 'the food in': 855560, 'food in here': 314942, 'in here wa': 423672, 'here wa not': 393775, 'wa not bought': 962759, 'not bought this': 568606, 'bought this week': 136755, 'this week there': 891280, 'week there is': 977025, 'is nothing fresh': 450235, 'nothing fresh left': 573019, 'fresh left in': 333019, 'left in store': 485518, 'in store near': 428432, 'near me staysafestayhome': 553543, 'me staysafestayhome socialdistanacing': 523548, 'staysafestayhome socialdistanacing stoppanicbuying': 799017, 'socialdistanacing stoppanicbuying stopthespread': 780116, 'you shopping': 1021171, 'amazon with': 51209, 'shopping lot': 763216, 'online so': 609386, 'so next': 777871, 'online try': 609641, 'try amazonsmile': 934434, 'amazonsmile all': 51259, 'same product': 733250, 'but amazon': 145168, 'amazon donates': 50919, 'donates of': 254400, 'the purchase': 864915, 'purchase price': 689632, 'to world': 918823, 'world child': 1009416, 'child cancer': 176032, 'are you shopping': 91854, 'you shopping on': 1021174, 'shopping on amazon': 763385, 'on amazon with': 599296, 'amazon with the': 51210, 'with the effect': 1001278, 'we are shopping': 970710, 'are shopping lot': 90061, 'shopping lot more': 763217, 'lot more online': 504111, 'more online so': 539944, 'online so next': 609391, 'so next time': 777874, 'shop online try': 760592, 'online try amazonsmile': 609642, 'try amazonsmile all': 934435, 'amazonsmile all the': 51260, 'all the same': 44897, 'the same product': 866284, 'same product and': 733252, 'product and price': 680899, 'and price but': 69440, 'price but amazon': 672973, 'but amazon donates': 145170, 'amazon donates of': 50920, 'donates of the': 254401, 'of the purchase': 591380, 'the purchase price': 864919, 'purchase price to': 689634, 'price to world': 677063, 'to world child': 918824, 'world child cancer': 1009417, 'staffing': 793151, 'fra': 330854, 'very poor': 955417, 'poor customer': 664161, 'service if': 752466, 'the algorithm': 848571, 'algorithm run': 41664, 'emergency and': 272596, 'refund the': 706958, 'cost also': 207846, 'poor staffing': 664295, 'staffing fra': 793154, 'very poor customer': 955418, 'poor customer service': 664162, 'customer service if': 222826, 'service if you': 752470, 'if you let': 415462, 'you let the': 1019595, 'let the algorithm': 487117, 'the algorithm run': 848573, 'algorithm run the': 41665, 'run the price': 727825, 'price up in': 677239, 'up in state': 945181, 'in state of': 428242, 'of emergency and': 583026, 'emergency and do': 272598, 'do not refund': 249818, 'not refund the': 571283, 'refund the cost': 706960, 'the cost also': 851980, 'cost also very': 207847, 'also very poor': 49063, 'very poor staffing': 955420, 'poor staffing fra': 664296, 'reassured': 703203, 'ram': 696316, 'bajekal': 108735, 'fmf': 311754, 'ltd': 506381, 'stock this': 802973, 'is reassured': 451333, 'reassured by': 703204, 'by ram': 153717, 'ram bajekal': 696317, 'bajekal managing': 108736, 'of fmf': 583615, 'fmf food': 311755, 'food ltd': 315353, 'ltd country': 506384, 'country battle': 210501, 'deadly coronavirus': 229258, 'is enough stock': 447516, 'enough stock this': 277635, 'stock this is': 802974, 'this is reassured': 888375, 'is reassured by': 451334, 'reassured by ram': 703205, 'by ram bajekal': 153718, 'ram bajekal managing': 696318, 'bajekal managing director': 108737, 'managing director of': 512866, 'director of fmf': 243649, 'of fmf food': 583616, 'fmf food ltd': 311756, 'food ltd country': 315354, 'ltd country battle': 506385, 'country battle the': 210502, 'battle the deadly': 112826, 'the deadly coronavirus': 852945, 'deadly coronavirus disease': 229259, 'oneindiapolls': 607550, 'oneindiapolls is': 607551, 'is hiking': 448470, 'ticket good': 895624, 'oneindiapolls is hiking': 607552, 'is hiking price': 448471, 'platform ticket good': 659033, 'ticket good move': 895625, 'wuhancoronavius': 1013553, 'love but': 504624, 'become another': 119925, 'another useless': 77933, 'useless panic': 950240, 'panic tool': 638731, 'tool everyone': 925406, 'everyone need': 287201, 'stop posting': 804926, 'posting story': 666690, 'not having': 569892, 'having enough': 384048, 'demand you': 236535, 'problem corona': 679502, 'virus wuhancoronavius': 959069, 'wuhancoronavius wuflu': 1013555, 'love but this': 504625, 'this is starting': 888410, 'starting to become': 795014, 'to become another': 901669, 'become another useless': 119926, 'another useless panic': 77934, 'useless panic tool': 950241, 'panic tool everyone': 638732, 'tool everyone need': 925407, 'everyone need to': 287208, 'to stop posting': 915556, 'stop posting story': 804929, 'posting story about': 666691, 'story about not': 811893, 'about not having': 25816, 'not having enough': 569896, 'having enough food': 384049, 'and not being': 67723, 'with demand you': 997997, 'demand you are': 236536, 'the problem corona': 864509, 'problem corona virus': 679503, 'corona virus wuhancoronavius': 204379, 'virus wuhancoronavius wuflu': 959070, 'this amazon': 886306, 'amazon just': 51020, 'just restocked': 469636, 'restocked hand': 716949, 'sanitizer back': 734541, 'you see this': 1021074, 'see this amazon': 745939, 'this amazon just': 886308, 'amazon just restocked': 51022, 'just restocked hand': 469637, 'restocked hand sanitizer': 716950, 'hand sanitizer back': 375318, 'sanitizer back in': 734542, 'back in stock': 107098, 'single delivery': 771286, 'supermarket due': 820038, 'to being': 901732, 'my only': 549588, 'option please': 614087, 'being selfish': 125731, 'selfish foodshortages': 748090, 'not single delivery': 571595, 'single delivery slot': 771287, 'available for any': 104359, 'for any supermarket': 319426, 'any supermarket not': 79904, 'supermarket not able': 821638, 'able to go': 24487, 'the supermarket due': 868563, 'supermarket due to': 820042, 'due to being': 261710, 'to being in': 901739, 'risk group to': 723597, 'group to get': 366932, 'get food so': 347064, 'food so this': 316667, 'is my only': 449805, 'my only option': 549593, 'only option please': 610916, 'option please stop': 614088, 'please stop being': 660568, 'stop being selfish': 804496, 'being selfish foodshortages': 125740, 'bahrain': 108563, 'been registered': 121805, 'registered by': 707641, 'by business': 152023, 'in bahrain': 420667, 'bahrain fear': 108566, 'disease covid': 245122, 'ha forced': 370654, 'forced people': 328593, 'adopt social': 32676, 'distancing bahrain': 247026, 'surge in online': 828199, 'and grocery ha': 63987, 'ha been registered': 369895, 'been registered by': 121806, 'registered by business': 707642, 'by business in': 152027, 'business in bahrain': 143880, 'in bahrain fear': 420668, 'bahrain fear over': 108567, 'over the spread': 630770, 'coronavirus disease covid': 205829, 'disease covid 19': 245123, '19 ha forced': 7346, 'ha forced people': 370663, 'forced people to': 328594, 'people to adopt': 649872, 'to adopt social': 900128, 'adopt social distancing': 32677, 'social distancing bahrain': 779562, 'it weren': 462317, 'weren for': 980396, 'staff janitor': 792589, 'driver many': 259651, 'would starve': 1012266, 'starve and': 795187, 'and starve': 72268, 'starve sick': 795217, 'our damn': 622692, 'damn influence': 225372, 'influence punk': 437319, 'if it weren': 414344, 'it weren for': 462318, 'weren for supermarket': 980397, 'for supermarket staff': 326026, 'supermarket staff janitor': 822859, 'staff janitor trunk': 792591, 'trunk driver many': 934225, 'driver many of': 259652, 'many of you': 514404, 'of you would': 593434, 'you would starve': 1022458, 'would starve and': 1012267, 'starve and starve': 795188, 'and starve sick': 72269, 'starve sick so': 795218, 'give our damn': 350630, 'our damn influence': 622693, 'damn influence punk': 225373, 'influence punk as': 437320, 'lad': 478710, 'everton': 285633, 'turkish': 935589, 'edinburgh': 268565, 'fucking hell': 339888, 'hell lad': 389030, 'lad this': 478717, 'answer for': 78052, 'friday night': 333260, 'no everton': 564138, 'everton or': 285634, 'or pub': 616738, 'pub it': 687721, 'got chatting': 358478, 'about olive': 25840, 'olive coffee': 598735, 'coffee turkish': 185556, 'turkish delight': 935590, 'delight whiskey': 233042, 'whiskey house': 987771, 'in edinburgh': 422494, 'edinburgh and': 268566, 'and surrounding': 72889, 'fucking hell lad': 339889, 'hell lad this': 389031, 'lad this covid': 478718, '19 ha lot': 7362, 'ha lot to': 371192, 'lot to answer': 504388, 'to answer for': 900582, 'answer for it': 78053, 'for it friday': 322705, 'it friday night': 458140, 'friday night and': 333261, 'night and with': 562953, 'and with no': 75776, 'with no everton': 999748, 'no everton or': 564139, 'everton or pub': 285635, 'or pub it': 616740, 'pub it got': 687723, 'it got chatting': 458315, 'got chatting about': 358479, 'chatting about olive': 174009, 'about olive coffee': 25841, 'olive coffee turkish': 598736, 'coffee turkish delight': 185557, 'turkish delight whiskey': 935591, 'delight whiskey house': 233043, 'whiskey house price': 987772, 'price in edinburgh': 674680, 'in edinburgh and': 422495, 'edinburgh and surrounding': 268567, 'legislated': 485960, 'homebuying': 402641, 'homebuyer': 402628, 'residential': 714417, 'househunters': 407001, 'buy house': 148798, 'house just': 406385, 'just before': 468311, 'pandemic don': 635323, 'don count': 253444, 'on force': 600958, 'majeure protection': 509219, 'protection unless': 685667, 'it legislated': 459330, 'legislated or': 485961, 'or included': 615769, 'the contract': 851688, 'contract consumer': 201643, 'consumer homebuying': 197767, 'homebuying homebuyer': 402642, 'homebuyer realestate': 402629, 'realestate residential': 701524, 'residential househunters': 714428, 'househunters law': 407002, 'buy house just': 148800, 'house just before': 406386, 'just before the': 468320, 'before the pandemic': 123180, 'the pandemic don': 862951, 'pandemic don count': 635324, 'don count on': 253445, 'count on force': 210144, 'on force majeure': 600959, 'force majeure protection': 328431, 'majeure protection unless': 509220, 'protection unless it': 685668, 'unless it legislated': 942623, 'it legislated or': 459331, 'legislated or included': 485962, 'or included in': 615770, 'in the contract': 429095, 'the contract consumer': 851689, 'contract consumer homebuying': 201644, 'consumer homebuying homebuyer': 197768, 'homebuying homebuyer realestate': 402643, 'homebuyer realestate residential': 402630, 'realestate residential househunters': 701525, 'residential househunters law': 714429, 'cocooned': 185294, 'duration': 262365, 'eve nobody': 283782, 'nobody smiling': 566060, 'smiling nobody': 775776, 'nobody looking': 566034, 'to spending': 915003, 'spending month': 788908, 'month cocooned': 537650, 'cocooned with': 185295, 'family shelf': 298215, 'shelf depleted': 756976, 'depleted note': 237412, 'note covid': 572716, 'not kill': 570281, 'kill sense': 474489, 'of humor': 584892, 'humor be': 410853, 'happy at': 377587, 'least because': 484409, 'zealand for': 1027282, 'the duration': 853784, 'checkout at supermarket': 174888, 'at supermarket is': 100736, 'supermarket is like': 821103, 'is like christmas': 449312, 'christmas eve nobody': 178171, 'eve nobody smiling': 283783, 'nobody smiling nobody': 566061, 'smiling nobody looking': 775777, 'nobody looking forward': 566035, 'forward to spending': 330036, 'to spending month': 915005, 'spending month cocooned': 788909, 'month cocooned with': 537651, 'cocooned with family': 185296, 'with family shelf': 998384, 'family shelf depleted': 298216, 'shelf depleted note': 756977, 'depleted note covid': 237413, 'note covid 19': 572717, '19 doe not': 6605, 'doe not kill': 251503, 'not kill sense': 570283, 'kill sense of': 474490, 'sense of humor': 750559, 'of humor be': 584893, 'humor be happy': 410854, 'be happy at': 115142, 'happy at least': 377588, 'at least because': 99470, 'least because you': 484410, 'because you are': 119859, 'are in new': 87414, 'in new zealand': 425836, 'new zealand for': 559984, 'zealand for the': 1027283, 'for the duration': 326399, 'cop guard': 203267, 'guard toiletpaper': 367856, 'toiletpaper aisle': 921697, 'cop guard toiletpaper': 203268, 'guard toiletpaper aisle': 367857, 'toiletpaper aisle at': 921699, 'aisle at supermarket': 40214, 'supermarket in florida': 820898, 'store opening': 809275, 'opening line': 612871, 'line life': 493231, 'grocery store opening': 365618, 'store opening line': 809281, 'opening line life': 612872, 'line life in': 493232, 'life in the': 488769, 'poke': 662828, 'patty': 644531, 'quarantaine': 691975, 'quarantine time': 692630, 'time true': 898134, 'true story': 933173, 'story thought': 812133, 'thought poke': 893183, 'poke little': 662831, 'little fun': 495359, 'fun have': 341175, 'little laugh': 495431, 'laugh instead': 481736, 'of cry': 582236, 'cry patty': 219904, 'patty grocery': 644532, 'run quarantaine': 727780, 'quarantaine quarantinelife': 691976, 'quarantinelife quarantineandchill': 692994, 'the quarantine time': 864980, 'quarantine time true': 692633, 'time true story': 898135, 'true story thought': 933175, 'story thought poke': 812134, 'thought poke little': 893184, 'poke little fun': 662832, 'little fun have': 495360, 'fun have little': 341176, 'have little laugh': 381351, 'little laugh instead': 495432, 'laugh instead of': 481737, 'instead of cry': 440249, 'of cry patty': 582237, 'cry patty grocery': 219905, 'patty grocery store': 644533, 'store run quarantaine': 809931, 'run quarantaine quarantinelife': 727781, 'quarantaine quarantinelife quarantineandchill': 691977, 'tpshortage': 928094, 'real talk': 701386, 'talk when': 833909, 'when watch': 984423, 'watch movie': 968476, 'movie now': 544036, 'now catch': 574356, 'catch myself': 167014, 'myself noticing': 550916, 'noticing toilet': 573516, 'background tpshortage': 107554, 'tpshortage toiletpaper': 928097, 'real talk when': 701387, 'talk when watch': 833912, 'when watch movie': 984424, 'watch movie now': 968478, 'movie now catch': 544037, 'now catch myself': 574357, 'catch myself noticing': 167015, 'myself noticing toilet': 550917, 'noticing toilet paper': 573517, 'the background tpshortage': 849160, 'background tpshortage toiletpaper': 107555, 'tpshortage toiletpaper toiletpaperpanic': 928098, 'somebody': 784249, 'cross': 218981, 'walk you': 964929, 'see somebody': 745725, 'somebody let': 784268, 'them pas': 876146, 'pas or': 643135, 'or cross': 614858, 'cross the': 219034, 'street bring': 812927, 'bring clorox': 139943, 'clorox wipe': 182469, 'for cart': 319943, 'store look': 808819, 'sick then': 768626, 'then go': 877204, 'opposite direction': 613779, 'direction and': 243440, 'shopping mentalhealth': 763278, 'you go for': 1018848, 'for walk you': 327632, 'walk you see': 964931, 'you see somebody': 1021066, 'see somebody let': 745726, 'somebody let them': 784269, 'let them pas': 487159, 'them pas or': 876147, 'pas or cross': 643136, 'or cross the': 614859, 'cross the street': 219035, 'the street bring': 868220, 'street bring clorox': 812928, 'bring clorox wipe': 139944, 'clorox wipe for': 182472, 'wipe for cart': 996261, 'for cart at': 319944, 'cart at grocery': 165262, 'grocery store look': 365541, 'store look for': 808820, 'look for people': 502368, 'who are sick': 988220, 'are sick then': 90117, 'sick then go': 768627, 'then go the': 877209, 'go the opposite': 354208, 'the opposite direction': 862410, 'opposite direction and': 613780, 'direction and do': 243443, 'your shopping mentalhealth': 1025786, 'houston and': 407184, 'and across': 57617, 'have fallen': 380563, 'fallen to': 297182, 'their lowest': 873892, 'lowest in': 506170, 'least decade': 484437, 'gasoline price in': 344263, 'price in houston': 674695, 'in houston and': 423868, 'houston and across': 407185, 'and across the': 57619, 'country have fallen': 210736, 'have fallen to': 380577, 'fallen to their': 297187, 'to their lowest': 917252, 'their lowest in': 873893, 'lowest in at': 506174, 'at least decade': 99481, 'sumone': 818046, 'keep mobile': 471671, 'mobile test': 535028, 'test lab': 839077, 'one ambulance': 605889, 'ambulance for': 51331, '19 near': 8753, 'near vegetable': 553627, 'vegetable market': 954027, 'market supermarket': 517146, 'can test': 159931, 'test all': 838904, 'all public': 44086, 'public who': 688478, 'came there': 157059, 'there if': 878496, 'if sumone': 414891, 'sumone find': 818047, 'find positive': 307182, 'positive send': 665426, 'send him': 749871, 'him her': 396623, 'quarantine centre': 692075, 'centre through': 169554, 'through ambulance': 894317, 'keep mobile test': 471672, 'mobile test lab': 535029, 'test lab and': 839078, 'lab and one': 478247, 'and one ambulance': 68084, 'one ambulance for': 605890, 'ambulance for covid': 51332, 'covid 19 near': 213467, '19 near vegetable': 8754, 'near vegetable market': 553628, 'vegetable market supermarket': 954032, 'market supermarket and': 517147, 'supermarket and grocery': 818992, 'grocery store where': 365947, 'store where can': 811256, 'where can test': 984769, 'can test all': 159932, 'test all public': 838906, 'all public who': 44091, 'public who came': 688479, 'who came there': 988366, 'came there if': 157060, 'there if sumone': 878498, 'if sumone find': 414892, 'sumone find positive': 818048, 'find positive send': 307183, 'positive send him': 665427, 'send him her': 749872, 'him her to': 396625, 'her to quarantine': 392469, 'to quarantine centre': 912639, 'quarantine centre through': 692078, 'centre through ambulance': 169555, 'think twice': 885725, 'twice before': 936515, 'before becoming': 122659, 'becoming covid': 120284, 'buyer stocking': 149759, 'up excessive': 944823, 'excessive amount': 289378, 'only contribute': 610269, 'from buying': 334773, 'other good': 620302, 'good they': 357834, 'think twice before': 885726, 'twice before becoming': 936516, 'before becoming covid': 122660, 'becoming covid 19': 120285, '19 panic buyer': 9540, 'panic buyer stocking': 637603, 'buyer stocking up': 149760, 'stocking up excessive': 803617, 'up excessive amount': 944824, 'excessive amount of': 289379, 'amount of food': 53222, 'food will only': 317628, 'will only contribute': 994328, 'only contribute to': 610270, 'contribute to and': 201878, 'to and prevent': 900519, 'prevent the elderly': 671732, 'elderly and other': 270584, 'vulnerable people from': 961090, 'people from buying': 647983, 'from buying food': 334775, 'and other good': 68334, 'other good they': 620308, 'good they need': 357837, 'teresa': 838035, 'wickham': 991690, 'tunbridge': 935394, '42': 18897, 'retail analyst': 717808, 'analyst teresa': 57180, 'teresa wickham': 838038, 'wickham of': 991691, 'of tunbridge': 592502, 'tunbridge well': 935395, 'well discussing': 978162, 'discussing supermarket': 245001, 'supermarket choice': 819693, 'choice on': 177798, 'on bbc': 599593, 'news march': 560597, 'march 21': 515170, '21 at': 14970, 'at 14': 97467, '14 42': 3400, '42 you': 18917, 'need 27': 554344, '27 olive': 16297, 'oil you': 597531, 'you probably': 1020436, 'probably need': 679327, 'need three': 555839, 'four to': 330687, 'choose from': 177887, 'from quite': 337027, 'retail analyst teresa': 717809, 'analyst teresa wickham': 57181, 'teresa wickham of': 838039, 'wickham of tunbridge': 991692, 'of tunbridge well': 592503, 'tunbridge well discussing': 935396, 'well discussing supermarket': 978163, 'discussing supermarket choice': 245002, 'supermarket choice on': 819694, 'choice on bbc': 177799, 'on bbc news': 599595, 'bbc news march': 113092, 'news march 21': 560598, 'march 21 at': 515173, '21 at 14': 14971, 'at 14 42': 97468, '14 42 you': 3401, '42 you do': 18918, 'not need 27': 570650, 'need 27 olive': 554345, '27 olive oil': 16298, 'olive oil you': 598742, 'oil you know': 597532, 'you know you': 1019547, 'know you probably': 477087, 'you probably need': 1020442, 'probably need three': 679328, 'need three or': 555840, 'or four to': 615387, 'four to choose': 330688, 'to choose from': 902744, 'choose from quite': 177888, 'read about': 700249, 'security during': 744585, 'an interesting read': 56409, 'interesting read about': 441601, 'read about food': 700251, 'about food waste': 25266, 'food waste and': 317469, 'waste and food': 968071, 'and food security': 63089, 'food security during': 316344, 'security during covid': 744586, 'regime': 707338, 'delivery firm': 233998, 'firm seems': 308417, 'better treatment': 128582, 'treatment regime': 931132, 'regime that': 707368, 'government yes': 360834, 'yes there': 1015561, 'are question': 89379, 'where these': 985268, 'these test': 880800, 'test have': 839012, 'from but': 334763, 'where supermarket delivery': 985194, 'supermarket delivery firm': 819921, 'delivery firm seems': 233999, 'firm seems to': 308418, 'to have better': 907210, 'have better treatment': 379781, 'better treatment regime': 128583, 'treatment regime that': 931133, 'regime that the': 707369, 'the government yes': 856633, 'government yes there': 360835, 'yes there are': 1015562, 'there are question': 878151, 'are question to': 89381, 'question to where': 693781, 'to where these': 918543, 'where these test': 985269, 'these test have': 880802, 'test have come': 839013, 'have come from': 380029, 'come from but': 187301, 'from but still': 334767, 'unthinkable': 943624, 'the unthinkable': 870473, 'unthinkable switch': 943627, 'switch off': 830500, 'market freeze': 516427, 'freeze all': 332509, 'all bank': 42113, 'every individual': 285952, 'individual person': 435236, 'person until': 652675, 'over keep': 630349, 'the electricity': 854177, 'electricity gas': 271176, 'supply maintained': 825525, 'maintained food': 509085, 'ration supplied': 697728, 'supplied and': 824444, 'and controlled': 60519, 'government what': 360795, 'what if we': 981642, 'do the unthinkable': 250270, 'the unthinkable switch': 870474, 'unthinkable switch off': 943628, 'switch off the': 830501, 'off the stock': 594271, 'stock market freeze': 802400, 'market freeze all': 516428, 'freeze all bank': 332510, 'all bank account': 42114, 'bank account for': 109550, 'account for every': 28665, 'for every individual': 321169, 'every individual person': 285953, 'individual person until': 435237, 'person until this': 652676, 'until this pandemic': 943903, 'this pandemic is': 889396, 'is over keep': 450706, 'over keep the': 630350, 'keep the electricity': 472042, 'the electricity gas': 854179, 'electricity gas water': 271177, 'gas water supply': 344177, 'water supply maintained': 969187, 'supply maintained food': 825526, 'maintained food ration': 509086, 'food ration supplied': 316122, 'ration supplied and': 697729, 'supplied and controlled': 824445, 'and controlled by': 60520, 'the government what': 856626, 'government what if': 360797, 'ducking': 261558, 'is pointing': 450917, 'pointing because': 662748, 'gather next': 344388, 'each just': 264111, 'just get': 468799, 'the ducking': 853766, 'ducking grocery': 261559, 'store pointless': 809604, 'socialdistancing is pointing': 780471, 'is pointing because': 450918, 'pointing because people': 662749, 'because people still': 119479, 'people still have': 649595, 'have to gather': 383217, 'to gather next': 906378, 'gather next to': 344389, 'next to each': 561617, 'to each just': 904825, 'each just get': 264112, 'just get inside': 468801, 'inside the ducking': 439411, 'the ducking grocery': 853767, 'ducking grocery store': 261560, 'grocery store pointless': 365666, 'bide': 129528, 'symptons': 830969, 'confusing': 194362, 'first saturday': 308988, 'saturday of': 737051, 'can actually': 157361, 'actually leave': 30870, 'leave house': 484827, 'house on': 406429, 'monday on': 536354, 'food hunt': 314874, 'hunt household': 411364, 'to bide': 901809, 'bide their': 129529, 'their time': 874985, 'time extra': 896643, 'extra day': 293494, 'day or': 228167, 'more if': 539474, 'their symptons': 874935, 'symptons start': 830972, 'start late': 794361, 'late just': 480886, 'just read': 469559, 'on gov': 601156, 'gov website': 359734, 'website it': 975325, 'it dark': 457465, 'dark confusing': 225959, 'confusing time': 194369, 'but feeling': 145709, 'feeling better': 302969, 'better here': 128319, 'here stay': 393594, 'safe coronacrisis': 729566, 'first saturday of': 308989, 'saturday of isolation': 737052, 'of isolation can': 585335, 'isolation can actually': 455229, 'can actually leave': 157365, 'actually leave house': 30871, 'leave house on': 484830, 'house on monday': 406431, 'on monday on': 602179, 'monday on supermarket': 536356, 'on supermarket food': 603788, 'supermarket food hunt': 820359, 'food hunt household': 314875, 'hunt household have': 411365, 'household have to': 406832, 'have to bide': 383165, 'to bide their': 901810, 'bide their time': 129530, 'their time extra': 874988, 'time extra day': 896644, 'extra day or': 293495, 'day or more': 228173, 'or more if': 616174, 'more if their': 539477, 'if their symptons': 415059, 'their symptons start': 874936, 'symptons start late': 830973, 'start late just': 794362, 'late just read': 480887, 'just read on': 469562, 'read on gov': 700480, 'on gov website': 601157, 'gov website it': 359736, 'website it dark': 975326, 'it dark confusing': 457467, 'dark confusing time': 225960, 'confusing time but': 194370, 'time but feeling': 896418, 'but feeling better': 145710, 'feeling better here': 302970, 'better here stay': 128321, 'here stay safe': 393595, 'stay safe coronacrisis': 797222, 'been into': 121405, 'lyon in': 507146, 'lockdown shopper': 499908, 'are 1m': 84112, '1m apart': 12648, 'apart it': 81295, 'calm no': 156771, 'food seems': 316382, 'different picture': 242027, 'picture in': 656141, 'uk who': 938889, 'who haven': 988972, 'haven got': 383810, 'the restriction': 865669, 've just been': 953294, 'just been into': 468304, 'been into my': 121406, 'in lyon in': 424969, 'lyon in lockdown': 507147, 'in lockdown shopper': 424851, 'lockdown shopper are': 499909, 'shopper are 1m': 761381, 'are 1m apart': 84113, '1m apart it': 12649, 'apart it calm': 81296, 'it calm no': 456999, 'calm no queue': 156774, 'of food seems': 583772, 'food seems to': 316383, 'be different picture': 114451, 'different picture in': 242028, 'picture in the': 656142, 'the uk who': 870302, 'uk who haven': 938891, 'who haven got': 988975, 'haven got the': 383812, 'got the restriction': 358913, 'proctorgamble': 680088, 'albany': 40746, 'the proctorgamble': 864559, 'proctorgamble factory': 680089, 'factory in': 295956, 'in albany': 420141, 'albany georgia': 40749, 'georgia city': 346029, 'city hit': 179186, 'is aiming': 445429, 'produce one': 680379, 'most sought': 542761, 'after product': 36079, 'america toilet': 51715, 'the proctorgamble factory': 864560, 'proctorgamble factory in': 680090, 'factory in albany': 295957, 'in albany georgia': 420143, 'albany georgia city': 40750, 'georgia city hit': 346030, 'city hit hard': 179187, 'by the is': 154360, 'the is aiming': 858474, 'is aiming to': 445430, 'aiming to produce': 39585, 'to produce one': 912202, 'produce one of': 680380, 'the most sought': 861038, 'most sought after': 542762, 'sought after product': 786208, 'after product in': 36080, 'product in america': 681277, 'in america toilet': 420240, 'america toilet paper': 51716, 'feedingus': 302518, 'bakingstrong': 108941, 'for very': 327543, 'very inspirational': 955268, 'inspirational message': 439814, 'message thanking': 529430, 'thanking our': 841986, 'chain hero': 170779, 'hero these': 394122, 'these dedicated': 879910, 'dedicated men': 231720, 'woman continue': 1003447, 'grow produce': 367059, 'produce distribute': 680240, 'distribute stock': 248008, '19 feedingus': 6967, 'feedingus bakingstrong': 302519, 'bakingstrong inthistogether': 108942, 'you for very': 1018682, 'for very inspirational': 327545, 'very inspirational message': 955269, 'inspirational message thanking': 439815, 'message thanking our': 529431, 'thanking our food': 841989, 'supply chain hero': 824970, 'chain hero these': 170780, 'hero these dedicated': 394124, 'these dedicated men': 879911, 'dedicated men and': 231721, 'and woman continue': 75802, 'woman continue to': 1003448, 'continue to grow': 201204, 'to grow produce': 907038, 'grow produce distribute': 367060, 'produce distribute stock': 680241, 'distribute stock our': 248009, 'stock our food': 802598, 'our food during': 623108, 'covid 19 feedingus': 213083, '19 feedingus bakingstrong': 6968, 'feedingus bakingstrong inthistogether': 302520, 'outflow': 628969, 'unmanageable': 942821, 'emerging market': 273129, 'will face': 993388, 'face multiple': 294629, 'multiple challenge': 545730, 'challenge result': 171542, 'crisis say': 218000, 'say capital': 738489, 'capital outflow': 162670, 'outflow foreign': 628972, 'foreign currency': 328970, 'currency debt': 221022, 'debt higher': 230496, 'higher interest': 395617, 'rate increase': 697270, 'increase on': 432950, 'on government': 601158, 'government bond': 359935, 'bond decline': 134237, 'and tourism': 74315, 'tourism debt': 926978, 'debt can': 230430, 'can become': 157730, 'become unmanageable': 120178, 'emerging market will': 273134, 'market will face': 517357, 'will face multiple': 993392, 'face multiple challenge': 294630, 'multiple challenge result': 545732, 'challenge result of': 171543, 'the crisis say': 852443, 'crisis say capital': 218001, 'say capital outflow': 738490, 'capital outflow foreign': 162672, 'outflow foreign currency': 628973, 'foreign currency debt': 328971, 'currency debt higher': 221023, 'debt higher interest': 230497, 'higher interest rate': 395618, 'interest rate increase': 441394, 'rate increase on': 697271, 'increase on government': 432951, 'on government bond': 601159, 'government bond decline': 359936, 'bond decline in': 134238, 'price and tourism': 672568, 'and tourism debt': 74320, 'tourism debt can': 926979, 'debt can become': 230431, 'can become unmanageable': 157734, 'mindset': 532841, '19 hero': 7519, 'hero the': 394114, 'people positive': 649153, 'positive mindset': 665369, 'covid 19 hero': 213203, '19 hero the': 7523, 'hero the pub': 394117, 'help people positive': 390304, 'people positive mindset': 649154, 'digitaltransformation': 242814, 'pwc': 691368, 'designthinking': 238397, 'dataanalytics': 226505, 'rpa': 726656, 'infographics': 437649, 'win with': 995599, 'with digitaltransformation': 998034, 'digitaltransformation in': 242816, 'in changing': 421326, 'changing time': 172829, 'time pwc': 897535, 'pwc via': 691371, 'via ai': 955786, 'ai designthinking': 39311, 'designthinking cx': 238398, 'cx iot': 223914, 'iot dataanalytics': 444473, 'dataanalytics rpa': 226508, 'rpa infographics': 726657, 'way to win': 970119, 'to win with': 918618, 'win with digitaltransformation': 995601, 'with digitaltransformation in': 998035, 'digitaltransformation in changing': 242817, 'in changing time': 421327, 'changing time pwc': 172832, 'time pwc via': 897536, 'pwc via ai': 691372, 'via ai designthinking': 955787, 'ai designthinking cx': 39312, 'designthinking cx iot': 238399, 'cx iot dataanalytics': 223915, 'iot dataanalytics rpa': 444474, 'dataanalytics rpa infographics': 226509, 'and stockpiling': 72448, 'stockpiling do': 803941, 'not do': 569055, 'need india': 555053, 'this rumor': 889932, 'rumor of': 727492, 'of impending': 584995, 'impending shortage': 418329, 'shortage is': 765033, 'being spread': 125844, 'by trader': 154583, 'trader to': 928778, 'to earn': 904833, 'earn more': 264802, 'more money': 539786, 'buying and stockpiling': 149933, 'and stockpiling do': 72451, 'stockpiling do not': 803942, 'do not do': 249718, 'not do it': 569062, 'do it no': 249494, 'it no need': 459831, 'no need india': 564850, 'need india ha': 555054, 'india ha enough': 434441, 'ha enough food': 370495, 'enough food stock': 277412, 'food stock this': 316812, 'stock this rumor': 802975, 'this rumor of': 889933, 'rumor of impending': 727494, 'of impending shortage': 584996, 'impending shortage is': 418330, 'shortage is being': 765036, 'is being spread': 446115, 'being spread by': 125848, 'spread by trader': 790464, 'by trader to': 154587, 'trader to earn': 928781, 'to earn more': 904838, 'earn more money': 264804, 'england': 276994, 'england uk': 277037, 'seen social': 747241, 'but work': 147922, 'england uk we': 277039, 'uk we have': 938869, 'have seen social': 382442, 'seen social distancing': 747242, 'distancing measure to': 247327, 'measure to try': 525411, 'to try and': 917812, 'try and reduce': 934450, 'and reduce the': 70099, 'of coronavirus but': 581918, 'coronavirus but work': 205589, 'but work in': 147926, 'supermarket and have': 818995, 'and have seen': 64273, 'consumer provider': 198586, 'provider relationship': 686771, 'relationship is': 708698, 'is emerging': 447470, 'emerging it': 273125, 'just telehealth': 469962, 'telehealth mapping': 836746, 'mapping the': 514963, 'the patient': 863396, 'patient journey': 644197, 'journey athome': 467468, 'athome and': 101790, 'using that': 950683, 'that data': 843441, 'drive interaction': 259078, 'interaction with': 441270, 'normal stayhome': 567335, 'new reality for': 559398, 'reality for the': 701736, 'the consumer provider': 851579, 'consumer provider relationship': 198587, 'provider relationship is': 686772, 'relationship is emerging': 708699, 'is emerging it': 447471, 'emerging it not': 273126, 'not just telehealth': 570254, 'just telehealth mapping': 469963, 'telehealth mapping the': 836747, 'mapping the patient': 514964, 'the patient journey': 863398, 'patient journey athome': 644198, 'journey athome and': 467469, 'athome and using': 101791, 'and using that': 74803, 'using that data': 950684, 'that data to': 843442, 'data to drive': 226456, 'to drive interaction': 904738, 'drive interaction with': 259079, 'interaction with the': 441272, 'with the healthcare': 1001329, 'healthcare system will': 387318, 'system will be': 831377, 'be the new': 117639, 'new normal stayhome': 559172, 'conflict': 194261, 'aim of': 39538, 'of deal': 582404, 'deal is': 229430, 'russia conflict': 728450, 'aim of deal': 39539, 'of deal is': 582409, 'deal is to': 229432, 'is to boost': 453184, 'plummeting price amid': 661388, 'price amid covid': 672310, 'crisis and saudi': 217049, 'and saudi russia': 70938, 'saudi russia conflict': 737297, 'rue': 727077, 're concerned': 698447, 'about be': 24854, 'to contact': 903350, 'in johannesburg': 424399, 'johannesburg you': 466506, '54 rue': 20332, 'rue sauer': 727078, 'sauer johannesburg': 737379, 'you re concerned': 1020592, 're concerned about': 698448, 'concerned about be': 193149, 'about be sure': 24855, 'sure to contact': 827760, 'to contact medical': 903355, 'are in johannesburg': 87405, 'in johannesburg you': 424400, 'johannesburg you can': 466507, 'floor 54 rue': 310766, '54 rue sauer': 20333, 'rue sauer johannesburg': 727079, 'delay full': 232698, 'full year': 340986, 'year result': 1014930, 'result it': 717559, 'it shuts': 461044, 'shuts shop': 768192, 'uk europe': 938333, 'delay full year': 232699, 'full year result': 340992, 'year result it': 1014931, 'result it shuts': 717562, 'it shuts shop': 461045, 'shuts shop in': 768193, 'shop in uk': 760330, 'in uk europe': 430385, 'uk europe and': 938334, 'janev3': 464519, 'bust': 144819, 'janev3 perhaps': 464520, 'perhaps think': 651652, 'world may': 1009790, 'be altered': 113576, 'altered in': 49164, 'way also': 969446, 'also by': 47990, 'may want': 521600, 'want or': 965880, 'home people': 401829, 'find lot': 307038, 'gone bust': 356233, 'bust so': 144827, 'so more': 777750, 'shopping travel': 764242, 'travel may': 930424, 'harder all': 378155, 'janev3 perhaps think': 464521, 'perhaps think the': 651653, 'think the world': 885661, 'the world may': 871911, 'world may be': 1009792, 'may be altered': 520945, 'be altered in': 113577, 'altered in other': 49165, 'in other way': 426252, 'other way also': 621185, 'way also by': 969447, 'also by covid': 47991, 'covid 19 more': 213446, '19 more people': 8681, 'people may want': 648761, 'may want or': 521601, 'want or be': 965881, 'or be forced': 614508, 'work at home': 1004875, 'at home people': 99077, 'home people may': 401834, 'people may find': 648756, 'may find lot': 521190, 'find lot of': 307040, 'lot of business': 504148, 'of business have': 580955, 'business have gone': 143827, 'have gone bust': 380790, 'gone bust so': 356234, 'bust so more': 144828, 'so more online': 777751, 'online shopping travel': 609317, 'shopping travel may': 764243, 'travel may be': 930425, 'may be harder': 520987, 'be harder all': 115148, 'harder all this': 378156, 'all this may': 45117, 'amb': 51270, 'amb india': 51273, 'india thanks': 434635, 'the made': 859863, 'china now': 176852, 'now stop': 575913, 'stop all': 804436, 'all wet': 45437, 'wet market': 980739, 'stop spending': 805047, 'spending trillion': 789031, 'trillion per': 931996, 'per year': 651084, 'on defense': 600252, 'defense and': 232131, 'and instead': 65284, 'instead export': 440176, 'export good': 292643, 'at reduced': 100274, 'price else': 673672, 'else whole': 271989, 'ban made': 109216, 'china item': 176775, 'item permanently': 463563, 'amb india thanks': 51274, 'india thanks for': 434636, 'for the made': 326544, 'the made in': 859864, 'made in china': 507787, 'in china now': 421420, 'china now stop': 176854, 'now stop all': 575914, 'stop all wet': 804443, 'all wet market': 45438, 'wet market and': 980740, 'market and stop': 515993, 'and stop spending': 72486, 'stop spending trillion': 805049, 'spending trillion per': 789032, 'trillion per year': 931997, 'per year on': 651087, 'year on defense': 1014883, 'on defense and': 600253, 'defense and instead': 232132, 'and instead export': 65286, 'instead export good': 440177, 'export good at': 292644, 'good at reduced': 356796, 'at reduced price': 100275, 'reduced price else': 706148, 'price else whole': 673673, 'else whole world': 271990, 'whole world will': 990389, 'world will ban': 1010185, 'will ban made': 992330, 'ban made in': 109217, 'in china item': 421411, 'china item permanently': 176776, 'recession will': 704405, 'will occur': 994304, 'occur in': 579018, 'to main': 909554, 'recovery of': 705363, 'the credit': 852312, 'economy second': 268199, 'second unknown': 743858, 'unknown shock': 942539, 'brings down': 140238, 'down wall': 257436, 'street spx': 813118, 'perhaps the coming': 651640, 'coming recession will': 188177, 'recession will occur': 704408, 'will occur in': 994305, 'occur in three': 579020, 'phase damage to': 654602, 'damage to main': 225238, 'to main street': 909555, 'main street from': 508828, 'street from covid': 812974, 'temp recovery of': 837333, 'recovery of the': 705368, 'of the credit': 590910, 'the credit market': 852316, 'credit market but': 216430, 'market but no': 516127, 'no recovery of': 565310, 'consumer economy second': 197315, 'economy second unknown': 268200, 'second unknown shock': 743859, 'unknown shock later': 942540, 'finally brings down': 305954, 'brings down wall': 140240, 'down wall street': 257437, 'wall street spx': 965190, 'street spx rut': 813119, 're worried': 699842, 'about paying': 25925, 'paying your': 645528, 'bill if': 130594, 'you owe': 1020266, 'owe payment': 631822, 'payment to': 645760, 'to bank': 901029, 'financial firm': 306414, 'you complaining': 1018002, 'complaining to': 191911, 'bureau may': 142793, 'may help': 521267, 'the complaint': 851384, 'complaint database': 191961, 'database work': 226525, 'you re worried': 1020800, 're worried about': 699843, 'worried about paying': 1010512, 'about paying your': 25928, 'paying your bill': 645529, 'your bill if': 1022968, 'bill if you': 130595, 'if you owe': 415490, 'you owe payment': 1020267, 'owe payment to': 631823, 'payment to bank': 645761, 'to bank or': 901034, 'bank or financial': 110075, 'or financial firm': 615310, 'financial firm and': 306415, 'firm and they': 308311, 'and they do': 73902, 'do not work': 249893, 'not work with': 572541, 'work with you': 1006050, 'with you complaining': 1002145, 'you complaining to': 1018003, 'complaining to the': 191912, 'the consumer financial': 851535, 'protection bureau may': 685365, 'bureau may help': 142794, 'may help the': 521271, 'help the complaint': 390643, 'the complaint database': 851385, 'complaint database work': 191962, 'hemp': 391697, 'adapts': 31361, 'cannabisnews': 161473, 'cannabisindustry': 161469, 'from hemp': 335763, 'hemp to': 391715, 'sanitizer alabama': 734337, 'alabama veteran': 40624, 'veteran business': 955713, 'business adapts': 143231, 'adapts to': 31362, 'meet coronavirus': 527443, 'coronavirus demand': 205803, 'demand cannabisnews': 235105, 'cannabisnews hemp': 161474, 'hemp cannabisindustry': 391700, 'from hemp to': 335765, 'hemp to hand': 391716, 'hand sanitizer alabama': 375294, 'sanitizer alabama veteran': 734338, 'alabama veteran business': 40625, 'veteran business adapts': 955714, 'business adapts to': 143232, 'adapts to meet': 31365, 'to meet coronavirus': 910018, 'meet coronavirus demand': 527444, 'coronavirus demand cannabisnews': 205804, 'demand cannabisnews hemp': 235106, 'cannabisnews hemp cannabisindustry': 161475, 'invasionofthebodysnatchers': 443600, 'or gas': 615420, 'station when': 796549, 'when somebody': 984050, 'somebody sneeze': 784280, 'sneeze or': 776262, 'or cough': 614840, 'cough invasionofthebodysnatchers': 208492, 'store or gas': 809334, 'or gas station': 615421, 'gas station when': 344132, 'station when somebody': 796550, 'when somebody sneeze': 984051, 'somebody sneeze or': 784281, 'sneeze or cough': 776263, 'or cough invasionofthebodysnatchers': 614843, 'pantrystaples': 639724, 'practicing social': 668740, 'distancing amid': 246954, 'outbreak stock': 628657, 'these pantry': 880396, 'pantry freezer': 639592, 'freezer staple': 332633, 'staple stay': 793989, 'time my': 897241, 'friend pantrystaples': 333751, 'pantrystaples quarantineandchill': 639725, 'practicing social distancing': 668742, 'social distancing amid': 779550, 'distancing amid the': 246955, '19 outbreak stock': 9192, 'outbreak stock up': 628658, 'up on these': 945630, 'on these pantry': 604572, 'these pantry freezer': 880397, 'pantry freezer staple': 639593, 'freezer staple stay': 332634, 'staple stay healthy': 793990, 'stay healthy during': 796901, 'healthy during these': 387585, 'trying time my': 934751, 'time my friend': 897246, 'my friend pantrystaples': 548445, 'friend pantrystaples quarantineandchill': 333752, 'casual': 166790, 'bankrupt': 110484, 'http': 409750, 'anyone except': 80309, 'except money': 289202, 'money people': 536966, 'there get': 878429, 'sick they': 768629, 'even care': 283939, 'about casual': 24934, 'casual customer': 166793, 'customer like': 222572, 'me my': 523184, 'my entire': 548098, 'entire home': 278686, 'home gym': 401317, 'gym come': 369311, 'store from': 807876, 'from going': 335654, 'going bankrupt': 355053, 'bankrupt http': 110494, 'doesn care about': 251722, 'care about anyone': 163781, 'about anyone except': 24822, 'anyone except money': 80310, 'except money people': 289203, 'money people who': 536969, 'people who work': 650361, 'who work there': 990043, 'work there get': 1005830, 'there get sick': 878430, 'get sick they': 348004, 'sick they do': 768631, 'not even care': 569238, 'even care about': 283940, 'care about casual': 163782, 'about casual customer': 24935, 'casual customer like': 166794, 'customer like me': 222575, 'like me my': 490750, 'me my entire': 523189, 'my entire home': 548100, 'entire home gym': 278687, 'home gym come': 401319, 'gym come from': 369312, 'come from them': 187315, 'from them all': 337955, 'them all this': 875351, 'all this to': 45141, 'this to prevent': 890743, 'prevent the store': 671736, 'the store from': 868024, 'store from going': 807881, 'from going bankrupt': 335656, 'going bankrupt http': 355056, 'viruschino': 959087, 'before going': 122825, 'store coronapocalypse': 807183, 'coronapocalypse pandemic': 205194, 'pandemic viruschino': 636904, 'viruschino panicbuying': 959088, 'panicbuying panicbuy': 639008, 'what to know': 982459, 'know before going': 476295, 'before going to': 122829, 'grocery store coronapocalypse': 365303, 'store coronapocalypse pandemic': 807184, 'coronapocalypse pandemic viruschino': 205195, 'pandemic viruschino panicbuying': 636905, 'viruschino panicbuying panicbuy': 959089, 'world just': 1009733, 'just friendly': 468777, 'friendly reminder': 333990, 'reminder when': 710612, 'or picking': 616606, 'those curbside': 891906, 'curbside treat': 220683, 'treat be': 930805, 'kind these': 474991, 'own safety': 632176, 'safety to': 730772, 'have what': 383576, 'need smile': 555575, 'smile say': 775734, 'asshole socialdistanacing': 96559, 'hey world just': 394555, 'world just friendly': 1009735, 'just friendly reminder': 468778, 'friendly reminder when': 333994, 'reminder when you': 710614, 'store or picking': 809361, 'or picking up': 616607, 'picking up those': 655891, 'up those curbside': 946291, 'those curbside treat': 891907, 'curbside treat be': 220684, 'treat be kind': 930806, 'be kind these': 115630, 'kind these people': 474992, 'people are risking': 647061, 'risking their own': 724097, 'their own safety': 874198, 'own safety to': 632182, 'safety to make': 730775, 'sure you have': 827860, 'you have what': 1019140, 'have what you': 383581, 'you need smile': 1020036, 'need smile say': 555576, 'smile say thank': 775735, 'thank you don': 841718, 'you don be': 1018306, 'an asshole socialdistanacing': 55446, 'on 26': 599081, '26 hosted': 16167, 'hosted their': 404925, 'their 1st': 872420, '1st live': 12760, 'wa learned': 962516, 'on 26 hosted': 599082, '26 hosted their': 16169, 'hosted their 1st': 404926, 'their 1st live': 872422, '1st live consumer': 12761, 'of what wa': 593066, 'what wa learned': 982515, 'wa learned mrx': 962517, 'ism': 454404, 'adp': 32756, 'payroll': 645819, '27k': 16356, '150k': 3959, 'july': 467803, 'post data': 666089, 'data ism': 226292, 'ism manufacturing': 454405, 'manufacturing stronger': 513668, 'stronger than': 814184, 'than anticipated': 840343, 'anticipated 49': 78452, '49 est': 19385, 'est of': 281999, 'of 45': 579590, '45 adp': 19063, 'adp private': 32757, 'private payroll': 678960, 'payroll 27k': 645820, '27k est': 16357, 'of 150k': 579366, '150k conference': 3962, 'conference board': 193721, 'board consumer': 133623, 'index for': 434195, 'march beat': 515290, 'beat expectation': 118521, 'expectation though': 290862, 'though it': 892835, 'it posted': 460398, 'lowest reading': 506219, 'reading since': 700799, 'since july': 770686, 'july 2017': 467804, '2017 ca': 13850, 'post data ism': 666090, 'data ism manufacturing': 226293, 'ism manufacturing stronger': 454406, 'manufacturing stronger than': 513669, 'stronger than anticipated': 814185, 'than anticipated 49': 840344, 'anticipated 49 est': 78453, '49 est of': 19386, 'est of 45': 282001, 'of 45 adp': 579591, '45 adp private': 19064, 'adp private payroll': 32758, 'private payroll 27k': 678961, 'payroll 27k est': 645821, '27k est of': 16358, 'est of 150k': 282000, 'of 150k conference': 579367, '150k conference board': 3963, 'conference board consumer': 193722, 'board consumer confidence': 133624, 'confidence index for': 193905, 'index for march': 434197, 'for march beat': 323246, 'march beat expectation': 515291, 'beat expectation though': 118522, 'expectation though it': 290863, 'though it posted': 892843, 'it posted the': 460399, 'posted the lowest': 666578, 'the lowest reading': 859820, 'lowest reading since': 506220, 'reading since july': 700801, 'since july 2017': 770687, 'july 2017 ca': 467805, 'exploration': 292471, 'hedged': 388723, 'tullowoil': 935283, 'oilindustry': 597584, 'the independent': 858104, 'independent oil': 434122, 'gas exploration': 343839, 'exploration and': 292472, 'and production': 69577, 'production company': 681967, 'company have': 190729, 'have due': 380392, 'current business': 221109, 'business climate': 143530, 'climate in': 182227, 'oil industry': 596881, 'industry hedged': 435879, 'hedged it': 388726, 'it investment': 458837, 'investment tullowoil': 444080, 'tullowoil oilandgas': 935284, 'oilandgas oilprice': 597551, 'oilprice oilindustry': 597626, 'oilindustry ghana': 597585, 'ghana africa': 349551, 'the independent oil': 858106, 'independent oil and': 434123, 'and gas exploration': 63475, 'gas exploration and': 343840, 'exploration and production': 292473, 'and production company': 69579, 'production company have': 681969, 'company have due': 190733, 'have due to': 380393, 'the current business': 852613, 'current business climate': 221110, 'business climate in': 143532, 'climate in the': 182228, 'in the oil': 429414, 'the oil industry': 862109, 'oil industry hedged': 596886, 'industry hedged it': 435880, 'hedged it investment': 388727, 'it investment tullowoil': 458839, 'investment tullowoil oilandgas': 444081, 'tullowoil oilandgas oilprice': 935285, 'oilandgas oilprice oilindustry': 597552, 'oilprice oilindustry ghana': 597627, 'oilindustry ghana africa': 597586, 'focusing': 311984, 'statistic': 796572, 'enthusiastic': 278629, 'it almost': 456399, 'almost certain': 46568, 'is focusing': 447851, 'focusing more': 311987, 'the energy': 854316, 'market these': 517207, 'day than': 228458, 'than on': 840969, 'the statistic': 867836, 'statistic in': 796581, 'york look': 1016635, 'look how': 502406, 'how enthusiastic': 407804, 'enthusiastic and': 278630, 'and involved': 65371, 'involved he': 444346, 'he answer': 384749, 'answer all': 78005, 'all question': 44107, 'topic oil': 925809, 'price versus': 677299, 'versus the': 954957, 'it almost certain': 456401, 'almost certain that': 46569, 'certain that trump': 170110, 'that trump is': 847137, 'trump is focusing': 933644, 'is focusing more': 447852, 'focusing more on': 311988, 'more on the': 539931, 'on the energy': 604092, 'the energy market': 854323, 'energy market these': 276501, 'market these day': 517208, 'these day than': 879895, 'day than on': 228459, 'than on the': 840971, 'on the statistic': 604381, 'the statistic in': 867837, 'statistic in new': 796582, 'new york look': 559939, 'york look how': 1016636, 'look how enthusiastic': 502407, 'how enthusiastic and': 407805, 'enthusiastic and involved': 278631, 'and involved he': 65372, 'involved he answer': 444347, 'he answer all': 384750, 'answer all question': 78006, 'all question about': 44108, 'question about this': 693507, 'about this topic': 26667, 'this topic oil': 890816, 'topic oil price': 925810, 'oil price versus': 597308, 'price versus the': 677300, 'versus the pandemic': 954958, 'wal': 964675, 'these community': 879778, 'community many': 189973, 'have car': 379892, 'local public': 498315, 'transit being': 929628, 'being shut': 125786, 'to wal': 918293, 'wal mart': 964676, 'mart or': 518056, 'or dollar': 615042, 'dollar general': 252997, 'general or': 345427, 'few neighborhood': 303954, 'in these community': 429833, 'these community many': 879779, 'community many people': 189974, 'many people do': 514498, 'not have car': 569817, 'have car in': 379896, 'car in my': 163137, 'area with local': 92283, 'with local public': 999282, 'local public transit': 498317, 'public transit being': 688394, 'transit being shut': 929629, 'being shut down': 125788, '19 it difficult': 8129, 'difficult to get': 242337, 'get to wal': 348501, 'to wal mart': 918294, 'wal mart or': 964679, 'mart or dollar': 518057, 'or dollar general': 615043, 'dollar general or': 252999, 'general or some': 345428, 'or some other': 617150, 'some other grocery': 783479, 'or supermarket few': 617280, 'supermarket few neighborhood': 820303, 'soo it': 785583, 'hour wait': 406071, 'store don': 807358, 'energy for': 276460, 'this new': 889109, 'life houston': 488735, 'soo it like': 785584, 'it like an': 459348, 'like an hour': 489770, 'an hour wait': 56109, 'hour wait to': 406073, 'grocery store don': 365339, 'store don know': 807362, 'don know if': 253665, 'know if have': 476473, 'if have the': 414204, 'have the energy': 382980, 'the energy for': 854319, 'energy for this': 276462, 'for this new': 327051, 'this new life': 889119, 'new life houston': 559029, 'semi': 749603, 'dang': 225616, 'else noticed': 271813, 'go thru': 354258, 'crisis food': 217379, 'medical price': 526308, 'skyrocketing egg': 773424, 'egg are': 269779, 'are expensive': 86333, 'expensive body': 291229, 'body wash': 133911, 'wash is': 967509, 'ridiculous thought': 721627, 'in semi': 427795, 'semi depression': 749606, 'depression time': 237673, 'time dang': 896528, 'ha anyone else': 369582, 'anyone else noticed': 80278, 'else noticed that': 271816, 'noticed that we': 573486, 'we go thru': 971654, 'go thru this': 354260, 'thru this crisis': 895238, 'this crisis food': 887039, 'crisis food and': 217380, 'and medical price': 66879, 'medical price are': 526309, 'are skyrocketing egg': 90163, 'skyrocketing egg are': 773425, 'egg are expensive': 269780, 'are expensive body': 86335, 'expensive body wash': 291230, 'body wash is': 133912, 'wash is ridiculous': 967510, 'is ridiculous thought': 451527, 'ridiculous thought we': 721628, 'we were in': 973796, 'were in semi': 979779, 'in semi depression': 427796, 'semi depression time': 749607, 'depression time dang': 237674, 'collapsed': 186084, 'khamenei': 473695, 'country economy': 210600, 'ha collapsed': 370192, 'collapsed poverty': 186107, 'poverty high': 667496, 'price unemployment': 677187, 'unemployment and': 941153, 'and inflation': 65211, 'inflation have': 437188, 'left more': 485553, 'than 70': 840293, 'the population': 864019, 'population below': 664658, 'below the': 126739, 'the poverty': 864145, 'poverty line': 667505, 'line this': 493468, 'this while': 891363, 'while khamenei': 986994, 'khamenei ha': 473696, 'ha stolen': 372070, 'stolen more': 804296, 'than billion': 840408, 'billion to': 130923, 'to finance': 905863, 'finance proxy': 306257, 'proxy yet': 687344, 'yet only': 1016177, 'only spends': 611181, 'spends million': 789073, 'million on': 532297, '19 update the': 11688, 'update the country': 947247, 'the country economy': 852068, 'country economy ha': 210602, 'economy ha collapsed': 267918, 'ha collapsed poverty': 370194, 'collapsed poverty high': 186108, 'poverty high price': 667497, 'high price unemployment': 395287, 'price unemployment and': 677189, 'unemployment and inflation': 941159, 'and inflation have': 65212, 'inflation have left': 437189, 'have left more': 381295, 'left more than': 485555, 'more than 70': 540578, 'than 70 of': 840295, '70 of the': 21807, 'of the population': 591350, 'the population below': 864023, 'population below the': 664659, 'below the poverty': 126745, 'the poverty line': 864146, 'poverty line this': 667508, 'line this while': 493472, 'this while khamenei': 891364, 'while khamenei ha': 986995, 'khamenei ha stolen': 473697, 'ha stolen more': 372071, 'stolen more than': 804297, 'more than billion': 540599, 'than billion to': 840412, 'billion to finance': 130924, 'to finance proxy': 905865, 'finance proxy yet': 306258, 'proxy yet only': 687345, 'yet only spends': 1016178, 'only spends million': 611182, 'spends million on': 789074, 'million on people': 532300, 'evolves': 288527, 'to truly': 917796, 'truly significant': 933340, 'dramatic change': 258272, 'could pose': 209513, 'pose the': 665115, 'mortar retail': 541827, 'retail the': 718773, 'crisis evolves': 217360, 'retailer will have': 719431, 'have to respond': 383281, 'respond to truly': 715332, 'to truly significant': 917797, 'truly significant and': 933341, 'and dramatic change': 61715, 'dramatic change in': 258273, 'consumer could pose': 196994, 'could pose the': 209515, 'pose the biggest': 665116, 'and mortar retail': 67246, 'mortar retail the': 541829, 'retail the crisis': 718774, 'the crisis evolves': 852374, 'pilot': 656726, 'colab': 185720, 'don all': 253332, 'do test': 250207, 'test pilot': 839122, 'pilot colab': 656729, 'colab local': 185721, 'local instagram': 498123, 'instagram fashion': 439956, 'fashion influencers': 299820, 'influencers in': 437348, 'few city': 303748, 'city suggested': 179381, 'suggested influencers': 817573, 'influencers dallas': 437346, 'dallas denver': 225123, 'denver these': 237129, 'these woman': 880978, 'woman are': 1003406, 'bored seeing': 135375, 'seeing business': 746244, 'business drop': 143661, 'drop until': 260440, 'until there': 943884, 'there national': 878778, 'national testing': 552633, 'testing for': 839491, 'why don all': 990965, 'don all do': 253333, 'all do test': 42595, 'do test pilot': 250208, 'test pilot colab': 839123, 'pilot colab local': 656730, 'colab local instagram': 185722, 'local instagram fashion': 498124, 'instagram fashion influencers': 439957, 'fashion influencers in': 299821, 'influencers in few': 437349, 'in few city': 422860, 'few city suggested': 303749, 'city suggested influencers': 179382, 'suggested influencers dallas': 817574, 'influencers dallas denver': 437347, 'dallas denver these': 225124, 'denver these woman': 237130, 'these woman are': 880979, 'woman are bored': 1003407, 'are bored seeing': 85027, 'bored seeing business': 135376, 'seeing business drop': 746245, 'business drop until': 143662, 'drop until there': 260441, 'until there national': 943885, 'there national testing': 878779, 'national testing for': 552634, 'testing for online': 839498, 'transporter': 930061, 'proud proud': 686048, 'society running': 781300, 'crisis covid': 217268, 'healthcare staff': 387285, 'teacher and': 835425, 'employee to': 274321, 'to emergency': 905008, 'service transporter': 753008, 'transporter and': 930062, 'proud proud of': 686049, 'who keep our': 989152, 'keep our society': 471751, 'our society running': 624830, 'society running in': 781303, 'running in time': 727981, 'corona crisis covid': 203904, 'crisis covid 19': 217269, '19 from healthcare': 7124, 'from healthcare staff': 335752, 'healthcare staff teacher': 387290, 'staff teacher and': 792919, 'teacher and supermarket': 835429, 'supermarket employee to': 820144, 'employee to emergency': 274325, 'to emergency service': 905012, 'emergency service transporter': 272970, 'service transporter and': 753009, 'transporter and so': 930063, 'computer': 192726, 'cautionyespanicno': 168202, '19 hyderabad': 7636, 'hyderabad firm': 411921, 'firm log': 308385, 'log into': 500615, 'into wfh': 443286, 'wfh rent': 980856, 'of laptop': 585710, 'laptop computer': 479554, 'computer soar': 192765, 'soar via': 779282, 'via cautionyespanicno': 955853, 'covid 19 hyderabad': 213238, '19 hyderabad firm': 7637, 'hyderabad firm log': 411922, 'firm log into': 308386, 'log into wfh': 500617, 'into wfh rent': 443287, 'wfh rent price': 980857, 'rent price of': 711163, 'price of laptop': 675485, 'of laptop computer': 585711, 'laptop computer soar': 479555, 'computer soar via': 192766, 'soar via cautionyespanicno': 779283, 'figure an': 305186, 'oil crisis': 596718, 'crisis result': 217977, 'in 15': 419697, '15 year': 3870, 'and ain': 57804, 'ain nobody': 39637, 'nobody going': 566005, 'going nowhere': 355284, 'nowhere gasprices': 576559, 'gasprices quarantinelife': 344302, 'figure an oil': 305187, 'an oil crisis': 56574, 'oil crisis result': 596721, 'crisis result in': 217978, 'in the lowest': 429334, 'the lowest gas': 859809, 'price in 15': 674645, 'in 15 year': 419699, '15 year and': 3872, 'year and ain': 1014390, 'and ain nobody': 57806, 'ain nobody going': 39638, 'nobody going nowhere': 566006, 'going nowhere gasprices': 355286, 'nowhere gasprices quarantinelife': 576560, 'brookshire': 141004, 'eldorado': 270983, 'brookshires': 141008, 'seniordiscount': 750457, 'seniorhours': 750460, 'unioncounty': 941954, 'brookshire grocery': 141005, 'grocery co': 364389, 'co offer': 184904, 'offer daily': 594570, 'daily percent': 224743, 'percent senior': 651181, 'senior discount': 750279, 'discount strongly': 244541, 'strongly encourages': 814227, 'encourages community': 275687, 'first hour': 308710, 'opening for': 612830, 'senior guest': 750311, 'guest eldorado': 368152, 'eldorado brookshires': 270984, 'brookshires shopping': 141009, 'shopping seniordiscount': 763833, 'seniordiscount seniorhours': 750458, 'seniorhours unioncounty': 750461, 'brookshire grocery co': 141006, 'grocery co offer': 364391, 'co offer daily': 184905, 'offer daily percent': 594571, 'daily percent senior': 224744, 'percent senior discount': 651182, 'senior discount strongly': 750280, 'discount strongly encourages': 244542, 'strongly encourages community': 814228, 'encourages community to': 275688, 'community to respect': 190177, 'respect the first': 715063, 'the first hour': 855315, 'first hour of': 308715, 'hour of store': 405810, 'of store opening': 590260, 'store opening for': 809277, 'opening for senior': 612837, 'for senior guest': 325463, 'senior guest eldorado': 750312, 'guest eldorado brookshires': 368153, 'eldorado brookshires shopping': 270985, 'brookshires shopping seniordiscount': 141010, 'shopping seniordiscount seniorhours': 763834, 'seniordiscount seniorhours unioncounty': 750459, 'convoy': 202702, 'randos': 696662, 'word socialdistancing': 1004575, 'stupid distancing': 815380, 'distancing cool': 247085, 'cool understand': 203056, 'understand but': 940606, 'social part': 779910, 'part what': 642488, 'what monster': 981878, 'monster want': 537474, 'send convoy': 749833, 'convoy of': 202703, 'of randos': 588734, 'randos to': 696665, 'that damn': 843432, 'damn supermarket': 225432, 'the word socialdistancing': 871717, 'word socialdistancing is': 1004576, 'socialdistancing is beyond': 780461, 'is beyond stupid': 446164, 'beyond stupid distancing': 129236, 'stupid distancing cool': 815381, 'distancing cool understand': 247087, 'cool understand but': 203057, 'understand but the': 940607, 'but the social': 147406, 'the social part': 867416, 'social part what': 779911, 'part what monster': 642489, 'what monster want': 981879, 'monster want to': 537475, 'want to send': 966113, 'to send convoy': 914206, 'send convoy of': 749834, 'convoy of randos': 202704, 'of randos to': 588735, 'randos to that': 696666, 'to that damn': 916448, 'that damn supermarket': 843433, 'unchecked': 939804, 'entirely because': 278784, 'of govt': 584283, 'govt failure': 361116, 'immediately react': 417134, 'react test': 700142, 'and by': 59373, 'by community': 152157, 'community unable': 190188, 'accept or': 27983, 'or understand': 617593, 'understand severity': 940706, 'severity social': 754134, 'social consumer': 779470, 'behavior continues': 123985, 'continues unchecked': 201514, 'unchecked shameful': 939807, 'entirely because of': 278785, 'because of govt': 119346, 'of govt failure': 584285, 'govt failure to': 361117, 'failure to immediately': 296300, 'to immediately react': 908142, 'immediately react test': 417135, 'react test and': 700143, 'test and by': 838911, 'and by community': 59374, 'by community unable': 152160, 'community unable to': 190189, 'unable to accept': 939319, 'to accept or': 899944, 'accept or understand': 27984, 'or understand severity': 617594, 'understand severity social': 940707, 'severity social consumer': 754135, 'social consumer behavior': 779471, 'consumer behavior continues': 196460, 'behavior continues unchecked': 123986, 'continues unchecked shameful': 201515, 'humanityforward': 410786, 'mask is': 518862, 'message it': 529357, 'is thoughtful': 453138, 'you care': 1017892, 'the masks4allchallenge': 860234, 'masks4allchallenge ha': 519681, 'started post': 794811, 'post photo': 666279, 'of yourself': 593541, 'yourself wearing': 1026747, 'mask so': 519280, 'everyone know': 287148, 'choice and': 177726, 'and tag': 72952, 'tag friend': 831752, 'friend waiting': 333877, 'my math': 549216, 'math humanityforward': 520461, 'humanityforward mask': 410787, 'wearing mask is': 974696, 'mask is the': 518872, 'the message it': 860520, 'message it is': 529358, 'it is thoughtful': 459103, 'is thoughtful and': 453139, 'thoughtful and make': 893347, 'and make it': 66557, 'make it clear': 510026, 'clear that you': 181356, 'that you care': 847717, 'you care about': 1017893, 'health of others': 386687, 'of others the': 587406, 'others the masks4allchallenge': 621705, 'the masks4allchallenge ha': 860235, 'masks4allchallenge ha started': 519682, 'ha started post': 372046, 'started post photo': 794812, 'post photo of': 666281, 'photo of yourself': 655222, 'of yourself wearing': 593548, 'yourself wearing mask': 1026748, 'wearing mask so': 974712, 'mask so everyone': 519282, 'so everyone know': 776978, 'everyone know it': 287149, 'it the right': 461572, 'right choice and': 721841, 'choice and tag': 177733, 'and tag friend': 72953, 'tag friend waiting': 831755, 'friend waiting for': 333878, 'for my math': 323722, 'my math humanityforward': 549217, 'math humanityforward mask': 520462, 'silenced': 769701, 'orphanage': 619665, 'mainly': 508869, 'neighbouring': 557294, 'drc': 258552, 'silenced hello': 769702, 'hello brother': 389142, 'brother and': 141031, 'and sister': 71695, 'sister let': 771770, 'let connect': 486647, 'connect hand': 194605, 'those child': 891869, 'child stock': 176207, 'the orphanage': 862499, 'orphanage mainly': 619666, 'mainly because': 508870, 'crisis which': 218386, 'taking place': 833506, 'our neighbouring': 624018, 'neighbouring country': 557295, 'country kenya': 210843, 'kenya and': 472882, 'and drc': 61720, 'drc congo': 258553, 'congo please': 194422, 'silenced hello brother': 769703, 'hello brother and': 389143, 'brother and sister': 141032, 'and sister let': 71696, 'sister let connect': 771771, 'let connect hand': 486648, 'connect hand and': 194606, 'hand and support': 374781, 'and support those': 72856, 'support those child': 826932, 'those child stock': 891870, 'child stock food': 176208, 'at the orphanage': 101042, 'the orphanage mainly': 862500, 'orphanage mainly because': 619667, 'mainly because we': 508873, 'because we are': 119791, 'we are afraid': 970469, 'are afraid of': 84265, 'afraid of the': 35006, '19 crisis which': 6352, 'crisis which is': 218389, 'which is taking': 986058, 'is taking place': 452558, 'taking place on': 833512, 'place on our': 657618, 'on our neighbouring': 602616, 'our neighbouring country': 624019, 'neighbouring country kenya': 557296, 'country kenya and': 210844, 'kenya and drc': 472883, 'and drc congo': 61721, 'drc congo please': 258554, 'congo please help': 194423, 'unseen': 943463, 'surrounded': 828719, 'couldn stop': 209924, 'stop cry': 804601, 'cry for': 219864, 'this nurse': 889189, 'nurse for': 577335, 'the uber': 870175, 'uber driver': 937803, 'driver struggling': 259759, 'money for': 536744, 'the unseen': 870463, 'unseen janitor': 943467, 'janitor disinfecting': 464541, 'disinfecting surrounded': 245879, 'surrounded by': 828720, 'their role': 874598, 'role grocery': 725077, 'worker transit': 1008044, 'transit worker': 929655, 'worker postal': 1007613, 'worker immigrant': 1007157, 'immigrant no': 417231, 'no aid': 563595, 'aid must': 39420, 'must make': 546761, 'make better': 509731, 'couldn stop cry': 209925, 'stop cry for': 804602, 'cry for this': 219868, 'for this nurse': 327052, 'this nurse for': 889192, 'nurse for the': 577337, 'for the uber': 326747, 'the uber driver': 870176, 'uber driver struggling': 937806, 'driver struggling to': 259760, 'struggling to make': 814509, 'make money for': 510181, 'money for the': 536759, 'for the unseen': 326754, 'the unseen janitor': 870464, 'unseen janitor disinfecting': 943468, 'janitor disinfecting surrounded': 464542, 'disinfecting surrounded by': 245880, 'surrounded by the': 828724, 'by the weight': 154479, 'weight of their': 977710, 'of their role': 591697, 'their role grocery': 874599, 'role grocery store': 725078, 'store worker transit': 811608, 'worker transit worker': 1008046, 'transit worker postal': 929660, 'worker postal worker': 1007615, 'postal worker immigrant': 666475, 'worker immigrant no': 1007158, 'immigrant no aid': 417232, 'no aid must': 563596, 'aid must make': 39422, 'must make better': 546762, 'ukjay': 938982, 'ukjay breakingnews': 938983, 'breakingnews scientist': 139104, 'now discovered': 574532, 'is carried': 446391, 'carried in': 164934, 'supermarket toilet': 823482, 'paper supply': 640851, 'ukjay breakingnews scientist': 938984, 'breakingnews scientist have': 139105, 'scientist have now': 742232, 'have now discovered': 381731, 'now discovered that': 574533, 'discovered that the': 244700, 'virus is carried': 958367, 'is carried in': 446392, 'carried in supermarket': 164935, 'in supermarket toilet': 428695, 'supermarket toilet paper': 823483, 'toilet paper supply': 921477, 'pb': 645848, '1kg': 12629, 'porridge': 664849, '500g': 20081, 'my pb': 549731, 'pb in': 645853, 'in running': 427570, 'running do': 727946, 'it say': 460885, 'about me': 25711, 'that did': 843519, 'with london': 999301, 'london on': 501144, 'collapse although': 185957, 'ha helped': 370851, 'helped me': 391081, 'me forget': 522773, 'forget for': 329253, 'moment that': 536057, 'today paid': 920011, 'paid what': 634178, 'what normally': 981941, 'normally pay': 567519, 'for 1kg': 318718, '1kg of': 12632, 'of porridge': 588245, 'porridge per': 664858, 'per 500g': 650677, '500g panicbuyinguk': 20084, 'broke my pb': 140842, 'my pb in': 549732, 'pb in running': 645854, 'in running do': 427571, 'running do not': 727947, 'know what it': 476961, 'what it say': 981757, 'it say about': 460886, 'say about me': 738387, 'about me that': 25714, 'me that did': 523609, 'that did it': 843521, 'did it with': 240670, 'it with london': 462476, 'with london on': 999302, 'london on the': 501146, 'brink of collapse': 140294, 'of collapse although': 581521, 'collapse although it': 185958, 'although it ha': 49329, 'it ha helped': 458396, 'ha helped me': 370855, 'helped me forget': 391084, 'me forget for': 522774, 'forget for moment': 329255, 'for moment that': 323486, 'moment that today': 536058, 'that today paid': 847070, 'today paid what': 920012, 'paid what normally': 634179, 'what normally pay': 981942, 'normally pay for': 567520, 'pay for 1kg': 644865, 'for 1kg of': 318719, '1kg of porridge': 12633, 'of porridge per': 588247, 'porridge per 500g': 664859, 'per 500g panicbuyinguk': 650678, '500g panicbuyinguk stophoarding': 20085, 'pleasee': 660811, 'all leave': 43356, 'that work': 847646, 'medical field': 526176, 'field pleasee': 304504, 'pleasee grocerystore': 660812, 'can all leave': 157427, 'all leave some': 43357, 'leave some stuff': 484935, 'some stuff at': 783980, 'store for that': 807842, 'for that work': 326277, 'that work in': 847653, 'in the medical': 429352, 'the medical field': 860397, 'medical field pleasee': 526177, 'field pleasee grocerystore': 304505, 'bare supermarket': 110956, 'been trending': 122268, 'the crazy': 852293, 'crazy idea': 215327, 'product flying': 681191, 'seen the bare': 747275, 'the bare supermarket': 849282, 'bare supermarket shelf': 110957, 'supermarket shelf in': 822483, 'panic or we': 638370, 'or we ve': 617742, 've been trending': 952951, 'been trending online': 122269, 'wasn the crazy': 968026, 'the crazy idea': 852298, 'crazy idea but': 215328, 'idea but the': 413023, 'but the product': 147386, 'the product flying': 864588, 'product flying off': 681192, 'nitrate': 563387, 'bib': 129423, 'goggles': 354936, 'for donating': 320815, 'donating much': 254481, 'supply this': 825985, 'this donation': 887281, 'donation included': 254627, 'included 00': 431668, '00 nitrate': 371, 'nitrate glove': 563388, 'glove 200': 352530, '200 plastic': 13534, 'plastic bib': 658816, 'bib 30': 129424, '30 safety': 17212, 'safety goggles': 730554, 'goggles and': 354939, 'and 500': 57493, '500 personal': 20041, 'personal hand': 652856, 'sanitizer spray': 735776, 'bottle along': 136174, 'than 75': 840300, '75 pound': 22158, 'you for donating': 1018632, 'for donating much': 320821, 'donating much needed': 254482, 'much needed medical': 545160, 'medical supply this': 526462, 'supply this donation': 825986, 'this donation included': 887282, 'donation included 00': 254628, 'included 00 nitrate': 431669, '00 nitrate glove': 372, 'nitrate glove 200': 563389, 'glove 200 plastic': 352531, '200 plastic bib': 13535, 'plastic bib 30': 658817, 'bib 30 safety': 129425, '30 safety goggles': 17213, 'safety goggles and': 730555, 'goggles and 500': 354940, 'and 500 personal': 57494, '500 personal hand': 20042, 'personal hand sanitizer': 652857, 'hand sanitizer spray': 375595, 'sanitizer spray bottle': 735781, 'spray bottle along': 790275, 'bottle along with': 136175, 'along with more': 47066, 'more than 75': 540581, 'than 75 pound': 840301, '75 pound of': 22159, 'pound of food': 667395, 'smoking': 775895, 'this asshole': 886437, 'asshole smoking': 96557, 'smoking in': 775909, 'store dont': 807370, 'dont be': 255187, 'why is this': 991124, 'is this asshole': 453074, 'this asshole smoking': 886439, 'asshole smoking in': 96558, 'smoking in the': 775910, 'in the line': 429321, 'grocery store dont': 365341, 'store dont be': 807371, 'dont be that': 255191, 'be that person': 117583, 'refurbished': 706998, 'itsuperheroes': 464000, 'need extra': 554756, 'extra laptop': 293562, 'laptop to': 479573, 'home during': 401105, 'during we': 263394, 'have range': 382159, 'top quality': 925702, 'quality refurbished': 691843, 'refurbished laptop': 706999, 'laptop at': 479550, 'price simply': 676410, 'simply tell': 770300, 'tell what': 837129, 'perfect laptop': 651311, 'laptop itsuperheroes': 479564, 'your business need': 1023069, 'business need extra': 144086, 'need extra laptop': 554758, 'extra laptop to': 293563, 'laptop to allow': 479574, 'to allow people': 900353, 'from home during': 335857, 'home during we': 401112, 'during we have': 263396, 'we have range': 971914, 'have range of': 382160, 'range of top': 696725, 'of top quality': 592315, 'top quality refurbished': 925704, 'quality refurbished laptop': 691844, 'refurbished laptop at': 707000, 'laptop at great': 479551, 'great price simply': 362918, 'price simply tell': 676411, 'simply tell what': 770301, 'tell what you': 837133, 'll get you': 496799, 'get you the': 348684, 'you the perfect': 1021609, 'the perfect laptop': 863541, 'perfect laptop itsuperheroes': 651312, 'correctly': 207595, 'mask out': 519090, 'it correctly': 457338, 'correctly for': 207604, 'any benefit': 78968, 'benefit at': 126927, 'all mostly': 43527, 'mostly we': 543031, 'wear the': 974469, 'the surgical': 869008, 'surgical one': 828379, 'one if': 606457, 'sick have': 768467, 'any symptom': 79937, 'make sure if': 510515, 'sure if you': 827591, 'you are wearing': 1017287, 'wearing mask out': 974706, 'mask out to': 519091, 'out to grocery': 627650, 'store etc to': 807633, 'etc to wear': 282842, 'to wear it': 918433, 'wear it correctly': 974367, 'it correctly for': 457339, 'correctly for it': 207605, 'for it to': 322742, 'it to have': 461721, 'to have any': 907203, 'have any benefit': 379295, 'any benefit at': 78969, 'benefit at all': 126928, 'at all mostly': 97895, 'all mostly we': 43528, 'mostly we need': 543032, 'to wear the': 918443, 'wear the surgical': 974472, 'the surgical one': 869010, 'surgical one if': 828380, 'one if you': 606460, 'you are sick': 1017234, 'are sick have': 90111, 'sick have any': 768468, 'have any symptom': 379323, 'any symptom of': 79939, 'aricle': 92778, 'interesting aricle': 441507, 'aricle 19': 92779, 'interesting aricle 19': 441508, 'take3': 832835, 'devise': 239975, 'transparent': 929837, 'take3 high': 832836, 'high time': 395477, 'time pm': 897506, 'pm sat': 661971, 'sat down': 736894, 'ceo from': 169705, 'australia supermarket': 103394, 'to devise': 904259, 'devise plan': 239976, 'ensure stable': 278034, 'stable rationed': 791949, 'to population': 911893, 'population and': 664649, 'this plan': 889600, 'plan transparent': 658333, 'take3 high time': 832837, 'high time pm': 395479, 'time pm sat': 897508, 'pm sat down': 661972, 'sat down with': 736896, 'down with ceo': 257491, 'with ceo from': 997588, 'ceo from australia': 169706, 'from australia supermarket': 334615, 'australia supermarket and': 103395, 'supermarket and to': 819087, 'and to devise': 74164, 'to devise plan': 904260, 'devise plan to': 239977, 'plan to ensure': 658288, 'to ensure stable': 905189, 'ensure stable rationed': 278035, 'stable rationed food': 791950, 'rationed food supply': 697780, 'food supply to': 317008, 'supply to population': 826023, 'to population and': 911894, 'population and make': 664651, 'make this plan': 510645, 'this plan transparent': 889602, 'in praise': 426901, 'praise of': 668849, 'of preppers': 588365, 'preppers thanks': 670409, 'to community': 903098, 'ha literally': 371161, 'literally been': 494954, 'come there': 187531, 'there now': 878880, 'shopping industry': 763015, 'you prepare': 1020411, '19 apocalypse': 5171, 'in praise of': 426903, 'praise of preppers': 668851, 'of preppers thanks': 588366, 'preppers thanks to': 670410, 'thanks to community': 842213, 'to community that': 903104, 'community that ha': 190153, 'that ha literally': 844123, 'ha literally been': 371162, 'literally been waiting': 494956, 'for this day': 327023, 'this day to': 887172, 'day to come': 228560, 'to come there': 903051, 'come there now': 187533, 'there now an': 878881, 'now an online': 574021, 'online shopping industry': 609155, 'shopping industry to': 763016, 'industry to help': 436170, 'help you prepare': 390988, 'you prepare for': 1020412, 'covid 19 apocalypse': 212639, 'rcs': 698118, 'mobilemarketing': 535056, 'richcommunications': 721330, 'need easy': 554728, 'easy safe': 265755, 'immediate access': 416957, 'access service': 28189, 'service from': 752405, 'their mobile': 873986, 'mobile device': 534962, 'device more': 239920, 'ever that': 285534, 'why rcs': 991315, 'rcs is': 698121, 'an incredible': 56253, 'incredible opportunity': 433857, 'opportunity not': 613660, 'for mobile': 323472, 'mobile operator': 535004, 'brand but': 137777, 'consumer mobilemarketing': 198143, 'mobilemarketing richcommunications': 535057, 'people need easy': 648818, 'need easy safe': 554729, 'easy safe and': 265756, 'safe and immediate': 729453, 'and immediate access': 64991, 'immediate access service': 416958, 'access service from': 28190, 'service from their': 752412, 'from their mobile': 337943, 'their mobile device': 873987, 'mobile device more': 534963, 'device more than': 239922, 'than ever that': 840614, 'ever that is': 285535, 'is why rcs': 453975, 'why rcs is': 991316, 'rcs is an': 698122, 'is an incredible': 445672, 'an incredible opportunity': 56259, 'incredible opportunity not': 433858, 'opportunity not only': 613661, 'not only for': 570795, 'only for mobile': 610469, 'for mobile operator': 323473, 'mobile operator and': 535005, 'operator and brand': 613341, 'and brand but': 59147, 'brand but for': 137778, 'but for consumer': 145743, 'for consumer mobilemarketing': 320273, 'consumer mobilemarketing richcommunications': 198144, 'medcine': 525941, 'ffs stop': 304324, 'buying three': 151226, 'three time': 894074, 'not found': 569526, 'found beef': 330168, 'beef egg': 120505, 'egg chicken': 269820, 'chicken and': 175737, 'course medcine': 211894, 'medcine even': 525942, 'italy you': 462968, 'very greedy': 955204, 'greedy and': 363466, 'very bad': 954997, 'bad for': 107858, 'elderly or': 270792, 'disabled who': 243983, 'ffs stop panic': 304325, 'panic buying three': 637935, 'buying three time': 151228, 'three time have': 894077, 'time have gone': 896895, 'the shop and': 866976, 'shop and not': 759855, 'and not found': 67739, 'not found beef': 569527, 'found beef egg': 330169, 'beef egg chicken': 120506, 'egg chicken and': 269821, 'chicken and of': 175741, 'of course medcine': 582061, 'course medcine even': 211895, 'medcine even in': 525943, 'even in italy': 284239, 'in italy you': 424323, 'italy you are': 462969, 'you are allowed': 1017051, 'are allowed to': 84383, 'the shop to': 867034, 'buy food it': 148659, 'food it very': 315185, 'it very greedy': 462031, 'very greedy and': 955205, 'greedy and can': 363467, 'and can be': 59449, 'can be very': 157711, 'be very bad': 117968, 'very bad for': 955000, 'bad for the': 107867, 'the elderly or': 854133, 'elderly or disabled': 270794, 'or disabled who': 614982, 'disabled who cannot': 243984, 'cannot get out': 161900, 'online forget': 608252, 'forget it': 329268, 'won be': 1003733, 'out before': 625771, 'before summer': 123115, 'summer where': 818020, 'all think': 45080, 'wear those': 974483, 'those outfit': 892299, 'garden lockdownnow': 343612, 'who are shopping': 988217, 'are shopping online': 90062, 'shopping online forget': 763433, 'online forget it': 608253, 'forget it we': 329270, 'it we won': 462284, 'we won be': 973934, 'won be out': 1003746, 'be out before': 116283, 'out before summer': 625773, 'before summer where': 123116, 'summer where do': 818021, 'where do all': 984831, 'do all think': 249045, 'all think you': 45084, 'going to wear': 355761, 'to wear those': 918446, 'wear those outfit': 974484, 'those outfit to': 892300, 'outfit to your': 628953, 'to your garden': 918987, 'your garden lockdownnow': 1024024, 'shouldn': 766719, 'fraser': 331205, 'canadian worried': 160781, '19 shouldn': 10506, 'shouldn panic': 766745, 'panic our': 638377, 'are almost': 84388, 'certainly robust': 170182, 'robust enough': 724841, 'this particular': 889484, 'particular shock': 642636, 'shock fraser': 759449, 'fraser note': 331210, 'canadian worried about': 160782, 'about the security': 26514, 'the security of': 866626, 'security of their': 744688, 'of their food': 591663, 'their food system': 873352, 'food system in': 317047, 'system in light': 831206, 'covid 19 shouldn': 213793, '19 shouldn panic': 10507, 'shouldn panic our': 766746, 'panic our food': 638379, 'chain are almost': 170493, 'are almost certainly': 84389, 'almost certainly robust': 46575, 'certainly robust enough': 170183, 'robust enough to': 724842, 'enough to survive': 277727, 'survive this particular': 829266, 'this particular shock': 889489, 'particular shock fraser': 642637, 'shock fraser note': 759450, 'nyc supermarket': 578055, 'what saw': 982118, 'my nyc supermarket': 549535, 'nyc supermarket today': 578057, 'supermarket today covid': 823440, '19 and this': 5125, 'is what saw': 453891, 'hasnt': 378804, 'filming': 305733, 'clearly you': 181591, 'know either': 476361, 'either that': 270384, 'he hasnt': 385077, 'hasnt paid': 378807, 'more neither': 539834, 'neither the': 557353, 'the person': 863577, 'person filming': 652427, 'filming but': 305734, 'but targeting': 147261, 'targeting small': 834577, 'is cheap': 446492, 'cheap shot': 174190, 'shot big': 765417, 'big corporation': 129716, 'corporation do': 207406, 'it then': 461602, 'then thats': 877607, 'thats wrong': 847832, 'clearly you do': 181592, 'not know either': 570292, 'know either that': 476362, 'either that he': 270385, 'that he hasnt': 844260, 'he hasnt paid': 385078, 'hasnt paid more': 378808, 'paid more neither': 634089, 'more neither the': 539835, 'neither the person': 557355, 'the person filming': 863584, 'person filming but': 652428, 'filming but targeting': 305735, 'but targeting small': 147262, 'targeting small business': 834578, 'small business is': 774869, 'business is cheap': 143951, 'is cheap shot': 446497, 'cheap shot big': 174191, 'shot big corporation': 765418, 'big corporation do': 129718, 'corporation do it': 207407, 'do it then': 249515, 'it then thats': 461607, 'then thats wrong': 877608, 'accelerant': 27821, 'nascent': 551977, 'svod': 829879, 'avod': 104988, 'rev': 720210, 'an accelerant': 55051, 'accelerant for': 27822, 'for nascent': 323771, 'nascent dtc': 551980, 'dtc service': 261399, 'service doe': 752292, 'that only': 845517, 'only apply': 610103, 'to svod': 916082, 'svod model': 829880, 'model doe': 535245, 'doe avod': 251347, 'avod expand': 104989, 'expand bc': 290450, 'bc economic': 113229, 'downturn drive': 257796, 'drive consumer': 259015, 'cost cutting': 207901, 'cutting or': 223754, 'that offset': 845470, 'offset by': 596092, 'by decline': 152312, 'in ad': 420023, 'ad sale': 31151, 'sale rev': 732494, '19 is an': 7935, 'is an accelerant': 445633, 'an accelerant for': 55052, 'accelerant for nascent': 27823, 'for nascent dtc': 323772, 'nascent dtc service': 551981, 'dtc service doe': 261400, 'service doe that': 752293, 'doe that only': 251599, 'that only apply': 845521, 'only apply to': 610104, 'apply to svod': 82620, 'to svod model': 916083, 'svod model doe': 829881, 'model doe avod': 535246, 'doe avod expand': 251348, 'avod expand bc': 104990, 'expand bc economic': 290451, 'bc economic downturn': 113230, 'economic downturn drive': 267076, 'downturn drive consumer': 257797, 'drive consumer cost': 259018, 'consumer cost cutting': 196988, 'cost cutting or': 207904, 'cutting or is': 223755, 'or is that': 615835, 'is that offset': 452673, 'that offset by': 845471, 'offset by decline': 596093, 'by decline in': 152313, 'decline in ad': 231340, 'in ad sale': 420025, 'ad sale rev': 31152, 'downstream': 257726, 'heating': 388527, 'fuelled': 340349, 'causing difficulty': 168025, 'difficulty across': 242367, 'entire downstream': 278664, 'downstream oil': 257729, 'industry heating': 435877, 'heating oil': 388532, 'at year': 101646, 'part fuelled': 642280, 'fuelled by': 340350, 'by panic': 153515, 'people staying': 649569, 'home demand': 401057, 'putting really': 691210, 'significant pressure': 769492, 'all delivery': 42546, 'to around': 900712, 'around 15': 93109, '15 working': 3868, 'working day': 1008581, '19 is causing': 7944, 'is causing difficulty': 446419, 'causing difficulty across': 168026, 'difficulty across the': 242368, 'across the entire': 29496, 'the entire downstream': 854352, 'entire downstream oil': 278665, 'downstream oil industry': 257730, 'oil industry heating': 596885, 'industry heating oil': 435878, 'heating oil price': 388533, 'are at year': 84690, 'at year low': 101647, 'year low are': 1014710, 'low are part': 505143, 'are part fuelled': 88984, 'part fuelled by': 642281, 'fuelled by panic': 340351, 'by panic buying': 153519, 'to people staying': 911638, 'people staying at': 649570, 'at home demand': 98970, 'home demand is': 401058, 'demand is putting': 235737, 'is putting really': 451161, 'putting really significant': 691211, 'really significant pressure': 702594, 'significant pressure on': 769494, 'pressure on all': 671199, 'on all delivery': 599223, 'all delivery time': 42549, 'delivery time to': 234646, 'time to around': 897946, 'to around 15': 900713, 'around 15 working': 93110, '15 working day': 3869, 'cma': 184643, 'crisis cma': 217223, 'cma say': 184650, 'take direct': 832069, 'direct enforcement': 243322, 'enforcement action': 276732, 'against retailer': 37605, 'retailer breaking': 719045, 'breaking competition': 138931, 'competition or': 191718, 'law eg': 482260, 'eg charging': 269697, 'claim if': 179745, 'see retailer': 745642, 'retailer hiking': 719192, 'price report': 676183, 'report to': 712383, 'to cma': 902925, '19 crisis cma': 6228, 'crisis cma say': 217224, 'cma say it': 184651, 'say it will': 738865, 'will take direct': 995065, 'take direct enforcement': 832070, 'direct enforcement action': 243323, 'enforcement action against': 276733, 'action against retailer': 29936, 'against retailer breaking': 37607, 'retailer breaking competition': 719046, 'breaking competition or': 138932, 'competition or consumer': 191719, 'or consumer protection': 614798, 'protection law eg': 685509, 'law eg charging': 482261, 'eg charging excessive': 269698, 'misleading claim if': 534094, 'claim if you': 179746, 'you see retailer': 1021063, 'see retailer hiking': 745643, 'retailer hiking price': 719193, 'hiking price report': 396405, 'price report to': 676188, 'report to cma': 712384, 'if doctor': 414054, 'nurse wearing': 577540, 'mask why': 519567, 'why restaurant': 991321, 'restaurant grocery': 716486, 'if doctor nurse': 414055, 'doctor nurse wearing': 251038, 'nurse wearing glove': 577541, 'wearing glove mask': 974637, 'glove mask why': 352786, 'mask why restaurant': 519568, 'why restaurant grocery': 991322, 'restaurant grocery store': 716487, 'store employee not': 807514, 'not wearing glove': 572475, '115': 2657, 'please follow': 660003, 'follow social': 312500, 'distancing rule': 247434, 'rule 115': 727167, '115 people': 2662, 'died today': 241608, 'today work': 920572, 'supermarket filling': 820316, 'shelf avoiding': 756860, 'avoiding people': 105479, 'people waiting': 650111, 'waiting until': 964417, 'until isle': 943742, 'isle clear': 454350, 'still customer': 800410, 'customer going': 222415, 'going around': 355022, 'around nothing': 93418, 'wrong ignoring': 1013046, 'ignoring hazard': 415908, 'hazard tape': 384579, 'on floor': 600823, 'floor very': 310854, 'very stressed': 955588, 'please follow social': 660007, 'follow social distancing': 312501, 'social distancing rule': 779704, 'distancing rule 115': 247435, 'rule 115 people': 727168, '115 people have': 2663, 'people have died': 648174, 'have died today': 380271, 'died today work': 241609, 'today work in': 920573, 'in supermarket filling': 428597, 'supermarket filling shelf': 820317, 'filling shelf avoiding': 305613, 'shelf avoiding people': 756861, 'avoiding people waiting': 105482, 'people waiting until': 650117, 'waiting until isle': 964418, 'until isle clear': 943743, 'isle clear and': 454351, 'clear and still': 181223, 'and still customer': 72371, 'still customer going': 800411, 'customer going around': 222416, 'going around nothing': 355027, 'around nothing wrong': 93419, 'nothing wrong ignoring': 573234, 'wrong ignoring hazard': 1013047, 'ignoring hazard tape': 415909, 'hazard tape on': 384580, 'tape on floor': 834366, 'on floor very': 600825, 'floor very stressed': 310855, 'very stressed and': 955589, 'stressed and scared': 813440, 'guy if': 369028, 'guy if your': 369030, 'wearing surgical': 974792, 'mask during': 518597, 'outbreak more': 628459, 'more shopper': 540380, 'amid concern': 52403, 'lady in supermarket': 478779, 'in supermarket wearing': 428709, 'supermarket wearing surgical': 823765, 'wearing surgical mask': 974793, 'surgical mask during': 828353, 'mask during the': 518598, 'coronavirus outbreak more': 206400, 'outbreak more and': 628460, 'and more shopper': 67216, 'more shopper are': 540381, 'shopper are trying': 761402, 'trying to stock': 934880, 'on good amid': 601142, 'good amid concern': 356715, 'amid concern over': 52407, 'over the coronavirus': 630707, 'outbreak with many': 628830, 'with many of': 999385, 'of the shelf': 591456, 'africanlivesmatter': 35241, 'quadruple': 691649, 'sovereignty': 786949, 'drought': 260760, 'farners': 299710, 'moussafaki': 543477, 'africanlivesmatter let': 35242, 'me urge': 523866, 'urge all': 948147, 'all african': 41963, 'african government': 35198, 'to quadruple': 912627, 'quadruple support': 691656, 'to farmer': 905674, 'food sovereignty': 316707, 'sovereignty food': 786950, 'price africa': 672227, 'africa food': 35074, 'import bill': 418619, 'bill is': 130603, 'quadruple because': 691650, 'and drought': 61770, 'drought invest': 260767, 'small holder': 774989, 'holder farners': 400066, 'farners quick': 299711, 'quick moussafaki': 694331, 'africanlivesmatter let me': 35243, 'let me urge': 486918, 'me urge all': 523867, 'urge all african': 948148, 'all african government': 41964, 'african government to': 35199, 'government to quadruple': 360729, 'to quadruple support': 912629, 'quadruple support to': 691657, 'support to farmer': 826942, 'to farmer to': 905678, 'farmer to ensure': 299536, 'ensure food sovereignty': 277943, 'food sovereignty food': 316708, 'sovereignty food price': 786951, 'food price africa': 315918, 'price africa food': 672228, 'africa food import': 35075, 'food import bill': 314912, 'import bill is': 418620, 'bill is likely': 130604, 'likely to quadruple': 492169, 'to quadruple because': 912628, 'quadruple because of': 691651, '19 and drought': 5015, 'and drought invest': 61771, 'drought invest in': 260768, 'invest in small': 443765, 'in small holder': 428016, 'small holder farners': 774990, 'holder farners quick': 400067, 'farners quick moussafaki': 299712, 'completed': 192193, 'selected': 747486, 'father law': 300295, 'law 75': 482195, '75 completed': 22125, 'completed first': 192196, 'first order': 308837, 'and didn': 61319, 'didn realise': 241170, 'realise he': 701591, 'he selected': 385420, 'selected the': 747505, 'most costly': 542213, 'costly time': 208354, 'time slot': 897680, 'slot on': 774243, 'saturday only': 737055, 'only ordered': 610926, 'ordered 30': 618816, 'to budget': 902075, 'budget with': 141834, 'charge then': 173319, 'then only': 877382, 'only of': 610836, 'delivered due': 233313, 'wa still': 963307, 'still charged': 800356, 'charged the': 173416, 'father law 75': 300296, 'law 75 completed': 482196, '75 completed first': 22126, 'completed first order': 192197, 'first order and': 308838, 'order and didn': 618025, 'and didn realise': 61324, 'didn realise he': 241172, 'realise he selected': 701592, 'he selected the': 385421, 'selected the most': 747506, 'the most costly': 860964, 'most costly time': 542214, 'costly time slot': 208355, 'time slot on': 897686, 'slot on saturday': 774245, 'on saturday only': 603304, 'saturday only ordered': 737056, 'only ordered 30': 610927, 'ordered 30 of': 618817, '30 of food': 17140, 'due to budget': 261715, 'to budget with': 902077, 'budget with delivery': 141836, 'with delivery charge': 997964, 'delivery charge then': 233796, 'charge then only': 173320, 'then only of': 877384, 'only of food': 610839, 'of food delivered': 583674, 'food delivered due': 314093, 'delivered due to': 233314, 'due to stock': 261975, 'to stock and': 915427, 'stock and wa': 801836, 'and wa still': 75098, 'wa still charged': 963310, 'still charged the': 800357, '630am': 21277, 'how terrible': 408783, 'terrible the': 838442, 'at 630am': 97715, '630am sure': 21280, 'an absolute': 55037, 'absolute shit': 27287, 'shit show': 759220, 'go and see': 353286, 'and see how': 71137, 'see how terrible': 745251, 'how terrible the': 408785, 'terrible the supermarket': 838443, 'supermarket is at': 821071, 'is at 630am': 445850, 'at 630am sure': 97716, '630am sure it': 21281, 'sure it ll': 827602, 'll be an': 496568, 'be an absolute': 113587, 'an absolute shit': 55041, 'absolute shit show': 27288, 'wakingdead': 964671, 'bre': 138354, 'anyway wakingdead': 81056, 'wakingdead wakeup': 964672, 'wakeup moment': 964653, 'moment most': 535996, 'most canadian': 542153, 'canadian are': 160633, 'are easy': 86071, 'easy picking': 265747, 'picking for': 655851, 'the upcoming': 870491, 'upcoming horde': 946793, 'horde and': 403991, 'happen whoever': 377208, 'whoever thought': 990116, 'would happen': 1011857, 'happen if': 377090, 'if food': 414120, 'chain bre': 170554, 'anyway wakingdead wakeup': 81057, 'wakingdead wakeup moment': 964673, 'wakeup moment most': 964654, 'moment most canadian': 535997, 'most canadian are': 542154, 'canadian are easy': 160636, 'are easy picking': 86073, 'easy picking for': 265748, 'picking for the': 655852, 'for the upcoming': 326756, 'the upcoming horde': 870494, 'upcoming horde and': 946794, 'horde and it': 403992, 'and it can': 65495, 'it can happen': 457019, 'can happen whoever': 158558, 'happen whoever thought': 377209, 'whoever thought this': 990117, 'thought this would': 893268, 'this would happen': 891538, 'would happen if': 1011859, 'happen if food': 377093, 'if food supply': 414122, 'supply chain bre': 824917, 'verify': 954788, 'skin': 773050, 'verify can': 954789, 'can handsanitizer': 158550, 'handsanitizer change': 376495, 'change skin': 172258, 'skin ph': 773075, 'ph level': 653975, 'level making': 487614, 'making you': 511499, 'you more': 1019885, 'verify can handsanitizer': 954791, 'can handsanitizer change': 158551, 'handsanitizer change skin': 376496, 'change skin ph': 172259, 'skin ph level': 773076, 'ph level making': 653976, 'level making you': 487615, 'making you more': 511503, 'you more vulnerable': 1019889, 'more vulnerable to': 540937, 'arranged': 93699, '5million': 20785, 'have still': 382755, 'still not': 800887, 'not arranged': 568245, 'arranged home': 93702, 'for 5million': 318882, '5million vulnerable': 20786, 'vulnerable adult': 960837, 'isolation for': 455266, 'all blame': 42188, 'blame the': 132300, 'the database': 852853, 'database available': 226513, 'available while': 104697, 'while leaving': 987005, 'leaving family': 485079, 'member at': 528030, 'going shopping': 355444, 'supermarket vulnerable': 823680, 'vulnerable highriskcovid19': 960997, 'highriskcovid19 sainsburys': 396122, 'sainsburys tesco': 731796, 'supermarket have still': 820708, 'have still not': 382757, 'still not arranged': 800888, 'not arranged home': 568246, 'arranged home delivery': 93703, 'home delivery for': 401018, 'delivery for 5million': 234017, 'for 5million vulnerable': 318883, '5million vulnerable adult': 20787, 'vulnerable adult in': 960838, 'adult in isolation': 32829, 'in isolation for': 424195, 'isolation for 12': 455267, '12 week they': 2990, 'week they all': 977034, 'they all blame': 881109, 'all blame the': 42190, 'blame the government': 132302, 'the government for': 856539, 'government for not': 360101, 'for not making': 323930, 'not making the': 570519, 'making the database': 511412, 'the database available': 852854, 'database available while': 226514, 'available while leaving': 104698, 'while leaving family': 987006, 'leaving family member': 485080, 'family member at': 298026, 'member at risk': 528031, 'of going shopping': 584196, 'going shopping supermarket': 355454, 'shopping supermarket vulnerable': 764020, 'supermarket vulnerable highriskcovid19': 823682, 'vulnerable highriskcovid19 sainsburys': 960998, 'highriskcovid19 sainsburys tesco': 396123, 'sainsburys tesco asda': 731799, 'coronavirus online': 206349, 'shopping only': 763518, 'allowed for': 46155, 'lockdown via': 500107, '19 coronavirus online': 6113, 'coronavirus online shopping': 206352, 'online shopping only': 609209, 'shopping only allowed': 763519, 'only allowed for': 610060, 'allowed for essential': 46156, 'for essential during': 321099, 'essential during lockdown': 280977, 'during lockdown via': 262778, 'essiantial': 281979, 'distancers': 246931, 'you unpaid': 1021978, 'unpaid family': 943025, 'family carers': 297691, 'carers nh': 164593, 'nh emergency': 561947, 'service care': 752206, 'staff care': 792304, 'home team': 402193, 'team volunteer': 835819, 'volunteer call': 960240, 'call help': 155927, 'help line': 390001, 'line supermarket': 493434, 'worker essiantial': 1006863, 'essiantial transport': 281980, 'transport team': 929955, 'team social': 835776, 'social distancers': 779537, 'distancers thank': 246934, 'you 19uk': 1016751, 'thank you unpaid': 841837, 'you unpaid family': 1021979, 'unpaid family carers': 943026, 'family carers nh': 297692, 'carers nh emergency': 164594, 'nh emergency service': 561948, 'emergency service care': 272952, 'service care home': 752207, 'home staff care': 402114, 'staff care at': 792305, 'care at home': 163857, 'at home team': 99132, 'home team volunteer': 402194, 'team volunteer call': 835820, 'volunteer call help': 960241, 'call help line': 155928, 'help line supermarket': 390003, 'line supermarket worker': 493438, 'supermarket worker essiantial': 824016, 'worker essiantial transport': 1006864, 'essiantial transport team': 281981, 'transport team social': 929956, 'team social distancers': 835777, 'social distancers thank': 779539, 'distancers thank you': 246935, 'thank you 19uk': 841683, 'bryan': 141429, 'balvaneda': 109134, 'bryan balvaneda': 141430, 'balvaneda clinical': 109135, 'clinical psychology': 182329, 'psychology graduate': 687558, 'graduate student': 361721, 'student and': 814638, 'offer some': 594800, 'some suggestion': 783995, 'for coping': 320355, 'these challenging': 879735, 'bryan balvaneda clinical': 141431, 'balvaneda clinical psychology': 109136, 'clinical psychology graduate': 182330, 'psychology graduate student': 687559, 'graduate student and': 361722, 'student and offer': 814641, 'and offer some': 67973, 'offer some suggestion': 594802, 'some suggestion for': 783996, 'suggestion for coping': 817637, 'for coping during': 320356, 'coping during these': 203371, 'during these challenging': 263230, 'these challenging time': 879736, 'void': 960016, 'distillery and': 247728, 'and brewery': 59187, 'brewery are': 139431, 'the void': 870944, 'void offering': 960024, 'offering wine': 595325, 'liquor delivery': 494166, 'pickup order': 656003, 'these local distillery': 880245, 'local distillery and': 497894, 'distillery and brewery': 247729, 'and brewery are': 59188, 'brewery are filling': 139432, 'filling the void': 305628, 'the void offering': 870946, 'void offering wine': 960025, 'offering wine and': 595326, 'and liquor delivery': 66214, 'liquor delivery and': 494167, 'delivery and pickup': 233673, 'and pickup order': 69023, 'volunteering': 960388, 'make doc': 509851, 'doc film': 250740, 'film but': 305667, 'my most': 549317, 'recent one': 703938, 'one lost': 606624, 'it festival': 457986, 'festival debut': 303595, 'debut because': 230642, 'last one': 480421, 'wa supposed': 963365, 'to release': 913136, 'release in': 708957, 'australia but': 103243, 'got pushed': 358801, 'pushed have': 690361, 'income but': 432304, 'but wanted': 147723, 'something so': 785061, 'so began': 776616, 'began volunteering': 123458, 'volunteering at': 960389, 'at small': 100558, 'small supermarket': 775140, 'make doc film': 509852, 'doc film but': 250741, 'film but my': 305669, 'but my most': 146436, 'my most recent': 549319, 'most recent one': 542684, 'recent one lost': 703939, 'one lost it': 606625, 'lost it festival': 503876, 'it festival debut': 457987, 'festival debut because': 303596, 'debut because of': 230643, '19 and my': 5066, 'my last one': 548977, 'last one wa': 480426, 'one wa supposed': 607350, 'wa supposed to': 963366, 'supposed to release': 827372, 'to release in': 913138, 'release in australia': 708958, 'in australia but': 420601, 'australia but got': 103244, 'but got pushed': 145808, 'got pushed have': 358802, 'pushed have no': 690362, 'have no work': 381667, 'no work or': 565928, 'work or income': 1005564, 'or income but': 615773, 'income but wanted': 432305, 'but wanted to': 147724, 'wanted to do': 966251, 'do something so': 250154, 'something so began': 785063, 'so began volunteering': 776617, 'began volunteering at': 123459, 'volunteering at small': 960390, 'at small supermarket': 100562, 'katie': 471048, 'moving': 544109, 'will katie': 993885, 'katie and': 471049, 'be moving': 116017, 'moving in': 544157, 'weekend amongst': 977314, 'amongst the': 53143, 'panic yes': 638810, 'yes will': 1015610, 'no will': 565896, 'will we': 995318, 'any self': 79778, 'self respect': 747889, 'respect also': 714957, 'also no': 48568, 'no but': 563744, 'least we': 484683, 'will katie and': 993886, 'katie and be': 471050, 'and be moving': 58759, 'be moving in': 116018, 'moving in this': 544160, 'in this weekend': 430045, 'this weekend amongst': 891305, 'weekend amongst the': 977315, 'amongst the covid': 53144, '19 panic yes': 9565, 'panic yes will': 638811, 'yes will have': 1015611, 'have food or': 380659, 'paper no will': 640504, 'no will we': 565898, 'will we have': 995329, 'we have any': 971758, 'have any self': 379317, 'any self respect': 79779, 'self respect also': 747890, 'respect also no': 714958, 'also no but': 48569, 'no but at': 563745, 'at least we': 99564, 'least we ll': 484687, 'll have each': 496827, 'that approximately': 842706, 'approximately 12': 83239, '12 million': 2881, 'million were': 532415, 'were lost': 979855, 'lost to': 503939, 'scam according': 739963, 'report received': 712209, 'received since': 703679, 'since january': 770670, 'january 2020': 464626, '2020 consume': 14237, 'consume via': 195952, 'via security': 956226, 'security tech': 744763, 'tech mondaymotivation': 836120, 'trade commission say': 928457, 'commission say that': 188896, 'say that approximately': 739226, 'that approximately 12': 842707, 'approximately 12 million': 83240, '12 million were': 2891, 'million were lost': 532416, 'were lost to': 979856, 'lost to coronavirus': 503941, 'to coronavirus related': 903565, 'related scam according': 708543, 'scam according to': 739964, 'according to consumer': 28529, 'to consumer report': 903328, 'consumer report received': 198722, 'report received since': 712210, 'received since january': 703680, 'since january 2020': 770673, 'january 2020 consume': 464629, '2020 consume via': 14238, 'consume via security': 195953, 'via security tech': 956227, 'security tech mondaymotivation': 744764, 'seeing picture': 746419, 'shelf ever': 757053, 'ever day': 285268, 'love seeing picture': 504772, 'seeing picture of': 746420, 'picture of empty': 656162, 'supermarket shelf ever': 822463, 'shelf ever day': 757054, 'residentevil': 714409, 'idea resident': 413161, 'resident evil': 714291, 'evil merchant': 288447, 'merchant but': 529006, 're selling': 699478, 'sanitizer outside': 735512, 'outside store': 629559, 'store residentevil': 809835, 'an idea resident': 56132, 'idea resident evil': 413162, 'resident evil merchant': 714292, 'evil merchant but': 288448, 'merchant but you': 529007, 'but you re': 147997, 'you re selling': 1020740, 're selling toilet': 699482, 'hand sanitizer outside': 375523, 'sanitizer outside store': 735515, 'outside store residentevil': 629562, 'repost some': 712838, 'some massachusetts': 783264, 'massachusetts resident': 519922, 'resident are': 714249, 'are preparing': 89197, 'by stockpiling': 154128, 'stockpiling supply': 804087, 'supply emptying': 825209, 'emptying grocery': 275262, 'shelf stacking': 757566, 'stacking up': 792047, 'up can': 944570, 'black bean': 132028, 'their cupboard': 872932, 'repost some massachusetts': 712839, 'some massachusetts resident': 783265, 'massachusetts resident are': 519923, 'resident are preparing': 714252, 'are preparing for': 89198, 'preparing for the': 670339, 'for the pandemic': 326608, 'the pandemic by': 862926, 'pandemic by stockpiling': 635079, 'by stockpiling supply': 154129, 'stockpiling supply emptying': 804089, 'supply emptying grocery': 825210, 'emptying grocery store': 275263, 'store shelf stacking': 810101, 'shelf stacking up': 757567, 'stacking up can': 792048, 'up can of': 944575, 'can of black': 159084, 'of black bean': 580731, 'black bean in': 132030, 'bean in their': 118334, 'in their cupboard': 429733, 'depressing': 237606, 'tribe': 931674, 'really depressing': 702103, 'depressing to': 237615, 'how lot': 408225, 'behaving right': 123845, 'be empty': 114668, 'empty it': 274924, 'about everyone': 25196, 'everyone this': 287480, 'this fight': 887540, 'fight not': 304807, 'just you': 470376, 'your little': 1024667, 'little tribe': 495632, 'tribe panicbuying': 931677, 'it really depressing': 460631, 'really depressing to': 702104, 'depressing to see': 237616, 'see how lot': 745238, 'how lot of': 408226, 'people are behaving': 646935, 'are behaving right': 84822, 'behaving right now': 123846, 'now there no': 576093, 'need for supermarket': 554874, 'for supermarket shelf': 326021, 'supermarket shelf to': 822548, 'shelf to be': 757695, 'to be empty': 901234, 'be empty it': 114671, 'empty it about': 274925, 'it about everyone': 456236, 'about everyone this': 25200, 'everyone this fight': 287482, 'this fight not': 887546, 'fight not just': 304808, 'not just you': 570265, 'just you and': 470378, 'and your little': 76081, 'your little tribe': 1024668, 'little tribe panicbuying': 495633, 'servicetechnicians': 753152, 'foodprocessing': 318041, 'huge thank': 410236, 'service technician': 752899, 'technician out': 836230, 'there keeping': 878685, 'essential plant': 281397, 'industry up': 436197, 'running smoothly': 728069, 'smoothly during': 775955, 'this uncertain': 890897, 'time thankyou': 897827, 'thankyou servicetechnicians': 842349, 'servicetechnicians plastic': 753153, 'plastic chemical': 658830, 'chemical pharmaceutical': 175371, 'pharmaceutical foodprocessing': 654077, 'foodprocessing medical': 318043, 'medical toiletpaper': 526481, 'huge thank you': 410237, 'to our service': 911240, 'our service technician': 624731, 'service technician out': 752902, 'technician out there': 836231, 'out there keeping': 627494, 'there keeping our': 878687, 'keeping our essential': 472502, 'our essential plant': 622926, 'essential plant and': 281398, 'plant and industry': 658613, 'and industry up': 65187, 'industry up and': 436198, 'up and running': 944366, 'and running smoothly': 70646, 'running smoothly during': 728071, 'smoothly during this': 775957, 'during this uncertain': 263332, 'this uncertain time': 890898, 'uncertain time thankyou': 939626, 'time thankyou servicetechnicians': 897828, 'thankyou servicetechnicians plastic': 842350, 'servicetechnicians plastic chemical': 753154, 'plastic chemical pharmaceutical': 658831, 'chemical pharmaceutical foodprocessing': 175372, 'pharmaceutical foodprocessing medical': 654078, 'foodprocessing medical toiletpaper': 318044, 'niece': 562627, 'hut': 411847, 'caregiver': 164491, 'son and': 785348, 'my niece': 549492, 'niece just': 562632, 'now lost': 575258, 'at pizza': 100124, 'pizza hut': 657167, 'hut the': 411851, 'thru will': 895245, 'be operating': 116261, 'son is': 785393, 'my caregiver': 547619, 'caregiver he': 164508, 'he help': 385085, 'and car': 59543, 'car repair': 163267, 'repair what': 711472, 'the solution': 867458, 'solution for': 782020, 'my son and': 550151, 'son and my': 785350, 'and my niece': 67381, 'my niece just': 549494, 'niece just now': 562633, 'just now lost': 469350, 'now lost their': 575259, 'their job at': 873699, 'job at pizza': 465678, 'at pizza hut': 100125, 'pizza hut the': 657168, 'hut the drive': 411852, 'drive thru will': 259211, 'thru will be': 895246, 'will be operating': 992592, 'be operating only': 116262, 'operating only because': 613095, 'only because of': 610159, 'of panic over': 587730, 'panic over the': 638392, 'over the covid': 630711, '19 my son': 8736, 'my son is': 550159, 'son is my': 785395, 'is my caregiver': 449785, 'my caregiver he': 547620, 'caregiver he help': 164509, 'he help with': 385087, 'food and car': 313194, 'and car repair': 59549, 'car repair what': 163268, 'repair what is': 711473, 'is the solution': 452942, 'the solution for': 867462, 'solution for people': 782030, 'for people like': 324453, 'mat': 520250, 'wmt': 1003283, 'vermont shopper': 954857, 'shopper hoping': 761550, 'grab an': 361456, 'an exercise': 55941, 'exercise mat': 290076, 'mat or': 520255, 'or video': 617668, 'video game': 956749, 'game inside': 343192, 'inside walmart': 439442, 'walmart are': 965280, 'of luck': 586064, 'luck via': 506480, 'via wmt': 956373, 'vermont shopper hoping': 954858, 'shopper hoping to': 761551, 'hoping to grab': 403953, 'to grab an': 906956, 'grab an exercise': 361457, 'an exercise mat': 55942, 'exercise mat or': 290077, 'mat or video': 520256, 'or video game': 617670, 'video game inside': 956757, 'game inside walmart': 343193, 'inside walmart are': 439443, 'walmart are out': 965281, 'out of luck': 626778, 'of luck via': 586067, 'luck via wmt': 506481, 'penny please': 646621, 'please have': 660054, 'have care': 379899, 'care kit': 164040, 'kit with': 475674, 'with cleaning': 997654, 'cleaning essential': 180943, 'essential sent': 281491, 'sent out': 750791, 'everyone household': 287024, 'household in': 406841, 'america have': 51548, 'find lysol': 307043, 'month stayhome': 538016, 'penny please have': 646622, 'please have care': 660055, 'have care kit': 379900, 'care kit with': 164041, 'kit with cleaning': 475676, 'with cleaning essential': 997655, 'cleaning essential sent': 180944, 'essential sent out': 281492, 'sent out to': 750796, 'out to everyone': 627641, 'to everyone household': 905341, 'everyone household in': 287025, 'household in america': 406842, 'in america have': 420222, 'america have not': 51549, 'not been able': 568502, 'to find lysol': 905916, 'find lysol hand': 307044, 'sanitizer etc for': 734827, 'etc for almost': 282541, 'almost month stayhome': 46692, 'amazonbasics': 51218, 'kirkland': 475423, 'roadmaps': 724558, 'prosumer': 684739, 'what amazonbasics': 981026, 'amazonbasics and': 51219, 'and kirkland': 65858, 'kirkland product': 475427, 'product roadmaps': 681582, 'roadmaps look': 724559, 'paper consumer': 640042, 'consumer grade': 197643, 'grade ppe': 361657, 'ppe prosumer': 668033, 'prosumer grade': 684740, 'worker shelf': 1007763, 'stable food': 791907, 'food baby': 313497, 'baby line': 106652, 'line diaper': 493053, 'diaper kid': 240363, 'kid line': 474037, 'line education': 493067, 'education wfh': 268882, 'wfh line': 980840, 'line camera': 493024, 'camera screen': 157125, 'screen audio': 742680, 'audio what': 102935, 'wonder what amazonbasics': 1004006, 'what amazonbasics and': 981027, 'amazonbasics and kirkland': 51220, 'and kirkland product': 65859, 'kirkland product roadmaps': 475428, 'product roadmaps look': 681583, 'roadmaps look like': 724560, 'look like toilet': 502519, 'like toilet paper': 491643, 'toilet paper consumer': 921236, 'paper consumer grade': 640043, 'consumer grade ppe': 197644, 'grade ppe prosumer': 361659, 'ppe prosumer grade': 668034, 'prosumer grade ppe': 684741, 'grade ppe for': 361658, 'ppe for worker': 667952, 'for worker shelf': 327941, 'worker shelf stable': 1007764, 'shelf stable food': 757544, 'stable food baby': 791908, 'food baby line': 313498, 'baby line diaper': 106653, 'line diaper kid': 493054, 'diaper kid line': 240364, 'kid line education': 474038, 'line education wfh': 493068, 'education wfh line': 268883, 'wfh line camera': 980841, 'line camera screen': 493025, 'camera screen audio': 157126, 'screen audio what': 742681, 'audio what else': 102936, 'novak': 573716, 'energy minister': 276504, 'minister alexander': 533325, 'alexander novak': 41605, 'novak said': 573719, 'thursday that': 895426, 'may return': 521465, 'oil negotiation': 596973, 'negotiation with': 556961, 'with saudi': 1000581, 'arabia after': 83847, 'after talk': 36267, 'talk collapsed': 833785, 'collapsed last': 186103, 'month which': 538118, 'which coupled': 985785, 'new dragged': 558645, 'dragged price': 258184, 'their 18': 872416, 'energy minister alexander': 276505, 'minister alexander novak': 533326, 'alexander novak said': 41606, 'novak said on': 573720, 'said on thursday': 731290, 'on thursday that': 604679, 'thursday that may': 895428, 'that may return': 845089, 'may return to': 521466, 'return to oil': 719927, 'to oil negotiation': 910881, 'oil negotiation with': 596974, 'negotiation with saudi': 556963, 'with saudi arabia': 1000582, 'saudi arabia after': 737181, 'arabia after talk': 83848, 'after talk collapsed': 36268, 'talk collapsed last': 833786, 'collapsed last month': 186104, 'last month which': 480347, 'month which coupled': 538119, 'which coupled with': 985786, 'coupled with the': 211741, 'with the spread': 1001491, 'the new dragged': 861498, 'new dragged price': 558647, 'dragged price to': 258185, 'price to their': 677053, 'to their 18': 917208, 'their 18 year': 872417, 'store late': 808676, 'late in': 480881, 'day shelf': 228339, 'shelf cleaned': 756938, 'cleaned many': 180714, 'many restaurant': 514639, 'restaurant closed': 716372, 'closed make': 183214, 'me wonder': 524007, 'were eating': 979546, 'eating out': 266270, 'out too': 627721, 'much before': 544751, 'grocery store late': 365510, 'store late in': 808677, 'late in the': 480882, 'the day shelf': 852911, 'day shelf cleaned': 228340, 'shelf cleaned many': 756939, 'cleaned many restaurant': 180715, 'many restaurant closed': 514641, 'restaurant closed make': 716375, 'closed make me': 183215, 'make me wonder': 510153, 'me wonder if': 524008, 'wonder if we': 1003980, 'if we were': 415324, 'we were eating': 973788, 'were eating out': 979547, 'eating out too': 266277, 'out too much': 627722, 'too much before': 924915, '6pm': 21646, 'aedt': 33878, 'wark': 966867, 'middleton': 530718, 'cf': 170276, 'tomorrow night': 924139, 'night at': 562958, 'at 6pm': 97732, '6pm aedt': 21650, 'aedt prof': 33879, 'prof peter': 682367, 'peter wark': 653541, 'wark peter': 966868, 'peter middleton': 653523, 'middleton will': 530721, 'consumer connect': 196936, 'connect session': 194617, 'session about': 753262, '19 cf': 5745, 'cf get': 170282, 'answered click': 78164, 'click consumer': 181902, 'connect box': 194595, 'box enter': 137052, 'enter your': 278336, 'email and': 272108, 'and password': 68750, 'password or': 643477, 'or sign': 617078, 'tomorrow night at': 924141, 'night at 6pm': 562961, 'at 6pm aedt': 97734, '6pm aedt prof': 21651, 'aedt prof peter': 33880, 'prof peter wark': 682368, 'peter wark peter': 653542, 'wark peter middleton': 966869, 'peter middleton will': 653524, 'middleton will lead': 530722, 'will lead consumer': 993964, 'lead consumer connect': 483270, 'consumer connect session': 196940, 'connect session about': 194618, 'session about covid': 753263, 'covid 19 cf': 212779, '19 cf get': 5746, 'cf get your': 170283, 'get your question': 348728, 'your question answered': 1025496, 'question answered click': 693530, 'answered click consumer': 78165, 'click consumer connect': 181903, 'consumer connect box': 196937, 'connect box enter': 194596, 'box enter your': 137053, 'enter your email': 278339, 'your email and': 1023642, 'email and password': 272113, 'and password or': 68752, 'password or sign': 643478, 'or sign up': 617079, 'joint': 466998, 'expressly': 293097, 'creditunions': 216597, 'joint statement': 467026, 'statement from': 796173, 'from federal': 335449, 'federal financial': 301982, 'financial regulator': 306550, 'regulator expressly': 708139, 'expressly encourages': 293098, 'encourages creditunions': 275689, 'creditunions to': 216600, 'offer responsible': 594767, 'responsible small': 716055, 'small dollar': 774932, 'dollar loan': 253028, 'loan to': 497542, 'business member': 144042, 'member during': 528066, 'disease for': 245143, 'the statement': 867827, 'joint statement from': 467027, 'statement from federal': 796175, 'from federal financial': 335450, 'federal financial regulator': 301983, 'financial regulator expressly': 306551, 'regulator expressly encourages': 708140, 'expressly encourages creditunions': 293099, 'encourages creditunions to': 275690, 'creditunions to offer': 216601, 'to offer responsible': 910845, 'offer responsible small': 594768, 'responsible small dollar': 716056, 'small dollar loan': 774934, 'dollar loan to': 253029, 'loan to consumer': 497543, 'small business member': 774876, 'business member during': 144044, 'member during the': 528068, 'during the disease': 263116, 'the disease for': 853363, 'disease for more': 245144, 'for more on': 323589, 'on the statement': 604380, 'resist': 714561, 'darth': 226039, 'vader': 951827, 'to resist': 913355, 'resist making': 714572, 'making darth': 511015, 'darth vader': 226040, 'vader noise': 951828, 'noise in': 566225, 'my mask': 549206, 'managed to resist': 512508, 'to resist making': 913359, 'resist making darth': 714573, 'making darth vader': 511016, 'darth vader noise': 226041, 'vader noise in': 951829, 'noise in my': 566226, 'in my mask': 425599, 'my mask in': 549208, 'mask in the': 518839, 'compiled': 191808, 'fdic': 300966, 'keeping yourself': 472643, 'money safe': 537005, 'ever during': 285283, 'helpful tip': 391230, 'tip compiled': 898734, 'compiled by': 191815, 'federal deposit': 301976, 'deposit insurance': 237502, 'insurance corporation': 440704, 'corporation fdic': 207420, 'fdic by': 300967, 'by following': 152607, 'keeping yourself and': 472644, 'your money safe': 1024870, 'money safe is': 537006, 'safe is more': 729784, 'than ever during': 840579, 'ever during the': 285285, 'the helpful tip': 857273, 'helpful tip compiled': 391232, 'tip compiled by': 898735, 'compiled by the': 191816, 'by the federal': 154327, 'the federal deposit': 855072, 'federal deposit insurance': 301977, 'deposit insurance corporation': 237503, 'insurance corporation fdic': 440705, 'corporation fdic by': 207421, 'fdic by following': 300968, 'by following the': 152609, 'following the link': 312892, 'tipped': 898972, 'thanked and': 841867, 'and tipped': 74136, 'tipped my': 898973, 'cashier on': 166576, 'low today': 505697, 'today ha': 919595, 'some unlikely': 784138, 'unlikely frontline': 942747, 'frontline hero': 338756, 'hero grocery': 394002, 'thanked and tipped': 841868, 'and tipped my': 74137, 'tipped my cashier': 898974, 'my cashier on': 547641, 'cashier on the': 166577, 'on the low': 604224, 'the low today': 859787, 'low today ha': 505698, 'today ha some': 919597, 'ha some unlikely': 372000, 'some unlikely frontline': 784139, 'unlikely frontline hero': 942748, 'frontline hero grocery': 338757, 'hero grocery store': 394004, 'transforming': 929597, 'growbydata': 367090, 'how coronavirus': 407609, 'is transforming': 453332, 'transforming consumer': 929598, 'consumer shopping': 198973, 'behavior and': 123879, 'can benefit': 157749, 'it growbydata': 458356, 'growbydata 19': 367091, '19 consumerbehavior': 5998, 'out how coronavirus': 626320, 'how coronavirus is': 407612, 'coronavirus is transforming': 206177, 'is transforming consumer': 453333, 'transforming consumer shopping': 929599, 'consumer shopping behavior': 198974, 'shopping behavior and': 762196, 'behavior and how': 123890, 'how online retailer': 408445, 'online retailer can': 608879, 'retailer can benefit': 719057, 'can benefit from': 157750, 'benefit from it': 126988, 'from it growbydata': 336116, 'it growbydata 19': 458357, 'growbydata 19 consumerbehavior': 367092, 'way consumer': 969524, 'way consumer are': 969525, 'consumer are shopping': 196310, 'are shopping amid': 90057, 'the pandemic food': 862967, 'hard but': 377878, 'to laugh': 909089, 'laugh removing': 481753, 'removing supermarket': 710911, 'shelf except': 757062, 'for fresh': 321754, 'produce might': 680357, 'might actually': 530857, 'actually be': 30735, 'those wanting': 892599, 'flatten other': 310125, 'other curve': 620050, 'curve stayathome': 221896, 'stayathome pandemic': 797570, 'know it hard': 476530, 'it hard but': 458483, 'hard but you': 377882, 'but you have': 147986, 'have to laugh': 383236, 'to laugh removing': 909092, 'laugh removing supermarket': 481754, 'removing supermarket shelf': 710912, 'supermarket shelf except': 822466, 'shelf except for': 757063, 'except for fresh': 289160, 'for fresh produce': 321761, 'fresh produce might': 333060, 'produce might actually': 680358, 'might actually be': 530858, 'actually be good': 30736, 'be good for': 115066, 'good for those': 357092, 'for those wanting': 327147, 'those wanting to': 892600, 'wanting to flatten': 966302, 'to flatten other': 905999, 'flatten other curve': 310126, 'other curve stayathome': 620051, 'curve stayathome pandemic': 221897, 'stayathome pandemic panicbuying': 797572, 'station employee': 796390, 'employee out': 274096, 'there shut': 879046, 'shut these': 767953, 'these down': 879938, 'would riot': 1012195, 'riot most': 722616, 'most make': 542501, 'make minimum': 510168, 'get zero': 348755, 'zero respect': 1027491, 'respect this': 715073, 'made it': 507799, 'clear how': 181256, 'how vital': 409143, 'vital these': 959737, 'these job': 880201, 'are to': 91103, 'get huge': 347266, 'huge raise': 410164, 'raise or': 695891, 'or bonus': 614569, 'about the grocery': 26407, 'store and gas': 806246, 'gas station employee': 344108, 'station employee out': 796393, 'employee out there': 274098, 'out there shut': 627511, 'there shut these': 879047, 'shut these down': 767954, 'these down and': 879939, 'down and people': 256508, 'and people would': 68894, 'people would riot': 650545, 'would riot most': 1012196, 'riot most make': 722618, 'most make minimum': 542502, 'make minimum wage': 510169, 'wage and get': 963810, 'and get zero': 63616, 'get zero respect': 348756, 'zero respect this': 1027492, 'respect this ha': 715074, 'this ha made': 887808, 'ha made it': 371210, 'made it clear': 507802, 'it clear how': 457159, 'clear how vital': 181258, 'how vital these': 409146, 'vital these job': 959738, 'these job are': 880202, 'job are to': 465664, 'are to all': 91106, 'of it time': 585457, 'it time they': 461699, 'time they get': 897900, 'they get huge': 882166, 'get huge raise': 347268, 'huge raise or': 410165, 'raise or bonus': 695892, 'laborer': 478494, 'planting': 658749, 'freight': 332679, 'plane': 658373, 'upending': 947505, 'of laborer': 585696, 'laborer cannot': 478495, 'to field': 905769, 'field for': 304473, 'for harvesting': 322121, 'harvesting and': 378650, 'and planting': 69072, 'planting there': 658769, 'are too': 91134, 'too few': 924737, 'few trucker': 304118, 'trucker to': 932960, 'keep good': 471555, 'good moving': 357423, 'moving air': 544114, 'air freight': 39740, 'freight capacity': 332680, 'produce ha': 680285, 'ha plummeted': 371507, 'plummeted plane': 661346, 'plane are': 658376, 'are grounded': 86969, 'grounded more': 366574, 'is upending': 453590, 'upending food': 947506, 'million of laborer': 532273, 'of laborer cannot': 585697, 'laborer cannot get': 478496, 'get to field': 348467, 'to field for': 905770, 'field for harvesting': 304475, 'for harvesting and': 322122, 'harvesting and planting': 378651, 'and planting there': 69073, 'planting there are': 658770, 'there are too': 878179, 'are too few': 91138, 'too few trucker': 924739, 'few trucker to': 304119, 'trucker to keep': 932961, 'to keep good': 908796, 'keep good moving': 471557, 'good moving air': 357424, 'moving air freight': 544116, 'air freight capacity': 39741, 'freight capacity for': 332681, 'capacity for fresh': 162523, 'fresh produce ha': 333052, 'produce ha plummeted': 680286, 'ha plummeted plane': 371510, 'plummeted plane are': 661347, 'plane are grounded': 658377, 'are grounded more': 86970, 'grounded more on': 366575, 'more on how': 539921, 'on how coronavirus': 601390, 'coronavirus is upending': 206180, 'is upending food': 453591, 'upending food supply': 947507, 'unilaterally': 941781, 'istanbul': 456153, 'mamolu': 511956, 'decision made': 231054, 'made unilaterally': 508045, 'unilaterally only': 941782, 'only create': 610294, 'create more': 215689, 'more panic': 539981, 'confusion istanbul': 194388, 'istanbul mayor': 456154, 'mayor mamolu': 521972, 'mamolu said': 511957, 'not informed': 570145, 'informed in': 438103, 'advance about': 32889, 'government decision': 360012, 'to impose': 908191, 'impose 48': 419229, 'hour curfew': 405509, 'curfew to': 220937, 'announcement people': 77185, 'took to': 925365, 'decision made unilaterally': 231055, 'made unilaterally only': 508046, 'unilaterally only create': 941783, 'only create more': 610295, 'create more panic': 215694, 'more panic and': 539983, 'panic and confusion': 637304, 'and confusion istanbul': 60297, 'confusion istanbul mayor': 194389, 'istanbul mayor mamolu': 456155, 'mayor mamolu said': 521973, 'mamolu said he': 511958, 'said he wa': 731114, 'wa not informed': 962766, 'not informed in': 570146, 'informed in advance': 438104, 'in advance about': 420049, 'advance about the': 32890, 'about the government': 26405, 'the government decision': 856523, 'government decision to': 360013, 'decision to impose': 231105, 'to impose 48': 908192, 'impose 48 hour': 419230, '48 hour curfew': 19307, 'hour curfew to': 405512, 'curfew to contain': 220938, 'contain the coronavirus': 200495, 'the coronavirus after': 851801, 'coronavirus after the': 205469, 'the announcement people': 848759, 'announcement people took': 77186, 'people took to': 649989, 'took to the': 925366, 'to the street': 917101, 'the street to': 868254, 'street to buy': 813147, 'thought she': 893210, 'wa having': 962285, 'having fit': 384066, 'fit toiletpaper': 309503, 'thought she wa': 893212, 'she wa having': 756415, 'wa having fit': 962287, 'having fit toiletpaper': 384067, 'aryal': 94700, 'ensuing': 277872, 'aryal good': 94701, 'news we': 560952, 'can place': 159239, 'place an': 657304, 'consumer item': 197966, 'with company': 997700, 'company through': 191213, 'through interest': 894532, 'interest whether': 441430, 'is recently': 451342, 'recently set': 704146, 'up company': 944623, 'with view': 1001980, 'view to': 957175, 'making service': 511330, 'service available': 752165, 'to ease': 904847, 'ease lockout': 265088, 'lockout ensuing': 500525, 'ensuing after': 277873, 'aryal good news': 94702, 'good news we': 357465, 'news we can': 560953, 'we can place': 970987, 'can place an': 159240, 'place an order': 657307, 'order for consumer': 618225, 'for consumer item': 320270, 'consumer item with': 197970, 'item with company': 463837, 'with company through': 997705, 'company through interest': 191214, 'through interest whether': 894533, 'interest whether this': 441431, 'whether this is': 985597, 'this is recently': 888377, 'is recently set': 451343, 'recently set up': 704147, 'set up company': 753550, 'up company with': 944624, 'company with view': 191348, 'with view to': 1001981, 'view to making': 957176, 'to making service': 909779, 'making service available': 511331, 'service available in': 752167, 'available in government': 104441, 'in government effort': 423392, 'effort to ease': 269620, 'to ease lockout': 904851, 'ease lockout ensuing': 265089, 'lockout ensuing after': 500526, 'ensuing after the': 277874, '327': 17724, '841': 22887, '482': 19350, 'hospitalization': 404832, '574': 20510, '095': 1173, '427': 18938, 'optimistic': 613925, 'some encouraging': 782750, 'encouraging data': 275718, 'from governor': 335677, 'governor cuomo': 360891, 'cuomo daily': 220404, 'daily briefing': 224525, 'briefing daily': 139708, 'daily case': 224539, 'case 327': 165589, '327 down': 17725, '10 841': 1288, '841 and': 22888, '10 482': 1279, '482 bigger': 19351, 'bigger is': 130155, 'is new': 449883, 'new hospitalization': 558894, 'hospitalization 574': 404833, '574 095': 20511, '095 and': 1174, 'and 427': 57477, '427 ny': 18942, 'ny trend': 577923, 'than optimistic': 840987, 'optimistic case': 613929, 'some encouraging data': 782751, 'encouraging data from': 275719, 'data from governor': 226229, 'from governor cuomo': 335678, 'governor cuomo daily': 360893, 'cuomo daily briefing': 220405, 'daily briefing daily': 224527, 'briefing daily case': 139709, 'daily case 327': 224540, 'case 327 down': 165590, '327 down from': 17726, 'down from 10': 256785, 'from 10 841': 334162, '10 841 and': 1289, '841 and 10': 22889, 'and 10 482': 57343, '10 482 bigger': 1280, '482 bigger is': 19352, 'bigger is new': 130156, 'is new hospitalization': 449884, 'new hospitalization 574': 558895, 'hospitalization 574 095': 404834, '574 095 and': 20512, '095 and 427': 1175, 'and 427 ny': 57478, '427 ny trend': 18943, 'ny trend is': 577924, 'trend is better': 931379, 'better than optimistic': 128529, 'than optimistic case': 840988, 'comforting': 187900, 'got back': 358426, 'from weekly': 338325, 'weekly shopping': 977562, 'shopping one': 763396, 'few distraction': 303806, 'distraction sorry': 247911, 'sorry basic': 786013, 'basic need': 112007, 'in israel': 424216, 'israel semi': 455601, 'semi 19': 749604, 'very comforting': 955063, 'comforting to': 187909, 'so well': 778698, 'stocked respect': 803382, 'just got back': 468850, 'got back from': 358427, 'back from weekly': 107022, 'from weekly shopping': 338326, 'weekly shopping one': 977566, 'shopping one of': 763398, 'of the few': 591020, 'the few distraction': 855117, 'few distraction sorry': 303807, 'distraction sorry basic': 247912, 'sorry basic need': 786015, 'basic need are': 112008, 'need are still': 554473, 'still allowed in': 800182, 'allowed in israel': 46164, 'in israel semi': 424221, 'israel semi 19': 455602, 'semi 19 situation': 749605, '19 situation it': 10579, 'it is very': 459122, 'is very comforting': 453670, 'very comforting to': 955064, 'comforting to see': 187911, 'supermarket so well': 822747, 'so well stocked': 778700, 'well stocked respect': 978604, 'stocked respect for': 803383, 'respect for all': 714985, 'worker who make': 1008218, 'who make this': 989256, 'isn what': 454755, 'what plan': 982031, 'say today': 739399, 'about child': 24955, 'care he': 163983, 'he should': 385436, 'should delay': 765910, 'delay his': 232700, 'his speech': 397805, 'speech until': 788410, 'until he': 943734, 'he ready': 385332, 'to commit': 903080, 'to something': 914913, 'if this isn': 415159, 'this isn what': 888496, 'isn what plan': 454757, 'what plan to': 982032, 'plan to say': 658318, 'to say today': 913849, 'say today about': 739400, 'today about child': 919140, 'about child care': 24956, 'child care he': 176039, 'care he should': 163984, 'he should delay': 385438, 'should delay his': 765911, 'delay his speech': 232701, 'his speech until': 397807, 'speech until he': 788411, 'until he ready': 943736, 'he ready to': 385333, 'ready to commit': 700943, 'to commit to': 903084, 'commit to something': 188983, 'to something like': 914915, 'something like this': 784965, 'canibrands': 161364, 'echl': 266623, 'cleanse': 181164, 'canibrands donates': 161365, 'donates fund': 254391, 'the echl': 853869, 'echl player': 266624, 'player relief': 659331, 'fund lower': 341449, 'and launch': 65978, 'launch free': 481905, 'free can': 331699, 'can cleanse': 157912, 'cleanse external': 181165, 'external sanitizer': 293349, 'the read': 865199, 'canibrands donates fund': 161366, 'donates fund to': 254393, 'fund to the': 341531, 'to the echl': 916661, 'the echl player': 853870, 'echl player relief': 266625, 'player relief fund': 659332, 'relief fund lower': 709355, 'fund lower price': 341450, 'lower price and': 505952, 'price and launch': 672454, 'and launch free': 65979, 'launch free can': 481906, 'free can cleanse': 331700, 'can cleanse external': 157913, 'cleanse external sanitizer': 181166, 'external sanitizer to': 293350, 'sanitizer to help': 735929, 'help support the': 390617, 'support the community': 826863, 'the community during': 851272, 'during the read': 263180, 'the read more': 865200, 'upper': 947684, 'year is': 1014666, 'is 2020': 445183, '2020 you': 14739, 'and acquire': 57615, 'acquire toilet': 29163, 'new upper': 559810, 'upper class': 947685, 'the year is': 872161, 'year is 2020': 1014667, 'is 2020 you': 445184, '2020 you enter': 14740, 'you enter supermarket': 1018428, 'enter supermarket and': 278296, 'supermarket and acquire': 818924, 'and acquire toilet': 57616, 'acquire toilet paper': 29164, 'paper you are': 641125, 'the new upper': 861574, 'new upper class': 559811, 'seeing drop': 746272, 'in donation': 422357, 'donation from': 254610, 'store panicked': 809461, 'shopper leave': 761588, 'leave more': 484871, 'more shelf': 540375, 'shelf bare': 756862, 'bare it': 110912, 'in from': 423124, 'country everybody': 210624, 'are seeing drop': 89893, 'seeing drop in': 746273, 'drop in donation': 260238, 'in donation from': 422361, 'donation from local': 254613, 'from local grocery': 336253, 'grocery store panicked': 365638, 'store panicked shopper': 809462, 'panicked shopper leave': 639287, 'shopper leave more': 761591, 'leave more shelf': 484872, 'more shelf bare': 540376, 'shelf bare it': 756867, 'bare it isn': 110913, 'flood in from': 310709, 'in from across': 423125, 'the country everybody': 852074, 'country everybody is': 210625, 'oil fall': 596786, 'fall to': 297084, 'to lowest': 909517, '2003 23': 13587, '23 12': 15351, '12 analyst': 2819, 'analyst are': 57104, 'is possible': 450945, 'possible we': 665871, 'see negative': 745473, 'negative oil': 556806, 'price aramco': 672620, 'aramco will': 84002, 'will pay': 994385, 'pay you': 645245, 'take oil': 832397, 'oil fall to': 596787, 'fall to lowest': 297097, 'to lowest level': 909519, 'since 2003 23': 770442, '2003 23 12': 13588, '23 12 analyst': 15352, '12 analyst are': 2820, 'analyst are saying': 57106, 'it is possible': 459040, 'is possible we': 450953, 'possible we will': 665875, 'we will see': 973903, 'will see negative': 994786, 'see negative oil': 745474, 'negative oil price': 556807, 'oil price aramco': 597051, 'price aramco will': 672621, 'aramco will pay': 84003, 'will pay you': 994398, 'pay you to': 645251, 'you to take': 1021847, 'to take oil': 916213, 'greg': 363820, 'courtney': 212063, 'knoll': 476190, 'uia': 938120, 'adler': 32400, 'financial downturn': 306405, 'downturn will': 257821, 'have short': 382522, 'short long': 764645, 'personal consumer': 652811, 'finance our': 306247, 'panel ft': 637182, 'ft greg': 339344, 'greg brown': 363823, 'brown courtney': 141234, 'courtney knoll': 212066, 'knoll uia': 476191, 'uia investment': 938121, 'investment management': 444027, 'management dan': 512558, 'dan adler': 225520, 'adler explores': 32401, 'explores what': 292538, 'the financial downturn': 855214, 'financial downturn will': 306407, 'downturn will have': 257822, 'will have short': 993671, 'have short long': 382523, 'short long term': 764646, 'term effect on': 838133, 'effect on personal': 269092, 'on personal consumer': 602773, 'personal consumer finance': 652813, 'consumer finance our': 197483, 'finance our panel': 306248, 'our panel ft': 624242, 'panel ft greg': 637183, 'ft greg brown': 339345, 'greg brown courtney': 363824, 'brown courtney knoll': 141235, 'courtney knoll uia': 212067, 'knoll uia investment': 476192, 'uia investment management': 938122, 'investment management dan': 444028, 'management dan adler': 512559, 'dan adler explores': 225521, 'adler explores what': 32402, 'explores what this': 292540, 'resturaunts': 717466, 'taped': 834374, 'damn it': 225376, 'like some': 491210, 'some nyc': 783373, 'nyc resturaunts': 578040, 'resturaunts are': 717467, 'are raising': 89415, 'raising their': 696149, 've taped': 953625, 'taped the': 834381, 'original one': 619566, 'one over': 606812, 'with black': 997416, 'black tape': 132142, 'tape thus': 834372, 'thus isn': 895519, 'isn looking': 454588, 'looking good': 502924, 'good but': 356845, 'then again': 876973, 'again you': 37290, 'just probably': 469496, 'probably charged': 679236, 'charged for': 173376, 'your tip': 1026170, 'tip now': 898838, 'now quarantine': 575631, 'damn it look': 225378, 'look like some': 502510, 'like some nyc': 491213, 'some nyc resturaunts': 783374, 'nyc resturaunts are': 578041, 'resturaunts are raising': 717468, 'are raising their': 89419, 'raising their price': 696151, 'price they ve': 676903, 'they ve taped': 883688, 've taped the': 953626, 'taped the original': 834382, 'the original one': 862486, 'original one over': 619567, 'one over with': 606813, 'over with black': 630945, 'with black tape': 997419, 'black tape thus': 132143, 'tape thus isn': 834373, 'thus isn looking': 895520, 'isn looking good': 454589, 'looking good but': 502926, 'good but then': 356856, 'but then again': 147441, 'then again you': 876978, 'again you ve': 37294, 'you ve just': 1022047, 've just probably': 953303, 'just probably charged': 469497, 'probably charged for': 679237, 'charged for your': 173386, 'for your tip': 328221, 'your tip now': 1026171, 'tip now quarantine': 898839, 'with used': 1001931, 'used toiletpaper': 950109, 'toiletpaper roll': 922414, 'roll during': 725282, 'during with': 263417, 'the cat': 850511, 'do with used': 250576, 'with used toiletpaper': 1001932, 'used toiletpaper roll': 950111, 'toiletpaper roll during': 922415, 'roll during with': 725285, 'during with the': 263418, 'with the cat': 1001225, 'grey': 363871, 'bruce': 141318, 'honestly it': 403113, 'it didn': 457535, 'didn feel': 241058, 'feel real': 302814, 'real that': 701388, 'outbreak would': 628837, 'would reach': 1012162, 'reach grey': 699924, 'grey bruce': 363874, 'bruce now': 141321, 'ha with': 372486, 'with case': 997557, 'it making': 459521, 'me feel': 522714, 'more anxious': 538627, 'anxious and': 78835, 'scared daily': 740953, 'daily here': 224632, 'am working': 50573, 'at damn': 98406, 'because along': 118925, 'with pharmacy': 1000192, 'pharmacy others': 654411, 'honestly it didn': 403114, 'it didn feel': 457539, 'didn feel real': 241059, 'feel real that': 302815, 'real that the': 701389, '19 outbreak would': 9211, 'outbreak would reach': 628839, 'would reach grey': 1012163, 'reach grey bruce': 699925, 'grey bruce now': 363875, 'bruce now that': 141322, 'now that it': 576004, 'it ha with': 458421, 'ha with case': 372487, 'with case it': 997558, 'case it making': 165838, 'it making me': 459524, 'making me feel': 511196, 'me feel more': 522717, 'feel more anxious': 302778, 'more anxious and': 538629, 'anxious and scared': 78837, 'and scared daily': 71048, 'scared daily here': 740954, 'daily here am': 224633, 'here am working': 392678, 'am working at': 50574, 'working at damn': 1008519, 'at damn grocery': 98407, 'store because along': 806673, 'because along with': 118926, 'along with pharmacy': 47074, 'with pharmacy others': 1000193, 'pharmacy others have': 654412, 'others have been': 621443, 'asked to stay': 95879, 'mandating': 513025, 'poorly': 664376, 'inefficient': 436306, 'windfall': 995642, 'be case': 114016, 'case for': 165742, 'for mandating': 323192, 'mandating higher': 513026, 'to incentivize': 908240, 'incentivize greater': 431380, 'greater covid': 363164, 'testing but': 839461, 'the care': 850410, 'care act': 163814, 'act provision': 29746, 'provision is': 687272, 'is poorly': 450931, 'poorly targeted': 664396, 'targeted inefficient': 834548, 'inefficient in': 436309, 'that purpose': 845909, 'purpose could': 690110, 'could just': 209355, 'give windfall': 350840, 'windfall to': 995647, 'some unscrupulous': 784140, 'unscrupulous actor': 943448, 'there may be': 878754, 'may be case': 520957, 'be case for': 114017, 'case for mandating': 165744, 'for mandating higher': 323193, 'mandating higher price': 513027, 'higher price to': 395695, 'price to incentivize': 677003, 'to incentivize greater': 908241, 'incentivize greater covid': 431381, 'greater covid 19': 363165, '19 testing but': 11098, 'testing but the': 839462, 'but the care': 147315, 'the care act': 850411, 'care act provision': 163820, 'act provision is': 29747, 'provision is poorly': 687273, 'is poorly targeted': 450932, 'poorly targeted inefficient': 664397, 'targeted inefficient in': 834549, 'inefficient in that': 436310, 'in that purpose': 428930, 'that purpose could': 845910, 'purpose could just': 690111, 'could just give': 209357, 'just give windfall': 468813, 'give windfall to': 350841, 'windfall to some': 995648, 'to some unscrupulous': 914895, 'some unscrupulous actor': 784141, 'xenophobic': 1013825, 'clickbait': 181972, 'unsanitary': 943414, 'hey google': 394394, 'google what': 358205, 'fuck this': 339667, 'second xenophobic': 743878, 'xenophobic article': 1013826, 'article we': 94495, 'got recommended': 358815, 'recommended today': 704810, 'we definitely': 971254, 'definitely need': 232366, 'more clickbait': 538823, 'clickbait calling': 181973, 'calling asian': 156523, 'asian food': 95284, 'food disgusting': 314216, 'disgusting or': 245434, 'or unsanitary': 617600, 'unsanitary in': 943415, 'hey google what': 394395, 'google what the': 358206, 'actual fuck this': 30662, 'fuck this is': 339669, 'is the second': 452935, 'the second xenophobic': 866599, 'second xenophobic article': 743879, 'xenophobic article we': 1013828, 'article we got': 94497, 'we got recommended': 971676, 'got recommended today': 358816, 'recommended today because': 704811, 'because we definitely': 119797, 'we definitely need': 971255, 'definitely need more': 232367, 'need more clickbait': 555253, 'more clickbait calling': 538824, 'clickbait calling asian': 181974, 'calling asian food': 156524, 'asian food disgusting': 95286, 'food disgusting or': 314217, 'disgusting or unsanitary': 245435, 'or unsanitary in': 617601, 'unsanitary in the': 943416, 'midst of covid': 530781, 'lastinch': 480757, 'madeforcurves': 508086, 'plussizefashion': 661739, 'bodypositive': 133920, 'partweardresses': 642962, 'plussizeoutfit': 661742, 'plussizetops': 661745, 'outfitgoals': 628956, 'coronamemes': 205059, 'quarantine online': 692406, 'is best': 446137, 'best we': 127989, 'we launched': 972173, 'launched our': 482022, 'new collection': 558498, 'collection shop': 186470, 'now lastinch': 575180, 'lastinch madeforcurves': 480758, 'madeforcurves plussizefashion': 508087, 'plussizefashion bodypositive': 661740, 'bodypositive partweardresses': 133921, 'partweardresses plussizeoutfit': 642963, 'plussizeoutfit plussizetops': 661743, 'plussizetops outfitgoals': 661746, 'outfitgoals corona': 628957, 'corona coronamemes': 203883, 'bored in quarantine': 135353, 'in quarantine online': 427187, 'quarantine online shopping': 692407, 'shopping is best': 763037, 'is best we': 446147, 'best we launched': 127993, 'we launched our': 972174, 'launched our new': 482023, 'our new collection': 624025, 'new collection shop': 558499, 'collection shop now': 186471, 'shop now lastinch': 760517, 'now lastinch madeforcurves': 575181, 'lastinch madeforcurves plussizefashion': 480759, 'madeforcurves plussizefashion bodypositive': 508088, 'plussizefashion bodypositive partweardresses': 661741, 'bodypositive partweardresses plussizeoutfit': 133922, 'partweardresses plussizeoutfit plussizetops': 642964, 'plussizeoutfit plussizetops outfitgoals': 661744, 'plussizetops outfitgoals corona': 661747, 'outfitgoals corona coronamemes': 628958, 'there ha': 878450, 'an uptick': 56947, 'online fraud': 608261, 'fraud and': 331225, 'and phishing': 68988, 'phishing attack': 654798, 'attack related': 102144, 'be diligent': 114461, 'diligent and': 242869, 'scam that': 740395, 'commission informative': 188844, 'informative blog': 438063, 'post here': 666153, 'there ha been': 878452, 'ha been an': 369717, 'been an uptick': 120658, 'an uptick in': 56949, 'uptick in online': 947911, 'in online fraud': 426166, 'online fraud and': 608262, 'fraud and phishing': 331233, 'and phishing attack': 68989, 'phishing attack related': 654802, 'attack related to': 102145, 'related to coronavirus': 708599, 'to coronavirus covid': 903545, '19 please be': 9710, 'please be diligent': 659700, 'be diligent and': 114462, 'diligent and aware': 242871, 'and aware about': 58590, 'about the scam': 26511, 'the scam that': 866419, 'scam that are': 740396, 'that are taking': 842826, 'are taking place': 90730, 'taking place you': 833518, 'you can access': 1017612, 'access the federal': 28203, 'trade commission informative': 928448, 'commission informative blog': 188845, 'informative blog post': 438064, 'blog post here': 132988, 'steelworker': 799374, '220': 15260, 'the steelworker': 867867, 'steelworker humanity': 799375, 'humanity fund': 410730, 'fund donates': 341390, 'donates 220': 254379, '220 00': 15261, 'across canada': 29284, 'pandemic the steelworker': 636703, 'the steelworker humanity': 867868, 'steelworker humanity fund': 799376, 'humanity fund donates': 410731, 'fund donates 220': 341391, 'donates 220 00': 254380, '220 00 to': 15262, '00 to food': 542, 'to food bank': 906076, 'bank across canada': 109566, 'female': 303498, 'would some': 1012252, 'stop spitting': 805050, 'spitting in': 789591, 'public it': 688127, 'is disgusting': 447216, 'disgusting in': 245416, 'in last': 424598, 'last 10': 480083, 'day have': 227729, 'seen male': 747130, 'male and': 511683, 'and female': 62802, 'female spit': 303510, 'spit in': 789554, 'public and': 687844, 'one being': 605994, 'being outside': 125513, 'would some people': 1012253, 'some people please': 783530, 'people please stop': 649137, 'please stop spitting': 660588, 'stop spitting in': 805051, 'spitting in public': 789594, 'in public it': 427085, 'public it is': 688129, 'it is disgusting': 458933, 'is disgusting in': 447220, 'disgusting in last': 245417, 'in last 10': 424599, 'last 10 day': 480084, '10 day have': 1384, 'day have seen': 227734, 'have seen male': 382432, 'seen male and': 747131, 'male and female': 511684, 'and female spit': 62803, 'female spit in': 303511, 'spit in public': 789556, 'in public and': 427070, 'public and with': 687862, 'and with one': 75777, 'with one being': 999880, 'one being outside': 605995, 'being outside supermarket': 125514, 'outside supermarket stop': 629575, 'supermarket stop it': 822991, 'currently living': 221580, 'living made': 496411, 'made my': 507857, 'shopping last': 763136, 'weekend and': 977316, 'will pick': 994415, 'up tomorrow': 946465, 'tomorrow now': 924147, 'now ordering': 575483, 'ordering my': 618984, 'weekend pick': 977385, 'up socialdistancing': 946024, 'the time we': 869631, 'time we are': 898214, 'we are currently': 970518, 'are currently living': 85666, 'currently living made': 221581, 'living made my': 496412, 'made my online': 507863, 'my online grocery': 549579, 'grocery shopping last': 365046, 'shopping last weekend': 763139, 'last weekend and': 480700, 'weekend and will': 977318, 'and will pick': 75682, 'will pick up': 994417, 'pick up tomorrow': 655771, 'up tomorrow now': 946467, 'tomorrow now ordering': 924148, 'now ordering my': 575484, 'ordering my next': 618985, 'my next weekend': 549491, 'next weekend pick': 561711, 'weekend pick up': 977386, 'pick up socialdistancing': 655761, 'drain': 258205, 'harming': 378461, 'high oil': 395194, 'are bad': 84746, 'economy because': 267693, 'it raise': 460598, 'raise the': 695953, 'of shipping': 589595, 'shipping all': 758820, 'all good': 42973, 'it drain': 457700, 'drain american': 258206, 'american wallet': 52285, 'wallet high': 965219, 'help russia': 390471, 'arabia trump': 83953, 'is harming': 448315, 'harming american': 378462, 'help russian': 390473, 'russian republican': 728663, 'republican hate': 713033, 'hate america': 378862, 'america resist': 51659, 'high oil price': 395195, 'price are bad': 672636, 'are bad for': 84748, 'for the american': 326299, 'the american economy': 848629, 'american economy because': 51932, 'economy because it': 267694, 'because it raise': 119202, 'it raise the': 460599, 'raise the price': 695957, 'price of shipping': 675569, 'of shipping all': 589596, 'shipping all good': 758821, 'all good and': 42975, 'good and it': 356734, 'and it drain': 65517, 'it drain american': 457701, 'drain american wallet': 258207, 'american wallet high': 52286, 'wallet high oil': 965220, 'oil price help': 597158, 'price help russia': 674498, 'help russia and': 390472, 'russia and saudi': 728433, 'saudi arabia trump': 737222, 'arabia trump is': 83954, 'trump is harming': 933647, 'is harming american': 448316, 'harming american to': 378463, 'american to help': 52268, 'to help russian': 907615, 'help russian republican': 390474, 'russian republican hate': 728664, 'republican hate america': 713034, 'hate america resist': 378863, 'uk should': 938714, 'those shop': 892459, 'shop putting': 760693, 'uk should do': 938715, 'should do the': 765933, 'same to those': 733388, 'to those shop': 917521, 'those shop putting': 892463, 'shop putting up': 760695, 'up price due': 945811, 'ventolin': 954659, 'cried': 216742, 'buying ventolin': 151305, 'ventolin this': 954663, 'not help': 569922, 'you catch': 1017905, 'catch the': 167033, 'help breathing': 389430, 'breathing if': 139228, 'have pneumonia': 381990, 'pneumonia it': 662096, 'it help': 458536, 'help poor': 390335, 'poor bastard': 664122, 'bastard with': 112525, 'with asthma': 997325, 'asthma but': 97187, 'idiot buy': 413475, 'buy everything': 148594, 'everything and': 287681, 'it sold': 461158, 'out you': 627899, 're supposed': 699641, 'than that': 841207, 'that jesus': 844770, 'jesus cried': 465293, 'stop buying ventolin': 804552, 'buying ventolin this': 151307, 'ventolin this will': 954664, 'this will not': 891432, 'will not help': 994229, 'not help you': 569935, 'help you if': 390976, 'if you catch': 415407, 'you catch the': 1017908, 'catch the virus': 167038, 'virus it doesn': 958418, 'it doesn help': 457633, 'doesn help breathing': 251832, 'help breathing if': 389431, 'breathing if you': 139229, 'you have pneumonia': 1019092, 'have pneumonia it': 381991, 'pneumonia it help': 662098, 'it help poor': 458547, 'help poor bastard': 390336, 'poor bastard with': 664125, 'bastard with asthma': 112526, 'with asthma but': 997326, 'asthma but the': 97190, 'but the idiot': 147344, 'the idiot buy': 857838, 'idiot buy everything': 413476, 'buy everything and': 148595, 'everything and it': 287686, 'and it sold': 65585, 'it sold out': 461159, 'sold out you': 781758, 'out you re': 627904, 'you re supposed': 1020766, 're supposed to': 699642, 'to be better': 901129, 'better than that': 128537, 'than that jesus': 841211, 'that jesus cried': 844771, 'vitamin': 959759, 'soldoitofvitamins': 781833, 'selfishpeople': 748393, 'ha bought': 370023, 'the vitamin': 870931, 'vitamin ffs': 959774, 'ffs wth': 304332, 'wth is': 1013368, 'people humanity': 648308, 'humanity at': 410704, 'worst stock': 1011268, 'now vitamin': 576311, 'vitamin and': 959760, 'and supplement': 72760, 'supplement everyone': 824411, 'else they': 271915, 'all say': 44244, 'say soldoitofvitamins': 739152, 'soldoitofvitamins vitaminc': 781834, 'vitaminc panicbuying': 959826, 'panicbuying selfishpeople': 639043, 'now everyone ha': 574631, 'everyone ha bought': 286961, 'ha bought out': 370025, 'bought out all': 136671, 'all the vitamin': 44975, 'the vitamin ffs': 870933, 'vitamin ffs wth': 959775, 'ffs wth is': 304333, 'wth is wrong': 1013369, 'with people humanity': 1000154, 'people humanity at': 648309, 'humanity at it': 410705, 'it worst stock': 462560, 'worst stock piling': 1011269, 'piling food now': 656591, 'food now vitamin': 315574, 'now vitamin and': 576312, 'vitamin and supplement': 959763, 'and supplement everyone': 72761, 'supplement everyone else': 824412, 'everyone else they': 286882, 'else they all': 271916, 'they all say': 881121, 'all say soldoitofvitamins': 44245, 'say soldoitofvitamins vitaminc': 739153, 'soldoitofvitamins vitaminc panicbuying': 781835, 'vitaminc panicbuying selfishpeople': 959827, 'thk': 891665, 'most powerful': 542646, 'powerful story': 667803, 'story ve': 812148, 've read': 953474, 'read owner': 700528, 'small grocer': 774971, 'grocer market': 364141, 'in lower': 424952, 'lower 9th': 505786, '9th ward': 24031, 'ward take': 966650, 'own hard': 632050, 'hard hit': 377934, 'hit community': 398199, 'community despite': 189810, 'despite his': 238756, 'own struggle': 632238, 'struggle proud': 814368, 'of fellow': 583484, 'fellow american': 303263, 'american like': 52074, 'this thk': 890580, 'thk you': 891666, 'among the most': 53068, 'the most powerful': 861018, 'most powerful story': 542648, 'powerful story ve': 667804, 'story ve read': 812149, 've read owner': 953476, 'read owner of': 700529, 'owner of small': 632517, 'of small grocer': 589786, 'small grocer market': 774972, 'grocer market in': 364142, 'market in lower': 516561, 'in lower 9th': 424953, 'lower 9th ward': 505787, '9th ward take': 24033, 'ward take care': 966651, 'care of his': 164103, 'of his own': 584662, 'his own hard': 397675, 'own hard hit': 632051, 'hard hit community': 377937, 'hit community despite': 398200, 'community despite his': 189811, 'despite his own': 238757, 'his own struggle': 397680, 'own struggle proud': 632239, 'struggle proud of': 814369, 'proud of fellow': 686027, 'of fellow american': 583485, 'fellow american like': 303264, 'american like this': 52076, 'like this thk': 491541, 'this thk you': 890581, 'encouraged': 275649, 'sticking': 800098, 'deafandunarmed': 229325, 'if am': 413799, 'am being': 49934, 'being encouraged': 125105, 'encouraged to': 275661, 'wear bandana': 974292, 'bandana when': 109388, 'store wouldn': 811647, 'wouldn the': 1012508, 'themselves is': 876840, 'is she': 451835, 'she sticking': 756355, 'sticking up': 800113, 'store deafandunarmed': 807270, 'deafandunarmed saturdaythoughts': 229326, 'if am being': 413802, 'am being encouraged': 49936, 'being encouraged to': 125107, 'encouraged to wear': 275675, 'to wear bandana': 918423, 'wear bandana when': 974294, 'bandana when going': 109389, 'grocery store wouldn': 365974, 'store wouldn the': 811649, 'wouldn the worker': 1012511, 'the worker be': 871749, 'worker be asking': 1006499, 'asking themselves is': 96085, 'themselves is she': 876841, 'is she sticking': 451840, 'she sticking up': 756356, 'sticking up the': 800114, 'up the store': 946220, 'the store deafandunarmed': 868006, 'store deafandunarmed saturdaythoughts': 807271, 'internalized': 441740, 'yesterday went': 1015945, 'got annoyed': 358406, 'annoyed being': 77347, 'being around': 124858, 'around other': 93435, 'have internalized': 381107, 'internalized socialdistancing': 441741, 'socialdistancing so': 780695, 'much that': 545344, 'that wouldn': 847692, 'wouldn know': 1012487, 'to undo': 917925, 'undo it': 941017, 'yesterday went to': 1015946, 'went to buy': 979144, 'grocery and got': 364238, 'and got annoyed': 63843, 'got annoyed being': 358407, 'annoyed being around': 77348, 'being around other': 124859, 'around other people': 93437, 'other people in': 620673, 'people in grocery': 648379, 'store have internalized': 808087, 'have internalized socialdistancing': 381108, 'internalized socialdistancing so': 441742, 'socialdistancing so much': 780697, 'so much that': 777817, 'much that wouldn': 545349, 'that wouldn know': 847694, 'wouldn know how': 1012488, 'how to undo': 409104, 'to undo it': 917926, 'undo it once': 941018, 'once the lockdown': 605726, 'notgoingout': 572898, 'notgoingout shame': 572900, 'shame these': 754654, 'are this': 91049, 'not joke': 570198, 'joke just': 467101, 'just look': 469188, 'the horrendous': 857503, 'horrendous scene': 404084, 'scene in': 741330, 'italy do': 462814, 'want that': 965951, 'that here': 844321, 'notgoingout shame these': 572901, 'shame these idiot': 754655, 'these idiot are': 880141, 'idiot are this': 413458, 'are this is': 91052, 'is not joke': 450116, 'not joke just': 570199, 'joke just look': 467102, 'just look at': 469189, 'at the horrendous': 100980, 'the horrendous scene': 857504, 'horrendous scene in': 404085, 'scene in italy': 741331, 'in italy do': 424298, 'italy do you': 462815, 'you really want': 1020847, 'really want that': 702701, 'want that here': 965952, 'entertainer': 278537, 'athlete': 101753, 'let boycott': 486629, 'boycott celebrity': 137323, 'celebrity entertainer': 168882, 'entertainer and': 278538, 'and athlete': 58494, 'athlete why': 101775, 'why should': 991337, 'should they': 766581, 'make million': 510163, 'million while': 532419, 'while producing': 987174, 'producing little': 680775, 'of real': 588784, 'real value': 701441, 'value while': 952242, 'while grocery': 986886, 'clerk nurse': 181741, 'nurse teacher': 577494, 'officer are': 595632, 'hero who': 394165, 'keep society': 471950, 'running hollywood': 727974, 'let boycott celebrity': 486630, 'boycott celebrity entertainer': 137324, 'celebrity entertainer and': 168883, 'entertainer and athlete': 278539, 'and athlete why': 58495, 'athlete why should': 101776, 'why should they': 991343, 'should they make': 766585, 'they make million': 882649, 'make million while': 510167, 'million while producing': 532420, 'while producing little': 987175, 'producing little of': 680776, 'little of real': 495492, 'of real value': 588792, 'real value while': 701443, 'value while grocery': 952243, 'while grocery store': 986889, 'store clerk nurse': 807019, 'clerk nurse teacher': 181744, 'nurse teacher and': 577495, 'teacher and police': 835428, 'and police officer': 69161, 'police officer are': 663115, 'officer are the': 595634, 'are the real': 90892, 'real hero who': 701206, 'hero who keep': 394168, 'who keep society': 989154, 'keep society running': 471952, 'society running hollywood': 781302, 'bushey': 143148, 'fear bushey': 301069, 'bushey uk': 143149, 'supermarket amid fear': 818902, 'amid fear bushey': 52470, 'fear bushey uk': 301070, 'this surprise': 890449, 'me go': 522817, 'gone people': 356357, 'and yet': 75980, 'yet not': 1016168, 'mask buying': 518500, 'buying 200': 149838, '200 roll': 13540, 'paper will': 641097, 'not prevent': 571085, 'prevent you': 671767, 'you from': 1018706, 'catching take': 167109, 'take proper': 832527, 'this surprise me': 890450, 'surprise me go': 828537, 'me go to': 522820, 'supermarket and everything': 818974, 'and everything is': 62423, 'everything is gone': 287874, 'is gone people': 448120, 'gone people are': 356358, 'buying and yet': 149947, 'and yet not': 75989, 'yet not single': 1016170, 'not single person': 571599, 'single person wa': 771378, 'person wa wearing': 652694, 'wa wearing mask': 963678, 'wearing mask buying': 974686, 'mask buying 200': 518501, 'buying 200 roll': 149839, '200 roll of': 13541, 'toilet paper will': 921529, 'paper will not': 641099, 'will not prevent': 994253, 'not prevent you': 571086, 'prevent you from': 671768, 'you from catching': 1018710, 'from catching take': 334810, 'catching take proper': 167110, 'take proper precaution': 832529, 'precaution and stay': 669280, 'urine': 948465, 'cow urine': 214463, 'urine is': 948472, 'now national': 575335, 'national drink': 552481, 'drink of': 258864, 'india after': 434279, 'it demand': 457513, 'price increasing': 674805, 'cow urine is': 214467, 'urine is now': 948473, 'is now national': 450303, 'now national drink': 575336, 'national drink of': 552482, 'drink of india': 258866, 'of india after': 585098, 'india after covid': 434280, '19 it demand': 8128, 'it demand and': 457514, 'demand and price': 234992, 'and price increasing': 69457, 'rupee': 728181, 'introduced 200': 443414, '200 billion': 13455, 'billion rupee': 130911, 'rupee pipeline': 728192, 'pipeline investment': 656901, 'investment to': 444072, 'stabilize different': 791841, 'different economical': 241936, 'economical sector': 267378, 'sector the': 744350, 'the petrol': 863620, 'price cut': 673374, 'cut is': 223397, 'very significant': 955537, 'significant but': 769401, 'cannot entertain': 161783, 'entertain many': 278508, 'situation hope': 772307, 'hope are': 403422, 'still high': 800701, 'government ha introduced': 360154, 'ha introduced 200': 370990, 'introduced 200 billion': 443415, '200 billion rupee': 13456, 'billion rupee pipeline': 130912, 'rupee pipeline investment': 728193, 'pipeline investment to': 656902, 'investment to stabilize': 444075, 'to stabilize different': 915119, 'stabilize different economical': 791842, 'different economical sector': 241937, 'economical sector the': 267379, 'sector the petrol': 744352, 'the petrol price': 863622, 'petrol price cut': 653763, 'price cut is': 673377, 'cut is very': 223399, 'is very significant': 453697, 'very significant but': 955538, 'significant but it': 769402, 'it cannot entertain': 457050, 'cannot entertain many': 161784, 'entertain many people': 278509, 'many people of': 514523, '19 situation hope': 10577, 'situation hope are': 772308, 'hope are still': 403423, 'are still high': 90433, 'consistency': 195471, 'traveler are': 930617, 'for empathy': 321028, 'and consistency': 60327, 'consistency from': 195472, 'from brand': 334725, 'brand during': 137825, 'during hotel': 262698, 'traveler are looking': 930618, 'are looking for': 87883, 'looking for empathy': 502863, 'for empathy and': 321029, 'empathy and consistency': 273346, 'and consistency from': 60328, 'consistency from brand': 195473, 'from brand during': 334726, 'brand during hotel': 137828, 'so wrong': 778818, 'wrong that': 1013108, 'that airline': 842532, 'airline like': 39990, 'like do': 490125, 'not offer': 570721, 'offer cash': 594547, 'cash refund': 166317, 'refund we': 706986, 'are law': 87726, 'enforcement family': 276758, 'family it': 297962, 'is sad': 451604, 'sad when': 729282, 'not taken': 571914, 'taken into': 833015, 'into account': 442363, 'account we': 28775, 'cannot travel': 162189, 'travel due': 930343, 'and future': 63445, 'future ticket': 342477, 'ticket will': 895679, 'my current': 547866, 'current financial': 221200, 'financial situation': 306594, 'it so wrong': 461140, 'so wrong that': 778821, 'wrong that airline': 1013109, 'that airline like': 842533, 'airline like do': 39992, 'like do not': 490126, 'do not offer': 249789, 'not offer cash': 570722, 'offer cash refund': 594548, 'cash refund we': 166318, 'refund we are': 706987, 'we are law': 970606, 'are law enforcement': 87727, 'law enforcement family': 482269, 'enforcement family it': 276759, 'family it is': 297963, 'it is sad': 459066, 'is sad when': 451607, 'sad when the': 729283, 'consumer is not': 197938, 'is not taken': 450198, 'not taken into': 571918, 'taken into account': 833016, 'into account we': 442371, 'account we cannot': 28776, 'we cannot travel': 971088, 'cannot travel due': 162190, 'travel due to': 930344, 'to and future': 900504, 'and future ticket': 63450, 'future ticket will': 342479, 'ticket will not': 895681, 'not help my': 569929, 'help my current': 390122, 'my current financial': 547868, 'current financial situation': 221201, 'financial situation this': 306595, 'situation this is': 772518, 'routinely': 726546, 'erect': 280138, 'obstacle': 578709, 'advancement': 32941, 'pharma and': 654013, 'and med': 66863, 'med device': 525883, 'device maker': 239918, 'maker routinely': 510861, 'routinely erect': 726551, 'erect obstacle': 280139, 'obstacle to': 578710, 'to medical': 909991, 'medical advancement': 526031, 'advancement practicing': 32946, 'practicing their': 668758, 'own cruel': 631932, 'cruel selfish': 219677, 'selfish form': 748093, 'of catch': 581199, 'catch and': 166977, 'and kill': 65841, 'kill to': 474540, 'price profit': 676007, 'by keeping': 152983, 'keeping le': 472468, 'le expensive': 482949, 'expensive product': 291279, 'product drug': 681139, 'drug off': 261018, 'off market': 593964, 'pharma and med': 654014, 'and med device': 66864, 'med device maker': 525884, 'device maker routinely': 239919, 'maker routinely erect': 510862, 'routinely erect obstacle': 726552, 'erect obstacle to': 280140, 'obstacle to medical': 578711, 'to medical advancement': 909992, 'medical advancement practicing': 526032, 'advancement practicing their': 32947, 'practicing their own': 668759, 'their own cruel': 874166, 'own cruel selfish': 631933, 'cruel selfish form': 219678, 'selfish form of': 748094, 'form of catch': 329530, 'of catch and': 581200, 'catch and kill': 166979, 'and kill to': 65845, 'kill to hike': 474541, 'to hike price': 907763, 'hike price profit': 396269, 'price profit by': 676008, 'profit by keeping': 682691, 'by keeping le': 152985, 'keeping le expensive': 472469, 'le expensive product': 482950, 'expensive product drug': 291280, 'product drug off': 681140, 'drug off market': 261019, 'store doing': 807353, 'protect vulnerable': 685032, 'vulnerable employee': 960950, 'employee groceryworkers': 273899, 'what is your': 981738, 'is your grocery': 454149, 'grocery store doing': 365338, 'store doing to': 807357, 'to protect vulnerable': 912344, 'protect vulnerable employee': 685033, 'vulnerable employee groceryworkers': 960951, 'let hear': 486776, 'hear some': 387980, 'some word': 784223, 'word pick': 1004559, 'let hear some': 486778, 'hear some word': 387981, 'some word pick': 784226, 'word pick up': 1004560, 'demo': 236666, 'note from': 572728, 'area 51': 91907, '51 firework': 20203, 'firework about': 308275, 'unfortunately firework': 941598, 'firework retailer': 308281, 'considered non': 195311, 'notice wholesale': 573408, 'wholesale customer': 990432, 'customer please': 222693, 'contact the': 200218, 'information between': 437768, 'between and': 128712, 'and demo': 61190, 'demo day': 236667, 'day scheduled': 228314, 'scheduled planned': 741514, 'planned on': 658464, 'april 25': 83489, 'note from area': 572729, 'from area 51': 334583, 'area 51 firework': 91908, '51 firework about': 20204, 'firework about covid': 308276, '19 unfortunately firework': 11635, 'unfortunately firework retailer': 941599, 'firework retailer are': 308282, 'retailer are considered': 718991, 'are considered non': 85505, 'considered non essential': 195312, 'essential business and': 280838, 'business and will': 143340, 'further notice wholesale': 342121, 'notice wholesale customer': 573409, 'wholesale customer please': 990434, 'customer please contact': 222695, 'please contact the': 659843, 'contact the store': 200231, 'store for more': 807821, 'more information between': 539578, 'information between and': 437769, 'between and demo': 128715, 'and demo day': 61191, 'demo day scheduled': 236669, 'day scheduled planned': 228315, 'scheduled planned on': 741515, 'planned on april': 658465, 'on april 25': 599441, 'lol at': 500877, 'at verizon': 101441, 'verizon sending': 954826, 'sending me': 750043, 'me an': 522396, 'email about': 272094, 'they care': 881724, 'keeping me': 472476, 'me connected': 522588, 'not saying': 571442, 'saying one': 739654, 'one word': 607502, 'word about': 1004439, 'about relief': 26070, 'relief or': 709412, 'or help': 615624, 'in paying': 426558, 'paying their': 645500, 'their outrageous': 874148, 'outrageous price': 629329, 'lol at verizon': 500878, 'at verizon sending': 101442, 'verizon sending me': 954827, 'sending me an': 750044, 'me an email': 522397, 'an email about': 55653, 'email about how': 272096, 'about how they': 25479, 'how they care': 408912, 'they care about': 881726, 'care about keeping': 163793, 'about keeping me': 25617, 'keeping me connected': 472477, 'me connected during': 522589, '19 but not': 5517, 'but not saying': 146560, 'not saying one': 571445, 'saying one word': 739655, 'one word about': 607503, 'word about relief': 1004441, 'about relief or': 26072, 'relief or help': 709413, 'or help for': 615625, 'help for people': 389752, 'for people in': 324452, 'people in paying': 648415, 'in paying their': 426560, 'paying their outrageous': 645502, 'their outrageous price': 874149, 'outrageous price for': 629332, 'price for service': 674045, 'nepal': 557402, 'pitty': 657049, 'stocking stuff': 803599, 'like hell': 490416, 'but country': 145474, 'country like': 210860, 'like usa': 491702, 'usa the': 948757, 'the stuff': 868323, 'stuff whereas': 815253, 'whereas in': 985425, 'in nepal': 425804, 'nepal the': 557410, 'the merchant': 860491, 'merchant are': 528996, 'are hiding': 87143, 'hiding stuff': 394879, 'stuff making': 815124, 'fake shortage': 296705, 'money of': 536917, 'what pitty': 982029, 'pitty shame': 657050, 'ha hit all': 370877, 'hit all over': 398124, 'over the world': 630786, 'world and people': 1009284, 'people are stocking': 647091, 'are stocking stuff': 90518, 'stocking stuff like': 803600, 'stuff like hell': 815120, 'like hell but': 490417, 'hell but country': 388989, 'but country like': 145475, 'country like usa': 210865, 'like usa the': 491703, 'usa the grocery': 948758, 'store run out': 809930, 'run out the': 727768, 'out the stuff': 627425, 'the stuff whereas': 868337, 'stuff whereas in': 815254, 'whereas in nepal': 985428, 'in nepal the': 425806, 'nepal the merchant': 557411, 'the merchant are': 860492, 'merchant are hiding': 528997, 'are hiding stuff': 87145, 'hiding stuff making': 394880, 'stuff making fake': 815125, 'making fake shortage': 511063, 'fake shortage so': 296706, 'shortage so that': 765215, 'can make money': 158938, 'make money of': 510186, 'money of the': 536918, 'the pandemic what': 863153, 'pandemic what pitty': 636972, 'what pitty shame': 982030, 'legislator': 486009, 'marble': 515040, 'same legislator': 733139, 'legislator who': 486014, 'who demand': 988558, 'demand accountability': 234899, 'accountability from': 28792, 'on welfare': 605198, 'welfare or': 977961, 'stamp now': 793430, 'now appear': 574078, 'their marble': 873913, 'marble when': 515041, 'when legislator': 983684, 'legislator from': 486010, 'aisle demand': 40240, 'from corporation': 335032, 'corporation in': 207430, 'receive federal': 703474, 'federal bailouts': 301957, 'bailouts for': 108695, 'the same legislator': 866251, 'same legislator who': 733140, 'legislator who demand': 486015, 'who demand accountability': 988559, 'demand accountability from': 234900, 'accountability from people': 28794, 'from people on': 336886, 'people on welfare': 648980, 'on welfare or': 605199, 'welfare or food': 977962, 'or food stamp': 615349, 'food stamp now': 316738, 'stamp now appear': 793431, 'now appear to': 574079, 'to have lost': 907269, 'lost their marble': 503928, 'their marble when': 873914, 'marble when legislator': 515042, 'when legislator from': 983685, 'legislator from the': 486011, 'from the other': 337818, 'of the aisle': 590785, 'the aisle demand': 848519, 'aisle demand accountability': 40241, 'accountability from corporation': 28793, 'from corporation in': 335033, 'corporation in line': 207431, 'line to receive': 493492, 'to receive federal': 912917, 'receive federal bailouts': 703475, 'federal bailouts for': 301958, 'bailouts for covid': 108696, 'time money': 897219, 'everything greed': 287822, 'greed in': 363388, 'price during these': 673635, 'uncertain time money': 939622, 'time money is': 897220, 'money is not': 536847, 'is not everything': 450075, 'not everything greed': 569306, 'everything greed in': 287823, 'greed in the': 363389, 'revaluation': 720221, 'default': 232015, 'usmarket': 950808, 'dowjones': 256348, 'sp500': 787021, 'nasdaq': 551986, 'overpriced': 631383, 'ignore for': 415823, 'moment and': 535874, 'confidence sentiment': 193946, 'sentiment demand': 750915, 'market factor': 516370, 'factor in': 295883, 'in layoff': 424643, 'layoff revaluation': 482707, 'revaluation of': 720222, 'of balance': 580527, 'sheet debt': 756598, 'debt credit': 230458, 'and likely': 66158, 'likely default': 491981, 'default coming': 232016, 'coming usmarket': 188267, 'usmarket dowjones': 950811, 'dowjones sp500': 256351, 'sp500 nasdaq': 787026, 'nasdaq overpriced': 551993, 'overpriced by': 631390, '20 25': 12891, 'ignore for moment': 415824, 'for moment and': 323483, 'moment and look': 535875, 'at consumer confidence': 98316, 'consumer confidence sentiment': 196918, 'confidence sentiment demand': 193947, 'sentiment demand in': 750916, 'demand in the': 235679, 'the market factor': 860108, 'market factor in': 516372, 'factor in layoff': 295886, 'in layoff revaluation': 424644, 'layoff revaluation of': 482708, 'revaluation of balance': 720223, 'of balance sheet': 580528, 'balance sheet debt': 108984, 'sheet debt credit': 756599, 'debt credit and': 230459, 'credit and likely': 216307, 'and likely default': 66160, 'likely default coming': 491982, 'default coming usmarket': 232017, 'coming usmarket dowjones': 188268, 'usmarket dowjones sp500': 950812, 'dowjones sp500 nasdaq': 256352, 'sp500 nasdaq overpriced': 787027, 'nasdaq overpriced by': 551994, 'overpriced by 20': 631391, 'by 20 25': 151567, 'ru0xuahilf': 726904, 'the australian': 849057, 'the recession': 865333, 'recession that': 704373, 'that australia': 842890, 'entered relatively': 278370, 'relatively short': 708777, 'short recession': 764680, 'which unemployment': 986422, 'unemployment rise': 941286, 'around would': 93650, 'would probably': 1012119, 'probably only': 679350, 'only push': 611039, 'push price': 690311, 'price back': 672831, 'back by': 106917, 'by around': 151887, 'around or': 93433, 'so after': 776470, 'after which': 36532, 'which price': 986236, 'would rise': 1012197, 'rise co': 722809, 'co ru0xuahilf': 184953, 'opinion the australian': 613503, 'the australian property': 849064, 'australian property market': 103533, 'property market is': 684307, 'market is at': 516614, 'risk from the': 723572, 'from the recession': 337852, 'the recession that': 865341, 'recession that australia': 704374, 'that australia ha': 842891, 'australia ha entered': 103292, 'ha entered relatively': 370509, 'entered relatively short': 278371, 'relatively short recession': 708778, 'short recession in': 764681, 'recession in which': 704300, 'in which unemployment': 430872, 'which unemployment rise': 986423, 'unemployment rise to': 941287, 'rise to around': 723030, 'to around would': 900717, 'around would probably': 93651, 'would probably only': 1012121, 'probably only push': 679352, 'only push price': 611040, 'push price back': 690312, 'price back by': 672832, 'back by around': 106918, 'by around or': 151889, 'around or so': 93434, 'or so after': 617123, 'so after which': 776474, 'after which price': 36534, 'which price would': 986237, 'price would rise': 677664, 'would rise co': 1012198, 'rise co ru0xuahilf': 722810, 'heeded': 388757, 'stockpiled': 803823, 'dear my': 229837, 'symptom meaning': 830868, 'meaning self': 524832, 'isolating nh': 455130, 'nh website': 562164, 'website say': 975405, 'say not': 738992, 'shopping suggests': 764012, 'suggests online': 817699, 'delivery how': 234098, 've no': 953390, 've heeded': 953255, 'heeded the': 388758, 'the don': 853538, 'buy advice': 148273, 'advice so': 33500, 'haven stockpiled': 383906, 'stockpiled what': 803868, 'you suggest': 1021470, 'dear my partner': 229838, 'my partner ha': 549718, 'partner ha covid': 642826, '19 symptom meaning': 11019, 'symptom meaning self': 830869, 'meaning self isolating': 524833, 'self isolating nh': 747733, 'isolating nh website': 455131, 'nh website say': 562165, 'website say not': 975407, 'say not to': 738996, 'go shopping suggests': 354129, 'shopping suggests online': 764013, 'suggests online grocery': 817700, 'grocery delivery how': 364443, 'delivery how you': 234100, 'how you ve': 409291, 'you ve no': 1022053, 've no slot': 953392, 'available for week': 104388, 'for week we': 327762, 'we ve heeded': 973675, 've heeded the': 953256, 'heeded the don': 388759, 'the don panic': 853542, 'panic buy advice': 637460, 'buy advice so': 148274, 'advice so we': 33502, 'so we haven': 778671, 'we haven stockpiled': 971997, 'haven stockpiled what': 383910, 'stockpiled what do': 803869, 'do you suggest': 250684, 'coonavirus': 203091, 'outbreak major': 628432, 'are temporarily': 90761, 'closing it': 183669, 'unprecedented move': 943163, 'coronavirus fashion': 205909, 'fashion coonavirus': 299801, 'outbreak major retailer': 628433, 'major retailer are': 509441, 'retailer are temporarily': 719019, 'are temporarily closing': 90762, 'temporarily closing it': 837478, 'closing it store': 183675, 'it store in': 461291, 'store in an': 808267, 'in an unprecedented': 420333, 'an unprecedented move': 56891, 'unprecedented move to': 943165, 'move to prevent': 543763, 'the coronavirus fashion': 851847, 'coronavirus fashion coonavirus': 205910, 'haunted': 379033, 'turning corner': 935911, 'corner at': 203638, 'at haunted': 98857, 'haunted house': 379034, 'house via': 406653, 'via socialdistance': 956247, 'socialdistance groceryshopping': 780147, 'groceryshopping safetyfirst': 366274, 'safetyfirst staysafe': 730810, 'turning corner at': 935912, 'corner at supermarket': 203639, 'at supermarket like': 100743, 'supermarket like at': 821311, 'like at haunted': 489842, 'at haunted house': 98858, 'haunted house via': 379035, 'house via socialdistance': 406656, 'via socialdistance groceryshopping': 956248, 'socialdistance groceryshopping safetyfirst': 780148, 'groceryshopping safetyfirst staysafe': 366275, '401k': 18794, 'liveliho': 496188, 'for pointing': 324599, 'pointing this': 662755, 'out wa': 627774, 'wa working': 963726, 'industry when': 436231, 'this started': 890297, 'started and': 794681, 'and between': 58921, 'between killing': 128816, 'price am': 672298, 'am now': 50260, 'now laid': 575178, 'off it': 593936, 'our 401k': 622003, '401k it': 18795, 'the liveliho': 859507, 'you for pointing': 1018660, 'for pointing this': 324600, 'pointing this out': 662756, 'this out wa': 889316, 'out wa working': 627775, 'wa working in': 963732, 'gas industry when': 343881, 'industry when this': 436233, 'when this started': 984311, 'this started and': 890298, 'started and between': 794682, 'and between killing': 58922, 'between killing the': 128817, 'killing the stock': 474719, 'stock market and': 802378, 'market and global': 515968, 'and global oil': 63697, 'oil price am': 597044, 'price am now': 672300, 'am now laid': 50263, 'now laid off': 575179, 'laid off it': 479023, 'off it not': 593938, 'not just about': 570210, 'just about our': 468136, 'about our 401k': 25884, 'our 401k it': 622004, '401k it about': 18796, 'about the liveliho': 26437, 'slept': 773844, 'working today': 1009005, 'today can': 919359, 'say where': 739479, 'where due': 984846, 'to legal': 909175, 'legal reason': 485889, 'reason let': 702954, 'let just': 486836, 'say supermarket': 739190, 'wa feeling': 962112, 'feeling very': 303098, 'very down': 955132, 'down slept': 257190, 'slept only': 773847, 'only four': 610483, 'four hour': 330611, 'hour last': 405723, 'night lady': 563024, 'lady came': 478746, 'came and': 156969, 'said sir': 731355, 'sir thank': 771650, 'service everyone': 752349, 'is sitting': 451942, 'and uklockdownnow': 74577, 'wa working today': 963734, 'working today can': 1009007, 'today can say': 919361, 'can say where': 159519, 'say where due': 739481, 'where due to': 984847, 'due to legal': 261845, 'to legal reason': 909176, 'legal reason let': 485890, 'reason let just': 702955, 'let just say': 486838, 'just say supermarket': 469701, 'say supermarket wa': 739194, 'supermarket wa feeling': 823696, 'wa feeling very': 962113, 'feeling very down': 303100, 'very down slept': 955133, 'down slept only': 257191, 'slept only four': 773848, 'only four hour': 610484, 'four hour last': 330612, 'hour last night': 405724, 'last night lady': 480381, 'night lady came': 563025, 'lady came and': 478747, 'came and said': 156971, 'and said sir': 70774, 'said sir thank': 731356, 'sir thank you': 771651, 'your service everyone': 1025730, 'service everyone is': 752350, 'everyone is sitting': 287110, 'is sitting at': 451943, 'home and uklockdownnow': 400708, 'powertalk': 667844, 'be clear': 114100, 'clear there': 181366, 'buying just': 150618, 'just selfish': 469751, 'selfish pig': 748222, 'pig who': 656461, 'only think': 611327, 'about themselves': 26602, 'themselves why': 876943, 'earth would': 265022, 'buy disinfectant': 148537, 'disinfectant in': 245687, 'bulk where': 142369, 'hell would': 389097, 'would others': 1012097, 'others get': 621428, 'from why': 338377, 'why buy': 990852, 'you own': 1020268, 'store powertalk': 809622, 'let all be': 486549, 'all be clear': 42127, 'be clear there': 114103, 'clear there is': 181367, 'is no panic': 449956, 'panic buying just': 637782, 'buying just selfish': 150621, 'just selfish pig': 469752, 'selfish pig who': 748224, 'pig who only': 656462, 'who only think': 989380, 'only think about': 611328, 'think about themselves': 885105, 'about themselves why': 26604, 'themselves why on': 876946, 'on earth would': 600478, 'earth would you': 265024, 'would you buy': 1012405, 'you buy disinfectant': 1017565, 'buy disinfectant in': 148538, 'disinfectant in bulk': 245688, 'in bulk where': 421051, 'bulk where the': 142370, 'where the hell': 985233, 'the hell would': 857255, 'hell would others': 389098, 'would others get': 1012098, 'others get them': 621430, 'get them from': 348360, 'them from why': 875762, 'from why buy': 338378, 'why buy so': 990853, 'so much food': 777775, 'much food if': 544903, 'if you own': 415491, 'you own retail': 1020272, 'retail store powertalk': 718684, 'supermarket get': 820487, 'get green': 347150, 'green light': 363681, 'light to': 489611, 'restock 24': 716858, '24 covid': 15584, 'case rise': 165987, 'queensland supermarket get': 693412, 'supermarket get green': 820488, 'get green light': 347151, 'green light to': 363682, 'light to restock': 489613, 'to restock 24': 913398, 'restock 24 covid': 716859, '24 covid 19': 15585, '19 case rise': 5698, 'california launch': 155530, 'launch new': 481924, 'comprehensive consumer': 192628, 'consumer friendly': 197541, 'public service': 688298, 'service announcement': 752120, 'boost covid': 134936, '19 awareness': 5280, 'awareness latest': 105698, 'news concerning': 560321, 'california launch new': 155531, 'launch new comprehensive': 481925, 'new comprehensive consumer': 558505, 'comprehensive consumer friendly': 192630, 'consumer friendly website': 197551, 'friendly website and': 334020, 'website and public': 975204, 'and public service': 69746, 'public service announcement': 688301, 'service announcement to': 752127, 'announcement to boost': 77216, 'to boost covid': 901914, 'boost covid 19': 134937, 'covid 19 awareness': 212670, '19 awareness latest': 5281, 'awareness latest coronavirus': 105699, 'latest coronavirus news': 481273, 'coronavirus news concerning': 206317, 'news concerning the': 560322, 'concerning the state': 193253, 'featured': 301568, 'furniture': 341952, 'elpasostrong': 271603, 'wesupportlocal': 980726, 'today featured': 919513, 'featured business': 301569, 'business the': 144495, 'the furniture': 856055, 'furniture outlet': 341962, 'outlet we': 629074, 'we combat': 971142, 'pandemic support': 636602, 'business by': 143476, 'free no': 331999, 'no contact': 563886, 'contact curbside': 200057, 'curbside delivery': 220618, 'delivery visit': 234718, 'to view': 918168, 'view their': 957173, 'their great': 873434, 'price elpasostrong': 673670, 'elpasostrong wesupportlocal': 271606, 'today featured business': 919514, 'featured business the': 301570, 'business the furniture': 144499, 'the furniture outlet': 856056, 'furniture outlet we': 341963, 'outlet we combat': 629076, 'we combat the': 971144, 'combat the covid': 187050, '19 pandemic support': 9487, 'pandemic support our': 636604, 'local business by': 497758, 'business by shopping': 143480, 'online for free': 608226, 'for free no': 321721, 'free no contact': 332000, 'no contact curbside': 563888, 'contact curbside delivery': 200058, 'curbside delivery visit': 220622, 'delivery visit to': 234719, 'visit to view': 959419, 'to view their': 918177, 'view their great': 957174, 'their great price': 873435, 'great price elpasostrong': 362911, 'price elpasostrong wesupportlocal': 673671, 'pulled': 688905, 'just saw': 469683, 'saw semi': 738234, 'semi truck': 749626, 'truck pulled': 932842, 'pulled over': 688920, 'over to': 630831, 'the side': 867158, 'road and': 724399, 'the driver': 853692, 'driver wa': 259830, 'wa running': 963122, 'running to': 728114, 'street with': 813182, 'for waiting': 327607, 'waiting car': 964300, 'car stealing': 163293, 'just saw semi': 469689, 'saw semi truck': 738235, 'semi truck pulled': 749628, 'truck pulled over': 932843, 'pulled over to': 688921, 'over to the': 630843, 'to the side': 917067, 'the side of': 867160, 'of the road': 591424, 'the road and': 865918, 'road and the': 724403, 'and the driver': 73335, 'the driver wa': 853701, 'driver wa running': 259831, 'wa running to': 963126, 'running to the': 728118, 'to the other': 916929, 'of the street': 591502, 'the street with': 868259, 'street with toilet': 813183, 'paper for waiting': 640190, 'for waiting car': 327608, 'waiting car stealing': 964301, 'car stealing toiletpaper': 163294, 'childcare': 176285, 'juggle': 467710, 'shuttered': 768201, 'vtequalpayday': 960780, 'some worker': 784229, 'home pay': 401824, 'for childcare': 320063, 'childcare and': 176286, 'are pushed': 89338, 'wage hourly': 963895, 'hourly job': 406131, 'and must': 67341, 'must juggle': 546741, 'juggle childcare': 467711, 'childcare for': 176292, 'child released': 176188, 'released from': 709038, 'from shuttered': 337288, 'shuttered school': 768214, 'school vtequalpayday': 741968, 'some worker are': 784230, 'worker are able': 1006364, 'from home pay': 335892, 'home pay for': 401826, 'pay for childcare': 644870, 'for childcare and': 320064, 'childcare and stock': 176289, 'on food others': 600893, 'food others are': 315699, 'others are pushed': 621274, 'are pushed out': 89340, 'out of low': 626777, 'of low wage': 586048, 'low wage hourly': 505729, 'wage hourly job': 963896, 'hourly job because': 406132, 'because of social': 119405, 'distancing and must': 246979, 'and must juggle': 67344, 'must juggle childcare': 546742, 'juggle childcare for': 467712, 'childcare for child': 176294, 'for child released': 320058, 'child released from': 176189, 'released from shuttered': 709039, 'from shuttered school': 337289, 'shuttered school vtequalpayday': 768216, 'topical': 925826, 'ict': 412827, 'excel': 289054, 'oversee': 631493, 'very topical': 955618, 'topical task': 925829, 'task for': 834675, 'of remote': 588922, 'learning 3rd': 484172, '3rd year': 18459, 'year ict': 1014640, 'ict had': 412828, 'use excel': 949198, 'excel to': 289055, 'to oversee': 911313, 'oversee panic': 631496, 'supermarket result': 822228, 'very topical task': 955619, 'topical task for': 925830, 'task for the': 834676, 'the first day': 855296, 'day of remote': 228095, 'of remote learning': 588925, 'remote learning 3rd': 710712, 'learning 3rd year': 484173, '3rd year ict': 18460, 'year ict had': 1014641, 'ict had to': 412829, 'had to use': 373738, 'to use excel': 918027, 'use excel to': 949199, 'excel to oversee': 289056, 'to oversee panic': 911315, 'oversee panic buying': 631497, 'buying at supermarket': 149971, 'at supermarket result': 100763, 'supermarket result of': 822229, 'see once': 745501, 'public are': 687866, 'to clear': 902827, 'clear instruction': 181273, 'instruction in': 440558, 'most stupid': 542783, 'stupid way': 815490, 'way imaginable': 969650, 'imaginable dont': 416670, 'supermarket sweep': 823077, 'sweep social': 830160, 'distancing let': 247281, 'all head': 43071, 'head for': 385742, 'the park': 863287, 'park and': 641857, 'and beach': 58775, 'see once again': 745502, 'once again the': 605579, 'again the great': 37209, 'great british public': 362542, 'british public are': 140576, 'public are responding': 687869, 'responding to clear': 715582, 'to clear instruction': 902830, 'clear instruction in': 181274, 'instruction in the': 440560, 'the most stupid': 861042, 'most stupid way': 542784, 'stupid way imaginable': 815491, 'way imaginable dont': 969651, 'imaginable dont panic': 416671, 'panic buy it': 637494, 'buy it time': 148865, 'time for supermarket': 896760, 'for supermarket sweep': 326028, 'supermarket sweep social': 823105, 'sweep social distancing': 830161, 'social distancing let': 779648, 'distancing let all': 247282, 'let all head': 486560, 'all head for': 43072, 'head for the': 385743, 'for the park': 326612, 'the park and': 863288, 'park and beach': 641858, 'between 60': 128689, '60 to': 21025, 'is driven': 447377, 'driven by': 259274, 'between 60 to': 128690, '60 to 70': 21026, 'to 70 of': 899814, 'economy is driven': 268001, 'is driven by': 447378, 'driven by consumer': 259275, 'if funeral': 414136, 'director reduced': 243662, 'who died': 988599, 'their business': 872672, 'affected during': 34347, 'during or': 262833, 'or after': 614271, 'nice if funeral': 562419, 'if funeral director': 414137, 'funeral director reduced': 341664, 'director reduced their': 243663, 'reduced their price': 706191, 'their price for': 874397, 'price for those': 674067, 'those who died': 892628, 'who died from': 988602, 'it not if': 459887, 'not if their': 570052, 'if their business': 415053, 'their business will': 872695, 'will be affected': 992346, 'be affected during': 113513, 'affected during or': 34348, 'during or after': 262834, 'or after this': 614275, 'after this pandemic': 36410, 'valid': 951905, 'spain if': 787304, 'leave your': 485052, 'house without': 406698, 'without valid': 1003023, 'valid reason': 951914, 'reason ie': 702935, 'ie to': 413749, 'food supermarket': 316909, 'pharmacy there': 654506, 'there 600': 877945, '600 fine': 21085, 'fine per': 307682, 'person coronacrisis': 652374, 'in spain if': 428173, 'spain if you': 787305, 'if you leave': 415461, 'you leave your': 1019579, 'leave your house': 485054, 'your house without': 1024424, 'house without valid': 406702, 'without valid reason': 1003024, 'valid reason ie': 951915, 'reason ie to': 702936, 'ie to get': 413750, 'get food supermarket': 347067, 'food supermarket or': 316912, 'supermarket or pharmacy': 821829, 'or pharmacy there': 616584, 'pharmacy there 600': 654507, 'there 600 fine': 877946, '600 fine per': 21086, 'fine per person': 307683, 'per person coronacrisis': 650973, 'disgrace': 245304, 'forgive': 329367, 'mikeashley': 531289, 'boycottsportsdirect': 137395, 'be shopping': 117149, 'at ever': 98561, 'again if': 37031, 'news being': 560270, 'around of': 93423, 'price hiking': 674542, 'hiking in': 396379, 'there store': 879109, 'true marking': 933131, 'marking up': 517922, 'while britain': 986660, 'britain go': 140404, 'into meltdown': 442751, 'meltdown with': 527984, 'is disgrace': 447211, 'disgrace this': 245317, 'one company': 606082, 'cannot forgive': 161860, 'forgive mikeashley': 329370, 'mikeashley boycottsportsdirect': 531290, 'not be shopping': 568452, 'be shopping at': 117150, 'shopping at ever': 762094, 'at ever again': 98562, 'ever again if': 285189, 'again if the': 37034, 'if the news': 415004, 'the news being': 861604, 'news being spread': 560271, 'being spread around': 125846, 'spread around of': 790432, 'around of price': 93424, 'of price hiking': 588407, 'price hiking in': 674544, 'hiking in all': 396380, 'in all there': 420187, 'all there store': 45018, 'there store is': 879111, 'store is true': 808542, 'is true marking': 453368, 'true marking up': 933132, 'marking up price': 517923, 'up price while': 945843, 'price while britain': 677518, 'while britain go': 986661, 'britain go into': 140405, 'go into meltdown': 353757, 'into meltdown with': 442752, 'meltdown with is': 527985, 'with is disgrace': 999047, 'is disgrace this': 447213, 'disgrace this is': 245318, 'is one company': 450501, 'one company cannot': 606084, 'company cannot forgive': 190536, 'cannot forgive mikeashley': 161861, 'forgive mikeashley boycottsportsdirect': 329371, 'think shop': 885535, 'stop selling': 804989, 'selling to': 749503, 'buying once': 150811, 'once your': 605825, 'grocery look': 364707, 'whole village': 990369, 'village your': 957391, 'your total': 1026187, 'total purchase': 926230, 'purchase should': 689653, 'be cancelled': 113966, 'cancelled we': 161191, 'others at': 621289, 'point stoppanicbuying': 662633, 'think shop should': 885536, 'shop should stop': 760784, 'should stop selling': 766522, 'stop selling to': 804995, 'selling to people': 749505, 'to people who': 911646, 'panic buying once': 637829, 'buying once your': 150812, 'once your grocery': 605826, 'your grocery look': 1024128, 'grocery look like': 364708, 'look like you': 502532, 'like you are': 491868, 'you are buying': 1017080, 'are buying for': 85119, 'buying for whole': 150363, 'for whole village': 327866, 'whole village your': 990370, 'village your total': 957393, 'your total purchase': 1026188, 'total purchase should': 926231, 'purchase should be': 689654, 'should be cancelled': 765579, 'be cancelled we': 113969, 'cancelled we have': 161192, 'have to think': 383321, 'of others at': 587384, 'others at this': 621295, 'this point stoppanicbuying': 889645, 'mailman': 508703, 'also think': 49001, 'just approved': 468212, 'approved 25': 83125, '00 for': 206, 'working it': 1008747, 'it considered': 457273, 'considered hazard': 195298, 'if read': 414715, 'correctly so': 207606, 'if are': 413873, 'are workin': 91681, 'or mailman': 616030, 'mailman anything': 508706, 'anything pretty': 80867, 'put ur': 690973, 'ur heath': 948013, 'heath at': 388508, 'risk cause': 723460, '19 al': 4879, 'also think they': 49004, 'think they just': 885682, 'they just approved': 882487, 'just approved 25': 468213, 'approved 25 00': 83126, '25 00 for': 15790, '00 for people': 213, 'for people that': 324465, 'people that are': 649751, 'are working it': 91702, 'working it considered': 1008748, 'it considered hazard': 457274, 'considered hazard pay': 195299, 'pay if read': 644949, 'if read it': 414716, 'read it correctly': 700383, 'it correctly so': 457340, 'correctly so if': 207607, 'so if are': 777351, 'if are workin': 413874, 'are workin at': 91682, 'workin at grocery': 1008453, 'store or mailman': 809345, 'or mailman anything': 616031, 'mailman anything pretty': 508707, 'anything pretty much': 80868, 'pretty much that': 671463, 'much that put': 545347, 'that put ur': 845916, 'put ur heath': 690974, 'ur heath at': 948014, 'heath at risk': 388509, 'at risk cause': 100347, 'risk cause of': 723461, 'covid 19 al': 212603, 'biggest mall': 130269, 'mall in': 511788, 'area is': 92079, 'at is': 99307, 'open retail': 612487, 'the biggest mall': 849661, 'biggest mall in': 130270, 'mall in my': 511791, 'my area is': 547297, 'area is closed': 92082, 'is closed yet': 446597, 'closed yet the': 183455, 'the store work': 868149, 'store work at': 811439, 'work at is': 1004878, 'at is still': 99310, 'is still open': 452298, 'still open retail': 800972, 'potentially': 667181, 'webcam': 974967, 'bestbuy': 128012, 'videoconferencing': 956986, 'anyone know': 80398, 'where potentially': 985123, 'potentially still': 667248, 'still could': 800406, 'get webcam': 348607, 'webcam selling': 974970, 'selling price': 749410, 'amazon are': 50866, 'are horrendous': 87235, 'horrendous right': 404082, 'now not': 575371, 'much available': 544744, 'available same': 104577, 'with bestbuy': 997392, 'bestbuy target': 128021, 'target any': 834438, 'option socialdistancing': 614093, 'socialdistancing videoconferencing': 780840, 'doe anyone know': 251339, 'anyone know where': 80406, 'know where potentially': 477016, 'where potentially still': 985124, 'potentially still could': 667249, 'still could get': 800407, 'could get webcam': 209211, 'get webcam selling': 348608, 'webcam selling price': 974971, 'selling price on': 749413, 'on amazon are': 599272, 'amazon are horrendous': 50867, 'are horrendous right': 87236, 'horrendous right now': 404083, 'right now not': 722108, 'now not much': 575375, 'not much available': 570606, 'much available same': 544745, 'available same with': 104578, 'same with bestbuy': 733424, 'with bestbuy target': 997393, 'bestbuy target any': 128022, 'target any other': 834439, 'any other option': 79597, 'other option socialdistancing': 620619, 'option socialdistancing videoconferencing': 614094, 'happy first': 377615, 'first birthday': 308545, 'birthday jack': 131440, 'happy first birthday': 377616, 'first birthday jack': 308546, 'moven': 543959, 'fintech moven': 308027, 'moven shuts': 543960, 'shuts all': 768174, 'all consumer': 42424, 'consumer account': 196004, 'account pivot': 28743, 'pivot to': 657101, 'to b2b': 900971, 'b2b only': 106466, 'only service': 611105, 'for bank': 319574, 'bank banking': 109671, 'banking funding': 110429, 'fintech moven shuts': 308028, 'moven shuts all': 543961, 'shuts all consumer': 768175, 'all consumer account': 42425, 'consumer account pivot': 196005, 'account pivot to': 28744, 'pivot to b2b': 657102, 'to b2b only': 900972, 'b2b only service': 106467, 'only service for': 611106, 'service for bank': 752375, 'for bank banking': 319575, 'bank banking funding': 109672, 'hey like': 394451, 'to highlight': 907748, 'is stepping': 452255, 'in austin': 420584, 'austin and': 103173, 'around tx': 93609, 'tx to': 937457, 'keep food': 471512, 'they more': 882690, 'than grocery': 840712, 'texas they': 839842, 're family': 698667, 'family heb': 297890, 'hey like to': 394452, 'like to highlight': 491597, 'to highlight how': 907752, 'highlight how is': 395925, 'how is stepping': 408110, 'is stepping up': 452257, 'stepping up to': 799821, 'up to help': 946385, 'help the local': 390662, 'the local community': 859538, 'local community in': 497840, 'community in austin': 189912, 'in austin and': 420585, 'austin and around': 103175, 'and around tx': 58400, 'around tx to': 93610, 'tx to keep': 937459, 'to keep food': 908788, 'keep food on': 471516, 'the shelf they': 866892, 'shelf they more': 757672, 'they more than': 882691, 'more than grocery': 540625, 'than grocery store': 840713, 'grocery store here': 365462, 'in texas they': 428894, 'texas they re': 839844, 'they re family': 883033, 're family heb': 698668, 'can uv': 160113, 'question on': 693670, 'on coronavirus': 600118, 'coronavirus answered': 205507, 'answered consumer': 78166, 'can uv light': 160114, 'uv light kill': 951476, 'light kill your': 489543, 'kill your question': 474557, 'your question on': 1025502, 'question on coronavirus': 693672, 'on coronavirus answered': 600120, 'coronavirus answered consumer': 205508, 'answered consumer report': 78168, 'gained': 342843, 'warming': 966898, 'market gained': 516453, 'gained tuesday': 342862, 'tuesday with': 935205, 'with investor': 999035, 'investor warming': 444224, 'warming to': 966907, 'that world': 847666, 'world main': 1009773, 'main oil': 508781, 'at meeting': 99720, 'meeting on': 527735, 'thursday in': 895387, 'of dramatic': 582813, 'oil market gained': 596945, 'market gained tuesday': 516454, 'gained tuesday with': 342863, 'tuesday with investor': 935206, 'with investor warming': 999037, 'investor warming to': 444225, 'warming to the': 966908, 'to the idea': 916792, 'the idea that': 857828, 'idea that world': 413185, 'that world main': 847669, 'world main oil': 1009774, 'main oil producer': 508782, 'agree to cut': 38659, 'cut output at': 223469, 'output at meeting': 629234, 'at meeting on': 99722, 'meeting on thursday': 527738, 'on thursday in': 604671, 'thursday in the': 895388, 'wake of dramatic': 964597, 'of dramatic fall': 582814, 'in price caused': 426955, 'toddler': 920611, 'dear person': 229845, 'who asked': 988276, 'asked me': 95790, 'wipe are': 996196, 'are if': 87290, 'need baby': 554509, 'wipe it': 996307, 'that explain': 843797, 'explain why': 292130, 'find wipe': 307395, 'my toddler': 550388, 'toddler stoppanicbuying': 920624, 'dear person who': 229846, 'person who asked': 652718, 'who asked me': 988277, 'asked me where': 95794, 'where the baby': 985217, 'the baby wipe': 849138, 'baby wipe are': 106734, 'wipe are if': 996197, 'are if you': 87292, 'have to ask': 383158, 'to ask you': 900768, 'ask you do': 95674, 'not need baby': 570655, 'need baby wipe': 554511, 'baby wipe it': 106740, 'wipe it people': 996308, 'it people like': 460295, 'people like you': 648657, 'like you that': 491880, 'you that explain': 1021569, 'that explain why': 843798, 'explain why cannot': 292131, 'why cannot find': 990872, 'cannot find wipe': 161855, 'find wipe for': 307396, 'wipe for my': 996264, 'for my toddler': 323755, 'my toddler stoppanicbuying': 550389, 'emarsys': 272414, 'gooddata': 358007, 'demonstrates': 236852, 'sheltering': 757971, 'emarsys and': 272415, 'and gooddata': 63836, 'gooddata up': 358008, 'date interactive': 226669, 'map and': 514921, 'commerce insight': 188575, 'insight tracking': 439651, 'tracking show': 928359, 'show revenue': 767114, 'revenue up': 720489, 'up 37': 944164, '37 and': 18067, 'and order': 68242, 'order up': 618732, 'up 54': 944189, '54 and': 20317, 'and demonstrates': 61198, 'demonstrates how': 236853, 'people sheltering': 649415, 'sheltering at': 757972, 'emarsys and gooddata': 272416, 'and gooddata up': 63837, 'gooddata up to': 358009, 'to date interactive': 903931, 'date interactive map': 226670, 'interactive map and': 441287, 'map and commerce': 514922, 'and commerce insight': 60132, 'commerce insight tracking': 188577, 'insight tracking show': 439652, 'tracking show revenue': 928360, 'show revenue up': 767115, 'revenue up 37': 720490, 'up 37 and': 944165, '37 and order': 18068, 'and order up': 68251, 'order up 54': 618733, 'up 54 and': 944190, '54 and demonstrates': 20318, 'and demonstrates how': 61199, 'demonstrates how people': 236855, 'how people sheltering': 408507, 'people sheltering at': 649416, 'sheltering at home': 757973, 'at home are': 98940, 'home are shopping': 400728, 'this website': 891168, 'website is': 975316, 'effort of': 269554, 'individual now': 435227, 'and going': 63801, 'forward did': 329975, 'they help': 882424, 'make informed': 510010, 'informed consumer': 438090, 'decision reward': 231079, 'reward hero': 720781, 'hero do': 393972, 'not support': 571820, 'support zero': 827022, 'zero find': 1027448, 'here help': 393082, 'help compassion': 389507, 'this website is': 891172, 'website is tracking': 975324, 'is tracking the': 453321, 'tracking the effort': 928368, 'the effort of': 854082, 'effort of company': 269555, 'of company and': 581603, 'company and individual': 190383, 'and individual now': 65164, 'individual now and': 435228, 'now and going': 574035, 'and going forward': 63804, 'going forward did': 355158, 'forward did they': 329976, 'did they help': 240870, 'they help during': 882426, 'help during or': 389611, 'during or not': 262838, 'or not make': 616304, 'not make informed': 570495, 'make informed consumer': 510011, 'informed consumer decision': 438092, 'consumer decision reward': 197102, 'decision reward hero': 231080, 'reward hero do': 720782, 'hero do not': 393973, 'do not support': 249861, 'not support zero': 571823, 'support zero find': 827023, 'zero find out': 1027449, 'find out here': 307140, 'out here help': 626281, 'here help compassion': 393083, 'westminster': 980688, 'returned back': 719956, 'to westminster': 918497, 'westminster today': 980693, 'bill will': 130726, 'will make': 994071, 'sure more': 827619, 'more emergency': 539117, 'personnel on': 653142, 'line help': 493163, 'shelf full': 757108, 'full protect': 340832, 'have returned back': 382315, 'returned back to': 719957, 'back to westminster': 107408, 'to westminster today': 918498, 'westminster today to': 980694, 'today to support': 920371, 'support the the': 826888, 'the the bill': 869373, 'the bill will': 849698, 'bill will make': 130728, 'will make sure': 994090, 'make sure more': 510517, 'sure more emergency': 827620, 'more emergency personnel': 539118, 'emergency personnel on': 272868, 'personnel on the': 653143, 'front line help': 338581, 'line help keep': 493164, 'keep our supermarket': 471755, 'supermarket shelf full': 822474, 'shelf full protect': 757113, 'full protect you': 340833, 'protect you your': 685053, 'and your job': 76080, 'created dedicated': 215817, 'dedicated coronavirus': 231698, 'coronavirus resource': 206657, 'resource center': 714729, 'center from': 169213, 'from estate': 335305, 'estate planning': 282170, 'protection right': 685596, 'to identity': 908093, 'identity amp': 413397, 'amp privacy': 54334, 'privacy protection': 678827, 'protection employee': 685411, 'employee can': 273702, 'answer they': 78120, 'uncertainty learn': 939714, 'we have created': 971788, 'have created dedicated': 380159, 'created dedicated coronavirus': 215818, 'dedicated coronavirus resource': 231699, 'coronavirus resource center': 206658, 'resource center from': 714735, 'center from estate': 169215, 'from estate planning': 335306, 'estate planning to': 282171, 'planning to consumer': 658584, 'to consumer protection': 903325, 'consumer protection right': 198559, 'protection right to': 685597, 'right to identity': 722344, 'to identity amp': 908094, 'identity amp privacy': 413398, 'amp privacy protection': 54335, 'privacy protection employee': 678828, 'protection employee can': 685412, 'employee can find': 273707, 'can find the': 158339, 'find the answer': 307279, 'the answer they': 848774, 'answer they need': 78121, 'they need during': 882729, 'need during this': 554722, 'of uncertainty learn': 592598, 'uncertainty learn more': 939715, 'amen': 51376, 'latraffic': 481663, 'so know': 777516, 'this californialockdown': 886670, 'californialockdown is': 155629, 'is serious': 451779, 'serious but': 751344, 'an amen': 55279, 'amen for': 51382, 'traffic amazing': 929043, 'amazing gas': 50690, 'price right': 676220, 'now gasprices': 574763, 'gasprices latraffic': 344296, 'okay so know': 598006, 'so know this': 777520, 'know this californialockdown': 476890, 'this californialockdown is': 886671, 'californialockdown is serious': 155630, 'is serious but': 451782, 'serious but can': 751345, 'but can get': 145351, 'get an amen': 346537, 'an amen for': 55280, 'amen for the': 51383, 'lack of traffic': 478665, 'of traffic amazing': 592409, 'traffic amazing gas': 929044, 'amazing gas price': 50691, 'gas price right': 344018, 'price right now': 676224, 'right now gasprices': 722068, 'now gasprices latraffic': 574764, 'emarketer podcast': 272404, 'podcast how': 662285, 'how europe': 407811, 'europe is': 283465, 'is coping': 446838, '19 uk': 11613, 'uk digital': 938304, 'digital tax': 242658, 'how not': 408409, 'do social': 250110, 'medium marketing': 527171, 'marketing emarketer': 517592, 'emarketer trend': 272412, 'trend forecast': 931342, 'forecast statistic': 328865, 'statistic socialmedia': 796591, 'socialmedia via': 781099, 'emarketer podcast how': 272405, 'podcast how europe': 662286, 'how europe is': 407812, 'europe is coping': 283466, 'is coping with': 446840, 'coping with covid': 203397, 'covid 19 uk': 213993, '19 uk digital': 11614, 'uk digital tax': 938305, 'digital tax and': 242659, 'tax and how': 834926, 'and how not': 64827, 'how not to': 408410, 'not to do': 572145, 'to do social': 904555, 'do social medium': 250113, 'social medium marketing': 779865, 'medium marketing emarketer': 527173, 'marketing emarketer trend': 517593, 'emarketer trend forecast': 272413, 'trend forecast statistic': 931343, 'forecast statistic socialmedia': 328866, 'statistic socialmedia via': 796592, 'contacted': 200313, 'month nearly': 537877, 'nearly 00': 553747, '00 texan': 513, 'texan have': 839719, 'have contacted': 380089, 'contacted the': 200336, 'texas attorney': 839742, 'general consumer': 345301, 'division with': 248697, 'with complaint': 997709, 'gouging related': 359440, 'last month nearly': 480335, 'month nearly 00': 537878, 'nearly 00 texan': 553749, '00 texan have': 514, 'texan have contacted': 839720, 'have contacted the': 380092, 'contacted the texas': 200338, 'the texas attorney': 869339, 'texas attorney general': 839743, 'attorney general consumer': 102628, 'general consumer protection': 345304, 'protection division with': 685402, 'division with complaint': 248698, 'with complaint of': 997712, 'complaint of price': 192003, 'price gouging related': 674318, 'gouging related to': 359441, 'sudde': 816977, 'up now': 945483, 'bad what': 108079, 'happens when': 377520, 'chain fails': 170691, 'fails huh': 296241, 'huh what': 410322, 'that those': 847009, 'those making': 892188, 'and delivering': 61100, 'delivering your': 233567, 'your good': 1024075, 'good let': 357322, 'let say': 487022, 'say of': 739007, 'haul truck': 379002, 'driver get': 259575, 'sick cannot': 768402, 'cannot drive': 161765, 'drive 350': 258973, '350 million': 17931, 'american sudde': 52229, 'stock up now': 803102, 'up now you': 945487, 'now you think': 576519, 'you think it': 1021664, 'think it bad': 885319, 'it bad what': 456693, 'bad what happens': 108080, 'what happens when': 981569, 'happens when the': 377527, 'supply chain fails': 824955, 'chain fails huh': 170692, 'fails huh what': 296242, 'huh what that': 410325, 'what that those': 982290, 'that those making': 847013, 'those making and': 892189, 'making and delivering': 510959, 'and delivering your': 61104, 'delivering your good': 233569, 'your good let': 1024077, 'good let say': 357324, 'let say of': 487024, 'say of the': 739011, 'of the long': 591199, 'the long haul': 859677, 'long haul truck': 501434, 'haul truck driver': 379003, 'truck driver get': 932778, 'driver get sick': 259576, 'get sick cannot': 347990, 'sick cannot drive': 768403, 'cannot drive 350': 161766, 'drive 350 million': 258974, '350 million american': 17932, 'million american sudde': 532059, 'insufficient': 440600, 'carbonmarket': 163432, 'euets': 283311, 'electricity demand': 271166, 'is collapsing': 446637, 'collapsing in': 186141, 'europe due': 283425, 'affect an': 34113, 'an already': 55249, 'already insufficient': 47483, 'insufficient carbonmarket': 440601, 'carbonmarket where': 163433, 'where co2': 984781, 'co2 price': 185031, 'keep falling': 471491, 'falling 15': 297193, 'the euets': 854571, 'euets do': 283321, 'provide any': 686227, 'any incentive': 79346, 'incentive for': 431362, 'for reducing': 325043, 'reducing coal': 706270, 'coal consumption': 185053, 'consumption or': 199924, 'for green': 322014, 'green investment': 363672, 'electricity demand is': 271168, 'demand is collapsing': 235717, 'is collapsing in': 446638, 'collapsing in europe': 186142, 'in europe due': 422632, 'europe due to': 283426, 'due to this': 261997, 'to this affect': 917401, 'this affect an': 886221, 'affect an already': 34114, 'an already insufficient': 55253, 'already insufficient carbonmarket': 47484, 'insufficient carbonmarket where': 440602, 'carbonmarket where co2': 163434, 'where co2 price': 984782, 'co2 price keep': 185032, 'price keep falling': 674986, 'keep falling 15': 471492, 'falling 15 on': 297194, '15 on the': 3795, 'on the euets': 604100, 'the euets do': 854572, 'euets do not': 283322, 'not provide any': 571140, 'provide any incentive': 686229, 'any incentive for': 79347, 'incentive for reducing': 431363, 'for reducing coal': 325044, 'reducing coal consumption': 706271, 'coal consumption or': 185054, 'consumption or for': 199925, 'or for green': 615362, 'for green investment': 322015, 'if all': 413787, 'get caught': 346751, 'caught throwing': 167467, 'throwing stuff': 895107, 'stuff away': 815022, 'away because': 105791, 'because go': 119077, 'date amp': 226585, 'they bought': 881573, 'bought too': 136764, 'much am': 544705, 'find you': 307402, 'if all these': 413795, 'these people food': 880436, 'people food get': 647939, 'food get caught': 314648, 'get caught throwing': 346753, 'caught throwing stuff': 167469, 'throwing stuff away': 895108, 'stuff away because': 815023, 'away because go': 105792, 'because go out': 119078, 'of date amp': 582364, 'date amp they': 226586, 'amp they bought': 54684, 'they bought too': 881578, 'bought too much': 136765, 'too much am': 924913, 'much am going': 544706, 'going to find': 355601, 'to find you': 905956, 'find you stop': 307403, 'you stop panic': 1021439, 'panic buying 19': 637624, 'pant': 639486, 'doing lot': 252518, 'and really': 70014, 'these pant': 880394, 'pant socialdistancing': 639500, 'socialdistancing lockdowneffect': 780499, 'been doing lot': 121022, 'doing lot of': 252521, 'lot of online': 504239, 'online shopping this': 609307, 'shopping this week': 764133, 'week and really': 975932, 'and really really': 70018, 'really really need': 702513, 'really need these': 702445, 'need these pant': 555795, 'these pant socialdistancing': 880395, 'pant socialdistancing lockdowneffect': 639501, 'awe': 106139, 'diplomacy': 243215, 'first lady': 308749, 'lady is': 478781, 'an awe': 55506, 'awe inspiring': 106140, 'inspiring role': 439864, 'role model': 725116, 'model of': 535284, 'of grace': 584290, 'grace and': 361602, 'and diplomacy': 61369, 'diplomacy you': 243218, 'are vulgar': 91504, 'vulgar swine': 960799, 'swine who': 830389, 'should follow': 766002, 'follow her': 312409, 'her role': 392335, 'model or': 535293, 'least that': 484643, 'positive entertainer': 665307, 'the first lady': 855321, 'first lady is': 308750, 'lady is an': 478782, 'is an awe': 445645, 'an awe inspiring': 55507, 'awe inspiring role': 106141, 'inspiring role model': 439865, 'role model of': 725117, 'model of grace': 535285, 'of grace and': 584291, 'grace and diplomacy': 361603, 'and diplomacy you': 61370, 'diplomacy you are': 243219, 'you are vulgar': 1017284, 'are vulgar swine': 91505, 'vulgar swine who': 960800, 'swine who should': 830390, 'who should follow': 989612, 'should follow her': 766004, 'follow her role': 312410, 'her role model': 392336, 'role model or': 725118, 'model or at': 535294, 'or at least': 614447, 'at least that': 99551, 'least that of': 484645, 'that of other': 845449, 'of other positive': 587370, 'other positive entertainer': 620742, 'india always': 434285, 'always leading': 49642, 'leading from': 483709, 'this front': 887634, 'front india': 338549, 'india always leading': 434286, 'always leading from': 49643, 'leading from this': 483711, 'from this front': 337996, 'this front india': 887635, 'infecting': 436678, 'only doe': 610346, 'doe universal': 251656, 'universal basic': 942349, 'income allow': 432274, 'allow those': 46094, 'avoid infecting': 105158, 'infecting others': 436694, 'others but': 621312, 'also allows': 47837, 'allows people': 46389, 'maintain their': 509067, 'their consumption': 872866, 'consumption in': 199890, 'consumption based': 199842, 'based economy': 111560, 'economy glad': 267890, 'it mentioned': 459603, 'mentioned here': 528824, 'the discussion': 853354, 'not only doe': 570790, 'only doe universal': 610348, 'doe universal basic': 251657, 'universal basic income': 942350, 'basic income allow': 111949, 'income allow those': 432275, 'allow those who': 46097, 'are sick to': 90118, 'sick to stay': 768646, 'home and avoid': 400611, 'and avoid infecting': 58570, 'avoid infecting others': 105159, 'infecting others but': 436695, 'others but it': 621313, 'but it also': 146095, 'it also allows': 456418, 'also allows people': 47838, 'allows people to': 46390, 'people to maintain': 649918, 'to maintain their': 909601, 'maintain their consumption': 509069, 'their consumption in': 872867, 'consumption in consumption': 199893, 'in consumption based': 421733, 'consumption based economy': 199843, 'based economy glad': 111561, 'economy glad to': 267891, 'to see it': 914030, 'see it mentioned': 745338, 'it mentioned here': 459604, 'mentioned here in': 528825, 'in the discussion': 429137, 'the change': 850667, 'change consumer': 171979, 'changing store': 172802, 'asked it': 95785, 'customer not': 222624, 'bring their': 140091, 'their child': 872768, 'child shopping': 176202, 'supermarket are adapting': 819143, 'to the change': 916551, 'the change consumer': 850670, 'change consumer habit': 171985, 'consumer habit are': 197682, 'are changing store': 85241, 'changing store ha': 172803, 'store ha asked': 807997, 'ha asked it': 369630, 'asked it customer': 95786, 'it customer not': 457451, 'customer not to': 222626, 'not to bring': 572137, 'to bring their': 902054, 'bring their child': 140092, 'their child shopping': 872775, 'buy and': 148313, 'food cleaning': 313939, 'and medicine': 66897, 'medicine make': 526832, 'me realise': 523372, 'were right': 980072, 'right all': 721742, 'all along': 41989, 'along people': 47018, 'panic buy and': 637466, 'buy and stockpile': 148334, 'and stockpile food': 72440, 'stockpile food cleaning': 803746, 'food cleaning product': 313941, 'cleaning product and': 181023, 'product and medicine': 680892, 'and medicine make': 66912, 'medicine make me': 526833, 'make me realise': 510140, 'me realise that': 523375, 'realise that were': 701608, 'that were right': 847445, 'were right all': 980073, 'right all along': 721743, 'all along people': 41992, 'along people shit': 47019, 'of tank': 590593, 'tank have': 834209, 'have arrived': 379356, 'arrived 19de': 93939, 'lot of tank': 504298, 'of tank have': 590594, 'tank have arrived': 834210, 'have arrived 19de': 379357, 'wa ruined': 963118, 'ruined and': 727127, 'and ruined': 70624, 'ruined in': 727135, 'in debt': 422047, 'debt now': 230524, 'now tax': 575968, 'tax for': 834986, 'life people': 488964, 'we save': 973128, 'save money': 737580, 'with bad': 997354, 'bad time': 108048, 'time government': 896855, 'corporation did': 207404, 'it quantitative': 460572, 'easing created': 265263, 'created false': 215823, 'false stock': 297460, 'price creating': 673339, 'creating yet': 216105, 'another bubble': 77522, 'bubble that': 141617, 'that bubble': 843046, 'bubble turned': 141619, 'turned out': 935865, 'money problem': 536985, 'problem wa': 679736, 'already here': 47438, 'country wa ruined': 211206, 'wa ruined and': 963119, 'ruined and ruined': 727128, 'and ruined in': 70625, 'ruined in debt': 727136, 'in debt now': 422053, 'debt now tax': 230525, 'now tax for': 575969, 'tax for life': 834987, 'for life people': 322970, 'life people we': 488966, 'people we save': 650160, 'we save money': 973130, 'save money to': 737587, 'money to deal': 537092, 'deal with bad': 229540, 'with bad time': 997356, 'bad time government': 108050, 'time government and': 896856, 'government and corporation': 359861, 'and corporation did': 60583, 'corporation did not': 207405, 'did not do': 240712, 'do it quantitative': 249505, 'it quantitative easing': 460573, 'quantitative easing created': 691898, 'easing created false': 265264, 'created false stock': 215824, 'false stock price': 297461, 'stock price creating': 802708, 'price creating yet': 673340, 'creating yet another': 216106, 'yet another bubble': 1015991, 'another bubble that': 77523, 'bubble that bubble': 141618, 'that bubble turned': 843047, 'bubble turned out': 141620, 'turned out to': 935868, 'out to be': 627623, 'be the money': 117636, 'the money problem': 860822, 'money problem wa': 536986, 'problem wa already': 679737, 'wa already here': 961488, 'global warming': 352288, 'warming advocate': 966901, 'advocate will': 33857, 'no petition': 565096, 'petition that': 653632, 'chain with': 171244, 'empty freezer': 274885, 'and fridge': 63313, 'fridge immediately': 333407, 'immediately turn': 417170, 'turn them': 935770, 'them off': 876076, 'global warming advocate': 352290, 'warming advocate will': 966902, 'advocate will no': 33858, 'will no petition': 994182, 'no petition that': 565097, 'petition that all': 653633, 'that all grocery': 842549, 'store chain with': 806941, 'chain with empty': 171245, 'with empty freezer': 998218, 'empty freezer and': 274886, 'freezer and fridge': 332578, 'and fridge immediately': 63317, 'fridge immediately turn': 333408, 'immediately turn them': 417171, 'turn them off': 935771, 'someone know': 784548, 'know potentially': 476688, 'potentially ha': 667212, 'get anything': 346585, 'anything delivered': 80724, 'to overwhelming': 911329, 'area that': 92213, 'help what': 390876, 'they supposed': 883508, 'someone know potentially': 784550, 'know potentially ha': 476689, 'potentially ha covid': 667213, 'going to run': 355694, 'to run out': 913668, 'food in day': 314934, 'in day they': 422021, 'day they cannot': 228520, 'cannot get anything': 161871, 'get anything delivered': 346588, 'anything delivered due': 80726, 'due to overwhelming': 261894, 'to overwhelming demand': 911330, 'overwhelming demand and': 631740, 'demand and do': 234957, 'know anyone in': 476269, 'anyone in the': 80381, 'the area that': 848885, 'area that can': 92215, 'can help what': 158671, 'help what are': 390878, 'what are they': 981070, 'are they supposed': 91030, 'they supposed to': 883509, 'pappystips': 641190, 'enoughisenough': 277788, 'oh no': 596424, 'no warning': 565850, 'warning here': 967135, 'lazy to': 482755, 'walk few': 964779, 'few extra': 303829, 'extra foot': 293520, 'buy something': 149219, 'he really': 385336, 'really didn': 702109, 'didn need': 241139, 'need charged': 554602, 'for parking': 324395, 'parking in': 642072, 'in disabled': 422283, 'disabled parking': 243931, 'parking spot': 642121, 'spot expensive': 790051, 'expensive lesson': 291263, 'lesson pappystips': 486505, 'pappystips stayhome': 641191, 'stayhome enoughisenough': 797995, 'oh no no': 596428, 'no no warning': 564877, 'no warning here': 565852, 'warning here the': 967136, 'here the driver': 393648, 'driver wa too': 259832, 'wa too lazy': 963552, 'too lazy to': 924847, 'lazy to walk': 482757, 'to walk few': 918301, 'walk few extra': 964780, 'few extra foot': 303832, 'extra foot to': 293521, 'foot to get': 318446, 'to buy something': 902304, 'buy something that': 149222, 'something that he': 785077, 'that he really': 844267, 'he really didn': 385337, 'really didn need': 702111, 'didn need charged': 241140, 'need charged for': 554603, 'charged for parking': 173384, 'for parking in': 324396, 'parking in disabled': 642073, 'in disabled parking': 422284, 'disabled parking spot': 243932, 'parking spot expensive': 642122, 'spot expensive lesson': 790052, 'expensive lesson pappystips': 291264, 'lesson pappystips stayhome': 486506, 'pappystips stayhome enoughisenough': 641192, 'news oil': 560655, 'bbc news oil': 113094, 'news oil price': 560656, 'oil price rise': 597239, 'rise on hope': 722959, 'advanced': 32922, 'soothing': 785952, 'scent': 741378, 'fl': 309898, 'jelly': 465048, 'purell advanced': 690002, 'advanced handsanitizer': 32935, 'handsanitizer soothing': 376646, 'soothing gel': 785953, 'gel fresh': 345119, 'fresh scent': 333071, 'scent with': 741398, 'with aloe': 997174, 'aloe and': 46781, 'and vitamin': 75006, 'vitamin fl': 959776, 'fl oz': 309911, 'oz jelly': 632745, 'jelly wrap': 465053, 'wrap sanitizer': 1012664, 'sanitizer via': 736009, 'purell advanced handsanitizer': 690004, 'advanced handsanitizer soothing': 32936, 'handsanitizer soothing gel': 376647, 'soothing gel fresh': 785954, 'gel fresh scent': 345120, 'fresh scent with': 333072, 'scent with aloe': 741399, 'with aloe and': 997175, 'aloe and vitamin': 46782, 'and vitamin fl': 75007, 'vitamin fl oz': 959777, 'fl oz jelly': 309919, 'oz jelly wrap': 632746, 'jelly wrap sanitizer': 465054, 'wrap sanitizer via': 1012665, 'daffs': 224454, 'replied': 711705, 'shop earlier': 760121, 'earlier first': 264442, 'first stop': 309034, 'bakery not': 108869, 'not too': 572219, 'bad brought': 107790, 'brought bread': 141135, 'bread next': 138537, 'next stop': 561573, 'supermarket well': 823774, 'well apart': 978030, 'from bunch': 334747, 'of daffs': 582309, 'daffs the': 224455, 'empty ask': 274789, 'ask staff': 95621, 'member what': 528237, 'am expected': 50033, 'have for': 380676, 'lunch use': 506755, 'your loaf': 1024672, 'loaf she': 497376, 'she replied': 756291, 'replied coronacrisis': 711708, 'ventured out to': 954696, 'the shop earlier': 866991, 'shop earlier first': 760123, 'earlier first stop': 264443, 'first stop the': 309035, 'stop the bakery': 805123, 'the bakery not': 849205, 'bakery not too': 108870, 'not too bad': 572220, 'too bad brought': 924596, 'bad brought bread': 107791, 'brought bread next': 141136, 'bread next stop': 138538, 'next stop the': 561575, 'stop the supermarket': 805155, 'the supermarket well': 868896, 'supermarket well apart': 823775, 'well apart from': 978031, 'apart from bunch': 81259, 'from bunch of': 334748, 'bunch of daffs': 142622, 'of daffs the': 582310, 'daffs the shelf': 224456, 'shelf were empty': 757767, 'were empty ask': 979563, 'empty ask staff': 274790, 'ask staff member': 95622, 'staff member what': 792665, 'member what am': 528238, 'what am expected': 981016, 'am expected to': 50034, 'expected to have': 290981, 'to have for': 907239, 'have for lunch': 380680, 'for lunch use': 323147, 'lunch use your': 506756, 'use your loaf': 949836, 'your loaf she': 1024674, 'loaf she replied': 497377, 'she replied coronacrisis': 756292, 'undefeated': 939934, 'it starting': 461229, 'starting sh': 794994, 'sh getting': 754291, 'getting weird': 349436, 'weird also': 977738, 'internet is': 441959, 'is undefeated': 453452, 'undefeated and': 939935, 'and dead': 60969, 'it starting sh': 461230, 'starting sh getting': 794995, 'sh getting weird': 754292, 'getting weird also': 349438, 'weird also the': 977739, 'also the internet': 48974, 'the internet is': 858386, 'internet is undefeated': 441961, 'is undefeated and': 453453, 'undefeated and dead': 939936, 'humour': 410941, 'my garden': 548481, 'garden is': 343608, 'is self': 451736, 'self sufficient': 747916, 'sufficient stayathome': 817393, 'stayathome stayhomesavelives': 797647, 'stayhomesavelives toiletpaper': 798481, 'toiletpaper humour': 922097, 'my garden is': 548482, 'garden is self': 343609, 'is self sufficient': 451739, 'self sufficient stayathome': 747920, 'sufficient stayathome stayhomesavelives': 817394, 'stayathome stayhomesavelives toiletpaper': 797653, 'stayhomesavelives toiletpaper humour': 798482, 'germanycoronavirus': 346365, 'bremen': 139304, 'so just': 777488, 'just tried': 470141, 'order grocery': 618272, 'from rewe': 337119, 'rewe or': 720821, 'or real': 616790, 'real the': 701390, 'next available': 561289, 'available delivery': 104314, 'delivery appointment': 233695, 'appointment is': 82671, 'week bad': 975977, 'bad should': 108006, 'home any': 400716, 'any solution': 79831, 'in germany': 423274, 'germany germanycoronavirus': 346300, 'germanycoronavirus bremen': 346366, 'so just tried': 777502, 'just tried to': 470143, 'to order grocery': 911071, 'order grocery online': 618273, 'grocery online from': 364779, 'online from rewe': 608272, 'from rewe or': 337120, 'rewe or real': 720822, 'or real the': 616791, 'real the next': 701392, 'the next available': 861654, 'next available delivery': 561290, 'available delivery appointment': 104315, 'delivery appointment is': 233696, 'appointment is in': 82672, 'is in two': 448825, 'two week bad': 937321, 'week bad should': 975978, 'bad should not': 108007, 'not we encourage': 572465, 'we encourage people': 971452, 'people to stay': 649944, 'stay home any': 796939, 'home any solution': 400717, 'any solution for': 79833, 'solution for online': 782029, 'shopping in germany': 762965, 'in germany germanycoronavirus': 423279, 'germany germanycoronavirus bremen': 346301, 'capitalism allowed': 162713, 'allowed me': 46186, 'buy almost': 148298, 'almost everything': 46631, 'everything wanted': 288080, 'today except': 919499, 'for tp': 327296, 'tp at': 927750, 'store despite': 807303, 'the extreme': 854774, 'extreme stress': 293836, 'stress being': 813310, 'everyone by': 286760, 'coronacrisis pandemic': 204685, 'capitalism allowed me': 162714, 'allowed me to': 46187, 'me to buy': 523746, 'to buy almost': 902176, 'buy almost everything': 148299, 'almost everything wanted': 46634, 'everything wanted to': 288083, 'wanted to today': 966279, 'to today except': 917610, 'today except for': 919500, 'except for tp': 289175, 'for tp at': 327298, 'tp at the': 927753, 'grocery store despite': 365327, 'store despite the': 807304, 'despite the extreme': 238882, 'the extreme stress': 854780, 'extreme stress being': 293837, 'stress being put': 813312, 'being put on': 125622, 'put on everyone': 690714, 'on everyone by': 600633, 'everyone by this': 286761, 'by this coronacrisis': 154524, 'this coronacrisis pandemic': 886877, 'liberal': 487997, 'pakistanfightscorona': 634524, 'price all': 672264, 'world doctor': 1009490, 'provided with': 686662, 'with best': 997388, 'best safety': 127887, 'safety equipment': 730519, 'but pakistani': 146745, 'pakistani liberal': 634529, 'liberal are': 487998, 'are blaming': 84985, 'blaming their': 132346, 'own people': 632126, 'people pathetic': 649082, 'pathetic coronainpakistan': 644047, 'coronainpakistan pakistanfightscorona': 205010, 'and sanitizers are': 70893, 'sanitizers are being': 736213, 'being sold at': 125829, 'sold at high': 781633, 'at high price': 98894, 'high price all': 395229, 'price all over': 672274, 'the world doctor': 871857, 'world doctor are': 1009491, 'are being provided': 84898, 'being provided with': 125595, 'provided with best': 686665, 'with best safety': 997391, 'best safety equipment': 127888, 'safety equipment but': 730520, 'equipment but pakistani': 279700, 'but pakistani liberal': 146746, 'pakistani liberal are': 634530, 'liberal are blaming': 488000, 'are blaming their': 84988, 'blaming their own': 132347, 'their own people': 874190, 'own people pathetic': 632127, 'people pathetic coronainpakistan': 649083, 'pathetic coronainpakistan pakistanfightscorona': 644048, 'punch': 689157, 'cremona': 216656, 'andrea': 76167, 'here gut': 393067, 'gut punch': 368852, 'punch of': 689164, 'of quote': 588706, 'quote there': 695005, 'there queue': 878973, 'outside our': 629526, 'our funeral': 623222, 'funeral home': 341665, 'home in': 401408, 'in cremona': 421863, 'cremona say': 216657, 'say andrea': 738424, 'andrea it': 76168, 'almost like': 46686, 'like supermarket': 491266, 'supermarket gt': 820601, 'gt how': 367610, 'denying dignity': 237149, 'the dead': 852934, 'here gut punch': 393068, 'gut punch of': 368853, 'punch of quote': 689168, 'of quote there': 588707, 'quote there queue': 695007, 'there queue outside': 878974, 'queue outside our': 694037, 'outside our funeral': 629528, 'our funeral home': 623223, 'funeral home in': 341666, 'home in cremona': 401414, 'in cremona say': 421864, 'cremona say andrea': 216658, 'say andrea it': 738425, 'andrea it almost': 76169, 'it almost like': 456404, 'almost like supermarket': 46688, 'like supermarket gt': 491270, 'supermarket gt how': 820602, 'gt how covid': 367612, '19 is denying': 7959, 'is denying dignity': 447124, 'denying dignity to': 237150, 'dignity to the': 242839, 'to the dead': 916625, 'the dead in': 852935, 'dead in italy': 229149, 'promising': 683740, 'bait': 108718, 'from phishing': 336915, 'scam you': 740487, 'see email': 745070, 'email promising': 272279, 'promising information': 683748, 'or relief': 616841, 'relief from': 709346, 'coronavirus do': 205835, 'the bait': 849193, 'bait and': 108719, 'report suspicious': 712299, 'suspicious email': 829715, 'please protect yourself': 660336, 'yourself from phishing': 1026620, 'from phishing scam': 336916, 'phishing scam you': 654838, 'scam you will': 740491, 'you will see': 1022353, 'will see email': 994773, 'see email promising': 745071, 'email promising information': 272280, 'promising information or': 683749, 'information or relief': 437940, 'or relief from': 616842, 'relief from the': 709348, 'the coronavirus do': 851834, 'coronavirus do not': 205836, 'do not take': 249863, 'not take the': 571907, 'take the bait': 832637, 'the bait and': 849194, 'bait and report': 108720, 'and report suspicious': 70269, 'report suspicious email': 712300, 'suspicious email to': 829717, 'the physical': 863707, 'physical distancing': 655409, 'rule while': 727409, 'out pic': 627044, 'pic from': 655598, 'is our supermarket': 450645, 'our supermarket and': 625008, 'supermarket and people': 819037, 'people are following': 646976, 'are following the': 86627, 'following the physical': 312900, 'the physical distancing': 863710, 'physical distancing rule': 655414, 'distancing rule while': 247450, 'rule while waiting': 727410, 'while waiting to': 987530, 'waiting to shop': 964413, 'shop in out': 760313, 'in out pic': 426360, 'out pic from': 627045, 'circling': 178627, 'been looking': 121479, 'crazy picture': 215389, 'queue food': 693920, 'food market': 315388, 'market of': 516775, 'all thing': 45071, 'thing circling': 884235, 'circling who': 178628, 'back due': 106966, 'catching coronacrisisuk': 167077, 'been looking at': 121480, 'looking at these': 502829, 'at these crazy': 101197, 'these crazy picture': 879825, 'crazy picture of': 215390, 'the supermarket queue': 868766, 'supermarket queue food': 822120, 'queue food market': 693921, 'food market of': 315399, 'market of all': 516776, 'of all thing': 579985, 'all thing circling': 45074, 'thing circling who': 884236, 'circling who don': 178629, 'who don think': 988650, 'don think will': 253988, 'think will make': 885790, 'will make it': 994082, 'make it back': 510023, 'it back due': 456665, 'back due to': 106967, 'due to catching': 261722, 'to catching coronacrisisuk': 902513, 'it new': 459786, 'life waiting': 489182, 'enter grocery': 278254, 'it new way': 459795, 'way of life': 969760, 'of life waiting': 585839, 'life waiting in': 489183, 'line to enter': 493484, 'to enter grocery': 905218, 'enter grocery store': 278255, 'moonbeamwishes': 538337, 'megan': 527831, 'moonbeamwishes hey': 538338, 'hey megan': 394458, 'megan we': 527834, 'moonbeamwishes hey megan': 538339, 'hey megan we': 394459, 'megan we will': 527835, 'condensed': 193367, 'report created': 711893, 'created condensed': 215802, 'condensed list': 193370, 'help destroy': 389582, 'destroy the': 239034, 'consumer report created': 198705, 'report created condensed': 711894, 'created condensed list': 215803, 'condensed list of': 193371, 'list of product': 494464, 'of product that': 588496, 'can help destroy': 158612, 'help destroy the': 389583, 'destroy the that': 239038, 'the that cause': 869365, 'praying': 669109, 'champion': 171676, 'grateful praying': 362298, 'praying for': 669112, 'for govt': 321967, 'govt medical': 361198, 'medical care': 526075, 'care professional': 164157, 'professional journalist': 682465, 'journalist grocery': 467437, 'staff safety': 792813, 'safety official': 730660, 'official and': 595746, 'responder all': 715400, 'who continue': 988482, 'and risk': 70550, 'public they': 688365, 're champion': 698423, 'champion of': 171679, 'common good': 189390, 'grateful praying for': 362299, 'praying for govt': 669115, 'for govt medical': 321969, 'govt medical care': 361199, 'medical care professional': 526086, 'care professional journalist': 164161, 'professional journalist grocery': 682467, 'journalist grocery store': 467438, 'store staff safety': 810325, 'staff safety official': 792815, 'safety official and': 730661, 'official and first': 595747, 'first responder all': 308926, 'responder all those': 715401, 'all those who': 45193, 'those who continue': 892622, 'who continue to': 988484, 'work and risk': 1004799, 'and risk their': 70561, 'their health and': 873511, 'and safety to': 70760, 'safety to care': 730773, 'to care for': 902459, 'care for the': 163954, 'the public they': 864860, 'public they re': 688366, 'they re champion': 883009, 're champion of': 698424, 'champion of the': 171680, 'of the common': 590875, 'the common good': 851251, 'true morrison': 933134, 'morrison the': 541769, 'major uk': 509521, 'be giving': 115036, 'giving their': 351416, 'staff bonus': 792271, 'bonus due': 134357, 'just seen': 469735, 'seen an': 746924, 'an article': 55416, 'bbc that': 113109, 'that list': 844893, 'list every': 494313, 'supermarket bare': 819299, 'bare them': 110965, 'is it true': 449071, 'it true morrison': 461866, 'true morrison the': 933135, 'morrison the only': 541770, 'only major uk': 610752, 'major uk supermarket': 509522, 'uk supermarket not': 938769, 'supermarket not to': 821652, 'not to be': 572132, 'to be giving': 901276, 'be giving their': 115039, 'giving their staff': 351418, 'their staff bonus': 874791, 'staff bonus due': 792272, 'bonus due to': 134358, 'to the just': 916823, 'the just seen': 858719, 'just seen an': 469737, 'seen an article': 746927, 'an article on': 55420, 'article on bbc': 94400, 'on bbc that': 599597, 'bbc that list': 113110, 'that list every': 844894, 'list every supermarket': 494314, 'every supermarket bare': 286241, 'supermarket bare them': 819300, 'lady nurse': 478795, 'nurse perhaps': 577455, 'perhaps in': 651602, 'in tennessee': 428866, 'tennessee just': 837958, 'just love': 469198, 'love her': 504682, 'her socialdistancing': 392392, 'socialdistancing shelterinplace': 780677, 'shelterinplace stockmarket': 758027, 'stockmarket stoppanicbuying': 803676, 'believe this lady': 126386, 'this lady nurse': 888589, 'lady nurse perhaps': 478796, 'nurse perhaps in': 577456, 'perhaps in tennessee': 651605, 'in tennessee just': 428867, 'tennessee just love': 837959, 'just love her': 469199, 'love her socialdistancing': 504684, 'her socialdistancing shelterinplace': 392393, 'socialdistancing shelterinplace stockmarket': 780678, 'shelterinplace stockmarket stoppanicbuying': 758028, 'chorlton': 178014, 'really shocked': 702578, 'are greedy': 86959, 'greedy everyone': 363512, 'else and': 271623, 'are stockpiling': 90520, 'stockpiling you': 804128, 'should refuse': 766395, 'refuse to': 707028, 'let anyone': 486599, 'anyone buy': 80207, 'buy anything': 148359, 'anything visiting': 80927, 'visiting vegan': 959570, 'vegan grocery': 953864, 'store doesn': 807345, 'you ethical': 1018442, 'ethical but': 283068, 'but your': 148009, 'your behavior': 1022929, 'behavior doe': 124000, 'doe stockpiling': 251589, 'stockpiling greed': 803978, 'greed chorlton': 363372, 'is really shocked': 451317, 'really shocked that': 702579, 'shocked that your': 759584, 'customer are greedy': 222124, 'are greedy everyone': 86960, 'greedy everyone else': 363513, 'everyone else and': 286845, 'else and are': 271625, 'and are stockpiling': 58364, 'are stockpiling you': 90532, 'stockpiling you should': 804131, 'you should refuse': 1021215, 'should refuse to': 766396, 'refuse to let': 707037, 'to let anyone': 909197, 'let anyone buy': 486600, 'anyone buy anything': 80208, 'buy anything visiting': 148365, 'anything visiting vegan': 80928, 'visiting vegan grocery': 959571, 'vegan grocery store': 953865, 'grocery store doesn': 365336, 'store doesn make': 807348, 'doesn make you': 251879, 'make you ethical': 510734, 'you ethical but': 1018443, 'ethical but your': 283069, 'but your behavior': 148010, 'your behavior doe': 1022931, 'behavior doe stockpiling': 124001, 'doe stockpiling greed': 251590, 'stockpiling greed chorlton': 803979, 'backlog': 107564, 'fam': 297499, 'our provincial': 624502, 'provincial seed': 687218, 'seed distributor': 746144, 'distributor is': 248297, 'already on': 47538, 'on backlog': 599534, 'backlog so': 107565, 'many ppl': 514574, 'ppl fearing': 668224, 'fearing food': 301481, 'insecurity in': 439162, 'pandemic are': 634938, 'buying seed': 150989, 'seed can': 746140, 'usual outside': 950991, 'what saved': 982116, 'saved from': 737737, 'from last': 336191, 'year hope': 1014632, 'hope my': 403541, 'my fam': 548180, 'fam is': 297508, 'is ok': 450442, 'ok with': 597944, 'with pea': 1000120, 'pea bean': 645976, 'bean this': 118377, 'year garden': 1014583, 'our provincial seed': 624503, 'provincial seed distributor': 687219, 'seed distributor is': 746145, 'distributor is already': 248298, 'is already on': 445527, 'already on backlog': 47539, 'on backlog so': 599535, 'backlog so many': 107566, 'so many ppl': 777691, 'many ppl fearing': 514576, 'ppl fearing food': 668225, 'fearing food insecurity': 301482, 'food insecurity in': 315066, 'insecurity in the': 439163, 'midst of pandemic': 530790, 'of pandemic are': 587688, 'pandemic are panic': 634946, 'panic buying seed': 637873, 'buying seed can': 150990, 'seed can get': 746141, 'can get my': 158432, 'get my usual': 347642, 'my usual outside': 550477, 'usual outside of': 950992, 'outside of what': 629518, 'of what saved': 593062, 'what saved from': 982117, 'saved from last': 737738, 'from last year': 336195, 'last year hope': 480725, 'year hope my': 1014633, 'hope my fam': 403543, 'my fam is': 548181, 'fam is ok': 297509, 'is ok with': 450448, 'ok with pea': 597948, 'with pea bean': 1000121, 'pea bean this': 645978, 'bean this year': 118378, 'this year garden': 891576, 'foodsecurity': 318067, 'morefoodmoreoften2morepeople': 541046, 'michigan food': 530339, 'bank network': 110029, 'network is': 557730, 'by here': 152792, 'here foodsecurity': 392991, 'foodsecurity morefoodmoreoften2morepeople': 318082, 'michigan food bank': 530340, 'food bank network': 313604, 'bank network is': 110030, 'network is working': 557737, 'working to respond': 1009000, '19 pandemic read': 9439, 'pandemic read the': 636299, 'full article by': 340484, 'article by here': 94279, 'by here foodsecurity': 152793, 'here foodsecurity morefoodmoreoften2morepeople': 392992, 'iwas': 464058, 'irrational': 444981, 'obsession': 578678, 'we so': 973332, 'so obsessed': 777919, 'paper right': 640683, 'now iwas': 575139, 'iwas panicking': 464059, 'panicking wondering': 639396, 'wondering if': 1004165, 'if had': 414187, 'had enough': 373072, 'enough wanted': 277756, 'the psychology': 864759, 'psychology behind': 687548, 'behind this': 124737, 'this irrational': 888158, 'irrational obsession': 444988, 'obsession quarantine': 578683, 'quarantine 19': 691983, '19 quaratinelife': 9927, 'quaratinelife sundaythoughts': 693152, 'sundaythoughts toiletpaper': 818357, 'are we so': 91592, 'we so obsessed': 973335, 'so obsessed with': 777920, 'obsessed with toilet': 578673, 'toilet paper right': 921423, 'paper right now': 640684, 'right now iwas': 722090, 'now iwas panicking': 575140, 'iwas panicking wondering': 464060, 'panicking wondering if': 639397, 'wondering if had': 1004168, 'if had enough': 414189, 'had enough wanted': 373076, 'enough wanted to': 277757, 'wanted to understand': 966280, 'understand the psychology': 940771, 'the psychology behind': 864760, 'psychology behind this': 687551, 'behind this irrational': 124739, 'this irrational obsession': 888159, 'irrational obsession quarantine': 444989, 'obsession quarantine 19': 578684, 'quarantine 19 quaratinelife': 691986, '19 quaratinelife sundaythoughts': 9933, 'quaratinelife sundaythoughts toiletpaper': 693154, 'density': 237064, 'ny gov': 577868, 'gov cuomo': 359560, 'cuomo asking': 220396, 'asking nyc': 96031, 'nyc official': 578026, 'official to': 595945, 'with density': 998001, 'density control': 237067, 'control plan': 202102, 'plan which': 658348, 'which he': 985923, 'will approve': 992301, 'approve crowding': 83105, 'crowding in': 219393, 'park all': 641853, 'saturday now': 737049, 'now paying': 575523, 'paying for': 645407, 'an 85': 55024, '85 cent': 22912, 'cent mask': 169090, 'mask because': 518465, 'because other': 119445, 'state bidding': 795423, 'bidding up': 129522, 'price need': 675316, 'need federal': 554766, 'federal control': 301970, 'control cuomo': 201992, 'ny gov cuomo': 577869, 'gov cuomo asking': 359561, 'cuomo asking nyc': 220397, 'asking nyc official': 96032, 'nyc official to': 578028, 'official to come': 595946, 'to come up': 903056, 'come up with': 187653, 'up with density': 946630, 'with density control': 998002, 'density control plan': 237068, 'control plan which': 202103, 'plan which he': 658349, 'which he will': 985927, 'he will approve': 385663, 'will approve crowding': 992302, 'approve crowding in': 83106, 'crowding in park': 219394, 'in park all': 426508, 'park all over': 641854, 'over the place': 630752, 'the place on': 863771, 'place on saturday': 657620, 'on saturday now': 603303, 'saturday now paying': 737050, 'now paying for': 575524, 'paying for an': 645408, 'for an 85': 319265, 'an 85 cent': 55025, '85 cent mask': 22913, 'cent mask because': 169091, 'mask because other': 518468, 'because other state': 119447, 'other state bidding': 620961, 'state bidding up': 795425, 'bidding up price': 129523, 'up price need': 945825, 'price need federal': 675317, 'need federal control': 554767, 'federal control cuomo': 301971, 'econsumergov': 268388, 'fall victim': 297105, 'victim to': 956519, 'this scam': 889974, 'them consumer': 875545, 'protection agency': 685297, 'agency around': 37990, 'combat scam': 187034, 'scam many': 740240, 'these scam': 880624, 'scam cross': 740122, 'cross border': 218989, 'border help': 135251, 'them by': 875510, 'by reporting': 153768, 'reporting international': 712702, 'international scam': 441852, 'at econsumergov': 98521, 'not fall victim': 569363, 'fall victim to': 297106, 'victim to this': 956526, 'to this scam': 917458, 'this scam report': 889977, 'scam report them': 740333, 'report them consumer': 712355, 'them consumer protection': 875546, 'consumer protection agency': 198500, 'protection agency around': 685298, 'agency around the': 37991, 'world are trying': 1009326, 'trying to combat': 934780, 'to combat scam': 903005, 'combat scam many': 187036, 'scam many of': 740241, 'many of these': 514393, 'of these scam': 591858, 'these scam cross': 880626, 'scam cross border': 740123, 'cross border help': 218990, 'border help them': 135252, 'help them by': 390700, 'them by reporting': 875515, 'by reporting international': 153770, 'reporting international scam': 712703, 'international scam at': 441853, 'scam at econsumergov': 740063, 'exceeded': 289043, 'london people': 501152, 'people work': 650505, 'in cafe': 421126, 'cafe not': 155118, 'not at': 568266, 'home one': 401719, 'one cafe': 606038, 'cafe owner': 155124, 'owner tell': 632572, 'that revenue': 846044, 'revenue ha': 720430, 'ha exceeded': 370542, 'exceeded double': 289044, 'usual daily': 950912, 'daily amount': 224489, 'amount this': 53285, 'irresponsible behavior': 445037, 'such selfishness': 816739, 'selfishness will': 748386, 'severe for': 754019, 'in london people': 424894, 'london people work': 501153, 'people work in': 650508, 'work in cafe': 1005296, 'in cafe not': 421128, 'cafe not at': 155119, 'not at home': 568269, 'at home one': 99067, 'home one cafe': 401720, 'one cafe owner': 606039, 'cafe owner tell': 155125, 'owner tell me': 632573, 'me that revenue': 523625, 'that revenue ha': 846045, 'revenue ha exceeded': 720432, 'ha exceeded double': 370543, 'exceeded double the': 289045, 'double the usual': 256072, 'the usual daily': 870585, 'usual daily amount': 950913, 'daily amount this': 224491, 'amount this is': 53286, 'is not social': 450188, 'this is irresponsible': 888296, 'is irresponsible behavior': 448986, 'irresponsible behavior and': 445038, 'behavior and the': 123906, 'the price to': 864424, 'price to pay': 677022, 'pay for such': 644903, 'for such selfishness': 325975, 'such selfishness will': 816740, 'selfishness will be': 748387, 'will be severe': 992675, 'be severe for': 117114, 'severe for all': 754020, 'resin': 714552, '280': 16418, '100 gram': 1912, 'gram bar': 361818, 'bar of': 110733, 'of resin': 588981, 'resin went': 714559, 'from 280': 334257, '280 euro': 16419, 'euro to': 283377, '500 euro': 19985, 'euro in': 283361, 'week said': 976830, 'said one': 731293, 'one police': 606900, 'police official': 663135, 'price of 100': 675392, 'of 100 gram': 579318, '100 gram bar': 1913, 'gram bar of': 361819, 'bar of resin': 110737, 'of resin went': 588982, 'resin went from': 714560, 'went from 280': 979011, 'from 280 euro': 334258, '280 euro to': 16420, 'euro to 500': 283378, 'to 500 euro': 899755, '500 euro in': 19986, 'euro in week': 283362, 'in week said': 430764, 'week said one': 976831, 'said one police': 731296, 'one police official': 606901, 'live update': 496089, 'update fill': 946952, 'fill and': 305452, 'for investigational': 322634, 'investigational covid': 443899, '19 treatment': 11565, 'live update fill': 496093, 'update fill and': 946953, 'fill and price': 305453, 'and price for': 69450, 'price for investigational': 673980, 'for investigational covid': 322635, 'investigational covid 19': 443900, 'covid 19 treatment': 213983, '19 treatment via': 11573, 'policeman': 663278, '19 let': 8310, 'of take': 590572, 'the pledge': 863843, 'more alert': 538585, 'alert careful': 41372, 'careful kind': 164406, 'kind towards': 475017, 'towards one': 927221, 'professional medical': 682470, 'medical team': 526475, 'team policeman': 835756, 'policeman supermarket': 663287, 'vegetable vendor': 954120, 'vendor who': 954414, 'life everyday': 488635, 'is fighting against': 447788, 'covid 19 let': 213350, '19 let all': 8311, 'let all of': 486563, 'all of take': 43712, 'of take the': 590575, 'take the pledge': 832670, 'the pledge to': 863844, 'pledge to be': 660855, 'be more alert': 115962, 'more alert careful': 538586, 'alert careful kind': 41373, 'careful kind towards': 164407, 'kind towards one': 475018, 'towards one and': 927222, 'one and all': 605894, 'and all we': 57905, 'all we want': 45412, 'thank all the': 841536, 'the healthcare professional': 857197, 'healthcare professional medical': 387237, 'professional medical team': 682471, 'medical team policeman': 526478, 'team policeman supermarket': 835757, 'policeman supermarket and': 663288, 'supermarket and vegetable': 819096, 'and vegetable vendor': 74899, 'vegetable vendor who': 954124, 'vendor who are': 954415, 'who are risking': 988208, 'their life everyday': 873828, 'heavenly': 388557, 'hand remember': 375206, 'to hold': 907903, 'hold them': 400029, 'them together': 876537, 'in prayer': 426906, 'prayer while': 669081, 'while stocking': 987329, 'stocking your': 803628, 'your heart': 1024283, 'heart with': 388357, 'enough holy': 277468, 'holy spirit': 400512, 'spirit we': 789520, 'we prepare': 972734, 'prepare ourselves': 670120, 'ourselves from': 625473, 'let prepare': 486983, 'prepare our': 670116, 'our soul': 624848, 'soul for': 786224, 'our heavenly': 623402, 'heavenly home': 388558, 'be blessed': 113875, 'your hand remember': 1024216, 'hand remember to': 375207, 'remember to hold': 710372, 'to hold them': 907918, 'hold them together': 400031, 'them together in': 876538, 'together in prayer': 920833, 'in prayer while': 426907, 'prayer while stocking': 669082, 'while stocking your': 987331, 'stocking your store': 803630, 'enough food remember': 277409, 'food remember to': 316168, 'remember to stock': 710388, 'to stock your': 915462, 'stock your heart': 803227, 'your heart with': 1024289, 'heart with enough': 388358, 'with enough holy': 998234, 'enough holy spirit': 277469, 'holy spirit we': 400513, 'spirit we prepare': 789521, 'we prepare ourselves': 972736, 'prepare ourselves from': 670121, 'ourselves from covid': 625475, '19 let prepare': 8315, 'let prepare our': 486984, 'prepare our soul': 670119, 'our soul for': 624849, 'soul for our': 786225, 'for our heavenly': 324257, 'our heavenly home': 623403, 'heavenly home be': 388559, 'home be blessed': 400772, 'cardiologist': 163767, 'quit': 694783, 'my brother': 547550, 'brother cardiologist': 141043, 'cardiologist in': 163768, 'boston had': 135797, 'had 25': 372803, '25 pay': 15936, 'cut but': 223255, 'but his': 145938, 'his hour': 397519, 'hour are': 405428, 'longer the': 502083, 'his life': 397577, 'life higher': 488729, 'ever my': 285424, 'my 28': 547145, 'old son': 598471, 'is grocery': 448226, 'worker terrified': 1007895, 'terrified should': 838503, 'should he': 766103, 'he quit': 385321, 'quit heal': 694793, 'my brother cardiologist': 547554, 'brother cardiologist in': 141044, 'cardiologist in boston': 163769, 'in boston had': 420913, 'boston had 25': 135798, 'had 25 pay': 372804, '25 pay cut': 15937, 'pay cut but': 644826, 'cut but his': 223256, 'but his hour': 145939, 'his hour are': 397520, 'hour are longer': 405432, 'are longer the': 87878, 'longer the risk': 502086, 'the risk to': 865886, 'risk to his': 723963, 'to his life': 907817, 'his life higher': 397580, 'life higher than': 488730, 'higher than ever': 395752, 'than ever my': 840596, 'ever my 28': 285425, 'my 28 year': 547146, '28 year old': 16417, 'year old son': 1014867, 'old son is': 598476, 'son is grocery': 785394, 'is grocery store': 448228, 'store worker terrified': 811596, 'worker terrified should': 1007896, 'terrified should he': 838504, 'should he quit': 766104, 'he quit heal': 385322, 'nearest': 553706, 'you nearest': 1019956, 'nearest grocery': 553713, 'selling hand': 749284, 'higher rate': 395707, 'rate or': 697332, 'stock please': 802688, 'consider these': 195153, 'these cheap': 879748, 'cheap whiskey': 174236, 'whiskey instead': 987773, 'instead chinaliedpeopledied': 440161, 'chinaliedpeopledied wuhanvirus': 177119, 'wuhanvirus wuhan': 1013590, 'wuhan chinavirus': 1013470, 'if you nearest': 415480, 'you nearest grocery': 1019957, 'nearest grocery store': 553714, 'store is selling': 808526, 'is selling hand': 451757, 'selling hand sanitizer': 749287, 'sanitizer at the': 734517, 'at the higher': 100978, 'the higher rate': 857331, 'higher rate or': 395709, 'rate or if': 697333, 'or if it': 615715, 'if it out': 414329, 'of stock please': 590185, 'stock please consider': 802689, 'please consider these': 659823, 'consider these cheap': 195154, 'these cheap whiskey': 879751, 'cheap whiskey instead': 174237, 'whiskey instead chinaliedpeopledied': 987774, 'instead chinaliedpeopledied wuhanvirus': 440162, 'chinaliedpeopledied wuhanvirus wuhan': 177120, 'wuhanvirus wuhan chinavirus': 1013591, 'cleansing': 181181, 'now wipe': 576435, 'and immediately': 64995, 'immediately hand': 417102, 'hand them': 375826, 'you because': 1017412, 'because when': 119827, 'provided cleansing': 686586, 'cleansing wipe': 181188, 'it yourself': 462669, 'yourself people': 1026678, 'would steal': 1012268, 'steal all': 799170, 'the wipe': 871617, 'store now wipe': 809137, 'now wipe down': 576436, 'wipe down cart': 996232, 'down cart and': 256620, 'cart and immediately': 165248, 'and immediately hand': 64997, 'immediately hand them': 417103, 'hand them to': 375827, 'them to you': 876532, 'to you because': 918892, 'you because when': 1017413, 'because when they': 119831, 'when they provided': 984273, 'they provided cleansing': 882934, 'provided cleansing wipe': 686587, 'cleansing wipe for': 181189, 'wipe for you': 996269, 'do it yourself': 249528, 'it yourself people': 462674, 'yourself people would': 1026679, 'people would steal': 650546, 'would steal all': 1012269, 'steal all the': 799171, 'all the wipe': 44984, 'kleenex': 475893, 'packet': 633687, 'utahearthquake': 951199, 'power is': 667630, 'only mean': 610777, 'mean one': 524591, 'thing should': 884740, 'the nearest': 861357, 'buy all': 148288, 'the kleenex': 858839, 'kleenex because': 475894, 'because if': 119141, 'if tp': 415189, 'currency in': 221037, 'apocalypse hand': 81535, 'hand held': 375013, 'held packet': 388917, 'packet of': 633700, 'of facial': 583367, 'facial tissue': 295248, 'tissue will': 899245, 'small change': 774912, 'change utahearthquake': 172377, 'now the power': 576061, 'the power is': 864152, 'power is out': 667632, 'is out so': 450667, 'out so that': 627206, 'so that can': 778363, 'that can only': 843114, 'can only mean': 159131, 'only mean one': 610778, 'mean one thing': 524593, 'one thing should': 607232, 'thing should go': 884742, 'to the nearest': 916894, 'the nearest grocery': 861360, 'store and buy': 806209, 'and buy all': 59327, 'buy all the': 148293, 'all the kleenex': 44804, 'the kleenex because': 858840, 'kleenex because if': 475895, 'because if tp': 119146, 'if tp is': 415190, 'tp is going': 927857, 'be the currency': 117608, 'the currency in': 852604, 'currency in the': 221038, 'the apocalypse hand': 848810, 'apocalypse hand held': 81536, 'hand held packet': 375015, 'held packet of': 388918, 'packet of facial': 633706, 'of facial tissue': 583369, 'facial tissue will': 295251, 'tissue will be': 899246, 'be the small': 117656, 'the small change': 867359, 'small change utahearthquake': 774913, 'overdrive': 631183, 'flooring': 310868, 'manufacturing industry': 513609, 'be working': 118136, 'in overdrive': 426386, 'overdrive to': 631190, 'buyer during': 149631, 'pandemic hopefully': 635653, 'hopefully they': 403890, 'have resin': 382282, 'resin flooring': 714555, 'flooring system': 310869, 'the food manufacturing': 855575, 'food manufacturing industry': 315379, 'manufacturing industry will': 513617, 'industry will be': 436247, 'will be working': 992775, 'be working in': 118143, 'working in overdrive': 1008727, 'in overdrive to': 426387, 'overdrive to keep': 631191, 'the demand from': 853095, 'demand from panic': 235543, 'from panic buyer': 336842, 'panic buyer during': 637570, 'buyer during the': 149632, '19 pandemic hopefully': 9352, 'pandemic hopefully they': 635654, 'hopefully they ve': 403892, 'they ve made': 883665, 've made the': 953364, 'choice and have': 177730, 'and have resin': 64271, 'have resin flooring': 382283, 'resin flooring system': 714556, 'geopolitical': 345971, 'ramification': 696401, 'fearful': 301449, 'entail': 278217, 'and geopolitical': 63545, 'geopolitical ramification': 345976, 'ramification consumer': 696402, 'ha crashed': 370257, 'crashed because': 215063, 'are either': 86090, 'either too': 270399, 'too fearful': 924733, 'fearful or': 301463, 'or unable': 617584, 'and spend': 72085, 'spend consequence': 788593, 'consequence all': 194836, 'in industry': 424082, 'that entail': 843715, 'entail close': 278218, 'close contact': 182589, 'economic recovery from': 267234, 'recovery from covid': 705331, '19 and geopolitical': 5029, 'and geopolitical ramification': 63547, 'geopolitical ramification consumer': 345977, 'ramification consumer spending': 696403, 'spending ha crashed': 788826, 'ha crashed because': 370258, 'crashed because people': 215064, 'people are either': 646962, 'are either too': 86099, 'either too fearful': 270400, 'too fearful or': 924734, 'fearful or unable': 301464, 'or unable to': 617585, 'go out and': 353934, 'out and spend': 625693, 'and spend consequence': 72087, 'spend consequence all': 788594, 'consequence all business': 194837, 'all business in': 42235, 'business in industry': 143885, 'in industry that': 424085, 'industry that entail': 436143, 'that entail close': 843716, 'entail close contact': 278219, 'close contact with': 182594, 'contact with the': 200292, 'with the public': 1001443, '19 learning': 8298, 'learning for': 484204, 'good supply': 357801, 'chain efficiency': 170673, 'efficiency resilience': 269407, 'covid 19 learning': 213345, '19 learning for': 8299, 'learning for consumer': 484206, 'consumer good supply': 197640, 'good supply chain': 357802, 'supply chain efficiency': 824949, 'chain efficiency resilience': 170674, 'procured': 680096, 'catch covid': 166991, '19 go': 7228, 'queue some': 694065, 'these hoarder': 880122, 'hoarder may': 399072, 'live to': 496066, 'to consume': 903257, 'consume the': 195949, 'the volume': 870952, 'volume they': 960171, 've procured': 953450, 'procured and': 680097, 'course give': 211864, 'give priority': 350662, 'priority to': 678679, 'those most': 892222, 'most needing': 542525, 'needing it': 556626, 'want to catch': 966008, 'to catch covid': 902497, 'catch covid 19': 166992, 'covid 19 go': 213149, '19 go and': 7229, 'go and stand': 353288, 'supermarket queue some': 822131, 'queue some of': 694067, 'some of these': 783411, 'of these hoarder': 591828, 'these hoarder may': 880124, 'hoarder may not': 399073, 'may not live': 521383, 'not live to': 570440, 'live to consume': 496067, 'to consume the': 903258, 'consume the volume': 195951, 'the volume they': 870954, 'volume they ve': 960172, 'they ve procured': 883672, 've procured and': 953451, 'procured and of': 680098, 'of course give': 582051, 'course give priority': 211865, 'give priority to': 350663, 'priority to those': 678682, 'to those most': 917512, 'those most needing': 892226, 'most needing it': 542526, 'skid': 772933, 'angel': 76296, 'video skid': 956900, 'skid row': 772936, 'row angel': 726570, 'angel give': 76307, 'give food': 350495, 'help battle': 389406, 'video skid row': 956901, 'skid row angel': 772937, 'row angel give': 726571, 'angel give food': 76308, 'give food amp': 350496, 'food amp hand': 313137, 'to help battle': 907461, 'contaminate': 200643, 'to properly': 912267, 'properly disinfect': 684178, 'grocery any': 364270, 'any household': 79332, 'household cleaner': 406758, 'cleaner will': 180867, 'do be': 249116, 'have clean': 379978, 'clean area': 180474, 'and dirty': 61379, 'dirty area': 243727, 'area if': 92061, 'glove be': 352608, 'take them': 832693, 'right way': 722400, 'way so': 969871, 'not contaminate': 568857, 'contaminate yourself': 200646, 'show how to': 766994, 'how to properly': 409060, 'to properly disinfect': 912268, 'properly disinfect your': 684179, 'disinfect your grocery': 245587, 'your grocery any': 1024117, 'grocery any household': 364271, 'any household cleaner': 79333, 'household cleaner will': 406760, 'cleaner will do': 180868, 'will do be': 993222, 'do be sure': 249118, 'sure to have': 827764, 'to have clean': 907216, 'have clean area': 379979, 'clean area and': 180475, 'area and dirty': 91935, 'and dirty area': 61380, 'dirty area if': 243728, 'area if you': 92063, 'if you wear': 415558, 'you wear glove': 1022213, 'wear glove be': 974335, 'glove be sure': 352609, 'sure to take': 827787, 'to take them': 916246, 'take them off': 832696, 'them off the': 876079, 'off the right': 594263, 'the right way': 865837, 'right way so': 722402, 'way so you': 969879, 'do not contaminate': 249706, 'not contaminate yourself': 568858, 'differentiated': 242148, 'john most': 466540, 'most ll': 542493, 'll say': 496985, 'say something': 739159, 'something more': 784969, 'true happens': 933094, 'happens often': 377494, 'often during': 596188, 'period my': 651824, 'my client': 547702, 'client top': 182118, 'top manager': 925613, 'manager asked': 512680, 'asked should': 95822, 'should there': 766577, 'be differentiated': 114453, 'differentiated ppe': 242149, 'ppe we': 668104, 'agreed that': 38726, 'that health': 844277, 'health is': 386564, 'is universal': 453511, 'universal and': 942345, 'no give': 564349, 'john most ll': 466541, 'most ll say': 542494, 'll say something': 496987, 'say something more': 739162, 'something more about': 784970, 'more about it': 538512, 'about it but': 25570, 'it but what': 456963, 'but what you': 147805, 'what you say': 982690, 'you say is': 1020999, 'say is true': 738825, 'is true happens': 453367, 'true happens often': 933095, 'happens often during': 377495, 'often during this': 596189, 'this period my': 889527, 'period my client': 651825, 'my client top': 547704, 'client top manager': 182119, 'top manager asked': 925614, 'manager asked should': 512681, 'asked should there': 95823, 'should there be': 766578, 'there be differentiated': 878212, 'be differentiated ppe': 114454, 'differentiated ppe we': 242150, 'ppe we agreed': 668105, 'we agreed that': 970300, 'agreed that health': 38727, 'that health is': 844280, 'health is universal': 386570, 'is universal and': 453512, 'universal and said': 942346, 'and said no': 70770, 'said no give': 731256, 'no give all': 564350, 'give all the': 350368, 'agrees': 38815, 'recorded': 705088, 'opec agrees': 611837, 'agrees to': 38823, 'may go': 521210, 'tomorrow abuja': 924005, 'abuja ha': 27577, 'not recorded': 571267, 'recorded covid': 705095, 'in 48': 419938, 'news for opec': 560439, 'for opec agrees': 324134, 'opec agrees to': 611838, 'agrees to cut': 38825, 'cut production price': 223508, 'production price may': 682187, 'price may go': 675191, 'may go up': 521214, 'go up from': 354432, 'up from tomorrow': 944994, 'from tomorrow abuja': 338092, 'tomorrow abuja ha': 924006, 'abuja ha not': 27578, 'ha not recorded': 371372, 'not recorded covid': 571268, 'recorded covid 19': 705096, 'case in 48': 165780, 'in 48 hour': 419939, 'want news': 965863, 'news report': 560747, 'report done': 711904, 'done on': 254958, 'on where': 605266, 'damn toilet': 225454, 'want news report': 965864, 'news report done': 560748, 'report done on': 711905, 'done on where': 254959, 'on where the': 605268, 'where the damn': 985222, 'the damn toilet': 852817, 'damn toilet paper': 225455, 'shelf around': 756837, 'world run': 1009945, 'paper amid': 639790, 'outbreak company': 628121, 'it upon': 461976, 'upon themselves': 947658, 'share their': 755260, 'their wealth': 875161, 'wealth with': 974187, 'with community': 997698, 'community member': 189979, 'supermarket shelf around': 822430, 'shelf around the': 756838, 'the world run': 871955, 'world run out': 1009946, 'sanitizer and toilet': 734447, 'toilet paper amid': 921182, 'paper amid covid': 639792, '19 outbreak company': 9103, 'outbreak company are': 628122, 'company are taking': 190456, 'are taking it': 90724, 'taking it upon': 833413, 'it upon themselves': 461977, 'upon themselves to': 947660, 'themselves to share': 876915, 'to share their': 914367, 'share their wealth': 755271, 'their wealth with': 875162, 'wealth with community': 974188, 'with community member': 997699, 'community member in': 189985, 'member in need': 528114, 'elect': 270986, 'pvt': 691353, 'sir only': 771617, 'only your': 611512, 'your govt': 1024086, 'ha given': 370709, 'given benefit': 350955, 'class by': 180162, 'not increasing': 570132, 'increasing water': 433736, 'water elect': 968975, 'elect bill': 270987, 'bill school': 130678, 'fee once': 302208, 'again request': 37146, 'request you': 713238, 'ask pvt': 95609, 'pvt school': 691357, 'school not': 741877, 'demand extra': 235314, 'extra charge': 293484, 'charge in': 173262, 'fee like': 302194, 'safety transport': 730776, 'transport in': 929895, 'sir only your': 771618, 'only your govt': 611513, 'your govt ha': 1024087, 'govt ha given': 361144, 'ha given benefit': 370710, 'given benefit to': 350956, 'benefit to middle': 127118, 'to middle class': 910117, 'middle class by': 530630, 'class by not': 180163, 'by not increasing': 153361, 'not increasing water': 570134, 'increasing water elect': 433737, 'water elect bill': 968976, 'elect bill school': 270988, 'bill school fee': 130679, 'school fee once': 741790, 'fee once again': 302209, 'once again request': 605574, 'again request you': 37147, 'request you to': 713241, 'you to ask': 1021752, 'to ask pvt': 900761, 'ask pvt school': 95610, 'pvt school not': 691358, 'school not to': 741878, 'not to demand': 572143, 'to demand extra': 904141, 'demand extra charge': 235315, 'extra charge in': 293485, 'charge in school': 173265, 'in school fee': 427731, 'school fee like': 741789, 'fee like food': 302195, 'like food safety': 490262, 'food safety transport': 316279, 'safety transport in': 730777, 'transport in covid': 929896, 'condo': 193584, 'sengkang': 750167, 'draw': 258472, 'hun': 410963, 'executive condo': 289872, 'condo sale': 193590, 'sale launch': 732335, 'launch in': 481913, 'in sengkang': 427802, 'sengkang draw': 750168, 'draw crowd': 258473, 'crowd hoping': 219168, 'for lower': 323133, 'during economic': 262614, 'economic slowdown': 267298, 'slowdown during': 774431, 'are generally': 86775, 'generally avoiding': 345523, 'avoiding crowded': 105443, 'crowded area': 219294, 'or large': 615924, 'gathering due': 344456, 'pandemic one': 636098, 'one after': 605871, 'after another': 35374, 'another property': 77777, 'property hun': 684274, 'executive condo sale': 289873, 'condo sale launch': 193591, 'sale launch in': 732336, 'launch in sengkang': 481915, 'in sengkang draw': 427803, 'sengkang draw crowd': 750169, 'draw crowd hoping': 258474, 'crowd hoping for': 219169, 'hoping for lower': 403924, 'for lower price': 323138, 'lower price during': 505957, 'price during economic': 673620, 'during economic slowdown': 262615, 'economic slowdown during': 267303, 'slowdown during this': 774432, 'this time when': 890712, 'time when people': 898301, 'people are generally': 646986, 'are generally avoiding': 86776, 'generally avoiding crowded': 345524, 'avoiding crowded area': 105444, 'crowded area or': 219297, 'area or large': 92150, 'or large gathering': 615926, 'large gathering due': 479670, 'gathering due to': 344457, '19 pandemic one': 9415, 'pandemic one after': 636099, 'one after another': 605872, 'after another property': 35376, 'another property hun': 77778, 'we might': 972369, 'never know when': 558094, 'when we might': 984457, 'socialdistancinguk': 780914, 'racing': 695252, 'people sticking': 649579, 'sticking to': 800105, 'the socialdistancinguk': 867433, 'socialdistancinguk in': 780915, 'supermarket mind': 821518, 'mind don': 532656, 'think even': 885226, 'even could': 283980, 'could catch': 208994, 'the speed': 867559, 'speed she': 788463, 'wa racing': 963034, 'racing around': 695253, 've gave': 953151, 'gave her': 344616, 'her fixed': 392049, 'fixed penalty': 309817, 'penalty ticket': 646453, 'great to see': 363071, 'see people sticking': 745569, 'people sticking to': 649580, 'sticking to the': 800109, 'to the socialdistancinguk': 917075, 'the socialdistancinguk in': 867434, 'socialdistancinguk in my': 780916, 'local supermarket mind': 498555, 'supermarket mind don': 821519, 'mind don think': 532657, 'don think even': 253974, 'think even could': 885227, 'even could catch': 283981, 'could catch up': 208996, 'with the speed': 1001486, 'the speed she': 867563, 'speed she wa': 788464, 'she wa racing': 756423, 'wa racing around': 963035, 'racing around the': 695254, 'the store should': 868104, 'store should ve': 810173, 'should ve gave': 766625, 've gave her': 953152, 'gave her fixed': 344618, 'her fixed penalty': 392050, 'fixed penalty ticket': 309818, 'should implement': 766120, 'same distancing': 733042, 'solution used': 782119, 'we should implement': 973276, 'should implement the': 766121, 'implement the same': 418437, 'the same distancing': 866217, 'same distancing solution': 733043, 'distancing solution used': 247495, 'solution used in': 782120, 'used in danish': 949938, 'career pivot': 164352, 'pivot now': 657088, 'now work': 576470, 'career pivot now': 164354, 'pivot now work': 657089, 'now work in': 576473, 'supporter': 827079, 'councilors': 210060, 'brunch': 141347, 'supporter show': 827095, 'the hundred': 857741, 'hundred after': 410977, 'after city': 35464, 'city councilors': 179117, 'councilors including': 210061, 'including urge': 432239, 'urge them': 948231, 'buy local': 148911, 'local in': 498105, 'in midst': 425307, 'many avoiding': 513811, 'avoiding chinese': 105433, 'chinese business': 177203, 'business due': 143665, 'about lunch': 25680, 'lunch price': 506742, 'price reduced': 676126, 'reduced for': 706081, 'for brunch': 319808, 'brunch 10': 141348, '10 400': 1277, '400 people': 18765, 'people packed': 649049, 'packed china': 633596, 'china pearl': 176875, 'supporter show up': 827096, 'show up by': 767254, 'up by the': 944561, 'by the hundred': 154352, 'the hundred after': 857742, 'hundred after city': 410978, 'after city councilors': 35465, 'city councilors including': 179118, 'councilors including urge': 210062, 'including urge them': 432240, 'urge them to': 948232, 'to buy local': 902262, 'buy local in': 148914, 'local in midst': 498106, 'in midst of': 425308, 'midst of many': 530789, 'of many avoiding': 586169, 'many avoiding chinese': 513812, 'avoiding chinese business': 105434, 'chinese business due': 177204, 'business due to': 143666, 'to concern about': 903164, 'concern about lunch': 192897, 'about lunch price': 25681, 'lunch price reduced': 506743, 'price reduced for': 676131, 'reduced for brunch': 706082, 'for brunch 10': 319809, 'brunch 10 400': 141349, '10 400 people': 1278, '400 people packed': 18767, 'people packed china': 649050, 'packed china pearl': 633597, 'day major': 227952, 'have reported': 382267, 'reported the': 712544, 'several employee': 753835, 'employee from': 273873, 'recent day major': 703862, 'day major supermarket': 227953, 'major supermarket chain': 509487, 'supermarket chain have': 819608, 'chain have reported': 170769, 'have reported the': 382274, 'reported the death': 712545, 'death of several': 230145, 'of several employee': 589542, 'several employee from': 753837, 'employee from covid': 273874, 'italy fall': 462826, 'fall 15': 296788, '15 during': 3704, 'lockdown initial': 499531, 'initial analysis': 438515, 'analysis show': 57076, 'show drop': 766923, 'drop for': 260201, 'for europe': 321143, '2020 because': 14170, 'demand in italy': 235670, 'in italy fall': 424300, 'italy fall 15': 462827, 'fall 15 during': 296789, '15 during lockdown': 3705, 'during lockdown initial': 262767, 'lockdown initial analysis': 499532, 'initial analysis show': 438517, 'analysis show drop': 57077, 'show drop for': 766924, 'drop for europe': 260202, 'for europe in': 321145, 'europe in 2020': 283457, 'in 2020 because': 419821, '2020 because of': 14171, 'extensively': 293314, 'yemen': 1015310, 'unaffordable': 939390, 'how extensively': 407830, 'extensively it': 293315, 'affected them': 34449, 'price continuing': 673228, 'the costly': 851992, 'costly war': 208356, 'war in': 966471, 'in yemen': 431037, 'yemen ha': 1015317, 'now become': 574217, 'an unaffordable': 56818, 'unaffordable adventure': 939391, 'especially now with': 280566, '19 which we': 12041, 'which we do': 986463, 'know how extensively': 476436, 'how extensively it': 407831, 'extensively it ha': 293316, 'it ha affected': 458375, 'ha affected them': 369469, 'affected them and': 34450, 'them and oil': 875393, 'oil price continuing': 597086, 'price continuing to': 673229, 'continuing to fall': 201561, 'to fall the': 905642, 'fall the costly': 297071, 'the costly war': 851993, 'costly war in': 208357, 'war in yemen': 966474, 'in yemen ha': 431039, 'yemen ha now': 1015318, 'ha now become': 371390, 'now become an': 574218, 'become an unaffordable': 119921, 'an unaffordable adventure': 56819, 'of artwork': 580382, 'artwork we': 94667, 'been sent': 121923, 'nh amp': 561870, 'amp key': 54049, 'worker amp': 1006253, 'amp thank': 54633, 'fire service': 308117, 'service ambulance': 752057, 'ambulance refuse': 51338, 'collector delivery': 186555, 'worker carers': 1006609, 'carers supermarket': 164614, 'few example of': 303827, 'example of artwork': 288925, 'of artwork we': 580383, 'artwork we ve': 94668, 've been sent': 952927, 'been sent in': 121924, 'sent in support': 750762, 'the nh amp': 861723, 'nh amp key': 561871, 'amp key worker': 54050, 'key worker amp': 473465, 'worker amp thank': 1006261, 'amp thank you': 54635, 'to the police': 916964, 'the police fire': 863918, 'police fire service': 663002, 'fire service ambulance': 308118, 'service ambulance refuse': 752058, 'ambulance refuse collector': 51339, 'refuse collector delivery': 707012, 'collector delivery worker': 186557, 'delivery worker postal': 234777, 'postal worker carers': 666466, 'worker carers supermarket': 1006612, 'carers supermarket staff': 164616, 'and all our': 57881, 'all our key': 43812, 'ja': 464096, 'need milk': 555236, 'milk dress': 531642, 'dress up': 258683, 'it ja': 459191, 'you need milk': 1020014, 'need milk dress': 555237, 'milk dress up': 531643, 'dress up and': 258684, 'up and go': 944328, 'and go to': 63786, 'supermarket and get': 818988, 'and get it': 63583, 'get it ja': 347411, 'coronavirus only': 206354, 'only open': 610901, 'share link': 755085, 'trusted agency': 934335, 'agency here': 38022, 'is advice': 445362, 'advice to': 33525, 'avoid and': 104999, 'advantage of covid': 32996, '19 coronavirus only': 6114, 'coronavirus only open': 206355, 'only open and': 610902, 'open and share': 612077, 'and share link': 71391, 'share link from': 755086, 'link from trusted': 493844, 'from trusted agency': 338156, 'trusted agency here': 934336, 'agency here is': 38023, 'here is advice': 393211, 'is advice to': 445363, 'advice to avoid': 33526, 'to avoid and': 900866, 'avoid and report': 105000, 'and report scam': 70267, 'den': 236908, 'demma': 236663, 'sef': 747372, 'chai': 170429, 'the telco': 869250, 'telco to': 836657, 'tell that': 837073, 'we dey': 971287, 'dey stay': 240037, 'indoors dey': 435393, 'dey prevent': 240033, 'the den': 853129, 'den dem': 236909, 'dem too': 234884, 'too go': 924762, 'go reduce': 354067, 'reduce demma': 705821, 'demma data': 236664, 'that said': 846094, 'said dem': 731039, 'dem do': 234867, 'do am': 249049, 'am sef': 50368, 'sef go': 747373, 'go make': 353827, 'sure your': 827878, 'your data': 1023461, 'data go': 226247, 'go finish': 353537, 'finish quickly': 307863, 'quickly chai': 694491, 'waiting for the': 964337, 'for the telco': 326720, 'the telco to': 869253, 'telco to tell': 836659, 'to tell that': 916349, 'tell that we': 837079, 'that we dey': 847369, 'we dey stay': 971288, 'dey stay indoors': 240038, 'stay indoors dey': 797073, 'indoors dey prevent': 435394, 'dey prevent the': 240034, 'prevent the den': 671731, 'the den dem': 853130, 'den dem too': 236910, 'dem too go': 234885, 'too go reduce': 924763, 'go reduce demma': 354068, 'reduce demma data': 705822, 'demma data price': 236665, 'data price that': 226363, 'price that said': 676814, 'that said dem': 846096, 'said dem do': 731040, 'dem do am': 234868, 'do am sef': 249050, 'am sef go': 50369, 'sef go make': 747374, 'go make sure': 353828, 'make sure your': 510541, 'sure your data': 827880, 'your data go': 1023462, 'data go finish': 226248, 'go finish quickly': 353538, 'finish quickly chai': 307864, 'is them': 452990, 'price lmao': 675079, 'good thing about': 357840, '19 is them': 8065, 'is them gas': 452991, 'gas price lmao': 343990, 'popup': 664761, 'digital medium': 242603, 'medium scammer': 527263, 'the desperation': 853196, 'desperation toiletpaper': 238616, 'toiletpaperpanic clickbait': 923203, 'clickbait scam': 181975, 'scam popup': 740308, 'even the digital': 284650, 'the digital medium': 853286, 'digital medium scammer': 242604, 'medium scammer are': 527264, 'scammer are getting': 740535, 'are getting in': 86810, 'getting in on': 349056, 'on the desperation': 604062, 'the desperation toiletpaper': 853198, 'desperation toiletpaper toiletpaperpanic': 238617, 'toiletpaper toiletpaperpanic clickbait': 922693, 'toiletpaperpanic clickbait scam': 923204, 'clickbait scam popup': 181976, 'attached': 102034, 'njavwa': 563470, 'simukoko': 770344, '260964905611': 16203, 'nw': 577802, 'dear colleague': 229758, 'colleague please': 186228, 'please find': 659994, 'find attached': 306818, 'attached our': 102045, 'consumer awareness': 196371, 'awareness on': 105715, '19 mr': 8701, 'mr njavwa': 544384, 'njavwa simukoko': 563471, 'simukoko cut': 770345, 'cut comms': 223273, 'comms amp': 189515, 'amp advocacy': 53359, 'advocacy 260964905611': 33795, '260964905611 nw': 16204, 'nw org': 577805, 'dear colleague please': 229760, 'colleague please find': 186229, 'please find attached': 659995, 'find attached our': 306819, 'attached our latest': 102046, 'our latest on': 623672, 'on consumer awareness': 600027, 'consumer awareness on': 196372, 'awareness on covid': 105718, 'covid 19 mr': 213452, '19 mr njavwa': 8702, 'mr njavwa simukoko': 544385, 'njavwa simukoko cut': 563472, 'simukoko cut comms': 770346, 'cut comms amp': 223274, 'comms amp advocacy': 189516, 'amp advocacy 260964905611': 53360, 'advocacy 260964905611 nw': 33796, '260964905611 nw org': 16205, 'crowd here': 219166, 'at sam': 100458, 'sam and': 732905, 'and saw': 70975, 'saw total': 738304, 'mask not': 519019, 'even respirator': 284526, 'respirator combined': 715195, 'combined this': 187128, 'get bad': 346638, 'bad none': 107958, 'people know': 648594, 'what social': 982204, 'is either': 447454, 'either is': 270322, 'it unreal': 461942, 'store and looked': 806286, 'and looked at': 66371, 'looked at the': 502712, 'at the crowd': 100919, 'the crowd here': 852525, 'crowd here at': 219167, 'here at sam': 392791, 'at sam and': 100459, 'sam and saw': 732907, 'and saw total': 70988, 'saw total of': 738305, 'total of mask': 926212, 'of mask not': 586273, 'mask not even': 519021, 'not even respirator': 569274, 'even respirator combined': 284527, 'respirator combined this': 715196, 'combined this shit': 187129, 'to get bad': 906417, 'get bad none': 346639, 'bad none of': 107959, 'none of these': 566599, 'of these people': 591847, 'these people know': 880449, 'people know what': 648598, 'know what social': 476976, 'what social distancing': 982206, 'distancing is either': 247242, 'is either is': 447455, 'either is it': 270324, 'is it unreal': 449072, 'shaming': 754746, 'upping': 947704, 'really interested': 702342, 'in doing': 422341, 'the shaming': 866779, 'shaming seeing': 754756, 'seeing on': 746393, 'here rather': 393502, 'rather celebrate': 697440, 'celebrate all': 168780, 'the compliance': 851402, 'compliance effort': 192439, 'effort seeing': 269583, 'the pulling': 864889, 'pulling together': 688949, 'together attitude': 920717, 'attitude the': 102586, 'the upping': 870507, 'upping of': 947705, 'of connection': 581674, 'connection more': 194711, 'ever remember': 285465, 'remember smiling': 710259, 'smiling at': 775767, 'other at': 619857, 'supermarket under': 823603, 'not really interested': 571237, 'really interested in': 702343, 'interested in doing': 441455, 'in doing the': 422344, 'doing the shaming': 252726, 'the shaming seeing': 866780, 'shaming seeing on': 754757, 'seeing on here': 746394, 'on here rather': 601291, 'here rather celebrate': 393503, 'rather celebrate all': 697441, 'celebrate all the': 168781, 'all the compliance': 44693, 'the compliance effort': 851403, 'compliance effort seeing': 192440, 'effort seeing the': 269584, 'seeing the pulling': 746504, 'the pulling together': 864891, 'pulling together attitude': 688950, 'together attitude the': 920718, 'attitude the upping': 102587, 'the upping of': 870508, 'upping of connection': 947706, 'of connection more': 581675, 'connection more people': 194712, 'people than ever': 649744, 'than ever remember': 840602, 'ever remember smiling': 285466, 'remember smiling at': 710260, 'smiling at each': 775768, 'at each other': 98501, 'each other at': 264156, 'other at the': 619861, 'the supermarket under': 868880, 'with everyone': 998285, 'everyone limiting': 287164, 'limiting their': 492883, 'their trip': 875028, 'great tip': 363063, 'store different': 807314, 'different food': 241945, 'to extend': 905523, 'extend their': 293129, 'their shelf': 874678, 'shelf life': 757278, 'life groceryshopping': 488699, 'groceryshopping socialdistancing': 366278, 'with everyone limiting': 998291, 'everyone limiting their': 287165, 'limiting their trip': 492884, 'their trip to': 875030, 'store offer some': 809157, 'offer some great': 594801, 'some great tip': 782992, 'great tip on': 363066, 'you can store': 1017799, 'can store different': 159833, 'store different food': 807315, 'different food to': 241946, 'food to extend': 317248, 'to extend their': 905530, 'extend their shelf': 293131, 'their shelf life': 874683, 'shelf life groceryshopping': 757280, 'life groceryshopping socialdistancing': 488700, 'bleepin': 132567, 'teenscoughingongrocerystoreproduce': 836568, 'genz': 345920, 'purcellville': 689323, 'file this': 305377, 'one under': 607321, 'under are': 940006, 'you bleepin': 1017482, 'bleepin kidding': 132568, 'me wtf': 524031, 'wtf teenscoughingongrocerystoreproduce': 1013321, 'teenscoughingongrocerystoreproduce genz': 836569, 'genz purcellville': 345923, 'file this one': 305378, 'this one under': 889255, 'one under are': 607323, 'under are you': 940007, 'are you bleepin': 91769, 'you bleepin kidding': 1017483, 'bleepin kidding me': 132569, 'kidding me wtf': 474210, 'me wtf teenscoughingongrocerystoreproduce': 524032, 'wtf teenscoughingongrocerystoreproduce genz': 1013322, 'teenscoughingongrocerystoreproduce genz purcellville': 836570, 'alma': 46447, 'mater': 520359, 'properly use': 684208, 'sanitizer thanks': 735849, 'my alma': 547254, 'alma mater': 46448, 'mater for': 520360, 'this helpful': 887902, 'helpful guidance': 391181, 'guidance 19': 368193, 'to properly use': 912269, 'properly use hand': 684209, 'hand sanitizer thanks': 375615, 'sanitizer thanks to': 735851, 'thanks to my': 842244, 'to my alma': 910372, 'my alma mater': 547255, 'alma mater for': 46449, 'mater for this': 520361, 'for this helpful': 327036, 'this helpful guidance': 887903, 'helpful guidance 19': 391182, 'guidance 19 19': 368194, '10th': 2385, 'revive': 720678, 'pummeled': 689004, 'oil decline': 596734, 'decline after': 231296, 'initial jump': 438536, 'jump an': 467850, 'an historic': 56060, 'historic deal': 397947, 'deal among': 229338, 'world top': 1010102, 'top producer': 925691, 'cut global': 223356, 'global output': 352063, 'nearly 10th': 553753, '10th failed': 2390, 'to revive': 913504, 'revive price': 720681, 'been pummeled': 121739, 'pummeled by': 689005, 'the oott': 862368, 'oott saudiarabia': 611785, 'russia opec': 728528, 'oil decline after': 596735, 'decline after an': 231297, 'after an initial': 35358, 'an initial jump': 56343, 'initial jump an': 438537, 'jump an historic': 467851, 'an historic deal': 56061, 'historic deal among': 397948, 'deal among the': 229339, 'among the world': 53078, 'the world top': 871995, 'world top producer': 1010105, 'top producer to': 925694, 'to cut global': 903876, 'cut global output': 223359, 'global output by': 352064, 'output by nearly': 629243, 'by nearly 10th': 153312, 'nearly 10th failed': 553754, '10th failed to': 2391, 'failed to revive': 296187, 'to revive price': 913505, 'revive price that': 720682, 'have been pummeled': 379646, 'been pummeled by': 121740, 'pummeled by the': 689008, 'by the oott': 154399, 'the oott saudiarabia': 862370, 'oott saudiarabia russia': 611786, 'saudiarabia russia opec': 737361, 'vino': 957452, 'wolftrap': 1003380, 'thewolftrap': 881078, 'home drink': 401101, 'drink wine': 258905, 'wine do': 995805, 'get yourself': 348751, 'yourself trapped': 1026734, 'trapped without': 930118, 'without vino': 1003032, 'vino while': 957453, 'while flattening': 986838, 'curve stay': 221894, 'the wolftrap': 871657, 'wolftrap wine': 1003381, 'wine from': 995815, 'from pick': 336921, 'pick pay': 655675, 'pay great': 644919, 'at thewolftrap': 101211, 'thewolftrap socialdistancing': 881079, 'stay home drink': 796954, 'home drink wine': 401102, 'drink wine do': 258906, 'wine do not': 995806, 'not get yourself': 569620, 'get yourself trapped': 348752, 'yourself trapped without': 1026735, 'trapped without vino': 930119, 'without vino while': 1003033, 'vino while flattening': 957454, 'while flattening the': 986839, 'the curve stay': 852705, 'curve stay at': 221895, 'home and order': 400674, 'and order the': 68248, 'order the wolftrap': 618637, 'the wolftrap wine': 871658, 'wolftrap wine from': 1003382, 'wine from pick': 995816, 'from pick pay': 336922, 'pick pay great': 655676, 'pay great price': 644920, 'great price available': 362908, 'price available at': 672823, 'available at thewolftrap': 104262, 'at thewolftrap socialdistancing': 101212, 'qt': 691611, 'wilkinson': 992168, 'blvd': 133533, 'clt': 184388, 'are cheap': 85260, 'cheap this': 174215, 'the qt': 864944, 'qt on': 691614, 'on wilkinson': 605324, 'wilkinson blvd': 992169, 'blvd in': 133536, 'west clt': 980480, 'clt only': 184391, 'only problem': 611016, 'got nowhere': 358752, 'nowhere to': 576572, 'go thanks': 354196, 'price in are': 674662, 'in are cheap': 420478, 'are cheap this': 85263, 'cheap this is': 174216, 'is the qt': 452909, 'the qt on': 864945, 'qt on wilkinson': 691615, 'on wilkinson blvd': 605325, 'wilkinson blvd in': 992170, 'blvd in west': 133537, 'in west clt': 430801, 'west clt only': 980481, 'clt only problem': 184392, 'only problem is': 611017, 'problem is we': 679573, 'is we ve': 453806, 've got nowhere': 953191, 'got nowhere to': 358753, 'nowhere to go': 576574, 'to go thanks': 906862, 'go thanks to': 354197, 'ewg': 288608, 'pesticide': 653339, 'foodnews': 318014, 'shoppinglist': 764510, '2f': 16594, 'getting fed': 348969, 'up too': 946470, 'much selfisolation': 545293, 'selfisolation so': 748484, 'let have': 486769, 'at ewg': 98579, 'ewg pesticide': 288609, 'pesticide in': 653340, 'food list': 315325, 'list foodnews': 494321, 'foodnews health': 318018, 'health healthy': 386490, 'healthy diet': 387576, 'diet nutrition': 241742, 'nutrition supermarket': 577745, 'supermarket cooking': 819781, 'cooking shoppinglist': 202906, 'shoppinglist 2f': 764511, '2f chemical': 16596, 'chemical fruit': 175348, 'getting fed up': 348970, 'fed up too': 301925, 'up too much': 946471, 'too much selfisolation': 924943, 'much selfisolation so': 545294, 'selfisolation so let': 748485, 'so let have': 777541, 'let have look': 486771, 'look at ewg': 502262, 'at ewg pesticide': 98580, 'ewg pesticide in': 288610, 'pesticide in food': 653341, 'in food list': 422975, 'food list foodnews': 315326, 'list foodnews health': 494322, 'foodnews health healthy': 318019, 'health healthy diet': 386491, 'healthy diet nutrition': 387578, 'diet nutrition supermarket': 241743, 'nutrition supermarket cooking': 577746, 'supermarket cooking shoppinglist': 819782, 'cooking shoppinglist 2f': 202907, 'shoppinglist 2f chemical': 764512, '2f chemical fruit': 16597, 'chemical fruit veggie': 175349, 'mr ha': 544363, 'just headed': 468942, 'headed off': 385912, 'with list': 999248, 'list long': 494394, 'long her': 501435, 'her arm': 391855, 'arm not': 92904, 'on said': 603256, 'said list': 731199, 'for but': 319851, 'but half': 145849, 'half dozen': 374150, 'dozen elderly': 257876, 'elderly folk': 270676, 'folk nearby': 312216, 'nearby will': 553699, 'be restocking': 116848, 'restocking their': 717029, 'cupboard later': 220477, 'later lockdowneffect': 481094, 'lockdowneffect inthistogether': 500252, 'inthistogether stayhomesavelives': 442319, 'mr ha just': 544364, 'ha just headed': 371053, 'just headed off': 468943, 'headed off to': 385913, 'off to the': 594329, 'supermarket with list': 823929, 'with list long': 999250, 'list long her': 494395, 'long her arm': 501436, 'her arm not': 391858, 'arm not many': 92905, 'not many item': 570531, 'many item on': 514219, 'item on said': 463507, 'on said list': 603257, 'said list for': 731200, 'list for but': 494324, 'for but half': 319853, 'but half dozen': 145850, 'half dozen elderly': 374151, 'dozen elderly folk': 257877, 'elderly folk nearby': 270677, 'folk nearby will': 312217, 'nearby will be': 553700, 'will be restocking': 992651, 'be restocking their': 116849, 'restocking their cupboard': 717030, 'their cupboard later': 872933, 'cupboard later lockdowneffect': 220478, 'later lockdowneffect inthistogether': 481095, 'lockdowneffect inthistogether stayhomesavelives': 500253, 'anytime': 80964, 'pric': 672094, 'but anytime': 145197, 'anytime the': 80976, 'dropped retailer': 260624, 'not raised': 571208, 'were simply': 980129, 'simply stocked': 770292, 'stocked out': 803366, 'for period': 324479, 'those stock': 892491, 'stock out': 802607, 'out will': 627853, 'last longer': 480299, 'longer due': 501967, '19 expect': 6889, 'expect 3rd': 290596, '3rd party': 18438, 'seller to': 749095, 'to sharply': 914386, 'sharply increase': 755749, 'increase pric': 432993, 'but anytime the': 145198, 'anytime the supply': 80977, 'the supply ha': 868950, 'supply ha dropped': 825342, 'ha dropped retailer': 370465, 'dropped retailer have': 260625, 'retailer have not': 719184, 'have not raised': 381693, 'not raised the': 571210, 'the price they': 864423, 'price they were': 676904, 'they were simply': 883802, 'were simply stocked': 980130, 'simply stocked out': 770293, 'stocked out for': 803367, 'out for period': 626150, 'for period of': 324483, 'period of time': 651858, 'of time now': 592180, 'time now that': 897298, 'now that those': 576023, 'that those stock': 847015, 'those stock out': 892493, 'stock out will': 802609, 'out will last': 627855, 'will last longer': 993946, 'last longer due': 480301, 'longer due to': 501968, 'covid 19 expect': 213057, '19 expect 3rd': 6890, 'expect 3rd party': 290597, '3rd party seller': 18442, 'party seller to': 643034, 'seller to sharply': 749100, 'to sharply increase': 914387, 'sharply increase pric': 755750, 'penalise': 646417, 'responsibly': 716073, 'punishing': 689247, 'miscreant': 533977, 'be fair': 114785, 'fair to': 296386, 'to penalise': 911600, 'penalise those': 646420, 'those exercising': 891976, 'exercising responsibly': 290129, 'responsibly because': 716080, 'bbqs amp': 113203, 'amp sunbathing': 54581, 'sunbathing like': 818120, 'like punishing': 491045, 'punishing the': 689250, 'whole class': 990163, 'class for': 180189, 'one miscreant': 606673, 'miscreant also': 533978, 'also what': 49097, 'between exercise': 128769, 'exercise amp': 290023, 'amp supermarket': 54583, 'it would not': 462601, 'would not be': 1012073, 'not be fair': 568381, 'be fair to': 114789, 'fair to penalise': 296389, 'to penalise those': 911601, 'penalise those exercising': 646421, 'those exercising responsibly': 891977, 'exercising responsibly because': 290130, 'responsibly because others': 716081, 'because others are': 119449, 'others are having': 621269, 'are having bbqs': 87028, 'having bbqs amp': 383991, 'bbqs amp sunbathing': 113204, 'amp sunbathing like': 54582, 'sunbathing like punishing': 818121, 'like punishing the': 491046, 'punishing the whole': 689251, 'the whole class': 871482, 'whole class for': 990164, 'class for one': 180190, 'for one miscreant': 324087, 'one miscreant also': 606674, 'miscreant also what': 533979, 'also what the': 49098, 'what the difference': 982306, 'the difference between': 853256, 'difference between exercise': 241814, 'between exercise amp': 128770, 'exercise amp supermarket': 290024, 'amp supermarket queue': 54587, 'receipt': 703393, 'exists': 290352, 'month around': 537592, 'around 00': 93090, 'panic 500': 637247, '500 child': 19957, 'child die': 176055, 'die every': 241327, 'from another': 334537, 'another virus': 77939, 'virus called': 958025, 'called hunger': 156347, 'the receipt': 865287, 'receipt food': 703411, 'one talk': 607160, 'because hunger': 119135, 'hunger exists': 411110, 'in month around': 425413, 'month around 00': 537593, 'around 00 people': 93092, 'died from coronavirus': 241550, 'from coronavirus the': 335024, 'coronavirus the world': 206919, 'world is in': 1009702, 'is in panic': 448797, 'in panic 500': 426472, 'panic 500 child': 637248, '500 child die': 19958, 'child die every': 176056, 'die every day': 241328, 'every day from': 285808, 'day from another': 227656, 'from another virus': 334542, 'another virus called': 77940, 'virus called hunger': 958026, 'called hunger the': 156348, 'hunger the receipt': 411199, 'the receipt food': 865289, 'receipt food but': 703412, 'food but no': 313823, 'no one talk': 564966, 'one talk about': 607161, 'talk about it': 833743, 'about it because': 25568, 'it because hunger': 456749, 'because hunger exists': 119137, 'stay here': 796926, 'here forever': 393016, 'forever if': 329125, 'don shut': 253910, 'week everyone': 976198, 'it packed': 460233, 'packed older': 633631, 'were bagging': 979361, 'bagging my': 108531, 'grocery crazy': 364412, 'the is going': 858496, 'to stay here': 915291, 'stay here forever': 796928, 'here forever if': 393017, 'forever if we': 329126, 'if we don': 415277, 'we don shut': 971394, 'don shut it': 253911, 'shut it down': 767901, 'it down for': 457690, 'down for couple': 256769, 'of week everyone': 592999, 'week everyone stay': 976199, 'everyone stay home': 287403, 'stay home went': 797027, 'home went to': 402475, 'and it packed': 65566, 'it packed older': 460234, 'packed older people': 633632, 'older people were': 598666, 'people were bagging': 650197, 'were bagging my': 979362, 'bagging my grocery': 108532, 'my grocery crazy': 548569, 'dollarama': 253116, 'unsettling': 943477, 'got canned': 358468, 'from dollarama': 335186, 'dollarama ll': 253117, 'll try': 497077, 'try the': 934581, 'store again': 806088, 'again tomorrow': 37240, 'tomorrow very': 924229, 'very unsettling': 955634, 'unsettling going': 943478, 'canada amp': 160349, 'amp shelf': 54480, 'bare really': 110941, 'really show': 702586, 'fragile life': 330894, 'life or': 488948, 'least human': 484510, 'human life': 410544, 'is amp': 445627, 'amp how': 53959, 'all may': 43471, 'on notice': 602447, 'notice by': 573253, 'got canned food': 358469, 'canned food from': 161512, 'food from dollarama': 314601, 'from dollarama ll': 335187, 'dollarama ll try': 253118, 'll try the': 497078, 'try the grocery': 934583, 'grocery store again': 365180, 'store again tomorrow': 806093, 'again tomorrow very': 37244, 'tomorrow very unsettling': 924230, 'very unsettling going': 955635, 'unsettling going to': 943479, 'going to store': 355726, 'to store in': 915626, 'store in canada': 808282, 'in canada amp': 421182, 'canada amp shelf': 160350, 'amp shelf are': 54481, 'shelf are bare': 756790, 'are bare really': 84776, 'bare really show': 110942, 'really show how': 702587, 'show how fragile': 766977, 'how fragile life': 407882, 'fragile life or': 330895, 'life or at': 488949, 'at least human': 99508, 'least human life': 484511, 'human life is': 410549, 'life is amp': 488800, 'is amp how': 445628, 'amp how we': 53962, 'how we all': 409164, 'we all may': 970342, 'all may be': 43472, 'may be on': 521013, 'be on notice': 116205, 'on notice by': 602448, 'notice by the': 573255, 'by the planet': 154407, 'artforheroes': 94206, 'wellbeing': 978786, 'artforheroes donates': 94209, 'donates any': 254385, 'any amount': 78917, 'amount opportunity': 53272, 'purchase art': 689359, 'art at': 94137, 'at discounted': 98450, 'price 100': 672100, 'of donation': 582790, 'donation sale': 254683, 'organization hero': 619382, 'who promote': 989461, 'promote welfare': 683802, 'welfare wellbeing': 977979, 'wellbeing of': 978795, 'staff working': 793112, 'artforheroes donates any': 94210, 'donates any amount': 254386, 'any amount opportunity': 78922, 'amount opportunity to': 53273, 'opportunity to purchase': 613717, 'to purchase art': 912518, 'purchase art at': 689360, 'art at discounted': 94138, 'at discounted price': 98451, 'discounted price 100': 244593, 'price 100 of': 672101, '100 of donation': 1982, 'of donation sale': 582792, 'donation sale to': 254684, 'sale to charity': 732585, 'to charity organization': 902659, 'charity organization hero': 173666, 'organization hero who': 619383, 'hero who promote': 394170, 'who promote welfare': 989462, 'promote welfare wellbeing': 683803, 'welfare wellbeing of': 977980, 'wellbeing of nh': 978797, 'of nh staff': 587008, 'nh staff working': 562113, 'staff working on': 793116, 'frontline of the': 338806, 'fil': 305319, 'fil to': 305324, 'government advises': 359836, 'advises against': 33676, 'against non': 37555, 'travel uk': 930557, 'uk train': 938839, 'train company': 929242, 'are therefore': 90965, 'therefore working': 879475, 'working together': 1009008, 'customer whose': 223089, 'whose plan': 990672, 'plan may': 658166, 'changed since': 172545, 'since booking': 770530, 'booking their': 134747, 'their ticket': 874982, 'ticket detail': 895605, 'detail below': 239164, 'fil to combat': 305325, 'of the government': 591072, 'the government advises': 856507, 'government advises against': 359837, 'advises against non': 33677, 'against non essential': 37556, 'essential travel uk': 281726, 'travel uk train': 930558, 'uk train company': 938840, 'train company are': 929243, 'company are therefore': 190457, 'are therefore working': 90967, 'therefore working together': 879476, 'working together to': 1009010, 'to help customer': 907486, 'help customer whose': 389563, 'customer whose plan': 223091, 'whose plan may': 990673, 'plan may have': 658168, 'may have changed': 521232, 'have changed since': 379944, 'changed since booking': 172546, 'since booking their': 770531, 'booking their ticket': 134748, 'their ticket detail': 874983, 'ticket detail below': 895606, 'bash': 111801, 'reactive': 700235, 'to bash': 901061, 'bash any': 111802, 'any elected': 79172, 'elected official': 270997, 'official state': 595934, 'emergency are': 272604, 'are reactive': 89453, 'reactive but': 700236, 'but everything': 145683, 'is fluid': 447845, 'fluid right': 311538, 'must stay': 546902, 'vigilant do': 957243, 'the necessary': 861371, 'necessary precaution': 554041, 'precaution onpoli': 669341, 'is no time': 449983, 'time to bash': 897950, 'to bash any': 901062, 'bash any elected': 111803, 'any elected official': 79173, 'elected official state': 271000, 'official state of': 595935, 'of emergency are': 583027, 'emergency are reactive': 272605, 'are reactive but': 89454, 'reactive but everything': 700237, 'but everything is': 145684, 'everything is fluid': 287871, 'is fluid right': 447846, 'fluid right now': 311539, 'right now for': 722064, 'now for now': 574721, 'for now everyone': 323967, 'now everyone must': 574633, 'everyone must stay': 287197, 'must stay vigilant': 546908, 'stay vigilant do': 797383, 'vigilant do not': 957244, 'food and take': 313353, 'take the necessary': 832664, 'the necessary precaution': 861375, 'necessary precaution onpoli': 554044, 'could modern': 209415, 'modern state': 535396, 'uk not': 938574, 'have organised': 381833, 'organised the': 619320, 'mass manufacture': 519803, 'manufacture of': 513381, 'mask week': 519524, 'how could modern': 407629, 'could modern state': 209416, 'modern state like': 535397, 'state like the': 795740, 'like the uk': 491405, 'the uk not': 870252, 'uk not have': 938575, 'not have organised': 569856, 'have organised the': 381834, 'organised the mass': 619321, 'the mass manufacture': 860245, 'mass manufacture of': 519804, 'manufacture of mask': 513384, 'of mask week': 586282, 'mask week ago': 519525, 'bcg': 113325, 'reacting': 700164, 'bcg how': 113333, 'consumer reacting': 198642, 'reacting to': 700182, 'evolving crisis': 288557, 'crisis bcg': 217115, 'bcg recently': 113337, 'recently conducted': 704064, 'conducted survey': 193684, 'survey to': 828965, 'to examine': 905385, 'examine their': 288822, 'their perception': 874271, 'perception attitude': 651232, 'in behavior': 420759, 'spending via': 789039, 'bcg how are': 113334, 'are consumer reacting': 85527, 'consumer reacting to': 198643, 'reacting to the': 700184, 'rapidly evolving crisis': 696981, 'evolving crisis bcg': 288558, 'crisis bcg recently': 217116, 'bcg recently conducted': 113338, 'recently conducted survey': 704065, 'conducted survey to': 193686, 'survey to examine': 828966, 'to examine their': 905386, 'examine their perception': 288823, 'their perception attitude': 874272, 'perception attitude and': 651233, 'attitude and change': 102544, 'and change in': 59723, 'change in behavior': 172107, 'in behavior and': 420760, 'behavior and spending': 123905, 'and spending via': 72097, 'weighing': 977674, 'surpassed': 828454, 'the commerce': 851217, 'commerce giant': 188557, 'giant said': 349857, 'in blog': 420880, 'post saturday': 666303, 'saturday that': 737064, 'been surge': 122109, 'outbreak spread': 628646, 'it weighing': 462296, 'weighing on': 977679, 'company the': 191195, 'state surpassed': 795967, 'surpassed 00': 828455, '00 on': 389, 'sunday amazon': 818165, 'the commerce giant': 851222, 'commerce giant said': 188559, 'giant said in': 349858, 'said in blog': 731135, 'in blog post': 420881, 'blog post saturday': 132998, 'post saturday that': 666304, 'saturday that there': 737065, 'that there ha': 846897, 'ha been surge': 369946, 'been surge in': 122110, 'shopping the outbreak': 764090, 'the outbreak spread': 862695, 'outbreak spread and': 628647, 'spread and it': 790411, 'and it weighing': 65600, 'it weighing on': 462297, 'weighing on the': 977680, 'on the company': 604031, 'the company the': 851355, 'company the number': 191197, 'united state surpassed': 942244, 'state surpassed 00': 795968, 'surpassed 00 on': 828456, '00 on sunday': 391, 'on sunday amazon': 603752, 'crimsonagility': 216916, 'shopfromhome': 761145, 'clientsupport': 182160, 'take today': 832746, 'promote business': 683770, 'work we': 1005976, 'did with': 240908, 'them please': 876166, 'client great': 182041, 'price crimsonagility': 673344, 'crimsonagility shopfromhome': 216917, 'shopfromhome clientsupport': 761146, 'to take today': 916251, 'take today to': 832747, 'today to promote': 920363, 'to promote business': 912248, 'promote business and': 683771, 'business and some': 143334, 'and some of': 71972, 'of the work': 591626, 'the work we': 871744, 'work we did': 1005977, 'we did with': 971297, 'did with them': 240910, 'with them please': 1001618, 'them please check': 876167, 'please check out': 659778, 'out our client': 626969, 'our client great': 622395, 'client great product': 182042, 'great product and': 362930, 'and price crimsonagility': 69445, 'price crimsonagility shopfromhome': 673345, 'crimsonagility shopfromhome clientsupport': 216918, 'delhi': 232878, 'bengaluru': 127209, 'impact steep': 417967, 'steep decline': 799380, 'in footfall': 423000, 'footfall across': 318536, 'across major': 29380, 'major place': 509421, 'of interest': 585250, 'in top': 430194, 'top metro': 925615, 'metro delhi': 529914, 'delhi mumbai': 232904, 'mumbai bengaluru': 545995, 'bengaluru covid': 127210, 'insight india': 439575, 'india report': 434594, 'by stayhome': 154106, 'impact steep decline': 417968, 'steep decline in': 799382, 'decline in footfall': 231353, 'in footfall across': 423001, 'footfall across major': 318537, 'across major place': 29381, 'major place of': 509422, 'place of interest': 657601, 'of interest in': 585253, 'interest in top': 441361, 'in top metro': 430195, 'top metro delhi': 925616, 'metro delhi mumbai': 529915, 'delhi mumbai bengaluru': 232905, 'mumbai bengaluru covid': 545996, 'bengaluru covid 19': 127211, '19 consumer insight': 5975, 'consumer insight india': 197886, 'insight india report': 439576, 'india report by': 434595, 'report by stayhome': 711848, 'store shopper': 810124, 'getting used': 349425, 'another new': 77722, 'reality this': 701806, 'marina in': 515747, 'francisco the': 331127, 'guard just': 367815, 'the woman': 871659, 'woman at': 1003417, 'line only': 493329, 'only 50': 610007, '50 people': 19796, 'grocery store shopper': 365767, 'store shopper are': 810125, 'shopper are getting': 761390, 'are getting used': 86833, 'getting used to': 349426, 'used to another': 950034, 'to another new': 900572, 'another new reality': 77723, 'new reality this': 559407, 'reality this is': 701807, 'is the line': 452847, 'the line to': 859420, 'into the marina': 443147, 'the marina in': 860074, 'marina in san': 515748, 'san francisco the': 733548, 'francisco the security': 331128, 'the security guard': 866624, 'security guard just': 744618, 'guard just told': 367816, 'just told the': 470124, 'told the woman': 923712, 'the woman at': 871660, 'woman at the': 1003420, 'the front of': 855850, 'of the line': 591192, 'the line only': 859416, 'line only 50': 493331, 'only 50 people': 610009, '50 people allowed': 19797, 'the store at': 867983, 'store at time': 806596, 'unjustifiably': 942485, 'owner who': 632599, 'who unjustifiably': 989850, 'unjustifiably raise': 942486, 'can face': 158282, 'face criminal': 294383, 'charge if': 173260, 'suspect price': 829485, 'gouging result': 359444, 're encouraged': 698606, 'file report': 305365, 'protection unit': 685662, 'unit using': 942106, 'using this': 950748, 'this form': 887600, 'business owner who': 144195, 'owner who unjustifiably': 632603, 'who unjustifiably raise': 989851, 'unjustifiably raise price': 942487, 'raise price can': 695910, 'price can face': 673058, 'can face criminal': 158283, 'face criminal charge': 294384, 'criminal charge if': 216828, 'charge if you': 173261, 'you suspect price': 1021496, 'suspect price gouging': 829486, 'price gouging result': 674320, 'gouging result of': 359445, '19 pandemic you': 9531, 'pandemic you re': 637092, 'you re encouraged': 1020611, 're encouraged to': 698607, 'encouraged to file': 275666, 'to file report': 905831, 'file report to': 305367, 'report to our': 712389, 'to our consumer': 911164, 'our consumer protection': 622546, 'consumer protection unit': 198572, 'protection unit using': 685665, 'unit using this': 942107, 'using this form': 950751, 'affair editorial': 34031, 'editorial team': 268678, 'have brought': 379845, 'brought you': 141211, 'what supermarket': 982265, 'customer through': 222946, 'through covid': 894394, '19 here': 7508, 'here everything': 392963, 'the consumer affair': 851489, 'consumer affair editorial': 196085, 'affair editorial team': 34032, 'editorial team have': 268679, 'team have brought': 835665, 'have brought you': 379849, 'brought you the': 141214, 'you the latest': 1021600, 'latest on what': 481480, 'on what supermarket': 605243, 'what supermarket are': 982266, 'supermarket are doing': 819154, 'help their customer': 390690, 'their customer through': 872961, 'customer through covid': 222947, 'through covid 19': 894395, 'covid 19 here': 213202, '19 here everything': 7510, 'here everything you': 392964, 'halifax': 374316, 'price held': 674490, 'at record': 100267, 'high before': 394943, 'lockdown halifax': 499453, 'house price held': 406488, 'price held at': 674491, 'held at record': 388884, 'at record high': 100268, 'record high before': 704974, 'high before covid': 394944, '19 lockdown halifax': 8390, 'tactical': 831721, 'lessened': 486446, 'this roundtable': 889926, 'roundtable tactical': 726403, 'tactical advice': 831722, 'china leading': 176789, 'leading retail': 483732, 'retail exec': 718099, 'exec re': 289831, 're how': 698840, 'they lessened': 882555, 'lessened covid19': 486447, 'covid19 impact': 214318, 'people business': 647313, 'business click': 143525, 'click to': 181956, 'read mckinsey': 700409, 'mckinsey consulting': 522190, 'consulting leadership': 195904, 'leadership china': 483593, 'check this roundtable': 174678, 'this roundtable tactical': 889927, 'roundtable tactical advice': 726404, 'tactical advice from': 831723, 'advice from china': 33381, 'from china leading': 334864, 'china leading retail': 176790, 'leading retail exec': 483733, 'retail exec re': 718100, 'exec re how': 289832, 're how they': 698841, 'how they lessened': 408921, 'they lessened covid19': 882556, 'lessened covid19 impact': 486448, 'covid19 impact on': 214319, 'impact on people': 417879, 'on people business': 602737, 'people business click': 647314, 'business click to': 143526, 'click to read': 181962, 'to read mckinsey': 912833, 'read mckinsey consulting': 700410, 'mckinsey consulting leadership': 522191, 'consulting leadership china': 195905, 'samsung': 733500, 's20': 728852, 'samsung galaxy': 733505, 'galaxy s20': 342922, 's20 5g': 728853, '5g series': 20685, 'series suffering': 751301, 'suffering because': 817285, 'of high': 584609, 'price covid': 673305, 'samsung galaxy s20': 733506, 'galaxy s20 5g': 342923, 's20 5g series': 728854, '5g series suffering': 20686, 'series suffering because': 751302, 'suffering because of': 817286, 'because of high': 119351, 'of high price': 584614, 'high price covid': 395242, 'price covid 19': 673306, 'vile': 957307, 'wow people': 1012576, 'people my': 648809, 'daughter work': 226925, 'and her': 64506, 'her store': 392405, 'open barely': 612114, 'barely today': 111038, 'today woman': 920568, 'woman yelled': 1003712, 'at her': 98885, 'her daughter': 391985, 'daughter for': 226840, 'for standing': 325864, 'her child': 391930, 'child hey': 176104, 'about you': 26967, 'your kid': 1024548, 'home lady': 401511, 'lady this': 478839, '19 shit': 10459, 'made people': 507910, 'people asshole': 647163, 'asshole stupid': 96566, 'plain vile': 658025, 'wow people my': 1012578, 'people my daughter': 648810, 'my daughter work': 547940, 'daughter work in': 226928, 'in retail and': 427446, 'retail and her': 717826, 'and her store': 64518, 'her store is': 392408, 'store is still': 808533, 'still open barely': 800952, 'open barely today': 612115, 'barely today woman': 111039, 'today woman yelled': 920569, 'woman yelled at': 1003713, 'yelled at her': 1015226, 'at her daughter': 98887, 'her daughter for': 391986, 'daughter for standing': 226841, 'for standing too': 325866, 'close to her': 182899, 'to her child': 907694, 'her child hey': 391931, 'child hey how': 176105, 'hey how about': 394420, 'how about you': 407315, 'about you keep': 26976, 'you keep your': 1019454, 'keep your kid': 472274, 'your kid at': 1024552, 'at home lady': 99027, 'home lady this': 401512, 'lady this covid': 478840, 'covid 19 shit': 213785, '19 shit ha': 10462, 'shit ha made': 759123, 'ha made people': 371214, 'made people asshole': 507911, 'people asshole stupid': 647164, 'asshole stupid and': 96567, 'stupid and just': 815339, 'and just plain': 65712, 'just plain vile': 469455, 'myth germ': 551046, 'germ and': 346086, 'sanitizer thing': 735885, 'you ought': 1020245, 'about cbc': 24943, 'news germ': 560468, 'germ sanitizer': 346146, 'sanitizer washyourhands': 736034, 'myth germ and': 551047, 'germ and soap': 346089, 'and soap sanitizer': 71871, 'soap sanitizer thing': 779113, 'sanitizer thing you': 735886, 'thing you ought': 885039, 'you ought to': 1020246, 'ought to know': 621945, 'know about cbc': 476209, 'about cbc news': 24944, 'cbc news germ': 168281, 'news germ sanitizer': 560469, 'germ sanitizer washyourhands': 346147, 'employed can': 273473, 'coronavirus coronaoutbreak': 205702, 'coronaoutbreak selfemployed': 205131, 'selfemployed freelancer': 747949, 'self employed can': 747624, 'employed can get': 273474, 'can get sick': 158450, 'get sick pay': 348001, 'sick pay for': 768570, 'pay for coronavirus': 644871, 'for coronavirus coronaoutbreak': 320378, 'coronavirus coronaoutbreak selfemployed': 205704, 'coronaoutbreak selfemployed freelancer': 205132, 'rbc': 698064, 'deadbodies': 229195, 'despicable rbc': 238642, 'rbc using': 698070, 'to seize': 914114, 'seize large': 747428, 'large portfolio': 479748, 'portfolio of': 664998, 'of asset': 580398, 'asset at': 96415, 'york real': 1016653, 'estate investment': 282136, 'investment trust': 444078, 'trust claim': 934250, 'claim what': 179865, 'next profiting': 561521, 'from all': 334431, 'the deadbodies': 852936, 'deadbodies rbc': 229196, 'rbc canada': 698065, 'despicable rbc using': 238643, 'rbc using the': 698071, 'using the coronavirus': 950695, 'coronavirus pandemic to': 206498, 'pandemic to seize': 636792, 'to seize large': 914116, 'seize large portfolio': 747429, 'large portfolio of': 479749, 'portfolio of asset': 664999, 'of asset at': 580399, 'asset at rock': 96419, 'bottom price new': 136438, 'price new york': 675330, 'new york real': 559946, 'york real estate': 1016654, 'real estate investment': 701152, 'estate investment trust': 282137, 'investment trust claim': 444079, 'trust claim what': 934251, 'claim what next': 179866, 'what next profiting': 981933, 'next profiting from': 561522, 'profiting from all': 683117, 'from all the': 334440, 'all the deadbodies': 44713, 'the deadbodies rbc': 852937, 'deadbodies rbc canada': 229197, 'hug': 409946, 'banana': 109301, 'hug to': 409960, 'mom pop': 535787, 'pop shop': 664456, 'shop on': 760540, 'on college': 599967, 'college street': 186647, 'street that': 813138, 'had banana': 372875, 'banana my': 109314, 'neighbor who': 557092, 'doesn understand': 251983, 'why grocery': 991026, 'empty is': 274922, 'happy that': 377685, 'her cereal': 391925, 'cereal now': 169934, 'now taste': 575966, 'taste the': 834796, 'hug to mom': 409961, 'to mom pop': 910222, 'mom pop shop': 535788, 'pop shop on': 664457, 'shop on college': 760544, 'on college street': 599969, 'college street that': 186648, 'street that had': 813139, 'that had banana': 844148, 'had banana my': 372876, 'banana my elderly': 109315, 'my elderly neighbor': 548073, 'elderly neighbor who': 270775, 'neighbor who doesn': 557094, 'who doesn understand': 988641, 'doesn understand why': 251989, 'understand why grocery': 940817, 'why grocery store': 991027, 'are empty is': 86153, 'empty is so': 274923, 'is so happy': 452012, 'so happy that': 777244, 'happy that her': 377687, 'that her cereal': 844318, 'her cereal now': 391926, 'cereal now taste': 169935, 'now taste the': 575967, 'taste the same': 834797, 'sudanese': 816974, 'residing': 714449, 'should prepare': 766328, 'prepare guideline': 670094, 'for sudanese': 325978, 'sudanese middle': 816975, 'class residing': 180247, 'residing in': 714452, 'in urban': 430468, 'urban centre': 948101, 'in preparation': 426925, 'long lockdown': 501520, 'lockdown noticed': 499698, 'noticed many': 573453, 'many friend': 514086, 'friend didn': 333573, 'didn actually': 240969, 'actually prepare': 30919, 'prepare well': 670149, 'out often': 626889, 'often to': 596288, 'should prepare guideline': 766330, 'prepare guideline for': 670095, 'guideline for sudanese': 368428, 'for sudanese middle': 325979, 'sudanese middle class': 816976, 'middle class residing': 530639, 'class residing in': 180248, 'residing in urban': 714454, 'in urban centre': 430471, 'urban centre on': 948102, 'centre on how': 169529, 'how to stock': 409092, 'food in preparation': 314963, 'in preparation for': 426926, 'preparation for long': 670035, 'for long lockdown': 323080, 'long lockdown noticed': 501521, 'lockdown noticed many': 499699, 'noticed many friend': 573454, 'many friend didn': 514087, 'friend didn actually': 333574, 'didn actually prepare': 240970, 'actually prepare well': 30920, 'prepare well for': 670150, 'well for the': 978249, 'for the lockdown': 326537, 'the lockdown and': 859588, 'lockdown and they': 499155, 'and they still': 73941, 'they still go': 883463, 'still go out': 800577, 'go out often': 353969, 'out often to': 626891, 'often to get': 596290, 'get food item': 347049, 'so are': 776540, 'we feeling': 971541, 'it ethical': 457852, 'ethical to': 283089, 'to still': 915404, 'do stuff': 250184, 'like order': 490937, 'order delivery': 618165, 'delivery food': 234006, 'shopping etc': 762579, 'etc ship': 282744, 'ship isolation': 758688, 'isolation care': 455234, 'package to': 633426, 'to loved': 909475, 'one etc': 606245, 'so are we': 776545, 'are we feeling': 91567, 'we feeling like': 971542, 'feeling like it': 303011, 'like it ethical': 490532, 'it ethical to': 457853, 'ethical to still': 283091, 'to still do': 915409, 'still do stuff': 800437, 'do stuff like': 250185, 'stuff like order': 815121, 'like order delivery': 490938, 'order delivery food': 618166, 'delivery food online': 234008, 'food online shopping': 315624, 'online shopping etc': 609112, 'shopping etc ship': 762584, 'etc ship isolation': 282745, 'ship isolation care': 758689, 'isolation care package': 455235, 'care package to': 164138, 'package to loved': 633432, 'to loved one': 909476, 'loved one etc': 504911, 'suisse': 817743, '2400': 15715, 'crony': 218862, 'news credit': 560355, 'credit suisse': 216518, 'suisse upgrade': 817747, 'upgrade stock': 947533, 'stock target': 802909, 'target to': 834518, 'to 2400': 899627, '2400 while': 15716, 'your soap': 1025845, 'soap when': 779175, 'facing covid': 295431, 'outbreak keep': 628402, 'mind the': 532739, 'same consumer': 733004, 'product throughout': 681735, 'year crony': 1014500, 'crony capitalism': 218863, 'news credit suisse': 560356, 'credit suisse upgrade': 216520, 'suisse upgrade stock': 817748, 'upgrade stock target': 947534, 'stock target to': 802910, 'target to 2400': 834519, 'to 2400 while': 899628, '2400 while you': 15717, 'while you raise': 987590, 'you raise price': 1020540, 'raise price on': 695923, 'price on essential': 675671, 'on essential commodity': 600582, 'commodity like your': 189213, 'like your soap': 491894, 'your soap when': 1025848, 'soap when the': 779176, 'when the country': 984136, 'the country is': 852103, 'country is facing': 210800, 'is facing covid': 447690, 'facing covid 19': 295432, '19 outbreak keep': 9147, 'outbreak keep in': 628404, 'in mind the': 425343, 'mind the same': 532744, 'the same consumer': 866210, 'same consumer buy': 733005, 'consumer buy your': 196696, 'buy your product': 149498, 'your product throughout': 1025446, 'product throughout the': 681736, 'throughout the year': 894990, 'the year crony': 872152, 'year crony capitalism': 1014501, 'your rent': 1025562, 'the california': 850277, 'california attorney': 155464, 'general just': 345391, 'just issued': 469080, 'issued guidance': 456065, 'can pay your': 159208, 'pay your rent': 645256, 'your rent the': 1025565, 'rent the california': 711186, 'the california attorney': 850278, 'california attorney general': 155465, 'attorney general just': 102650, 'general just issued': 345392, 'just issued guidance': 469082, 'issued guidance on': 456066, 'guidance on what': 368268, 'on what to': 605248, 'palm': 634600, 'diner': 242978, 'maralagovirus': 515033, 'breadline': 138659, 'recession bread': 704221, 'bread line': 138514, 'line are': 492961, 'are forming': 86662, 'forming in': 329676, 'in mar': 425067, 'lago shadow': 478913, 'shadow in': 754343, 'in palm': 426451, 'palm beach': 634601, 'beach diner': 118198, 'diner race': 242988, 'race to': 695203, 'feed laid': 302331, 'worker food': 1006957, 'pantry see': 639658, 'term need': 838209, 'need maralagovirus': 555201, 'maralagovirus breadline': 515034, 'the recession bread': 865335, 'recession bread line': 704222, 'bread line are': 138515, 'line are forming': 492965, 'are forming in': 86663, 'forming in mar': 329677, 'in mar lago': 425069, 'mar lago shadow': 515019, 'lago shadow in': 478914, 'shadow in palm': 754344, 'in palm beach': 426452, 'palm beach diner': 634602, 'beach diner race': 118199, 'diner race to': 242989, 'race to feed': 695205, 'to feed laid': 905725, 'feed laid off': 302332, 'off worker food': 594422, 'worker food bank': 1006958, 'bank and pantry': 109621, 'and pantry see': 68686, 'pantry see surge': 639659, 'in demand and': 422105, 'demand and long': 234981, 'long term need': 501699, 'term need maralagovirus': 838210, 'need maralagovirus breadline': 555202, 'positioned': 665211, 'pension fund': 646656, 'fund are': 341364, 'facing sharp': 295588, 'sharp fall': 755685, 'in share': 427861, 'high level': 395154, 'of member': 586427, 'member switching': 528202, 'cash option': 166290, 'option the': 614105, 'worsens but': 1011111, 'but rather': 146883, 'panic most': 638335, 'most australian': 542127, 'australian pension': 103519, 'fund appear': 341362, 'appear well': 82130, 'well positioned': 978492, 'positioned to': 665220, 'to weather': 918453, 'current turmoil': 221412, 'pension fund are': 646658, 'fund are facing': 341366, 'are facing sharp': 86431, 'facing sharp fall': 295589, 'sharp fall in': 755686, 'fall in share': 296965, 'in share price': 427862, 'share price and': 755159, 'price and high': 672433, 'and high level': 64554, 'high level of': 395157, 'level of member': 487647, 'of member switching': 586430, 'member switching to': 528203, 'switching to cash': 830576, 'to cash option': 902480, 'cash option the': 166291, 'option the pandemic': 614106, 'pandemic worsens but': 637061, 'worsens but rather': 1011112, 'but rather than': 146887, 'rather than panic': 697538, 'than panic most': 841017, 'panic most australian': 638336, 'most australian pension': 542128, 'australian pension fund': 103520, 'pension fund appear': 646657, 'fund appear well': 341363, 'appear well positioned': 82131, 'well positioned to': 978495, 'positioned to weather': 665223, 'to weather the': 918456, 'weather the current': 974899, 'the current turmoil': 852673, 'teepee': 836574, 'it 00pm': 456164, 'sunday night': 818242, 'dilemma don': 242850, 'you purchased': 1020497, 'purchased enough': 689768, 'to teepee': 916328, 'teepee the': 836577, 'it 00pm on': 456165, '00pm on sunday': 697, 'on sunday night': 603767, 'sunday night and': 818243, 'night and you': 562955, 'and you walk': 76055, 'walk into this': 964823, 'into this dilemma': 443213, 'this dilemma don': 887235, 'dilemma don panic': 242851, 'don panic you': 253819, 'panic you purchased': 638817, 'you purchased enough': 1020498, 'purchased enough toilet': 689769, 'paper to teepee': 640926, 'to teepee the': 916329, 'teepee the white': 836578, 'powerball': 667743, 'jackpot': 464193, 'prize': 679067, 'payouts': 645797, 'drawing': 258501, 'the powerball': 864160, 'powerball lottery': 667746, 'lottery jackpot': 504456, 'jackpot will': 464200, 'be cut': 114317, 'cut following': 223335, 'next lucky': 561435, 'lucky winner': 506586, 'winner the': 996046, 'ha adjusted': 369451, 'adjusted it': 32323, 'it normal': 459842, 'normal social': 567323, 'social and': 779429, 'behavior with': 124315, '19 powerball': 9765, 'powerball is': 667744, 'is adjusting': 445358, 'adjusting it': 32347, 'it prize': 460481, 'prize payouts': 679080, 'payouts making': 645800, 'next lottery': 561433, 'lottery drawing': 504449, 'drawing smaller': 258526, 'the powerball lottery': 864161, 'powerball lottery jackpot': 667747, 'lottery jackpot will': 504457, 'jackpot will be': 464201, 'will be cut': 992415, 'be cut following': 114319, 'cut following the': 223337, 'following the next': 312896, 'the next lucky': 861677, 'next lucky winner': 561436, 'lucky winner the': 506587, 'winner the country': 996047, 'country ha adjusted': 210706, 'ha adjusted it': 369452, 'adjusted it normal': 32324, 'it normal social': 459844, 'normal social and': 567324, 'social and consumer': 779430, 'and consumer behavior': 60352, 'consumer behavior with': 196539, 'behavior with the': 124318, 'covid 19 powerball': 213599, '19 powerball is': 9766, 'powerball is adjusting': 667745, 'is adjusting it': 445359, 'adjusting it prize': 32348, 'it prize payouts': 460482, 'prize payouts making': 679081, 'payouts making the': 645801, 'making the next': 511422, 'the next lottery': 861676, 'next lottery drawing': 561434, 'lottery drawing smaller': 504450, 'economist amp': 267517, 'amp elected': 53704, 'elected leader': 270994, 'leader agree': 483413, 'agree that': 38643, 'cause economic': 167545, 'activity to': 30512, 'slow which': 774413, 'which likely': 986112, 'likely impact': 492025, 'likely face': 491995, 'face decline': 294387, 'spring early': 791199, 'early summer': 264710, 'summer with': 818024, 'with recovery': 1000426, 'recovery in': 705343, '2nd half': 16774, 'economist amp elected': 267518, 'amp elected leader': 53705, 'elected leader agree': 270995, 'leader agree that': 483414, 'agree that the': 38646, 'that the 19': 846654, 'pandemic will cause': 637001, 'will cause economic': 992888, 'cause economic activity': 167546, 'economic activity to': 266964, 'activity to slow': 30516, 'to slow which': 914745, 'slow which likely': 774414, 'which likely impact': 986113, 'likely impact the': 492027, 'impact the housing': 417997, 'the housing market': 857662, 'housing market price': 407108, 'market price will': 516906, 'price will likely': 677574, 'will likely face': 993999, 'likely face decline': 491996, 'face decline in': 294388, 'decline in the': 231369, 'in the spring': 429567, 'the spring early': 867656, 'spring early summer': 791200, 'early summer with': 264711, 'summer with recovery': 818025, 'with recovery in': 1000427, 'recovery in the': 705349, 'in the 2nd': 428954, 'the 2nd half': 848075, '2nd half of': 16775, 'half of the': 374235, 'wisconsinpandemicvoting': 996645, 'personally': 653021, 'naww': 553168, 'shameful there': 754707, 'there making': 878745, 'making people': 511274, 'people vote': 650097, 'vote today': 960516, 'in wisconsinpandemicvoting': 430934, 'wisconsinpandemicvoting personally': 996646, 'personally wouldn': 653060, 'wouldn go': 1012468, 'go they': 354231, 'said do': 731043, 'store wtf': 811652, 'wtf would': 1013342, 'go vote': 354469, 'vote do': 960477, 'have mask': 381438, 'glove hell': 352716, 'hell naww': 389036, 'naww and': 553169, 'who cleaning': 988461, 'cleaning that': 181098, 'that voting': 847262, 'voting machine': 960613, 'shameful there making': 754708, 'there making people': 878746, 'making people vote': 511278, 'people vote today': 650098, 'vote today in': 960517, 'today in wisconsinpandemicvoting': 919702, 'in wisconsinpandemicvoting personally': 430935, 'wisconsinpandemicvoting personally wouldn': 996647, 'personally wouldn go': 653061, 'wouldn go they': 1012470, 'go they just': 354232, 'they just said': 882503, 'just said do': 469665, 'said do not': 731044, 'even go to': 284128, 'grocery store wtf': 365976, 'store wtf would': 811654, 'wtf would go': 1013343, 'would go vote': 1011848, 'go vote do': 354471, 'vote do not': 960478, 'not even have': 569254, 'even have mask': 284170, 'have mask or': 381443, 'or glove hell': 615473, 'glove hell naww': 352717, 'hell naww and': 389037, 'naww and who': 553170, 'and who cleaning': 75584, 'who cleaning that': 988462, 'cleaning that voting': 181099, 'that voting machine': 847263, 'pumping': 689120, 'start pumping': 794443, 'pumping out': 689130, 'out member': 626548, 'member mark': 528126, 'mark disinfectant': 515779, 'disinfectant wipe': 245807, 'bulk like': 142318, 'they quickly': 882968, 'quickly did': 694510, 'when are we': 983172, 'going to start': 355718, 'to start pumping': 915213, 'start pumping out': 794444, 'pumping out member': 689133, 'out member mark': 626549, 'member mark disinfectant': 528127, 'mark disinfectant wipe': 515780, 'disinfectant wipe and': 245808, 'sanitizer in bulk': 735131, 'in bulk like': 421041, 'bulk like they': 142319, 'like they quickly': 491454, 'they quickly did': 882969, 'quickly did with': 694511, 'did with toilet': 240911, 'paper the people': 640878, 'the people need': 863492, 'guy this': 369183, 'this toiletpaper': 890794, 'toiletpaper obsession': 922275, 'obsession is': 578681, 'hand quarantinelife': 375189, 'quarantinelife quarantineactivities': 692992, 'guy this toiletpaper': 369184, 'this toiletpaper obsession': 890795, 'toiletpaper obsession is': 922276, 'obsession is getting': 578682, 'of hand quarantinelife': 584429, 'hand quarantinelife quarantineactivities': 375190, 'yummy': 1027096, 'dana': 225549, 'trainer': 929311, 'so grateful': 777200, 'only wa': 611422, 'get yummy': 348753, 'yummy meal': 1027103, 'meal for': 524145, 'for team': 326161, 'team dana': 835619, 'dana the': 225556, 'the trainer': 869886, 'trainer covid': 929312, '19 strategy': 10901, 'strategy meeting': 812681, 'meeting wa': 527788, 'wa also': 961500, 'also able': 47803, 'get egg': 346929, 'egg seriously': 269977, 'seriously we': 751775, 'no egg': 564087, 'egg their': 270003, 'their pantry': 874238, 'pantry store': 639676, 'is wonderful': 454024, 'wonderful idea': 1004087, 'so grateful to': 777202, 'grateful to today': 362331, 'to today not': 917611, 'today not only': 919945, 'not only wa': 570838, 'only wa able': 611423, 'to get yummy': 906651, 'get yummy meal': 348754, 'yummy meal for': 1027104, 'meal for team': 524157, 'for team dana': 326162, 'team dana the': 835620, 'dana the trainer': 225557, 'the trainer covid': 869887, 'trainer covid 19': 929313, 'covid 19 strategy': 213876, '19 strategy meeting': 10904, 'strategy meeting wa': 812683, 'meeting wa also': 527789, 'wa also able': 961501, 'also able to': 47804, 'to get egg': 906467, 'get egg seriously': 346931, 'egg seriously we': 269979, 'seriously we had': 751777, 'we had been': 971702, 'had been to': 372915, 'been to grocery': 122217, 'grocery store no': 365593, 'store no egg': 809074, 'no egg their': 564094, 'egg their pantry': 270004, 'their pantry store': 874243, 'pantry store is': 639677, 'store is wonderful': 808547, 'is wonderful idea': 454025, 'reminded': 710520, 'colloidal': 186666, 'who emptied': 988691, 'shelf please': 757414, 'the christmas': 850884, 'christmas tree': 178207, 'tree well': 931204, 'well nobody': 978423, 'nobody know': 566029, 'long crisis': 501381, 'safety reason': 730710, 'reason buy': 702883, 'buy silver': 149175, 'silver one': 769839, 'one this': 607247, 'year you': 1015127, 'be reminded': 116784, 'reminded of': 710529, 'of colloidal': 581536, 'colloidal silver': 186667, 'silver water': 769870, 'people who emptied': 650295, 'who emptied the': 988693, 'emptied the supermarket': 274703, 'supermarket shelf please': 822511, 'shelf please do': 757415, 'forget to buy': 329317, 'buy the christmas': 149286, 'the christmas tree': 850885, 'christmas tree well': 178208, 'tree well nobody': 931205, 'well nobody know': 978424, 'nobody know how': 566030, 'how long crisis': 408197, 'long crisis will': 501382, 'crisis will last': 218415, 'will last for': 993942, 'last for for': 480227, 'for for safety': 321671, 'for safety reason': 325304, 'safety reason buy': 730712, 'reason buy silver': 702884, 'buy silver one': 149176, 'silver one this': 769840, 'one this year': 607249, 'this year you': 891606, 'year you ll': 1015128, 'll be reminded': 496618, 'be reminded of': 116785, 'reminded of colloidal': 710530, 'of colloidal silver': 581537, 'colloidal silver water': 186671, 'takeyourselfhome': 833230, 're saying': 699426, 'saying we': 739750, 'we finally': 971554, 'finally have': 306037, 'have gasoline': 380753, 'cent again': 169031, 'again but': 36929, 'go no': 353853, 'where takeyourselfhome': 985201, 'so you re': 778849, 'you re saying': 1020733, 're saying we': 699430, 'saying we finally': 739752, 'we finally have': 971557, 'finally have gasoline': 306038, 'have gasoline price': 380754, 'gasoline price down': 344256, 'price down to': 673531, 'down to 99': 257359, '99 cent again': 23790, 'cent again but': 169032, 'again but we': 36934, 'but we cannot': 147741, 'cannot go no': 161927, 'go no where': 353854, 'no where takeyourselfhome': 565887, 'other news': 620579, 'news my': 560622, 'ha gotten': 370749, 'gotten out': 359157, 'in other news': 426247, 'other news my': 620581, 'news my online': 560625, 'online shopping ha': 609138, 'shopping ha gotten': 762826, 'ha gotten out': 370752, 'gotten out of': 359158, 'subhanhu': 815723, 'wataalah': 968338, 'pls that': 661194, 'that time': 847038, 'time not': 897286, 'not create': 568920, 'panic also': 637275, 'also number': 48587, 'people suffering': 649692, 'suffering fear': 817299, 'down jobless': 256903, 'jobless food': 466340, 'shortage it': 765040, 'very critical': 955088, 'critical condition': 218529, 'condition may': 193482, 'allah subhanhu': 45609, 'subhanhu wataalah': 815724, 'wataalah blessing': 968339, 'pls that time': 661195, 'that time not': 847047, 'time not create': 897288, 'not create panic': 568922, 'create panic also': 215715, 'panic also number': 637276, 'also number of': 48588, 'of people suffering': 587994, 'people suffering fear': 649693, 'suffering fear of': 817300, 'fear of covid': 301226, 'lock down jobless': 499038, 'down jobless food': 256904, 'jobless food shortage': 466341, 'food shortage it': 316586, 'shortage it very': 765047, 'it very critical': 462026, 'very critical condition': 955089, 'critical condition may': 218531, 'condition may allah': 193483, 'may allah subhanhu': 520905, 'allah subhanhu wataalah': 45610, 'subhanhu wataalah blessing': 815725, 'calme': 156840, 'been self': 121905, 'week now': 976586, 'wife do': 991912, 'want her': 965810, 'catching standing': 167107, 'queue due': 693908, 'buying when': 151347, 'have run': 382369, 'food hopefully': 314842, 'hopefully matter': 403866, 'matter will': 520662, 'have calme': 379875, 'have been self': 379673, 'been self isolating': 121907, 'isolating for two': 455098, 'for two week': 327396, 'two week now': 937344, 'week now have': 976589, 'now have told': 574885, 'have told my': 383364, 'told my wife': 923640, 'my wife do': 550585, 'wife do not': 991913, 'not want her': 572438, 'want her to': 965812, 'her to go': 392462, 'go shopping and': 354105, 'shopping and risk': 762014, 'and risk catching': 70553, 'risk catching standing': 723453, 'catching standing in': 167108, 'standing in queue': 793779, 'in queue due': 427221, 'queue due to': 693909, 'to people panic': 911635, 'panic buying when': 637961, 'buying when we': 151350, 'when we have': 984448, 'we have run': 971929, 'have run out': 382371, 'of food hopefully': 583711, 'food hopefully matter': 314843, 'hopefully matter will': 403867, 'matter will have': 520663, 'will have calme': 993619, 'downward': 257827, 'ques': 693469, 'italy ha': 462836, 'ha experienced': 370553, 'experienced run': 291596, 'on pasta': 602707, 'pasta we': 643849, 'in downward': 422383, 'downward spiral': 257835, 'spiral however': 789428, 'it requires': 460724, 'requires intervention': 713468, 'intervention police': 442195, 'police in': 663061, 'supermarket reminding': 822201, 'reminding of': 710633, 'distance and': 246631, 'calm sensible': 156794, 'sensible decision': 750637, 'decision the': 231094, 'answer police': 78092, 'it supermarket': 461356, 'supermarket ques': 822110, 'italy ha experienced': 462838, 'ha experienced run': 370557, 'experienced run on': 291597, 'run on pasta': 727737, 'on pasta we': 602710, 'pasta we are': 643850, 'are in downward': 87378, 'in downward spiral': 422384, 'downward spiral however': 257838, 'spiral however it': 789429, 'however it requires': 409405, 'it requires intervention': 460726, 'requires intervention police': 713469, 'intervention police in': 442196, 'police in supermarket': 663066, 'in supermarket reminding': 428656, 'supermarket reminding of': 822202, 'reminding of social': 710634, 'of social distance': 589837, 'social distance and': 779496, 'distance and calm': 246633, 'and calm sensible': 59436, 'calm sensible decision': 156795, 'sensible decision the': 750638, 'decision the answer': 231095, 'the answer police': 848773, 'answer police it': 78093, 'police it supermarket': 663076, 'it supermarket ques': 461364, 'schnuck': 741644, 'reopening': 711383, 'rt news': 726784, 'news schnuck': 560772, 'schnuck market': 741645, 'market not': 516763, 'not reopening': 571310, 'reopening store': 711398, 'store shut': 810179, 'shut amid': 767781, 'rt news schnuck': 726786, 'news schnuck market': 560773, 'schnuck market not': 741647, 'market not reopening': 516764, 'not reopening store': 571311, 'reopening store shut': 711399, 'store shut amid': 810180, 'shut amid covid': 767782, 'way arrow': 969475, 'arrow at': 94038, 'store need': 809048, 'people not following': 648867, 'following the aisle': 312872, 'one way arrow': 607367, 'way arrow at': 969476, 'arrow at the': 94039, 'grocery store need': 365586, 'store need to': 809050, 'need to die': 555903, 'to die from': 904272, 'butte': 148118, 'mix': 534579, 'liquid': 494074, 'bare panic': 110935, 'isolation but': 455222, 'but butte': 145327, 'butte is': 148119, 'make from': 509924, 'from double': 335198, 'double cream': 255992, 'cream mix': 215565, 'mix it': 534600, 'it beyond': 456866, 'beyond cream': 129153, 'it until': 461945, 'until it': 943744, 'it split': 461196, 'split you': 789668, 'get solid': 348035, 'and liquid': 66208, 'liquid strain': 494108, 'strain the': 812300, 'the butter': 850214, 'are bare panic': 84775, 'bare panic buying': 110936, 'buying for 19': 150350, 'for 19 isolation': 318709, '19 isolation but': 8106, 'isolation but butte': 455223, 'but butte is': 145328, 'butte is quite': 148120, 'quite simple to': 694917, 'to make from': 909666, 'make from double': 509926, 'from double cream': 335199, 'double cream mix': 255993, 'cream mix it': 215566, 'mix it beyond': 534601, 'it beyond cream': 456867, 'beyond cream mix': 129154, 'mix it until': 534602, 'it until it': 461947, 'until it split': 943751, 'it split you': 461197, 'split you get': 789669, 'you get solid': 1018793, 'get solid and': 348036, 'solid and liquid': 781905, 'and liquid strain': 66210, 'liquid strain the': 494109, 'strain the butter': 812301, 'somber': 782226, 'spacing': 787222, 'week start': 976909, 'start off': 794417, 'on somber': 603551, 'somber note': 782229, 'of mitigating': 586586, 'mitigating covid19': 534548, 'covid19 ha': 214304, 'ha fully': 370691, 'fully hit': 341055, 'processing sector': 680039, 'sector this': 744356, 'is combination': 446645, 'combination effect': 187096, 'of taking': 590580, 'taking spacing': 833574, 'spacing precaution': 787229, 'precaution on': 669339, 'for employee': 321030, 'employee safety': 274172, 'and result': 70417, 'current demand': 221169, 'demand plane': 236033, 'this week start': 891269, 'week start off': 976910, 'start off on': 794418, 'off on somber': 594022, 'on somber note': 603552, 'somber note the': 782230, 'note the reality': 572825, 'reality of mitigating': 701774, 'of mitigating covid19': 586587, 'mitigating covid19 ha': 534549, 'covid19 ha fully': 214307, 'ha fully hit': 370693, 'fully hit the': 341056, 'hit the processing': 398441, 'the processing sector': 864558, 'processing sector this': 680040, 'sector this is': 744357, 'this is combination': 888210, 'is combination effect': 446646, 'combination effect of': 187097, 'effect of taking': 269064, 'of taking spacing': 590583, 'taking spacing precaution': 833575, 'spacing precaution on': 787230, 'precaution on the': 669340, 'line for employee': 493101, 'for employee safety': 321034, 'employee safety and': 274173, 'safety and result': 730462, 'and result of': 70418, 'the current demand': 852624, 'current demand plane': 221172, 'diminished': 242938, 'fringe': 334079, 'homeless shelter': 402784, 'shelter have': 757924, 'reduced capacity': 706039, 'capacity or': 162555, 'or closed': 614751, 'door altogether': 255498, 'altogether while': 49393, 'while access': 986562, 'ha quickly': 371616, 'quickly diminished': 694512, 'diminished demand': 242939, 'demand at': 235036, 'ha skyrocketed': 371952, '19 pushing': 9887, 'pushing those': 690457, 'those without': 892731, 'without home': 1002723, 'home further': 401286, 'further toward': 342195, 'toward the': 927154, 'the fringe': 855826, 'fringe of': 334080, 'of society': 589868, 'homeless shelter have': 402786, 'shelter have reduced': 757925, 'have reduced capacity': 382227, 'reduced capacity or': 706040, 'capacity or closed': 162556, 'or closed their': 614753, 'closed their door': 183375, 'their door altogether': 873064, 'door altogether while': 255499, 'altogether while access': 49394, 'while access to': 986563, 'to food ha': 906080, 'food ha quickly': 314750, 'ha quickly diminished': 371618, 'quickly diminished demand': 694513, 'diminished demand at': 242940, 'demand at food': 235038, 'bank ha skyrocketed': 109889, 'ha skyrocketed due': 371956, 'covid 19 pushing': 213635, '19 pushing those': 9888, 'pushing those without': 690458, 'those without home': 892734, 'without home further': 1002724, 'home further toward': 401287, 'further toward the': 342196, 'toward the fringe': 927157, 'the fringe of': 855827, 'fringe of society': 334081, 'of society and': 589869, 'society and economy': 781154, '2424': 15731, '724244': 22031, 'nssf': 576682, 'lebanon': 485183, 'citizen to': 178983, 'any violation': 80021, 'violation to': 957527, 'security law': 744664, 'it regulation': 460685, 'current health': 221222, 'health situation': 386850, 'situation hotline': 772309, 'hotline 2424': 405227, '2424 or': 15734, 'by whatsapp': 154725, 'whatsapp on': 982904, 'on 71': 599112, '71 724244': 21966, '724244 corona': 22032, 'corona nssf': 204075, 'nssf lebanon': 576683, 'lebanon health': 485187, 'citizen to report': 178987, 'to report any': 913265, 'report any violation': 711809, 'any violation to': 80023, 'violation to the': 957530, 'to the provision': 916989, 'of the social': 591475, 'social security law': 779946, 'security law and': 744665, 'law and it': 482207, 'and it regulation': 65578, 'it regulation amidst': 460686, 'regulation amidst the': 708047, 'amidst the current': 52824, 'the current health': 852639, 'current health situation': 221224, 'health situation hotline': 386851, 'situation hotline 2424': 772310, 'hotline 2424 or': 405228, '2424 or by': 15735, 'or by whatsapp': 614630, 'by whatsapp on': 154726, 'whatsapp on 71': 982905, 'on 71 724244': 599113, '71 724244 corona': 21967, '724244 corona nssf': 22033, 'corona nssf lebanon': 204076, 'nssf lebanon health': 576684, 'stacked': 791986, 'ceiling': 168757, 're one': 699191, 'ha garage': 370701, 'garage stacked': 343499, 'stacked to': 791991, 'the ceiling': 850583, 'ceiling with': 168766, 'with loo': 999310, 'roll perhaps': 725477, 'perhaps take': 651637, 'take yourself': 832833, 'yourself along': 1026511, 'along to': 47034, 'tomorrow am': 924015, 'am amp': 49881, 'amp see': 54454, 'are any': 84575, 'any elderly': 79166, 'an empty': 55718, 'shelf take': 757630, 'car and': 162990, 'give them': 350759, 'them half': 875814, 'dozen roll': 257914, 'you re one': 1020691, 're one of': 699192, 'of those people': 592110, 'those people who': 892333, 'people who ha': 650303, 'who ha garage': 988847, 'ha garage stacked': 370702, 'garage stacked to': 343500, 'stacked to the': 791992, 'to the ceiling': 916547, 'the ceiling with': 850584, 'ceiling with loo': 168769, 'with loo roll': 999311, 'loo roll perhaps': 502197, 'roll perhaps take': 725478, 'perhaps take yourself': 651638, 'take yourself along': 832834, 'yourself along to': 1026512, 'along to the': 47037, 'supermarket tomorrow am': 823496, 'tomorrow am amp': 924016, 'am amp see': 49882, 'amp see if': 54455, 'see if there': 745282, 'there are any': 878066, 'are any elderly': 84576, 'any elderly people': 79170, 'elderly people looking': 270829, 'at an empty': 97982, 'an empty shelf': 55724, 'empty shelf take': 275094, 'shelf take them': 757632, 'take them to': 832698, 'them to your': 876533, 'to your car': 918962, 'your car and': 1023125, 'car and give': 162992, 'and give them': 63668, 'give them half': 350768, 'them half dozen': 875815, 'half dozen roll': 374154, 'latest story': 481556, 'online clothing': 608021, 'clothing purchase': 184279, 'purchase are': 689354, 'increasing people': 433653, 'people discover': 647666, 'discover mysterious': 244659, 'white spot': 987905, 'spot forming': 790056, 'latest story online': 481558, 'story online clothing': 812095, 'online clothing purchase': 608022, 'clothing purchase are': 184280, 'purchase are increasing': 689356, 'are increasing people': 87489, 'increasing people discover': 433654, 'people discover mysterious': 647667, 'discover mysterious white': 244660, 'mysterious white spot': 550999, 'white spot forming': 987906, 'spot forming on': 790057, 'asking price': 96044, 'house in': 406352, 'canberra continue': 160816, 'rise despite': 722824, '19 emergency': 6749, 'emergency canberra': 272619, 'canberra experienced': 160820, 'experienced the': 291612, 'second largest': 743752, 'largest increase': 479967, 'in property': 427039, 'property listing': 684288, 'listing in': 494855, 'nation in': 552217, 'asking price for': 96045, 'price for house': 673979, 'for house in': 322406, 'house in canberra': 406353, 'in canberra continue': 421212, 'canberra continue to': 160817, 'continue to rise': 201246, 'to rise despite': 913561, 'rise despite the': 722827, 'despite the economic': 238878, 'covid 19 emergency': 213016, '19 emergency canberra': 6752, 'emergency canberra experienced': 272620, 'canberra experienced the': 160821, 'experienced the second': 291613, 'the second largest': 866583, 'second largest increase': 743753, 'largest increase in': 479968, 'increase in property': 432861, 'in property listing': 427040, 'property listing in': 684290, 'listing in the': 494856, 'the nation in': 861243, 'nation in march': 552220, 'seismic': 747419, 'cultural': 220267, 'etched': 282921, 'marker': 515876, 'piece with': 656385, 'with 11': 996938, '11 and': 2488, 'other seismic': 620883, 'seismic cultural': 747420, 'cultural event': 220272, '2020 will': 14720, 'be forever': 114919, 'forever etched': 329111, 'etched in': 282922, 'our collective': 622430, 'collective brain': 186491, 'brain marker': 137596, 'marker of': 515883, 'of change': 581269, 'check out new': 174561, 'out new piece': 626628, 'new piece with': 559277, 'piece with 11': 656386, 'with 11 and': 996939, '11 and other': 2491, 'and other seismic': 68401, 'other seismic cultural': 620884, 'seismic cultural event': 747421, 'cultural event the': 220273, 'event the covid': 285086, '19 pandemic of': 9412, 'of 2020 will': 579510, '2020 will be': 14721, 'will be forever': 992467, 'be forever etched': 114920, 'forever etched in': 329112, 'etched in our': 282923, 'in our collective': 426270, 'our collective brain': 622432, 'collective brain marker': 186492, 'brain marker of': 137597, 'marker of change': 515884, 'investigator': 443905, 'the leader': 859223, 'leader pray': 483513, 'worker pray': 1007624, 'the investigator': 858416, 'investigator pray': 443911, 'those affected': 891776, 'affected pray': 34413, 'other prayer': 620750, 'pray for the': 669005, 'for the leader': 326528, 'the leader pray': 859225, 'leader pray for': 483514, 'pray for healthcare': 669000, 'healthcare worker pray': 387377, 'worker pray for': 1007625, 'for the investigator': 326509, 'the investigator pray': 858417, 'investigator pray for': 443912, 'pray for grocery': 668999, 'store worker pray': 811563, 'pray for those': 669008, 'for those affected': 327098, 'those affected pray': 891781, 'affected pray for': 34414, 'pray for each': 668998, 'for each other': 320906, 'each other prayer': 264212, 'fizzle': 309885, 'street rally': 813079, 'rally fizzle': 696263, 'fizzle oil': 309886, 'price suddenly': 676694, 'suddenly plunge': 817120, 'wall street rally': 965189, 'street rally fizzle': 813080, 'rally fizzle oil': 696264, 'fizzle oil price': 309887, 'oil price suddenly': 597278, 'price suddenly plunge': 676695, 'berliner': 127357, 'lends': 486299, 'store close': 807046, 'quarantine due': 692163, 'are bracing': 85046, 'for drop': 320865, 'spending usa': 789037, 'usa david': 948618, 'david berliner': 226975, 'berliner lends': 127358, 'lends his': 486302, 'store close and': 807048, 'close and people': 182535, 'and people continue': 68855, 'continue to self': 201250, 'self quarantine due': 747854, 'quarantine due to': 692164, 'to the retailer': 917026, 'the retailer are': 865737, 'retailer are bracing': 718990, 'are bracing for': 85047, 'bracing for drop': 137501, 'for drop in': 320866, 'consumer spending usa': 199101, 'spending usa david': 789038, 'usa david berliner': 948619, 'david berliner lends': 226976, 'berliner lends his': 127359, 'lends his thought': 486303, 'his thought on': 397857, 'thought on the': 893165, 'on the matter': 604230, 'skincare': 773092, 'against germ': 37462, 'germ bacteria': 346100, 'bacteria and': 107657, 'our sanitizer': 624674, 'sanitizer keep': 735246, 'keep hand': 471563, 'and surface': 72873, 'surface clean': 827993, 'clean skincare': 180633, 'skincare stayhome': 773099, 'stayhome staysafe': 798161, 'staysafe stayhealthy': 798895, 'effective against germ': 269211, 'against germ bacteria': 37463, 'germ bacteria and': 346101, 'bacteria and virus': 107660, 'and virus our': 74978, 'virus our sanitizer': 958582, 'our sanitizer keep': 624675, 'sanitizer keep hand': 735248, 'keep hand and': 471564, 'hand and surface': 374782, 'and surface clean': 72874, 'surface clean skincare': 827995, 'clean skincare stayhome': 180634, 'skincare stayhome staysafe': 773100, 'stayhome staysafe stayhealthy': 798174, 'anki': 76754, 'vector': 953669, 'therapeutic': 877900, 'one revolution': 606965, 'revolution in': 720748, 'against ha': 37477, 'of robotics': 589146, 'robotics some': 724821, 'some cool': 782598, 'cool picture': 203034, 'picture here': 656132, 'and technical': 73067, 'technical detail': 836202, 'detail here': 239193, 'this thread': 890588, 'thread discus': 893539, 'discus possibility': 244893, 'possibility of': 665539, 'consumer robotics': 198838, 'robotics such': 724823, 'such anki': 816333, 'anki vector': 76755, 'vector in': 953672, 'in therapeutic': 429805, 'one revolution in': 606966, 'revolution in the': 720750, 'fight against ha': 304624, 'against ha been': 37478, 'been the use': 122172, 'use of robotics': 949424, 'of robotics some': 589147, 'robotics some cool': 724822, 'some cool picture': 782600, 'cool picture here': 203035, 'picture here and': 656133, 'here and technical': 392710, 'and technical detail': 73068, 'technical detail here': 836203, 'detail here this': 239196, 'here this thread': 393688, 'this thread discus': 890589, 'thread discus possibility': 893540, 'discus possibility of': 244894, 'possibility of consumer': 665543, 'of consumer robotics': 581769, 'consumer robotics such': 198839, 'robotics such anki': 724824, 'such anki vector': 816334, 'anki vector in': 76756, 'vector in therapeutic': 953673, 'vicky': 956449, 'ngyuen': 561859, 'qualified': 691701, 'justsayin': 470511, 'consumer reporter': 198738, 'reporter vicky': 712640, 'vicky ngyuen': 956450, 'ngyuen is': 561860, 'not qualified': 571180, 'qualified to': 691709, 'answer medical': 78079, 'medical question': 526354, 'question from': 693592, 'from facebook': 335379, 'facebook or': 294978, 'elsewhere regarding': 272027, 'regarding justsayin': 707231, 'consumer reporter vicky': 198739, 'reporter vicky ngyuen': 712641, 'vicky ngyuen is': 956451, 'ngyuen is not': 561861, 'is not qualified': 450166, 'not qualified to': 571181, 'qualified to answer': 691710, 'to answer medical': 900583, 'answer medical question': 78080, 'medical question from': 526355, 'question from facebook': 693594, 'from facebook or': 335380, 'facebook or elsewhere': 294980, 'or elsewhere regarding': 615140, 'elsewhere regarding justsayin': 272028, 'airy': 40167, 'heading into': 385942, 'into town': 443251, 'town or': 927529, 'or anywhere': 614385, 'anywhere because': 81091, 'others safer': 621628, 'safer by': 730349, 'keeping your': 472630, 'difficult in': 242236, 'town we': 927578, 'of airy': 579869, 'airy parking': 40168, 'parking this': 642124, 'wa midday': 962629, 'midday 19': 530605, 'are heading into': 87053, 'heading into town': 385946, 'into town or': 443252, 'town or anywhere': 927530, 'or anywhere because': 614386, 'anywhere because you': 81093, 'because you need': 119873, 'need to please': 556012, 'to please help': 911816, 'please help keep': 660073, 'help keep yourself': 389981, 'keep yourself and': 472293, 'and others safer': 68458, 'others safer by': 621629, 'safer by keeping': 730350, 'by keeping your': 152986, 'keeping your distance': 472632, 'your distance in': 1023535, 'distance in crowded': 246739, 'crowded supermarket that': 219361, 'supermarket that can': 823181, 'that can be': 843094, 'be difficult in': 114458, 'difficult in town': 242238, 'in town we': 430252, 'town we have': 927579, 'we have plenty': 971901, 'plenty of airy': 660938, 'of airy parking': 579870, 'airy parking this': 40169, 'parking this wa': 642126, 'this wa midday': 891076, 'wa midday 19': 962630, 'ignored': 415860, 'pitying': 657066, 'ourresponsibility': 625425, 'sberesponsible': 739803, 'announced this': 77090, 'afternoon social': 36711, 'distancing ha': 247186, 'been totally': 122250, 'totally ignored': 926350, 'ignored forgotten': 415872, 'forgotten left': 329446, 'for later': 322893, 'later pitying': 481108, 'pitying the': 657067, 'cashier right': 166594, 'now jordan': 575148, 'jordan ourresponsibility': 467294, 'ourresponsibility socialdistancing': 625426, 'socialdistancing curfew': 780305, 'curfew stayhome': 220929, 'stayhome let': 798031, 'let sberesponsible': 487027, 'sberesponsible corona': 739804, 'since the curfew': 770875, 'the curfew wa': 852597, 'curfew wa announced': 220949, 'wa announced this': 961546, 'announced this afternoon': 77091, 'this afternoon social': 886236, 'afternoon social distancing': 36712, 'social distancing ha': 779625, 'distancing ha been': 247187, 'ha been totally': 369960, 'been totally ignored': 122252, 'totally ignored forgotten': 926351, 'ignored forgotten left': 415873, 'forgotten left for': 329447, 'left for later': 485464, 'for later pitying': 322896, 'later pitying the': 481109, 'pitying the supermarket': 657068, 'the supermarket cashier': 868511, 'supermarket cashier right': 819567, 'cashier right now': 166595, 'right now jordan': 722092, 'now jordan ourresponsibility': 575149, 'jordan ourresponsibility socialdistancing': 467295, 'ourresponsibility socialdistancing curfew': 625427, 'socialdistancing curfew stayhome': 780306, 'curfew stayhome let': 220931, 'stayhome let sberesponsible': 798032, 'let sberesponsible corona': 487028, 'contemplating': 200767, 'today housing': 919669, 'index will': 434259, 'many investor': 514205, 'investor contemplating': 444142, 'contemplating just': 200770, 'what covid': 981276, '19 may': 8574, 'may mean': 521339, 'their property': 874498, 'property portfolio': 684319, 'portfolio responding': 665009, 'the index': 858111, 'index finding': 434193, 'finding spoke': 307539, 'spoke with': 789742, 'with explaining': 998339, 'how any': 407376, 'decline would': 231417, 'be temporary': 117542, 'today housing price': 919670, 'housing price index': 407135, 'price index will': 674815, 'index will have': 434260, 'will have many': 993649, 'have many investor': 381436, 'many investor contemplating': 514206, 'investor contemplating just': 444143, 'contemplating just what': 200771, 'just what covid': 470283, 'what covid 19': 981277, 'covid 19 may': 213410, '19 may mean': 8581, 'may mean for': 521340, 'mean for their': 524454, 'for their property': 326861, 'their property portfolio': 874499, 'property portfolio responding': 684320, 'portfolio responding to': 665010, 'to the index': 916806, 'the index finding': 858112, 'index finding spoke': 434194, 'finding spoke with': 307540, 'spoke with explaining': 789748, 'with explaining how': 998340, 'explaining how any': 292179, 'how any price': 407377, 'any price decline': 79680, 'price decline would': 673404, 'decline would be': 231418, 'would be temporary': 1011656, 'pritzker': 678772, 'illinois': 416275, 'governor pritzker': 360971, 'pritzker when': 678781, 'or when': 617781, 'pharmacy wearing': 654550, 'wearing something': 974786, 'to cover': 903646, 'face is': 294477, 'idea based': 413012, 'based upon': 111777, 'upon what': 947667, 'the science': 866497, 'science say': 742133, 'say illinois': 738791, 'governor pritzker when': 360974, 'pritzker when you': 678782, 'you go outside': 1018862, 'go outside or': 354018, 'outside or when': 629525, 'or when you': 617783, 'when you must': 984582, 'store pharmacy wearing': 809549, 'pharmacy wearing something': 654551, 'wearing something to': 974787, 'something to cover': 785098, 'to cover your': 903665, 'your face is': 1023748, 'face is good': 294478, 'good idea based': 357207, 'idea based upon': 413013, 'based upon what': 111778, 'upon what the': 947668, 'what the science': 982364, 'the science say': 866502, 'science say illinois': 742134, 'lgus': 487930, 'agriculture da': 38957, 'da is': 224223, 'is urging': 453600, 'urging consumer': 948415, 'government unit': 360757, 'unit lgus': 942069, 'lgus to': 487931, 'food enough': 314359, 'weekly requirement': 977538, 'requirement to': 713446, 'maintain balance': 508940, 'balance in': 108975, 'chain during': 170664, 'pandemic let': 635881, 'of agriculture da': 579846, 'agriculture da is': 38958, 'da is urging': 224224, 'is urging consumer': 453601, 'urging consumer and': 948416, 'consumer and local': 196221, 'and local government': 66294, 'local government unit': 498034, 'government unit lgus': 360758, 'unit lgus to': 942070, 'lgus to buy': 487932, 'buy food enough': 148644, 'food enough for': 314360, 'enough for their': 277441, 'for their weekly': 326883, 'their weekly requirement': 875178, 'weekly requirement to': 977539, 'requirement to maintain': 713448, 'to maintain balance': 909566, 'maintain balance in': 508941, 'balance in the': 108976, 'supply chain during': 824948, 'chain during the': 170668, '19 pandemic let': 9380, 'pandemic let not': 635883, 'daraz': 225920, 'adopting': 32698, 'staysafeshoponline': 798979, 'shopping platform': 763633, 'platform like': 658996, 'like daraz': 490093, 'daraz act': 225921, 'act responsible': 29759, 'responsible at': 716005, 'by adopting': 151757, 'adopting who': 32709, 'who covid': 988516, '19 guideline': 7314, 'guideline in': 368436, 'delivering their': 233551, 'their package': 874219, 'package staysafeshoponline': 633407, 'so glad to': 777173, 'glad to hear': 351525, 'hear that online': 387993, 'online shopping platform': 609226, 'shopping platform like': 763635, 'platform like daraz': 658999, 'like daraz act': 490094, 'daraz act responsible': 225922, 'act responsible at': 29760, 'responsible at this': 716006, 'time of need': 897348, 'of need by': 586904, 'need by adopting': 554582, 'by adopting who': 151759, 'adopting who covid': 32710, 'who covid 19': 988517, 'covid 19 guideline': 213175, '19 guideline in': 7315, 'guideline in delivering': 368437, 'in delivering their': 422090, 'delivering their package': 233552, 'their package staysafeshoponline': 874220, 'vuitton': 960784, 'combat france': 187013, 'france shortage': 331028, 'sanitizer due': 734795, 'the louis': 859759, 'louis vuitton': 504525, 'vuitton owner': 960793, 'owner is': 632480, 'stepping in': 799798, 'to combat france': 902997, 'combat france shortage': 187014, 'france shortage of': 331029, 'shortage of hand': 765115, 'hand sanitizer due': 375381, 'sanitizer due to': 734796, 'to the louis': 916859, 'the louis vuitton': 859760, 'louis vuitton owner': 504529, 'vuitton owner is': 960794, 'owner is stepping': 632484, 'is stepping in': 452256, 'commonly': 189493, 'today confirmed': 919398, 'confirmed package': 194178, 'of targeted': 590599, 'targeted temporary': 834551, 'measure initially': 525239, 'initially announced': 438565, 'announced last': 76982, 'week which': 977231, 'people facing': 647857, 'facing difficulty': 295443, 'difficulty due': 242375, 'most commonly': 542192, 'commonly used': 189494, 'used consumer': 949885, 'product including': 681302, 'including loan': 432039, 'loan credit': 497419, 'ha today confirmed': 372326, 'today confirmed package': 919399, 'confirmed package of': 194179, 'package of targeted': 633347, 'of targeted temporary': 590600, 'targeted temporary measure': 834552, 'temporary measure initially': 837665, 'measure initially announced': 525240, 'initially announced last': 438566, 'announced last week': 76983, 'last week which': 480693, 'week which aim': 977232, 'aim to help': 39552, 'help people facing': 390292, 'people facing difficulty': 647858, 'facing difficulty due': 295445, 'difficulty due to': 242376, '19 with some': 12143, 'with some of': 1000855, 'the most commonly': 860961, 'most commonly used': 542193, 'commonly used consumer': 189495, 'used consumer credit': 949886, 'credit product including': 216460, 'product including loan': 681306, 'including loan credit': 432041, 'dystopian': 263943, 'fandom': 298563, 'are acting': 84188, 'acting show': 29906, 'show we': 767267, 're quickly': 699344, 'quickly heading': 694541, 'heading towards': 385972, 'towards dystopian': 927188, 'dystopian nightmare': 263946, 'nightmare amp': 563169, 'amp shit': 54488, 'shit ain': 759048, 'ain even': 39612, 'to fandom': 905665, 'fandom yet': 298564, 'way people are': 969806, 'people are acting': 646916, 'are acting show': 84196, 'acting show we': 29907, 'show we re': 767270, 'we re quickly': 972943, 're quickly heading': 699345, 'quickly heading towards': 694542, 'heading towards dystopian': 385973, 'towards dystopian nightmare': 927189, 'dystopian nightmare amp': 263947, 'nightmare amp shit': 563170, 'amp shit ain': 54489, 'shit ain even': 759049, 'ain even close': 39613, 'close to fandom': 182893, 'to fandom yet': 905666, 'average american': 104803, 'like cheap': 489984, 'cheap oil': 174154, 'oil gasoline': 596833, 'price high': 674510, 'high when': 395516, 'when he': 983527, 'be focusing': 114889, 'focusing on': 311989, 'keeping alive': 472368, 'the average american': 849096, 'average american like': 104804, 'american like cheap': 52075, 'like cheap oil': 489985, 'cheap oil gasoline': 174158, 'oil gasoline price': 596834, 'gasoline price trump': 344269, 'price trump is': 677129, 'trump is working': 933663, 'keep the price': 472063, 'the price high': 864362, 'price high when': 674513, 'high when he': 395517, 'when he should': 983543, 'he should be': 385437, 'should be focusing': 765628, 'be focusing on': 114890, 'focusing on covid': 311991, '19 and keeping': 5054, 'and keeping alive': 65793, 'regardless': 707315, 'steven': 799968, 'giant oz': 349837, 'oz actually': 632720, 'actually cbd': 30757, 'cbd store': 168327, 'store regional': 809781, 'regional store': 707525, 'open on': 612407, 'public holiday': 688093, 'holiday work': 400390, 'only shut': 611138, 'shut one': 767913, 'day year': 228810, 'year regardless': 1014926, 'regardless steven': 707329, 'steven and': 799969, 'the liberal': 859317, 'liberal should': 488020, 'using panic': 950585, 'giant oz actually': 349838, 'oz actually cbd': 632721, 'actually cbd store': 30758, 'cbd store regional': 168328, 'store regional store': 809782, 'regional store and': 707526, 'store and independent': 806268, 'and independent grocer': 65144, 'independent grocer are': 434108, 'grocer are open': 364101, 'are open on': 88795, 'open on public': 612412, 'on public holiday': 603000, 'public holiday work': 688095, 'holiday work in': 400391, 'work in major': 1005323, 'in major supermarket': 424990, 'major supermarket that': 509501, 'supermarket that is': 823187, 'that is only': 844633, 'is only shut': 450548, 'only shut one': 611139, 'shut one day': 767914, 'one day year': 606170, 'day year regardless': 228811, 'year regardless steven': 1014927, 'regardless steven and': 707330, 'steven and the': 799970, 'and the liberal': 73447, 'the liberal should': 859319, 'liberal should not': 488021, 'not be using': 568480, 'be using panic': 117944, 'worried this': 1010594, 'week supermarket': 976947, 'increasingly afraid': 433753, 'after healthcare': 35769, 'provider no': 686757, 'no workforce': 565934, 'workforce ha': 1008363, 'proven more': 686174, 'more critical': 538923, 'critical during': 218548, 'pandemic than': 636639, 'employee usa': 274365, 'usa supermarket': 948755, 'supermarket newyork': 821599, 'worried this week': 1010595, 'this week supermarket': 891274, 'week supermarket worker': 976950, 'worker are increasingly': 1006400, 'are increasingly afraid': 87499, 'increasingly afraid to': 433754, 'to work due': 918711, 'to coronavirus after': 903538, 'coronavirus after healthcare': 205467, 'after healthcare provider': 35770, 'healthcare provider no': 387254, 'provider no workforce': 686758, 'no workforce ha': 565935, 'workforce ha proven': 1008364, 'ha proven more': 371565, 'proven more critical': 686175, 'more critical during': 538924, 'critical during the': 218549, 'the pandemic than': 863119, 'pandemic than supermarket': 636640, 'than supermarket employee': 841185, 'supermarket employee usa': 820146, 'employee usa supermarket': 274366, 'usa supermarket newyork': 948756, 'supermarketworkers': 824265, 'foodworkers': 318267, 'foodshopping': 318118, '2019 people': 13995, 'see member': 745412, 'the armed': 848899, 'force thank': 328507, 'service 2020': 752021, '2020 people': 14505, 'see supermarket': 745763, 'supermarket groceryworkers': 820592, 'groceryworkers supermarketworkers': 366409, 'supermarketworkers foodworkers': 824266, 'foodworkers foodshopping': 318268, 'foodshopping groceryshopping': 318124, '2019 people see': 13996, 'people see member': 649367, 'see member of': 745413, 'of the armed': 590801, 'the armed force': 848900, 'armed force thank': 92941, 'force thank you': 328508, 'your service 2020': 1025725, 'service 2020 people': 752022, '2020 people see': 14506, 'people see supermarket': 649369, 'see supermarket employee': 745766, 'supermarket employee thank': 820141, 'your service supermarket': 1025738, 'service supermarket groceryworkers': 752880, 'supermarket groceryworkers supermarketworkers': 820593, 'groceryworkers supermarketworkers foodworkers': 366410, 'supermarketworkers foodworkers foodshopping': 824267, 'foodworkers foodshopping groceryshopping': 318269, 'foodshopping groceryshopping grocery': 318125, 'need decrease': 554661, 'decrease your': 231614, 'price now': 675377, 'now rather': 575637, 'month later': 537816, 'later stayathome': 481117, 'do you not': 250651, 'you not see': 1020129, 'not see the': 571487, 'see the need': 745862, 'the need decrease': 861392, 'need decrease your': 554662, 'decrease your data': 231615, 'your data price': 1023464, 'data price now': 226361, 'price now rather': 675383, 'now rather than': 575638, 'rather than month': 697536, 'than month later': 840904, 'month later stayathome': 537819, 'mounting': 543440, 'snp': 776421, 'spokesperson': 789783, 'not face': 569345, 'face mounting': 294625, 'mounting debt': 543445, 'debt and': 230413, 'and bad': 58631, 'bad credit': 107821, 'rating through': 697600, 'through no': 894591, 'no fault': 564196, 'fault of': 300408, 'own snp': 632216, 'snp consumer': 776424, 'affair spokesperson': 34089, 'spokesperson call': 789786, 'uk government': 938407, 'go further': 353597, 'further to': 342191, 'support people': 826755, 'credit agreement': 216301, 'should not face': 766243, 'not face mounting': 569347, 'face mounting debt': 294627, 'mounting debt and': 543446, 'debt and bad': 230414, 'and bad credit': 58635, 'bad credit rating': 107822, 'credit rating through': 216475, 'rating through no': 697601, 'through no fault': 894592, 'no fault of': 564197, 'fault of their': 300411, 'of their own': 591686, 'their own snp': 874205, 'own snp consumer': 632217, 'snp consumer affair': 776425, 'consumer affair spokesperson': 196102, 'affair spokesperson call': 34090, 'spokesperson call on': 789787, 'call on the': 156048, 'on the uk': 604417, 'the uk government': 870226, 'uk government and': 938408, 'government and to': 359877, 'and to go': 74173, 'to go further': 906800, 'go further to': 353599, 'further to support': 342194, 'to support people': 915960, 'support people struggling': 826758, 'struggling with credit': 814533, 'with credit agreement': 997847, 'the atlanta': 849008, 'atlanta community': 101832, 'bank continues': 109739, 'monitor the': 537320, 'the development': 853226, 'development of': 239828, 'our priority': 624459, 'priority remains': 678632, 'remains focused': 710013, 'focused on': 311945, 'providing food': 686994, 'need demand': 554670, 'we anticipate': 970437, 'anticipate will': 78449, 'increase significantly': 433057, 'coming week': 188271, 'can spare': 159684, 'spare it': 787484, 'it donate': 457661, 'donate it': 254191, 'the atlanta community': 849009, 'atlanta community food': 101833, 'community food bank': 189849, 'food bank continues': 313542, 'bank continues to': 109740, 'continues to monitor': 201486, 'to monitor the': 910238, 'monitor the development': 537321, 'the development of': 853227, 'development of covid': 239830, '19 our priority': 9059, 'our priority remains': 624466, 'priority remains focused': 678633, 'remains focused on': 710014, 'focused on providing': 311962, 'on providing food': 602990, 'providing food to': 686997, 'to those in': 917507, 'in need demand': 425734, 'need demand we': 554671, 'demand we anticipate': 236458, 'we anticipate will': 970439, 'anticipate will increase': 78450, 'will increase significantly': 993824, 'increase significantly in': 433058, 'the coming week': 851203, 'coming week if': 188278, 'you can spare': 1017789, 'can spare it': 159685, 'spare it donate': 787485, 'it donate it': 457662, 'donate it to': 254195, 'it to food': 461715, 'milling': 532042, 'tuned higher': 935442, 'higher gold': 395603, 'soon george': 785717, 'george milling': 346011, 'milling stanley': 532043, 'stay tuned higher': 797364, 'tuned higher gold': 935443, 'higher gold price': 395604, 'price are coming': 672646, 'are coming soon': 85441, 'coming soon george': 188197, 'soon george milling': 785718, 'george milling stanley': 346012, 'great teamwork': 363029, 'teamwork from': 835899, 'from colleague': 334909, 'colleague at': 186204, 'get all': 346517, 'our fantastic': 623009, 'fantastic extremely': 298584, 'extremely useful': 293936, 'useful consumer': 950145, 'consumer advice': 196039, 'advice in': 33405, 'one handy': 606404, 'handy place': 376900, 'place bookmark': 657358, 'bookmark it': 134763, 'updated frequently': 947368, 'thanks to great': 842229, 'to great teamwork': 906991, 'great teamwork from': 363030, 'teamwork from colleague': 835900, 'from colleague at': 334911, 'colleague at you': 186207, 'at you can': 101655, 'can get all': 158398, 'get all of': 346521, 'of our fantastic': 587468, 'our fantastic extremely': 623011, 'fantastic extremely useful': 298585, 'extremely useful consumer': 293937, 'useful consumer advice': 950146, 'consumer advice in': 196046, 'advice in one': 33407, 'in one handy': 426147, 'one handy place': 606405, 'handy place bookmark': 376901, 'place bookmark it': 657359, 'bookmark it it': 134764, 'it it will': 459185, 'be updated frequently': 117889, 'thankful for': 841904, 'professional and': 682397, 'responder but': 715429, 'also thankful': 48963, 'who drive': 988663, 'truck who': 932879, 'shelf who': 757805, 'who grow': 988821, 'grow our': 367050, 'who power': 989438, 'power our': 667653, 'and life': 66137, 'life thank': 489089, 'you essential': 1018439, 'thankful for our': 841910, 'for our medical': 324270, 'our medical professional': 623896, 'medical professional and': 526327, 'professional and first': 682400, 'first responder but': 308933, 'responder but in': 715431, 'but in these': 146038, 'in these day': 429838, 'these day of': 879886, 'day of covid': 228065, '19 also thankful': 4933, 'also thankful for': 48964, 'thankful for the': 841911, 'for the men': 326557, 'woman who drive': 1003677, 'who drive the': 988664, 'drive the long': 259167, 'haul truck who': 379004, 'truck who stock': 932880, 'who stock our': 989681, 'stock our grocery': 802601, 'our grocery shelf': 623307, 'grocery shelf who': 364962, 'shelf who grow': 757806, 'who grow our': 988823, 'grow our food': 367051, 'our food and': 623100, 'food and who': 313382, 'and who power': 75595, 'who power our': 989439, 'power our home': 667654, 'our home and': 623443, 'home and life': 400658, 'and life thank': 66142, 'life thank you': 489090, 'thank you essential': 841722, 'you essential worker': 1018440, 'villainy': 957404, 'gouging begin': 359266, 'begin blue': 123508, 'blue shop': 133465, 'shop towel': 760973, 'towel are': 927298, 'stock everywhere': 802094, 'everywhere after': 288167, 'after business': 35439, 'business insider': 143927, 'insider article': 439461, 'article re': 94434, 're homemade': 698830, 'homemade face': 402827, 'mask the': 519351, 'the villainy': 870768, 'villainy of': 957405, 'are deciding': 85709, 'deciding to': 230963, 'hoard and': 398750, 'and jack': 65635, 'jack the': 464122, 'price lovely': 675108, 'let the price': 487136, 'price gouging begin': 674262, 'gouging begin blue': 359267, 'begin blue shop': 123509, 'blue shop towel': 133466, 'shop towel are': 760974, 'towel are out': 927301, 'of stock everywhere': 590162, 'stock everywhere after': 802095, 'everywhere after business': 288168, 'after business insider': 35440, 'business insider article': 143928, 'insider article re': 439462, 'article re homemade': 94435, 're homemade face': 698831, 'homemade face mask': 402828, 'face mask the': 294596, 'mask the villainy': 519359, 'the villainy of': 870769, 'villainy of the': 957406, 'world are deciding': 1009310, 'are deciding to': 85710, 'deciding to hoard': 230964, 'to hoard and': 907864, 'hoard and jack': 398753, 'and jack the': 65637, 'jack the price': 464123, 'the price lovely': 864383, 're spending': 699558, 'time raising': 897546, 'raising gas': 696086, 'for american': 319239, 'haven died': 383785, '19 priority': 9825, 'priority should': 678649, 'of 1st': 579442, '1st responder': 12790, 'responder getting': 715467, 'getting ppe': 349198, 'and ventilator': 74916, 'to state': 915251, 'state making': 795759, 'go broke': 353382, 'broke from': 140830, 'healthcare bill': 387048, 'you re spending': 1020753, 're spending time': 699560, 'spending time raising': 789019, 'time raising gas': 897547, 'raising gas price': 696087, 'price for american': 673923, 'for american who': 319253, 'american who haven': 52305, 'who haven died': 988973, 'haven died from': 383786, 'covid 19 priority': 213612, '19 priority should': 9826, 'priority should be': 678650, 'should be taking': 765743, 'be taking care': 117511, 'care of 1st': 164091, 'of 1st responder': 579444, '1st responder getting': 12794, 'responder getting ppe': 715468, 'getting ppe and': 349199, 'ppe and ventilator': 667909, 'and ventilator to': 74922, 'ventilator to state': 954629, 'to state making': 915256, 'state making sure': 795761, 'sure people don': 827654, 'people don go': 647701, 'don go broke': 253564, 'go broke from': 353383, 'broke from healthcare': 140831, 'from healthcare bill': 335750, 'geoi': 345959, 'sdbeer': 743031, 'friend they': 333836, 'for in': 322505, 'store shopping': 810127, 'order geoi': 618266, 'geoi always': 345960, 'always ha': 49589, 'best beer': 127591, 'his online': 397656, 'store rock': 809902, 'rock sdbeer': 724918, 'support our friend': 826730, 'our friend they': 623186, 'friend they are': 333837, 'they are still': 881417, 'still open for': 800959, 'open for in': 612250, 'for in store': 322515, 'in store shopping': 428455, 'store shopping and': 810128, 'shopping and pick': 762010, 'pick up for': 655724, 'up for online': 944951, 'online order geoi': 608689, 'order geoi always': 618267, 'geoi always ha': 345961, 'always ha the': 49591, 'ha the best': 372190, 'the best beer': 849490, 'best beer and': 127592, 'beer and his': 122427, 'and his online': 64608, 'his online store': 397658, 'online store rock': 609468, 'store rock sdbeer': 809903, 'floridashutdown': 311013, 'helpthehelpers': 391635, 'these worker': 880988, 'are terrified': 90776, 'terrified they': 838509, 'sanitizer passing': 735537, 'passing contaminated': 643372, 'contaminated money': 200660, 'money all': 536575, 'home floridashutdown': 401201, 'floridashutdown helpthehelpers': 311014, 'helpthehelpers and': 391636, 'sad that these': 729255, 'that these worker': 846921, 'these worker are': 880990, 'worker are terrified': 1006432, 'are terrified they': 90779, 'terrified they have': 838510, 'have no mask': 381636, 'no mask and': 564704, 'mask and no': 518351, 'and no sanitizer': 67636, 'no sanitizer passing': 565414, 'sanitizer passing contaminated': 735538, 'passing contaminated money': 643373, 'contaminated money all': 200661, 'money all day': 536576, 'all day and': 42511, 'day and taking': 227284, 'and taking it': 72997, 'taking it home': 833409, 'it home floridashutdown': 458613, 'home floridashutdown helpthehelpers': 401202, 'floridashutdown helpthehelpers and': 311015, 'helpthehelpers and you': 391637, 'dressed': 258690, 'cord': 203495, 'sweater': 830063, 'boot': 135096, 'who would': 990056, 'have thought': 383116, 'thought that': 893227, 'getting dressed': 348946, 'dressed aka': 258691, 'aka cord': 40475, 'cord sweater': 203496, 'sweater cute': 830064, 'cute boot': 223653, 'boot and': 135097, 'little bit': 495250, 'of makeup': 586122, 'makeup to': 510918, 'store would': 811642, 'the highlight': 857354, 'highlight of': 395937, 'my week': 550551, 'week socialdistancing': 976896, 'who would have': 990058, 'would have thought': 1011900, 'have thought that': 383124, 'thought that getting': 893231, 'that getting dressed': 844004, 'getting dressed aka': 348947, 'dressed aka cord': 258692, 'aka cord sweater': 40476, 'cord sweater cute': 203497, 'sweater cute boot': 830065, 'cute boot and': 223654, 'boot and little': 135098, 'and little bit': 66238, 'little bit of': 495259, 'bit of makeup': 131653, 'of makeup to': 586123, 'makeup to go': 510919, 'grocery store would': 365973, 'store would be': 811644, 'be the highlight': 117619, 'the highlight of': 857355, 'highlight of my': 395938, 'of my week': 586831, 'my week socialdistancing': 550553, '5986': 20596, '627': 21254, 'brescia': 139377, 'developing': 239762, '5986 new': 20597, 'and 627': 57504, '627 new': 21257, 'new death': 558610, 'death in': 230074, 'italy death': 462805, 'death include': 230085, 'include 48': 431505, '48 year': 19337, 'old woman': 598547, 'who worked': 990047, 'worked supermarket': 1006144, 'cashier in': 166546, 'in brescia': 420962, 'brescia and': 139378, 'and died': 61337, 'died at': 241512, 'after developing': 35559, 'developing high': 239784, 'high fever': 395073, 'fever at': 303656, 'week 19': 975794, '5986 new case': 20598, 'new case and': 558458, 'case and 627': 165619, 'and 627 new': 57505, '627 new death': 21258, 'new death in': 558612, 'death in italy': 230079, 'in italy death': 424296, 'italy death include': 462806, 'death include 48': 230086, 'include 48 year': 431506, '48 year old': 19338, 'year old woman': 1014880, 'old woman who': 598550, 'woman who worked': 1003690, 'who worked supermarket': 990050, 'worked supermarket cashier': 1006145, 'supermarket cashier in': 819561, 'cashier in brescia': 166548, 'in brescia and': 420963, 'brescia and died': 139379, 'and died at': 61338, 'died at home': 241514, 'at home after': 98933, 'home after developing': 400564, 'after developing high': 35560, 'developing high fever': 239785, 'high fever at': 395075, 'fever at the': 303659, 'beginning of this': 123653, 'this week 19': 891178, 'seen toilet': 747327, 'the wild': 871555, 'wild in': 992063, 'in maybe': 425198, 'maybe week': 521878, 'week toiletpaper': 977110, 'haven seen toilet': 383893, 'seen toilet paper': 747328, 'in the wild': 429680, 'the wild in': 871556, 'wild in maybe': 992064, 'in maybe week': 425199, 'maybe week toiletpaper': 521879, 'will accelerate': 992177, 'accelerate this': 27867, 'this trend': 890848, 'trend towards': 931483, 'towards esg': 927194, 'esg even': 280357, 'even further': 284096, 'further creating': 342018, 'creating greater': 216007, 'greater sense': 363237, 'and responsibility': 70357, 'responsibility toward': 715990, 'toward everything': 927118, 'behaviour to': 124541, 'to climate': 902841, 'change via': 172378, '19 will accelerate': 12076, 'will accelerate this': 992182, 'accelerate this trend': 27868, 'this trend towards': 890849, 'trend towards esg': 931486, 'towards esg even': 927195, 'esg even further': 280358, 'even further creating': 284097, 'further creating greater': 342019, 'creating greater sense': 216008, 'greater sense of': 363238, 'of urgency and': 592689, 'urgency and responsibility': 948302, 'and responsibility toward': 70358, 'responsibility toward everything': 715991, 'toward everything from': 927119, 'everything from consumer': 287798, 'from consumer behaviour': 334953, 'consumer behaviour to': 196604, 'behaviour to climate': 124542, 'to climate change': 902843, 'climate change via': 182204, 'foodstuff': 318155, 'kaduna': 470589, 'of foodstuff': 583833, 'foodstuff skyrocket': 318184, 'skyrocket in': 773310, 'in kaduna': 424429, '19 price of': 9816, 'price of foodstuff': 675455, 'of foodstuff skyrocket': 583838, 'foodstuff skyrocket in': 318185, 'skyrocket in kaduna': 773312, 'ukgoverment': 938949, 'our foodbanks': 623142, 'foodbanks could': 317819, 'could run': 209617, 'the lockdownuk': 859644, 'lockdownuk end': 500407, 'end isn': 275852, 'isn it': 454560, 'time ukgoverment': 898157, 'ukgoverment lived': 938954, 'lived up': 496180, 'it responsibility': 460738, 'responsibility foodbanks': 715942, 'foodbanks should': 317840, 'have government': 380825, 'government funding': 360115, 'our foodbanks could': 623143, 'foodbanks could run': 317820, 'could run out': 209618, 'of stock before': 590142, 'stock before the': 801913, 'before the lockdownuk': 123173, 'the lockdownuk end': 859646, 'lockdownuk end isn': 500408, 'end isn it': 275853, 'isn it time': 454571, 'it time ukgoverment': 461701, 'time ukgoverment lived': 898158, 'ukgoverment lived up': 938955, 'lived up to': 496181, 'up to it': 946392, 'to it responsibility': 908609, 'it responsibility foodbanks': 460739, 'responsibility foodbanks should': 715943, 'foodbanks should have': 317841, 'should have government': 766079, 'have government funding': 380826, 'tire': 899008, 'dealership': 229631, 'from wiping': 338384, 'down counter': 256664, 'counter to': 210273, 'to giving': 906732, 'giving out': 351362, 'out hand': 626255, 'customer tire': 222951, 'tire dealership': 899011, 'dealership are': 229632, 'of guideline': 584387, 'do here': 249394, 'here gt': 393063, 'from wiping down': 338385, 'wiping down counter': 996511, 'down counter to': 256665, 'counter to giving': 210275, 'to giving out': 906735, 'giving out hand': 351366, 'out hand sanitizer': 626257, 'sanitizer to customer': 735913, 'to customer tire': 903860, 'customer tire dealership': 222952, 'tire dealership are': 899012, 'dealership are taking': 229633, 'are taking precaution': 90731, 'taking precaution to': 833524, 'precaution to prevent': 669386, 'spread of guideline': 790676, 'of guideline for': 584388, 'guideline for what': 368431, 'you should do': 1021191, 'should do here': 765924, 'do here gt': 249395, 'frontlines': 338904, 'naz': 553177, 'karim': 470916, 'so inspired': 777410, 'inspired by': 439835, 'the frontlines': 855895, 'frontlines of': 338921, 'crisis healthcare': 217476, 'healthcare practitioner': 387217, 'practitioner city': 668796, 'city official': 179297, 'official grocery': 595822, 'many many': 514259, 'you powerful': 1020396, 'powerful perspective': 667795, 'perspective here': 653203, 'dr naz': 258069, 'naz karim': 553180, 'karim an': 470917, 'an er': 55799, 'er physician': 280018, 'physician and': 655532, 'so inspired by': 777411, 'inspired by the': 439843, 'on the frontlines': 604136, 'the frontlines of': 855902, 'frontlines of this': 338923, 'this crisis healthcare': 887050, 'crisis healthcare practitioner': 217478, 'healthcare practitioner city': 387218, 'practitioner city official': 668797, 'city official grocery': 179299, 'official grocery store': 595823, 'worker and many': 1006311, 'and many many': 66674, 'many many more': 514262, 'many more grateful': 514302, 'more grateful for': 539363, 'grateful for all': 362257, 'of you powerful': 593411, 'you powerful perspective': 1020397, 'powerful perspective here': 667796, 'perspective here from': 653204, 'here from dr': 393026, 'from dr naz': 335213, 'dr naz karim': 258070, 'naz karim an': 553181, 'karim an er': 470918, 'an er physician': 55801, 'er physician and': 280019, 'physician and friend': 655533, 're playing': 699271, 'world we': 1010141, 'it sound': 461182, 'sound about': 786255, 'about right': 26103, 'store and they': 806376, 'and they re': 73932, 'they re playing': 883094, 're playing it': 699273, 'playing it the': 659419, 'the world we': 872002, 'world we know': 1010145, 'we know it': 972154, 'know it sound': 476541, 'it sound about': 461183, 'sound about right': 786256, 'record level': 704999, 'level in': 487588, 'in amid': 420250, 'grocery shopping rise': 365075, 'shopping rise to': 763776, 'rise to record': 723036, 'to record level': 912981, 'record level in': 705000, 'level in amid': 487593, 'in amid covid': 420251, 'house bit': 406217, 'bit ago': 131529, 'run first': 727637, 'time leaving': 897121, 'house since': 406558, 'since saturday': 770813, 'saturday also': 737000, 'also realized': 48755, 'likely need': 492054, 'more the': 540713, 'the lawn': 859198, 'lawn this': 482506, 'yeah more': 1014276, 'more is': 539620, 'it allergy': 456390, 'allergy or': 45781, 'or covid': 614852, 'left the house': 485668, 'the house bit': 857597, 'house bit ago': 406218, 'bit ago to': 131530, 'ago to make': 38516, 'to make grocery': 909671, 'store run first': 809921, 'run first time': 727638, 'first time leaving': 309104, 'time leaving the': 897122, 'leaving the house': 485151, 'the house since': 857633, 'house since saturday': 406562, 'since saturday also': 770814, 'saturday also realized': 737001, 'also realized that': 48756, 'realized that will': 701915, 'will likely need': 994006, 'likely need to': 492055, 'need to more': 555995, 'to more the': 910269, 'more the lawn': 540715, 'the lawn this': 859199, 'lawn this weekend': 482507, 'this weekend so': 891320, 'weekend so yeah': 977410, 'so yeah more': 778829, 'yeah more is': 1014277, 'more is it': 539622, 'is it allergy': 449007, 'it allergy or': 456391, 'allergy or covid': 45782, 'or covid 19': 614853, '19 coming to': 5896, 'coming to me': 188222, 'me this weekend': 523725, 'declare': 231179, 'declare this': 231210, 'new standard': 559638, 'standard capacity': 793644, 'declare this to': 231211, 'this to be': 890727, 'the new standard': 861559, 'new standard capacity': 559640, 'she spreading': 756347, 'spreading the': 791050, 'woman is': 1003530, 'is touching': 453311, 'touching almost': 926659, 'in big': 420825, 'why now': 991243, 'have everywhere': 380505, 'is she spreading': 451839, 'she spreading the': 756348, 'spreading the woman': 791060, 'the woman is': 871665, 'woman is touching': 1003536, 'is touching almost': 453312, 'touching almost everything': 926660, 'almost everything in': 46633, 'everything in big': 287846, 'in big supermarket': 420830, 'big supermarket why': 130038, 'supermarket why now': 823872, 'why now we': 991245, 'now we have': 576341, 'we have everywhere': 971810, 'oldie': 598712, 'uno': 942984, 'wa our': 962872, 'our once': 624133, 'and picking': 69014, 'up shopping': 945979, 'vulnerable oldie': 961061, 'oldie followed': 598715, 'followed by': 312595, 'no tv': 565811, 'tv making': 936139, 'pizza and': 657146, 'playing uno': 659461, 'uno family': 942985, 'family best': 297655, 'best day': 127659, 'day ever': 227571, 'ever stayhomesavelives': 285519, 'yesterday wa our': 1015925, 'wa our once': 962874, 'our once week': 624134, 'once week supermarket': 605802, 'week supermarket shopping': 976949, 'supermarket shopping for': 822634, 'shopping for and': 762657, 'for and picking': 319335, 'and picking up': 69016, 'picking up shopping': 655884, 'up shopping for': 945982, 'shopping for our': 762702, 'for our vulnerable': 324305, 'our vulnerable oldie': 625292, 'vulnerable oldie followed': 961062, 'oldie followed by': 598716, 'followed by no': 312598, 'by no tv': 153340, 'no tv making': 565812, 'tv making pizza': 936140, 'making pizza and': 511285, 'pizza and playing': 657149, 'and playing uno': 69099, 'playing uno family': 659462, 'uno family best': 942986, 'family best day': 297656, 'best day ever': 127661, 'day ever stayhomesavelives': 227574, 'selute': 749576, 'stayhomeindia': 798306, 'selute to': 749577, 'nurse paramedic': 577449, 'paramedic police': 641393, 'officer pharmacy': 595697, 'other medical': 620521, 'store personnel': 809516, 'personnel delivery': 653093, 'people transit': 649997, 'cannot stay': 162122, 'home thank': 402209, 'you million': 1019861, 'million time': 532377, 'you stayhomeindia': 1021382, 'selute to doctor': 749578, 'doctor nurse paramedic': 251030, 'nurse paramedic police': 577453, 'paramedic police officer': 641394, 'police officer pharmacy': 663128, 'officer pharmacy and': 595698, 'pharmacy and other': 654220, 'and other medical': 68360, 'other medical worker': 620527, 'grocery store personnel': 365652, 'store personnel delivery': 809519, 'personnel delivery people': 653094, 'delivery people transit': 234325, 'people transit worker': 649998, 'transit worker and': 929657, 'worker and anyone': 1006273, 'and anyone who': 58229, 'anyone who work': 80637, 'who work with': 990046, 'work with the': 1006048, 'the public and': 864787, 'public and cannot': 687846, 'and cannot stay': 59521, 'cannot stay home': 162125, 'stay home thank': 797012, 'home thank you': 402210, 'thank you million': 841777, 'you million time': 1019862, 'million time thank': 532378, 'time thank you': 897822, 'thank you stayhomeindia': 841817, 'cutter': 223699, 'cigar': 178464, 'update cutter': 946924, 'cutter retail': 223704, 'retail cigar': 717958, 'cigar store': 178471, 'store remains': 809802, 'open bar': 612112, 'bar service': 110760, 'service closed': 752241, 'closed find': 183114, 'find updated': 307363, 'updated hour': 947382, 'hour cigar': 405490, 'cigar discount': 178467, 'discount and': 244442, 'safety information': 730582, 'information here': 437855, '19 update cutter': 11659, 'update cutter retail': 946925, 'cutter retail cigar': 223705, 'retail cigar store': 717959, 'cigar store remains': 178472, 'store remains open': 809803, 'remains open bar': 710042, 'open bar service': 612113, 'bar service closed': 110761, 'service closed find': 752242, 'closed find updated': 183115, 'find updated hour': 307364, 'updated hour cigar': 947383, 'hour cigar discount': 405491, 'cigar discount and': 178468, 'discount and safety': 244444, 'and safety information': 70746, 'safety information here': 730584, 'motivate': 543287, 'priority number': 678610, 'number is': 576894, 'is airport': 445438, 'airport or': 40112, 'security motivate': 744672, 'motivate your': 543288, 'your answer': 1022785, 'our priority number': 624465, 'priority number is': 678611, 'number is airport': 576896, 'is airport or': 445439, 'airport or food': 40113, 'or food security': 615346, 'food security motivate': 316358, 'security motivate your': 744673, 'motivate your answer': 543289, 'this chinese': 886764, 'chinese lady': 177287, 'lady spitting': 478826, 'on fruit': 601034, 'fruit in': 339098, 'an australian': 55479, 'australian supermarket': 103549, 'got tested': 358887, '19 china': 5792, 'at this chinese': 101227, 'this chinese lady': 886765, 'chinese lady spitting': 177288, 'lady spitting on': 478827, 'spitting on fruit': 789600, 'on fruit in': 601038, 'fruit in an': 339099, 'in an australian': 420286, 'an australian supermarket': 55480, 'australian supermarket after': 103550, 'supermarket after she': 818812, 'after she got': 36187, 'she got tested': 756060, 'got tested positive': 358888, '19 19 china': 4709, 'coronav': 205353, 'coronavir': 205416, 'light sterilizer': 489598, 'sterilizer sanitizer': 799875, 'and mobile': 67094, 'mobile phone': 535009, 'phone pls': 654997, 'pls take': 661190, 'care be': 163863, 'safe sanitizer': 729917, 'sanitizer sanitizers': 735694, 'sanitizers corona': 736250, 'corona coronav': 203891, 'coronav ru': 205354, 'ru coronavir': 726887, 'uv light sterilizer': 951479, 'light sterilizer sanitizer': 489599, 'sterilizer sanitizer for': 799876, 'sanitizer for your': 734929, 'for your mask': 328174, 'your mask and': 1024783, 'mask and mobile': 518349, 'and mobile phone': 67097, 'mobile phone pls': 535010, 'phone pls take': 654998, 'pls take care': 661191, 'take care be': 832004, 'care be safe': 163864, 'be safe sanitizer': 116967, 'safe sanitizer sanitizers': 729918, 'sanitizer sanitizers corona': 735695, 'sanitizers corona coronav': 736251, 'corona coronav ru': 203892, 'coronav ru coronavir': 205357, 'mooch': 538259, 'pharmacy in': 654354, 'out shopping': 627174, 'for mooch': 323547, 'mooch you': 538260, 'essential only': 281360, 'not holiday': 570006, 'holiday supermarket': 400359, 'not family': 569364, 'family day': 297736, 'out person': 627034, 'person should': 652603, 'house stayathome': 406576, 'work for pharmacy': 1005168, 'for pharmacy in': 324522, 'pharmacy in supermarket': 654359, 'supermarket and so': 819066, 'are out shopping': 88889, 'out shopping for': 627178, 'shopping for mooch': 762692, 'for mooch you': 323548, 'mooch you should': 538261, 'should be shopping': 765727, 'be shopping for': 117151, 'shopping for essential': 762673, 'for essential only': 321114, 'essential only this': 281365, 'only this is': 611334, 'is not holiday': 450106, 'not holiday supermarket': 570007, 'holiday supermarket are': 400360, 'supermarket are not': 819173, 'are not family': 88367, 'not family day': 569365, 'family day out': 297737, 'day out person': 228180, 'out person should': 627035, 'person should be': 652604, 'be shopping from': 117152, 'shopping from your': 762764, 'from your house': 338480, 'your house stayathome': 1024417, 'slashing': 773654, 'marketing tip': 517732, 'tip during': 898748, 'during don': 262608, 'don slash': 253914, 'you start': 1021353, 'start slashing': 794508, 'slashing your': 773688, 'it likely': 459390, 'to deter': 904230, 'deter potential': 239384, 'potential customer': 667054, 'customer learn': 222564, 'more follow': 539229, 'here hospitality': 393091, 'hospitality hotel': 404776, 'marketing tip during': 517733, 'tip during don': 898750, 'during don slash': 262609, 'don slash price': 253915, 'slash price if': 773585, 'price if you': 674624, 'if you start': 415524, 'you start slashing': 1021359, 'start slashing your': 794509, 'slashing your price': 773689, 'your price people': 1025410, 'price people will': 675854, 'people will ask': 650378, 'will ask why': 992313, 'ask why it': 95669, 'why it likely': 991144, 'it likely to': 459395, 'likely to deter': 492140, 'to deter potential': 904231, 'deter potential customer': 239385, 'potential customer learn': 667055, 'customer learn more': 222565, 'learn more follow': 484023, 'more follow our': 539232, 'follow our blog': 312481, 'blog here hospitality': 132945, 'here hospitality hotel': 393093, 'hospitality hotel restaurant': 404778, 'world stop': 1010007, 'stock you': 803216, 'ashamed saw': 95073, 'saw cleaning': 738086, 'supply toilet': 826040, 'worst baby': 1011146, 'diaper were': 240371, 'were all': 979280, 'all selling': 44274, 'online disgusting': 608109, 'the world stop': 871975, 'world stop buying': 1010008, 'stop buying and': 804528, 'and selling stock': 71240, 'selling stock you': 749455, 'stock you should': 803221, 'be ashamed saw': 113699, 'ashamed saw cleaning': 95074, 'saw cleaning supply': 738087, 'cleaning supply toilet': 181087, 'supply toilet paper': 826041, 'paper but the': 639975, 'but the worst': 147431, 'the worst baby': 872040, 'worst baby formula': 1011147, 'formula and diaper': 329694, 'and diaper were': 61314, 'diaper were all': 240372, 'were all selling': 979286, 'all selling for': 44275, 'selling for high': 749256, 'high price online': 395266, 'price online disgusting': 675748, 'gavinnewsom': 344689, 'newsom': 561061, 'calfresh': 155408, 'foreclosing': 328907, 'infectious': 436892, 'htt': 409748, 'gavinnewsom gov': 344690, 'gov newsom': 359640, 'newsom elderly': 561064, 'elderly disabled': 270659, 'disabled calfresh': 243886, 'calfresh recipient': 155409, 'recipient must': 704535, 'use pin': 949476, 'pin to': 656779, 'grocery foreclosing': 364534, 'foreclosing them': 328908, 'from safely': 337144, 'grocery delivered': 364420, 'delivered during': 233315, 'this infectious': 888099, 'infectious covid': 436895, 'pandemic can': 635084, 'have htt': 380990, 'gavinnewsom gov newsom': 344691, 'gov newsom elderly': 359641, 'newsom elderly disabled': 561065, 'elderly disabled calfresh': 270661, 'disabled calfresh recipient': 243887, 'calfresh recipient must': 155410, 'recipient must use': 704536, 'must use pin': 546974, 'use pin to': 949477, 'pin to purchase': 656780, 'purchase grocery foreclosing': 689480, 'grocery foreclosing them': 364535, 'foreclosing them from': 328909, 'them from safely': 875753, 'from safely shopping': 337145, 'safely shopping online': 730319, 'online with their': 609752, 'with their grocery': 1001574, 'their grocery delivered': 873446, 'grocery delivered during': 364422, 'delivered during this': 233316, 'during this infectious': 263294, 'this infectious covid': 888100, 'infectious covid 19': 436896, '19 pandemic can': 9283, 'pandemic can you': 635087, 'can you have': 160308, 'you have htt': 1019058, 'demonstrate': 236832, 'man looking': 512146, 'supply he': 825351, 'is surrounded': 452499, 'in surrey': 428746, 'surrey england': 828695, 'england ha': 277018, 'been widely': 122373, 'widely shared': 991786, 'shared online': 755438, 'online to': 609576, 'to demonstrate': 904166, 'demonstrate the': 236839, 'coronavirus fuelled': 205970, 'fuelled panic': 340359, 'photo of an': 655200, 'of an elderly': 580106, 'an elderly man': 55638, 'elderly man looking': 270747, 'man looking for': 512148, 'looking for supply': 502905, 'for supply he': 326047, 'supply he is': 825352, 'he is surrounded': 385149, 'is surrounded by': 452500, 'surrounded by empty': 828722, 'by empty supermarket': 152480, 'shelf in surrey': 757220, 'in surrey england': 428748, 'surrey england ha': 828696, 'england ha been': 277019, 'ha been widely': 369985, 'been widely shared': 122374, 'widely shared online': 991787, 'shared online to': 755439, 'online to demonstrate': 609583, 'to demonstrate the': 904168, 'demonstrate the reality': 236840, 'reality of coronavirus': 701769, 'of coronavirus fuelled': 581937, 'coronavirus fuelled panic': 205972, 'fuelled panic buying': 340360, 'shrink': 767686, 'deteriorating': 239404, 'some economist': 782725, 'economist expect': 267548, 'european economy': 283561, 'economy to': 268289, 'to shrink': 914591, 'shrink by': 767693, '10 percent': 1625, 'percent in': 651132, 'first half': 308698, 'the which': 871444, 'which threatens': 986400, 'threatens an': 893839, 'an explosion': 55975, 'explosion of': 292561, 'of bad': 580506, 'bad loan': 107928, 'loan deteriorating': 497428, 'deteriorating asset': 239407, 'asset and': 96412, 'plummeting stock': 661393, 'some economist expect': 782726, 'economist expect the': 267549, 'expect the european': 290749, 'the european economy': 854581, 'european economy to': 283562, 'economy to shrink': 268297, 'to shrink by': 914593, 'shrink by more': 767695, 'than 10 percent': 840152, '10 percent in': 1626, 'percent in the': 651135, 'the first half': 855313, 'first half of': 308699, 'half of this': 374237, 'to the which': 917189, 'the which threatens': 871450, 'which threatens an': 986401, 'threatens an explosion': 893840, 'an explosion of': 55977, 'explosion of bad': 292562, 'of bad loan': 580508, 'bad loan deteriorating': 107930, 'loan deteriorating asset': 497429, 'deteriorating asset and': 239408, 'asset and plummeting': 96414, 'and plummeting stock': 69130, 'plummeting stock price': 661395, 'stock price via': 802754, 'whats': 982836, 'demand whats': 236476, 'whats the': 982845, 'the turn': 870116, 'turn around': 935642, 'around time': 93588, 'for corporation': 320407, 'corporation like': 207438, 'like etc': 490175, 'have surplus': 382874, 'of aerosol': 579807, 'aerosol spray': 33918, 'spray hand': 790294, 'wipe in': 996295, 'with supply and': 1001077, 'and demand whats': 61178, 'demand whats the': 236477, 'whats the turn': 982848, 'the turn around': 870118, 'turn around time': 935645, 'around time for': 93589, 'time for corporation': 896700, 'for corporation like': 320408, 'corporation like etc': 207440, 'like etc to': 490176, 'etc to have': 282835, 'to have surplus': 907319, 'have surplus of': 382875, 'surplus of aerosol': 828491, 'of aerosol spray': 579808, 'aerosol spray hand': 33919, 'spray hand sanitizer': 790295, 'sanitizer wipe in': 736119, 'wipe in store': 996299, 'in store again': 428381, 'chattanooga': 173985, 'beginning today': 123679, '00 chattanooga': 132, 'chattanooga tennessee': 173986, 'tennessee whiskey': 837962, 'whiskey company': 987765, 'will sell': 994803, 'sell fda': 748719, 'fda approved': 300830, 'approved sanitiser': 83190, 'sanitiser with': 734051, 'of proceeds': 588456, 'proceeds going': 679856, 'local united': 498670, 'help unemployed': 390832, 'unemployed hospitality': 941119, 'hospitality restaurant': 404792, 'worker due': 1006812, 'to shutdown': 914616, 'beginning today at': 123680, 'at 11 00': 97435, '11 00 chattanooga': 2432, '00 chattanooga tennessee': 133, 'chattanooga tennessee whiskey': 173987, 'tennessee whiskey company': 837963, 'whiskey company will': 987766, 'company will sell': 191337, 'will sell fda': 994805, 'sell fda approved': 748720, 'fda approved sanitiser': 300834, 'approved sanitiser with': 83191, 'sanitiser with of': 734053, 'with of proceeds': 999849, 'of proceeds going': 588457, 'proceeds going to': 679857, 'the local united': 859577, 'local united way': 498671, 'united way to': 942267, 'to help unemployed': 907659, 'help unemployed hospitality': 390833, 'unemployed hospitality restaurant': 941121, 'hospitality restaurant worker': 404794, 'restaurant worker due': 716818, 'worker due to': 1006813, 'due to shutdown': 261949, 'despair': 238481, 'assertive': 96360, 'industry facing': 435826, 'facing slump': 295602, 'slump consumer': 774682, 'demand down': 235252, 'down high': 256832, 'high unemployment': 395493, 'no job': 564537, 'job for': 465820, 'for youth': 328243, 'youth amp': 1026844, 'in stress': 428497, 'stress an': 813293, 'an air': 55205, 'air of': 39771, 'of despair': 582550, 'despair all': 238482, 'over govt': 630256, 'more assertive': 538654, 'assertive about': 96361, 'about public': 26026, 'economic measure': 267168, 'measure it': 525245, 'it plan': 460335, 'and quick': 69878, 'industry facing slump': 435827, 'facing slump consumer': 295603, 'slump consumer demand': 774683, 'consumer demand down': 197126, 'demand down high': 235254, 'down high unemployment': 256833, 'high unemployment rate': 395500, 'unemployment rate no': 941275, 'rate no job': 697306, 'no job for': 564539, 'job for youth': 465828, 'for youth amp': 328244, 'youth amp the': 1026845, 'amp the financial': 54648, 'the financial sector': 855225, 'financial sector in': 306571, 'sector in stress': 744236, 'in stress an': 428498, 'stress an air': 813294, 'an air of': 55207, 'air of despair': 39772, 'of despair all': 582551, 'despair all over': 238483, 'all over govt': 43863, 'over govt must': 630257, 'govt must be': 361205, 'must be more': 546526, 'be more assertive': 115963, 'more assertive about': 538655, 'assertive about public': 96362, 'about public health': 26027, 'public health and': 688059, 'health and economic': 386135, 'and economic measure': 61902, 'economic measure it': 267170, 'measure it plan': 525246, 'it plan and': 460336, 'plan and quick': 658063, 're asking': 698308, 'asking politely': 96042, 'politely online': 663619, 're having': 698786, 'having picnic': 384220, 'picnic which': 656082, 'is neither': 449875, 'neither exercise': 557319, 'we re asking': 972827, 're asking politely': 698312, 'asking politely online': 96043, 'politely online if': 663621, 'you re having': 1020638, 're having picnic': 698788, 'having picnic which': 384222, 'picnic which is': 656083, 'which is neither': 986029, 'is neither exercise': 449876, 'neither exercise necessary': 557320, 'necessary shopping to': 554075, 'shopping to the': 764196, 'to the latter': 916837, 'jail': 464257, 'talk abt': 833768, 'abt homeless': 27530, 'homeless ppl': 402782, 'ppl the': 668342, 'the folk': 855482, 'in jail': 424334, 'jail ppl': 464274, 'ppl who': 668370, 'need medication': 555228, 'medication and': 526623, 'treatment ppl': 931126, 'who lost': 989236, 'lost family': 503841, 'member ppl': 528174, 'live paycheck': 495983, 'paycheck to': 645311, 'to paycheck': 911578, 'paycheck and': 645270, 'ppl lost': 668277, 'will eat': 993281, 'eat go': 265926, 'go donate': 353476, 'donate do': 254170, 'not complain': 568814, 'to talk abt': 916279, 'talk abt homeless': 833769, 'abt homeless ppl': 27531, 'homeless ppl the': 402783, 'ppl the folk': 668344, 'the folk in': 855486, 'folk in jail': 312194, 'in jail ppl': 424337, 'jail ppl who': 464275, 'ppl who need': 668375, 'who need medication': 989319, 'need medication and': 555229, 'medication and treatment': 526628, 'and treatment ppl': 74441, 'treatment ppl who': 931127, 'ppl who lost': 668374, 'who lost family': 989237, 'lost family member': 503842, 'family member ppl': 298043, 'member ppl who': 528176, 'ppl who live': 668373, 'who live paycheck': 989219, 'live paycheck to': 495984, 'paycheck to paycheck': 645312, 'to paycheck and': 911579, 'paycheck and cannot': 645271, 'and cannot stock': 59522, 'cannot stock up': 162132, 'up food so': 944895, 'food so many': 316660, 'many ppl lost': 514577, 'ppl lost their': 668278, 'their job and': 873697, 'job and do': 465623, 'know how they': 476462, 'how they will': 408935, 'they will eat': 883847, 'will eat go': 993283, 'eat go donate': 265927, 'go donate do': 353477, 'donate do not': 254171, 'do not complain': 249701, 'all night': 43639, 'night big': 562970, 'big love': 129857, 'our nh': 624063, 'hard tonight': 378097, 'tonight big': 924381, 'you 19': 1016747, 'all night big': 43640, 'night big love': 562971, 'big love to': 129858, 'love to all': 504841, 'all our nh': 43820, 'our nh and': 624064, 'working hard tonight': 1008689, 'hard tonight big': 378098, 'tonight big love': 924382, 'of you 19': 593368, 'republican nervous': 713051, 'nervous trump': 557483, 'trump handling': 933600, 'handling of': 376361, 'could hurt': 209309, 'hurt his': 411583, 'his re': 397737, 'election chance': 271028, 'republican nervous trump': 713052, 'nervous trump handling': 557484, 'trump handling of': 933601, 'handling of pandemic': 376369, 'of pandemic could': 587693, 'pandemic could hurt': 635247, 'could hurt his': 209310, 'hurt his re': 411584, 'his re election': 397738, 're election chance': 698595, 'kuwaiti': 478003, 'thankingkuwaitcorona': 842000, 'simply collect': 770206, 'your smart': 1025837, 'smart device': 775363, 'device and': 239893, 'and start': 72235, 'start ordering': 794424, 'ordering kuwait': 618980, 'kuwait ha': 477990, 'ha ton': 372342, 'great online': 362859, 'shopping site': 763888, 'daily need': 224710, 'need right': 555526, 'right at': 721779, 'fingertip trust': 307833, 'follow kuwaiti': 312441, 'kuwaiti law': 478004, 'law safety': 482388, 'measure due': 525183, 'to thankingkuwaitcorona': 916443, 'simply collect your': 770207, 'collect your smart': 186346, 'your smart device': 1025838, 'smart device and': 775364, 'device and start': 239895, 'and start ordering': 72244, 'start ordering kuwait': 794425, 'ordering kuwait ha': 618981, 'kuwait ha ton': 477991, 'ha ton of': 372343, 'ton of great': 924274, 'of great online': 584317, 'great online shopping': 362862, 'online shopping site': 609270, 'shopping site for': 763889, 'site for your': 771926, 'for your daily': 328136, 'your daily need': 1023444, 'daily need right': 224716, 'need right at': 555527, 'right at your': 721781, 'at your fingertip': 101678, 'your fingertip trust': 1023886, 'fingertip trust and': 307834, 'trust and follow': 934235, 'and follow kuwaiti': 63014, 'follow kuwaiti law': 312442, 'kuwaiti law safety': 478005, 'law safety measure': 482389, 'safety measure due': 730622, 'measure due to': 525184, 'due to thankingkuwaitcorona': 261989, 'howlin': 409538, 'thaler': 840114, 'how howlin': 408016, 'howlin ray': 409539, 'ray fried': 698022, 'fried chicken': 333447, 'chicken is': 175803, 'is thinking': 453065, 'thinking of': 885949, 'of changing': 581274, 'changing it': 172733, 'business model': 144051, 'model why': 535326, 'curtail demand': 221771, 'affect long': 34176, 'term reputation': 838266, 'reputation thaler': 713125, 'how howlin ray': 408017, 'howlin ray fried': 409540, 'ray fried chicken': 698023, 'fried chicken is': 333448, 'chicken is thinking': 175804, 'is thinking of': 453067, 'thinking of changing': 885955, 'of changing it': 581276, 'changing it business': 172735, 'it business model': 456939, 'business model why': 144063, 'model why not': 535327, 'why not increase': 991220, 'not increase price': 570122, 'increase price in': 433005, 'price in this': 674744, 'in this period': 429994, 'this period to': 889532, 'period to curtail': 651910, 'to curtail demand': 903832, 'curtail demand will': 221772, 'demand will it': 236502, 'will it affect': 993859, 'it affect long': 456284, 'affect long term': 34177, 'long term reputation': 501710, 'term reputation thaler': 838267, 'shopping done': 762507, 'online shopping done': 609099, 'shopping done and': 762508, 'done and paid': 254777, 'sticky': 800121, 'deadlock': 229238, 'emergence': 272568, 'uganda govt': 937970, 'done well': 255106, 'well to': 978696, 'resolve nearly': 714634, 'nearly all': 553796, 'the sticky': 867885, 'sticky issue': 800124, 'issue that': 455957, 'had kept': 373225, 'kept the': 473075, 'in deadlock': 422035, 'deadlock however': 229241, 'the emergence': 854217, 'emergence of': 272570, '19 collapse': 5871, 'the cut': 852741, 'cut back': 223245, 'of capital': 581117, 'capital spend': 162679, 'spend by': 788588, 'by oil': 153408, 'will certainly': 992899, 'certainly delay': 170148, 'delay uganda': 232755, 'uganda first': 937966, 'first oil': 308821, 'uganda govt ha': 937971, 'govt ha done': 361139, 'ha done well': 370424, 'done well to': 255107, 'well to resolve': 978703, 'to resolve nearly': 913364, 'resolve nearly all': 714635, 'nearly all the': 553805, 'all the sticky': 44923, 'the sticky issue': 867886, 'sticky issue that': 800125, 'issue that had': 455961, 'that had kept': 844151, 'had kept the': 373226, 'kept the oil': 473077, 'oil industry in': 596888, 'industry in deadlock': 435902, 'in deadlock however': 422036, 'deadlock however the': 229242, 'however the emergence': 409475, 'the emergence of': 854218, 'emergence of covid': 272573, 'covid 19 collapse': 212821, '19 collapse in': 5872, 'collapse in global': 186016, 'in global oil': 423335, 'and the cut': 73311, 'the cut back': 852743, 'cut back of': 223246, 'back of capital': 107166, 'of capital spend': 581118, 'capital spend by': 162680, 'spend by oil': 788589, 'by oil company': 153410, 'oil company will': 596698, 'company will certainly': 191329, 'will certainly delay': 992900, 'certainly delay uganda': 170149, 'delay uganda first': 232756, 'uganda first oil': 937967, 'grocerygames': 366219, 'that remains': 845993, 'remains fully': 710015, 'stocked grocerygames': 803331, 'grocerygames grocerystores': 366220, 'grocerystores grocerystore': 366367, 'the only grocery': 862311, 'only grocery store': 610549, 'store that remains': 810568, 'that remains fully': 845994, 'remains fully stocked': 710017, 'fully stocked grocerygames': 341091, 'stocked grocerygames grocerystores': 803332, 'grocerygames grocerystores grocerystore': 366221, 'homebound': 402604, 'diagnosis': 240249, 'or find': 615313, 'here better': 392817, 'than purell': 841059, 'purell and': 690005, 'and 14': 57374, '14 other': 3511, 'other coronavirus': 620007, 'coronavirus hack': 206042, 'hack 15': 372734, '15 coronavirus': 3686, 'hack pandemic': 372746, 'pandemic survival': 636607, 'survival guide': 829036, 'guide safe': 368351, 'safe mask': 729814, 'mask homebound': 518802, 'homebound income': 402617, 'income home': 432364, 'home diagnosis': 401075, 'diagnosis toilet': 240258, 'paper etc': 640134, 'hand sanitizer or': 375516, 'sanitizer or find': 735481, 'or find it': 615314, 'find it here': 306993, 'it here better': 458565, 'here better than': 392818, 'better than purell': 128531, 'than purell and': 841060, 'purell and 14': 690006, 'and 14 other': 57375, '14 other coronavirus': 3512, 'other coronavirus hack': 620008, 'coronavirus hack 15': 206043, 'hack 15 coronavirus': 372735, '15 coronavirus hack': 3687, 'coronavirus hack pandemic': 206044, 'hack pandemic survival': 372747, 'pandemic survival guide': 636608, 'survival guide safe': 829038, 'guide safe mask': 368352, 'safe mask homebound': 729816, 'mask homebound income': 518803, 'homebound income home': 402618, 'income home diagnosis': 432365, 'home diagnosis toilet': 401076, 'diagnosis toilet paper': 240259, 'toilet paper etc': 921268, 'find fresh': 306923, 'fresh chicken': 332936, 'chicken or': 175823, 'egg in': 269891, 'can find fresh': 158320, 'find fresh chicken': 306924, 'fresh chicken or': 332938, 'chicken or egg': 175824, 'or egg in': 615119, 'egg in your': 269896, 'in your supermarket': 431130, 'your supermarket here': 1026046, 'supermarket here why': 820746, 'yikes': 1016389, 'addiction wa': 31655, 'already pretty': 47584, 'pretty bad': 671362, 'is thing': 453059, 'thing it': 884494, 'it turned': 461882, 'into major': 442733, 'major yikes': 509527, 'yikes for': 1016392, 'my credit': 547855, 'shopping addiction wa': 761899, 'addiction wa already': 31656, 'wa already pretty': 961492, 'already pretty bad': 47585, 'pretty bad but': 671363, 'bad but now': 107800, 'but now that': 146614, 'now that the': 576020, 'that the is': 846755, 'the is thing': 858540, 'is thing it': 453062, 'thing it turned': 884499, 'it turned into': 461883, 'turned into major': 935846, 'into major yikes': 442734, 'major yikes for': 509528, 'yikes for my': 1016393, 'for my credit': 323692, 'my credit card': 547856, 'notpanickingyet': 573623, 'ah so': 39096, 'busy when': 145010, 'when walked': 984413, 'walked down': 964944, 'normal shopping': 567316, 'shopping couple': 762408, 'of hour': 584780, 'hour ago': 405369, 'ago had': 38400, 'had not': 373346, 'not heard': 569916, 'the rumour': 866068, 'rumour notpanickingyet': 727521, 'ah so that': 39097, 'so that why': 778408, 'that why the': 847547, 'why the supermarket': 991435, 'the supermarket wa': 868888, 'supermarket wa so': 823706, 'wa so busy': 963252, 'so busy when': 776664, 'busy when walked': 145011, 'when walked down': 984414, 'walked down to': 964945, 'down to do': 257364, 'to do my': 904531, 'do my normal': 249629, 'my normal shopping': 549511, 'normal shopping couple': 567318, 'shopping couple of': 762409, 'couple of hour': 211639, 'of hour ago': 584781, 'hour ago had': 405370, 'ago had not': 38401, 'had not heard': 373350, 'not heard the': 569919, 'heard the rumour': 388153, 'the rumour notpanickingyet': 866071, 'seen bunch': 746975, 'of dude': 582868, 'dude line': 261597, 'up outside': 945713, 'outside trap': 629626, 'trap house': 930091, 'house like': 406396, 'they wa': 883693, 'just seen bunch': 469739, 'seen bunch of': 746976, 'bunch of dude': 142624, 'of dude line': 582869, 'dude line up': 261598, 'line up outside': 493530, 'up outside trap': 945721, 'outside trap house': 629627, 'trap house like': 930092, 'house like they': 406398, 'like they wa': 491458, 'they wa at': 883694, 'wa at supermarket': 961607, 'using technology': 950679, 'technology to': 836388, 'just couple': 468533, 'of way': 592950, 'can practice': 159275, 'during learn': 262749, 'using technology to': 950680, 'technology to keep': 836391, 'keep in touch': 471596, 'touch with friend': 926577, 'and family and': 62651, 'family and shopping': 297602, 'shopping online to': 763499, 'online to avoid': 609577, 'to avoid going': 900905, 'avoid going to': 105132, 'the store are': 867981, 'store are just': 806490, 'are just couple': 87621, 'just couple of': 468534, 'couple of way': 211650, 'of way you': 592956, 'you can practice': 1017751, 'can practice social': 159279, 'distancing during learn': 247116, 'during learn more': 262750, 'omdia': 598873, 'predicting': 669636, 'virtually': 957829, 'industry analyst': 435621, 'analyst omdia': 57161, 'omdia is': 598876, 'is predicting': 450986, 'predicting that': 669641, 'while significant': 987272, 'significant disruption': 769435, 'disruption is': 246495, 'is virtually': 453710, 'virtually certain': 957834, 'certain the': 170113, 'the anticipated': 848784, 'anticipated impact': 78458, 'industry analyst omdia': 435624, 'analyst omdia is': 57162, 'omdia is predicting': 598877, 'is predicting that': 450987, 'predicting that while': 669643, 'that while significant': 847517, 'while significant disruption': 987273, 'significant disruption is': 769436, 'disruption is virtually': 246498, 'is virtually certain': 453711, 'virtually certain the': 957835, 'certain the anticipated': 170114, 'the anticipated impact': 848786, 'anticipated impact of': 78459, 'join guy': 466728, 'puzzle join guy': 691326, 'enoughdoing': 277785, 'go let': 353798, 'same direction': 733039, 'have supported': 382865, 'supported and': 827037, 'always support': 49758, 'need panicbuying': 555409, 'panicbuying enoughdoing': 638934, 'enoughdoing stopstockpiling': 277786, 'let all go': 486559, 'all go let': 42942, 'go let all': 353799, 'all go in': 42941, 'go in the': 353719, 'the same direction': 866216, 'same direction and': 733040, 'direction and support': 243444, 'and support all': 72832, 'support all those': 826338, 'who have supported': 988960, 'have supported and': 382866, 'supported and will': 827038, 'and will always': 75656, 'will always support': 992277, 'always support in': 49759, 'support in time': 826586, 'of need panicbuying': 586914, 'need panicbuying enoughdoing': 555410, 'panicbuying enoughdoing stopstockpiling': 638935, 'enoughdoing stopstockpiling stoppanicbuying': 277787, 'givi': 351219, 'rather each': 697448, 'each town': 264305, 'town showed': 927549, 'showed it': 767335, 'it support': 461379, 'support by': 826397, 'by letting': 153046, 'letting one': 487428, 'supermarket be': 819318, 'available exclusively': 104349, 'and vital': 75002, 'vital staff': 959723, 'before or': 122983, 'after their': 36370, 'shift surely': 758411, 'surely they': 827949, 'they deserve': 881891, 'deserve that': 238125, 'much without': 545465, 'without risk': 1002892, 'getting or': 349164, 'or givi': 615462, 'would rather each': 1012153, 'rather each town': 697449, 'each town showed': 264307, 'town showed it': 927550, 'showed it support': 767336, 'it support by': 461380, 'support by letting': 826400, 'by letting one': 153047, 'letting one shop': 487429, 'one shop supermarket': 607019, 'shop supermarket be': 760861, 'supermarket be available': 819319, 'be available exclusively': 113755, 'available exclusively for': 104350, 'exclusively for nh': 289718, 'nh and vital': 561884, 'and vital staff': 75004, 'vital staff to': 959724, 'staff to get': 792989, 'they need before': 882721, 'need before or': 554530, 'before or after': 122984, 'or after their': 614274, 'after their shift': 36375, 'their shift surely': 874692, 'shift surely they': 758412, 'surely they deserve': 827951, 'they deserve that': 881905, 'deserve that much': 238126, 'that much without': 845253, 'much without risk': 545466, 'without risk of': 1002893, 'of getting or': 584125, 'getting or givi': 349165, 'rosie': 726121, 'riveter': 724207, 'intensive': 441128, 'faced': 295012, 'can hire': 158680, 'help deal': 389571, 'shopping smart': 763917, 'smart alternative': 775328, 'alternative cannot': 49213, 'cannot we': 162220, 'have rosie': 382357, 'rosie the': 726126, 'the riveter': 865905, 'riveter moment': 724208, 'build ventilator': 142014, 'and temporary': 73110, 'temporary intensive': 837648, 'intensive care': 441131, 'care unit': 164243, 'unit our': 942079, 'country faced': 210638, 'faced greater': 295021, 'greater challenge': 363145, '19 if we': 7668, 'if we can': 415268, 'we can hire': 970963, 'can hire 100': 158681, 'people to help': 649908, 'to help deal': 907488, 'help deal with': 389572, 'deal with the': 229581, 'with the rise': 1001458, 'the rise of': 865858, 'rise of online': 722949, 'online shopping smart': 609273, 'shopping smart alternative': 763918, 'smart alternative cannot': 775329, 'alternative cannot we': 49214, 'cannot we have': 162221, 'we have rosie': 971928, 'have rosie the': 382358, 'rosie the riveter': 726127, 'the riveter moment': 865906, 'riveter moment to': 724209, 'moment to build': 536080, 'to build ventilator': 902093, 'build ventilator and': 142015, 'ventilator and temporary': 954531, 'and temporary intensive': 73113, 'temporary intensive care': 837649, 'intensive care unit': 441136, 'care unit our': 164247, 'unit our country': 942080, 'our country faced': 622589, 'country faced greater': 210639, 'faced greater challenge': 295022, 'besmart': 127540, 'smart and': 775333, 'that that': 846649, 'that emotion': 843696, 'emotion is': 273262, 'always apart': 49468, 'apart of': 81310, 'or marketing': 616066, 'marketing push': 517687, 'push be': 690250, 'smart consumer': 775358, 'consumer smart': 199006, 'smart marketing': 775393, 'marketing besmart': 517532, 'besmart news': 127541, 'news quarentinelife': 560725, 'quarentinelife stayconnected': 693206, 'be smart and': 117231, 'smart and know': 775336, 'know that that': 476791, 'that that emotion': 846650, 'that emotion is': 843697, 'emotion is always': 273263, 'is always apart': 445591, 'always apart of': 49469, 'apart of any': 81311, 'of any news': 580266, 'any news or': 79514, 'news or marketing': 560674, 'or marketing push': 616067, 'marketing push be': 517688, 'push be smart': 690251, 'be smart consumer': 117233, 'smart consumer smart': 775359, 'consumer smart marketing': 199007, 'smart marketing besmart': 775394, 'marketing besmart news': 517533, 'besmart news quarentinelife': 127543, 'news quarentinelife stayconnected': 560726, 'strongest': 814201, 'cast': 166754, 'disablity': 243992, 're plastic': 699269, 'bag with': 108458, 'shopping there': 764103, 'no going': 564360, 'back now': 107160, 'now disabled': 574529, 'disabled people': 243935, 'please come': 659795, 'forward both': 329972, 'both physical': 136006, 'mental disability': 528632, 'disability we': 243858, 'our strongest': 624978, 'strongest position': 814204, 'position the': 665190, 'supermarket cannot': 819519, 'cannot cast': 161706, 'cast aside': 166755, 'aside any': 95399, 'any longer': 79429, 'longer disablity': 501966, 're plastic bag': 699270, 'plastic bag with': 658812, 'bag with online': 108459, 'online shopping there': 609304, 'shopping there no': 764108, 'there no going': 878812, 'no going back': 564361, 'going back now': 355046, 'back now disabled': 107161, 'now disabled people': 574530, 'disabled people please': 243941, 'people please come': 649129, 'please come forward': 659798, 'come forward both': 187297, 'forward both physical': 329974, 'both physical and': 136007, 'and mental disability': 66948, 'mental disability we': 528633, 'disability we are': 243859, 'are in our': 87418, 'in our strongest': 426343, 'our strongest position': 624979, 'strongest position the': 814205, 'position the main': 665191, 'main supermarket cannot': 508833, 'supermarket cannot cast': 819520, 'cannot cast aside': 161707, 'cast aside any': 166756, 'aside any longer': 95400, 'any longer disablity': 79430, 'weakness': 974124, 'smartly': 775493, 'productivity': 682309, 'normalcy': 567430, 'today heartbreaking': 919633, 'heartbreaking covid': 388375, '19 business': 5475, 'business weakness': 144642, 'weakness can': 974125, 'be tomorrow': 117759, 'tomorrow opportunity': 924153, 'opportunity but': 613593, 'be acted': 113474, 'acted upon': 29848, 'upon quickly': 947651, 'quickly and': 694460, 'and smartly': 71792, 'smartly by': 775494, 'by both': 151986, 'both consumer': 135883, 'and b2b': 58601, 'b2b company': 106455, 'ensure productivity': 278014, 'productivity in': 682316, 'the return': 865749, 'to normalcy': 910671, 'today heartbreaking covid': 919634, 'heartbreaking covid 19': 388376, 'covid 19 business': 212743, '19 business weakness': 5486, 'business weakness can': 144643, 'weakness can be': 974126, 'can be tomorrow': 157701, 'be tomorrow opportunity': 117760, 'tomorrow opportunity but': 924154, 'opportunity but they': 613595, 'but they need': 147510, 'to be acted': 901090, 'be acted upon': 113475, 'acted upon quickly': 29849, 'upon quickly and': 947652, 'quickly and smartly': 694464, 'and smartly by': 71793, 'smartly by both': 775495, 'by both consumer': 151988, 'both consumer good': 135886, 'consumer good and': 197597, 'good and b2b': 356724, 'and b2b company': 58602, 'b2b company in': 106456, 'company in order': 190767, 'order to ensure': 618680, 'to ensure productivity': 905182, 'ensure productivity in': 278015, 'productivity in the': 682317, 'in the return': 429515, 'the return to': 865751, 'return to normalcy': 719924, 'unpleasant': 943048, 'ungrateful': 941684, 'now want': 576321, 'of said': 589227, 'said grocery': 731092, 'store their': 810630, 'employee deserve': 273771, 'or slap': 617100, 'slap any': 773531, 'any customer': 79091, 'who act': 988022, 'like rude': 491107, 'rude unpleasant': 727061, 'unpleasant ungrateful': 943055, 'ungrateful piece': 941687, 'shit 19': 759043, 'right now want': 722174, 'now want to': 576323, 'to thank you': 916441, 'everything you are': 288129, 'you are doing': 1017110, 'doing to the': 252803, 'to the ceo': 916549, 'ceo of said': 169785, 'of said grocery': 589229, 'said grocery store': 731093, 'grocery store their': 365850, 'store their employee': 810631, 'their employee deserve': 873140, 'employee deserve the': 273772, 'deserve the right': 238132, 'right to respond': 722353, 'to respond and': 913378, 'respond and or': 715288, 'and or slap': 68232, 'or slap any': 617101, 'slap any customer': 773532, 'any customer who': 79093, 'customer who act': 223072, 'who act like': 988023, 'act like rude': 29687, 'like rude unpleasant': 491109, 'rude unpleasant ungrateful': 727062, 'unpleasant ungrateful piece': 943056, 'ungrateful piece of': 941688, 'piece of shit': 656346, 'of shit 19': 589598, 'selling international': 749308, 'international medical': 441830, 'medical aid': 526037, 'aid to': 39467, 'to iranian': 908505, 'iranian people': 444732, 'government of iran': 360397, 'of iran is': 585296, 'iran is selling': 444691, 'is selling international': 451759, 'selling international medical': 749309, 'international medical aid': 441831, 'medical aid to': 526039, 'aid to iranian': 39470, 'to iranian people': 908506, 'iranian people in': 444734, 'people in high': 648380, 'in high price': 423685, '20 cheap': 12998, 'cheap expert': 174102, 'expert led': 291873, 'led online': 485251, 'online course': 608063, 'course you': 211965, 'take while': 832797, 'distancing bored': 247047, 'bored out': 135365, 'mind you': 532784, 'one with': 607481, 'with mounting': 999579, 'mounting precaution': 543453, 'precaution regarding': 669348, 'people across': 646753, 'been st': 122022, '20 cheap expert': 12999, 'cheap expert led': 174103, 'expert led online': 291874, 'led online course': 485252, 'online course you': 608067, 'course you can': 211967, 'can take while': 159910, 'take while social': 832799, 'social distancing bored': 779571, 'distancing bored out': 247048, 'bored out of': 135366, 'of your mind': 593499, 'your mind you': 1024840, 'mind you re': 532787, 'only one with': 610892, 'one with mounting': 607488, 'with mounting precaution': 999580, 'mounting precaution regarding': 543454, 'precaution regarding covid': 669349, '19 people across': 9617, 'people across the': 646757, 'have been st': 379691, 'ya ll': 1014011, 'll braving': 496661, 'grab more': 361505, 'me luck': 523123, 'ya ll braving': 1014013, 'll braving the': 496662, 'today to grab': 920357, 'to grab more': 906965, 'grab more essential': 361506, 'wish me luck': 996791, 'sucharita': 816882, 'kodali': 477311, 'sucharita kodali': 816883, 'kodali ecommerce': 477312, 'ecommerce expert': 266766, 'expert on': 291895, 'economy consumer': 267772, 'and hoarder': 64641, 'sucharita kodali ecommerce': 816884, 'kodali ecommerce expert': 477313, 'ecommerce expert on': 266767, 'expert on covid': 291896, 'covid 19 economy': 213004, '19 economy consumer': 6710, 'economy consumer spending': 267775, 'consumer spending and': 199044, 'spending and hoarder': 788734, 'assure': 97077, 'zealander': 1027323, 'shop normally': 760492, 'normally that': 567552, 'owner today': 632587, 'today they': 920317, 'they rush': 883233, 'to assure': 900793, 'assure new': 97090, 'new zealander': 560002, 'zealander there': 1027326, 'calm down and': 156719, 'down and shop': 256512, 'and shop normally': 71504, 'shop normally that': 760497, 'normally that the': 567553, 'that the message': 846774, 'message from supermarket': 529323, 'from supermarket owner': 337496, 'supermarket owner today': 821880, 'owner today they': 632588, 'today they rush': 920325, 'they rush to': 883234, 'rush to assure': 728337, 'to assure new': 900795, 'assure new zealander': 97091, 'new zealander there': 560004, 'zealander there is': 1027327, 'there is more': 878588, 'than enough food': 840552, 'enough food in': 277399, 'allegation': 45637, 'norwegian': 567844, 'in attorney': 420570, 'today announced': 919234, 'announced consumer': 76936, 'protection investigation': 685492, 'investigation into': 443876, 'into allegation': 442381, 'allegation of': 45642, 'of misleading': 586577, 'misleading and': 534089, 'and potentially': 69266, 'potentially dangerous': 667202, 'dangerous sale': 225769, 'pitch by': 657002, 'by norwegian': 153354, 'norwegian cruise': 567847, 'just in attorney': 469028, 'in attorney general': 420571, 'moody today announced': 538319, 'today announced consumer': 919237, 'announced consumer protection': 76938, 'consumer protection investigation': 198539, 'protection investigation into': 685493, 'investigation into allegation': 443877, 'into allegation of': 442382, 'allegation of misleading': 45644, 'of misleading and': 586578, 'misleading and potentially': 534090, 'and potentially dangerous': 69269, 'potentially dangerous sale': 667203, 'dangerous sale pitch': 225770, 'sale pitch by': 732449, 'pitch by norwegian': 657003, 'by norwegian cruise': 153355, 'norwegian cruise line': 567848, 'wembley': 978891, 'done with': 255118, 'with suggest': 1001043, 'suggest we': 817553, 'staff all': 792095, 'this take': 890470, 'to wembley': 918493, 'wembley so': 978896, 'when the ha': 984159, 'the ha done': 856992, 'ha done with': 370425, 'done with suggest': 255123, 'with suggest we': 1001044, 'suggest we get': 817554, 'we get all': 971601, 'get all the': 346524, 'the nh staff': 861762, 'nh staff all': 562074, 'staff all the': 792101, 'supermarket worker all': 823982, 'worker all the': 1006225, 'all the delivery': 44715, 'delivery driver and': 233889, 'driver and all': 259407, 'who will get': 989987, 'through this take': 894846, 'this take them': 890473, 'them to wembley': 876530, 'to wembley so': 918494, 'wembley so we': 978897, 'closest': 183531, 'icu': 412830, 'hokianga': 399863, 'important and': 418731, 'and concerning': 60250, 'concerning story': 193245, 'moment do': 535919, 'the closest': 851040, 'closest icu': 183534, 'icu is': 412839, 'in kaikohe': 424430, 'kaikohe and': 470661, 'the hokianga': 857427, 'hokianga kaikohe': 399864, 'this for me': 887593, 'me is the': 523001, 'is the most': 452867, 'most important and': 542395, 'important and concerning': 418732, 'and concerning story': 60251, 'concerning story of': 193246, 'story of the': 812075, 'of the moment': 591248, 'the moment do': 860749, 'moment do you': 535921, 'you know where': 1019543, 'know where the': 477017, 'where the closest': 985220, 'the closest icu': 851041, 'closest icu is': 183535, 'icu is for': 412840, 'is for people': 447888, 'people in kaikohe': 648390, 'in kaikohe and': 424431, 'kaikohe and the': 470662, 'and the hokianga': 73408, 'the hokianga kaikohe': 857428, 'hokianga kaikohe local': 399865, 'fi': 304356, 'sir for': 771565, 'outbreak several': 628615, 'several place': 753921, 'place are': 657333, 'locked down': 500469, 'down so': 257192, 'some necessary': 783339, 'necessary item': 554011, 'item store': 463666, 'store opened': 809271, 'opened but': 612715, 'not allow': 568135, 'it police': 460371, 'police will': 663267, 'allow so': 46060, 'out once': 626928, 'once existing': 605631, 'existing food': 290319, 'stock got': 802203, 'got fi': 358554, 'respected sir for': 715111, 'sir for this': 771567, '19 outbreak several': 9183, 'outbreak several place': 628616, 'several place are': 753922, 'place are locked': 657336, 'are locked down': 87865, 'locked down so': 500478, 'down so grocery': 257193, 'store and some': 806351, 'and some necessary': 71970, 'some necessary item': 783340, 'necessary item store': 554015, 'item store opened': 463667, 'store opened but': 809272, 'opened but we': 612716, 'are not allow': 88316, 'not allow to': 568144, 'buy it police': 148860, 'it police will': 460373, 'police will not': 663268, 'will not allow': 994185, 'not allow so': 568142, 'allow so how': 46061, 'so how can': 777335, 'can we go': 160174, 'we go out': 971648, 'go out once': 353971, 'out once existing': 626929, 'once existing food': 605632, 'existing food stock': 290320, 'food stock got': 316790, 'stock got fi': 802204, 'nejm': 557358, 'caveat': 168258, 'emptor': 274729, 'degrades': 232556, 'excellent work': 289120, 'in nejm': 425800, 'nejm that': 557359, 'live on': 495949, 'surface for': 828020, 'to 24': 899623, '24 hour': 15607, 'hour caveat': 405484, 'caveat emptor': 168259, 'emptor this': 274731, 'wa done': 962015, 'very controlled': 955081, 'controlled lab': 202245, 'lab environment': 478258, 'environment in': 279114, 'wild of': 992068, 'my dirty': 547991, 'dirty er': 243742, 'er or': 280016, 'or your': 617873, 'supermarket it': 821160, 'it degrades': 457499, 'degrades more': 232557, 'more rapidly': 540181, 'rapidly how': 696984, 'excellent work in': 289121, 'work in nejm': 1005328, 'in nejm that': 425801, 'nejm that can': 557360, 'that can live': 843110, 'can live on': 158897, 'live on surface': 495966, 'on surface for': 603847, 'surface for up': 828027, 'up to 24': 946328, 'to 24 hour': 899625, '24 hour caveat': 15614, 'hour caveat emptor': 405485, 'caveat emptor this': 168261, 'emptor this wa': 274732, 'this wa done': 891060, 'wa done in': 962019, 'done in very': 254898, 'in very controlled': 430566, 'very controlled lab': 955082, 'controlled lab environment': 202246, 'lab environment in': 478259, 'environment in the': 279115, 'the wild of': 871557, 'wild of my': 992069, 'of my dirty': 586756, 'my dirty er': 547992, 'dirty er or': 243743, 'er or your': 280017, 'or your supermarket': 617890, 'your supermarket it': 1026049, 'supermarket it degrades': 821166, 'it degrades more': 457500, 'degrades more rapidly': 232558, 'more rapidly how': 540182, 'rapidly how much': 696985, 'how much more': 408361, 'much more we': 545132, 'more we do': 540952, 'gobrowns': 354619, 'wholefoods': 990390, 'ramennoodles': 696392, 'amazing teamwork': 50794, 'teamwork final': 835897, 'final kill': 305842, 'kill for': 474394, 'for victory': 327555, 'victory shield': 956573, 'shield cod': 758143, 'modernwarfare teamwork': 535427, 'teamwork sandwich': 835907, 'sandwich toiletpaper': 733750, 'toiletpaper gobrowns': 922029, 'gobrowns playoff': 354620, 'playoff nfl': 659491, 'nfl cdc': 561774, 'cdc publix': 168604, 'publix wholefoods': 688792, 'wholefoods ramennoodles': 990401, 'ramennoodles law': 696393, 'law lockdown': 482332, 'quarantine beauty': 692044, 'beauty peace': 118769, 'peace tag': 646018, 'tag home': 831757, 'home art': 400734, 'poetry via': 662386, 'amazing teamwork final': 50795, 'teamwork final kill': 835898, 'final kill for': 305843, 'kill for victory': 474395, 'for victory shield': 327556, 'victory shield cod': 956574, 'shield cod modernwarfare': 758144, 'cod modernwarfare teamwork': 185316, 'modernwarfare teamwork sandwich': 535428, 'teamwork sandwich toiletpaper': 835908, 'sandwich toiletpaper gobrowns': 733751, 'toiletpaper gobrowns playoff': 922030, 'gobrowns playoff nfl': 354621, 'playoff nfl cdc': 659492, 'nfl cdc publix': 561775, 'cdc publix wholefoods': 168605, 'publix wholefoods ramennoodles': 688793, 'wholefoods ramennoodles law': 990402, 'ramennoodles law lockdown': 696394, 'law lockdown quarantine': 482333, 'lockdown quarantine beauty': 499821, 'quarantine beauty peace': 692045, 'beauty peace tag': 118771, 'peace tag home': 646019, 'tag home art': 831758, 'home art poetry': 400735, 'art poetry via': 94189, 'bopis': 135188, 'outbreak 42': 627944, '42 of': 18907, 'more 10': 538473, '10 have': 1458, 'have tried': 383399, 'tried bopis': 931761, 'bopis service': 135200, 'and 13': 57368, '13 are': 3184, 'using bopis': 950410, 'bopis more': 135189, 'frequently from': 332853, 'from retail': 337100, 'retail ecommerce': 718057, 'coronavirus outbreak 42': 206369, 'outbreak 42 of': 627945, '42 of consumer': 18908, 'of consumer are': 581708, 'online more 10': 608553, 'more 10 have': 538474, '10 have tried': 1459, 'have tried bopis': 383400, 'tried bopis service': 931762, 'bopis service for': 135201, 'service for the': 752393, 'first time and': 309092, 'time and 13': 896255, 'and 13 are': 57370, '13 are using': 3185, 'are using bopis': 91412, 'using bopis more': 950411, 'bopis more frequently': 135190, 'more frequently from': 539292, 'frequently from retail': 332854, 'from retail ecommerce': 337101, 'and eliminating': 62011, 'eliminating late': 271488, 'rate and eliminating': 697151, 'and eliminating late': 62012, 'eliminating late fee': 271489, 'people losing': 648711, 'losing their': 503594, 'job during': 465806, 'giant are': 349747, 'throwing lifeline': 895097, 'the newly': 861594, 'newly unemployed': 560120, 'with thousand of': 1001756, 'of people losing': 587943, 'people losing their': 648714, 'losing their job': 503597, 'their job during': 873712, 'job during the': 465807, 'the crisis our': 852424, 'crisis our supermarket': 217843, 'our supermarket giant': 625018, 'supermarket giant are': 820499, 'giant are throwing': 349750, 'are throwing lifeline': 91087, 'throwing lifeline to': 895098, 'lifeline to the': 489317, 'to the newly': 916899, 'the newly unemployed': 861598, 'halted': 374476, 'ecozones': 268403, 'economycrisis': 268384, 'suspended philippine': 829627, 'philippine lockdown': 654735, 'ha halted': 370801, 'halted 700': 374477, '700 factory': 21882, 'factory operation': 295974, 'operation in': 613204, 'in ecozones': 422492, 'ecozones factory': 268404, 'factory of': 295970, 'car part': 163241, 'part electronics': 642269, 'electronics other': 271305, 'other industrial': 620422, 'industrial consumer': 435535, 'in luzon': 424960, 'luzon have': 507000, 'have stopped': 382784, 'stopped operation': 805730, 'operation due': 613173, 'outbreak philippine': 628532, 'philippine asia': 654724, 'asia economycrisis': 95173, 'suspended philippine lockdown': 829628, 'philippine lockdown ha': 654736, 'lockdown ha halted': 499448, 'ha halted 700': 370802, 'halted 700 factory': 374478, '700 factory operation': 21883, 'factory operation in': 295975, 'operation in ecozones': 613207, 'in ecozones factory': 422493, 'ecozones factory of': 268405, 'factory of car': 295971, 'of car part': 581132, 'car part electronics': 163243, 'part electronics other': 642270, 'electronics other industrial': 271306, 'other industrial consumer': 620423, 'industrial consumer good': 435536, 'consumer good in': 197620, 'good in luzon': 357247, 'in luzon have': 424961, 'luzon have stopped': 507001, 'have stopped operation': 382790, 'stopped operation due': 805731, 'operation due to': 613174, '19 outbreak philippine': 9169, 'outbreak philippine asia': 628533, 'philippine asia economycrisis': 654725, 'ri': 720921, '19 policy': 9743, 'policy idea': 663423, 'idea if': 413082, 'if lawmaker': 414373, 'lawmaker want': 482499, 'want more': 965855, 'to temporarily': 916355, 'temporarily stay': 837549, 'and conduct': 60269, 'conduct more': 193646, 'shopping ri': 763769, 'ri should': 720934, 'should temporarily': 766564, 'temporarily amp': 837432, 'other sale': 620869, 'sale tax': 732560, 'tax to': 835109, 'encourage delivery': 275580, 'good amp': 356718, 'more those': 540745, 'covid 19 policy': 213594, '19 policy idea': 9747, 'policy idea if': 663424, 'idea if lawmaker': 413084, 'if lawmaker want': 414374, 'lawmaker want more': 482500, 'want more people': 965856, 'more people to': 540045, 'people to temporarily': 649952, 'to temporarily stay': 916364, 'temporarily stay at': 837550, 'home and conduct': 400626, 'and conduct more': 60272, 'conduct more online': 193647, 'online shopping ri': 609253, 'shopping ri should': 763770, 'ri should temporarily': 720935, 'should temporarily amp': 766565, 'temporarily amp other': 837433, 'amp other sale': 54245, 'other sale tax': 620870, 'sale tax to': 732562, 'tax to encourage': 835111, 'to encourage delivery': 905058, 'encourage delivery of': 275581, 'delivery of good': 234225, 'of good amp': 584209, 'good amp food': 356719, 'amp food and': 53819, 'food and keep': 313264, 'and keep more': 65769, 'keep more those': 471678, 'more those who': 540746, 'who have lost': 988936, 'this really': 889817, 'really safe': 702535, 'safe time': 730039, 'ban disposable': 109190, 'disposable bag': 246232, 'bag at': 108233, 'very least': 955296, 'we shouldn': 973305, 'shouldn be': 766720, 'be charged': 114063, 'for paper': 324376, 'paper bag': 639917, 'bag think': 108417, 'provide bag': 686234, 'our safety': 624662, 'pandemic is this': 635800, 'is this really': 453117, 'this really safe': 889827, 'really safe time': 702536, 'safe time for': 730040, 'time for to': 896768, 'for to ban': 327214, 'to ban disposable': 901019, 'ban disposable bag': 109191, 'disposable bag at': 246233, 'bag at the': 108235, 'at the very': 101140, 'the very least': 870707, 'very least we': 955300, 'least we shouldn': 484688, 'we shouldn be': 973306, 'shouldn be charged': 766722, 'be charged for': 114065, 'charged for paper': 173383, 'for paper bag': 324379, 'paper bag think': 639921, 'bag think the': 108418, 'think the hike': 885637, 'the hike in': 857367, 'hike in their': 396225, 'in their price': 429765, 'their price should': 874420, 'price should be': 676385, 'be enough to': 114690, 'enough to provide': 277718, 'to provide bag': 912383, 'provide bag to': 686235, 'bag to their': 108433, 'to their customer': 917220, 'their customer for': 872950, 'customer for our': 222389, 'for our safety': 324286, 'wtop': 1013419, 'dc council': 228944, 'council pass': 210021, 'pass covid': 643202, 'rent freeze': 711094, 'freeze consumer': 332520, 'protection wtop': 685692, 'dc council pass': 228946, 'council pass covid': 210022, 'pass covid 19': 643203, 'relief bill with': 709295, 'bill with rent': 130732, 'with rent freeze': 1000457, 'rent freeze consumer': 711096, 'freeze consumer protection': 332521, 'consumer protection wtop': 198583, '01hr': 792, 'atleast': 101875, '03hrs': 905, 'supermarket starting': 822923, 'today limit': 919808, 'limit shopper': 492489, 'shopper from': 761521, 'from entry': 335293, 'entry those': 279026, 'with ticket': 1001762, 'ticket ha': 895626, 'ha waiting': 372440, 'waiting time': 964392, 'of 01hr': 579297, '01hr and': 793, 'without ticket': 1003008, 'wait atleast': 964082, 'atleast 03hrs': 101876, '03hrs or': 906, 'more singapore': 540398, 'all supermarket starting': 44554, 'supermarket starting today': 822926, 'starting today limit': 795054, 'today limit shopper': 919809, 'limit shopper from': 492490, 'shopper from entry': 761524, 'from entry those': 335294, 'entry those with': 279027, 'those with ticket': 892726, 'with ticket ha': 1001763, 'ticket ha waiting': 895627, 'ha waiting time': 372441, 'waiting time of': 964395, 'time of 01hr': 897307, 'of 01hr and': 579298, '01hr and those': 794, 'and those without': 74045, 'those without ticket': 892736, 'without ticket will': 1003009, 'ticket will need': 895680, 'to wait atleast': 918260, 'wait atleast 03hrs': 964083, 'atleast 03hrs or': 101877, '03hrs or more': 907, 'or more singapore': 616188, 'goodman': 358036, 'bonita': 134319, 'flamingo': 309990, 'sprimg': 791151, 'reach mayor': 699941, 'mayor goodman': 521959, 'goodman with': 358039, 'no luck': 564683, 'luck at': 506438, 'at la': 99397, 'la bonita': 478131, 'bonita supermarket': 134320, 'at rainbow': 100243, 'rainbow flamingo': 695768, 'flamingo it': 309993, 'so packed': 777978, 'from opening': 336704, 'opening till': 612918, 'till it': 896039, 'close these': 182862, 'will pas': 994376, 'pas the': 643152, 'the sprimg': 867652, 'sprimg valley': 791152, 'valley resident': 951982, 'resident we': 714395, 'tried to reach': 931841, 'to reach mayor': 912800, 'reach mayor goodman': 699942, 'mayor goodman with': 521960, 'goodman with no': 358040, 'with no luck': 999764, 'no luck at': 564684, 'luck at la': 506439, 'at la bonita': 99398, 'la bonita supermarket': 478132, 'bonita supermarket at': 134321, 'supermarket at rainbow': 819248, 'at rainbow flamingo': 100244, 'rainbow flamingo it': 695770, 'flamingo it is': 309994, 'is so packed': 452030, 'so packed with': 777979, 'packed with people': 633669, 'with people from': 1000147, 'people from opening': 647998, 'from opening till': 336705, 'opening till it': 612919, 'till it close': 896040, 'it close these': 457187, 'close these people': 182863, 'these people will': 880464, 'people will pas': 650403, 'will pas the': 994380, 'pas the covid': 643154, '19 to the': 11463, 'to the sprimg': 917087, 'the sprimg valley': 867653, 'sprimg valley resident': 791153, 'valley resident we': 951983, 'resident we need': 714397, 'for 100ml': 318632, '100ml hand': 2198, 'for real': 324988, 'real 19': 701016, '19 handsanitizer': 7421, 'handsanitizer dublin': 376520, 'time we live': 898228, 'live in for': 495862, 'in for 100ml': 423005, 'for 100ml hand': 318633, '100ml hand sanitizer': 2199, 'sanitizer for real': 734920, 'for real 19': 324989, 'real 19 handsanitizer': 701017, '19 handsanitizer dublin': 7422, 'shift are': 758240, 'stay by': 796802, '19 related consumer': 10046, 'related consumer behavior': 708396, 'consumer behavior shift': 196512, 'behavior shift are': 124185, 'shift are here': 758242, 'are here to': 87122, 'to stay by': 915276, 'crew': 216677, 'frontlineheroes': 338877, 'would love': 1012009, 'see website': 746014, 'website where': 975477, 'send thank': 749956, 'you gift': 1018818, 'gift to': 350032, 'or hospital': 615669, 'hospital ambulance': 404265, 'ambulance crew': 51324, 'crew etc': 216690, 'etc or': 282692, 'or major': 616034, 'happen frontlineheroes': 377083, 'frontlineheroes even': 338878, 'even every': 284049, 'every place': 286109, 'place ha': 657473, 'ha drop': 370453, 'drop zone': 260462, 'zone thank': 1027776, 'would love to': 1012015, 'love to see': 504855, 'to see website': 914094, 'see website where': 746015, 'website where you': 975480, 'you can send': 1017778, 'can send thank': 159574, 'send thank you': 749957, 'thank you gift': 841731, 'you gift to': 1018819, 'gift to people': 350035, 'store or hospital': 809339, 'or hospital ambulance': 615670, 'hospital ambulance crew': 404266, 'ambulance crew etc': 51326, 'crew etc or': 216691, 'etc or major': 282693, 'or major supermarket': 616035, 'major supermarket can': 509486, 'supermarket can you': 819516, 'can you make': 160318, 'make it happen': 510035, 'it happen frontlineheroes': 458462, 'happen frontlineheroes even': 377084, 'frontlineheroes even every': 338880, 'even every place': 284050, 'every place ha': 286110, 'place ha drop': 657474, 'ha drop zone': 370454, 'drop zone thank': 260463, 'zone thank you': 1027777, 'yieldcos': 1016383, 'of listed': 585883, 'listed yieldcos': 494654, 'yieldcos and': 1016384, 'and infrastructure': 65228, 'infrastructure fund': 438197, 'fund have': 341424, 'fallen but': 297136, 'but asset': 145235, 'asset may': 96447, 'le affected': 482835, 'than equity': 840557, 'market suggest': 517144, 'suggest see': 817530, 'the consequence': 851461, 'consequence for': 194852, 'for energy': 321056, 'infrastructure here': 438202, 'share price of': 755178, 'price of listed': 675492, 'of listed yieldcos': 585886, 'listed yieldcos and': 494655, 'yieldcos and infrastructure': 1016385, 'and infrastructure fund': 65229, 'infrastructure fund have': 438198, 'fund have fallen': 341426, 'have fallen but': 380565, 'fallen but asset': 297137, 'but asset may': 145236, 'asset may be': 96448, 'may be le': 520999, 'be le affected': 115668, 'le affected by': 482836, '19 than equity': 11126, 'than equity market': 840558, 'equity market suggest': 279960, 'market suggest see': 517145, 'suggest see more': 817531, 'see more about': 745424, 'about the consequence': 26356, 'the consequence for': 851463, 'consequence for energy': 194854, 'for energy and': 321057, 'energy and infrastructure': 276390, 'and infrastructure here': 65230, 'neighbourhood': 557265, 'lady walking': 478865, 'walking along': 965013, 'along handing': 46999, 'handing out': 376131, 'out water': 627785, 'water for': 968997, 'outside in': 629458, 'this neighbourhood': 889102, 'neighbourhood gt': 557276, 'gt wherever': 367645, 'this lady walking': 888595, 'lady walking along': 478866, 'walking along handing': 965014, 'along handing out': 47000, 'handing out water': 376141, 'out water for': 627786, 'water for people': 969001, 'queue outside in': 694033, 'outside in supermarket': 629463, 'in supermarket this': 428692, 'supermarket this neighbourhood': 823319, 'this neighbourhood gt': 889103, 'neighbourhood gt wherever': 557277, 'gt wherever you': 367646, 'wherever you live': 985476, 'live in the': 495889, 'intersection': 442129, 'haven changed': 383769, 'changed but': 172449, 'are providing': 89315, 'providing everyone': 686988, 'everyone with': 287620, 'with additional': 997097, 'additional data': 31803, 'data at': 226132, 'no cost': 563906, '19 effort': 6732, 'effort at': 269478, 'link here': 493847, 'there an': 877984, 'an intersection': 56422, 'intersection and': 442130, 'our price haven': 624445, 'price haven changed': 674474, 'haven changed but': 383771, 'changed but we': 172450, 'we are providing': 970672, 'are providing everyone': 89317, 'providing everyone with': 686989, 'everyone with additional': 287621, 'with additional data': 997099, 'additional data at': 31804, 'data at no': 226133, 'at no cost': 99892, 'no cost you': 563910, 'cost you can': 208167, 'you can learn': 1017710, 'can learn more': 158852, 'about our covid': 25888, 'covid 19 effort': 213011, '19 effort at': 6733, 'effort at the': 269479, 'at the link': 101007, 'the link here': 859440, 'link here we': 493850, 'here we ll': 393790, 'll help with': 496843, 'help with your': 390936, 'with your service': 1002232, 'your service is': 1025733, 'service is there': 752525, 'is there an': 452996, 'there an intersection': 877992, 'an intersection and': 56423, 'newprofilepic': 560163, 'newprofilepic supermarket': 560164, 'worker cannot': 1006596, 'home have': 401340, 'not drive': 569106, 'drive stay': 259155, 'stay off': 797137, 'off public': 594092, 'public transport': 688402, 'metro need': 529928, 'you fed': 1018525, 'fed this': 301906, 'getting serious': 349260, 'serious take': 751480, 'note and': 572696, 'listen lockdown': 494693, 'newprofilepic supermarket worker': 560165, 'supermarket worker cannot': 824001, 'worker cannot stay': 1006600, 'cannot stay at': 162123, 'at home have': 99004, 'home have to': 401344, 'out and do': 625657, 'do not drive': 249721, 'not drive stay': 569109, 'drive stay off': 259156, 'stay off public': 797138, 'off public transport': 594094, 'public transport and': 688403, 'transport and metro': 929868, 'and metro need': 66976, 'metro need to': 529929, 'need to use': 556110, 'get to work': 348502, 'keep you fed': 472236, 'you fed this': 1018527, 'fed this is': 301907, 'is getting serious': 448041, 'getting serious take': 349261, 'serious take note': 751481, 'take note and': 832369, 'note and listen': 572698, 'and listen lockdown': 66224, 'venue': 954705, 've tweeted': 953640, 'tweeted this': 936455, 'this before': 886525, 'before believe': 122664, 'ha semi': 371850, 'semi permanently': 749616, 'permanently at': 652084, 'least for': 484468, 'year damaged': 1014506, 'damaged the': 225263, 'consumer model': 198147, 'economy whose': 268353, 'whose net': 990664, 'net effect': 557543, 'effect will': 269160, 'reduced spending': 706169, 'spending across': 788718, 'board especially': 133629, 'especially travel': 280643, 'travel leisure': 930416, 'leisure restaurant': 486142, 'restaurant mall': 716561, 'mall and': 511731, 'and entertainment': 62193, 'entertainment venue': 278612, 'venue get': 954715, 've tweeted this': 953641, 'tweeted this before': 936456, 'this before believe': 886527, 'before believe this': 122665, '19 virus ha': 11803, 'virus ha semi': 958251, 'ha semi permanently': 371851, 'semi permanently at': 749617, 'permanently at least': 652085, 'at least for': 99494, 'least for year': 484473, 'for year damaged': 328002, 'year damaged the': 1014507, 'damaged the consumer': 225264, 'the consumer model': 851562, 'consumer model of': 198148, 'model of our': 535286, 'our economy whose': 622853, 'economy whose net': 268354, 'whose net effect': 990665, 'net effect will': 557544, 'effect will be': 269161, 'be reduced spending': 116740, 'reduced spending across': 706170, 'spending across the': 788719, 'the board especially': 849807, 'board especially travel': 133630, 'especially travel leisure': 280644, 'travel leisure restaurant': 930417, 'leisure restaurant mall': 486143, 'restaurant mall and': 716562, 'mall and entertainment': 511733, 'and entertainment venue': 62198, 'entertainment venue get': 278614, 'venue get ready': 954716, 'ankle': 76757, 'jumpsuit': 467971, 'internally': 441743, 'sadder': 729299, 'for comfortable': 320170, 'comfortable ankle': 187867, 'ankle length': 76760, 'length jumpsuit': 486314, 'jumpsuit few': 467972, 'few website': 304126, 'website list': 975342, 'list them': 494556, 'them internally': 875931, 'internally not': 441744, 'sure what': 827816, 'the ethic': 854546, 'ethic of': 283053, 'of sad': 589208, 'sad shopping': 729229, 'shopping are': 762062, 'are when': 91618, 'need people': 555420, 'work perhaps': 1005608, 'perhaps this': 651654, 'not ethical': 569228, 'ethical now': 283081, 'now even': 574617, 'even sadder': 284538, 'sadder socialdistancing': 729300, 'socialdistancing day': 780309, 'day 30': 227138, '30 stayhome': 17229, 'stayhome day': 797982, 'day 16': 227102, 'went to an': 979138, 'to an online': 900466, 'online store looking': 609457, 'looking for comfortable': 502857, 'for comfortable ankle': 320171, 'comfortable ankle length': 187868, 'ankle length jumpsuit': 76761, 'length jumpsuit few': 486315, 'jumpsuit few website': 467973, 'few website list': 304127, 'website list them': 975344, 'list them internally': 494557, 'them internally not': 875932, 'internally not sure': 441745, 'not sure what': 571851, 'sure what the': 827821, 'what the ethic': 982311, 'the ethic of': 854547, 'ethic of sad': 283056, 'of sad shopping': 589211, 'sad shopping are': 729230, 'shopping are when': 762068, 'are when you': 91620, 'you need people': 1020030, 'need people to': 555423, 'do the work': 250271, 'the work perhaps': 871737, 'work perhaps this': 1005609, 'perhaps this is': 651656, 'is not ethical': 450073, 'not ethical now': 569229, 'ethical now even': 283082, 'now even sadder': 574621, 'even sadder socialdistancing': 284539, 'sadder socialdistancing day': 729301, 'socialdistancing day 30': 780311, 'day 30 stayhome': 227140, '30 stayhome day': 17230, 'stayhome day 16': 797983, 'fucked': 339722, 'borrow': 135593, 'yall fucked': 1014072, 'fucked up': 339730, 'this who': 891371, 'bought up': 136775, 'up all': 944252, 'paper anybody': 639875, 'anybody got': 80082, 'got roll': 358821, 'roll can': 725242, 'can borrow': 157775, 'borrow gotta': 135598, 'gotta take': 359105, 'take shit': 832570, 'shit texas': 759233, 'texas toiletpaper': 839847, 'yall fucked up': 1014073, 'fucked up for': 339732, 'for this who': 327089, 'this who came': 891372, 'came in here': 157017, 'in here and': 423668, 'here and bought': 392699, 'and bought up': 59114, 'bought up all': 136776, 'up all the': 944261, 'toilet paper anybody': 921189, 'paper anybody got': 639876, 'anybody got roll': 80083, 'got roll can': 358822, 'roll can borrow': 725243, 'can borrow gotta': 157776, 'borrow gotta take': 135599, 'gotta take shit': 359106, 'take shit texas': 832571, 'shit texas toiletpaper': 759234, 'scariest': 741103, 'choosing which': 177947, 'couple should': 211673, 'the scariest': 866454, 'scariest thing': 741104, 'thing ve': 884935, 've ever': 953090, 'ever done': 285276, 'choosing which couple': 177948, 'which couple should': 985784, 'couple should go': 211674, 'store is one': 808509, 'of the scariest': 591441, 'the scariest thing': 866455, 'scariest thing ve': 741107, 'thing ve ever': 884938, 've ever done': 953092, 'diego': 241618, 'san diego': 733522, 'diego police': 241627, 'police arrested': 662930, 'arrested eight': 93834, 'eight people': 270192, 'were driving': 979544, 'on item': 601703, 'item like': 463410, 'sanitizer baby': 734535, 'wipe glove': 996273, 'mask by': 518502, 'by selling': 153921, 'selling them': 749490, 'them online': 876103, 'to line': 909315, 'line their': 493457, 'their pocket': 874331, 'pocket with': 662218, 'with profit': 1000335, 'profit during': 682712, 'san diego police': 733528, 'diego police arrested': 241628, 'police arrested eight': 662932, 'arrested eight people': 93835, 'eight people who': 270194, 'people who were': 650357, 'who were driving': 989957, 'were driving up': 979545, 'price on item': 675688, 'on item like': 601707, 'item like toilet': 463425, 'hand sanitizer baby': 375317, 'sanitizer baby wipe': 734536, 'baby wipe glove': 106739, 'wipe glove and': 996274, 'face mask by': 294523, 'mask by selling': 518505, 'by selling them': 153934, 'selling them online': 749494, 'them online to': 876105, 'online to line': 609589, 'to line their': 909317, 'line their pocket': 493458, 'their pocket with': 874334, 'pocket with profit': 662219, 'with profit during': 1000336, 'profit during the': 682715, 'pandemic more at': 635975, 'medford': 525953, 'compromised': 192668, 'destinationmedford': 238990, 'medfordnj': 525956, 'in medford': 425221, 'medford nj': 525954, 'nj have': 563438, 'senior immune': 750333, 'immune compromised': 417316, 'compromised people': 192685, 'people better': 647277, 'better yet': 128617, 're heading': 698794, 'store call': 806843, 'call your': 156259, 'your senior': 1025720, 'senior neighbor': 750362, 'neighbor first': 557009, 'first ask': 308515, 'ask them': 95644, 'can deliver': 158041, 'deliver to': 233248, 'their doorstep': 873080, 'doorstep save': 255869, 'save them': 737678, 'them trip': 876552, 'trip destinationmedford': 932061, 'destinationmedford medfordnj': 238991, 'store in medford': 808338, 'in medford nj': 425222, 'medford nj have': 525955, 'nj have special': 563439, 'for senior immune': 325465, 'senior immune compromised': 750334, 'immune compromised people': 417319, 'compromised people better': 192686, 'people better yet': 647280, 'better yet if': 128618, 'yet if you': 1016099, 'you re heading': 1020640, 're heading to': 698796, 'the store call': 867991, 'store call your': 806844, 'call your senior': 156267, 'your senior neighbor': 1025721, 'senior neighbor first': 750363, 'neighbor first ask': 557010, 'first ask them': 308516, 'ask them what': 95648, 'them what you': 876605, 'you can deliver': 1017655, 'can deliver to': 158048, 'deliver to their': 233253, 'to their doorstep': 917226, 'their doorstep save': 873082, 'doorstep save them': 255870, 'save them trip': 737681, 'them trip destinationmedford': 876553, 'trip destinationmedford medfordnj': 932062, 'is cleaned': 446542, 'serious coronacrisis': 751357, 'when your grocery': 984627, 'store is cleaned': 808473, 'is cleaned out': 446543, 'cleaned out of': 180722, 'out of you': 626881, 'of you know': 593399, 'know it is': 476532, 'it is serious': 459073, 'is serious coronacrisis': 451783, 'staggered': 793241, 'adherence': 32221, 'congregate': 194459, 'staggered by': 793244, 'public lack': 688132, 'of knowledge': 585672, 'knowledge and': 477169, 'and adherence': 57691, 'adherence to': 32222, 'distancing boris': 247049, 'boris didn': 135453, 'didn shut': 241198, 'whole hospitality': 990238, 'industry down': 435784, 'could congregate': 209039, 'congregate in': 194462, 'please shop': 660505, 'own and': 631880, 'putting life': 691158, 'life at': 488505, 'staggered by the': 793245, 'by the public': 154417, 'the public lack': 864825, 'public lack of': 688133, 'lack of knowledge': 478632, 'of knowledge and': 585674, 'knowledge and adherence': 477170, 'and adherence to': 57692, 'adherence to social': 32223, 'social distancing boris': 779572, 'distancing boris didn': 247050, 'boris didn shut': 135454, 'didn shut the': 241199, 'shut the whole': 767945, 'the whole hospitality': 871494, 'whole hospitality industry': 990239, 'hospitality industry down': 404783, 'industry down so': 435785, 'down so you': 257197, 'so you could': 778837, 'you could congregate': 1018080, 'could congregate in': 209040, 'congregate in the': 194463, 'supermarket please shop': 822021, 'please shop on': 660507, 'shop on your': 760551, 'on your own': 605486, 'your own and': 1025124, 'own and leave': 631882, 'and leave the': 66062, 'leave the family': 484965, 'the family at': 854889, 'family at home': 297642, 'at home you': 99181, 'home you are': 402580, 'you are putting': 1017209, 'are putting life': 89354, 'putting life at': 691159, 'life at risk': 488508, 'at risk 19': 100332, 'inter': 441181, 'shuttle': 768296, 'wncn': 1003294, 'current global': 221208, 'global health': 351973, 'created tough': 215917, 'tough situation': 926840, 'situation for': 772269, 'many donation': 514006, 'donation and': 254540, 'volunteer based': 960236, 'based organization': 111706, 'organization including': 619393, 'including inter': 432022, 'inter faith': 441186, 'faith food': 296506, 'food shuttle': 316626, 'shuttle find': 768299, 'home wncn': 402550, 'wncn learn': 1003295, 'can help the': 158661, 'help the current': 390647, 'the current global': 852635, 'current global health': 221210, 'global health crisis': 351976, 'health crisis ha': 386336, 'crisis ha created': 217434, 'ha created tough': 370286, 'created tough situation': 215918, 'tough situation for': 926841, 'situation for many': 772276, 'for many donation': 323215, 'many donation and': 514007, 'donation and volunteer': 254545, 'and volunteer based': 75026, 'volunteer based organization': 960237, 'based organization including': 111707, 'organization including inter': 619394, 'including inter faith': 432023, 'inter faith food': 441187, 'faith food shuttle': 296507, 'food shuttle find': 316627, 'shuttle find out': 768300, 'out what you': 627820, 'to help from': 907524, 'help from the': 389776, 'from the comfort': 337644, 'your home wncn': 1024389, 'home wncn learn': 402551, 'wncn learn more': 1003296, 'nebraskan': 553910, 'insecure nebraskan': 439131, 'nebraskan during': 553911, 'bank are struggling': 109659, 'growing demand of': 367167, 'food insecure nebraskan': 315054, 'insecure nebraskan during': 439132, 'nebraskan during the': 553912, 'issue battle': 455686, 'battle plan': 112810, 'chain aren': 170521, 'aren disrupted': 92380, 'disrupted panic': 246406, 'buying could': 150146, 'could particularly': 209490, 'particularly impact': 642693, 'impact food': 417658, 'supply trend': 826049, 'trend australia': 931286, 'seen in': 747067, 'week 7news': 975807, 'ha been forced': 369810, 'forced to issue': 328638, 'to issue battle': 908554, 'issue battle plan': 455687, 'battle plan to': 112812, 'ensure the world': 278094, 'world food supply': 1009557, 'supply chain aren': 824907, 'chain aren disrupted': 170522, 'aren disrupted panic': 92381, 'disrupted panic buying': 246407, 'panic buying could': 637689, 'buying could particularly': 150149, 'could particularly impact': 209491, 'particularly impact food': 642694, 'impact food supply': 417659, 'food supply trend': 317009, 'supply trend australia': 826050, 'trend australia ha': 931287, 'australia ha seen': 103295, 'ha seen in': 371829, 'seen in in': 747075, 'in in recent': 424001, 'recent week 7news': 704012, 'elation': 270499, 'townspeople': 927629, 'gi': 349708, 'atop': 101991, 'liberation': 488033, 'joy': 467498, 'pallet': 634587, 'jubilation': 467600, 'compare the': 191407, 'the elation': 854098, 'elation of': 270500, 'the townspeople': 869831, 'townspeople in': 927630, 'lyon france': 507144, 'france upon': 331048, 'upon seeing': 947655, 'seeing waving': 746549, 'waving gi': 969411, 'gi atop': 349709, 'atop tank': 101994, 'tank of': 834218, 'of liberation': 585802, 'liberation and': 488034, 'say shopper': 739132, 'shopper joy': 761581, 'joy at': 467502, 'my coming': 547750, 'coming around': 187995, 'corner of': 203655, 'of aisle': 579871, 'aisle with': 40438, 'with pallet': 1000068, 'pallet full': 634588, 'toiletpaper jubilation': 922152, 'jubilation is': 467601, 'is jubilation': 449114, 'compare the elation': 191408, 'the elation of': 854099, 'elation of the': 270501, 'of the townspeople': 591552, 'the townspeople in': 869832, 'townspeople in lyon': 927631, 'in lyon france': 424968, 'lyon france upon': 507145, 'france upon seeing': 331049, 'upon seeing waving': 947657, 'seeing waving gi': 746550, 'waving gi atop': 969412, 'gi atop tank': 349710, 'atop tank of': 101995, 'tank of liberation': 834219, 'of liberation and': 585803, 'liberation and say': 488035, 'and say shopper': 71003, 'say shopper joy': 739134, 'shopper joy at': 761582, 'joy at my': 467503, 'at my coming': 99806, 'my coming around': 547751, 'coming around the': 187996, 'around the corner': 93530, 'the corner of': 851748, 'corner of aisle': 203656, 'of aisle with': 579873, 'aisle with pallet': 40439, 'with pallet full': 1000069, 'pallet full of': 634589, 'full of toiletpaper': 340763, 'of toiletpaper jubilation': 592269, 'toiletpaper jubilation is': 922153, 'jubilation is jubilation': 467602, 'welp my': 978874, 'my schedule': 549996, 'schedule wa': 741477, 'recently changed': 704058, 'changed again': 172427, 'again so': 37166, 'can spend': 159694, 'spend time': 788687, 'all with': 45478, 'recent grocery': 703908, 'panic going': 638139, 'on because': 599602, '19 feel': 6970, 'like should': 491185, 'should work': 766662, 'work scheduled': 1005699, 'scheduled but': 741482, 'but haven': 145888, 'sister since': 771785, 'since november': 770769, 'november and': 573848, 'and miss': 67069, 'miss her': 534147, 'welp my schedule': 978876, 'my schedule wa': 549998, 'schedule wa recently': 741478, 'wa recently changed': 963071, 'recently changed again': 704059, 'changed again so': 172428, 'again so can': 37167, 'so can spend': 776724, 'can spend time': 159698, 'spend time with': 788689, 'time with my': 898355, 'my family at': 548187, 'family at all': 297641, 'at all with': 97921, 'all with the': 45481, 'with the recent': 1001450, 'the recent grocery': 865311, 'recent grocery store': 703909, 'store panic going': 809459, 'panic going on': 638140, 'going on because': 355304, 'on because of': 599604, 'covid 19 feel': 213084, '19 feel like': 6972, 'feel like should': 302743, 'like should work': 491187, 'should work scheduled': 766663, 'work scheduled but': 1005700, 'scheduled but haven': 741483, 'but haven seen': 145892, 'seen my sister': 747148, 'my sister since': 550116, 'sister since november': 771786, 'since november and': 770770, 'november and miss': 573849, 'and miss her': 67071, 'disproportionate': 246301, 'school closing': 741738, 'closing job': 183678, 'job disruption': 465788, 'disruption lack': 246499, '19 disproportionate': 6570, 'disproportionate impact': 246302, 'of adult': 579797, 'adult age': 32786, 'age 60': 37793, 'older along': 598569, 'along low': 47007, 'income family': 432330, 'all contributing': 42446, 'demand on': 235961, 'country encourage': 210615, 'school closing job': 741742, 'closing job disruption': 183679, 'job disruption lack': 465790, 'disruption lack of': 246500, 'lack of paid': 478639, 'leave and the': 484735, 'covid 19 disproportionate': 212963, '19 disproportionate impact': 6571, 'disproportionate impact of': 246303, 'impact of adult': 417751, 'of adult age': 579798, 'adult age 60': 32787, 'age 60 and': 37794, '60 and older': 20904, 'and older along': 68038, 'older along low': 598570, 'along low income': 47008, 'low income family': 505348, 'income family are': 432332, 'family are all': 297622, 'are all contributing': 84295, 'all contributing to': 42447, 'contributing to overwhelming': 201921, 'overwhelming demand on': 631745, 'demand on food': 235966, 'on food bank': 600843, 'bank across the': 109569, 'the country encourage': 852072, 'country encourage you': 210616, 'encourage you all': 275644, 'all to join': 45241, 'to join me': 908678, 'join me here': 466775, 'me here in': 522897, 'jeanne': 464959, 'bohlen': 134040, 'jeanne bohlen': 464960, 'bohlen bohlen': 134041, 'bohlen is': 134043, 'there covid': 878294, 'in fresh': 423117, 'jeanne bohlen bohlen': 464961, 'bohlen bohlen is': 134042, 'bohlen is there': 134044, 'is there covid': 453005, 'there covid 19': 878295, '19 risk in': 10245, 'risk in fresh': 723626, 'in fresh produce': 423119, 'fresh produce in': 333054, 'safeway': 730826, 'tragic': 929189, 'rough': 726240, 'wa shooting': 963197, 'shooting at': 759763, 'the safeway': 866155, 'safeway grocery': 730841, 'near where': 553629, 'in washington': 430707, 'washington dc': 967770, 'dc this': 228978, 'evening it': 284876, 'it tragic': 461841, 'tragic reminder': 929198, 'reminder to': 710599, 'tell family': 836954, 'family you': 298413, 'you love': 1019727, 'love them': 504814, 'to de': 903964, 'de stress': 229109, 'stress in': 813344, 'this rough': 889924, 'rough time': 726262, 'there wa shooting': 879270, 'wa shooting at': 963198, 'shooting at the': 759764, 'at the safeway': 101086, 'the safeway grocery': 866156, 'safeway grocery store': 730843, 'store near where': 809041, 'near where live': 553630, 'where live in': 984986, 'live in washington': 495895, 'in washington dc': 430709, 'washington dc this': 967771, 'dc this evening': 228979, 'this evening it': 887438, 'evening it tragic': 284878, 'it tragic reminder': 461842, 'tragic reminder to': 929199, 'reminder to take': 710604, 'minute to tell': 533877, 'to tell family': 916341, 'tell family you': 836955, 'family you love': 298414, 'you love them': 1019731, 'love them to': 504816, 'them to check': 876461, 'to check in': 902685, 'with your friend': 1002201, 'your friend to': 1023977, 'friend to find': 333844, 'way to de': 970008, 'to de stress': 903965, 'de stress in': 229110, 'stress in this': 813345, 'in this rough': 430006, 'this rough time': 889925, 'auction': 102841, 'toiletpaper auction': 921768, 'auction with': 102873, 'with winning': 1002104, 'winning bid': 996061, 'bid 30k': 129460, '30k on': 17454, 'ebay how': 266467, 'gouging control': 359301, 'control going': 202014, 'toiletpaper auction with': 921769, 'auction with winning': 102874, 'with winning bid': 1002105, 'winning bid 30k': 996062, 'bid 30k on': 129461, '30k on ebay': 17455, 'on ebay how': 600492, 'ebay how is': 266468, 'is that price': 452681, 'that price gouging': 845825, 'price gouging control': 674273, 'gouging control going': 359302, 'also dropped': 48136, 'crisis began': 217123, 'ongoing increasingly': 607648, 'have also dropped': 379210, 'also dropped significantly': 48137, 'dropped significantly since': 260628, 'since the crisis': 770874, 'the crisis began': 852348, 'crisis began the': 217127, 'began the economic': 123438, 'fallout from covid': 297381, 'is ongoing increasingly': 450518, 'ongoing increasingly difficult': 607649, '19 lagos': 8265, 'lagos market': 478937, 'market record': 516964, 'record drop': 704951, 'of perishable': 588047, 'perishable food': 651969, 'covid 19 lagos': 213331, '19 lagos market': 8267, 'lagos market record': 478938, 'market record drop': 516965, 'record drop in': 704952, 'drop in price': 260267, 'price of perishable': 675530, 'of perishable food': 588048, 'perishable food item': 651973, 'cousin in': 212086, 'holland sent': 400427, 'sent these': 750832, 'these photo': 880475, 'yesterday how': 1015768, 'they manage': 882654, 'manage it': 512398, 'it panicbuying': 460254, 'my cousin in': 547838, 'cousin in holland': 212087, 'in holland sent': 423774, 'holland sent these': 400428, 'sent these photo': 750833, 'these photo of': 880477, 'photo of her': 655204, 'of her local': 584578, 'local supermarket yesterday': 498622, 'supermarket yesterday how': 824172, 'yesterday how do': 1015769, 'how do they': 407728, 'do they manage': 250311, 'they manage it': 882655, 'manage it panicbuying': 512400, 'laboring': 478505, 'fulfill': 340396, 'intense': 441074, 'are shuttered': 90097, 'shuttered or': 768210, 'home other': 401795, 'other company': 619976, 'overdrive with': 631192, 'with warehouse': 1002020, 'worker laboring': 1007291, 'laboring behind': 478506, 'scene to': 741362, 'to fulfill': 906300, 'fulfill intense': 340405, 'intense demand': 441077, 'business are shuttered': 143386, 'are shuttered or': 90098, 'shuttered or keep': 768211, 'or keep their': 615902, 'keep their worker': 472099, 'their worker at': 875211, 'worker at home': 1006465, 'at home other': 99073, 'home other company': 401796, 'other company are': 619977, 'company are running': 190447, 'are running in': 89766, 'running in overdrive': 727979, 'in overdrive with': 426388, 'overdrive with warehouse': 631193, 'with warehouse worker': 1002021, 'warehouse worker laboring': 966823, 'worker laboring behind': 1007292, 'laboring behind the': 478507, 'the scene to': 866473, 'scene to fulfill': 741363, 'to fulfill intense': 906303, 'fulfill intense demand': 340406, 'intense demand for': 441078, 'for food cleaning': 321570, 'food cleaning supply': 313942, 'w1': 961330, 'schoolclosure': 742005, 'exhaustion': 290194, 'strangely': 812442, 'expansive': 290571, 'of w1': 592874, 'w1 schoolclosure': 961331, 'schoolclosure this': 742007, 'weekend wa': 977439, 'wa nothing': 962783, 'nothing like': 573094, 'like rest': 491079, 'rest the': 716230, 'opposite complete': 613777, 'complete exhaustion': 192086, 'exhaustion strangely': 290197, 'strangely gas': 812445, 'boston are': 135778, 'almost dollar': 46595, 'dollar more': 253036, 'more expansive': 539168, 'expansive than': 290573, 'than western': 841439, 'western mass': 980630, 'mass per': 519830, 'gallon check': 342989, 'check pricegouging': 174603, 'end of w1': 275923, 'of w1 schoolclosure': 592875, 'w1 schoolclosure this': 961332, 'schoolclosure this weekend': 742008, 'this weekend wa': 891324, 'weekend wa nothing': 977440, 'wa nothing like': 962785, 'nothing like rest': 573099, 'like rest the': 491080, 'rest the opposite': 716231, 'the opposite complete': 862409, 'opposite complete exhaustion': 613778, 'complete exhaustion strangely': 192087, 'exhaustion strangely gas': 290198, 'strangely gas price': 812446, 'price in boston': 674669, 'in boston are': 420911, 'boston are almost': 135779, 'are almost dollar': 84390, 'almost dollar more': 46596, 'dollar more expansive': 253037, 'more expansive than': 539169, 'expansive than western': 290574, 'than western mass': 841440, 'western mass per': 980631, 'mass per gallon': 519831, 'per gallon check': 650842, 'gallon check pricegouging': 342990, 'government response': 360537, 'be close': 114115, 'to ending': 905094, 'ending but': 276166, 'pandemic itself': 635835, 'not likely': 570408, 'end for': 275823, 'are sign that': 90125, 'sign that the': 769225, 'the government response': 856594, 'government response to': 360541, 'the pandemic may': 863021, 'may be close': 520960, 'be close to': 114116, 'close to ending': 182891, 'to ending but': 905095, 'ending but the': 276167, 'but the pandemic': 147380, 'the pandemic itself': 863008, 'pandemic itself is': 635836, 'itself is not': 463941, 'is not likely': 450123, 'not likely to': 570409, 'likely to end': 492147, 'to end for': 905079, 'end for some': 275825, 'for some time': 325771, 'metaphor': 529673, 'breaker': 138860, 'is metaphor': 449640, 'metaphor for': 529674, 'explaining why': 292195, 'flu to': 311477, 'parent spring': 641730, 'spring breaker': 791177, 'breaker replace': 138867, 'replace tp': 711595, 'tp with': 928036, 'with ventilator': 1001967, 'and maybe': 66807, 'll start': 497027, 'understand supply': 940721, 'demand deadly': 235212, 'consequence mom': 194870, 'maybe the run': 521835, 'the run on': 866076, 'run on toiletpaper': 727743, 'on toiletpaper is': 604790, 'toiletpaper is metaphor': 922138, 'is metaphor for': 449641, 'metaphor for explaining': 529675, 'for explaining why': 321335, 'explaining why is': 292196, 'why is worse': 991130, 'worse than the': 1011018, 'than the flu': 841236, 'the flu to': 855466, 'flu to parent': 311478, 'to parent spring': 911462, 'parent spring breaker': 641731, 'spring breaker replace': 791179, 'breaker replace tp': 138868, 'replace tp with': 711596, 'tp with ventilator': 928037, 'with ventilator and': 1001968, 'ventilator and maybe': 954526, 'and maybe they': 66821, 'maybe they ll': 521846, 'they ll start': 882612, 'll start to': 497032, 'start to understand': 794603, 'to understand supply': 917910, 'understand supply and': 940722, 'and demand deadly': 61148, 'demand deadly consequence': 235213, 'deadly consequence mom': 229257, 'lonely': 501293, 'called me': 156369, 'me neighbour': 523206, 'neighbour to': 557242, 'ask if': 95561, 'if she': 414773, 'wa ok': 962811, 'ok she': 597868, 'she is': 756141, 'is 83': 445247, '83 and': 22851, 'and lost': 66409, 'lost her': 503854, 'husband last': 411734, 'last summer': 480512, 'summer she': 818009, 'she cried': 755964, 'cried down': 216747, 'phone because': 654907, 'she feel': 756027, 'feel lonely': 302771, 'lonely said': 501307, 'said please': 731315, 'be sad': 116935, 'sad she': 729227, 'doing me': 252525, 'up list': 945329, 'there people': 878922, 'people let': 648622, 'just called me': 468413, 'called me neighbour': 156373, 'me neighbour to': 523207, 'neighbour to ask': 557243, 'to ask if': 900755, 'ask if she': 95564, 'if she wa': 414782, 'she wa ok': 756420, 'wa ok she': 962814, 'ok she is': 597869, 'she is 83': 756142, 'is 83 and': 445248, '83 and lost': 22852, 'and lost her': 66410, 'lost her husband': 503855, 'her husband last': 392125, 'husband last summer': 411735, 'last summer she': 480517, 'summer she cried': 818010, 'she cried down': 755966, 'cried down the': 216748, 'down the phone': 257293, 'the phone because': 863686, 'phone because she': 654908, 'because she feel': 119545, 'she feel lonely': 756029, 'feel lonely said': 302772, 'lonely said please': 501308, 'said please don': 731316, 'please don be': 659907, 'don be sad': 253365, 'be sad she': 116938, 'sad she is': 729228, 'she is doing': 756150, 'is doing me': 447283, 'doing me up': 252526, 'me up list': 523858, 'up list for': 945330, 'list for the': 494329, 'the supermarket be': 868480, 'supermarket be there': 819325, 'be there people': 117683, 'there people let': 878925, 'people let help': 648625, 'help the most': 390666, 'overcrowded': 631152, 'destination': 238970, 'stratospheric': 812756, 'bedsit': 120463, 'why so': 991352, 'uk one': 938585, 'one answer': 605932, 'answer according': 78003, 'to guardian': 907061, 'guardian is': 367894, 'is overcrowded': 450751, 'overcrowded housing': 631153, 'housing condition': 407062, 'condition in': 193467, 'in low': 424947, 'income household': 432366, 'household popular': 406906, 'popular migration': 664571, 'migration destination': 531246, 'destination stratospheric': 238986, 'stratospheric property': 812757, 'price crowded': 673355, 'crowded bedsit': 219300, 'bedsit similar': 120464, 'similar issue': 769901, 'issue in': 455798, 'other global': 620298, 'global city': 351773, 'why so many': 991354, 'so many case': 777642, 'many case in': 513878, 'case in uk': 165813, 'in uk one': 430393, 'uk one answer': 938586, 'one answer according': 605933, 'answer according to': 78004, 'according to guardian': 28549, 'to guardian is': 907062, 'guardian is overcrowded': 367896, 'is overcrowded housing': 450752, 'overcrowded housing condition': 631154, 'housing condition in': 407063, 'condition in low': 193470, 'in low income': 424949, 'low income household': 505349, 'income household popular': 432369, 'household popular migration': 406907, 'popular migration destination': 664572, 'migration destination stratospheric': 531247, 'destination stratospheric property': 238987, 'stratospheric property price': 812758, 'property price crowded': 684325, 'price crowded bedsit': 673356, 'crowded bedsit similar': 219301, 'bedsit similar issue': 120465, 'similar issue in': 769902, 'issue in other': 455802, 'in other global': 426242, 'other global city': 620299, 'bitter': 131903, 'else notice': 271808, 'notice how': 573283, 'how angry': 407367, 'angry bitter': 76464, 'bitter and': 131904, 'and rude': 70619, 'rude people': 727049, 're wearing': 699787, 'store some': 810260, 'just made': 469202, 'made for': 507741, 'socialdistancing stateofemergency': 780719, 'stateofemergency ppe': 796242, 'anyone else notice': 80277, 'else notice how': 271809, 'notice how angry': 573284, 'how angry bitter': 407368, 'angry bitter and': 76465, 'bitter and rude': 131905, 'and rude people': 70621, 'rude people are': 727050, 'are now that': 88606, 'they re wearing': 883151, 're wearing mask': 699789, 'wearing mask especially': 974690, 'grocery store some': 365785, 'store some people': 810262, 'some people were': 783545, 'people were just': 650208, 'were just made': 979819, 'just made for': 469206, 'made for socialdistancing': 507745, 'for socialdistancing stateofemergency': 325716, 'socialdistancing stateofemergency ppe': 780720, 'fir': 308048, 'honey': 403168, 'these shopping': 880686, 'website just': 975329, 'say use': 739426, 'use code': 949117, 'code covid': 185355, '19 fir': 7017, 'fir additional': 308049, 'additional saving': 31864, 'saving because': 737850, 'because honey': 119133, 'honey online': 403181, 'is where': 453925, 'where it': 984958, 'at right': 100321, 'here lately': 393289, 'these shopping website': 880687, 'shopping website just': 764360, 'website just need': 975330, 'need to say': 556058, 'to say use': 913850, 'say use code': 739427, 'use code covid': 949120, 'code covid 19': 185356, 'covid 19 fir': 213100, '19 fir additional': 7018, 'fir additional saving': 308050, 'additional saving because': 31865, 'saving because honey': 737851, 'because honey online': 119134, 'honey online is': 403182, 'online is where': 608439, 'is where it': 453929, 'where it at': 984959, 'it at right': 456624, 'at right here': 100322, 'right here lately': 721933, 'vdacs': 952795, 'market guidance': 516478, 'wa released': 963084, 'the virginia': 870779, 'virginia department': 957658, 'today this': 920333, 'information along': 437723, 'additional covid': 31799, 'the vdacs': 870655, 'vdacs website': 952796, 'farmer market guidance': 299448, 'market guidance that': 516479, 'guidance that wa': 368290, 'that wa released': 847308, 'wa released by': 963085, 'by the virginia': 154473, 'the virginia department': 870780, 'virginia department of': 957659, 'agriculture and consumer': 38932, 'and consumer service': 60429, 'consumer service today': 198953, 'service today this': 753003, 'today this information': 920338, 'this information along': 888109, 'information along with': 437724, 'along with additional': 47041, 'with additional covid': 997098, 'additional covid 19': 31800, '19 resource are': 10129, 'resource are available': 714712, 'are available on': 84714, 'available on the': 104535, 'on the vdacs': 604425, 'the vdacs website': 870656, 'vdacs website at': 952797, 'it our': 460163, 'our view': 625271, 'view that': 957161, 'being driven': 125084, 'by faltering': 152542, 'faltering consumer': 297493, 'confidence due': 193851, 'job insecurity': 465890, 'insecurity and': 439143, 'uncertainty amongst': 939646, 'amongst other': 53134, 'other bitcoin': 619896, 'bitcoin via': 131845, 'via insight': 956034, 'it our view': 460169, 'our view that': 625274, 'view that the': 957162, 'that the fall': 846721, 'fall in demand': 296944, 'in demand is': 422131, 'demand is being': 235716, 'is being driven': 446079, 'being driven by': 125085, 'driven by faltering': 259278, 'by faltering consumer': 152543, 'faltering consumer confidence': 297494, 'consumer confidence due': 196893, 'confidence due to': 193852, 'to job insecurity': 908669, 'job insecurity and': 465891, 'insecurity and economic': 439144, 'and economic uncertainty': 61914, 'economic uncertainty amongst': 267348, 'uncertainty amongst other': 939647, 'amongst other bitcoin': 53135, 'other bitcoin via': 619897, 'bitcoin via insight': 131846, 'stayhometexas': 798547, 'seriously buy': 751553, 'buy this': 149357, 'this shirt': 890069, 'shirt at': 758969, 'at alonetogether': 97929, 'alonetogether quarantine': 46962, 'quarantine toiletpaperpanic': 692659, 'toiletpaper funny': 922019, 'funny virus': 341811, 'virus washyourhands': 959003, 'washyourhands stayhometexas': 967919, 'stayhometexas meme': 798548, 'meme chinaliedandpeopledied': 528305, 'chinaliedandpeopledied shirt': 177105, 'shirt toiletpapercrisis': 759019, 'toiletpapercrisis stayhome': 923067, 'stayhome china': 797964, 'seriously buy this': 751554, 'buy this shirt': 149362, 'this shirt at': 890070, 'shirt at alonetogether': 758970, 'at alonetogether quarantine': 97930, 'alonetogether quarantine toiletpaperpanic': 46963, 'quarantine toiletpaperpanic toiletpaper': 692660, 'toiletpaperpanic toiletpaper funny': 923263, 'toiletpaper funny virus': 922022, 'funny virus washyourhands': 341812, 'virus washyourhands stayhometexas': 959004, 'washyourhands stayhometexas meme': 967920, 'stayhometexas meme meme': 798549, 'meme meme chinaliedandpeopledied': 528335, 'meme chinaliedandpeopledied shirt': 528306, 'chinaliedandpeopledied shirt toiletpapercrisis': 177106, 'shirt toiletpapercrisis stayhome': 759020, 'toiletpapercrisis stayhome china': 923068, 'afterthought': 36738, 'having entered': 384051, 'entered in': 278356, 'social crisis': 779479, 'is exposing': 447663, 'the forgotten': 855702, 'forgotten key': 329444, 'worker most': 1007394, 'by we': 154699, 'we demand': 971265, 'demand supply': 236290, 'supply more': 825569, 'amp testing': 54629, 'for uk': 327405, 'uk care': 938240, 'worker should': 1007771, 'an afterthought': 55181, 'having entered in': 384052, 'entered in social': 278357, 'in social crisis': 428043, 'social crisis covid': 779480, '19 is exposing': 7969, 'is exposing the': 447665, 'exposing the forgotten': 292938, 'the forgotten key': 855704, 'forgotten key worker': 329445, 'key worker most': 473497, 'worker most affected': 1007395, 'most affected by': 542071, 'affected by we': 34331, 'by we demand': 154701, 'we demand supply': 971269, 'demand supply more': 236296, 'supply more food': 825571, 'more food amp': 539237, 'food amp testing': 313151, 'amp testing kit': 54630, 'kit for uk': 475550, 'for uk care': 327407, 'uk care home': 938241, 'care home care': 163991, 'home care worker': 400878, 'care worker should': 164304, 'worker should not': 1007776, 'not be an': 568353, 'be an afterthought': 113591, 'alcoholicsoap': 41225, 'beatcovid19': 118594, 'coronaphilippines': 205172, 'after touching': 36439, 'surface use': 828082, 'sanitizer frequently': 734937, 'frequently sanitizer': 332873, 'sanitizer alcoholicsoap': 734341, 'alcoholicsoap beatcovid19': 41226, 'beatcovid19 coronaphilippines': 118595, 'after touching surface': 36441, 'touching surface use': 926722, 'surface use sanitizer': 828083, 'use sanitizer frequently': 949541, 'sanitizer frequently sanitizer': 734941, 'frequently sanitizer alcoholicsoap': 332874, 'sanitizer alcoholicsoap beatcovid19': 734342, 'alcoholicsoap beatcovid19 coronaphilippines': 41227, 'touchland': 926759, 'how hand': 407961, 'sanitizer company': 734674, 'company touchland': 191255, 'touchland is': 926760, 'is tackling': 452519, 'tackling unprecedented': 831656, 'how hand sanitizer': 407962, 'hand sanitizer company': 375348, 'sanitizer company touchland': 734677, 'company touchland is': 191256, 'touchland is tackling': 926761, 'is tackling unprecedented': 452520, 'tackling unprecedented demand': 831657, 'unprecedented demand from': 943116, 'rebound': 703295, 'oil rebound': 597388, 'rebound jump': 703319, 'jump more': 467878, 'than 20': 840188, 'oil rebound jump': 597390, 'rebound jump more': 703320, 'jump more than': 467879, 'more than 20': 540552, 'impoverished': 419430, 'liberia': 488036, 'cassava': 166750, 'disease outbreak': 245199, 'outbreak affect': 627962, 'which can': 985730, 'be devastating': 114433, 'devastating for': 239588, 'for impoverished': 322499, 'impoverished ppl': 419431, 'ppl after': 668150, 'after ebola': 35605, 'ebola in': 266548, 'in liberia': 424693, 'liberia rice': 488037, 'price increased': 674795, '30 while': 17265, 'while cassava': 986678, 'cassava price': 166751, 'rose 150': 726040, '150 in': 3914, 'china increased': 176733, 'disease outbreak affect': 245200, 'outbreak affect the': 627963, 'affect the price': 34249, 'of food which': 583816, 'food which can': 317585, 'which can be': 985731, 'can be devastating': 157611, 'be devastating for': 114435, 'devastating for impoverished': 239589, 'for impoverished ppl': 322500, 'impoverished ppl after': 419432, 'ppl after ebola': 668151, 'after ebola in': 35606, 'ebola in liberia': 266549, 'in liberia rice': 424694, 'liberia rice price': 488038, 'rice price increased': 721114, 'price increased by': 674799, 'increased by more': 433233, 'than 30 while': 840228, '30 while cassava': 17266, 'while cassava price': 986679, 'cassava price rose': 166752, 'price rose 150': 676263, 'rose 150 in': 726041, '150 in the': 3916, 'price in china': 674673, 'in china increased': 421408, 'china increased by': 176734, 'increased by 20': 433224, 'basket is': 112360, 'latest mass': 481432, 'mass grocery': 519782, 'offer special': 594805, '60 considered': 20917, 'considered high': 195300, 'the share': 866787, 'or tag': 617321, 'market basket is': 516080, 'basket is the': 112363, 'is the latest': 452845, 'the latest mass': 859125, 'latest mass grocery': 481433, 'mass grocery store': 519783, 'store to offer': 810789, 'to offer special': 910848, 'offer special shopping': 594807, 'hour to those': 406039, 'to those 60': 917492, 'those 60 considered': 891770, '60 considered high': 20918, 'considered high risk': 195301, 'high risk for': 395356, 'for the share': 326678, 'the share with': 866791, 'share with or': 755356, 'with or tag': 999935, 'or tag friend': 617322, 'tag friend who': 831756, 'friend who will': 333910, 'who will want': 990007, 'want to know': 966060, 'priced': 677720, '697': 21532, '1220': 3054, 'gouging hotline': 359340, 'hotline if': 405246, 'see excessively': 745099, 'excessively priced': 289431, 'priced consumer': 677727, 'used primarily': 949992, 'primarily for': 678034, 'personal family': 652841, 'or household': 615683, 'household purpose': 406918, 'purpose to': 690158, 'prevent or': 671676, 'or respond': 616875, 'virus please': 958636, 'report these': 712367, 'these incident': 880159, 'incident to': 431440, 'ny ag': 577831, 'ag office': 36819, 'office at': 595373, '800 697': 22682, '697 1220': 21533, 'price gouging hotline': 674286, 'gouging hotline if': 359341, 'hotline if you': 405247, 'you see excessively': 1021036, 'see excessively priced': 745100, 'excessively priced consumer': 289432, 'priced consumer good': 677728, 'and service that': 71318, 'service that are': 752915, 'that are used': 842839, 'are used primarily': 91398, 'used primarily for': 949993, 'primarily for personal': 678036, 'for personal family': 324498, 'personal family or': 652842, 'family or household': 298130, 'or household purpose': 615687, 'household purpose to': 406919, 'purpose to prevent': 690161, 'to prevent or': 912076, 'prevent or respond': 671682, 'or respond to': 616876, '19 virus please': 11828, 'virus please report': 958640, 'please report these': 660391, 'report these incident': 712368, 'these incident to': 880161, 'incident to the': 431441, 'the ny ag': 861994, 'ny ag office': 577833, 'ag office at': 36821, 'office at 800': 595376, 'at 800 697': 97767, '800 697 1220': 22683, 'over say': 630602, 'chain expert': 170685, 'expert we': 292018, 'buying over say': 150858, 'over say supply': 630603, 'say supply chain': 739197, 'supply chain expert': 824953, 'chain expert we': 170688, 'expert we re': 292020, 'ht': 409741, 'machinelearning': 507426, 'impact in': 417701, 'europe ht': 283452, 'ht machinelearning': 409742, 'machinelearning ai': 507427, 'ai iot': 39319, 'iot ht': 444477, '19 business and': 5478, 'and consumer impact': 60390, 'consumer impact in': 197804, 'impact in europe': 417704, 'in europe ht': 422638, 'europe ht machinelearning': 283453, 'ht machinelearning ai': 409743, 'machinelearning ai iot': 507428, 'ai iot ht': 39320, 'paignton': 634209, 'advice given': 33395, 'given to': 351183, 'new mother': 559116, 'mother and': 543050, 'and father': 62720, 'father with': 300324, 'baby shopping': 106693, 'in paignton': 426425, 'paignton do': 634210, 'with vulnerable': 1002005, 'vulnerable baby': 960879, 'baby will': 106731, 'you pick': 1020327, 'pick item': 655659, 'item up': 463782, 'up off': 945510, 'shelf push': 757443, 'push the': 690323, 'trolley then': 932480, 'then pick': 877419, 'nurse or': 577438, 'or comfort': 614767, 'comfort baby': 187821, 'baby stayathomesavelives': 106705, 'advice given to': 33396, 'given to new': 351188, 'to new mother': 910566, 'new mother and': 559117, 'mother and father': 543051, 'and father with': 62722, 'father with baby': 300325, 'with baby shopping': 997351, 'baby shopping in': 106694, 'supermarket in paignton': 820956, 'in paignton do': 426426, 'paignton do you': 634211, 'do you all': 250613, 'you all need': 1016894, 'go shopping stay': 354127, 'shopping stay at': 763968, 'home with vulnerable': 402544, 'with vulnerable baby': 1002006, 'vulnerable baby will': 960880, 'baby will you': 106732, 'will you pick': 995392, 'you pick item': 1020328, 'pick item up': 655660, 'item up off': 463783, 'up off shelf': 945512, 'off shelf push': 594149, 'shelf push the': 757444, 'push the trolley': 690324, 'the trolley then': 870011, 'trolley then pick': 932482, 'then pick up': 877420, 'pick up and': 655702, 'up and nurse': 944350, 'and nurse or': 67895, 'nurse or comfort': 577440, 'or comfort baby': 614768, 'comfort baby stayathomesavelives': 187822, 'about sending': 26162, 'sending new': 750057, 'new one': 559198, 'me instead': 522987, 'of breaking': 580856, 'breaking one': 139014, 'just father': 468689, 'and husband': 64888, 'husband working': 411797, 'the risking': 865893, 'risking it': 724076, 'how about sending': 407301, 'about sending new': 26163, 'sending new one': 750058, 'new one to': 559204, 'one to me': 607279, 'to me instead': 909936, 'me instead of': 522988, 'instead of breaking': 440239, 'of breaking one': 580857, 'breaking one just': 139015, 'one just father': 606547, 'just father and': 468690, 'father and husband': 300276, 'and husband working': 64890, 'husband working in': 411798, 'during the risking': 263182, 'the risking it': 865894, 'risking it all': 724077, 'teenager': 836530, 'civic': 179491, 'huge shoutout': 410200, 'of teenager': 590636, 'teenager working': 836565, 'on minimum': 602131, 'wage stocking': 963955, 'stocking supermarket': 803601, 'shelf without': 757824, 'without complaint': 1002554, 'complaint significant': 192027, 'significant player': 769488, 'player in': 659310, 'in avoiding': 420640, 'avoiding civic': 105435, 'civic unrest': 179498, 'unrest 19': 943333, 'huge shoutout to': 410201, 'shoutout to the': 766815, 'to the thousand': 917130, 'thousand of teenager': 893467, 'of teenager working': 590638, 'teenager working long': 836567, 'long hour on': 501442, 'hour on minimum': 405818, 'on minimum wage': 602132, 'minimum wage stocking': 533243, 'wage stocking supermarket': 963956, 'stocking supermarket shelf': 803602, 'supermarket shelf without': 822569, 'shelf without complaint': 757825, 'without complaint significant': 1002555, 'complaint significant player': 192028, 'significant player in': 769489, 'player in avoiding': 659311, 'in avoiding civic': 420641, 'avoiding civic unrest': 105436, 'civic unrest 19': 179499, 'tip provided': 898878, '19 scammer': 10356, 'are some tip': 90292, 'some tip provided': 784068, 'tip provided by': 898879, 'provided by to': 686581, 'by to help': 154555, 'help you keep': 390977, 'keep the covid': 472034, 'covid 19 scammer': 213749, '19 scammer at': 10358, 'cbot': 168362, 'weaker': 974096, 'xinhua': 1013854, 'chicago board': 175650, 'board of': 133656, 'of trade': 592393, 'trade cbot': 928431, 'cbot agricultural': 168363, 'agricultural future': 38885, 'future fell': 342321, 'trading week': 928953, 'week ending': 976185, 'ending april': 276164, 'april with': 83721, 'with weaker': 1002047, 'weaker ethanol': 974103, 'ethanol demand': 282972, 'order amid': 618015, 'outbreak pushing': 628554, 'pushing down': 690406, 'down corn': 256658, 'price xinhua': 677679, 'chicago board of': 175651, 'board of trade': 133661, 'of trade cbot': 592395, 'trade cbot agricultural': 928432, 'cbot agricultural future': 168364, 'agricultural future fell': 38886, 'future fell for': 342324, 'fell for the': 303194, 'for the trading': 326739, 'the trading week': 869871, 'trading week ending': 928954, 'week ending april': 976187, 'ending april with': 276165, 'april with weaker': 83723, 'with weaker ethanol': 1002048, 'weaker ethanol demand': 974104, 'ethanol demand due': 282974, 'due to stay': 261972, 'home order amid': 401763, 'order amid the': 618017, '19 outbreak pushing': 9172, 'outbreak pushing down': 628555, 'pushing down corn': 690407, 'down corn price': 256659, 'corn price xinhua': 203589, 'this what': 891344, 'want on': 965871, 'hand close': 374870, 'is this what': 453132, 'this what you': 891351, 'you are waiting': 1017285, 'are waiting for': 91519, 'waiting for how': 964319, 'for how many': 322420, 'many more life': 514307, 'more life do': 539679, 'life do you': 488606, 'do you want': 250694, 'you want on': 1022148, 'want on your': 965873, 'your hand close': 1024178, 'hand close harper': 374871, 'dy of covid': 263748, 'hmrc': 398711, 'for further': 321819, 'further info': 342069, 'on related': 603131, 'shopping email': 762567, 'email text': 272317, 'text post': 839932, 'post claiming': 666041, 'nh hmrc': 561974, 'hmrc charity': 398712, 'charity involving': 173646, 'involving fake': 444395, 'fake donation': 296609, 'donation sanitisers': 254685, 'mask vaccine': 519474, 'vaccine dangerous': 951685, 'dangerous fake': 225737, 'fake treatment': 296726, 'treatment kit': 931100, 'kit refund': 475622, 'refund bogus': 706868, 'bogus investment': 134027, 'investment scheme': 444056, 'for further info': 321822, 'further info on': 342070, 'info on related': 437537, 'on related scam': 603132, 'related scam and': 708546, 'scam and online': 740009, 'online shopping email': 609107, 'shopping email text': 762568, 'email text post': 272325, 'text post claiming': 839933, 'post claiming to': 666042, 'from the nh': 337805, 'the nh hmrc': 861743, 'nh hmrc charity': 561975, 'hmrc charity involving': 398713, 'charity involving fake': 173647, 'involving fake donation': 444396, 'fake donation sanitisers': 296610, 'donation sanitisers mask': 254686, 'sanitisers mask vaccine': 734089, 'mask vaccine dangerous': 519475, 'vaccine dangerous fake': 951686, 'dangerous fake treatment': 225738, 'fake treatment kit': 296727, 'treatment kit refund': 931101, 'kit refund bogus': 475623, 'refund bogus investment': 706869, 'bogus investment scheme': 134028, 'recession with': 704410, 'profit in': 682771, 'in emerging': 422547, 'market claudia': 516171, 'panseri of': 639481, 'of ubs': 592556, 'management we': 512651, 'be negatively': 116064, 'negatively impacted': 556860, 'impacted company': 418094, 'on preserving': 602892, 'preserving their': 670728, 'their balance': 872547, 'earnings recession with': 264928, 'recession with profit': 704414, 'with profit in': 1000337, 'profit in developed': 682775, 'developed market hit': 239719, 'market hit much': 516524, 'much harder than': 544980, 'than in emerging': 840777, 'in emerging market': 422549, 'emerging market claudia': 273130, 'market claudia panseri': 516172, 'claudia panseri of': 180400, 'panseri of ubs': 639482, 'of ubs global': 592557, 'wealth management we': 974175, 'management we also': 512652, 'to be negatively': 901403, 'be negatively impacted': 116066, 'negatively impacted company': 556862, 'impacted company focus': 418095, 'focus on preserving': 311891, 'on preserving their': 602893, 'preserving their balance': 670729, 'their balance sheet': 872548, 'socialsecurity': 781124, 'ssa': 791629, 'while consumer': 986704, 'been focused': 121163, 'on staying': 603655, 'of scammer': 589369, 'been just': 121421, 'just busy': 468379, 'busy trying': 145000, 'steal consumer': 799174, 'consumer including': 197842, 'including their': 432193, 'their socialsecurity': 874746, 'socialsecurity share': 781125, 'share these': 755274, 'customer avoid': 222155, 'avoid ssa': 105292, 'ssa scam': 791632, 'while consumer have': 986706, 'consumer have been': 197707, 'have been focused': 379546, 'been focused on': 121164, 'focused on staying': 311965, 'on staying safe': 603657, 'staying safe healthy': 798693, 'safe healthy since': 729749, 'healthy since the': 387765, 'since the outbreak': 770898, 'outbreak of scammer': 628486, 'of scammer have': 589372, 'have been just': 379590, 'been just busy': 121422, 'just busy trying': 468380, 'busy trying to': 145001, 'trying to steal': 934879, 'to steal consumer': 915360, 'steal consumer including': 799175, 'consumer including their': 197844, 'including their socialsecurity': 432195, 'their socialsecurity share': 874747, 'socialsecurity share these': 781126, 'share these tip': 755277, 'tip from to': 898806, 'help your customer': 391017, 'your customer avoid': 1023407, 'customer avoid ssa': 222156, 'avoid ssa scam': 105294, 'hill asks': 396460, 'asks hoosier': 96142, 'hoosier to': 403384, 'pandemic spread': 636523, 'world for': 1009561, 'for tip': 327202, 'avoid phishing': 105223, 'file consumer': 305340, 'complaint click': 191953, 'curtis hill asks': 221819, 'hill asks hoosier': 396461, 'asks hoosier to': 96143, 'hoosier to be': 403385, 'to be wary': 901628, 'of scam the': 589368, 'scam the covid': 740403, '19 pandemic spread': 9477, 'pandemic spread around': 636525, 'the world for': 871872, 'world for tip': 1009566, 'for tip on': 327205, 'to avoid phishing': 900925, 'avoid phishing scam': 105224, 'phishing scam and': 654830, 'scam and information': 740003, 'and information on': 65223, 'how to file': 409021, 'to file consumer': 905827, 'file consumer complaint': 305341, 'consumer complaint click': 196849, 'complaint click here': 191954, 'garbageman': 343544, 'acknowledgement': 29114, 'saying is': 739614, 'is showing': 451892, 'showing who': 767562, 'who the': 989747, 'the important': 857977, 'society medical': 781265, 'worker cleaning': 1006656, 'cleaning staff': 181063, 'staff garbageman': 792483, 'garbageman farm': 343545, 'farm hand': 299131, 'daily wheel': 224887, 'wheel turning': 983055, 'turning applaud': 935905, 'applaud and': 82249, 'and agree': 57782, 'the acknowledgement': 848295, 'acknowledgement but': 29115, 'people keep saying': 648575, 'keep saying is': 471905, 'saying is showing': 739619, 'is showing who': 451900, 'showing who the': 767563, 'who the important': 989754, 'the important people': 857981, 'important people are': 418917, 'our society medical': 624827, 'society medical professional': 781266, 'store worker cleaning': 811468, 'worker cleaning staff': 1006659, 'cleaning staff garbageman': 181064, 'staff garbageman farm': 792484, 'garbageman farm hand': 343546, 'farm hand and': 299132, 'hand and all': 374749, 'those who keep': 892647, 'who keep the': 989155, 'keep the daily': 472035, 'the daily wheel': 852787, 'daily wheel turning': 224888, 'wheel turning applaud': 983056, 'turning applaud and': 935906, 'applaud and agree': 82250, 'and agree with': 57783, 'agree with the': 38682, 'with the acknowledgement': 1001193, 'the acknowledgement but': 848296, 'dollartree': 253123, 'scream': 742633, 'this selfish': 890016, 'selfish evil': 748088, 'evil lady': 288445, 'lady purchased': 478814, 'purchased every': 689772, 'single paper': 771362, 'from dollartree': 335188, 'dollartree and': 253124, 'then scream': 877504, 'scream go': 742637, 'go donald': 353474, 'this selfish evil': 890019, 'selfish evil lady': 748089, 'evil lady purchased': 288446, 'lady purchased every': 478815, 'purchased every single': 689773, 'every single paper': 286188, 'single paper product': 771363, 'paper product from': 640627, 'product from dollartree': 681215, 'from dollartree and': 335189, 'dollartree and then': 253125, 'and then scream': 73803, 'then scream go': 877505, 'scream go donald': 742638, 'go donald trump': 353475, 'can people': 159210, 'and emptying': 62087, 'emptying store': 275285, 'everyone if': 287026, 'just shop': 469779, 'shop usual': 760997, 'usual am': 950879, 'of hearing': 584519, 'hearing that': 388238, 'very sick': 955531, 'sick mother': 768516, 'mother cannot': 543070, 'can people please': 159215, 'please stop buying': 660570, 'buying and emptying': 149902, 'and emptying store': 62091, 'emptying store in': 275286, 'store in panic': 808369, 'in panic there': 426494, 'for everyone if': 321215, 'everyone if we': 287030, 'if we just': 415289, 'we just shop': 972121, 'just shop usual': 469782, 'shop usual am': 760998, 'usual am so': 950880, 'am so sick': 50412, 'of this so': 592040, 'this so sick': 890222, 'sick of not': 768538, 'of not being': 587080, 'buy food so': 148672, 'food so sick': 316663, 'sick of hearing': 768536, 'of hearing that': 584521, 'hearing that my': 388241, 'that my parent': 845277, 'my parent and': 549687, 'parent and my': 641573, 'and my very': 67393, 'my very sick': 550496, 'very sick mother': 955534, 'sick mother cannot': 768517, 'mother cannot find': 543071, 'cannot find food': 161838, 'clerk go': 181708, 'work every': 1005108, 'and worry': 75904, 'making contract': 511001, 'contract with': 201720, 'and losing': 66400, 'losing my': 503574, 'and infecting': 65196, 'infecting my': 436687, 'who already': 988050, 'have serious': 382471, 'serious health': 751400, 'health problem': 386752, 'store clerk go': 807010, 'clerk go to': 181709, 'to work every': 918716, 'work every day': 1005109, 'day and worry': 227297, 'and worry about': 75905, 'worry about making': 1010644, 'about making contract': 25690, 'making contract with': 511002, 'contract with customer': 201721, 'with customer and': 997897, 'customer and losing': 222084, 'and losing my': 66402, 'losing my life': 503577, 'my life or': 549030, 'life or going': 488953, 'or going home': 615494, 'going home and': 355198, 'home and infecting': 400651, 'and infecting my': 65197, 'infecting my family': 436689, 'my family who': 548234, 'family who already': 298374, 'who already have': 988052, 'already have serious': 47431, 'have serious health': 382474, 'serious health problem': 751401, 'jen': 465061, 'faq': 298663, 'hi jen': 394680, 'jen see': 465064, 'see question': 745620, 'consumer faq': 197447, 'faq on': 298676, 'food thanks': 317082, 'hi jen see': 394682, 'jen see question': 465065, 'see question of': 745621, 'our consumer faq': 622533, 'consumer faq on': 197449, 'faq on covid': 298677, 'and food thanks': 63098, 'moderate': 535345, 'cuomo say': 220428, 'cannot handle': 161936, 'this at': 886446, 'at moderate': 99759, 'moderate level': 535351, 'level potus': 487680, 'potus say': 667292, 'say got': 738696, 'got business': 358458, 'make ppe': 510346, 'you equipment': 1018435, 'equipment you': 279878, 'you left': 1019584, 'left it': 485528, 'warehouse who': 966802, 'seems better': 746760, 'at handling': 98846, 'handling qanon': 376385, 'cuomo say we': 220429, 'say we cannot': 739454, 'we cannot handle': 971064, 'cannot handle this': 161939, 'handle this at': 376284, 'this at moderate': 886451, 'at moderate level': 99760, 'moderate level potus': 535352, 'level potus say': 487681, 'potus say got': 667293, 'say got business': 738697, 'got business that': 358459, 'business that do': 144478, 'do not make': 249781, 'not make ppe': 570504, 'make ppe and': 510347, 'ppe and sanitizer': 667906, 'sanitizer to make': 735934, 'make and to': 509692, 'and to give': 74172, 'give you equipment': 350855, 'you equipment you': 1018436, 'equipment you left': 279880, 'you left it': 1019585, 'left it in': 485530, 'it in warehouse': 458753, 'in warehouse who': 430688, 'warehouse who seems': 966803, 'who seems better': 989578, 'seems better at': 746761, 'better at handling': 128202, 'at handling qanon': 98847, 'breakthrough': 139126, 'timely': 898479, 'major breakthrough': 509249, 'breakthrough the': 139129, 'announced an': 76914, 'the gazette': 856186, 'gazette of': 344766, 'india fixing': 434403, 'fixing the': 309863, 'now ply': 575561, 'at ply': 100136, '10 hand': 1453, 'at 100': 97412, 'per 200': 650673, 'ml bottle': 534709, 'bottle timely': 136338, 'timely action': 898480, 'action by': 29981, 'prevent 19': 671574, 'major breakthrough the': 509250, 'breakthrough the government': 139130, 'india ha just': 434443, 'ha just announced': 371041, 'just announced an': 468190, 'announced an order': 76917, 'an order in': 56700, 'order in the': 618324, 'in the gazette': 429231, 'the gazette of': 856187, 'gazette of india': 344767, 'of india fixing': 585102, 'india fixing the': 434404, 'fixing the retail': 309866, 'the retail price': 865725, 'sanitizers and mask': 736202, 'and mask now': 66758, 'mask now ply': 519031, 'now ply mask': 575563, 'ply mask at': 661775, 'mask at ply': 518430, 'at ply surgical': 100137, 'mask at 10': 518409, 'at 10 hand': 97403, '10 hand sanitizers': 1454, 'hand sanitizers at': 375683, 'sanitizers at 100': 736222, 'at 100 per': 97416, '100 per 200': 2025, 'per 200 ml': 650674, '200 ml bottle': 13505, 'ml bottle timely': 534713, 'bottle timely action': 136339, 'timely action by': 898481, 'action by the': 29983, 'the government to': 856614, 'government to prevent': 360728, 'to prevent 19': 912043, 'chest': 175557, 'clinic': 182289, 'ekg': 270422, 'chest pain': 175567, 'pain and': 634216, 'and trouble': 74465, 'trouble breathing': 932593, 'breathing going': 139226, 'up clinic': 944607, 'clinic to': 182313, 'flu get': 311413, 'an ekg': 55631, 'ekg and': 270423, 'possibly be': 665897, '19 although': 4936, 'although ve': 49378, 'isolation went': 455499, 'store day': 807262, 'risk wish': 724023, 'luck more': 506466, 'more later': 539658, 'chest pain and': 175568, 'pain and trouble': 634218, 'and trouble breathing': 74466, 'trouble breathing going': 932594, 'breathing going to': 139227, 'going to drive': 355578, 'drive up clinic': 259240, 'up clinic to': 944608, 'clinic to be': 182314, 'for the flu': 326440, 'the flu get': 855459, 'flu get an': 311414, 'get an ekg': 346541, 'an ekg and': 55632, 'ekg and possibly': 270424, 'and possibly be': 69218, 'possibly be tested': 665899, 'tested for 19': 839301, 'for 19 although': 318697, '19 although ve': 4938, 'although ve been': 49379, 've been in': 952896, 'been in isolation': 121353, 'in isolation went': 424213, 'isolation went to': 455500, 'grocery store day': 365321, 'store day ago': 807263, 'day ago and': 227195, 'ago and high': 38338, 'and high risk': 64558, 'high risk wish': 395379, 'risk wish me': 724024, 'me luck more': 523129, 'luck more later': 506467, 'immunosuppressed': 417492, 'mass panic': 519821, 'panic around': 637351, 'nut covid': 577658, '19 isn': 8087, 'isn deadly': 454468, 'deadly we': 229310, 'think don': 885210, 'don hoard': 253633, 'hoard mask': 398832, 'food figure': 314465, 'figure out': 305216, 'the immunosuppressed': 857924, 'immunosuppressed stay': 417493, 'healthy covid': 387566, 'the mass panic': 860248, 'mass panic around': 519824, 'panic around the': 637353, 'world is nut': 1009708, 'is nut covid': 450373, 'nut covid 19': 577659, 'covid 19 isn': 213293, '19 isn deadly': 8090, 'isn deadly we': 454469, 'deadly we think': 229312, 'we think don': 973530, 'think don hoard': 885211, 'don hoard mask': 253640, 'hoard mask and': 398833, 'mask and food': 518326, 'and food figure': 63048, 'food figure out': 314466, 'figure out how': 305217, 'to help senior': 907623, 'help senior and': 390509, 'senior and the': 750211, 'and the immunosuppressed': 73416, 'the immunosuppressed stay': 857925, 'immunosuppressed stay healthy': 417494, 'stay healthy covid': 796896, 'healthy covid 19': 387567, '19 are we': 5208, 'are we the': 91597, 'fleeing': 310305, 'tinderbox': 898578, 'exacerbating': 288682, 'tension': 837972, 've spent': 953586, 'last couple': 480164, 'day reporting': 228275, 'reporting on': 712727, 'on city': 599927, 'city people': 179319, 'people fleeing': 647929, 'fleeing to': 310315, 'more remote': 540224, 'area this': 92231, 'just disaster': 468598, 'disaster tourism': 244257, 'tourism it': 926993, 'it far': 457949, 'more widespread': 540982, 'widespread and': 991824, 'it becoming': 456780, 'becoming tinderbox': 120345, 'tinderbox exacerbating': 898579, 'exacerbating tension': 288685, 'tension between': 837979, 'between rich': 128871, 'rich poor': 721252, 'poor urban': 664317, 'urban rural': 948124, 'rural thread': 728267, 've spent the': 953590, 'spent the last': 789173, 'the last couple': 859005, 'last couple day': 480165, 'couple day reporting': 211580, 'day reporting on': 228276, 'reporting on city': 712729, 'on city people': 599928, 'city people fleeing': 179320, 'people fleeing to': 647930, 'fleeing to more': 310316, 'to more remote': 910264, 'more remote area': 540225, 'remote area this': 710696, 'area this is': 92232, 'not just disaster': 570219, 'just disaster tourism': 468599, 'disaster tourism it': 244258, 'tourism it far': 926994, 'it far more': 457951, 'far more widespread': 298855, 'more widespread and': 540983, 'widespread and it': 991825, 'and it becoming': 65490, 'it becoming tinderbox': 456782, 'becoming tinderbox exacerbating': 120346, 'tinderbox exacerbating tension': 898580, 'exacerbating tension between': 288686, 'tension between rich': 837980, 'between rich poor': 128873, 'rich poor urban': 721253, 'poor urban rural': 664318, 'urban rural thread': 948125, 'wtop yes': 1013420, 'protection wtop yes': 685693, 'cheapest': 174300, 'servo': 753241, 'fifty': 304576, 'petrol is': 653746, 'the cheapest': 850735, 'cheapest price': 174309, 'in 20': 419736, 'year servo': 1014943, 'servo have': 753246, 'been selling': 121912, 'selling fuel': 749264, 'fuel with': 340317, 'price varying': 677294, 'varying by': 952680, '50 cent': 19649, 'litre some': 495186, 'some servo': 783833, 'servo are': 753242, 'making fifty': 511069, 'fifty percent': 304581, 'percent profit': 651172, 'profit at': 682667, 'income because': 432298, 'profiteering asshole': 683005, 'petrol is now': 653747, 'at the cheapest': 100908, 'the cheapest price': 850740, 'cheapest price in': 174310, 'price in 20': 674648, 'in 20 year': 419742, '20 year servo': 13425, 'year servo have': 1014944, 'servo have been': 753247, 'have been selling': 379674, 'been selling fuel': 121914, 'selling fuel with': 749265, 'fuel with price': 340318, 'with price varying': 1000318, 'price varying by': 677295, 'varying by 50': 952681, 'by 50 cent': 151661, '50 cent per': 19652, 'cent per litre': 169110, 'per litre some': 650930, 'litre some servo': 495187, 'some servo are': 783834, 'servo are making': 753243, 'are making fifty': 87980, 'making fifty percent': 511070, 'fifty percent profit': 304582, 'percent profit at': 651173, 'profit at time': 682669, 'time when hundred': 898287, 'people are struggling': 647094, 'struggling with no': 814544, 'no income because': 564490, 'income because of': 432299, '19 stop profiteering': 10869, 'stop profiteering asshole': 804942, 'tolietpaper': 923822, 'think ur': 885730, 'ur causing': 947986, 'causing more': 168071, 'panic then': 638691, 'then what': 877741, 'what already': 981012, 'already out': 47546, 'there hospital': 878484, 'are slow': 90174, 'slow case': 774326, 'low understand': 505712, 'understand to': 940794, 'be proactive': 116542, 'proactive but': 679152, 'shelf get': 757116, 'get ur': 348573, 'ur shit': 948058, 'shit together': 759267, 'together 19': 920661, '19 nofood': 8810, 'nofood tolietpaper': 566183, 'think ur causing': 885731, 'ur causing more': 947987, 'causing more panic': 168072, 'more panic then': 539989, 'panic then what': 638693, 'then what already': 877742, 'what already out': 981013, 'already out there': 47548, 'out there hospital': 627489, 'there hospital are': 878485, 'hospital are slow': 404307, 'are slow case': 90175, 'slow case are': 774327, 'case are low': 165641, 'are low understand': 87938, 'low understand to': 505714, 'understand to be': 940795, 'to be proactive': 901456, 'be proactive but': 116543, 'proactive but there': 679153, 'but there no': 147468, 'there no food': 878809, 'no food on': 564265, 'the shelf get': 866842, 'shelf get ur': 757119, 'get ur shit': 348575, 'ur shit together': 948059, 'shit together 19': 759268, 'together 19 nofood': 920663, '19 nofood tolietpaper': 8811, 'nit': 563377, 'only am': 610074, 'to dodge': 904612, 'dodge at': 251270, 'community pharmacy': 190039, 'pharmacy now': 654381, 'now having': 574892, 'dodge nit': 251278, 'nit nit': 563380, 'nit how': 563378, 'doe my': 251457, 'child manage': 176139, 'manage this': 512455, 'this in': 888033, 'lockdown why': 500142, 'why me': 991185, 'me why': 523972, 'why suppose': 991394, 'suppose worst': 827337, 'thing could': 884252, 'could happen': 209233, 'not only am': 570775, 'only am having': 610076, 'am having to': 50121, 'having to dodge': 384342, 'to dodge at': 904613, 'dodge at work': 251271, 'at work at': 101592, 'supermarket to from': 823373, 'to from the': 906268, 'from the community': 337649, 'the community pharmacy': 851291, 'community pharmacy now': 190040, 'pharmacy now having': 654382, 'now having to': 574897, 'to dodge nit': 904616, 'dodge nit nit': 251279, 'nit nit how': 563381, 'nit how doe': 563379, 'how doe my': 407744, 'doe my child': 251458, 'my child manage': 547679, 'child manage this': 176140, 'manage this in': 512456, 'this in lockdown': 888045, 'in lockdown why': 424859, 'lockdown why me': 500143, 'why me why': 991186, 'me why suppose': 523977, 'why suppose worst': 991395, 'suppose worst thing': 827338, 'worst thing could': 1011282, 'thing could happen': 884254, 'snotty': 776389, 'unwashed': 944062, 'just queuing': 469531, 'supermarket woman': 823959, 'front take': 338674, 'take snotty': 832591, 'snotty old': 776390, 'old tissue': 598503, 'tissue out': 899191, 'handbag blow': 376040, 'blow her': 133311, 'her nose': 392231, 'and place': 69045, 'place said': 657673, 'said tissue': 731509, 'tissue straight': 899215, 'straight back': 812205, 'into her': 442619, 'handbag she': 376045, 'she then': 756379, 'then put': 877452, 'put her': 690597, 'her unwashed': 392495, 'unwashed hand': 944065, 'back onto': 107209, 'trolley she': 932466, 'she pushing': 756274, 'just queuing to': 469533, 'queuing to go': 694239, 'go into my': 353759, 'into my local': 442783, 'local supermarket woman': 498619, 'supermarket woman in': 823961, 'in front take': 423137, 'front take snotty': 338675, 'take snotty old': 832592, 'snotty old tissue': 776391, 'old tissue out': 598504, 'tissue out of': 899192, 'out of her': 626752, 'of her handbag': 584574, 'her handbag blow': 392092, 'handbag blow her': 376041, 'blow her nose': 133312, 'her nose and': 392232, 'nose and place': 567872, 'and place said': 69050, 'place said tissue': 657674, 'said tissue straight': 731510, 'tissue straight back': 899216, 'straight back into': 812208, 'back into her': 107111, 'into her handbag': 442621, 'her handbag she': 392093, 'handbag she then': 376046, 'she then put': 756380, 'then put her': 877453, 'put her unwashed': 690599, 'her unwashed hand': 392496, 'unwashed hand back': 944066, 'hand back onto': 374817, 'back onto the': 107210, 'onto the the': 611683, 'the the handle': 869384, 'handle of the': 376242, 'of the trolley': 591558, 'the trolley she': 870010, 'trolley she pushing': 932467, 'gifting': 350059, 'foodgift': 317918, 'foodgifting': 317921, 'foodandbeverage': 317744, 'sale from': 732234, 'from fact': 335382, 'fact consumer': 295699, 'and corporate': 60576, 'corporate food': 207285, 'food gifting': 314664, 'gifting in': 350060, 'the 7th': 848192, '7th edition': 22524, 'edition foodgift': 268613, 'foodgift foodgifting': 317919, 'foodgifting foodandbeverage': 317922, 'foodandbeverage candy': 317745, 'candy chocolate': 161332, 'chocolate snack': 177703, 'snack amazon': 776000, 'now on sale': 575432, 'on sale from': 603266, 'sale from fact': 732235, 'from fact consumer': 335383, 'fact consumer and': 295700, 'consumer and corporate': 196205, 'and corporate food': 60579, 'corporate food gifting': 207286, 'food gifting in': 314665, 'gifting in the': 350061, 'in the 7th': 428960, 'the 7th edition': 848193, '7th edition foodgift': 22525, 'edition foodgift foodgifting': 268614, 'foodgift foodgifting foodandbeverage': 317920, 'foodgifting foodandbeverage candy': 317923, 'foodandbeverage candy chocolate': 317746, 'candy chocolate snack': 161333, 'chocolate snack amazon': 177704, 'democracy': 236678, 'general lockdown': 345399, 'lockdown announced': 499159, 'with report': 1000460, 'food buying': 313850, 'buying if': 150512, 'that poor': 845786, 'country the': 211123, 'only successful': 611216, 'successful arab': 816230, 'arab spring': 83836, 'spring democracy': 791197, 'democracy need': 236687, 'another blow': 77516, 'general lockdown announced': 345400, 'lockdown announced in': 499161, 'announced in today': 76964, 'in today with': 430170, 'today with report': 920559, 'with report of': 1000462, 'report of panic': 712117, 'of panic food': 587726, 'panic food buying': 638110, 'food buying if': 313852, 'buying if that': 150514, 'if that poor': 414943, 'that poor country': 845787, 'poor country the': 664156, 'country the only': 211130, 'the only successful': 862347, 'only successful arab': 611217, 'successful arab spring': 816231, 'arab spring democracy': 83837, 'spring democracy need': 791198, 'democracy need another': 236688, 'need another blow': 554447, 'touted': 927069, 'arena': 92608, 'major business': 509251, 'business trump': 144576, 'trump touted': 933933, 'touted saying': 927074, 'supply not': 825596, 'really online': 702472, 'ordering no': 618986, 'no critical': 563930, 'supply avail': 824825, 'avail online': 104112, 'best for': 127693, 'socialdistancing need': 780549, 'that arena': 842857, 'arena supply': 92611, 'supply via': 826065, 'online coronavir': 608060, 'all major business': 43432, 'major business trump': 509252, 'business trump touted': 144577, 'trump touted saying': 933934, 'touted saying they': 927075, 'they have supply': 882383, 'have supply not': 382861, 'supply not really': 825601, 'not really online': 571242, 'really online ordering': 702473, 'online ordering no': 608710, 'ordering no critical': 618987, 'no critical supply': 563931, 'critical supply avail': 218677, 'supply avail online': 824826, 'avail online shopping': 104113, 'is best for': 446141, 'best for socialdistancing': 127695, 'for socialdistancing need': 325712, 'socialdistancing need help': 780550, 'need help in': 554986, 'help in that': 389908, 'in that arena': 428912, 'that arena supply': 842858, 'arena supply via': 92612, 'supply via online': 826066, 'via online coronavir': 956134, 'weirdly': 977828, 'wasabi': 967417, 'tomorrow venture': 924227, 'store ve': 811039, 'been weirdly': 122367, 'weirdly anxious': 977829, 'she ll': 756196, 'find fully': 306932, 'stocked shelf': 803386, 'shelf or': 757381, 'but wasabi': 147727, 'wasabi pea': 967418, 'pea left': 645979, 'buy either': 148558, 'either way': 270405, 'way ll': 969685, 'll feel': 496755, 'better knowing': 128349, 'knowing what': 477146, 'tomorrow venture out': 924228, 'grocery store ve': 365909, 'store ve been': 811041, 've been weirdly': 952961, 'been weirdly anxious': 122368, 'weirdly anxious about': 977830, 'anxious about what': 78831, 'about what she': 26896, 'what she ll': 982166, 'she ll find': 756197, 'll find fully': 496766, 'find fully stocked': 306933, 'fully stocked shelf': 341100, 'stocked shelf or': 803390, 'shelf or long': 757383, 'or long line': 615999, 'long line to': 501509, 'get in and': 347289, 'in and nothing': 420377, 'and nothing but': 67800, 'nothing but wasabi': 572965, 'but wasabi pea': 147728, 'wasabi pea left': 967419, 'pea left to': 645980, 'left to buy': 485683, 'to buy either': 902220, 'buy either way': 148559, 'either way ll': 270409, 'way ll feel': 969687, 'll feel better': 496756, 'feel better knowing': 302582, 'better knowing what': 128350, 'knowing what we': 477151, 'what we re': 982562, 'we re facing': 972872, 'of stripping': 590305, 'stripping the': 813921, 'bare those': 110974, 'could perhaps': 209497, 'perhaps start': 651635, 'start using': 794621, 'using delivery': 950449, 'delivery apps': 233697, 'apps to': 83323, 'support their': 826892, 'restaurant let': 716547, 'all try': 45293, 'help each': 389616, 'can inittogether': 158754, 'inittogether panicbuying': 438682, 'instead of stripping': 440325, 'of stripping the': 590306, 'stripping the supermarket': 813924, 'supermarket shelf bare': 822433, 'shelf bare those': 756871, 'bare those who': 110975, 'afford it could': 34711, 'it could perhaps': 457366, 'could perhaps start': 209498, 'perhaps start using': 651636, 'start using delivery': 794622, 'using delivery apps': 950450, 'delivery apps to': 233706, 'apps to support': 83327, 'to support their': 915976, 'support their local': 826901, 'their local restaurant': 873874, 'local restaurant let': 498340, 'restaurant let all': 716548, 'let all try': 486575, 'all try and': 45294, 'try and help': 934444, 'and help each': 64445, 'help each other': 389617, 'other in any': 620406, 'we can inittogether': 970967, 'can inittogether panicbuying': 158755, 'ish': 454212, 'scooping': 742320, 'whilst many': 987653, 'you young': 1022491, 'young ish': 1022607, 'ish healthy': 454215, 'healthy ish': 387670, 'ish people': 454219, 'around scooping': 93475, 'scooping up': 742321, 'amp take': 54614, 'consider the': 195133, 'vulnerable ill': 961007, 'ill amp': 416099, 'the foodbanks': 855632, 'foodbanks that': 317849, 'struggling right': 814485, 'whilst many of': 987655, 'of you young': 593435, 'you young ish': 1022492, 'young ish healthy': 1022608, 'ish healthy ish': 454216, 'healthy ish people': 387671, 'ish people are': 454220, 'are going around': 86877, 'going around scooping': 355029, 'around scooping up': 93476, 'scooping up all': 742322, 'the food amp': 855530, 'food amp take': 313150, 'amp take minute': 54616, 'minute to consider': 533869, 'to consider the': 903239, 'consider the elderly': 195137, 'the elderly vulnerable': 854154, 'elderly vulnerable ill': 270931, 'vulnerable ill amp': 961008, 'ill amp the': 416100, 'amp the foodbanks': 54650, 'the foodbanks that': 855633, 'foodbanks that are': 317850, 'that are struggling': 842822, 'are struggling right': 90592, 'struggling right now': 814486, 'messaging': 529507, 'bayside': 113011, 'you hope': 1019247, 'hope local': 403537, 'government take': 360656, 'on some': 603553, 'some responsibility': 783749, 'responsibility for': 715944, 'for messaging': 323416, 'messaging in': 529510, 'space wa': 787185, 'many teenager': 514779, 'teenager were': 836558, 'in bayside': 420735, 'bayside the': 113012, 'the bubble': 850069, 'bubble won': 141625, 'won protect': 1003884, 'thank you hope': 841748, 'you hope local': 1019249, 'hope local government': 403538, 'local government take': 498031, 'government take on': 360658, 'take on some': 832408, 'on some responsibility': 603568, 'some responsibility for': 783750, 'responsibility for messaging': 715946, 'for messaging in': 323417, 'messaging in public': 529511, 'in public space': 427100, 'public space wa': 688331, 'space wa shocked': 787186, 'wa shocked at': 963191, 'shocked at how': 759555, 'how many teenager': 408285, 'many teenager were': 514780, 'teenager were in': 836559, 'were in the': 979782, 'the supermarket yesterday': 868922, 'supermarket yesterday in': 824173, 'yesterday in bayside': 1015773, 'in bayside the': 420736, 'bayside the bubble': 113013, 'the bubble won': 850071, 'bubble won protect': 141626, 'won protect you': 1003885, 'protect you from': 685049, 'you from covid': 1018714, 'tightening': 895850, 'financing': 306730, 'the twin': 870129, 'twin shock': 936579, 'shock of': 759481, 'have triggered': 383405, 'triggered tightening': 931930, 'tightening in': 895853, 'in financing': 422892, 'financing condition': 306731, 'condition and': 193392, 'potential wave': 667177, 'credit distress': 216376, 'distress in': 247928, 'european market': 283589, 'market view': 517299, 'our stress': 624973, 'stress scenario': 813389, 'scenario of': 741277, 'of varying': 592747, 'varying severity': 952686, 'severity here': 754125, 'the twin shock': 870133, 'twin shock of': 936580, 'shock of the': 759483, 'price have triggered': 674467, 'have triggered tightening': 383408, 'triggered tightening in': 931931, 'tightening in financing': 895854, 'in financing condition': 422893, 'financing condition and': 306732, 'condition and potential': 193400, 'and potential wave': 69265, 'potential wave of': 667178, 'wave of credit': 969371, 'of credit distress': 582132, 'credit distress in': 216377, 'distress in the': 247929, 'in the european': 429180, 'the european market': 854584, 'european market view': 283592, 'market view our': 517300, 'view our stress': 957147, 'our stress scenario': 624974, 'stress scenario of': 813391, 'scenario of varying': 741280, 'of varying severity': 592748, 'varying severity here': 952687, 'disabilitysucks': 243867, 'finally getting': 306017, 'getting money': 349116, 'money tomorrow': 537129, 'order since': 618582, 'since mostly': 770755, 'mostly homebound': 542963, 'homebound and': 402605, 'cannot shop': 162091, 'and virtually': 74972, 'virtually everything': 957838, 'stock no': 802495, 'no meat': 564744, 'meat no': 525661, 'pasta very': 643842, 'very little': 955316, 'else no': 271800, 'idea what': 413230, 'son after': 785344, 'after tomorrow': 36433, 'tomorrow disabilitysucks': 924067, 'finally getting money': 306018, 'getting money tomorrow': 349117, 'money tomorrow and': 537130, 'tomorrow and went': 924028, 'place my food': 657583, 'my food order': 548386, 'food order since': 315683, 'order since mostly': 618583, 'since mostly homebound': 770756, 'mostly homebound and': 542964, 'homebound and cannot': 402606, 'and cannot shop': 59519, 'cannot shop and': 162093, 'shop and virtually': 759877, 'and virtually everything': 74973, 'virtually everything is': 957839, 'everything is out': 287881, 'of stock no': 590175, 'stock no meat': 802496, 'no meat no': 564751, 'meat no pasta': 525664, 'no pasta very': 565078, 'pasta very little': 643843, 'very little of': 955324, 'little of anything': 495491, 'of anything else': 580288, 'anything else no': 80748, 'else no idea': 271802, 'no idea what': 564471, 'idea what going': 413231, 'going to feed': 355596, 'feed my son': 302340, 'my son after': 550149, 'son after tomorrow': 785345, 'after tomorrow disabilitysucks': 36434, 'clearer': 181440, '3p': 18378, 'hardware': 378314, 'plumber': 661230, 'electrician': 271139, 'teller': 837166, 'laundromat': 482089, 'more job': 539638, 'job deemed': 465775, 'deemed necessary': 231829, 'be clearer': 114107, 'clearer at': 181441, 'at 3p': 97634, '3p health': 18379, 'employee pharmacist': 274112, 'pharmacist hardware': 654141, 'hardware store': 378320, 'store plumber': 809600, 'plumber electrician': 661231, 'electrician day': 271140, 'day care': 227433, 'provider bank': 686699, 'bank teller': 110228, 'teller restaurant': 837169, 'restaurant staff': 716705, 'staff agriculture': 792088, 'agriculture sanitation': 39025, 'sanitation laundromat': 733851, 'laundromat open': 482096, 'more job deemed': 539639, 'job deemed necessary': 465776, 'deemed necessary and': 231830, 'necessary and all': 553950, 'all of this': 43719, 'of this will': 592072, 'will be clearer': 992398, 'be clearer at': 114108, 'clearer at 3p': 181442, 'at 3p health': 97635, '3p health care': 18380, 'store employee pharmacist': 807522, 'employee pharmacist hardware': 274115, 'pharmacist hardware store': 654142, 'hardware store plumber': 378328, 'store plumber electrician': 809601, 'plumber electrician day': 661232, 'electrician day care': 271141, 'day care provider': 227434, 'care provider bank': 164174, 'provider bank teller': 686700, 'bank teller restaurant': 110229, 'teller restaurant staff': 837170, 'restaurant staff agriculture': 716706, 'staff agriculture sanitation': 792089, 'agriculture sanitation laundromat': 39026, 'sanitation laundromat open': 733852, 'gown': 361362, 'liason': 487986, 'fire department': 308067, 'department hospital': 237206, 'my community': 547762, 'across our': 29416, 'asking it': 96016, 'it citizen': 457136, 'citizen for': 178895, 'mask gown': 518765, 'gown sanitizer': 361388, 'sanitizer why': 736099, 'why why': 991551, 'you fire': 1018587, 'fire the': 308121, 'national pandemic': 552574, 'pandemic team': 636623, 'chinese liason': 177291, 'liason where': 487987, 'test ppeshortage': 839136, 'fire department hospital': 308068, 'department hospital in': 237207, 'hospital in my': 404472, 'in my community': 425555, 'my community across': 547763, 'community across our': 189697, 'across our country': 29419, 'our country are': 622581, 'country are asking': 210458, 'are asking it': 84642, 'asking it citizen': 96017, 'it citizen for': 457137, 'citizen for mask': 178897, 'for mask gown': 323272, 'mask gown sanitizer': 518768, 'gown sanitizer why': 361389, 'sanitizer why why': 736100, 'why why did': 991553, 'why did you': 990922, 'did you fire': 240927, 'you fire the': 1018588, 'fire the national': 308122, 'the national pandemic': 861301, 'national pandemic team': 552575, 'pandemic team the': 636625, 'team the chinese': 835792, 'the chinese liason': 850861, 'chinese liason where': 177292, 'liason where are': 487988, 'where are the': 984739, 'are the mask': 90861, 'the mask where': 860233, 'mask where are': 519550, 'are the test': 90918, 'the test ppeshortage': 869318, 'coronajokes': 205019, 'great place': 362892, 'meet woman': 527657, 'woman now': 1003563, 'it basically': 456710, 'basically the': 112166, 'meet them': 527622, 'them coronajokes': 875561, 'used to hear': 950059, 'hear that the': 387998, 'that the produce': 846812, 'grocery store wa': 365921, 'store wa great': 811114, 'wa great place': 962251, 'great place to': 362893, 'place to meet': 657760, 'to meet woman': 910066, 'meet woman now': 527658, 'woman now it': 1003564, 'now it basically': 575106, 'it basically the': 456711, 'basically the only': 112170, 'only place to': 610987, 'to meet them': 910057, 'meet them coronajokes': 527623, 'people anyway': 646897, 'anyway we': 81060, 'am happy': 50114, 'chudy the': 178302, 'leader at': 483433, 'the portage': 864046, 'help people anyway': 390283, 'people anyway we': 646899, 'anyway we can': 81061, 'can so am': 159655, 'so am happy': 776489, 'am happy we': 50117, 'happy we are': 377725, 'we are able': 970463, 'help out in': 390252, 'jennifer chudy the': 465095, 'chudy the team': 178303, 'the team leader': 869209, 'team leader at': 835720, 'leader at the': 483436, 'at the portage': 101056, 'the portage store': 864047, 'issuing': 456120, 'state regulatory': 795889, 'regulatory agency': 708162, 'are issuing': 87591, 'issuing guidance': 456127, 'guidance to': 368292, 'finance company': 306175, 'company during': 190621, 'state regulatory agency': 795890, 'regulatory agency are': 708163, 'agency are issuing': 37985, 'are issuing guidance': 87593, 'issuing guidance to': 456128, 'guidance to consumer': 368293, 'to consumer finance': 903298, 'consumer finance company': 197474, 'finance company during': 306177, 'company during outbreak': 190622, 'thecustomerwhisperer': 872315, 'to on': 910893, 'on about': 599135, 'retail impact': 718195, 'buying non': 150764, 'non food': 566388, 'sale online': 732422, 'delivery what': 234734, 'will retail': 994682, 'retail look': 718298, 'look post': 502570, 'the peak': 863424, 'peak what': 646119, 'next for': 561367, 'supermarket thecustomerwhisperer': 823260, 'speaking to on': 787773, 'to on about': 910894, 'on about the': 599140, 'about the retail': 26501, 'the retail impact': 865719, 'retail impact of': 718196, 'panic buying non': 637821, 'buying non food': 150766, 'non food sale': 566395, 'food sale online': 316290, 'sale online delivery': 732424, 'online delivery what': 608094, 'delivery what will': 234735, 'what will retail': 982606, 'will retail look': 994683, 'retail look post': 718299, 'look post the': 502571, 'post the peak': 666354, 'the peak what': 863426, 'peak what next': 646120, 'what next for': 981929, 'next for supermarket': 561371, 'for supermarket thecustomerwhisperer': 326029, 'foottraffic': 318581, 'our data': 622694, 'data partner': 226334, 'partner have': 642828, 'have released': 382248, 'released dashboard': 709030, 'dashboard to': 226085, 'consumer activity': 196017, 'activity in': 30439, 'the showing': 867121, 'showing foottraffic': 767446, 'foottraffic by': 318582, 'by brand': 151992, 'brand industry': 137871, 'our data partner': 622697, 'data partner have': 226335, 'partner have released': 642829, 'have released dashboard': 382250, 'released dashboard to': 709031, 'dashboard to understand': 226087, 'affecting consumer activity': 34501, 'consumer activity in': 196023, 'activity in the': 30444, 'in the showing': 429549, 'the showing foottraffic': 867122, 'showing foottraffic by': 767447, 'foottraffic by brand': 318583, 'by brand industry': 151993, 'remodels': 710678, 'withdraws': 1002278, 'hanbury': 374698, 'target pull': 834498, 'pull back': 688849, 'on store': 603690, 'store remodels': 809814, 'remodels and': 710679, 'and opening': 68170, 'opening and': 612798, 'and withdraws': 75782, 'withdraws it': 1002285, 'it financial': 458004, 'financial forecast': 306416, 'forecast for': 328814, 'year the': 1014995, 'coronavirus spread': 206801, 'spread mary': 790618, 'mary hanbury': 518159, 'hanbury report': 374699, 'target pull back': 834499, 'pull back on': 688852, 'back on store': 107200, 'on store remodels': 603699, 'store remodels and': 809815, 'remodels and opening': 710681, 'and opening and': 68171, 'opening and withdraws': 612800, 'and withdraws it': 75783, 'withdraws it financial': 1002286, 'it financial forecast': 458006, 'financial forecast for': 306417, 'forecast for the': 328821, 'for the year': 326794, 'the year the': 872171, 'year the coronavirus': 1014997, 'the coronavirus spread': 851918, 'coronavirus spread mary': 206805, 'spread mary hanbury': 790619, 'mary hanbury report': 518160, 'hanbury report for': 374700, 'fighting 19': 305022, '19 shop': 10474, 'keeper are': 472337, 'are looting': 87889, 'looting vegetable': 503280, 'do support': 250197, 'the but': 850189, 'poor and': 664109, 'and needy': 67492, 'needy there': 556711, 'be plan': 116428, 'least should': 484626, 'should reach': 766368, 'reach home': 699928, 'in country where': 421830, 'country where we': 211224, 'where we all': 985336, 'we all are': 970311, 'all are fighting': 42042, 'are fighting 19': 86540, 'fighting 19 shop': 305024, '19 shop keeper': 10476, 'shop keeper are': 760388, 'keeper are looting': 472338, 'are looting vegetable': 87892, 'looting vegetable price': 503281, 'vegetable price are': 954069, 'up we do': 946543, 'we do support': 971351, 'do support the': 250198, 'support the but': 826862, 'the but what': 850206, 'but what will': 147803, 'happen to the': 377188, 'to the poor': 916965, 'the poor and': 863966, 'poor and needy': 664112, 'and needy there': 67494, 'needy there must': 556712, 'must be plan': 546529, 'be plan for': 116429, 'plan for them': 658129, 'for them they': 326924, 'them they at': 876411, 'they at least': 881504, 'at least should': 99544, 'least should reach': 484627, 'should reach home': 766369, 'websiteexpertsinghana': 975516, 'coronainghana': 204989, 'nanaaddo': 551779, 'this put': 889763, 'smile on': 775727, 'face in': 294468, 'time cheer': 896468, 'cheer to': 175120, 'great week': 363106, 'week wash': 977181, 'hand use': 375899, 'use alcohol': 949018, 'based sanitizer': 111732, 'sanitizer avoid': 734529, 'avoid taking': 105309, 'taking your': 833669, 'face most': 294623, 'importantly stay': 419142, 'home websiteexpertsinghana': 402467, 'websiteexpertsinghana coronainghana': 975517, 'coronainghana nanaaddo': 204990, 'nanaaddo stayathome': 551780, 'stayathome quarantinelife': 797586, 'we hope this': 972037, 'hope this put': 403724, 'this put smile': 889766, 'put smile on': 690819, 'smile on your': 775729, 'on your face': 605461, 'your face in': 1023747, 'face in these': 294471, 'trying time cheer': 934744, 'time cheer to': 896469, 'cheer to great': 175121, 'to great week': 906992, 'great week wash': 363107, 'week wash your': 977182, 'your hand use': 1024237, 'hand use alcohol': 375900, 'use alcohol based': 949019, 'alcohol based sanitizer': 40935, 'based sanitizer avoid': 111735, 'sanitizer avoid taking': 734530, 'avoid taking your': 105310, 'taking your face': 833674, 'your face most': 1023753, 'face most importantly': 294624, 'most importantly stay': 542424, 'importantly stay home': 419143, 'stay home websiteexpertsinghana': 797025, 'home websiteexpertsinghana coronainghana': 402468, 'websiteexpertsinghana coronainghana nanaaddo': 975518, 'coronainghana nanaaddo stayathome': 204991, 'nanaaddo stayathome quarantinelife': 551781, 'acct': 28840, 'ssns': 791669, 'phishers': 654790, 'scammer may': 740593, 'may use': 521591, 'use fake': 949206, 'or text': 617351, 'text to': 839953, 'share valuable': 755324, 'valuable personal': 952043, 'info like': 437511, 'like acct': 489722, 'acct number': 28841, 'number ssns': 577054, 'ssns or': 791670, 'your login': 1024736, 'login id': 500684, 'id and': 412924, 'password here': 643470, 'here real': 393508, 'world example': 1009525, 'of phishers': 588095, 'phishers pretending': 654791, 'pretending to': 671339, 'be learn': 115685, 'scammer may use': 740597, 'may use fake': 521592, 'use fake email': 949207, 'fake email or': 296617, 'email or text': 272262, 'or text to': 617355, 'text to get': 839955, 'get you to': 348686, 'you to share': 1021835, 'to share valuable': 914371, 'share valuable personal': 755326, 'valuable personal info': 952044, 'personal info like': 652884, 'info like acct': 437512, 'like acct number': 489723, 'acct number ssns': 28842, 'number ssns or': 577055, 'ssns or your': 791671, 'or your login': 617884, 'your login id': 1024737, 'login id and': 500685, 'id and password': 412925, 'and password here': 68751, 'password here real': 643472, 'here real world': 393509, 'real world example': 701465, 'world example of': 1009526, 'example of phishers': 288942, 'of phishers pretending': 588096, 'phishers pretending to': 654792, 'pretending to be': 671340, 'to be learn': 901359, 'be learn more': 115686, 'cv': 223832, 'walgreens': 964711, 'rite': 724144, 'radius': 695481, 'nada': 551367, 'backpackingbear': 107581, 've checked': 952993, 'checked every': 174749, 'every cv': 285778, 'cv walgreens': 223858, 'walgreens and': 964712, 'and rite': 70569, 'rite aid': 724145, 'five mile': 309637, 'mile radius': 531408, 'radius but': 695484, 'but nada': 146445, 'nada backpackingbear': 551370, 'backpackingbear shelterinplace': 107582, 'shelterinplace toiletpaper': 758030, 've checked every': 952994, 'checked every cv': 174750, 'every cv walgreens': 285780, 'cv walgreens and': 223859, 'walgreens and rite': 964714, 'and rite aid': 70570, 'rite aid in': 724146, 'aid in five': 39407, 'in five mile': 422918, 'five mile radius': 309638, 'mile radius but': 531409, 'radius but nada': 695485, 'but nada backpackingbear': 146446, 'nada backpackingbear shelterinplace': 551371, 'backpackingbear shelterinplace toiletpaper': 107583, 'dear mom': 229833, 'mom we': 535829, 'very sorry': 955570, 'sorry the': 786085, 'people crazy': 647576, 'crazy they': 215442, 'over toiletpaper': 630852, 'toiletpaper everywhere': 921961, 'everywhere can': 288181, 'we please': 972711, 'home toiletpaperapocalypse': 402359, 'dear mom we': 229834, 'mom we are': 535830, 'we are very': 970753, 'are very sorry': 91480, 'very sorry the': 955574, 'sorry the ha': 786087, 'the ha made': 857002, 'made people crazy': 507912, 'people crazy they': 647577, 'crazy they are': 215443, 'they are fighting': 881276, 'are fighting over': 86547, 'fighting over toiletpaper': 305112, 'over toiletpaper everywhere': 630853, 'toiletpaper everywhere can': 921962, 'everywhere can we': 288182, 'can we please': 160186, 'we please come': 972712, 'please come home': 659799, 'come home toiletpaperapocalypse': 187350, 'home toiletpaperapocalypse toilet': 402360, 'toiletpaperapocalypse toilet tissue': 922926, '3am': 18205, 'eminem': 273185, 'youneedgroceries': 1022554, '3am walk': 18210, 'walk to': 964897, 'with eminem': 998204, 'eminem fall': 273186, 'fall my': 296995, 'should worry': 766666, 'worry pandemia': 1010760, 'pandemia socialdistancing': 634753, 'socialdistancing youneedgroceries': 780893, 'youneedgroceries eminem': 1022555, '3am walk to': 18211, 'walk to grocery': 964898, 'store with eminem': 811373, 'with eminem fall': 998205, 'eminem fall my': 273187, 'fall my company': 296996, 'my company should': 547774, 'company should worry': 191082, 'should worry pandemia': 766668, 'worry pandemia socialdistancing': 1010761, 'pandemia socialdistancing youneedgroceries': 634754, 'socialdistancing youneedgroceries eminem': 780894, 'conte': 200754, 'contemplate': 200757, 'consumerbehaviour': 199628, 'be confident': 114179, 'confident in': 194003, 'the containment': 851650, 'place appreciate': 657331, 'appreciate that': 82751, 'that president': 845812, 'president conte': 670792, 'conte put': 200755, 'put his': 690600, 'his face': 397408, 'face use': 294837, 'use time': 949743, 'time at': 896343, 'to contemplate': 903373, 'contemplate and': 200758, 'and reflect': 70124, 'reflect on': 706615, 'the really': 865262, 'thing 37': 884078, '37 italy': 18071, 'italy consumerbehaviour': 462796, 'consumerbehaviour insight': 199636, 'insight mrx': 439596, 'we must be': 972404, 'must be confident': 546498, 'be confident in': 114180, 'confident in the': 194005, 'in the containment': 429092, 'the containment measure': 851653, 'containment measure in': 200604, 'in place appreciate': 426721, 'place appreciate that': 657332, 'appreciate that president': 82752, 'that president conte': 845813, 'president conte put': 670793, 'conte put his': 200756, 'put his face': 690602, 'his face use': 397411, 'face use time': 294838, 'use time at': 949744, 'time at home': 896348, 'at home to': 99149, 'home to contemplate': 402314, 'to contemplate and': 903374, 'contemplate and reflect': 200759, 'and reflect on': 70125, 'reflect on the': 706618, 'on the really': 604320, 'the really important': 865263, 'important thing 37': 419028, 'thing 37 italy': 884079, '37 italy consumerbehaviour': 18072, 'italy consumerbehaviour insight': 462797, 'consumerbehaviour insight mrx': 199637, 'restaurantnews': 716839, 'for restaurant': 325173, 'restaurant reaching': 716658, 'reaching older': 700097, 'older diner': 598593, 'diner intel': 242982, 'intel restaurantnews': 440971, '19 cure for': 6384, 'cure for restaurant': 220745, 'for restaurant reaching': 325177, 'restaurant reaching older': 716659, 'reaching older diner': 700098, 'older diner intel': 598596, 'diner intel restaurantnews': 242983, 'mongering': 537221, 'seen lot': 747123, 'of scare': 589384, 'scare mongering': 740894, 'mongering and': 537222, 'some client': 782548, 'client approach': 181999, 'approach me': 82967, 'me suggesting': 523564, 'suggesting house': 817598, 'drop up': 260442, 'to 60': 899785, '60 think': 21017, 'article highlight': 94351, 'highlight much': 395935, 'better the': 128548, 'the realistic': 865253, 'realistic impact': 701664, 've seen lot': 953537, 'seen lot of': 747124, 'lot of scare': 504274, 'of scare mongering': 589386, 'scare mongering and': 740895, 'mongering and some': 537223, 'and some client': 71955, 'some client approach': 782549, 'client approach me': 182000, 'approach me suggesting': 82968, 'me suggesting house': 523565, 'suggesting house price': 817599, 'price drop up': 673584, 'drop up to': 260443, 'up to 60': 946343, 'to 60 think': 899792, '60 think this': 21018, 'think this article': 885696, 'this article highlight': 886418, 'article highlight much': 94352, 'highlight much better': 395936, 'much better the': 544763, 'better the realistic': 128549, 'the realistic impact': 865254, 'realistic impact of': 701665, 'coronavirus on the': 206344, 'on the property': 604309, 'saudi based': 737246, 'based office': 111662, 'office lunch': 595480, 'lunch delivery': 506722, 'delivery platform': 234342, 'platform ha': 658970, 'ha rolled': 371778, 'customer gain': 222407, 'gain easier': 342766, 'easier access': 265129, 'to daily': 903895, 'daily supply': 224817, 'supply at': 824808, 'saudi based office': 737247, 'based office lunch': 111663, 'office lunch delivery': 595481, 'lunch delivery platform': 506723, 'delivery platform ha': 234344, 'platform ha rolled': 658972, 'ha rolled out': 371780, 'rolled out new': 725646, 'out new grocery': 626625, 'grocery delivery service': 364451, 'delivery service to': 234472, 'help customer gain': 389558, 'customer gain easier': 222408, 'gain easier access': 342767, 'easier access to': 265130, 'access to daily': 28226, 'to daily supply': 903896, 'daily supply at': 224819, 'supply at affordable': 824809, 'invokes': 444315, 'trump invokes': 933637, 'invokes defense': 444316, 'act allowing': 29586, 'allowing forced': 46288, 'forced production': 328595, 'production necessary': 682131, 'for defense': 320614, 'defense such': 232143, 'such drug': 816458, 'drug and': 260869, 'and complete': 60228, 'complete control': 192078, 'and real': 69995, 'estate credit': 282115, 'credit debt': 216374, 'debt holiday': 230500, 'holiday coming': 400271, 'trump invokes defense': 933638, 'invokes defense production': 444317, 'production act allowing': 681893, 'act allowing forced': 29587, 'allowing forced production': 46289, 'forced production necessary': 328596, 'production necessary for': 682132, 'necessary for defense': 553988, 'for defense such': 320616, 'defense such drug': 232144, 'such drug and': 816459, 'drug and food': 260872, 'and food production': 63082, 'food production and': 316039, 'production and complete': 681920, 'and complete control': 60230, 'complete control of': 192079, 'control of consumer': 202065, 'of consumer and': 581705, 'consumer and real': 196239, 'and real estate': 69996, 'real estate credit': 701142, 'estate credit debt': 282116, 'credit debt holiday': 216375, 'debt holiday coming': 230501, 'purposely': 690175, 'panews': 637218, 'hanovertownship': 377023, 'luzernecounty': 506994, 'papolice': 641185, 'pennsylvania grocery': 646567, 'store dump': 807394, 'dump 35': 262154, 'woman purposely': 1003587, 'purposely cough': 690176, 'cough on': 208516, 'it panews': 460245, 'panews hanovertownship': 637219, 'hanovertownship luzernecounty': 377024, 'luzernecounty grocerystore': 506995, 'grocerystore crime': 366297, 'crime police': 216794, 'police papolice': 663145, 'pennsylvania grocery store': 646568, 'grocery store dump': 365350, 'store dump 35': 807395, 'dump 35 00': 262155, 'after woman purposely': 36561, 'woman purposely cough': 1003588, 'purposely cough on': 690177, 'cough on it': 208521, 'on it panews': 601681, 'it panews hanovertownship': 460246, 'panews hanovertownship luzernecounty': 637220, 'hanovertownship luzernecounty grocerystore': 377025, 'luzernecounty grocerystore crime': 506996, 'grocerystore crime police': 366298, 'crime police papolice': 216795, 'kelly2': 472727, 'kelly2 if': 472728, 're germaphobe': 698723, 'germaphobe afraid': 346368, 'there don': 878333, 'don control': 253439, 'the freedom': 855773, 'freedom of': 332377, 'others stop': 621662, 'stop throwing': 805205, 'throwing used': 895117, 'mask wipe': 519572, 'wipe all': 996178, 'place advice': 657296, 'advice sneeze': 33498, 'cough into': 208488, 'into paper': 442847, 'towel and': 927291, 'and throw': 74093, 'throw in': 895028, 'in trash': 430270, 'trash it': 930159, 'kelly2 if you': 472729, 'you re germaphobe': 1020631, 're germaphobe afraid': 698724, 'germaphobe afraid of': 346369, 'store don go': 807361, 'don go there': 253573, 'go there don': 354223, 'there don control': 878334, 'don control the': 253440, 'control the freedom': 202164, 'the freedom of': 855774, 'freedom of others': 332380, 'of others stop': 587403, 'others stop throwing': 621665, 'stop throwing used': 805208, 'throwing used glove': 895118, 'used glove mask': 949923, 'glove mask wipe': 352787, 'mask wipe all': 519573, 'wipe all over': 996179, 'the place advice': 863766, 'place advice sneeze': 657297, 'advice sneeze or': 33499, 'or cough into': 614842, 'cough into paper': 208489, 'into paper towel': 442849, 'paper towel and': 640982, 'towel and throw': 927297, 'and throw in': 74095, 'throw in trash': 895029, 'in trash it': 430271, 'trash it ll': 930160, 'll be okay': 496604, 'buy dog': 148541, 'myself the': 550948, 'thing needed': 884613, 'needed are': 556300, 'stock because': 801905, 'you stupid': 1021460, 'stupid idiot': 815397, 'idiot have': 413522, 'to buy dog': 902216, 'buy dog food': 148542, 'dog food and': 252078, 'food for myself': 314556, 'for myself the': 323768, 'myself the thing': 550950, 'the thing needed': 869460, 'thing needed are': 884615, 'needed are not': 556301, 'not in stock': 570105, 'in stock because': 428284, 'stock because you': 801909, 'because you stupid': 119877, 'you stupid idiot': 1021461, 'stupid idiot have': 815399, 'idiot have panic': 413524, 'have panic bought': 381879, 'effected we': 269184, 'we explain': 971509, 'explain what': 292128, 'coronavirus pandemic what': 206506, 'pandemic what to': 636974, 'with you how': 1002154, 'you how fuel': 1019258, 'be effected we': 114649, 'effected we explain': 269185, 'we explain what': 971510, 'explain what the': 292129, 'thejake': 875280, 'sp': 787006, 'thejake people': 875281, 'people stockpiling': 649633, 'stockpiling and': 803906, 'and clearing': 59963, 'clearing supermarket': 181475, 'sure over': 827649, 'over reacting': 630553, 'reacting the': 700180, 'is fine': 447812, 'but regarding': 146911, 'regarding it': 707229, 'it definitely': 457495, 'definitely sensible': 232389, 'sensible to': 750667, 'the sp': 867525, 'thejake people stockpiling': 875282, 'people stockpiling and': 649634, 'stockpiling and clearing': 803907, 'and clearing supermarket': 59967, 'clearing supermarket shelf': 181476, 'shelf are for': 756800, 'are for sure': 86649, 'for sure over': 326074, 'sure over reacting': 827650, 'over reacting the': 630555, 'reacting the supply': 700181, 'chain is fine': 170833, 'is fine for': 447814, 'fine for the': 307638, 'for the moment': 326565, 'moment but regarding': 535891, 'but regarding it': 146912, 'regarding it definitely': 707230, 'it definitely sensible': 457496, 'definitely sensible to': 232390, 'sensible to take': 750668, 'to take every': 916176, 'take every precaution': 832103, 'every precaution to': 286123, 'precaution to stop': 669390, 'stop the sp': 805153, 'snd': 776182, 'longer lasting': 502014, 'outbreak on': 628493, 'are difficult': 85819, 'some company': 782566, 'already updating': 47744, 'updating strategy': 947484, 'strategy in': 812657, 'temporary snd': 837695, 'snd or': 776183, 'or permanent': 616550, 'permanent change': 652036, 'market or': 516816, 'model 19': 535222, '19 cfo': 5747, 'cfo pulse': 170339, 'pulse survey': 689000, 'survey pwc': 828927, 'the longer lasting': 859692, 'longer lasting effect': 502015, 'lasting effect of': 480764, 'the outbreak on': 862671, 'outbreak on consumer': 628495, 'on consumer habit': 600054, 'habit are difficult': 372570, 'are difficult to': 85822, 'predict but some': 669555, 'but some company': 147090, 'some company are': 782567, 'company are already': 190409, 'are already updating': 84432, 'already updating strategy': 47745, 'updating strategy in': 947485, 'strategy in the': 812661, 'face of temporary': 294676, 'of temporary snd': 590661, 'temporary snd or': 837696, 'snd or permanent': 776184, 'or permanent change': 616551, 'permanent change in': 652038, 'change in some': 172134, 'in some market': 428091, 'some market or': 783260, 'market or business': 516818, 'or business model': 614605, 'business model 19': 144052, 'model 19 cfo': 535223, '19 cfo pulse': 5748, 'cfo pulse survey': 170340, 'pulse survey pwc': 689001, 'novartis': 573725, 'dos': 255920, 'novartis stock': 573734, 'soaring co': 779315, 'co donated': 184828, 'donated the': 254357, '30 million': 17109, 'million dos': 532136, 'dos of': 255923, '19 drug': 6660, 'drug that': 261108, 'is pushing': 451145, 'novartis stock price': 573735, 'price are soaring': 672740, 'are soaring co': 90228, 'soaring co donated': 779316, 'co donated the': 184829, 'donated the 30': 254358, 'the 30 million': 848086, '30 million dos': 17110, 'million dos of': 532138, 'dos of covid': 255924, 'covid 19 drug': 212988, '19 drug that': 6664, 'drug that trump': 261112, 'trump is pushing': 933655, 'nonrefundable': 566716, 'and thought': 74049, 'thought wow': 893332, 'wow great': 1012560, 'can plan': 159242, 'trip and': 932041, 'to well': 918488, 'well after': 977994, 'after nope': 35961, 'nope travel': 566916, 'is valid': 453652, 'valid april': 951906, 'april through': 83702, 'through may': 894569, 'may or': 521407, 'or june': 615871, 'june of': 468009, 'and nonrefundable': 67684, 'received an email': 703589, 'email from and': 272180, 'from and thought': 334526, 'and thought wow': 74055, 'thought wow great': 893333, 'wow great price': 1012561, 'great price people': 362915, 'price people can': 675849, 'people can plan': 647405, 'can plan trip': 159245, 'plan trip and': 658335, 'trip and have': 932042, 'and have something': 64276, 'have something to': 382654, 'something to look': 785104, 'forward to well': 330045, 'to well after': 918489, 'well after nope': 977995, 'after nope travel': 35962, 'nope travel is': 566917, 'travel is valid': 930413, 'is valid april': 453653, 'valid april through': 951907, 'april through may': 83703, 'through may or': 894571, 'may or june': 521408, 'or june of': 615872, 'june of this': 468010, 'this year and': 891561, 'year and nonrefundable': 1014399, 'is announcing': 445721, 'announcing their': 77332, 'their offer': 874083, 'offer to': 594848, 'to launch': 909096, 'launch dtc': 481895, 'dtc store': 261401, 'help brand': 389425, 'brand struggling': 138020, 'struggling in': 814454, 'pandemic be': 634973, 'increase product': 433016, 'product availability': 680988, 'availability for': 104138, 'consumer read': 198647, 'is announcing their': 445722, 'announcing their offer': 77333, 'their offer to': 874086, 'offer to launch': 594851, 'to launch dtc': 909099, 'launch dtc store': 481896, 'dtc store in': 261402, 'store in just': 808326, 'in just 15': 424412, 'just 15 day': 468102, '15 day to': 3696, 'day to help': 228568, 'to help brand': 907465, 'help brand struggling': 389429, 'brand struggling in': 138021, 'struggling in light': 814455, '19 pandemic be': 9273, 'pandemic be able': 634974, 'able to increase': 24493, 'to increase product': 908294, 'increase product availability': 433017, 'product availability for': 680989, 'availability for their': 104140, 'for their consumer': 326813, 'their consumer read': 872864, 'consumer read more': 198649, 'screaming': 742653, 'let find': 486720, 'find where': 307388, 'this suit': 890414, 'suit run': 817782, 'supermarket screaming': 822344, 'screaming where': 742663, 'did he': 240630, 'go rwot': 354081, 'let find where': 486721, 'find where to': 307389, 'where to buy': 985301, 'to buy this': 902320, 'buy this suit': 149363, 'this suit run': 890415, 'suit run into': 817783, 'run into supermarket': 727682, 'into supermarket screaming': 443058, 'supermarket screaming where': 822345, 'screaming where did': 742664, 'where did he': 984819, 'did he go': 240636, 'he go rwot': 384993, 'financially': 306652, 'destitute': 238999, 'how rich': 408596, 'rich you': 721274, 'are ok': 88698, 'ok yeah': 597952, 'yeah but': 1014240, 'be financially': 114844, 'financially destitute': 306670, 'destitute if': 239000, 'actually commit': 30761, 'going outside': 355405, 'outside you': 629655, 'long is': 501453, 'necessary you': 554147, 'be fine': 114849, 'fine shut': 307686, 'fuck up': 339672, 'care about how': 163791, 'about how rich': 25465, 'how rich you': 408597, 'rich you are': 721275, 'you are ok': 1017183, 'are ok yeah': 88703, 'ok yeah but': 597953, 'yeah but you': 1014242, 'but you will': 148006, 'you will not': 1022345, 'not be financially': 568384, 'be financially destitute': 114846, 'financially destitute if': 306671, 'destitute if you': 239001, 'if you actually': 415386, 'you actually commit': 1016806, 'actually commit to': 30763, 'commit to not': 188981, 'to not going': 910693, 'not going outside': 569701, 'going outside you': 355409, 'outside you can': 629656, 'food for long': 314548, 'for long is': 323079, 'long is necessary': 501455, 'is necessary you': 449850, 'necessary you will': 554151, 'will be fine': 992462, 'be fine shut': 114853, 'fine shut the': 307687, 'shut the fuck': 767940, 'the fuck up': 855975, 'cant get': 162294, 'get if': 347279, 'you drink': 1018356, 'drink whole': 258903, 'whole bottle': 990147, 'cant get if': 162298, 'get if you': 347281, 'if you drink': 415426, 'you drink whole': 1018357, 'drink whole bottle': 258904, 'whole bottle of': 990148, 'wiser': 996725, 'happyhour': 377768, 'and wiser': 75749, 'wiser is': 996726, 'new happy': 558853, 'happy hour': 377632, 'hour toiletpapercrisis': 406045, 'toiletpapercrisis happyhour': 923029, '00 in the': 271, 'the older and': 862151, 'older and wiser': 598577, 'and wiser is': 75750, 'wiser is the': 996727, 'the new happy': 861515, 'new happy hour': 558854, 'happy hour toiletpapercrisis': 377635, 'hour toiletpapercrisis happyhour': 406046, 'toss': 926082, 'witcher': 996914, 'not toss': 572227, 'toss coin': 926086, 'coin to': 185644, 'your witcher': 1026362, 'witcher instead': 996915, 'instead toss': 440376, 'toss it': 926088, 'supermarket clerk': 819711, 'clerk or': 181745, 'or nh': 616246, 'member nhsstaff': 528133, 'nhsstaff stophoarding': 562259, 'do not toss': 249871, 'not toss coin': 572228, 'toss coin to': 926087, 'coin to your': 185645, 'to your witcher': 919036, 'your witcher instead': 1026363, 'witcher instead toss': 996916, 'instead toss it': 440377, 'toss it to': 926089, 'it to your': 461767, 'your supermarket clerk': 1026038, 'supermarket clerk or': 819715, 'clerk or nh': 181747, 'or nh staff': 616247, 'nh staff member': 562098, 'staff member nhsstaff': 792658, 'member nhsstaff stophoarding': 528134, 'explained': 292148, 'sophisticated': 785971, '30m': 17465, 'roll shortage': 725497, 'shortage explained': 764941, 'explained despite': 292153, 'despite sophisticated': 238858, 'sophisticated consumer': 785974, 'behaviour analysis': 124355, 'analysis supermarket': 57082, 'have overlooked': 381859, 'overlooked the': 631299, 'that 30m': 842455, '30m people': 17474, 'uk do': 938308, 'do their': 250272, 'their daily': 872965, 'daily business': 224532, 'the workplace': 871789, 'workplace so': 1009210, 'so wfh': 778707, 'wfh will': 980865, 'contribute an': 201865, 'extra 150': 293428, '150 00': 3886, '00 home': 249, 'home shit': 402051, 'shit per': 759191, 'week math': 976516, 'loo roll shortage': 502199, 'roll shortage explained': 725498, 'shortage explained despite': 764942, 'explained despite sophisticated': 292154, 'despite sophisticated consumer': 238859, 'sophisticated consumer behaviour': 785975, 'consumer behaviour analysis': 196552, 'behaviour analysis supermarket': 124356, 'analysis supermarket have': 57083, 'supermarket have overlooked': 820699, 'have overlooked the': 381860, 'overlooked the fact': 631300, 'fact that 30m': 295787, 'that 30m people': 842456, '30m people in': 17475, 'people in uk': 648445, 'in uk do': 430384, 'uk do their': 938310, 'do their daily': 250274, 'their daily business': 872966, 'daily business at': 224533, 'business at the': 143409, 'at the workplace': 101157, 'the workplace so': 871791, 'workplace so wfh': 1009211, 'so wfh will': 778708, 'wfh will contribute': 980866, 'will contribute an': 993028, 'contribute an extra': 201866, 'an extra 150': 56002, 'extra 150 00': 293429, '150 00 00': 3887, '00 00 home': 4, '00 home shit': 250, 'home shit per': 402052, 'shit per week': 759193, 'per week math': 651070, 'irresponsibly': 445096, 'well america': 978006, 'america get': 51533, 'buy meat': 148951, 'the far': 854926, 'far left': 298834, 'left news': 485565, 'channel is': 172895, 'is irresponsibly': 448991, 'irresponsibly covering': 445097, 'covering that': 212492, 'dying they': 263871, 'they create': 881851, 'and smile': 71807, 'smile when': 775749, 'they film': 882108, 'film the': 305710, 'well america get': 978007, 'america get out': 51534, 'get out to': 347748, 'out to panic': 627668, 'panic buy meat': 637501, 'buy meat the': 148953, 'meat the far': 525769, 'the far left': 854927, 'far left news': 298835, 'left news channel': 485566, 'news channel is': 560311, 'channel is irresponsibly': 172897, 'is irresponsibly covering': 448992, 'irresponsibly covering that': 445098, 'covering that there': 212494, 'that there will': 846907, 'will be food': 992464, 'be food shortage': 114897, 'shortage and that': 764830, 'and that the': 73211, 'that the cashier': 846675, 'the cashier are': 850482, 'cashier are dying': 166472, 'are dying they': 86056, 'dying they create': 263872, 'they create the': 881853, 'create the panic': 215755, 'the panic and': 863182, 'panic and smile': 637335, 'and smile when': 71811, 'smile when they': 775750, 'when they film': 984257, 'they film the': 882109, 'film the chaos': 305711, 'normally look': 567510, 'amazon for': 50946, 'for photo': 324534, 'photo gear': 655175, 'gear price': 344972, 've now': 953407, 'now graduated': 574821, 'graduated to': 361727, 'to looking': 909446, 'at loo': 99618, 'paper availability': 639913, 'normally look on': 567511, 'look on amazon': 502551, 'on amazon for': 599278, 'amazon for photo': 50950, 'for photo gear': 324535, 'photo gear price': 655176, 'gear price ve': 344973, 'price ve now': 677298, 've now graduated': 953409, 'now graduated to': 574822, 'graduated to looking': 361728, 'to looking at': 909447, 'looking at loo': 502812, 'at loo paper': 99619, 'loo paper availability': 502154, 'dumbest': 262134, 'cleanroom': 181161, 'tiny': 898647, 'supermarket seeing': 822362, 'seeing people': 746405, 'with face': 998354, 'is dumbest': 447406, 'dumbest thing': 262135, 'seen those': 747320, 'have worked': 383627, 'worked in': 1006118, 'in cleanroom': 421502, 'cleanroom environment': 181162, 'environment know': 279123, 'know particle': 476669, 'particle size': 642592, 'so tiny': 778525, 'tiny that': 898674, 'mask don': 518587, 'don matter': 253723, 'matter and': 520539, 'glove don': 352658, 'matter because': 520545, 'because your': 119883, 'your clothes': 1023239, 'clothes are': 184141, 'are contaminated': 85539, 'at supermarket seeing': 100766, 'supermarket seeing people': 822363, 'seeing people with': 746416, 'people with face': 650449, 'with face mask': 998355, 'glove on is': 352822, 'on is dumbest': 601630, 'is dumbest thing': 447407, 'dumbest thing ve': 262137, 've ever seen': 953095, 'ever seen those': 285492, 'seen those of': 747322, 'those of that': 892269, 'of that have': 590724, 'that have worked': 844244, 'have worked in': 383629, 'worked in cleanroom': 1006121, 'in cleanroom environment': 421503, 'cleanroom environment know': 181163, 'environment know particle': 279124, 'know particle size': 476670, 'particle size of': 642593, 'size of covid': 772786, '19 is so': 8051, 'is so tiny': 452038, 'so tiny that': 778526, 'tiny that mask': 898675, 'that mask don': 845055, 'mask don matter': 518589, 'don matter and': 253724, 'matter and glove': 520540, 'and glove don': 63716, 'glove don matter': 352659, 'don matter because': 253725, 'matter because your': 520546, 'because your clothes': 119884, 'your clothes are': 1023242, 'clothes are contaminated': 184142, 'confronted': 194302, 'pleads': 659592, 'tearful nurse': 835987, 'in york': 431043, 'york uk': 1016681, 'uk confronted': 938255, 'confronted with': 194308, 'shelf after': 756684, 'after 48': 35294, 'shift pleads': 758384, 'pleads for': 659593, 'for end': 321049, 'buying news': 150751, 'tearful nurse in': 835988, 'nurse in york': 577387, 'in york uk': 431044, 'york uk confronted': 1016682, 'uk confronted with': 938256, 'confronted with empty': 194309, 'with empty supermarket': 998223, 'supermarket shelf after': 822421, 'shelf after 48': 756685, 'after 48 hour': 35295, '48 hour shift': 19312, 'hour shift pleads': 405919, 'shift pleads for': 758385, 'pleads for end': 659594, 'for end to': 321051, 'end to coronavirus': 276006, 'to coronavirus panic': 903563, 'coronavirus panic buying': 206515, 'panic buying news': 637817, 'rhine': 720892, 'hall': 374325, 'pfe': 653910, 'rhinehall': 720897, 'help rhine': 390463, 'rhine hall': 720893, 'hall provide': 374344, 'handsanitizer distillery': 376511, 'distillery chicago': 247742, 'chicago gofundme': 175669, 'gofundme donate': 354922, 'donate pfe': 254218, 'pfe rhinehall': 653911, 'help rhine hall': 390464, 'rhine hall provide': 720894, 'hall provide sanitizer': 374345, 'provide sanitizer handsanitizer': 686463, 'sanitizer handsanitizer distillery': 735032, 'handsanitizer distillery chicago': 376512, 'distillery chicago gofundme': 247743, 'chicago gofundme donate': 175670, 'gofundme donate pfe': 354923, 'donate pfe rhinehall': 254219, 'email is': 272219, 'consumer communication': 196824, 'communication regarding': 189633, '19 explore': 6903, 'explore four': 292479, 'four approach': 330583, 'approach our': 82971, 'email marketing': 272232, 'marketing expert': 517598, 'expert suggest': 291976, 'keep top': 472147, 'you send': 1021114, 'send coronavirus': 749835, 'related message': 708484, 'message through': 529442, 'through email': 894440, 'email is on': 272221, 'line of consumer': 493294, 'of consumer communication': 581721, 'consumer communication regarding': 196827, 'communication regarding covid': 189635, 'covid 19 explore': 213062, '19 explore four': 6904, 'explore four approach': 292480, 'four approach our': 330585, 'approach our email': 82972, 'our email marketing': 622879, 'email marketing expert': 272233, 'marketing expert suggest': 517600, 'expert suggest you': 291977, 'suggest you keep': 817556, 'you keep top': 1019452, 'keep top of': 472148, 'top of mind': 925637, 'of mind you': 586548, 'mind you send': 532788, 'you send coronavirus': 1021115, 'send coronavirus related': 749836, 'coronavirus related message': 206636, 'related message through': 708485, 'message through email': 529443, 'barr': 111169, 'manipulate': 513200, 'whcovidbriefing': 982960, 'barr is': 111170, 'about business': 24900, 'consumer stocking': 199148, 'stocking for': 803561, 'own use': 632284, 'or normal': 616280, 'normal operation': 567235, 'operation he': 613200, 'he talking': 385499, 'about hoarding': 25399, 'hoarding to': 399612, 'to manipulate': 909808, 'manipulate price': 513201, 'etc whcovidbriefing': 282871, 'barr is not': 111172, 'is not talking': 450200, 'talking about business': 833959, 'about business or': 24903, 'business or consumer': 144159, 'or consumer stocking': 614799, 'consumer stocking for': 199149, 'stocking for their': 803562, 'for their own': 326857, 'their own use': 874213, 'own use or': 632285, 'use or normal': 949454, 'or normal operation': 616281, 'normal operation he': 567237, 'operation he talking': 613201, 'he talking about': 385500, 'talking about hoarding': 833971, 'about hoarding to': 25403, 'hoarding to manipulate': 399613, 'to manipulate price': 909809, 'manipulate price etc': 513202, 'price etc whcovidbriefing': 673708, '19 changed': 5767, 'changed lot': 172502, 'thing triggering': 884923, 'triggering huge': 931941, 'huge overnight': 410114, 'overnight peak': 631350, 'shopping why': 764406, 'not start': 571691, 'store stocked': 810391, 'stocked with': 803459, 'with product': 1000327, 'product ready': 681565, 'ship to': 758718, 'from medical': 336408, 'equipment to': 279854, 'essential household': 281134, 'covid 19 changed': 212786, '19 changed lot': 5769, 'changed lot of': 172503, 'lot of thing': 504306, 'of thing triggering': 591918, 'thing triggering huge': 884924, 'triggering huge overnight': 931942, 'huge overnight peak': 410115, 'overnight peak in': 631351, 'peak in online': 646076, 'online shopping why': 609346, 'shopping why not': 764408, 'why not start': 991234, 'not start new': 571693, 'start new online': 794398, 'online store stocked': 609470, 'store stocked with': 810393, 'stocked with product': 803468, 'with product ready': 1000330, 'product ready to': 681566, 'ready to ship': 700976, 'to ship to': 914432, 'ship to customer': 758721, 'to customer in': 903852, 'customer in need': 222499, 'in need from': 425745, 'need from medical': 554891, 'from medical equipment': 336409, 'medical equipment to': 526165, 'equipment to grocery': 279856, 'to grocery and': 907004, 'grocery and essential': 364235, 'and essential household': 62253, 'essential household item': 281135, 'whoever say': 990112, 'say grocery': 738707, 'employee retail': 274154, 'don deserve': 253452, 'deserve minimum': 238080, 'minimum 15': 533161, '15 hour': 3724, 'hour after': 405357, 'after everything': 35635, 'everything pass': 287967, 'pass with': 643235, 're holding': 698819, 'together rn': 920926, 'rn along': 724305, 'with medical': 999467, 'who also': 988054, 'also deserve': 48094, 'deserve pay': 238100, 'pay boost': 644791, 'whoever say grocery': 990113, 'say grocery store': 738709, 'store employee retail': 807528, 'employee retail employee': 274155, 'retail employee don': 718069, 'employee don deserve': 273782, 'don deserve minimum': 253455, 'deserve minimum 15': 238081, 'minimum 15 hour': 533162, '15 hour after': 3725, 'hour after everything': 405359, 'after everything pass': 35636, 'everything pass with': 287968, 'pass with covid': 643236, 'they re holding': 883052, 're holding society': 698820, 'society together rn': 781342, 'together rn along': 920927, 'rn along with': 724306, 'along with medical': 47064, 'with medical staff': 999473, 'medical staff who': 526410, 'staff who also': 793084, 'who also deserve': 988056, 'also deserve pay': 48097, 'deserve pay boost': 238101, 'ethanol producer': 283003, 'producer feeling': 680616, 'ethanol producer feeling': 283004, 'producer feeling the': 680617, 'feeling the weight': 303081, 'weight of low': 977708, 'oil price covid': 597091, 'advertise': 33151, 'competitor': 191791, 'is goodbye': 448157, 'goodbye from': 357992, 'me game': 522800, 'game you': 343303, 'you advertise': 1016831, 'advertise higher': 33152, 'than competitor': 840452, 'competitor but': 191792, 'but promise': 146856, 'promise next': 683681, 'delivery complete': 233818, 'complete scam': 192143, 'are profiteering': 89263, 'it disgusting': 457574, 'it is goodbye': 458965, 'is goodbye from': 448158, 'goodbye from me': 357993, 'from me game': 336393, 'me game you': 522801, 'game you advertise': 343304, 'you advertise higher': 1016832, 'advertise higher price': 33153, 'higher price than': 395693, 'price than competitor': 676777, 'than competitor but': 840453, 'competitor but promise': 191793, 'but promise next': 146857, 'promise next day': 683682, 'next day delivery': 561327, 'day delivery complete': 227514, 'delivery complete scam': 233819, 'complete scam you': 192144, 'scam you are': 740488, 'you are profiteering': 1017205, 'are profiteering from': 89265, 'profiteering from the': 683047, 'from the and': 337600, 'the and it': 848705, 'and it disgusting': 65513, 'pared': 641552, 'you operate': 1020218, 'operate co': 612985, 'op or': 611812, 'food retailer': 316218, 'retailer amp': 718952, 'amp need': 54166, 'extra hand': 293533, 'consider posting': 195070, 'posting job': 666660, 'to pared': 911458, 'pared we': 641553, 'have thousand': 383130, 'of hospitality': 584769, 'hospitality professional': 404790, 'professional looking': 682468, 'other work': 621219, 'work share': 1005708, 'with here': 998790, 'if you operate': 415486, 'you operate co': 1020219, 'operate co op': 612986, 'co op or': 184914, 'op or food': 611813, 'or food retailer': 615344, 'food retailer amp': 316220, 'retailer amp need': 718953, 'amp need extra': 54167, 'need extra hand': 554757, 'extra hand to': 293534, 'hand to keep': 375861, 'with demand due': 997975, 'due to consider': 261738, 'to consider posting': 903233, 'consider posting job': 195071, 'posting job to': 666661, 'job to pared': 466230, 'to pared we': 911459, 'pared we have': 641554, 'we have thousand': 971965, 'have thousand of': 383131, 'thousand of hospitality': 893447, 'of hospitality professional': 584772, 'hospitality professional looking': 404791, 'professional looking for': 682469, 'looking for other': 502887, 'for other work': 324180, 'other work share': 621221, 'work share what': 1005709, 'you need help': 1019999, 'need help with': 555000, 'help with here': 390914, 'practising more': 668783, 'our will': 625380, 'easyfundraising visit': 265824, 'all practising more': 44014, 'practising more of': 668784, 'of our will': 587592, 'our will be': 625381, 'to easyfundraising visit': 904863, 'memory': 528420, 'happiness': 377562, 'memory can': 528423, 'can smile': 159648, 'smile happy': 775715, 'happy your': 377739, 'your day': 1023465, 'day can': 227422, 'can dream': 158155, 'dream of': 258604, 'the old': 862129, 'old day': 598218, 'day life': 227898, 'wa beautiful': 961650, 'beautiful then': 118724, 'then remember': 877471, 'time knew': 897108, 'knew what': 476097, 'what happiness': 981572, 'happiness wa': 377568, 'wa let': 962528, 'the memory': 860469, 'memory live': 528430, 'live again': 495704, 'again memory': 37070, 'memory toiletpaper': 528436, 'toiletpaper memory': 922236, 'memory trumppandemic': 528438, 'trumppandemic trumpplague': 934115, 'memory can smile': 528424, 'can smile happy': 159649, 'smile happy your': 775716, 'happy your day': 377740, 'your day can': 1023466, 'day can dream': 227424, 'can dream of': 158156, 'dream of the': 258607, 'of the old': 591290, 'the old day': 862134, 'old day life': 598220, 'day life wa': 227903, 'life wa beautiful': 489179, 'wa beautiful then': 961653, 'beautiful then remember': 118725, 'then remember the': 877472, 'remember the time': 710320, 'the time knew': 869600, 'time knew what': 897109, 'knew what happiness': 476098, 'what happiness wa': 981573, 'happiness wa let': 377569, 'wa let the': 962529, 'let the memory': 487134, 'the memory live': 860470, 'memory live again': 528431, 'live again memory': 495705, 'again memory toiletpaper': 37071, 'memory toiletpaper memory': 528437, 'toiletpaper memory trumppandemic': 922237, 'memory trumppandemic trumpplague': 528439, 'how just': 408153, 'just how': 468992, 'can one': 159111, 'one be': 605984, 'be excited': 114720, 'excited about': 289521, 'this following': 887565, 'the brutal': 850063, 'brutal direction': 141405, 'direction of': 243470, 'week oilprice': 976659, 'oilprice oilpricewar': 597628, 'how just how': 408154, 'just how can': 468995, 'how can one': 407509, 'can one be': 159112, 'one be excited': 605985, 'be excited about': 114721, 'excited about this': 289528, 'about this following': 26637, 'this following the': 887567, 'following the brutal': 312874, 'the brutal direction': 850064, 'brutal direction of': 141406, 'direction of oil': 243473, 'oil price the': 597286, 'price the past': 676854, 'few week oilprice': 304157, 'week oilprice oilpricewar': 976660, 'readymade': 701001, 'heineken': 388844, 'observation in': 578545, 'buying pattern': 150891, 'pattern yesterday': 644529, 'in dunnes': 422416, 'dunnes besides': 262305, 'besides obvious': 127515, 'obvious no': 578795, 'no loo': 564673, 'roll or': 725436, 'or beef': 614519, 'beef there': 120553, 'no tinned': 565732, 'tinned tomato': 898635, 'tomato but': 923944, 'of readymade': 588782, 'readymade sauce': 701002, 'sauce more': 737153, 'people cooking': 647542, 'cooking sauce': 202904, 'sauce from': 737146, 'from scratch': 337186, 'scratch in': 742606, 'news plenty': 560702, 'of heineken': 584532, 'heineken but': 388847, 'other beer': 619882, 'observation in consumer': 578546, 'consumer buying pattern': 196708, 'buying pattern yesterday': 150893, 'pattern yesterday in': 644530, 'yesterday in dunnes': 1015774, 'in dunnes besides': 422417, 'dunnes besides obvious': 262306, 'besides obvious no': 127516, 'obvious no loo': 578796, 'no loo roll': 564675, 'loo roll or': 502193, 'roll or beef': 725438, 'or beef there': 614520, 'beef there wa': 120554, 'wa no tinned': 962737, 'no tinned tomato': 565734, 'tinned tomato but': 898636, 'tomato but plenty': 923945, 'plenty of readymade': 660972, 'of readymade sauce': 588783, 'readymade sauce more': 701003, 'sauce more people': 737154, 'more people cooking': 540012, 'people cooking sauce': 647543, 'cooking sauce from': 202905, 'sauce from scratch': 737148, 'from scratch in': 337188, 'scratch in other': 742607, 'other news plenty': 620582, 'news plenty of': 560703, 'plenty of heineken': 660955, 'of heineken but': 584533, 'heineken but no': 388848, 'but no other': 146494, 'no other beer': 565011, 'applied and': 82486, 'got job': 358656, 'job three': 466210, 'three hour': 893953, 'hour later': 405727, 'later applicant': 481023, 'applicant say': 82431, 'supermarket hire': 820758, 'hire thousand': 397029, 'thousand sky': 893487, 'applied and got': 82487, 'and got job': 63857, 'got job three': 358659, 'job three hour': 466211, 'three hour later': 893955, 'hour later applicant': 405728, 'later applicant say': 481024, 'applicant say supermarket': 82432, 'say supermarket hire': 739193, 'supermarket hire thousand': 820762, 'hire thousand sky': 397031, 'thousand sky news': 893488, 'cdnecon': 168654, 'consumer expectation': 197390, 'expectation asks': 290801, 'asks household': 96144, 'household for': 406809, 'their view': 875127, 'view on': 957132, 'on inflation': 601568, 'inflation the': 437249, 'job market': 465999, 'personal finance': 652843, 'finance we': 306297, 'we present': 972740, 'present snapshot': 670618, 'of sentiment': 589514, 'sentiment just': 750967, 'before became': 122657, 'became major': 118873, 'major concern': 509276, 'all cdnecon': 42324, 'cdnecon economy': 168655, 'survey of consumer': 828910, 'of consumer expectation': 581738, 'consumer expectation asks': 197392, 'expectation asks household': 290802, 'asks household for': 96145, 'household for their': 406810, 'for their view': 326881, 'their view on': 875129, 'view on inflation': 957137, 'on inflation the': 601570, 'inflation the job': 437250, 'the job market': 858666, 'job market and': 466000, 'market and personal': 515980, 'and personal finance': 68923, 'personal finance we': 652846, 'finance we present': 306298, 'we present snapshot': 972742, 'present snapshot of': 670619, 'snapshot of sentiment': 776162, 'of sentiment just': 589515, 'sentiment just before': 750968, 'just before became': 468314, 'before became major': 122658, 'became major concern': 118874, 'major concern for': 509279, 'concern for all': 192970, 'for all cdnecon': 319116, 'all cdnecon economy': 42325, 'food dumping': 314312, 'dumping in': 262228, 'of due': 582870, 'supply surplus': 825935, 'surplus due': 828477, '19 dairy': 6406, 'region are': 707388, 'more food dumping': 539240, 'food dumping in': 314313, 'dumping in time': 262229, 'time of due': 897327, 'of due to': 582871, 'to the supply': 917110, 'the supply surplus': 868962, 'supply surplus due': 825936, 'surplus due to': 828478, 'covid 19 dairy': 212905, '19 dairy farmer': 6407, 'dairy farmer in': 224983, 'in the region': 429508, 'the region are': 865425, 'region are being': 707389, 're lucky': 699019, 'lucky enough': 506550, 'sanitizer consider': 734685, 'this washyourhands': 891113, 'you re lucky': 1020673, 're lucky enough': 699021, 'lucky enough to': 506551, 'enough to have': 277706, 'to have some': 907310, 'hand sanitizer consider': 375351, 'sanitizer consider this': 734686, 'consider this washyourhands': 195166, 'pocketbook': 662220, 'snakeoil': 776061, 'scam are': 740034, 'reality protect': 701785, 'protect your': 685054, 'your pocketbook': 1025346, 'pocketbook by': 662221, 'following these': 312916, 'and fda': 62729, 'fda tip': 300934, 'tip risk': 898885, 'risk fraud': 723564, 'fraud pandemic': 331318, 'pandemic snakeoil': 636492, 'scam are on': 740040, 'the rise in': 865855, 'rise in our': 722895, 'our new reality': 624042, 'new reality protect': 559404, 'reality protect your': 701786, 'protect your health': 685064, 'health and your': 386166, 'and your pocketbook': 76092, 'your pocketbook by': 1025347, 'pocketbook by following': 662222, 'by following these': 152610, 'following these and': 312917, 'these and fda': 879599, 'and fda tip': 62733, 'fda tip risk': 300935, 'tip risk fraud': 898886, 'risk fraud pandemic': 723565, 'fraud pandemic snakeoil': 331319, 'frustrated': 339222, 'seriously frustrated': 751616, 'frustrated the': 339231, 'same person': 733225, 'been potentially': 121685, 'potentially exposed': 667208, 'is isolating': 449000, 'isolating and': 455052, 'is day': 447036, 'day into': 227829, 'into 14': 442348, '14 and': 3416, 'the gym': 856970, 'gym every': 369319, 'day cinema': 227447, 'cinema supermarket': 178545, 'etc is': 282615, 'today posting': 920057, 'posting his': 666652, 'his current': 397335, 'current trip': 221410, 'trip round': 932144, 'round ikea': 726328, 'seriously frustrated the': 751617, 'frustrated the same': 339232, 'the same person': 866278, 'same person who': 733226, 'person who ha': 652725, 'ha been potentially': 369871, 'been potentially exposed': 121686, 'potentially exposed to': 667209, 'and is isolating': 65410, 'is isolating and': 449001, 'isolating and is': 455056, 'and is day': 65398, 'is day into': 447037, 'day into 14': 227830, 'into 14 and': 442349, '14 and who': 3420, 'and who go': 75586, 'who go to': 988794, 'to the gym': 916762, 'the gym every': 856972, 'gym every day': 369320, 'every day cinema': 285798, 'day cinema supermarket': 227448, 'cinema supermarket etc': 178546, 'supermarket etc is': 820212, 'etc is today': 282619, 'is today posting': 453262, 'today posting his': 920058, 'posting his current': 666653, 'his current trip': 397337, 'current trip round': 221411, 'trip round ikea': 932145, 'uranium': 948087, 'uranium stock': 948090, 'on lately': 601796, 'lately further': 480955, 'further supply': 342175, 'shock due': 759442, 'pandemic have': 635587, 'have led': 381286, 'the steady': 867858, 'steady rise': 799140, 'of spot': 589995, 'spot uranium': 790136, 'uranium price': 948088, 'price some': 676549, 'some significant': 783872, 'development on': 239836, 'the chart': 850712, 'chart keep': 173835, 'my update': 550465, 'update soon': 947214, 'uranium stock have': 948091, 'stock have been': 802224, 'have been on': 379623, 'been on lately': 121596, 'on lately further': 601797, 'lately further supply': 480956, 'further supply shock': 342176, 'supply shock due': 825818, 'shock due to': 759443, '19 pandemic have': 9343, 'pandemic have led': 635591, 'have led to': 381288, 'led to the': 485304, 'to the steady': 917094, 'the steady rise': 867860, 'steady rise of': 799141, 'rise of spot': 722952, 'of spot uranium': 589996, 'spot uranium price': 790137, 'uranium price some': 948089, 'price some significant': 676556, 'some significant development': 783873, 'significant development on': 769430, 'development on the': 239837, 'on the chart': 604019, 'the chart keep': 850716, 'chart keep an': 173836, 'out for my': 626142, 'for my update': 323757, 'my update soon': 550466, 'doomed': 255445, 'they now': 882795, 'now know': 575167, 'know our': 476662, 'our weakness': 625318, 'weakness we': 974135, 're doomed': 698564, 'doomed uk': 255449, 'they now know': 882801, 'now know our': 575170, 'know our weakness': 476664, 'our weakness we': 625319, 'weakness we re': 974136, 'we re doomed': 972859, 're doomed uk': 698565, 'embracing': 272507, 'brake': 137636, 'track impact': 928202, 'on auto': 599508, 'industry car': 435718, 'car buyer': 163036, 'are embracing': 86113, 'embracing more': 272508, 'shopping activity': 761889, 'increasingly putting': 433799, 'the brake': 849935, 'brake via': 137642, 'track impact of': 928203, '19 on auto': 8930, 'on auto industry': 599509, 'auto industry car': 103876, 'industry car buyer': 435719, 'car buyer are': 163037, 'buyer are embracing': 149568, 'are embracing more': 86114, 'embracing more online': 272509, 'online shopping activity': 609014, 'shopping activity and': 761890, 'activity and increasingly': 30374, 'and increasingly putting': 65137, 'increasingly putting the': 433800, 'putting the brake': 691230, 'the brake via': 849936, 'makeourmark': 510803, 'helpourneighbors': 391623, 'bank food': 109836, 'in particular': 426530, 'particular expect': 642611, 'see increased': 745301, 'demand well': 236470, 'well drop': 978209, 'off in': 593921, 'in donated': 422354, 'donated excess': 254333, 'store choose': 806972, 'favorite charity': 300497, 'charity and': 173557, 'difference more': 241861, 'more idea': 539467, 'idea on': 413142, 'help at': 389386, 'at makeourmark': 99666, 'makeourmark helpourneighbors': 510804, 'food bank food': 313572, 'bank food pantry': 109837, 'pantry in particular': 639614, 'in particular expect': 426531, 'particular expect to': 642612, 'to see increased': 914027, 'see increased demand': 745302, 'increased demand well': 433291, 'demand well drop': 236471, 'well drop off': 978210, 'drop off in': 260335, 'off in donated': 593924, 'in donated excess': 422355, 'donated excess food': 254334, 'excess food from': 289340, 'food from local': 314607, 'from local store': 336258, 'local store choose': 498459, 'store choose your': 806974, 'choose your favorite': 177927, 'your favorite charity': 1023821, 'favorite charity and': 300498, 'charity and make': 173561, 'and make difference': 66551, 'make difference more': 509836, 'difference more idea': 241862, 'more idea on': 539468, 'idea on how': 413143, 'to help at': 907457, 'help at makeourmark': 389388, 'at makeourmark helpourneighbors': 99667, '30seconds': 17519, 'stockingup': 803631, 'best food': 127691, 'pantry with': 639717, 'with during': 998152, 'pandemic or': 636118, 'or anytime': 614383, 'anytime 30seconds': 80965, '30seconds pantry': 17520, 'pantry food': 639579, 'food stockingup': 316820, 'are the best': 90801, 'the best food': 849513, 'best food to': 127692, 'food to stock': 317293, 'stock your freezer': 803225, 'freezer and pantry': 332580, 'and pantry with': 68689, 'pantry with during': 639718, 'with during the': 998153, 'coronavirus pandemic or': 206481, 'pandemic or anytime': 636119, 'or anytime 30seconds': 614384, 'anytime 30seconds pantry': 80966, '30seconds pantry food': 17521, 'pantry food stockingup': 639583, 'subsidising': 815982, 'frieght': 333473, 'bulky': 142395, 'n3': 551118, 'should even': 765967, 'gone far': 356273, 'far subsidising': 298922, 'subsidising frieght': 815983, 'frieght if': 333474, 'if possible': 414661, 'possible this': 665827, 'major factor': 509324, 'that drive': 843625, 'drive price': 259131, 'up air': 944250, 'air frieght': 39744, 'frieght on': 333476, 'on bulky': 599724, 'bulky equipment': 142396, 'is even': 447562, 'expensive than': 291281, 'than actual': 840319, 'actual item': 30674, 'item price': 463581, '19 rapid': 9955, 'rapid test': 696936, 'about dollar': 25122, 'dollar per': 253052, 'per piece': 650982, 'piece that': 656366, 'that about': 842474, 'about n3': 25776, 'n3 600': 551119, '600 only': 21100, 'they should even': 883362, 'should even have': 765968, 'even have gone': 284165, 'have gone far': 380792, 'gone far subsidising': 356274, 'far subsidising frieght': 298923, 'subsidising frieght if': 815984, 'frieght if possible': 333475, 'if possible this': 414673, 'possible this is': 665829, 'is the major': 452857, 'the major factor': 859929, 'major factor that': 509326, 'factor that drive': 295902, 'that drive price': 843627, 'drive price up': 259133, 'price up air': 677219, 'up air frieght': 944251, 'air frieght on': 39745, 'frieght on bulky': 333477, 'on bulky equipment': 599725, 'bulky equipment is': 142397, 'equipment is even': 279766, 'is even more': 447565, 'even more expensive': 284354, 'more expensive than': 539182, 'expensive than actual': 291282, 'than actual item': 840322, 'actual item price': 30675, 'item price covid': 463583, 'covid 19 rapid': 213653, '19 rapid test': 9957, 'rapid test kit': 696937, 'test kit are': 839049, 'kit are about': 475494, 'are about dollar': 84158, 'about dollar per': 25123, 'dollar per piece': 253054, 'per piece that': 650985, 'piece that about': 656367, 'that about n3': 842476, 'about n3 600': 25777, 'n3 600 only': 551120, 'comon': 190298, 'vest': 955682, 'oo': 611719, 'jomo': 467219, 'jomotv': 467222, 'kingjomo': 475358, 'now comon': 574417, 'comon nose': 190299, 'nose cover': 567880, 'cover and': 212191, 'sanitizer our': 735506, 'our politician': 624385, 'politician no': 663726, 'no fit': 564227, 'fit share': 309492, 'share but': 754951, 'it election': 457784, 'election time': 271068, 'will share': 994829, 'share bag': 754939, 'rice cap': 721021, 'and vest': 74942, 'vest hmm': 955687, 'hmm god': 398680, 'is watching': 453780, 'watching oo': 968773, 'oo jomo': 611723, 'jomo tv': 467220, 'tv jomotv': 936131, 'jomotv kingjomo': 467223, 'now comon nose': 574418, 'comon nose cover': 190300, 'nose cover and': 567881, 'cover and sanitizer': 212192, 'and sanitizer our': 70880, 'sanitizer our politician': 735507, 'our politician no': 624386, 'politician no fit': 663727, 'no fit share': 564228, 'fit share but': 309493, 'share but if': 754952, 'but if it': 145992, 'if it election': 414300, 'it election time': 457785, 'election time they': 271069, 'time they will': 897908, 'they will share': 883886, 'will share bag': 994830, 'share bag of': 754940, 'of rice cap': 589093, 'rice cap and': 721022, 'cap and vest': 162406, 'and vest hmm': 74943, 'vest hmm god': 955688, 'hmm god is': 398681, 'god is watching': 354747, 'is watching oo': 453785, 'watching oo jomo': 968774, 'oo jomo tv': 611724, 'jomo tv jomotv': 467221, 'tv jomotv kingjomo': 936132, 'remembered': 710441, 'hope remembered': 403608, 'remembered that': 710450, 'is paying': 450821, 'paying higher': 645428, 'now bc': 574187, 'bc if': 113243, 'get chicken': 346767, 'chicken bc': 175750, 'bc there': 113293, 'isn any': 454434, 'get beef': 346657, 'beef bc': 120483, 'bc it': 113245, 'it there': 461609, 'spend extra': 788604, 'extra in': 293551, 'gas to': 344155, 'supply hoarder': 825371, 'let hope remembered': 486804, 'hope remembered that': 403609, 'remembered that everyone': 710451, 'that everyone is': 843767, 'everyone is paying': 287100, 'is paying higher': 450824, 'paying higher price': 645429, 'higher price for': 395674, 'price for supply': 674052, 'for supply now': 326050, 'supply now bc': 825604, 'now bc if': 574188, 'bc if you': 113244, 'cannot get chicken': 161879, 'get chicken bc': 346768, 'chicken bc there': 175751, 'bc there isn': 113296, 'there isn any': 878662, 'isn any you': 454436, 'any you have': 80060, 'to get beef': 906422, 'get beef bc': 346658, 'beef bc it': 120484, 'bc it there': 113249, 'it there and': 461610, 'there and spend': 878009, 'and spend extra': 72088, 'spend extra in': 788606, 'extra in gas': 293552, 'in gas to': 423224, 'gas to run': 344158, 'to run to': 913675, 'run to store': 727844, 'to store to': 915647, 'get supply hoarder': 348158, 'practiced': 668711, 'shopper waiting': 761801, 'toronto canada': 925926, 'canada practiced': 160528, 'practiced social': 668714, 'distancing leaving': 247278, 'leaving significant': 485129, 'significant space': 769522, 'space between': 787069, 'between one': 128838, 'another the': 77895, 'and canada': 59479, 'canada have': 160457, 'the border': 849868, 'border between': 135221, 'two country': 936852, 'to non': 910629, 'essential traffic': 281716, 'traffic the': 929144, 'spread 19': 790382, 'shopper waiting to': 761802, 'waiting to enter': 964400, 'store in toronto': 808406, 'in toronto canada': 430202, 'toronto canada practiced': 925928, 'canada practiced social': 160529, 'practiced social distancing': 668715, 'social distancing leaving': 779647, 'distancing leaving significant': 247279, 'leaving significant space': 485130, 'significant space between': 769523, 'space between one': 787072, 'between one another': 128839, 'one another the': 605926, 'another the and': 77896, 'the and canada': 848687, 'and canada have': 59481, 'canada have agreed': 160458, 'agreed to close': 38736, 'to close the': 902901, 'close the border': 182835, 'the border between': 849870, 'border between the': 135223, 'the two country': 870146, 'two country to': 936853, 'country to non': 211167, 'to non essential': 910630, 'non essential traffic': 566368, 'essential traffic the': 281717, 'traffic the spread': 929147, 'the spread 19': 867613, 'empty no': 274959, 'problem because': 679475, 'because is': 119167, 'is skilled': 451953, 'skilled with': 773009, 'store empty no': 807586, 'empty no problem': 274964, 'no problem because': 565189, 'problem because is': 679476, 'because is skilled': 119169, 'is skilled with': 451954, 'changer': 172616, 'don charge': 253430, 'charge extortionate': 173227, 'this test': 890492, 'test ideally': 839025, 'ideally they': 413294, 'be free': 114951, 'free coronavirus': 331732, 'coronavirus game': 205979, 'game changer': 343148, 'changer covid': 172619, 'day mp': 227994, 'mp told': 544280, 'let hope they': 486808, 'hope they don': 403706, 'they don charge': 881987, 'don charge extortionate': 253431, 'charge extortionate price': 173228, 'extortionate price for': 293393, 'for this test': 327072, 'this test ideally': 890493, 'test ideally they': 839026, 'ideally they should': 413295, 'should be free': 765630, 'be free coronavirus': 114952, 'free coronavirus game': 331733, 'coronavirus game changer': 205980, 'game changer covid': 343149, 'changer covid 19': 172620, '19 test could': 11071, 'test could be': 838963, 'could be available': 208845, 'be available in': 113757, 'available in day': 104437, 'in day mp': 422014, 'day mp told': 227995, 'buying empty': 150218, 'shelf food': 757090, 'bank have': 109891, 'seen donation': 747000, 'dwindle is': 263666, 'need 19': 554336, 'panic buying empty': 637715, 'buying empty shelf': 150219, 'empty shelf food': 275065, 'shelf food bank': 757091, 'food bank have': 313582, 'bank have seen': 109897, 'have seen donation': 382422, 'seen donation dwindle': 747001, 'donation dwindle is': 254597, 'dwindle is working': 263668, 'is working hard': 454037, 'vulnerable can get': 960899, 'can get hold': 158422, 'hold of the': 399973, 'they need 19': 882713, 'compatriot': 191507, 'dear compatriot': 229761, 'compatriot and': 191508, 'and compatriot': 60209, 'compatriot of': 191511, 'of genius': 584086, 'genius soap': 345800, 'work better': 1004939, 'than hand': 840723, 'necessary when': 554141, 'eat if': 265948, 'you stopped': 1021444, 'stopped going': 805710, 'dear compatriot and': 229762, 'compatriot and compatriot': 191510, 'and compatriot of': 60210, 'compatriot of genius': 191512, 'of genius soap': 584088, 'genius soap work': 345801, 'soap work better': 779188, 'work better than': 1004942, 'better than hand': 128524, 'than hand sanitizer': 840725, 'hand sanitizer toilet': 375630, 'paper is not': 640357, 'not necessary when': 570645, 'necessary when you': 554142, 'home and there': 400701, 'and there plenty': 73849, 'food to eat': 317245, 'to eat if': 904889, 'eat if you': 265949, 'if you stopped': 415530, 'you stopped going': 1021445, 'stopped going to': 805711, 'to the damn': 916623, 'store for few': 807804, 'doofancy': 255431, 'not order': 570849, 'order anything': 618044, 'anything from': 80768, 'from company': 334933, 'company doofancy': 190612, 'doofancy ordered': 255432, 'ordered and': 618820, 'never delivered': 557939, 'delivered just': 233352, 'just more': 469287, 'more excuse': 539166, 'excuse why': 289797, 'not could': 568895, 'only patrol': 610939, 'patrol the': 644391, 'internet avoid': 441911, 'do not order': 249790, 'not order anything': 570850, 'order anything from': 618045, 'anything from company': 80769, 'from company doofancy': 334934, 'company doofancy ordered': 190613, 'doofancy ordered and': 255433, 'ordered and wa': 618822, 'and wa never': 75092, 'wa never delivered': 962700, 'never delivered just': 557940, 'delivered just more': 233353, 'just more excuse': 469289, 'more excuse why': 539167, 'excuse why not': 289799, 'why not could': 991216, 'not could only': 568896, 'could only patrol': 209484, 'only patrol the': 610940, 'patrol the internet': 644392, 'the internet avoid': 858379, 'enquirer': 277794, 'whatthe': 982941, 'what guy': 981529, 'most encouraging': 542297, 'encouraging story': 275738, 'national enquirer': 552498, 'enquirer everything': 277795, 'fine now': 307667, 'now whatthe': 576389, 'whatthe humor': 982942, 'humor comedy': 410857, 'guess what guy': 368082, 'what guy at': 981530, 'guy at the': 368919, 'supermarket saw the': 822321, 'saw the most': 738270, 'the most encouraging': 860980, 'most encouraging story': 542298, 'encouraging story from': 275739, 'story from our': 811986, 'at the national': 101029, 'the national enquirer': 861293, 'national enquirer everything': 552499, 'enquirer everything will': 277797, 'everything will be': 288109, 'be fine now': 114851, 'fine now whatthe': 307668, 'now whatthe humor': 576390, 'whatthe humor comedy': 982943, 'give their': 350757, 'staff big': 792266, 'big bonus': 129647, 'done since': 255010, 'since will': 770997, 'you give': 1018821, 'all nh': 43634, 'big pay': 129905, 'pay rise': 645092, 'much thanks': 545342, 'thanks this': 842199, 'ha for': 370651, 'deserve it': 238067, 'some supermarket are': 784003, 'supermarket are going': 819160, 'to give their': 906718, 'give their staff': 350758, 'their staff big': 874790, 'staff big bonus': 792267, 'big bonus for': 129648, 'all the hard': 44776, 'the hard work': 857105, 'hard work they': 378132, 'work they have': 1005842, 'they have done': 882312, 'have done since': 380334, 'done since will': 255011, 'since will you': 770998, 'will you give': 995386, 'you give all': 1018823, 'give all nh': 350367, 'all nh staff': 43636, 'nh staff big': 562079, 'staff big pay': 792268, 'big pay rise': 129907, 'pay rise to': 645098, 'rise to show': 723037, 'to show how': 914559, 'show how much': 766985, 'how much thanks': 408372, 'much thanks this': 545343, 'thanks this country': 842200, 'this country ha': 886954, 'country ha for': 210714, 'ha for them': 370652, 'them they deserve': 876414, 'they deserve it': 881896, 'people avoid': 647197, 'panic love': 638293, 'love not': 504732, 'hate we': 378935, 'beat corona': 118514, 'corona but': 203836, 'but together': 147611, 'together do': 920762, 'do basic': 249114, 'basic wash': 112095, 'hand simple': 375758, 'simple life': 770049, 'life healthy': 488727, 'healthy food': 387623, 'and sound': 72016, 'sound sleep': 786333, 'sleep to': 773798, 'to built': 902099, 'built immunity': 142186, 'immunity against': 417388, 'against virus': 37733, 'help people avoid': 390286, 'people avoid panic': 647198, 'avoid panic love': 105209, 'panic love not': 638294, 'love not hate': 504733, 'not hate we': 569807, 'hate we can': 378936, 'can beat corona': 157719, 'beat corona but': 118515, 'corona but together': 203839, 'but together do': 147612, 'together do basic': 920763, 'do basic wash': 249115, 'basic wash hand': 112096, 'wash hand simple': 967496, 'hand simple life': 375759, 'simple life healthy': 770050, 'life healthy food': 488728, 'healthy food and': 387624, 'food and sound': 313338, 'and sound sleep': 72018, 'sound sleep to': 786334, 'sleep to built': 773800, 'to built immunity': 902100, 'built immunity against': 142187, 'immunity against virus': 417390, 'engineered': 276981, 'april about': 83531, 'about million': 25727, 'of homeless': 584728, 'homeless crude': 402742, 'crude per': 219578, 'day literally': 227915, 'literally have': 495016, 'have nowhere': 381742, 'go repeat': 354069, 'repeat engineered': 711511, 'engineered economic': 276982, 'economic crash': 267028, 'crash oil': 215015, 'in april about': 420464, 'april about million': 83532, 'about million barrel': 25728, 'million barrel of': 532086, 'barrel of homeless': 111254, 'of homeless crude': 584729, 'homeless crude per': 402744, 'crude per day': 219579, 'per day literally': 650802, 'day literally have': 227916, 'literally have nowhere': 495020, 'have nowhere to': 381743, 'to go repeat': 906846, 'go repeat engineered': 354070, 'repeat engineered economic': 711512, 'engineered economic crash': 276983, 'economic crash oil': 267029, 'now died': 574521, 'of coronavirus at': 581916, 'giant have now': 349796, 'have now died': 381730, 'now died from': 574522, '19 in recent': 7778, 'rip leilani': 722656, 'leilani and': 486113, 'and god': 63792, 'bless you': 132605, 'elderly during': 270667, 'this mess': 888832, 'mess grocery': 529226, 'rip leilani and': 722657, 'leilani and god': 486114, 'and god bless': 63793, 'god bless you': 354660, 'bless you for': 132608, 'you for helping': 1018642, 'for helping the': 322204, 'the elderly during': 854122, 'elderly during this': 270668, 'during this mess': 263300, 'this mess grocery': 888834, 'mess grocery clerk': 529227, 'prediction about': 669647, 'market also': 515926, 'also bitcoin': 47964, 'bitcoin very': 131843, 'prediction about and': 669648, 'about and the': 24804, 'and the market': 73471, 'the market also': 860084, 'market also bitcoin': 515927, 'also bitcoin very': 47965, 'bitcoin very interesting': 131844, 'ha really': 371646, 'really exposed': 702178, 'exposed lot': 292857, 'thing outside': 884667, 'that tp': 847106, 'tp sale': 927923, 'sale apparently': 732054, 'apparently match': 81966, 'match consumer': 520285, 'confidence it': 193913, 'really necessary': 702424, 'family that': 298291, 'that depend': 843498, 'on meal': 602077, 'meal poor': 524246, 'poor family': 664167, 'and worker': 75869, 'support we': 826982, 'are better': 84955, 'pandemic ha really': 635561, 'ha really exposed': 371650, 'really exposed lot': 702179, 'exposed lot of': 292858, 'of thing outside': 591909, 'thing outside of': 884668, 'outside of the': 629516, 'of the fact': 591007, 'fact that tp': 295816, 'that tp sale': 847108, 'tp sale apparently': 927924, 'sale apparently match': 732055, 'apparently match consumer': 81967, 'match consumer confidence': 520286, 'consumer confidence it': 196908, 'confidence it is': 193914, 'it is really': 459056, 'is really necessary': 451310, 'really necessary to': 702425, 'necessary to visit': 554131, 'to visit the': 918214, 'visit the number': 959391, 'of family that': 583410, 'family that depend': 298292, 'that depend on': 843499, 'depend on meal': 237320, 'on meal poor': 602078, 'meal poor family': 524247, 'poor family and': 664168, 'family and worker': 297614, 'and worker need': 75877, 'worker need support': 1007428, 'need support we': 555693, 'support we are': 826983, 'we are better': 970491, 'are better than': 84958, 'selfishly': 748317, 'about instead': 25539, 'of giving': 584137, 'giving tip': 351434, 'tip and': 898700, 'and praising': 69312, 'praising people': 668902, 'for hoarding': 322318, 'hoarding resource': 399493, 'resource that': 714887, 'disabled actually': 243869, 'need why': 556214, 'you try': 1021936, 'tell people': 837046, 'that now': 845416, 'now isnt': 575096, 'isnt the': 454787, 'be selfishly': 117066, 'selfishly stockpiling': 748322, 'stockpiling stoppanicbuying': 804081, 'how about instead': 407286, 'about instead of': 25540, 'instead of giving': 440265, 'of giving tip': 584142, 'giving tip and': 351435, 'tip and praising': 898706, 'and praising people': 69313, 'praising people for': 668903, 'people for hoarding': 647952, 'for hoarding resource': 322327, 'hoarding resource that': 399494, 'resource that many': 714889, 'that many of': 845027, 'and disabled actually': 61387, 'disabled actually need': 243870, 'actually need why': 30912, 'need why do': 556215, 'not you try': 572621, 'you try and': 1021937, 'try and tell': 934457, 'and tell people': 73096, 'tell people that': 837049, 'people that now': 649773, 'that now isnt': 845421, 'now isnt the': 575097, 'isnt the time': 454788, 'to be selfishly': 901527, 'be selfishly stockpiling': 117067, 'selfishly stockpiling stoppanicbuying': 748323, 'productive': 682287, 'can africa': 157414, 'africa work': 35160, 'line new': 493275, 'new survey': 559707, 'survey show': 828946, 'that 80': 842470, 'not productive': 571106, 'productive they': 682300, 'spending more': 788910, 'medium entertainment': 527092, 'entertainment and': 278550, 'shopping than': 764066, 'than working': 841474, 'working is': 1008745, 'is africa': 445409, 'africa ready': 35121, 'can africa work': 157415, 'africa work on': 35161, 'work on line': 1005536, 'on line new': 601860, 'line new survey': 493276, 'new survey show': 559712, 'survey show that': 828950, 'show that 80': 767175, 'that 80 of': 842471, '80 of the': 22611, 'asked to work': 95882, 'from home because': 335843, '19 are not': 5204, 'are not productive': 88442, 'not productive they': 571107, 'productive they are': 682301, 'they are spending': 881413, 'are spending more': 90325, 'spending more time': 788918, 'time on social': 897402, 'social medium entertainment': 779849, 'medium entertainment and': 527093, 'entertainment and shopping': 278552, 'and shopping than': 71552, 'shopping than working': 764070, 'than working is': 841476, 'working is africa': 1008746, 'is africa ready': 445410, 'africa ready to': 35122, 'ready to work': 700988, 'to work online': 918760, 'congratulation': 194440, 'malaysian': 511656, 'crave': 215161, 'congratulation malaysian': 194443, 'malaysian we': 511670, 'better let': 128353, 'have party': 381899, 'party tomorrow': 643051, 'tomorrow at': 924030, 'supermarket those': 823324, 'and join': 65672, 'join some': 466838, 'of crave': 582117, 'crave the': 215169, 'congratulation malaysian we': 194444, 'malaysian we can': 511671, 'can do better': 158096, 'do better let': 249137, 'better let have': 128354, 'let have party': 486773, 'have party tomorrow': 381900, 'party tomorrow at': 643052, 'tomorrow at the': 924039, 'the supermarket those': 868855, 'supermarket those who': 823326, 'those who covid': 892625, '19 please come': 9711, 'please come and': 659796, 'come and join': 187218, 'and join some': 65675, 'join some of': 466839, 'some of crave': 783393, 'of crave the': 582119, 'crave the virus': 215170, 'our founder': 623155, 'founder amp': 330520, 'ceo discussed': 169688, 'discussed our': 244963, 'our ongoing': 624137, 'ongoing online': 607665, 'behavior analysis': 123876, 'analysis with': 57093, 'our founder amp': 623156, 'founder amp ceo': 330521, 'amp ceo discussed': 53511, 'ceo discussed our': 169689, 'discussed our ongoing': 244964, 'our ongoing online': 624138, 'ongoing online shopping': 607666, 'shopping behavior analysis': 762195, 'behavior analysis with': 123878, 'midwife': 530836, 'carer': 164551, 'nursery': 577565, 'clapfornhs': 180004, 'thankyounhs': 842379, 'skilled worker': 773010, 'worker according': 1006195, 'government paramedic': 360450, 'paramedic nurse': 641391, 'nurse midwife': 577421, 'midwife social': 530839, 'worker carer': 1006607, 'carer supermarket': 164558, 'worker bus': 1006549, 'driver nursery': 259664, 'nursery teacher': 577576, 'teacher what': 835532, 'make clapfornhs': 509771, 'clapfornhs thankyounhs': 180009, 'low skilled worker': 505622, 'skilled worker according': 773011, 'worker according to': 1006196, 'to the uk': 917150, 'uk government paramedic': 938415, 'government paramedic nurse': 360451, 'paramedic nurse midwife': 641392, 'nurse midwife social': 577423, 'midwife social worker': 530840, 'social worker carer': 780018, 'worker carer supermarket': 1006608, 'carer supermarket worker': 164559, 'supermarket worker bus': 823998, 'worker bus driver': 1006550, 'bus driver nursery': 143022, 'driver nursery teacher': 259665, 'nursery teacher what': 577577, 'teacher what difference': 835533, 'month make clapfornhs': 537846, 'make clapfornhs thankyounhs': 509772, 'hysterical': 412496, 'dysfunctional': 263930, 'left wing': 485738, 'wing supermarket': 995990, 'right wing': 722425, 'now guess': 574833, 'guess which': 368091, 'which country': 985780, 'the press': 864280, 'press call': 671021, 'call hysterical': 155933, 'hysterical dysfunctional': 412497, 'dysfunctional 19': 263931, 'left wing supermarket': 485740, 'wing supermarket right': 995992, 'supermarket right wing': 822249, 'right wing supermarket': 722429, 'wing supermarket now': 995991, 'supermarket now guess': 821665, 'now guess which': 574835, 'guess which country': 368092, 'which country the': 985781, 'country the press': 211133, 'the press call': 864284, 'press call hysterical': 671022, 'call hysterical dysfunctional': 155934, 'hysterical dysfunctional 19': 412498, 'of cannabis': 581101, 'cannabis in': 161411, 'france have': 331004, 'have soared': 382605, 'soared in': 779295, 'price of cannabis': 675418, 'of cannabis in': 581103, 'cannabis in france': 161412, 'in france have': 423078, 'france have soared': 331005, 'have soared in': 382606, 'soared in the': 779296, 'wake of coronavirus': 964594, 'freeing': 332421, 'mandela': 513082, 'arr': 93677, 'like saying': 491136, 'saying covid': 739579, 'environment slowing': 279150, 'slowing climate': 774527, 'change while': 172394, 'while that': 987367, 'that true': 847131, 'true trump': 933198, 'with gas': 998600, 'price dropping': 673598, 'dropping or': 260712, 'or climate': 614742, 'change slowing': 172260, 'slowing next': 774560, 'next he': 561395, 'he ll': 385193, 'take credit': 832043, 'credit for': 216392, 'for freeing': 321743, 'freeing mandela': 332422, 'mandela by': 513083, 'by having': 152766, 'having been': 383994, 'been arr': 120682, 'like saying covid': 491138, 'saying covid 19': 739580, '19 is good': 7981, 'for the environment': 326413, 'the environment slowing': 854406, 'environment slowing climate': 279151, 'slowing climate change': 774528, 'climate change while': 182206, 'change while that': 172395, 'while that true': 987369, 'that true trump': 847132, 'true trump ha': 933199, 'trump ha nothing': 933592, 'do with gas': 250550, 'with gas price': 998601, 'gas price dropping': 343955, 'price dropping or': 673604, 'dropping or climate': 260713, 'or climate change': 614743, 'climate change slowing': 182201, 'change slowing next': 172261, 'slowing next he': 774561, 'next he ll': 561396, 'he ll take': 385201, 'll take credit': 497059, 'take credit for': 832044, 'credit for freeing': 216395, 'for freeing mandela': 321744, 'freeing mandela by': 332423, 'mandela by having': 513084, 'by having been': 152767, 'having been arr': 383995, 'wisconsin distillery': 996614, 'distillery across': 247721, 'gear amidst': 344938, 'now using': 576289, 'with recipe': 1000418, 'recipe provided': 704493, 'provided directly': 686594, 'directly from': 243547, 'wisconsin distillery across': 996615, 'distillery across the': 247723, 'across the state': 29523, 'the state are': 867747, 'state are switching': 795392, 'are switching gear': 90694, 'switching gear amidst': 830562, 'gear amidst the': 344939, 'amidst the global': 52827, 'global pandemic they': 352107, 'pandemic they re': 636738, 're now using': 699147, 'now using their': 576291, 'using their product': 950732, 'their product to': 874476, 'product to make': 681753, 'sanitizer with recipe': 736139, 'with recipe provided': 1000419, 'recipe provided directly': 704494, 'provided directly from': 686595, 'directly from the': 243551, 'thought with': 893320, 'with self': 1000621, 'self service': 747903, 'so popular': 778049, 'popular that': 664612, 'world would': 1010205, 'have thought with': 383128, 'thought with self': 893321, 'with self service': 1000625, 'self service so': 747906, 'service so popular': 752840, 'so popular that': 778050, 'popular that the': 664613, 'that the safest': 846825, 'the safest job': 866142, 'the world would': 872012, 'world would be': 1010206, 'would be that': 1011658, 'be that of': 117582, 'that of supermarket': 845454, 'of supermarket cashier': 590415, 'adi': 32244, 'enable': 275417, 'when asked': 983176, 'asked why': 95909, 'doe adi': 251318, 'adi continue': 32247, 'operate be': 612981, 'of adi': 579784, 'adi business': 32245, 'on healthcare': 601260, 'consumer system': 199208, 'system our': 831279, 'product enable': 681160, 'enable critical': 275422, 'critical medical': 218602, 'medical and': 526042, 'healthcare equipment': 387095, 'equipment used': 279865, 'and treat': 74415, 'patient suffering': 644264, 'when asked why': 983184, 'asked why doe': 95910, 'why doe adi': 990947, 'doe adi continue': 251319, 'adi continue to': 32248, 'continue to operate': 201225, 'to operate be': 911018, 'operate be proud': 612982, 'be proud to': 116586, 'proud to tell': 686064, 'to tell them': 916351, 'tell them that': 837104, 'them that one': 876381, 'one of adi': 606733, 'of adi business': 579785, 'adi business is': 32246, 'business is on': 143957, 'is on healthcare': 450467, 'on healthcare and': 601261, 'healthcare and consumer': 387026, 'and consumer system': 60433, 'consumer system our': 199209, 'system our product': 831280, 'our product enable': 624480, 'product enable critical': 681161, 'enable critical medical': 275423, 'critical medical and': 218603, 'medical and healthcare': 526046, 'and healthcare equipment': 64376, 'healthcare equipment used': 387097, 'equipment used to': 279866, 'used to test': 950095, 'to test and': 916390, 'test and treat': 838918, 'and treat patient': 74419, 'treat patient suffering': 930868, 'patient suffering from': 644265, 'suffering from covid': 817308, 'menards': 528577, 'cited': 178777, 'menards cited': 528578, 'cited by': 178780, 'by nessel': 153320, 'nessel for': 557506, 'for second': 325405, 'second time': 743844, 'for action': 319002, 'action during': 30002, 'menards cited by': 528579, 'cited by nessel': 178781, 'by nessel for': 153321, 'nessel for second': 557507, 'for second time': 325409, 'second time for': 743845, 'time for action': 896687, 'for action during': 319004, 'action during covid': 30003, 'starmer': 794177, 'starmer please': 794180, 'please before': 659719, 'before booking': 122666, 'booking that': 134743, 'that delivery': 843488, 'slot if': 774210, 'yourself think': 1026721, 'might need': 531080, 'it more': 459663, 'and consider': 60311, 'consider if': 195024, 'need delivery': 554665, 'starmer please before': 794181, 'please before booking': 659720, 'before booking that': 122667, 'booking that delivery': 134744, 'that delivery slot': 843489, 'delivery slot if': 234527, 'slot if you': 774211, 'you are able': 1017047, 'able to shop': 24545, 'to shop for': 914460, 'shop for yourself': 760215, 'for yourself think': 328240, 'yourself think of': 1026722, 'those who might': 892656, 'who might need': 989286, 'might need it': 531084, 'need it more': 555095, 'it more than': 459675, 'more than you': 540702, 'than you and': 841486, 'you and consider': 1016982, 'and consider if': 60314, 'consider if you': 195025, 'you really do': 1020835, 'really do need': 702126, 'do need delivery': 249636, 'need delivery or': 554667, 'delivery or if': 234284, 'you could go': 1018090, 'could go to': 209221, 'brainstorming': 137622, 'language': 479479, '903': 23406, '689': 21514, '1975': 12434, 'it nielsen': 459811, 'nielsen gonna': 562647, 'gonna get': 356527, 'data might': 226302, 'might dive': 530959, 'with brainstorming': 997463, 'brainstorming any': 137623, 'any opportunity': 79568, 'opportunity here': 613640, 'here because': 392804, 'because marketing': 119233, 'marketing language': 517636, 'language will': 479500, 'will shift': 994835, 'into these': 443204, 'these funnel': 880046, 'funnel want': 341681, 'that text': 846640, 'text yes': 839961, 'yes to': 1015573, 'to 903': 899868, '903 689': 23407, '689 1975': 21515, 'one thing about': 607215, 'about it nielsen': 25586, 'it nielsen gonna': 459812, 'nielsen gonna get': 562648, 'gonna get their': 356537, 'get their consumer': 348325, 'their consumer data': 872854, 'consumer data might': 197060, 'data might dive': 226304, 'might dive into': 530960, 'dive into this': 248491, 'into this if': 443215, 'this if have': 887996, 'if have time': 414205, 'to help with': 907668, 'help with brainstorming': 390901, 'with brainstorming any': 997464, 'brainstorming any opportunity': 137624, 'any opportunity here': 79570, 'opportunity here because': 613641, 'here because marketing': 392805, 'because marketing language': 119234, 'marketing language will': 517638, 'language will shift': 479501, 'will shift into': 994836, 'shift into these': 758337, 'into these funnel': 443205, 'these funnel want': 880047, 'funnel want that': 341682, 'want that text': 965954, 'that text yes': 846641, 'text yes to': 839962, 'yes to 903': 1015574, 'to 903 689': 899869, '903 689 1975': 23408, 'questioned': 693833, 'addiction my': 31644, 'husband still': 411761, 'not questioned': 571190, 'questioned the': 693834, 'of box': 580814, 'box ve': 137193, 'been receiving': 121788, 'receiving though': 703808, 'though so': 892885, 'that good': 844042, 'this quarantine is': 889774, 'quarantine is not': 692304, 'is not good': 450096, 'not good for': 569722, 'good for my': 357084, 'for my online': 323736, 'shopping addiction my': 761896, 'addiction my husband': 31645, 'my husband still': 548794, 'husband still ha': 411763, 'still ha not': 800618, 'ha not questioned': 371371, 'not questioned the': 571191, 'questioned the amount': 693835, 'amount of box': 53208, 'of box ve': 580816, 'box ve been': 137194, 've been receiving': 952922, 'been receiving though': 121789, 'receiving though so': 703809, 'though so that': 892888, 'so that good': 778372, 'mvp': 547108, 'doctor emergency': 250899, 'store amp': 806175, 'amp gas': 53857, 'employee banker': 273660, 'banker and': 110341, 'and anybody': 58221, 'anybody else': 80068, 'work right': 1005674, 'world running': 1009947, 'running thank': 728091, 'real mvp': 701272, 'mvp we': 547110, 'appreciate all': 82702, 'all keep': 43302, 'the nurse doctor': 861981, 'nurse doctor emergency': 577290, 'doctor emergency service': 250900, 'emergency service worker': 272973, 'service worker grocery': 753097, 'grocery store amp': 365195, 'store amp gas': 806177, 'amp gas station': 53862, 'station employee banker': 796391, 'employee banker and': 273661, 'banker and anybody': 110343, 'and anybody else': 58222, 'anybody else that': 80074, 'else that is': 271906, 'to work right': 918775, 'work right now': 1005678, 'now to keep': 576170, 'keep the world': 472079, 'the world running': 871956, 'world running thank': 1009949, 'running thank you': 728092, 'you all are': 1016865, 'the real mvp': 865226, 'real mvp we': 701274, 'mvp we appreciate': 547111, 'we appreciate all': 970450, 'appreciate all keep': 82704, 'all keep safe': 43303, 'taylor': 835217, 'taylor hard': 835222, 'dog need': 252131, 'food too': 317331, 'taylor hard time': 835223, 'hard time the': 378043, 'time the dog': 897851, 'the dog need': 853498, 'dog need to': 252132, 'stock food too': 802153, 'nears': 553873, 'could turn': 209798, 'turn negative': 935704, 'negative storage': 556827, 'storage nears': 805975, 'nears capacity': 553874, 'oil price could': 597089, 'price could turn': 673299, 'could turn negative': 209800, 'turn negative storage': 935706, 'negative storage nears': 556828, 'storage nears capacity': 805976, 'us': 948498, 'kr': 477612, 'rm16': 724257, '93': 23519, 'rm42': 724267, 'kelik': 472704, 'mekoh': 527892, 'balik': 109042, 'hari': 378360, 'denmark us': 237031, 'us price': 948538, 'price trick': 677118, 'avoid selfish': 105268, 'selfish buying': 748042, 'buying bottle': 150038, 'bottle 40': 136165, '40 kr': 18596, 'kr rm16': 477616, 'rm16 93': 724258, '93 if': 23522, 'if bottle': 413903, 'bottle 100': 136157, '100 kr': 1936, 'kr rm42': 477618, 'rm42 33': 724268, '33 malaysia': 17762, 'malaysia should': 511630, 'should apply': 765521, 'apply this': 82603, 'this instead': 888137, 'of selling': 589493, 'for kelik': 322822, 'kelik mekoh': 472705, 'mekoh balik': 527893, 'balik hari': 109043, 'hari handsanitizer': 378361, 'in denmark us': 422190, 'denmark us price': 237033, 'us price trick': 948539, 'price trick to': 677119, 'trick to avoid': 931715, 'to avoid selfish': 900937, 'avoid selfish buying': 105269, 'selfish buying bottle': 748043, 'buying bottle 40': 150039, 'bottle 40 kr': 136166, '40 kr rm16': 18598, 'kr rm16 93': 477617, 'rm16 93 if': 724259, '93 if bottle': 23523, 'if bottle 100': 413904, 'bottle 100 kr': 136158, '100 kr rm42': 1937, 'kr rm42 33': 477619, 'rm42 33 malaysia': 724269, '33 malaysia should': 17763, 'malaysia should apply': 511631, 'should apply this': 765522, 'apply this instead': 82604, 'this instead of': 888140, 'instead of selling': 440316, 'of selling for': 589494, 'selling for kelik': 749259, 'for kelik mekoh': 322823, 'kelik mekoh balik': 472706, 'mekoh balik hari': 527894, 'balik hari handsanitizer': 109044, 'desantis': 237896, 'statewide': 796257, 'grower': 367093, 'rotting': 726212, 'vine': 957428, 'march 20': 515126, '20 gov': 13081, 'gov desantis': 359571, 'desantis closed': 237897, 'room statewide': 725970, 'statewide amp': 796258, 'amp grower': 53894, 'grower went': 367115, 'into free': 442569, 'fall 85': 296801, '85 reduction': 22931, 'demand tomato': 236410, 'tomato sit': 923968, 'sit rotting': 771842, 'rotting on': 726219, 'the vine': 870772, 'vine restaurant': 957431, 'restaurant close': 716370, 'close amp': 182522, 'amp demand': 53628, 'demand plummet': 236039, 'plummet covid': 661268, '19 show': 10508, 'fact we': 295839, 'strengthen local': 813247, 'food resource': 316185, 'on march 20': 602015, 'march 20 gov': 515131, '20 gov desantis': 13082, 'gov desantis closed': 359572, 'desantis closed restaurant': 237898, 'restaurant dining room': 716423, 'dining room statewide': 243030, 'room statewide amp': 725971, 'statewide amp grower': 796259, 'amp grower went': 53895, 'grower went into': 367116, 'went into free': 979045, 'into free fall': 442570, 'free fall 85': 331802, 'fall 85 reduction': 296802, '85 reduction in': 22932, 'reduction in demand': 706360, 'in demand tomato': 422163, 'demand tomato sit': 236411, 'tomato sit rotting': 923969, 'sit rotting on': 771843, 'rotting on the': 726220, 'on the vine': 604433, 'the vine restaurant': 870773, 'vine restaurant close': 957432, 'restaurant close amp': 716371, 'close amp demand': 182524, 'amp demand plummet': 53632, 'demand plummet covid': 236040, 'plummet covid 19': 661269, 'covid 19 show': 213794, '19 show the': 10511, 'show the fact': 767208, 'the fact we': 854834, 'fact we need': 295842, 'need to strengthen': 556093, 'to strengthen local': 915667, 'strengthen local food': 813248, 'local food resource': 497971, 'uk when': 938881, 'of the uk': 591567, 'the uk when': 870299, 'uk when they': 938882, 'they get into': 882169, 'lime': 492253, 'lime and': 492254, 'and bird': 58980, 'bird are': 131324, 'are rethinking': 89667, 'rethinking their': 719669, 'business strategy': 144426, 'strategy travel': 812739, 'travel demand': 930332, 'lime and bird': 492255, 'and bird are': 58981, 'bird are rethinking': 131325, 'are rethinking their': 89668, 'rethinking their business': 719670, 'their business strategy': 872689, 'business strategy travel': 144428, 'strategy travel demand': 812740, 'travel demand plummet': 930335, 'do job': 249531, 'supermarket delivering': 819909, 'delivering grocery': 233506, 'people home': 648281, 'home out': 401803, 'of 11': 579330, '11 drop': 2516, 'today were': 920504, 'were self': 980095, 'person telling': 652628, 'telling they': 837282, 'to worse': 918846, 'worse before': 1010880, 'it get': 458213, 'do job for': 249532, 'job for local': 465825, 'for local supermarket': 323056, 'local supermarket delivering': 498515, 'supermarket delivering grocery': 819910, 'delivering grocery to': 233508, 'grocery to people': 366056, 'to people home': 911624, 'people home out': 648285, 'home out of': 401804, 'out of 11': 626666, 'of 11 drop': 579332, '11 drop today': 2517, 'drop today were': 260434, 'today were self': 920506, 'were self isolating': 980097, 'isolating with one': 455168, 'with one person': 999888, 'one person telling': 606868, 'person telling they': 652629, 'telling they have': 837283, 'they have covid': 882309, 'this is only': 888347, 'is only going': 450539, 'going to worse': 355763, 'to worse before': 918847, 'worse before it': 1010881, 'before it get': 122886, 'it get better': 458215, 'deactivated': 229117, 'canvas': 162389, '18x24cm': 4694, 'sickboy': 768693, 'sickonthewall': 768767, 'disposal': 246275, 'bomb': 134173, 'stencil': 799476, 'srencilart': 791589, 'popart': 664483, 'streetart': 813192, 'shopping deactivated': 762437, 'deactivated spray': 229120, 'spray on': 790315, 'on canvas': 599806, 'canvas 18x24cm': 162390, '18x24cm sickboy': 4695, 'sickboy sickonthewall': 768694, 'sickonthewall shopping': 768768, 'shopping disposal': 762486, 'disposal bomb': 246276, 'bomb supermarket': 134188, 'shop stencil': 760836, 'stencil srencilart': 799477, 'srencilart art': 791590, 'art popart': 94190, 'popart streetart': 664484, 'streetart quarantine': 813193, 'quarantine easter': 692165, 'shopping deactivated spray': 762438, 'deactivated spray on': 229121, 'spray on canvas': 790316, 'on canvas 18x24cm': 599807, 'canvas 18x24cm sickboy': 162391, '18x24cm sickboy sickonthewall': 4696, 'sickboy sickonthewall shopping': 768695, 'sickonthewall shopping disposal': 768769, 'shopping disposal bomb': 762487, 'disposal bomb supermarket': 246277, 'bomb supermarket shop': 134189, 'supermarket shop stencil': 822596, 'shop stencil srencilart': 760837, 'stencil srencilart art': 799478, 'srencilart art popart': 791591, 'art popart streetart': 94191, 'popart streetart quarantine': 664485, 'streetart quarantine easter': 813194, 'planner': 658485, 'group attack': 366615, 'attack on': 102133, 'on financial': 600790, 'financial planner': 306529, 'planner is': 658498, 'unjustified australian': 942491, 'australian battle': 103443, 'financial planning': 306533, 'planning association': 658516, 'association of': 96966, 'of australia': 580452, 'consumer group attack': 197655, 'group attack on': 366616, 'attack on financial': 102135, 'on financial planner': 600792, 'financial planner is': 306530, 'planner is unjustified': 658499, 'is unjustified australian': 453515, 'unjustified australian battle': 942492, 'australian battle the': 103445, '19 crisis the': 6334, 'crisis the financial': 218172, 'the financial planning': 855222, 'financial planning association': 306534, 'planning association of': 658517, 'association of australia': 96968, 'stabbings': 791776, '19th': 12532, 'coronavirus crime': 205732, 'crime from': 216779, 'supermarket stabbings': 822801, 'stabbings to': 791779, 'to toxic': 917664, 'toxic cure': 927642, 'and door': 61678, 'door virus': 255767, 'virus testing': 958856, 'testing attention': 839454, 'attention watch': 102503, 'watch today': 968589, 'the 19th': 847963, 'coronavirus crime from': 205733, 'crime from supermarket': 216780, 'from supermarket stabbings': 337504, 'supermarket stabbings to': 822802, 'stabbings to toxic': 791781, 'to toxic cure': 917665, 'toxic cure and': 927643, 'cure and door': 220698, 'and door to': 61681, 'to door virus': 904676, 'door virus testing': 255769, 'virus testing attention': 958857, 'testing attention watch': 839455, 'attention watch today': 102504, 'watch today on': 968592, 'today on the': 919973, 'on the 19th': 603954, 'the survey': 869022, 'consumer preference': 198406, 'east amid': 265285, 'the survey reveals': 869026, 'reveals consumer preference': 720313, 'consumer preference in': 198408, 'preference in the': 669788, 'the middle east': 860568, 'middle east amid': 530643, 'east amid covid': 265286, 'dial': 240281, 'referral': 706515, 'flexible': 310381, 'way mass': 969699, 'mass statewide': 519866, 'statewide consumer': 796263, 'consumer hotline': 197775, 'hotline will': 405269, 'provide consumer': 686244, 'consumer help': 197739, 'emergency dial': 272664, 'dial for': 240285, 'for information': 322573, 'and referral': 70118, 'referral related': 706520, 'virus including': 958337, 'including where': 432250, 'access flexible': 28114, 'flexible fund': 310388, 'fund through': 341516, 'family support': 298270, 'support fund': 826539, 'united way mass': 942264, 'way mass statewide': 969700, 'mass statewide consumer': 519867, 'statewide consumer hotline': 796264, 'consumer hotline will': 197778, 'hotline will provide': 405270, 'will provide consumer': 994509, 'provide consumer help': 686246, 'consumer help during': 197740, 'help during the': 389613, 'during the public': 263177, 'the public health': 864818, 'health emergency dial': 386396, 'emergency dial for': 272665, 'dial for information': 240286, 'for information and': 322575, 'information and referral': 437740, 'and referral related': 70119, 'referral related to': 706521, 'the virus including': 870847, 'virus including where': 958340, 'including where you': 432251, 'can access flexible': 157351, 'access flexible fund': 28115, 'flexible fund through': 310389, 'fund through the': 341517, 'through the covid': 894728, '19 family support': 6938, 'family support fund': 298271, 'reusuable': 720187, 'charlie': 173749, 'baker': 108785, 'in reusuable': 427485, 'reusuable shopping': 720188, 'bag have': 108312, 'been banned': 120725, 'banned for': 110567, 'use at': 949056, 'at store': 100647, 'by mass': 153179, 'mass gov': 519778, 'gov charlie': 359550, 'charlie baker': 173750, 'baker amid': 108788, 'outbreak store': 628664, 'not charge': 568738, 'paper amp': 639797, 'amp plastic': 54304, 'just in reusuable': 469046, 'in reusuable shopping': 427486, 'reusuable shopping bag': 720189, 'shopping bag have': 762144, 'bag have been': 108313, 'have been banned': 379474, 'been banned for': 120726, 'banned for use': 110568, 'for use at': 327494, 'use at store': 949058, 'at store by': 100649, 'store by mass': 806834, 'by mass gov': 153180, 'mass gov charlie': 519779, 'gov charlie baker': 359551, 'charlie baker amid': 173751, 'baker amid the': 108789, 'the outbreak store': 862700, 'outbreak store must': 628665, 'store must not': 809007, 'must not charge': 546777, 'not charge for': 568740, 'charge for paper': 173239, 'for paper amp': 324377, 'paper amp plastic': 639799, 'amp plastic bag': 54305, 'from profiting': 336990, 'virus uk': 958954, 'essential at': 280801, 'at grossly': 98819, 'grossly inflated': 366459, 'stop these people': 805176, 'these people from': 880438, 'people from profiting': 648003, 'from profiting from': 336991, 'profiting from the': 683127, '19 virus uk': 11841, 'virus uk and': 958955, 'uk and should': 938175, 'and should stop': 71597, 'should stop these': 766525, 'people from selling': 648007, 'from selling hand': 337209, 'sanitizer toilet roll': 735964, 'roll and other': 725181, 'other essential at': 620152, 'essential at grossly': 280805, 'at grossly inflated': 98821, 'grossly inflated price': 366460, 'adam': 31208, 'jonas': 467229, 'tsla': 934944, 'phrase': 655340, 'competitive': 191764, 'ev': 283664, 'tesla': 838882, 'edge': 268488, 'electrification': 271243, 'reading adam': 700731, 'adam jonas': 31220, 'jonas latest': 467230, 'latest about': 481194, 'help tsla': 390821, 'tsla he': 934945, 'he us': 385563, 'us some': 948549, 'interesting turn': 441642, 'turn of': 935709, 'of phrase': 588107, 'phrase the': 655347, 'the further': 856057, 'further along': 341997, 'along other': 47013, 'other competitive': 619982, 'competitive ev': 191774, 'ev program': 283671, 'program get': 683251, 'get pushed': 347863, 'more tesla': 540535, 'tesla will': 838889, 'will extend': 993386, 'extend it': 293110, 'it competitive': 457238, 'competitive edge': 191772, 'edge in': 268509, 'in electrification': 422526, 'electrification from': 271244, 'the perspective': 863599, 'perspective of': 653218, 'reading adam jonas': 700732, 'adam jonas latest': 31221, 'jonas latest about': 467231, 'latest about how': 481195, 'about how covid': 25430, '19 could help': 6157, 'could help tsla': 209298, 'help tsla he': 390822, 'tsla he us': 934946, 'he us some': 385564, 'us some interesting': 948550, 'some interesting turn': 783134, 'interesting turn of': 441643, 'turn of phrase': 935711, 'of phrase the': 588108, 'phrase the further': 655348, 'the further along': 856058, 'further along other': 341998, 'along other competitive': 47014, 'other competitive ev': 619983, 'competitive ev program': 191775, 'ev program get': 283673, 'program get pushed': 683252, 'get pushed out': 347864, 'pushed out the': 690380, 'out the more': 627394, 'the more tesla': 860895, 'more tesla will': 540536, 'tesla will extend': 838891, 'will extend it': 993387, 'extend it competitive': 293111, 'it competitive edge': 457239, 'competitive edge in': 191773, 'edge in electrification': 268511, 'in electrification from': 422527, 'electrification from the': 271245, 'from the perspective': 337830, 'the perspective of': 863600, 'perspective of the': 653219, '196': 12396, 'reliance': 709223, 'ratnadeep': 697887, 'hyd': 411897, 'of 196': 579431, '196 store': 12399, '50 are': 19614, 'closed amp': 182975, 'amp rest': 54396, 'rest selling': 716219, 'selling only': 749380, 'reason the': 702997, 'lower circuit': 505811, 'circuit today': 178642, 'like reliance': 491072, 'reliance fresh': 709228, 'fresh heritage': 333012, 'heritage fresh': 393897, 'fresh and': 332920, 'local chain': 497811, 'chain ratnadeep': 171024, 'ratnadeep in': 697888, 'in hyd': 423929, 'hyd are': 411900, 'open all': 612031, 'out of 196': 626667, 'of 196 store': 579432, '196 store of': 12400, 'store of 50': 809144, 'of 50 are': 579607, '50 are closed': 19615, 'are closed amp': 85329, 'closed amp rest': 182976, 'amp rest selling': 54397, 'rest selling only': 716220, 'selling only essential': 749381, 'only essential item': 610396, 'essential item that': 281230, 'item that is': 463695, 'that is one': 844631, 'of the reason': 591391, 'the reason the': 865276, 'reason the stock': 703000, 'the stock is': 867914, 'stock is in': 802308, 'is in lower': 448786, 'in lower circuit': 424954, 'lower circuit today': 505812, 'circuit today supermarket': 178643, 'today supermarket chain': 920233, 'chain like reliance': 170892, 'like reliance fresh': 491073, 'reliance fresh heritage': 709229, 'fresh heritage fresh': 333013, 'heritage fresh and': 393898, 'fresh and local': 332922, 'and local chain': 66289, 'local chain ratnadeep': 497812, 'chain ratnadeep in': 171025, 'ratnadeep in hyd': 697889, 'in hyd are': 423930, 'hyd are open': 411901, 'are open all': 88784, 'open all day': 612032, 'unlawfully': 942564, 'moved to': 543832, 'to regulate': 913116, 'regulate price': 707985, 'item sanitation': 463627, 'and pharmaceutical': 68957, 'pharmaceutical commodity': 654060, 'commodity after': 189115, 'outbreak sent': 628612, 'sent their': 750827, 'their cost': 872888, 'cost soaring': 208114, 'soaring warning': 779349, 'warning had': 967133, 'been issued': 121414, 'issued earlier': 456055, 'earlier and': 264419, 'trader were': 928793, 'were fined': 979632, 'for unlawfully': 327448, 'unlawfully hiking': 942565, 'price rwanda': 676283, 'govt ha moved': 361145, 'ha moved to': 371303, 'moved to regulate': 543840, 'to regulate price': 913117, 'regulate price of': 707988, 'food item sanitation': 315228, 'item sanitation and': 463628, 'sanitation and pharmaceutical': 733831, 'and pharmaceutical commodity': 68958, 'pharmaceutical commodity after': 654061, 'commodity after the': 189116, 'the outbreak sent': 862690, 'outbreak sent their': 628614, 'sent their cost': 750828, 'their cost soaring': 872892, 'cost soaring warning': 208115, 'soaring warning had': 779350, 'warning had been': 967134, 'had been issued': 372898, 'been issued earlier': 121416, 'issued earlier and': 456056, 'earlier and trader': 264425, 'and trader were': 74350, 'trader were fined': 928795, 'were fined for': 979633, 'fined for unlawfully': 307748, 'for unlawfully hiking': 327449, 'unlawfully hiking price': 942566, 'hiking price rwanda': 396406, 'q4': 691437, 'delinquency': 233057, 'lagging': 478904, 'q4 cc': 691444, 'cc delinquency': 168389, 'delinquency and': 233058, 'and charge': 59746, 'charge off': 173297, 'off rate': 594101, 'rate dismal': 697195, 'dismal enough': 245974, 'enough and': 277318, 'before these': 123207, 'are lagging': 87705, 'lagging indicator': 478908, 'indicator with': 435055, 'with leading': 999191, 'leading implication': 483712, 'and overall': 68567, 'overall liquidity': 631022, 'liquidity our': 494148, 'next potus': 561519, 'potus will': 667296, 'be served': 117099, 'served shit': 752002, 'shit sandwich': 759210, 'q4 cc delinquency': 691445, 'cc delinquency and': 168390, 'delinquency and charge': 233059, 'and charge off': 59748, 'charge off rate': 173298, 'off rate dismal': 594102, 'rate dismal enough': 697196, 'dismal enough and': 245975, 'enough and that': 277322, 'wa before these': 961670, 'before these are': 123208, 'these are lagging': 879622, 'are lagging indicator': 87706, 'lagging indicator with': 478909, 'indicator with leading': 435056, 'with leading implication': 999192, 'leading implication for': 483713, 'implication for consumer': 418552, 'for consumer spending': 320291, 'spending and overall': 788739, 'and overall liquidity': 68569, 'overall liquidity our': 631023, 'liquidity our next': 494149, 'our next potus': 624061, 'next potus will': 561520, 'potus will be': 667297, 'will be served': 992673, 'be served shit': 117102, 'served shit sandwich': 752003, 'want quarantine': 965906, 'quarantine at': 692039, 'at house': 99199, 'house we': 406667, 'out either': 626008, 'either we': 270410, 'we die': 971305, 'hunger cuz': 411086, 'cuz here': 223800, 'we search': 973151, 'our daily': 622684, 'daily consumer': 224556, 'consumer daily': 197047, 'they want quarantine': 883714, 'want quarantine at': 965907, 'quarantine at house': 692041, 'at house we': 99201, 'house we still': 406672, 'we still need': 973408, 'still need to': 800861, 'go out either': 353947, 'out either we': 626009, 'either we die': 270411, 'we die of': 971306, 'of hunger cuz': 584906, 'hunger cuz here': 411087, 'cuz here we': 223801, 'here we search': 393792, 'we search for': 973152, 'search for our': 743253, 'for our daily': 324225, 'our daily consumer': 622685, 'daily consumer daily': 224557, '25 of': 15922, 'of millennials': 586528, 'millennials and': 531998, 'and gen': 63505, 'gen want': 345235, 'see brand': 744976, 'brand help': 137855, 'them contribute': 875547, 'response view': 715908, 'view more': 957114, 'more rising': 540272, 'rising trend': 723312, 'report marketing': 712083, 'marketing consumer': 517559, '25 of millennials': 15923, 'of millennials and': 586529, 'millennials and gen': 532000, 'and gen want': 63506, 'gen want to': 345236, 'want to see': 966110, 'to see brand': 913991, 'see brand help': 744977, 'brand help them': 137856, 'help them contribute': 390701, 'them contribute to': 875548, 'contribute to the': 201885, 'to the 19': 916471, 'the 19 response': 847927, '19 response view': 10167, 'response view more': 715909, 'view more rising': 957115, 'more rising trend': 540273, 'rising trend in': 723313, 'trend in our': 931365, 'in our latest': 426309, 'our latest report': 623677, 'latest report marketing': 481528, 'report marketing consumer': 712084, 'is community': 446682, 'community one': 190016, 'one express': 606267, 'express empathy': 293033, 'community when': 190219, 'when considering': 983272, 'considering your': 195442, 'run stayathome': 727812, 'crisis is community': 217564, 'is community one': 446684, 'community one express': 190017, 'one express empathy': 606268, 'express empathy and': 293034, 'empathy and think': 273349, 'and think about': 73960, 'think about your': 885114, 'about your community': 26991, 'your community when': 1023278, 'community when considering': 190220, 'when considering your': 983275, 'considering your grocery': 195443, 'store run stayathome': 809937, 'cashless': 166686, 'markofthebeast': 517930, 'some retailer': 783763, 'have banned': 379404, 'banned the': 110598, 'of cash': 581180, 'keep employee': 471465, 'safe opting': 729863, 'payment instead': 645658, 'instead meanwhile': 440220, 'meanwhile for': 524969, 'those confined': 891886, 'confined to': 194050, 'home online': 401721, 'is lifeline': 449297, 'lifeline cashless': 489302, 'cashless markofthebeast': 166694, 'some retailer have': 783768, 'retailer have banned': 719177, 'have banned the': 379407, 'banned the use': 110602, 'use of cash': 949401, 'of cash in': 581182, 'cash in their': 166258, 'their store to': 874868, 'store to keep': 810781, 'to keep employee': 908782, 'keep employee and': 471466, 'employee and customer': 273561, 'and customer safe': 60863, 'customer safe opting': 222787, 'safe opting for': 729864, 'opting for contactless': 613968, 'for contactless payment': 320313, 'contactless payment instead': 200378, 'payment instead meanwhile': 645659, 'instead meanwhile for': 440221, 'meanwhile for those': 524971, 'for those confined': 327105, 'those confined to': 891887, 'confined to their': 194052, 'their home online': 873571, 'home online shopping': 401724, 'shopping is lifeline': 763056, 'is lifeline cashless': 449298, 'lifeline cashless markofthebeast': 489303, 'low can': 505175, 'go petrol': 354042, 'petrol could': 653722, 'soon dip': 785691, 'dip below': 243173, 'below per': 126707, 'litre thanks': 495188, 'and explains': 62514, 'explains when': 292253, 'see those': 745961, 'those price': 892364, 'pump econtwitter': 689043, 'how low can': 408230, 'low can they': 505177, 'can they go': 159974, 'they go petrol': 882205, 'go petrol could': 354043, 'petrol could soon': 653723, 'could soon dip': 209689, 'soon dip below': 785692, 'dip below per': 243175, 'below per litre': 126709, 'per litre thanks': 650931, 'litre thanks to': 495189, 'thanks to oil': 842247, 'to oil war': 910884, 'oil war and': 597501, 'war and explains': 966358, 'and explains when': 62515, 'explains when we': 292254, 'when we can': 984430, 'can expect to': 158279, 'to see those': 914088, 'see those price': 745963, 'those price at': 892365, 'price at the': 672815, 'the pump econtwitter': 864899, 'bout': 136913, 'itis': 463889, 'noposguau': 566924, 'quatantineandchill': 693297, 'all all': 41982, 'all working': 45510, 'people bout': 647299, 'bout to': 136923, 'the itis': 858621, 'itis from': 463890, 'from eating': 335250, 'eating your': 266344, 'your week': 1026333, 'business day': 143617, 'day chicago': 227443, 'chicago noposguau': 175688, 'noposguau nofood': 566925, 'nofood workingfromhome': 566186, 'workingfromhome quatantineandchill': 1009105, 'all all working': 41986, 'all working from': 45512, 'from home people': 335894, 'home people bout': 401832, 'people bout to': 647300, 'bout to have': 136926, 'have the itis': 382998, 'the itis from': 858622, 'itis from eating': 463891, 'from eating your': 335254, 'eating your week': 266346, 'your week worth': 1026334, 'food in business': 314928, 'in business day': 421072, 'business day chicago': 143619, 'day chicago noposguau': 227444, 'chicago noposguau nofood': 175689, 'noposguau nofood workingfromhome': 566926, 'nofood workingfromhome quatantineandchill': 566187, 'buy extra': 148607, 'extra freezer': 293524, 'freezer to': 332642, 'store more': 808981, 'you absolute': 1016777, 'absolute trash': 27304, 'trash of': 930165, 'human 19': 410399, '19 stophoarding': 10871, 'to buy extra': 902227, 'buy extra freezer': 148609, 'extra freezer to': 293526, 'freezer to store': 332645, 'to store more': 915631, 'store more food': 808984, 'more food you': 539258, 'food you absolute': 317703, 'you absolute trash': 1016781, 'absolute trash of': 27305, 'trash of human': 930166, 'of human 19': 584868, 'human 19 stophoarding': 410400, '19 stophoarding stayathome': 10875, 'dear uk': 229905, 'uk can': 938235, 'staff insist': 792566, 'insist that': 439699, 'customer accept': 222017, 'accept disinfectant': 27955, 'spray upon': 790341, 'upon entering': 947625, 'entering an': 278386, 'an establishment': 55843, 'establishment think': 282074, 'be easy': 114629, 'implement and': 418371, 'dear uk can': 229906, 'uk can store': 938236, 'can store supermarket': 159835, 'store supermarket staff': 810461, 'supermarket staff insist': 822858, 'staff insist that': 792567, 'insist that customer': 439700, 'that customer accept': 843416, 'customer accept disinfectant': 222019, 'accept disinfectant spray': 27956, 'disinfectant spray upon': 245760, 'spray upon entering': 790342, 'upon entering an': 947626, 'entering an establishment': 278387, 'an establishment think': 55844, 'establishment think this': 282075, 'think this would': 885710, 'would be easy': 1011577, 'be easy to': 114633, 'easy to implement': 265784, 'to implement and': 908167, 'implement and would': 418372, 'and would help': 75928, 'would help prevent': 1011915, 'lovequotes': 505020, 'world full': 1009574, 'my sanitizer': 549986, 'sanitizer lovequotes': 735313, 'lovequotes love': 505021, 'love lockdowneffect': 504721, 'the world full': 871874, 'world full of': 1009575, 'full of be': 340701, 'of be my': 580594, 'be my sanitizer': 116040, 'my sanitizer lovequotes': 549988, 'sanitizer lovequotes love': 735314, 'lovequotes love lockdowneffect': 505022, 'pierre': 656417, 'andurand': 76236, 'exclusive pierre': 289688, 'pierre andurand': 656418, 'andurand the': 76237, 'the hedge': 857229, 'manager known': 512741, 'his bullish': 397261, 'bullish oil': 142461, 'oil forecast': 596808, 'forecast won': 328882, 'won big': 1003754, 'big when': 130108, 'when price': 983901, 'fell to': 303239, 'to 18': 899526, 'low low': 505392, 'low 40': 505090, '40 in': 18579, 'first two': 309141, 'exclusive pierre andurand': 289689, 'pierre andurand the': 656419, 'andurand the hedge': 76238, 'the hedge fund': 857230, 'fund manager known': 341459, 'manager known for': 512742, 'known for his': 477215, 'for his bullish': 322298, 'his bullish oil': 397262, 'bullish oil forecast': 142463, 'oil forecast won': 596809, 'forecast won big': 328883, 'won big when': 1003756, 'big when price': 130109, 'when price fell': 983903, 'price fell to': 673856, 'fell to 18': 303242, 'to 18 year': 899530, 'year low low': 1014724, 'low low 40': 505393, 'low 40 in': 505091, '40 in the': 18582, 'the first two': 855360, 'first two week': 309145, 'week of march': 976626, 'treated': 930931, 'reverence': 720500, 'amd': 51357, 'deserves': 238166, 'first paper': 308851, 'towel in': 927332, 'being treated': 125978, 'treated with': 930977, 'the reverence': 865764, 'reverence amd': 720501, 'amd respect': 51358, 'respect it': 715017, 'it deserves': 457528, 'found my first': 330291, 'my first paper': 548347, 'first paper towel': 308852, 'paper towel in': 640995, 'towel in week': 927333, 'in week at': 430745, 'week at supermarket': 975964, 'at supermarket it': 100738, 'supermarket it being': 821163, 'it being treated': 456833, 'being treated with': 125983, 'treated with the': 930979, 'with the reverence': 1001457, 'the reverence amd': 865765, 'reverence amd respect': 720502, 'amd respect it': 51359, 'respect it deserves': 715019, 'msps': 544585, 'technews': 836188, 'msps think': 544586, 'before cutting': 122730, 'cutting price': 223760, 'via technews': 956282, 'msps think twice': 544587, 'twice before cutting': 936517, 'before cutting price': 122731, 'cutting price via': 223768, 'price via technews': 677312, 'intervening': 442172, 'trump take': 933880, 'for intervening': 322624, 'intervening to': 442173, 'increase oil': 432947, 'pandemic month': 635972, 'month after': 537526, 'after pointing': 36045, 'pointing out': 662752, 'out lower': 626528, 'trump take credit': 933881, 'credit for intervening': 216396, 'for intervening to': 322625, 'intervening to increase': 442174, 'to increase oil': 908289, 'increase oil and': 432948, 'gas price during': 343957, 'during pandemic month': 262880, 'pandemic month after': 635973, 'month after pointing': 537528, 'after pointing out': 36046, 'pointing out lower': 662753, 'out lower fuel': 626529, 'fuel price help': 340238, 'price help consumer': 674495, 'rerouted': 713547, 'cptpp': 214658, 'packer': 633673, 'profitable': 682918, 'newzealand beef': 561236, 'beef export': 120507, 'export to': 292719, 'surging export': 828424, 'export previously': 292686, 'previously going': 672039, 'to china': 902721, 'being rerouted': 125676, 'rerouted to': 713548, 'to canada': 902408, 'canada month': 160495, 'to month': 910240, 'month sale': 537983, 'sale up': 732617, 'up 48': 944180, '48 thanks': 19333, 'thanks cptpp': 842038, 'cptpp our': 214659, 'market going': 516467, 'down down': 256693, 'down price': 257107, 'price arbitrage': 672622, 'arbitrage with': 84013, 'zealand packer': 1027299, 'packer profitable': 633684, 'newzealand beef export': 561237, 'beef export to': 120509, 'export to and': 292720, 'to and canada': 900489, 'and canada are': 59480, 'canada are surging': 160369, 'are surging export': 90677, 'surging export previously': 828425, 'export previously going': 292688, 'previously going to': 672040, 'going to china': 355551, 'to china are': 902722, 'china are being': 176499, 'are being rerouted': 84912, 'being rerouted to': 125677, 'rerouted to canada': 713549, 'to canada month': 902411, 'canada month to': 160496, 'month to month': 538084, 'to month sale': 910246, 'month sale up': 537984, 'sale up 48': 732621, 'up 48 thanks': 944182, '48 thanks cptpp': 19334, 'thanks cptpp our': 842039, 'cptpp our market': 214660, 'our market going': 623865, 'market going down': 516468, 'going down down': 355118, 'down down down': 256694, 'down down price': 256695, 'down price arbitrage': 257108, 'price arbitrage with': 672623, 'arbitrage with new': 84014, 'with new zealand': 999716, 'new zealand packer': 559992, 'zealand packer profitable': 1027301, 'work retail': 1005666, 'next shipment': 561549, 'shipment that': 758781, 'just gonna': 468838, 'gonna dump': 356515, 'let people': 486970, 'work retail and': 1005667, 'retail and the': 717839, 'and the next': 73494, 'the next shipment': 861695, 'next shipment that': 561550, 'shipment that come': 758782, 'come in just': 187368, 'in just gonna': 424417, 'just gonna dump': 468839, 'gonna dump it': 356516, 'dump it in': 262166, 'middle of the': 530686, 'store and let': 806280, 'and let people': 66112, 'let people go': 486974, 'people go through': 648088, 'go through it': 354247, 'through it panicbuying': 894538, 'understand malaysian': 940676, 'malaysian sometimes': 511666, 'sometimes supermarket': 785237, 'supply sector': 825808, 'restricted movement': 717151, 'movement order': 543909, 'order period': 618508, 'period but': 651730, 'no let': 564593, 'today like': 919806, 'like close': 490019, 'crowd isn': 219188, 'isn how': 454549, 'do not understand': 249880, 'not understand malaysian': 572321, 'understand malaysian sometimes': 940677, 'malaysian sometimes supermarket': 511667, 'sometimes supermarket and': 785238, 'food supply sector': 316991, 'supply sector will': 825810, 'sector will remain': 744408, 'remain open throughout': 709826, 'throughout the restricted': 894982, 'the restricted movement': 865667, 'restricted movement order': 717152, 'movement order period': 543911, 'order period but': 618509, 'period but no': 651733, 'but no let': 146489, 'no let all': 564594, 'supermarket today like': 823454, 'today like close': 919807, 'like close contact': 490020, 'contact with large': 200276, 'with large crowd': 999170, 'large crowd isn': 479634, 'crowd isn how': 219189, 'isn how covid': 454550, 'irishman': 444904, 'happystpatricksday': 377778, 'guiness': 368588, 'corned': 203624, 'tradition': 928979, 'one american': 605891, 'american irishman': 52055, 'irishman to': 444905, 'others out': 621571, 'there happystpatricksday': 878463, 'happystpatricksday at': 377779, 'least bought': 484411, 'bought some': 136713, 'some guiness': 783016, 'guiness and': 368589, 'and corned': 60558, 'corned beef': 203625, 'beef and': 120475, 'and cabbage': 59385, 'cabbage at': 154943, 'day since': 228354, 'since sadly': 770809, 'sadly cannot': 729328, 'the irish': 858453, 'irish pub': 444891, 'pub per': 687750, 'per tradition': 651054, 'tradition thanks': 928986, 'to governor': 906942, 'pritzker and': 678773, 'from one american': 336680, 'one american irishman': 605892, 'american irishman to': 52056, 'irishman to others': 444906, 'to others out': 911138, 'others out there': 621572, 'out there happystpatricksday': 627486, 'there happystpatricksday at': 878464, 'happystpatricksday at least': 377780, 'at least bought': 99471, 'least bought some': 484412, 'bought some guiness': 136716, 'some guiness and': 783017, 'guiness and corned': 368590, 'and corned beef': 60559, 'corned beef and': 203626, 'beef and cabbage': 120476, 'and cabbage at': 59386, 'cabbage at the': 154944, 'store the other': 810611, 'other day since': 620081, 'day since sadly': 228356, 'since sadly cannot': 770810, 'sadly cannot go': 729329, 'to the irish': 916816, 'the irish pub': 858454, 'irish pub per': 444892, 'pub per tradition': 687751, 'per tradition thanks': 651055, 'tradition thanks to': 928987, 'thanks to governor': 842228, 'to governor pritzker': 906946, 'governor pritzker and': 360972, 'pritzker and the': 678774, 'and the damn': 73313, 'sad new': 729200, 'normal when': 567409, 'store everyday': 807657, 'everyday to': 286645, 'it sad new': 460825, 'sad new normal': 729201, 'new normal when': 559179, 'normal when you': 567412, 'when you have': 984567, 'grocery store everyday': 365380, 'store everyday to': 807660, 'everyday to see': 286647, 'see what you': 746051, 'what you may': 982681, 'you may need': 1019804, 'may need that': 521355, 'need that they': 555733, 'that they didn': 846930, 'they didn have': 881929, 'didn have the': 241100, 'have the day': 382975, 'postoffice': 666749, 'forth': 329790, 'sealing': 743190, 'envelope': 279053, 'hi postoffice': 394722, 'postoffice please': 666750, 'please could': 659861, 'you add': 1016820, 'add post': 31466, 'office counter': 595400, 'counter staff': 210257, 'hero list': 394034, 'list serving': 494530, 'serving everyone': 753176, 'everyone handling': 286987, 'handling 100': 376325, 'of pound': 588294, 'of filthy': 583519, 'filthy money': 305801, 'money passing': 536962, 'passing pen': 643390, 'pen back': 646404, 'back forth': 106999, 'forth sealing': 329793, 'sealing envelope': 743193, 'envelope parcel': 279054, 'parcel for': 641494, 'lazy customer': 482745, 'customer with': 223099, 'hi postoffice please': 394723, 'postoffice please could': 666751, 'please could you': 659862, 'could you add': 209841, 'you add post': 1016821, 'add post office': 31468, 'post office counter': 666236, 'office counter staff': 595401, 'counter staff to': 210258, 'staff to the': 793003, 'to the hero': 916772, 'the hero list': 857294, 'hero list serving': 394035, 'list serving everyone': 494531, 'serving everyone handling': 753177, 'everyone handling 100': 286988, 'handling 100 of': 376326, '100 of pound': 1992, 'of pound of': 588296, 'pound of filthy': 667394, 'of filthy money': 583520, 'filthy money passing': 305802, 'money passing pen': 536963, 'passing pen back': 643391, 'pen back forth': 646405, 'back forth sealing': 107001, 'forth sealing envelope': 329794, 'sealing envelope parcel': 743194, 'envelope parcel for': 279055, 'parcel for lazy': 641496, 'for lazy customer': 322908, 'lazy customer with': 482746, 'customer with no': 223103, 'with no hand': 999758, 'sanitizer glove etc': 734989, 'despite state': 238860, 'state wide': 796088, 'wide stay': 991764, 'some farmer': 782817, 'market are': 516011, 'open customer': 612172, 'customer went': 223053, 'get affordable': 346505, 'affordable produce': 34892, 'produce since': 680433, 'many price': 514591, 'increased in': 433347, 'store show': 810176, 'how market': 408293, 'are dealing': 85703, 'despite state wide': 238861, 'state wide stay': 796090, 'wide stay at': 991765, 'home order in': 401777, 'order in california': 618310, 'in california some': 421147, 'california some farmer': 155576, 'some farmer market': 782818, 'farmer market are': 299443, 'market are still': 516031, 'still open customer': 800956, 'open customer went': 612173, 'customer went to': 223054, 'went to get': 979154, 'to get affordable': 906404, 'get affordable produce': 346507, 'affordable produce since': 34893, 'produce since many': 680434, 'since many price': 770720, 'many price have': 514593, 'price have increased': 674432, 'have increased in': 381060, 'increased in the': 433350, 'grocery store show': 365773, 'store show how': 810178, 'show how market': 766983, 'how market are': 408295, 'market are dealing': 516017, 'casting': 166773, 'ballot': 109103, 'nhpolitics': 562207, 'critical we': 218717, 'we start': 973371, 'start preparing': 794435, 'preparing now': 670349, 'what an': 981032, 'an election': 55645, 'election will': 271075, 'like under': 491694, 'under we': 940379, 'need comprehensive': 554620, 'comprehensive review': 192644, 'review of': 720575, 'entire process': 278723, 'process from': 679903, 'from voter': 338265, 'voter registration': 960584, 'registration to': 707686, 'to casting': 902487, 'casting ballot': 166774, 'ballot in': 109104, 'to guarantee': 907054, 'guarantee safe': 367715, 'safe secure': 729925, 'secure election': 744435, 'election nhpolitics': 271049, 'it is critical': 458921, 'is critical we': 446947, 'critical we start': 218718, 'we start preparing': 973375, 'start preparing now': 794437, 'preparing now for': 670350, 'now for what': 574731, 'for what an': 327792, 'what an election': 981034, 'an election will': 55647, 'election will look': 271076, 'will look like': 994042, 'look like under': 502523, 'like under we': 491695, 'under we need': 940380, 'we need comprehensive': 972476, 'need comprehensive review': 554622, 'comprehensive review of': 192645, 'review of the': 720580, 'of the entire': 590988, 'the entire process': 854364, 'entire process from': 278724, 'process from voter': 679904, 'from voter registration': 338266, 'voter registration to': 960585, 'registration to casting': 707687, 'to casting ballot': 902488, 'casting ballot in': 166775, 'ballot in order': 109105, 'order to guarantee': 618684, 'to guarantee safe': 907057, 'guarantee safe secure': 367716, 'safe secure election': 729926, 'secure election nhpolitics': 744436, 'healey': 386078, 'debilitating': 230363, 'mome': 535865, 'healey totally': 386079, 'totally understand': 926404, 'understand have': 940633, 'have very': 383497, 'very severe': 955528, 'severe ocd': 754040, 'ocd and': 579090, 'other physical': 620712, 'physical health': 655424, 'problem highly': 679543, 'highly debilitating': 396052, 'debilitating and': 230364, 'help no': 390141, 'no access': 563576, 'shopping have': 762868, 'been fortunate': 121180, 'work around': 1004840, 'around it': 93361, 'this mome': 888864, 'healey totally understand': 386080, 'totally understand have': 926405, 'understand have very': 940634, 'have very severe': 383504, 'very severe ocd': 955530, 'severe ocd and': 754041, 'ocd and other': 579092, 'and other physical': 68380, 'other physical health': 620713, 'physical health problem': 655425, 'health problem highly': 386757, 'problem highly debilitating': 679544, 'highly debilitating and': 396053, 'debilitating and the': 230365, 'supermarket will not': 823886, 'not help no': 569930, 'help no access': 390142, 'no access to': 563577, 'access to online': 28265, 'online shopping have': 609142, 'shopping have been': 762869, 'have been fortunate': 379550, 'been fortunate to': 121181, 'fortunate to be': 329902, 'to work around': 918688, 'work around it': 1004841, 'around it at': 93362, 'it at this': 456629, 'at this mome': 101242, 'menace': 528566, 'stranger in': 812471, 'moscow ha': 541995, 'been my': 121552, 'my song': 550172, 'song since': 785516, 'since trump': 770949, 'trump became': 933432, 'became president': 118881, 'president his': 670829, 'his performance': 397698, 'performance piece': 651460, 'piece covid': 656289, 'empty street': 275152, 'shelf give': 757121, 'impression of': 419465, 'of cold': 581515, 'cold war': 185801, 'war if': 966460, 'if putin': 414708, 'putin is': 691029, 'is behind': 446054, 'behind it': 124650, 'have red': 382224, 'red scare': 705614, 'scare orange': 740901, 'orange menace': 617930, 'menace op': 528571, 'stranger in moscow': 812472, 'in moscow ha': 425463, 'moscow ha been': 541996, 'ha been my': 369857, 'been my song': 121555, 'my song since': 550174, 'song since trump': 785517, 'since trump became': 770950, 'trump became president': 933433, 'became president his': 118882, 'president his performance': 670830, 'his performance piece': 397699, 'performance piece covid': 651461, 'piece covid 19': 656290, '19 empty street': 6776, 'empty street supermarket': 275153, 'street supermarket shelf': 813133, 'supermarket shelf give': 822475, 'shelf give the': 757122, 'give the impression': 350742, 'the impression of': 857994, 'impression of cold': 419466, 'of cold war': 581517, 'cold war if': 185804, 'war if putin': 966463, 'if putin is': 414710, 'putin is behind': 691030, 'is behind it': 446056, 'behind it we': 124652, 'we have red': 971917, 'have red scare': 382225, 'red scare orange': 705615, 'scare orange menace': 740902, 'orange menace op': 617931, 'congrats malaysian': 194427, '19 do': 6594, 'do please': 249987, 'crave for': 215162, 'congrats malaysian we': 194428, 'tomorrow at supermarket': 924038, 'at supermarket those': 100783, 'covid 19 do': 212969, '19 do please': 6596, 'do please come': 249988, 'of crave for': 582118, 'crave for the': 215164, 'opportune': 613544, 'belly': 126510, 'quo': 694966, 'vadis': 951830, 'insane despicable': 439032, 'despicable profiting': 238640, 'from misery': 336444, 'misery the': 534017, 'rise price': 722980, 'very opportune': 955396, 'opportune for': 613545, 'for etc': 321135, 'etc greedy': 282571, 'greedy belly': 363487, 'belly quo': 126513, 'quo vadis': 694969, 'vadis human': 951831, 'human specie': 410622, 'insane despicable profiting': 439033, 'despicable profiting from': 238641, 'profiting from misery': 683123, 'from misery the': 336445, 'misery the market': 534018, 'market rise price': 517009, 'rise price on': 722981, 'price on 19': 675644, 'on 19 is': 599030, '19 is very': 8078, 'is very opportune': 453686, 'very opportune for': 955397, 'opportune for etc': 613546, 'for etc greedy': 321136, 'etc greedy belly': 282572, 'greedy belly quo': 363488, 'belly quo vadis': 126514, 'quo vadis human': 694970, 'vadis human specie': 951832, 'dennis': 237039, 'thompson': 891724, 'here great': 393058, 'great article': 362507, 'by dennis': 152335, 'dennis thompson': 237042, 'thompson about': 891725, 'challenge people': 171528, 'face paying': 294695, 'care especially': 163916, 've lost': 953345, 'or been': 614523, 'off agree': 593615, 'the ending': 854311, 'ending and': 276162, 'and urge': 74753, 'care you': 164317, 'here great article': 393059, 'great article by': 362509, 'article by dennis': 94278, 'by dennis thompson': 152336, 'dennis thompson about': 237043, 'thompson about the': 891726, 'about the challenge': 26349, 'the challenge people': 850648, 'challenge people face': 171530, 'people face paying': 647855, 'face paying for': 294696, 'paying for medical': 645412, 'for medical care': 323376, 'medical care especially': 526078, 'care especially if': 163917, 'especially if they': 280509, 'if they ve': 415135, 'they ve lost': 883664, 've lost their': 953350, 'their job or': 873729, 'job or been': 466064, 'or been laid': 614525, 'laid off agree': 479010, 'off agree with': 593616, 'with the ending': 1001284, 'the ending and': 854312, 'ending and urge': 276163, 'and urge people': 74758, 'urge people to': 948211, 'people to get': 649903, 'get the care': 348230, 'the care you': 850415, 'care you need': 164319, 'katsinawa': 471077, 'daura': 226948, 'unawares': 939486, 'dear katsinawa': 229825, 'katsinawa daura': 471078, 'daura ha': 226949, 'been locked': 121474, 'down today': 257392, 'today following': 919527, 'following positive': 312816, 'almost inevitable': 46678, 'that lockdown': 844930, 'lockdown will': 500145, 'state don': 795530, 'be caught': 114025, 'caught unawares': 167470, 'unawares stock': 939487, 'up much': 945408, 'can remember': 159430, 'remember wash': 710396, 'don touch': 253989, 'touch your': 926586, 'dear katsinawa daura': 229826, 'katsinawa daura ha': 471079, 'daura ha been': 226950, 'ha been locked': 369846, 'been locked down': 121475, 'locked down today': 500480, 'down today following': 257393, 'today following positive': 919529, 'following positive case': 312817, 'positive case of': 665277, 'it is almost': 458869, 'is almost inevitable': 445502, 'almost inevitable that': 46680, 'inevitable that lockdown': 436406, 'that lockdown will': 844932, 'lockdown will happen': 500151, 'will happen in': 993597, 'happen in the': 377106, 'the state don': 867765, 'state don be': 795531, 'don be caught': 253356, 'be caught unawares': 114028, 'caught unawares stock': 167471, 'unawares stock up': 939488, 'stock up much': 803098, 'up much food': 945410, 'much food you': 544913, 'you can remember': 1017767, 'can remember wash': 159431, 'remember wash your': 710397, 'your hand and': 1024163, 'hand and don': 374758, 'and don touch': 61641, 'don touch your': 253990, 'touch your face': 926587, 'noone': 566869, 'strangetimes': 812511, 'redballs': 705641, 'tyrone': 937686, 'interesting time': 441631, 'big city': 129700, 'city could': 179109, 'could stand': 209708, 'street butt': 812931, 'butt as': 148094, 'as naked': 94777, 'naked smoking': 551553, 'smoking crack': 775907, 'crack and': 214691, 'and noone': 67687, 'noone would': 566874, 'would notice': 1012083, 'notice nor': 573316, 'nor give': 566949, 'give flying': 350493, 'flying fuck': 311672, 'fuck strangetimes': 339646, 'strangetimes redballs': 812512, 'redballs tyrone': 705642, 'tyrone toiletpaper': 937689, 'interesting time in': 441632, 'time in big': 896980, 'in big city': 420826, 'big city could': 129701, 'city could stand': 179110, 'could stand in': 209709, 'stand in the': 793535, 'the street butt': 868221, 'street butt as': 812932, 'butt as naked': 148095, 'as naked smoking': 94778, 'naked smoking crack': 551554, 'smoking crack and': 775908, 'crack and noone': 214693, 'and noone would': 67688, 'noone would notice': 566875, 'would notice nor': 1012084, 'notice nor give': 573317, 'nor give flying': 566950, 'give flying fuck': 350494, 'flying fuck strangetimes': 311673, 'fuck strangetimes redballs': 339647, 'strangetimes redballs tyrone': 812513, 'redballs tyrone toiletpaper': 705643, 'stoking': 804256, 'sugary': 817493, 'to disrupt': 904419, 'disrupt these': 246382, 'these data': 879861, 'month so': 538006, 'far there': 298936, 'only limited': 610729, 'limited evidence': 492628, 'of surging': 590525, 'supermarket stoking': 822986, 'stoking price': 804259, 'price mostly': 675278, 'mostly non': 542980, 'and bread': 59163, 'bread meanwhile': 138524, 'meanwhile fruit': 524972, 'and sugary': 72670, 'sugary item': 817502, 'all crashed': 42490, '19 is likely': 8003, 'likely to disrupt': 492144, 'to disrupt these': 904423, 'disrupt these data': 246383, 'these data in': 879862, 'data in the': 226275, 'coming month so': 188144, 'month so far': 538009, 'so far there': 777060, 'far there is': 298937, 'there is only': 878604, 'is only limited': 450541, 'only limited evidence': 610731, 'limited evidence of': 492629, 'evidence of surging': 288371, 'of surging demand': 590526, 'surging demand in': 828419, 'demand in supermarket': 235678, 'in supermarket stoking': 428678, 'supermarket stoking price': 822987, 'stoking price mostly': 804260, 'price mostly non': 675279, 'mostly non food': 542981, 'non food and': 566389, 'food and bread': 313190, 'and bread meanwhile': 59168, 'bread meanwhile fruit': 138525, 'meanwhile fruit veg': 524973, 'fruit veg and': 339164, 'veg and sugary': 953716, 'and sugary item': 72671, 'sugary item price': 817503, 'item price have': 463585, 'price have all': 674409, 'have all crashed': 379153, 'you seen': 1021090, 'seen our': 747177, 'have you seen': 383689, 'you seen our': 1021095, 'seen our latest': 747178, 'our latest news': 623671, 'route': 726449, 'eager': 264352, 'ensure you': 278127, 'delivery route': 234400, 'route are': 726454, 'run normal': 727718, 'seen growth': 747045, 'are eager': 86063, 'eager to': 264353, 'deliver the': 233225, 'community need': 189995, 'want to ensure': 966030, 'to ensure you': 905204, 'ensure you know': 278130, 'that our home': 845584, 'our home delivery': 623445, 'home delivery route': 401041, 'delivery route are': 234401, 'route are continuing': 726455, 'continuing to run': 201571, 'to run normal': 913666, 'run normal we': 727719, 'normal we have': 567396, 'have seen growth': 382426, 'seen growth in': 747047, 'growth in demand': 367396, 'pandemic and we': 634918, 'we are eager': 970537, 'are eager to': 86064, 'eager to deliver': 264354, 'to deliver the': 904115, 'deliver the food': 233229, 'the food our': 855581, 'food our community': 315705, 'our community need': 622470, 'community need right': 189996, 'overuse': 631666, 'start talking': 794537, 'super bug': 818475, 'bug we': 141904, 'will create': 993067, 'create from': 215647, 'from overuse': 336825, 'overuse of': 631669, 'when will we': 984510, 'will we start': 995335, 'we start talking': 973377, 'start talking about': 794538, 'about the super': 26532, 'the super bug': 868426, 'super bug we': 818476, 'bug we will': 141905, 'we will create': 973847, 'will create from': 993069, 'create from overuse': 215648, 'from overuse of': 336826, 'overuse of hand': 631671, 'no elected': 564095, 'elected politician': 271002, 'politician of': 663728, 'any party': 79631, 'party should': 643039, 'should hold': 766112, 'hold or': 399988, 'or control': 614816, 'control stock': 202144, 'stock until': 803045, 'until they': 943888, 'they leave': 882545, 'leave office': 484879, 'office if': 595445, 'true it': 933115, 'wrong to': 1013131, 'given private': 351090, 'private senator': 678983, 'senator only': 749774, 'only briefing': 610194, 'briefing by': 139700, 'government on': 360416, 'affect stock': 34227, 'price amp': 672329, 'amp then': 54675, 'then sell': 877509, 'no elected politician': 564096, 'elected politician of': 271003, 'politician of any': 663729, 'of any party': 580268, 'any party should': 79632, 'party should hold': 643040, 'should hold or': 766113, 'hold or control': 399989, 'or control stock': 614817, 'control stock until': 202147, 'stock until they': 803047, 'until they leave': 943894, 'they leave office': 882546, 'leave office if': 484880, 'office if true': 595446, 'if true it': 415194, 'true it is': 933116, 'it is wrong': 459137, 'is wrong to': 454110, 'wrong to be': 1013132, 'to be given': 901275, 'be given private': 115032, 'given private senator': 351091, 'private senator only': 678984, 'senator only briefing': 749775, 'only briefing by': 610195, 'briefing by the': 139702, 'the government on': 856572, 'government on 19': 360417, 'on 19 that': 599036, '19 that can': 11151, 'that can affect': 843091, 'can affect stock': 157391, 'affect stock price': 34228, 'stock price amp': 802702, 'price amp then': 672342, 'amp then sell': 54677, 'callous': 156663, 'taxing': 835182, 'imposing': 419330, 'excise': 289510, 'merry': 529195, 'have collapsed': 380010, 'collapsed and': 186088, 'this callous': 886676, 'callous government': 156664, 'is taxing': 452581, 'taxing indian': 835183, 'indian by': 434789, 'by imposing': 152872, 'imposing excise': 419331, 'excise duty': 289513, 'duty on': 263600, 'on petrol': 602779, 'and diesel': 61339, 'diesel making': 241667, 'making merry': 511213, 'merry in': 529198, 'this depressing': 887210, 'depressing environment': 237609, 'environment this': 279162, 'is crude': 446964, 'crude government': 219537, 'government rude': 360559, 'rude government': 727037, 'price have collapsed': 674417, 'have collapsed and': 380012, 'collapsed and consumer': 186089, 'and consumer demand': 60371, 'consumer demand is': 197145, 'demand is low': 235732, 'is low but': 449474, 'low but this': 505166, 'but this callous': 147542, 'this callous government': 886677, 'callous government is': 156665, 'government is taxing': 360278, 'is taxing indian': 452582, 'taxing indian by': 835184, 'indian by imposing': 434790, 'by imposing excise': 152873, 'imposing excise duty': 419332, 'excise duty on': 289517, 'duty on petrol': 263602, 'on petrol and': 602780, 'petrol and diesel': 653711, 'and diesel making': 61341, 'diesel making merry': 241668, 'making merry in': 511214, 'merry in this': 529199, 'in this depressing': 429931, 'this depressing environment': 887211, 'depressing environment this': 237610, 'environment this is': 279163, 'this is crude': 888223, 'is crude government': 446965, 'crude government rude': 219538, 'government rude government': 360560, 'hatred': 378973, 'personally like': 653039, 'see le': 745355, 'le hatred': 482974, 'hatred panic': 378979, 'panic re': 638464, 're more': 699039, 'more practical': 540114, 'practical information': 668468, 'deal if': 229422, 'if or': 414562, 'know ha': 476401, 'med food': 525892, 'in close': 421508, 'close quarter': 182782, 'quarter what': 693269, 'what best': 981111, 'practice to': 668686, 'all safe': 44221, 'this info': 888101, 'info needed': 437520, 'personally like to': 653040, 'to see le': 914033, 'see le hatred': 745356, 'le hatred panic': 482976, 'hatred panic re': 378981, 'panic re more': 638465, 're more practical': 699043, 'more practical information': 540115, 'practical information about': 668469, 'information about how': 437708, 'how to deal': 409005, 'to deal if': 903967, 'deal if or': 229424, 'if or someone': 414564, 'or someone know': 617157, 'someone know ha': 784549, 'know ha what': 476404, 'ha what is': 372474, 'what is best': 981680, 'is best way': 446146, 'to get med': 906530, 'get med food': 347551, 'med food etc': 525893, 'food etc if': 314398, 'live in close': 495852, 'in close quarter': 421513, 'close quarter what': 182783, 'quarter what best': 693270, 'what best practice': 981113, 'best practice to': 127850, 'practice to keep': 668691, 'to keep all': 908749, 'keep all safe': 471299, 'all safe this': 44224, 'safe this info': 730034, 'this info needed': 888102, 'during do': 262606, 'not reduce': 571273, 'start reducing': 794459, 'reducing your': 706339, 'you why': 1022313, 'tip during do': 898749, 'during do not': 262607, 'do not reduce': 249817, 'not reduce price': 571274, 'reduce price if': 705898, 'you start reducing': 1021357, 'start reducing your': 794460, 'reducing your price': 706340, 'ask you why': 95680, 'you why this': 1022317, 'this is likely': 888303, 'emulating': 275360, 'worth emulating': 1011359, 'emulating executive': 275361, 'executive working': 289954, 'served grateful': 751988, 'worth emulating executive': 1011360, 'emulating executive working': 275362, 'executive working in': 289955, 'store so we': 810239, 'can be served': 157684, 'be served grateful': 117100, 'trellis': 931209, '19 novel': 8847, 'coronavirus post': 206565, 'post winery': 666409, 'winery retail': 995962, 'the trellis': 869949, 'trellis room': 931210, 'room will': 725992, 'public monday': 688166, 'monday march': 536316, 'march 16': 515081, '16 further': 4115, 'further closure': 342011, 'closure or': 183989, 'limited hour': 492644, 'be announced': 113623, 'following week': 312938, 'mon mar': 536195, 'mar 23rd': 514989, '23rd post': 15521, 'post wine': 666407, 'wine available': 995776, 'covid 19 novel': 213489, '19 novel coronavirus': 8848, 'novel coronavirus post': 573763, 'coronavirus post winery': 206566, 'post winery retail': 666410, 'winery retail store': 995963, 'retail store including': 718648, 'store including the': 808422, 'including the trellis': 432190, 'the trellis room': 869950, 'trellis room will': 931211, 'room will be': 725993, 'the public monday': 864832, 'public monday march': 688167, 'monday march 16': 536317, 'march 16 further': 515084, '16 further closure': 4116, 'further closure or': 342012, 'closure or limited': 183990, 'or limited hour': 615971, 'limited hour will': 492648, 'hour will be': 406099, 'will be announced': 992357, 'be announced the': 113625, 'announced the following': 77078, 'the following week': 855526, 'following week mon': 312939, 'week mon mar': 976536, 'mon mar 23rd': 536196, 'mar 23rd post': 514991, '23rd post wine': 15522, 'post wine available': 666408, 'wine available at': 995777, 'available at local': 104253, 'local store be': 498457, 'store be well': 806667, 'ghee': 349629, 'clarifying': 180091, 'wa empty': 962069, 'empty because': 274800, 'store asked': 806550, 'have butter': 379863, 'butter they': 148171, 'have ghee': 380765, 'ghee said': 349635, 'said thanks': 731389, 'for clarifying': 320099, 'store wa empty': 811109, 'wa empty because': 962070, 'empty because of': 274803, '19 so went': 10656, 'to the indian': 916807, 'the indian grocery': 858124, 'indian grocery store': 434846, 'grocery store asked': 365218, 'store asked if': 806552, 'asked if they': 95776, 'they have butter': 882298, 'have butter they': 379864, 'butter they said': 148172, 'said they only': 731482, 'they only have': 882824, 'only have ghee': 610580, 'have ghee said': 380766, 'ghee said thanks': 349636, 'said thanks for': 731390, 'thanks for clarifying': 842053, 'jerk': 465140, 'know someone': 476727, 'food tell': 317069, 're greedy': 698770, 'selfish jerk': 748156, 'jerk this': 465155, 'stop now': 804854, 'hoarding stophoarding': 399546, 'you know someone': 1019525, 'know someone who': 476732, 'someone who is': 784761, 'who is hoarding': 989082, 'is hoarding food': 448508, 'hoarding food tell': 399315, 'food tell them': 317070, 'tell them they': 837105, 'them they re': 876422, 'they re greedy': 883048, 're greedy selfish': 698772, 'greedy selfish jerk': 363592, 'selfish jerk this': 748157, 'jerk this ha': 465156, 'to stop now': 915548, 'stop now hoarding': 804855, 'now hoarding stophoarding': 574941, 'hoarding stophoarding stoppanicbuying': 399550, 'disregard': 246340, 'so not': 777897, 'only ha': 610552, 'ha mike': 371275, 'mike ashley': 531268, 'ashley got': 95108, 'got complete': 358495, 'complete disregard': 192084, 'disregard for': 246341, 'for human': 322437, 'life his': 488731, 'his company': 397304, 'company sport': 191100, 'direct want': 243401, 'profiteer from': 682958, 'from too': 338104, 'too by': 924635, 'price don': 673489, 'forget him': 329264, 'him or': 396685, 'or his': 615647, 'company when': 191303, 'over folk': 630216, 'so not only': 777898, 'not only ha': 570798, 'only ha mike': 610554, 'ha mike ashley': 371276, 'mike ashley got': 531269, 'ashley got complete': 95109, 'got complete disregard': 358496, 'complete disregard for': 192085, 'disregard for human': 246343, 'for human life': 322441, 'human life his': 410548, 'life his company': 488732, 'his company sport': 397307, 'company sport direct': 191101, 'sport direct want': 789922, 'direct want to': 243402, 'want to profiteer': 966089, 'to profiteer from': 912239, 'profiteer from too': 682960, 'from too by': 338105, 'too by hiking': 924637, 'by hiking their': 152811, 'their price don': 874390, 'price don forget': 673490, 'don forget him': 253527, 'forget him or': 329265, 'him or his': 396687, 'or his company': 615649, 'his company when': 397308, 'company when this': 191304, 'when this crisis': 984303, 'this crisis is': 887056, 'crisis is over': 217582, 'is over folk': 450698, 'your well': 1026344, 'being is': 125343, 'our top': 625167, 'top priority': 925673, 'priority while': 678693, 'others see': 621632, 'gouging but': 359270, 'priority amid': 678505, 'our personal': 624315, 'care item': 164036, '50 stay': 19863, 'stay well': 797389, 'well stay': 978585, 'your well being': 1026345, 'well being is': 978061, 'being is our': 125344, 'is our top': 450647, 'our top priority': 625170, 'top priority while': 925690, 'priority while others': 678694, 'while others see': 987125, 'others see it': 621633, 'see it an': 745324, 'an opportunity for': 56670, 'opportunity for price': 613627, 'for price gouging': 324718, 'price gouging but': 674264, 'gouging but for': 359271, 'but for the': 145755, 'our customer is': 622666, 'customer is our': 222540, 'top priority amid': 925675, 'priority amid covid': 678506, '19 situation for': 10576, 'situation for all': 772270, 'all our personal': 43826, 'our personal care': 624317, 'personal care item': 652801, 'care item we': 164038, 'item we have': 463801, 'reduced price up': 706158, 'price up to': 677265, 'to 50 stay': 899748, '50 stay well': 19864, 'stay well stay': 797395, 'well stay safe': 978586, 'insure': 440850, 'milage': 531305, 'dm for': 248888, 'for info': 322566, 'regarding delivery': 707203, 'extremely aware': 293859, 'covid we': 214247, 're here': 698805, 'every measure': 285998, 'measure possible': 525289, 'to insure': 908437, 'insure safe': 440857, 'safe delivery': 729578, 'delivery exchange': 233984, 'exchange of': 289458, 'good without': 357973, 'you having': 1019156, 'home dm': 401083, 'delivery price': 234362, 'price based': 672842, 'on time': 604704, 'time milage': 897210, 'milage stayhomesavelives': 531306, 'dm for info': 248891, 'for info regarding': 322571, 'info regarding delivery': 437569, 'regarding delivery we': 707204, 'we are extremely': 970555, 'are extremely aware': 86392, 'extremely aware of': 293860, 'of the danger': 590926, 'the danger of': 852826, 'danger of covid': 225679, 'of covid we': 582095, 'covid we re': 214249, 'we re here': 972894, 're here to': 698807, 'here to take': 393731, 'take every measure': 832101, 'every measure possible': 286000, 'measure possible to': 525290, 'possible to insure': 665846, 'to insure safe': 908440, 'insure safe delivery': 440858, 'safe delivery exchange': 729579, 'delivery exchange of': 233985, 'exchange of good': 289459, 'of good without': 584247, 'good without you': 357974, 'without you having': 1003068, 'you having to': 1019158, 'to leave your': 909172, 'leave your home': 485053, 'your home dm': 1024348, 'home dm for': 401084, 'dm for delivery': 248890, 'for delivery price': 320643, 'delivery price based': 234365, 'price based on': 672843, 'based on time': 111700, 'on time milage': 604711, 'time milage stayhomesavelives': 897211, 'knowthat': 477267, 'finlit': 307979, 'news but': 560282, 'but did': 145526, 'you knowthat': 1019548, 'knowthat scammer': 477268, 'health concern': 386283, 'concern the': 193117, 'offering tip': 595299, 'spot coronavirus': 790045, 'coronavirus scammer': 206726, 'scammer finlit': 740577, 'the is all': 858475, 'over the news': 630742, 'the news but': 861606, 'news but did': 560283, 'but did you': 145530, 'did you knowthat': 240937, 'you knowthat scammer': 1019549, 'knowthat scammer are': 477269, 'scammer are looking': 740536, 'looking to take': 503049, 'advantage of your': 33046, 'your health concern': 1024274, 'health concern the': 386286, 'concern the is': 193120, 'the is offering': 858515, 'is offering tip': 450429, 'offering tip on': 595300, 'to spot coronavirus': 915038, 'spot coronavirus scammer': 790046, 'coronavirus scammer finlit': 206727, 'thankyousomuch': 842397, 'firstresponders': 309218, 'so truly': 778578, 'truly thankful': 933348, 'professional first': 682445, 'have stepped': 382751, 'others thankyousomuch': 621693, 'thankyousomuch firstresponders': 842398, 'firstresponders beatcovid19': 309219, 'beatcovid19 quarantine': 118597, 'quarantine selfquarantine': 692514, 'selfquarantine flattenthecurve': 748565, 'are so truly': 90222, 'so truly thankful': 778579, 'truly thankful for': 933349, 'medical professional first': 526330, 'professional first responder': 682446, 'who have stepped': 988956, 'have stepped in': 382753, 'stepped in front': 799774, 'front of this': 338649, 'this virus to': 891034, 'virus to help': 958922, 'help others thankyousomuch': 390217, 'others thankyousomuch firstresponders': 621694, 'thankyousomuch firstresponders beatcovid19': 842399, 'firstresponders beatcovid19 quarantine': 309220, 'beatcovid19 quarantine selfquarantine': 118598, 'quarantine selfquarantine flattenthecurve': 692515, 'country risk': 211016, 'risk team': 723914, 'team ha': 835652, 'ha reduced': 371679, 'the forecast': 855686, 'for china': 320065, 'china overall': 176866, 'overall economic': 631008, 'economic growth': 267110, 'growth for': 367369, '2020 from': 14315, 'to due': 904794, 'ongoing impact': 607644, '19 mrx': 8703, 'marketresearch house': 517857, 'house home': 406341, 'the country risk': 852145, 'country risk team': 211019, 'risk team ha': 723915, 'team ha reduced': 835655, 'ha reduced the': 371686, 'reduced the forecast': 706182, 'the forecast for': 855687, 'forecast for china': 328818, 'for china overall': 320068, 'china overall economic': 176867, 'overall economic growth': 631009, 'economic growth for': 267112, 'growth for china': 367370, 'for china in': 320067, 'china in 2020': 176725, 'in 2020 from': 419836, '2020 from year': 14321, 'from year on': 338438, 'on year to': 605402, 'year to due': 1015040, 'to due to': 904795, 'the ongoing impact': 862245, 'ongoing impact of': 607645, 'of 19 mrx': 579404, '19 mrx marketresearch': 8704, 'mrx marketresearch house': 544483, 'marketresearch house home': 517858, 'disappointment': 244151, 'the lucky': 859829, 'lucky charm': 506543, 'charm were': 173787, 'all gone': 42959, 'gone disappointment': 356250, 'disappointment of': 244158, 'food shopper': 316504, 'shopper trying': 761788, 'up maga': 945353, 'the lucky charm': 859830, 'lucky charm were': 506544, 'charm were all': 173788, 'were all gone': 979283, 'all gone disappointment': 42961, 'gone disappointment of': 356251, 'disappointment of food': 244159, 'of food shopper': 583776, 'food shopper trying': 316506, 'shopper trying to': 761789, 'stock up maga': 803097, 'to afford': 900155, 'food right': 316237, 'buying can': 150086, 'eat cheap': 265880, 'cheap usually': 174223, 'usually do': 951110, 'expensive food': 291242, 'please dm': 659885, 'interested discount': 441447, 'discount are': 244446, 'on order': 602542, 'order with': 618782, 'with multiple': 999596, 'multiple art': 545726, 'art piece': 94184, '19 is making': 8006, 'is making it': 449547, 'making it hard': 511142, 'it hard for': 458485, 'for me to': 323344, 'me to afford': 523741, 'to afford food': 900158, 'afford food right': 34696, 'food right now': 316238, 'now with all': 576441, 'all the panic': 44855, 'panic buying can': 637670, 'buying can eat': 150087, 'can eat cheap': 158193, 'eat cheap usually': 265881, 'cheap usually do': 174224, 'usually do and': 951111, 'do and am': 249063, 'and am having': 58019, 'having to buy': 384333, 'to buy more': 902271, 'buy more expensive': 148968, 'more expensive food': 539177, 'expensive food please': 291243, 'food please dm': 315864, 'please dm me': 659887, 're interested discount': 698909, 'interested discount are': 441448, 'discount are available': 244447, 'available on order': 104531, 'on order with': 602545, 'order with multiple': 618784, 'with multiple art': 999597, 'multiple art piece': 545727, 'aest': 33929, '423': 18935, '322': 17712, '237': 15486, '232': 15454, 'story 12': 811879, '12 00': 2756, '18 00': 4478, '00 aest': 43, 'aest 450': 33930, '450 tweet': 19158, 'tweet 423': 936315, '423 tweet': 18936, 'tweet 322': 936313, '322 tweet': 17715, 'tweet 237': 936311, '237 tweet': 15489, 'tweet 232': 936309, '232 tweet': 15455, 'news story 12': 560831, 'story 12 00': 811880, '12 00 to': 2760, '00 to 18': 535, 'to 18 00': 899527, '18 00 aest': 4479, '00 aest 450': 44, 'aest 450 tweet': 33931, '450 tweet 423': 19159, 'tweet 423 tweet': 936316, '423 tweet 322': 18937, 'tweet 322 tweet': 936314, '322 tweet 237': 17716, 'tweet 237 tweet': 936312, '237 tweet 232': 15490, 'tweet 232 tweet': 936310, '232 tweet atnix': 15456, 'trumpliedpeopledied': 934070, 'poster': 666601, 'fkthebs': 309895, 'trumppressconference': 934144, 'worse being': 1010882, 'being sick': 125791, 'or being': 614534, 'the trumpliedpeopledied': 870075, 'trumpliedpeopledied toiletpaper': 934073, 'toiletpaper trumppandemic': 922773, 'trumppandemic politics': 934112, 'politics poster': 663795, 'poster shirt': 666612, 'shirt fkthebs': 758978, 'fkthebs workingfromhomelife': 309896, 'workingfromhomelife handsanitizer': 1009119, 'handsanitizer handwashing': 376544, 'handwashing fed': 376826, 'fed trumppressconference': 301916, 'what worse being': 982638, 'worse being sick': 1010883, 'being sick or': 125794, 'sick or being': 768552, 'or being sick': 614536, 'being sick of': 125793, 'sick of the': 768543, 'of the trumpliedpeopledied': 591560, 'the trumpliedpeopledied toiletpaper': 870077, 'trumpliedpeopledied toiletpaper trumppandemic': 934074, 'toiletpaper trumppandemic politics': 922774, 'trumppandemic politics poster': 934113, 'politics poster shirt': 663796, 'poster shirt fkthebs': 666613, 'shirt fkthebs workingfromhomelife': 758979, 'fkthebs workingfromhomelife handsanitizer': 309897, 'workingfromhomelife handsanitizer handwashing': 1009120, 'handsanitizer handwashing fed': 376545, 'handwashing fed trumppressconference': 376827, 'tendergreen': 837912, 'selling box': 749186, 'box to': 137182, 'go guy': 353628, 'guy different': 368978, 'different box': 241911, 'box different': 137046, 'different price': 242032, 'all come': 42391, 'one even': 606246, 'even come': 283961, 'with bottle': 997458, 'wine check': 995793, 'check them': 174663, 'essential tendergreen': 281649, 'is selling box': 451751, 'selling box to': 749187, 'box to go': 137187, 'to go guy': 906803, 'go guy different': 353629, 'guy different box': 368979, 'different box different': 241912, 'box different price': 137047, 'different price all': 242033, 'price all come': 672267, 'all come with': 42395, 'come with toilet': 187692, 'paper roll and': 640686, 'roll and one': 725180, 'and one even': 68086, 'one even come': 606247, 'even come with': 283963, 'come with bottle': 187676, 'with bottle of': 997459, 'of wine check': 593180, 'wine check them': 995794, 'check them out': 174664, 'them out if': 876128, 're in need': 698875, 'need of some': 555343, 'of some food': 589896, 'some food essential': 782858, 'food essential tendergreen': 314389, 'zipsak': 1027637, 'spreadthelovenotthevirus': 791115, 'customer returned': 222772, 'returned zipsak': 719991, 'zipsak to': 1027638, 'with surprise': 1001095, 'surprise in': 828531, 'box she': 137158, 'she didn': 755988, 'original packaging': 619570, 'packaging for': 633534, 'it added': 456269, 'added toiletpaper': 31618, 'and kleenex': 65869, 'kleenex token': 475907, 'token gift': 923476, 'gift lol': 349997, 'lol thank': 500957, 'you toiletpapercrisis': 1021874, 'toiletpapercrisis spreadthelovenotthevirus': 923066, 'customer returned zipsak': 222773, 'returned zipsak to': 719992, 'zipsak to today': 1027639, 'to today with': 917620, 'today with surprise': 920561, 'with surprise in': 1001096, 'surprise in the': 828532, 'in the box': 429035, 'the box she': 849923, 'box she didn': 137159, 'she didn have': 755989, 'have the original': 383008, 'the original packaging': 862487, 'original packaging for': 619571, 'packaging for the': 633536, 'for the item': 326514, 'the item and': 858601, 'item and to': 463080, 'and to make': 74183, 'to make up': 909760, 'make up for': 510685, 'up for it': 944943, 'for it added': 322690, 'it added toiletpaper': 456270, 'added toiletpaper and': 31619, 'toiletpaper and kleenex': 921723, 'and kleenex token': 65871, 'kleenex token gift': 475908, 'token gift lol': 923477, 'gift lol thank': 349998, 'lol thank you': 500958, 'thank you toiletpapercrisis': 841833, 'you toiletpapercrisis spreadthelovenotthevirus': 1021875, 'check flattening': 174433, 'scam curve': 740124, 'curve cybersecurity': 221847, 'cybersecurity privacy': 224005, 'privacy scam': 678835, 'check flattening the': 174434, 'flattening the scam': 310148, 'the scam curve': 866413, 'scam curve cybersecurity': 740125, 'curve cybersecurity privacy': 221848, 'cybersecurity privacy scam': 224006, 'this increasing': 888084, 'increasing evidence': 433603, 'evidence that': 288389, 'be considering': 114205, 'considering level': 195389, 'level ppe': 487682, 'for coughing': 320409, 'coughing patient': 208732, 'more evidence': 539159, 'evidence required': 288380, 'required but': 713357, 'pandemic better': 635004, 'over hype': 630304, 'hype than': 412275, 'than under': 841378, 'under who': 940388, 'is this increasing': 453100, 'this increasing evidence': 888085, 'increasing evidence that': 433604, 'evidence that we': 288395, 'should be considering': 765591, 'be considering level': 114207, 'considering level ppe': 195390, 'level ppe for': 487683, 'ppe for coughing': 667946, 'for coughing patient': 320411, 'coughing patient more': 208733, 'patient more evidence': 644214, 'more evidence required': 539160, 'evidence required but': 288381, 'required but in': 713358, 'but in the': 146037, 'face of pandemic': 294665, 'of pandemic better': 587690, 'pandemic better to': 635005, 'better to over': 128568, 'to over hype': 911294, 'over hype than': 630305, 'hype than under': 412276, 'than under who': 841380, 'under who know': 940389, 'maskup': 519700, 'russianpresident': 728682, 'did putin': 240774, 'putin deal': 691017, 'surge it': 828218, 'so putin': 778089, 'putin maskup': 691033, 'maskup russianpresident': 519703, 'how did putin': 407687, 'did putin deal': 240775, 'putin deal with': 691018, 'deal with mask': 229558, 'with mask price': 999413, 'mask price surge': 519152, 'price surge it': 676723, 'surge it so': 828219, 'it so putin': 461124, 'so putin maskup': 778091, 'putin maskup russianpresident': 691034, 'gb': 344783, 'uklockdown lockdownuk': 938998, 'lockdownuk corona': 500405, 'can uk': 160073, 'uk citizen': 938245, 'citizen accept': 178816, 'accept this': 28002, 'empty for': 274879, 'week gb': 976265, 'gb united': 344793, 'kingdom great': 475325, 'great britain': 362532, 'britain united': 140462, 'kingdom if': 475329, 'if indeed': 414259, 'indeed there': 434012, 'enough then': 277674, 'then where': 877749, 'where is': 984944, 'uklockdown lockdownuk corona': 938999, 'lockdownuk corona virus': 500406, 'corona virus how': 204317, 'how can uk': 407527, 'can uk citizen': 160074, 'uk citizen accept': 938246, 'citizen accept this': 178817, 'accept this supermarket': 28003, 'this supermarket shelf': 890436, 'shelf empty for': 757020, 'empty for week': 274882, 'for week gb': 327708, 'week gb united': 976267, 'gb united kingdom': 344794, 'united kingdom great': 942181, 'kingdom great britain': 475326, 'great britain united': 362536, 'britain united kingdom': 140463, 'united kingdom if': 942183, 'kingdom if indeed': 475330, 'if indeed there': 414261, 'indeed there is': 434014, 'is enough then': 447518, 'enough then where': 277675, 'then where is': 877750, 'where is it': 984949, 'tesco ha': 838707, 'definitely ramped': 232381, 'tesco ha definitely': 838709, 'ha definitely ramped': 370344, 'definitely ramped up': 232382, 'ramped up their': 696475, 'their price since': 874421, 'cashpoint': 166711, 'escalator': 280294, 'rail': 695670, '19 fuel': 7159, 'fuel pump': 340268, 'pump handle': 689051, 'handle supermarket': 376261, 'trolley cashpoint': 932387, 'cashpoint button': 166712, 'button door': 148211, 'handle light': 376224, 'light switch': 489602, 'switch escalator': 830484, 'escalator hand': 280297, 'hand rail': 375193, 'rail lift': 695676, 'lift button': 489433, 'button and': 148201, 'more seems': 540339, 'good case': 356868, 'for wearing': 327666, 'paying by': 645395, 'by card': 152073, 'card contactless': 163491, 'contactless for': 200372, 'now anyway': 574074, '19 fuel pump': 7160, 'fuel pump handle': 340269, 'pump handle supermarket': 689055, 'handle supermarket trolley': 376262, 'supermarket trolley cashpoint': 823561, 'trolley cashpoint button': 932388, 'cashpoint button door': 166713, 'button door handle': 148212, 'door handle light': 255609, 'handle light switch': 376225, 'light switch escalator': 489604, 'switch escalator hand': 830485, 'escalator hand rail': 280298, 'hand rail lift': 375194, 'rail lift button': 695677, 'lift button and': 489434, 'button and more': 148202, 'and more seems': 67214, 'more seems to': 540340, 'seems to make': 746883, 'to make good': 909669, 'make good case': 509943, 'good case for': 356869, 'case for wearing': 165747, 'for wearing glove': 327668, 'wearing glove and': 974627, 'glove and paying': 352573, 'and paying by': 68812, 'paying by card': 645396, 'by card contactless': 152074, 'card contactless for': 163492, 'contactless for now': 200373, 'for now anyway': 323962, 'sued': 817175, 'wando': 965584, 'evans': 283754, 'suing': 817738, 'notify': 573558, 'walmart sued': 965419, 'sued by': 817176, 'by family': 152544, 'employee killed': 274005, 'the brother': 850054, 'brother of': 141091, 'of wando': 592896, 'wando evans': 965585, 'evans who': 283761, 'is suing': 452446, 'suing walmart': 817739, 'walmart claiming': 965298, 'claiming chicago': 179901, 'chicago area': 175643, 'area store': 92201, 'store failed': 807694, 'to notify': 910730, 'notify employee': 573559, 'after several': 36174, 'several worker': 753968, 'worker began': 1006517, 'began showing': 123433, 'showing symptom': 767509, 'walmart sued by': 965420, 'sued by family': 817177, 'by family of': 152546, 'family of employee': 298095, 'of employee killed': 583075, 'employee killed by': 274006, 'killed by coronavirus': 474566, 'by coronavirus the': 152236, 'coronavirus the brother': 206903, 'the brother of': 850055, 'brother of wando': 141092, 'of wando evans': 592897, 'wando evans who': 965586, 'evans who died': 283762, 'who died of': 988604, '19 is suing': 8058, 'is suing walmart': 452447, 'suing walmart claiming': 817742, 'walmart claiming chicago': 965299, 'claiming chicago area': 179902, 'chicago area store': 175645, 'area store failed': 92203, 'store failed to': 807696, 'failed to notify': 296183, 'to notify employee': 910731, 'notify employee after': 573560, 'employee after several': 273529, 'after several worker': 36177, 'several worker began': 753969, 'worker began showing': 1006518, 'began showing symptom': 123434, 'cool story': 203045, 'story on': 812080, 'grocery exec': 364507, 'exec getting': 289814, 'getting taste': 349333, 'frontlines all': 338907, 'all hand': 43029, 'on deck': 600241, 'deck via': 231142, 'cool story on': 203046, 'story on grocery': 812085, 'on grocery exec': 601183, 'grocery exec getting': 364508, 'exec getting taste': 289815, 'getting taste of': 349334, 'taste of the': 834792, 'of the frontlines': 591047, 'the frontlines all': 855897, 'frontlines all hand': 338908, 'all hand on': 43031, 'hand on deck': 375131, 'on deck via': 600247, 'trace': 928123, 'using credit': 950439, 'card covid': 163493, 'have trace': 383387, 'trace on': 928135, 'cash please': 166306, 'please use': 660705, 'use credit': 949143, 'card over': 163609, 'online when': 609712, 'when possible': 983891, 'possible supermarket': 665795, 'trip there': 932176, 'shortage amp': 764807, 'amp if': 53970, 'so bodega': 776629, 'bodega great': 133783, 'regular item': 707801, 'using credit card': 950440, 'credit card covid': 216331, 'card covid 19': 163494, '19 can have': 5610, 'can have trace': 158591, 'have trace on': 383388, 'trace on cash': 928136, 'on cash please': 599844, 'cash please use': 166307, 'please use credit': 660708, 'use credit card': 949144, 'credit card over': 216346, 'card over the': 163610, 'phone or online': 654988, 'or online when': 616394, 'online when possible': 609714, 'when possible supermarket': 983896, 'possible supermarket trip': 665796, 'supermarket trip there': 823552, 'trip there is': 932177, 'food shortage amp': 316554, 'shortage amp if': 764808, 'amp if you': 53972, 'you can limit': 1017715, 'can limit your': 158879, 'supermarket please do': 822013, 'please do so': 659898, 'do so bodega': 250087, 'so bodega great': 776630, 'bodega great resource': 133784, 'great resource for': 362965, 'resource for regular': 714788, 'for regular item': 325075, 'retweet post': 720070, 'of local': 585924, 'doctor first': 250915, 'solidarity of': 781939, 'could mean': 209407, 'worker feeling': 1006923, 'feeling unappreciated': 303090, 'should retweet post': 766422, 'retweet post of': 720071, 'post of local': 666224, 'of local doctor': 585928, 'local doctor first': 497905, 'doctor first responder': 250916, 'in solidarity of': 428073, 'solidarity of their': 781941, 'of their tireless': 591710, 'protection it could': 685500, 'it could mean': 457363, 'could mean lot': 209411, 'overworked nurse grocery': 631793, 'store worker feeling': 811497, 'worker feeling unappreciated': 1006924, 'feeling unappreciated helpless': 303091, 'you getting': 1018811, 'more curbside': 538932, 'curbside order': 220639, 'store curbside': 807235, 'curbside service': 220671, 'rise with': 723069, 'new social': 559612, 'to retail': 913443, 'are you getting': 91796, 'you getting more': 1018813, 'getting more curbside': 349122, 'more curbside order': 538933, 'curbside order at': 220640, 'order at your': 618067, 'at your store': 101693, 'your store curbside': 1025966, 'store curbside service': 807237, 'curbside service may': 220672, 'service may be': 752583, 'the rise with': 865863, 'rise with new': 723072, 'with new social': 999713, 'new social distancing': 559613, 'distancing measure due': 247323, 'due to retail': 261926, 'question short': 693732, 'short answer': 764598, 'answer not': 78085, 'much amid': 544707, 're relying': 699373, 'on news': 602389, 'information but': 437774, 'we trust': 973577, 'trust them': 934321, 'them dig': 875600, 'dig into': 242434, 'latest consumer': 481256, 'consumer date': 197066, 'date here': 226640, 'very good question': 955194, 'good question short': 357611, 'question short answer': 693733, 'short answer not': 764599, 'answer not that': 78086, 'not that much': 571973, 'that much amid': 845241, 'much amid the': 544708, 'the crisis we': 852474, 'we re relying': 972948, 're relying on': 699374, 'relying on news': 709678, 'on news medium': 602391, 'news medium and': 560608, 'medium and government': 526986, 'and government for': 63880, 'government for information': 360100, 'for information but': 322576, 'information but do': 437775, 'but do we': 145564, 'do we trust': 250490, 'we trust them': 973578, 'trust them dig': 934322, 'them dig into': 875601, 'dig into the': 242435, 'into the latest': 443140, 'the latest consumer': 859082, 'latest consumer date': 481260, 'consumer date here': 197067, 'also proper': 48696, 'proper hand': 684109, 'surface cleaning': 827998, 'key wash': 473457, 'second are': 743660, 'more using': 540881, 'using scrubbing': 950640, 'scrubbing and': 742924, 'and hot': 64758, 'hot warm': 405061, 'warm water': 966889, 'water to': 969213, 'kill germ': 474400, 'germ if': 346122, 'if handwashing': 414195, 'handwashing not': 376851, 'not avail': 568292, 'avail use': 104120, 'wipe often': 996328, 'also proper hand': 48697, 'proper hand and': 684110, 'and surface cleaning': 72875, 'surface cleaning is': 828000, 'cleaning is key': 180971, 'is key wash': 449192, 'key wash your': 473458, 'your hand for': 1024188, '20 second are': 13324, 'second are more': 743661, 'are more using': 88125, 'more using scrubbing': 540883, 'using scrubbing and': 950641, 'scrubbing and hot': 742925, 'and hot warm': 64762, 'hot warm water': 405062, 'warm water to': 966891, 'water to kill': 969219, 'to kill germ': 908927, 'kill germ if': 474403, 'germ if handwashing': 346123, 'if handwashing not': 414196, 'handwashing not avail': 376852, 'not avail use': 568293, 'avail use hand': 104121, 'sanitizer or sanitizer': 735493, 'or sanitizer wipe': 616956, 'sanitizer wipe often': 736121, 'keepitreal': 472655, 'helpyourneighbour': 391664, '12weeks': 3140, 'dogood': 252212, 'few wise': 304181, 'wise word': 996703, 'word keepitreal': 1004512, 'keepitreal stoppanicbuying': 472656, 'stoppanicbuying helpyourneighbour': 805574, 'helpyourneighbour help': 391665, 'help 12weeks': 389282, '12weeks dogood': 3143, 'few wise word': 304182, 'wise word keepitreal': 996705, 'word keepitreal stoppanicbuying': 1004513, 'keepitreal stoppanicbuying helpyourneighbour': 472657, 'stoppanicbuying helpyourneighbour help': 805575, 'helpyourneighbour help 12weeks': 391666, 'help 12weeks dogood': 389283, 'suspicion': 829699, 'panic rightly': 638495, 'rightly so': 722477, 'so considering': 776782, 'considering what': 195440, 'with sanitize': 1000563, 'sanitize your': 734236, 'hand avoid': 374808, 'avoid crowd': 105067, 'crowd stay': 219257, 'indoors much': 435411, 'food drink': 314275, 'drink water': 258894, 'to beef': 901693, 'beef immunity': 120512, 'immunity up': 417443, 'up maintain': 945354, 'maintain high': 508977, 'high index': 395138, 'index of': 434225, 'of suspicion': 590547, 'suspicion stay': 829704, 'safe corona': 729564, 'corona pandemic': 204089, 'easy to panic': 265788, 'to panic rightly': 911423, 'panic rightly so': 638496, 'rightly so considering': 722479, 'so considering what': 776783, 'considering what we': 195441, 'what we are': 982540, 'we are dealing': 970520, 'are dealing with': 85704, 'dealing with sanitize': 229687, 'with sanitize your': 1000564, 'sanitize your hand': 734238, 'your hand avoid': 1024167, 'hand avoid crowd': 374809, 'avoid crowd stay': 105071, 'crowd stay indoors': 219259, 'stay indoors much': 797078, 'indoors much you': 435412, 'much you can': 545492, 'can eat good': 158195, 'good food drink': 357059, 'food drink water': 314283, 'drink water to': 258895, 'water to beef': 969215, 'to beef immunity': 901694, 'beef immunity up': 120513, 'immunity up maintain': 417444, 'up maintain high': 945355, 'maintain high index': 508978, 'high index of': 395139, 'index of suspicion': 434227, 'of suspicion stay': 590548, 'suspicion stay safe': 829705, 'stay safe corona': 797221, 'safe corona pandemic': 729565, 'good transport': 357914, 'transport skyrocket': 929940, 'of good transport': 584243, 'good transport skyrocket': 357916, 'transport skyrocket in': 929941, 'skyrocket in lagos': 773313, 'nylockdown': 578102, 'down cigarette': 256633, 'cigarette price': 178486, 'up 10': 944106, '10 more': 1550, 'more per': 540054, 'per carton': 650737, 'carton no': 165483, 'no place': 565115, 'go chain': 353410, 'chain smoking': 171114, 'smoking at': 775901, 'home perfect': 401840, 'perfect ny': 651316, 'ny nylockdown': 577905, 'nylockdown quarantinelife': 578103, 'quarantinelife chinavirus': 692938, 'gas price down': 343953, 'price down cigarette': 673520, 'down cigarette price': 256634, 'cigarette price up': 178488, 'price up 10': 677217, 'up 10 more': 944108, '10 more per': 1552, 'more per carton': 540055, 'per carton no': 650738, 'carton no place': 165484, 'no place to': 565118, 'place to go': 657755, 'to go chain': 906783, 'go chain smoking': 353411, 'chain smoking at': 171115, 'smoking at home': 775902, 'at home perfect': 99079, 'home perfect ny': 401841, 'perfect ny nylockdown': 651317, 'ny nylockdown quarantinelife': 577906, 'nylockdown quarantinelife chinavirus': 578104, 'petition for': 653602, '19 edition': 6719, 'petition for covid': 653604, 'covid 19 edition': 213007, '19 edition of': 6720, 'edition of supermarket': 268634, 'of supermarket sweep': 590448, 'ua': 937725, 'driveway': 259881, 'utilized': 951364, 'friendship': 334024, 'my college': 547741, 'college age': 186596, 'age daughter': 37813, 'daughter wa': 226916, 'wa missing': 962633, 'missing her': 534303, 'her ua': 392491, 'ua friend': 937726, 'friend so': 333811, 'much so': 545307, 'she made': 756211, 'made approved': 507640, 'approved chat': 83141, 'chat circle': 173927, 'circle in': 178608, 'our driveway': 622813, 'driveway only': 259882, 'only kid': 610680, 'kid involved': 474023, 'involved all': 444338, 'all were': 45432, 'were foot': 979651, 'apart and': 81224, 'were lot': 979857, 'and clorox': 59995, 'wipe utilized': 996412, 'utilized community': 951367, 'community over': 190028, 'over virus': 630886, 'virus friendship': 958209, 'friendship find': 334025, 'my college age': 547742, 'college age daughter': 186597, 'age daughter wa': 37815, 'daughter wa missing': 226917, 'wa missing her': 962638, 'missing her ua': 534304, 'her ua friend': 392492, 'ua friend so': 937727, 'friend so much': 333812, 'so much so': 777810, 'much so she': 545308, 'so she made': 778194, 'she made approved': 756212, 'made approved chat': 507641, 'approved chat circle': 83142, 'chat circle in': 173928, 'circle in our': 178609, 'in our driveway': 426283, 'our driveway only': 622814, 'driveway only kid': 259883, 'only kid involved': 610681, 'kid involved all': 474024, 'involved all were': 444339, 'all were foot': 45433, 'were foot apart': 979652, 'foot apart and': 318340, 'apart and there': 81226, 'there were lot': 879321, 'were lot of': 979859, 'sanitizer and clorox': 734395, 'and clorox wipe': 59996, 'clorox wipe utilized': 182475, 'wipe utilized community': 996413, 'utilized community over': 951368, 'community over virus': 190029, 'over virus friendship': 630887, 'virus friendship find': 958210, 'friendship find way': 334026, 'plowing': 661098, 'unimaginable': 941805, 'are plowing': 89117, 'plowing their': 661103, 'crop due': 218917, 'from restaurant': 337086, 'restaurant we': 716787, 'see unimaginable': 745995, 'unimaginable queue': 941810, 'desperate citizen': 238512, 'citizen outside': 178943, 'outside food': 629424, 'use some': 949598, 'wasted trillion': 968273, 'trillion to': 932009, 'buy crop': 148515, 'crop from': 218921, 'from farmer': 335414, 'and distribute': 61506, 'distribute them': 248016, 'to needy': 910516, 'needy citizen': 556674, 'farmer are plowing': 299290, 'are plowing their': 89120, 'plowing their crop': 661104, 'their crop due': 872924, 'crop due to': 218918, 'demand from restaurant': 235545, 'from restaurant we': 337097, 'restaurant we see': 716790, 'we see unimaginable': 973173, 'see unimaginable queue': 745997, 'unimaginable queue of': 941811, 'queue of desperate': 694019, 'of desperate citizen': 582555, 'desperate citizen outside': 238514, 'citizen outside food': 178944, 'outside food bank': 629425, 'food bank why': 313672, 'bank why not': 110309, 'why not use': 991239, 'not use some': 572359, 'use some of': 949602, 'of the wasted': 591604, 'the wasted trillion': 871120, 'wasted trillion to': 968274, 'trillion to buy': 932010, 'to buy crop': 902211, 'buy crop from': 148516, 'crop from farmer': 218922, 'from farmer and': 335415, 'farmer and distribute': 299252, 'and distribute them': 61512, 'distribute them to': 248018, 'them to needy': 876493, 'to needy citizen': 910517, 'dofe': 252020, 'and worrying': 75912, 'have concern': 380063, 'outbreak will': 628821, 'affect participant': 34206, 'participant dofe': 642541, 'dofe programme': 252021, 'programme for': 683339, 'anyone running': 80497, 'running the': 728093, 'the dofe': 853489, 'dofe read': 252023, 'our in': 623509, 'in depth': 422197, 'depth faq': 237762, 'we know this': 972161, 'know this is': 476893, 'is difficult and': 447171, 'difficult and worrying': 242188, 'and worrying time': 75913, 'worrying time for': 1010842, 'for everyone and': 321197, 'everyone and that': 286701, 'and that you': 73225, 'you will have': 1022337, 'will have concern': 993624, 'have concern about': 380064, 'concern about how': 192894, 'the outbreak will': 862725, 'outbreak will affect': 628822, 'will affect participant': 992214, 'affect participant dofe': 34207, 'participant dofe programme': 642542, 'dofe programme for': 252022, 'programme for anyone': 683340, 'for anyone running': 319447, 'anyone running the': 80498, 'running the dofe': 728095, 'the dofe read': 853490, 'dofe read our': 252024, 'read our in': 700511, 'our in depth': 623510, 'in depth faq': 422201, 'courage': 211776, 'now just': 575150, 'just want': 470221, 'give much': 350601, 'much courage': 544811, 'courage possible': 211783, 'worker retail': 1007689, 'clerk that': 181784, 'for now just': 323974, 'now just want': 575161, 'just want to': 470229, 'to give much': 906694, 'give much courage': 350602, 'much courage possible': 544812, 'courage possible to': 211784, 'possible to our': 665848, 'our healthcare worker': 623392, 'healthcare worker retail': 387380, 'worker retail worker': 1007692, 'retail worker delivery': 718879, 'worker delivery worker': 1006750, 'delivery worker and': 234767, 'worker and grocery': 1006300, 'store clerk that': 807029, 'clerk that all': 181785, 'that all thank': 842569, 'blueprint': 133502, 'dwindling': 263676, 'day18oflockdown': 228863, 'consumer who': 199516, 'who spoke': 989654, 'with blueprint': 997437, 'blueprint said': 133503, 'most annoying': 542102, 'annoying thing': 77373, 'of dwindling': 582889, 'dwindling income': 263692, 'income with': 432502, 'little hope': 495388, 'any flowing': 79225, 'flowing in': 311354, 'in day18oflockdown': 422028, 'consumer who spoke': 199530, 'who spoke with': 989655, 'spoke with blueprint': 789746, 'with blueprint said': 997438, 'blueprint said the': 133504, 'said the most': 731442, 'the most annoying': 860948, 'most annoying thing': 542104, 'annoying thing is': 77374, 'thing is that': 884483, 'that price are': 845822, 'going up in': 355785, 'face of dwindling': 294651, 'of dwindling income': 582890, 'dwindling income with': 263693, 'income with little': 432504, 'with little hope': 999256, 'little hope of': 495389, 'hope of any': 403563, 'of any flowing': 580258, 'any flowing in': 79226, 'flowing in day18oflockdown': 311356, 'scotland': 742412, 'newest panic': 560062, 'buy trend': 149396, 'in scotland': 427740, 'scotland freezer': 742419, 'store all': 806128, 'bought food': 136561, 'you fucking': 1018733, 'fucking serious': 339992, 'coronacrisis 19': 204491, 'newest panic buy': 560063, 'panic buy trend': 637541, 'buy trend in': 149397, 'trend in scotland': 931369, 'in scotland freezer': 427743, 'scotland freezer to': 742420, 'to store all': 915604, 'store all the': 806140, 'the panic bought': 863186, 'panic bought food': 637421, 'bought food are': 136563, 'food are you': 313415, 'are you fucking': 91795, 'you fucking serious': 1018739, 'fucking serious coronacrisis': 339993, 'serious coronacrisis 19': 751358, 'said oh': 731275, 'oh god': 596389, 'god it': 354748, 'supermarket day': 819892, 'it own': 460215, 'own day': 631938, 'now lockdown': 575237, 'lockdown supermarket': 499980, 'just said oh': 469669, 'said oh god': 731277, 'oh god it': 596392, 'god it supermarket': 354751, 'it supermarket day': 461360, 'supermarket day the': 819897, 'day the supermarket': 228501, 'supermarket ha it': 820634, 'ha it own': 371025, 'it own day': 460217, 'own day now': 631939, 'day now lockdown': 228036, 'now lockdown supermarket': 575241, 'lockdown supermarket socialdistancing': 499982, 'mp thought': 544278, 'fixed you': 309839, 'know being': 476299, 'being minister': 125434, 'country requires': 211004, 'requires more': 713482, 'just talk': 469952, 'talk after': 833770, 'after problem': 36075, 'problem this': 679717, 'this should': 890122, 'be stopped': 117379, 'stopped at': 805683, 'border even': 135244, 'crisis you': 218461, 'still allowing': 800184, 'allowing this': 46357, 'mp thought this': 544279, 'thought this wa': 893267, 'this wa going': 891067, 'to be fixed': 901258, 'be fixed you': 114880, 'fixed you know': 309840, 'you know being': 1019490, 'know being minister': 476300, 'being minister of': 125435, 'minister of this': 533431, 'this country requires': 886967, 'country requires more': 211005, 'requires more than': 713484, 'than just talk': 840821, 'just talk after': 469953, 'talk after problem': 833771, 'after problem this': 36076, 'problem this should': 679720, 'this should be': 890124, 'should be stopped': 765739, 'be stopped at': 117380, 'stopped at the': 805687, 'at the border': 100894, 'the border even': 849871, 'border even during': 135245, 'even during crisis': 284024, 'during crisis you': 262574, 'crisis you are': 218462, 'you are still': 1017242, 'are still allowing': 90391, 'still allowing this': 800185, 'howard': 409307, 'stay alert': 796753, 'alert during': 41398, '19 public': 9868, 'following infographic': 312765, 'infographic contains': 437633, 'contains relevant': 200638, 'relevant tip': 709180, 'the howard': 857675, 'howard county': 409312, 'county office': 211451, 'office of': 595497, 'protection regarding': 685586, 'regarding price': 707242, 'other fraudulent': 620269, 'fraudulent activity': 331448, 'stay alert during': 796755, 'alert during this': 41399, 'covid 19 public': 213627, '19 public health': 9869, 'health crisis the': 386348, 'crisis the following': 218173, 'the following infographic': 855511, 'following infographic contains': 312766, 'infographic contains relevant': 437634, 'contains relevant tip': 200639, 'relevant tip from': 709181, 'from the howard': 337751, 'the howard county': 857677, 'howard county office': 409314, 'county office of': 211452, 'office of consumer': 595500, 'consumer protection regarding': 198555, 'protection regarding price': 685587, 'regarding price gouging': 707243, 'gouging scam and': 359447, 'scam and other': 740010, 'and other fraudulent': 68331, 'other fraudulent activity': 620270, 'outfitter nike': 628965, 'nike and': 563219, 'other major': 620494, 'coronavirus retail': 206677, 'urban outfitter nike': 948119, 'outfitter nike and': 628966, 'nike and 14': 563220, '14 other major': 3513, 'other major retailer': 620496, 'temporarily closing their': 837484, 'closing their store': 183787, 'their store in': 874857, 'the coronavirus retail': 851901, 'bombarded': 134197, 'onetime': 607567, 'for stay': 325883, 'pretty hard': 671428, 'hard when': 378107, 'shop are': 759891, 'are bombarded': 85011, 'bombarded with': 134198, 'customer set': 222838, 'set law': 753416, 'law for': 482290, 'for certain': 319991, 'certain amount': 169969, 'at onetime': 99975, 'onetime please': 607568, 'all for stay': 42846, 'for stay at': 325884, 'home and social': 400688, 'social distancing but': 779574, 'distancing but work': 247064, 'but work at': 147924, 'work at supermarket': 1004902, 'at supermarket and': 100699, 'supermarket and it': 819009, 'and it pretty': 65571, 'it pretty hard': 460441, 'pretty hard when': 671430, 'hard when the': 378109, 'the shop are': 866979, 'shop are bombarded': 759893, 'are bombarded with': 85012, 'bombarded with customer': 134199, 'with customer set': 997902, 'customer set law': 222839, 'set law for': 753417, 'law for certain': 482291, 'for certain amount': 319992, 'certain amount of': 169970, 'of people at': 587877, 'people at onetime': 647178, 'at onetime please': 99976, 'bpd': 137451, 'producer confirmed': 680591, 'confirmed final': 194154, 'final deal': 305832, 'deal today': 229512, 'today after': 919152, 'after opec': 35988, 'opec talk': 611971, 'talk agreed': 833772, 'by million': 153220, 'million bpd': 532093, 'bpd to': 137456, 'and collapse': 60069, 'price saudi': 676293, 'arabia and': 83853, 'and mexico': 66977, 'mexico found': 530004, 'found compromise': 330176, 'compromise energy': 192659, 'oil producer confirmed': 597335, 'producer confirmed final': 680592, 'confirmed final deal': 194155, 'final deal today': 305833, 'deal today after': 229513, 'today after opec': 919155, 'after opec talk': 35993, 'opec talk agreed': 611972, 'talk agreed to': 833773, 'to cut the': 903891, 'cut the global': 223575, 'global oil output': 352050, 'oil output by': 596996, 'output by million': 629241, 'by million bpd': 153222, 'million bpd to': 532094, 'bpd to stabilize': 137457, 'to stabilize the': 915122, 'stabilize the market': 791863, 'the market amid': 860085, 'market amid outbreak': 515935, 'amid outbreak and': 52557, 'outbreak and collapse': 627990, 'and collapse of': 60072, 'of the price': 591363, 'the price saudi': 864408, 'price saudi arabia': 676294, 'saudi arabia and': 737184, 'arabia and mexico': 83857, 'and mexico found': 66978, 'mexico found compromise': 530005, 'found compromise energy': 330177, 'solve': 782144, '3dprinted': 18260, 'drill': 258769, 'attachment': 102064, 'spool': 789862, 'here practical': 393471, 'practical covid': 668456, '19 challenge': 5753, 'challenge for': 171456, 'for maker': 323172, 'maker solve': 510872, 'solve the': 782159, 'consumer tp': 199347, 'tp supply': 927959, 'chain issue': 170857, 'issue with': 456006, 'with 3dprinted': 997010, '3dprinted drill': 18261, 'drill attachment': 258770, 'attachment that': 102073, 'would let': 1011987, 're spool': 699561, 'spool an': 789863, 'empty consumer': 274842, 'tp tube': 928021, 'tube from': 935031, 'the giant': 856251, 'giant now': 349831, 'now plentiful': 575556, 'plentiful commercial': 660889, 'commercial roll': 188731, 'roll so': 725503, 'could do': 209092, 'here practical covid': 393472, 'practical covid 19': 668457, 'covid 19 challenge': 212783, '19 challenge for': 5756, 'challenge for maker': 171465, 'for maker solve': 323173, 'maker solve the': 510873, 'solve the consumer': 782160, 'the consumer tp': 851614, 'consumer tp supply': 199348, 'tp supply chain': 927960, 'supply chain issue': 824981, 'chain issue with': 170862, 'issue with 3dprinted': 456007, 'with 3dprinted drill': 997011, '3dprinted drill attachment': 18262, 'drill attachment that': 258771, 'attachment that would': 102074, 'that would let': 847683, 'would let you': 1011989, 'let you re': 487218, 'you re spool': 1020754, 're spool an': 699562, 'spool an empty': 789864, 'an empty consumer': 55722, 'empty consumer tp': 274843, 'consumer tp tube': 199349, 'tp tube from': 928022, 'tube from the': 935032, 'from the giant': 337721, 'the giant now': 856257, 'giant now plentiful': 349832, 'now plentiful commercial': 575557, 'plentiful commercial roll': 660890, 'commercial roll so': 188732, 'roll so people': 725505, 'so people could': 777997, 'people could do': 647556, 'could do it': 209096, 'do it at': 249462, 'researching': 713940, 'client are': 182001, 'happens next': 377490, 'next we': 561660, 'start researching': 794463, 'researching the': 713951, 'behaviour issue': 124460, 'number of my': 576962, 'of my client': 586744, 'my client are': 547703, 'client are struggling': 182006, 'struggling to know': 814507, 'know what happens': 476958, 'what happens next': 981567, 'happens next we': 377491, 'next we ve': 561662, 'we ve decided': 973652, 'decided to start': 230932, 'to start researching': 915218, 'start researching the': 794464, 'researching the impact': 713952, 'on consumer behaviour': 600029, 'consumer behaviour issue': 196582, 'behaviour issue is': 124461, 'issue is available': 455812, 'available from for': 104398, 'from for free': 335527, 'oilprices': 597654, 'mnuchin': 534838, 'treasury': 930780, 'norwegian analyst': 567845, 'analyst forecast': 57139, 'forecast oilprices': 328853, 'oilprices with': 597697, 'epidemic and': 279333, 'between russia': 128874, 'arabia they': 83942, 'were lowest': 979865, 'lowest to': 506236, '10 15': 1238, '15 mnuchin': 3781, 'mnuchin treasury': 534839, 'treasury secretary': 930789, 'secretary say': 743970, 'say waiting': 739445, 'make 10': 509628, '10 billion': 1340, 'billion or': 130882, 'or 20': 614180, '20 billion': 12966, 'in purchase': 427125, 'norwegian analyst forecast': 567846, 'analyst forecast oilprices': 57140, 'forecast oilprices with': 328854, 'oilprices with the': 597698, 'with the epidemic': 1001286, 'the epidemic and': 854428, 'epidemic and the': 279338, 'and the oil': 73498, 'the oil war': 862121, 'war between russia': 966378, 'between russia and': 128875, 'saudi arabia they': 737218, 'arabia they were': 83943, 'they were lowest': 883785, 'were lowest to': 979866, 'lowest to 10': 506237, 'to 10 15': 899420, '10 15 mnuchin': 1240, '15 mnuchin treasury': 3782, 'mnuchin treasury secretary': 534841, 'treasury secretary say': 930790, 'secretary say waiting': 743971, 'say waiting for': 739446, 'waiting for lower': 964323, 'for lower oil': 323137, 'price to make': 677012, 'to make 10': 909614, 'make 10 billion': 509629, '10 billion or': 1345, 'billion or 20': 130883, 'or 20 billion': 614181, '20 billion in': 12967, 'billion in purchase': 130851, 'basemetals': 111795, 'keep base': 471335, 'base metal': 111462, 'metal price': 529645, 'low concern': 505195, 'ultimate impact': 939115, 'crisis remain': 217960, 'remain too': 709891, 'too high': 924784, 'high and': 394917, 'keep basemetals': 471337, 'basemetals price': 111796, 'price relatively': 676160, 'relatively low': 708770, 'coronavirus crisis keep': 205756, 'crisis keep base': 217632, 'keep base metal': 471336, 'base metal price': 111463, 'metal price low': 529650, 'price low concern': 675116, 'low concern about': 505196, 'concern about the': 192901, 'about the ultimate': 26549, 'the ultimate impact': 870314, 'ultimate impact of': 939116, 'corona crisis remain': 203909, 'crisis remain too': 217961, 'remain too high': 709892, 'too high and': 924785, 'high and this': 394926, 'and this will': 74013, 'this will keep': 891423, 'will keep basemetals': 993890, 'keep basemetals price': 471338, 'basemetals price relatively': 111797, 'price relatively low': 676161, 'relatively low for': 708772, 'low for the': 505286, 'highschool': 396127, 'clerk don': 181688, '15 an': 3664, 'hour because': 405454, 'were highschool': 979746, 'highschool kid': 396128, 'kid working': 474183, 'for spending': 325824, 'spending cash': 788773, 'cash remember': 166329, 'you fight': 1018553, 'crowd at': 219128, 'time important': 896971, 'important job': 418856, 'aren open': 92468, 'remember when we': 710420, 'when we were': 984475, 'were told that': 980278, 'told that grocery': 923695, 'store clerk don': 807002, 'clerk don deserve': 181689, 'don deserve 15': 253453, 'deserve 15 an': 238023, '15 an hour': 3665, 'an hour because': 56077, 'hour because they': 405456, 'because they were': 119728, 'they were highschool': 883778, 'were highschool kid': 979747, 'highschool kid working': 396129, 'kid working for': 474185, 'working for spending': 1008645, 'for spending cash': 325825, 'spending cash remember': 788774, 'cash remember that': 166330, 'remember that when': 710296, 'that when you': 847499, 'when you fight': 984558, 'you fight the': 1018556, 'fight the crowd': 304889, 'the crowd at': 852519, 'crowd at grocery': 219129, 'during the time': 263209, 'the time important': 869596, 'time important job': 896972, 'important job aren': 418858, 'job aren open': 465668, 'inability': 431170, 'envision': 279211, 'keep positive': 471800, 'mindset amidst': 532842, 'the forced': 855683, 'forced self': 328597, 'isolation the': 455453, 'of daily': 582311, 'work let': 1005427, 'alone the': 46922, 'the inability': 858025, 'inability to': 431175, 'plan or': 658196, 'or envision': 615171, 'envision the': 279212, 'future here': 342349, 'five example': 309612, 'novel may': 573797, 'may shift': 521494, 'shift our': 758379, 'our culture': 622635, 'to keep positive': 908830, 'keep positive mindset': 471801, 'positive mindset amidst': 665370, 'mindset amidst the': 532843, 'amidst the forced': 52826, 'the forced self': 855684, 'forced self isolation': 328598, 'self isolation the': 747801, 'isolation the disruption': 455454, 'the disruption of': 853407, 'disruption of daily': 246512, 'of daily work': 582321, 'daily work let': 224902, 'work let alone': 1005428, 'let alone the': 486586, 'alone the inability': 46924, 'the inability to': 858028, 'inability to plan': 431177, 'to plan or': 911767, 'plan or envision': 658197, 'or envision the': 615172, 'envision the future': 279213, 'the future here': 856077, 'future here are': 342350, 'are five example': 86594, 'five example of': 309613, 'example of how': 288935, 'how the novel': 408857, 'the novel may': 861918, 'novel may shift': 573798, 'may shift our': 521495, 'shift our culture': 758380, 'fear to': 301397, 'call demanding': 155831, 'demanding payment': 236604, 'payment immediately': 645653, 'your energy': 1023676, 'energy bill': 276400, 'bill and': 130499, 'and threatening': 74073, 'threatening to': 893830, 'off service': 594141, 'is scam': 451663, 'covid scam': 214221, 'criminal are using': 216824, '19 fear to': 6959, 'fear to scam': 301399, 'to scam people': 913867, 'scam people if': 740297, 'people if you': 648322, 'if you get': 415443, 'you get call': 1018763, 'get call demanding': 346737, 'call demanding payment': 155833, 'demanding payment immediately': 236605, 'payment immediately for': 645654, 'immediately for your': 417097, 'for your energy': 328145, 'your energy bill': 1023677, 'energy bill and': 276401, 'bill and threatening': 130508, 'and threatening to': 74075, 'threatening to cut': 893831, 'cut off service': 223444, 'off service it': 594143, 'service it is': 752531, 'it is scam': 459069, 'is scam here': 451664, 'scam here is': 740190, 'here is another': 393214, 'is another covid': 445731, 'another covid scam': 77554, 'covid scam to': 214223, 'scam to watch': 740427, 'to watch out': 918388, '925': 23501, '957': 23647, '8608': 22980, 'reportfraud': 712649, 'alert update': 41532, 'update our': 947147, 'is updated': 453586, 'updated please': 947422, 'call 925': 155732, '925 957': 23502, '957 8608': 23650, '8608 or': 22981, 'email da': 272152, 'da reportfraud': 224235, 'reportfraud org': 712650, 'org for': 619183, 'any covid': 79080, 'issue from': 455760, 'from price': 336975, 'gouging to': 359476, 'to potential': 911930, 'potential violation': 667173, 'health officer': 386691, 'officer order': 595689, 'consumer alert update': 196161, 'alert update our': 41533, 'update our consumer': 947148, 'protection hotline is': 685480, 'hotline is updated': 405252, 'is updated please': 453587, 'updated please call': 947423, 'please call 925': 659749, 'call 925 957': 155733, '925 957 8608': 23503, '957 8608 or': 23651, '8608 or email': 22982, 'or email da': 615144, 'email da reportfraud': 272153, 'da reportfraud org': 224236, 'reportfraud org for': 712651, 'org for any': 619184, 'for any covid': 319399, 'any covid 19': 79081, 'related consumer issue': 708399, 'consumer issue from': 197949, 'issue from price': 455761, 'from price gouging': 336976, 'price gouging to': 674335, 'gouging to potential': 359481, 'to potential violation': 911933, 'potential violation of': 667174, 'of the health': 591097, 'the health officer': 857185, 'health officer order': 386695, 'permitted': 652166, 'police warning': 663259, 'warning the': 967209, 'uk police': 938632, 'have announced': 379279, 'will decide': 993107, 'decide which': 230856, 'which supermarket': 986352, 'are permitted': 89066, 'permitted to': 652183, 'purchase got': 689476, 'got that': 358891, 'police warning the': 663260, 'warning the uk': 967212, 'the uk police': 870267, 'uk police have': 938633, 'police have announced': 663039, 'have announced that': 379284, 'they will decide': 883837, 'will decide which': 993108, 'decide which supermarket': 230857, 'which supermarket grocery': 986354, 'supermarket grocery item': 820577, 'grocery item you': 364666, 'item you are': 463863, 'you are permitted': 1017196, 'are permitted to': 89067, 'permitted to purchase': 652186, 'to purchase got': 912533, 'purchase got that': 689477, 'venturing': 954697, 'socialquarantine': 781119, 'still venturing': 801370, 'venturing out': 954698, 'toiletry but': 923409, 'should you': 766669, 'do once': 249926, 'once you': 605817, 've brought': 952975, 'brought your': 141215, 'your haul': 1024257, 'haul home': 378994, 'home essential': 401160, 'essential stayhome': 281582, 'stayhome socialquarantine': 798122, 'socialquarantine food': 781120, 'of are still': 580355, 'are still venturing': 90498, 'still venturing out': 801371, 'venturing out to': 954702, 'out to stock': 627684, 'and toiletry but': 74250, 'toiletry but what': 923411, 'but what the': 147798, 'what the safest': 982362, 'pandemic and what': 634919, 'what should you': 982189, 'should you do': 766674, 'you do once': 1018264, 'do once you': 249929, 'once you ve': 605824, 'you ve brought': 1022030, 've brought your': 952977, 'brought your haul': 141216, 'your haul home': 1024258, 'haul home essential': 378995, 'home essential stayhome': 401163, 'essential stayhome socialquarantine': 281583, 'stayhome socialquarantine food': 798123, 'shaking': 754464, 'stretching': 813580, 'and russian': 70685, 'russian saudi': 728670, 'war have': 966453, 'triggered historic': 931916, 'historic drop': 397950, 'price shaking': 676354, 'shaking the': 754469, 'economic foundation': 267104, 'foundation of': 330496, 'oil dependent': 596748, 'dependent arab': 237358, 'arab gulf': 83830, 'gulf state': 368646, 'state and': 795353, 'and stretching': 72569, 'stretching their': 813589, 'their capacity': 872716, 'ongoing economic': 607629, 'economic and': 266975, 'the and russian': 848719, 'and russian saudi': 70689, 'russian saudi oil': 728672, 'saudi oil price': 737282, 'price war have': 677360, 'war have triggered': 966455, 'have triggered historic': 383407, 'triggered historic drop': 931917, 'historic drop in': 397951, 'oil price shaking': 597250, 'price shaking the': 676355, 'shaking the economic': 754470, 'the economic foundation': 853904, 'economic foundation of': 267105, 'foundation of the': 330498, 'of the oil': 591288, 'the oil dependent': 862107, 'oil dependent arab': 596749, 'dependent arab gulf': 237359, 'arab gulf state': 83831, 'gulf state and': 368647, 'state and stretching': 795372, 'and stretching their': 72570, 'stretching their capacity': 813590, 'their capacity to': 872717, 'capacity to respond': 162593, 'the ongoing economic': 862243, 'ongoing economic and': 607630, 'economic and public': 266986, 'chem': 175318, 'you confirm': 1018006, 'confirm whether': 194114, 'whether dis': 985503, 'dis chem': 243786, 'chem claim': 175319, 'claim based': 179702, 'the attached': 849019, 'attached image': 102039, 'image is': 416638, 'true or': 933147, 'not their': 572050, 'than doubled': 840520, 'this corona': 886862, 'virus period': 958627, 'period are': 651718, 'really trying': 702677, 'can you confirm': 160289, 'you confirm whether': 1018007, 'confirm whether dis': 194115, 'whether dis chem': 985504, 'dis chem claim': 243787, 'chem claim based': 175320, 'claim based on': 179703, 'based on the': 111697, 'on the attached': 603974, 'the attached image': 849020, 'attached image is': 102040, 'image is true': 416640, 'is true or': 453369, 'true or not': 933148, 'or not their': 616315, 'not their price': 572054, 'their price have': 874400, 'price have more': 674438, 'have more than': 381506, 'more than doubled': 540609, 'than doubled during': 840521, 'doubled during this': 256109, 'during this corona': 263269, 'this corona virus': 886870, 'corona virus period': 204341, 'virus period are': 958628, 'period are you': 651719, 'you really trying': 1020846, 'really trying to': 702678, 'profit from this': 682741, 'from this pandemic': 338003, 'fortunately able': 329909, 'home appreciation': 400721, 'staff government': 792496, 'government employee': 360056, 'employee supermarket': 274256, 'staff delivery': 792357, 'delivery personnel': 234336, 'who provide': 989465, 'provide essential': 686275, 'service staysafe': 752867, 'fortunately able to': 329910, 'from home appreciation': 335841, 'home appreciation to': 400722, 'appreciation to all': 82898, 'to all medical': 900262, 'all medical staff': 43494, 'medical staff government': 526395, 'staff government employee': 792497, 'government employee supermarket': 360060, 'employee supermarket staff': 274257, 'supermarket staff delivery': 822830, 'staff delivery personnel': 792359, 'delivery personnel and': 234337, 'personnel and anyone': 653077, 'anyone else who': 80301, 'else who can': 271982, 'who can and': 988371, 'can and who': 157500, 'and who provide': 75596, 'who provide essential': 989466, 'provide essential service': 686276, 'essential service staysafe': 281528, 'are hand': 86989, 'sanitizers so': 736399, 'important at': 418746, 'the quick': 865061, 'quick spread': 694384, 'skyrocketed the': 773384, 'sanitizers healthy': 736304, 'healthy read': 387743, 'why are hand': 990775, 'are hand sanitizers': 86990, 'hand sanitizers so': 375720, 'sanitizers so important': 736400, 'so important at': 777372, 'important at the': 418747, 'at the time': 101127, 'time of coronavirus': 897321, 'of coronavirus covid': 581928, '19 the quick': 11238, 'the quick spread': 865062, 'quick spread of': 694385, 'the coronavirus ha': 851862, 'coronavirus ha skyrocketed': 206036, 'ha skyrocketed the': 371962, 'skyrocketed the price': 773385, 'hand sanitizers healthy': 375699, 'sanitizers healthy read': 736305, 'healthy read more': 387744, 'happen time': 377174, 'time yesterday': 898394, 'yesterday by': 1015700, 'this dude': 887308, 'dude while': 261622, 'while getting': 986870, 'getting gas': 349002, 'gas damn': 343808, 'damn the': 225437, 'the struggle': 868302, 'struggle is': 814353, 'real but': 701053, 'dude 19': 261575, '19 toiletpaperpanic': 11500, 'toiletpaper toiletpaperemergency': 922675, 'toiletpaperemergency toiletpaperapocalypse': 923140, 'saw this happen': 738292, 'this happen time': 887839, 'happen time yesterday': 377175, 'time yesterday by': 898395, 'yesterday by this': 1015702, 'by this dude': 154526, 'this dude while': 887314, 'dude while getting': 261623, 'while getting gas': 986872, 'getting gas damn': 349003, 'gas damn the': 343809, 'damn the struggle': 225438, 'the struggle is': 868304, 'struggle is real': 814355, 'is real but': 451262, 'real but don': 701055, 'but don be': 145587, 'don be this': 253373, 'be this dude': 117702, 'this dude 19': 887309, 'dude 19 toiletpaperpanic': 261576, '19 toiletpaperpanic toiletpaper': 11501, 'toiletpaperpanic toiletpaper toiletpaperemergency': 923268, 'toiletpaper toiletpaperemergency toiletpaperapocalypse': 922676, 'affable': 33980, 'had supermarket': 373582, 'supermarket drop': 820032, 'off earlier': 593796, 'the affable': 848394, 'affable delivery': 33981, 'delivery guy': 234074, 'guy told': 369185, 'me many': 523138, 'his fellow': 397425, 'fellow driver': 303283, 'driver do': 259511, 'these strange': 880746, 'strange virus': 812437, 'virus filled': 958184, 'filled time': 305561, 'fulfill slot': 340419, 'slot he': 774205, 'on due': 600436, 'to faith': 905610, 'in god': 423352, 'had supermarket drop': 373583, 'supermarket drop off': 820033, 'drop off earlier': 260331, 'off earlier and': 593797, 'earlier and the': 264423, 'and the affable': 73237, 'the affable delivery': 848395, 'affable delivery guy': 33982, 'delivery guy told': 234078, 'guy told me': 369186, 'told me many': 923613, 'me many of': 523139, 'many of his': 514374, 'of his fellow': 584652, 'his fellow driver': 397426, 'fellow driver do': 303284, 'driver do not': 259512, 'want to work': 966155, 'to work in': 918738, 'work in these': 1005350, 'in these strange': 429859, 'these strange virus': 880749, 'strange virus filled': 812438, 'virus filled time': 958185, 'filled time so': 305562, 'time so it': 897693, 'so it hard': 777464, 'hard to fulfill': 378065, 'to fulfill slot': 906308, 'fulfill slot he': 340420, 'slot he carry': 774206, 'he carry on': 384827, 'carry on due': 165119, 'on due to': 600437, 'due to faith': 261782, 'to faith in': 905611, 'faith in god': 296515, 'on break': 599692, 'break because': 138681, 'of panicshopping': 587750, 'store worker on': 811550, 'worker on break': 1007486, 'on break because': 599696, 'break because of': 138683, 'because of panicshopping': 119389, '96': 23655, 'predisposed': 669699, '96 the': 23665, 'the may': 860311, 'more challenging': 538790, 'challenging when': 171656, 'when child': 983247, 'child teen': 176216, 'teen is': 836500, 'already suffering': 47700, 'an anxiety': 55340, 'anxiety disorder': 78684, 'disorder or': 246082, 'or predisposed': 616671, 'predisposed to': 669700, 'to feeling': 905759, 'feeling more': 303027, 'anxious awesome': 78842, 'awesome advice': 106149, '96 the may': 23666, 'the may be': 860313, 'may be more': 521009, 'be more challenging': 115967, 'more challenging when': 538792, 'challenging when child': 171657, 'when child teen': 983248, 'child teen is': 176217, 'teen is already': 836501, 'is already suffering': 445540, 'already suffering from': 47702, 'suffering from an': 817306, 'from an anxiety': 334479, 'an anxiety disorder': 55341, 'anxiety disorder or': 78685, 'disorder or predisposed': 246083, 'or predisposed to': 616672, 'predisposed to feeling': 669701, 'to feeling more': 905760, 'feeling more anxious': 303028, 'more anxious awesome': 538630, 'anxious awesome advice': 78843, 'gradschool': 361679, 'graduation': 361729, 'me stress': 523559, 'stress shopping': 813392, 'quarantine school': 692507, 'school gradschool': 741808, 'gradschool graduation': 361680, 'graduation being': 361730, 'footage of me': 318472, 'of me stress': 586344, 'me stress shopping': 523561, 'stress shopping online': 813394, 'online because of': 607919, 'because of quarantine': 119395, 'of quarantine school': 588665, 'quarantine school gradschool': 692508, 'school gradschool graduation': 741809, 'gradschool graduation being': 361681, 'graduation being cancelled': 361731, 'ravaged': 697915, 'news bad': 560261, 'bad news': 107948, 'consumer time': 199291, 'platform is': 658988, 'but ad': 145056, 'ad in': 31118, 'in ravaged': 427267, 'ravaged country': 697918, 'good news bad': 357440, 'news bad news': 560262, 'bad news for': 107953, 'news for consumer': 560429, 'for consumer time': 320296, 'consumer time on': 199292, 'on the platform': 604287, 'the platform is': 863823, 'platform is way': 658993, 'is way up': 453797, 'way up during': 970144, 'up during but': 944750, 'during but ad': 262481, 'but ad in': 145057, 'ad in ravaged': 31121, 'in ravaged country': 427268, 'ravaged country are': 697919, 'country are off': 210474, 'prospected': 684700, 'new time': 559756, 'time rwanda': 897599, 'rwanda more': 728743, 'rwandan opt': 728763, 'shopping amidst': 761945, 'pandemic rwandan': 636377, 'increasingly opting': 433793, 'shop owner': 760638, 'owner commit': 632428, 'to supplying': 915895, 'supplying for': 826289, 'the prospected': 864700, 'prospected high': 684701, 'new time rwanda': 559757, 'time rwanda more': 897600, 'rwanda more rwandan': 728744, 'more rwandan opt': 540290, 'rwandan opt for': 728764, 'opt for online': 613860, 'online shopping amidst': 609026, 'shopping amidst covid': 761947, '19 pandemic rwandan': 9452, 'pandemic rwandan are': 636378, 'rwandan are increasingly': 728759, 'are increasingly opting': 87504, 'increasingly opting for': 433794, '19 online shop': 8993, 'online shop owner': 608983, 'shop owner commit': 760644, 'owner commit to': 632429, 'commit to supplying': 188984, 'to supplying for': 915896, 'supplying for the': 826290, 'for the prospected': 326639, 'the prospected high': 864701, 'prospected high demand': 684702, 'high demand via': 395032, 'strictly': 813682, 'new supermarket': 559691, 'in rich': 427496, 'rich keep': 721231, 'distance you': 246904, 'you queue': 1020526, 'for entry': 321071, 'entry wait': 279038, 'disinfectant strictly': 245764, 'strictly behind': 813685, 'orange line': 617928, 'line take': 493439, 'take glove': 832149, 'two number': 937078, 'number and': 576816, 'go go': 353618, 'go flattenthecurve': 353543, 'the new supermarket': 861565, 'new supermarket experience': 559693, 'supermarket experience in': 820248, 'experience in rich': 291394, 'in rich keep': 427497, 'rich keep your': 721232, 'your distance you': 1023541, 'distance you queue': 246906, 'you queue for': 1020527, 'queue for entry': 693928, 'for entry wait': 321074, 'entry wait for': 279039, 'wait for disinfectant': 964113, 'for disinfectant strictly': 320754, 'disinfectant strictly behind': 245765, 'strictly behind the': 813686, 'behind the orange': 124722, 'the orange line': 862443, 'orange line take': 617929, 'line take glove': 493441, 'take glove or': 832150, 'glove or two': 352848, 'or two number': 617566, 'two number and': 937079, 'number and then': 576822, 'and then go': 73764, 'then go go': 877206, 'go go go': 353620, 'go go flattenthecurve': 353619, 'revolve': 720762, 'reason gas': 702915, 'dropped is': 260583, 'quarantine then': 692618, 'need rude': 555529, 'rude awakening': 727031, 'awakening because': 105567, 'not revolve': 571373, 'revolve around': 720763, 'more going': 539351, 'world than': 1010034, 'think the reason': 885650, 'the reason gas': 865271, 'reason gas price': 702916, 'gas price ha': 343975, 'price ha dropped': 674381, 'ha dropped is': 370462, 'dropped is because': 260584, 'of the quarantine': 591382, 'the quarantine then': 864979, 'quarantine then you': 692619, 'then you need': 877790, 'you need rude': 1020035, 'need rude awakening': 555530, 'rude awakening because': 727032, 'awakening because the': 105568, 'because the world': 119658, 'the world doe': 871858, 'world doe not': 1009494, 'doe not revolve': 251525, 'not revolve around': 571374, 'revolve around you': 720764, 'around you there': 93667, 'you there is': 1021631, 'is more going': 449709, 'more going on': 539352, 'the world than': 871981, 'world than covid': 1010035, 'oneocean': 607556, 'rts': 726868, 'of power': 588300, 'power cut': 667589, 'cut price': 223488, 'while donating': 986770, 'donating 10': 254410, '19 charity': 5777, 'charity relief': 173670, 'fund oneocean': 341472, 'oneocean ha': 607557, 'are cutting': 85690, 'cutting the': 223776, '50 for': 19688, 'their rts': 874604, 'rts game': 726871, 'game taste': 343259, 'power while': 667736, 'taste of power': 834789, 'of power cut': 588303, 'power cut price': 667590, 'cut price with': 223497, 'price with 50': 677604, 'with 50 while': 997036, '50 while donating': 19908, 'while donating 10': 986771, 'donating 10 to': 254412, '10 to covid': 1731, 'covid 19 charity': 212789, '19 charity relief': 5778, 'charity relief fund': 173671, 'relief fund oneocean': 709356, 'fund oneocean ha': 341473, 'oneocean ha just': 607558, 'just announced that': 468196, 'they are cutting': 881243, 'are cutting the': 85694, 'cutting the price': 223777, 'the price with': 864440, 'with 50 for': 997030, '50 for their': 19694, 'for their rts': 326866, 'their rts game': 874605, 'rts game taste': 726872, 'game taste of': 343260, 'of power while': 588306, 'power while donating': 667737, 'mickey': 530410, 'mouse': 543469, 'outta': 629706, 'dude at': 261577, 'store said': 809958, 'said looked': 731203, 'like clown': 490023, 'clown for': 184364, 'glove said': 352895, 'he looked': 385203, 'being grown': 125207, 'grown man': 367285, 'man with': 512353, 'with mickey': 999492, 'mickey mouse': 530411, 'mouse shirt': 543472, 'shirt on': 758999, 'on fuck': 601041, 'fuck outta': 339624, 'outta here': 629709, 'dude at the': 261578, 'grocery store said': 365740, 'store said looked': 809959, 'said looked like': 731204, 'looked like clown': 502731, 'like clown for': 490024, 'clown for wearing': 184366, 'for wearing mask': 327670, 'and glove said': 63735, 'glove said he': 352896, 'said he looked': 731111, 'he looked like': 385205, 'clown for being': 184365, 'for being grown': 319628, 'being grown man': 125208, 'grown man with': 367287, 'man with mickey': 512354, 'with mickey mouse': 999493, 'mickey mouse shirt': 530412, 'mouse shirt on': 543473, 'shirt on fuck': 759000, 'on fuck outta': 601042, 'fuck outta here': 339625, 'titled': 899302, 'today artwork': 919256, 'artwork is': 94665, 'is titled': 453172, 'titled consider': 899303, 'consider others': 195059, 'won hope': 1003843, 'rt 19': 726731, 'today artwork is': 919257, 'artwork is titled': 94666, 'is titled consider': 453173, 'titled consider others': 899304, 'consider others covid': 195060, '19 won hope': 12163, 'won hope you': 1003844, 'hope you like': 403800, 'you like it': 1019609, 'like it please': 490549, 'it please rt': 460362, 'please rt 19': 660426, 'workfromhomelife': 1008447, 'sanity': 736539, 'to youtube': 919046, 'youtube to': 1026919, 'cope while': 203337, 'distancing people': 247394, 'online video': 609677, 'video to': 956930, 'to adapt': 900037, 'adapt cope': 31253, 'cope and': 203303, 'and find': 62883, 'find community': 306851, 'community work': 190240, 'work workfromhomelife': 1006060, 'workfromhomelife sanity': 1008450, 'turning to youtube': 935982, 'to youtube to': 919048, 'youtube to cope': 1026920, 'to cope while': 903513, 'cope while social': 203338, 'social distancing people': 779685, 'distancing people are': 247395, 'turning to online': 935968, 'to online video': 910956, 'online video to': 609678, 'video to adapt': 956932, 'to adapt cope': 900039, 'adapt cope and': 31254, 'cope and find': 203304, 'and find community': 62885, 'find community work': 306852, 'community work workfromhomelife': 190243, 'work workfromhomelife sanity': 1006061, 'pemex': 646396, 'highway': 396142, 'bissonet': 131521, 'unleaded': 942567, 'remain in': 709765, 'the pemex': 863435, 'pemex gas': 646401, 'station off': 796470, 'off state': 594186, 'state highway': 795669, 'highway and': 396145, 'and bissonet': 58983, 'bissonet street': 131522, 'houston is': 407205, 'selling regular': 749423, 'regular unleaded': 707888, 'unleaded for': 942571, 'for 18': 318689, '18 per': 4574, 'gallon via': 343069, 'gasoline price remain': 344268, 'price remain in': 676165, 'remain in free': 709768, 'free fall the': 331812, 'fall the pemex': 297074, 'the pemex gas': 863436, 'pemex gas station': 646402, 'gas station off': 344122, 'station off state': 796471, 'off state highway': 594187, 'state highway and': 795670, 'highway and bissonet': 396147, 'and bissonet street': 58984, 'bissonet street in': 131523, 'street in houston': 812996, 'in houston is': 423870, 'houston is selling': 407206, 'is selling regular': 451763, 'selling regular unleaded': 749424, 'regular unleaded for': 707889, 'unleaded for 18': 942572, 'for 18 per': 318691, '18 per gallon': 4575, 'per gallon via': 650860, 'apologise': 81621, 'relieving': 709551, 'pda': 645935, 'to apologise': 900638, 'apologise after': 81622, 'after significantly': 36212, 'significantly increasing': 769589, 'such paracetamol': 816668, 'paracetamol and': 641218, 'and pain': 68632, 'pain relieving': 634249, 'relieving medication': 709552, 'medication for': 526647, 'child pda': 176173, 'forced to apologise': 328617, 'to apologise after': 900639, 'apologise after significantly': 81624, 'after significantly increasing': 36213, 'significantly increasing the': 769590, 'price of product': 675545, 'of product such': 588495, 'product such paracetamol': 681659, 'such paracetamol and': 816669, 'paracetamol and pain': 641219, 'and pain relieving': 68633, 'pain relieving medication': 634250, 'relieving medication for': 709553, 'medication for child': 526648, 'for child pda': 320057, 'washington post': 967786, 'post owned': 666272, 'owned by': 632329, 'by bezos': 151953, 'bezos amazon': 129271, 'amazon say': 51104, 'safe buying': 729531, '19 alert': 4886, 'alert no': 41469, 'surprise here': 828527, 'totally true': 926398, 'true what': 933220, 'do think': 250333, 'washington post owned': 967791, 'post owned by': 666273, 'owned by bezos': 632331, 'by bezos amazon': 151954, 'bezos amazon say': 129272, 'amazon say that': 51105, 'say that is': 739240, 'that is safe': 844648, 'is safe buying': 451616, 'safe buying online': 729532, 'covid 19 alert': 212607, '19 alert no': 4889, 'alert no surprise': 41470, 'no surprise here': 565643, 'surprise here is': 828528, 'here is it': 393232, 'is it totally': 449070, 'it totally true': 461820, 'totally true what': 926399, 'true what do': 933221, 'what do think': 981353, 'are locally': 87860, 'locally owned': 498771, 'owned and': 632323, 'and operated': 68177, 'public is': 688119, 'priority such': 678662, 'such we': 816865, 'closed our': 183274, 'being our': 125507, 'open click': 612149, 'click for': 181906, 'more vancouver': 540890, 'vancouver yvr': 952358, 'we are locally': 970615, 'are locally owned': 87861, 'locally owned and': 498772, 'owned and operated': 632324, 'and operated and': 68178, 'operated and the': 613039, 'and the health': 73407, 'customer and the': 222102, 'and the public': 73534, 'the public is': 864823, 'public is our': 688124, 'is our priority': 450636, 'our priority such': 624467, 'priority such we': 678663, 'such we have': 816866, 'we have closed': 971773, 'have closed our': 380000, 'closed our retail': 183276, 'retail store for': 718638, 'time being our': 896391, 'being our online': 125508, 'our online store': 624155, 'online store will': 609483, 'store will remain': 811341, 'remain open click': 709803, 'open click for': 612150, 'click for more': 181908, 'for more vancouver': 323606, 'more vancouver yvr': 540891, 'enters': 278476, 'here my': 393359, 'recent for': 703902, 'for britain': 319799, 'britain enters': 140396, 'enters the': 278495, 'most serious': 542732, 'serious phase': 751444, 'phase yet': 654648, 'fight to': 304923, 'the traditional': 869874, 'traditional selling': 929018, 'selling season': 749435, 'season in': 743402, 'but forgotten': 145763, 'forgotten what': 329466, 'will market': 994102, 'freeze mean': 332535, 'here my recent': 393368, 'my recent for': 549896, 'recent for britain': 703903, 'for britain enters': 319800, 'britain enters the': 140397, 'enters the most': 278496, 'the most serious': 861033, 'most serious phase': 542733, 'serious phase yet': 751445, 'phase yet in': 654649, 'yet in it': 1016104, 'in it fight': 424244, 'it fight to': 457994, 'fight to tackle': 304928, 'tackle the the': 831613, 'the the traditional': 869406, 'the traditional selling': 869877, 'traditional selling season': 929019, 'selling season in': 749436, 'season in the': 743405, 'in the housing': 429276, 'housing market ha': 407104, 'market ha been': 516481, 'ha been all': 369714, 'been all but': 120639, 'all but forgotten': 42248, 'but forgotten what': 145764, 'forgotten what will': 329467, 'what will market': 982604, 'will market freeze': 994103, 'market freeze mean': 516429, 'freeze mean for': 332536, 'mean for house': 524441, 'cashing': 166674, 'know to': 476902, 'to whom': 918582, 'whom can': 990544, 'can address': 157374, 'of registered': 588886, 'registered multi': 707649, 'multi specialty': 545670, 'specialty clinic': 788164, 'clinic mi': 182307, 'mi selling': 530137, 'mask with': 519576, 'with inflated': 998998, 'is cashing': 446404, 'cashing on': 166678, 'crisis bengaluru': 217128, 'could you let': 209849, 'you let me': 1019593, 'me know to': 523046, 'know to whom': 476908, 'to whom can': 918583, 'whom can address': 990545, 'can address the': 157378, 'address the issue': 32039, 'issue of registered': 455867, 'of registered multi': 588887, 'registered multi specialty': 707650, 'multi specialty clinic': 545671, 'specialty clinic mi': 788165, 'clinic mi selling': 182308, 'mi selling mask': 530138, 'selling mask with': 749343, 'mask with inflated': 519584, 'with inflated price': 998999, 'inflated price which': 437083, 'which is cashing': 985993, 'is cashing on': 446405, 'cashing on the': 166679, 'on the current': 604051, 'current crisis bengaluru': 221153, 'so some': 778242, 'some american': 782285, 'gun in': 368698, 'case there': 166062, 'family meanwhile': 298013, 'just throw': 470074, 'throw bog': 895018, 'at em': 98532, 'so some american': 778243, 'some american are': 782286, 'buying gun in': 150426, 'gun in case': 368699, 'in case there': 421279, 'case there is': 166063, 'food to protect': 317284, 'protect their family': 684994, 'their family meanwhile': 873260, 'family meanwhile in': 298014, 'meanwhile in the': 524993, 'the uk we': 870298, 'uk we just': 938870, 'we just throw': 972124, 'just throw bog': 470075, 'throw bog roll': 895019, 'bog roll at': 133947, 'roll at em': 725196, 'missile': 534270, 'waning': 965587, 'saavy': 728987, 'foreignpolicy': 329034, 'fpyc': 330834, 'only ongoing': 610894, 'ongoing global': 607635, 'with north': 999812, 'north korean': 567661, 'korean missile': 477526, 'missile flying': 534273, 'flying oil': 311682, 'dropping and': 260667, 'american leadership': 52069, 'leadership waning': 483668, 'waning how': 965588, 'we tackle': 973473, 'tackle foreign': 831573, 'foreign policy': 329000, 'policy with': 663544, 'every ounce': 286076, 'american saavy': 52171, 'saavy foreignpolicy': 728988, 'foreignpolicy fpyc': 329035, 'remember that covid': 710276, '19 isn the': 8096, 'the only ongoing': 862324, 'only ongoing global': 610895, 'ongoing global situation': 607637, 'situation with north': 772600, 'with north korean': 999813, 'north korean missile': 567662, 'korean missile flying': 477527, 'missile flying oil': 534274, 'flying oil price': 311683, 'oil price dropping': 597112, 'price dropping and': 673601, 'dropping and american': 260668, 'and american leadership': 58066, 'american leadership waning': 52070, 'leadership waning how': 483669, 'waning how can': 965589, 'can we tackle': 160205, 'we tackle foreign': 973474, 'tackle foreign policy': 831574, 'foreign policy with': 329002, 'policy with every': 663545, 'with every ounce': 998276, 'every ounce of': 286077, 'ounce of american': 621965, 'of american saavy': 580073, 'american saavy foreignpolicy': 52172, 'saavy foreignpolicy fpyc': 728989, 'decimate': 230970, 'caramilk': 163371, 'seen hysterical': 747061, 'hysterical people': 412503, 'people decimate': 647613, 'decimate supermarket': 230973, 'supermarket stock': 822963, 'stock like': 802354, 'this since': 890157, 'the caramilk': 850395, 'caramilk epidemic': 163372, 'epidemic of': 279420, 'of 2019': 579477, 'haven seen hysterical': 383884, 'seen hysterical people': 747062, 'hysterical people decimate': 412504, 'people decimate supermarket': 647614, 'decimate supermarket stock': 230974, 'supermarket stock like': 822966, 'stock like this': 802357, 'like this since': 491527, 'this since the': 890160, 'since the caramilk': 770868, 'the caramilk epidemic': 850396, 'caramilk epidemic of': 163373, 'epidemic of 2019': 279421, 'separating': 751106, '4am': 19430, 'good on': 357496, 'friday the': 333292, 'guard is': 367810, 'here separating': 393546, 'separating and': 751107, 'and weighing': 75384, 'weighing food': 977675, 'for hoosier': 322358, 'hoosier in': 403376, 'need thousand': 555836, 'thousand are': 893378, 'put food': 690579, 'table you': 831511, 'all donated': 42619, 'donated over': 254351, '00 since': 489, 'since 4am': 770486, '4am let': 19431, 'let continue': 486655, 'continue donate': 201024, 'doing good on': 252426, 'good on good': 357499, 'on good friday': 601145, 'good friday the': 357105, 'friday the national': 333294, 'the national guard': 861295, 'national guard is': 552526, 'guard is here': 367812, 'is here separating': 448429, 'here separating and': 393547, 'separating and weighing': 751108, 'and weighing food': 75385, 'weighing food for': 977676, 'food for hoosier': 314541, 'for hoosier in': 322359, 'hoosier in need': 403377, 'in need thousand': 425774, 'need thousand are': 555837, 'thousand are struggling': 893381, 'struggling to put': 814514, 'to put food': 912588, 'put food on': 690580, 'the table you': 869114, 'table you have': 831512, 'you have all': 1019011, 'have all donated': 379154, 'all donated over': 42620, 'donated over 100': 254352, '100 00 since': 1796, '00 since 4am': 490, 'since 4am let': 770487, '4am let continue': 19432, 'let continue donate': 486656, 'parson signed': 642218, 'signed an': 769353, 'an executive': 55938, 'executive order': 289919, 'order that': 618620, 'allows restaurant': 46391, 'sell unprepared': 748929, 'unprepared food': 943234, 'public parson': 688217, 'parson hope': 642216, 'help restaurant': 390446, 'restaurant financially': 716466, 'financially avoid': 306661, 'avoid waste': 105385, 'and meet': 66928, 'governor parson signed': 360964, 'parson signed an': 642219, 'signed an executive': 769354, 'an executive order': 55940, 'executive order that': 289926, 'order that allows': 618621, 'that allows restaurant': 842593, 'allows restaurant to': 46392, 'restaurant to sell': 716764, 'to sell unprepared': 914186, 'sell unprepared food': 748930, 'unprepared food to': 943235, 'food to the': 317298, 'the public parson': 864844, 'public parson hope': 688218, 'parson hope this': 642217, 'hope this will': 403731, 'this will help': 891418, 'will help restaurant': 993726, 'help restaurant financially': 390447, 'restaurant financially avoid': 716467, 'financially avoid waste': 306662, 'avoid waste and': 105386, 'waste and meet': 968076, 'and meet the': 66932, 'meet the increased': 527603, 'the negativity': 861422, 'negativity out': 556871, 'there the': 879144, 'job being': 465695, 'this people': 889501, 'people say': 649350, 'in feb': 422821, 'feb we': 301662, 'seen anything': 746949, 'seen what': 747352, 'panic just': 638244, 'store unitedstates': 811000, 'through all the': 894308, 'all the negativity': 44839, 'the negativity out': 861424, 'negativity out there': 556872, 'out there the': 627516, 'there the government': 879147, 'is doing great': 447276, 'great job being': 362782, 'job being on': 465696, 'on this people': 604627, 'this people say': 889506, 'people say we': 649354, 'say we should': 739458, 'we should have': 973275, 'should have done': 766073, 'done this in': 255055, 'this in feb': 888044, 'in feb we': 422832, 'feb we ve': 301663, 'we ve never': 973688, 'never seen anything': 558172, 'seen anything like': 746950, 'anything like this': 80823, 'like this we': 491546, 'this we ve': 891156, 've seen what': 953554, 'seen what happens': 747353, 'happens when people': 377523, 'when people panic': 983865, 'people panic just': 649059, 'panic just go': 638249, 'grocery store unitedstates': 365899, 'local friendly': 498000, 'friendly corner': 333951, 'bleach etc': 132496, 'for ridiculous': 325235, 'go take': 354189, 'take picture': 832494, 'picture post': 656187, 'tag your': 831776, 'local police': 498282, 'police department': 662967, 'department it': 237219, 'it completely': 457245, 'completely illegal': 192304, 'profit like': 682797, 'that in': 844444, 'your local friendly': 1024697, 'local friendly corner': 498001, 'friendly corner shop': 333952, 'corner shop is': 203670, 'shop is selling': 760366, 'is selling toilet': 451767, 'selling toilet roll': 749510, 'toilet roll or': 921592, 'roll or bleach': 725439, 'or bleach etc': 614562, 'bleach etc for': 132497, 'etc for ridiculous': 282548, 'for ridiculous price': 325236, 'ridiculous price please': 721596, 'price please go': 675884, 'please go take': 660039, 'go take picture': 354191, 'take picture post': 832496, 'picture post on': 656188, 'post on here': 666253, 'on here and': 601286, 'here and tag': 392709, 'and tag your': 72954, 'tag your local': 831778, 'your local police': 1024712, 'local police department': 498284, 'police department it': 662971, 'department it completely': 237220, 'it completely illegal': 457247, 'completely illegal to': 192305, 'illegal to make': 416253, 'to make profit': 909723, 'make profit like': 510364, 'profit like that': 682798, 'like that in': 491324, 'that in that': 844460, 'in that uk': 428936, 'freek': 332426, 'thezi': 883974, 'mabuza': 507306, 'halo': 374413, 'aviation': 104950, '19 chronicle': 5813, 'chronicle freek': 178257, 'freek robinson': 332427, 'robinson discus': 724742, 'discus panic': 244888, 'the acting': 848302, 'acting commissioner': 29863, 'commissioner of': 188955, 'national consumer': 552453, 'consumer commission': 196816, 'commission thezi': 188903, 'thezi mabuza': 883975, 'mabuza we': 507307, 'also take': 48944, 'at halo': 98839, 'halo aviation': 374414, 'aviation air': 104951, 'air ambulance': 39680, 'covid 19 chronicle': 212800, '19 chronicle freek': 5814, 'chronicle freek robinson': 178258, 'freek robinson discus': 332428, 'robinson discus panic': 724743, 'discus panic buying': 244889, 'panic buying with': 637968, 'buying with the': 151379, 'with the acting': 1001194, 'the acting commissioner': 848303, 'acting commissioner of': 29864, 'commissioner of the': 188956, 'of the national': 591263, 'the national consumer': 861287, 'national consumer commission': 552454, 'consumer commission thezi': 196822, 'commission thezi mabuza': 188904, 'thezi mabuza we': 883976, 'mabuza we also': 507308, 'we also take': 970412, 'also take look': 48946, 'look at halo': 502266, 'at halo aviation': 98840, 'halo aviation air': 374415, 'aviation air ambulance': 104952, '4x': 19558, 'medicalcannabis': 526517, 'survey give': 828873, 'give insight': 350538, 'into how': 442649, 'impacting cannabis': 418183, 'behaviour suggesting': 124526, 'suggesting medical': 817606, 'medical cannabis': 526072, 'cannabis patient': 161429, 'patient 4x': 644119, '4x more': 19561, 'increase their': 433118, 'their usage': 875090, 'usage in': 948831, 'month medicalcannabis': 537855, 'medicalcannabis coronacrisis': 526518, 'survey give insight': 828874, 'give insight into': 350539, 'insight into how': 439582, 'into how is': 442654, 'how is impacting': 408099, 'is impacting cannabis': 448694, 'impacting cannabis consumer': 418184, 'cannabis consumer behaviour': 161397, 'consumer behaviour suggesting': 196600, 'behaviour suggesting medical': 124527, 'suggesting medical cannabis': 817607, 'medical cannabis patient': 526074, 'cannabis patient 4x': 161430, 'patient 4x more': 644120, '4x more likely': 19562, 'likely to increase': 492161, 'to increase their': 908306, 'increase their usage': 433124, 'their usage in': 875092, 'usage in the': 948833, 'coming month medicalcannabis': 188139, 'month medicalcannabis coronacrisis': 537856, 'feast': 301520, 'make big': 509734, 'big feast': 129780, 'feast for': 301521, 'you after': 1016841, 'the zombie': 872226, 'zombie virus': 1027733, 'virus but': 958012, 'but please': 146790, 'that suppress': 846593, 'suppress your': 827402, 'system know': 831237, 'that love': 844957, 'will make big': 994074, 'make big feast': 509736, 'big feast for': 129781, 'feast for you': 301522, 'for you after': 328032, 'you after we': 1016844, 'after we get': 36516, 'we get rid': 971624, 'rid of the': 721396, 'of the zombie': 591634, 'the zombie virus': 872229, 'zombie virus but': 1027734, 'virus but please': 958016, 'but please do': 146796, 'not panic and': 570893, 'panic and stay': 637338, 'and stay away': 72288, 'drink that suppress': 258884, 'that suppress your': 846594, 'suppress your immune': 827403, 'immune system know': 417344, 'system know that': 831238, 'know that love': 476772, 'that love you': 844958, 'restore': 717047, 'trump administration': 933376, 'administration doing': 32459, 'help restore': 390451, 'restore the': 717056, 'shelf restaurant': 757464, 'restaurant food': 716474, 'food isn': 315165, 'isn healthy': 454541, 'healthy for': 387638, 'is the trump': 452965, 'the trump administration': 870062, 'trump administration doing': 933378, 'administration doing to': 32460, 'to help restore': 907612, 'help restore the': 390452, 'restore the empty': 717057, 'the empty grocery': 854285, 'store shelf restaurant': 810094, 'shelf restaurant food': 757465, 'restaurant food isn': 716477, 'food isn healthy': 315167, 'isn healthy for': 454543, 'healthy for anyone': 387639, 'hydropower': 411979, 'help ontario': 390191, 'ontario family': 611591, 'family by': 297677, 'my petition': 549745, 'petition on': 653619, 'on hydropower': 601454, 'hydropower time': 411982, 'of use': 592699, 'use rate': 949510, 'rate we': 697404, 'need hydropower': 555030, 'hydropower price': 411980, 'price capped': 673074, 'capped at': 162867, 'peak rate': 646096, 'rate while': 697413, 'help ontario family': 390192, 'ontario family by': 611592, 'family by sharing': 297679, 'by sharing my': 153968, 'sharing my petition': 755556, 'my petition on': 549746, 'petition on hydropower': 653620, 'on hydropower time': 601455, 'hydropower time of': 411983, 'time of use': 897372, 'of use rate': 592702, 'use rate we': 949511, 'rate we need': 697407, 'we need hydropower': 972497, 'need hydropower price': 555031, 'hydropower price capped': 411981, 'price capped at': 673075, 'capped at off': 162869, 'off peak rate': 594058, 'peak rate while': 646099, 'rate while we': 697414, 'while we do': 987547, 'we do our': 971345, 'part to stop': 642472, 'select': 747456, 'unlock': 942815, 'from other': 336724, 'customer select': 222804, 'select item': 747471, 'item behind': 463154, 'behind others': 124678, 'keep distance': 471448, 'from checkout': 334833, 'checkout person': 174979, 'person pay': 652573, 'with card': 997542, 'card walk': 163694, 'walk trolley': 964907, 'to car': 902451, 'car hand': 163116, 'sanitizer car': 734638, 'car remote': 163263, 'remote unlock': 710732, 'unlock car': 942816, 'load good': 497251, 'good return': 357665, 'return trolley': 719938, 'trolley hand': 932421, 'sanitizer get': 734973, 'into car': 442447, 'start engine': 794289, 'engine hand': 276936, 'away from other': 105899, 'from other customer': 336726, 'other customer select': 620063, 'customer select item': 222805, 'select item behind': 747472, 'item behind others': 463155, 'behind others keep': 124679, 'others keep distance': 621505, 'keep distance from': 471451, 'distance from checkout': 246712, 'from checkout person': 334834, 'checkout person pay': 174981, 'person pay with': 652574, 'pay with card': 645230, 'with card walk': 997543, 'card walk trolley': 163695, 'walk trolley to': 964908, 'trolley to car': 932487, 'to car hand': 902453, 'car hand sanitizer': 163117, 'hand sanitizer car': 375336, 'sanitizer car remote': 734639, 'car remote unlock': 163264, 'remote unlock car': 710733, 'unlock car and': 942817, 'car and load': 162997, 'and load good': 66275, 'load good return': 497252, 'good return trolley': 357666, 'return trolley hand': 719939, 'trolley hand sanitizer': 932422, 'hand sanitizer get': 375417, 'sanitizer get into': 734974, 'get into car': 347362, 'into car and': 442448, 'car and start': 163003, 'and start engine': 72239, 'start engine hand': 794290, 'engine hand sanitizer': 276937, 'cooped': 203112, 'the deeper': 853020, 'deeper the': 231974, 'impact is': 417714, 'is and': 445699, 'longer everybody': 501971, 'is cooped': 446834, 'cooped up': 203113, 'of shock': 589611, 'shock there': 759524, 'longer for': 501975, 'back an': 106845, 'the deeper the': 853021, 'deeper the economic': 231975, 'economic impact is': 267136, 'impact is and': 417715, 'is and the': 445711, 'and the longer': 73460, 'the longer everybody': 859691, 'longer everybody is': 501972, 'everybody is cooped': 286447, 'is cooped up': 446835, 'cooped up the': 203116, 'up the more': 946195, 'the more of': 860889, 'more of shock': 539880, 'of shock there': 589613, 'shock there will': 759525, 'will be to': 992730, 'be to the': 117735, 'to the system': 917114, 'the system and': 869088, 'system and it': 831098, 'and it may': 65552, 'take longer for': 832287, 'longer for the': 501977, 'the consumer to': 851612, 'consumer to come': 199313, 'to come back': 903020, 'come back an': 187231, 'back an interesting': 106846, 'interesting read on': 441603, 'read on the': 700484, 'on the post': 604295, 'the post pandemic': 864095, 'post pandemic consumer': 666275, 'unbelievable': 939497, 'dismayed': 245996, 'unbelievable two': 939515, 'two vancouver': 937296, 'vancouver dentist': 952335, 'dentist say': 237104, 'were dismayed': 979525, 'dismayed to': 245999, 'see box': 744974, 'glove for': 352687, 'sale at': 732084, 'at canadian': 98189, 'canadian tire': 160759, 'tire store': 899021, 'in short': 427913, 'short supply': 764700, 'hospital because': 404320, 'unbelievable two vancouver': 939516, 'two vancouver dentist': 937297, 'vancouver dentist say': 952336, 'dentist say they': 237105, 'say they were': 739355, 'they were dismayed': 883764, 'were dismayed to': 979526, 'dismayed to see': 246000, 'to see box': 913990, 'see box of': 744975, 'box of mask': 137124, 'and glove for': 63719, 'glove for sale': 352691, 'for sale at': 325312, 'sale at high': 732088, 'high price at': 395234, 'price at canadian': 672795, 'at canadian tire': 98190, 'canadian tire store': 160762, 'tire store at': 899022, 'time when they': 898306, 'they re in': 883059, 're in short': 698885, 'in short supply': 427914, 'short supply at': 764702, 'supply at hospital': 824813, 'at hospital because': 99190, 'hospital because of': 404322, 'glance': 351565, 'fca reveals': 300736, 'reveals priority': 720339, 'priority in': 678585, 'it annual': 456530, 'annual business': 77390, 'business plan': 144224, 'plan with': 658353, 'strong focus': 814033, 'protection in': 685485, 'plan mean': 658169, 'for firm': 321498, 'firm in': 308372, 'uk latest': 938504, 'latest at': 481223, 'at glance': 98764, 'fca reveals priority': 300737, 'reveals priority in': 720340, 'priority in it': 678587, 'in it annual': 424227, 'it annual business': 456531, 'annual business plan': 77391, 'business plan with': 144228, 'plan with strong': 658356, 'with strong focus': 1001023, 'strong focus on': 814034, 'focus on consumer': 311868, 'consumer protection in': 198537, 'protection in light': 685486, '19 find out': 7012, 'out what the': 627813, 'what the business': 982298, 'the business plan': 850178, 'business plan mean': 144226, 'plan mean for': 658170, 'mean for firm': 524438, 'for firm in': 321499, 'firm in uk': 308374, 'in uk latest': 430391, 'uk latest at': 938505, 'latest at glance': 481224, 'lowrate': 506254, 'buyersmarket': 149820, 'intrestrate': 443369, 'realatate': 701469, 'cronavirous': 218855, 'firsttimehomebuyer': 309227, 'buying house': 150501, 'pandemic low': 635915, 'low interest': 505361, 'rate le': 697290, 'le competition': 482879, 'competition between': 191674, 'between buyer': 128743, 'buyer negotiable': 149689, 'negotiable price': 556905, 'make now': 510253, 'now good': 574806, 'house 19': 406154, 'staysafe mortgage': 798847, 'mortgage lowrate': 541922, 'lowrate buyersmarket': 506255, 'buyersmarket intrestrate': 149821, 'intrestrate realatate': 443370, 'realatate cronavirous': 701470, 'cronavirous firsttimehomebuyer': 218856, 'buying house in': 150503, 'house in pandemic': 406361, 'in pandemic low': 426459, 'pandemic low interest': 635916, 'low interest rate': 505362, 'interest rate le': 441397, 'rate le competition': 697291, 'le competition between': 482880, 'competition between buyer': 191675, 'between buyer negotiable': 128744, 'buyer negotiable price': 149690, 'negotiable price make': 556906, 'price make now': 675155, 'make now good': 510254, 'now good time': 574808, 'good time to': 357867, 'time to buy': 897958, 'to buy house': 902244, 'buy house 19': 148799, 'house 19 stayathome': 406155, '19 stayathome staysafe': 10814, 'stayathome staysafe mortgage': 797662, 'staysafe mortgage lowrate': 798848, 'mortgage lowrate buyersmarket': 541923, 'lowrate buyersmarket intrestrate': 506256, 'buyersmarket intrestrate realatate': 149822, 'intrestrate realatate cronavirous': 443371, 'realatate cronavirous firsttimehomebuyer': 701471, 'winz': 996155, 'liveable': 496134, 'keep hearing': 471573, 'hearing story': 388234, 'access assistance': 28104, 'assistance or': 96728, 'or benefit': 614540, 'from winz': 338382, 'winz sometimes': 996156, 'sometimes going': 785206, 'going without': 355816, 'to urgently': 917994, 'urgently lift': 948389, 'lift benefit': 489431, 'to liveable': 909354, 'liveable level': 496137, 'level to': 487735, 'massive demand': 520011, 'food grant': 314713, 'grant caused': 362016, 'by poverty': 153634, 'we keep hearing': 972129, 'keep hearing story': 471575, 'hearing story of': 388235, 'of people unable': 588011, 'unable to access': 939320, 'to access assistance': 899948, 'access assistance or': 28105, 'assistance or benefit': 96729, 'or benefit from': 614542, 'benefit from winz': 126995, 'from winz sometimes': 338383, 'winz sometimes going': 996157, 'sometimes going without': 785207, 'going without food': 355818, 'without food for': 1002657, 'food for day': 314527, 'for day the': 320587, 'day the govt': 228488, 'the govt need': 856665, 'need to urgently': 556109, 'to urgently lift': 917996, 'urgently lift benefit': 948390, 'lift benefit to': 489432, 'benefit to liveable': 127117, 'to liveable level': 909355, 'liveable level to': 496138, 'level to alleviate': 487736, 'alleviate the massive': 45826, 'the massive demand': 860265, 'massive demand for': 520012, 'for food grant': 321586, 'food grant caused': 314714, 'grant caused by': 362017, 'caused by poverty': 167859, 'eastermonday': 265565, 'radiodust': 695472, 'radio': 695426, 'ballad': 109080, 'written': 1012948, 'audition': 102946, 'stayathome song': 797623, 'song eastermonday': 785489, 'eastermonday radiodust': 265568, 'radiodust radio': 695473, 'radio toiletpaper': 695464, 'toiletpaper wonderful': 922860, 'wonderful corona': 1004068, 'virus ballad': 957986, 'ballad written': 109081, 'written on': 1012962, 'paper audition': 639912, 'stayathome song eastermonday': 797624, 'song eastermonday radiodust': 785490, 'eastermonday radiodust radio': 265569, 'radiodust radio toiletpaper': 695474, 'radio toiletpaper wonderful': 695465, 'toiletpaper wonderful corona': 922861, 'wonderful corona virus': 1004069, 'corona virus ballad': 204289, 'virus ballad written': 957987, 'ballad written on': 109082, 'written on toilet': 1012963, 'toilet paper audition': 921196, 'the prediction': 864223, 'prediction around': 669655, 'their behavior': 872575, 'behavior after': 123858, 'on the prediction': 604299, 'the prediction around': 864224, 'prediction around the': 669656, 'around the consumer': 93529, 'consumer and their': 196252, 'and their behavior': 73670, 'their behavior after': 872576, 'behavior after covid': 123859, 'parchment': 641543, 'houseplant': 407015, 'the toiletpaperpanic': 869742, 'toiletpaperpanic purchase': 923234, 'purchase wonder': 689731, 'get replacement': 347916, 'replacement in': 711617, 'purchase parchment': 689620, 'parchment paper': 641544, 'paper houseplant': 640293, 'all the toiletpaperpanic': 44947, 'the toiletpaperpanic purchase': 869745, 'toiletpaperpanic purchase wonder': 923235, 'purchase wonder what': 689732, 'wonder what people': 1004012, 'what people could': 982010, 'people could get': 647558, 'could get replacement': 209204, 'get replacement in': 347917, 'replacement in their': 711618, 'in their online': 429759, 'their online purchase': 874106, 'online purchase parchment': 608828, 'purchase parchment paper': 689621, 'parchment paper houseplant': 641545, 'panic govt': 638141, 'govt fix': 361118, 'sanitizers hope': 736308, 'available thinking': 104626, 'thinking face': 885901, 'at nearest': 99859, 'nearest pharmacy': 553721, 'pharmacy coronachainscare': 654281, 'coronachainscare corona': 204462, 'to panic govt': 911399, 'panic govt fix': 638142, 'govt fix price': 361119, 'fix price for': 309745, 'for mask and': 323267, 'and sanitizers hope': 70900, 'sanitizers hope they': 736309, 'hope they are': 403702, 'are available thinking': 84719, 'available thinking face': 104627, 'thinking face at': 885902, 'face at nearest': 294322, 'at nearest pharmacy': 99860, 'nearest pharmacy coronachainscare': 553722, 'pharmacy coronachainscare corona': 654282, 'coronachainscare corona coronapandemic': 204463, 'designate': 238276, 'sir you': 771685, 'should designate': 765917, 'designate grocery': 238281, 'get help': 347204, 'with thing': 1001670, 'thing like': 884536, 'like childcare': 489991, 'childcare if': 176295, 'if supermarket': 414893, 'supermarket close': 819718, 'close or': 182744, 'or lack': 615918, 'lack staff': 478670, 'sir you should': 771687, 'you should designate': 1021190, 'should designate grocery': 765918, 'designate grocery store': 238282, 'worker emergency worker': 1006844, 'emergency worker so': 273064, 'can get help': 158421, 'get help with': 347209, 'help with thing': 390934, 'with thing like': 1001671, 'thing like childcare': 884538, 'like childcare if': 489992, 'childcare if supermarket': 176296, 'if supermarket close': 414895, 'supermarket close or': 819720, 'close or lack': 182746, 'or lack staff': 615919, 'lack staff there': 478671, 'staff there will': 792960, 'eradicating': 280105, 'we welcome': 973770, 'welcome the': 977897, 'response of': 715762, 'of amazon': 580025, 'amazon facebook': 50939, 'facebook google': 294924, 'google and': 358138, 'our call': 622304, 'for eradicating': 321084, 'eradicating online': 280106, 'online scam': 608935, 'scam amp': 739986, 'amp exploitation': 53764, 'exploitation of': 292387, 'people fear': 647875, 'all platform': 43969, 'the strong': 868293, 'strong measure': 814068, 'place until': 657789, 'over more': 630412, 'we welcome the': 973771, 'welcome the response': 977898, 'the response of': 865623, 'response of amazon': 715763, 'of amazon facebook': 580028, 'amazon facebook google': 50941, 'facebook google and': 294925, 'google and many': 358140, 'and many others': 66679, 'many others to': 514459, 'others to our': 621733, 'to our call': 911158, 'our call for': 622305, 'call for eradicating': 155867, 'for eradicating online': 321085, 'eradicating online scam': 280107, 'online scam amp': 608936, 'scam amp exploitation': 739989, 'amp exploitation of': 53765, 'exploitation of people': 292390, 'of people fear': 587913, 'people fear of': 647881, 'fear of we': 301263, 'of we call': 592959, 'we call on': 970885, 'call on all': 156030, 'on all platform': 599242, 'all platform to': 43970, 'platform to keep': 659047, 'keep the strong': 472074, 'the strong measure': 868296, 'strong measure in': 814069, 'in place until': 426772, 'place until the': 657792, 'until the crisis': 943851, 'is over more': 450713, 'negative side': 556823, 'pandemic disappear': 635304, 'disappear because': 244031, 'no worker': 565932, 'no space': 565558, 'store meanwhile': 808931, 'meanwhile food': 524967, 'seeing increased': 746342, 'have empty': 380425, 'and the negative': 73491, 'the negative side': 861421, 'negative side effect': 556824, 'side effect of': 768809, 'the pandemic disappear': 862947, 'pandemic disappear because': 635305, 'disappear because there': 244032, 'because there are': 119666, 'are no worker': 88291, 'no worker to': 565933, 'worker to pick': 1008017, 'up and no': 944349, 'and no space': 67643, 'no space to': 565561, 'to store meanwhile': 915630, 'store meanwhile food': 808932, 'meanwhile food bank': 524968, 'are seeing increased': 89903, 'seeing increased demand': 746344, 'demand and many': 234983, 'and many store': 66683, 'many store have': 514738, 'store have empty': 808079, 'have empty shelf': 380426, 'applepay': 82392, 'googlepay': 358211, 'something from': 784913, 'store consider': 807144, 'consider setting': 195092, 'using applepay': 950393, 'applepay or': 82393, 'or googlepay': 615506, 'googlepay on': 358212, 'your phone': 1025286, 'phone using': 655053, 'using contactless': 950431, 'payment can': 645573, 'help reduce': 390422, 'of transmission': 592419, 'transmission for': 929742, 'who come': 988470, 'with retail': 1000500, 'retail payment': 718386, 'payment terminal': 645754, 'you buy something': 1017581, 'buy something from': 149221, 'something from store': 784915, 'from store consider': 337441, 'store consider setting': 807146, 'consider setting up': 195093, 'setting up and': 753654, 'up and using': 944386, 'and using applepay': 74798, 'using applepay or': 950394, 'applepay or googlepay': 82394, 'or googlepay on': 615507, 'googlepay on your': 358213, 'on your phone': 605489, 'your phone using': 1025295, 'phone using contactless': 655054, 'using contactless payment': 950432, 'contactless payment can': 200376, 'payment can help': 645575, 'can help reduce': 158650, 'help reduce the': 390425, 'reduce the risk': 705975, 'risk of transmission': 723787, 'of transmission for': 592421, 'transmission for you': 929743, 'you and anyone': 1016977, 'anyone who come': 80614, 'who come in': 988471, 'come in contact': 187361, 'in contact with': 421738, 'contact with retail': 200286, 'with retail payment': 1000502, 'retail payment terminal': 718387, 'already stocked': 47681, 'food ammo': 313123, 'ammo wa': 52925, 'step sorry': 799618, 'sorry america': 786007, 'america you': 51755, 'cannot shoot': 162089, 'shoot your': 759757, 'already stocked up': 47683, 'stocked up on': 803440, 'on food ammo': 600838, 'food ammo wa': 313124, 'ammo wa just': 52926, 'wa just the': 962471, 'just the next': 470006, 'the next step': 861699, 'next step sorry': 561570, 'step sorry america': 799619, 'sorry america you': 786008, 'america you cannot': 51756, 'you cannot shoot': 1017877, 'cannot shoot your': 162090, 'shoot your way': 759758, 'your way out': 1026317, 'learns': 484264, 'thing hope': 884418, 'public learns': 688139, 'learns from': 484265, 'survive we': 829285, 'need police': 555449, 'police em': 662984, 'em fire': 272063, 'fire doctor': 308072, 'nurse truck': 577526, 'driver farmer': 259549, 'worker fridaythoughts': 1006990, 'fridaythoughts police': 333359, 'one thing hope': 607221, 'thing hope the': 884419, 'hope the public': 403685, 'the public learns': 864826, 'public learns from': 688140, 'learns from this': 484266, 'pandemic is that': 635798, 'that we don': 847372, 'don need people': 253767, 'need people like': 555422, 'people like or': 648647, 'like or to': 490936, 'or to survive': 617480, 'to survive we': 916053, 'survive we need': 829286, 'we need police': 972527, 'need police em': 555450, 'police em fire': 662985, 'em fire doctor': 272064, 'fire doctor nurse': 308073, 'doctor nurse truck': 251036, 'nurse truck driver': 577527, 'truck driver farmer': 932775, 'driver farmer and': 259550, 'farmer and grocery': 299258, 'store worker fridaythoughts': 811511, 'worker fridaythoughts police': 1006991, 'fact check': 295690, 'check can': 174391, 'can hand': 158543, 'sanitizer catch': 734642, 'catch fire': 166997, 'fact check can': 295691, 'check can hand': 174392, 'can hand sanitizer': 158544, 'hand sanitizer catch': 375338, 'sanitizer catch fire': 734643, 'occupational': 579001, 'is nurse': 450367, 'nurse she': 577476, 'she cannot': 755929, 'home my': 401638, 'va his': 951541, 'wife in': 991932, 'in occupational': 426047, 'occupational therapy': 579002, 'therapy they': 877933, 'mind when': 532774, 'when complaining': 983268, 'about line': 25649, 'other inconvenience': 620416, 'inconvenience you': 432599, 'daughter is nurse': 226870, 'is nurse she': 450370, 'nurse she cannot': 577477, 'she cannot stay': 755932, 'stay home my': 796986, 'home my son': 401642, 'son work at': 785461, 'at the va': 101138, 'the va his': 870613, 'va his wife': 951542, 'his wife in': 397915, 'wife in occupational': 991934, 'in occupational therapy': 426048, 'occupational therapy they': 579003, 'therapy they cannot': 877934, 'they cannot stay': 881716, 'home keep them': 401492, 'in mind when': 425348, 'mind when complaining': 532775, 'when complaining about': 983269, 'complaining about line': 191887, 'about line at': 25650, 'store or any': 809312, 'any other inconvenience': 79594, 'other inconvenience you': 620417, 'inconvenience you may': 432600, 'origin': 619538, 'antonio': 78608, 'regardless of': 707316, 'the origin': 862478, 'origin no': 619539, 'no doubt': 564045, 'doubt how': 256200, 'it spread': 461198, 'spread once': 790729, 'got here': 358600, 'here san': 393535, 'san antonio': 733516, 'antonio food': 78611, 'bank get': 109863, '00 family': 198, 'family golf': 297854, 'golf kept': 356135, 'kept trump': 473090, 'trump from': 933570, 'from focusing': 335498, '19 simulation': 10553, 'simulation show': 770357, 'regardless of the': 707326, 'of the origin': 591303, 'the origin no': 862479, 'origin no doubt': 619540, 'no doubt how': 564050, 'doubt how it': 256201, 'how it spread': 408141, 'it spread once': 461204, 'spread once it': 790730, 'once it got': 605666, 'it got here': 458316, 'got here san': 358601, 'here san antonio': 393536, 'san antonio food': 733518, 'antonio food bank': 78612, 'food bank get': 313578, 'bank get 10': 109864, 'get 10 00': 346452, '10 00 family': 1198, '00 family golf': 200, 'family golf kept': 297855, 'golf kept trump': 356136, 'kept trump from': 473091, 'trump from focusing': 933571, 'from focusing on': 335499, 'covid 19 simulation': 213806, '19 simulation show': 10554, 'simulation show how': 770358, 'can spread coronavirus': 159703, 'somewhat': 785255, 'breathed': 139206, 'frontlineemployees': 338876, 'if were': 415340, 'were rich': 980068, 'rich or': 721241, 'even like': 284296, 'like somewhat': 491223, 'somewhat comfortably': 785258, 'comfortably surviving': 187886, 'surviving would': 829380, 'give 50': 350356, '50 hazard': 19714, 'every employee': 285887, 'employee when': 274408, 'restaurant tip': 716755, 'people getting': 648064, 'getting breathed': 348882, 'breathed on': 139209, 'all frontlineemployees': 42886, 'if were rich': 415345, 'were rich or': 980069, 'rich or even': 721242, 'or even like': 615205, 'even like somewhat': 284297, 'like somewhat comfortably': 491224, 'somewhat comfortably surviving': 785259, 'comfortably surviving would': 187887, 'surviving would give': 829381, 'would give 50': 1011837, 'give 50 hazard': 350357, '50 hazard pay': 19715, 'hazard pay to': 384574, 'pay to every': 645184, 'to every employee': 905303, 'every employee when': 285889, 'employee when go': 274412, 'when go grocery': 983474, 'grocery shopping or': 365062, 'shopping or pick': 763551, 'pick up food': 655723, 'up food from': 944887, 'food from restaurant': 314614, 'from restaurant tip': 337094, 'restaurant tip the': 716757, 'tip the people': 898919, 'the people getting': 863473, 'people getting breathed': 648065, 'getting breathed on': 348883, 'breathed on all': 139210, 'the time all': 869573, 'time all frontlineemployees': 896225, 'ug': 937951, 'entebbe': 278222, 'kampala': 470754, 'ug cant': 937952, 'cant guy': 162309, 'guy regulate': 369123, 'regulate taxi': 707989, 'taxi operator': 835166, 'operator who': 613415, 'in such': 428519, 'such time': 816825, 'time imagine': 896965, 'imagine from': 416721, 'from entebbe': 335288, 'entebbe to': 278223, 'to kampala': 908741, 'kampala is': 470757, 'now 5k': 573912, '5k am': 20709, 'am wondering': 50570, 'of avoiding': 580481, 'ug cant guy': 937953, 'cant guy regulate': 162310, 'guy regulate taxi': 369124, 'regulate taxi operator': 707990, 'taxi operator who': 835167, 'operator who are': 613416, 'who are hiking': 988154, 'are hiking price': 87171, 'hiking price in': 396398, 'price in such': 674738, 'in such time': 428531, 'such time imagine': 816826, 'time imagine from': 896966, 'imagine from entebbe': 416723, 'from entebbe to': 335289, 'entebbe to kampala': 278224, 'to kampala is': 908742, 'kampala is now': 470758, 'is now 5k': 450251, 'now 5k am': 573913, '5k am wondering': 20710, 'am wondering if': 50572, 'wondering if this': 1004180, 'this is way': 888459, 'is way of': 453793, 'way of avoiding': 969739, 'lyft': 507051, 'reimbursement': 708232, 'micro': 530413, 'because nyc': 119298, 'nyc required': 578038, 'required uber': 713413, 'uber and': 937800, 'and lyft': 66490, 'lyft driver': 507052, 'get licensed': 347478, 'licensed they': 488180, 'their contact': 872868, 'contact info': 200110, 'info demand': 437463, 'for ride': 325227, 'ride ha': 721439, 'dropped nyc': 260601, 'nyc offered': 578024, 'offered them': 594970, 'them 15': 875297, 'hour gas': 405639, 'gas toll': 344161, 'toll reimbursement': 923875, 'reimbursement to': 708237, 'start doing': 794280, 'doing delivery': 252349, 'senior it': 750339, 'like modern': 490788, 'modern micro': 535392, 'micro new': 530428, 'because nyc required': 119299, 'nyc required uber': 578039, 'required uber and': 713414, 'uber and lyft': 937801, 'and lyft driver': 66491, 'lyft driver to': 507054, 'driver to get': 259803, 'to get licensed': 906522, 'get licensed they': 347479, 'licensed they have': 488181, 'have their contact': 383047, 'their contact info': 872869, 'contact info demand': 200111, 'info demand for': 437464, 'demand for ride': 235489, 'for ride ha': 325228, 'ride ha dropped': 721440, 'ha dropped nyc': 370463, 'dropped nyc offered': 260602, 'nyc offered them': 578025, 'offered them 15': 594971, 'them 15 hour': 875298, '15 hour gas': 3726, 'hour gas toll': 405640, 'gas toll reimbursement': 344162, 'toll reimbursement to': 923876, 'reimbursement to start': 708238, 'to start doing': 915194, 'start doing delivery': 794281, 'doing delivery of': 252350, 'food to senior': 317287, 'to senior it': 914235, 'senior it like': 750340, 'it like modern': 459370, 'like modern micro': 490789, 'modern micro new': 535393, 'micro new deal': 530429, 'mdma': 522308, 'thought everyone': 893036, 'should try': 766603, 'try little': 934503, 'little mdma': 495449, 'mdma while': 522309, 'world go': 1009585, 'everyone would': 287640, 'more relaxed': 540214, 'just thought everyone': 470063, 'thought everyone should': 893037, 'everyone should try': 287382, 'should try little': 766606, 'try little mdma': 934504, 'little mdma while': 495450, 'mdma while the': 522310, 'the world go': 871878, 'world go through': 1009587, 'go through the': 354254, 'the crisis there': 852461, 'crisis there would': 218206, 'would be more': 1011620, 'be more food': 115976, 'more food on': 539248, 'shelf and everyone': 756731, 'and everyone would': 62415, 'everyone would be': 287641, 'be much more': 116024, 'much more relaxed': 545123, 'decried': 231675, 'posho': 665129, 'salt': 732798, 'enyangyi': 279231, 'lockdown ugandan': 500082, 'ugandan have': 938009, 'have decried': 380206, 'decried high': 231676, 'of various': 592745, 'various good': 952604, 'good commodity': 356898, 'commodity especially': 189171, 'especially posho': 280580, 'posho flour': 665130, 'flour salt': 311156, 'salt rice': 732821, 'different shop': 242055, 'shop enyangyi': 760141, 'enyangyi sun': 279233, 'sun 12': 818050, '12 00pm': 2764, '00pm croozefmnews': 689, 'following the lockdown': 312893, 'the lockdown ugandan': 859636, 'lockdown ugandan have': 500083, 'ugandan have decried': 938010, 'have decried high': 380207, 'decried high price': 231677, 'price of various': 675601, 'of various good': 592746, 'various good commodity': 952605, 'good commodity especially': 356899, 'commodity especially posho': 189172, 'especially posho flour': 280581, 'posho flour salt': 665131, 'flour salt rice': 311157, 'salt rice and': 732822, 'rice and others': 720996, 'and others in': 68449, 'others in different': 621473, 'in different shop': 422256, 'different shop enyangyi': 242056, 'shop enyangyi sun': 760143, 'enyangyi sun 12': 279234, 'sun 12 00pm': 818051, '12 00pm croozefmnews': 2765, 'conspicuously': 195562, 'triage': 931619, 'forum': 329945, 'plenary': 660883, 'wa concerned': 961850, 'consumer voice': 199451, 'voice have': 959983, 'been conspicuously': 120879, 'conspicuously missing': 195563, 'missing from': 534296, 'from ethical': 335307, 'ethical triage': 283094, 'triage discussion': 931620, 'discussion so': 245043, 'far it': 298822, 'held forum': 388899, 'forum to': 329960, 'view front': 957092, 'front and': 338514, 'and centre': 59676, 'centre reporting': 169531, 'reporting back': 712675, 'can watch': 160150, 'the plenary': 863845, 'wa concerned that': 961852, 'concerned that consumer': 193216, 'that consumer voice': 843303, 'consumer voice have': 199452, 'voice have been': 959984, 'have been conspicuously': 379496, 'been conspicuously missing': 120880, 'conspicuously missing from': 195564, 'missing from ethical': 534299, 'from ethical triage': 335308, 'ethical triage discussion': 283095, 'triage discussion so': 931621, 'discussion so far': 245044, 'so far it': 777040, 'far it held': 298823, 'it held forum': 458531, 'held forum to': 388900, 'forum to put': 329961, 'put their view': 690886, 'their view front': 875128, 'view front and': 957093, 'front and centre': 338515, 'and centre reporting': 59679, 'centre reporting back': 169532, 'reporting back here': 712676, 'back here you': 107051, 'here you can': 393855, 'you can watch': 1017829, 'can watch the': 160152, 'watch the plenary': 968550, 'alert via': 41534, 'scam alert via': 739982, 'diarrhea': 240376, 'disrupting': 246419, 'ton thought': 924297, 'thought people': 893175, 'people compare': 647504, 'flu leading': 311433, 'an association': 55455, 'association with': 96991, 'with diarrhea': 998025, 'diarrhea fear': 240383, 'being locked': 125395, 'locked out': 500499, 'out closing': 625857, 'or disrupting': 615001, 'disrupting the': 246428, 'no tp': 565785, 'tp substitute': 927958, 'ton thought people': 924298, 'thought people compare': 893176, 'people compare covid': 647505, 'to the flu': 916717, 'the flu leading': 855460, 'flu leading to': 311434, 'leading to an': 483753, 'to an association': 900442, 'an association with': 55456, 'association with diarrhea': 96993, 'with diarrhea fear': 998026, 'diarrhea fear of': 240384, 'fear of being': 301223, 'of being locked': 580650, 'being locked out': 125398, 'locked out closing': 500500, 'out closing the': 625858, 'closing the grocery': 183775, 'store or disrupting': 809325, 'or disrupting the': 615002, 'disrupting the supply': 246429, 'chain no tp': 170946, 'no tp substitute': 565792, 'accounted': 28815, 'medium sized': 527282, 'sized business': 772823, 'high proportion': 395305, 'sector that': 744346, 'losing business': 503541, 'business because': 143431, 'they employ': 882035, 'employ 47': 273432, '47 worker': 19271, 'but during': 145629, 'last recession': 480469, 'recession they': 704382, 'they accounted': 881089, 'accounted for': 28816, '60 of': 20963, 'total job': 926176, 'job lost': 465989, 'lost here': 503857, 'our analysis': 622073, 'and medium sized': 66925, 'medium sized business': 527283, 'sized business have': 772824, 'business have high': 143828, 'have high proportion': 380942, 'high proportion of': 395306, 'proportion of job': 684429, 'of job in': 585533, 'job in consumer': 465875, 'consumer service sector': 198949, 'service sector that': 752800, 'sector that are': 744347, 'that are losing': 842774, 'are losing business': 87895, 'losing business because': 503542, 'business because they': 143434, 'because they employ': 119700, 'they employ 47': 882036, 'employ 47 worker': 273434, '47 worker but': 19272, 'worker but during': 1006555, 'but during the': 145630, 'during the last': 263148, 'the last recession': 859036, 'last recession they': 480472, 'recession they accounted': 704383, 'they accounted for': 881090, 'accounted for 60': 28818, 'for 60 of': 318889, '60 of the': 20968, 'of the total': 591551, 'the total job': 869816, 'total job lost': 926177, 'job lost here': 465990, 'lost here is': 503858, 'here is our': 393243, 'is our analysis': 450612, 'policymakers': 663554, 'cynthia': 224133, 'fisher': 309357, 'pricetransparency': 677899, 'policymakers can': 663559, 'patient and': 644129, 'and payer': 68809, 'payer even': 645347, 'by extending': 152526, 'extending this': 293238, 'this price': 889704, 'price transparency': 677107, 'transparency provision': 929835, 'provision to': 687286, 'treatment in': 931090, 'next stimulus': 561571, 'package cynthia': 633241, 'cynthia fisher': 224134, 'fisher via': 309367, 'via pricetransparency': 956185, 'pricetransparency healthcare': 677900, 'policymakers can help': 663560, 'can help patient': 158645, 'help patient and': 390271, 'patient and payer': 644137, 'and payer even': 68810, 'payer even more': 645348, 'even more by': 284344, 'more by extending': 538750, 'by extending this': 152527, 'extending this price': 293239, 'this price transparency': 889711, 'price transparency provision': 677111, 'transparency provision to': 929836, 'provision to coronavirus': 687287, 'to coronavirus treatment': 903570, 'coronavirus treatment in': 206964, 'treatment in the': 931094, 'the next stimulus': 861700, 'next stimulus package': 561572, 'stimulus package cynthia': 801577, 'package cynthia fisher': 633242, 'cynthia fisher via': 224135, 'fisher via pricetransparency': 309368, 'via pricetransparency healthcare': 956186, 'leavin': 485067, 'whoever would': 990124, 'of thought': 592133, 'thought leavin': 893116, 'leavin my': 485068, 'whoever would of': 990125, 'would of thought': 1012089, 'of thought leavin': 592134, 'thought leavin my': 893117, 'leavin my house': 485069, 'surge past': 828241, 'past 500': 643503, '500 for': 19989, 'for fish': 321505, 'fish tank': 309339, 'tank cleaner': 834194, 'cleaner that': 180843, 'that us': 847208, 'us same': 948544, 'same ingredient': 733125, 'ingredient anti': 438347, 'anti malaria': 78313, 'malaria drug': 511556, 'drug fast': 260944, 'fast tracked': 300063, 'tracked to': 928255, 'treat coronavirus': 930813, 'coronavirus patient': 206538, 'patient but': 644147, 'price surge past': 676725, 'surge past 500': 828243, 'past 500 for': 643504, '500 for fish': 19990, 'for fish tank': 321508, 'fish tank cleaner': 309343, 'tank cleaner that': 834196, 'cleaner that us': 180845, 'that us same': 847211, 'us same ingredient': 948546, 'same ingredient anti': 733126, 'ingredient anti malaria': 438348, 'anti malaria drug': 78314, 'malaria drug fast': 511557, 'drug fast tracked': 260945, 'fast tracked to': 300068, 'tracked to treat': 928256, 'to treat coronavirus': 917743, 'treat coronavirus patient': 930814, 'coronavirus patient but': 206539, 'patient but it': 644148, 'faceshield': 295190, 'ziplock': 1027631, 'make my': 510218, 'first grocery': 308694, 'so made': 777622, 'own faceshield': 631983, 'faceshield out': 295196, 'of ziplock': 593564, 'ziplock bag': 1027632, 'bag ll': 108334, 'll also': 496546, 'be wearing': 118072, 'deal diy': 229383, 'diy coronapocolypse': 248728, 'about to make': 26730, 'to make my': 909700, 'make my first': 510220, 'my first grocery': 548340, 'first grocery store': 308695, 'store run in': 809925, 'run in week': 727677, 'in week so': 430767, 'week so made': 976890, 'so made my': 777624, 'made my own': 507864, 'my own faceshield': 549641, 'own faceshield out': 631984, 'faceshield out of': 295197, 'out of ziplock': 626883, 'of ziplock bag': 593565, 'ziplock bag ll': 1027633, 'bag ll also': 108335, 'll also be': 496547, 'also be wearing': 47931, 'be wearing face': 118075, 'face mask no': 294568, 'mask no big': 519006, 'big deal diy': 129737, 'deal diy coronapocolypse': 229384, 'tear over': 835960, 'over soaring': 630625, 'soaring paracetamol': 779338, 'paracetamol price': 641263, '20 calpol': 12987, 'customer in tear': 222509, 'in tear over': 428844, 'tear over soaring': 835962, 'over soaring paracetamol': 630626, 'soaring paracetamol price': 779339, 'paracetamol price and': 641264, 'price and 20': 672354, 'and 20 calpol': 57396, 'cheshire': 175550, '19 self': 10393, 'loss will': 503802, 'will force': 993470, 'force people': 328477, 'between paying': 128848, 'paying bill': 645393, 'and buying': 59363, 'food mid': 315455, 'mid cheshire': 530560, 'cheshire foodbank': 175553, 'foodbank need': 317776, 'support struggling': 826840, 'supply due': 825190, 'please donate': 659928, 'can information': 158752, 'information at': 437752, 'covid 19 self': 213763, '19 self isolation': 10394, 'self isolation and': 747754, 'isolation and job': 455194, 'and job loss': 65663, 'job loss will': 465987, 'loss will force': 503803, 'will force people': 993473, 'force people to': 328479, 'people to choose': 649885, 'choose between paying': 177881, 'between paying bill': 128849, 'paying bill and': 645394, 'bill and buying': 130502, 'and buying food': 59366, 'buying food mid': 150322, 'food mid cheshire': 315456, 'mid cheshire foodbank': 530561, 'cheshire foodbank need': 175554, 'foodbank need support': 317778, 'need support struggling': 555689, 'support struggling to': 826841, 'get supply due': 348154, 'supply due to': 825191, 'buying please donate': 150910, 'please donate if': 659930, 'you can information': 1017704, 'can information at': 158753, 'punishable': 689225, 'of midnight': 586488, 'midnight tonight': 530761, 'country will': 211243, 'on total': 604815, 'total quarantine': 926232, 'quarantine any': 692029, 'any movement': 79494, 'movement outside': 543913, 'of seeking': 589455, 'seeking medical': 746648, 'medical treatment': 526482, 'treatment pulling': 931130, 'out cash': 625838, 'cash amp': 166152, 'amp visiting': 54787, 'visiting supermarket': 959552, 'be punishable': 116620, 'punishable with': 689230, 'with up': 1001916, 'in prison': 426998, 'announced that of': 77065, 'that of midnight': 845448, 'of midnight tonight': 586489, 'midnight tonight the': 530762, 'tonight the country': 924499, 'the country will': 852182, 'country will be': 211244, 'be on total': 116217, 'on total quarantine': 604817, 'total quarantine any': 926233, 'quarantine any movement': 692030, 'any movement outside': 79495, 'movement outside of': 543914, 'outside of seeking': 629513, 'of seeking medical': 589456, 'seeking medical treatment': 746649, 'medical treatment pulling': 526484, 'treatment pulling out': 931131, 'pulling out cash': 688946, 'out cash amp': 625839, 'cash amp visiting': 166153, 'amp visiting supermarket': 54788, 'visiting supermarket will': 959558, 'supermarket will be': 823880, 'will be punishable': 992625, 'be punishable with': 116622, 'punishable with up': 689231, 'with up to': 1001917, 'to 15 year': 899505, '15 year in': 3874, 'year in prison': 1014652, '19 no': 8793, 'for panic': 324364, 'pm assures': 661863, 'covid 19 no': 213478, '19 no need': 8803, 'need for panic': 554862, 'for panic buying': 324365, 'buying food available': 150303, 'food available at': 313471, 'available at all': 104243, 'all time pm': 45223, 'time pm assures': 897507, 'of hoax': 584700, 'hoax and': 399693, 'scam including': 740206, 'including stimulus': 432165, 'stimulus fraud': 801542, 'fraud treatment': 331366, 'treatment vaccine': 931161, 'vaccine amp': 951646, 'amp in': 53977, 'home test': 402197, 'test for': 838994, '19 none': 8814, 'these offer': 880362, 'currently proven': 221641, 'proven approved': 686150, 'approved or': 83182, 'or valid': 617640, 'valid read': 951912, 'protection blog': 685354, 'blog for': 132932, 'on navigating': 602344, 'navigating these': 553131, 'beware of hoax': 129083, 'of hoax and': 584701, 'hoax and scam': 399696, 'and scam including': 71029, 'scam including stimulus': 740208, 'including stimulus fraud': 432166, 'stimulus fraud treatment': 801544, 'fraud treatment vaccine': 331367, 'treatment vaccine amp': 931162, 'vaccine amp in': 951647, 'amp in home': 53979, 'in home test': 423788, 'home test for': 402199, 'test for covid': 838998, 'covid 19 none': 213481, '19 none of': 8815, 'of these offer': 591843, 'these offer are': 880363, 'offer are currently': 594527, 'are currently proven': 85673, 'currently proven approved': 221642, 'proven approved or': 686151, 'approved or valid': 83183, 'or valid read': 617641, 'valid read our': 951913, 'our latest consumer': 623656, 'latest consumer protection': 481263, 'consumer protection blog': 198513, 'protection blog for': 685355, 'blog for tip': 132938, 'tip on navigating': 898856, 'on navigating these': 602346, 'navigating these scam': 553132, 'persistence': 652265, 'unknowable': 942509, 'and persistence': 68914, 'persistence of': 652266, 'impact across': 417539, 'is unknowable': 453517, 'unknowable central': 942510, 'central florida': 169385, 'florida will': 311006, 'will directly': 993196, 'directly experience': 243543, 'of slowed': 589775, 'slowed consumer': 774487, 'demand our': 235990, 'our leadership': 623699, 'leadership team': 483656, 'team spoke': 835778, 'the about': 848239, 'this impact': 888014, 'while the size': 987416, 'the size and': 867294, 'size and persistence': 772759, 'and persistence of': 68915, 'persistence of covid': 652267, 'economic impact across': 267125, 'impact across the': 417540, 'country is unknowable': 210826, 'is unknowable central': 453518, 'unknowable central florida': 942511, 'central florida will': 169387, 'florida will directly': 311007, 'will directly experience': 993197, 'directly experience the': 243544, 'experience the effect': 291503, 'effect of slowed': 269061, 'of slowed consumer': 589777, 'slowed consumer demand': 774488, 'consumer demand our': 197154, 'demand our leadership': 235991, 'our leadership team': 623700, 'leadership team spoke': 483657, 'team spoke with': 835779, 'spoke with the': 789756, 'with the about': 1001190, 'the about this': 848240, 'about this impact': 26640, 'this impact and': 888015, 'impact and what': 417557, 'and what business': 75452, 'what business can': 981151, 'business can do': 143491, 'make mask': 510116, 'mask homemade': 518804, 'homemade or': 402844, 'anything and': 80681, 'sanitizers compulsory': 736246, 'compulsory for': 192714, 'business establishment': 143707, 'establishment entry': 282056, 'entry point': 279008, 'point after': 662403, 'after lockdown': 35880, 'lockdown be': 499188, 'be it': 115560, 'shop office': 760535, 'office etc': 595413, 'etc atleast': 282434, 'atleast for': 101882, 'make mask homemade': 510120, 'mask homemade or': 518805, 'homemade or anything': 402845, 'or anything and': 614374, 'anything and sanitizers': 80685, 'and sanitizers compulsory': 70897, 'sanitizers compulsory for': 736247, 'compulsory for all': 192715, 'for all business': 319114, 'all business establishment': 42233, 'business establishment entry': 143708, 'establishment entry point': 282057, 'entry point after': 279009, 'point after lockdown': 662404, 'after lockdown be': 35881, 'lockdown be it': 499189, 'be it supermarket': 115567, 'it supermarket shop': 461366, 'supermarket shop office': 822590, 'shop office etc': 760536, 'office etc atleast': 595414, 'etc atleast for': 282435, 'atleast for to': 101883, 'for to month': 327227, 'placing': 657938, 'teen arrested': 836474, 'allegedly placing': 45699, 'placing juice': 657943, 'juice they': 467763, 'they drank': 882016, 'video joke': 956800, 'teen arrested for': 836475, 'for allegedly placing': 319196, 'allegedly placing juice': 45700, 'placing juice they': 657944, 'juice they drank': 467764, 'they drank back': 882017, 'shelf in covid': 757190, '19 video joke': 11774, 'model suggests': 535310, 'suggests how': 817695, 'how airborne': 407329, 'airborne coronavirus': 39840, 'coronavirus particle': 206534, 'particle spread': 642594, 'store aisle': 806110, 'model suggests how': 535311, 'suggests how airborne': 817696, 'how airborne coronavirus': 407330, 'airborne coronavirus particle': 39841, 'coronavirus particle spread': 206535, 'particle spread in': 642595, 'spread in grocery': 790573, 'grocery store aisle': 365183, 'shame do': 754591, 'you recognise': 1020861, 'recognise these': 704598, 'two men': 937037, 'men police': 528517, 'are hunting': 87276, 'hunting the': 411422, 'the pair': 862868, 'pair after': 634322, 'after number': 35970, 'toiletpaper theft': 922594, 'theft from': 872350, 'in south': 428125, 'south west': 786789, 'and shame do': 71360, 'shame do you': 754592, 'do you recognise': 250669, 'you recognise these': 1020862, 'recognise these two': 704599, 'these two men': 880897, 'two men police': 937040, 'men police are': 528518, 'police are hunting': 662918, 'are hunting the': 87279, 'hunting the pair': 411423, 'the pair after': 862869, 'pair after number': 634323, 'after number of': 35971, 'number of toiletpaper': 577004, 'of toiletpaper theft': 592282, 'toiletpaper theft from': 922595, 'theft from supermarket': 872351, 'supermarket in south': 820983, 'in south west': 428134, 'keypad': 473551, 'inly': 438771, 'morning supermarket': 541473, 'and indeed': 65139, 'indeed trolley': 434017, 'trolley basket': 932377, 'basket keypad': 112364, 'keypad now': 473561, 'likely place': 492076, 'catch lockdownuk': 167007, 'lockdownuk it': 500418, 'the inly': 858298, 'inly place': 438772, 'place there': 657734, 'still mass': 800837, 'mass gathering': 519769, 'just me or': 469245, 'me or is': 523286, 'or is the': 615836, 'is the early': 452779, 'the early morning': 853820, 'early morning supermarket': 264654, 'morning supermarket queue': 541476, 'supermarket queue and': 822114, 'queue and indeed': 693866, 'and indeed trolley': 65142, 'indeed trolley basket': 434018, 'trolley basket keypad': 932378, 'basket keypad now': 112365, 'keypad now the': 473562, 'now the most': 576051, 'the most likely': 861006, 'most likely place': 542485, 'likely place to': 492077, 'place to catch': 657750, 'to catch lockdownuk': 902501, 'catch lockdownuk it': 167008, 'lockdownuk it the': 500419, 'it the inly': 461548, 'the inly place': 858299, 'inly place there': 438773, 'place there are': 657735, 'there are still': 878166, 'are still mass': 90449, 'still mass gathering': 800838, 'booming during': 134875, 'the however': 857678, 'however in': 409393, 'only consumer': 610264, 'consumer living': 198052, '12 state': 2957, 'state can': 795447, 'can fully': 158387, 'fully enjoy': 341037, 'enjoy alcohol': 277120, 'alcohol delivery': 40984, 'delivery at': 233730, 'home learn': 401517, 'more alcohol': 538582, 'alcohol spirit': 41116, 'spirit beer': 789456, 'beer wine': 122538, 'shopping is booming': 763038, 'is booming during': 446223, 'booming during the': 134877, 'during the however': 263140, 'the however in': 857679, 'however in the': 409394, 'in the only': 429419, 'the only consumer': 862294, 'only consumer living': 610265, 'consumer living in': 198053, 'living in 12': 496363, 'in 12 state': 419693, '12 state can': 2958, 'state can fully': 795449, 'can fully enjoy': 158388, 'fully enjoy alcohol': 341038, 'enjoy alcohol delivery': 277121, 'alcohol delivery at': 40985, 'delivery at home': 233732, 'at home learn': 99030, 'home learn more': 401518, 'learn more alcohol': 484014, 'more alcohol spirit': 538583, 'alcohol spirit beer': 41117, 'spirit beer wine': 789457, 'tobacco': 919073, 'smoker': 775884, 'cigarette user': 178495, 'user and': 950261, 'and tobacco': 74212, 'tobacco smoker': 919085, 'smoker are': 775885, 'danger from': 225649, 'coronavirus than': 206894, 'average healthy': 104848, 'healthy person': 387727, 'person here': 652458, 'cigarette user and': 178496, 'user and tobacco': 950262, 'and tobacco smoker': 74214, 'tobacco smoker are': 919086, 'smoker are more': 775886, 'are more in': 88114, 'more in danger': 539510, 'in danger from': 421973, 'danger from the': 225650, 'new coronavirus than': 558553, 'coronavirus than the': 206897, 'than the average': 841218, 'the average healthy': 849101, 'average healthy person': 104849, 'healthy person here': 387728, 'person here why': 652459, 'with respect': 1000479, 'respect mr': 715025, 'mr trump': 544408, 'trump with': 933987, 'of death': 582412, '19 rising': 10238, 'rising rapidly': 723277, 'rapidly in': 696988, 'the your': 872210, 'your focus': 1023905, 'focus should': 311919, 'on promoting': 602971, 'promoting public': 683854, 'health need': 386659, 'not propping': 571121, 'up oil': 945513, 'price once': 675740, 'you focus': 1018606, 'on money': 602195, 'money instead': 536835, 'of citizen': 581426, 'with respect mr': 1000482, 'respect mr trump': 715026, 'mr trump with': 544409, 'trump with case': 933988, 'with case of': 997559, 'case of death': 165899, 'of death from': 582419, 'death from covid': 230049, 'covid 19 rising': 213720, '19 rising rapidly': 10240, 'rising rapidly in': 723279, 'rapidly in the': 696991, 'in the your': 429701, 'the your focus': 872211, 'your focus should': 1023906, 'focus should be': 311920, 'should be on': 765680, 'be on promoting': 116208, 'on promoting public': 602972, 'promoting public health': 683855, 'public health need': 688075, 'health need not': 386660, 'need not propping': 555309, 'not propping up': 571122, 'propping up oil': 684584, 'up oil price': 945514, 'oil price once': 597208, 'price once again': 675741, 'once again you': 605584, 'again you focus': 37293, 'you focus on': 1018607, 'focus on money': 311885, 'on money instead': 602196, 'money instead of': 536836, 'of the well': 591614, 'being of citizen': 125465, 'yes 29': 1015363, '29 year': 16505, 'yes my': 1015490, 'mom won': 535848, 'me sit': 523476, 'sit in': 771825, 'lot while': 504413, 'while she': 987252, 'she grab': 756065, 'yes 29 year': 1015365, '29 year old': 16506, 'old and yes': 598144, 'and yes my': 75970, 'yes my mom': 1015491, 'my mom won': 549291, 'mom won let': 535849, 'won let me': 1003865, 'me get out': 522806, 'of the car': 590846, 'the car and': 850373, 'car and is': 162995, 'and is making': 65416, 'is making me': 449551, 'making me sit': 511201, 'me sit in': 523477, 'sit in the': 771828, 'in the parking': 429438, 'parking lot while': 642111, 'lot while she': 504414, 'while she grab': 987253, 'she grab few': 756066, 'few thing at': 304093, 'mainecdc': 508861, 'two set': 937203, 'most contact': 542204, 'other human': 620378, 'are hospital': 87240, 'employee only': 274081, 'is wearing': 453809, 'wearing protection': 974765, 'protection per': 685568, 'per cdc': 650740, 'cdc guideline': 168569, 'and mainecdc': 66519, 'the two set': 870157, 'two set of': 937204, 'set of worker': 753448, 'of worker with': 593289, 'worker with the': 1008267, 'with the most': 1001394, 'the most contact': 860962, 'most contact with': 542205, 'with other human': 999953, 'other human are': 620379, 'human are hospital': 410419, 'are hospital employee': 87242, 'hospital employee and': 404390, 'employee and supermarket': 273586, 'supermarket employee only': 820129, 'employee only one': 274082, 'only one is': 610876, 'one is wearing': 606532, 'is wearing protection': 453816, 'wearing protection per': 974766, 'protection per cdc': 685569, 'per cdc guideline': 650741, 'cdc guideline for': 168570, 'guideline for themselves': 368430, 'for themselves and': 326938, 'themselves and mainecdc': 876755, 'week stock': 976927, 'stock should': 802850, 'do there': 250287, 'buy large': 148886, 'chain isn': 170855, 'isn affected': 454420, 'affected due': 34345, 'buying of grocery': 150794, 'of grocery week': 584364, 'grocery week stock': 366121, 'week stock should': 976929, 'stock should do': 802851, 'should do there': 765934, 'do there no': 250289, 'to buy large': 902257, 'buy large quantity': 148888, 'of grocery because': 584346, 'grocery because the': 364317, 'because the food': 119625, 'supply chain isn': 824980, 'chain isn affected': 170856, 'isn affected due': 454421, 'affected due to': 34346, 'shark': 755638, 'handsanitiser': 376444, 'nothappyjan': 572908, 'roll no': 725397, 'no thanks': 565689, 'thanks love': 842132, 'love the': 504801, 'the aussie': 849051, 'aussie who': 103148, 'are standing': 90349, 'standing their': 793818, 'their ground': 873453, 'ground not': 366525, 'not shopping': 571562, 'the shark': 866796, 'shark selling': 755643, 'selling toiletpaper': 749511, 'toiletpaper handsanitiser': 922048, 'handsanitiser at': 376445, 'highly inflated': 396074, 'price nothappyjan': 675374, 'toilet roll no': 921588, 'roll no thanks': 725398, 'no thanks love': 565691, 'thanks love the': 842134, 'love the aussie': 504803, 'the aussie who': 849052, 'aussie who are': 103149, 'who are standing': 988222, 'are standing their': 90354, 'standing their ground': 793819, 'their ground not': 873454, 'ground not shopping': 366526, 'not shopping from': 571564, 'shopping from the': 762762, 'from the shark': 337874, 'the shark selling': 866797, 'shark selling toiletpaper': 755645, 'selling toiletpaper handsanitiser': 749512, 'toiletpaper handsanitiser at': 922049, 'handsanitiser at highly': 376446, 'at highly inflated': 98908, 'highly inflated price': 396075, 'inflated price nothappyjan': 437055, 'die licking': 241392, 'licking my': 488248, 'my finger': 548322, 'to get infected': 906506, 'get infected and': 347325, 'and die licking': 61333, 'die licking my': 241393, 'licking my finger': 488249, 'my finger so': 548327, 'reel': 706437, 'if ha': 414185, 'made you': 508074, 'you productive': 1020444, 'productive leave': 682298, 'leave comment': 484765, 'comment but': 188397, 'are back': 84738, 'the reel': 865402, 'reel world': 706440, 'world lol': 1009767, 'lol we': 500973, 'work know': 1005412, 'our area': 622109, 'suffering with': 817345, 'price sign': 676401, 'if ha made': 414186, 'ha made you': 371223, 'made you productive': 508078, 'you productive leave': 1020445, 'productive leave comment': 682299, 'leave comment but': 484766, 'comment but now': 188399, 'now that we': 576025, 'we are back': 970487, 'are back in': 84740, 'in the reel': 429505, 'the reel world': 865403, 'reel world lol': 706441, 'world lol we': 1009768, 'lol we have': 500974, 'to get back': 906416, 'get back to': 346634, 'to work know': 918747, 'work know our': 1005413, 'know our area': 476663, 'our area is': 622113, 'area is suffering': 92085, 'is suffering with': 452435, 'suffering with the': 817346, 'with the loss': 1001377, 'job and low': 465632, 'and low gas': 66439, 'gas price sign': 344023, 'price sign up': 676402, 'cooperative': 203167, 'puppy': 689304, 'bathe': 112609, 'been cooperative': 120895, 'cooperative with': 203178, 'our protocol': 624498, 'protocol when': 686005, 'when coming': 983264, 'view puppy': 957152, 'puppy we': 689311, 'each visitor': 264323, 'visitor use': 959603, 'sanitizer before': 734559, 'before picking': 123013, 'up puppy': 945865, 'we maintain': 972328, 'maintain at': 508937, 'foot of': 318408, 'distance after': 246623, 'after visit': 36492, 'visit we': 959426, 'we bathe': 970809, 'bathe the': 112610, 'the puppy': 864913, 'puppy lysol': 689307, 'lysol surface': 507194, 'surface just': 828038, 'everyone ha been': 286960, 'ha been cooperative': 369762, 'been cooperative with': 120896, 'cooperative with our': 203179, 'with our protocol': 1000014, 'our protocol when': 624499, 'protocol when coming': 686006, 'when coming to': 983265, 'coming to view': 188235, 'to view puppy': 918174, 'view puppy we': 957153, 'puppy we have': 689312, 'have each visitor': 380404, 'each visitor use': 264324, 'visitor use hand': 959604, 'hand sanitizer before': 375323, 'sanitizer before picking': 734563, 'before picking up': 123014, 'picking up puppy': 655883, 'up puppy we': 945866, 'puppy we maintain': 689313, 'we maintain at': 972329, 'maintain at least': 508939, 'least foot of': 484467, 'foot of social': 318411, 'social distance after': 779495, 'distance after visit': 246624, 'after visit we': 36493, 'visit we bathe': 959427, 'we bathe the': 970810, 'bathe the puppy': 112611, 'the puppy lysol': 864914, 'puppy lysol surface': 689308, 'lysol surface just': 507195, 'surface just to': 828039, 'just to be': 470083, 'tourist': 927022, 'membership': 528265, 'the pennsylvania': 863441, 'state police': 795865, 'police museum': 663099, 'museum is': 546249, 'to tourist': 917655, 'tourist due': 927026, 'still in': 800737, 'office which': 595590, 'which mean': 986143, 'mean our': 524598, 'and ready': 69987, 'shopping please': 763640, 'send membership': 749898, 'membership and': 528266, 'and brick': 59192, 'brick donation': 139583, 'donation too': 254723, 'too we': 925153, 'hope to': 403735, 'person soon': 652607, 'although the pennsylvania': 49367, 'the pennsylvania state': 863442, 'pennsylvania state police': 646580, 'state police museum': 795866, 'police museum is': 663100, 'museum is closed': 546250, 'is closed to': 446590, 'closed to tourist': 183402, 'to tourist due': 917656, 'tourist due to': 927027, 'are still in': 90438, 'still in the': 800745, 'in the office': 429412, 'the office which': 862084, 'office which mean': 595591, 'which mean our': 986147, 'mean our online': 524599, 'online store is': 609453, 'is open and': 450559, 'open and ready': 612073, 'and ready for': 69990, 'ready for shopping': 700871, 'for shopping please': 325593, 'shopping please continue': 763641, 'continue to send': 201253, 'to send membership': 914215, 'send membership and': 749899, 'membership and brick': 528267, 'and brick donation': 59193, 'brick donation too': 139584, 'donation too we': 254724, 'too we hope': 925156, 'we hope to': 972038, 'hope to see': 403744, 'see you in': 746109, 'you in person': 1019312, 'in person soon': 426641, 'dropping during': 260686, 'price dropping during': 673603, 'dropping during covid': 260687, 'rishi': 723133, 'sunak': 818094, 'decency': 230762, 'rishi sunak': 723134, 'sunak when': 818101, 'over and': 629978, 'and remember': 70218, 'small act': 774773, 'kindness done': 475194, 'done by': 254801, 'remember how': 710204, 'thought first': 893040, 'and acted': 57625, 'acted with': 29852, 'with decency': 997946, 'decency it': 230763, 'rishi sunak when': 723137, 'sunak when this': 818102, 'is over and': 450685, 'over and it': 629983, 'over we want': 630904, 'want to look': 966066, 'to look back': 909434, 'back on this': 107205, 'on this moment': 604621, 'this moment and': 888867, 'moment and remember': 535877, 'and remember the': 70221, 'remember the small': 710319, 'the small act': 867355, 'small act of': 774774, 'of kindness done': 585644, 'kindness done by': 475195, 'done by and': 254803, 'by and to': 151854, 'and to we': 74210, 'to we want': 918409, 'want to remember': 966102, 'to remember how': 913185, 'remember how we': 710208, 'how we thought': 409195, 'we thought first': 973541, 'thought first of': 893041, 'first of others': 308816, 'others and acted': 621251, 'and acted with': 57626, 'acted with decency': 29853, 'with decency it': 997947, 'decency it on': 230764, 'it on all': 460027, 'hibiscus': 394788, 'lone': 501274, 'texas star': 839823, 'star hardy': 794040, 'hardy hibiscus': 378350, 'hibiscus is': 394791, 'is unique': 453505, 'unique with': 942006, 'it flower': 458042, 'flower shape': 311326, 'shape beautiful': 754822, 'beautiful just': 118691, 'like our': 490949, 'our lone': 623799, 'lone star': 501285, 'star in': 794046, 'the texas star': 869344, 'texas star hardy': 839824, 'star hardy hibiscus': 794041, 'hardy hibiscus is': 378351, 'hibiscus is unique': 394792, 'is unique with': 453508, 'unique with it': 942007, 'with it flower': 999066, 'it flower shape': 458043, 'flower shape beautiful': 311327, 'shape beautiful just': 754823, 'beautiful just like': 118692, 'just like our': 469154, 'like our lone': 490950, 'our lone star': 623800, 'lone star in': 501286, 'star in stock': 794047, 'beneficial': 126878, 'cryptocurrency': 219967, 'be beneficial': 113827, 'beneficial for': 126879, 'for cryptocurrency': 320474, 'cryptocurrency because': 219970, 'allows investor': 46381, 'investor to': 444218, 'buy crypto': 148517, 'crypto asset': 219938, 'price force': 674082, 'force more': 328454, 'the blockchain': 849772, 'blockchain sector': 132841, 'encourages the': 275703, 'of digital': 582607, 'digital currency': 242545, 'the can be': 850308, 'can be beneficial': 157593, 'be beneficial for': 113828, 'beneficial for cryptocurrency': 126880, 'for cryptocurrency because': 320475, 'cryptocurrency because it': 219971, 'because it allows': 119173, 'it allows investor': 456395, 'allows investor to': 46382, 'investor to buy': 444219, 'to buy crypto': 902212, 'buy crypto asset': 148518, 'crypto asset at': 219939, 'asset at discounted': 96417, 'discounted price force': 244597, 'price force more': 674085, 'force more people': 328455, 'in the blockchain': 429028, 'the blockchain sector': 849773, 'blockchain sector and': 132842, 'sector and encourages': 744081, 'and encourages the': 62106, 'encourages the use': 275704, 'use of digital': 949405, 'of digital currency': 582609, 'sandwell': 733729, 'another chemist': 77533, 'chemist with': 175462, 'price sandwell': 676292, 'another chemist with': 77534, 'chemist with inflated': 175463, 'inflated price sandwell': 437066, 'sure everybody': 827537, 'everybody can': 286418, 'eat wouldn': 266119, 'wouldn it': 1012484, 'great if': 362738, 'cashier refused': 166590, 'asshole food': 96529, 'food 19': 313008, 'that are making': 842776, 'are making sure': 88005, 'making sure everybody': 511377, 'sure everybody can': 827538, 'everybody can eat': 286419, 'can eat wouldn': 158207, 'eat wouldn it': 266120, 'wouldn it be': 1012485, 'it be great': 456729, 'be great if': 115089, 'great if supermarket': 362741, 'if supermarket cashier': 414894, 'supermarket cashier refused': 819566, 'cashier refused to': 166591, 'refused to sell': 707076, 'to sell this': 914182, 'sell this asshole': 748914, 'this asshole food': 886438, 'asshole food 19': 96530, '9news': 23996, 'woolworth': 1004399, '9news woolworth': 23999, 'woolworth cole': 1004409, 'cole did': 185853, 'allow new': 46002, 'shopping account': 761882, 'account during': 28656, 'pandemic either': 635362, 'they know': 882520, 'know exactly': 476371, 'exactly who': 288769, 'who their': 989760, 'their regular': 874544, 'regular customer': 707757, 'the buy': 850217, 'buy spend': 149225, 'spend and': 788578, 'how often': 408421, '9news woolworth cole': 24000, 'woolworth cole did': 1004410, 'cole did not': 185854, 'have to allow': 383156, 'to allow new': 900345, 'allow new online': 46003, 'online shopping account': 609012, 'shopping account during': 761884, 'account during pandemic': 28657, 'during pandemic either': 262865, 'pandemic either they': 635363, 'either they know': 270394, 'they know exactly': 882525, 'know exactly who': 476373, 'exactly who their': 288770, 'who their regular': 989761, 'their regular customer': 874545, 'regular customer are': 707758, 'customer are and': 222113, 'are and what': 84552, 'and what the': 75487, 'what the buy': 982299, 'the buy spend': 850219, 'buy spend and': 149226, 'spend and how': 788580, 'and how often': 64828, 'whitehorse': 987939, 'yikes read': 1016396, 'what staff': 982241, 'seeing hopefully': 746322, 'hopefully bad': 403843, 'bad behaviour': 107785, 'behaviour end': 124410, 'end whitehorse': 276074, 'whitehorse grocery': 987940, 'manager want': 512824, 'people supposed': 649701, 'actually self': 30951, 'isolate cbc': 454836, 'yikes read what': 1016397, 'read what staff': 700655, 'what staff are': 982242, 'staff are seeing': 792205, 'are seeing hopefully': 89901, 'seeing hopefully bad': 746323, 'hopefully bad behaviour': 403844, 'bad behaviour end': 107786, 'behaviour end whitehorse': 124411, 'end whitehorse grocery': 276075, 'whitehorse grocery store': 987941, 'grocery store manager': 365552, 'store manager want': 808897, 'manager want people': 512825, 'want people supposed': 965898, 'people supposed to': 649702, 'supposed to self': 827374, 'isolate to actually': 454930, 'to actually self': 900032, 'actually self isolate': 30952, 'self isolate cbc': 747668, 'isolate cbc news': 454837, 'employee should': 274198, 'all supermarket employee': 44547, 'supermarket employee should': 820133, 'employee should be': 274201, 'have 240': 379086, '240 roll': 15713, 'can get if': 158423, 'get if have': 347280, 'if have 240': 414198, 'have 240 roll': 379087, '240 roll of': 15714, 'so restaurant': 778132, 'restaurant that': 716739, 'need cash': 554592, 'can seat': 159527, 'seat people': 743516, 'some cash': 782493, 'cash by': 166189, 'selling surplus': 749469, 'surplus toilet': 828507, 'paper tp': 641022, 'so restaurant that': 778133, 'restaurant that need': 716740, 'that need cash': 845297, 'need cash can': 554593, 'cash can seat': 166194, 'can seat people': 159528, 'seat people can': 743517, 'people can make': 647399, 'can make some': 158950, 'make some cash': 510470, 'some cash by': 782496, 'cash by selling': 166191, 'by selling surplus': 153933, 'selling surplus toilet': 749470, 'surplus toilet paper': 828508, 'toilet paper tp': 921504, 'paper tp toiletpaper': 641023, 'we send': 973200, 'am grateful': 50101, 'compassion during': 191483, 'we send special': 973202, 'all healthcare professional': 43079, 'healthcare professional grocery': 387233, 'worker and those': 1006347, 'and those on': 74034, 'front line in': 338584, 'line in our': 493199, '19 am grateful': 4943, 'am grateful for': 50103, 'grateful for your': 362280, 'your service and': 1025728, 'service and compassion': 752077, 'and compassion during': 60206, 'compassion during these': 191484, 'during these difficult': 263235, 'depletion': 237431, 'circulareconomy': 178653, 'chain crucial': 170632, 'crucial in': 219450, 'against are': 37332, 'not resilient': 571332, 'resilient we': 714544, 'might think': 531141, 'think imagine': 885302, 'we face': 971516, 'the depletion': 853149, 'depletion of': 237432, 'of scarce': 589379, 'scarce natural': 740801, 'natural resource': 552857, 'resource circulareconomy': 714745, 'circulareconomy offer': 178656, 'offer solution': 594799, 'supply chain crucial': 824943, 'chain crucial in': 170633, 'crucial in the': 219452, 'fight against are': 304605, 'against are not': 37333, 'are not resilient': 88456, 'not resilient we': 571333, 'resilient we might': 714545, 'we might think': 972378, 'might think imagine': 531143, 'think imagine what': 885303, 'imagine what will': 416825, 'will happen if': 993596, 'happen if we': 377100, 'if we face': 415281, 'we face shortage': 971519, 'face shortage in': 294750, 'shortage in food': 765014, 'in food supply': 422990, 'food supply due': 316949, 'to the depletion': 916636, 'the depletion of': 853150, 'depletion of scarce': 237433, 'of scarce natural': 589381, 'scarce natural resource': 740802, 'natural resource circulareconomy': 552858, 'resource circulareconomy offer': 714746, 'circulareconomy offer solution': 178657, 'ruthless': 728699, 'korea business': 477457, 'business aren': 143397, 'aren hiking': 92436, 'during fight': 262641, 'country business': 210526, 'extremely ruthless': 293921, 'in south korea': 428131, 'south korea business': 786737, 'korea business aren': 477458, 'business aren hiking': 143398, 'aren hiking price': 92437, 'price during fight': 673621, 'during fight in': 262642, 'fight in other': 304779, 'in other country': 426238, 'other country business': 620013, 'country business are': 210527, 'business are extremely': 143363, 'are extremely ruthless': 86397, 'conveniently': 202434, 'all experiencing': 42726, 'experiencing with': 291723, 'up page': 945733, 'page on': 633877, 'our app': 622086, 'to conveniently': 903464, 'conveniently buy': 202435, 'buy protection': 149110, 'protection gear': 685462, 'gear at': 344942, 'lowest possible': 506204, 'possible price': 665741, 'hello we are': 389247, 'we are here': 970588, 'here to help': 393715, 'help to step': 390793, 'step up in': 799691, 'face of what': 294681, 'are all experiencing': 84304, 'all experiencing with': 42727, 'experiencing with covid': 291724, 'have set up': 382491, 'set up page': 753570, 'up page on': 945734, 'page on our': 633880, 'on our app': 602575, 'our app for': 622087, 'app for you': 81712, 'you to conveniently': 1021763, 'to conveniently buy': 903465, 'conveniently buy protection': 202436, 'buy protection gear': 149111, 'protection gear at': 685463, 'gear at the': 344944, 'at the lowest': 101009, 'the lowest possible': 859818, 'lowest possible price': 506205, 'possible price and': 665742, 'surprise the': 828550, 'digital economy': 242558, 'been growing': 121239, 'growing faster': 367191, 'economy whole': 268351, 'whole in': 990244, 'fact ecommerce': 295709, 'huge surprise the': 410230, 'surprise the digital': 828551, 'the digital economy': 853284, 'digital economy ha': 242559, 'economy ha been': 267916, 'ha been growing': 369819, 'been growing faster': 121242, 'growing faster than': 367193, 'than the economy': 841231, 'the economy whole': 854040, 'economy whole in': 268352, 'whole in march': 990246, 'in march in': 425107, 'march in fact': 515391, 'in fact ecommerce': 422759, 'fact ecommerce ha': 295710, 'nickel': 562589, 'sulphate': 817858, 'q1': 691396, 'china impacted': 176720, 'impacted nickel': 418135, 'nickel sulphate': 562594, 'sulphate supply': 817859, 'in q1': 427149, 'q1 with': 691410, 'widespread closure': 991834, 'the nickel': 861790, 'nickel supply': 562596, 'chain likely': 170895, 'likely over': 492072, 'week read': 976789, 'latest price': 481507, 'price analysis': 672349, 'analysis here': 57051, 'the closure in': 851052, 'closure in china': 183908, 'in china impacted': 421406, 'china impacted nickel': 176721, 'impacted nickel sulphate': 418136, 'nickel sulphate supply': 562595, 'sulphate supply in': 817860, 'supply in q1': 825407, 'in q1 with': 427152, 'q1 with more': 691411, 'with more widespread': 999567, 'more widespread closure': 540984, 'widespread closure in': 991835, 'closure in the': 183912, 'in the nickel': 429398, 'the nickel supply': 861791, 'nickel supply chain': 562597, 'supply chain likely': 824986, 'chain likely over': 170896, 'likely over the': 492073, 'over the coming': 630704, 'coming week read': 188285, 'week read latest': 976791, 'read latest price': 700397, 'latest price analysis': 481509, 'price analysis here': 672351, 'nurse unable': 577528, 'long shift': 501623, 'shift make': 758351, 'make emotional': 509871, 'emotional plea': 273292, 'plea for': 659541, 'nurse unable to': 577529, 'buy food after': 148630, 'food after long': 313042, 'after long shift': 35888, 'long shift make': 501628, 'shift make emotional': 758352, 'make emotional plea': 509872, 'emotional plea for': 273294, 'plea for public': 659545, 'for public to': 324854, 'public to stop': 688378, 'all dressed': 42630, 'dressed up': 258702, 'weekend coronacrisisuk': 977335, 'how to beat': 408981, 'to beat the': 901657, 'beat the supermarket': 118563, 'queue and get': 693863, 'and get all': 63561, 'get all dressed': 346518, 'all dressed up': 42631, 'dressed up this': 258705, 'up this weekend': 946286, 'this weekend coronacrisisuk': 891308, 'tolerated': 923812, 'on tuesday': 604872, 'tuesday will': 935203, 'at placing': 100129, 'placing measure': 657945, 'consumer limit': 198045, 'limit for': 492344, 'certain essential': 169996, 'hiking will': 396431, 'be tolerated': 117753, 'tolerated panicbuying': 923815, 'meeting on tuesday': 527739, 'on tuesday will': 604894, 'tuesday will look': 935204, 'will look at': 994036, 'look at placing': 502285, 'at placing measure': 100130, 'placing measure on': 657946, 'measure on consumer': 525280, 'on consumer limit': 600060, 'consumer limit for': 198046, 'limit for certain': 492345, 'for certain essential': 319995, 'certain essential item': 169997, 'essential item and': 281187, 'item and retail': 463073, 'and retail price': 70440, 'retail price hiking': 718410, 'price hiking will': 674547, 'hiking will not': 396432, 'not be tolerated': 568474, 'be tolerated panicbuying': 117755, 'uob': 944096, 'uob construction': 944097, 'construction thailand': 195826, 'thailand minimal': 840102, 'minimal impact': 533064, 'outbreak share': 628617, 'cheap valuation': 174225, 'valuation sector': 952065, 'sector construction': 744131, 'construction small': 195818, 'small impact': 774994, 'outbreak sector': 628603, 'sector performance': 744295, 'performance on': 651457, 'of recovery': 588845, 'recovery maintain': 705357, 'maintain overweight': 509008, 'overweight on': 631698, 'on cheap': 599886, 'cheap equity': 174100, 'equity stock': 279970, 'uob construction thailand': 944098, 'construction thailand minimal': 195827, 'thailand minimal impact': 840103, 'minimal impact from': 533065, '19 outbreak share': 9184, 'outbreak share price': 628618, 'share price at': 755161, 'price at cheap': 672796, 'at cheap valuation': 98239, 'cheap valuation sector': 174226, 'valuation sector construction': 952066, 'sector construction small': 744132, 'construction small impact': 195819, 'small impact from': 774995, '19 outbreak sector': 9180, 'outbreak sector performance': 628604, 'sector performance on': 744296, 'performance on the': 651459, 'on the path': 604277, 'path of recovery': 644022, 'of recovery maintain': 588848, 'recovery maintain overweight': 705358, 'maintain overweight on': 509009, 'overweight on cheap': 631699, 'on cheap equity': 599887, 'cheap equity stock': 174101, 'meantime': 524918, 'stayathomechallenge': 797728, 'footy': 318593, 'meantime at': 524919, 'at tpchallenge': 101351, 'tpchallenge quarantinelife': 928051, 'quarantinelife stayathomechallenge': 693014, 'stayathomechallenge footy': 797731, 'footy toiletpaper': 318594, 'toiletpaper shelterinplace': 922452, 'shelterinplace boredom': 757988, 'boredom uklockdown': 135414, 'meantime at tpchallenge': 524920, 'at tpchallenge quarantinelife': 101352, 'tpchallenge quarantinelife stayathomechallenge': 928052, 'quarantinelife stayathomechallenge footy': 693015, 'stayathomechallenge footy toiletpaper': 797732, 'footy toiletpaper shelterinplace': 318595, 'toiletpaper shelterinplace boredom': 922453, 'shelterinplace boredom uklockdown': 757989, 'disappearing': 244076, 'article supermarket': 94471, 'supermarket shake': 822395, 'shake up': 754430, 'what disappearing': 981328, 'disappearing from': 244079, 'from shelf': 337241, 'shelf the': 757645, 'new daily': 558586, 'interesting article supermarket': 441514, 'article supermarket shake': 94472, 'supermarket shake up': 822396, 'shake up what': 754432, 'up what disappearing': 946565, 'what disappearing from': 981329, 'disappearing from shelf': 244080, 'from shelf the': 337244, 'shelf the new': 757652, 'the new daily': 861489, 'show egg': 766929, 'are significantly': 90126, 'significantly on': 769596, 'rise demand': 722821, 'increased amid': 433194, 'data show egg': 226408, 'show egg price': 766930, 'price are significantly': 672735, 'are significantly on': 90128, 'significantly on the': 769598, 'the rise demand': 865848, 'rise demand ha': 722823, 'demand ha increased': 235609, 'ha increased amid': 370943, 'increased amid the': 433195, 'at venezuelan': 101439, 'venezuelan grocery': 954458, 'section at': 743998, 'at dallas': 98404, 'dallas super': 225132, 'super market': 818540, 'empty shelf at': 275050, 'shelf at venezuelan': 756857, 'at venezuelan grocery': 101440, 'venezuelan grocery store': 954459, 'store no the': 809090, 'no the meat': 565697, 'meat section at': 525731, 'section at dallas': 743999, 'at dallas super': 98405, 'dallas super market': 225133, 'breaking union': 139077, 'union minister': 941908, 'amp public': 54348, 'distribution tweeted': 248245, 'sanitizer would': 736151, '100 while': 2128, 'while price': 987167, 'be and': 113618, 'mask 10': 518250, '10 till': 1716, 'till june': 896042, 'june 30': 467994, '30 2020': 16930, 'breaking union minister': 139078, 'union minister of': 941909, 'minister of consumer': 533424, 'affair food amp': 34036, 'food amp public': 313145, 'amp public distribution': 54349, 'public distribution tweeted': 687955, 'distribution tweeted that': 248246, 'tweeted that retail': 936452, 'that retail price': 846037, 'price of 200': 675395, 'ml bottle of': 534712, 'hand sanitizer would': 375674, 'sanitizer would not': 736153, 'than 100 while': 840165, '100 while price': 2129, 'while price of': 987173, 'of ply mask': 588184, 'ply mask to': 661777, 'mask to be': 519393, 'to be and': 901107, 'be and that': 113621, 'and that of': 73205, 'that of ply': 845451, 'ply mask 10': 661773, 'mask 10 till': 518251, '10 till june': 1717, 'till june 30': 896043, 'june 30 2020': 467995, 'pending': 646472, 'abates': 24232, 'building sale': 142135, 'sale number': 732376, 'of pending': 587856, 'pending sale': 646484, 'sale failed': 732203, 'happen when': 377201, 'get financing': 347013, 'financing many': 306737, 'have put': 382110, 'put sale': 690803, 'sale on': 732416, 'hold until': 400037, 'until buyer': 943704, 'buyer can': 149599, 'can look': 158902, 'at property': 100212, 'property some': 684361, 'some industry': 783110, 'say price': 739074, 'fall 25': 296798, '25 or': 15934, 'more once': 539936, 'once covid': 605612, '19 abates': 4778, 'building sale number': 142136, 'sale number of': 732378, 'number of pending': 576971, 'of pending sale': 587857, 'pending sale failed': 646485, 'sale failed to': 732204, 'failed to happen': 296177, 'to happen when': 907167, 'happen when they': 377206, 'when they could': 984250, 'could not get': 209443, 'not get financing': 569586, 'get financing many': 347014, 'financing many others': 306738, 'many others have': 514450, 'others have put': 621451, 'have put sale': 382118, 'put sale on': 690804, 'sale on hold': 732417, 'on hold until': 601344, 'hold until buyer': 400038, 'until buyer can': 943705, 'buyer can look': 149601, 'can look at': 158903, 'look at property': 502289, 'at property some': 100213, 'property some industry': 684362, 'some industry expert': 783112, 'industry expert say': 435816, 'expert say price': 291956, 'say price could': 739075, 'could fall 25': 209161, 'fall 25 or': 296799, '25 or more': 15935, 'or more once': 616182, 'more once covid': 539937, 'once covid 19': 605613, 'covid 19 abates': 212568, 'listener': 494784, 'tova': 927090, 'jessica': 465253, 'mutch': 547062, 'jenna': 465082, 'lynch': 507116, 'idea we': 413223, 'proper journalist': 684115, 'journalist from': 467435, 'the listener': 859476, 'listener metro': 494785, 'metro etc': 529918, 'do question': 250017, 'question time': 693771, 'time after': 896211, 'after each': 35593, 'each covid': 264024, 'update tova': 947277, 'tova brian': 927091, 'brian jessica': 139560, 'jessica mutch': 465256, 'mutch jenna': 547063, 'jenna lynch': 465083, 'lynch and': 507117, 'co can': 184820, 'go help': 353641, 'help stack': 390560, 'stack shelf': 791980, 'an idea we': 56136, 'idea we get': 413225, 'we get the': 971630, 'get the proper': 348287, 'the proper journalist': 864675, 'proper journalist from': 684116, 'journalist from the': 467436, 'from the listener': 337776, 'the listener metro': 859477, 'listener metro etc': 494786, 'metro etc to': 529919, 'etc to do': 282833, 'to do question': 904546, 'do question time': 250018, 'question time after': 693772, 'time after each': 896212, 'after each covid': 35594, 'each covid 19': 264025, '19 update tova': 11690, 'update tova brian': 947278, 'tova brian jessica': 927092, 'brian jessica mutch': 139561, 'jessica mutch jenna': 465257, 'mutch jenna lynch': 547064, 'jenna lynch and': 465084, 'lynch and co': 507118, 'and co can': 60037, 'co can go': 184821, 'can go help': 158498, 'go help stack': 353642, 'help stack shelf': 390561, 'stack shelf at': 791983, 'shelf at the': 756854, 'ncci': 553308, 'on ncci': 602347, 'ncci consumer': 553309, 'consumer directed': 197209, 'directed personal': 243413, 'personal assistance': 652787, 'assistance program': 96730, 'program during': 683237, 'update on ncci': 947124, 'on ncci consumer': 602348, 'ncci consumer directed': 553310, 'consumer directed personal': 197210, 'directed personal assistance': 243414, 'personal assistance program': 652788, 'assistance program during': 96733, 'shell': 757870, 'forgot': 329390, 'norwegian sovereign': 567852, 'sovereign wealth': 786947, 'wealth fund': 974162, 'fund double': 341394, 'double it': 256023, 'it share': 461005, 'share in': 755052, 'in shell': 427881, 'shell yes': 757885, 'yes share': 1015525, 'stay low': 797120, 'low already': 505111, 'already prior': 47590, 'amp oil': 54214, 'oil amp': 596602, 'gas sector': 344082, 'sector wa': 744387, 'wa showing': 963219, 'of permanent': 588051, 'permanent decline': 652044, 'decline have': 231334, 'have they': 383086, 'they forgot': 882133, 'forgot about': 329391, 'norwegian sovereign wealth': 567853, 'sovereign wealth fund': 786948, 'wealth fund double': 974163, 'fund double it': 341395, 'double it share': 256026, 'it share in': 461006, 'share in shell': 755056, 'in shell yes': 427882, 'shell yes share': 757886, 'yes share price': 1015526, 'share price are': 755160, 'are low but': 87922, 'low but they': 505165, 'they are likely': 881326, 'likely to stay': 492179, 'to stay low': 915297, 'stay low already': 797121, 'low already prior': 505112, 'already prior to': 47591, 'prior to 19': 678368, 'to 19 amp': 899533, '19 amp oil': 4964, 'amp oil price': 54217, 'price war the': 677375, 'war the oil': 966548, 'the oil amp': 862103, 'oil amp gas': 596603, 'amp gas sector': 53861, 'gas sector wa': 344088, 'sector wa showing': 744389, 'wa showing sign': 963220, 'sign of permanent': 769165, 'of permanent decline': 588052, 'permanent decline have': 652045, 'decline have they': 231335, 'have they forgot': 383088, 'they forgot about': 882134, 'forgot about the': 329393, 'it funny': 458188, 'say how': 738773, 'how carers': 407538, 'carers delivery': 164573, 'cleaner etc': 180776, 'all unskilled': 45323, 'risk our': 723806, '19 hmm': 7555, 'isn it funny': 454565, 'it funny how': 458190, 'funny how people': 341742, 'how people go': 408502, 'people go on': 648084, 'go on to': 353901, 'on to say': 604758, 'to say how': 913823, 'say how carers': 738774, 'how carers delivery': 407539, 'carers delivery driver': 164574, 'supermarket staff cleaner': 822826, 'staff cleaner etc': 792322, 'cleaner etc are': 180777, 'etc are all': 282416, 'are all unskilled': 84369, 'all unskilled worker': 45324, 'unskilled worker but': 943491, 'worker but now': 1006559, 'now you all': 576499, 'you all have': 1016885, 'all have to': 43064, 'have to rely': 383277, 'rely on to': 709656, 'on to risk': 604757, 'to risk our': 913602, 'risk our health': 723807, 'our health to': 623381, 'health to keep': 386920, 'you going through': 1018882, 'going through covid': 355498, 'covid 19 hmm': 213211, 'quyen': 695040, 'truong': 934228, 'weighs': 977684, 'stroock': 814250, 'quyen truong': 695041, 'truong weighs': 934229, 'weighs in': 977687, 'on discussion': 600339, 'discussion about': 245013, 'protect elderly': 684819, 'elderly consumer': 270633, 'consumer from': 197552, 'from fraud': 335555, 'fraud during': 331258, 'recent article': 703817, 'article read': 94436, 'here stroock': 393612, 'quyen truong weighs': 695042, 'truong weighs in': 934230, 'weighs in on': 977688, 'in on discussion': 426116, 'on discussion about': 600340, 'discussion about the': 245014, 'about the need': 26458, 'to protect elderly': 912301, 'protect elderly consumer': 684820, 'elderly consumer from': 270634, 'consumer from fraud': 197556, 'from fraud during': 335556, 'fraud during the': 331259, 'pandemic in recent': 635706, 'in recent article': 427314, 'recent article read': 703818, 'article read more': 94437, 'more here stroock': 539432, 'same nigerian': 733173, 'that standing': 846454, 'sun for': 818065, 'nigerian are': 562832, 'corona the': 204220, 'who send': 989593, 'you message': 1019841, 'message about': 529249, 'about religion': 26073, 'religion and': 709555, 'end it': 275854, 'with swearing': 1001102, 'swearing if': 830053, 'not forward': 569524, 'forward it': 329989, 'the same nigerian': 866264, 'same nigerian who': 733177, 'nigerian who believe': 562903, 'who believe that': 988312, 'believe that standing': 126351, 'that standing in': 846455, 'in the sun': 429584, 'the sun for': 868410, 'sun for three': 818068, 'for three hour': 327174, 'three hour will': 893956, 'hour will kill': 406100, 'kill the the': 474523, 'the the same': 869398, 'same nigerian are': 733174, 'nigerian are increasing': 562833, 'are increasing the': 87493, 'due to corona': 261742, 'to corona the': 903531, 'corona the same': 204224, 'nigerian who send': 562905, 'who send you': 989594, 'send you message': 749985, 'you message about': 1019842, 'message about religion': 529251, 'about religion and': 26074, 'religion and end': 709556, 'and end it': 62112, 'end it with': 275855, 'it with swearing': 462479, 'with swearing if': 1001103, 'swearing if you': 830054, 'do not forward': 249742, 'not forward it': 569525, 'fold': 312042, 'kes3': 473157, 'kes38': 473160, 'trying very': 934899, 'acquire protective': 29159, 'gear for': 344947, 'patient to': 644276, 'limit spread': 492497, 'some supplier': 784013, 'price ten': 676765, 'ten fold': 837779, 'fold surgical': 312059, 'mask used': 519469, 'cost kes3': 207991, 'kes3 each': 473158, 'each now': 264129, 'cheapest is': 174307, 'is kes38': 449183, 'hospital are trying': 404308, 'are trying very': 91222, 'trying very hard': 934900, 'very hard to': 955215, 'hard to acquire': 378048, 'to acquire protective': 900001, 'acquire protective gear': 29160, 'protective gear for': 685754, 'gear for healthcare': 344950, 'worker and for': 1006296, 'and for patient': 63153, 'for patient to': 324420, 'patient to limit': 644278, 'to limit spread': 909301, 'limit spread of': 492498, 'of 19 some': 579412, '19 some supplier': 10698, 'some supplier are': 784014, 'supplier are hoarding': 824495, 'are hoarding them': 87210, 'them and increasing': 875380, 'and increasing price': 65126, 'increasing price ten': 433681, 'price ten fold': 676766, 'ten fold surgical': 837781, 'fold surgical mask': 312060, 'surgical mask used': 828372, 'mask used to': 519471, 'used to cost': 950046, 'to cost kes3': 903597, 'cost kes3 each': 207992, 'kes3 each now': 473159, 'each now the': 264130, 'now the cheapest': 576033, 'the cheapest is': 850739, 'cheapest is kes38': 174308, 'damn straight': 225429, 'straight janitor': 812221, 'janitor grocery': 464551, 'personnel truck': 653166, 'driver cleaning': 259487, 'cleaning crew': 180927, 'crew and': 216678, 'professional are': 682403, 'true of': 933143, 'world thanks': 1010037, 'damn straight janitor': 225430, 'straight janitor grocery': 812222, 'janitor grocery store': 464552, 'store personnel truck': 809523, 'personnel truck driver': 653167, 'truck driver cleaning': 932768, 'driver cleaning crew': 259488, 'cleaning crew and': 180928, 'crew and most': 216680, 'most of all': 542540, 'of all medical': 579961, 'all medical professional': 43493, 'medical professional are': 526328, 'professional are the': 682406, 'are the true': 90924, 'the true of': 870055, 'true of this': 933144, 'of this world': 592075, 'this world thanks': 891518, 'world thanks to': 1010039, 'of you for': 593385, 'doing your job': 252885, 'potter': 667262, 'apothecary': 81659, 'peoria based': 650626, 'based potter': 111715, 'potter house': 667263, 'house apothecary': 406193, 'apothecary used': 81662, 'used their': 950020, 'their resource': 874561, 'for peoria': 324475, 'peoria police': 650631, 'and firefighter': 62918, 'firefighter thank': 308234, 'peoria based potter': 650627, 'based potter house': 111716, 'potter house apothecary': 667264, 'house apothecary used': 406194, 'apothecary used their': 81663, 'used their resource': 950021, 'their resource to': 874562, 'resource to make': 714910, 'sanitizer for peoria': 734919, 'for peoria police': 324476, 'peoria police and': 650632, 'police and firefighter': 662902, 'and firefighter thank': 62920, 'firefighter thank you': 308235, 'homebargains': 402596, 'ukgovernment': 938964, 'sainsburys telling': 731793, 'telling there': 837278, 'there over': 878910, '70 staff': 21842, 'with unpaid': 1001909, 'unpaid leave': 943027, 'leave they': 484995, 'only work': 611487, 'work day': 1005027, 'get by': 346727, 'by disgusting': 152361, 'disgusting if': 245414, 'if homebargains': 414240, 'homebargains can': 402597, 'you supermarket': 1021475, 'supermarket convid19uk': 819777, 'convid19uk ukgovernment': 202636, 'ukgovernment ssp': 938967, 'on sainsburys telling': 603259, 'sainsburys telling there': 731795, 'telling there over': 837279, 'there over 70': 878911, 'over 70 staff': 629920, '70 staff to': 21843, 'staff to stay': 792997, 'home with unpaid': 402543, 'with unpaid leave': 1001910, 'unpaid leave they': 943029, 'leave they only': 484996, 'they only work': 882831, 'only work day': 611489, 'work day to': 1005030, 'day to get': 228566, 'to get by': 906432, 'get by disgusting': 346730, 'by disgusting if': 152362, 'disgusting if homebargains': 245415, 'if homebargains can': 414241, 'homebargains can do': 402598, 'do it so': 249512, 'it so can': 461101, 'so can you': 776734, 'can you supermarket': 160340, 'you supermarket convid19uk': 1021478, 'supermarket convid19uk ukgovernment': 819779, 'convid19uk ukgovernment ssp': 202637, 'dejav': 232600, 'store tell': 810517, 'tell clerk': 836928, 'clerk if': 181719, 'you back': 1017365, 'back up': 107424, 'come closer': 187260, 'closer to': 183514, 'grab my': 361509, 'my order': 549607, 'order clerk': 618134, 'clerk step': 181769, 'step back': 799502, 'back customer': 106943, 'customer wow': 223119, 'wow dejav': 1012546, 'dejav of': 232601, 'my dating': 547918, 'dating life': 226801, 'life socialdistanacing': 489055, 'customer at retail': 222145, 'retail store tell': 718708, 'store tell clerk': 810518, 'tell clerk if': 836930, 'clerk if you': 181721, 'if you back': 415397, 'you back up': 1017369, 'back up can': 107426, 'up can come': 944572, 'can come closer': 157931, 'come closer to': 187261, 'closer to grab': 183518, 'to grab my': 906966, 'grab my order': 361510, 'my order clerk': 549609, 'order clerk step': 618135, 'clerk step back': 181770, 'step back customer': 799504, 'back customer wow': 106944, 'customer wow dejav': 223120, 'wow dejav of': 1012547, 'dejav of my': 232602, 'of my dating': 586753, 'my dating life': 547919, 'dating life socialdistanacing': 226802, 'think ve': 885736, 'read such': 700561, 'such disappointing': 816450, 'disappointing headline': 244138, 'headline in': 385998, 'time people': 897462, 'better if': 128336, 'can during': 158173, 'pandemic give': 635490, 'don think ve': 253986, 'think ve read': 885742, 've read such': 953477, 'read such disappointing': 700562, 'such disappointing headline': 816451, 'disappointing headline in': 244139, 'headline in long': 385999, 'long time people': 501775, 'time people can': 897465, 'people can do': 647387, 'can do so': 158117, 'do so much': 250099, 'much better if': 544757, 'better if you': 128337, 'you can during': 1017667, 'can during the': 158174, 'the pandemic give': 862974, 'pandemic give to': 635491, 'give to your': 350798, 'ditto': 248460, 'utensil': 951219, 'eternal': 282930, 'work am': 1004736, 'am fortunate': 50058, 'fortunate that': 329899, 'have job': 381164, 'job that': 466179, 'do from': 249323, 'mother speak': 543168, 'her almost': 391835, 'almost every': 46615, 'day friend': 227651, 'friend ditto': 333577, 'ditto online': 248461, 'become obsessed': 120082, 'with whether': 1002084, 'grocery cooking': 364406, 'cooking utensil': 202928, 'utensil etc': 951224, 'the eternal': 854541, 'eternal hope': 282933, 'work am fortunate': 1004737, 'am fortunate that': 50060, 'fortunate that have': 329900, 'that have job': 844218, 'have job that': 381177, 'job that can': 466181, 'that can do': 843103, 'can do from': 158104, 'do from home': 249324, 'from home my': 335883, 'home my mother': 401641, 'my mother speak': 549338, 'mother speak to': 543169, 'speak to her': 787712, 'to her almost': 907689, 'her almost every': 391836, 'almost every day': 46621, 'every day friend': 285807, 'day friend ditto': 227652, 'friend ditto online': 333578, 'ditto online shopping': 248462, 'online shopping to': 609313, 'shopping to become': 764168, 'to become obsessed': 901681, 'become obsessed with': 120083, 'obsessed with whether': 578674, 'with whether it': 1002085, 'whether it grocery': 985525, 'it grocery cooking': 458354, 'grocery cooking utensil': 364407, 'cooking utensil etc': 202929, 'utensil etc the': 951225, 'etc the eternal': 282796, 'the eternal hope': 854542, 'eternal hope that': 282934, 'whitehouse american': 987943, 'american should': 52191, 'should avoid': 765530, 'avoid groceryshopping': 105135, 'groceryshopping hit': 366266, 'hit apex': 398146, 'apex via': 81453, 'via this': 956323, 'might mean': 531078, 'mean the': 524691, 'whitehouse american should': 987944, 'american should avoid': 52192, 'should avoid groceryshopping': 765531, 'avoid groceryshopping hit': 105136, 'groceryshopping hit apex': 366267, 'hit apex via': 398147, 'apex via this': 81454, 'via this might': 956325, 'this might mean': 888853, 'might mean the': 531079, 'mean the toiletpaper': 524699, 'the toiletpaper shortage': 869735, 'toiletpaper shortage will': 922476, 'shortage will end': 765309, 'begged': 123475, 'theyre': 883964, 'sue': 817155, 'lmao my': 497158, 'job isn': 465913, 'even practicing': 284483, 'distancing 6ft': 246943, 'apart not': 81306, 'only that': 611253, 'time off': 897380, 'off is': 593932, 'is three': 453143, 'three day': 893904, 'no pay': 565084, 'pay wow': 645238, 'wow thanks': 1012597, 'thanks also': 842012, 'also union': 49045, 'union begged': 941871, 'begged the': 123478, 'put hand': 690594, 'sanitizer everywhere': 734840, 'everywhere theyre': 288272, 'theyre greedy': 883967, 'and inconsiderate': 65097, 'inconsiderate will': 432570, 'will sue': 995017, 'sue if': 817158, 'lmao my job': 497159, 'my job isn': 548918, 'job isn even': 465914, 'isn even practicing': 454499, 'even practicing social': 284484, 'social distancing 6ft': 779544, 'distancing 6ft apart': 246944, '6ft apart not': 21596, 'apart not only': 81307, 'not only that': 570833, 'only that our': 611255, 'that our time': 845599, 'our time off': 625147, 'time off is': 897383, 'off is three': 593933, 'is three day': 453144, 'three day with': 893921, 'day with no': 228780, 'with no pay': 999774, 'no pay wow': 565086, 'pay wow thanks': 645239, 'wow thanks also': 1012598, 'thanks also union': 842015, 'also union begged': 49046, 'union begged the': 941872, 'begged the company': 123479, 'the company to': 851356, 'company to put': 191238, 'to put hand': 912590, 'put hand sanitizer': 690596, 'hand sanitizer everywhere': 375390, 'sanitizer everywhere theyre': 734841, 'everywhere theyre greedy': 288273, 'theyre greedy and': 883968, 'greedy and inconsiderate': 363472, 'and inconsiderate will': 65098, 'inconsiderate will sue': 432571, 'will sue if': 995018, 'sue if get': 817159, 'if get sick': 414147, 'domestic steel': 253232, 'ha largely': 371097, 'largely remained': 479866, 'remained firm': 709928, 'firm till': 308436, 'till third': 896111, 'third week': 886112, 'march now': 515419, 'now appears': 574080, 'appears bleak': 82181, 'bleak lockdown': 132550, 'outlook for domestic': 629152, 'for domestic steel': 320814, 'domestic steel price': 253233, 'steel price which': 799356, 'which ha largely': 985889, 'ha largely remained': 371099, 'largely remained firm': 479867, 'remained firm till': 709929, 'firm till third': 308437, 'till third week': 896112, 'third week of': 886113, 'of march now': 586210, 'march now appears': 515420, 'now appears bleak': 574081, 'appears bleak lockdown': 82182, 'racial': 695229, 'the unfair': 870383, 'unfair racial': 941434, 'racial treatment': 695238, 'disease remember': 245218, 'that system': 846609, 'system political': 831292, 'political economic': 663641, 'health contributed': 386305, 'virus becoming': 957994, 'becoming pandemic': 120331, 'concern among': 192912, 'among people': 53044, 'coronavirus ha been': 206019, 'been the unfair': 122170, 'the unfair racial': 870385, 'unfair racial treatment': 941435, 'racial treatment of': 695239, 'treatment of the': 931113, 'the disease remember': 853372, 'disease remember that': 245219, 'remember that system': 710289, 'that system political': 846611, 'system political economic': 831293, 'political economic and': 663642, 'economic and health': 266980, 'and health contributed': 64352, 'health contributed to': 386306, 'the virus becoming': 870803, 'virus becoming pandemic': 957995, 'becoming pandemic and': 120332, 'pandemic and causing': 634863, 'and causing concern': 59645, 'causing concern among': 168010, 'concern among people': 192913, 'among people around': 53046, 'wewillgetthroughthis': 980800, 'at am': 97933, 'am this': 50497, 'morning trying': 541519, 'avoid other': 105199, 'other folk': 620229, 'folk nope': 312225, 'nope there': 566912, 'wa big': 961699, 'big line': 129853, 'line waiting': 493545, 'open shelf': 612493, 'shelf still': 757570, 'not stocked': 571738, 'stocked the': 803416, 'store limiting': 808742, 'limiting every': 492813, 'every item': 285958, 'to item': 908630, 'item only': 463522, 'only leaving': 610713, 'leaving house': 485092, 'supply wewillgetthroughthis': 826090, 'store at am': 806578, 'at am this': 97938, 'am this morning': 50498, 'this morning trying': 889034, 'morning trying to': 541520, 'to avoid other': 900920, 'avoid other folk': 105201, 'other folk nope': 620230, 'folk nope there': 312226, 'nope there wa': 566913, 'there wa big': 879232, 'wa big line': 961702, 'big line waiting': 129854, 'line waiting to': 493550, 'waiting to open': 964408, 'to open shelf': 911005, 'open shelf still': 612494, 'shelf still not': 757574, 'still not stocked': 800906, 'not stocked the': 571740, 'stocked the store': 803418, 'the store limiting': 868048, 'store limiting every': 808743, 'limiting every item': 492814, 'every item to': 285961, 'item to item': 463757, 'to item only': 908633, 'item only leaving': 463526, 'only leaving house': 610714, 'leaving house for': 485093, 'house for supply': 406310, 'for supply wewillgetthroughthis': 326060, 'ashtown': 95132, 'phoenix': 654854, 'nearly for': 553829, 'this tiny': 890718, 'tiny bottle': 898654, 'in ashtown': 420514, 'ashtown phoenix': 95133, 'phoenix park': 654863, 'nearly for this': 553830, 'for this tiny': 327077, 'this tiny bottle': 890719, 'tiny bottle of': 898655, 'sanitizer in ashtown': 735129, 'in ashtown phoenix': 420515, 'ashtown phoenix park': 95134, 'thread stayhomesavelives': 893603, 'stayhomesavelives we': 798489, 'told agree': 923518, 'agree but': 38596, 'but many': 146350, 'tried for': 931776, 'day not': 228024, 'been out': 121617, 'today am': 919176, 'am forced': 50054, 'forced out': 328589, 'told of': 923645, 'the highly': 857356, 'contagious nature': 200437, 'nature of': 552972, 'thread stayhomesavelives we': 893604, 'stayhomesavelives we are': 798490, 'are told agree': 91123, 'told agree but': 923519, 'agree but many': 38598, 'but many can': 146354, 'many can have': 513861, 'can have tried': 158592, 'have tried for': 383401, 'tried for food': 931779, 'delivery for the': 234033, 'last day not': 480181, 'day not been': 228025, 'not been out': 568513, 'been out in': 121621, 'out in day': 626374, 'in day but': 422007, 'day but today': 227412, 'but today am': 147599, 'today am forced': 919177, 'am forced out': 50055, 'forced out to': 328592, 'supermarket we are': 823741, 'are told of': 91125, 'told of the': 923646, 'of the highly': 591104, 'the highly contagious': 857357, 'highly contagious nature': 396048, 'contagious nature of': 200438, 'ate': 101714, 'post about': 665973, 'daughter having': 226856, 'having food': 384070, 'poisoning on': 662809, 'fb without': 300683, 'town flying': 927460, 'flying into': 311674, 'into panic': 442841, 'panic thinking': 638705, '19 she': 10440, 'she ate': 755869, 'ate some': 101729, 'pepperoni guy': 650656, 'even post about': 284480, 'post about my': 665979, 'about my daughter': 25762, 'my daughter having': 547926, 'daughter having food': 226857, 'having food poisoning': 384072, 'food poisoning on': 315880, 'poisoning on fb': 662810, 'on fb without': 600753, 'fb without people': 300684, 'my town flying': 550410, 'town flying into': 927461, 'flying into panic': 311675, 'into panic thinking': 442846, 'panic thinking it': 638706, 'covid 19 she': 213778, '19 she ate': 10441, 'she ate some': 755870, 'ate some bad': 101730, 'bad pepperoni guy': 107976, '14hrs': 3614, 'expressed': 293075, 'arriving': 93999, 'spaghetti': 787244, 'frontline staff': 338823, 'staff work': 793106, 'work upto': 1005955, 'upto 14hrs': 947922, '14hrs grocery': 3615, 'grocery often': 364764, 'often not': 596237, 'available by': 104276, 'by time': 154545, 'shop ha': 760249, 'ha real': 371637, 'real immediate': 701217, 'immediate impact': 416995, 'impact excitement': 417646, 'excitement expressed': 289585, 'expressed by': 293076, 'at central': 98218, 'central london': 169405, 'hospital when': 404711, 'when seen': 983982, 'seen arriving': 746954, 'arriving with': 94015, 'with spaghetti': 1000898, 'spaghetti egg': 787245, 'egg grocery': 269876, 'frontline staff work': 338834, 'staff work upto': 793109, 'work upto 14hrs': 1005956, 'upto 14hrs grocery': 947923, '14hrs grocery often': 3616, 'grocery often not': 364765, 'often not available': 596238, 'not available by': 568298, 'available by time': 104281, 'by time they': 154548, 'they get to': 882184, 'get to shop': 348490, 'to shop ha': 914462, 'shop ha real': 760255, 'ha real immediate': 371640, 'real immediate impact': 701218, 'immediate impact excitement': 416996, 'impact excitement expressed': 417647, 'excitement expressed by': 289586, 'expressed by member': 293077, 'of staff at': 590018, 'staff at central': 792231, 'at central london': 98219, 'central london hospital': 169406, 'london hospital when': 501093, 'hospital when seen': 404713, 'when seen arriving': 983983, 'seen arriving with': 746955, 'arriving with spaghetti': 94016, 'with spaghetti egg': 1000899, 'spaghetti egg grocery': 787246, 'spencer': 788536, 'some 100m': 782237, '100m in': 2193, 'in clothing': 421520, 'clothing order': 184272, 'order have': 618284, 'been cancelled': 120783, 'cancelled by': 161097, 'by mark': 153172, 'mark spencer': 515824, 'spencer the': 788543, 'chain prepares': 171006, 'for store': 325926, 'also frozen': 48243, 'frozen all': 338950, 'all pay': 43930, 'and suspended': 72909, 'suspended all': 829600, 'essential spending': 281572, 'some 100m in': 782238, '100m in clothing': 2194, 'in clothing order': 421521, 'clothing order have': 184273, 'order have been': 618285, 'have been cancelled': 379485, 'been cancelled by': 120786, 'cancelled by mark': 161098, 'by mark spencer': 153174, 'mark spencer the': 515826, 'spencer the chain': 788544, 'the chain prepares': 850632, 'chain prepares for': 171007, 'prepares for store': 670311, 'for store closure': 325927, 'closure amid the': 183829, '19 the company': 11178, 'company ha also': 190705, 'ha also frozen': 369523, 'also frozen all': 48244, 'frozen all pay': 338951, 'all pay rise': 43931, 'pay rise and': 645093, 'rise and suspended': 722785, 'and suspended all': 72910, 'suspended all non': 829602, 'all non essential': 43650, 'non essential spending': 566360, 'mombasa': 535858, 'post in': 666166, 'in mombasa': 425393, 'mombasa crime': 535859, 'crime alert': 216768, 'alert epra': 41400, 'new post in': 559325, 'post in mombasa': 666168, 'in mombasa crime': 425394, 'mombasa crime alert': 535860, 'crime alert epra': 216769, 'alert epra to': 41401, 'xd': 1013800, 'taobao already': 834302, 'already doesn': 47297, 'doesn ship': 251941, 'my country': 547809, 'country xd': 211276, 'xd remember': 1013803, 'isn online': 454607, 'taobao already doesn': 834303, 'already doesn ship': 47298, 'doesn ship to': 251942, 'ship to my': 758724, 'to my country': 910385, 'my country xd': 547817, 'country xd remember': 211277, 'xd remember that': 1013804, 'remember that there': 710291, 'that there isn': 846900, 'there isn online': 878671, 'isn online shopping': 454608, 'online shopping due': 609104, 'magically': 508393, 'not seeing': 571492, 'seeing much': 746371, 'much appreciation': 544726, 'farmer during': 299346, 'crisis most': 217735, 'think fruit': 885255, 'veg milk': 953764, 'meat magically': 525645, 'magically appears': 508396, 'appears on': 82196, 'shelf it': 757248, 'doesn someone': 251945, 'someone ha': 784489, 'ha worked': 372490, 'worked bloody': 1006106, 'bloody hard': 133204, 'your plate': 1025325, 'not seeing much': 571498, 'seeing much appreciation': 746373, 'much appreciation for': 544727, 'appreciation for farmer': 82877, 'for farmer during': 321403, 'farmer during this': 299350, 'this crisis most': 887066, 'crisis most people': 217736, 'most people think': 542627, 'people think fruit': 649831, 'think fruit veg': 885256, 'fruit veg milk': 339168, 'veg milk and': 953765, 'milk and meat': 531563, 'and meat magically': 66857, 'meat magically appears': 525647, 'magically appears on': 508397, 'appears on the': 82197, 'supermarket shelf it': 822485, 'shelf it doesn': 757253, 'it doesn someone': 457641, 'doesn someone ha': 251946, 'someone ha worked': 784494, 'ha worked bloody': 372492, 'worked bloody hard': 1006107, 'bloody hard to': 133205, 'get food on': 347056, 'food on your': 315611, 'on your plate': 605490, 'stabilized': 791869, 'the crypto': 852548, 'crypto market': 219953, 'market crashed': 516252, 'crashed last': 215076, 'month when': 538113, 'pandemic began': 634995, 'began it': 123397, 'it sweep': 461404, 'sweep through': 830173, 'the coin': 851138, 'coin price': 185642, 'have since': 382563, 'since stabilized': 770834, 'stabilized rakamoto': 791872, 'rakamoto saturdaythoughts': 696201, 'saturdaythoughts blockchain': 737111, 'the crypto market': 852550, 'crypto market crashed': 219954, 'market crashed last': 516253, 'crashed last month': 215077, 'last month when': 480346, 'month when the': 538116, 'when the pandemic': 984183, 'the pandemic began': 862918, 'pandemic began it': 634997, 'began it sweep': 123400, 'it sweep through': 461406, 'sweep through the': 830174, 'through the coin': 894725, 'the coin price': 851139, 'coin price have': 185643, 'price have since': 674459, 'have since stabilized': 382565, 'since stabilized rakamoto': 770835, 'stabilized rakamoto saturdaythoughts': 791873, 'rakamoto saturdaythoughts blockchain': 696202, 'saturdaythoughts blockchain crypto': 737112, 'randburg': 696591, '116': 2669, 'coronoavirus': 207146, 'woman doe': 1003471, 'doe her': 251410, 'in randburg': 427245, 'randburg south': 696592, 'africa now': 35113, 'ha 116': 369394, '116 confirmed': 2672, 'of 31': 579569, '31 new': 17597, 'case since': 166011, 'since tuesday': 770952, 'tuesday in': 935157, 'in total': 430216, 'total 14': 926119, '14 local': 3490, 'local transmission': 498659, 'transmission case': 929735, 'case had': 165759, 'been reported': 121824, 'reported coronoavirus': 712479, 'woman doe her': 1003472, 'doe her shopping': 251411, 'her shopping at': 392370, 'shopping at local': 762103, 'supermarket in randburg': 820964, 'in randburg south': 427246, 'randburg south africa': 696593, 'south africa now': 786656, 'africa now ha': 35114, 'now ha 116': 574838, 'ha 116 confirmed': 369395, '116 confirmed case': 2673, '19 an increase': 4973, 'an increase of': 56239, 'increase of 31': 432934, 'of 31 new': 579570, '31 new case': 17598, 'new case since': 558467, 'case since tuesday': 166012, 'since tuesday in': 770953, 'tuesday in total': 935158, 'in total 14': 430217, 'total 14 local': 926120, '14 local transmission': 3491, 'local transmission case': 498660, 'transmission case had': 929736, 'case had been': 165760, 'had been reported': 372908, 'been reported coronoavirus': 121830, 'behavioral': 124329, 'data reveals': 226384, 'reveals behavioral': 720303, 'behavioral impact': 124334, 'brand consumer': 137806, 'consumer relationship': 198682, 'relationship during': 708693, 'data reveals behavioral': 226385, 'reveals behavioral impact': 720304, 'behavioral impact of': 124335, 'impact of brand': 417754, 'of brand consumer': 580826, 'brand consumer relationship': 137808, 'consumer relationship during': 198683, 'relationship during covid': 708694, 'harvey': 378664, 'westbank': 980564, 'goody': 358113, 'pec': 646177, 'we completed': 971160, 'completed five': 192198, 'five below': 309587, 'below in': 126671, 'in harvey': 423562, 'harvey on': 378676, 'the westbank': 871402, 'westbank shout': 980565, 'our awesome': 622154, 'awesome repeat': 106194, 'repeat client': 711503, 'client retail': 182083, 'retail when': 718846, 'shopping restriction': 763747, 'restriction are': 717216, 'are lifted': 87784, 'lifted from': 489486, '19 reward': 10219, 'reward yourself': 720802, 'yourself with': 1026760, 'some goody': 782977, 'goody from': 358114, 'new store': 559664, 'store pec': 809481, 'pec construction': 646178, 'earlier this month': 264493, 'month we completed': 538105, 'we completed five': 971161, 'completed five below': 192199, 'five below in': 309589, 'below in harvey': 126672, 'in harvey on': 423563, 'harvey on the': 378677, 'on the westbank': 604448, 'the westbank shout': 871403, 'westbank shout out': 980566, 'out to our': 627667, 'to our awesome': 911152, 'our awesome repeat': 622156, 'awesome repeat client': 106195, 'repeat client retail': 711504, 'client retail when': 182084, 'retail when the': 718847, 'when the shopping': 984197, 'the shopping restriction': 867073, 'shopping restriction are': 763748, 'restriction are lifted': 717221, 'are lifted from': 87785, 'lifted from covid': 489487, 'covid 19 reward': 213713, '19 reward yourself': 10220, 'reward yourself with': 720803, 'yourself with some': 1026763, 'with some goody': 1000847, 'some goody from': 782978, 'goody from their': 358115, 'from their new': 337944, 'their new store': 874053, 'new store pec': 559669, 'store pec construction': 809482, 'pairing': 634353, 'lockdownextension': 500274, 'pairing my': 634354, 'store mask': 808913, 'with cute': 997908, 'cute shirt': 223669, 'shirt time': 759009, 'changed wednesdaywisdom': 172596, 'wednesdaywisdom lockdownextension': 975740, 'lockdownextension 19': 500275, 'pairing my grocery': 634355, 'grocery store mask': 365555, 'store mask with': 808915, 'mask with cute': 519580, 'with cute shirt': 997909, 'cute shirt time': 223670, 'shirt time have': 759010, 'time have changed': 896892, 'have changed wednesdaywisdom': 379948, 'changed wednesdaywisdom lockdownextension': 172597, 'wednesdaywisdom lockdownextension 19': 975741, 'protection in response': 685487, 'lyn88': 507113, 'sell certified': 748662, 'certified n95': 170245, 'n95 disposable': 551168, 'disposable mask': 246260, 'price free': 674096, 'free shipping': 332152, 'shipping worldwide': 758950, 'worldwide please': 1010406, 'out register': 627098, 'register with': 707629, 'with code': 997684, 'code lyn88': 185378, 'lyn88 to': 507114, 'get cash': 346746, 'cash coupon': 166204, 'coupon which': 211771, 'which you': 986530, 'use for': 949216, 'order corona': 618151, 'corona mask': 204059, 'mask facemasks': 518643, 'facemasks n95': 295154, 'we sell certified': 973193, 'sell certified n95': 748663, 'certified n95 disposable': 170246, 'n95 disposable mask': 551169, 'disposable mask at': 246262, 'mask at very': 518435, 'reasonable price free': 703120, 'price free shipping': 674099, 'free shipping worldwide': 332165, 'shipping worldwide please': 758953, 'worldwide please check': 1010407, 'check out register': 174574, 'out register with': 627100, 'register with code': 707630, 'with code lyn88': 997686, 'code lyn88 to': 185379, 'lyn88 to get': 507115, 'to get cash': 906434, 'get cash coupon': 346747, 'cash coupon which': 166205, 'coupon which you': 211772, 'which you can': 986531, 'can use for': 160092, 'use for your': 949224, 'for your order': 328184, 'your order corona': 1025100, 'order corona mask': 618152, 'corona mask facemasks': 204060, 'mask facemasks n95': 518644, 'naming': 551752, 'obscene': 578507, 'with store': 1000989, 'store raising': 809730, 'free market': 331948, 'market there': 517204, 'also nothing': 48580, 'with naming': 999672, 'naming and': 551753, 'and shaming': 71377, 'shaming store': 754762, 'that raise': 845932, 'by obscene': 153385, 'obscene amount': 578510, 'amount on': 53269, 'item solely': 463653, 'solely to': 781872, 'profit customer': 682704, 'customer may': 222596, 'may choose': 521084, 'business elsewhere': 143694, 'is nothing wrong': 450243, 'wrong with store': 1013163, 'with store raising': 1000995, 'store raising price': 809731, 'raising price but': 696109, 'price but in': 672977, 'but in free': 146025, 'in free market': 423100, 'free market there': 331956, 'market there is': 517206, 'is also nothing': 445569, 'also nothing wrong': 48581, 'wrong with naming': 1013156, 'with naming and': 999673, 'naming and shaming': 551754, 'and shaming store': 71379, 'shaming store that': 754763, 'store that raise': 810566, 'that raise price': 845933, 'raise price by': 695909, 'price by obscene': 673028, 'by obscene amount': 153386, 'obscene amount on': 578512, 'amount on essential': 53271, 'on essential item': 600589, 'essential item solely': 281228, 'item solely to': 463654, 'solely to make': 781874, 'make profit customer': 510361, 'profit customer may': 682706, 'customer may choose': 222598, 'may choose to': 521085, 'choose to take': 177918, 'take their business': 832688, 'their business elsewhere': 872679, 'spglobal': 789196, 'platts': 659085, 'argo': 92658, 'oversupplied': 631567, 'sophie': 785963, 'spglobal platts': 789197, 'platts valued': 659090, 'valued the': 952265, 'chicago argo': 175646, 'argo terminal': 92671, 'terminal market': 838364, 'market at': 516041, 'at 99': 97816, 'lowest value': 506240, 'value on': 952174, 'on record': 603097, 'demand fear': 235331, 'fear falling': 301108, 'falling gasoline': 297275, 'price put': 676035, 'put pressure': 690784, 'an oversupplied': 56760, 'oversupplied ethanol': 631568, 'ethanol market': 282990, 'market sophie': 517084, 'sophie sp': 785967, 'sp global': 787009, 'global platts': 352130, 'spglobal platts valued': 789199, 'platts valued the': 659091, 'valued the chicago': 952266, 'the chicago argo': 850802, 'chicago argo terminal': 175647, 'argo terminal market': 92672, 'terminal market at': 838365, 'market at 99': 516042, 'at 99 cent': 97818, 'the lowest value': 859824, 'lowest value on': 506242, 'value on record': 952175, 'on record demand': 603100, 'record demand fear': 704938, 'demand fear falling': 235332, 'fear falling gasoline': 301109, 'falling gasoline price': 297276, 'gasoline price put': 344267, 'price put pressure': 676037, 'put pressure on': 690785, 'pressure on an': 671200, 'on an oversupplied': 599336, 'an oversupplied ethanol': 56761, 'oversupplied ethanol market': 631569, 'ethanol market sophie': 282992, 'market sophie sp': 517086, 'sophie sp global': 785968, 'sp global platts': 787010, 'adobe': 32650, 'clickandcollect': 181967, 'phyigital': 655355, 'adobe ha': 32654, 'ha found': 370671, 'found that': 330391, '19 disease': 6563, 'disease online': 245195, 'increased including': 433352, 'including buy': 431897, 'online pickup': 608754, 'pickup in': 655974, 'store clickandcollect': 807042, 'clickandcollect ecommerce': 181968, 'ecommerce phyigital': 266832, 'phyigital logistics': 655356, 'logistics supplychain': 500803, 'adobe ha found': 32655, 'ha found that': 370676, 'found that due': 330399, 'covid 19 disease': 212960, '19 disease online': 6565, 'disease online shopping': 245196, 'shopping ha increased': 762827, 'ha increased including': 370949, 'increased including buy': 433353, 'including buy online': 431898, 'buy online pickup': 149049, 'online pickup in': 608757, 'pickup in store': 655977, 'in store clickandcollect': 428394, 'store clickandcollect ecommerce': 807043, 'clickandcollect ecommerce phyigital': 181969, 'ecommerce phyigital logistics': 266833, 'phyigital logistics supplychain': 655357, 'guy going': 369006, 'going crazy': 355093, 'crazy so': 215419, 'so tired': 778527, 'that cannot': 843135, 'anything cannot': 80705, 'job no': 466020, 'money anymore': 536610, 'guy going crazy': 369007, 'going crazy so': 355101, 'crazy so tired': 215421, 'so tired of': 778530, 'tired of being': 899040, 'of being at': 580634, 'being at home': 124877, 'home that cannot': 402215, 'that cannot do': 843139, 'cannot do anything': 161756, 'do anything cannot': 249088, 'anything cannot even': 80706, 'cannot even go': 161794, 'work and cannot': 1004766, 'cannot shop online': 162094, 'shop online because': 760563, 'online because do': 607917, 'not have job': 569846, 'have job no': 381174, 'job no money': 466023, 'no money anymore': 564779, 'outweigh': 629723, 'absurdity': 27515, 'captain log': 162920, 'log socialdistancing': 500622, 'day 26': 227131, 'what point': 982037, 'point doe': 662465, 'my desire': 547983, 'to bake': 901005, 'bake but': 108742, 'still avoid': 800231, 'store outweigh': 809412, 'outweigh the': 629724, 'the absurdity': 848261, 'absurdity of': 27516, 'of ordering': 587344, 'ordering 50': 618938, '50 pound': 19820, 'pound bag': 667360, 'captain log socialdistancing': 162922, 'log socialdistancing day': 500623, 'socialdistancing day 26': 780310, 'day 26 at': 227132, '26 at what': 16154, 'at what point': 101531, 'what point doe': 982039, 'point doe my': 662466, 'doe my desire': 251459, 'my desire to': 547984, 'desire to bake': 238425, 'to bake but': 901006, 'bake but still': 108743, 'but still avoid': 147156, 'still avoid the': 800233, 'avoid the grocery': 105323, 'grocery store outweigh': 365630, 'store outweigh the': 809413, 'outweigh the absurdity': 629725, 'the absurdity of': 848262, 'absurdity of ordering': 27517, 'of ordering 50': 587345, 'ordering 50 pound': 618939, '50 pound bag': 19821, 'pound bag of': 667361, 'on the internet': 604188, 'strategist': 812576, 'ellen': 271546, 'zentner': 1027384, 'investor reacted': 444197, 'reacted strongly': 700157, 'strongly price': 814235, 'worry disrupted': 1010690, 'disrupted market': 246404, 'market chief': 516165, 'chief cross': 175909, 'cross asset': 218984, 'asset strategist': 96474, 'strategist andrew': 812579, 'andrew sheet': 76198, 'and chief': 59821, 'economist ellen': 267544, 'ellen zentner': 271549, 'zentner debate': 1027385, 'debate what': 230323, 'investor reacted strongly': 444198, 'reacted strongly price': 700158, 'strongly price and': 814236, 'price and worry': 672585, 'and worry disrupted': 75908, 'worry disrupted market': 1010691, 'disrupted market chief': 246405, 'market chief cross': 516166, 'chief cross asset': 175910, 'cross asset strategist': 218985, 'asset strategist andrew': 96475, 'strategist andrew sheet': 812580, 'andrew sheet and': 76199, 'sheet and chief': 756594, 'and chief economist': 59822, 'chief economist ellen': 175916, 'economist ellen zentner': 267545, 'ellen zentner debate': 271550, 'zentner debate what': 1027386, 'debate what next': 230324, 'statist': 796566, 'this statist': 890306, 'statist probably': 796567, 'probably blame': 679222, 'blame capitalism': 132243, 'capitalism for': 162750, 'emptying shelf': 275276, 'shelf you': 757843, 'll hate': 496822, 'hate life': 378893, 'life when': 489201, 'when shit': 984012, 'shit really': 759200, 'really hit': 702297, 'isn replenished': 454644, 'replenished collapse': 711664, 'collapse what': 186071, 'this statist probably': 890307, 'statist probably blame': 796568, 'probably blame capitalism': 679223, 'blame capitalism for': 132244, 'capitalism for people': 162751, 'for people panic': 324459, 'and emptying shelf': 62090, 'emptying shelf you': 275282, 'shelf you ll': 757849, 'you ll hate': 1019656, 'll hate life': 496823, 'hate life when': 378894, 'life when shit': 489204, 'when shit really': 984013, 'shit really hit': 759202, 'really hit the': 702298, 'fan and food': 298500, 'and food isn': 63063, 'food isn replenished': 315168, 'isn replenished collapse': 454645, 'replenished collapse what': 711665, 'moisturize': 535607, 'irritation': 445115, 'dryness': 261345, 'it worldhealthday': 462539, 'worldhealthday so': 1010245, 'time especially': 896623, 'you wash': 1022173, 'thoroughly use': 891761, 'sanitizer moisturize': 735374, 'moisturize throughout': 535608, 'day read': 228268, 'read how': 700360, 'avoid irritation': 105162, 'irritation dryness': 445116, 'dryness on': 261346, 'it worldhealthday so': 462540, 'worldhealthday so we': 1010246, 'so we want': 778689, 'take this time': 832719, 'this time especially': 890634, 'time especially in': 896625, 'pandemic to remind': 636791, 'remind you wash': 710519, 'you wash your': 1022175, 'hand thoroughly use': 375851, 'thoroughly use hand': 891762, 'hand sanitizer moisturize': 375492, 'sanitizer moisturize throughout': 735375, 'moisturize throughout the': 535609, 'throughout the day': 894970, 'the day read': 852907, 'day read how': 228269, 'read how to': 700364, 'to avoid irritation': 900912, 'avoid irritation dryness': 105163, 'irritation dryness on': 445117, 'dryness on our': 261347, 'pvvnl': 691359, 'transition': 929663, 'the respected': 865604, 'respected consumer': 715101, 'of pvvnl': 588630, 'pvvnl are': 691360, 'are requested': 89606, 'requested to': 713256, 'pay their': 645156, 'outstanding electricity': 629695, 'electricity bill': 271151, 'bill also': 130495, 'also through': 49011, 'online facility': 608188, '19 corona': 6047, 'corona transition': 204259, 'transition please': 929680, 'please click': 659788, 'click on': 181930, 'all the respected': 44888, 'the respected consumer': 865605, 'respected consumer of': 715102, 'consumer of pvvnl': 198249, 'of pvvnl are': 588631, 'pvvnl are requested': 691361, 'are requested to': 89607, 'requested to pay': 713258, 'to pay their': 911565, 'pay their outstanding': 645160, 'their outstanding electricity': 874151, 'outstanding electricity bill': 629696, 'electricity bill also': 271152, 'bill also through': 130496, 'also through online': 49012, 'through online facility': 894599, 'online facility in': 608189, 'facility in view': 295349, 'covid 19 corona': 212864, '19 corona transition': 6056, 'corona transition please': 204260, 'transition please click': 929681, 'please click on': 659791, 'click on this': 181936, 'country music': 210909, 'music star': 546338, 'paisley are': 634373, 'ensure nashville': 277989, 'nashville senior': 552026, 'senior community': 750262, 'is taken': 452526, 'country music star': 210910, 'music star brad': 546339, 'williams paisley are': 995448, 'paisley are doing': 634375, 'are doing their': 85930, 'their part to': 874252, 'part to ensure': 642463, 'to ensure nashville': 905174, 'ensure nashville senior': 277990, 'nashville senior community': 552027, 'senior community is': 750263, 'community is taken': 189936, 'is taken care': 452527, 'coloradocovid19': 186828, 'of since': 589739, 'home bare': 400759, 'bare shelf': 110945, 'an insight': 56362, 'into what': 443288, 'what your': 982704, 'neighbor might': 557053, 'be cooking': 114241, 'cooking right': 202902, 'via com': 955869, 'com coloradocovid19': 186926, 'time of since': 897360, 'of since we': 589740, 'stay home bare': 796941, 'home bare shelf': 400760, 'bare shelf at': 110946, 'the supermarket offer': 868723, 'supermarket offer you': 821711, 'offer you an': 594894, 'you an insight': 1016970, 'an insight into': 56364, 'insight into what': 439586, 'into what your': 443291, 'what your neighbor': 982715, 'your neighbor might': 1024958, 'neighbor might be': 557054, 'might be cooking': 530885, 'be cooking right': 114242, 'cooking right now': 202903, 'right now via': 722172, 'now via com': 576302, 'via com coloradocovid19': 955870, 'licked': 488216, 'beaut': 118657, 'lotion': 504429, 'this clown': 886790, 'clown licked': 184369, 'licked toilet': 488227, 'toilet bowl': 921133, 'bowl part': 136974, 'coronavirus challenge': 205635, 'challenge he': 171475, 'he now': 385263, 'other beaut': 619877, 'beaut licking': 118658, 'licking baby': 488234, 'baby lotion': 106654, 'lotion bottle': 504430, 'bottle in': 136242, 'supermarket arrested': 819204, 'and charged': 59749, 'charged under': 173419, 'the terrorism': 869308, 'this clown licked': 886791, 'clown licked toilet': 184370, 'licked toilet bowl': 488228, 'toilet bowl part': 921135, 'bowl part of': 136975, 'part of coronavirus': 642340, 'of coronavirus challenge': 581922, 'coronavirus challenge he': 205636, 'challenge he now': 171476, 'he now ha': 385264, 'now ha the': 574847, 'ha the other': 372218, 'the other beaut': 862512, 'other beaut licking': 619878, 'beaut licking baby': 118659, 'licking baby lotion': 488235, 'baby lotion bottle': 106655, 'lotion bottle in': 504431, 'bottle in supermarket': 136245, 'in supermarket arrested': 428560, 'supermarket arrested and': 819205, 'arrested and charged': 93815, 'and charged under': 59750, 'charged under the': 173420, 'under the terrorism': 940336, 'retailalert': 718914, 'retailalert must': 718915, 'read learning': 700398, 'learning from': 484208, 'from iga': 336006, 'iga china': 415680, 'china coronavirus': 176591, 'coronavirus experience': 205897, 'experience retail': 291464, 'retail china': 717955, 'china grocery': 176681, 'grocerystore dataanalytics': 366299, 'retailalert must read': 718916, 'must read learning': 546834, 'read learning from': 700399, 'learning from iga': 484209, 'from iga china': 336007, 'iga china coronavirus': 415681, 'china coronavirus experience': 176592, 'coronavirus experience retail': 205900, 'experience retail china': 291465, 'retail china grocery': 717957, 'china grocery supermarket': 176683, 'grocery supermarket grocerystore': 365998, 'supermarket grocerystore dataanalytics': 820591, 'february it': 301728, 'wa blessing': 961715, 'find an': 306772, 'an affordable': 55173, 'affordable place': 34863, 'to rent': 913231, 'rent then': 711191, 'work wa': 1005973, 'wa finished': 962135, 'finished had': 307904, 'had job': 373216, 'job offer': 466043, 'offer when': 594887, 'son food': 785373, 'food server': 316397, 'server their': 752009, 'job closed': 465743, 'closed could': 183055, 'on but': 599748, 'but seeing': 146990, 'seeing this': 746514, 'in writing': 430997, 'writing give': 1012905, 'attack any': 102084, 'any hell': 79312, 'lost my house': 503890, 'my house in': 548732, 'house in february': 406355, 'in february it': 422846, 'february it wa': 301730, 'it wa blessing': 462079, 'wa blessing to': 961716, 'blessing to find': 132653, 'to find an': 905878, 'find an affordable': 306773, 'an affordable place': 55174, 'affordable place to': 34864, 'place to rent': 657768, 'to rent then': 913235, 'rent then the': 711192, 'then the work': 877628, 'the work wa': 871743, 'work wa finished': 1005974, 'wa finished had': 962136, 'finished had job': 307905, 'had job offer': 373217, 'job offer when': 466046, 'offer when covid': 594888, '19 hit my': 7547, 'hit my son': 398334, 'my son food': 550154, 'son food server': 785374, 'food server their': 316398, 'server their job': 752010, 'their job closed': 873707, 'job closed could': 465744, 'closed could go': 183056, 'could go on': 209220, 'go on but': 353880, 'on but seeing': 599750, 'but seeing this': 146993, 'seeing this in': 746516, 'this in writing': 888061, 'in writing give': 430998, 'writing give me': 1012906, 'give me panic': 350579, 'me panic attack': 523318, 'panic attack any': 637370, 'attack any hell': 102085, 'onward': 611703, 'workingforyou': 1009084, 'uktruckdrivers': 939068, 'truckinaround': 932977, 'truckerslife': 932972, 'rdc': 698149, 'avonmouth': 105522, 'lorry after': 503331, 'after lorry': 35890, 'lorry making': 503348, 'chain delivery': 170639, 'for onward': 324131, 'onward delivery': 611706, 'supermarket workingforyou': 824130, 'workingforyou dontpanicbuy': 1009085, 'dontpanicbuy uktruckdrivers': 255388, 'uktruckdrivers truckinaround': 939069, 'truckinaround truckerslife': 932978, 'truckerslife lidl': 932973, 'lidl rdc': 488300, 'rdc avonmouth': 698150, 'lorry after lorry': 503332, 'after lorry making': 35891, 'lorry making supply': 503349, 'making supply chain': 511369, 'supply chain delivery': 824944, 'chain delivery for': 170641, 'delivery for onward': 234028, 'for onward delivery': 324132, 'onward delivery to': 611707, 'local supermarket workingforyou': 498621, 'supermarket workingforyou dontpanicbuy': 824131, 'workingforyou dontpanicbuy uktruckdrivers': 1009086, 'dontpanicbuy uktruckdrivers truckinaround': 255389, 'uktruckdrivers truckinaround truckerslife': 939070, 'truckinaround truckerslife lidl': 932979, 'truckerslife lidl rdc': 932974, 'lidl rdc avonmouth': 488301, 'tally': 834081, '288': 16444, '117': 2679, 'outbreak live': 628424, 'update india': 947035, 'india covid': 434368, '19 tally': 11035, 'tally at': 834082, 'at 288': 97565, '288 with': 16447, 'with 117': 996940, '117 death': 2682, 'death oil': 230149, 'price slip': 676471, 'slip after': 774006, 'after output': 36005, 'cut deal': 223290, 'deal delayed': 229376, 'coronavirus outbreak live': 206397, 'outbreak live update': 628425, 'live update india': 496098, 'update india covid': 947036, 'india covid 19': 434369, 'covid 19 tally': 213910, '19 tally at': 11036, 'tally at 288': 834083, 'at 288 with': 97566, '288 with 117': 16448, 'with 117 death': 996941, '117 death oil': 2683, 'death oil price': 230150, 'oil price slip': 597261, 'price slip after': 676472, 'slip after output': 774007, 'after output cut': 36006, 'output cut deal': 629250, 'cut deal delayed': 223293, 'wholesale egg': 990437, 'price triple': 677122, 'triple in': 932251, 'wholesale egg price': 990438, 'egg price triple': 269968, 'price triple in': 677123, 'triple in march': 932253, 'workout it': 1009166, 'only day': 610311, 'related measure': 708482, 'and already': 57933, 'already starting': 47679, 'go bit': 353376, 'bit stir': 131702, 'crazy food': 215287, 'is flying': 447847, 'off supermarket': 594203, 'child may': 176141, 'be driving': 114609, 'driving you': 260041, 'you nut': 1020164, 'free at home': 331665, 'at home workout': 99177, 'home workout it': 402568, 'workout it only': 1009167, 'it only day': 460094, 'only day off': 610315, 'off work from': 594412, 'work from the': 1005196, '19 related measure': 10055, 'related measure and': 708483, 'measure and already': 525098, 'and already starting': 57939, 'already starting to': 47680, 'starting to go': 795025, 'to go bit': 906777, 'go bit stir': 353377, 'bit stir crazy': 131703, 'stir crazy food': 801697, 'crazy food is': 215289, 'food is flying': 315122, 'is flying off': 447848, 'flying off supermarket': 311680, 'off supermarket shelf': 594207, 'shelf and your': 756779, 'and your child': 76067, 'your child may': 1023204, 'child may be': 176142, 'may be driving': 520976, 'be driving you': 114611, 'driving you nut': 260043, 'hindsight': 396856, '2020 in': 14387, 'in hindsight': 423706, 'hindsight will': 396857, 'known the': 477249, 'protecting your': 685251, 'own as': 631889, 'as no': 94779, 'no pun': 565247, 'intended toiletpaper': 441063, '2020 in hindsight': 14392, 'in hindsight will': 423707, 'hindsight will be': 396858, 'will be known': 992529, 'be known the': 115645, 'known the year': 477250, 'the year of': 872164, 'year of protecting': 1014789, 'of protecting your': 588551, 'protecting your own': 685255, 'your own as': 1025125, 'own as no': 631890, 'as no pun': 94780, 'no pun intended': 565248, 'pun intended toiletpaper': 689153, 'unintended': 941844, 'unintended consequence': 941845, 'ebrahim': 266570, 'patel': 643958, 'stern': 799919, '21daylockdown': 15087, 'industry ebrahim': 435796, 'ebrahim patel': 266571, 'patel issued': 643973, 'issued stern': 456095, 'stern warning': 799922, 'warning to': 967223, 'good necessary': 357430, 'or coronavirus': 614829, 'coronavirus 21daylockdown': 205442, 'minister of trade': 533432, 'of trade and': 592394, 'trade and industry': 928408, 'and industry ebrahim': 65179, 'industry ebrahim patel': 435797, 'ebrahim patel issued': 266573, 'patel issued stern': 643974, 'issued stern warning': 456096, 'stern warning to': 799923, 'warning to business': 967224, 'to business that': 902137, 'that are hiking': 842759, 'of good necessary': 584228, 'good necessary to': 357431, 'necessary to help': 554118, 'help people during': 390291, 'people during this': 647746, 'time of fighting': 897331, 'of fighting covid': 583505, '19 or coronavirus': 9016, 'or coronavirus 21daylockdown': 614830, 'spoken': 789758, 'just spoken': 469853, 'spoken to': 789761, 'local support': 498627, 'support group': 826550, 'have supermarket': 382851, 'delivery coming': 233806, 'saturday so': 737060, 'so willing': 778781, 'add up': 31526, 'help help': 389852, 'help this': 390737, 'online shopper': 608999, 've just spoken': 953311, 'just spoken to': 469854, 'spoken to my': 789764, 'my local support': 549146, 'local support group': 498628, 'support group to': 826554, 'group to tell': 366937, 'tell them have': 837097, 'them have supermarket': 875826, 'have supermarket delivery': 382853, 'supermarket delivery coming': 819917, 'delivery coming up': 233810, 'up on saturday': 945615, 'on saturday so': 603305, 'saturday so willing': 737061, 'so willing to': 778782, 'willing to add': 995461, 'to add up': 900072, 'add up to': 31528, 'up to essential': 946374, 'to essential item': 905259, 'essential item to': 281233, 'item to my': 463760, 'to my shopping': 910435, 'my shopping if': 550056, 'shopping if it': 762944, 'if it help': 414309, 'it help help': 458541, 'help help this': 389853, 'help this is': 390739, 'this is something': 888407, 'is something all': 452105, 'something all online': 784841, 'all online shopper': 43751, 'online shopper could': 609002, 'shopper could do': 761470, '5am': 20612, 'donut': 255413, 'jockopodcast': 466386, 'jockowillink': 466389, 'futureleaders': 342541, 'dadlife': 224439, 'mom went': 535833, 'at 5am': 97697, '5am we': 20617, 're eating': 698582, 'eating donut': 266195, 'donut and': 255414, 'and hunting': 64880, 'hunting for': 411414, 'while listening': 987008, 'podcast jockopodcast': 662292, 'jockopodcast jockowillink': 466387, 'jockowillink futureleaders': 466390, 'futureleaders dadlife': 342542, 'dadlife toiletpaper': 224440, 'mom went to': 535836, 'went to work': 979205, 'work at 5am': 1004856, 'at 5am we': 97699, '5am we re': 20618, 'we re eating': 972862, 're eating donut': 698583, 'eating donut and': 266196, 'donut and hunting': 255415, 'and hunting for': 64881, 'hunting for toilet': 411418, 'paper while listening': 641093, 'while listening to': 987009, 'listening to the': 494815, 'to the podcast': 916962, 'the podcast jockopodcast': 863895, 'podcast jockopodcast jockowillink': 662293, 'jockopodcast jockowillink futureleaders': 466388, 'jockowillink futureleaders dadlife': 466391, 'futureleaders dadlife toiletpaper': 342543, 'clash': 180121, 'idiocy': 413424, 'guise': 368594, 'proclaim': 680082, 'benzykalkoniumchloride': 127269, 'clash of': 180124, 'of republican': 588954, 'republican idiocy': 713037, 'idiocy versus': 413433, 'versus actually': 954939, 'actually just': 30858, 'just expert': 468683, 'expert continues': 291807, 'continues in': 201402, 'in guise': 423474, 'guise of': 368595, 'of ever': 583231, 'ever willing': 285599, 'to proclaim': 912177, 'proclaim his': 680083, 'his ignorance': 397531, 'ignorance benzykalkoniumchloride': 415746, 'benzykalkoniumchloride isn': 127270, 'isn effective': 454484, 'against cdc': 37358, 'cdc recommends': 168608, 'recommends soap': 704842, 'soap water': 779154, 'water or': 969092, 'or 60': 614209, 'clash of republican': 180126, 'of republican idiocy': 588956, 'republican idiocy versus': 713038, 'idiocy versus actually': 413434, 'versus actually just': 954940, 'actually just expert': 30859, 'just expert continues': 468684, 'expert continues in': 291808, 'continues in guise': 201404, 'in guise of': 423475, 'guise of ever': 368598, 'of ever willing': 583232, 'ever willing to': 285600, 'willing to proclaim': 995475, 'to proclaim his': 912178, 'proclaim his ignorance': 680084, 'his ignorance benzykalkoniumchloride': 397532, 'ignorance benzykalkoniumchloride isn': 415747, 'benzykalkoniumchloride isn effective': 127271, 'isn effective against': 454485, 'effective against cdc': 269207, 'against cdc recommends': 37359, 'cdc recommends soap': 168611, 'recommends soap water': 704843, 'soap water or': 779160, 'water or 60': 969093, 'or 60 alcohol': 614210, 'one out': 606801, 'about much': 25759, 'much yet': 545485, 'yet probably': 1016205, 'probably all': 679197, 'all at': 42076, 'no one out': 564952, 'one out and': 606802, 'out and about': 625641, 'and about much': 57553, 'about much yet': 25760, 'much yet probably': 545486, 'yet probably all': 1016206, 'probably all at': 679198, 'all at the': 42081, 'the supermarket panic': 868742, 'it hilarious': 458591, 'hilarious except': 396435, 'except it': 289192, 'so scary': 778156, 'scary and': 741130, 'and tragic': 74356, 'tragic could': 929190, 'buy little': 148905, 'little le': 495435, 'le please': 483077, 'buying disrupts': 150192, 'disrupts food': 246567, 'distribution outbreak': 248188, 'guardian pandemic': 367901, 'it hilarious except': 458592, 'hilarious except it': 396436, 'except it so': 289193, 'it so scary': 461126, 'so scary and': 778158, 'scary and tragic': 741132, 'and tragic could': 74357, 'tragic could you': 929191, 'could you buy': 209843, 'you buy little': 1017576, 'buy little le': 148906, 'little le please': 495439, 'le please panic': 483078, 'please panic buying': 660274, 'panic buying disrupts': 637704, 'buying disrupts food': 150193, 'disrupts food distribution': 246568, 'food distribution outbreak': 314233, 'distribution outbreak the': 248189, 'outbreak the guardian': 628713, 'the guardian pandemic': 856911, 'hcin': 384658, 'spanning': 787428, 'hospitalisation': 404746, 'in hcin': 423590, 'hcin local': 384659, 'local arm': 497697, 'arm of': 92906, 'international consumer': 441776, 'finance provider': 306255, 'provider with': 686820, 'with operation': 999926, 'operation spanning': 613257, 'spanning over': 787429, 'over europe': 630192, 'and asia': 58421, 'asia ha': 95178, 'announced special': 77037, '19 hospitalisation': 7578, 'hospitalisation insurance': 404747, 'insurance cover': 440709, 'cover for': 212228, 'in hcin local': 423591, 'hcin local arm': 384660, 'local arm of': 497698, 'arm of the': 92908, 'of the international': 591153, 'the international consumer': 858365, 'international consumer finance': 441777, 'consumer finance provider': 197484, 'finance provider with': 306256, 'provider with operation': 686821, 'with operation spanning': 999927, 'operation spanning over': 613258, 'spanning over europe': 787430, 'over europe and': 630193, 'europe and asia': 283395, 'and asia ha': 58422, 'asia ha announced': 95179, 'ha announced special': 369565, 'announced special covid': 77038, 'covid 19 hospitalisation': 213221, '19 hospitalisation insurance': 7579, 'hospitalisation insurance cover': 404748, 'insurance cover for': 440710, 'cover for all': 212229, 'for all it': 319140, 'all it employee': 43268, 'irl': 444907, 'so irl': 777427, 'irl update': 444914, 'is scary': 451677, 'scary no': 741163, 'no shit': 565483, 'shit but': 759073, 'it terrifying': 461467, 'terrifying for': 838526, 'me since': 523471, 'since have': 770637, 'have elderly': 380419, 'elderly grandparent': 270691, 'grandparent do': 361968, 'for well': 327778, 'well baby': 978042, 'baby brother': 106579, 'brother with': 141113, 'with compromised': 997719, 'compromised immune': 192677, 'system not': 831259, 'but struggling': 147201, 'class since': 180258, 'are online': 88752, 'for once': 324070, 'so irl update': 777428, 'irl update covid': 444915, '19 is scary': 8042, 'is scary no': 451679, 'scary no shit': 741165, 'no shit but': 565484, 'shit but it': 759074, 'but it terrifying': 146169, 'it terrifying for': 461468, 'terrifying for me': 838527, 'for me since': 323336, 'me since have': 523472, 'since have elderly': 770639, 'have elderly grandparent': 380420, 'elderly grandparent do': 270692, 'grandparent do their': 361969, 'do their shopping': 250281, 'their shopping for': 874719, 'shopping for well': 762729, 'for well baby': 327779, 'well baby brother': 978043, 'baby brother with': 106580, 'brother with compromised': 141114, 'with compromised immune': 997720, 'compromised immune system': 192678, 'immune system not': 417346, 'system not only': 831260, 'only that but': 611254, 'that but struggling': 843067, 'but struggling with': 147202, 'struggling with my': 814543, 'with my college': 999615, 'my college class': 547743, 'college class since': 186607, 'class since we': 180259, 'since we are': 770975, 'we are online': 970646, 'are online for': 88753, 'online for once': 608233, 'breeding': 139281, 'been breeding': 120752, 'breeding ground': 139282, 'ground for': 366495, 'scammer and': 740523, 'with business': 997490, 'employee adjusting': 273517, 'change including': 172142, 'including working': 432254, 'more virtual': 540910, 'virtual meeting': 957756, 'meeting than': 527766, 'than before': 840390, 'have become': 379424, 'become key': 120044, 'key target': 473412, 'ha been breeding': 369733, 'been breeding ground': 120753, 'breeding ground for': 139283, 'ground for scammer': 366499, 'for scammer and': 325367, 'scammer and with': 740525, 'and with business': 75760, 'with business owner': 997495, 'business owner and': 144176, 'owner and their': 632380, 'and their employee': 73685, 'their employee adjusting': 873131, 'employee adjusting to': 273518, 'adjusting to change': 32365, 'to change including': 902608, 'change including working': 172143, 'including working at': 432255, 'home and more': 400665, 'and more virtual': 67227, 'more virtual meeting': 540911, 'virtual meeting than': 957758, 'meeting than before': 527767, 'than before they': 840397, 'before they have': 123217, 'they have become': 882294, 'have become key': 379440, 'become key target': 120045, 'the broke': 850044, 'broke out': 140851, 'out businessmen': 625782, 'businessmen doubled': 144768, 'amp sanitizers': 54440, 'sanitizers amp': 736189, 'amp doctor': 53658, 'doctor started': 251109, 'started giving': 794739, 'service free': 752402, 'free this': 332222, 'difference salute': 241871, 'all doctor': 42601, 'doctor for': 250917, 'life amp': 488469, 'amp being': 53443, 'being true': 125987, 'true soldier': 933165, 'soldier of': 781814, 'humanity in': 410737, 'this war': 891100, 'when the broke': 984130, 'the broke out': 850045, 'broke out businessmen': 140852, 'out businessmen doubled': 625783, 'businessmen doubled the': 144769, 'of mask amp': 586258, 'mask amp sanitizers': 518299, 'amp sanitizers amp': 54441, 'sanitizers amp doctor': 736190, 'amp doctor started': 53659, 'doctor started giving': 251110, 'started giving their': 794741, 'giving their service': 351417, 'their service free': 874660, 'service free this': 752404, 'free this is': 332223, 'is the difference': 452769, 'the difference salute': 853264, 'difference salute all': 241872, 'salute all doctor': 732848, 'all doctor for': 42603, 'doctor for risking': 250918, 'their life amp': 873821, 'life amp being': 488470, 'amp being true': 53445, 'being true soldier': 125988, 'true soldier of': 933166, 'soldier of humanity': 781815, 'of humanity in': 584887, 'humanity in this': 410740, 'in this war': 430042, 'condemn': 193354, 'considerably': 195192, 'stockpilinguk': 804133, 'panick buyer': 639189, 'buyer rightly': 149736, 'rightly being': 722461, 'also condemn': 48050, 'condemn all': 193355, 'shop out': 760633, 'there taking': 879125, 'situation by': 772208, 'by considerably': 152173, 'considerably inflating': 195199, 'price coronacrisisuk': 673253, 'coronacrisisuk stockpilinguk': 204909, 'panick buyer rightly': 639191, 'buyer rightly being': 149737, 'rightly being called': 722462, 'being called out': 124914, 'called out but': 156405, 'out but let': 625792, 'but let also': 146262, 'let also condemn': 486589, 'also condemn all': 48051, 'condemn all the': 193356, 'all the shop': 44906, 'the shop out': 867020, 'shop out there': 760634, 'out there taking': 627514, 'there taking advantage': 879126, 'advantage of this': 33037, 'of this situation': 592038, 'this situation by': 890173, 'situation by considerably': 772209, 'by considerably inflating': 152174, 'considerably inflating price': 195200, 'inflating price coronacrisisuk': 437113, 'price coronacrisisuk stockpilinguk': 673254, 'what crazy': 981284, 'crazy time': 215449, 'be high': 115241, 'high af': 394904, 'af in': 33954, 'what crazy time': 981285, 'crazy time to': 215456, 'to be high': 901304, 'be high af': 115242, 'high af in': 394906, 'af in the': 33955, 'disbelief': 244302, 'creep': 216615, 'just worse': 470347, 'worse am': 1010859, 'in disbelief': 422289, 'disbelief that': 244303, 'that amazon': 842621, 'everything that': 288023, 'need like': 555155, 'world coming': 1009437, 'to creep': 903734, 'creep me': 216618, 'the freak': 855760, 'freak out': 331512, 'out seriously': 627160, 'shopping is just': 763055, 'is just worse': 449158, 'just worse am': 470348, 'worse am in': 1010860, 'am in disbelief': 50135, 'in disbelief that': 422290, 'disbelief that amazon': 244304, 'that amazon is': 842623, 'amazon is out': 51004, 'of everything that': 583278, 'everything that need': 288031, 'that need like': 845302, 'need like what': 555157, 'like what is': 491794, 'what is this': 981733, 'is this world': 453134, 'this world coming': 891507, 'world coming to': 1009438, 'coming to people': 188225, 'to people are': 911613, 'people are beginning': 646934, 'beginning to creep': 123665, 'to creep me': 903735, 'creep me the': 216619, 'me the freak': 523645, 'the freak out': 855761, 'freak out seriously': 331514, 'reshoring': 714210, 'recognition': 704613, 'offshoring': 596138, 'makechinapay': 510780, 'reshoringusa': 714213, 'reshoring wa': 714211, '2018 is': 13884, 'enough global': 277450, 'pandemic corporate': 635235, 'corporate tax': 207346, 'tax regulatory': 835074, 'regulatory cut': 708171, 'cut rising': 223520, 'rising wage': 723323, 'wage price': 963943, 'increased recognition': 433448, 'recognition of': 704624, 'total cost': 926152, 'cost of': 208035, 'of offshoring': 587168, 'offshoring contributed': 596139, 'shift makechinapay': 758353, 'makechinapay reshoringusa': 510785, 'reshoring wa at': 714212, 'wa at record': 961606, 'at record level': 100269, 'level in 2018': 487591, 'in 2018 is': 419786, '2018 is it': 13885, 'is it enough': 449021, 'it enough global': 457824, 'enough global pandemic': 277451, 'global pandemic corporate': 352078, 'pandemic corporate tax': 635237, 'corporate tax regulatory': 207348, 'tax regulatory cut': 835075, 'regulatory cut rising': 708172, 'cut rising wage': 223521, 'rising wage price': 723324, 'wage price in': 963944, 'china increased recognition': 176735, 'increased recognition of': 433449, 'recognition of total': 704625, 'of total cost': 592329, 'total cost of': 926153, 'cost of offshoring': 208056, 'of offshoring contributed': 587169, 'offshoring contributed to': 596140, 'to the shift': 917057, 'the shift makechinapay': 866932, 'shift makechinapay reshoringusa': 758354, 'supermarket relatively': 822189, 'we impose': 972064, 'impose on': 419247, 'in supermarket relatively': 428655, 'supermarket relatively young': 822190, 'told me that': 923623, 'me that is': 523617, 'that is chinese': 844567, 'tariff we impose': 834627, 'we impose on': 972065, 'impose on them': 419248, 'america and the': 51453, 'and the american': 73242, 'the american medium': 848633, 'littlecaesers': 495660, 'unethical': 941333, 'douchebags': 256239, 'dickmove': 240492, 'it truth': 461872, 'truth checked': 934387, 'checked against': 174738, 'against recent': 37599, 'recent receipt': 703968, 'receipt actually': 703394, 'actually had': 30822, 'the ball': 849217, 'ball to': 109069, 'to proudly': 912363, 'proudly declare': 686074, 'declare they': 231208, 'they cut': 881861, 'cut delivery': 223299, 'delivery fee': 233990, 'fee during': 302159, 'during quarantine': 262932, 'quarantine crisis': 692114, 'crisis then': 218200, 'then they': 877649, 'they raised': 882974, 'price wtf': 677672, 'wtf littlecaesers': 1013300, 'littlecaesers unethical': 495661, 'unethical pricegouging': 941338, 'pricegouging douchebags': 677803, 'douchebags dickmove': 256241, 'it truth checked': 461873, 'truth checked against': 934388, 'checked against recent': 174739, 'against recent receipt': 37600, 'recent receipt actually': 703969, 'receipt actually had': 703395, 'actually had the': 30825, 'had the ball': 373608, 'the ball to': 849222, 'ball to proudly': 109071, 'to proudly declare': 912364, 'proudly declare they': 686075, 'declare they cut': 231209, 'they cut delivery': 881863, 'cut delivery fee': 223300, 'delivery fee during': 233991, 'fee during quarantine': 302160, 'during quarantine crisis': 262936, 'quarantine crisis then': 692115, 'crisis then they': 218201, 'then they raised': 877658, 'they raised their': 882975, 'their price wtf': 874441, 'price wtf littlecaesers': 677674, 'wtf littlecaesers unethical': 1013301, 'littlecaesers unethical pricegouging': 495662, 'unethical pricegouging douchebags': 941339, 'pricegouging douchebags dickmove': 677804, 'dontbeselfish': 255349, 'it tough': 461822, 'everyone right': 287321, 'not stock': 571728, 'buy if': 148804, 'need usual': 556152, 'usual there': 951034, 'be plenty': 116451, 'elderly dontbeselfish': 270666, 'it tough time': 461823, 'tough time for': 926851, 'for everyone right': 321232, 'everyone right now': 287322, 'now but please': 574290, 'do not stock': 249855, 'not stock up': 571737, 'stock up or': 803105, 'up or panic': 945684, 'panic buy if': 637491, 'buy if you': 148806, 'if you just': 415458, 'you just buy': 1019413, 'you need usual': 1020054, 'need usual there': 556153, 'usual there will': 951035, 'will be plenty': 992611, 'be plenty of': 116454, 'and essential supply': 62264, 'essential supply for': 281622, 'supply for everyone': 825263, 'for everyone think': 321244, 'everyone think of': 287477, 'of others especially': 587391, 'others especially the': 621381, 'especially the elderly': 280622, 'the elderly dontbeselfish': 854121, 'lsfo': 506353, 'to hurt': 908062, 'hurt bunker': 411549, 'bunker industry': 142683, 'industry lsfo': 435977, 'lsfo price': 506354, 'weak demand to': 974010, 'demand to hurt': 236399, 'to hurt bunker': 908063, 'hurt bunker industry': 411550, 'bunker industry lsfo': 142684, 'industry lsfo price': 435978, 'lsfo price fall': 506355, 'price fall 15': 673769, 'parallel': 641337, 'angsty': 76515, 'insanity': 439095, 'so blogging': 776625, 'blogging again': 133071, 'again to': 37232, 'cope gotta': 203315, 'gotta put': 359092, 'put that': 690844, 'that anxiety': 842670, 'anxiety shit': 78793, 'shit somewhere': 759222, 'somewhere weird': 785324, 'weird parallel': 977778, 'parallel between': 641338, 'between covid': 128753, 'and cancer': 59495, 'cancer moment': 161265, 'moment read': 536034, 'read me': 700412, 'me it': 523006, 'it guaranteed': 458362, 'guaranteed angsty': 367737, 'angsty fun': 76516, 'fun today': 341232, 'current insanity': 221237, 'insanity of': 439105, 'of takeout': 590578, 'takeout food': 833156, 'so blogging again': 776626, 'blogging again to': 133072, 'again to cope': 37234, 'to cope gotta': 903506, 'cope gotta put': 203316, 'gotta put that': 359093, 'put that anxiety': 690845, 'that anxiety shit': 842671, 'anxiety shit somewhere': 78794, 'shit somewhere weird': 759224, 'somewhere weird parallel': 785325, 'weird parallel between': 977779, 'parallel between covid': 641339, 'between covid 19': 128754, '19 panic and': 9538, 'panic and cancer': 637301, 'and cancer moment': 59496, 'cancer moment read': 161266, 'moment read me': 536035, 'read me it': 700413, 'me it guaranteed': 523012, 'it guaranteed angsty': 458363, 'guaranteed angsty fun': 367738, 'angsty fun today': 76517, 'fun today we': 341234, 'today we deal': 920472, 'the current insanity': 852642, 'current insanity of': 221238, 'insanity of takeout': 439107, 'of takeout food': 590579, 'echoing': 266638, 'major need': 509394, 'that hospital': 844368, 'are echoing': 86080, 'echoing ppe': 266639, 'is set': 451808, 'spike there': 789329, 'aren enough': 92394, 'ventilator bed': 954544, 'production over': 682178, 'life he': 488723, 'the major need': 859932, 'major need that': 509395, 'need that hospital': 555727, 'that hospital across': 844369, 'country are echoing': 210462, 'are echoing ppe': 86081, 'echoing ppe supply': 266640, 'covid is set': 214185, 'is set to': 451809, 'set to spike': 753536, 'to spike there': 915012, 'spike there aren': 789330, 'there aren enough': 878190, 'aren enough mask': 92396, 'mask glove ventilator': 518754, 'glove ventilator bed': 353002, 'ventilator bed etc': 954545, 'mass production over': 519841, 'production over week': 682179, 'over week ago': 630907, 'save life he': 737542, 'life he didn': 488724, 'our trucker': 625200, 'trucker and': 932894, 'ensure essential': 277925, 'for californian': 319879, 'californian during': 155641, 'this very': 890958, 'very challenging': 955047, 'to our trucker': 911250, 'our trucker and': 625201, 'trucker and grocery': 932896, 'store worker for': 811506, 'worker for all': 1006967, 'for all they': 319178, 'all they are': 45066, 'doing to ensure': 252790, 'to ensure essential': 905155, 'ensure essential supply': 277928, 'supply for californian': 825260, 'for californian during': 319880, 'californian during this': 155642, 'during this very': 263334, 'this very challenging': 890959, 'very challenging time': 955049, 'here coronamemes': 392899, 'coronamemes toiletpaper': 205073, 'end time are': 275998, 'time are here': 896326, 'are here coronamemes': 87116, 'here coronamemes toiletpaper': 392900, 'airport welcome': 40134, 'welcome center': 977875, 'center and': 169151, 'and train': 74363, 'train station': 929280, 'station are': 796342, 'feel the': 302878, 'reduced amount': 706025, 'airport welcome center': 40135, 'welcome center and': 977876, 'center and train': 169160, 'and train station': 74364, 'train station are': 929281, 'station are starting': 796344, 'starting to feel': 795023, 'to feel the': 905757, 'feel the impact': 302886, '19 with reduced': 12141, 'with reduced amount': 1000432, 'reduced amount of': 706026, 'amount of traffic': 53266, 'mkg': 534681, 'shortfall': 765361, 'translate': 929695, 'deficit': 232234, 'indian tea': 434893, 'tea export': 835354, 'export may': 292667, 'may decline': 521115, 'decline by': 231314, 'outbreak 20': 627940, '20 mkg': 13176, 'mkg shortfall': 534682, 'shortfall at': 765364, 'at last': 99416, 'year unit': 1015065, 'unit price': 942085, 'would translate': 1012340, 'translate into': 929700, 'into trade': 443253, 'trade deficit': 928480, 'deficit of': 232251, 'than 64': 840282, '64 million': 21315, 'indian tea export': 434894, 'tea export may': 835355, 'export may decline': 292668, 'may decline by': 521116, 'decline by up': 231318, 'up to over': 946412, 'to over covid': 911290, '19 outbreak 20': 9073, 'outbreak 20 mkg': 627941, '20 mkg shortfall': 13177, 'mkg shortfall at': 534683, 'shortfall at last': 765365, 'at last year': 99420, 'last year unit': 480741, 'year unit price': 1015066, 'unit price would': 942086, 'price would translate': 677668, 'would translate into': 1012341, 'translate into trade': 929702, 'into trade deficit': 443254, 'trade deficit of': 928481, 'deficit of more': 232252, 'more than 64': 540573, 'than 64 million': 840283, 'badly': 108136, 'so badly': 776585, 'badly want': 108175, 'then think': 877662, 'to packed': 911353, 'packed and': 633585, 'just dream': 468649, 'order pair': 618504, 'of shoe': 589614, 'so badly want': 776589, 'badly want to': 108176, 'to do some': 904557, 'shopping but then': 762257, 'but then think': 147452, 'then think if': 877663, 'think if people': 885292, 'if people who': 414636, 'people who would': 650363, 'would have to': 1011901, 'have to packed': 383259, 'to packed and': 911354, 'packed and deliver': 633586, 'and deliver it': 61081, 'deliver it so': 233153, 'it so just': 461117, 'so just dream': 777492, 'just dream of': 468650, 'the day can': 852873, 'day can order': 227426, 'can order pair': 159179, 'order pair of': 618505, 'pair of shoe': 634338, 'learn your': 484099, 'and important': 65028, 'yourself during': 1026587, 'during know': 262737, 'to paid': 911356, 'leave report': 484918, 'gouging understand': 359489, 'understand your': 940831, 'your civil': 1023229, 'right guard': 721918, 'guard against': 367771, 'against scam': 37611, 'scam stay': 740367, 'healthy learn': 387673, 'learn your right': 484101, 'your right and': 1025628, 'right and important': 721755, 'and important tip': 65031, 'important tip to': 419046, 'tip to protect': 898936, 'protect yourself during': 685089, 'yourself during know': 1026588, 'during know your': 262739, 'know your right': 477100, 'right to paid': 722349, 'to paid sick': 911357, 'sick leave report': 768504, 'leave report price': 484919, 'price gouging understand': 674338, 'gouging understand your': 359490, 'understand your civil': 940832, 'your civil right': 1023230, 'civil right guard': 179536, 'right guard against': 721919, 'guard against scam': 367773, 'against scam stay': 37612, 'scam stay healthy': 740368, 'stay healthy learn': 796907, 'healthy learn more': 387674, 'are overrun': 88931, 'overrun 19': 631445, '19 surge': 10984, 'surge demand': 828147, 'demand the': 236345, 'york time': 1016677, 'bank are overrun': 109652, 'are overrun 19': 88932, 'overrun 19 surge': 631446, '19 surge demand': 10985, 'surge demand the': 828149, 'demand the new': 236353, 'the new york': 861586, 'new york time': 559953, 'one two': 607317, 'two punch': 937170, 'new falling': 558721, 'price threaten': 676937, 'threaten iraq': 893755, 'one two punch': 607318, 'two punch of': 937171, 'punch of new': 689167, 'of new falling': 586966, 'new falling oil': 558722, 'oil price threaten': 597291, 'price threaten iraq': 676938, 'stellar': 799452, 'this community': 886815, 'community always': 189708, 'been stellar': 122036, 'stellar in': 799453, 'in how': 423873, 'they support': 883503, 'have le': 381271, 'this community always': 886816, 'community always ha': 189709, 'always ha been': 49590, 'ha been stellar': 369933, 'been stellar in': 122037, 'stellar in how': 799454, 'in how they': 423879, 'how they support': 408930, 'they support those': 883505, 'who have le': 988934, 'greatdepression': 363131, 'economicsinthenews': 267498, 'passionforeconomics': 643424, 'the imf': 857894, 'imf expects': 416899, 'expects to': 291121, 'to cause': 902530, 'worst economic': 1011172, 'downturn since': 257813, 'the greatdepression': 856740, 'greatdepression food': 363132, 'and unemployment': 74651, 'unemployment continues': 941188, 'rise stay': 723012, 'for economicsinthenews': 320950, 'economicsinthenews passionforeconomics': 267499, 'the imf expects': 857895, 'imf expects to': 416901, 'expects to cause': 291122, 'to cause the': 902543, 'cause the worst': 167767, 'the worst economic': 872048, 'worst economic downturn': 1011174, 'economic downturn since': 267080, 'downturn since the': 257815, 'since the greatdepression': 770884, 'the greatdepression food': 856741, 'greatdepression food delivery': 363133, 'food delivery company': 314116, 'delivery company are': 233813, 'company are struggling': 190452, 'demand and unemployment': 235007, 'and unemployment continues': 74652, 'unemployment continues to': 941189, 'to rise stay': 913578, 'rise stay tuned': 723013, 'tuned for economicsinthenews': 935435, 'for economicsinthenews passionforeconomics': 320951, 'polite': 663592, 'be polite': 116463, 'polite thank': 663606, 'bag your': 108464, 'own food': 631993, 'employee are some': 273629, 'of the hero': 591100, 'this pandemic be': 889370, 'pandemic be polite': 634976, 'be polite thank': 116465, 'polite thank them': 663607, 'thank them and': 841657, 'them and bag': 875372, 'and bag your': 58645, 'bag your own': 108465, 'your own food': 1025138, 'amarinder': 50604, 'malout': 511877, 'mukatsar': 545602, 'sahib': 730922, 'amarinder in': 50607, 'hometown malout': 402990, 'malout shri': 511878, 'shri mukatsar': 767675, 'mukatsar sahib': 545603, 'sahib all': 730923, 'medical store': 526413, 'closed they': 183383, 'saying police': 739661, 'police didn': 662980, 'didn allow': 240975, 'will give': 993527, 'give particular': 350639, 'particular time': 642644, 'of rush': 589183, 'rush of': 728312, 'amarinder in my': 50608, 'in my hometown': 425586, 'my hometown malout': 548701, 'hometown malout shri': 402991, 'malout shri mukatsar': 511879, 'shri mukatsar sahib': 767676, 'mukatsar sahib all': 545604, 'sahib all the': 730924, 'grocery and medical': 364246, 'and medical store': 66884, 'medical store are': 526415, 'store are closed': 806464, 'are closed they': 85371, 'closed they are': 183384, 'they are saying': 881396, 'are saying police': 89823, 'saying police didn': 739662, 'police didn allow': 662981, 'didn allow to': 240977, 'allow to open': 46102, 'to open they': 911008, 'open they said': 612570, 'said we will': 731574, 'we will give': 973866, 'will give particular': 993532, 'give particular time': 350640, 'particular time to': 642646, 'time to open': 898021, 'to open just': 910994, 'open just think': 612350, 'just think of': 470043, 'think of rush': 885458, 'of rush of': 589184, 'rush of people': 728316, 'people at that': 647182, 'at that time': 100863, 'bitch': 131739, 'these fuck': 880037, 'fuck keep': 339602, 'saying stay': 739687, 'distance bitch': 246672, 'bitch work': 131789, 'off have': 593885, 'have are': 379349, 'the scheduled': 866480, 'scheduled one': 741506, 'one got': 606361, 'got bill': 358437, 'school take': 741941, 'of myself': 586835, 'myself keep': 550899, 'keep clean': 471394, 'clean already': 180448, 'already fuck': 47365, 'off worry': 594427, 'about yourself': 27020, 'all these fuck': 45033, 'these fuck keep': 880038, 'fuck keep saying': 339603, 'keep saying stay': 471906, 'saying stay home': 739688, 'home and safe': 400682, 'and safe distance': 70708, 'safe distance bitch': 729585, 'distance bitch work': 246673, 'bitch work at': 131790, 'store the only': 810610, 'the only day': 862301, 'day off have': 228127, 'off have are': 593886, 'have are the': 379350, 'are the scheduled': 90904, 'the scheduled one': 866481, 'scheduled one got': 741507, 'one got bill': 606362, 'got bill to': 358438, 'bill to pay': 130703, 'to pay and': 911511, 'pay and school': 644740, 'and school take': 71079, 'school take care': 741942, 'care of myself': 164108, 'of myself keep': 586837, 'myself keep clean': 550900, 'keep clean already': 471395, 'clean already fuck': 180449, 'already fuck off': 47366, 'fuck off worry': 339618, 'off worry about': 594428, 'worry about yourself': 1010664, 'cltnews': 184393, 'ncnews': 553332, 'wccb': 970248, 'see full': 745140, 'the charlotte': 850708, 'charlotte area': 173762, 'offering delivery': 595066, 'the cltnews': 851075, 'cltnews ncnews': 184394, 'ncnews news': 553333, 'news shopping': 560789, 'shopping corona': 762397, 'corona health': 203982, 'health wccb': 386938, 'wccb clt': 970249, 'see full list': 745141, 'list of grocery': 494440, 'in the charlotte': 429065, 'the charlotte area': 850709, 'charlotte area that': 173763, 'area that are': 92214, 'that are offering': 842788, 'are offering delivery': 88662, 'offering delivery service': 595070, 'delivery service amid': 234424, 'service amid the': 752063, 'amid the cltnews': 52685, 'the cltnews ncnews': 851076, 'cltnews ncnews news': 184395, 'ncnews news shopping': 553334, 'news shopping corona': 560790, 'shopping corona health': 762398, 'corona health wccb': 203986, 'health wccb clt': 386939, 'read rt': 700535, 'rt plastic': 726796, 'bag provide': 108389, 'provide hygienic': 686354, 'hygienic and': 412207, 'and convenient': 60527, 'convenient way': 202430, 'to carry': 902464, 'carry our': 165133, 'grocery home': 364595, 'while protecting': 987180, 'protecting supermarket': 685230, 'customer from': 222394, 'please read rt': 660354, 'read rt plastic': 700536, 'rt plastic bag': 726797, 'plastic bag provide': 658809, 'bag provide hygienic': 108390, 'provide hygienic and': 686355, 'hygienic and convenient': 412208, 'and convenient way': 60530, 'convenient way to': 202431, 'way to carry': 969995, 'to carry our': 902469, 'carry our grocery': 165134, 'our grocery home': 623305, 'grocery home while': 364596, 'home while protecting': 402492, 'while protecting supermarket': 987181, 'protecting supermarket employee': 685231, 'supermarket employee and': 820108, 'and customer from': 60842, 'customer from covid': 222398, 'egede': 269736, 'egede season': 269737, 'season together': 743453, 'egede season together': 269738, 'season together we': 743454, 'stayhomesavelives please': 798430, 'cornwall we': 203763, 'cannot feed': 161821, 'feed you': 302406, 'you our': 1020247, 'nh is': 561994, 'needed for': 556355, 'local people': 498261, 'people thank': 649746, 'you nh': 1020096, 'nh carers': 561916, 'carers key': 164589, 'list go': 494342, 'on thank': 603924, 'stayhomesavelives please do': 798431, 'do not travel': 249873, 'not travel to': 572261, 'travel to cornwall': 930534, 'to cornwall we': 903523, 'cornwall we cannot': 203764, 'we cannot feed': 971059, 'cannot feed you': 161824, 'feed you our': 302408, 'you our nh': 1020251, 'our nh is': 624067, 'nh is needed': 561997, 'is needed for': 449861, 'needed for local': 556358, 'for local people': 323054, 'local people thank': 498264, 'people thank you': 649747, 'thank you nh': 841788, 'you nh carers': 1020097, 'nh carers key': 561917, 'carers key worker': 164590, 'key worker supermarket': 473516, 'staff delivery driver': 792358, 'driver the list': 259787, 'the list go': 859466, 'list go on': 494343, 'go on thank': 353896, 'on thank you': 603926, 'wa gone': 962222, 'gone all': 356194, 'you flour': 1018602, 'flour collector': 311088, 'collector are': 186549, 'bake their': 108752, 'own bread': 631905, 'bread now': 138545, 'all the flour': 44749, 'the flour wa': 855444, 'flour wa gone': 311184, 'wa gone all': 962224, 'gone all you': 356200, 'all you flour': 45539, 'you flour collector': 1018603, 'flour collector are': 311089, 'collector are going': 186550, 'going to bake': 355531, 'to bake their': 901007, 'bake their own': 108753, 'their own bread': 874163, 'own bread now': 631906, 'if alcohol': 413782, 'alcohol is': 41037, 'important content': 418771, 'content in': 200811, 'in sanitizer': 427691, 'sanitizer let': 735281, 'let alcohol': 486544, 'alcohol be': 40938, 'sold in': 781681, 'bulk because': 142244, 'sanitizer are': 734481, 'market curfew': 516263, 'if alcohol is': 413784, 'alcohol is the': 41038, 'most important content': 542398, 'important content in': 418772, 'content in sanitizer': 200813, 'in sanitizer let': 427692, 'sanitizer let alcohol': 735282, 'let alcohol be': 486545, 'alcohol be sold': 40939, 'be sold in': 117283, 'sold in bulk': 781684, 'in bulk because': 421029, 'bulk because the': 142245, 'because the sanitizer': 119643, 'the sanitizer are': 866350, 'sanitizer are not': 734484, 'not available in': 568303, 'available in the': 104455, 'the market curfew': 860101, 'productively': 682304, 'audience': 102902, 'good data': 356940, 'driven summary': 259364, 'way brand': 969502, 'brand can': 137780, 'can productively': 159313, 'productively engage': 682305, 'engage during': 276851, 'crisis from': 217400, 'from youtube': 338501, 'youtube creator': 1026897, 'creator inviting': 216243, 'inviting audience': 444287, 'audience to': 102916, 'by creating': 152255, 'creating content': 215989, 'content like': 200819, 'like bulk': 489937, 'bulk cook': 142292, 'cook with': 202790, 'or disinfect': 614989, 'disinfect with': 245582, 'good data driven': 356941, 'data driven summary': 226198, 'driven summary of': 259365, 'summary of way': 817941, 'of way brand': 592952, 'way brand can': 969503, 'brand can productively': 137791, 'can productively engage': 159314, 'productively engage during': 682306, 'engage during the': 276852, '19 crisis from': 6250, 'crisis from youtube': 217403, 'from youtube creator': 338502, 'youtube creator inviting': 1026898, 'creator inviting audience': 216244, 'inviting audience to': 444288, 'audience to join': 102917, 'to join by': 908675, 'join by creating': 466688, 'by creating content': 152256, 'creating content like': 215990, 'content like bulk': 200820, 'like bulk cook': 489938, 'bulk cook with': 142293, 'cook with me': 202791, 'with me or': 999448, 'me or disinfect': 523283, 'or disinfect with': 614990, 'disinfect with me': 245583, 'catherine': 167290, 'amato': 50617, 'wgbh': 980884, 'get chance': 346755, 'hear catherine': 387893, 'catherine amato': 167291, 'amato on': 50618, 'on boston': 599674, 'boston public': 135801, 'public radio': 688257, 'radio yesterday': 695468, 'yesterday well': 1015942, 'well you': 978775, 'can listen': 158886, 'to yesterday': 918878, 'yesterday interview': 1015780, 'interview online': 442228, 'at wgbh': 101516, 'wgbh tune': 980885, 'response effort': 715678, 'effort and': 269467, 'didn get chance': 241067, 'get chance to': 346757, 'chance to hear': 171803, 'to hear catherine': 907400, 'hear catherine amato': 387894, 'catherine amato on': 167292, 'amato on boston': 50619, 'on boston public': 599675, 'boston public radio': 135802, 'public radio yesterday': 688259, 'radio yesterday well': 695470, 'yesterday well you': 1015944, 'well you can': 978777, 'you can listen': 1017716, 'can listen to': 158887, 'listen to yesterday': 494761, 'to yesterday interview': 918879, 'yesterday interview online': 1015781, 'interview online at': 442229, 'online at wgbh': 607900, 'at wgbh tune': 101517, 'wgbh tune in': 980886, 'tune in to': 935407, 'in to hear': 430114, '19 response effort': 10144, 'response effort and': 715679, 'effort and how': 269470, 'grocery food': 364518, 'chain need': 170938, 'temperature of': 837385, 'shopper coming': 761463, 'coming into': 188107, 'store period': 809506, 'period if': 651786, 'if shopper': 414795, 'shopper ha': 761534, 'ha temp': 372168, 'temp do': 837322, 'them people': 876153, 'take risk': 832545, 'risk when': 724013, 'food co': 313950, 'all other grocery': 43781, 'other grocery food': 620317, 'grocery food chain': 364519, 'food chain need': 313912, 'chain need to': 170939, 'need to check': 555884, 'to check the': 902694, 'check the temperature': 174656, 'the temperature of': 869278, 'temperature of the': 837389, 'of the shopper': 591459, 'the shopper coming': 867050, 'shopper coming into': 761464, 'coming into the': 188113, 'the store period': 868080, 'store period if': 809507, 'period if shopper': 651787, 'if shopper ha': 414797, 'shopper ha temp': 761537, 'ha temp do': 372169, 'temp do their': 837323, 'do their food': 250275, 'their food shopping': 873349, 'food shopping for': 316521, 'shopping for them': 762718, 'for them people': 326914, 'them people will': 876155, 'people will take': 650418, 'will take risk': 995078, 'take risk when': 832549, 'risk when they': 724014, 'when they need': 984271, 'they need food': 882733, 'need food co': 554792, 'wht': 990707, 'navarro': 553044, 'repurposed': 713090, 'honeywell': 403189, 'gaynor': 344737, 'wht hse': 990708, 'hse navarro': 409728, 'navarro in': 553045, 'in charge': 421334, 'charge of': 173287, 'of building': 580925, 'building up': 142147, 'up rapidly': 945886, 'rapidly supply': 697025, 'supply capacity': 824884, 'capacity under': 162598, 'under defense': 940067, 'act factory': 29637, 'factory can': 295932, 'be repurposed': 116809, 'repurposed such': 713101, 'such distillery': 816452, 'distillery making': 247780, 'or opened': 616402, 'opened honeywell': 612735, 'honeywell opening': 403192, 'opening plant': 612893, 'plant for': 658650, 'mask gaynor': 518716, 'gaynor fema': 344738, 'wht hse navarro': 990709, 'hse navarro in': 409729, 'navarro in charge': 553046, 'in charge of': 421342, 'charge of building': 173288, 'of building up': 580927, 'building up rapidly': 142148, 'up rapidly supply': 945887, 'rapidly supply capacity': 697026, 'supply capacity under': 824885, 'capacity under defense': 162599, 'under defense production': 940068, 'production act factory': 681895, 'act factory can': 29638, 'factory can be': 295933, 'can be repurposed': 157676, 'be repurposed such': 116812, 'repurposed such distillery': 713102, 'such distillery making': 816453, 'distillery making hand': 247781, 'sanitizer or opened': 735491, 'or opened honeywell': 616403, 'opened honeywell opening': 612736, 'honeywell opening plant': 403193, 'opening plant for': 612894, 'plant for mask': 658651, 'for mask gaynor': 323270, 'mask gaynor fema': 518717, 'reid': 708199, 'overstate': 631544, 'gin': 350162, 'only dream': 610362, 'the reid': 865456, 'reid distillery': 708200, 'distillery would': 247835, 'to overstate': 911317, 'overstate the': 631545, 'had on': 373357, 'and every': 62368, 'other small': 620928, 'support is': 826599, 'to enjoy': 905128, 'enjoy reid': 277176, 'reid gin': 708202, 'gin at': 350167, 'open daily': 612174, 'daily from': 224624, '11 to': 2599, 'for long time': 323090, 'long time we': 501785, 'time we could': 898219, 'we could only': 971214, 'could only dream': 209481, 'only dream of': 610363, 'dream of what': 258608, 'of what the': 593063, 'what the reid': 982358, 'the reid distillery': 865457, 'reid distillery would': 708201, 'distillery would be': 247836, 'would be like': 1011614, 'like it hard': 490538, 'hard to overstate': 378076, 'to overstate the': 911318, 'overstate the impact': 631546, 'the impact covid': 857934, '19 ha had': 7350, 'ha had on': 370793, 'had on and': 373359, 'on and every': 599352, 'and every other': 62378, 'every other small': 286073, 'other small business': 620929, 'small business the': 774897, 'business the best': 144496, 'to support is': 915941, 'support is to': 826602, 'is to enjoy': 453200, 'to enjoy reid': 905131, 'enjoy reid gin': 277177, 'reid gin at': 708203, 'gin at home': 350168, 'at home our': 99074, 'home our retail': 401802, 'store is now': 808508, 'is now open': 450310, 'now open daily': 575459, 'open daily from': 612175, 'daily from 11': 224625, 'from 11 to': 334175, '11 to 11': 2600, 'msnbcanswers': 544571, 'shld': 759398, 'fr': 330835, 'grape': 362125, 'msnbcanswers q1': 544572, 'q1 shld': 691408, 'shld we': 759403, 'we no': 972588, 'reusable grocery': 720162, 'grocery bag': 364297, 'bag during': 108268, 'pandemic q2': 636263, 'q2 shld': 691427, 'shld fresh': 759401, 'produce fr': 680275, 'fr the': 330846, 'be avoided': 113768, 'avoided like': 105419, 'like grape': 490339, 'grape berry': 362128, 'berry lettuce': 127413, 'lettuce item': 487460, 'item not': 463475, 'not easily': 569131, 'easily washed': 265254, 'washed soap': 967620, 'water if': 969024, 'if ok': 414528, 'ok to': 597914, 'eat how': 265942, 'you recommend': 1020865, 'recommend cleaning': 704689, 'cleaning them': 181105, 'msnbcanswers q1 shld': 544573, 'q1 shld we': 691409, 'shld we no': 759404, 'we no longer': 972589, 'use reusable grocery': 949521, 'reusable grocery bag': 720163, 'grocery bag during': 364298, 'bag during the': 108271, '19 pandemic q2': 9437, 'pandemic q2 shld': 636264, 'q2 shld fresh': 691428, 'shld fresh produce': 759402, 'fresh produce fr': 333050, 'produce fr the': 680276, 'fr the grocery': 330847, 'grocery store be': 365241, 'store be avoided': 806659, 'be avoided like': 113769, 'avoided like grape': 105420, 'like grape berry': 490340, 'grape berry lettuce': 362129, 'berry lettuce item': 127414, 'lettuce item not': 487461, 'item not easily': 463478, 'not easily washed': 569132, 'easily washed soap': 265255, 'washed soap water': 967621, 'soap water if': 779158, 'water if ok': 969027, 'if ok to': 414529, 'ok to eat': 597918, 'to eat how': 904887, 'eat how do': 265943, 'do you recommend': 250670, 'you recommend cleaning': 1020866, 'recommend cleaning them': 704690, 'instantaneously': 440122, 'adjust': 32281, 'lookoutforothers': 503085, 'called in': 156349, 'on way': 605120, 'way home': 969631, 'are generation': 86780, 'generation who': 345647, 'to having': 907342, 'having plenty': 384225, 'plenty instantaneously': 660931, 'instantaneously now': 440123, 'and adjust': 57695, 'adjust our': 32286, 'our behaviour': 622178, 'behaviour lookoutforothers': 124468, 'called in supermarket': 156352, 'in supermarket on': 428641, 'supermarket on way': 821741, 'on way home': 605124, 'way home we': 969637, 'home we are': 402451, 'we are generation': 970575, 'are generation who': 86781, 'generation who are': 345648, 'who are used': 988254, 'used to having': 950058, 'to having plenty': 907344, 'having plenty instantaneously': 384226, 'plenty instantaneously now': 660932, 'instantaneously now is': 440124, 'time to think': 898085, 'about others and': 25876, 'others and adjust': 621252, 'and adjust our': 57696, 'adjust our behaviour': 32287, 'our behaviour lookoutforothers': 622179, 'neilson': 557307, 'their spending': 874774, 'spending habit': 788831, 'reflect new': 706612, 'standard of': 793685, 'living during': 496346, 'outbreak according': 627954, 'to neilson': 910544, 'neilson consumer': 557308, 'think beyond': 885159, 'beyond emergency': 129166, 'emergency item': 272764, 'and preparing': 69374, 'preparing their': 670360, 'pantry for': 639584, 'consumer are changing': 196286, 'are changing their': 85242, 'changing their spending': 172822, 'their spending habit': 874776, 'spending habit to': 788839, 'habit to reflect': 372700, 'to reflect new': 913065, 'reflect new standard': 706614, 'new standard of': 559641, 'standard of living': 793686, 'of living during': 585912, 'living during the': 496347, '19 outbreak according': 9077, 'outbreak according to': 627955, 'according to neilson': 28569, 'to neilson consumer': 910545, 'neilson consumer are': 557309, 'consumer are starting': 196312, 'starting to think': 795044, 'to think beyond': 917372, 'think beyond emergency': 885160, 'beyond emergency item': 129167, 'emergency item and': 272765, 'item and preparing': 463069, 'and preparing their': 69376, 'preparing their pantry': 670361, 'their pantry for': 874240, 'pantry for the': 639588, 'for the worst': 326791, '202': 14069, '224': 15287, '3121': 17621, 'more uncertain': 540840, 'uncertain for': 939585, 'for thousand': 327168, 'of wisconsin': 593199, 'wisconsin family': 996616, 'family access': 297550, 'food should': 316617, 'be uncertain': 117844, 'uncertain call': 939571, 'your senator': 1025716, 'senator at': 749739, 'at 202': 97516, '202 224': 14070, '224 3121': 15288, '3121 amp': 17622, '19 recovery': 10009, 'recovery package': 705377, 'package must': 633331, 'must increase': 546730, 'increase snap': 433064, 'snap benefit': 776078, 'benefit and': 126915, 'and accessibility': 57587, 'situation is getting': 772346, 'is getting more': 448032, 'getting more uncertain': 349127, 'more uncertain for': 540841, 'uncertain for thousand': 939586, 'for thousand of': 327170, 'thousand of wisconsin': 893472, 'of wisconsin family': 593200, 'wisconsin family access': 996617, 'family access to': 297551, 'to food should': 906098, 'food should not': 316619, 'not be uncertain': 568477, 'be uncertain call': 117845, 'uncertain call your': 939572, 'call your senator': 156266, 'your senator at': 1025717, 'senator at 202': 749740, 'at 202 224': 97517, '202 224 3121': 14071, '224 3121 amp': 15289, '3121 amp demand': 17623, 'amp demand that': 53634, 'demand that any': 236330, 'that any covid': 842674, 'covid 19 recovery': 213670, '19 recovery package': 10015, 'recovery package must': 705379, 'package must increase': 633332, 'must increase snap': 546731, 'increase snap benefit': 433065, 'snap benefit and': 776080, 'benefit and accessibility': 126916, 'being straight': 125858, 'up asshole': 944417, 'asshole to': 96572, 'if out': 414581, 'this happens': 887853, 'me you': 524044, 'will finally': 993438, 'finally get': 306009, 'me live': 523096, 'direct right': 243378, 'here on': 393407, 'twitter ease': 936650, 'get wrecked': 348663, 'wrecked we': 1012717, 'being straight up': 125859, 'straight up asshole': 812250, 'up asshole to': 944418, 'asshole to grocery': 96573, 'store retail worker': 809879, 'not the way': 572043, 'way to do': 970015, 'do this if': 250353, 'this if out': 887999, 'if out and': 414582, 'and about and': 57543, 'about and this': 24806, 'and this happens': 73995, 'this happens in': 887855, 'happens in front': 377479, 'of me you': 586353, 'me you will': 524052, 'you will finally': 1022334, 'will finally get': 993439, 'finally get to': 306015, 'get to see': 348489, 'see me live': 745409, 'me live and': 523097, 'live and direct': 495719, 'and direct right': 61372, 'direct right here': 243379, 'right here on': 721934, 'here on twitter': 393414, 'on twitter ease': 604918, 'twitter ease the': 936651, 'ease the fuck': 265106, 'fuck up or': 339675, 'up or get': 945681, 'or get wrecked': 615438, 'get wrecked we': 348664, 'wrecked we re': 1012718, 're all we': 698243, 'all we got': 45407, 'korea ha': 477476, 'been living': 121468, 'living with': 496485, 'it since': 461067, 'or hoarding': 615658, 'like in': 490485, 'there study': 879117, 'on why': 605304, 'why country': 990904, 'country respond': 211010, 'respond differently': 715295, 'differently to': 242169, 'to crisis': 903741, 'crisis study': 218107, 'no hoarding': 564428, 'hoarding in': 399381, 'crisis lead': 217646, 'normal food': 567148, 'supply being': 824849, 'being enough': 125112, 'south korea ha': 786742, 'korea ha been': 477478, 'ha been living': 369845, 'been living with': 121471, 'living with it': 496488, 'with it since': 999083, 'it since january': 461068, 'since january but': 770676, 'january but there': 464652, 'but there is': 147465, 'no panic or': 565046, 'panic or hoarding': 638366, 'or hoarding of': 615660, 'hoarding of supply': 399456, 'of supply like': 590488, 'supply like in': 825502, 'like in the': 490502, 'state is there': 795709, 'is there study': 453038, 'there study on': 879118, 'study on why': 814942, 'on why country': 605308, 'why country respond': 990905, 'country respond differently': 211011, 'respond differently to': 715296, 'differently to crisis': 242170, 'to crisis study': 903748, 'crisis study on': 218108, 'study on no': 814939, 'on no hoarding': 602416, 'no hoarding in': 564429, 'hoarding in crisis': 399382, 'in crisis lead': 421886, 'crisis lead to': 217647, 'lead to normal': 483371, 'to normal food': 910646, 'normal food supply': 567149, 'food supply being': 316938, 'supply being enough': 824850, 'being enough for': 125113, 'visual': 959621, 'interesting visual': 441646, 'visual of': 959630, 'of near': 586880, 'near term': 553597, 'term shopping': 838293, 'very interesting visual': 955279, 'interesting visual of': 441647, 'visual of near': 959632, 'of near term': 586882, 'near term shopping': 553604, 'term shopping trend': 838294, 'estimating': 282314, 'alexis': 41617, 'akira': 40537, 'toda': 919114, 'estimating the': 282317, 'the susceptible': 869032, 'susceptible infected': 829435, 'infected recovered': 436631, 'recovered sir': 705243, 'sir epidemic': 771559, 'epidemic model': 279416, 'model for': 535249, '19 dynamic': 6680, 'dynamic and': 263901, 'and asset': 58450, 'price alexis': 672261, 'alexis akira': 41618, 'akira toda': 40538, 'estimating the susceptible': 282319, 'the susceptible infected': 869034, 'susceptible infected recovered': 829436, 'infected recovered sir': 436632, 'recovered sir epidemic': 705244, 'sir epidemic model': 771560, 'epidemic model for': 279417, 'model for the': 535254, 'for the novel': 326589, 'novel coronavirus disease': 573758, 'coronavirus disease 19': 205825, 'disease 19 covid': 245072, 'covid 19 dynamic': 212995, '19 dynamic and': 6681, 'dynamic and asset': 263902, 'and asset price': 58452, 'asset price alexis': 96452, 'price alexis akira': 672262, 'alexis akira toda': 41619, 'idle': 413673, 'in western': 430811, 'western japan': 980622, 'japan are': 464709, 'to life': 909246, 'life under': 489155, 'under state': 940258, 'emergency with': 273051, 'with street': 1001008, 'street quiet': 813077, 'quiet taxi': 694703, 'taxi sitting': 835174, 'sitting idle': 772113, 'idle and': 413674, 'local official': 498224, 'official busy': 595766, 'busy turning': 145002, 'turning out': 935939, 'out homemade': 626308, 'homemade sanitizer': 402850, 'people in western': 648450, 'in western japan': 430816, 'western japan are': 980623, 'japan are adjusting': 464710, 'adjusting to life': 32367, 'to life under': 909256, 'life under state': 489158, 'under state of': 940259, 'of emergency with': 583064, 'emergency with street': 273052, 'with street quiet': 1001009, 'street quiet taxi': 813078, 'quiet taxi sitting': 694704, 'taxi sitting idle': 835175, 'sitting idle and': 772114, 'idle and local': 413675, 'and local official': 66300, 'local official busy': 498225, 'official busy turning': 595767, 'busy turning out': 145003, 'turning out homemade': 935940, 'out homemade sanitizer': 626309, 'unaffected': 939383, 'we stop': 973424, 'it serf': 460980, 'serf no': 751203, 'no purpose': 565256, 'purpose other': 690149, 'buying supermarket': 151119, 'are unaffected': 91257, 'unaffected by': 939386, 'vulnerable are': 960873, 'suffering or': 817332, 'with specific': 1000912, 'specific allergy': 788201, 'allergy to': 45795, 'to gluten': 906754, 'gluten lactose': 353133, 'lactose etc': 478705, 'please please can': 660299, 'please can we': 659763, 'can we stop': 160203, 'we stop panic': 973426, 'buying it serf': 150602, 'it serf no': 460982, 'serf no purpose': 751204, 'no purpose other': 565257, 'purpose other than': 690150, 'other than to': 621085, 'than to create': 841338, 'to create more': 903716, 'more panic buying': 539984, 'panic buying supermarket': 637916, 'buying supermarket supply': 151122, 'chain are unaffected': 170518, 'are unaffected by': 91258, 'unaffected by covid': 939387, '19 the elderly': 11188, 'and the vulnerable': 73643, 'the vulnerable are': 870975, 'vulnerable are the': 960876, 'one who are': 607433, 'who are suffering': 988233, 'are suffering or': 90632, 'suffering or those': 817333, 'or those with': 617440, 'those with specific': 892725, 'with specific allergy': 1000913, 'specific allergy to': 788202, 'allergy to gluten': 45796, 'to gluten lactose': 906755, 'gluten lactose etc': 353134, 'that exactly': 843784, 'what said': 982110, 'said because': 731000, 'and basically': 58723, 'basically work': 112186, 'when not': 983780, 'not full': 569555, 'time because': 896368, 'because everyone': 119048, 'is running': 451590, 'running around': 727912, 'head cut': 385735, 'off bc': 593679, 'that exactly what': 843785, 'exactly what said': 288765, 'what said because': 982113, 'said because work': 731002, 'because work at': 119843, 'store and basically': 806202, 'and basically work': 58727, 'basically work full': 112187, 'full time when': 340949, 'time when not': 898297, 'when not full': 983783, 'not full time': 569556, 'full time because': 340935, 'time because everyone': 896370, 'because everyone is': 119049, 'everyone is running': 287105, 'is running around': 451592, 'running around with': 727922, 'around with their': 93644, 'with their head': 1001576, 'their head cut': 873500, 'head cut off': 385736, 'cut off bc': 223438, 'off bc of': 593681, 'ptnyf': 687642, '059': 974, 'radr': 695498, 'parcelpal': 641534, 'ptnyf 059': 687643, '059 look': 975, 'with news': 999717, 'news under': 560921, 'the radr': 865102, 'radr parcelpal': 695499, 'parcelpal increase': 641535, 'increase operation': 432962, 'operation for': 613181, 'ptnyf 059 look': 687644, '059 look like': 976, 'look like food': 502477, 'like food delivery': 490260, 'delivery service sector': 234458, 'sector with news': 744413, 'with news under': 999719, 'news under the': 560922, 'under the radr': 940327, 'the radr parcelpal': 865103, 'radr parcelpal increase': 695500, 'parcelpal increase operation': 641536, 'increase operation for': 432963, 'operation for covid': 613183, 'why ha': 991029, 'ha there': 372249, 'been ban': 120723, 'ban placed': 109244, 'placed on': 657899, 'short selling': 764685, 'selling in': 749297, 'allowing large': 46298, 'large institution': 479706, 'institution to': 440475, 'and artificially': 58409, 'artificially drive': 94545, 'price lower': 675123, 'lower help': 505873, 'protect investor': 684856, 'investor and': 444102, 'and act': 57620, 'why ha there': 991036, 'ha there not': 372250, 'there not been': 878857, 'not been ban': 568505, 'been ban placed': 120724, 'ban placed on': 109245, 'placed on short': 657905, 'on short selling': 603446, 'short selling in': 764687, 'selling in the': 749301, 'the market we': 860174, 'market we are': 517317, 'we are allowing': 970473, 'are allowing large': 84385, 'allowing large institution': 46299, 'large institution to': 479707, 'institution to profit': 440478, 'pandemic and artificially': 634861, 'and artificially drive': 58410, 'artificially drive price': 94546, 'drive price lower': 259132, 'price lower help': 675126, 'lower help protect': 505874, 'help protect investor': 390371, 'protect investor and': 684857, 'investor and act': 444103, 'oxvent': 632667, 'price compare': 673198, 'compare to': 191411, 'to oxvent': 911338, 'oxvent how': 632668, 'uk plan': 938625, 'source 30': 786439, '00 ventilator': 582, 'ventilator for': 954554, 'how do these': 407727, 'do these price': 250294, 'these price compare': 880528, 'price compare to': 673199, 'compare to oxvent': 191413, 'to oxvent how': 911339, 'oxvent how the': 632669, 'how the uk': 408888, 'the uk plan': 870265, 'uk plan to': 938626, 'plan to source': 658321, 'to source 30': 914936, 'source 30 00': 786440, '30 00 ventilator': 16923, '00 ventilator for': 584, 'ventilator for the': 954561, 'tesco and': 838655, 'and waitrose': 75126, 'waitrose have': 964451, 'no collection': 563849, 'collection or': 186453, 'week same': 976834, 'same for': 733069, 'the ocado': 862025, 'ocado at': 578880, 'this rate': 889802, 'rate patient': 697337, 'patient will': 644306, 'soon be': 785634, 'get basic': 346644, 'necessity please': 554251, 'not reserve': 571330, 'reserve grocery': 714066, 'online unless': 609649, 'of if': 584970, 'sick stay': 768615, 'sainsburys tesco and': 731798, 'tesco and waitrose': 838661, 'and waitrose have': 75128, 'waitrose have had': 964452, 'had no collection': 373328, 'no collection or': 563850, 'collection or delivery': 186454, 'or delivery slot': 614948, 'for week same': 327745, 'week same for': 976835, 'same for the': 733073, 'for the ocado': 326594, 'the ocado at': 862026, 'ocado at this': 578881, 'at this rate': 101252, 'this rate patient': 889804, 'rate patient will': 697338, 'patient will soon': 644308, 'will soon be': 994890, 'soon be forced': 785638, 'their home to': 873576, 'to get basic': 906419, 'get basic necessity': 346649, 'basic necessity please': 112000, 'necessity please do': 554252, 'do not reserve': 249824, 'not reserve grocery': 571331, 'reserve grocery online': 714067, 'grocery online unless': 364790, 'online unless you': 609650, 'have to it': 383232, 'to it is': 908589, 'is better for': 446151, 'better for all': 128287, 'all of if': 43696, 'of if the': 584974, 'if the sick': 415031, 'the sick stay': 867153, 'sick stay home': 768616, 'stabilization': 791829, 'businesstransformation': 144794, 'term stabilization': 838301, 'stabilization business': 791830, 'business should': 144372, 'more thoroughly': 540743, 'make their': 510592, 'network more': 557740, 'resilient businesstransformation': 714519, 'businesstransformation stopthespread': 144795, 'stabilize the supply': 791864, 'chain for longer': 170716, 'for longer term': 323096, 'longer term stabilization': 502067, 'term stabilization business': 838302, 'stabilization business should': 791831, 'business should seek': 144375, 'should seek to': 766445, 'seek to plan': 746616, 'to plan for': 911765, 'plan for consumer': 658116, 'for consumer demand': 320251, 'consumer demand more': 197148, 'demand more thoroughly': 235895, 'more thoroughly and': 540744, 'thoroughly and make': 891754, 'and make their': 66580, 'make their supply': 510600, 'their supply network': 874918, 'supply network more': 825586, 'network more resilient': 557742, 'more resilient businesstransformation': 540233, 'resilient businesstransformation stopthespread': 714520, 'mercari': 528935, 'declutter': 231500, 'doing well': 252828, 'well during': 978213, 'up clothes': 944611, 'clothes for': 184161, 'on mercari': 602109, 'mercari at': 528936, 'very cheap': 955050, 'price way': 677389, 'to declutter': 904023, 'declutter my': 231503, 'my room': 549965, 'out those': 627596, 'buy clothing': 148496, 'clothing please': 184277, 'interested mercari': 441474, 'mercari clothing': 528938, 'is doing well': 447297, 'doing well during': 252831, 'well during these': 978215, 'tough time am': 926846, 'time am putting': 896243, 'am putting up': 50332, 'putting up clothes': 691276, 'up clothes for': 944612, 'clothes for sale': 184162, 'for sale on': 325321, 'sale on mercari': 732418, 'on mercari at': 602110, 'mercari at very': 528937, 'at very cheap': 101445, 'very cheap price': 955052, 'cheap price way': 174179, 'price way to': 677392, 'way to declutter': 970011, 'to declutter my': 904024, 'declutter my room': 231504, 'my room and': 549966, 'room and to': 725882, 'and to help': 74175, 'help out those': 390258, 'out those who': 627600, 'to buy clothing': 902206, 'buy clothing please': 148497, 'clothing please check': 184278, 'please check it': 659774, 'it out if': 460186, 'are interested mercari': 87557, 'interested mercari clothing': 441475, 'unpacking': 943012, 'detectable': 239334, 'infection control': 436734, 'control tip': 202193, 'share if': 755046, 'you order': 1020229, 'order shopping': 618576, 'online you': 609772, 'can minimise': 158996, 'minimise risk': 533080, 'risk by': 723435, 'not unpacking': 572337, 'unpacking it': 943013, 'or longer': 616001, 'longer by': 501952, 'by that': 154247, 'be detectable': 114427, 'detectable on': 239337, 'on packaging': 602671, 'packaging or': 633567, 'or bag': 614480, 'bag etc': 108276, 'infection control tip': 436737, 'control tip to': 202194, 'tip to share': 898938, 'to share if': 914348, 'share if you': 755049, 'if you order': 415488, 'you order shopping': 1020237, 'order shopping online': 618577, 'shopping online you': 763513, 'online you can': 609774, 'you can minimise': 1017727, 'can minimise risk': 158997, 'minimise risk by': 533081, 'risk by not': 723439, 'by not unpacking': 153367, 'not unpacking it': 572338, 'unpacking it for': 943014, 'it for day': 458073, 'for day or': 320582, 'day or longer': 228171, 'or longer by': 616003, 'longer by that': 501953, 'by that time': 154252, 'that time the': 847049, 'time the virus': 897882, 'the virus will': 870923, 'not be detectable': 568370, 'be detectable on': 114428, 'detectable on packaging': 239338, 'on packaging or': 602674, 'packaging or bag': 633568, 'or bag etc': 614481, 'elder': 270527, 'errand': 280185, 'presidency': 670741, 'fre': 331504, 'calling elder': 156535, 'elder to': 270549, 'taking daily': 833323, 'daily medicine': 224695, 'medicine running': 526877, 'running grocery': 727970, 'store errand': 807611, 'errand for': 280190, 'for folk': 321539, 'keeping myself': 472487, 'myself in': 550877, 'lockdown also': 499121, 'also keeping': 48450, 'keeping in': 472447, 'mind that': 532733, 'that under': 847164, 'under sander': 940234, 'sander presidency': 733691, 'presidency covid': 670742, 'test would': 839245, 'would already': 1011509, 'be fre': 114950, 'calling elder to': 156536, 'elder to make': 270550, 'sure they re': 827742, 'they re taking': 883138, 're taking daily': 699649, 'taking daily medicine': 833324, 'daily medicine running': 224696, 'medicine running grocery': 526878, 'running grocery store': 727971, 'grocery store errand': 365371, 'store errand for': 807612, 'errand for folk': 280191, 'for folk who': 321542, 'sick and keeping': 768369, 'and keeping myself': 65796, 'keeping myself in': 472488, 'myself in lockdown': 550880, 'in lockdown also': 424834, 'lockdown also keeping': 499122, 'also keeping in': 48452, 'keeping in mind': 472449, 'in mind that': 425342, 'mind that under': 532737, 'that under sander': 847165, 'under sander presidency': 940235, 'sander presidency covid': 733692, 'presidency covid 19': 670743, '19 test would': 11091, 'test would already': 839246, 'would already be': 1011510, 'already be fre': 47212, 'drastically': 258422, 'ntv': 576745, 'reduced drastically': 706060, 'drastically for': 258438, 'the third': 869476, 'third time': 886109, 'in roll': 427532, 'roll ntv': 725406, 'ntv ghana': 576746, 'fuel price reduced': 340249, 'price reduced drastically': 676130, 'reduced drastically for': 706061, 'drastically for the': 258439, 'for the third': 326728, 'the third time': 869482, 'third time in': 886110, 'time in roll': 897010, 'in roll ntv': 427533, 'roll ntv ghana': 725407, 'team helped': 835674, 'helped take': 391104, 'how industry': 408064, 'industry disrupted': 435773, 'disrupted by': 246391, 'can pivot': 159235, 'pivot their': 657098, 'outbreak from': 628240, 'from perfume': 336900, 'perfume manufacturer': 651530, 'manufacturer creating': 513448, 'creating hand': 216009, 'and distillery': 61499, 'distillery manufacturing': 247782, 'manufacturing disinfecting': 513573, 'disinfecting alcohol': 245835, 'alcohol here': 41023, 'our team helped': 625103, 'team helped take': 835676, 'helped take look': 391105, 'at how industry': 99218, 'how industry disrupted': 408065, 'industry disrupted by': 435774, 'disrupted by covid': 246392, 'by covid can': 152252, 'covid can pivot': 214133, 'can pivot their': 159236, 'pivot their resource': 657100, 'fight the outbreak': 304899, 'the outbreak from': 862629, 'outbreak from perfume': 628241, 'from perfume manufacturer': 336901, 'perfume manufacturer creating': 651531, 'manufacturer creating hand': 513449, 'creating hand sanitizer': 216010, 'sanitizer and distillery': 734401, 'and distillery manufacturing': 61500, 'distillery manufacturing disinfecting': 247783, 'manufacturing disinfecting alcohol': 513574, 'disinfecting alcohol here': 245836, 'alcohol here how': 41024, 'here how company': 393099, 'how company are': 407572, 'journal': 467378, 'via need': 956094, 'need gift': 554903, 'gift or': 350004, 'or write': 617851, 'write down': 1012762, 'down ur': 257423, 'ur thought': 948080, 'thought my': 893129, 'quarantinediaries quarantinediaries': 692903, 'quarantinediaries quarantinelife': 692905, 'journaling journal': 467401, 'journal quarantine': 467393, 'quarantineactivities corona': 692735, 'corona quarantinebirthday': 204130, 'toiletpaper writingcommnunity': 922869, 'via need gift': 956095, 'need gift or': 554904, 'gift or write': 350006, 'or write down': 617852, 'write down ur': 1012763, 'down ur thought': 257424, 'ur thought my': 948081, 'thought my life': 893131, '2020 quarantinediaries quarantinediaries': 14550, 'quarantinediaries quarantinediaries quarantinelife': 692904, 'quarantinediaries quarantinelife journaling': 692906, 'quarantinelife journaling journal': 692965, 'journaling journal quarantine': 467402, 'journal quarantine quarantineactivities': 467395, 'quarantine quarantineactivities corona': 692459, 'quarantineactivities corona quarantinebirthday': 692736, 'corona quarantinebirthday toiletpaper': 204131, 'quarantinebirthday toiletpaper writingcommnunity': 692786, 'firstrespondersfirst': 309225, 'from coast': 334905, 'coast to': 185121, 'to coast': 902932, 'coast company': 185097, 'coming together': 188240, 'community thank': 190147, 'for putting': 324873, 'putting our': 691186, 'our firstrespondersfirst': 623087, 'firstrespondersfirst handsanitizer': 309226, 'from coast to': 334906, 'coast to coast': 185122, 'to coast company': 902933, 'coast company are': 185098, 'company are coming': 190417, 'are coming together': 85443, 'coming together to': 188247, 'together to slow': 921002, 'spread of in': 790679, 'of in their': 585049, 'their community thank': 872828, 'community thank you': 190148, 'you for putting': 1018662, 'for putting our': 324875, 'putting our firstrespondersfirst': 691189, 'our firstrespondersfirst handsanitizer': 623088, 'our hidden': 623430, 'hidden hero': 394814, 'keep shelf': 471923, 'shelf stocked': 757575, 'and package': 68608, 'package delivered': 633245, 'delivered amid': 233287, 'clerk to': 181793, 'to truck': 917792, 'pharmacy staff': 654470, 'to our hidden': 911188, 'our hidden hero': 623431, 'hidden hero they': 394815, 'hero they continue': 394127, 'continue to keep': 201215, 'to keep shelf': 908844, 'keep shelf stocked': 471925, 'shelf stocked and': 757577, 'stocked and package': 803266, 'and package delivered': 68609, 'package delivered amid': 633246, 'delivered amid 19': 233288, 'amid 19 from': 52373, '19 from the': 7140, 'store clerk to': 807032, 'clerk to truck': 181797, 'to truck driver': 917793, 'truck driver pharmacy': 932790, 'driver pharmacy staff': 259693, 'pharmacy staff and': 654471, 'staff and delivery': 792137, 'delivery driver we': 233952, 'driver we thank': 259841, 'for helping our': 322201, '50k': 20159, 'weakens': 974089, 'we even': 971482, 'even missed': 284334, 'missed the': 534253, 'fact the': 295819, 'the leading': 859229, 'leading cause': 483690, 'death worldwide': 230279, 'still heart': 800686, 'heart attack': 388264, 'attack with': 102178, 'almost 50k': 46515, '50k death': 20162, 'death each': 230026, 'we stock': 973415, '19 yet': 12254, 'eat food': 265915, 'that weakens': 847411, 'weakens the': 974092, 'that true we': 847133, 'true we even': 933212, 'we even missed': 971483, 'even missed the': 284335, 'missed the fact': 534255, 'the fact the': 854833, 'fact the the': 295823, 'the the leading': 869387, 'the leading cause': 859231, 'leading cause of': 483691, 'cause of death': 167679, 'of death worldwide': 582423, 'death worldwide is': 230280, 'worldwide is still': 1010384, 'is still heart': 452282, 'still heart attack': 800687, 'heart attack with': 388268, 'attack with almost': 102179, 'with almost 50k': 997172, 'almost 50k death': 46516, '50k death each': 20163, 'death each day': 230027, 'each day so': 264050, 'day so we': 228371, 'so we stock': 778685, 'we stock up': 973421, 'on food to': 600923, 'food to avoid': 317233, 'going out and': 355357, 'out and get': 625663, 'and get covid': 63566, 'covid 19 yet': 214107, '19 yet we': 12258, 'yet we eat': 1016315, 'we eat food': 971431, 'eat food that': 265916, 'food that weakens': 317105, 'that weakens the': 847412, 'weakens the immune': 974093, 'rinse': 722568, '0711590279': 1029, 'ruto': 728703, 'mutahi': 547048, 'kagwe': 470634, 'kibe': 473770, 'kibaki': 473765, 'museveni': 546259, 'cleanse hand': 181167, 'sanitizer 70': 734301, '70 ipa': 21781, 'ipa amp': 444524, 'amp ethanol': 53748, 'ethanol rinse': 283010, 'rinse free': 722575, 'free non': 332001, 'non sticky': 566502, 'sticky call': 800122, 'call whatsapp': 156222, 'whatsapp me': 982897, 'me 0711590279': 522322, '0711590279 to': 1030, 'place your': 657862, 'order while': 618774, 'while stock': 987326, 'stock last': 802341, 'last william': 480705, 'william ruto': 995436, 'ruto mutahi': 728704, 'mutahi kagwe': 547049, 'kagwe kibe': 470637, 'kibe south': 473771, 'south kibaki': 786732, 'kibaki museveni': 473766, 'cleanse hand sanitizer': 181168, 'hand sanitizer 70': 375285, 'sanitizer 70 ipa': 734303, '70 ipa amp': 21782, 'ipa amp ethanol': 444525, 'amp ethanol rinse': 53749, 'ethanol rinse free': 283011, 'rinse free non': 722577, 'free non sticky': 332002, 'non sticky call': 566503, 'sticky call whatsapp': 800123, 'call whatsapp me': 156224, 'whatsapp me 0711590279': 982898, 'me 0711590279 to': 522323, '0711590279 to place': 1031, 'to place your': 911761, 'place your order': 657863, 'your order while': 1025110, 'order while stock': 618775, 'while stock last': 987328, 'stock last william': 802345, 'last william ruto': 480706, 'william ruto mutahi': 995437, 'ruto mutahi kagwe': 728705, 'mutahi kagwe kibe': 547051, 'kagwe kibe south': 470638, 'kibe south kibaki': 473772, 'south kibaki museveni': 786733, 'commute': 190262, 'elementary': 271353, 'usual commute': 950901, 'commute take': 190267, 'take an': 831933, 'and five': 62947, 'five to': 309677, 'to ten': 916370, 'ten minute': 837788, 'minute today': 533878, 'today 55': 919129, '55 minute': 20395, 'minute gas': 533765, 'low when': 505739, 'in elementary': 422528, 'elementary very': 271354, 'very unsettled': 955633, 'my usual commute': 550473, 'usual commute take': 950902, 'commute take an': 190268, 'take an hour': 831934, 'an hour and': 56075, 'hour and five': 405396, 'and five to': 62949, 'five to ten': 309678, 'to ten minute': 916372, 'ten minute today': 837790, 'minute today 55': 533879, 'today 55 minute': 919130, '55 minute gas': 20396, 'minute gas price': 533766, 'are low when': 87939, 'low when wa': 505740, 'wa in elementary': 962365, 'in elementary very': 422529, 'elementary very unsettled': 271355, 'lemon': 486173, 'remedy': 710143, 'price ginger': 674182, 'ginger lemon': 350203, 'lemon soar': 486193, 'soar turn': 779278, 'home remedy': 401961, 'remedy to': 710148, 'price ginger lemon': 674183, 'ginger lemon soar': 350206, 'lemon soar turn': 486194, 'soar turn to': 779279, 'turn to home': 935782, 'to home remedy': 907937, 'home remedy to': 401962, 'remedy to fight': 710149, 'ftc warns': 339469, 'scam if': 740197, 'government sends': 360581, 'sends check': 750126, 'of related': 588904, 'scam read': 740321, 'ftc warning': 339467, 'ftc warns of': 339470, 'warns of government': 967267, 'check scam if': 174609, 'scam if the': 740198, 'if the government': 414978, 'the government sends': 856598, 'government sends check': 360582, 'sends check to': 750127, 'check to help': 174685, '19 the ftc': 11195, 'the ftc warns': 855946, 'warns of related': 967271, 'of related scam': 588909, 'related scam read': 708555, 'scam read the': 740324, 'read the ftc': 700576, 'the ftc warning': 855945, 'ftc warning here': 339468, 'callon': 156660, 'cpe': 214576, '3bln': 18222, 'timed': 898439, 'acquisition': 29191, 'explorer': 292516, 'houston based': 407188, 'based callon': 111527, 'callon petroleum': 156661, 'petroleum cpe': 653813, 'cpe facing': 214577, 'facing triple': 295638, 'triple whammy': 932269, 'whammy it': 980937, 'it deal': 457482, 'deal 3bln': 229328, '3bln in': 18223, 'debt an': 230411, 'an ill': 56157, 'ill timed': 416178, 'timed acquisition': 898440, 'acquisition of': 29192, 'of rival': 589131, 'rival oil': 724170, 'gas explorer': 343841, 'explorer flat': 292517, 'flat lining': 310082, 'lining energy': 493731, 'amp french': 53840, 'houston based callon': 407189, 'based callon petroleum': 111528, 'callon petroleum cpe': 156662, 'petroleum cpe facing': 653814, 'cpe facing triple': 214578, 'facing triple whammy': 295639, 'triple whammy it': 932270, 'whammy it deal': 980938, 'it deal 3bln': 457483, 'deal 3bln in': 229329, '3bln in debt': 18224, 'in debt an': 422048, 'debt an ill': 230412, 'an ill timed': 56158, 'ill timed acquisition': 416179, 'timed acquisition of': 898441, 'acquisition of rival': 29194, 'of rival oil': 589132, 'rival oil amp': 724171, 'amp gas explorer': 53859, 'gas explorer flat': 343842, 'explorer flat lining': 292518, 'flat lining energy': 310083, 'lining energy price': 493732, 'energy price amp': 276536, 'price amp french': 672335, 'edc': 268471, 'pocketdump': 662227, 'ar15': 83808, 'ar15safespace': 83811, 'pewpewpew': 653901, 'gunsofinstagram': 368801, 'p365': 632809, 'p365sas': 632812, 'azliving': 106420, 'vairus': 951854, 'my edc': 548061, 'edc pocketdump': 268472, 'pocketdump have': 662228, 'have gotten': 380817, 'gotten weird': 359179, 'weird af': 977736, 'af damn': 33952, 'damn corona': 225334, 'corona carry': 203845, 'carry hand': 165084, 'the pocket': 863885, 'pocket ar15': 662155, 'ar15 ar15safespace': 83809, 'ar15safespace pewpewpew': 83812, 'pewpewpew purell': 653902, 'purell gunsofinstagram': 690011, 'gunsofinstagram p365': 368802, 'p365 p365sas': 632810, 'p365sas azliving': 632813, 'azliving corona': 106421, 'corona vairus': 204268, 'my edc pocketdump': 548062, 'edc pocketdump have': 268473, 'pocketdump have gotten': 662229, 'have gotten weird': 380824, 'gotten weird af': 359180, 'weird af damn': 977737, 'af damn corona': 33953, 'damn corona carry': 225335, 'corona carry hand': 203846, 'carry hand sanitizer': 165085, 'sanitizer in all': 735127, 'in all the': 420186, 'all the pocket': 44865, 'the pocket ar15': 863886, 'pocket ar15 ar15safespace': 662156, 'ar15 ar15safespace pewpewpew': 83810, 'ar15safespace pewpewpew purell': 83813, 'pewpewpew purell gunsofinstagram': 653903, 'purell gunsofinstagram p365': 690012, 'gunsofinstagram p365 p365sas': 368803, 'p365 p365sas azliving': 632811, 'p365sas azliving corona': 632814, 'azliving corona vairus': 106422, 'joes': 466475, 'employee starting': 274232, 'four employee': 330605, 'chain who': 171231, 'trader joes': 928726, 'joes and': 466476, 'store employee starting': 807539, 'employee starting to': 274233, 'starting to die': 795021, 'die from coronavirus': 241344, 'least four employee': 484475, 'four employee of': 330606, 'employee of major': 274066, 'of major supermarket': 586116, 'supermarket chain who': 819645, 'chain who worked': 171234, 'who worked at': 990048, 'walmart trader joes': 965454, 'trader joes and': 928727, 'joes and giant': 466477, 'day from the': 227660, 'earlier on': 264465, 'lot worse': 504417, 'than last': 840832, 'shocking enough': 759601, 'enough please': 277564, 'others when': 621770, 'shopping working': 764464, 'this not': 889171, 'not by': 568665, 'by being': 151941, 'selfish amp': 747979, 'amp hoarding': 53952, 'hoarding stuff': 399556, 'stuff so': 815185, 'rest can': 716153, 'supermarket earlier on': 820073, 'earlier on lot': 264467, 'on lot worse': 601942, 'lot worse than': 504418, 'worse than last': 1011012, 'than last week': 840835, 'week which wa': 977235, 'which wa shocking': 986451, 'wa shocking enough': 963195, 'shocking enough please': 759602, 'enough please please': 277567, 'please please think': 660316, 'of others when': 587414, 'others when you': 621773, 'you go shopping': 1018864, 'go shopping working': 354139, 'shopping working together': 764465, 'working together we': 1009012, 'through this not': 894833, 'this not by': 889173, 'not by being': 568666, 'by being selfish': 151949, 'being selfish amp': 125732, 'selfish amp hoarding': 747980, 'amp hoarding stuff': 53953, 'hoarding stuff so': 399558, 'stuff so the': 815189, 'so the rest': 778437, 'the rest can': 865632, 'rest can get': 716154, 'can get anything': 158402, 'mexico face': 529998, 'storm of': 811821, 'of possible': 588253, 'possible recession': 665755, 'the drastically': 853672, 'drastically lower': 258449, 'lower revenue': 505987, 'revenue from': 720416, 'it oil': 460008, 'producer pemex': 680686, 'pemex from': 646399, 'the rout': 866011, 'rout in': 726441, 'amp slump': 54514, 'in tourism': 430240, 'tourism traveler': 927014, 'traveler stay': 930625, 'economy could': 267783, 'could contract': 209045, 'contract by': 201640, 'mexico face the': 529999, 'face the perfect': 294800, 'perfect storm of': 651348, 'storm of possible': 811826, 'of possible recession': 588255, 'possible recession in': 665756, 'recession in the': 704298, 'in the drastically': 429150, 'the drastically lower': 853673, 'drastically lower revenue': 258450, 'lower revenue from': 505988, 'revenue from it': 720418, 'from it oil': 336125, 'it oil producer': 460011, 'oil producer pemex': 597344, 'producer pemex from': 680688, 'pemex from the': 646400, 'from the rout': 337864, 'the rout in': 866012, 'rout in crude': 726442, 'in crude price': 421927, 'crude price amp': 219581, 'price amp slump': 672340, 'amp slump in': 54515, 'slump in tourism': 774697, 'in tourism traveler': 430242, 'tourism traveler stay': 927015, 'traveler stay home': 930626, 'stay home due': 796955, 'to the economy': 916664, 'the economy could': 853954, 'economy could contract': 267784, 'could contract by': 209046, 'peppermint': 650651, 'sarah': 736720, 'westall': 980558, 'hand washing': 375940, 'washing for': 967660, 'is minute': 449662, 'minute so': 533837, 'put peppermint': 690774, 'peppermint or': 650652, 'disinfectant essential': 245653, 'oil in': 596871, 'your homemade': 1024390, 'homemade safer': 402848, 'safer hand': 730367, 'sanitizer say': 735702, 'say doctor': 738582, 'and scientist': 71080, 'scientist expert': 742214, 'expert sarah': 291939, 'sarah westall': 736721, 'westall youtube': 980559, 'hand washing for': 375946, 'washing for is': 967661, 'for is minute': 322669, 'is minute so': 449663, 'minute so you': 533839, 'so you need': 778847, 'need to put': 556023, 'to put peppermint': 912604, 'put peppermint or': 690775, 'peppermint or disinfectant': 650653, 'or disinfectant essential': 614993, 'disinfectant essential oil': 245654, 'essential oil in': 281348, 'oil in your': 596876, 'in your homemade': 431094, 'your homemade safer': 1024392, 'homemade safer hand': 402849, 'safer hand sanitizer': 730368, 'hand sanitizer say': 375578, 'sanitizer say doctor': 735703, 'say doctor and': 738583, 'doctor and scientist': 250824, 'and scientist expert': 71082, 'scientist expert sarah': 742215, 'expert sarah westall': 291940, 'sarah westall youtube': 736722, 'spectrum let': 788336, 'straight spectrum': 812234, 'spectrum is': 788334, 'advantage by': 32966, 'by raising': 153712, 'pandemic kinda': 635861, 'kinda fall': 475045, 'fall under': 297102, 'under price': 940210, 'gouging don': 359303, 'spectrum let me': 788337, 'this straight spectrum': 890374, 'straight spectrum is': 812235, 'spectrum is taking': 788335, 'is taking advantage': 452532, 'taking advantage by': 833253, 'advantage by raising': 32968, 'by raising their': 153715, 'price during this': 673636, 'this pandemic kinda': 889398, 'pandemic kinda fall': 635862, 'kinda fall under': 475046, 'fall under price': 297103, 'under price gouging': 940211, 'price gouging don': 674274, 'gouging don you': 359304, 'don you think': 254092, 'pregnant': 669828, 'vaccination': 951622, 'pregnant woman': 669843, 'woman should': 1003607, 'sure their': 827719, 'their vaccination': 875109, 'vaccination are': 951626, 'date wash': 226751, 'frequently stay': 332875, 'are coughing': 85585, 'coughing protect': 208740, 'health in': 386520, 'other common': 619967, 'sense way': 750610, 'way march': 969695, 'march of': 515421, 'of dime': 582620, 'dime chief': 242916, 'chief medical': 175943, 'medical health': 526206, 'pregnant woman should': 669848, 'woman should make': 1003609, 'should make sure': 766214, 'make sure their': 510531, 'sure their vaccination': 827724, 'their vaccination are': 875110, 'vaccination are up': 951627, 'are up to': 91371, 'to date wash': 903945, 'date wash their': 226752, 'hand frequently stay': 374958, 'frequently stay away': 332876, 'away from people': 105902, 'who are coughing': 988124, 'are coughing protect': 85588, 'coughing protect their': 208741, 'protect their health': 684995, 'their health in': 873519, 'health in other': 386524, 'in other common': 426237, 'other common sense': 619969, 'common sense way': 189470, 'sense way march': 750611, 'way march of': 969696, 'march of dime': 515423, 'of dime chief': 582621, 'dime chief medical': 242917, 'chief medical health': 175944, 'medical health officer': 526207, 'clubhousegolfstore': 184509, 'clubhousegolf': 184506, 'update unfortunately': 947289, 'unfortunately due': 941594, 'night government': 563001, 'government announcement': 359889, 'announcement our': 77181, 'will now': 994291, 'closed from': 183137, 'today until': 920412, 'notice please': 573337, 'other clubhousegolfstore': 619956, 'clubhousegolfstore clubhousegolf': 184510, 'clubhousegolf staysafe': 184507, 'staysafe helpeachother': 798825, 'store update unfortunately': 811021, 'update unfortunately due': 947290, 'unfortunately due to': 941595, 'due to last': 261842, 'to last night': 909071, 'last night government': 480374, 'night government announcement': 563002, 'government announcement our': 359890, 'announcement our retail': 77182, 'store will now': 811338, 'will now be': 994294, 'now be closed': 574195, 'be closed from': 114128, 'closed from today': 183142, 'from today until': 338084, 'today until further': 920413, 'further notice please': 342113, 'notice please stay': 573339, 'safe and take': 729489, 'each other clubhousegolfstore': 264165, 'other clubhousegolfstore clubhousegolf': 619957, 'clubhousegolfstore clubhousegolf staysafe': 184511, 'clubhousegolf staysafe helpeachother': 184508, 'kajang': 470680, 'shafwan': 754365, 'zaidon': 1027184, 'people seen': 649387, 'seen stocking': 747251, 'good into': 357277, 'into trolley': 443257, 'trolley after': 932353, 'buying rumour': 150975, 'rumour spread': 727525, 'spread today': 790860, 'at hypermarket': 99252, 'hypermarket in': 412335, 'in kajang': 424432, 'kajang march': 470681, '16 2020': 4065, '2020 picture': 14514, 'picture by': 656115, 'by shafwan': 153961, 'shafwan zaidon': 754366, 'people seen stocking': 649388, 'seen stocking up': 747252, 'on good into': 601147, 'good into trolley': 357278, 'into trolley after': 443258, 'trolley after the': 932354, 'after the panic': 36341, 'panic buying rumour': 637869, 'buying rumour spread': 150976, 'rumour spread today': 727526, 'spread today at': 790861, 'today at hypermarket': 919274, 'at hypermarket in': 99253, 'hypermarket in kajang': 412336, 'in kajang march': 424433, 'kajang march 16': 470682, 'march 16 2020': 515083, '16 2020 picture': 4070, '2020 picture by': 14515, 'picture by shafwan': 656116, 'by shafwan zaidon': 153962, 'introduces': 443466, 'ocado introduces': 578899, 'introduces new': 443473, 'new strict': 559677, 'strict delivery': 813620, 'delivery rule': 234405, 'rule amid': 727182, 'coronavirus government': 205999, 'ocado introduces new': 578900, 'introduces new strict': 443475, 'new strict delivery': 559678, 'strict delivery rule': 813621, 'delivery rule amid': 234406, 'rule amid coronavirus': 727183, 'amid coronavirus government': 52422, 'coronavirus government lockdown': 206000, 'profesionales': 682378, 'salud': 732842, 'hasta': 378825, 'empleados': 273428, 'camioneros': 157149, 'traen': 929037, 'suministros': 817900, 'gracias': 361617, 'professional on': 682474, 'frontlines to': 338927, 'and truck': 74473, 'are bring': 85055, 'bring supply': 140080, 'to fl': 905996, 'fl thankyou': 309927, 'thankyou desde': 842327, 'desde profesionales': 237993, 'profesionales de': 682379, 'de salud': 229103, 'salud hasta': 732843, 'hasta empleados': 378828, 'empleados de': 273429, 'de supermercados': 229111, 'supermercados camioneros': 824290, 'camioneros que': 157150, 'que traen': 693324, 'traen suministros': 929038, 'suministros fl': 817901, 'fl gracias': 309907, 'gracias stayhome': 361618, 'healthcare professional on': 387238, 'professional on the': 682475, 'the frontlines to': 855904, 'frontlines to grocery': 338929, 'employee and truck': 273592, 'and truck driver': 74474, 'truck driver who': 932804, 'who are bring': 988109, 'are bring supply': 85056, 'bring supply to': 140081, 'supply to fl': 826005, 'to fl thankyou': 905997, 'fl thankyou desde': 309928, 'thankyou desde profesionales': 842328, 'desde profesionales de': 237994, 'profesionales de salud': 682380, 'de salud hasta': 229104, 'salud hasta empleados': 732844, 'hasta empleados de': 378829, 'empleados de supermercados': 273430, 'de supermercados camioneros': 229112, 'supermercados camioneros que': 824291, 'camioneros que traen': 157151, 'que traen suministros': 693325, 'traen suministros fl': 929039, 'suministros fl gracias': 817902, 'fl gracias stayhome': 309908, 'appdome': 82046, 'tovar': 927093, 'appsec': 83336, 'mobileappsec': 535051, 'commerce shift': 188628, 'to mobile': 910205, 'mobile apps': 534945, 'apps consumer': 83271, 'risk appdome': 723386, 'appdome ceo': 82047, 'ceo tom': 169866, 'tom tovar': 923931, 'tovar say': 927094, 'follow basic': 312359, 'basic bill': 111835, 'bill of': 130635, 'of right': 589111, 'right cybersecurity': 721857, 'cybersecurity banking': 223988, 'banking appsec': 110409, 'appsec mobileappsec': 83337, 'commerce shift to': 188629, 'shift to mobile': 758440, 'to mobile apps': 910206, 'mobile apps consumer': 534947, 'apps consumer are': 83272, 'consumer are at': 196282, 'at risk appdome': 100339, 'risk appdome ceo': 723387, 'appdome ceo tom': 82048, 'ceo tom tovar': 169867, 'tom tovar say': 923932, 'tovar say you': 927095, 'say you must': 739517, 'you must protect': 1019926, 'protect the consumer': 684966, 'the consumer data': 851521, 'consumer data and': 197051, 'data and should': 226125, 'and should follow': 71591, 'should follow basic': 766003, 'follow basic bill': 312360, 'basic bill of': 111836, 'bill of right': 130637, 'of right cybersecurity': 589112, 'right cybersecurity banking': 721858, 'cybersecurity banking appsec': 223989, 'banking appsec mobileappsec': 110410, 'boycottrumppressconferences': 137392, 'stockup': 804163, 'creating drinking': 215995, 'drinking game': 258927, 'game in': 343187, 'take shot': 832575, 'shot every': 765423, 'trump change': 933473, 'change subject': 172267, 'subject on': 815742, 'or fails': 615256, 'answer question': 78096, 'question asked': 693541, 'asked of': 95803, 'of him': 584628, 'during one': 262827, 'his briefing': 397256, 'briefing it': 139725, 'bring joy': 140019, 'joy to': 467526, 'million billion': 532089, 'billion boycottrumppressconferences': 130783, 'boycottrumppressconferences stockup': 137393, 'stockup happyhour': 804177, 'creating drinking game': 215996, 'drinking game in': 258928, 'game in which': 343189, 'in which you': 430874, 'which you take': 986535, 'you take shot': 1021518, 'take shot every': 832576, 'shot every time': 765424, 'every time trump': 286321, 'time trump change': 898139, 'trump change subject': 933474, 'change subject on': 172268, 'subject on or': 815743, 'on or fails': 602538, 'or fails to': 615257, 'fails to answer': 296248, 'to answer question': 900586, 'answer question asked': 78098, 'question asked of': 693542, 'asked of him': 95804, 'of him during': 584632, 'him during one': 396593, 'during one of': 262828, 'of his briefing': 584647, 'his briefing it': 397257, 'briefing it ll': 139726, 'it ll bring': 459418, 'll bring joy': 496665, 'bring joy to': 140020, 'joy to million': 467527, 'to million billion': 910131, 'million billion boycottrumppressconferences': 532090, 'billion boycottrumppressconferences stockup': 130784, 'boycottrumppressconferences stockup happyhour': 137394, 'store be like': 806663, 'well people': 978473, 'posting empty': 666648, 'happening but': 377334, 'not helping': 569939, 'situation instead': 772335, 'instead you': 440387, 'are contributing': 85550, 'by posting': 153626, 'posting those': 666699, 'those photo': 892342, 'photo 19': 655114, 'well people need': 978476, 'stop posting empty': 804927, 'posting empty shelf': 666649, 'in supermarket we': 428708, 'supermarket we know': 823745, 'we know what': 972164, 'is happening but': 448276, 'happening but you': 377335, 'but you are': 147977, 'you are not': 1017179, 'are not helping': 88388, 'not helping the': 569944, 'helping the situation': 391499, 'the situation instead': 867261, 'situation instead you': 772336, 'instead you are': 440388, 'you are contributing': 1017098, 'are contributing to': 85552, 'to the panic': 916940, 'the panic by': 863192, 'panic by posting': 637985, 'by posting those': 153629, 'posting those photo': 666700, 'those photo 19': 892343, 'remembers': 710468, 'resetyourvalues': 714179, 'service health': 752451, 'staff supermarket': 792900, 'driver public': 259717, 'worker cleaner': 1006645, 'cleaner let': 180792, 'hope society': 403622, 'society remembers': 781296, 'remembers that': 710471, 'over resetyourvalues': 630583, 'essential worker emergency': 281828, 'emergency service health': 272964, 'service health care': 752452, 'health care staff': 386250, 'care staff supermarket': 164212, 'staff supermarket staff': 792907, 'delivery driver public': 233934, 'driver public transport': 259718, 'public transport worker': 688426, 'transport worker cleaner': 929979, 'worker cleaner let': 1006650, 'cleaner let hope': 180793, 'let hope society': 486805, 'hope society remembers': 403623, 'society remembers that': 781297, 'remembers that when': 710472, 'that when the': 847494, 'coronavirus crisis is': 205755, 'is over resetyourvalues': 450728, 'and person': 68916, 'me take': 523578, 'take off': 832391, 'off her': 593894, 'her mask': 392185, 'smoke first': 775861, 'first smoking': 309009, 'smoking and': 775898, 'then protection': 877448, 'protection priority': 685578, 'priority each': 678558, 'each person': 264246, 'person ha': 652449, 'ha 19': 369403, 'waiting in the': 964354, 'enter the grocery': 278312, 'store and person': 806318, 'and person in': 68918, 'person in front': 652480, 'of me take': 586345, 'me take off': 523579, 'take off her': 832393, 'off her mask': 593896, 'her mask to': 392187, 'to smoke first': 914776, 'smoke first smoking': 775862, 'first smoking and': 309010, 'smoking and then': 775900, 'and then protection': 73795, 'then protection priority': 877449, 'protection priority each': 685580, 'priority each person': 678559, 'each person ha': 264250, 'person ha 19': 652450, 'torbj': 925877, 'becker': 119895, 'how decline': 407668, 'outbreak can': 628082, 'russian economy': 728629, 'economy torbj': 268304, 'torbj rn': 925878, 'rn becker': 724317, 'becker director': 119896, 'director explains': 243615, 'that decline': 843465, 'price alone': 672280, 'alone could': 46839, 'in gdp': 423238, 'gdp of': 344903, 'than russia': 841104, 'russia economy': 728463, 'economy oilprice': 268120, 'how decline in': 407669, '19 outbreak can': 9093, 'outbreak can affect': 628083, 'affect the russian': 34252, 'the russian economy': 866097, 'russian economy torbj': 728634, 'economy torbj rn': 268305, 'torbj rn becker': 925879, 'rn becker director': 724318, 'becker director explains': 119897, 'director explains that': 243616, 'explains that decline': 292224, 'that decline in': 843466, 'oil price alone': 597041, 'price alone could': 672281, 'alone could lead': 46840, 'lead to drop': 483340, 'to drop in': 904773, 'drop in gdp': 260250, 'in gdp of': 423240, 'gdp of more': 344904, 'more than russia': 540668, 'than russia economy': 841105, 'russia economy oilprice': 728464, 'hey friend': 394383, 'friend the': 333828, 'the art': 848926, 'art and': 94133, 'and craft': 60680, 'craft store': 214778, 'close down': 182611, 'and claiming': 59914, 'claiming we': 179923, 'essential retail': 281459, 'retail because': 717874, 're ups': 699753, 'ups drop': 947744, 'petition and': 653584, 'spread it': 790588, 'hey friend the': 394384, 'friend the art': 333829, 'the art and': 848927, 'art and craft': 94134, 'and craft store': 60683, 'craft store work': 214782, 'at is refusing': 99308, 'refusing to close': 707088, 'to close down': 902868, 'close down it': 182615, 'down it store': 256897, 'it store and': 461284, 'store and claiming': 806216, 'and claiming we': 59916, 'claiming we re': 179924, 'we re essential': 972865, 're essential retail': 698620, 'essential retail because': 281462, 'retail because we': 717875, 'because we re': 119815, 'we re ups': 972995, 're ups drop': 699754, 'ups drop off': 947745, 'drop off and': 260326, 'off and we': 593652, 'and we support': 75326, 'we support small': 973455, 'support small business': 826821, 'small business please': 774886, 'business please sign': 144235, 'this petition and': 889540, 'petition and spread': 653587, 'and spread it': 72146, 'spread it around': 790589, '9yes': 24045, 'carefree': 164374, 'supply reduced': 825755, 'among other': 53031, 'the severe': 866751, 'severe tension': 754064, 'tension that': 837997, 'experiencing result': 291696, 'in 9yes': 419971, '9yes the': 24046, 'so isolated': 777452, 'isolated insensitive': 455012, 'insensitive carefree': 439189, 'effort in the': 269535, 'food supply reduced': 316984, 'supply reduced price': 825756, 'reduced price among': 706142, 'price among other': 672327, 'among other thing': 53037, 'other thing to': 621113, 'thing to reduce': 884899, 'reduce the severe': 705976, 'the severe tension': 866752, 'severe tension that': 754065, 'tension that people': 837998, 'are experiencing result': 86350, 'experiencing result of': 291697, 'but in 9yes': 146020, 'in 9yes the': 419972, '9yes the government': 24047, 'government is so': 360276, 'is so isolated': 452020, 'so isolated insensitive': 777453, 'isolated insensitive carefree': 455013, 'mam': 511911, 'alzheimer': 49822, 'advise': 33572, 'my mam': 549196, 'mam is': 511912, 'is living': 449408, 'with late': 999177, 'late stage': 480912, 'stage alzheimer': 793175, 'alzheimer with': 49824, 'dad caring': 224305, 'caring she': 164727, 'she also': 755849, 'also ha': 48303, 'ha an': 369536, 'an immunity': 56177, 'immunity issue': 417414, 'issue can': 455700, 'you advise': 1016833, 'advise on': 33595, 'aren allowed': 92311, 'out thanks': 627313, 'any help': 79313, 'you help my': 1019197, 'help my mam': 390127, 'my mam is': 549197, 'mam is living': 511913, 'is living with': 449411, 'living with late': 496489, 'with late stage': 999178, 'late stage alzheimer': 480913, 'stage alzheimer with': 793176, 'alzheimer with my': 49825, 'with my dad': 999620, 'my dad caring': 547885, 'dad caring she': 224306, 'caring she also': 164728, 'she also ha': 755851, 'also ha an': 48304, 'ha an immunity': 369545, 'an immunity issue': 56179, 'immunity issue can': 417415, 'issue can you': 455701, 'can you advise': 160272, 'you advise on': 1016834, 'advise on how': 33597, 'to get delivery': 906455, 'get delivery from': 346863, 'delivery from supermarket': 234048, 'from supermarket they': 337506, 'supermarket they aren': 823286, 'they aren allowed': 881470, 'aren allowed out': 92313, 'allowed out thanks': 46204, 'out thanks for': 627314, 'thanks for any': 842049, 'for any help': 319407, 'buying mean': 150707, 'mean those': 524723, 'frontline saving': 338819, 'saving life': 737903, 'working shift': 1008909, 'without these': 1002997, 'time over': 897438, 'over 150': 629788, '150 colleague': 3901, 'colleague are': 186190, 'business sec': 144349, 'sec retailer': 743632, 'do whatever': 250521, 'whatever it': 982771, 'ensure no': 277993, 'is left': 449266, 'panic buying mean': 637806, 'buying mean those': 150708, 'mean those on': 524724, 'the frontline saving': 855886, 'frontline saving life': 338820, 'saving life working': 737916, 'life working shift': 489234, 'working shift to': 1008910, 'shift to keep': 758437, 'food on shelf': 315600, 'on shelf are': 603399, 'shelf are going': 756804, 'are going without': 86905, 'going without these': 355821, 'without these are': 1002998, 'unprecedented time over': 943204, 'time over 150': 897439, 'over 150 colleague': 629789, '150 colleague are': 3902, 'colleague are calling': 186192, 'calling for the': 156562, 'for the business': 326327, 'the business sec': 850179, 'business sec retailer': 144350, 'sec retailer to': 743633, 'retailer to do': 719380, 'to do whatever': 904588, 'do whatever it': 250522, 'whatever it take': 982773, 'take to ensure': 832734, 'to ensure no': 905176, 'ensure no one': 277994, 'no one is': 564942, 'one is left': 606513, 'is left behind': 449271, 'nbc10responds': 553241, 'viewer': 957184, 'coworker': 214480, 'nbc10responds reporter': 553242, 'reporter continues': 712608, 'answer your': 78152, 'related question': 708527, 'question one': 693684, 'one viewer': 607339, 'viewer asked': 957187, 'if coworker': 414016, 'coworker test': 214487, 'nbc10responds reporter continues': 553243, 'reporter continues to': 712609, 'continues to answer': 201459, 'to answer your': 900593, 'answer your coronavirus': 78154, 'your coronavirus related': 1023352, 'coronavirus related question': 206637, 'related question one': 708530, 'question one viewer': 693685, 'one viewer asked': 607340, 'viewer asked what': 957188, 'asked what they': 95900, 'what they should': 982417, 'they should do': 883360, 'should do if': 765925, 'do if coworker': 249414, 'if coworker test': 414017, 'coworker test positive': 214488, 'serious flaw': 751386, 'defeat believe': 232037, 'stop grocery': 804698, 'shopping go': 762790, 'go online': 353911, 'online account': 607764, 'for of': 324017, 'simply not': 770247, 'not geared': 569569, 'geared up': 345014, 'there is serious': 878620, 'is serious flaw': 451784, 'serious flaw in': 751387, 'flaw in the': 310262, 'in the strategy': 429577, 'the strategy in': 868203, 'strategy in order': 812659, 'order to defeat': 618675, 'to defeat believe': 904054, 'defeat believe the': 232038, 'believe the country': 126358, 'country is going': 210804, 'have to stop': 383311, 'to stop grocery': 915530, 'stop grocery shopping': 804699, 'grocery shopping go': 365028, 'shopping go online': 762792, 'go online online': 353914, 'online online account': 608616, 'online account for': 607766, 'account for of': 28669, 'for of the': 324021, 'market is simply': 516641, 'is simply not': 451931, 'simply not geared': 770248, 'not geared up': 569570, 'ridiculously': 721643, 'thesis': 881019, 'are uk': 91253, 'uk allowing': 938154, 'allowing seller': 46329, 'seller on': 749051, 'their platform': 874322, 'sell paracetamol': 748846, 'at ridiculously': 100317, 'ridiculously inflated': 721652, 'disgusting watching': 245481, 'people trying': 650028, 'profit out': 682837, 'current can': 221112, 'can ebay': 158208, 'ebay at': 266434, 'least make': 484540, 'report thesis': 712370, 'thesis seller': 881024, 'why are uk': 990795, 'are uk allowing': 91254, 'uk allowing seller': 938155, 'allowing seller on': 46330, 'seller on their': 749053, 'on their platform': 604500, 'their platform to': 874323, 'platform to sell': 659049, 'to sell paracetamol': 914168, 'sell paracetamol at': 748847, 'paracetamol at ridiculously': 641227, 'at ridiculously inflated': 100318, 'ridiculously inflated price': 721653, 'inflated price it': 437050, 'price it disgusting': 674914, 'it disgusting watching': 457580, 'disgusting watching people': 245482, 'watching people trying': 968778, 'people trying to': 650029, 'make profit out': 510366, 'profit out of': 682838, 'the current can': 852614, 'current can ebay': 221113, 'can ebay at': 158209, 'ebay at least': 266436, 'at least make': 99517, 'least make it': 484541, 'make it possible': 510051, 'it possible to': 460394, 'possible to report': 665852, 'to report thesis': 913293, 'report thesis seller': 712371, 'coronavirus infection': 206136, 'india the': 434637, 'the northern': 861881, 'northern railway': 567775, 'announced 400': 76911, '400 percent': 18770, 'percent hike': 651130, 'in platform': 426787, 'the coronavirus infection': 851871, 'coronavirus infection in': 206137, 'infection in india': 436772, 'in india the': 424056, 'india the northern': 434641, 'the northern railway': 861883, 'northern railway ha': 567778, 'railway ha announced': 695703, 'ha announced 400': 369557, 'announced 400 percent': 76913, '400 percent hike': 18771, 'percent hike in': 651131, 'hike in platform': 396222, 'in platform ticket': 426788, 'underground': 940443, 'good to': 357870, 'see showing': 745681, 'showing leadership': 767474, 'leadership this': 483662, 'not travelling': 572262, 'travelling to': 930694, 'work an': 1004754, 'an nh': 56519, 'supermarket utility': 823631, 'utility transport': 951330, 'transport or': 929921, 'worker then': 1007950, 'then get': 877191, 'the underground': 870350, 'underground and': 940444, 'play our': 659197, 'in getting': 423292, 'getting through': 349386, 'good to see': 357899, 'to see showing': 914066, 'see showing leadership': 745682, 'showing leadership this': 767475, 'leadership this make': 483663, 'this make it': 888747, 'clear that if': 181345, 'are not travelling': 88488, 'not travelling to': 572263, 'travelling to work': 930697, 'to work an': 918685, 'work an nh': 1004755, 'an nh supermarket': 56525, 'nh supermarket utility': 562125, 'supermarket utility transport': 823632, 'utility transport or': 951331, 'transport or other': 929923, 'or other essential': 616432, 'essential worker then': 281858, 'worker then get': 1007951, 'then get off': 877196, 'off the underground': 594280, 'the underground and': 870351, 'underground and stay': 940445, 'and stay at': 72287, 'at home we': 99166, 'home we all': 402450, 'need to play': 556011, 'to play our': 911797, 'play our part': 659198, 'our part in': 624261, 'part in getting': 642297, 'in getting through': 423299, 'getting through the': 349389, 'need adding': 554367, 'the naughty': 861325, 'naughty list': 553020, 'list just': 494386, 'just had': 468896, 'had price': 373426, 'hike want': 396295, 'cancel subscription': 160884, 'subscription can': 815886, 'line can': 493026, 'call can': 155807, 'can text': 159937, 'text you': 839963, 'can pause': 159198, 'pause sport': 644616, 'sport package': 789960, 'package on': 633351, 'line apparently': 492959, 'apparently but': 81915, 'work raised': 1005641, 'need adding to': 554368, 'to the naughty': 916892, 'the naughty list': 861326, 'naughty list just': 553021, 'list just had': 494387, 'just had price': 468904, 'had price hike': 373427, 'price hike want': 674539, 'hike want to': 396296, 'want to cancel': 966007, 'to cancel subscription': 902430, 'cancel subscription can': 160885, 'subscription can do': 815887, 'do it on': 249498, 'it on line': 460049, 'on line can': 601855, 'line can call': 493027, 'can call can': 157852, 'call can text': 155808, 'can text you': 159938, 'text you can': 839964, 'you can pause': 1017741, 'can pause sport': 159199, 'pause sport package': 644617, 'sport package on': 789961, 'package on line': 633352, 'on line apparently': 601852, 'line apparently but': 492960, 'apparently but it': 81916, 'but it doesn': 146119, 'doesn work raised': 252000, 'land': 479251, 'commonplace': 189496, 'income economy': 432324, 'with basic': 997372, 'basic diet': 111860, 'diet international': 241731, 'international company': 441772, 'should explore': 765979, 'explore land': 292489, 'land rental': 479294, 'rental option': 711250, 'produce food': 680267, 'for staff': 325847, 'staff over': 792734, 'next 12': 561257, '12 24': 2788, '24 month': 15653, 'case panic': 165948, 'to becomes': 901685, 'becomes commonplace': 120212, 'low income economy': 505347, 'income economy with': 432325, 'economy with basic': 268363, 'with basic diet': 997373, 'basic diet international': 111861, 'diet international company': 241732, 'international company should': 441773, 'company should explore': 191077, 'should explore land': 765980, 'explore land rental': 292490, 'land rental option': 479295, 'rental option to': 711251, 'option to produce': 614129, 'to produce food': 912194, 'produce food for': 680270, 'food for staff': 314573, 'for staff over': 325854, 'staff over the': 792735, 'the next 12': 861643, 'next 12 24': 561258, '12 24 month': 2789, '24 month in': 15654, 'month in case': 537790, 'in case panic': 421267, 'case panic buying': 165949, 'due to becomes': 261709, 'to becomes commonplace': 901686, 'distiller': 247699, 'guild': 368521, 'is rough': 451574, 'rough but': 726243, 'fighting back': 305037, 'back glad': 107032, 'to partner': 911477, 'partner amp': 642760, 'amp to': 54709, 'get ton': 348517, 'production thanks': 682222, 'thanks rob': 842163, 'rob from': 724623, 'the pa': 862825, 'pa distiller': 632842, 'distiller guild': 247710, 'guild more': 368525, 'story to': 812138, 'the is rough': 858525, 'is rough but': 451575, 'rough but we': 726245, 'we are fighting': 970562, 'are fighting back': 86543, 'fighting back glad': 305038, 'back glad to': 107033, 'glad to partner': 351530, 'to partner amp': 911478, 'partner amp to': 642761, 'amp to get': 54711, 'to get ton': 906627, 'get ton of': 348518, 'ton of hand': 924275, 'sanitizer in production': 735152, 'in production thanks': 427025, 'production thanks rob': 682223, 'thanks rob from': 842164, 'rob from the': 724624, 'from the pa': 337822, 'the pa distiller': 862828, 'pa distiller guild': 632843, 'distiller guild more': 247711, 'guild more on': 368526, 'more on this': 539933, 'on this story': 604635, 'this story to': 890368, 'story to come': 812139, 'nigga': 562909, 'takin': 833234, 'strapup': 812525, 'purgin': 690054, 'shit real': 759198, 'real toiletpaper': 701423, 'toiletpaper ten': 922584, 'ten dollar': 837774, 'dollar nigga': 253039, 'nigga worry': 562914, 'about takin': 26299, 'takin shit': 833237, 'shit ya': 759302, 'ya better': 1013968, 'better strapup': 128501, 'strapup nigga': 812526, 'nigga purgin': 562912, 'purgin philadelphia': 690055, 'philadelphia pennsylvania': 654698, 'this shit real': 890086, 'shit real toiletpaper': 759199, 'real toiletpaper ten': 701424, 'toiletpaper ten dollar': 922585, 'ten dollar nigga': 837776, 'dollar nigga worry': 253040, 'nigga worry about': 562915, 'worry about takin': 1010655, 'about takin shit': 26300, 'takin shit ya': 833238, 'shit ya better': 759303, 'ya better strapup': 1013969, 'better strapup nigga': 128502, 'strapup nigga purgin': 812527, 'nigga purgin philadelphia': 562913, 'purgin philadelphia pennsylvania': 690056, 'cannatech': 161486, 'cannatechtoday': 161489, 'cannabisbusiness': 161459, 'cannabisscience': 161483, 'coronavirus cbd': 205631, 'cbd navigating': 168318, 'navigating shift': 553123, 'behavior cannatech': 123952, 'cannatech cannabis': 161487, 'cannabis cannatechtoday': 161387, 'cannatechtoday cannabisbusiness': 161490, 'cannabisbusiness cannabisscience': 161460, 'cannabisscience innovation': 161484, 'innovation tech': 438899, 'tech cbd': 836053, 'the coronavirus cbd': 851817, 'coronavirus cbd navigating': 205632, 'cbd navigating shift': 168319, 'navigating shift in': 553124, 'consumer behavior cannatech': 196454, 'behavior cannatech cannabis': 123953, 'cannatech cannabis cannatechtoday': 161488, 'cannabis cannatechtoday cannabisbusiness': 161388, 'cannatechtoday cannabisbusiness cannabisscience': 161491, 'cannabisbusiness cannabisscience innovation': 161461, 'cannabisscience innovation tech': 161485, 'innovation tech cbd': 438900, 'wuhancoronavirus': 1013537, 'japan is': 464745, 'taking different': 833325, 'different approach': 241897, 'approach at': 82929, 'moment everyone': 535930, 'everywhere but': 288179, 'open school': 612491, 'school start': 741931, 'start in': 794338, '19 wuhancoronavirus': 12237, 'japan is taking': 464748, 'is taking different': 452538, 'taking different approach': 833326, 'different approach at': 241899, 'approach at the': 82930, 'the moment everyone': 860752, 'moment everyone is': 535931, 'everyone is wearing': 287122, 'is wearing mask': 453814, 'mask and bottle': 518309, 'and bottle of': 59093, 'hand sanitizer are': 375308, 'sanitizer are everywhere': 734482, 'are everywhere but': 86289, 'everywhere but people': 288180, 'but people are': 146763, 'people are working': 647115, 'are working and': 91687, 'working and restaurant': 1008507, 'and restaurant are': 70367, 'restaurant are open': 716313, 'are open school': 88800, 'open school start': 612492, 'school start in': 741933, 'start in about': 794339, 'about week 19': 26866, 'week 19 wuhancoronavirus': 975796, 'goverment': 359750, 'shop closed': 760046, 'closed online': 183265, 'getting my': 349135, 'business still': 144416, 'still think': 801295, 'the goverment': 856497, 'goverment ha': 359751, 'over reacted': 630551, 'reacted on': 700155, 'the shop closed': 866986, 'shop closed online': 760048, 'closed online shopping': 183267, 'will be getting': 992474, 'be getting my': 115008, 'getting my business': 349136, 'my business still': 547581, 'business still think': 144419, 'still think the': 801298, 'think the goverment': 885635, 'the goverment ha': 856498, 'goverment ha really': 359752, 'ha really over': 371653, 'really over reacted': 702478, 'over reacted on': 630552, 'reacted on this': 700156, 'on this covid': 604605, 'unsurprisingly': 943591, 'sentiment survey': 751005, 'survey unsurprisingly': 828974, 'unsurprisingly show': 943592, 'show significant': 767132, 'significant hit': 769461, 'hit in': 398280, 'in confidence': 421645, 'but figure': 145722, 'figure are': 305190, 'are yet': 91755, 'yet to': 1016283, 'level seen': 487696, 'seen following': 747016, 'crisis more': 217728, 'and comment': 60126, 'comment for': 188413, 'uk business': 938223, 'uk consumer sentiment': 938269, 'consumer sentiment survey': 198929, 'sentiment survey unsurprisingly': 751006, 'survey unsurprisingly show': 828975, 'unsurprisingly show significant': 943593, 'show significant hit': 767133, 'significant hit in': 769462, 'hit in confidence': 398282, 'in confidence due': 421646, 'to but figure': 902151, 'but figure are': 145723, 'figure are yet': 305192, 'are yet to': 91756, 'yet to fall': 1016290, 'to fall to': 905643, 'fall to level': 297096, 'to level seen': 909231, 'level seen following': 487697, 'seen following the': 747017, 'following the 2008': 312870, 'the 2008 crisis': 847991, '2008 crisis more': 13655, 'crisis more update': 217731, 'more update and': 540857, 'update and comment': 946860, 'and comment for': 60128, 'comment for uk': 188415, 'for uk business': 327406, 'uk business here': 938224, 'kolkata': 477358, 'pricesindia': 677893, 'diesel to': 241699, 'cost more': 208019, 'in mumbai': 425510, 'bengaluru kolkata': 127212, 'kolkata due': 477359, 'in vat': 430542, 'vat check': 952726, 'your city': 1023226, 'city petrolprice': 179321, 'petrolprice diesel': 653853, 'diesel pricesindia': 241687, 'pricesindia read': 677894, 'petrol diesel to': 653730, 'diesel to cost': 241700, 'to cost more': 903601, 'cost more in': 208020, 'more in mumbai': 539518, 'in mumbai bengaluru': 425513, 'mumbai bengaluru kolkata': 545997, 'bengaluru kolkata due': 127213, 'kolkata due to': 477360, 'due to hike': 261810, 'to hike in': 907762, 'hike in vat': 396227, 'in vat check': 430543, 'vat check price': 952727, 'check price in': 174600, 'price in your': 674753, 'in your city': 431068, 'your city petrolprice': 1023228, 'city petrolprice diesel': 179322, 'petrolprice diesel pricesindia': 653854, 'diesel pricesindia read': 241688, 'pricesindia read more': 677895, 'octopus': 579154, 'your octopus': 1025047, 'can have your': 158595, 'have your octopus': 383715, 'sandbox': 733675, 'you keeping': 1019455, 'keeping pulse': 472533, 'retail trend': 718815, 'trend through': 931473, '19 see': 10384, 'brand alike': 137720, 'alike are': 41772, 'create new': 215697, 'new sandbox': 559537, 'sandbox article': 733676, 'article alonetogether': 94243, 'are you keeping': 91815, 'you keeping pulse': 1019456, 'keeping pulse on': 472534, 'pulse on retail': 688989, 'on retail trend': 603184, 'retail trend through': 718819, 'trend through covid': 931474, 'covid 19 see': 213760, '19 see how': 10387, 'see how consumer': 745220, 'consumer and brand': 196199, 'and brand alike': 59145, 'brand alike are': 137721, 'alike are working': 41774, 'working to create': 1008984, 'to create new': 903717, 'create new normal': 215699, 'normal in this': 567183, 'in this new': 429982, 'this new sandbox': 889125, 'new sandbox article': 559538, 'sandbox article alonetogether': 733677, 'important scammer': 418961, 'call and': 155758, 'email by': 272137, 'by using': 154646, 'resource prepared': 714858, 'prepared by': 670165, 'important scammer are': 418962, '19 learn how': 8296, 'yourself from scam': 1026622, 'from scam call': 337172, 'scam call and': 740095, 'call and email': 155762, 'and email by': 62026, 'email by using': 272138, 'by using the': 154650, 'using the resource': 950712, 'the resource prepared': 865596, 'resource prepared by': 714859, 'prepared by the': 670168, 'poco': 662236, 'dreamstime': 258647, 'the poco': 863889, 'poco grocery': 662237, 'market during': 516319, 'in check': 421349, 'my photo': 549761, 'photo on': 655223, 'on dreamstime': 600409, 'the poco grocery': 863890, 'poco grocery store': 662238, 'grocery store market': 365554, 'store market during': 808908, 'market during the': 516321, 'during the in': 263141, 'the in check': 857998, 'in check out': 421350, 'out my photo': 626607, 'my photo on': 549762, 'photo on dreamstime': 655224, 'epochtimes': 279567, 'mailbox': 508676, 'beauty some': 118792, 'some spare': 783910, 'spare toiletpaper': 787509, 'toiletpaper found': 922008, 'the epochtimes': 854455, 'epochtimes the': 279570, 'the ccp': 850556, 'ccp chinese': 168456, 'chinese communist': 177216, 'party virus': 643057, 'virus special': 958777, 'special edition': 787899, 'edition in': 268615, 'my mailbox': 549187, 'mailbox human': 508677, 'human pandemic': 410586, 'beauty some spare': 118793, 'some spare toiletpaper': 783912, 'spare toiletpaper found': 787510, 'toiletpaper found the': 922010, 'found the epochtimes': 330407, 'the epochtimes the': 854457, 'epochtimes the ccp': 279571, 'the ccp chinese': 850557, 'ccp chinese communist': 168457, 'chinese communist party': 177217, 'communist party virus': 189679, 'party virus special': 643058, 'virus special edition': 958778, 'special edition in': 787901, 'edition in my': 268616, 'in my mailbox': 425598, 'my mailbox human': 549188, 'mailbox human pandemic': 508678, 'shouldbeillegal': 766684, 'rogersripoff': 725023, 'really sad': 702531, 'sad pathetic': 729210, 'pathetic that': 644061, 'pandemic everyone': 635398, 'everyone isolating': 287126, 'isolating increased': 455116, 'their movie': 874025, 'movie price': 544055, 'new release': 559437, 'release from': 708948, 'from 99': 334353, '99 to': 23905, '24 99': 15553, '99 that': 23894, 'gouging shouldbeillegal': 359451, 'shouldbeillegal rogersripoff': 766685, 'rogersripoff so': 725024, 'sad do': 729165, 'it really sad': 460655, 'really sad pathetic': 702533, 'sad pathetic that': 729211, 'pathetic that with': 644064, 'that with the': 847631, 'with the pandemic': 1001421, 'the pandemic everyone': 862961, 'pandemic everyone isolating': 635400, 'everyone isolating increased': 287127, 'isolating increased their': 455117, 'increased their movie': 433498, 'their movie price': 874026, 'movie price for': 544056, 'price for new': 674011, 'for new release': 323829, 'new release from': 559438, 'release from 99': 708949, 'from 99 to': 334354, '99 to 24': 23906, 'to 24 99': 899624, '24 99 that': 15554, '99 that price': 23896, 'price gouging shouldbeillegal': 674323, 'gouging shouldbeillegal rogersripoff': 359452, 'shouldbeillegal rogersripoff so': 766686, 'rogersripoff so sad': 725025, 'so sad do': 778139, 'sad do better': 729166, 'chemistry': 175466, 'swedish': 830082, 'approvall': 83099, 'outbreak employee': 628191, 'of chemistry': 581322, 'chemistry have': 175469, 'begun producing': 123721, 'their laboratory': 873778, 'laboratory based': 478465, 'the who': 871467, 'who recipe': 989510, 'recipe the': 704504, 'the swedish': 869050, 'swedish chemical': 830083, 'chemical agency': 175332, 'agency gave': 38011, 'gave approvall': 344596, 'approvall yesterday': 83100, 'yesterday link': 1015793, 'in swedish': 428764, 'fight the covid': 304888, '19 outbreak employee': 9119, 'outbreak employee at': 628192, 'employee at the': 273654, 'at the department': 100926, 'department of chemistry': 237233, 'of chemistry have': 581323, 'chemistry have begun': 175470, 'have begun producing': 379757, 'begun producing hand': 123722, 'sanitizer in their': 735160, 'in their laboratory': 429752, 'their laboratory based': 873779, 'laboratory based on': 478466, 'on the who': 604451, 'the who recipe': 871474, 'who recipe the': 989511, 'recipe the swedish': 704505, 'the swedish chemical': 869051, 'swedish chemical agency': 830084, 'chemical agency gave': 175333, 'agency gave approvall': 38012, 'gave approvall yesterday': 344597, 'approvall yesterday link': 83101, 'yesterday link in': 1015794, 'link in swedish': 493859, 'dubai': 261457, '19 dubai': 6665, 'dubai economy': 261466, 'economy slap': 268216, 'slap fine': 773533, 'fine on': 307673, 'on 14': 599011, '14 merchant': 3494, 'merchant for': 529014, 'hiking face': 396371, '19 dubai economy': 6666, 'dubai economy slap': 261469, 'economy slap fine': 268217, 'slap fine on': 773535, 'fine on 14': 307674, 'on 14 merchant': 599012, '14 merchant for': 3496, 'merchant for hiking': 529015, 'for hiking face': 322276, 'hiking face mask': 396372, 'progression': 683396, 's7c4de5xnb': 728858, 'recession doe': 704257, 'always equal': 49540, 'equal housing': 279596, 'housing crisis': 407069, 'crisis residential': 217970, 'residential realestate': 714443, 'realestate progression': 701511, 'progression home': 683397, 'price value': 677289, 'value appreciated': 952090, 'appreciated investment': 82821, 'investment self': 444057, 'self declared': 747595, 'declared inventory': 231233, 'inventory http': 443672, 'http co': 409751, 'co s7c4de5xnb': 184954, 'recession doe not': 704258, 'doe not always': 251473, 'not always equal': 568178, 'always equal housing': 49541, 'equal housing crisis': 279597, 'housing crisis residential': 407070, 'crisis residential realestate': 217971, 'residential realestate progression': 714446, 'realestate progression home': 701512, 'progression home price': 683398, 'home price value': 401923, 'price value appreciated': 677290, 'value appreciated investment': 952091, 'appreciated investment self': 82822, 'investment self declared': 444058, 'self declared inventory': 747596, 'declared inventory http': 231234, 'inventory http co': 443673, 'http co s7c4de5xnb': 409771, 'will gold': 993565, 'of huge': 584858, 'huge unemployment': 410251, 'unemployment gold': 941216, 'gold market': 355928, 'market global': 516455, 'global pricing': 352144, 'will gold price': 993566, 'gold price rise': 355972, 'price rise with': 676251, 'rise with news': 723073, 'with news of': 999718, 'news of huge': 560650, 'of huge unemployment': 584864, 'huge unemployment gold': 410253, 'unemployment gold market': 941217, 'gold market global': 355929, 'market global pricing': 516457, 'laura': 482136, 'hi laura': 394694, 'laura well': 482145, 'hi laura well': 394695, 'laura well fargo': 482146, 'product at 800': 680961, 'pressuring': 671265, 'street is': 813007, 'is pressuring': 451003, 'pressuring key': 671268, 'key healthcare': 473303, 'healthcare company': 387065, 'crisis audio': 217099, 'audio here': 102927, 'here of': 393398, 'of banker': 580542, 'banker asking': 110346, 'asking pharmaceutical': 96040, 'company company': 190556, 'that supply': 846582, 'supply n95': 825574, 'emergency by': 272614, 'wall street is': 965183, 'street is pressuring': 813012, 'is pressuring key': 451004, 'pressuring key healthcare': 671269, 'key healthcare company': 473304, 'healthcare company to': 387066, 'company to raise': 191240, 'raise price due': 695913, 'coronavirus crisis audio': 205739, 'crisis audio here': 217100, 'audio here of': 102928, 'here of banker': 393399, 'of banker asking': 580543, 'banker asking pharmaceutical': 110349, 'asking pharmaceutical company': 96041, 'pharmaceutical company company': 654064, 'company company that': 190557, 'company that supply': 191192, 'that supply n95': 846586, 'supply n95 mask': 825575, 'n95 mask and': 551185, 'mask and ventilator': 518387, 'ventilator to find': 954627, 'how to profit': 409058, '19 emergency by': 6751, 'business they': 144513, 'struggle more': 814358, 'than big': 840406, 'shelf too': 757715, 'support local business': 826620, 'local business they': 497779, 'business they are': 144514, 'going to struggle': 355728, 'to struggle more': 915689, 'struggle more than': 814359, 'more than big': 540598, 'than big supermarket': 840407, 'chain and are': 170455, 'and are more': 58333, 'likely to still': 492180, 'to still have': 915410, 'still have stock': 800662, 'have stock on': 382763, 'stock on their': 802567, 'on their shelf': 604505, 'their shelf too': 874687, 'storeroom': 811751, 'risen since': 723123, 'since people': 770782, 'their fridge': 873377, 'fridge and': 333374, 'and storeroom': 72525, 'storeroom demand': 811752, 'increase may': 432908, 'the lord': 859727, 'lord help': 503310, 'demand ha risen': 235614, 'ha risen since': 371769, 'risen since people': 723124, 'since people are': 770783, 'people are filling': 646973, 'are filling up': 86560, 'filling up their': 305643, 'up their fridge': 946237, 'their fridge and': 873378, 'fridge and storeroom': 333378, 'and storeroom demand': 72526, 'storeroom demand increase': 811753, 'demand increase price': 235692, 'increase price increase': 433006, 'price increase may': 674778, 'increase may the': 432909, 'may the lord': 521565, 'the lord help': 859729, 'lord help the': 503312, 'help the poor': 390675, 'ctv': 220124, 'oh woman': 596492, 'on 35': 599091, 'store pa': 809444, 'pa police': 632875, 'police ctv': 662963, 'ctv news': 220125, 'oh woman intentionally': 596493, 'coughed on 35': 208618, 'on 35 00': 599092, '35 00 in': 17864, '00 in food': 262, 'in food at': 422964, 'food at grocery': 313445, 'grocery store pa': 365634, 'store pa police': 809445, 'pa police ctv': 632876, 'police ctv news': 662964, 'phony': 655096, 'phil': 654679, 'weiser': 977849, 'alwayswatchingoutforyou': 49817, 'are sending': 89976, 'sending phony': 750077, 'phony covid': 655097, '19 email': 6746, 'and text': 73148, 'text message': 839903, 'to infecting': 908358, 'infecting computer': 436681, 'computer with': 192771, 'with virus': 1001986, 'and ripping': 70537, 'ripping off': 722718, 'off nervous': 593989, 'nervous american': 557451, 'american colorado': 51870, 'ag phil': 36831, 'phil weiser': 654685, 'weiser say': 977850, 'say do': 738578, 'not download': 569100, 'download or': 257605, 'click the': 181947, 'link alwayswatchingoutforyou': 493788, 'scammer are sending': 740543, 'are sending phony': 89978, 'sending phony covid': 750078, 'phony covid 19': 655098, 'covid 19 email': 213015, '19 email and': 6747, 'email and text': 272114, 'and text message': 73150, 'text message to': 839917, 'message to infecting': 529452, 'to infecting computer': 908359, 'infecting computer with': 436682, 'computer with virus': 192772, 'with virus and': 1001987, 'virus and ripping': 957942, 'and ripping off': 70538, 'ripping off nervous': 722719, 'off nervous american': 593990, 'nervous american colorado': 557452, 'american colorado ag': 51871, 'colorado ag phil': 186775, 'ag phil weiser': 36832, 'phil weiser say': 654686, 'weiser say do': 977851, 'say do not': 738581, 'do not download': 249719, 'not download or': 569101, 'download or click': 257606, 'or click the': 614740, 'click the link': 181949, 'the link alwayswatchingoutforyou': 859434, 'context': 200896, 'this text': 890499, 'text from': 839892, 'mum for': 545895, 'for context': 320321, 'context my': 200908, 'dad work': 224412, 'hospital stop': 404652, 'stop stealing': 805066, 'stealing hand': 799233, 'got this text': 358944, 'this text from': 890500, 'text from my': 839896, 'from my mum': 336518, 'my mum for': 549373, 'mum for context': 545896, 'for context my': 320322, 'context my dad': 200909, 'my dad work': 547904, 'dad work in': 224414, 'work in hospital': 1005314, 'in hospital stop': 423819, 'hospital stop stealing': 404653, 'stop stealing hand': 805067, 'stealing hand sanitizer': 799234, 'sanitizer from hospital': 734947, 'unleashed': 942580, 'oval': 629736, 'why won': 991559, 'won he': 1003835, 'he unleashed': 385555, 'unleashed chaos': 942583, 'chaos during': 173011, 'pandemic telling': 636631, 'telling 50': 837174, '50 state': 19859, 'state governor': 795620, 'governor to': 361005, 'go it': 353777, 'it alone': 456405, 'he bidding': 384782, 'supply against': 824667, 'against them': 37687, 'them there': 876405, 'no bottom': 563711, 'bottom with': 136447, 'with donald': 998113, 'trump get': 933575, 'get him': 347226, 'him out': 396689, 'the oval': 862758, 'oval office': 629737, 'office now': 595495, 'why won he': 991560, 'won he unleashed': 1003836, 'he unleashed chaos': 385556, 'unleashed chaos during': 942584, 'chaos during pandemic': 173012, 'during pandemic telling': 262897, 'pandemic telling 50': 636632, 'telling 50 state': 837175, '50 state governor': 19860, 'state governor to': 795627, 'governor to go': 361008, 'to go it': 906815, 'go it alone': 353778, 'it alone now': 456406, 'alone now he': 46894, 'now he bidding': 574901, 'he bidding up': 384783, 'price on supply': 675722, 'on supply against': 603815, 'supply against them': 824669, 'against them there': 37691, 'them there is': 876406, 'is no bottom': 449913, 'no bottom with': 563712, 'bottom with donald': 136448, 'with donald trump': 998114, 'donald trump get': 254110, 'trump get him': 933576, 'get him out': 347227, 'him out of': 396690, 'of the oval': 591308, 'the oval office': 862759, 'oval office now': 629739, 'til': 895934, 'long til': 501756, 'til the': 895947, 'inevitable jacking': 436390, 'this mass': 888776, 'hysteria when': 412489, 'how long til': 408213, 'long til the': 501757, 'til the inevitable': 895950, 'the inevitable jacking': 858210, 'inevitable jacking up': 436391, 'jacking up if': 464185, 'up if this': 945137, 'if this mass': 415162, 'this mass hysteria': 888777, 'mass hysteria when': 519793, 'hysteria when the': 412490, 'when the first': 984154, 'the first grocery': 855312, 'store worker test': 811597, 'where saying': 985158, 'to frontline': 906272, 'and nhsstaff': 67587, 'nhsstaff isn': 562253, 'isn enough': 454486, 'enough stop': 277637, 'buying so': 151039, 'too stophoarding': 925088, 'now time where': 576160, 'time where saying': 898320, 'where saying thank': 985159, 'you to frontline': 1021780, 'to frontline worker': 906275, 'frontline worker and': 338858, 'worker and nhsstaff': 1006315, 'and nhsstaff isn': 67588, 'nhsstaff isn enough': 562254, 'isn enough stop': 454490, 'enough stop panic': 277638, 'panic buying so': 637890, 'buying so they': 151046, 'get food too': 347071, 'food too stophoarding': 317337, 'bbcnews': 113125, 'avoidingtheshops': 105505, 'pluckingupcourage': 661208, 'onlyforessentials': 611525, 'any excuse': 79198, 'afternoon oh': 36699, 'look is': 502443, 'on put': 603029, 'put car': 690541, 'car key': 163157, 'key down': 473273, 'take shoe': 832573, 'shoe off': 759677, 'off bbcnews': 593677, 'bbcnews avoidingtheshops': 113126, 'avoidingtheshops pluckingupcourage': 105506, 'pluckingupcourage socialdistancing': 661209, 'socialdistancing onlyforessentials': 780574, 'wa looking for': 962590, 'looking for any': 502850, 'for any excuse': 319403, 'any excuse to': 79199, 'excuse to avoid': 289778, 'this afternoon oh': 886234, 'afternoon oh look': 36700, 'oh look is': 596415, 'look is on': 502444, 'is on put': 450478, 'on put car': 603030, 'put car key': 690542, 'car key down': 163158, 'key down and': 473274, 'down and take': 256517, 'and take shoe': 72975, 'take shoe off': 832574, 'shoe off bbcnews': 759678, 'off bbcnews avoidingtheshops': 593678, 'bbcnews avoidingtheshops pluckingupcourage': 113127, 'avoidingtheshops pluckingupcourage socialdistancing': 105507, 'pluckingupcourage socialdistancing onlyforessentials': 661210, 'texan are': 839716, 'seriously and': 751525, 'using grocery': 950503, 'store entertainment': 807598, 'entertainment these': 278607, 'selling non': 749358, 'this behavior': 886535, 'behavior 19': 123850, 'texan are not': 839718, 'are not taking': 88482, 'this seriously and': 890034, 'seriously and are': 751526, 'and are using': 58373, 'are using grocery': 91421, 'using grocery store': 950505, 'store and big': 806205, 'and big box': 58956, 'box store entertainment': 137167, 'store entertainment these': 807599, 'entertainment these big': 278608, 'box store must': 137169, 'store must stop': 809008, 'must stop selling': 546924, 'stop selling non': 804992, 'selling non essential': 749359, 'non essential to': 566367, 'essential to help': 281700, 'help stop this': 390591, 'stop this behavior': 805184, 'this behavior 19': 886536, 'eoengland': 279252, 'deny': 237131, 'ffp3': 304282, 'ptocedure': 687652, 'apron': 83743, 'eoengland deny': 279253, 'deny need': 237138, 'for ffp3': 321461, 'ffp3 gown': 304283, 'gown for': 361374, 'for facing': 321361, 'facing frontline': 295475, 'frontline except': 338736, 'except aerosol': 289123, 'aerosol generating': 33909, 'generating ptocedure': 345593, 'ptocedure area': 687653, 'area staff': 92193, 'staff sick': 792867, 'sick amp': 768356, 'amp 32': 53330, '32 dead': 17662, 'dead staff': 229179, 'staff given': 792491, 'given useless': 351199, 'useless basic': 950220, 'basic surgical': 112073, 'plastic apron': 658794, 'apron which': 83752, 'say using': 739428, 'using too': 950770, 'much well': 545450, 'eoengland deny need': 279254, 'deny need for': 237139, 'need for ffp3': 554842, 'for ffp3 gown': 321462, 'ffp3 gown for': 304284, 'gown for facing': 361375, 'for facing frontline': 321362, 'facing frontline except': 295476, 'frontline except aerosol': 338737, 'except aerosol generating': 289124, 'aerosol generating ptocedure': 33911, 'generating ptocedure area': 345594, 'ptocedure area staff': 687654, 'area staff sick': 92194, 'staff sick amp': 792868, 'sick amp 32': 768357, 'amp 32 dead': 53331, '32 dead staff': 17663, 'dead staff given': 229180, 'staff given useless': 792492, 'given useless basic': 351200, 'useless basic surgical': 950221, 'basic surgical mask': 112074, 'surgical mask plastic': 828365, 'mask plastic apron': 519120, 'plastic apron which': 658796, 'apron which say': 83753, 'which say using': 986290, 'say using too': 739430, 'using too much': 950771, 'too much well': 924955, 'londonlockdown': 501251, 'distancing look': 247295, 'london give': 501076, 'stophoarding london': 805424, 'london londonlockdown': 501127, 'londonlockdown socialdistancing': 501263, 'stayhomesavelives retweet': 798434, 'retweet 19': 720036, 'coronacrisisuk stayathomechallenge': 204906, 'stay indoors this': 797081, 'indoors this is': 435430, 'is what social': 453894, 'social distancing look': 779654, 'distancing look like': 247296, 'look like in': 502486, 'like in london': 490495, 'in london give': 424880, 'london give the': 501077, 'give the mask': 350744, 'to the nh': 916902, 'nh and stop': 561882, 'stop hoarding stophoarding': 804742, 'hoarding stophoarding london': 399547, 'stophoarding london londonlockdown': 805425, 'london londonlockdown socialdistancing': 501128, 'londonlockdown socialdistancing stayathome': 501264, 'socialdistancing stayathome stayhomesavelives': 780726, 'stayathome stayhomesavelives retweet': 797651, 'stayhomesavelives retweet 19': 798435, 'retweet 19 coronacrisisuk': 720037, '19 coronacrisisuk stayathomechallenge': 6067, '19 pro': 9831, 'pro tip': 679128, 'tip eastern': 898754, 'eastern european': 265581, 'european are': 283538, 'are hard': 87012, 'hard fuck': 377924, 'fuck nothing': 339608, 'nothing panic': 573134, 'bought in': 136598, 'local polish': 498285, 'polish supermarket': 663586, 'supermarket easiest': 820080, 'easiest shop': 265177, 'shop ever': 760150, 'covid 19 pro': 213614, '19 pro tip': 9832, 'pro tip eastern': 679130, 'tip eastern european': 898755, 'eastern european are': 265582, 'european are hard': 283539, 'are hard fuck': 87014, 'hard fuck nothing': 377925, 'fuck nothing panic': 339609, 'nothing panic bought': 573135, 'panic bought in': 637422, 'bought in our': 136602, 'in our local': 426312, 'our local polish': 623783, 'local polish supermarket': 498286, 'polish supermarket easiest': 663588, 'supermarket easiest shop': 820081, 'easiest shop ever': 265178, 'lvmh': 507015, 'swapping': 829989, 'luxuryfashion': 506986, 'brandcsr': 138086, 'gartnermktg': 343721, 'lvmh is': 507026, 'is swapping': 452512, 'swapping luxury': 829992, 'luxury for': 506930, 'for wellness': 327783, 'wellness in': 978844, 'more luxuryfashion': 539737, 'luxuryfashion brandcsr': 506987, 'brandcsr gartnermktg': 138087, 'gartnermktg cmo': 343722, 'lvmh is swapping': 507028, 'is swapping luxury': 452513, 'swapping luxury for': 829993, 'luxury for wellness': 506931, 'for wellness in': 327784, 'wellness in the': 978845, 'the pandemic read': 863072, 'read more luxuryfashion': 700442, 'more luxuryfashion brandcsr': 539738, 'luxuryfashion brandcsr gartnermktg': 506988, 'brandcsr gartnermktg cmo': 138088, 'stophoarding this': 805503, 'literally happened': 495014, 'the 20': 847979, '20 percent': 13253, 'percent got': 651126, 'in first': 422908, 'first important': 308719, 'important lesson': 418865, 'everyone people': 287266, 'are worst': 91744, 'worst then': 1011276, 'virus shopping': 958738, 'stophoarding this ha': 805504, 'this ha literally': 887807, 'ha literally happened': 371164, 'literally happened to': 495015, 'happened to 80': 377271, 'to 80 percent': 899852, '80 percent of': 22622, 'percent of the': 651162, 'this country the': 886974, 'country the 20': 211124, 'the 20 percent': 847985, '20 percent got': 13255, 'percent got in': 651127, 'got in first': 358628, 'in first important': 422910, 'first important lesson': 308720, 'important lesson for': 418866, 'lesson for everyone': 486473, 'for everyone people': 321227, 'everyone people are': 287267, 'people are worst': 647117, 'are worst then': 91745, 'worst then the': 1011277, 'then the virus': 877627, 'the virus shopping': 870888, 'reserving': 714149, 'of choice': 581397, 'choice due': 177755, 'adjusting their': 32358, 'hour with': 406104, 'some reserving': 783733, 'reserving the': 714159, 'senior very': 750432, 'is considering': 446754, 'considering something': 195412, 'something similar': 785050, 'similar maybe': 769909, 'maybe day': 521661, 'week thanks': 976973, 'is our grocery': 450621, 'grocery store of': 365602, 'store of choice': 809146, 'of choice due': 581400, 'choice due to': 177756, '19 store are': 10882, 'store are adjusting': 806454, 'are adjusting their': 84234, 'adjusting their hour': 32359, 'their hour with': 873600, 'hour with some': 406107, 'with some reserving': 1000862, 'some reserving the': 783734, 'reserving the first': 714160, 'first hour for': 308713, 'for senior very': 325483, 'senior very grateful': 750433, 'very grateful for': 955199, 'grateful for this': 362276, 'for this is': 327041, 'this is considering': 888215, 'is considering something': 446763, 'considering something similar': 195413, 'something similar maybe': 785052, 'similar maybe day': 769910, 'maybe day week': 521662, 'day week thanks': 228700, 'british love': 140539, 'queue so': 694058, 'so with': 778789, 'park are': 641869, 'to hang': 907142, 'hang out': 376934, 'the british love': 850025, 'british love to': 140540, 'love to queue': 504853, 'to queue so': 912672, 'queue so with': 694061, 'so with all': 778790, 'with all this': 997166, 'all this socialdistancing': 45135, 'this socialdistancing supermarket': 890232, 'socialdistancing supermarket car': 780771, 'car park are': 163212, 'park are now': 641870, 'are now the': 88607, 'now the place': 576060, 'the place to': 863775, 'place to hang': 657756, 'to hang out': 907144, 'swim': 830350, 'drowning': 260817, 'whore': 990602, 'stophoarding hope': 805415, 'buyer feel': 149642, 'guilty all': 368545, 'bought now': 136656, 'now going': 574797, 'date unused': 226749, 'unused you': 943981, 'you total': 1021891, 'total muppets': 926196, 'muppets your': 546138, 'your the': 1026133, 'type that': 937612, 'would swim': 1012300, 'swim away': 830351, 'from drowning': 335220, 'drowning child': 260818, 'child you': 176280, 'corona ridden': 204145, 'ridden snake': 721417, 'snake loving': 776057, 'loving whore': 505071, 'whore of': 990607, 'stophoarding hope you': 805416, 'hope you panic': 403804, 'panic buyer feel': 637575, 'buyer feel guilty': 149643, 'feel guilty all': 302656, 'guilty all the': 368546, 'food you bought': 317706, 'you bought now': 1017508, 'bought now going': 136657, 'now going out': 574801, 'going out of': 355383, 'of date unused': 582370, 'date unused you': 226750, 'unused you total': 943982, 'you total muppets': 1021892, 'total muppets your': 926197, 'muppets your the': 546139, 'your the type': 1026134, 'the type that': 870166, 'type that would': 937613, 'that would swim': 847690, 'would swim away': 1012301, 'swim away from': 830352, 'away from drowning': 105874, 'from drowning child': 335221, 'drowning child you': 260819, 'child you corona': 176282, 'you corona ridden': 1018052, 'corona ridden snake': 204146, 'ridden snake loving': 721418, 'snake loving whore': 776058, 'loving whore of': 505072, 'whore of humanity': 990608, 'pfgc': 653912, 'ncmi': 553329, 'plnt': 661074, 'consumer related': 198674, 'related stock': 708575, 'stock trading': 803025, 'trading if': 928871, 'are never': 88214, 'never coming': 557929, 'quarantine pfgc': 692431, 'pfgc ncmi': 653913, 'ncmi plnt': 553330, 'plnt to': 661075, 'to name': 910465, 'name few': 551628, 'consumer related stock': 198678, 'related stock trading': 708577, 'stock trading if': 803026, 'trading if they': 928872, 'they are never': 881340, 'are never coming': 88217, 'never coming back': 557930, 'coming back because': 188001, 'because of and': 119309, 'of and quarantine': 580176, 'and quarantine pfgc': 69859, 'quarantine pfgc ncmi': 692432, 'pfgc ncmi plnt': 653914, 'ncmi plnt to': 553331, 'plnt to name': 661076, 'to name few': 910469, 'macy': 507504, 'herald': 392547, 'solitary': 781963, 'serious argument': 751336, 'argument about': 92745, 'being branded': 124901, 'branded chinesevirus': 138092, 'chinesevirus everywhere': 177434, 'nyc is': 577999, 'is pretty': 451005, 'much ghost': 544949, 'town and': 927432, 'retail giant': 718139, 'giant macy': 349824, 'macy flagship': 507505, 'flagship store': 309964, 'and herald': 64520, 'herald square': 392555, 'square is': 791483, 'is solitary': 452079, 'is serious argument': 451780, 'serious argument about': 751337, 'argument about the': 92746, 'about the pandemic': 26474, 'pandemic is being': 635759, 'is being branded': 446066, 'being branded chinesevirus': 124902, 'branded chinesevirus everywhere': 138093, 'chinesevirus everywhere in': 177435, 'everywhere in nyc': 288221, 'in nyc is': 426023, 'nyc is pretty': 578000, 'is pretty much': 451012, 'pretty much ghost': 671452, 'much ghost town': 544950, 'ghost town and': 349675, 'town and the': 927436, 'and the retail': 73553, 'the retail giant': 865718, 'retail giant macy': 718143, 'giant macy flagship': 349825, 'macy flagship store': 507506, 'flagship store is': 309967, 'store is closed': 808476, 'is closed and': 446570, 'closed and herald': 182985, 'and herald square': 64521, 'herald square is': 392556, 'square is solitary': 791484, 'bedlam': 120445, 'hustle': 411817, 'samaritan': 732941, 'gooders': 358013, 'huckster': 409890, 'it bedlam': 456783, 'bedlam in': 120446, 'mask market': 518948, 'market profiteer': 516919, 'profiteer out': 682972, 'out hustle': 626348, 'hustle good': 411820, 'good samaritan': 357686, 'samaritan scammer': 732944, 'scammer pricegouging': 740616, 'pricegouging hospital': 677818, 'hospital government': 404431, 'do gooders': 249351, 'gooders and': 358014, 'and huckster': 64848, 'huckster are': 409891, 'all competing': 42410, 'competing scam': 191641, 'it bedlam in': 456784, 'bedlam in the': 120447, 'in the mask': 429344, 'the mask market': 860222, 'mask market profiteer': 518949, 'market profiteer out': 516920, 'profiteer out hustle': 682973, 'out hustle good': 626349, 'hustle good samaritan': 411821, 'good samaritan scammer': 357688, 'samaritan scammer pricegouging': 732945, 'scammer pricegouging hospital': 740617, 'pricegouging hospital government': 677819, 'hospital government do': 404432, 'government do gooders': 360028, 'do gooders and': 249352, 'gooders and huckster': 358015, 'and huckster are': 64849, 'huckster are all': 409892, 'are all competing': 84294, 'all competing scam': 42411, 'competing scam and': 191642, 'scam and price': 740012, 'icliniq100hrs': 412780, 'celebrateyou': 168824, 'onlinedoctor': 609814, 'coronavirus ask': 205521, 'ask doctor': 95509, 'doctor now': 250991, 'socialdistancing virus': 780841, 'virus icliniq100hrs': 958308, 'icliniq100hrs life': 412785, 'life handwash': 488711, 'handwash sanitizer': 376788, 'sanitizer protection': 735617, 'protection prevention': 685574, 'prevention celebrateyou': 671844, 'celebrateyou safety': 168825, 'safety onlinedoctor': 730664, 'onlinedoctor home': 609815, 'home coronavillains': 400947, 'coronavirus ask doctor': 205522, 'ask doctor now': 95510, 'doctor now stayhome': 250993, 'now stayhome socialdistancing': 575896, 'stayhome socialdistancing virus': 798120, 'socialdistancing virus icliniq100hrs': 780842, 'virus icliniq100hrs life': 958310, 'icliniq100hrs life handwash': 412786, 'life handwash sanitizer': 488712, 'handwash sanitizer protection': 376792, 'sanitizer protection prevention': 735618, 'protection prevention celebrateyou': 685575, 'prevention celebrateyou safety': 671845, 'celebrateyou safety onlinedoctor': 168826, 'safety onlinedoctor home': 730665, 'onlinedoctor home coronavillains': 609816, 'husband will': 411791, 'mom house': 535747, 'house drop': 406273, 'toiletpaper stop': 922543, 'hoarding people': 399474, 'do ya': 250606, 'ya all': 1013961, 'much tp': 545408, 'so today my': 778551, 'today my husband': 919901, 'my husband will': 548802, 'husband will go': 411792, 'will go to': 993560, 'go to my': 354330, 'my mom house': 549274, 'mom house drop': 535748, 'house drop off': 406274, 'drop off some': 260341, 'off some toiletpaper': 594177, 'some toiletpaper stop': 784092, 'toiletpaper stop hoarding': 922544, 'stop hoarding people': 804735, 'hoarding people do': 399475, 'people do ya': 647684, 'do ya all': 250607, 'ya all really': 1013962, 'all really need': 44130, 'that much tp': 845251, 'solihull': 781960, 'north solihull': 567681, 'solihull social': 781961, 'supermarket providing': 822088, 'providing lifeline': 687044, 'lifeline during': 489304, '19 need': 8755, 'north solihull social': 567682, 'solihull social supermarket': 781962, 'social supermarket providing': 779981, 'supermarket providing lifeline': 822089, 'providing lifeline during': 687045, 'lifeline during covid': 489305, 'covid 19 need': 213468, '19 need your': 8759, 'need your support': 556274, 'breakfast': 138871, 'bureaucracy': 142815, 'the waste': 871114, 'need 170': 554334, '170 litre': 4419, 'milk dumped': 531646, 'dumped in': 262210, 'one province': 606928, 'province alone': 687156, 'alone we': 46946, 'have breakfast': 379841, 'breakfast club': 138879, 'club food': 184435, 'bank imagine': 109911, 'blame farmer': 132255, 'farmer blame': 299312, 'the bureaucracy': 850131, 'bureaucracy shame': 142818, 'all the waste': 44978, 'the waste and': 871115, 'waste and all': 968069, 'the need 170': 861389, 'need 170 litre': 554335, '170 litre of': 4420, 'litre of milk': 495167, 'of milk dumped': 586507, 'milk dumped in': 531647, 'dumped in one': 262211, 'in one province': 426154, 'one province alone': 606929, 'province alone we': 687157, 'alone we have': 46947, 'we have breakfast': 971770, 'have breakfast club': 379842, 'breakfast club food': 138881, 'club food bank': 184436, 'food bank imagine': 313587, 'bank imagine what': 109912, 'imagine what they': 416823, 'what they could': 982398, 'they could do': 881823, 'could do with': 209106, 'with this don': 1001692, 'this don blame': 887279, 'don blame farmer': 253392, 'blame farmer blame': 132256, 'farmer blame the': 299313, 'blame the bureaucracy': 132301, 'the bureaucracy shame': 850132, 'doling': 252933, 'begun doling': 123703, 'doling out': 252934, 'is defective': 447075, 'defective charging': 232075, 'charging money': 173503, 'money calling': 536656, 'it aid': 456317, 'aid china': 39367, 'have begun doling': 379751, 'begun doling out': 123704, 'doling out mask': 252935, 'which is defective': 986001, 'is defective charging': 447076, 'defective charging money': 232076, 'charging money calling': 173505, 'money calling it': 536657, 'calling it aid': 156584, 'it aid china': 456318, 'arrangement': 93706, 'enormously': 277299, 'and crew': 60743, 'crew might': 216700, 'might like': 531065, 'start working': 794654, 'current arrangement': 221099, 'arrangement are': 93709, 'working the': 1008937, 'the sheer': 866811, 'sheer crush': 756572, 'crush of': 219783, 'of number': 587103, 'number at': 576835, 'supermarket adding': 818779, 'adding enormously': 31670, 'enormously to': 277300, 'not coping': 568885, 'need system': 555700, 'and crew might': 60744, 'crew might like': 216701, 'might like to': 531066, 'like to start': 491625, 'to start working': 915233, 'start working with': 794656, 'working with supermarket': 1009070, 'with supermarket right': 1001060, 'now because the': 574215, 'because the current': 119619, 'the current arrangement': 852611, 'current arrangement are': 221100, 'arrangement are not': 93710, 'are not working': 88499, 'not working the': 572554, 'working the sheer': 1008941, 'the sheer crush': 866813, 'sheer crush of': 756573, 'crush of number': 219784, 'of number at': 587105, 'number at supermarket': 576836, 'at supermarket adding': 100695, 'supermarket adding enormously': 818780, 'adding enormously to': 31671, 'enormously to spread': 277301, 'to spread of': 915072, 'of 19 and': 579381, 'and supermarket not': 72726, 'supermarket not coping': 821642, 'not coping with': 568887, 'coping with demand': 203398, 'demand you need': 236537, 'you need system': 1020047, 'repacking': 711442, 'only in': 610630, 'the philippine': 863671, 'philippine will': 654748, 'supply repacking': 825764, 'repacking them': 711443, 'in smaller': 428028, 'smaller bag': 775254, 'bag container': 108256, 'container then': 200562, 'then selling': 877513, 'selling with': 749536, 'with overly': 1000044, 'overly high': 631317, 'price dear': 673393, 'dear fellow': 229787, 'fellow filipino': 303289, 'filipino who': 305447, 'are shame': 90012, 'shame to': 754658, 'and waste': 75213, 'of space': 589949, 'space in': 787119, 'this earth': 887329, 'only in the': 610639, 'in the philippine': 429450, 'the philippine will': 863676, 'philippine will you': 654749, 'will you see': 995396, 'see people hoarding': 745559, 'people hoarding supply': 648279, 'hoarding supply repacking': 399571, 'supply repacking them': 825765, 'repacking them in': 711444, 'them in smaller': 875914, 'in smaller bag': 428029, 'smaller bag container': 775255, 'bag container then': 108257, 'container then selling': 200563, 'then selling with': 877517, 'selling with overly': 749537, 'with overly high': 1000045, 'overly high price': 631318, 'high price dear': 395245, 'price dear fellow': 673394, 'dear fellow filipino': 229788, 'fellow filipino who': 303290, 'filipino who do': 305448, 'who do this': 988624, 'this you are': 891612, 'you are shame': 1017232, 'are shame to': 90013, 'shame to the': 754661, 'to the rest': 917023, 'rest of and': 716183, 'of and waste': 580190, 'and waste of': 75214, 'waste of space': 968162, 'of space in': 589952, 'space in this': 787122, 'in this earth': 429938, 'jeffrey': 465038, 'epstein': 279585, 'alleged': 45656, 'pimp': 656760, 'ghislaine': 349651, 'maxwell': 520860, 'germany merkel': 346320, 'merkel quarantine': 529169, 'quarantine supermarket': 692596, 'supermarket meeting': 821501, 'meeting covid': 527688, 'infected doctor': 436562, 'doctor senator': 251100, 'senator rand': 749778, 'rand paul': 696581, 'paul test': 644561, 'positive jeffrey': 665359, 'jeffrey epstein': 465039, 'epstein spent': 279588, 'spent thousand': 789178, 'thousand dollar': 893390, 'dollar funding': 252990, 'funding alleged': 341582, 'alleged pimp': 45663, 'pimp ghislaine': 656761, 'ghislaine maxwell': 349652, 'maxwell die': 520865, 'germany merkel quarantine': 346321, 'merkel quarantine supermarket': 529170, 'quarantine supermarket meeting': 692598, 'supermarket meeting covid': 821502, 'meeting covid 19': 527689, '19 infected doctor': 7839, 'infected doctor senator': 436563, 'doctor senator rand': 251101, 'senator rand paul': 749779, 'rand paul test': 696583, 'paul test positive': 644562, 'test positive jeffrey': 839129, 'positive jeffrey epstein': 665360, 'jeffrey epstein spent': 465040, 'epstein spent thousand': 279589, 'spent thousand dollar': 789179, 'thousand dollar funding': 893392, 'dollar funding alleged': 252991, 'funding alleged pimp': 341583, 'alleged pimp ghislaine': 45664, 'pimp ghislaine maxwell': 656762, 'ghislaine maxwell die': 349653, 'all ve': 45348, 'found so': 330369, 'far is': 298818, 'is which': 453934, 'which seems': 986298, 'aren worried': 92596, 'about more': 25749, 'insurance claim': 440688, 'claim due': 179726, 'about lower': 25674, 'lower return': 505985, 'return on': 719874, 'on investment': 601612, 'investment due': 443981, 'lower interest': 505897, 'be betting': 113846, 'betting we': 128644, 'll mostly': 496904, 'mostly live': 542975, 'all ve found': 45349, 've found so': 953142, 'found so far': 330370, 'so far is': 777039, 'far is which': 298821, 'is which seems': 453935, 'which seems to': 986299, 'seems to say': 746887, 'to say they': 913846, 'say they aren': 739334, 'they aren worried': 881488, 'aren worried about': 92597, 'worried about more': 1010505, 'about more life': 25752, 'more life insurance': 539680, 'life insurance claim': 488784, 'insurance claim due': 440689, 'claim due to': 179727, '19 but are': 5491, 'but are worried': 145225, 'worried about lower': 1010502, 'about lower return': 25676, 'lower return on': 505986, 'return on investment': 719877, 'on investment due': 601613, 'investment due to': 443982, 'due to lower': 261856, 'to lower interest': 909499, 'lower interest rate': 505898, 'rate and asset': 697150, 'asset price so': 96460, 'price so they': 676516, 'so they seem': 778480, 'to be betting': 901130, 'be betting we': 113847, 'betting we ll': 128645, 'we ll mostly': 972263, 'll mostly live': 496905, 'dakota': 225072, 'attorneygeneral': 102689, 'ag of': 36817, 'south dakota': 786712, 'dakota point': 225077, 'point to': 662664, 'fake home': 296638, 'virus really': 958668, 'really awful': 701995, 'awful who': 106253, 'who doe': 988627, 'this throw': 890601, 'throw the': 895051, 'book at': 134479, 'em 19': 272049, '19 attorneygeneral': 5265, 'ag of south': 36818, 'of south dakota': 589944, 'south dakota point': 786714, 'dakota point to': 225078, 'point to the': 662677, 'the latest coronavirus': 859085, 'latest coronavirus consumer': 481271, 'coronavirus consumer scam': 205687, 'consumer scam fake': 198868, 'scam fake home': 740156, 'fake home test': 296639, 'test for the': 839005, 'the virus really': 870882, 'virus really awful': 958669, 'really awful who': 701996, 'awful who doe': 106254, 'who doe this': 988634, 'doe this throw': 251645, 'this throw the': 890602, 'throw the book': 895052, 'the book at': 849838, 'book at em': 134480, 'at em 19': 98533, 'em 19 attorneygeneral': 272050, 'qeretail': 691544, 'changing online': 172763, 'behavior qeretail': 124158, 'qeretail onlineshopping': 691545, 'onlineshopping ecommerce': 609895, 'here is how': 393230, 'is how is': 448582, 'is changing online': 446478, 'changing online shopping': 172764, 'shopping behavior qeretail': 762210, 'behavior qeretail onlineshopping': 124159, 'qeretail onlineshopping ecommerce': 691546, 'watford': 969317, 'fridayfeeling': 333325, 'shoppingday': 764503, 'is 25': 445192, '25 am': 15831, 'main entrance': 508744, 'entrance to': 278903, 'the costco': 851989, 'costco at': 208202, 'at watford': 101499, 'watford is': 969320, 'still long': 800805, 'way away': 969478, 'away have': 105939, 'more word': 541002, 'word fridayfeeling': 1004490, 'fridayfeeling shoppingday': 333334, 'shoppingday panicbuyinguk': 764504, 'it is 25': 458856, 'is 25 am': 445193, '25 am to': 15832, 'am to those': 50508, 'those who know': 892648, 'who know the': 989187, 'know the main': 476834, 'the main entrance': 859902, 'main entrance to': 508745, 'entrance to the': 278906, 'to the costco': 916600, 'the costco at': 851990, 'costco at watford': 208204, 'at watford is': 101500, 'watford is still': 969321, 'is still long': 452293, 'still long way': 800807, 'long way away': 501819, 'way away have': 969479, 'away have no': 105940, 'have no more': 381638, 'no more word': 564829, 'more word fridayfeeling': 541003, 'word fridayfeeling shoppingday': 1004491, 'fridayfeeling shoppingday panicbuyinguk': 333335, 'shoppingday panicbuyinguk stophoarding': 764505, 'tcbasia': 835278, 'chinese consumption': 177232, 'consumption picture': 199929, 'picture impact': 656139, 'crisis get': 217413, 'your complimentary': 1023299, 'complimentary download': 192509, 'download of': 257603, 'the report': 865528, 'report here': 712009, 'here tcbasia': 393629, 'tcbasia consumer': 835279, 'consumer china': 196789, 'the chinese consumption': 850850, 'chinese consumption picture': 177233, 'consumption picture impact': 199930, 'picture impact of': 656140, 'the crisis get': 852385, 'crisis get your': 217417, 'get your complimentary': 348695, 'your complimentary download': 1023300, 'complimentary download of': 192510, 'download of the': 257604, 'of the report': 591404, 'the report here': 865532, 'report here tcbasia': 712015, 'here tcbasia consumer': 393630, 'tcbasia consumer china': 835280, 'consumer china economy': 196790, 'rushing': 728374, 'hear people': 387976, 'are rushing': 89777, 'rushing supermarket': 728388, 'supermarket door': 820010, 'and ignoring': 64968, 'elderly special': 270893, 'special need': 787996, 'need rule': 555531, 'rule panicbuying': 727319, 'you hear people': 1019179, 'hear people are': 387977, 'people are rushing': 647063, 'are rushing supermarket': 89779, 'rushing supermarket door': 728389, 'supermarket door and': 820011, 'door and ignoring': 255508, 'and ignoring the': 64969, 'the elderly special': 854147, 'elderly special need': 270894, 'special need rule': 787998, 'need rule panicbuying': 555532, 'rule panicbuying panicbuyinguk': 727320, 'soniashenoy': 785534, 'batra': 112716, 'anujsinghal': 78629, 'purchasin': 689822, 'soniashenoy batra': 785535, 'batra anujsinghal': 112717, 'anujsinghal big': 78630, 'question where': 693800, 'is corporate': 446847, 'corporate india': 207293, 'india in': 434461, 'against probably': 37590, 'probably offering': 679343, 'offering their': 595283, '20 80': 12923, 'or purchasin': 616747, 'soniashenoy batra anujsinghal': 785536, 'batra anujsinghal big': 112718, 'anujsinghal big question': 78631, 'big question where': 129944, 'question where is': 693801, 'where is corporate': 984947, 'is corporate india': 446848, 'corporate india in': 207294, 'india in the': 434462, 'fight against probably': 304634, 'against probably offering': 37591, 'probably offering their': 679344, 'offering their stock': 595286, 'stock at 20': 801871, 'at 20 80': 97498, '20 80 of': 12924, '80 of price': 22609, 'of price or': 588413, 'price or purchasin': 675786, 'foia': 312033, 'waiver': 964547, '19 additional': 4811, 'additional guidance': 31825, 'guidance regarding': 368273, 'regarding foia': 707209, 'foia timeline': 312034, 'timeline waiver': 898477, 'waiver and': 964548, 'budget extension': 141784, 'extension insurance': 293279, 'covid 19 additional': 212582, '19 additional guidance': 4812, 'additional guidance regarding': 31826, 'guidance regarding foia': 368274, 'regarding foia timeline': 707210, 'foia timeline waiver': 312035, 'timeline waiver and': 898478, 'waiver and budget': 964549, 'and budget extension': 59232, 'budget extension insurance': 141785, 'fritz': 334098, 'nix': 563398, 'garmentfactories': 343701, 'wassner': 968050, 'spending on': 788929, 'the fritz': 855828, 'fritz retailer': 334099, 'to nix': 910609, 'nix order': 563399, 'for spring': 325844, 'spring season': 791238, 'season that': 743444, 'that shaping': 846223, 'shaping up': 754889, 'be wash': 118051, 'wash fashion': 967458, 'fashion garmentfactories': 299810, 'garmentfactories wassner': 343702, 'with consumer spending': 997769, 'consumer spending on': 199080, 'spending on the': 788937, 'on the fritz': 604133, 'the fritz retailer': 855829, 'fritz retailer are': 334100, 'retailer are scrambling': 719015, 'scrambling to nix': 742570, 'to nix order': 910610, 'nix order for': 563400, 'order for spring': 618244, 'for spring season': 325846, 'spring season that': 791239, 'season that shaping': 743445, 'that shaping up': 846224, 'shaping up to': 754891, 'to be wash': 901629, 'be wash fashion': 118052, 'wash fashion garmentfactories': 967459, 'fashion garmentfactories wassner': 299811, 'cue': 220194, 'the name': 861190, 'name of': 551656, 'game right': 343236, 'now cue': 574485, 'cue online': 220199, 'that ll': 844906, 'shopping right': 763771, 'distancing is the': 247256, 'is the name': 452870, 'the name of': 861193, 'name of the': 551665, 'of the game': 591055, 'the game right': 856125, 'game right now': 343237, 'right now cue': 722051, 'now cue online': 574486, 'cue online shopping': 220200, 'shopping here list': 762886, 'list of online': 494458, 'of online store': 587264, 'online store that': 609474, 'store that ll': 810559, 'that ll deliver': 844908, 'll deliver your': 496699, 'deliver your shopping': 233278, 'your shopping right': 1025791, 'shopping right to': 763773, 'right to your': 722363, 'unnecessary question': 942927, 'question an': 693517, 'an atlanta': 55467, 'atlanta area': 101822, 'area grocery': 92030, 'store take': 810494, 'another level': 77695, 'level after': 487492, 'after yesterday': 36601, 'yesterday revised': 1015850, 'revised cdc': 720634, 'avoid unnecessary question': 105376, 'unnecessary question an': 942928, 'question an atlanta': 693518, 'an atlanta area': 55468, 'atlanta area grocery': 101823, 'area grocery store': 92031, 'grocery store take': 365834, 'store take to': 810499, 'take to another': 832731, 'to another level': 900569, 'another level after': 77697, 'level after yesterday': 487493, 'after yesterday revised': 36603, 'yesterday revised cdc': 1015851, 'revised cdc guideline': 720635, 'outlandish': 628998, 'else having': 271724, 'trouble with': 932661, 'with they': 1001664, 'they canceled': 881690, 'canceled our': 160951, 'our flight': 623092, 'flight without': 310565, 'without notice': 1002805, 'notice they': 573375, 'not answer': 568210, 'answer their': 78116, 'their phone': 874291, 'phone they': 655034, 'answer email': 78044, 'email twitter': 272354, 'twitter or': 936698, 'or facebook': 615246, 'facebook dm': 294901, 'dm same': 248927, 'still book': 800296, 'book flight': 134519, 'flight at': 310435, 'at outlandish': 100044, 'outlandish price': 628999, 'they scam': 883284, 'people trapped': 649999, 'trapped by': 930108, 'anyone else having': 80267, 'else having trouble': 271725, 'having trouble with': 384390, 'trouble with they': 932663, 'with they canceled': 1001667, 'they canceled our': 881691, 'canceled our flight': 160952, 'our flight without': 623094, 'flight without notice': 310566, 'without notice they': 1002807, 'notice they do': 573376, 'do not answer': 249666, 'not answer their': 568212, 'answer their phone': 78117, 'their phone they': 874293, 'phone they do': 655036, 'not answer email': 568211, 'answer email twitter': 78045, 'email twitter or': 272355, 'twitter or facebook': 936699, 'or facebook dm': 615247, 'facebook dm same': 294902, 'dm same time': 248928, 'time you can': 898403, 'can still book': 159764, 'still book flight': 800297, 'book flight at': 134520, 'flight at outlandish': 310436, 'at outlandish price': 100045, 'outlandish price do': 629000, 'price do they': 673473, 'do they scam': 250315, 'they scam people': 883285, 'scam people trapped': 740301, 'people trapped by': 650000, 'helper': 391120, 'nationalphysiciansweek': 552703, 'janitor food': 464549, 'driver sanitation': 259733, 'sanitation team': 733864, 'team security': 835770, 'guard grocery': 367800, 'clerk hero': 181714, 'hero and': 393926, 'and helper': 64487, 'helper thank': 391138, 'you gratitude': 1018930, 'gratitude nationalphysiciansweek': 362382, 'to the healthcare': 916769, 'healthcare worker janitor': 387364, 'worker janitor food': 1007259, 'janitor food worker': 464550, 'food worker truck': 317680, 'truck driver sanitation': 932793, 'driver sanitation team': 259735, 'sanitation team security': 733865, 'team security guard': 835771, 'security guard grocery': 744615, 'guard grocery store': 367801, 'store clerk hero': 807012, 'clerk hero and': 181715, 'hero and helper': 393929, 'and helper thank': 64488, 'helper thank you': 391139, 'thank you gratitude': 841735, 'you gratitude nationalphysiciansweek': 1018931, 'consumernews': 199727, 'centralbank': 169456, 'insurancecompanies': 440841, 'phishingscams': 654845, 'irishconsumers': 444901, 'consumernews from': 199728, 'from ireland': 336083, 'ireland and': 444809, 'and europeanunion': 62315, 'europeanunion march': 283622, '2020 centralbank': 14220, 'centralbank of': 169457, 'of ireland': 585302, 'ireland expectation': 444827, 'of insurancecompanies': 585238, 'insurancecompanies how': 440842, 'avoid phishingscams': 105225, 'phishingscams if': 654846, 'if workingfromhome': 415370, 'workingfromhome during': 1009094, 'during read': 262963, 'all irishconsumers': 43245, 'consumernews from ireland': 199729, 'from ireland and': 336084, 'ireland and europeanunion': 444810, 'and europeanunion march': 62316, 'europeanunion march 2020': 283623, 'march 2020 centralbank': 515151, '2020 centralbank of': 14221, 'centralbank of ireland': 169458, 'of ireland expectation': 585303, 'ireland expectation of': 444828, 'expectation of insurancecompanies': 290835, 'of insurancecompanies how': 585239, 'insurancecompanies how to': 440843, 'to avoid phishingscams': 900926, 'avoid phishingscams if': 105226, 'phishingscams if workingfromhome': 654847, 'if workingfromhome during': 415371, 'workingfromhome during read': 1009095, 'during read it': 262964, 'read it all': 700380, 'it all irishconsumers': 456355, 'katt': 471081, 'chef': 175246, 'shes': 758095, 'lovemykids': 505006, 'my 21': 547139, '21 year': 15039, 'daughter katt': 226877, 'katt who': 471082, 'who chef': 988449, 'chef just': 175263, 'came home': 157002, 'home her': 401369, 'her restaurant': 392329, 'closed today': 183405, 'her plan': 392302, 'plan from': 658132, 'tomorrow that': 924191, 'that shes': 846251, 'shes told': 758104, 'told is': 923589, 'is whilst': 453939, 'whilst there': 987698, 'start making': 794378, 'making soup': 511358, 'taking them': 833604, 'home make': 401574, 'make her': 509968, 'her twitter': 392489, 'twitter famous': 936654, 'famous folk': 298459, 'folk lovemykids': 312211, 'my 21 year': 547140, '21 year old': 15041, 'old daughter katt': 598213, 'daughter katt who': 226878, 'katt who chef': 471083, 'who chef just': 988450, 'chef just came': 175264, 'just came home': 468424, 'came home her': 157007, 'home her restaurant': 401370, 'her restaurant closed': 392330, 'restaurant closed today': 716378, 'closed today so': 183407, 'today so her': 920190, 'so her plan': 777293, 'her plan from': 392303, 'plan from tomorrow': 658137, 'from tomorrow that': 338100, 'tomorrow that shes': 924192, 'that shes told': 846252, 'shes told is': 758105, 'told is whilst': 923590, 'is whilst there': 453940, 'whilst there no': 987699, 'there no work': 878851, 'no work is': 565926, 'work is to': 1005378, 'is to start': 453248, 'to start making': 915207, 'start making soup': 794382, 'making soup and': 511359, 'soup and taking': 786371, 'and taking them': 73003, 'taking them to': 833607, 'them to care': 876459, 'to care home': 902460, 'care home make': 163995, 'home make her': 401576, 'make her twitter': 509971, 'her twitter famous': 392490, 'twitter famous folk': 936655, 'famous folk lovemykids': 298460, 'treating': 930983, 'keep track': 472151, 'are reacting': 89448, 'reacting and': 700165, 'and treating': 74428, 'treating employee': 930994, 'shift your': 758471, 'behaviour once': 124490, 'keep track of': 472152, 'track of how': 928210, 'of how company': 584815, 'company are reacting': 190443, 'are reacting and': 89449, 'reacting and treating': 700166, 'and treating employee': 74429, 'treating employee during': 930995, 'employee during this': 273797, 'pandemic and shift': 634901, 'and shift your': 71464, 'shift your consumer': 758472, 'your consumer behaviour': 1023315, 'consumer behaviour once': 196591, 'behaviour once this': 124491, 'tpmelection': 928075, 'tpmelection new': 928076, 'tpmelection new york': 928077, 'safdar': 729399, '78': 22322, 'safdar nike': 729400, 'nike sentiment': 563227, 'sentiment for': 750930, 'shopping 78': 761871, '78 58': 22323, '58 for': 20529, 'for brick': 319787, 'mortar shop': 541834, 'shop it': 760369, 'definitely see': 232385, 'see positive': 745590, 'positive trend': 665476, 'towards ecommerce': 927190, 'ecommerce god': 266780, 'safdar nike sentiment': 729401, 'nike sentiment for': 563228, 'sentiment for online': 750932, 'online shopping 78': 609011, 'shopping 78 58': 761872, '78 58 for': 22324, '58 for brick': 20530, 'for brick mortar': 319788, 'brick mortar shop': 139590, 'mortar shop it': 541835, 'shop it not': 760374, 'it not related': 459913, 'related to corona': 708598, 'to corona but': 903525, 'corona but we': 203840, 'but we definitely': 147744, 'we definitely see': 971256, 'definitely see positive': 232386, 'see positive trend': 745591, 'positive trend towards': 665477, 'trend towards ecommerce': 931485, 'towards ecommerce god': 927191, 'ecommerce god know': 266781, 'will happen after': 993594, 'happen after the': 377053, 'lysolwipes': 507212, 'to hoarding': 907894, 'hoarding like': 399412, 'like behavior': 489893, 'behavior it': 124106, 'buy whole': 149471, 'whole shelf': 990322, 'of lysolwipes': 586090, 'lysolwipes or': 507213, 'or toiletpaper': 617490, 'sell it': 748765, 'just keep': 469088, 'to yourself': 919037, 'yourself we': 1026744, 'need literally': 555160, 'more product': 540146, 'if asshole': 413877, 'asshole did': 96525, 'exist in': 290237, 'world stoppanicbuying': 1010010, 'this is due': 888241, 'is due to': 447403, 'due to hoarding': 261815, 'to hoarding like': 907899, 'hoarding like behavior': 399413, 'like behavior it': 489894, 'behavior it is': 124108, 'not necessary to': 570643, 'necessary to buy': 554110, 'to buy whole': 902339, 'buy whole shelf': 149472, 'whole shelf of': 990323, 'shelf of lysolwipes': 757362, 'of lysolwipes or': 586091, 'lysolwipes or toiletpaper': 507214, 'or toiletpaper and': 617491, 'toiletpaper and sell': 921728, 'and sell it': 71215, 'sell it online': 748770, 'it online or': 460084, 'online or just': 608659, 'or just keep': 615885, 'just keep all': 469089, 'keep all to': 471301, 'all to yourself': 45254, 'to yourself we': 919040, 'yourself we need': 1026746, 'we need literally': 972505, 'need literally have': 555161, 'literally have lot': 495017, 'have lot more': 381390, 'lot more product': 504114, 'more product if': 540151, 'product if asshole': 681272, 'if asshole did': 413878, 'asshole did not': 96526, 'did not exist': 240713, 'not exist in': 569324, 'exist in this': 290239, 'in this world': 430048, 'this world stoppanicbuying': 891517, 'voluntarily': 960181, 'supportsmallbusinesses': 827288, 'some vegetable': 784160, 'vegetable shopping': 954086, 'shopping most': 763295, 'most veggie': 542854, 'veggie vendor': 954221, 'vendor are': 954344, 'of haven': 584477, 'haven hiked': 383837, 'price unlike': 677202, 'unlike some': 942722, 'some greedy': 782994, 'greedy medical': 363544, 'medical shop': 526379, 'shop however': 760294, 'however voluntarily': 409512, 'voluntarily paid': 960188, 'paid them': 634146, 'them little': 875992, 'actual amount': 30629, 'amount just': 53199, 'just token': 470115, 'token of': 923478, 'of appreciation': 580318, 'appreciation supportsmallbusinesses': 82891, 'today went for': 920498, 'went for some': 979006, 'for some vegetable': 325776, 'some vegetable shopping': 784162, 'vegetable shopping most': 954087, 'shopping most veggie': 763297, 'most veggie vendor': 542855, 'veggie vendor are': 954222, 'vendor are aware': 954345, 'aware of haven': 105635, 'of haven hiked': 584478, 'haven hiked the': 383838, 'the price unlike': 864430, 'price unlike some': 677204, 'unlike some greedy': 942723, 'some greedy medical': 782995, 'greedy medical shop': 363545, 'medical shop however': 526380, 'shop however voluntarily': 760295, 'however voluntarily paid': 409513, 'voluntarily paid them': 960189, 'paid them little': 634147, 'them little more': 875993, 'little more than': 495472, 'more than the': 540682, 'than the actual': 841216, 'the actual amount': 848314, 'actual amount just': 30630, 'amount just token': 53201, 'just token of': 470116, 'token of appreciation': 923479, 'of appreciation supportsmallbusinesses': 580319, 'mcclintock': 522101, 'evaluation': 283730, 'nke': 563496, 'azo': 106423, 'lulu': 506644, 'tgt': 840036, 'tsco': 934924, 'resiliency': 714498, 'consumer analyst': 196193, 'analyst matt': 57155, 'matt mcclintock': 520526, 'mcclintock published': 522104, 'published the': 688698, 'the mcclintock': 860324, 'mcclintock model': 522102, 'model to': 535320, 'retail consumer': 717987, 'consumer investing': 197921, '19 world': 12181, 'with evaluation': 998265, 'evaluation of': 283733, 'his list': 397584, 'includes name': 431780, 'name such': 551677, 'such nke': 816650, 'nke azo': 563497, 'azo lulu': 106424, 'lulu tgt': 506652, 'tgt hd': 840037, 'hd and': 384680, 'and tsco': 74514, 'tsco according': 934925, 'of resiliency': 588979, 'resiliency and': 714499, 'and flexibility': 62965, 'consumer analyst matt': 196194, 'analyst matt mcclintock': 57156, 'matt mcclintock published': 520527, 'mcclintock published the': 522105, 'published the mcclintock': 688700, 'the mcclintock model': 860325, 'mcclintock model to': 522103, 'model to retail': 535323, 'to retail consumer': 913446, 'retail consumer investing': 717993, 'consumer investing in': 197922, 'investing in covid': 443931, 'covid 19 world': 214089, '19 world with': 12196, 'world with evaluation': 1010197, 'with evaluation of': 998266, 'evaluation of his': 283734, 'of his list': 584657, 'his list of': 397585, 'list of company': 494420, 'company that includes': 191174, 'that includes name': 844478, 'includes name such': 431781, 'name such nke': 551678, 'such nke azo': 816651, 'nke azo lulu': 563498, 'azo lulu tgt': 106425, 'lulu tgt hd': 506653, 'tgt hd and': 840038, 'hd and tsco': 384681, 'and tsco according': 74515, 'tsco according to': 934926, 'according to measure': 28565, 'to measure of': 909980, 'measure of resiliency': 525271, 'of resiliency and': 588980, 'resiliency and flexibility': 714500, 'arguing': 92723, 'so thing': 778488, 'not change': 568725, 'alone people': 46900, 'people arguing': 647135, 'arguing that': 92737, 'gouging will': 359498, 'not solve': 571640, 'problem are': 679462, 'are right': 89693, 'right because': 721803, 'the amp': 848655, 'amp state': 54555, 'state make': 795756, 'it illegal': 458682, 'first place': 308867, 'place post': 657662, 'so thing will': 778490, 'thing will not': 884993, 'will not change': 994195, 'not change with': 568729, 'change with high': 172403, 'with high price': 998805, 'high price alone': 395230, 'price alone people': 672282, 'alone people arguing': 46901, 'people arguing that': 647136, 'arguing that price': 92738, 'price gouging will': 674343, 'gouging will not': 359499, 'will not solve': 994271, 'not solve the': 571642, 'solve the problem': 782162, 'the problem are': 864508, 'problem are right': 679466, 'are right because': 89695, 'right because the': 721804, 'because the amp': 119611, 'the amp state': 848663, 'amp state make': 54558, 'state make it': 795757, 'make it illegal': 510038, 'it illegal to': 458685, 'make the stuff': 510587, 'the stuff in': 868327, 'stuff in the': 815100, 'the first place': 855335, 'first place post': 308870, 'shuttering': 768224, 'america with': 51749, 'with get': 998606, 'get taste': 348173, 'of socialism': 589858, 'socialism socialism': 780979, 'socialism loving': 780967, 'loving millennials': 505061, 'millennials look': 532015, 'look and': 502232, 'the clearing': 851001, 'clearing of': 181460, 'the closing': 851047, 'closing of': 183698, 'the shuttering': 867140, 'shuttering of': 768229, 'restaurant these': 716745, 'the outcome': 862731, 'outcome of': 628869, 'of mass': 586285, 'mass response': 519849, 'america with get': 51750, 'with get taste': 998608, 'get taste of': 348174, 'taste of socialism': 834790, 'of socialism socialism': 589859, 'socialism socialism loving': 780980, 'socialism loving millennials': 780968, 'loving millennials look': 505062, 'millennials look and': 532016, 'look and take': 502236, 'and take note': 72968, 'take note the': 832381, 'note the clearing': 572819, 'the clearing of': 851002, 'clearing of store': 181461, 'of store shelf': 590265, 'store shelf the': 810104, 'shelf the closing': 757646, 'the closing of': 851048, 'closing of retail': 183703, 'of retail the': 589056, 'retail the shuttering': 718777, 'the shuttering of': 867141, 'shuttering of restaurant': 768230, 'of restaurant these': 589023, 'restaurant these are': 716746, 'are the outcome': 90875, 'the outcome of': 862733, 'outcome of mass': 628871, 'of mass response': 586288, 'mass response to': 519850, 'response to coronavirus': 715837, 'interrupt': 442100, 'stared': 794136, 'interrupt the': 442103, 'bring you': 140120, 'latest episode': 481318, 'episode last': 279532, 'night went': 563127, 'my dog': 548017, 'dog already': 252026, 'already in': 47463, 'line woman': 493592, 'woman behind': 1003421, 'behind me': 124659, 'me asked': 522457, 'had dog': 373043, 'dog stared': 252164, 'stared at': 794137, 'interrupt the covid': 442104, 'pandemic to bring': 636771, 'to bring you': 902058, 'bring you my': 140125, 'you my latest': 1019941, 'my latest episode': 548984, 'latest episode last': 481322, 'episode last night': 279533, 'last night went': 480404, 'night went to': 563128, 'bag of food': 108353, 'of food for': 583693, 'food for my': 314555, 'for my dog': 323699, 'my dog already': 548018, 'dog already in': 252027, 'already in line': 47468, 'in line woman': 424786, 'line woman behind': 493593, 'woman behind me': 1003422, 'behind me asked': 124661, 'me asked me': 522459, 'asked me if': 95791, 'me if had': 522936, 'if had dog': 414188, 'had dog stared': 373044, 'dog stared at': 252165, 'deteriorated': 239399, 'home ha': 401320, 'ha further': 370696, 'further deteriorated': 342031, 'deteriorated my': 239400, 'my hygiene': 548809, 'hygiene but': 412056, 'but perhaps': 146779, 'get people': 347801, 'respect those': 715076, 'those meter': 892205, 'meter of': 529728, 'of distance': 582714, 'from home ha': 335866, 'home ha further': 401327, 'ha further deteriorated': 370697, 'further deteriorated my': 342032, 'deteriorated my hygiene': 239401, 'my hygiene but': 548810, 'hygiene but perhaps': 412058, 'but perhaps this': 146781, 'perhaps this will': 651658, 'this will finally': 891415, 'finally get people': 306012, 'get people in': 347803, 'supermarket to respect': 823408, 'to respect those': 913376, 'respect those meter': 715077, 'those meter of': 892206, 'meter of distance': 529729, 'lockdown threatens': 500040, 'housing sector': 407148, 'will india': 993835, 'india real': 434582, 'price finally': 673866, 'finally face': 305981, 'face reality': 294714, 'reality check': 701710, 'check now': 174500, 'now writes': 576487, '19 lockdown threatens': 8433, 'lockdown threatens the': 500041, 'threatens the housing': 893857, 'the housing sector': 857664, 'housing sector will': 407149, 'sector will india': 744406, 'will india real': 993836, 'india real estate': 434583, 'estate price finally': 282179, 'price finally face': 673867, 'finally face reality': 305982, 'face reality check': 294715, 'reality check now': 701714, 'check now writes': 174501, 'needed look': 556422, 'look this': 502616, 'this whole': 891374, 'whole pandemic': 990292, 'over quickly': 630545, 'quickly it': 694550, 'it started': 461223, 'and got everything': 63850, 'everything needed look': 287934, 'needed look this': 556423, 'look this whole': 502618, 'this whole pandemic': 891381, 'whole pandemic is': 990294, 'is over quickly': 450725, 'over quickly it': 630546, 'quickly it started': 694554, 'venezuelan supermarket': 954462, 'before there': 123202, 'there because': 878224, 'no product': 565211, 'venezuelan supermarket before': 954463, 'supermarket before there': 819352, 'before there is': 123204, 'buying there because': 151196, 'there because there': 878228, 'are no product': 88277, 'no product on': 565214, 'product on the': 681473, 'suburb': 816118, 'stayholmesglen': 797923, 'kew': 473218, 'mooroolbarking': 538357, 'melbourne suburb': 527939, 'suburb during': 816121, '19 stayholmesglen': 10823, 'stayholmesglen kew': 797924, 'kew metre': 473219, 'apart health': 81284, 'safety beach': 730482, 'beach lower': 118219, 'lower plenty': 505942, 'supermarket mooroolbarking': 821531, 'mooroolbarking cough': 538358, 'melbourne suburb during': 527940, 'suburb during covid': 816122, 'covid 19 stayholmesglen': 213861, '19 stayholmesglen kew': 10824, 'stayholmesglen kew metre': 797925, 'kew metre apart': 473220, 'metre apart health': 529823, 'apart health and': 81285, 'and safety beach': 70739, 'safety beach lower': 730483, 'beach lower plenty': 118220, 'lower plenty of': 505943, 'paper at our': 639899, 'local supermarket mooroolbarking': 498557, 'supermarket mooroolbarking cough': 821532, 'lynn': 507125, 'hagan': 373872, 'credit how': 216405, 'with anxiety': 997266, 'anxiety brought': 78676, 'from expert': 335361, 'expert lynn': 291879, 'lynn hagan': 507128, 'hagan on': 373873, 'on help': 601267, 'help start': 390564, 'start here': 794326, 'here consumer': 392885, 'consumer website': 199495, 'credit how can': 216406, 'how can people': 407510, 'can people deal': 159213, 'people deal with': 647608, 'deal with anxiety': 229536, 'with anxiety brought': 997269, 'anxiety brought on': 78677, 'on by this': 599767, 'by this here': 154530, 'this here are': 887912, 'are tip from': 91094, 'tip from expert': 898797, 'from expert lynn': 335363, 'expert lynn hagan': 291880, 'lynn hagan on': 507129, 'hagan on help': 373874, 'on help start': 601268, 'help start here': 390565, 'start here consumer': 794327, 'here consumer website': 392886, 'uncommon': 939854, 'uncommonsense': 939861, 'take child': 832030, 'child hand': 176098, 'hand who': 375987, 'wa approximately': 961569, 'approximately year': 83258, 'old or': 598401, 'to press': 912031, 'press the': 671086, 'the keypad': 858768, 'keypad at': 473553, 'checkout my': 174959, 'my term': 550341, 'term for': 838147, 'this uncommon': 890901, 'uncommon sense': 939859, 'sense strike': 750592, 'strike again': 813720, 'again socialdistancing': 37169, 'socialdistancing uncommonsense': 780836, 'saw woman at': 738328, 'the supermarket take': 868839, 'supermarket take child': 823124, 'take child hand': 832031, 'child hand who': 176100, 'hand who wa': 375989, 'who wa approximately': 989900, 'wa approximately year': 961570, 'approximately year old': 83259, 'year old or': 1014859, 'old or so': 598402, 'or so and': 617124, 'so and use': 776511, 'use the child': 949657, 'the child hand': 850818, 'child hand to': 176099, 'hand to press': 375866, 'to press the': 912033, 'press the keypad': 671088, 'the keypad at': 858769, 'keypad at checkout': 473554, 'at checkout my': 98250, 'checkout my term': 174960, 'my term for': 550342, 'term for this': 838153, 'for this uncommon': 327081, 'this uncommon sense': 890902, 'uncommon sense strike': 939860, 'sense strike again': 750593, 'strike again socialdistancing': 813721, 'again socialdistancing uncommonsense': 37170, 'yeah they': 1014303, 'be wiped': 118108, 'out by': 625813, 'the patent': 863383, 'patent the': 643997, 'yeah they ll': 1014304, 'they ll all': 882584, 'all be wiped': 42145, 'be wiped out': 118110, 'wiped out by': 996468, 'out by covid': 625814, '19 after the': 4858, 'after the patent': 36344, 'the patent the': 863385, 'patent the vaccine': 643998, 'the vaccine and': 870620, 'vaccine and sell': 951655, 'sell it at': 748766, 'it at exorbitant': 456613, 'shopping 24': 761868, '19 got me': 7252, 'got me online': 358700, 'online shopping 24': 609009, 'supermarket try': 823583, 'try these': 934585, 'these immunity': 880152, 'immunity boosting': 417397, 'boosting recipe': 135085, 'recipe using': 704513, 'using ingredient': 950520, 'ingredient that': 438404, 'your pantry': 1025185, 'pantry right': 639654, 'keeping you from': 472627, 'you from the': 1018723, 'the supermarket try': 868876, 'supermarket try these': 823585, 'try these immunity': 934589, 'these immunity boosting': 880153, 'immunity boosting recipe': 417400, 'boosting recipe using': 135086, 'recipe using ingredient': 704514, 'using ingredient that': 950521, 'ingredient that you': 438405, 'that you have': 847727, 'you have in': 1019060, 'have in your': 381042, 'in your pantry': 431111, 'your pantry right': 1025191, 'pantry right now': 639655, 'our program': 624487, 'program continue': 683231, 'operate during': 612989, 'during so': 263027, 'so our': 777969, 'team in': 835687, 'ethiopia are': 283101, 'partner the': 642879, 'we serve': 973205, 'serve protected': 751932, 'protected here': 685135, 'here they': 393679, 'providing protective': 687079, 'gear sanitizer': 344982, 'more they': 540727, 'use these': 949712, 'these during': 879945, 'it critical that': 457415, 'critical that our': 218688, 'that our program': 845590, 'our program continue': 624488, 'program continue to': 683232, 'to operate during': 911020, 'operate during so': 612992, 'during so our': 263028, 'so our team': 777971, 'our team in': 625104, 'team in ethiopia': 835688, 'in ethiopia are': 422615, 'ethiopia are working': 283102, 'keep our partner': 471740, 'our partner the': 624283, 'partner the people': 642881, 'the people we': 863517, 'people we serve': 650161, 'we serve protected': 973207, 'serve protected here': 751933, 'protected here they': 685136, 'here they are': 393680, 'they are providing': 881371, 'are providing protective': 89323, 'providing protective gear': 687080, 'protective gear sanitizer': 685761, 'gear sanitizer more': 344983, 'sanitizer more they': 735380, 'more they ll': 540731, 'they ll use': 882617, 'll use these': 497090, 'use these during': 949713, 'these during food': 879946, 'during food distribution': 262644, 'attestation': 102522, 'carrefourmarket': 164919, 'almost infinite': 46681, 'infinite line': 436944, 'door before': 255531, 'before total': 123245, 'total confinement': 926146, 'confinement but': 194058, 'why long': 991169, 'long they': 501741, 'they remain': 883192, 'open stayhomechallenge': 612516, 'stayhomechallenge attestation': 798259, 'attestation carrefourmarket': 102525, 'almost infinite line': 46682, 'infinite line in': 436945, 'line in front': 493196, 'front of supermarket': 338647, 'of supermarket door': 590420, 'supermarket door before': 820013, 'door before total': 255532, 'before total confinement': 123246, 'total confinement but': 926147, 'confinement but why': 194059, 'but why long': 147863, 'why long they': 991170, 'long they remain': 501745, 'they remain open': 883194, 'remain open stayhomechallenge': 709824, 'open stayhomechallenge attestation': 612517, 'stayhomechallenge attestation carrefourmarket': 798260, 'fg': 304335, 'nysc': 578123, 'pandemic people': 636164, 'fear panic': 301282, 'panic without': 638798, 'without money': 1002787, 'for medicine': 323394, 'medicine food': 526777, 'other complication': 619984, 'complication our': 192494, 'our lending': 623705, 'lending brother': 486272, 'brother china': 141045, 'is seriously': 451795, 'seriously fighting': 751608, 'fighting no': 305099, 'no serious': 565462, 'serious action': 751329, 'action from': 30028, 'from fg': 335459, 'fg creating': 304336, 'creating committee': 215987, 'committee is': 189075, 'enough nysc': 277539, 'if we look': 415291, 'at this pandemic': 101246, 'this pandemic people': 889413, 'pandemic people will': 636170, 'not die from': 569020, 'die from but': 241341, 'from but will': 334769, 'but will die': 147876, 'die from fear': 241347, 'from fear panic': 335437, 'fear panic without': 301287, 'panic without money': 638799, 'without money for': 1002788, 'money for medicine': 536752, 'for medicine food': 323395, 'medicine food and': 526778, 'and other complication': 68297, 'other complication our': 619985, 'complication our lending': 192496, 'our lending brother': 623706, 'lending brother china': 486273, 'brother china is': 141046, 'china is seriously': 176761, 'is seriously fighting': 451798, 'seriously fighting no': 751609, 'fighting no serious': 305100, 'no serious action': 565463, 'serious action from': 751331, 'action from fg': 30029, 'from fg creating': 335460, 'fg creating committee': 304337, 'creating committee is': 215988, 'committee is not': 189076, 'not enough nysc': 569187, 'wont': 1004236, 'over make': 630378, 'sure and': 827487, 'greedy shop': 363604, 'keeper who': 472347, 'who upped': 989854, 'upped their': 947682, 'vulnerable im': 961009, 'im one': 416564, 'who wont': 990023, 'wont shop': 1004264, 'local again': 497669, 'again 19': 36865, 'after all this': 35335, 'all this crisis': 45100, 'is over make': 450710, 'over make sure': 630379, 'make sure and': 510504, 'sure and think': 827488, 'and think of': 73967, 'think of all': 885434, 'all these greedy': 45037, 'these greedy shop': 880076, 'greedy shop keeper': 363605, 'shop keeper who': 760392, 'keeper who upped': 472348, 'who upped their': 989855, 'upped their price': 947683, 'price to profit': 677027, 'to profit on': 912234, 'profit on the': 682829, 'on the vulnerable': 604437, 'the vulnerable im': 870984, 'vulnerable im one': 961010, 'im one who': 416565, 'one who wont': 607466, 'who wont shop': 990024, 'wont shop at': 1004265, 'shop at my': 759950, 'my local again': 549094, 'local again 19': 497670, 'hi we': 394763, 'now offering': 575396, 'offering assistance': 595022, 'been negatively': 121559, 'hi we are': 394764, 'are now offering': 88576, 'now offering assistance': 575399, 'offering assistance to': 595023, 'assistance to anyone': 96752, 'to anyone who': 900631, 'ha been negatively': 369858, 'been negatively impacted': 121561, 'negatively impacted by': 556861, 'learn more here': 484030, 'carona': 164859, 'caronavirus': 164864, 'the carona': 850437, 'carona virus': 164860, 'virus you': 959077, 're afraid': 698199, 'crazy crowd': 215273, 'crowd once': 219225, 'paper are': 639884, 'are delivered': 85759, 'delivered caronavirus': 233307, 'caronavirus outbreak': 164866, 'if you work': 415563, 'store it no': 808587, 'it no longer': 459830, 'no longer the': 564668, 'longer the carona': 502084, 'the carona virus': 850438, 'carona virus you': 164863, 'virus you re': 959079, 'you re afraid': 1020559, 're afraid of': 698201, 'afraid of it': 35001, 'of it the': 585454, 'it the crazy': 461524, 'the crazy crowd': 852294, 'crazy crowd once': 215274, 'crowd once the': 219226, 'once the water': 605735, 'the water and': 871124, 'toilet paper are': 921193, 'paper are delivered': 639887, 'are delivered caronavirus': 85761, 'delivered caronavirus outbreak': 233308, 'interesting and': 441504, 'and thoughtful': 74056, 'thoughtful piece': 893358, 'piece from': 656302, 'from there': 337966, 'there psychology': 878969, 'an interesting and': 56401, 'interesting and thoughtful': 441505, 'and thoughtful piece': 74058, 'thoughtful piece from': 893359, 'piece from there': 656307, 'from there psychology': 337970, 'there psychology behind': 878970, 'psychology behind the': 687550, 'behind the food': 124713, 'the food we': 855621, 'not buy in': 568650, 'buy in crisis': 148813, 'maximize': 520791, 'cco': 168437, 'shea': 756492, 'our upcoming': 625234, 'upcoming webinar': 946817, 'webinar to': 975119, 'to leverage': 909232, 'leverage consumer': 487782, 'to improve': 908201, 'improve product': 419535, 'product performance': 681517, 'performance and': 651424, 'and maximize': 66792, 'maximize margin': 520792, 'margin during': 515626, 'during after': 262429, 'after hear': 35771, 'hear from': 387917, 'from fi': 335462, 'fi cco': 304357, 'cco jim': 168440, 'jim shea': 465505, 'shea and': 756493, 'and fellow': 62791, 'retail leader': 718268, 'leader from': 483455, 'register for our': 707564, 'for our upcoming': 324303, 'our upcoming webinar': 625236, 'upcoming webinar to': 946820, 'webinar to learn': 975120, 'to learn how': 909130, 'how to leverage': 409038, 'to leverage consumer': 909234, 'leverage consumer data': 487783, 'data to improve': 226463, 'to improve product': 908204, 'improve product performance': 419536, 'product performance and': 681518, 'performance and maximize': 651425, 'and maximize margin': 66793, 'maximize margin during': 520793, 'margin during after': 515627, 'during after hear': 262431, 'after hear from': 35772, 'hear from fi': 387923, 'from fi cco': 335463, 'fi cco jim': 304358, 'cco jim shea': 168441, 'jim shea and': 465506, 'shea and fellow': 756494, 'and fellow retail': 62794, 'fellow retail leader': 303328, 'retail leader from': 718269, 'leader from and': 483456, 'like are': 489826, 'not offering': 570727, 'offering cash': 595034, 'thought about': 892955, 'about we': 26852, 'travel bc': 930291, 'ticket do': 895607, 'is so wrong': 452047, 'airline like are': 39991, 'like are not': 489829, 'are not offering': 88423, 'not offering cash': 570729, 'offering cash refund': 595035, 'family it sad': 297967, 'it sad when': 460835, 'is not thought': 450208, 'not thought about': 572108, 'thought about we': 892961, 'about we can': 26853, 'we can travel': 971033, 'can travel bc': 160036, 'travel bc of': 930292, 'bc of and': 113257, 'of and future': 580156, 'future ticket do': 342478, 'ticket do not': 895608, 'do not help': 249754, 'is plummeting': 450909, 'plummeting because': 661366, 'reduced supply': 706177, 'supply will': 826107, 'will still': 994975, 'not bring': 568619, 'bring oil': 140035, 'year level': 1014696, 'level india': 487597, 'india should': 434606, 'should move': 766224, 'to fill': 905836, 'it strategic': 461310, 'strategic petroleum': 812552, 'petroleum reserve': 653838, 'reserve while': 714113, 'global demand is': 351868, 'demand is plummeting': 235736, 'is plummeting because': 450910, 'plummeting because of': 661367, 'pandemic and reduced': 634895, 'and reduced supply': 70105, 'reduced supply will': 706179, 'supply will still': 826115, 'will still not': 994983, 'still not bring': 800889, 'not bring oil': 568623, 'bring oil price': 140036, 'oil price up': 597306, 'up to last': 946394, 'to last year': 909079, 'last year level': 480728, 'year level india': 1014697, 'level india should': 487598, 'india should move': 434608, 'should move to': 766225, 'move to fill': 543753, 'to fill up': 905851, 'fill up it': 305512, 'up it strategic': 945249, 'it strategic petroleum': 461311, 'strategic petroleum reserve': 812553, 'petroleum reserve while': 653841, 'reserve while price': 714114, 'while price are': 987168, 'worstofpeople': 1011310, 'experience went': 291530, 'morning heard': 541285, 'from staff': 337397, 'verbally physically': 954758, 'abused by': 27689, 'by shopper': 153983, 'shopper when': 761821, 'when trying': 984352, 'to ration': 912757, 'ration item': 697701, 'item folk': 463262, 'get grip': 347152, 'grip they': 364039, 'their best': 872594, 'best be': 127588, 'everyone worstofpeople': 287638, 'worstofpeople coronacrisis': 1011311, 'supermarket experience went': 820250, 'experience went shopping': 291531, 'went shopping this': 979110, 'this morning heard': 888966, 'morning heard from': 541286, 'heard from staff': 388085, 'from staff they': 337399, 'staff they are': 792963, 'are being verbally': 84940, 'being verbally physically': 126029, 'verbally physically abused': 954759, 'physically abused by': 655508, 'abused by shopper': 27691, 'by shopper when': 153987, 'shopper when trying': 761822, 'when trying to': 984353, 'trying to ration': 934850, 'to ration item': 912764, 'ration item folk': 697702, 'item folk get': 463263, 'folk get grip': 312161, 'get grip they': 347157, 'grip they are': 364040, 'they are trying': 881441, 'to do their': 904569, 'do their best': 250273, 'their best be': 872595, 'best be fair': 127590, 'fair to everyone': 296388, 'to everyone worstofpeople': 905362, 'everyone worstofpeople coronacrisis': 287639, 'do journalist': 249535, 'journalist use': 467457, 'use covid': 949141, '19 briefing': 5440, 'briefing to': 139747, 'ask about': 95471, 'about fucking': 25284, 'fucking oil': 339960, 'why do journalist': 990930, 'do journalist use': 249536, 'journalist use covid': 467458, 'use covid 19': 949142, 'covid 19 briefing': 212728, '19 briefing to': 5441, 'briefing to ask': 139748, 'to ask about': 900747, 'ask about fucking': 95473, 'about fucking oil': 25285, 'fucking oil price': 339961, 'getting your': 349464, 'your work': 1026368, 'home system': 402182, 'system set': 831306, 'home during the': 401109, 'the outbreak you': 862730, 'outbreak you re': 628847, 'you re getting': 1020632, 're getting your': 698739, 'getting your work': 349469, 'your work at': 1026370, 'at home system': 99129, 'home system set': 402183, 'system set up': 831307, 'set up here': 753559, 'up here are': 945072, 'mabrouq': 507300, 'maldives': 511672, '200k': 13724, 'mabrouq regional': 507301, 'regional covid': 707503, 'fund ha': 341422, 'been established': 121092, 'established and': 282028, 'and maldives': 66606, 'maldives ha': 511675, 'donated 200k': 254308, '200k to': 13729, 'the fund': 856038, 'fund sto': 341508, 'sto ha': 801745, 'of diesel': 582589, 'diesel and': 241644, 'and petrol': 68950, 'mabrouq regional covid': 507302, 'regional covid 19': 707504, '19 emergency fund': 6756, 'emergency fund ha': 272722, 'fund ha been': 341423, 'ha been established': 369798, 'been established and': 121093, 'established and maldives': 282029, 'and maldives ha': 66607, 'maldives ha donated': 511676, 'ha donated 200k': 370411, 'donated 200k to': 254309, '200k to the': 13730, 'to the fund': 916738, 'the fund sto': 856042, 'fund sto ha': 341509, 'sto ha reduced': 801746, 'reduced the price': 706185, 'price of diesel': 675438, 'of diesel and': 582590, 'diesel and petrol': 241648, 'pandemic my': 635999, 'is hero': 448433, 'hero she': 394086, 'worked 14': 1006090, 'day straight': 228416, 'store healthy': 808127, 'happy it': 377638, 'so nice': 777875, 'to publicly': 912479, 'publicly scream': 688597, 'scream my': 742639, 'mother praise': 543150, 'but now with': 146619, 'now with this': 576457, '19 pandemic my': 9402, 'pandemic my mother': 636000, 'mother is hero': 543127, 'is hero she': 448434, 'hero she ha': 394087, 'she ha worked': 756087, 'ha worked 14': 372491, 'worked 14 day': 1006091, '14 day straight': 3459, 'day straight to': 228420, 'straight to get': 812243, 'to get people': 906559, 'people in and': 648346, 'grocery store healthy': 365457, 'store healthy and': 808128, 'healthy and happy': 387524, 'and happy it': 64177, 'happy it is': 377640, 'is so nice': 452027, 'so nice to': 777877, 'nice to publicly': 562493, 'to publicly scream': 912482, 'publicly scream my': 688598, 'scream my mother': 742640, 'my mother praise': 549336, 'goon': 358225, 'minded': 532793, 'wea': 973988, 'ug covid': 937954, 'be deadly': 114346, 'deadly bt': 229252, 'bt your': 141476, 'your worse': 1026394, 'worse at': 1010869, 'least mtn': 484565, 'mtn tried': 544640, 'tried lowering': 931793, 'lowering data': 506099, 'price bt': 672961, 'bt goon': 141466, 'goon are': 358226, 'are money': 88096, 'money minded': 536891, 'minded like': 532794, 'like shit': 491171, 'shit people': 759189, 'supported in': 827051, 'even at': 283846, 'worst moment': 1011217, 'moment wea': 536107, 'wea they': 973989, 'they expected': 882070, 'expected stand': 290942, 'stand with': 793609, 'them your': 876682, 'your all': 1022767, 'all like': 43379, 'like we': 491769, 'ug covid 19': 937955, 'could be deadly': 208857, 'be deadly bt': 114347, 'deadly bt your': 229253, 'bt your worse': 141477, 'your worse at': 1026395, 'worse at least': 1010871, 'at least mtn': 99527, 'least mtn tried': 484566, 'mtn tried lowering': 544641, 'tried lowering data': 931794, 'lowering data price': 506100, 'data price bt': 226353, 'price bt goon': 672962, 'bt goon are': 141467, 'goon are money': 358227, 'are money minded': 88097, 'money minded like': 536892, 'minded like shit': 532795, 'like shit people': 491172, 'shit people have': 759190, 'people have supported': 648202, 'have supported in': 382867, 'supported in year': 827052, 'in year and': 431018, 'year and even': 1014392, 'and even at': 62328, 'even at the': 283850, 'at the worst': 101158, 'the worst moment': 872061, 'worst moment wea': 1011219, 'moment wea they': 536108, 'wea they expected': 973990, 'they expected stand': 882071, 'expected stand with': 290943, 'stand with them': 793613, 'with them your': 1001621, 'them your all': 876683, 'your all like': 1022769, 'all like we': 43381, 'sore': 785977, 'sanitizing': 736461, 'else hand': 271718, 'hand getting': 374989, 'getting raw': 349213, 'raw and': 697955, 'and sore': 72006, 'sore from': 785978, 'from washing': 338297, 'washing and': 967644, 'and sanitizing': 70910, 'sanitizing so': 736504, 'much handwashing': 544972, 'handwashing socialdistancing': 376859, 'socialdistancing sanitizer': 780658, 'anyone else hand': 80265, 'else hand getting': 271719, 'hand getting raw': 374990, 'getting raw and': 349214, 'raw and sore': 697956, 'and sore from': 72007, 'sore from washing': 785979, 'from washing and': 338298, 'washing and sanitizing': 967649, 'and sanitizing so': 70913, 'sanitizing so much': 736505, 'so much handwashing': 777784, 'much handwashing socialdistancing': 544973, 'handwashing socialdistancing sanitizer': 376861, 'promised': 683714, 'runningfortheboarder': 728153, 'please arrange': 659668, 'arrange something': 93697, 'you promised': 1020459, 'promised at': 683715, 'least don': 484442, 'don hike': 253631, 'hike the': 396280, 'up stranded': 946082, 'stranded runningfortheboarder': 812362, 'please arrange something': 659670, 'arrange something to': 93698, 'something to get': 785102, 'get people home': 347802, 'people home that': 648286, 'home that you': 402222, 'that you promised': 847739, 'you promised at': 1020460, 'promised at the': 683716, 'very least don': 955297, 'least don hike': 484443, 'don hike the': 253632, 'hike the price': 396281, 'price up stranded': 677259, 'up stranded runningfortheboarder': 946083, 'can please': 159250, 'follow suit': 312506, 'suit coronacrisisuk': 817757, 'please can please': 659761, 'can please follow': 159251, 'please follow suit': 660008, 'follow suit coronacrisisuk': 312507, 'behaviour post': 124496, 'covid lockdown': 214188, 'lockdown my': 499681, 'consumer consumerbehaviour': 196956, 'consumer behaviour post': 196593, 'behaviour post the': 124497, 'post the covid': 666350, 'the covid lockdown': 852235, 'covid lockdown my': 214189, 'lockdown my thought': 499682, 'my thought consumer': 550354, 'thought consumer consumerbehaviour': 893007, 'headlong': 386016, 'curtailment': 221796, 'go negative': 353847, 'negative that': 556833, 'could combination': 209026, 'combination of': 187100, 'of saudi': 589324, 'russia flooding': 728478, 'flooding the': 310758, 'market with': 517373, 'increased oil': 433384, 'market running': 517022, 'running headlong': 727972, 'headlong into': 386017, 'into covid': 442492, '19 induced': 7827, 'induced curtailment': 435460, 'curtailment of': 221797, 'of activity': 579758, 'oil price can': 597072, 'price can go': 673061, 'can go negative': 158504, 'go negative that': 353849, 'negative that is': 556834, 'that is they': 844666, 'is they could': 453052, 'they could combination': 881820, 'could combination of': 209027, 'combination of saudi': 187107, 'of saudi arabia': 589325, 'arabia and russia': 83859, 'and russia flooding': 70668, 'russia flooding the': 728479, 'flooding the market': 310760, 'the market with': 860179, 'market with increased': 517377, 'with increased oil': 998976, 'increased oil and': 433385, 'oil and the': 596622, 'the market running': 860154, 'market running headlong': 517023, 'running headlong into': 727973, 'headlong into covid': 386018, 'into covid 19': 442493, 'covid 19 induced': 213263, '19 induced curtailment': 7829, 'induced curtailment of': 435461, 'curtailment of activity': 221798, 'getting ridiculous': 349240, 'ridiculous now': 721568, 'now food': 574707, 'sensible and': 750629, 'really human': 702319, 'human fighting': 410496, 'fighting each': 305061, 'other over': 620636, 'over fucking': 630239, 'fucking pack': 339963, 'get dinner': 346880, 'dinner at': 243050, 'moment it': 535974, 'it bloody': 456891, 'sorry but this': 786031, 'is getting ridiculous': 448040, 'getting ridiculous now': 349242, 'ridiculous now food': 721569, 'now food is': 574709, 'food is not': 315138, 'run out just': 727760, 'out just be': 626462, 'just be sensible': 468278, 'be sensible and': 117082, 'sensible and really': 750633, 'and really human': 70017, 'really human fighting': 702320, 'human fighting each': 410497, 'fighting each other': 305062, 'each other over': 264205, 'other over fucking': 620640, 'over fucking pack': 630240, 'fucking pack of': 339964, 'toilet roll can': 921559, 'roll can even': 725244, 'can even go': 158253, 'to get dinner': 906456, 'get dinner at': 346881, 'dinner at the': 243051, 'the moment it': 860764, 'moment it bloody': 535975, 'it bloody stupid': 456892, 'corrected': 207541, 'dec': 230650, 'thought crudeoil': 893014, 'crudeoil price': 219649, 'have corrected': 380120, 'corrected by': 207542, '60 since': 20998, 'since dec': 770561, 'dec 2019': 230651, '2019 result': 14005, 'crisis one': 217820, 'importer in': 419197, 'world india': 1009670, 'india import': 434459, 'import around': 418617, 'around 85': 93167, '85 of': 22928, 'fuel for thought': 340177, 'for thought crudeoil': 327158, 'thought crudeoil price': 893015, 'crudeoil price have': 219652, 'price have corrected': 674419, 'have corrected by': 380121, 'corrected by almost': 207543, 'by almost 60': 151802, 'almost 60 since': 46519, '60 since dec': 21000, 'since dec 2019': 770562, 'dec 2019 result': 230653, '2019 result of': 14006, 'the crisis one': 852422, 'crisis one of': 217822, 'the largest oil': 858971, 'largest oil importer': 479991, 'oil importer in': 596868, 'importer in the': 419199, 'the world india': 871895, 'world india import': 1009671, 'india import around': 434460, 'import around 85': 418618, 'around 85 of': 93168, '85 of it': 22929, 'of it oil': 585424, 'it oil demand': 460009, '2016': 13820, 'pace': 632922, 'goldman': 356087, 'wti dropped': 1013388, 'settle at': 753670, 'at 26': 97555, '26 95': 16146, '95 it': 23584, 'feb 2016': 301618, '2016 is': 13830, 'on pace': 602666, 'pace for': 632930, 'worst month': 1011220, 'record oott': 705042, 'oil goldman': 596843, 'goldman cut': 356090, 'cut it': 223400, 'it wti': 462622, 'wti forecast': 1013397, 'time today': 898104, 'price continue': 673222, 'wti dropped to': 1013389, 'dropped to settle': 260650, 'to settle at': 914300, 'settle at 26': 753671, 'at 26 95': 97557, '26 95 it': 16147, '95 it lowest': 23585, 'level since feb': 487708, 'since feb 2016': 770585, 'feb 2016 is': 301619, '2016 is currently': 13831, 'is currently on': 446997, 'currently on pace': 221609, 'on pace for': 602667, 'pace for it': 632932, 'for it worst': 322747, 'it worst month': 462558, 'worst month on': 1011222, 'month on record': 537925, 'on record oott': 603104, 'record oott oil': 705043, 'oott oil goldman': 611769, 'oil goldman cut': 596844, 'goldman cut it': 356091, 'cut it wti': 223412, 'it wti forecast': 462623, 'wti forecast for': 1013398, 'forecast for third': 328822, 'for third time': 327005, 'third time today': 886111, 'time today price': 898106, 'today price continue': 920068, 'price continue to': 673224, 'continue to fall': 201192, 'coronavirus could': 205709, 'have devastating': 380249, 'devastating effect': 239585, 'with depression': 998007, 'distancing to prevent': 247567, 'of coronavirus could': 581927, 'coronavirus could have': 205710, 'could have devastating': 209251, 'have devastating effect': 380250, 'devastating effect on': 239587, 'effect on people': 269091, 'on people with': 602760, 'people with depression': 650440, 'hampton': 374630, 'hudson': 409909, 'tripling': 932296, 'cnbc panicked': 184722, 'panicked wealthy': 639303, 'wealthy are': 974193, 'are fleeing': 86600, 'the hampton': 857050, 'hampton and': 374631, 'and hudson': 64850, 'hudson valley': 409914, 'valley wealthy': 952002, 'wealthy new': 974214, 'yorkers fleeing': 1016704, 'fleeing the': 310312, 'city are': 179057, 'are driving': 85999, 'of rental': 588934, 'rental in': 711233, 'valley with': 952004, 'with rate': 1000399, 'rate more': 697302, 'than tripling': 841358, 'tripling for': 932299, 'some property': 783661, 'cnbc panicked wealthy': 184723, 'panicked wealthy are': 639304, 'wealthy are fleeing': 974194, 'are fleeing to': 86601, 'fleeing to the': 310317, 'to the hampton': 916764, 'the hampton and': 857051, 'hampton and hudson': 374632, 'and hudson valley': 64851, 'hudson valley wealthy': 409917, 'valley wealthy new': 952003, 'wealthy new yorkers': 974215, 'new yorkers fleeing': 559966, 'yorkers fleeing the': 1016705, 'fleeing the city': 310313, 'the city are': 850918, 'city are driving': 179059, 'are driving up': 86004, 'driving up the': 260036, 'price of rental': 675555, 'of rental in': 588935, 'rental in the': 711234, 'in the hampton': 429253, 'hudson valley with': 409918, 'valley with rate': 952005, 'with rate more': 1000400, 'rate more than': 697303, 'more than tripling': 540692, 'than tripling for': 841359, 'tripling for some': 932300, 'for some property': 325762, 'essential might': 281308, 'might lead': 531061, 'inflation to': 437252, 'up coronacrisis': 944651, 'buying of essential': 150791, 'of essential might': 583180, 'essential might lead': 281309, 'might lead to': 531062, 'lead to world': 483396, 'to world food': 918825, 'world food inflation': 1009554, 'food inflation to': 315045, 'inflation to shoot': 437253, 'shoot up coronacrisis': 759751, 'scrolling': 742876, 'profitingfrompandemics': 683139, 'if social': 414838, 'medium influencers': 527145, 'influencers celebrity': 437342, 'celebrity will': 168913, 'be earning': 114623, 'earning more': 264871, 'more through': 540756, 'their paid': 874225, 'paid post': 634111, 'post they': 666359, 'have larger': 381248, 'larger audience': 479884, 'audience who': 102920, 'but scrolling': 146984, 'scrolling and': 742877, 'shopping 19': 761864, '19 profitingfrompandemics': 9844, 'wonder if social': 1003975, 'if social medium': 414840, 'social medium influencers': 779860, 'medium influencers celebrity': 527147, 'influencers celebrity will': 437343, 'celebrity will be': 168914, 'will be earning': 992440, 'be earning more': 114624, 'earning more through': 264872, 'more through their': 540758, 'through their paid': 894784, 'their paid post': 874226, 'paid post they': 634112, 'post they will': 666360, 'they will have': 883854, 'will have larger': 993643, 'have larger audience': 381249, 'larger audience who': 479885, 'audience who are': 102921, 'are doing nothing': 85912, 'nothing but scrolling': 572962, 'but scrolling and': 146985, 'scrolling and online': 742878, 'online shopping 19': 609008, 'shopping 19 profitingfrompandemics': 761867, 'sanjiv': 736565, 'hul to': 410368, 'to slash': 914714, 'of hygiene': 584942, 'have big': 379785, 'big role': 129969, 'play we': 659246, 'working closely': 1008570, 'closely with': 183481, 'partner to': 642884, 'we overcome': 972673, 'overcome this': 631135, 'crisis together': 218258, 'together sanjiv': 920930, 'sanjiv mehta': 736566, 'mehta chairman': 527868, 'chairman md': 171342, 'md hul': 522270, 'hul to slash': 410369, 'to slash price': 914723, 'slash price of': 773586, 'price of hygiene': 675472, 'of hygiene product': 584944, 'hygiene product in': 412155, 'product in crisis': 681281, 'in crisis like': 421887, 'like this company': 491476, 'this company have': 886824, 'company have big': 190732, 'have big role': 379790, 'big role to': 129970, 'to play we': 911806, 'play we are': 659247, 'are working closely': 91690, 'working closely with': 1008571, 'closely with the': 183485, 'with the government': 1001317, 'government and our': 359870, 'our partner to': 624285, 'partner to ensure': 642885, 'ensure that we': 278075, 'that we overcome': 847386, 'we overcome this': 972674, 'overcome this global': 631137, 'this global health': 887705, 'health crisis together': 386353, 'crisis together sanjiv': 218260, 'together sanjiv mehta': 920931, 'sanjiv mehta chairman': 736567, 'mehta chairman md': 527869, 'chairman md hul': 171343, 'ghmc': 349661, 'rythu': 728830, 'bazar': 113023, 'sai': 730938, 'baba': 106537, 'sharadanagar': 754895, 'ghmc mobile': 349662, 'mobile auto': 534948, 'auto selling': 103919, 'selling vegetable': 749524, 'vegetable at': 953938, 'at rythu': 100430, 'rythu bazar': 728831, 'bazar price': 113026, 'at sai': 100441, 'sai baba': 730939, 'baba colony': 106538, 'colony sharadanagar': 186717, 'sharadanagar for': 754896, 'making local': 511171, 'local resident': 498330, 'resident stay': 714365, 'their house': 873601, 'lockdown period': 499786, 'period and': 651707, 'and fight': 62824, 'against coronavirus': 37384, 'coronavirus mobile': 206288, 'auto vegetable': 103927, 'ghmc mobile auto': 349663, 'mobile auto selling': 534949, 'auto selling vegetable': 103920, 'selling vegetable at': 749525, 'vegetable at rythu': 953943, 'at rythu bazar': 100431, 'rythu bazar price': 728833, 'bazar price at': 113027, 'price at sai': 672811, 'at sai baba': 100442, 'sai baba colony': 730940, 'baba colony sharadanagar': 106539, 'colony sharadanagar for': 186718, 'sharadanagar for making': 754897, 'for making local': 323178, 'making local resident': 511173, 'local resident stay': 498331, 'resident stay at': 714366, 'stay at their': 796775, 'at their house': 101169, 'their house in': 873607, 'house in the': 406362, 'in the lockdown': 429328, 'the lockdown period': 859624, 'lockdown period and': 499788, 'period and fight': 651710, 'and fight against': 62825, 'fight against coronavirus': 304614, 'against coronavirus mobile': 37391, 'coronavirus mobile auto': 206289, 'mobile auto vegetable': 534950, 've lowered': 953352, 'our amazon': 622065, 'amazon price': 51068, 'safe out': 729873, 'crisis we ve': 218356, 'we ve lowered': 973684, 've lowered all': 953353, 'lowered all our': 506065, 'all our amazon': 43796, 'our amazon price': 622066, 'amazon price be': 51069, 'price be safe': 672860, 'be safe out': 116965, 'safe out there': 729874, 'husband called': 411692, 'called saying': 156434, 'saying he': 739598, 'he found': 384970, 'found he': 330232, 'so excited': 776982, 'excited like': 289547, 'found gold': 330219, 'gold apparently': 355855, 'apparently hear': 81943, 'hear bread': 387887, 'is hard': 448298, 'find among': 306770, 'thing during': 884289, 'the panicshopping': 863247, 'panicshopping even': 639427, 'even online': 284432, 'not easy': 569133, 'easy many': 265732, 'stock prayer': 802696, 'prayer be': 669052, 'my husband called': 548776, 'husband called saying': 411693, 'called saying he': 156435, 'saying he found': 739600, 'he found he': 384972, 'found he wa': 330233, 'he wa so': 385617, 'wa so excited': 963258, 'so excited like': 776988, 'excited like if': 289548, 'like if he': 490476, 'if he found': 414214, 'he found gold': 384971, 'found gold apparently': 330220, 'gold apparently hear': 355856, 'apparently hear bread': 81944, 'hear bread is': 387888, 'bread is hard': 138508, 'is hard to': 448305, 'to find among': 905877, 'find among other': 306771, 'other thing during': 621105, 'thing during the': 884293, 'during the panicshopping': 263170, 'the panicshopping even': 863248, 'panicshopping even online': 639428, 'even online shopping': 284433, 'shopping is not': 763064, 'is not easy': 450067, 'not easy many': 569135, 'easy many item': 265733, 'many item are': 514215, 'of stock prayer': 590186, 'stock prayer be': 802697, 'prayer be safe': 669054, 'life resident': 488990, 'resident should': 714360, 'should stay': 766493, 'out except': 626042, 'essential activity': 280753, 'activity such': 30501, 'such going': 816517, 'pharmacy more': 654378, 'staying home is': 798611, 'home is the': 401460, 'way to slow': 970096, '19 and save': 5099, 'save life resident': 737553, 'life resident should': 488991, 'resident should stay': 714362, 'should stay at': 766494, 'home and not': 400670, 'and not go': 67742, 'go out except': 353950, 'out except for': 626043, 'except for essential': 289157, 'for essential activity': 321091, 'essential activity such': 280756, 'activity such going': 30502, 'such going to': 816519, 'or pharmacy more': 616579, 'your finance': 1023863, 'finance during': 306189, 'protecting your finance': 685254, 'your finance during': 1023865, 'finance during the': 306190, 'pandemic consumer financial': 635190, 'unstable': 943526, 'chaldean': 171365, 'mensah': 528610, 'macewan': 507343, 'where sector': 985160, 'sector ha': 744201, 'completely collapsed': 192241, 'collapsed in': 186101, 'the revenue': 865760, 'revenue picture': 720466, 'picture is': 656143, 'looking very': 503066, 'very unstable': 955636, 'unstable going': 943534, 'forward said': 330010, 'said chaldean': 731022, 'chaldean mensah': 171366, 'mensah an': 528611, 'an associate': 55449, 'associate professor': 96884, 'of political': 588206, 'political science': 663673, 'science at': 742087, 'at macewan': 99658, 're in situation': 698886, 'situation where sector': 772580, 'where sector ha': 985161, 'sector ha completely': 744204, 'ha completely collapsed': 370222, 'completely collapsed in': 192242, 'collapsed in term': 186102, 'term of price': 838225, 'of price and': 588395, 'and the revenue': 73554, 'the revenue picture': 865763, 'revenue picture is': 720467, 'picture is going': 656144, 'to be looking': 901375, 'be looking very': 115826, 'looking very unstable': 503067, 'very unstable going': 955637, 'unstable going forward': 943535, 'going forward said': 355165, 'forward said chaldean': 330011, 'said chaldean mensah': 731023, 'chaldean mensah an': 171367, 'mensah an associate': 528612, 'an associate professor': 55450, 'associate professor of': 96886, 'professor of political': 682580, 'of political science': 588210, 'political science at': 663674, 'science at macewan': 742088, 'traveling': 930631, 'the traveling': 869936, 'traveling those': 930657, 'those old': 892278, 'old folk': 598253, 'folk do': 312140, 'in congress': 421656, 'congress that': 194535, 'been infected': 121376, 'all the traveling': 44952, 'the traveling those': 869937, 'traveling those old': 930658, 'those old folk': 892279, 'old folk do': 598255, 'folk do there': 312141, 'do there is': 250288, 'is no one': 449955, 'no one in': 564940, 'one in congress': 606468, 'in congress that': 421660, 'congress that ha': 194536, 'ha been infected': 369834, 'been infected with': 121379, 'infected with the': 436669, '10times': 2403, 'so stupid': 778293, 'stupid literally': 815419, 'literally change': 494967, 'change my': 172182, 'my glove': 548511, 'glove around': 352599, 'around 10times': 93103, '10times per': 2404, 'per every': 650825, 'every patient': 286090, 'patient see': 644250, 'so wearing': 778696, 'same glove': 733081, 'glove round': 352889, 'supermarket isn': 821149, 'help unless': 390834, 'changing them': 172824, 'them 24': 875303, '24 just': 15642, 'people wearing glove': 650176, 'wearing glove in': 974634, 'glove in public': 352733, 'in public are': 427071, 'public are so': 687870, 'are so stupid': 90220, 'so stupid literally': 778296, 'stupid literally change': 815420, 'literally change my': 494968, 'change my glove': 172183, 'my glove around': 548512, 'glove around 10times': 352600, 'around 10times per': 93104, '10times per every': 2405, 'per every patient': 650826, 'every patient see': 286091, 'patient see so': 644251, 'see so wearing': 745706, 'so wearing the': 778697, 'wearing the same': 974802, 'the same glove': 866231, 'same glove round': 733082, 'glove round the': 352890, 'the supermarket isn': 868649, 'supermarket isn going': 821150, 'going to help': 355620, 'to help unless': 907660, 'help unless you': 390835, 'you are changing': 1017086, 'are changing them': 85243, 'changing them 24': 172825, 'them 24 just': 875304, '24 just wash': 15644, 'just wash your': 470238, 'reflection': 706658, 'reflection from': 706663, 'from shelter': 337248, 'shelter at': 757904, 'home mandate': 401580, 'mandate to': 513009, 'what real': 982076, 'real look': 701260, 'like consumer': 490038, 'amp what': 54830, 'learn during': 483955, 'during amp': 262437, 'amp after': 53361, 'after crisis': 35520, 'reflection from shelter': 706664, 'from shelter at': 337249, 'shelter at home': 757905, 'at home mandate': 99042, 'home mandate to': 401581, 'mandate to contain': 513010, 'contain the on': 200499, 'the on what': 862179, 'on what real': 605237, 'what real look': 982077, 'real look like': 701261, 'look like consumer': 502472, 'like consumer amp': 490039, 'consumer amp what': 196192, 'amp what we': 54832, 'what we all': 982539, 'we all can': 970315, 'all can learn': 42284, 'can learn during': 158848, 'learn during amp': 483956, 'during amp after': 262438, 'amp after crisis': 53363, 'vh1': 955763, 'seen commercial': 746984, 'commercial for': 188704, 'for black': 319694, 'black ink': 132075, 'ink crew': 438743, 'crew chicago': 216688, 'chicago on': 175690, 'on vh1': 605042, 'vh1 whole': 955764, 'whole covid': 990174, 'food gone': 314684, 'panic episode': 638070, 'episode coming': 279516, 'coming may': 188130, 'may 6th': 520885, 'just seen commercial': 469740, 'seen commercial for': 746985, 'commercial for black': 188705, 'for black ink': 319695, 'black ink crew': 132076, 'ink crew chicago': 438744, 'crew chicago on': 216689, 'chicago on vh1': 175691, 'on vh1 whole': 605043, 'vh1 whole covid': 955765, 'whole covid 19': 990175, '19 all the': 4905, 'the food gone': 855555, 'food gone in': 314686, 'gone in the': 356311, 'the store panic': 868076, 'store panic episode': 809458, 'panic episode coming': 638071, 'episode coming may': 279517, 'coming may 6th': 188131, '2030': 14830, 'incl': 431461, 'if coronavirus': 414000, 'coronavirus had': 206047, 'had come': 372979, 'come 10': 187174, 'year later': 1014689, 'later in': 481075, 'in 2030': 419876, '2030 society': 14831, 'society buy': 781169, 'online incl': 608406, 'incl food': 431468, 'is week': 453821, 'week wait': 977176, 'wait you': 964257, 'you drive': 1018358, 'drive mile': 259097, 'mile to': 531416, 'supermarket warehouse': 823729, 'warehouse to': 966787, 'but so': 147071, 'whole town': 990366, 'town pandemic': 927537, 'what if coronavirus': 981625, 'if coronavirus had': 414002, 'coronavirus had come': 206048, 'had come 10': 372980, 'come 10 year': 187175, '10 year later': 1771, 'year later in': 1014690, 'later in 2030': 481076, 'in 2030 society': 419877, '2030 society buy': 14832, 'society buy everything': 781170, 'buy everything online': 148599, 'everything online incl': 287952, 'online incl food': 608407, 'incl food order': 431469, 'food order grocery': 315680, 'grocery online it': 364780, 'online it is': 608445, 'it is week': 459128, 'is week wait': 453826, 'week wait you': 977178, 'wait you drive': 964258, 'you drive mile': 1018360, 'drive mile to': 259098, 'mile to the': 531421, 'to the online': 916922, 'the online supermarket': 862283, 'online supermarket warehouse': 609506, 'supermarket warehouse to': 823733, 'warehouse to get': 966790, 'get food but': 347034, 'food but so': 313831, 'but so doe': 147074, 'doe the whole': 251625, 'the whole town': 871515, 'whole town pandemic': 990368, 'nietzsche': 562674, 'pathos': 644090, 'der': 237810, 'distanz': 247692, 'maintaining metre': 509115, 'metre distance': 529839, 'when using': 984374, 'supermarket give': 820519, 'give new': 350608, 'to nietzsche': 910598, 'nietzsche pathos': 562675, 'pathos der': 644091, 'der distanz': 237811, 'maintaining metre distance': 509116, 'metre distance from': 529840, 'distance from others': 246717, 'from others when': 336752, 'others when using': 621772, 'when using the': 984379, 'the supermarket give': 868610, 'supermarket give new': 820524, 'give new meaning': 350609, 'meaning to nietzsche': 524848, 'to nietzsche pathos': 910599, 'nietzsche pathos der': 562676, 'pathos der distanz': 644092, 'interesting podcast': 441590, 'podcast about': 662251, 'demand chain': 235119, 'interesting podcast about': 441591, 'podcast about food': 662252, 'and demand chain': 61143, 'demand chain during': 235120, 'chain during 19': 170665, 'menu': 528869, 'assclowns': 96340, 'add pricegouging': 31473, 'pricegouging on': 677831, 'on drop': 600423, 'drop down': 260176, 'down menu': 256957, 'menu it': 528880, 'it easier': 457734, 'easier to': 265156, 'the assclowns': 848975, 'assclowns gouging': 96341, 'emergency pricegougers': 272899, 'pricegougers toiletpaper': 677778, 'need to add': 555852, 'to add pricegouging': 900063, 'add pricegouging on': 31474, 'pricegouging on drop': 677833, 'on drop down': 600424, 'drop down menu': 260177, 'down menu it': 256958, 'menu it make': 528881, 'it make it': 459512, 'make it easier': 510029, 'it easier to': 457736, 'easier to report': 265163, 'to report the': 913289, 'report the assclowns': 712335, 'the assclowns gouging': 848976, 'assclowns gouging during': 96342, 'gouging during national': 359311, 'national emergency pricegougers': 552493, 'emergency pricegougers toiletpaper': 272900, 'lafayette': 478879, 'thenextgiantleap': 877813, 'for greater': 322008, 'greater lafayette': 363194, 'lafayette during': 478880, '100 liter': 1940, 'liter of': 494929, 'donated and': 254318, 'made available': 507644, 'purchase via': 689716, 'via thenextgiantleap': 956319, 'thenextgiantleap lafayette': 877814, 'sanitizer for greater': 734907, 'for greater lafayette': 322010, 'greater lafayette during': 363195, 'lafayette during the': 478881, 'the outbreak more': 862667, 'outbreak more than': 628461, 'than 100 liter': 840159, '100 liter of': 1941, 'liter of hand': 494932, 'sanitizer will be': 736102, 'be donated and': 114541, 'donated and made': 254320, 'and made available': 66505, 'made available for': 507646, 'available for purchase': 104380, 'for purchase via': 324869, 'purchase via thenextgiantleap': 689717, 'via thenextgiantleap lafayette': 956320, 'presume': 671300, 'spreader': 790902, 'criticism': 218760, 'are frontline': 86699, 'frontline police': 338809, 'police tested': 663232, 'tested and': 839261, 'and protected': 69665, 'protected from': 685131, '19 would': 12208, 'would presume': 1012115, 'presume they': 671304, 'are potential': 89160, 'potential super': 667144, 'super spreader': 818589, 'spreader supermarket': 790908, 'supermarket bus': 819433, 'not criticism': 568933, 'criticism just': 218765, 'just question': 469530, 'how are frontline': 407401, 'are frontline police': 86700, 'frontline police tested': 338810, 'police tested and': 663233, 'tested and protected': 839267, 'and protected from': 69667, 'protected from covid': 685132, 'covid 19 would': 214093, '19 would presume': 12216, 'would presume they': 1012116, 'presume they are': 671305, 'they are potential': 881364, 'are potential super': 89162, 'potential super spreader': 667145, 'super spreader supermarket': 818591, 'spreader supermarket bus': 790910, 'supermarket bus driver': 819434, 'bus driver are': 143015, 'driver are this': 259444, 'is not criticism': 450057, 'not criticism just': 568934, 'criticism just question': 218766, 'dear panic': 229841, 'buyer you': 149812, 'food away': 313489, 'family think': 298308, 'think before': 885153, 'dear panic buyer': 229842, 'panic buyer you': 637621, 'buyer you re': 149814, 'you re taking': 1020767, 're taking food': 699650, 'taking food away': 833365, 'food away from': 313491, 'from the people': 337828, 'that need the': 845311, 'need the strength': 555754, 'the strength to': 868266, 'strength to look': 813238, 'look after you': 502230, 'after you and': 36606, 'your family think': 1023804, 'family think before': 298309, 'think before you': 885155, 'before you take': 123337, 'store shoukd': 810153, 'shoukd go': 765462, 'on shopping': 603437, 'shopping schedule': 763814, 'schedule and': 741423, 'delivery during': 233965, 'allow no': 46008, '50 shopper': 19846, 'shopper into': 761573, 'per 15': 650671, 'minute temperature': 533850, 'temperature required': 837394, 'enter cleaning': 278238, 'cleaning occurs': 180989, 'occurs often': 579081, 'grocery store shoukd': 365771, 'store shoukd go': 810154, 'shoukd go on': 765463, 'go on shopping': 353892, 'on shopping schedule': 603442, 'shopping schedule and': 763815, 'schedule and or': 741425, 'and or delivery': 68209, 'or delivery during': 614935, 'delivery during the': 233969, 'during the to': 263210, 'the to allow': 869669, 'to allow no': 900347, 'allow no more': 46009, 'than 50 shopper': 840262, '50 shopper into': 19847, 'shopper into the': 761575, 'the store per': 868079, 'store per 15': 809500, 'per 15 minute': 650672, '15 minute temperature': 3779, 'minute temperature required': 533851, 'temperature required to': 837395, 'required to enter': 713397, 'to enter cleaning': 905213, 'enter cleaning occurs': 278239, 'cleaning occurs often': 180990, 'baked': 108754, 'throttle': 894275, 'gaseous': 344199, 'emission': 273202, 'tinned baked': 898604, 'baked bean': 108758, 'bean production': 118351, 'full throttle': 340929, 'throttle due': 894276, 'demand created': 235190, 'an infinite': 56306, 'infinite shelf': 436948, 'life good': 488695, 'the bean': 849393, 'bean grower': 118324, 'grower of': 367106, 'world bad': 1009343, 'environment massively': 279127, 'massively increased': 520181, 'increased gaseous': 433334, 'gaseous emission': 344200, 'emission lead': 273209, 'to global': 906737, 'tinned baked bean': 898605, 'baked bean production': 108762, 'bean production is': 118352, 'production is at': 682085, 'is at full': 445859, 'at full throttle': 98726, 'full throttle due': 340930, 'throttle due to': 894277, 'to the demand': 916633, 'the demand created': 853089, 'demand created by': 235191, 'created by covid': 215789, 'covid 19 for': 213113, '19 for food': 7065, 'for food with': 321654, 'food with an': 317640, 'with an infinite': 997219, 'an infinite shelf': 56307, 'infinite shelf life': 436949, 'shelf life good': 757279, 'life good news': 488696, 'news for the': 560443, 'for the bean': 326317, 'the bean grower': 849394, 'bean grower of': 118325, 'grower of the': 367107, 'the world bad': 871820, 'world bad news': 1009344, 'the environment massively': 854404, 'environment massively increased': 279128, 'massively increased gaseous': 520182, 'increased gaseous emission': 433335, 'gaseous emission lead': 344201, 'emission lead to': 273210, 'lead to global': 483347, 'to global warming': 906748, 'good try': 357918, 'woman pic': 1003577, 'pic wasn': 655632, 'wasn recent': 968013, 'recent nor': 703934, 'nor taken': 566978, 'taken at': 832951, 'at dollartree': 98474, 'dollartree you': 253135, 'you sure': 1021492, 'sure are': 827491, 'are easily': 86069, 'easily led': 265220, 'led stayathome': 485264, 'stayathome bernie': 797443, 'bernie voting': 127390, 'voting socialist': 960614, 'socialist cleared': 781007, 'toiletpaper at': 921762, 'dollartree stayathome': 253132, 'good try the': 357919, 'try the elderly': 934582, 'elderly woman pic': 270956, 'woman pic wasn': 1003578, 'pic wasn recent': 655633, 'wasn recent nor': 968014, 'recent nor taken': 703935, 'nor taken at': 566979, 'taken at dollartree': 832952, 'at dollartree you': 98478, 'dollartree you sure': 253136, 'you sure are': 1021493, 'sure are easily': 827492, 'are easily led': 86070, 'easily led stayathome': 265221, 'led stayathome bernie': 485265, 'stayathome bernie voting': 797444, 'bernie voting socialist': 127391, 'voting socialist cleared': 960615, 'socialist cleared out': 781008, 'cleared out toiletpaper': 181431, 'out toiletpaper at': 627713, 'toiletpaper at dollartree': 921763, 'at dollartree stayathome': 98476, 'me every': 522703, 'time someone': 897714, 'someone is': 784525, 'same aisle': 732958, 'aisle me': 40307, 'me every time': 522704, 'every time someone': 286317, 'time someone is': 897715, 'someone is in': 784532, 'the same aisle': 866194, 'same aisle me': 732959, 'aisle me at': 40308, 'grandfather': 361892, 'sneaking': 776207, 'oldpeoplearestubbornashell': 598721, 'who described': 988564, 'described old': 237948, 'people 80': 646733, 'old teenager': 598493, 'teenager because': 836538, 'because pretty': 119495, 'pretty sure': 671503, 'sure going': 827559, 'catch my': 167011, 'my 90': 547204, 'old grandfather': 598271, 'grandfather sneaking': 361893, 'sneaking out': 776208, 'quarantine oldpeoplearestubbornashell': 692398, 'is the person': 452891, 'the person who': 863595, 'person who described': 652723, 'who described old': 988565, 'described old people': 237949, 'old people 80': 598407, 'people 80 year': 646734, 'year old teenager': 1014870, 'old teenager because': 598494, 'teenager because pretty': 836539, 'because pretty sure': 119497, 'pretty sure going': 671504, 'sure going to': 827560, 'going to catch': 355548, 'to catch my': 902502, 'catch my 90': 167012, 'my 90 year': 547205, 'year old grandfather': 1014830, 'old grandfather sneaking': 598272, 'grandfather sneaking out': 361894, 'sneaking out of': 776209, 'of the house': 591111, 'house at to': 406209, 'at to go': 101328, 'to go at': 906772, 'go at the': 353323, 'store quarantine oldpeoplearestubbornashell': 809716, 'offended': 594464, 'sidestepping': 768945, 'being offended': 125473, 'offended by': 594465, 'people sidestepping': 649467, 'sidestepping me': 768946, 'me on': 523257, 'road or': 724487, 'first time not': 309106, 'time not being': 897287, 'not being offended': 568539, 'being offended by': 125474, 'offended by people': 594466, 'by people sidestepping': 153554, 'people sidestepping me': 649468, 'sidestepping me on': 768947, 'me on the': 523264, 'the road or': 865934, 'road or supermarket': 724488, 'elekworld': 271328, 'elekworldjulia': 271334, 'iphonerepair': 444592, 'elekworld supply': 271331, 'supply respirator': 825768, 'respirator panel': 715208, 'panel mask': 637190, 'price send': 676342, 'me private': 523357, 'private message': 678950, 'message for': 529304, 'price prevent': 675985, '19 elekworld': 6742, 'elekworld elekworldjulia': 271329, 'elekworldjulia iphonerepair': 271335, 'elekworld supply respirator': 271333, 'supply respirator panel': 825769, 'respirator panel mask': 715209, 'panel mask at': 637191, 'reasonable price send': 703126, 'price send me': 676344, 'send me private': 749887, 'me private message': 523358, 'private message for': 678953, 'message for the': 529308, 'for the best': 326319, 'best price prevent': 127868, 'price prevent the': 675987, 'covid 19 elekworld': 213014, '19 elekworld elekworldjulia': 6743, 'elekworld elekworldjulia iphonerepair': 271330, 'wk': 1003207, 'revives': 720697, 'also find': 48207, 'that wk': 847635, 'wk lockdown': 1003210, 'in given': 423316, 'given month': 351055, 'month period': 537956, 'period cut': 651742, 'cut consumer': 223275, 'spending by': 788766, 'by 16': 151551, 'and 12': 57361, '12 wk': 2992, 'lockdown cut': 499291, 'by 18': 151559, '18 32': 4499, '32 full': 17670, 'year effect': 1014538, 'effect depend': 268992, 'how quickly': 408546, 'quickly postponed': 694575, 'postponed consumption': 666802, 'consumption revives': 199939, 'revives outbreak': 720700, 'outbreak come': 628116, 'under control': 940041, 'we also find': 970398, 'also find that': 48208, 'find that wk': 307277, 'that wk lockdown': 847636, 'wk lockdown in': 1003212, 'lockdown in given': 499505, 'in given month': 423317, 'given month period': 351056, 'month period cut': 537958, 'period cut consumer': 651743, 'cut consumer spending': 223276, 'consumer spending by': 199048, 'spending by 16': 788767, 'by 16 and': 151553, '16 and 12': 4092, 'and 12 wk': 57365, '12 wk lockdown': 2993, 'wk lockdown cut': 1003211, 'lockdown cut it': 499293, 'cut it by': 223402, 'it by 18': 456972, 'by 18 32': 151560, '18 32 full': 4500, '32 full year': 17671, 'full year effect': 340989, 'year effect depend': 1014539, 'effect depend on': 268993, 'depend on how': 237316, 'on how quickly': 601418, 'how quickly postponed': 408554, 'quickly postponed consumption': 694576, 'postponed consumption revives': 666803, 'consumption revives outbreak': 199940, 'revives outbreak come': 720701, 'outbreak come under': 628118, 'come under control': 187642, 'vodafoneuk': 959937, 'sympatheticcapitalism': 830784, 'and vodafoneuk': 75013, 'vodafoneuk increase': 959938, 'price sympatheticcapitalism': 676741, 'of pandemic and': 587687, 'pandemic and vodafoneuk': 634915, 'and vodafoneuk increase': 75014, 'vodafoneuk increase their': 959939, 'increase their price': 433120, 'their price sympatheticcapitalism': 874426, 'custexp': 221952, 'hint': 396900, 'stick': 800020, 'start connecting': 794262, 'connecting customer': 194686, 'customer custexp': 222282, 'custexp thread': 221953, 'thread during': 893541, 'right hint': 721937, 'hint outside': 396917, 'right but': 721827, 'but stick': 147152, 'stick with': 800074, 'see retail': 745640, 'retail supermarket': 718749, 'are treated': 91191, 'treated terribly': 930971, 'terribly by': 838462, 'start connecting customer': 794263, 'connecting customer custexp': 194687, 'customer custexp thread': 222283, 'custexp thread during': 221954, 'thread during the': 893542, 'during the customer': 263112, 'the customer is': 852725, 'customer is not': 222539, 'is not always': 450030, 'not always right': 568181, 'always right hint': 49726, 'right hint outside': 721938, 'hint outside of': 396918, 'outside of pandemic': 629511, 'of pandemic they': 587711, 'pandemic they are': 636732, 'are not always': 88320, 'always right but': 49725, 'right but stick': 721830, 'but stick with': 147153, 'stick with me': 800075, 'with me we': 999459, 'me we see': 523916, 'we see retail': 973167, 'see retail supermarket': 745641, 'retail supermarket worker': 718753, 'worker are treated': 1006435, 'are treated terribly': 91195, 'treated terribly by': 930972, 'terribly by shopper': 838463, 'b4': 106505, 'wypipo': 1013729, 'if ghana': 414149, 'ghana law': 349573, 'law ppl': 482370, 'ppl must': 668281, 'must wash': 546985, 'wash amp': 967429, 'amp sanitize': 54436, 'sanitize hand': 734190, 'hand b4': 374813, 'b4 touching': 106514, 'touching food': 926678, 'mean wypipo': 524781, 'wypipo too': 1013730, 'too don': 924689, 'don use': 254012, 'use power': 949491, 'power for': 667609, 'me cc': 522571, 'cc 19': 168388, 'if ghana law': 414150, 'ghana law ppl': 349574, 'law ppl must': 482371, 'ppl must wash': 668282, 'must wash amp': 546986, 'wash amp sanitize': 967430, 'amp sanitize hand': 54437, 'sanitize hand b4': 734192, 'hand b4 touching': 374814, 'b4 touching food': 106515, 'touching food in': 926679, 'in supermarket that': 428686, 'supermarket that mean': 823190, 'that mean wypipo': 845124, 'mean wypipo too': 524782, 'wypipo too don': 1013731, 'too don use': 924691, 'don use power': 254016, 'use power for': 949492, 'power for me': 667610, 'for me cc': 323308, 'me cc 19': 522572, 'santa': 736594, 'you allow': 1016924, 'allow 200': 45908, 'time into': 897042, 'into farmer': 442550, 'in santa': 427697, 'santa monica': 736599, 'monica only': 537258, 'only 30': 609997, '30 are': 16970, 'are bigger': 84977, 'bigger than': 130173, 'market social': 517080, 'distancing fail': 247142, 'fail so': 296102, 'so plz': 778035, 'plz close': 661805, 'why would you': 991573, 'would you allow': 1012403, 'you allow 200': 1016925, 'allow 200 people': 45909, '200 people at': 13526, 'people at time': 647186, 'at time into': 101292, 'time into farmer': 897043, 'into farmer market': 442551, 'farmer market in': 299450, 'market in santa': 516571, 'in santa monica': 427699, 'santa monica only': 736601, 'monica only 30': 537259, 'only 30 are': 609998, '30 are allowed': 16971, 'are allowed in': 84379, 'store and those': 806379, 'and those are': 74018, 'those are bigger': 891800, 'are bigger than': 84978, 'bigger than the': 130175, 'than the market': 841251, 'the market social': 860159, 'market social distancing': 517081, 'social distancing fail': 779607, 'distancing fail so': 247143, 'fail so plz': 296103, 'so plz close': 778036, 'plz close the': 661806, 'close the market': 182842, 'someplace': 784810, 'mcag': 522084, 'muletown': 545631, 'latte': 481667, 'latteart': 481671, 're gonna': 698759, 'go when': 354492, 'when quarantine': 983916, 'over someplace': 630632, 'someplace that': 784813, 'store mcag': 808924, 'mcag muletown': 522085, 'muletown coffee': 545632, 'coffee latte': 185505, 'latte latteart': 481668, 'where is the': 984954, 'first place you': 308872, 'place you re': 657860, 'you re gonna': 1020636, 're gonna go': 698760, 'gonna go when': 356546, 'go when quarantine': 354493, 'when quarantine is': 983917, 'is over someplace': 450731, 'over someplace that': 630633, 'someplace that not': 784814, 'that not the': 845400, 'not the grocery': 572005, 'grocery store mcag': 365559, 'store mcag muletown': 808925, 'mcag muletown coffee': 522086, 'muletown coffee latte': 545633, 'coffee latte latteart': 185506, 'enjoying': 277223, 'buylocal': 151432, 'some australian': 782354, 'australian farmer': 103485, 'are enjoying': 86215, 'enjoying five': 277228, 'five fold': 309614, 'fold spike': 312057, 'in direct': 422276, 'consumer produce': 198443, 'produce sale': 680419, 'sale due': 732177, 'to buylocal': 902356, 'some australian farmer': 782355, 'australian farmer are': 103487, 'farmer are enjoying': 299276, 'are enjoying five': 86216, 'enjoying five fold': 277229, 'five fold spike': 309615, 'fold spike in': 312058, 'spike in direct': 789295, 'in direct to': 422280, 'to consumer produce': 903324, 'consumer produce sale': 198444, 'produce sale due': 680420, 'sale due to': 732178, 'due to buylocal': 261718, 'citi': 178787, 'yougov': 1022526, 'occurred': 579035, 'in expectation': 422726, 'expectation for': 290815, 'year ahead': 1014372, 'march from': 515369, 'feb reported': 301658, 'reported by': 712463, 'by citi': 152124, 'citi yougov': 178788, 'yougov occurred': 1022533, 'occurred despite': 579038, 'despite sharp': 238846, 'sharp drop': 755683, 'could reflect': 209584, 'reflect concern': 706600, 'concern that': 193109, 'that food': 843899, 'other staple': 620954, 'staple price': 793980, 'be pushed': 116635, 'pushed up': 690389, 'term by': 838082, 'by increased': 152893, 'increased related': 433452, 'jump in expectation': 467863, 'in expectation for': 422727, 'expectation for year': 290823, 'for year ahead': 327993, 'year ahead to': 1014374, 'ahead to in': 39217, 'to in march': 908227, 'in march from': 425104, 'march from in': 515372, 'from in feb': 336022, 'in feb reported': 422830, 'feb reported by': 301659, 'reported by citi': 712464, 'by citi yougov': 152125, 'citi yougov occurred': 178790, 'yougov occurred despite': 1022534, 'occurred despite sharp': 579039, 'despite sharp drop': 238847, 'sharp drop in': 755684, 'price could reflect': 673293, 'could reflect concern': 209585, 'reflect concern that': 706601, 'concern that food': 193112, 'that food amp': 843901, 'food amp other': 313142, 'amp other staple': 54247, 'other staple price': 620957, 'staple price will': 793982, 'will be pushed': 992627, 'be pushed up': 116638, 'pushed up in': 690391, 'up in near': 945168, 'in near term': 425705, 'near term by': 553599, 'term by increased': 838083, 'by increased related': 152895, 'increased related demand': 433453, 'announced temporary': 77054, 'temporary shutdown': 837690, 'shutdown of': 768063, 'it outlet': 460196, 'outlet over': 629056, 'over suspicion': 630675, 'suspicion of': 829702, 'case read': 165973, 'supermarket chain in': 819610, 'chain in the': 170818, 'country ha announced': 210707, 'ha announced temporary': 369567, 'announced temporary shutdown': 77057, 'temporary shutdown of': 837691, 'shutdown of one': 768070, 'one of it': 606748, 'of it outlet': 585426, 'it outlet over': 460197, 'outlet over suspicion': 629057, 'over suspicion of': 630676, 'suspicion of covid': 829703, '19 case read': 5694, 'case read more': 165974, 'hairworld': 374068, 'paulmitchell': 644568, 'the hairworld': 857042, 'hairworld ha': 374069, 'now joined': 575146, 'joined in': 466936, 'with paulmitchell': 1000114, 'paulmitchell produce': 644569, 'the hairworld ha': 857043, 'hairworld ha now': 374070, 'ha now joined': 371399, 'now joined in': 575147, 'joined in on': 466937, 'on the battle': 603981, 'the battle with': 849352, 'battle with paulmitchell': 112844, 'with paulmitchell produce': 1000115, 'paulmitchell produce hand': 644570, 'sanitizer for first': 734903, 'for first responder': 321503, 'toy we': 927704, 'comic toy we': 187952, 'toy we are': 927705, 'we are lowering': 970620, 'prosus': 684742, 'invested': 443776, 'swiggy': 830338, 'byju': 154813, 'helpdeskforcoronavirus': 391034, 'consumer internet': 197910, 'internet firm': 441939, 'firm prosus': 308406, 'prosus which': 684747, 'ha invested': 370995, 'invested in': 443783, 'company like': 190839, 'like swiggy': 491279, 'swiggy byju': 830339, 'byju etc': 154814, 'etc pledged': 282710, 'donate 100': 254143, 'crore to': 218970, 'the pm': 863873, 'pm relief': 661964, 'for supporting': 326067, 'supporting relief': 827179, 'relief work': 709503, 'work venture': 1005965, 'venture helpdeskforcoronavirus': 954668, 'consumer internet firm': 197913, 'internet firm prosus': 441940, 'firm prosus which': 308407, 'prosus which ha': 684748, 'which ha invested': 985887, 'ha invested in': 370996, 'invested in company': 443784, 'in company like': 421622, 'company like swiggy': 190847, 'like swiggy byju': 491280, 'swiggy byju etc': 830340, 'byju etc pledged': 154815, 'etc pledged to': 282711, 'pledged to donate': 660869, 'to donate 100': 904640, 'donate 100 crore': 254145, '100 crore to': 1878, 'crore to the': 218975, 'to the pm': 916961, 'the pm relief': 863878, 'pm relief fund': 661965, 'relief fund for': 709353, 'fund for supporting': 341409, 'for supporting relief': 326069, 'supporting relief work': 827180, 'relief work venture': 709505, 'work venture helpdeskforcoronavirus': 1005966, 'wutang': 1013609, 'grift': 363924, 'my prayer': 549828, 'prayer go': 669062, 'real victim': 701444, 'victim the': 956517, 'elderly who': 270945, 'being socially': 125824, 'socially isolated': 781068, 'isolated healthcare': 455001, 'provider doing': 686713, 'doing overtime': 252595, 'overtime supermarket': 631641, 'are stressed': 90558, 'out small': 627199, 'owner asking': 632397, 'for loan': 323035, 'loan people': 497500, 'people living': 648682, 'living paycheck': 496441, 'paycheck wutang': 645317, 'wutang flu': 1013610, 'flu grift': 311415, 'my prayer go': 549829, 'prayer go out': 669063, 'the real victim': 865246, 'real victim the': 701446, 'victim the elderly': 956518, 'the elderly who': 854160, 'elderly who are': 270946, 'who are being': 988105, 'are being socially': 84925, 'being socially isolated': 125826, 'socially isolated healthcare': 781070, 'isolated healthcare provider': 455002, 'healthcare provider doing': 387249, 'provider doing overtime': 686714, 'doing overtime supermarket': 252596, 'overtime supermarket employee': 631642, 'who are stressed': 988229, 'are stressed out': 90559, 'stressed out small': 813455, 'out small business': 627200, 'small business owner': 774884, 'business owner asking': 144179, 'owner asking for': 632398, 'asking for loan': 95991, 'for loan people': 323041, 'loan people living': 497502, 'people living paycheck': 648687, 'living paycheck to': 496442, 'to paycheck wutang': 911585, 'paycheck wutang flu': 645318, 'wutang flu grift': 1013612, 'underappreciated': 940406, 'underacknowledge': 940400, 'for remaining': 325100, 'remaining strong': 709983, 'uncertainty many': 939718, 'of underappreciated': 592609, 'underappreciated and': 940407, 'and underacknowledge': 74621, 'underacknowledge the': 940401, 'sacrifice that': 729108, 'individual are': 435136, 'thank all of': 841534, 'employee for remaining': 273867, 'for remaining strong': 325102, 'remaining strong during': 709984, 'of uncertainty many': 592599, 'uncertainty many of': 939719, 'many of underappreciated': 514397, 'of underappreciated and': 592610, 'underappreciated and underacknowledge': 940408, 'and underacknowledge the': 74622, 'underacknowledge the sacrifice': 940402, 'the sacrifice that': 866115, 'sacrifice that these': 729109, 'that these individual': 846914, 'these individual are': 880168, 'howtokeeppeoplehome': 409554, 'rideshare': 721494, 'cratering': 215156, 'to howtokeeppeoplehome': 908035, 'howtokeeppeoplehome is': 409555, 'easier for': 265142, 'item while': 463819, 'while at': 986622, 'home currently': 400977, 'currently demand': 221511, 'for rideshare': 325233, 'rideshare on': 721495, 'is cratering': 446885, 'cratering during': 215157, 'crisis delivery': 217280, 'delivery demand': 233860, 'increasing though': 433724, 'one way to': 607384, 'way to howtokeeppeoplehome': 970038, 'to howtokeeppeoplehome is': 908036, 'howtokeeppeoplehome is to': 409556, 'is to help': 453209, 'help make it': 390035, 'it easier for': 457735, 'easier for them': 265148, 'for them to': 326927, 'get delivery of': 346865, 'other item while': 620452, 'item while at': 463820, 'while at home': 986624, 'at home currently': 98966, 'home currently demand': 400978, 'currently demand for': 221513, 'demand for rideshare': 235490, 'for rideshare on': 325234, 'rideshare on and': 721496, 'on and is': 599358, 'and is cratering': 65396, 'is cratering during': 446886, 'cratering during the': 215158, '19 crisis delivery': 6234, 'crisis delivery demand': 217281, 'delivery demand is': 233863, 'demand is increasing': 235730, 'is increasing though': 448865, '14th': 3623, 'golden': 356042, 'leisurely': 486152, 'strolling': 813955, 'situation 14th': 772156, '14th april': 3624, '2020 golden': 14339, 'golden experience': 356049, 'experience took': 291521, 'took for': 925238, 'for granted': 321986, 'granted leisurely': 362079, 'leisurely strolling': 486155, 'strolling through': 813956, 'with cart': 997552, 'cart feeling': 165296, 'like ugh': 491692, 'ugh this': 938032, 'such chore': 816392, 'chore is': 178009, 'now one': 575445, 'one crave': 606131, '19 the situation': 11248, 'the situation 14th': 867239, 'situation 14th april': 772157, '14th april 2020': 3625, 'april 2020 golden': 83462, '2020 golden experience': 14340, 'golden experience took': 356050, 'experience took for': 291522, 'took for granted': 925239, 'for granted leisurely': 321996, 'granted leisurely strolling': 362080, 'leisurely strolling through': 486156, 'strolling through the': 813957, 'through the supermarket': 894769, 'supermarket with cart': 823913, 'with cart feeling': 997554, 'cart feeling like': 165297, 'feeling like ugh': 303015, 'like ugh this': 491693, 'ugh this is': 938033, 'this is such': 888415, 'is such chore': 452424, 'such chore is': 816393, 'chore is now': 178010, 'is now one': 450308, 'now one crave': 575446, 'one crave for': 606132, 'crave for now': 215163, 'for now it': 323973, 'now it done': 575112, 'it done to': 457671, 'done to get': 255069, 'can stay alive': 159735, 'march april': 515276, 'april month': 83639, 'month special': 538010, 'special no': 787999, 'no credit': 563928, 'card bill': 163477, 'bill no': 130630, 'delivery bill': 233750, 'no petrol': 565098, 'petrol bill': 653716, 'purchase bill': 689391, 'no restaurant': 565348, 'restaurant bill': 716334, 'no shopping': 565486, 'shopping bill': 762229, 'bill courtesy': 130543, 'courtesy lockdown21': 212046, 'lockdown21 by': 500202, 'by 19': 151563, 'march april month': 515277, 'april month special': 83640, 'month special no': 538011, 'special no credit': 788000, 'no credit card': 563929, 'credit card bill': 216328, 'card bill no': 163478, 'bill no online': 130631, 'no online food': 564991, 'food delivery bill': 314112, 'delivery bill no': 233751, 'bill no petrol': 130632, 'no petrol bill': 565099, 'petrol bill no': 653717, 'no online purchase': 564994, 'online purchase bill': 608820, 'purchase bill no': 689392, 'bill no restaurant': 130633, 'no restaurant bill': 565349, 'restaurant bill no': 716335, 'bill no shopping': 130634, 'no shopping bill': 565487, 'shopping bill courtesy': 762231, 'bill courtesy lockdown21': 130544, 'courtesy lockdown21 by': 212047, 'lockdown21 by 19': 500203, 'donald can': 254095, 'you explain': 1018491, 'fda is': 300877, 'still blocking': 800292, 'blocking ethanol': 132884, 'national crisis': 552463, 'crisis or': 217830, 'still want': 801384, 'to tweet': 917858, 'tweet about': 936323, 'about bernie': 24877, 'sander we': 733695, 'dying in': 263838, 'state donaldtrump': 795532, 'donald can you': 254096, 'can you explain': 160298, 'you explain why': 1018494, 'explain why the': 292139, 'why the fda': 991414, 'the fda is': 855019, 'fda is still': 300879, 'is still blocking': 452267, 'still blocking ethanol': 800293, 'blocking ethanol producer': 132885, 'ethanol producer from': 283005, 'producer from making': 680628, 'from making hand': 336311, 'sanitizer during national': 734800, 'during national crisis': 262808, 'national crisis or': 552466, 'crisis or do': 217832, 'do you still': 250682, 'you still want': 1021415, 'still want to': 801387, 'want to tweet': 966149, 'to tweet about': 917859, 'tweet about bernie': 936324, 'about bernie sander': 24878, 'bernie sander we': 127386, 'sander we have': 733696, 'we have people': 971895, 'have people dying': 381909, 'people dying in': 647751, 'dying in the': 263840, 'united state donaldtrump': 942213, 'many local': 514240, 'business offering': 144126, 'offering home': 595150, 'are just one': 87632, 'of many local': 586181, 'many local business': 514241, 'local business offering': 497770, 'business offering home': 144129, 'offering home delivery': 595151, 'smartphones': 775532, 'technology co': 836271, 'co said': 184955, 'it expects': 457896, 'expects revenue': 291099, 'business group': 143803, 'which includes': 985956, 'includes smartphones': 431810, 'smartphones personal': 775535, 'personal computer': 652808, 'computer and': 192727, 'and tablet': 72946, 'tablet to': 831532, 'grow fast': 367023, 'fast in': 299992, 'china despite': 176601, 'restriction http': 717288, 'technology co said': 836272, 'co said on': 184956, 'thursday that it': 895427, 'that it expects': 844706, 'it expects revenue': 457897, 'expects revenue from': 291100, 'from it consumer': 336110, 'it consumer business': 457281, 'consumer business group': 196673, 'business group which': 143806, 'group which includes': 366970, 'which includes smartphones': 985960, 'includes smartphones personal': 431811, 'smartphones personal computer': 775536, 'personal computer and': 652809, 'computer and tablet': 192728, 'and tablet to': 72947, 'tablet to grow': 831534, 'to grow fast': 907028, 'grow fast in': 367024, 'fast in china': 299993, 'in china despite': 421397, 'china despite the': 176604, 'despite the covid': 238875, 'the government restriction': 856596, 'government restriction http': 360545, 'anyone run': 80495, 'paper yet': 641122, 'yet toiletpaper': 1016299, 'anyone run out': 80496, 'toilet paper yet': 921536, 'paper yet toiletpaper': 641123, 'preciousmetals': 669479, 'forbes': 328278, 'trump2020landslide': 934013, 'democratsaredestroyingamerica': 236779, 'continue rising': 201119, 'rising coronavirus': 723186, 'coronavirus upends': 207002, 'upends global': 947515, 'economy gold': 267904, 'silver preciousmetals': 769845, 'preciousmetals forbes': 669480, 'forbes chinavirus': 328282, 'chinavirus trump2020landslide': 177175, 'trump2020landslide maga': 934014, 'maga democratsaredestroyingamerica': 508275, 'price to continue': 676978, 'to continue rising': 903404, 'continue rising coronavirus': 201120, 'rising coronavirus upends': 723187, 'coronavirus upends global': 207003, 'upends global economy': 947516, 'global economy gold': 351897, 'economy gold silver': 267905, 'gold silver preciousmetals': 356009, 'silver preciousmetals forbes': 769846, 'preciousmetals forbes chinavirus': 669481, 'forbes chinavirus trump2020landslide': 328283, 'chinavirus trump2020landslide maga': 177176, 'trump2020landslide maga democratsaredestroyingamerica': 934015, 'violated': 957486, 'disseminating': 246579, 'washington nonprofit': 967782, 'nonprofit ha': 566685, 'ha filed': 370617, 'filed lawsuit': 305404, 'news claiming': 560318, 'claiming the': 179913, 'news station': 560814, 'station it': 796444, 'it parent': 460258, 'parent company': 641608, 'company owner': 190954, 'owner violated': 632591, 'violated the': 957491, 'act acted': 29579, 'acted in': 29837, 'in bad': 420657, 'bad faith': 107852, 'faith by': 296498, 'by disseminating': 152369, 'disseminating false': 246580, 'false information': 297436, 'washington nonprofit ha': 967783, 'nonprofit ha filed': 566686, 'ha filed lawsuit': 370618, 'filed lawsuit against': 305405, 'fox news claiming': 330762, 'news claiming the': 560319, 'claiming the news': 179914, 'the news station': 861630, 'news station it': 560815, 'station it parent': 796445, 'it parent company': 460259, 'parent company owner': 641611, 'company owner violated': 190955, 'owner violated the': 632592, 'violated the state': 957492, 'the state consumer': 867758, 'protection act acted': 685270, 'act acted in': 29580, 'acted in bad': 29838, 'in bad faith': 420658, 'bad faith by': 107853, 'faith by disseminating': 296499, 'by disseminating false': 152370, 'disseminating false information': 246582, 'false information about': 297437, 'information about the': 437715, 'about the novel': 26462, 'lady at': 478740, 'glove but': 352617, 'but had': 145844, 'had her': 373176, 'her one': 392252, 'one hand': 606396, 'hand all': 374737, 'over her': 630276, 'her face': 392032, 'old lady at': 598319, 'lady at the': 478742, 'store wa wearing': 811130, 'wa wearing glove': 963676, 'wearing glove but': 974629, 'glove but had': 352619, 'but had her': 145845, 'had her one': 373178, 'her one hand': 392253, 'one hand all': 606397, 'hand all over': 374738, 'all over her': 43864, 'over her face': 630277, 'theshopritegroup': 881016, 'r150': 695069, 'turnover': 936004, 'regenesysbusinesschool': 707331, 'theshopritegroup the': 881017, 'largest food': 479951, 'southafrica with': 786814, 'with r150': 1000391, 'r150 billion': 695070, 'billion turnover': 130932, 'turnover 30': 936005, '30 market': 17102, 'market share': 517046, 'share is': 755068, 'is appealing': 445789, 'over linked': 630360, 'linked stockpiling': 493983, 'stockpiling regenesysbusinesschool': 804056, 'theshopritegroup the largest': 881018, 'the largest food': 858964, 'largest food retailer': 479954, 'food retailer in': 316224, 'retailer in southafrica': 719204, 'in southafrica with': 428137, 'southafrica with r150': 786815, 'with r150 billion': 1000392, 'r150 billion turnover': 695071, 'billion turnover 30': 130933, 'turnover 30 market': 936006, '30 market share': 17103, 'market share is': 517049, 'share is appealing': 755069, 'is appealing to': 445790, 'appealing to customer': 82108, 'to customer to': 903861, 'customer to only': 222973, 'to only buy': 910966, 'buy what they': 149457, 'wake of concern': 964591, 'of concern over': 581645, 'concern over linked': 193050, 'over linked stockpiling': 630361, 'linked stockpiling regenesysbusinesschool': 493984, 'the flattening': 855394, 'flattening of': 310144, 'curve but': 221836, 'the getting': 856242, 'virus if': 958311, 'if every': 414085, 'every human': 285942, 'being doesn': 125068, 'tested some': 839365, 'people show': 649459, 'show no': 767067, 'symptom showing': 830922, 'showing no': 767485, 'symptom people': 830900, 'store might': 808954, 'symptom some': 830929, 'are positive': 89148, 'get the flattening': 348243, 'the flattening of': 855395, 'flattening of the': 310145, 'of the curve': 590921, 'the curve but': 852687, 'curve but don': 221837, 'but don understand': 145598, 'understand the getting': 940755, 'the getting rid': 856245, 'the virus if': 870844, 'virus if every': 958313, 'if every human': 414087, 'every human being': 285944, 'human being doesn': 410440, 'being doesn get': 125069, 'doesn get tested': 251802, 'get tested some': 348192, 'tested some people': 839366, 'some people show': 783534, 'people show no': 649460, 'show no symptom': 767069, 'no symptom showing': 565662, 'symptom showing no': 830923, 'showing no symptom': 767487, 'no symptom people': 565660, 'symptom people at': 830901, 'grocery store might': 365568, 'store might be': 808955, 'might be showing': 530929, 'be showing no': 117168, 'no symptom some': 565664, 'symptom some are': 830930, 'some are positive': 782324, 'are positive for': 89149, 'monarchy': 536205, 'the shock': 866960, 'of collapsing': 581525, 'collapsing oil': 186143, 'is forcing': 447900, 'the arab': 848843, 'arab monarchy': 83832, 'monarchy to': 536206, 'rethink their': 719658, 'their policy': 874335, 'policy toward': 663530, 'toward immigration': 927131, 'immigration reuters': 417263, 'the shock of': 866964, 'shock of collapsing': 759482, 'of collapsing oil': 581526, 'collapsing oil price': 186144, 'and the pandemic': 73508, 'pandemic is forcing': 635770, 'is forcing the': 447905, 'forcing the arab': 328738, 'the arab monarchy': 848845, 'arab monarchy to': 83833, 'monarchy to rethink': 536207, 'to rethink their': 913468, 'rethink their policy': 719659, 'their policy toward': 874336, 'policy toward immigration': 663531, 'toward immigration reuters': 927132, 'ape': 81436, 'ruled': 727422, 'planetoftheapes': 658429, 'begun the': 123731, 'the ape': 848800, 'ape are': 81437, 'we who': 973826, 'who survive': 989718, 'survive will': 829292, 'on planet': 602809, 'planet ruled': 658419, 'ruled by': 727423, 'by ape': 151874, 'ape we': 81439, 'need massive': 555219, 'massive panic': 520061, 'and riot': 70532, 'riot everyone': 722607, 'everyone take': 287443, 'street social': 813116, 'solution planetoftheapes': 782068, 'everyone panic it': 287252, 'panic it ha': 638238, 'ha begun the': 370000, 'begun the ape': 123732, 'the ape are': 848801, 'ape are taking': 81438, 'are taking over': 90729, 'taking over soon': 833496, 'over soon we': 630636, 'soon we who': 785897, 'we who survive': 973827, 'who survive will': 989719, 'survive will be': 829293, 'will be living': 992540, 'be living on': 115783, 'living on planet': 496432, 'on planet ruled': 602811, 'planet ruled by': 658420, 'ruled by ape': 727424, 'by ape we': 151875, 'ape we need': 81440, 'we need massive': 972514, 'need massive panic': 555220, 'massive panic and': 520062, 'panic and riot': 637333, 'and riot everyone': 70533, 'riot everyone take': 722608, 'everyone take to': 287447, 'take to the': 832744, 'the street social': 868250, 'street social distancing': 813117, 'distancing is not': 247252, 'not the solution': 572031, 'the solution planetoftheapes': 867465, 'judith': 467691, 'schwartz': 742071, 'and judith': 65687, 'judith schwartz': 467692, 'schwartz explains': 742072, 'exposing about': 292919, 'fix it': 309731, 'and judith schwartz': 65688, 'judith schwartz explains': 467693, 'schwartz explains what': 742073, 'explains what covid': 292249, 'is exposing about': 447664, 'exposing about our': 292920, 'about our food': 25891, 'supply and what': 824765, 'and what we': 75495, 'do to fix': 250386, 'to fix it': 905990, 'consumerpr': 199730, 'crisispr': 218477, 'prtips': 687350, 'crisis new': 217751, 'new insight': 558940, 'insight on': 439603, '19 pr': 9769, 'pr consumerpr': 668420, 'consumerpr crisispr': 199731, 'crisispr consumerbehavior': 218478, 'consumerbehavior prtips': 199622, 'coronavirus crisis new': 205762, 'crisis new insight': 217752, 'new insight on': 558942, 'insight on the': 439609, 'covid 19 pr': 213600, '19 pr consumerpr': 9770, 'pr consumerpr crisispr': 668421, 'consumerpr crisispr consumerbehavior': 199732, 'crisispr consumerbehavior prtips': 218479, '12yrs': 3147, 'born': 135550, 'that 12yrs': 842433, '12yrs ago': 3148, 'ago for': 38381, 'reason unknown': 703046, 'unknown over': 942529, 'period 90': 651703, '90 more': 23313, 'more boy': 538732, 'boy than': 137288, 'than girl': 840693, 'girl were': 350292, 'were born': 979381, 'born again': 135551, 'again gov': 37008, 'gov and': 359530, 'medium attempting': 527011, 'turn people': 935750, 'people against': 646787, 'against each': 37423, 'other claim': 619952, 'claim corona': 179715, 'corona hoarding': 203995, 'shortage false': 764946, 'false toiletpaper': 297464, 'been confirmed that': 120868, 'confirmed that 12yrs': 194193, 'that 12yrs ago': 842434, '12yrs ago for': 3149, 'ago for reason': 38386, 'for reason unknown': 325007, 'reason unknown over': 703047, 'unknown over month': 942530, 'over month period': 630410, 'month period 90': 537957, 'period 90 more': 651704, '90 more boy': 23314, 'more boy than': 538733, 'boy than girl': 137289, 'than girl were': 840694, 'girl were born': 350293, 'were born again': 979382, 'born again gov': 135552, 'again gov and': 37009, 'gov and medium': 359531, 'and medium attempting': 66919, 'medium attempting to': 527012, 'attempting to turn': 102294, 'to turn people': 917848, 'turn people against': 935751, 'people against each': 646788, 'against each other': 37424, 'each other claim': 264163, 'other claim corona': 619953, 'claim corona hoarding': 179716, 'corona hoarding is': 203996, 'hoarding is to': 399397, 'is to blame': 453183, 'blame for toilet': 132260, 'paper shortage false': 640772, 'shortage false toiletpaper': 764947, 'now addicted': 573942, 'shopping thanks': 764073, 'thanks covid': 842036, 'am now addicted': 50261, 'now addicted to': 573943, 'addicted to online': 31628, 'online shopping thanks': 609301, 'shopping thanks covid': 764074, 'thanks covid 19': 842037, '2002': 13564, 'qe': 691530, 'relaunched': 708795, 'resumption': 717770, 'bernanke': 127365, 'yellen': 1015240, 'speed at': 788428, 'at which': 101543, 'is unfolding': 453492, 'unfolding is': 941522, 'incredible global': 433836, 'recession stock': 704367, '30 lowest': 17096, 'lowest oil': 506191, 'since 2002': 770435, '2002 fed': 13571, 'fed rate': 301879, 'rate at': 697163, 'at zero': 101700, 'zero qe': 1027483, 'qe relaunched': 691536, 'relaunched resumption': 708798, 'resumption of': 717771, 'emergency measure': 272792, 'measure from': 525202, 'from 2008': 334232, '2008 bernanke': 13645, 'bernanke yellen': 127368, 'yellen call': 1015241, 'for corporate': 320402, 'corporate debt': 207258, 'debt buyback': 230429, 'the speed at': 867560, 'speed at which': 788429, 'at which the': 101547, 'which the shock': 986380, 'the shock is': 866962, 'shock is unfolding': 759467, 'is unfolding is': 453493, 'unfolding is incredible': 941523, 'is incredible global': 448877, 'incredible global recession': 433837, 'global recession stock': 352163, 'recession stock down': 704368, 'stock down 30': 802056, 'down 30 lowest': 256410, '30 lowest oil': 17097, 'lowest oil price': 506192, 'oil price since': 597257, 'price since 2002': 676413, 'since 2002 fed': 770437, '2002 fed rate': 13572, 'fed rate at': 301880, 'rate at zero': 697165, 'at zero qe': 101701, 'zero qe relaunched': 1027484, 'qe relaunched resumption': 691538, 'relaunched resumption of': 708799, 'resumption of emergency': 717774, 'of emergency measure': 583042, 'emergency measure from': 272795, 'measure from 2008': 525203, 'from 2008 bernanke': 334234, '2008 bernanke yellen': 13646, 'bernanke yellen call': 127369, 'yellen call for': 1015242, 'call for corporate': 155860, 'for corporate debt': 320404, 'corporate debt buyback': 207259, 'see company': 745003, 'company raising': 190996, 'and profiteering': 69605, 'crisis report': 217964, 'to here': 907713, 'you see company': 1021029, 'see company raising': 745004, 'company raising price': 190997, 'raising price and': 696107, 'price and profiteering': 672506, 'and profiteering from': 69606, 'from the crisis': 337660, 'the crisis report': 852441, 'crisis report it': 217965, 'it to here': 461724, 'of publicly': 588594, 'traded company': 928628, 'company hit': 190753, 'the plummet': 863856, 'plummet and': 661256, 'fear grow': 301149, 'grow about': 367002, 'economic damage': 267042, 'damage it': 225207, 'could cause': 208997, 'cause private': 167710, 'private equity': 678900, 'equity firm': 279935, 'and activist': 57639, 'activist investor': 30347, 'buy into': 148828, 'and delay': 61066, 'delay change': 232689, 'change force': 172058, 'the stock price': 867921, 'stock price of': 802738, 'price of publicly': 675548, 'of publicly traded': 588595, 'publicly traded company': 688608, 'traded company hit': 928629, 'company hit hard': 190754, 'by the plummet': 154409, 'the plummet and': 863857, 'plummet and fear': 661258, 'and fear grow': 62738, 'fear grow about': 301150, 'grow about the': 367004, 'about the economic': 26382, 'the economic damage': 853899, 'economic damage it': 267047, 'damage it could': 225208, 'it could cause': 457355, 'could cause private': 209003, 'cause private equity': 167711, 'private equity firm': 678901, 'equity firm and': 279936, 'firm and activist': 308306, 'and activist investor': 57640, 'activist investor are': 30348, 'investor are planning': 444109, 'planning to buy': 658583, 'to buy into': 902251, 'buy into the': 148830, 'into the company': 443108, 'the company and': 851310, 'company and delay': 190377, 'and delay change': 61068, 'delay change force': 232690, 'medicate': 526610, 'cocktail': 185232, 'refugee often': 706851, 'often self': 596270, 'self diagnose': 747604, 'or medicate': 616108, 'medicate rather': 526611, 'than seek': 841121, 'seek medical': 746588, 'medical attention': 526058, 'attention due': 102437, 'and lack': 65923, 'affordable help': 34851, 'help said': 390475, 'said an': 730967, 'an aid': 55203, 'aid worker': 39485, 'anonymity it': 77445, 'bad cocktail': 107808, 'cocktail that': 185247, 'sure refugee': 827663, 'refugee often self': 706852, 'often self diagnose': 596271, 'self diagnose or': 747605, 'diagnose or medicate': 240218, 'or medicate rather': 616109, 'medicate rather than': 526612, 'rather than seek': 697548, 'than seek medical': 841122, 'seek medical attention': 746590, 'medical attention due': 526059, 'attention due to': 102438, 'to fear of': 905699, 'fear of high': 301240, 'of high cost': 584610, 'high cost and': 394972, 'cost and lack': 207859, 'and lack of': 65924, 'lack of information': 478629, 'of information on': 585195, 'information on where': 437929, 'on where to': 605269, 'where to get': 985306, 'get affordable help': 346506, 'affordable help said': 34852, 'help said an': 390476, 'said an aid': 730968, 'an aid worker': 55204, 'aid worker on': 39486, 'worker on condition': 1007487, 'of anonymity it': 580230, 'anonymity it bad': 77446, 'it bad cocktail': 456685, 'bad cocktail that': 107810, 'cocktail that for': 185248, 'that for sure': 843937, 'for sure refugee': 326075, 'supermarket anyone': 819127, 'anyone need': 80419, 'anything yes': 80955, 'yes it': 1015465, 'no not': 564884, 'not telling': 571950, 'telling you': 837295, 'you where': 1022283, 'where am': 984722, 'am shopping': 50391, 'just in the': 469049, 'the supermarket anyone': 868463, 'supermarket anyone need': 819129, 'anyone need anything': 80420, 'need anything yes': 554465, 'anything yes it': 80956, 'yes it well': 1015468, 'it well stocked': 462308, 'stocked and no': 803264, 'and no not': 67627, 'no not telling': 564887, 'not telling you': 571953, 'telling you where': 837301, 'you where am': 1022284, 'where am shopping': 984726, 'buying dog': 150200, 'food well': 317541, 'well come': 978110, 'others there': 621709, 'of do': 582744, 'other pet': 620709, 'pet go': 653407, 'hungry because': 411225, 'hoard bag': 398763, 'think do': 885208, 'panic buying dog': 637708, 'buying dog food': 150201, 'dog food well': 252096, 'food well come': 317542, 'well come on': 978111, 'come on think': 187449, 'on think of': 604596, 'of others there': 587407, 'others there is': 621710, 'enough for all': 277429, 'all of do': 43684, 'of do not': 582746, 'not make other': 570501, 'make other pet': 510285, 'other pet go': 620711, 'pet go hungry': 653408, 'go hungry because': 353689, 'hungry because you': 411228, 'because you want': 119880, 'want to hoard': 966050, 'to hoard bag': 907866, 'hoard bag of': 398764, 'of food please': 583750, 'food please think': 315871, 'please think do': 660672, 'think do not': 885209, 'not be selfish': 568450, 'cashew': 166416, 'cashew export': 166417, 'export hit': 292649, '30 since': 17218, 'since february': 770587, 'february india': 301727, 'cashew export hit': 166418, 'export hit by': 292650, 'hit by covid': 398176, '19 price down': 9809, 'price down by': 673519, 'down by over': 256601, 'by over 30': 153497, 'over 30 since': 629821, '30 since february': 17219, 'since february india': 770590, 'dhs': 240130, 'leaked': 483858, 'fema dhs': 303484, 'dhs food': 240133, 'shortage timeline': 765269, 'timeline leaked': 898471, 'leaked china': 483859, 'china food': 176659, 'panic have': 638162, 'fema dhs food': 303485, 'dhs food shortage': 240134, 'food shortage timeline': 316613, 'shortage timeline leaked': 765270, 'timeline leaked china': 898472, 'leaked china food': 483860, 'china food buying': 176660, 'food buying panic': 313853, 'buying panic have': 150867, 'coloradan': 186760, 'denver news': 237127, 'news ag': 560195, 'ag warns': 36854, 'warns coloradan': 967255, 'coloradan about': 186761, 'denver news ag': 237128, 'news ag warns': 560197, 'ag warns coloradan': 36855, 'warns coloradan about': 967256, 'coloradan about coronavirus': 186762, 'better protected': 128432, 'protected in': 685141, 'the busiest': 850153, 'busiest area': 143179, 'testing center': 839468, 'center clean': 169169, 'shopper are better': 761384, 'are better protected': 84957, 'better protected in': 128433, 'protected in the': 685142, 'in the busiest': 429041, 'the busiest area': 850154, 'busiest area of': 143180, 'checkout we have': 175051, 'we have just': 971848, 'have just received': 381208, 'antimicrobial testing center': 78537, 'testing center clean': 839469, 'center clean supermarket': 169170, 'trouble finding': 932607, 'video is': 956787, 'having trouble finding': 384387, 'trouble finding toilet': 932609, 'paper at the': 639904, 'the store this': 868124, 'store this video': 810705, 'this video is': 890982, 'video is just': 956789, 'is just what': 449156, 'just what you': 470291, 'you need 19': 1019960, 'need 19 toiletpaper': 554337, 'ecological': 266680, 'obesity': 578362, 'just these': 470028, 'these politics': 880504, 'politics have': 663786, 'have delayed': 380218, 'delayed the': 232814, 'necessary response': 554063, 'climate breakdown': 182185, 'breakdown ecological': 138837, 'ecological collapse': 266681, 'collapse air': 185955, 'water pollution': 969119, 'pollution obesity': 663910, 'obesity and': 578365, 'they appear': 881176, 'the effective': 854075, 'effective containment': 269236, 'containment of': 200610, 'just these politics': 470030, 'these politics have': 880505, 'politics have delayed': 663787, 'have delayed the': 380223, 'delayed the necessary': 232816, 'the necessary response': 861379, 'necessary response to': 554064, 'response to climate': 715834, 'to climate breakdown': 902842, 'climate breakdown ecological': 182186, 'breakdown ecological collapse': 138838, 'ecological collapse air': 266682, 'collapse air and': 185956, 'air and water': 39687, 'and water pollution': 75250, 'water pollution obesity': 969120, 'pollution obesity and': 663911, 'obesity and consumer': 578368, 'and consumer debt': 60370, 'consumer debt so': 197088, 'debt so they': 230563, 'so they appear': 778463, 'they appear to': 881177, 'to have delayed': 907228, 'delayed the effective': 232815, 'the effective containment': 854076, 'effective containment of': 269237, 'containment of covid': 200611, 'harassed': 377813, 'quarantinechronicles': 692800, 'crazypeople': 215495, 'even hang': 284157, 'own house': 632069, 'without getting': 1002679, 'getting harassed': 349021, 'harassed for': 377818, 'toiletpaper by': 921839, 'by random': 153721, 'random stranger': 696621, 'stranger be': 812459, 'there folk': 878394, 'folk ugh': 312285, 'ugh quarantine': 938026, 'quarantine quarantinechronicles': 692468, 'quarantinechronicles crazypeople': 692801, 'cannot even hang': 161795, 'even hang out': 284158, 'hang out in': 376936, 'out in front': 626379, 'of your own': 593506, 'your own house': 1025146, 'own house without': 632071, 'house without getting': 406699, 'without getting harassed': 1002682, 'getting harassed for': 349022, 'harassed for toiletpaper': 377819, 'for toiletpaper by': 327255, 'toiletpaper by random': 921840, 'by random stranger': 153722, 'random stranger be': 696622, 'stranger be safe': 812460, 'out there folk': 627480, 'there folk ugh': 878396, 'folk ugh quarantine': 312286, 'ugh quarantine quarantinechronicles': 938027, 'quarantine quarantinechronicles crazypeople': 692469, 'will you be': 995379, 'you be wearing': 1017404, 'be wearing mask': 118077, 'glove to the': 352978, 'handrail': 376438, 'not touch': 572231, 'face be': 294328, 'careful of': 164414, 'key cell': 473239, 'phone atm': 654899, 'atm and': 101915, 'store pin': 809566, 'pad paper': 633781, 'money door': 536713, 'handle handrail': 376201, 'handrail elevator': 376439, 'button common': 148205, 'common surface': 189476, 'surface gym': 828030, 'gym weight': 369360, 'hand and do': 374757, 'do not touch': 249872, 'not touch your': 572236, 'your face be': 1023743, 'face be careful': 294329, 'be careful of': 113991, 'careful of key': 164415, 'of key cell': 585611, 'key cell phone': 473240, 'cell phone atm': 168958, 'phone atm and': 654901, 'atm and grocery': 101916, 'grocery store pin': 365661, 'store pin pad': 809567, 'pin pad paper': 656777, 'pad paper money': 633782, 'paper money door': 640473, 'money door handle': 536714, 'door handle handrail': 255607, 'handle handrail elevator': 376202, 'handrail elevator button': 376440, 'elevator button common': 271376, 'button common surface': 148206, 'common surface gym': 189477, 'surface gym weight': 828031, 'justified': 470459, 'your pub': 1025467, 'pub open': 687741, 'not justified': 570268, 'justified tim': 470460, 'tim martin': 896161, 'martin don': 518098, 'think shutting': 885543, 'shutting pub': 768289, 'pub restaurant': 687756, 'restaurant down': 716432, 'down is': 256885, 'is sensible': 451776, 'sensible policy': 750646, 'policy think': 663520, 'it over': 460204, 'keeping your pub': 472640, 'your pub open': 1025468, 'pub open is': 687742, 'open is not': 612333, 'is not justified': 450118, 'not justified tim': 570269, 'justified tim martin': 470461, 'tim martin don': 896163, 'martin don think': 518099, 'don think shutting': 253981, 'think shutting pub': 885544, 'shutting pub restaurant': 768290, 'pub restaurant down': 687758, 'restaurant down is': 716433, 'down is sensible': 256888, 'is sensible policy': 451778, 'sensible policy think': 750647, 'policy think it': 663521, 'think it over': 885348, 'it over the': 460211, 'over the top': 630779, 'sillah': 769742, 'be killed': 115602, 'killed with': 474619, 'or soap': 617133, 'soap this': 779126, 'why hate': 991049, 'hate science': 378902, 'science sillah': 742137, 'is no cure': 449919, 'no cure for': 563946, 'cure for virus': 220749, 'for virus that': 327580, 'virus that can': 958871, 'can be killed': 157636, 'be killed with': 115604, 'killed with hand': 474621, 'sanitizer or soap': 735494, 'or soap this': 617135, 'soap this is': 779127, 'is why hate': 453963, 'why hate science': 991050, 'hate science sillah': 378903, 'detox': 239482, 'phoneaddiction': 655076, 'digitaldetox': 242711, 'lockdown how': 499475, 'beat your': 118587, 'smartphone addiction': 775512, 'addiction it': 31642, 'digital detox': 242550, 'detox phoneaddiction': 239485, 'phoneaddiction digitaldetox': 655077, 'coronavirus lockdown how': 206246, 'lockdown how to': 499478, 'to beat your': 901660, 'beat your smartphone': 118588, 'your smartphone addiction': 1025840, 'smartphone addiction it': 775513, 'addiction it time': 31643, 'time for digital': 896701, 'for digital detox': 320709, 'digital detox phoneaddiction': 242551, 'detox phoneaddiction digitaldetox': 239486, 'bame': 109146, 'live the': 496046, 'majority are': 509530, 'are white': 91624, 'white british': 987827, 'british we': 140618, 'all queue': 44109, 'queue meter': 693992, 'meter apart': 529684, 'our distance': 622770, 'we stay': 973384, 'any asian': 78943, 'asian community': 95262, 'uk but': 938229, 'affecting bame': 34487, 'bame people': 109149, 'people more': 648784, 'more because': 538709, 'it racist': 460591, 'racist virus': 695332, 'virus yes': 959073, 'that right': 846048, 'where live the': 984992, 'live the majority': 496050, 'the majority are': 859941, 'majority are white': 509531, 'are white british': 91625, 'white british we': 987829, 'british we all': 140619, 'we all queue': 970354, 'all queue meter': 44111, 'queue meter apart': 693993, 'meter apart we': 529692, 'apart we keep': 81366, 'we keep our': 972132, 'keep our distance': 471729, 'our distance in': 622771, 'supermarket we stay': 823755, 'we stay at': 973385, 'home this could': 402288, 'could be any': 208843, 'be any asian': 113644, 'any asian community': 78944, 'asian community in': 95263, 'community in the': 189919, 'the uk but': 870199, 'uk but covid': 938230, '19 is affecting': 7928, 'is affecting bame': 445379, 'affecting bame people': 34488, 'bame people more': 109150, 'people more because': 648786, 'more because it': 538710, 'because it racist': 119201, 'it racist virus': 460593, 'racist virus yes': 695334, 'virus yes that': 959074, 'yes that right': 1015545, 'one drop': 606215, 'germ of': 346134, 'germ be': 346102, 'one drop of': 606216, 'drop of sanitizer': 260324, 'of sanitizer kill': 589295, 'sanitizer kill 99': 735255, 'of germ of': 584098, 'germ of germ': 346135, 'of germ be': 584095, 'germ be like': 346103, 'krg': 477661, 'reform': 706706, 'longterm': 502137, 'baghdad': 108536, 'the downfall': 853627, 'downfall of': 257542, 'negative impact': 556786, 'impact ha': 417689, 'already left': 47504, 'the krg': 858862, 'krg economy': 477664, 'economy well': 268334, 'the failure': 854848, 'failure of': 296281, 'krg to': 477672, 'bring about': 139917, 'about needed': 25783, 'needed economic': 556343, 'economic reform': 267241, 'reform amp': 706707, 'amp tackling': 54612, 'tackling corruption': 831640, 'corruption amp': 207687, 'no authentic': 563636, 'authentic amp': 103612, 'amp longterm': 54083, 'longterm agreement': 502138, 'agreement baghdad': 38770, 'baghdad main': 108537, 'main cause': 508726, 'cause for': 167569, 'new crisis': 558569, 'the downfall of': 853628, 'downfall of oil': 257543, 'the negative impact': 861418, 'negative impact ha': 556788, 'impact ha already': 417690, 'ha already left': 369513, 'already left on': 47505, 'on the krg': 604198, 'the krg economy': 858863, 'krg economy well': 477665, 'economy well the': 268336, 'well the failure': 978657, 'the failure of': 854849, 'failure of the': 296285, 'of the krg': 591168, 'the krg to': 858864, 'krg to bring': 477673, 'to bring about': 902028, 'bring about needed': 139918, 'about needed economic': 25784, 'needed economic reform': 556344, 'economic reform amp': 267242, 'reform amp tackling': 706708, 'amp tackling corruption': 54613, 'tackling corruption amp': 831641, 'corruption amp no': 207688, 'amp no authentic': 54181, 'no authentic amp': 563637, 'authentic amp longterm': 103613, 'amp longterm agreement': 54084, 'longterm agreement baghdad': 502139, 'agreement baghdad main': 38771, 'baghdad main cause': 108538, 'main cause for': 508727, 'cause for the': 167571, 'for the new': 326580, 'the new crisis': 861487, 'adverse': 33124, 'have adverse': 379135, 'adverse impact': 33125, 'on sugar': 603739, 'sugar consumption': 817439, 'consumption price': 199931, 'price sugar': 676702, '19 outbreak to': 9201, 'outbreak to have': 628759, 'to have adverse': 907195, 'have adverse impact': 379136, 'adverse impact on': 33127, 'impact on sugar': 417892, 'on sugar consumption': 603740, 'sugar consumption price': 817441, 'consumption price sugar': 199932, 'steepen': 799402, 'the log': 859652, 'log graph': 500611, 'graph continues': 362144, 'to steepen': 915379, 'steepen that': 799403, 'more lockdown': 539717, 'suffer and': 817190, 'might plummet': 531103, 'plummet 19': 661244, 'if the log': 414996, 'the log graph': 859653, 'log graph continues': 500612, 'graph continues to': 362145, 'continues to steepen': 201499, 'to steepen that': 915380, 'steepen that when': 799404, 'that when there': 847495, 'when there will': 984235, 'be more lockdown': 115983, 'more lockdown in': 539718, 'lockdown in country': 499500, 'in country and': 421822, 'country and business': 210436, 'and business will': 59307, 'business will suffer': 144690, 'will suffer and': 995020, 'suffer and stock': 817192, 'and stock price': 72415, 'stock price might': 802734, 'price might plummet': 675245, 'might plummet 19': 531104, 'gas for': 343854, 'for 48': 318850, '48 not': 19319, 'telling all': 837180, 'all where': 45443, 'where because': 984755, 'because see': 119532, 'just got gas': 468855, 'got gas for': 358579, 'gas for 48': 343855, 'for 48 not': 318853, '48 not telling': 19320, 'not telling all': 571951, 'telling all where': 837182, 'all where because': 45444, 'where because see': 984756, 'because see how': 119533, 'see how you': 745260, 'how you did': 409279, 'you did with': 1018202, 'did with the': 240909, 'with the toiletpaper': 1001521, 'grocerydelivery': 366206, 'retailstore': 719544, 'amazon went': 51192, 'from convenient': 334992, 'convenient to': 202425, 'what cost': 981262, 'cost via': 208149, 'news pandemic': 560686, 'pandemic amazonfresh': 634833, 'amazonfresh walmart': 51232, 'walmart grocerydelivery': 965341, 'grocerydelivery retailstore': 366215, 'retailstore closure': 719545, 'amazon went from': 51193, 'went from convenient': 979013, 'from convenient to': 334993, 'convenient to essential': 202427, 'to essential during': 905256, 'during the at': 263088, 'the at what': 849005, 'at what cost': 101521, 'what cost via': 981263, 'cost via news': 208150, 'via news pandemic': 956103, 'news pandemic amazonfresh': 560687, 'pandemic amazonfresh walmart': 634834, 'amazonfresh walmart grocerydelivery': 51233, 'walmart grocerydelivery retailstore': 965342, 'grocerydelivery retailstore closure': 366216, 'astonishing': 97234, 'the spirit': 867582, 'spirit of': 789490, 'staff is': 792572, 'absolutely astonishing': 27321, 'astonishing please': 97235, 'rt if': 726772, 're proud': 699322, 'proud we': 686066, 'will beat': 992781, 'the spirit of': 867584, 'spirit of nh': 789493, 'nh staff is': 562094, 'staff is absolutely': 792573, 'is absolutely astonishing': 445291, 'absolutely astonishing please': 27322, 'astonishing please rt': 97236, 'please rt if': 660430, 'rt if you': 726774, 'you re proud': 1020713, 're proud we': 699324, 'proud we will': 686067, 'we will beat': 973836, 'will beat this': 992783, 'kalady': 470693, 'kalady student': 470694, 'student develop': 814674, 'develop low': 239649, 'cost hand': 207960, 'kalady student develop': 470695, 'student develop low': 814675, 'develop low cost': 239650, 'low cost hand': 505213, 'cost hand sanitizer': 207961, 'coop': 203095, 'impossible don': 419368, 'don leave': 253683, 'home use': 402409, 'medicine or': 526856, 'other necessity': 620566, 'necessity except': 554204, 'except that': 289228, 'delivery system': 234595, 'closed ocado': 183252, 'ocado etc': 578892, 'etc so': 282754, 'so had': 777228, 'into packed': 442833, 'packed little': 633619, 'little coop': 495300, 'impossible don leave': 419369, 'don leave home': 253685, 'leave home use': 484825, 'home use online': 402412, 'use online shopping': 949448, 'shopping for delivery': 762670, 'for delivery of': 320640, 'of food medicine': 583732, 'food medicine or': 315446, 'medicine or other': 526859, 'or other necessity': 616438, 'other necessity except': 620569, 'necessity except that': 554205, 'except that all': 289229, 'that all delivery': 842541, 'all delivery system': 42548, 'delivery system are': 234596, 'system are closed': 831114, 'are closed ocado': 85357, 'closed ocado etc': 183253, 'ocado etc so': 578893, 'etc so had': 282755, 'so had to': 777231, 'go into packed': 353761, 'into packed little': 442834, 'packed little coop': 633620, 'easy solution': 265760, 'buying close': 150117, 'close supermarket': 182818, 'park except': 641902, 'for blue': 319700, 'blue badge': 133435, 'badge owner': 108128, 'owner coronacrisis': 632434, 'easy solution to': 265761, 'solution to stop': 782113, 'panic buying close': 637679, 'buying close supermarket': 150118, 'close supermarket car': 182819, 'car park except': 163218, 'park except for': 641903, 'except for blue': 289151, 'for blue badge': 319701, 'blue badge owner': 133436, 'badge owner coronacrisis': 108129, 'join for': 466708, 'latest insight': 481404, 'virus we': 959005, 'provide an': 686221, 'current cannabis': 221114, 'cannabis market': 161421, 'market condition': 516204, 'condition sale': 193520, 'sale trend': 732602, 'trend unique': 931494, 'unique market': 941988, 'factor consumer': 295876, 'consumer response': 198784, 'response behavior': 715632, 'join for an': 466709, 'for an update': 319309, 'on the latest': 604205, 'the latest insight': 859120, 'latest insight and': 481405, 'insight and the': 439510, 'and the overall': 73506, '19 virus we': 11845, 'virus we will': 959011, 'we will provide': 973893, 'will provide an': 994507, 'provide an update': 686224, 'update on current': 947112, 'on current cannabis': 600184, 'current cannabis market': 221115, 'cannabis market condition': 161422, 'market condition sale': 516208, 'condition sale trend': 193521, 'sale trend unique': 732603, 'trend unique market': 931495, 'unique market factor': 941989, 'market factor consumer': 516371, 'factor consumer response': 295877, 'consumer response behavior': 198785, 'response behavior change': 715633, 'behavior change and': 123960, 'change and more': 171919, 'yup': 1027112, 'marketingconsultant': 517766, 'internetmarketing': 442063, 'mondaywisdom': 536520, 'newweek': 561157, 'yup pretty': 1027119, 'much still': 545320, 'it lol': 459449, 'lol marketing': 500926, 'marketing marketingconsultant': 517643, 'marketingconsultant digitalmarketing': 517767, 'digitalmarketing internetmarketing': 242776, 'internetmarketing socialmedia': 442064, 'socialmedia mondaywisdom': 781091, 'mondaywisdom mondaymotivation': 536521, 'mondaymotivation monday': 536467, 'monday newweek': 536339, 'newweek quarantineandchill': 561160, 'quarantineandchill toiletpaper': 692774, 'toiletpaper hoarding': 922073, 'yup pretty much': 1027120, 'pretty much still': 671462, 'much still do': 545321, 'not get it': 569594, 'get it lol': 347414, 'it lol marketing': 459450, 'lol marketing marketingconsultant': 500927, 'marketing marketingconsultant digitalmarketing': 517644, 'marketingconsultant digitalmarketing internetmarketing': 517768, 'digitalmarketing internetmarketing socialmedia': 242777, 'internetmarketing socialmedia mondaywisdom': 442065, 'socialmedia mondaywisdom mondaymotivation': 781092, 'mondaywisdom mondaymotivation monday': 536522, 'mondaymotivation monday newweek': 536468, 'monday newweek quarantineandchill': 536341, 'newweek quarantineandchill toiletpaper': 561161, 'quarantineandchill toiletpaper hoarding': 692775, 'civility': 179580, 'what desperately': 981313, 'desperately needed': 238577, 'needed from': 556367, 'our biz': 622218, 'biz leadership': 131941, 'leadership are': 483585, 'are effort': 86084, 'behave with': 123802, 'respect civility': 714972, 'civility and': 179581, 'and consideration': 60319, 'clerk and': 181635, 'other front': 620278, 'what desperately needed': 981314, 'desperately needed from': 238578, 'needed from our': 556368, 'from our biz': 336758, 'our biz leadership': 622219, 'biz leadership are': 131942, 'leadership are effort': 483586, 'are effort to': 86085, 'effort to remind': 269642, 'remind the public': 710508, 'the public to': 864862, 'public to behave': 688372, 'to behave with': 901727, 'behave with respect': 123803, 'with respect civility': 1000481, 'respect civility and': 714973, 'civility and consideration': 179582, 'and consideration for': 60321, 'consideration for grocery': 195248, 'store clerk and': 806994, 'clerk and other': 181640, 'and other front': 68332, 'other front line': 620279, 'line worker say': 493606, 'worker say on': 1007739, 'competition commission': 191685, 'ha set': 371867, 'up team': 946128, 'team to': 835800, 'investigate complaint': 443799, 'complaint after': 191934, 'government published': 360499, 'published regulation': 688688, 'regulation against': 708040, 'many complaint': 513923, 'complaint about': 191923, 'food health': 314800, 'and hygiene': 64901, 'the competition commission': 851378, 'competition commission say': 191690, 'it ha set': 458412, 'ha set up': 371872, 'set up team': 753581, 'up team to': 946129, 'team to investigate': 835805, 'to investigate complaint': 908491, 'investigate complaint after': 443800, 'complaint after the': 191936, 'after the government': 36318, 'the government published': 856590, 'government published regulation': 360500, 'published regulation against': 688689, 'regulation against price': 708042, 'gouging in light': 359346, 'the outbreak many': 862662, 'outbreak many complaint': 628438, 'many complaint about': 513924, 'complaint about the': 191933, 'about the increase': 26422, 'of food health': 583705, 'food health and': 314801, 'health and hygiene': 386144, 'and hygiene product': 64907, 'there dont': 878336, 'it shelterinplace': 461013, 'shelterinplace pandemic': 758011, 'store worker out': 811552, 'out there dont': 627477, 'there dont know': 878337, 'dont know how': 255241, 'know how you': 476466, 'how you do': 409280, 'you do it': 1018257, 'do it shelterinplace': 249510, 'it shelterinplace pandemic': 461014, 'limbo': 492246, 'the limbo': 859378, 'limbo dance': 492247, 'dance of': 225566, 'coronavirus may': 206269, 'send the': 749960, 'national average': 552422, 'average to': 104904, '30 per': 17183, 'gallon here': 343017, 'the limbo dance': 859379, 'limbo dance of': 492248, 'dance of oil': 225567, 'the coronavirus may': 851879, 'coronavirus may send': 206274, 'may send the': 521490, 'send the national': 749965, 'the national average': 861285, 'national average to': 552425, 'average to 30': 104905, 'to 30 per': 899672, '30 per gallon': 17187, 'per gallon here': 650848, 'gallon here why': 343018, 'we try': 973581, 'thing including': 884446, 'including buying': 431899, 'online unfortunately': 609647, 'unfortunately all': 941573, 'but one': 146664, 'one attempt': 605975, 'attempt ended': 102220, 'ended in': 276130, 'in failure': 422772, 'failure the': 296292, 'required product': 713382, 'available there': 104622, 'no available': 563646, 'slot we': 774292, 'were close': 979446, 'to tonight': 917631, 'but nope': 146520, 'nope corona': 566899, 'we try to': 973582, 'try to do': 934618, 'can to do': 160006, 'right thing including': 722312, 'thing including buying': 884447, 'including buying grocery': 431900, 'buying grocery online': 150416, 'grocery online unfortunately': 364789, 'online unfortunately all': 609648, 'unfortunately all but': 941574, 'all but one': 42254, 'but one attempt': 146666, 'one attempt ended': 605976, 'attempt ended in': 102221, 'ended in failure': 276131, 'in failure the': 422773, 'failure the required': 296293, 'the required product': 865557, 'required product are': 713383, 'product are not': 680944, 'not available there': 568307, 'available there are': 104623, 'are no available': 88242, 'no available delivery': 563648, 'available delivery slot': 104317, 'delivery slot we': 234547, 'slot we were': 774295, 'we were close': 973784, 'were close to': 979448, 'close to tonight': 182920, 'to tonight but': 917632, 'tonight but nope': 924386, 'but nope corona': 146521, 'nope corona virus': 566900, 'when restock': 983943, 'restock of': 716885, 'of wipe': 593194, 'and spray': 72136, 'spray is': 790301, 'anyone know when': 80405, 'know when restock': 477003, 'when restock of': 983944, 'restock of wipe': 716886, 'of wipe and': 593195, 'sanitizer and spray': 734437, 'and spray is': 72137, 'spray is coming': 790302, 'equivalent': 279976, 'million ton': 532394, 'is thrown': 453147, 'away each': 105826, 'each year': 264339, 'uk 70': 938148, 'is edible': 447439, 'edible stop': 268561, 'doing that': 252703, 'the equivalent': 854464, 'equivalent of': 279983, 'of putting': 588626, 'others stopstockpiling': 621668, 'million ton of': 532395, 'of food is': 583721, 'food is thrown': 315158, 'is thrown away': 453148, 'thrown away each': 895131, 'away each year': 105827, 'each year in': 264342, 'year in the': 1014657, 'the uk 70': 870186, 'uk 70 of': 938149, '70 of that': 21806, 'of that is': 590729, 'that is edible': 844579, 'is edible stop': 447440, 'edible stop doing': 268562, 'stop doing that': 804618, 'doing that now': 252707, 'that now and': 845417, 'now and it': 574040, 'and it the': 65590, 'it the equivalent': 461532, 'the equivalent of': 854466, 'equivalent of putting': 279992, 'of putting it': 588628, 'putting it on': 691157, 'it on supermarket': 460060, 'shelf for others': 757095, 'for others stopstockpiling': 324200, 'slayer': 773729, 'flickr': 310412, 'paper slayer': 640783, 'slayer flickr': 773730, 'flickr toiletpaper': 310413, 'toilet paper slayer': 921453, 'paper slayer flickr': 640784, 'slayer flickr toiletpaper': 773731, 'prosecution': 684655, 'prosecuted': 684631, 'it involves': 458842, 'involves lone': 444378, 'lone bad': 501277, 'actor coughing': 30574, 'coughing in': 208689, 'store prosecution': 809685, 'prosecution under': 684660, 'under federal': 940084, 'federal anti': 301953, 'anti terrorism': 78331, 'terrorism law': 838610, 'law would': 482456, 'be excessive': 114718, 'excessive they': 289424, 'be prosecuted': 116572, 'prosecuted but': 684636, 'but state': 147143, 'state law': 795726, 'local law': 498144, 'enforcement already': 276739, 'the tool': 869765, 'if it involves': 414312, 'it involves lone': 458843, 'involves lone bad': 444379, 'lone bad actor': 501278, 'bad actor coughing': 107745, 'actor coughing in': 30575, 'coughing in grocery': 208690, 'grocery store prosecution': 365685, 'store prosecution under': 809686, 'prosecution under federal': 684661, 'under federal anti': 940085, 'federal anti terrorism': 301954, 'anti terrorism law': 78333, 'terrorism law would': 838611, 'law would be': 482457, 'would be excessive': 1011580, 'be excessive they': 114719, 'excessive they deserve': 289425, 'they deserve to': 881907, 'deserve to be': 238135, 'to be prosecuted': 901465, 'be prosecuted but': 116574, 'prosecuted but state': 684637, 'but state law': 147144, 'state law and': 795727, 'law and local': 482209, 'and local law': 66297, 'local law enforcement': 498145, 'law enforcement already': 482265, 'enforcement already have': 276740, 'already have the': 47434, 'have the tool': 383038, 'the tool to': 869766, 'tool to deal': 925446, 'deal with them': 229583, 'underpaid': 940522, 'despite often': 238802, 'often being': 596166, 'being underpaid': 125999, 'underpaid these': 940526, 'providing family': 686990, 'holding community': 400097, 'community together': 190183, 'together during': 920767, 'shown how': 767588, 'how essential': 407808, 'here to the': 393733, 'store worker despite': 811478, 'worker despite often': 1006771, 'despite often being': 238803, 'often being underpaid': 596167, 'being underpaid these': 126000, 'underpaid these worker': 940527, 'worker are providing': 1006418, 'are providing family': 89318, 'providing family with': 686991, 'family with the': 298393, 'with the supply': 1001506, 'need and are': 554416, 'and are holding': 58323, 'are holding community': 87217, 'holding community together': 400098, 'community together during': 190184, 'together during these': 920769, 'crisis the pandemic': 218188, 'pandemic ha shown': 635569, 'ha shown how': 371917, 'shown how essential': 767589, 'how essential grocery': 407809, 'thursdaymotivation': 895463, 'thursdaymorning': 895460, 'secondwave': 743904, 'for foodbanks': 321657, 'foodbanks soar': 317842, 'soar thursdaymotivation': 779271, 'thursdaymotivation thursdaymorning': 895466, 'thursdaymorning thursday': 895461, 'thursday thursdaythoughts': 895436, 'thursdaythoughts thursdaythoughts': 895489, 'thursdaythoughts secondwave': 895483, 'demand for foodbanks': 235420, 'for foodbanks soar': 321658, 'foodbanks soar thursdaymotivation': 317844, 'soar thursdaymotivation thursdaymorning': 779272, 'thursdaymotivation thursdaymorning thursday': 895467, 'thursdaymorning thursday thursdaythoughts': 895462, 'thursday thursdaythoughts thursdaythoughts': 895437, 'thursdaythoughts thursdaythoughts secondwave': 895490, 'closeness': 183488, 'inaction': 431185, 'lockdown need': 499684, 'happen now': 377127, 'and tesco': 73127, 'tesco staff': 838807, 'supermarket an': 818916, 'of physical': 588110, 'physical closeness': 655391, 'closeness in': 183489, 'in huge': 423898, 'huge number': 410102, 'number to': 577067, 'spread between': 790454, 'worker this': 1007974, 'is killing': 449199, 'killing people': 474703, 'people through': 649860, 'through inaction': 894523, 'the lockdown need': 859618, 'lockdown need to': 499685, 'to happen now': 907154, 'happen now an': 377128, 'now an hour': 574020, 'an hour for': 56083, 'nh worker and': 562173, 'worker and tesco': 1006341, 'and tesco staff': 73131, 'tesco staff at': 838808, 'the supermarket an': 868459, 'supermarket an hour': 818917, 'an hour of': 56093, 'hour of physical': 405804, 'of physical closeness': 588111, 'physical closeness in': 655392, 'closeness in huge': 183490, 'in huge number': 423899, 'huge number to': 410104, 'number to spread': 577076, 'to spread between': 915055, 'spread between key': 790455, 'between key worker': 128815, 'key worker this': 473522, 'worker this government': 1007975, 'this government is': 887739, 'government is killing': 360259, 'is killing people': 449208, 'killing people through': 474710, 'people through inaction': 649861, 'wander': 965563, 'when grocery': 983494, 'manager allow': 512662, 'allow their': 46079, 'to wander': 918321, 'wander the': 965566, 'store freely': 807868, 'freely they': 332470, 'being irresponsible': 125339, 'irresponsible and': 445033, 'and contributing': 60511, 'this simulation': 890155, 'why source': 991367, 'when grocery store': 983497, 'grocery store owner': 365633, 'store owner manager': 809433, 'owner manager allow': 632497, 'manager allow their': 512663, 'allow their customer': 46080, 'their customer to': 872962, 'customer to wander': 222985, 'to wander the': 918322, 'wander the store': 965568, 'the store freely': 868023, 'store freely they': 807869, 'freely they are': 332471, 'are being irresponsible': 84877, 'being irresponsible and': 125340, 'irresponsible and contributing': 445034, 'and contributing to': 60512, 'of the this': 591539, 'the this simulation': 869491, 'this simulation show': 890156, 'simulation show why': 770360, 'show why source': 767283, 'nick': 562575, 'carroll': 165037, 'navigator': 553142, 'grocery sector': 364941, 'sector both': 744111, 'physical our': 655439, 'our associate': 622134, 'associate director': 96861, 'retail research': 718448, 'research nick': 713790, 'nick carroll': 562580, 'carroll share': 165038, 'share his': 755027, 'his analysis': 397193, 'food navigator': 315511, 'what impact is': 981647, 'impact is covid': 417716, '19 having on': 7461, 'having on the': 384207, 'the uk grocery': 870228, 'uk grocery sector': 938425, 'grocery sector both': 364942, 'sector both online': 744112, 'online and physical': 607839, 'and physical our': 69001, 'physical our associate': 655440, 'our associate director': 622137, 'associate director of': 96862, 'director of retail': 243655, 'of retail research': 589049, 'retail research nick': 718449, 'research nick carroll': 713791, 'nick carroll share': 562581, 'carroll share his': 165039, 'share his analysis': 755028, 'his analysis with': 397194, 'analysis with food': 57094, 'with food navigator': 998498, 'barrier': 111339, 'certificate': 170201, 'overnight on': 631346, 'monday our': 536359, 'local french': 497990, 'french supermarket': 332756, 'supermarket put': 822096, 'put up': 690959, 'up clear': 944605, 'clear plastic': 181301, 'plastic barrier': 658813, 'barrier at': 111348, 'the register': 865438, 'cashier set': 166604, 'up table': 946114, 'table with': 831509, 'with blank': 997420, 'blank certificate': 132367, 'certificate and': 170202, 'had staff': 373546, 'to explain': 905472, 'explain our': 292110, 'our experience': 622951, 'experience so': 291480, 'far ha': 298796, 'been calm': 120776, 'calm friendly': 156745, 'and clear': 59953, 'clear information': 181271, 'overnight on monday': 631347, 'on monday our': 602180, 'monday our local': 536360, 'our local french': 623772, 'local french supermarket': 497991, 'french supermarket put': 332759, 'supermarket put up': 822101, 'put up clear': 690963, 'up clear plastic': 944606, 'clear plastic barrier': 181302, 'plastic barrier at': 658814, 'barrier at the': 111349, 'at the register': 101075, 'the register to': 865443, 'register to protect': 707620, 'to protect customer': 912298, 'protect customer and': 684809, 'customer and cashier': 222068, 'and cashier set': 59613, 'cashier set up': 166605, 'set up table': 753580, 'up table with': 946115, 'table with blank': 831510, 'with blank certificate': 997422, 'blank certificate and': 132368, 'certificate and had': 170203, 'and had staff': 64105, 'had staff on': 373547, 'staff on hand': 792716, 'on hand to': 601239, 'hand to explain': 375859, 'to explain our': 905475, 'explain our experience': 292111, 'our experience so': 622952, 'experience so far': 291481, 'so far ha': 777032, 'far ha been': 298797, 'ha been calm': 369738, 'been calm friendly': 120777, 'calm friendly and': 156746, 'friendly and clear': 333939, 'and clear information': 59957, 'chant': 172974, 'diff': 241789, 'outsourced': 629676, 'insourced': 439754, '10x': 2406, 'poo': 663992, 'yeah so': 1014291, 'so chant': 776746, 'chant usa': 172977, 'usa made': 948686, 'usa all': 948581, 'it tho': 461659, 'tho the': 891690, 'the diff': 853253, 'diff in': 241794, 'in med': 425219, 'med price': 525912, 'price outsourced': 675810, 'outsourced and': 629677, 'and insourced': 65269, 'insourced is': 439755, 'is 10x': 445148, '10x wonder': 2415, 'why lady': 991157, 'lady got': 478770, 'got 40': 358373, '00 med': 327, 'med bill': 525877, 'her covid': 391970, 'treatment how': 931086, 'the poo': 863962, 'yeah so chant': 1014292, 'so chant usa': 776747, 'chant usa made': 172978, 'usa made in': 948687, 'made in usa': 507796, 'in usa all': 430485, 'usa all you': 948582, 'all you want': 45556, 'you want you': 1022166, 'want you ll': 966181, 'you ll pay': 1019666, 'pay for it': 644883, 'for it tho': 322741, 'it tho the': 461660, 'tho the diff': 891691, 'the diff in': 853254, 'diff in med': 241795, 'in med price': 425220, 'med price outsourced': 525913, 'price outsourced and': 675811, 'outsourced and insourced': 629678, 'and insourced is': 65270, 'insourced is 10x': 439756, 'is 10x wonder': 445149, '10x wonder why': 2416, 'wonder why lady': 1004042, 'why lady got': 991158, 'lady got 40': 478771, 'got 40 00': 358374, '40 00 med': 18511, '00 med bill': 328, 'med bill for': 525878, 'bill for her': 130574, 'for her covid': 322218, 'her covid 19': 391971, '19 treatment how': 11571, 'treatment how will': 931087, 'will the poo': 995151, 'layman': 482667, 'tact': 831679, 'poll': 663821, 'pers': 652242, 'in simple': 427961, 'simple layman': 770047, 'layman language': 482668, 'language change': 479482, 'change tact': 172275, 'tact to': 831680, 'match demand': 520287, 'supply across': 824658, 'market mood': 516731, 'mood do': 538273, 'do poll': 249994, 'poll right': 663853, 'what someone': 982221, 'someone will': 784777, 'will prefer': 994435, 'spend if': 788616, 'had loose': 373264, 'loose 00': 503185, '00 your': 625, 'your chocolate': 1023210, 'chocolate gift': 177675, 'gift food': 349970, '19 protective': 9859, 'gear pers': 344971, 'in simple layman': 427962, 'simple layman language': 770048, 'layman language change': 482669, 'language change tact': 479483, 'change tact to': 172276, 'tact to match': 831681, 'to match demand': 909892, 'match demand and': 520288, 'and supply across': 72773, 'supply across the': 824659, 'across the market': 29503, 'the market mood': 860135, 'market mood do': 516732, 'mood do poll': 538274, 'do poll right': 249995, 'poll right now': 663854, 'right now what': 722179, 'now what someone': 576384, 'what someone will': 982222, 'someone will prefer': 784779, 'will prefer to': 994437, 'prefer to spend': 669757, 'to spend if': 914991, 'spend if they': 788617, 'if they had': 415113, 'they had loose': 882248, 'had loose 00': 373265, 'loose 00 your': 503186, '00 your chocolate': 626, 'your chocolate gift': 1023211, 'chocolate gift food': 177676, 'gift food and': 349971, 'food and covid': 313204, 'covid 19 protective': 213624, '19 protective gear': 9860, 'protective gear pers': 685758, 'people exercising': 647836, 'in gym': 423490, 'gym family': 369321, 'of five': 583568, 'five together': 309679, 'together grocery': 920807, 'shopping retail': 763752, 'still half': 800627, 'half filled': 374166, 'filled with': 305572, 'with car': 997539, 'car not': 163183, 'not hard': 569798, 'why stricter': 991383, 'stricter restriction': 813671, 'restriction continue': 717246, 'continue being': 201004, 'being ordered': 125503, 'ordered by': 618831, 'by state': 154101, 'and federal': 62754, 'federal official': 302029, 'people exercising in': 647837, 'exercising in gym': 290125, 'in gym family': 423491, 'gym family of': 369322, 'family of five': 298096, 'of five together': 583571, 'five together grocery': 309680, 'together grocery shopping': 920808, 'grocery shopping retail': 365074, 'shopping retail store': 763756, 'retail store parking': 718680, 'lot still half': 504374, 'still half filled': 800628, 'half filled with': 374167, 'filled with car': 305575, 'with car not': 997540, 'car not hard': 163184, 'not hard to': 569800, 'hard to see': 378087, 'see why stricter': 746077, 'why stricter restriction': 991384, 'stricter restriction continue': 813672, 'restriction continue being': 717247, 'continue being ordered': 201005, 'being ordered by': 125504, 'ordered by state': 618834, 'by state and': 154102, 'state and federal': 795364, 'and federal official': 62759, 'sorta': 786163, 'fascinating': 299746, 'truth about': 934378, 'the tp': 869835, 'tp shortage': 927934, 'it sorta': 461180, 'sorta fascinating': 786164, 'fascinating toiletpaper': 299769, 'the truth about': 870087, 'truth about the': 934380, 'about the tp': 26542, 'the tp shortage': 869845, 'tp shortage it': 927936, 'shortage it sorta': 765046, 'it sorta fascinating': 461181, 'sorta fascinating toiletpaper': 786165, 'fascinating toiletpaper toiletpaperapocalypse': 299770, 'are constantly': 85516, 'constantly exposed': 195661, 'people infected': 648471, 'infected covid': 436556, '19 50': 4747, '50 asymptomatic': 19618, 'asymptomatic they': 97331, 'hour dealing': 405533, 'dealing panic': 229644, 'shopper which': 761823, 'will lower': 994062, 'lower their': 506029, 'system these': 831344, 'these folk': 880018, 'folk need': 312218, 'need testing': 555712, 'testing now': 839578, 'now need': 575339, 'need full': 554895, 'any missed': 79468, 'missed work': 534259, 'work after': 1004712, 'after positive': 36054, 'worker are constantly': 1006377, 'are constantly exposed': 85518, 'constantly exposed to': 195662, 'exposed to people': 292903, 'to people infected': 911627, 'people infected covid': 648472, 'infected covid 19': 436557, 'covid 19 50': 212561, '19 50 asymptomatic': 4748, '50 asymptomatic they': 19619, 'asymptomatic they re': 97332, 're working long': 699832, 'long hour dealing': 501439, 'hour dealing panic': 405534, 'dealing panic shopper': 229645, 'panic shopper which': 638559, 'shopper which will': 761824, 'which will lower': 986495, 'will lower their': 994065, 'lower their immune': 506030, 'immune system these': 417353, 'system these folk': 831345, 'these folk need': 880021, 'folk need testing': 312219, 'need testing now': 555714, 'testing now need': 839579, 'now need full': 575341, 'need full pay': 554896, 'full pay for': 340801, 'pay for any': 644868, 'for any missed': 319416, 'any missed work': 79469, 'missed work after': 534260, 'work after positive': 1004715, 'after positive test': 36057, 'biscuit': 131502, 'the biscuit': 849731, 'biscuit sandwich': 131512, 'sandwich always': 733733, 'always 15': 49451, '15 or': 3797, 'these covid': 879818, 'are the biscuit': 90803, 'the biscuit sandwich': 849732, 'biscuit sandwich always': 131513, 'sandwich always 15': 733734, 'always 15 or': 49452, '15 or are': 3798, 'or are these': 614420, 'are these covid': 90972, 'these covid 19': 879819, 'stayhomebutnotsilent': 798251, 'stayhomebutnotsilent support': 798252, 'local economy': 497912, 'economy instead': 267978, 'help farmer': 389687, 'get fair': 346984, 'stayhomebutnotsilent support the': 798253, 'support the local': 826876, 'the local economy': 859543, 'local economy instead': 497914, 'economy instead of': 267979, 'instead of supermarket': 440326, 'of supermarket and': 590410, 'supermarket and help': 818998, 'and help farmer': 64446, 'help farmer to': 389689, 'farmer to get': 299537, 'to get fair': 906475, 'get fair price': 346985, 'fall amid': 296818, 'petrol price continue': 653762, 'to fall amid': 905620, 'fall amid covid': 296821, 'kroger kr': 477750, 'kr the': 477622, 'country doe': 210583, 'offer paid': 594737, 'paid employee': 634001, 'employee sick': 274214, 'leave asymptomatic': 484741, 'asymptomatic covid': 97303, 'infected employee': 436569, 'employee may': 274043, 'be handling': 115131, 'handling food': 376348, 'people imagine': 648337, 'imagine the': 416793, 'result if': 717521, 'become proven': 120106, 'proven contagion': 686152, 'contagion vector': 200428, 'kroger kr the': 477752, 'kr the largest': 477623, 'the largest supermarket': 858981, 'the country doe': 852064, 'country doe not': 210584, 'doe not offer': 251512, 'not offer paid': 570723, 'offer paid employee': 594738, 'paid employee sick': 634002, 'employee sick leave': 274215, 'sick leave asymptomatic': 768484, 'leave asymptomatic covid': 484742, 'asymptomatic covid 19': 97304, '19 infected employee': 7840, 'infected employee may': 436570, 'employee may be': 274044, 'may be handling': 520986, 'be handling food': 115133, 'handling food for': 376351, 'food for million': 314551, 'of people imagine': 587926, 'people imagine the': 648338, 'imagine the result': 416801, 'the result if': 865692, 'result if they': 717522, 'if they become': 415095, 'they become proven': 881541, 'become proven contagion': 120107, 'proven contagion vector': 686153, 'non virtual': 566522, 'virtual easter': 957737, 'opened for non': 612728, 'for non virtual': 323907, 'non virtual easter': 566523, 'virtual easter service': 957738, 'convinced': 202658, 'hunch': 410969, 'all together': 45257, 'together convinced': 920753, 'convinced that': 202669, 'that sharing': 846230, 'sharing photo': 755567, 'then shouting': 877533, 'shouting at': 766788, 'work just': 1005402, 'just hunch': 469006, 'not all together': 568129, 'all together convinced': 45259, 'together convinced that': 920754, 'convinced that sharing': 202671, 'that sharing photo': 846231, 'sharing photo of': 755569, 'shelf and then': 756770, 'and then shouting': 73808, 'then shouting at': 877534, 'shouting at people': 766789, 'at people not': 100092, 'to panic is': 911404, 'panic is going': 638215, 'to work just': 918744, 'work just hunch': 1005404, 'rolling': 725663, 'story when': 812155, 'you consider': 1018011, 'consider shopping': 195100, 'shopping long': 763214, 'long the': 501725, 'truck keep': 932824, 'keep rolling': 471862, 'rolling the': 725685, 'there remember': 878995, 'remember everything': 710189, 'have purchased': 382107, 'purchased at': 689754, 'online ha': 608342, 'delivered on': 233365, 'on truck': 604859, 'truck at': 932731, 'watch this story': 968580, 'this story when': 890370, 'story when you': 812156, 'when you consider': 984549, 'you consider shopping': 1018014, 'consider shopping long': 195103, 'shopping long the': 763215, 'long the truck': 501732, 'the truck keep': 870034, 'truck keep rolling': 932825, 'keep rolling the': 471863, 'rolling the food': 725687, 'the food will': 855625, 'will be there': 992722, 'be there remember': 117685, 'there remember everything': 878996, 'remember everything you': 710191, 'everything you have': 288135, 'you have purchased': 1019099, 'have purchased at': 382108, 'purchased at store': 689755, 'at store or': 100660, 'or online ha': 616389, 'online ha been': 608343, 'ha been delivered': 369771, 'been delivered on': 120944, 'delivered on truck': 233367, 'on truck at': 604860, 'truck at some': 932732, 'defeating': 232061, 'stop taking': 805095, 'kid to': 474135, 'are totally': 91153, 'totally defeating': 926322, 'defeating the': 232064, 'the purpose': 864927, 'purpose of': 690142, 'of school': 589392, 'school closer': 741736, 'closer ireland': 183502, 'stop taking your': 805102, 'taking your kid': 833675, 'your kid to': 1024564, 'kid to the': 474143, 'supermarket store with': 823015, 'store with you': 811410, 'with you you': 1002173, 'you you are': 1022478, 'you are totally': 1017268, 'are totally defeating': 91154, 'totally defeating the': 926323, 'defeating the purpose': 232065, 'the purpose of': 864929, 'purpose of school': 690146, 'of school closer': 589396, 'school closer ireland': 741737, 'trumpliedpeopledied toilet': 934071, 'paper trumppandemic': 641028, 'being sick from': 125792, 'sick from the': 768454, 'from the trumpliedpeopledied': 337908, 'the trumpliedpeopledied toilet': 870076, 'trumpliedpeopledied toilet paper': 934072, 'toilet paper trumppandemic': 921507, 'paper trumppandemic politics': 641029, 'delivery which': 234739, 'you clearly': 1017971, 'clearly cannot': 181497, 'provide your': 686557, 'your profiteering': 1025451, 'day delivery which': 227520, 'delivery which you': 234741, 'which you clearly': 986532, 'you clearly cannot': 1017972, 'clearly cannot provide': 181499, 'cannot provide your': 162048, 'provide your profiteering': 686559, 'your profiteering from': 1025452, 'whipps': 987746, 'to whipps': 918564, 'whipps cross': 987747, 'cross hospital': 219009, 'hospital where': 404714, 'on one': 602509, 'the ward': 871074, 'ward why': 966656, 'why asked': 990815, 'asked because': 95721, 'people visiting': 650095, 'visiting patient': 959541, 'patient have': 644179, 'been stealing': 122032, 'stealing it': 799235, 'said staff': 731370, 'staff utterly': 793037, 'utterly shameful': 951458, 'shameful stophoarding': 754702, 'stophoarding stopstockpiling': 805489, 'stopstockpiling lockdownuk': 805872, 'been to whipps': 122234, 'to whipps cross': 918565, 'whipps cross hospital': 987748, 'cross hospital where': 219010, 'hospital where there': 404715, 'wa no hand': 962723, 'sanitizer on one': 735460, 'on one of': 602512, 'of the ward': 591600, 'the ward why': 871078, 'ward why asked': 966657, 'why asked because': 990816, 'asked because people': 95722, 'because people visiting': 119482, 'people visiting patient': 650096, 'visiting patient have': 959542, 'patient have been': 644180, 'have been stealing': 379693, 'been stealing it': 122034, 'stealing it said': 799236, 'it said staff': 460855, 'said staff utterly': 731372, 'staff utterly shameful': 793038, 'utterly shameful stophoarding': 951460, 'shameful stophoarding stopstockpiling': 754704, 'stophoarding stopstockpiling lockdownuk': 805494, 'during panic': 262910, 'time to visit': 898095, 'the supermarket during': 868564, 'supermarket during panic': 820055, 'during panic buying': 262911, 'if hit': 414233, 'hit your': 398522, 'your income': 1024472, 'mortgage there': 541966, 'help through': 390756, 'the trillion': 869987, 'trillion care': 931965, 'act passed': 29736, 'passed by': 643254, 'by congress': 152170, 'congress created': 194499, 'created this': 215913, 'this guide': 887779, 'guide for': 368321, 'consumer please': 198373, 'if hit your': 414234, 'hit your income': 398523, 'your income and': 1024473, 'income and you': 432287, 'and you cannot': 76007, 'you cannot pay': 1017872, 'your mortgage there': 1024887, 'mortgage there help': 541967, 'there help through': 878472, 'help through the': 390758, 'through the trillion': 894773, 'the trillion care': 869990, 'trillion care act': 931966, 'care act passed': 163819, 'act passed by': 29737, 'passed by congress': 643255, 'by congress created': 152171, 'congress created this': 194500, 'created this guide': 215915, 'this guide for': 887781, 'guide for consumer': 368323, 'for consumer please': 320278, 'consumer please share': 198377, 'share with friend': 755353, 'with friend who': 998563, 'friend who need': 333905, 'fruit being': 339073, 'sold high': 781675, 'price seller': 676338, 'seller caught': 748994, 'caught 19': 167406, 'fruit being sold': 339074, 'being sold high': 125831, 'sold high price': 781676, 'high price seller': 395272, 'price seller caught': 676339, 'seller caught 19': 748995, 'caught 19 via': 167407, 'unaware': 939479, 'real question': 701324, 'there secret': 879022, 'health cure': 386361, 'cure that': 220817, 'only 500': 610010, '500 roll': 20052, 'paper can': 640003, 'can fulfill': 158384, 'fulfill that': 340421, 'that completely': 843273, 'completely unaware': 192368, 'unaware of': 939480, 'your neighbour': 1024970, 'neighbour got': 557214, 'got 30': 358370, '30 packet': 17172, 'he still': 385473, 'coughing toiletpaper': 208759, 'real question is': 701327, 'question is there': 693633, 'is there secret': 453031, 'there secret health': 879023, 'secret health cure': 743922, 'health cure that': 386362, 'cure that only': 220818, 'that only 500': 845519, 'only 500 roll': 610011, '500 roll of': 20053, 'toilet paper can': 921220, 'paper can fulfill': 640005, 'can fulfill that': 158386, 'fulfill that completely': 340422, 'that completely unaware': 843274, 'completely unaware of': 192369, 'unaware of your': 939481, 'of your neighbour': 593501, 'your neighbour got': 1024976, 'neighbour got 30': 557215, 'got 30 packet': 358371, '30 packet of': 17173, 'packet of toilet': 633713, 'paper and he': 639828, 'and he still': 64327, 'he still coughing': 385474, 'still coughing toiletpaper': 800404, 'couple earlier': 211582, 'year opened': 1014891, 'support needy': 826668, 'needy family': 556677, 'paisley announced': 634371, 'mobilize delivery': 535104, 'the couple earlier': 852203, 'couple earlier this': 211583, 'this year opened': 891586, 'year opened free': 1014892, 'store to support': 810818, 'to support needy': 915948, 'support needy family': 826669, 'needy family in': 556679, 'family in nashville': 297922, 'now paisley announced': 575504, 'paisley announced that': 634372, 'will mobilize delivery': 994121, 'mobilize delivery of': 535105, 'delivery of week': 234241, 'of week worth': 593011, 'worth of grocery': 1011410, 'hackney': 372787, 'coronavirus hackney': 206045, 'hackney foodbank': 372788, 'foodbank up': 317801, 'against it': 37520, 'it emergency': 457794, 'package run': 633386, 'low charity': 505186, 'charity call': 173588, 'more donation': 539068, 'donation amid': 254534, 'amid unprecedented': 52742, 'and amazing': 58037, 'amazing community': 50662, 'community response': 190070, 'coronavirus hackney foodbank': 206046, 'hackney foodbank up': 372789, 'foodbank up against': 317802, 'up against it': 944243, 'against it emergency': 37521, 'it emergency food': 457795, 'emergency food package': 272707, 'food package run': 315734, 'package run low': 633387, 'run low charity': 727698, 'low charity call': 505187, 'charity call for': 173589, 'call for more': 155878, 'for more donation': 323569, 'more donation amid': 539069, 'donation amid unprecedented': 254537, 'amid unprecedented demand': 52743, 'unprecedented demand and': 943108, 'demand and amazing': 234950, 'and amazing community': 58038, 'amazing community response': 50663, 'conservation': 194897, 'paper conservation': 640040, 'conservation status': 194900, 'status toiletpaper': 796699, 'toilet paper conservation': 921235, 'paper conservation status': 640041, 'conservation status toiletpaper': 194901, 'status toiletpaper 19': 796700, 'toiletpaper 19 chinesevirus': 921669, '1609': 4221, 'gold 1609': 355846, '1609 price': 4222, 'price settle': 676350, 'settle lower': 753680, 'lower after': 505790, 'after sharpest': 36180, 'sharpest daily': 755721, 'daily rise': 224781, 'over decade': 630141, 'gold 1609 price': 355847, '1609 price settle': 4223, 'price settle lower': 676351, 'settle lower after': 753681, 'lower after sharpest': 505791, 'after sharpest daily': 36181, 'sharpest daily rise': 755722, 'daily rise in': 224782, 'rise in over': 722896, 'in over decade': 426379, 'username': 950333, 'nnesico': 563544, 'testified': 839402, 'my username': 550469, 'username name': 950334, 'is nnesico': 449906, 'nnesico will': 563545, 'be testified': 117566, 'testified to': 839403, 'help buy': 389457, 'stock house': 802246, 'kid because': 473878, 'my username name': 550470, 'username name is': 950335, 'name is nnesico': 551646, 'is nnesico will': 449907, 'nnesico will be': 563546, 'will be so': 992689, 'be so glad': 117256, 'to be testified': 901582, 'be testified to': 117567, 'testified to this': 839404, 'to this it': 917436, 'this it will': 888532, 'it will help': 462401, 'will help buy': 993702, 'help buy food': 389458, 'buy food to': 148683, 'to stock house': 915440, 'stock house for': 802247, 'house for my': 406308, 'for my kid': 323714, 'my kid because': 548941, 'kid because of': 473879, 'of this covid': 591958, 'is came': 446355, 'do another': 249079, 'another shop': 77846, 'for vulnerable': 327598, 'isolation on': 455366, 'my patch': 549728, 'patch this': 643946, 'supermarket fault': 820280, 'fault this': 300425, 'is down': 447338, 'to selfish': 914126, 'are panicbuying': 88962, 'panicbuying volunteer': 639109, 'volunteer on': 960306, 'ground can': 366489, 'this is came': 888202, 'is came to': 446356, 'came to do': 157066, 'to do another': 904479, 'do another shop': 249080, 'another shop after': 77847, 'shop after work': 759805, 'after work for': 36565, 'work for vulnerable': 1005180, 'for vulnerable people': 327602, 'people in isolation': 648387, 'in isolation on': 424206, 'isolation on my': 455368, 'on my patch': 602302, 'my patch this': 549730, 'patch this isn': 643947, 'this isn the': 888493, 'isn the supermarket': 454717, 'the supermarket fault': 868586, 'supermarket fault this': 820281, 'fault this is': 300426, 'this is down': 888239, 'is down to': 447353, 'down to selfish': 257379, 'to selfish people': 914129, 'who are panicbuying': 988191, 'are panicbuying volunteer': 88964, 'panicbuying volunteer on': 639110, 'volunteer on the': 960307, 'the ground can': 856845, 'ground can help': 366490, '19 already': 4921, 'already existing': 47320, 'existing virus': 290350, 'virus recently': 958673, 'recently enhanced': 704095, 'enhanced to': 277100, 'to effect': 904946, 'effect our': 269100, 'elderly to': 270917, 'to scare': 913885, 'scare the': 740916, 'world into': 1009677, 'into going': 442597, 'their nearest': 874039, 'nearest supermarket': 553725, 'product so': 681628, 'receive more': 703512, 'money the': 537059, 'is fucked': 447955, 'fucked globally': 339726, 'globally economically': 352382, 'economically and': 267383, 'and etc': 62280, 'etc sure': 282776, 'covid 19 already': 212615, '19 already existing': 4922, 'already existing virus': 47321, 'existing virus recently': 290351, 'virus recently enhanced': 958674, 'recently enhanced to': 704096, 'enhanced to effect': 277101, 'to effect our': 904947, 'effect our elderly': 269101, 'our elderly to': 622872, 'elderly to scare': 270920, 'to scare the': 913889, 'scare the world': 740919, 'the world into': 871897, 'world into going': 1009678, 'into going to': 442599, 'going to their': 355742, 'to their nearest': 917257, 'their nearest supermarket': 874040, 'nearest supermarket to': 553734, 'to buy product': 902289, 'buy product so': 149106, 'product so the': 681632, 'so the government': 778427, 'the government are': 856511, 'government are able': 359895, 'able to receive': 24533, 'to receive more': 912924, 'receive more money': 703513, 'more money the': 539794, 'money the world': 537064, 'world is fucked': 1009698, 'is fucked globally': 447956, 'fucked globally economically': 339727, 'globally economically and': 352383, 'economically and etc': 267384, 'and etc sure': 62284, 'etc sure you': 282777, 'sure you got': 827859, 'you got it': 1018902, 'got it by': 358645, 'reframe': 706755, 'obsessing': 578675, 'chaotic': 173090, 'wespeechies': 980446, 'reframe stuck': 706758, 'inside to': 439432, 'to now': 910737, 'now can': 574325, 'home myself': 401643, 'myself stay': 550935, 'stay close': 796836, 'normal routine': 567296, 'routine avoid': 726493, 'avoid obsessing': 105197, 'obsessing over': 578676, 'over endless': 630185, 'endless coverage': 276223, 'coverage chaotic': 212339, 'chaotic home': 173093, 'can lead': 158842, 'to chaotic': 902628, 'chaotic mind': 173095, 'mind start': 532724, 'new quarantine': 559383, 'quarantine ritual': 692498, 'ritual use': 724160, 'use telehealth': 949630, 'telehealth wespeechies': 836769, 'reframe stuck inside': 706759, 'stuck inside to': 814614, 'inside to now': 439434, 'to now can': 910741, 'now can focus': 574329, 'can focus on': 158361, 'focus on my': 311886, 'on my home': 602288, 'my home myself': 548692, 'home myself stay': 401644, 'myself stay close': 550936, 'stay close to': 796837, 'close to normal': 182910, 'to normal routine': 910656, 'normal routine avoid': 567297, 'routine avoid obsessing': 726494, 'avoid obsessing over': 105198, 'obsessing over endless': 578677, 'over endless coverage': 630187, 'endless coverage chaotic': 276224, 'coverage chaotic home': 212340, 'chaotic home can': 173094, 'home can lead': 400867, 'can lead to': 158844, 'lead to chaotic': 483330, 'to chaotic mind': 902629, 'chaotic mind start': 173096, 'mind start new': 532725, 'start new quarantine': 794399, 'new quarantine ritual': 559384, 'quarantine ritual use': 692499, 'ritual use telehealth': 724161, 'use telehealth wespeechies': 949632, '8am outside': 23148, 'outside aldi': 629359, 'aldi supermarket': 41303, 'supermarket coronacrisisuk': 819799, '8am outside aldi': 23149, 'outside aldi supermarket': 629360, 'aldi supermarket coronacrisisuk': 41305, 'it after': 456296, 'club announced': 184407, 'announced joint': 76978, 'joint appeal': 467001, 'for fund': 321818, 'and have donated': 64234, '00 to the': 552, 'to the to': 917133, 'the to help': 869681, 'the pandemic it': 863006, 'pandemic it after': 635817, 'it after the': 456299, 'after the club': 36296, 'the club announced': 851079, 'club announced joint': 184408, 'announced joint appeal': 76979, 'joint appeal for': 467002, 'appeal for fund': 82062, 'psa these': 687440, 'not direct': 569034, 'direct outcome': 243365, '19 point': 9736, 'the finger': 855243, 'finger at': 307789, 'at saudi': 100464, 'psa these low': 687441, 'gas price were': 344051, 'price were not': 677454, 'were not direct': 979916, 'not direct outcome': 569035, 'direct outcome of': 243366, 'outcome of covid': 628870, 'covid 19 point': 213592, '19 point the': 9737, 'point the finger': 662649, 'the finger at': 855244, 'finger at saudi': 307790, 'at saudi arabia': 100465, 'curtesy': 221809, 'and me': 66832, 'me seeing': 523429, 'seeing customer': 746261, 'customer how': 222472, 'acting the': 29910, 'do about': 249021, 'are quick': 89393, 'grab and': 361460, 'use sanitary': 949531, 'sanitary wipe': 733822, 'wipe but': 996209, 'have common': 380041, 'common curtesy': 189373, 'curtesy to': 221810, 'away used': 106090, 'wipe disgusting': 996223, 'while working at': 987575, 'working at grocery': 1008523, 'store and me': 806294, 'and me seeing': 66837, 'me seeing customer': 523430, 'seeing customer how': 746262, 'customer how they': 222475, 'how they are': 408910, 'they are acting': 881190, 'are acting the': 84198, 'acting the way': 29911, 'way they do': 969954, 'they do about': 881953, 'do about the': 249025, 'about the they': 26538, 'they are quick': 881374, 'are quick to': 89395, 'quick to grab': 694410, 'to grab and': 906957, 'grab and use': 361461, 'and use sanitary': 74781, 'use sanitary wipe': 949532, 'sanitary wipe but': 733824, 'wipe but don': 996210, 'but don have': 145591, 'don have common': 253593, 'have common curtesy': 380042, 'common curtesy to': 189374, 'curtesy to throw': 221811, 'to throw away': 917562, 'throw away used': 895017, 'away used glove': 106091, 'used glove and': 949920, 'glove and wipe': 352587, 'and wipe disgusting': 75733, 'affective': 34601, 'day affective': 227172, 'customer and our': 222093, 'and our employee': 68485, 'our employee we': 622893, '30 day affective': 17013, 'gov baker': 359539, 'baker prohibits': 108820, 'prohibits reusable': 683459, 'during emergency': 262622, 'gov baker prohibits': 359541, 'baker prohibits reusable': 108821, 'prohibits reusable shopping': 683460, 'shopping bag during': 762142, 'bag during emergency': 108270, '0113': 739, '3781877': 18114, 'those health': 892056, 'professional supermarket': 682499, 'volunteer who': 960367, 'been supporting': 122105, 'supporting people': 827174, 'across amp': 29254, 'amp this': 54694, 'easter bank': 265383, 'bank holiday': 109903, 'holiday weekend': 400379, 'weekend our': 977383, '19 hotline': 7582, 'on 0113': 598957, '0113 3781877': 740, 'you to those': 1021851, 'to those health': 917505, 'those health and': 892057, 'health and social': 386156, 'social care professional': 779454, 'care professional supermarket': 164166, 'professional supermarket worker': 682501, 'worker and volunteer': 1006352, 'and volunteer who': 75036, 'volunteer who have': 960371, 'have been supporting': 379704, 'been supporting people': 122106, 'supporting people across': 827175, 'people across amp': 646754, 'across amp this': 29255, 'amp this easter': 54696, 'this easter bank': 887336, 'easter bank holiday': 265384, 'bank holiday weekend': 109904, 'holiday weekend our': 400381, 'weekend our covid': 977384, 'covid 19 hotline': 213222, '19 hotline is': 7583, 'hotline is on': 405250, 'is on 0113': 450457, 'on 0113 3781877': 598958, 'atisha': 101808, 'lamrim': 479210, 'je': 464939, 'tsongkhapa': 934960, 'progress': 683365, 'enlightenment': 277263, 'practice atisha': 668531, 'atisha advice': 101809, 'and meditate': 66916, 'meditate on': 526946, 'the lamrim': 858923, 'lamrim according': 479211, 'to je': 908656, 'je tsongkhapa': 464942, 'tsongkhapa instruction': 934961, 'instruction we': 440576, 'will develop': 993174, 'develop pure': 239655, 'pure and': 689960, 'happy mind': 377651, 'mind and': 532617, 'and gradually': 63911, 'gradually progress': 361700, 'progress towards': 683384, 'ultimate peace': 939123, 'peace of': 646007, 'of full': 583999, 'full enlightenment': 340581, 'do our best': 249944, 'our best to': 622197, 'best to practice': 127955, 'to practice atisha': 911953, 'practice atisha advice': 668532, 'atisha advice and': 101810, 'advice and meditate': 33312, 'and meditate on': 66917, 'meditate on the': 526947, 'on the lamrim': 604201, 'the lamrim according': 858924, 'lamrim according to': 479212, 'according to je': 28558, 'to je tsongkhapa': 908657, 'je tsongkhapa instruction': 464943, 'tsongkhapa instruction we': 934962, 'instruction we will': 440578, 'we will develop': 973851, 'will develop pure': 993175, 'develop pure and': 239656, 'pure and happy': 689962, 'and happy mind': 64179, 'happy mind and': 377652, 'mind and gradually': 532618, 'and gradually progress': 63912, 'gradually progress towards': 361701, 'progress towards the': 683385, 'towards the ultimate': 927264, 'the ultimate peace': 870316, 'ultimate peace of': 939124, 'peace of full': 646008, 'of full enlightenment': 584001, 'carefully': 164462, 'kerala': 473105, 'virus speak': 958775, 'speak listen': 787690, 'listen carefully': 494671, 'carefully video': 164486, 'video courtesy': 956694, 'courtesy department': 212040, 'welfare government': 977953, 'of kerala': 585604, 'here the corona': 393645, 'corona virus speak': 204353, 'virus speak listen': 958776, 'speak listen carefully': 787691, 'listen carefully video': 494672, 'carefully video courtesy': 164487, 'video courtesy department': 956695, 'courtesy department of': 212041, 'department of health': 237241, 'of health and': 584503, 'health and family': 386138, 'and family welfare': 62676, 'family welfare government': 298365, 'welfare government of': 977954, 'government of kerala': 360399, 'pssresources': 687485, 'avoid trip': 105370, 'and next': 67575, 'next say': 561533, 'say public': 739080, 'health official': 386698, 'official pssresources': 595884, 'pssresources stayhome': 687486, 'socialdistancing panicbuying': 780592, 'panicbuying pandemic': 639002, 'avoid trip to': 105371, 'store this week': 810707, 'week and next': 975925, 'and next say': 67576, 'next say public': 561534, 'say public health': 739081, 'public health official': 688077, 'health official pssresources': 386705, 'official pssresources stayhome': 595885, 'pssresources stayhome socialdistancing': 687487, 'stayhome socialdistancing panicbuying': 798115, 'socialdistancing panicbuying pandemic': 780593, 'restaurant told': 716768, 'shut in': 767891, 'virus fight': 958182, 'fight more': 304799, 'and restaurant told': 70395, 'restaurant told to': 716769, 'told to shut': 923763, 'to shut in': 914606, 'shut in virus': 767896, 'in virus fight': 430605, 'virus fight more': 958183, 'fight more people': 304800, 'wa finally': 962124, 'finally going': 306024, 'supermarket out': 821853, 'of necessity': 586894, 'necessity but': 554191, 'some idiot': 783067, 'idiot broke': 413471, 'the glass': 856279, 'glass door': 351610, 'door with': 255783, 'with rock': 1000522, 'rock and': 724889, 'it closed': 457188, 'wa finally going': 962126, 'finally going to': 306025, 'going to visit': 355753, 'the supermarket out': 868734, 'supermarket out of': 821855, 'out of necessity': 626794, 'of necessity but': 586895, 'necessity but some': 554192, 'but some idiot': 147096, 'some idiot broke': 783069, 'idiot broke the': 413472, 'broke the glass': 140862, 'the glass door': 856280, 'glass door with': 351611, 'door with rock': 255785, 'with rock and': 1000523, 'rock and it': 724890, 'and it closed': 65498, 'unsupported': 943572, 'repressive': 712974, 'extremely worried': 293946, 'that govts': 844068, 'govts will': 361352, 'use cover': 949139, 'action unsupported': 30182, 'unsupported by': 943573, 'old repressive': 598448, 'repressive while': 712975, 'am extremely worried': 50040, 'extremely worried that': 293947, 'worried that govts': 1010582, 'that govts will': 844069, 'govts will use': 361353, 'will use cover': 995283, 'use cover to': 949140, 'take action unsupported': 831905, 'action unsupported by': 30183, 'unsupported by public': 943574, 'plain old repressive': 658011, 'old repressive while': 598449, 'repressive while the': 712976, 'after 11 not': 35262, 'orillia': 619618, 'cancelling': 161203, 'coronacrisis thank': 204807, 'you canada': 1017839, 'canada post': 160526, 'post retail': 666294, 'retail carrier': 717921, 'carrier orillia': 165006, 'orillia turning': 619619, 'turning customer': 935915, 'customer away': 222158, 'away day': 105816, 'day who': 228755, 'who break': 988337, 'break quarantine': 138789, 'quarantine rule': 692500, 'rule come': 727226, 'into public': 442906, 'public putting': 688255, 'putting all': 691081, 'all risk': 44199, 'risk because': 723400, 'because cancelling': 118980, 'cancelling their': 161225, 'their hold': 873549, 'hold mail': 399951, 'mail going': 508617, 'coronacrisis thank you': 204809, 'thank you canada': 841704, 'you canada post': 1017840, 'canada post retail': 160527, 'post retail carrier': 666295, 'retail carrier orillia': 717922, 'carrier orillia turning': 165007, 'orillia turning customer': 619620, 'turning customer away': 935916, 'customer away day': 222159, 'away day who': 105817, 'day who break': 228756, 'who break quarantine': 988338, 'break quarantine rule': 138790, 'quarantine rule come': 692502, 'rule come into': 727227, 'come into public': 187391, 'into public putting': 442907, 'public putting all': 688256, 'putting all risk': 691083, 'all risk because': 44200, 'risk because cancelling': 723401, 'because cancelling their': 118981, 'cancelling their hold': 161226, 'their hold mail': 873550, 'hold mail going': 399952, 'mail going to': 508618, 'marketeers': 517438, 'marketeers your': 517443, 'your selling': 1025714, 'selling point': 749406, 'point this': 662659, 'this season': 889985, 'season should': 743440, 'item plus': 463576, 'plus free': 661606, 'free sanitizer': 332132, 'marketeers your selling': 517444, 'your selling point': 1025715, 'selling point this': 749407, 'point this season': 662661, 'this season should': 889993, 'season should be': 743441, 'should be buy': 765574, 'buy the item': 149300, 'the item plus': 858611, 'item plus free': 463577, 'plus free sanitizer': 661608, 'jp': 467547, 'pmi': 662047, 'gloomy': 352504, 'well investing': 978325, 'investing sentiment': 443942, 'for eu': 321141, 'for jp': 322781, 'jp but': 467551, 'point pmi': 662594, 'pmi situation': 662050, 'in eu': 422619, 'eu also': 283194, 'also look': 48483, 'look gloomy': 502388, 'gloomy hopefully': 352507, 'hopefully we': 403903, 'already seen': 47635, 'seen peak': 747187, 'these country': 879815, 'well investing sentiment': 978326, 'investing sentiment for': 443943, 'sentiment for eu': 750931, 'for eu and': 321142, 'eu and consumer': 283197, 'and consumer for': 60383, 'consumer for jp': 197521, 'for jp but': 322782, 'jp but you': 467552, 'but you get': 147985, 'get the point': 348281, 'the point pmi': 863904, 'point pmi situation': 662595, 'pmi situation in': 662051, 'situation in eu': 772316, 'in eu also': 422620, 'eu also look': 283195, 'also look gloomy': 48485, 'look gloomy hopefully': 502389, 'gloomy hopefully we': 352508, 'hopefully we ve': 403904, 've already seen': 952827, 'already seen peak': 47639, 'seen peak in': 747188, 'peak in these': 646079, 'in these country': 429835, 'tray': 930727, 'emergency step': 272990, 'step for': 799536, 'for bangladesh': 319572, 'bangladesh dont': 109500, 'panic let': 638268, '19 together': 11474, 'together enforce': 920771, 'enforce personal': 276677, 'hygiene habit': 412102, 'habit using': 372705, 'using designated': 950455, 'designated utensil': 238315, 'utensil and': 951220, 'food tray': 317358, 'tray for': 930730, 'individual using': 435275, 'using tissue': 950758, 'tissue when': 899242, 'when cough': 983293, 'emergency step for': 272991, 'step for bangladesh': 799537, 'for bangladesh dont': 319573, 'bangladesh dont panic': 109501, 'dont panic let': 255266, 'panic let prepare': 638269, 'let prepare to': 486985, 'prepare to face': 670138, 'to face covid': 905564, 'covid 19 together': 213960, '19 together enforce': 11476, 'together enforce personal': 920772, 'enforce personal hygiene': 276678, 'personal hygiene habit': 652877, 'hygiene habit using': 412103, 'habit using designated': 372706, 'using designated utensil': 950456, 'designated utensil and': 238316, 'utensil and food': 951221, 'and food tray': 63103, 'food tray for': 317359, 'tray for every': 930731, 'every individual using': 285954, 'individual using tissue': 435276, 'using tissue when': 950760, 'tissue when cough': 899243, 'when cough or': 983294, 'recognised': 704602, 'the extremely': 854782, 'extremely vulnerable': 293938, 'vulnerable list': 961030, 'list had': 494346, 'had letter': 373244, 'letter from': 487313, 'govt nh': 361215, 'nh still': 562116, 'not recognised': 571259, 'recognised on': 704603, 'on any': 599395, 'supermarket website': 823766, 'website must': 975357, 'get shopping': 347978, 'shopping delivered': 762448, 'delivered vulnerable': 233443, 'on the extremely': 604106, 'the extremely vulnerable': 854783, 'extremely vulnerable list': 293941, 'vulnerable list had': 961033, 'list had letter': 494347, 'had letter from': 373245, 'letter from the': 487320, 'from the govt': 337728, 'the govt nh': 856666, 'govt nh still': 361216, 'nh still not': 562117, 'still not recognised': 800901, 'not recognised on': 571260, 'recognised on any': 704604, 'on any supermarket': 599408, 'any supermarket website': 79916, 'supermarket website must': 823767, 'website must stay': 975358, 'must stay in': 546906, '12 week but': 2980, 'week but can': 976031, 'can get shopping': 158448, 'get shopping delivered': 347979, 'shopping delivered vulnerable': 762453, 'inexcusable': 436439, 'flurry': 311544, 'at vulnerable': 101464, 'vulnerable time': 961208, 'quick buck': 694283, 'buck is': 141666, 'is inexcusable': 448900, 'inexcusable authority': 436440, 'authority are': 103686, 'are receiving': 89494, 'receiving flurry': 703767, 'flurry of': 311545, 'of report': 588944, 'report about': 711780, 'about merchant': 25722, 'merchant trying': 529054, 'with outrageous': 1000036, 'price fake': 673765, 'fake cure': 296598, 'other scam': 620871, 'people at vulnerable': 647187, 'at vulnerable time': 101465, 'vulnerable time to': 961209, 'time to make': 898017, 'make quick buck': 510378, 'quick buck is': 694289, 'buck is inexcusable': 141667, 'is inexcusable authority': 448901, 'inexcusable authority are': 436441, 'authority are receiving': 103688, 'are receiving flurry': 89498, 'receiving flurry of': 703768, 'flurry of report': 311546, 'of report about': 588945, 'report about merchant': 711783, 'about merchant trying': 25723, 'merchant trying to': 529055, 'the crisis with': 852483, 'crisis with outrageous': 218428, 'with outrageous price': 1000037, 'outrageous price fake': 629331, 'price fake cure': 673766, 'fake cure and': 296599, 'cure and other': 220702, 'and other scam': 68399, 'that deadly': 843449, 'deadly and': 229246, 'and contagious': 60473, 'contagious why': 200456, 'we allowed': 970386, 'people majority': 648722, 'distancing lockdown': 247291, 'if the is': 414989, 'the is that': 858537, 'is that deadly': 452639, 'that deadly and': 843450, 'deadly and contagious': 229247, 'and contagious why': 60474, 'contagious why are': 200457, 'are we allowed': 91558, 'we allowed to': 970387, 'store with so': 811402, 'with so many': 1000786, 'many people majority': 514517, 'people majority of': 648723, 'majority of them': 509570, 'of them do': 591733, 'them do not': 875609, 'not follow social': 569461, 'social distancing lockdown': 779653, 'paramedic force': 641385, 'force police': 328482, 'personnel transit': 653164, 'worker airline': 1006217, 'airline worker': 40062, 'nurse paramedic force': 577451, 'paramedic force police': 641386, 'force police officer': 328484, 'store personnel transit': 809522, 'personnel transit worker': 653165, 'transit worker airline': 929656, 'worker airline worker': 1006219, 'airline worker and': 40063, 'yb': 1014204, 'employed the': 273494, 'employed small': 273492, 'those laid': 892157, 'off from': 593846, 'our thanks': 625122, 'to nh': 910591, 'and television': 73089, 'television worker': 836876, 'worker help': 1007114, 'other much': 620552, 'can yb': 160262, 'love for the': 504668, 'self employed the': 747632, 'employed the self': 273496, 'self employed small': 747631, 'employed small business': 273493, 'owner and those': 632381, 'and those laid': 74029, 'those laid off': 892158, 'laid off from': 479021, 'off from covid': 593847, '19 our thanks': 9066, 'our thanks to': 625125, 'thanks to nh': 842246, 'to nh staff': 910593, 'nh staff and': 562076, 'staff and healthcare': 792144, 'and healthcare worker': 64381, 'delivery driver utility': 233950, 'driver utility worker': 259827, 'utility worker and': 951337, 'worker and television': 1006340, 'and television worker': 73090, 'television worker help': 836877, 'worker help each': 1007115, 'each other much': 264198, 'other much you': 620553, 'you can yb': 1017837, 'agenparl': 38130, 'iorestoacasa': 444456, 'household spending': 406944, 'spending percent': 788952, 'percent up': 651191, 'january agenparl': 464641, 'agenparl consumer': 38135, 'consumer consumption': 196960, 'consumption iorestoacasa': 199898, 'household spending percent': 406945, 'spending percent up': 788953, 'percent up in': 651192, 'up in january': 945162, 'in january agenparl': 424354, 'january agenparl consumer': 464642, 'agenparl consumer consumption': 38136, 'consumer consumption iorestoacasa': 196961, 'redesign': 705690, 'll surely': 497051, 'surely like': 827914, 'service regard': 752752, 'regard wix': 707164, 'wix professional': 1003199, 'professional website': 682516, 'website redesign': 975395, 'redesign in': 705691, 'fiverr with best': 309704, 'with best price': 997390, 'you ll surely': 1019674, 'll surely like': 497052, 'surely like my': 827915, 'like my service': 490828, 'my service regard': 550027, 'service regard wix': 752753, 'regard wix professional': 707165, 'wix professional website': 1003200, 'professional website redesign': 682517, 'website redesign in': 975396, 'redesign in wix': 705692, 'rat': 697128, 'been over': 121626, 'month since': 538002, 'since everybody': 770577, 'everybody freaked': 286432, 'still there': 801291, 'sanitizer meat': 735365, 'hell is': 389023, 'the doing': 853503, 'doing on': 252575, 'that personally': 845727, 'personally know': 653035, 'it smell': 461092, 'smell rat': 775615, 'rat sundaymorning': 697133, 'it been over': 456800, 'been over month': 121627, 'over month since': 630411, 'month since everybody': 538003, 'since everybody freaked': 770578, 'everybody freaked out': 286433, 'freaked out about': 331521, 'out about the': 625562, 'about the still': 26529, 'the still there': 867890, 'still there no': 801293, 'there no toilet': 878845, 'hand sanitizer meat': 375489, 'sanitizer meat and': 735366, 'meat and what': 525484, 'the hell is': 857244, 'hell is the': 389027, 'is the doing': 452773, 'the doing on': 853505, 'doing on top': 252579, 'top of that': 925641, 'of that personally': 590738, 'that personally know': 845728, 'personally know of': 653037, 'know of no': 476646, 'of no one': 587044, 'no one who': 564984, 'one who ha': 607447, 'who ha it': 988854, 'ha it smell': 371027, 'it smell rat': 461094, 'smell rat sundaymorning': 775616, 'mgvcl': 530104, 'tensional': 838004, '41171': 18881, 'mgvcl please': 530105, 'please advise': 659638, 'advise last': 33591, 'last date': 480174, 'date of': 226691, 'of paying': 587834, 'paying high': 645425, 'high tensional': 395459, 'tensional electricity': 838005, 'of last': 585721, 'month due': 537691, 'been delayed': 120939, 'delayed please': 232803, 'do advise': 249034, 'advise consumer': 33577, 'consumer no': 198217, 'no 41171': 563567, 'mgvcl please advise': 530106, 'please advise last': 659639, 'advise last date': 33592, 'last date of': 480175, 'date of paying': 226693, 'of paying high': 587838, 'paying high tensional': 645427, 'high tensional electricity': 395460, 'tensional electricity bill': 838006, 'electricity bill of': 271155, 'bill of last': 130636, 'of last month': 585722, 'last month due': 480332, 'month due to': 537692, '19 it ha': 8135, 'ha been delayed': 369770, 'been delayed please': 120940, 'delayed please do': 232804, 'please do advise': 659889, 'do advise consumer': 249035, 'advise consumer no': 33578, 'consumer no 41171': 198219, 'hookup': 403353, 'socialdistancingpickuplines': 780913, '2020 brings': 14186, 'brings about': 140226, 'about big': 24879, 'big change': 129695, 'change first': 172047, 'first date': 308608, 'date hookup': 226643, 'hookup netflix': 403354, 'netflix and': 557592, 'chill now': 176362, 'almost exclusively': 46642, 'exclusively at': 289710, 'you which': 1022291, 'which isle': 986069, 'isle suit': 454383, 'suit you': 817802, 'you socialdistancing': 1021294, 'socialdistancing socialdistancingpickuplines': 780706, '2020 brings about': 14187, 'brings about big': 140227, 'about big change': 24880, 'big change first': 129696, 'change first date': 172048, 'first date hookup': 308609, 'date hookup netflix': 226644, 'hookup netflix and': 403355, 'netflix and chill': 557593, 'and chill now': 59838, 'chill now almost': 176363, 'now almost exclusively': 573974, 'almost exclusively at': 46643, 'exclusively at supermarket': 289711, 'at supermarket near': 100749, 'near you which': 553647, 'you which isle': 1022292, 'which isle suit': 986070, 'isle suit you': 454384, 'suit you socialdistancing': 817804, 'you socialdistancing socialdistancingpickuplines': 1021296, 'parent told': 641758, 'isolate both': 454829, 'both are': 135851, 'risk driving': 723499, 'driving home': 259948, 'home mum': 401636, 'be dropped': 114612, 'dropped off': 260603, 'fine catherine': 307619, 'catherine know': 167297, 'know everyone': 476368, 'in there': 429806, 'there please': 878936, 'in having': 423572, 'to fully': 906318, 'fully explain': 341043, 'explain self': 292116, 'isolation to': 455463, 'elderly parent': 270805, 'parent told to': 641759, 'told to self': 923761, 'self isolate both': 747666, 'isolate both are': 454830, 'both are at': 135853, 'at risk driving': 100353, 'risk driving home': 723500, 'driving home mum': 259950, 'home mum asked': 401637, 'mum asked to': 545880, 'asked to be': 95859, 'to be dropped': 901224, 'be dropped off': 114613, 'dropped off at': 260604, 'the supermarket it': 868653, 'supermarket it fine': 821168, 'it fine catherine': 458008, 'fine catherine know': 307620, 'catherine know everyone': 167298, 'know everyone in': 476369, 'everyone in there': 287051, 'in there please': 429815, 'there please tell': 878938, 'tell me not': 837016, 'me not alone': 523225, 'not alone in': 568159, 'alone in having': 46870, 'in having to': 423574, 'having to fully': 384347, 'to fully explain': 906320, 'fully explain self': 341044, 'explain self isolation': 292117, 'self isolation to': 747804, 'isolation to elderly': 455464, 'to elderly parent': 904976, 'overreaction': 631425, 'mundogonemado': 546074, 'suitenoticias': 817833, 'this fuss': 887665, 'fuss is': 342240, 'elderly but': 270622, 'the overreaction': 862787, 'overreaction is': 631428, 'making thing': 511451, 'thing worse': 885018, 'worse mundogonemado': 1010966, 'mundogonemado elderly': 546075, 'elderly australian': 270605, 'australian woman': 103578, 'woman left': 1003545, 'left cry': 485444, 'cry on': 219892, 'on empty': 600550, 'amid plea': 52598, 'plea to': 659561, 'food suitenoticias': 316908, 'all this fuss': 45108, 'this fuss is': 887666, 'fuss is supposed': 342241, 'supposed to protect': 827371, 'protect the elderly': 684969, 'the elderly but': 854115, 'elderly but the': 270623, 'but the overreaction': 147378, 'the overreaction is': 862788, 'overreaction is making': 631429, 'is making thing': 449558, 'making thing worse': 511455, 'thing worse mundogonemado': 885020, 'worse mundogonemado elderly': 1010967, 'mundogonemado elderly australian': 546076, 'elderly australian woman': 270606, 'australian woman left': 103579, 'woman left cry': 1003546, 'left cry on': 485445, 'cry on empty': 219894, 'on empty supermarket': 600552, 'shelf amid plea': 756707, 'amid plea to': 52599, 'plea to stop': 659568, 'stop hoarding food': 804729, 'hoarding food suitenoticias': 399314, 'marijuananews': 515734, 'marijuanaindustry': 515733, 'interesting update': 441644, 'consumer cannabis': 196727, 'cannabis behavior': 161384, '19 cannabisnews': 5633, 'cannabisnews marijuananews': 161476, 'marijuananews marijuanaindustry': 515735, 'interesting update on': 441645, 'update on consumer': 947110, 'on consumer cannabis': 600032, 'consumer cannabis behavior': 196728, 'cannabis behavior during': 161385, 'behavior during covid': 124008, 'covid 19 cannabisnews': 212758, '19 cannabisnews marijuananews': 5634, 'cannabisnews marijuananews marijuanaindustry': 161477, 'must ban': 546485, 'ban some': 109256, 'the user': 870574, 'user that': 950320, 'some price': 783633, 'are outrageous': 88895, 'must ban some': 546486, 'ban some of': 109257, 'of the user': 591579, 'the user that': 870576, 'user that are': 950321, 'that are selling': 842813, 'paper some price': 640806, 'some price are': 783634, 'price are outrageous': 672711, 'carinsurance': 164736, 'current public': 221328, 'pandemic premium': 636221, 'premium in': 669956, 'insurance market': 440770, 'market continue': 516217, 'up over': 945723, 'month according': 537520, 'latest figure': 481334, 'figure carinsurance': 305193, 'amid the current': 52690, 'the current public': 852653, 'current public health': 221329, 'health crisis and': 386322, 'crisis and global': 217024, 'and global pandemic': 63698, 'global pandemic premium': 352101, 'pandemic premium in': 636222, 'premium in the': 669957, 'the car insurance': 850381, 'car insurance market': 163148, 'insurance market continue': 440771, 'market continue to': 516218, 'to rise with': 913583, 'rise with price': 723075, 'with price up': 1000317, 'price up over': 677250, 'up over the': 945728, 'past three month': 643627, 'three month according': 893991, 'month according to': 537521, 'according to our': 28573, 'to our latest': 911200, 'our latest figure': 623662, 'latest figure carinsurance': 481335, 'for eating': 320929, 'eating well': 266335, 'well amp': 978009, 'amp helping': 53929, 'from don': 335190, 'panic purchase': 638443, 'purchase do': 689425, 'do plan': 249985, 'plan plant': 658203, 'plant seed': 658699, 'seed if': 746150, 'possible green': 665662, 'green especially': 363663, 'especially consider': 280451, 'consider buying': 194962, 'buying direct': 150186, 'direct from': 243328, 'farmer with': 299576, 'with donate': 998115, 'bank if': 109909, 'tip for eating': 898764, 'for eating well': 320932, 'eating well amp': 266336, 'well amp helping': 978010, 'amp helping others': 53931, 'helping others in': 391411, 'others in the': 621480, 'time of from': 897335, 'of from don': 583967, 'from don panic': 335192, 'don panic purchase': 253810, 'panic purchase do': 638445, 'purchase do plan': 689429, 'do plan plant': 249986, 'plan plant seed': 658204, 'plant seed if': 658700, 'seed if possible': 746151, 'if possible green': 414667, 'possible green especially': 665663, 'green especially consider': 363664, 'especially consider buying': 280452, 'consider buying direct': 194964, 'buying direct from': 150187, 'direct from farmer': 243330, 'from farmer with': 335418, 'farmer with donate': 299577, 'with donate to': 998116, 'donate to food': 254255, 'food bank if': 313586, 'bank if you': 109910, 'newcastle': 560033, 'dawkins': 227039, 'shopkeeper in': 761182, 'in newcastle': 425837, 'newcastle city': 560034, 'city centre': 179092, 'centre exposed': 169489, 'exposed for': 292851, 'at extortionate': 98598, 'price anyone': 672597, 'anyone profiting': 80470, 'coronavirus should': 206762, 'themselves jack': 876845, 'jack dawkins': 464105, 'shopkeeper in newcastle': 761183, 'in newcastle city': 425838, 'newcastle city centre': 560035, 'city centre exposed': 179093, 'centre exposed for': 169490, 'exposed for selling': 292852, 'for selling hand': 325443, 'sanitizer at extortionate': 734506, 'at extortionate price': 98599, 'extortionate price anyone': 293388, 'price anyone profiting': 672599, 'anyone profiting from': 80471, 'profiting from coronavirus': 683120, 'from coronavirus should': 335021, 'coronavirus should be': 206763, 'be ashamed of': 113697, 'of themselves jack': 591785, 'themselves jack dawkins': 876846, 'you checked': 1017936, 'checked this': 174774, 'have you checked': 383660, 'you checked this': 1017939, 'checked this out': 174775, 'overturn': 631658, 'and selfish': 71190, 'selfish parent': 748199, 'parent have': 641640, 'to overturn': 911326, 'overturn ban': 631659, 'ban on': 109224, 'on buying': 599755, 'paper parenting': 640578, 'parenting self': 641802, 'greedy and selfish': 363474, 'and selfish parent': 71196, 'selfish parent have': 748200, 'parent have been': 641641, 'have been using': 379735, 'been using their': 122317, 'using their child': 950723, 'their child to': 872776, 'child to overturn': 176233, 'to overturn ban': 911327, 'overturn ban on': 631660, 'ban on buying': 109226, 'on buying toilet': 599759, 'toilet paper parenting': 921387, 'paper parenting self': 640579, 'parenting self isolation': 641803, 'will triple': 995237, 'triple worker': 932273, 'worker annual': 1006355, 'annual bonus': 77387, 'bonus thank': 134402, 'effort during': 269505, 'crisis full': 217406, 'time worker': 898378, 'get bonus': 346688, 'bonus on': 134386, 'on earnings': 600460, 'earnings for': 264905, '12 month': 2897, 'supermarket chain say': 819633, 'chain say it': 171086, 'it will triple': 462450, 'will triple worker': 995238, 'triple worker annual': 932274, 'worker annual bonus': 1006356, 'annual bonus thank': 77389, 'bonus thank you': 134403, 'you for their': 1018678, 'for their effort': 326819, 'their effort during': 873106, 'effort during the': 269507, 'the crisis full': 852383, 'crisis full time': 217408, 'full time worker': 340950, 'time worker will': 898380, 'worker will get': 1008249, 'will get bonus': 993498, 'get bonus on': 346689, 'bonus on earnings': 134387, 'on earnings for': 600461, 'earnings for the': 264907, 'next 12 month': 561259, 'underrated': 940551, 'underrated tweet': 940556, 'tweet listen': 936378, 'listen up': 494763, 'up uk': 946492, 'uk stophoarding': 938746, 'stophoarding toiletpaperapocalypse': 805510, 'underrated tweet listen': 940558, 'tweet listen up': 936379, 'listen up uk': 494766, 'up uk stophoarding': 946493, 'uk stophoarding toiletpaperapocalypse': 938747, 'asshats': 96495, 'these little': 880240, 'little asshats': 495240, 'asshats should': 96497, 'big trouble': 130084, 'these little asshats': 880241, 'little asshats should': 495241, 'asshats should be': 96498, 'be in big': 115392, 'in big trouble': 420831, 'kopn': 477438, 'spawned': 787661, 'vr': 960727, 'kopn covid': 477441, 'just spawned': 469837, 'spawned mass': 787662, 'mass market': 519807, 'for vr': 327595, 'vr not': 960743, 'but consumer': 145445, 'new world': 559898, 'world post': 1009905, 'very different': 955105, 'people being': 647264, 'being more': 125438, 'need vr': 556166, 'vr technology': 960749, 'technology for': 836300, 'for mental': 323408, 'and productivity': 69584, 'productivity remote': 682320, 'remote work': 710738, 'work kopn': 1005414, 'kopn and': 477439, 'and boe': 59044, 'boe own': 133926, 'own vr': 632293, 'kopn covid 19': 477442, '19 just spawned': 8207, 'just spawned mass': 469838, 'spawned mass market': 787663, 'mass market for': 519808, 'market for vr': 516415, 'for vr not': 327597, 'vr not just': 960744, 'just the government': 470002, 'the government but': 856513, 'government but consumer': 359954, 'but consumer market': 145450, 'consumer market the': 198102, 'market the new': 517195, 'the new world': 861585, 'new world post': 559904, 'world post coronavirus': 1009907, 'post coronavirus will': 666069, 'coronavirus will be': 207082, 'will be very': 992758, 'be very different': 117973, 'very different people': 955115, 'different people being': 242020, 'people being more': 647267, 'being more at': 125439, 'more at home': 538665, 'at home will': 99173, 'home will need': 402509, 'will need vr': 994152, 'need vr technology': 556167, 'vr technology for': 960750, 'technology for mental': 836303, 'for mental health': 323409, 'mental health and': 528636, 'health and productivity': 386151, 'and productivity remote': 69585, 'productivity remote work': 682321, 'remote work kopn': 710741, 'work kopn and': 1005415, 'kopn and boe': 477440, 'and boe own': 59045, 'boe own vr': 133927, 'jacob': 464220, 'driebergen': 258740, '1436': 3573, '1509': 3953, '1502': 3951, 'jacob van': 464221, 'van driebergen': 952295, 'driebergen 1436': 258741, '1436 1509': 3574, '1509 prepared': 3954, 'for he': 322142, 'he stocked': 385478, 'and hoarded': 64636, 'hoarded lot': 398953, 'his is': 397548, 'is part': 450802, 'this image': 888006, 'image 1502': 416617, '1502 coll': 3952, 'jacob van driebergen': 464222, 'van driebergen 1436': 952296, 'driebergen 1436 1509': 258742, '1436 1509 prepared': 3575, '1509 prepared for': 3955, 'prepared for he': 670196, 'for he stocked': 322143, 'he stocked up': 385479, 'stocked up and': 803433, 'up and hoarded': 944335, 'and hoarded lot': 64639, 'hoarded lot of': 398954, 'lot of his': 504203, 'of his is': 584656, 'his is part': 397550, 'is part of': 450803, 'part of this': 642390, 'of this image': 591988, 'this image 1502': 888007, 'image 1502 coll': 416618, 'motion': 543253, 'after pressure': 36064, 'worker organized': 1007512, 'la board': 478129, 'of supervisor': 590463, 'supervisor approved': 824391, 'approved motion': 83178, 'motion last': 543266, 'week intended': 976400, 'protect retail': 684937, 'grocery drug': 364477, 'worker via': 1008102, 'after pressure from': 36065, 'pressure from worker': 671167, 'from worker organized': 338423, 'worker organized the': 1007513, 'organized the la': 619480, 'the la board': 858873, 'la board of': 478130, 'board of supervisor': 133659, 'of supervisor approved': 590464, 'supervisor approved motion': 824392, 'approved motion last': 83179, 'motion last week': 543267, 'last week intended': 480656, 'week intended to': 976401, 'intended to protect': 441059, 'to protect retail': 912327, 'protect retail grocery': 684938, 'retail grocery drug': 718155, 'grocery drug store': 364478, 'drug store and': 261085, 'delivery worker via': 234781, 'naturalhair': 552897, 'camouflaging': 157161, 'wolverine': 1003387, 'brow': 141217, 'darnyourona': 226033, 'hopefully my': 403868, 'my naturalhair': 549412, 'naturalhair camouflaging': 552898, 'camouflaging my': 157162, 'my wolverine': 550629, 'wolverine brow': 1003388, 'brow could': 141218, 'grocery pickup': 364854, 'pickup so': 656019, 'so for': 777108, 'year have': 1014608, 'grocery darnyourona': 364417, 'hopefully my naturalhair': 403869, 'my naturalhair camouflaging': 549413, 'naturalhair camouflaging my': 552899, 'camouflaging my wolverine': 157163, 'my wolverine brow': 550630, 'wolverine brow could': 1003389, 'brow could not': 141219, 'not get slot': 569607, 'get slot for': 348018, 'slot for grocery': 774181, 'for grocery pickup': 322046, 'grocery pickup so': 364857, 'pickup so for': 656022, 'so for the': 777112, 'in year have': 431023, 'year have to': 1014612, 'the store to': 868127, 'to get all': 906407, 'of my grocery': 586774, 'my grocery darnyourona': 548571, 'work labor': 1005416, 'labor pandemic': 478427, '19 worker': 12175, 'more valuable': 540886, 'valuable than': 952049, 'than ceo': 840443, 'work labor pandemic': 1005417, 'labor pandemic 19': 478428, 'pandemic 19 worker': 634773, '19 worker are': 12176, 'worker are more': 1006404, 'are more valuable': 88126, 'more valuable than': 540887, 'valuable than ceo': 952050, 'clinician': 182336, 'hipaa': 396942, 'for clinician': 320131, 'clinician who': 182339, 'who wish': 990016, 'patient without': 644316, 'of hipaa': 584639, 'hipaa sanction': 396947, 'sanction thanks': 733642, 'to general': 906394, 'public virtual': 688455, 'virtual care': 957722, 'news for clinician': 560428, 'for clinician who': 320132, 'clinician who wish': 182340, 'who wish to': 990017, 'wish to treat': 996839, 'to treat patient': 917754, 'treat patient without': 930869, 'patient without risk': 644319, 'risk of hipaa': 723754, 'of hipaa sanction': 584640, 'hipaa sanction thanks': 396948, 'sanction thanks to': 733643, 'thanks to general': 842227, 'to general public': 906395, 'general public virtual': 345463, 'public virtual care': 688456, 'michigan unemployment': 530384, 'unemployment newly': 941253, 'newly eligible': 560104, 'eligible worker': 271438, 'can apply': 157522, 'apply online': 82581, 'online starting': 609420, 'starting monday': 794975, 'monday at': 536255, '8am michigan': 23140, 'unemployment website': 941315, 'website all': 975182, 'all morning': 43518, 'michigan unemployment newly': 530386, 'unemployment newly eligible': 941254, 'newly eligible worker': 560105, 'eligible worker can': 271439, 'worker can apply': 1006583, 'can apply online': 157524, 'apply online starting': 82583, 'online starting monday': 609421, 'starting monday at': 794976, 'monday at 8am': 536258, 'at 8am michigan': 97784, '8am michigan unemployment': 23141, 'michigan unemployment website': 530387, 'unemployment website all': 941316, 'website all morning': 975183, 'sacdamediaadvisory': 729029, 'sacdamediaadvisory covid': 729030, 'gouging alert': 359236, 'alert whenever': 41545, 'whenever federal': 984654, 'federal state': 302054, 'state or': 795838, 'or local': 615986, 'local authority': 497714, 'authority declare': 103703, 'declare state': 231204, 'emergency it': 272762, 'is unlawful': 453519, 'unlawful to': 942562, 'essential consumer': 280939, 'the existing': 854693, 'existing price': 290339, 'sacdamediaadvisory covid 19': 729031, 'crisis and price': 217041, 'and price gouging': 69451, 'price gouging alert': 674254, 'gouging alert whenever': 359237, 'alert whenever federal': 41546, 'whenever federal state': 984655, 'federal state or': 302058, 'state or local': 795839, 'or local authority': 615987, 'local authority declare': 497716, 'authority declare state': 103704, 'declare state of': 231205, 'of emergency it': 583040, 'emergency it is': 272763, 'it is unlawful': 459115, 'is unlawful to': 453520, 'unlawful to raise': 942563, 'raise price for': 695917, 'price for essential': 673957, 'for essential consumer': 321097, 'essential consumer good': 280940, 'and service by': 71298, 'service by more': 752198, 'than 10 of': 840149, '10 of the': 1573, 'of the existing': 591003, 'the existing price': 854694, 'gone absolutely': 356186, 'absolutely fucking': 27363, 'fucking mad': 339936, 'mad because': 507528, 'this no': 889149, 'shelf dickhead': 756982, 'dickhead panic': 240487, 'need we': 556178, 'get fuck': 347117, 'this world ha': 891511, 'ha gone absolutely': 370719, 'gone absolutely fucking': 356187, 'absolutely fucking mad': 27364, 'fucking mad because': 339937, 'mad because of': 507530, 'of this no': 592015, 'this no food': 889151, 'the shelf dickhead': 866831, 'shelf dickhead panic': 756983, 'dickhead panic buying': 240488, 'panic buying more': 637813, 'buying more than': 150734, 'more than they': 540685, 'than they need': 841302, 'they need we': 882768, 'need we have': 556185, 'have no food': 381628, 'no food in': 564258, 'food in and': 314924, 'in and can': 420355, 'and can not': 59462, 'can not get': 159046, 'not get fuck': 569589, 'get fuck all': 347118, 'fuck all because': 339514, 'all because of': 42152, 'because of these': 119416, 'primary': 678062, 'giveblood': 350926, 'thanked for': 841871, 'for successful': 325968, 'successful democratic': 816234, 'democratic primary': 236765, 'primary plus': 678083, 'plus emergency': 661592, 'during spread': 263040, 'spread he': 790561, 'give blood': 350416, 'blood give': 133113, 'blood giveblood': 133115, 'thanked for successful': 841872, 'for successful democratic': 325969, 'successful democratic primary': 816235, 'democratic primary plus': 236766, 'primary plus emergency': 678084, 'plus emergency and': 661593, 'emergency and grocery': 272601, 'store worker during': 811486, 'worker during spread': 1006818, 'during spread he': 263041, 'spread he say': 790562, 'he say give': 385392, 'say give blood': 738676, 'give blood give': 350417, 'blood give blood': 133114, 'give blood giveblood': 350418, 'depressed': 237571, 'fatalistic': 300235, 'else start': 271892, 'feel depressed': 302607, 'depressed and': 237572, 'and fatalistic': 62714, 'fatalistic between': 300236, 'entail from': 278220, 'store shortage': 810144, 'shortage to': 765271, 'economic collapse': 267011, 'collapse with': 186076, 'of losing': 586019, 'anyone else start': 80292, 'else start to': 271893, 'start to feel': 794582, 'to feel depressed': 905747, 'feel depressed and': 302608, 'depressed and fatalistic': 237573, 'and fatalistic between': 62715, 'fatalistic between the': 300237, 'between the threat': 128936, 'threat of social': 893701, 'distancing and all': 246962, 'and all that': 57895, 'all that entail': 44637, 'that entail from': 843717, 'entail from grocery': 278221, 'grocery store shortage': 365769, 'store shortage to': 810148, 'shortage to the': 765272, 'to the possibility': 916967, 'the possibility of': 864069, 'possibility of economic': 665544, 'of economic collapse': 582951, 'economic collapse with': 267014, 'collapse with so': 186078, 'many people at': 514489, 'risk of losing': 723762, 'of losing their': 586021, 'job it hard': 465919, 'hard to stay': 378092, 'to stay positive': 915307, 'together nice': 920876, 'nice collection': 562375, 'collection of': 186449, 'of house': 584784, 'price register': 676149, 'register since': 707606, 'january via': 464692, 'good for to': 357093, 'for to put': 327229, 'to put together': 912622, 'put together nice': 690943, 'together nice collection': 920877, 'nice collection of': 562376, 'collection of house': 186450, 'of house sale': 584790, 'house sale price': 406545, 'sale price that': 732466, 'have been in': 379577, 'been in the': 121363, 'estate price register': 282184, 'price register since': 676150, 'register since january': 707608, 'since january via': 770682, 'what cruel': 981288, 'cruel act': 219664, 'commit karma': 188971, 'karma is': 470946, 'real all': 701023, 'all don': 42615, 'what cruel act': 981289, 'cruel act to': 219665, 'act to commit': 29796, 'to commit karma': 903081, 'commit karma is': 188972, 'karma is real': 470948, 'is real all': 451259, 'real all don': 701025, 'all don be': 42616, 'don be like': 253363, 'be like this': 115750, 'firefighter are': 308199, 'are personally': 89071, 'personally going': 653029, 'firefighter are personally': 308200, 'are personally going': 89072, 'personally going to': 653030, 'store to purchase': 810804, 'purchase grocery and': 689479, 'grocery and other': 364251, 'essential good for': 281092, 'good for senior': 357088, 'senior and others': 750206, 'and others at': 68436, 'others at high': 621292, 'many elderly': 514025, 'out stayhome': 627247, 'grocery store too': 365877, 'store too many': 810912, 'too many elderly': 924886, 'many elderly people': 514026, 'elderly people out': 270831, 'people out stayhome': 649026, 'canadacovid19': 160618, 'coronacrisis canada': 204541, 'canada canadacovid19': 160384, 'store staff who': 810335, 'staff who keep': 793089, 'who keep going': 989151, 'keep going into': 471545, 'going into work': 355250, 'into work during': 443302, 'during this we': 263336, 'this we appreciate': 891142, 'appreciate you coronacrisis': 82782, 'you coronacrisis canada': 1018054, 'coronacrisis canada canadacovid19': 204542, 'grapple': 362186, 'bull': 142400, 'transitioned': 929687, 'bear': 118391, 'financialplanning': 306707, 'community grapple': 189869, 'grapple with': 362191, 'pandemic beast': 634983, 'beast known': 118489, 'known covid': 477206, 'the robust': 865946, 'robust bull': 724833, 'bull market': 142405, 'that began': 842965, 'began in': 123389, 'of 2009': 579465, '2009 ha': 13712, 'ha transitioned': 372355, 'transitioned into': 929688, 'into bear': 442424, 'bear market': 118409, '2020 financialplanning': 14308, 'global community grapple': 351787, 'community grapple with': 189870, 'grapple with the': 362197, 'the pandemic beast': 862915, 'pandemic beast known': 634984, 'beast known covid': 118490, 'known covid 19': 477207, 'store shortage and': 810145, 'shortage and quarantine': 764826, 'and quarantine the': 69861, 'quarantine the robust': 692612, 'the robust bull': 865947, 'robust bull market': 724834, 'bull market that': 142407, 'market that began': 517175, 'that began in': 842966, 'began in march': 123393, 'in march of': 425111, 'march of 2009': 515422, 'of 2009 ha': 579466, '2009 ha transitioned': 13713, 'ha transitioned into': 372356, 'transitioned into bear': 929689, 'into bear market': 442425, 'bear market of': 118411, 'market of march': 516779, 'march 2020 financialplanning': 515157, 'mustard': 547016, 'the mustard': 861162, 'mustard seed': 547025, 'seed ministry': 746152, 'ministry provide': 533559, 'provide food': 686301, 'food box': 313772, 'box and': 137007, 'necessity during': 554201, 'crisis their': 218196, 'their demand': 872997, 'the mustard seed': 861163, 'mustard seed ministry': 547026, 'seed ministry provide': 746153, 'ministry provide food': 533560, 'provide food box': 686304, 'food box and': 313773, 'box and other': 137010, 'and other necessity': 68369, 'other necessity during': 620568, 'necessity during the': 554202, '19 crisis their': 6335, 'crisis their demand': 218197, 'their demand ha': 872998, 'shortly': 765380, 'about bill': 24881, 'bill during': 130560, 'our insurer': 623569, 'insurer on': 440892, 'relief option': 709407, 'option and': 613979, 'discount we': 244564, 'will contact': 993002, 'contact our': 200168, 'customer shortly': 222850, 'shortly to': 765391, 'we know you': 972167, 'know you are': 477081, 'concerned about bill': 193150, 'about bill during': 24882, 'bill during covid': 130561, '19 and we': 5133, 'working with our': 1009066, 'with our insurer': 999999, 'our insurer on': 623570, 'insurer on relief': 440893, 'on relief option': 603138, 'relief option and': 709408, 'option and discount': 613980, 'and discount we': 61410, 'discount we will': 244567, 'we will contact': 973845, 'will contact our': 993003, 'contact our customer': 200169, 'our customer shortly': 622674, 'customer shortly to': 222851, 'shortly to let': 765392, 'let you know': 487216, 'know how we': 476464, 'how we can': 409167, 'socal': 779393, 'nbcla': 553245, 'socal community': 779394, 'community organization': 190022, 'organization are': 619342, 'for critical': 320453, 'critical service': 218653, 'pandemic nbcla': 636011, 'nbcla partner': 553246, 'partner with': 642901, 'fund if': 341430, 'can give': 158475, 'give please': 350650, 'checkout in': 174932, 'socal community organization': 779395, 'community organization are': 190023, 'organization are struggling': 619345, 'meet demand for': 527467, 'demand for critical': 235397, 'for critical service': 320460, 'critical service during': 218654, 'service during the': 752316, 'the pandemic nbcla': 863030, 'pandemic nbcla partner': 636012, 'nbcla partner with': 553247, 'partner with in': 642905, 'with in support': 998966, 'of the emergency': 590979, 'the emergency fund': 854226, 'emergency fund if': 272723, 'fund if you': 341431, 'you can give': 1017683, 'can give please': 158480, 'give please donate': 350651, 'please donate at': 659929, 'donate at checkout': 254160, 'at checkout in': 98248, 'checkout in store': 174935, 'announce partnership': 76858, 'partnership to': 642941, 'to enable': 905039, 'enable access': 275418, 'amp beverage': 53452, 'consumer collaboration': 196808, 'collaboration is': 185928, 'to success': 915722, 'success to': 816220, 'announce partnership to': 76859, 'partnership to enable': 642942, 'to enable access': 905040, 'enable access to': 275419, 'essential food amp': 281038, 'food amp beverage': 313129, 'amp beverage product': 53453, 'product to consumer': 681742, 'to consumer collaboration': 903279, 'consumer collaboration is': 196809, 'collaboration is key': 185929, 'key to success': 473446, 'to success to': 915723, 'success to ensure': 816221, 'littleproudmp': 495676, 'thei': 872407, 'littleproudmp another': 495677, 'another point': 77763, 'point sense': 662614, 'sense consumer': 750504, 'are fearful': 86506, 'fearful of': 301459, 'supermarket closure': 819727, 'closure due': 183876, 'infection had': 436766, 'had better': 372919, 'better stock': 128494, 'up while': 946592, 'open it': 612338, 'closed tomorrow': 183408, 'tomorrow border': 924044, 'border are': 135218, 'shut business': 767789, 'shutting thei': 768293, 'littleproudmp another point': 495678, 'another point sense': 77764, 'point sense consumer': 662615, 'sense consumer are': 750505, 'consumer are fearful': 196294, 'are fearful of': 86508, 'fearful of supermarket': 301461, 'of supermarket closure': 590417, 'supermarket closure due': 819728, 'closure due to': 183877, '19 infection had': 7852, 'infection had better': 436767, 'had better stock': 372921, 'better stock up': 128495, 'stock up while': 803133, 'up while the': 946598, 'while the supermarket': 987418, 'supermarket is open': 821109, 'is open it': 450570, 'open it may': 612341, 'it may be': 459548, 'be closed tomorrow': 114136, 'closed tomorrow border': 183409, 'tomorrow border are': 924045, 'border are being': 135219, 'are being shut': 84921, 'being shut business': 125787, 'shut business are': 767790, 'are shutting thei': 90103, 'british study': 140602, 'study terrifying': 814963, 'terrifying after': 838521, 'after two': 36460, 'two minute': 937056, 'minute cough': 533753, 'one isle': 606534, 'isle of': 454375, 'supermarket travel': 823537, 'travel over': 930459, 'next isle': 561417, 'isle and': 454343, 'and hang': 64165, 'hang there': 376944, 'british study terrifying': 140603, 'study terrifying after': 814964, 'terrifying after two': 838522, 'after two minute': 36463, 'two minute cough': 937057, 'minute cough in': 533754, 'cough in one': 208483, 'in one isle': 426148, 'one isle of': 606535, 'isle of supermarket': 454377, 'of supermarket travel': 590454, 'supermarket travel over': 823538, 'travel over to': 930460, 'to the next': 916901, 'the next isle': 861673, 'next isle and': 561418, 'isle and hang': 454344, 'and hang there': 64168, 'containing': 200575, 'preventative': 671772, '08162453243': 1133, 'schael': 741415, 'place it': 657530, 'it effort': 457771, 'effort on': 269565, 'on containing': 600093, 'containing the': 200593, 'take preventative': 832522, 'preventative measure': 671773, 'burden for': 142743, 'on size': 603491, 'order contact': 618148, 'contact 08162453243': 199987, '08162453243 email': 1134, 'email schael': 272295, 'schael com': 741416, 'the place it': 863769, 'place it effort': 657533, 'it effort on': 457772, 'effort on containing': 269566, 'on containing the': 600094, 'containing the spread': 200594, 'of 19 let': 579401, '19 let take': 8317, 'let take preventative': 487105, 'take preventative measure': 832523, 'preventative measure to': 671778, 'measure to alleviate': 525382, 'alleviate the burden': 45824, 'the burden for': 850124, 'burden for more': 142744, 'information on size': 437923, 'on size and': 603492, 'size and price': 772760, 'and price or': 69467, 'price or to': 675795, 'or to place': 617474, 'to place an': 911748, 'an order contact': 56694, 'order contact 08162453243': 618149, 'contact 08162453243 email': 199988, '08162453243 email schael': 1135, 'email schael com': 272296, 'cornteen': 203744, 'game called': 343144, 'called hot': 156345, 'hot or': 405037, 'covid edition': 214153, 'edition when': 268650, 'when im': 983586, 'im at': 416508, 'to guess': 907065, 'guess if': 367985, 'is hot': 448561, 'not under': 572307, 'under their': 940342, 'their face': 873219, 'mask cornteen': 518539, 'like to play': 491611, 'to play game': 911791, 'play game called': 659155, 'game called hot': 343145, 'called hot or': 156346, 'hot or not': 405038, 'or not covid': 616292, 'not covid edition': 568913, 'covid edition when': 214154, 'edition when im': 268651, 'when im at': 983587, 'im at the': 416510, 'store try to': 810966, 'try to guess': 934630, 'to guess if': 907066, 'guess if someone': 367986, 'if someone is': 414855, 'someone is hot': 784530, 'is hot or': 448562, 'or not under': 616317, 'not under their': 572310, 'under their face': 940343, 'their face mask': 873223, 'face mask cornteen': 294529, 'working so': 1008913, 'sure everyone': 827539, 'everyone get': 286929, 'them it': 875951, 'their fault': 873285, 'fault we': 300427, 'supply corona': 825105, 'employee for working': 273870, 'for working so': 327955, 'working so hard': 1008914, 'so hard to': 777255, 'make sure everyone': 510511, 'sure everyone get': 827542, 'everyone get what': 286932, 'they need please': 882753, 'need please be': 555437, 'kind to them': 475014, 'to them it': 917303, 'them it not': 875956, 'it not their': 459928, 'not their fault': 572051, 'their fault we': 873292, 'fault we re': 300428, 'on supply corona': 603821, 'extreme circumstance': 293783, 'circumstance often': 178736, 'often inspire': 596218, 'inspire innovation': 439822, 'innovation one': 438891, 'one current': 606135, 'current example': 221192, 'example is': 288908, 'the pivot': 863758, 'pivot by': 657075, 'by distiller': 152373, 'distiller from': 247704, 'making spirit': 511360, 'sanitizer report': 735649, 'extreme circumstance often': 293786, 'circumstance often inspire': 178737, 'often inspire innovation': 596219, 'inspire innovation one': 439823, 'innovation one current': 438892, 'one current example': 606136, 'current example is': 221193, 'example is the': 288909, 'is the pivot': 452894, 'the pivot by': 863759, 'pivot by distiller': 657076, 'by distiller from': 152374, 'distiller from making': 247705, 'from making spirit': 336314, 'making spirit to': 511361, 'hand sanitizer report': 375564, 'come one': 187455, 'one come': 606076, 'come all': 187196, 'huge floor': 410043, 'floor model': 310823, 'model on': 535290, 'offer we': 594885, 'best brand': 127601, 'brand at': 137762, 'miss it': 534155, 'come sleep': 187509, 'sleep better': 773760, 'better today': 128571, 'today 19': 919126, 'come one come': 187456, 'one come all': 606077, 'come all because': 187197, 'all because we': 42155, 'we have huge': 971840, 'have huge floor': 380994, 'huge floor model': 410044, 'floor model on': 310825, 'model on offer': 535291, 'on offer we': 602481, 'offer we have': 594886, 'we have the': 971960, 'have the best': 382962, 'the best brand': 849493, 'best brand at': 127602, 'brand at the': 137763, 'best price do': 127864, 'not miss it': 570586, 'miss it come': 534157, 'it come sleep': 457211, 'come sleep better': 187510, 'sleep better today': 773761, 'better today 19': 128572, 'geez': 345047, 'people geez': 648035, 'geez 65': 345048, '65 year': 21385, 'tackled after': 831626, 'with people geez': 1000148, 'people geez 65': 648036, 'geez 65 year': 345049, '65 year old': 21386, 'old man tackled': 598352, 'man tackled after': 512260, 'tackled after allegedly': 831627, 'allegedly coughing and': 45683, 'spitting on supermarket': 789606, 'tumble': 935291, '77': 22272, 'are set': 90002, 'to tumble': 917830, 'tumble again': 935294, 'tomorrow price': 924164, 'pump will': 689109, 'be 77': 113435, '77 cent': 22280, 'litre in': 495163, 'toronto say': 925987, 'say full': 738660, 'price are set': 672732, 'are set to': 90003, 'set to tumble': 753538, 'to tumble again': 917831, 'tumble again tomorrow': 935295, 'again tomorrow price': 37242, 'tomorrow price at': 924165, 'the pump will': 864908, 'pump will be': 689110, 'will be 77': 992338, 'be 77 cent': 113436, '77 cent per': 22281, 'per litre in': 650926, 'litre in toronto': 495165, 'in toronto say': 430213, 'toronto say full': 925988, 'say full story': 738661, 'full story on': 340901, '7038': 21943, '97': 23676, 'stole': 804261, 'emergency month': 272811, 'since tracking': 770947, 'tracking covid': 928329, 'case 7038': 165601, '7038 death': 21944, 'death 97': 229950, '97 we': 23687, 're shutting': 699512, 'down our': 257065, 'country because': 210503, 'this seasonal': 889995, 'seasonal flu': 743466, 'flu kill': 311430, 'kill 400': 474324, '400 citizen': 18725, 'citizen every': 178893, 'week who': 977242, 'who stole': 989692, 'stole our': 804276, 'our reason': 624550, 'is the emergency': 452785, 'the emergency month': 854231, 'emergency month since': 272812, 'month since tracking': 538005, 'since tracking covid': 770948, 'tracking covid 19': 928330, '19 case 7038': 5662, 'case 7038 death': 165602, '7038 death 97': 21945, 'death 97 we': 229951, '97 we re': 23688, 'we re shutting': 972964, 're shutting down': 699513, 'shutting down our': 768273, 'down our country': 257066, 'our country because': 622582, 'country because of': 210504, 'of this seasonal': 592032, 'this seasonal flu': 889996, 'seasonal flu kill': 743468, 'flu kill 400': 311432, 'kill 400 citizen': 474325, '400 citizen every': 18727, 'citizen every week': 178894, 'every week who': 286369, 'week who stole': 977244, 'who stole our': 989693, 'stole our reason': 804277, 'measles': 525062, 'pox': 667857, 'apollo': 81615, 'tuber': 935054, 'spice': 789200, 'bush': 143132, 'kill him': 474414, 'like measles': 490764, 'measles chicken': 525063, 'chicken pox': 175841, 'pox apollo': 667858, 'apollo like': 81616, '19 contagious': 6008, 'disease keep': 245173, 'your self': 1025700, 'self safe': 747895, 'safe but': 729526, 'if contact': 413988, 'contact it': 200114, 'panic will': 638790, 'soon get': 785721, 'get well': 348612, 'well eat': 978216, 'eat natural': 265993, 'food root': 316248, 'root tuber': 726020, 'tuber vegetable': 935055, 'fruit spice': 339150, 'spice flower': 789203, 'flower nut': 311315, 'nut bean': 577656, 'bean fish': 118318, 'fish bush': 309297, 'disease that will': 245250, 'will kill him': 993913, 'kill him her': 474415, 'him her like': 396624, 'her like measles': 392165, 'like measles chicken': 490765, 'measles chicken pox': 525064, 'chicken pox apollo': 175842, 'pox apollo like': 667859, 'apollo like covid': 81617, 'covid 19 contagious': 212848, '19 contagious disease': 6009, 'contagious disease keep': 200433, 'disease keep your': 245175, 'keep your self': 472284, 'your self safe': 1025705, 'self safe but': 747896, 'safe but if': 729527, 'but if contact': 145987, 'if contact it': 413989, 'contact it do': 200115, 'not panic will': 570947, 'panic will soon': 638793, 'will soon get': 994894, 'soon get well': 785723, 'get well eat': 348614, 'well eat natural': 978217, 'eat natural food': 265994, 'natural food root': 552828, 'food root tuber': 316249, 'root tuber vegetable': 726021, 'tuber vegetable fruit': 935056, 'vegetable fruit spice': 953994, 'fruit spice flower': 339151, 'spice flower nut': 789204, 'flower nut bean': 311316, 'nut bean fish': 577657, 'bean fish bush': 118319, 'were driven': 979542, 'driven to': 259368, 'two decade': 936871, 'decade after': 230659, 'and market': 66701, 'share battle': 754941, 'battle between': 112784, 'and watch': 75220, 'oil price were': 597318, 'price were driven': 677444, 'were driven to': 979543, 'driven to their': 259369, 'lowest in two': 506179, 'in two decade': 430356, 'two decade after': 936872, 'decade after the': 230660, 'after the spread': 36356, 'of the and': 590790, 'the and market': 848707, 'and market share': 66712, 'market share battle': 517048, 'share battle between': 754942, 'battle between and': 112785, 'between and watch': 128723, 'and watch this': 75227, 'this video to': 890988, 'video to know': 956933, 'to know how': 908981, 'know how it': 476446, 'how it happened': 408131, 'farmland': 299666, 'softened': 781502, 'canadian farmland': 160679, 'farmland price': 299669, 'price softened': 676547, 'softened in': 781503, 'that before': 842962, 'before any': 122635, 'any impact': 79341, 'pandemic for': 635446, 'more detail': 539011, 'detail visit': 239265, 'visit farm': 959246, 'farm credit': 299104, 'credit canada': 216324, 'canada website': 160608, 'canadian farmland price': 160680, 'farmland price softened': 299671, 'price softened in': 676548, 'softened in 2019': 781504, 'in 2019 and': 419800, '2019 and that': 13938, 'and that before': 73182, 'that before any': 842963, 'before any impact': 122637, 'any impact from': 79342, 'impact from the': 417667, '19 pandemic for': 9332, 'pandemic for more': 635448, 'for more detail': 323568, 'more detail visit': 539027, 'detail visit farm': 239266, 'visit farm credit': 959247, 'farm credit canada': 299105, 'credit canada website': 216325, 'be with': 118115, 'someone whose': 784775, 'whose money': 990660, 'money you': 537193, 'help manage': 390041, 'manage due': 512386, 'to prevention': 912105, 'prevention tactic': 671891, 'tactic like': 831702, 'like social': 491208, 'bureau cfpb': 142774, 'cfpb provides': 170359, 'provides few': 686844, 'you are unable': 1017274, 'unable to be': 939321, 'to be with': 901637, 'be with someone': 118120, 'with someone whose': 1000882, 'someone whose money': 784776, 'whose money you': 990661, 'money you help': 537198, 'you help manage': 1019196, 'help manage due': 390042, 'manage due to': 512387, 'due to prevention': 261912, 'to prevention tactic': 912107, 'prevention tactic like': 671892, 'tactic like social': 831703, 'like social distancing': 491209, 'distancing and quarantine': 246991, 'quarantine the consumer': 692609, 'protection bureau cfpb': 685360, 'bureau cfpb provides': 142777, 'cfpb provides few': 170360, 'provides few tip': 686845, 'still find': 800530, 'it mental': 459601, 'mental that': 528664, 'that queueing': 845928, 'queueing meter': 694174, 'human to': 410637, 'life now': 488913, 'now socialdistancing': 575856, 'still find it': 800531, 'find it mental': 306999, 'it mental that': 459602, 'mental that queueing': 528665, 'that queueing meter': 845929, 'queueing meter apart': 694175, 'meter apart from': 529686, 'apart from other': 81269, 'from other human': 336729, 'other human to': 620381, 'human to get': 410639, 'into supermarket is': 443047, 'supermarket is our': 821112, 'is our life': 450628, 'our life now': 623730, 'life now socialdistancing': 488914, 'fundamentally': 341563, 'evan': 283738, 'not fundamentally': 569561, 'fundamentally changed': 341568, 'changed our': 172522, 'or many': 616062, 'life basic': 488518, 'necessity we': 554290, 'we simply': 973325, 'simply panic': 770258, 'bought prof': 136689, 'prof evan': 682346, 'evan fraser': 283739, 'fraser amp': 331206, 'amp on': 54218, 'canada food': 160434, 'we have not': 971878, 'have not fundamentally': 381681, 'not fundamentally changed': 569562, 'fundamentally changed our': 341570, 'changed our demand': 172523, 'paper or many': 640553, 'or many of': 616063, 'many of life': 514378, 'of life basic': 585817, 'life basic necessity': 488519, 'basic necessity we': 112005, 'necessity we simply': 554291, 'we simply panic': 973326, 'simply panic bought': 770259, 'panic bought prof': 637432, 'bought prof evan': 136690, 'prof evan fraser': 682347, 'evan fraser amp': 283740, 'fraser amp on': 331207, 'amp on canada': 54220, 'on canada food': 599793, 'canada food supply': 160436, 'the get': 856238, 'my lawn': 548993, 'lawn guy': 482504, 'guy but': 368937, 'away their': 106051, 'their glove': 873410, 'local post': 498289, 'not the get': 572001, 'the get off': 856239, 'get off my': 347683, 'off my lawn': 593984, 'my lawn guy': 548994, 'lawn guy but': 482505, 'guy but people': 368940, 'but people need': 146769, 'to stop throwing': 915588, 'stop throwing away': 805206, 'throwing away their': 895088, 'away their glove': 106055, 'their glove in': 873411, 'parking lot and': 642077, 'lot and on': 503985, 'and on the': 68069, 'floor of some': 310832, 'of some local': 589899, 'some local post': 783213, 'local post office': 498290, 'are waking': 91522, 'to president': 912028, 'trump warns': 933964, 'warns citizen': 967253, 'citizen that': 178975, 'buying trump': 151267, 'trump assures': 933422, 'assures the': 97147, 'american people': 52120, 'fine and': 307598, 'looking great': 502927, 'world we are': 1010142, 'we are waking': 970755, 'are waking up': 91523, 'waking up to': 964668, 'up to president': 946415, 'to president trump': 912030, 'president trump warns': 670954, 'trump warns citizen': 933965, 'warns citizen that': 967254, 'citizen that there': 178976, 'stockpile food and': 803745, 'food and panic': 313300, 'panic buying trump': 637944, 'buying trump assures': 151268, 'trump assures the': 933423, 'assures the american': 97148, 'the american people': 848634, 'american people that': 52126, 'people that everything': 649761, 'that everything is': 843779, 'everything is fine': 287870, 'is fine and': 447813, 'fine and looking': 307600, 'and looking great': 66377, 'coronaout': 205097, 'confidence fall': 193861, 'to near': 910494, 'near year': 553633, 'low during': 505255, 'coronaoutbreak coronaout': 205117, 'coronaout lockdownuk': 205098, 'lockdownuk flattenthecurve': 500410, 'flattenthecurve coronaupdate': 310162, 'consumer confidence fall': 196896, 'confidence fall to': 193862, 'fall to near': 297099, 'to near year': 910496, 'near year low': 553634, 'year low during': 1014718, 'low during coronavirus': 505256, 'coronavirus pandemic coronaoutbreak': 206450, 'pandemic coronaoutbreak coronaout': 635226, 'coronaoutbreak coronaout lockdownuk': 205118, 'coronaout lockdownuk flattenthecurve': 205099, 'lockdownuk flattenthecurve coronaupdate': 500411, 'pointer': 662743, 'providing our': 687062, 'top pointer': 925663, 'pointer for': 662744, 'for adapting': 319006, 'adapting your': 31356, 'providing our top': 687066, 'our top pointer': 625169, 'top pointer for': 925664, 'pointer for adapting': 662745, 'for adapting your': 319007, 'adapting your business': 31357, 'your business to': 1023083, 'business to the': 144562, 'you cough': 1018062, 'cough at': 208456, 'to allergy': 900312, 'allergy and': 45766, 'and understand': 74633, 'you out': 1020255, 'when you cough': 984551, 'you cough at': 1018065, 'cough at the': 208459, 'due to allergy': 261699, 'to allergy and': 900313, 'allergy and understand': 45767, 'and understand why': 74637, 'understand why are': 940815, 'are you out': 91831, 'you out in': 1020260, 'edeka': 268475, 'appropriately': 83067, 'germany at': 346269, 'supermarket edeka': 820087, 'edeka the': 268481, 'will teach': 995095, 'teach you': 835414, 'to appropriately': 900673, 'appropriately social': 83074, 'you shit': 1021149, 'shit when': 759290, 'in germany at': 423275, 'germany at supermarket': 346270, 'at supermarket edeka': 100720, 'supermarket edeka the': 820089, 'edeka the will': 268482, 'the will teach': 871583, 'will teach you': 995097, 'teach you how': 835416, 'you how to': 1019262, 'how to appropriately': 408978, 'to appropriately social': 900674, 'appropriately social distance': 83075, 'distance and give': 246636, 'and give you': 63670, 'give you shit': 350866, 'you shit when': 1021153, 'shit when you': 759292, 'when you don': 984554, 'so potus': 778057, 'potus and': 667281, 'gop are': 358238, '19 stimulus': 10851, 'package check': 633233, 'check for': 174439, 'have them': 383063, 'them issued': 875949, 'issued monthly': 456072, 'monthly until': 538215, 'is created': 446906, 'created because': 215784, 'because literally': 119225, 'literally that': 495091, 'open our': 612430, 'so potus and': 778058, 'potus and the': 667282, 'and the gop': 73398, 'the gop are': 856461, 'gop are going': 358239, 'increase the covid': 433103, 'covid 19 stimulus': 213867, '19 stimulus package': 10852, 'stimulus package check': 801576, 'package check for': 633234, 'check for all': 174440, 'for all american': 319109, 'american to 00': 52260, 'to 00 and': 899408, '00 and have': 65, 'and have them': 64287, 'have them issued': 383069, 'them issued monthly': 875950, 'issued monthly until': 456073, 'monthly until vaccine': 538216, 'vaccine is created': 951725, 'is created because': 446907, 'created because literally': 215785, 'because literally that': 119226, 'literally that is': 495092, 'that is the': 844664, 'way to open': 970060, 'to open our': 911002, 'open our consumer': 612431, 'consumer based economy': 196408, 'inoculated': 438951, 'australian carbon': 103456, 'market inoculated': 516589, 'inoculated from': 438952, '19 european': 6852, 'european price': 283602, 'price tumble': 677142, 'australian carbon market': 103457, 'carbon market inoculated': 163406, 'market inoculated from': 516590, 'inoculated from covid': 438953, 'covid 19 european': 213044, '19 european price': 6853, 'european price tumble': 283603, 'morning because': 541185, 'service slot': 752836, 'slot are': 774115, 'are scheduled': 89861, 'scheduled until': 741525, 'until monday': 943779, 'monday kid': 536309, 'kid have': 473981, 'eat apparently': 265850, 'the lady': 858904, 'meat counter': 525528, 'counter must': 210241, 'been 80': 120584, 'old this': 598498, 'so broken': 776649, 'broken that': 140921, 'that high': 844323, 'risk elderly': 723511, 'this morning because': 888942, 'morning because the': 541189, 'because the delivery': 119621, 'the delivery service': 853074, 'delivery service slot': 234461, 'service slot are': 752837, 'slot are scheduled': 774120, 'are scheduled until': 89863, 'scheduled until monday': 741526, 'until monday kid': 943781, 'monday kid have': 536310, 'kid have to': 473983, 'to eat apparently': 904867, 'eat apparently the': 265851, 'apparently the lady': 82018, 'the lady at': 858905, 'at the meat': 101017, 'the meat counter': 860378, 'meat counter must': 525531, 'counter must have': 210242, 'must have been': 546695, 'have been 80': 379455, 'been 80 year': 120585, 'year old this': 1014871, 'old this country': 598499, 'this country is': 886956, 'country is so': 210822, 'is so broken': 451996, 'so broken that': 776651, 'broken that high': 140922, 'that high risk': 844327, 'high risk elderly': 395354, 'risk elderly person': 723513, 'elderly person ha': 270847, 'person ha to': 652454, 'ha to work': 372323, 'deepening': 231942, 'central ohio': 169413, 'ohio food': 596540, 'among those': 53094, 'those feeling': 891999, 'the strain': 868184, 'strain of': 812282, 'new sanitation': 559539, 'sanitation guideline': 733844, 'guideline and': 368392, 'and deepening': 61046, 'deepening economic': 231943, 'challenge caused': 171421, 'central ohio food': 169415, 'ohio food pantry': 596542, 'pantry are among': 639529, 'are among those': 84521, 'among those feeling': 53096, 'those feeling the': 892000, 'feeling the strain': 303079, 'the strain of': 868186, 'strain of new': 812284, 'of new sanitation': 586983, 'new sanitation guideline': 559540, 'sanitation guideline and': 733845, 'guideline and deepening': 368394, 'and deepening economic': 61047, 'deepening economic challenge': 231944, 'economic challenge caused': 267000, 'challenge caused by': 171422, 'medtech': 527367, 'meddevice': 525947, 'sue nj': 817160, 'nj company': 563424, 'company claim': 190550, 'claim it': 179752, 'it tried': 461852, 'sell n95': 748801, 'at six': 100538, 'six time': 772705, 'time usual': 898173, 'price medtech': 675223, 'medtech meddevice': 527368, 'sue nj company': 817161, 'nj company claim': 563425, 'company claim it': 190551, 'claim it tried': 179757, 'it tried to': 461853, 'tried to sell': 931848, 'to sell n95': 914161, 'sell n95 mask': 748802, 'n95 mask at': 551187, 'mask at six': 518433, 'at six time': 100539, 'six time usual': 772707, 'time usual price': 898174, 'usual price medtech': 951005, 'price medtech meddevice': 675224, 'scuffle break': 742960, 'break out': 138779, 'out outside': 627000, 'outside london': 629475, 'amid panicbuying': 52589, 'panicbuying imagine': 638968, 'imagine ppl': 416765, 'ppl inside': 668262, 'inside act': 439209, 'like their': 491413, 'their playing': 874326, 'playing supermarketsweep': 659450, 'supermarketsweep being': 824251, 'being very': 126032, 'very stupid': 955597, 'stupid they': 815476, 'so close': 776768, 'other being': 619885, 'extremely selfish': 293922, 'selfish greedy': 748109, 'greedy stoppanicbuying': 363614, 'scuffle break out': 742961, 'break out outside': 138783, 'out outside london': 627001, 'outside london supermarket': 629476, 'london supermarket amid': 501192, 'supermarket amid panicbuying': 818904, 'amid panicbuying imagine': 52590, 'panicbuying imagine ppl': 638969, 'imagine ppl inside': 416766, 'ppl inside act': 668263, 'inside act like': 439210, 'act like their': 29689, 'like their playing': 491414, 'their playing supermarketsweep': 874327, 'playing supermarketsweep being': 659451, 'supermarketsweep being very': 824252, 'being very stupid': 126036, 'very stupid they': 955598, 'stupid they are': 815477, 'they are so': 881410, 'are so close': 90192, 'so close to': 776770, 'close to each': 182890, 'each other being': 264159, 'other being extremely': 619886, 'being extremely selfish': 125132, 'extremely selfish greedy': 293923, 'selfish greedy stoppanicbuying': 748115, 'vary': 952664, 'receiving many': 703784, 'many enquiry': 514036, 'enquiry about': 277804, 'about issue': 25562, 'issue related': 455910, 'cancellation and': 161001, 'excessive pricing': 289411, 'pricing while': 678000, 'while individual': 986954, 'individual circumstance': 435158, 'circumstance will': 178761, 'will vary': 995294, 'vary we': 952673, 'urge consumer': 948173, 'our helpful': 623414, 'helpful advice': 391152, 'advice which': 33553, 'is continually': 446810, 'continually being': 200966, 'being updated': 126005, 'updated thing': 947445, 'thing change': 884228, 'we are receiving': 970682, 'are receiving many': 89503, 'receiving many enquiry': 703785, 'many enquiry about': 514037, 'enquiry about issue': 277805, 'about issue related': 25564, 'issue related to': 455911, 'related to travel': 708622, 'to travel event': 917729, 'event cancellation and': 284955, 'cancellation and excessive': 161005, 'and excessive pricing': 62457, 'excessive pricing while': 289412, 'pricing while individual': 678001, 'while individual circumstance': 986955, 'individual circumstance will': 435159, 'circumstance will vary': 178762, 'will vary we': 995297, 'vary we urge': 952674, 'we urge consumer': 973597, 'urge consumer to': 948174, 'consumer to read': 199322, 'to read our': 912837, 'read our helpful': 700510, 'our helpful advice': 623415, 'helpful advice which': 391154, 'advice which is': 33554, 'which is continually': 985997, 'is continually being': 446811, 'continually being updated': 200967, 'being updated thing': 126006, 'updated thing change': 947446, 'gandhi': 343376, 'dear greedy': 229797, 'give others': 350625, 'others chance': 621326, 'chance please': 171781, 'everyone greed': 286953, 'greed gandhi': 363376, 'gandhi stoppanicbuying': 343379, 'dear greedy people': 229798, 'greedy people please': 363565, 'people please give': 649134, 'please give others': 660030, 'give others chance': 350626, 'others chance please': 621327, 'chance please stop': 171782, 'panic buying the': 637926, 'buying the world': 151181, 'world ha enough': 1009607, 'ha enough for': 370496, 'for everyone need': 321223, 'everyone need but': 287202, 'need but not': 554574, 'but not enough': 146536, 'not enough for': 569182, 'for everyone greed': 321213, 'everyone greed gandhi': 286954, 'greed gandhi stoppanicbuying': 363377, 'doggy': 252202, 'hit doggy': 398215, 'doggy daycare': 252203, 'daycare start': 228896, 'start up': 794615, 'up about': 944214, 'celebrate successful': 168795, 'successful first': 816237, 'first year': 309194, '19 hit doggy': 7543, 'hit doggy daycare': 398216, 'doggy daycare start': 252204, 'daycare start up': 228897, 'start up about': 794616, 'up about to': 944218, 'about to celebrate': 26710, 'to celebrate successful': 902555, 'celebrate successful first': 168796, 'successful first year': 816238, 'first year of': 309196, 'year of operation': 1014787, 'schoolteacher': 742054, 'sb': 739784, 'australian thank': 103560, 'thank schoolteacher': 841628, 'schoolteacher working': 742055, 'pandemic sb': 636401, 'sb voice': 739790, 'voice via': 960007, 'australian thank schoolteacher': 103562, 'thank schoolteacher working': 841629, 'schoolteacher working through': 742056, 'working through the': 1008967, '19 pandemic sb': 9455, 'pandemic sb voice': 636402, 'sb voice via': 739792, 'granddaughter': 361886, 'intolerance': 443331, 'in despair': 422207, 'despair at': 238484, 'people behavior': 647249, 'behavior these': 124237, 'day my': 227998, 'my granddaughter': 548542, 'granddaughter ha': 361887, 'ha life': 371137, 'life threatening': 489121, 'threatening food': 893804, 'food intolerance': 315098, 'intolerance now': 443334, 'doesn eat': 251760, 'eat is': 265952, 'bought panic': 136678, 'buyer should': 149747, 'themselves selfish': 876883, 'in despair at': 422208, 'despair at people': 238485, 'at people behavior': 100091, 'people behavior these': 647254, 'behavior these day': 124238, 'these day my': 879885, 'day my granddaughter': 228000, 'my granddaughter ha': 548543, 'granddaughter ha life': 361888, 'ha life threatening': 371138, 'life threatening food': 489123, 'threatening food intolerance': 893806, 'food intolerance now': 315099, 'intolerance now even': 443335, 'now even the': 574622, 'even the one': 284663, 'one who doesn': 607443, 'who doesn eat': 988636, 'doesn eat is': 251761, 'eat is panic': 265953, 'is panic bought': 450786, 'panic bought panic': 637429, 'bought panic buyer': 136679, 'panic buyer should': 637601, 'buyer should be': 149748, 'of themselves selfish': 591788, 'themselves selfish asshole': 876884, 'worker stock': 1007825, 'responder help': 715480, 'need doctor': 554688, 'nurse help': 577366, 'those sick': 892472, '19 payroll': 9603, 'payroll make': 645824, 'paid and': 633963, 'can clock': 157919, 'clock your': 182429, 'your time': 1026162, 'people running': 649322, 'store worker stock': 811588, 'worker stock the': 1007827, 'stock the food': 802930, 'the food the': 855614, 'food the first': 317114, 'first responder help': 308949, 'responder help those': 715481, 'help those in': 390745, 'in need doctor': 425735, 'need doctor and': 554689, 'and nurse help': 67890, 'nurse help those': 577367, 'help those sick': 390751, 'those sick with': 892473, 'covid 19 payroll': 213561, '19 payroll make': 9604, 'payroll make sure': 645825, 'make sure people': 510522, 'sure people get': 827655, 'people get paid': 648055, 'get paid and': 347762, 'paid and make': 633968, 'and make sure': 66577, 'sure you can': 827851, 'you can clock': 1017646, 'can clock your': 157920, 'clock your time': 182430, 'your time so': 1026165, 'time so you': 897703, 'can get paid': 158441, 'paid and one': 633969, 'and one of': 68089, 'one of two': 606771, 'of two people': 592543, 'two people running': 937139, 'people running the': 649324, 'running the department': 728094, 'transference': 929539, 'reminder if': 710561, 'touch door': 926464, 'handle any': 376169, 'any surface': 79930, 'surface on': 828057, 'even can': 283930, 'can in': 158736, 'supermarket there': 823273, 'is risk': 451557, 'risk the': 723929, 'through transference': 894873, 'transference someone': 929540, 'someone coughing': 784421, 'coughing into': 208692, 'hand then': 375828, 'then touching': 877691, 'surface that': 828074, 'why washing': 991510, 'hand is': 375051, 'reminder if you': 710562, 'if you touch': 415543, 'you touch door': 1021896, 'touch door handle': 926465, 'door handle any': 255606, 'handle any surface': 376170, 'any surface on': 79932, 'surface on public': 828058, 'on public transport': 603002, 'public transport or': 688414, 'transport or even': 929922, 'or even can': 615191, 'even can in': 283931, 'can in supermarket': 158738, 'in supermarket there': 428689, 'supermarket there is': 823277, 'there is risk': 878616, 'is risk the': 451558, 'risk the virus': 723934, 'virus is on': 958395, 'is on it': 450470, 'on it through': 601690, 'it through transference': 461681, 'through transference someone': 894874, 'transference someone coughing': 929541, 'someone coughing into': 784423, 'coughing into their': 208695, 'into their hand': 443194, 'their hand then': 873484, 'hand then touching': 375834, 'then touching surface': 877693, 'touching surface that': 926721, 'surface that why': 828077, 'that why washing': 847549, 'why washing hand': 991511, 'washing hand is': 967671, 'hand is so': 375053, 'msg': 544515, 'guy joking': 369058, 'joking all': 467192, 'pandemic your': 637095, 'your sending': 1025718, 'me msg': 523180, 'msg saying': 544524, 'saying price': 739665, 'without doubt': 1002597, 'doubt will': 256231, 'will move': 994130, 'move on': 543699, 'you guy joking': 1018966, 'guy joking all': 369059, 'joking all that': 467193, 'all that is': 44641, 'world with the': 1010201, 'the pandemic your': 863170, 'pandemic your sending': 637098, 'your sending me': 1025719, 'sending me msg': 750048, 'me msg saying': 523181, 'msg saying price': 544525, 'saying price are': 739666, 'going up without': 355799, 'up without doubt': 946708, 'without doubt will': 1002600, 'doubt will move': 256232, 'will move on': 994133, 'lieu': 488428, 'stupid just': 815414, 'just left': 469125, 'still aren': 800205, 'aren socialdistancing': 92523, 'socialdistancing had': 780402, 'raise my': 695887, 'my voice': 550516, 'voice at': 959976, 'at few': 98639, 'few people': 303985, 'the up': 870483, 'that wearing': 847415, 'in lieu': 424702, 'lieu of': 488431, 'distancing rant': 247411, 'people so many': 649491, 'so many are': 777636, 'many are just': 513765, 'are just so': 87638, 'just so stupid': 469825, 'so stupid just': 778295, 'stupid just left': 815416, 'just left the': 469131, 'left the grocery': 485667, 'store and people': 806317, 'and people still': 68882, 'people still aren': 649582, 'still aren socialdistancing': 800209, 'aren socialdistancing had': 92524, 'socialdistancing had to': 780403, 'had to raise': 373716, 'to raise my': 912728, 'raise my voice': 695888, 'my voice at': 550517, 'voice at few': 959977, 'at few people': 98640, 'few people to': 303992, 'people to back': 649878, 'to back the': 900980, 'back the up': 107317, 'the up on': 870488, 'up on top': 945636, 'of that wearing': 590752, 'that wearing face': 847417, 'face mask is': 294554, 'mask is not': 518869, 'is not in': 450113, 'not in lieu': 570097, 'in lieu of': 424703, 'lieu of social': 488432, 'social distancing rant': 779693, 'this enough': 887387, 'enough the': 277666, 'this are': 886397, 'keeping going': 472429, 'this challenging': 886731, 'responder delivery': 715441, 'people trucker': 650013, 'trucker pharmacist': 932944, 'employee amp': 273548, 'amp everyone': 53756, 'everyone keeping': 287139, 'keeping supply': 472568, 'can say this': 159518, 'say this enough': 739365, 'this enough the': 887391, 'enough the true': 277673, 'true hero in': 933100, 'all this are': 45091, 'this are the': 886402, 'are the essential': 90821, 'essential worker who': 281864, 'are keeping going': 87655, 'keeping going in': 472431, 'going in this': 355223, 'in this challenging': 429917, 'this challenging time': 886733, 'challenging time to': 171651, 'time to first': 897987, 'first responder delivery': 308935, 'responder delivery people': 715442, 'delivery people trucker': 234326, 'people trucker pharmacist': 650014, 'trucker pharmacist grocery': 932945, 'store employee amp': 807455, 'employee amp everyone': 273549, 'amp everyone keeping': 53759, 'everyone keeping supply': 287141, 'keeping supply chain': 472569, 'chain running thank': 171070, 'thank you 19': 841682, 'reeling': 706442, 'adamneumann': 31240, 'kibbutz': 473767, 'outbreak real': 628575, 'estate company': 282110, 'company reeling': 191014, 'reeling from': 706445, 'the including': 858044, 'including pay': 432102, 'cut layoff': 223417, 'layoff furlough': 482694, 'furlough falling': 341888, 'falling stock': 297339, 'price even': 673712, 'even co': 283959, 'co founder': 184836, 'of former': 583874, 'former ceo': 329618, 'ceo adamneumann': 169630, 'adamneumann could': 31241, 'could lose': 209393, 'lose 970': 503421, '970 million': 23696, 'million back': 532079, 'the kibbutz': 858772, 'kibbutz for': 473768, 'for him': 322280, 'him via': 396765, 'breaking the outbreak': 139064, 'the outbreak real': 862686, 'outbreak real estate': 628576, 'real estate company': 701140, 'estate company reeling': 282112, 'company reeling from': 191015, 'reeling from the': 706448, 'from the including': 337754, 'the including pay': 858047, 'including pay cut': 432103, 'pay cut layoff': 644828, 'cut layoff furlough': 223419, 'layoff furlough falling': 482696, 'furlough falling stock': 341889, 'falling stock price': 297341, 'stock price even': 802713, 'price even co': 673713, 'even co founder': 283960, 'co founder of': 184839, 'founder of former': 330551, 'of former ceo': 583875, 'former ceo adamneumann': 329619, 'ceo adamneumann could': 169631, 'adamneumann could lose': 31242, 'could lose 970': 209395, 'lose 970 million': 503422, '970 million back': 23697, 'million back to': 532080, 'to the kibbutz': 916825, 'the kibbutz for': 858773, 'kibbutz for him': 473769, 'for him via': 322290, 'handy toilet': 376908, 'paper calculator': 639993, 'calculator help': 155332, 'you measure': 1019829, 'measure your': 525439, 'your supply': 1026072, 'supply find': 825239, 'day worth': 228804, 'roll you': 725610, 'this online': 889261, 'tool read': 925432, 'article here': 94345, 'handy toilet paper': 376909, 'toilet paper calculator': 921219, 'paper calculator help': 639994, 'calculator help you': 155333, 'help you measure': 390982, 'you measure your': 1019830, 'measure your supply': 525440, 'your supply find': 1026073, 'supply find out': 825240, 'out how many': 626328, 'many day worth': 513986, 'day worth of': 228805, 'worth of toiletpaper': 1011419, 'of toiletpaper roll': 592279, 'toiletpaper roll you': 922419, 'roll you have': 725612, 'have left with': 381302, 'left with this': 485749, 'with this online': 1001713, 'this online tool': 889267, 'online tool read': 609617, 'tool read more': 925433, 'read more in': 700438, 'more in my': 539519, 'in my article': 425537, 'my article here': 547321, 'customer wait': 223027, 'open this': 612571, 'the line outside': 859417, 'line outside in': 493347, 'outside in customer': 629460, 'in customer wait': 421948, 'customer wait for': 223028, 'store to open': 810792, 'to open this': 911009, 'open this morning': 612573, 'tucker': 935063, 'carlson': 164763, 'tucker carlson': 935064, 'carlson made': 164764, 'made great': 507763, 'great point': 362896, 'decided going': 230866, 'is somehow': 452096, 'somehow le': 784325, 'le dangerous': 482914, 'dangerous than': 225779, 'make no': 510242, 'no sense': 565456, 'tucker carlson made': 935065, 'carlson made great': 164765, 'made great point': 507764, 'great point we': 362898, 'point we ve': 662692, 've decided going': 953028, 'decided going to': 230867, 'store is somehow': 808529, 'is somehow le': 452097, 'somehow le dangerous': 784326, 'le dangerous than': 482915, 'dangerous than going': 225782, 'to work it': 918743, 'work it make': 1005389, 'it make no': 459515, 'make no sense': 510246, 'threw': 894160, 'store threw': 810724, 'threw out': 894167, 'out 35': 625537, 'on sparking': 603586, 'sparking fear': 787599, 'fear police': 301290, 'police said': 663185, 'store threw out': 810725, 'threw out 35': 894168, 'out 35 00': 625538, '00 in that': 270, 'in that woman': 428937, 'that woman intentionally': 847639, 'coughed on sparking': 208632, 'on sparking fear': 603588, 'sparking fear police': 787600, 'fear police said': 301291, 'phd': 654659, 'poloz': 663928, 'determining': 239466, 'my phd': 549751, 'phd isn': 654664, 'in economics': 422484, 'economics but': 267438, 'but ll': 146292, 'out bank': 625760, 'of canada': 581075, 'canada governor': 160445, 'governor poloz': 360969, 'poloz ha': 663929, 'ha stressed': 372083, 'stressed that': 813463, 'confidence will': 193985, 'critical in': 218574, 'in determining': 422229, 'determining whether': 239470, 'shock prof': 759502, 'prof to': 682376, 'be short': 117158, 'lived albeit': 496146, 'albeit deep': 40759, 'deep downturn': 231878, 'downturn or': 257810, 'lasting recession': 480778, 'my phd isn': 549753, 'phd isn in': 654665, 'isn in economics': 454555, 'in economics but': 422486, 'economics but ll': 267439, 'but ll help': 146297, 'help you out': 390987, 'you out bank': 1020256, 'out bank of': 625761, 'bank of canada': 110048, 'of canada governor': 581080, 'canada governor poloz': 160446, 'governor poloz ha': 360970, 'poloz ha stressed': 663931, 'ha stressed that': 372084, 'stressed that business': 813464, 'that business and': 843054, 'consumer confidence will': 196934, 'confidence will be': 193986, 'be critical in': 114296, 'critical in determining': 218576, 'in determining whether': 422231, 'determining whether the': 239471, 'whether the covid': 985581, '19 shock prof': 10470, 'shock prof to': 759503, 'prof to be': 682377, 'to be short': 901538, 'be short lived': 117160, 'short lived albeit': 764641, 'lived albeit deep': 496147, 'albeit deep downturn': 40760, 'deep downturn or': 231879, 'downturn or longer': 257811, 'or longer lasting': 616004, 'longer lasting recession': 502016, 'nab': 551340, 'cockburn': 185227, 'agribusiness': 38852, 'havoc around': 384421, 'world but': 1009381, 'real disruption': 701116, 'to australia': 900837, 'australia food': 103282, 'supply say': 825806, 'say nab': 738961, 'nab cockburn': 551344, 'cockburn agribusiness': 185228, 'wreaking havoc around': 1012696, 'havoc around the': 384422, 'the world but': 871827, 'world but there': 1009384, 'there no real': 878836, 'no real disruption': 565279, 'real disruption to': 701117, 'disruption to australia': 246539, 'to australia food': 900839, 'australia food supply': 103283, 'food supply say': 316990, 'supply say nab': 825807, 'say nab cockburn': 738962, 'nab cockburn agribusiness': 551345, 'time again': 896215, 'again there': 37216, 'last supermarket': 480522, 'still opened': 800983, 'opened and': 612704, 'even recruiting': 284513, 'recruiting stop': 705496, 'panicbuying coronacrisis': 638921, 'they have said': 882375, 'have said it': 382384, 'said it time': 731169, 'it time and': 461692, 'time and time': 896304, 'and time again': 74118, 'time again there': 896216, 'again there is': 37217, 'enough food supply': 277415, 'supply to last': 826014, 'to last supermarket': 909073, 'last supermarket are': 480523, 'are still opened': 90457, 'still opened and': 800984, 'opened and even': 612705, 'and even recruiting': 62343, 'even recruiting stop': 284515, 'recruiting stop panic': 705497, 'buying panicbuying coronacrisis': 150874, 'affirmative': 34637, 'billion pound': 130896, 'consumer home': 197762, 'home result': 401975, 'of stockpilinguk': 590223, 'stockpilinguk but': 804137, 'doesn think': 251974, 'this tory': 890820, 'tory government': 926069, 'to intervene': 908460, 'intervene christ': 442159, 'christ what': 178090, 'take affirmative': 831922, 'affirmative action': 34638, 'billion pound of': 130898, 'pound of extra': 667393, 'of extra food': 583344, 'extra food in': 293514, 'food in consumer': 314931, 'in consumer home': 421702, 'consumer home result': 197765, 'home result of': 401976, 'result of stockpilinguk': 717614, 'of stockpilinguk but': 590224, 'stockpilinguk but doesn': 804138, 'but doesn think': 145578, 'doesn think it': 251975, 'it the job': 461549, 'the job of': 858667, 'job of this': 466042, 'of this tory': 592056, 'this tory government': 890821, 'tory government to': 926070, 'government to intervene': 360721, 'to intervene christ': 908462, 'intervene christ what': 442160, 'christ what will': 178091, 'will it take': 993872, 'take for them': 832135, 'them to take': 876520, 'to take affirmative': 916156, 'take affirmative action': 831923, 'officially calling': 595991, 'every movie': 286034, 'movie ve': 544093, 'full grocery': 340621, 'pandemic toilet': 636807, 'becoming currency': 120288, 'currency here': 221035, 'what call': 981161, 'officially calling on': 595992, 'calling on every': 156611, 'on every movie': 600619, 'every movie ve': 286035, 'movie ve seen': 544094, 've seen with': 953556, 'seen with full': 747360, 'with full grocery': 998581, 'full grocery store': 340622, 'store during pandemic': 807407, 'during pandemic toilet': 262903, 'pandemic toilet paper': 636808, 'paper is becoming': 640348, 'is becoming currency': 446032, 'becoming currency here': 120289, 'currency here that': 221036, 'here that what': 393638, 'that what call': 847459, 'what call it': 981162, '206': 14863, 'teatowel': 836018, 'quarantine day': 692130, 'day 206': 227114, '206 roast': 14866, 'roast teatowel': 724599, 'teatowel chicken': 836019, 'veg uklockdown': 953796, 'uklockdown nofood': 939001, 'quarantine day 206': 692131, 'day 206 roast': 227115, '206 roast teatowel': 14867, 'roast teatowel chicken': 724600, 'teatowel chicken and': 836020, 'chicken and veg': 175743, 'and veg uklockdown': 74867, 'veg uklockdown nofood': 953797, 'hey remember': 394492, 'when posted': 983897, 'posted this': 666580, 'this they': 890553, 'our help': 623408, 'hey remember when': 394495, 'remember when posted': 710416, 'when posted this': 983898, 'posted this they': 666585, 'this they need': 890557, 'they need our': 882752, 'need our help': 555398, 'remark': 710099, 'are mainly': 87962, 'mainly produced': 508887, 'produced in': 680523, 'china this': 176997, 'this sentence': 890027, 'sentence is': 750864, 'completely misleading': 192322, 'misleading then': 534107, 'then my': 877345, 'my irresponsible': 548890, 'irresponsible remark': 445069, 'remark caused': 710102, 'caused panic': 167931, 'buying panickbuying': 150878, 'panickbuying toiletpaper': 639226, 'they are mainly': 881331, 'are mainly produced': 87963, 'mainly produced in': 508888, 'produced in china': 680524, 'in china this': 421441, 'china this sentence': 176999, 'this sentence is': 890028, 'sentence is completely': 750865, 'is completely misleading': 446707, 'completely misleading then': 192323, 'misleading then my': 534108, 'then my irresponsible': 877346, 'my irresponsible remark': 548892, 'irresponsible remark caused': 445070, 'remark caused panic': 710103, 'caused panic buying': 167933, 'panic buying panickbuying': 637841, 'buying panickbuying toiletpaper': 150880, 'all glad': 42930, 'glad gas': 351492, 'getting back': 348857, 'after 20': 35283, 'year funny': 1014581, 'funny it': 341753, 'stay this': 797351, 'aren we all': 92581, 'we all glad': 970328, 'all glad gas': 42931, 'glad gas price': 351493, 'price are getting': 672668, 'are getting back': 86793, 'getting back to': 348860, 'normal after 20': 567071, 'after 20 year': 35284, '20 year funny': 13421, 'year funny it': 1014582, 'funny it took': 341756, 'took the 19': 925338, 'the 19 to': 847931, '19 to get': 11428, 'get it all': 347391, 'it all in': 456354, 'all in check': 43193, 'in check price': 421351, 'check price should': 174602, 'price should stay': 676390, 'should stay this': 766498, 'stay this low': 797353, 'pillaging': 656671, 'just checked': 468471, 'checked and': 174740, 'and both': 59089, 'both asda': 135858, 'tesco do': 838693, 'slot in': 774212, 'patch for': 643934, 'week from': 976251, 'now how': 574952, 'how exactly': 407821, 'exactly are': 288725, 'are those': 91055, 'those self': 892432, 'isolating supposed': 455144, 'access vital': 28307, 'vital supply': 959725, 'supply if': 825383, 'only folk': 610454, 'folk would': 312319, 'would stop': 1012274, 'stop pillaging': 804911, 'pillaging their': 656676, 'their brick': 872649, 'mortar store': 541838, 'stop driving': 804626, 'driving demand': 259914, 've just checked': 953295, 'just checked and': 468472, 'checked and both': 174741, 'and both asda': 59090, 'both asda and': 135859, 'asda and tesco': 94909, 'and tesco do': 73129, 'tesco do not': 838694, 'not have delivery': 569825, 'have delivery slot': 380230, 'delivery slot in': 234528, 'slot in my': 774214, 'in my patch': 425610, 'my patch for': 549729, 'patch for three': 643936, 'three week from': 894103, 'week from now': 976256, 'from now how': 336608, 'now how exactly': 574954, 'how exactly are': 407822, 'exactly are those': 288727, 'are those self': 91059, 'those self isolating': 892433, 'self isolating supposed': 747738, 'isolating supposed to': 455145, 'supposed to access': 827349, 'to access vital': 899963, 'access vital supply': 28308, 'vital supply if': 959728, 'supply if only': 825385, 'if only folk': 414549, 'only folk would': 610455, 'folk would stop': 312320, 'would stop pillaging': 1012283, 'stop pillaging their': 804912, 'pillaging their brick': 656677, 'their brick and': 872650, 'and mortar store': 67249, 'mortar store it': 541842, 'store it would': 808600, 'it would stop': 462607, 'would stop driving': 1012277, 'stop driving demand': 804627, 'driving demand online': 259915, 'containment is': 200600, 'our normal': 624085, 'normal life': 567205, 'life all': 488451, 'by lot': 153098, 'power 19': 667551, 'once the containment': 605718, 'the containment is': 851652, 'containment is over': 200601, 'over and we': 629993, 'and we all': 75277, 'all go back': 42939, 'back to our': 107386, 'to our normal': 911222, 'our normal life': 624089, 'normal life all': 567206, 'life all the': 488453, 'all the price': 44871, 'up by lot': 944555, 'by lot of': 153101, 'lot of power': 504255, 'of power 19': 588301, 'it interesting': 458813, 'interesting that': 441626, 'that nearly': 845291, 'all essential': 42695, 'lowest paid': 506193, 'paid people': 634106, 'the fat': 854974, 'cat are': 166830, 'all crazy': 42493, 'crazy world': 215489, 'world time': 1010072, 'for radical': 324942, 'change 19': 171877, 'isn it interesting': 454566, 'it interesting that': 458815, 'interesting that nearly': 441627, 'that nearly all': 845294, 'nearly all essential': 553797, 'all essential worker': 42705, 'essential worker are': 281816, 'worker are some': 1006425, 'the lowest paid': 859816, 'lowest paid people': 506196, 'paid people and': 634107, 'people and all': 646842, 'all the fat': 44745, 'the fat cat': 854976, 'fat cat are': 300201, 'cat are not': 166831, 'are not essential': 88361, 'not essential at': 569212, 'essential at all': 280802, 'at all crazy': 97878, 'all crazy world': 42494, 'crazy world time': 215491, 'world time for': 1010073, 'time for radical': 896747, 'for radical change': 324943, 'radical change 19': 695399, 'discounting': 244609, 'lure': 506830, 'gmv': 353217, 'true sir': 933163, 'sir like': 771590, 'prefer buying': 669728, 'buying from': 150385, 'shop than': 760886, 'than online': 840985, 'see very': 745998, 'very aggressive': 954986, 'aggressive discounting': 38243, 'discounting by': 244610, 'by those': 154538, 'those online': 892292, 'portal to': 664956, 'to lure': 909527, 'lure customer': 506831, 'reduce loss': 705870, 'loss in': 503701, 'their gmv': 873412, 'true sir like': 933164, 'sir like to': 771591, 'to add post': 900062, 'add post covid': 31467, '19 people will': 9633, 'people will prefer': 650404, 'will prefer buying': 994436, 'prefer buying from': 669729, 'buying from local': 150387, 'from local shop': 336257, 'local shop than': 498419, 'shop than online': 760887, 'than online we': 840986, 'online we may': 609701, 'we may also': 972349, 'may also see': 520919, 'also see very': 48842, 'see very aggressive': 745999, 'very aggressive discounting': 954987, 'aggressive discounting by': 38244, 'discounting by those': 244611, 'by those online': 154540, 'those online shopping': 892293, 'shopping portal to': 763658, 'portal to lure': 664957, 'to lure customer': 909528, 'lure customer and': 506832, 'customer and reduce': 222096, 'and reduce loss': 70096, 'reduce loss in': 705871, 'loss in their': 503709, 'in their gmv': 429743, 'cust': 221937, 'aftercare': 36628, 'complicated': 192454, 'nausea': 553024, 'inducing': 435495, 'layout': 482720, 'mgmnt': 530091, 'direct always': 243283, 'always had': 49594, 'had lovely': 373268, 'lovely staff': 504992, 'staff but': 792280, 'but appalling': 145199, 'appalling policy': 81843, 'policy on': 663456, 'on cust': 600190, 'cust aftercare': 221938, 'aftercare complicated': 36629, 'complicated nausea': 192464, 'nausea inducing': 553025, 'inducing shop': 435497, 'shop floor': 760169, 'floor layout': 310813, 'layout vile': 482723, 'vile treatment': 957316, 'staff by': 792284, 'by mgmnt': 153208, 'mgmnt their': 530092, 'their action': 872457, 'pandemic just': 635844, 'just staggering': 469859, 'staggering vile': 793266, 'vile never': 957310, 'never shop': 558189, 'shop there': 760914, 'there again': 877959, 'direct always had': 243284, 'always had lovely': 49596, 'had lovely staff': 373269, 'lovely staff but': 504993, 'staff but appalling': 792281, 'but appalling policy': 145200, 'appalling policy on': 81844, 'policy on cust': 663457, 'on cust aftercare': 600191, 'cust aftercare complicated': 221939, 'aftercare complicated nausea': 36630, 'complicated nausea inducing': 192465, 'nausea inducing shop': 553026, 'inducing shop floor': 435498, 'shop floor layout': 760173, 'floor layout vile': 310814, 'layout vile treatment': 482724, 'vile treatment of': 957317, 'treatment of staff': 931112, 'of staff by': 590019, 'staff by mgmnt': 792285, 'by mgmnt their': 153209, 'mgmnt their action': 530093, 'their action during': 872460, 'action during pandemic': 30004, 'during pandemic just': 262876, 'pandemic just staggering': 635849, 'just staggering vile': 469860, 'staggering vile never': 793267, 'vile never shop': 957311, 'never shop there': 558194, 'shop there again': 760915, 'release curfew': 708933, 'press release curfew': 671073, 'release curfew for': 708934, 'curfew for delivery': 220882, 'for delivery to': 320652, 'delivery to supermarket': 234672, 'to supermarket auspol': 915773, '340million': 17839, 'this past': 889494, 'week story': 976937, 'over america': 629968, 'america show': 51675, 'show farmer': 766942, 'milk plowing': 531770, 'plowing under': 661105, 'under crop': 940063, 'crop because': 218898, 'because normal': 119280, 'demand shift': 236191, 'shift look': 758347, 'look we': 502661, 'have 340million': 379092, '340million hungry': 17840, 'hungry american': 411221, 'american without': 52316, 'income trump': 432484, 'trump fed': 933553, 'fed govt': 301825, 'is failing': 447708, 'failing again': 296192, 'if american': 413807, 'american survive': 52237, 'must face': 546647, 'face food': 294440, 'shortage next': 765082, 'this past week': 889496, 'past week story': 643651, 'week story from': 976938, 'story from all': 811981, 'from all over': 334435, 'all over america': 43851, 'over america show': 629971, 'america show farmer': 51676, 'show farmer dumping': 766943, 'dumping milk plowing': 262244, 'milk plowing under': 531771, 'plowing under crop': 661106, 'under crop because': 940064, 'crop because normal': 218899, 'because normal demand': 119281, 'normal demand shift': 567136, 'demand shift look': 236192, 'shift look we': 758348, 'look we have': 502662, 'we have 340million': 971741, 'have 340million hungry': 379093, '340million hungry american': 17841, 'hungry american without': 411222, 'american without income': 52317, 'without income trump': 1002733, 'income trump fed': 432485, 'trump fed govt': 933554, 'fed govt is': 301827, 'govt is failing': 361164, 'is failing again': 447709, 'failing again if': 296193, 'again if american': 37032, 'if american survive': 413809, 'american survive covid': 52238, '19 we must': 11941, 'we must face': 972413, 'must face food': 546648, 'face food shortage': 294443, 'food shortage next': 316589, 'say beware': 738457, 'fraudulent coronavirus': 331452, 'coronavirus test': 206878, 'treatment there': 931152, 'no vaccine': 565825, 'vaccine to': 951779, 'drug to': 261118, '19 approved': 5184, 'approved by': 83134, 'fda say beware': 300920, 'say beware of': 738458, 'of fraudulent coronavirus': 583902, 'fraudulent coronavirus test': 331453, 'coronavirus test vaccine': 206885, 'test vaccine and': 839224, 'vaccine and treatment': 951658, 'and treatment there': 74444, 'treatment there are': 931153, 'currently no vaccine': 221602, 'no vaccine to': 565828, 'vaccine to prevent': 951780, 'prevent or drug': 671678, 'or drug to': 615083, 'drug to treat': 261125, 'to treat covid': 917744, 'covid 19 approved': 212646, '19 approved by': 5185, 'approved by the': 83138, 'by the food': 154329, 'attacking': 102193, '006': 646, 'are attacking': 84693, 'attacking each': 102196, 'other when': 621197, 'have greater': 380838, 'greater chance': 363146, 'chance catching': 171711, 'catching it': 167093, 'than sunbathing': 841178, 'sunbathing the': 818126, 'rate is': 697274, 'is 006': 445140, '006 and': 647, 'that including': 844484, 'including people': 432106, 'agree but people': 38599, 'people are attacking': 646931, 'are attacking each': 84694, 'attacking each other': 102197, 'each other when': 264234, 'other when there': 621199, 'no need you': 564858, 'need you have': 556257, 'you have greater': 1019053, 'have greater chance': 380839, 'greater chance catching': 363147, 'chance catching it': 171712, 'catching it in': 167095, 'supermarket than sunbathing': 823165, 'than sunbathing the': 841179, 'sunbathing the death': 818127, 'the death rate': 852975, 'death rate is': 230175, 'rate is 006': 697275, 'is 006 and': 445141, '006 and that': 648, 'and that including': 73195, 'that including people': 844485, 'including people who': 432107, 'have died of': 380270, 'died of other': 241591, 'of other thing': 587378, 'other thing but': 621102, 'thing but have': 884205, 'but have covid': 145869, 'print': 678258, 'handsanitizing': 376708, 'hand sink': 375760, 'sink sanitizers': 771485, 'our vi': 625265, 'abuja branch': 27570, 'branch cheapest': 137668, 'quantity print': 691952, 'print healthylifestyle': 678273, 'health handwashing': 386479, 'handwashing handsanitizing': 376838, 'handsanitizing lagos': 376709, 'buy hand sink': 148773, 'hand sink sanitizers': 375761, 'sink sanitizers at': 771486, 'sanitizers at our': 736228, 'at our vi': 100038, 'our vi ikoyi': 625266, 'and abuja branch': 57569, 'abuja branch cheapest': 27571, 'branch cheapest price': 137669, 'cheapest price unlimited': 174311, 'unlimited quantity print': 942790, 'quantity print healthylifestyle': 691953, 'print healthylifestyle health': 678274, 'healthylifestyle health handwashing': 387849, 'health handwashing handsanitizing': 386480, 'handwashing handsanitizing lagos': 376839, 'handsanitizing lagos abuja': 376710, 'latest advice': 481202, 'shopping safely': 763795, 'safely at': 730259, 'not read': 571217, 'article and': 94250, 'you checked out': 1017938, 'out the latest': 627384, 'the latest advice': 859074, 'latest advice on': 481204, 'advice on shopping': 33458, 'on shopping safely': 603441, 'shopping safely at': 763796, 'safely at the': 730261, 'supermarket if not': 820832, 'if not read': 414504, 'not read this': 571219, 'read this article': 700608, 'this article and': 886411, 'article and find': 94253, 'and find out': 62891, 'out more about': 626562, 'more about keeping': 538513, 'about keeping safe': 25618, 'keeping safe during': 472544, 'safe during 19': 729610, 'he try': 385549, 'steal full': 799178, 'full trolley': 340953, 'trolley of': 932449, 'it turning': 461885, 'turning people': 935943, 'tackled to ground': 831633, 'to ground by': 907017, 'staff he try': 792518, 'he try to': 385550, 'to steal full': 915361, 'steal full trolley': 799179, 'full trolley of': 340954, 'trolley of food': 932450, 'of hand this': 584440, 'hand this covid': 375845, 'virus it becoming': 958415, 'it becoming mental': 456781, 'illness crisis it': 416358, 'crisis it turning': 217612, 'it turning people': 461886, 'turning people to': 935944, 'disappointed in': 244103, 'certain product': 170081, 'product diaper': 681120, 'diaper baby': 240355, 'wipe etc': 996246, 'etc during': 282501, 'time took': 898122, 'took my': 925295, 'disappointed in for': 244104, 'in for raising': 423025, 'for raising price': 324952, 'price on certain': 675659, 'on certain product': 599863, 'certain product diaper': 170085, 'product diaper baby': 681121, 'diaper baby wipe': 240356, 'baby wipe etc': 106736, 'wipe etc during': 996248, 'etc during these': 282504, 'uncertain time took': 939628, 'time took my': 898123, 'took my business': 925296, 'my business to': 547582, 'business to who': 144566, 'not taking advantage': 571921, 'turnip': 935987, 'animalcrossingnewhorizons': 76705, 'our turnip': 625212, 'turnip price': 935994, 'price animalcrossingnewhorizons': 672587, 'animalcrossingnewhorizons animalcrossing': 76706, 'animalcrossing lockdowneffect': 76699, 'what are our': 981062, 'are our turnip': 88874, 'our turnip price': 625213, 'turnip price animalcrossingnewhorizons': 935996, 'price animalcrossingnewhorizons animalcrossing': 672588, 'animalcrossingnewhorizons animalcrossing lockdowneffect': 76707, 'doing even': 252381, 'more great': 539368, 'great thing': 363044, 'time paisley': 897447, 'already putting': 47595, 'putting their': 691237, 'their free': 873369, 'good use': 357922, 'use amid': 949031, 'doing even more': 252383, 'even more great': 284359, 'more great thing': 539369, 'great thing during': 363047, 'thing during this': 884294, 'this time paisley': 890675, 'time paisley and': 897448, 'wife kimberly williams': 991944, 'paisley are already': 634374, 'are already putting': 84421, 'already putting their': 47597, 'putting their free': 691239, 'their free grocery': 873371, 'store to good': 810773, 'to good use': 906910, 'good use amid': 357923, 'use amid the': 949032, 'closebordersnow': 182949, 'hit dm': 398213, 'dm to': 248933, 'your sanitizers': 1025681, 'their actual': 872467, 'actual price': 30690, 'price quarantinelife': 676045, 'quarantinelife closebordersnow': 692940, 'hit dm to': 398214, 'dm to buy': 248934, 'to buy your': 902343, 'buy your sanitizers': 149499, 'your sanitizers at': 1025682, 'sanitizers at their': 736231, 'at their actual': 101161, 'their actual price': 872468, 'actual price quarantinelife': 30691, 'price quarantinelife closebordersnow': 676046, 'sefton': 747375, 'helpline': 391586, 'with picking': 1000206, 'medicine but': 526748, 'coronavirus call': 205598, 'call the': 156123, 'the sefton': 866644, 'sefton council': 747376, 'council helpline': 209987, 'helpline or': 391599, 'fill in': 305467, 'online form': 608254, 'form for': 329508, 'help with picking': 390922, 'with picking up': 1000207, 'picking up your': 655894, 'up your shopping': 946755, 'your shopping or': 1025788, 'shopping or medicine': 763548, 'or medicine but': 616115, 'medicine but are': 526749, 'but are at': 145208, 'risk of coronavirus': 723740, 'of coronavirus call': 581920, 'coronavirus call the': 205599, 'call the sefton': 156140, 'the sefton council': 866645, 'sefton council helpline': 747377, 'council helpline or': 209988, 'helpline or fill': 391600, 'or fill in': 615305, 'fill in their': 305469, 'their online form': 874100, 'online form for': 608257, 'form for support': 329510, 'crunchy': 219761, 'smh': 775666, 'limitedsupplies': 492798, 'just put': 469524, 'put me': 690680, 'real crunchy': 701093, 'crunchy mood': 219764, 'mood smh': 538285, 'smh people': 775682, 'so damn': 776834, 'damn inconsiderate': 225370, 'inconsiderate nofood': 432566, 'nofood limitedsupplies': 566156, 'store just put': 808624, 'just put me': 469527, 'put me in': 690682, 'me in real': 522973, 'in real crunchy': 427290, 'real crunchy mood': 701094, 'crunchy mood smh': 219765, 'mood smh people': 538286, 'smh people so': 775684, 'people so damn': 649490, 'so damn inconsiderate': 776836, 'damn inconsiderate nofood': 225371, 'inconsiderate nofood limitedsupplies': 432567, 'itchy': 463010, 'irritated': 445109, 'else skin': 271880, 'skin getting': 773066, 'getting really': 349224, 'really dry': 702152, 'dry itchy': 261280, 'itchy and': 463013, 'and irritated': 65383, 'irritated from': 445110, 'hand so': 375764, 'so often': 777931, 'using all': 950375, 'this sanitizer': 889954, 'with alcohol': 997129, 'is anyone else': 445764, 'anyone else skin': 80290, 'else skin getting': 271881, 'skin getting really': 773067, 'getting really dry': 349225, 'really dry itchy': 702153, 'dry itchy and': 261281, 'itchy and irritated': 463014, 'and irritated from': 65384, 'irritated from washing': 445111, 'from washing hand': 338299, 'washing hand so': 967680, 'hand so often': 375765, 'so often and': 777932, 'often and using': 596158, 'and using all': 74797, 'using all this': 950379, 'all this sanitizer': 45131, 'this sanitizer with': 889957, 'sanitizer with alcohol': 736129, 'with alcohol in': 997134, 'alcohol in it': 41032, 'in it 19': 424224, 'will coronavirus': 993035, 'impact nyc': 417747, 'estate it': 282144, 'it wait': 462224, 'see game': 745148, 'how will coronavirus': 409224, 'will coronavirus impact': 993037, 'coronavirus impact nyc': 206110, 'impact nyc real': 417748, 'real estate it': 701154, 'estate it wait': 282145, 'it wait and': 462225, 'and see game': 71135, 'see game right': 745149, 'on today': 604773, 'today health': 919629, 'health committee': 386276, 'committee meeting': 189081, 'meeting coming': 527683, 'news at': 560251, 'with also': 997180, 'figure on': 305214, 'should the': 766568, 'uk use': 938853, 'use drone': 949172, 'drone to': 260081, 'to disinfect': 904395, 'disinfect public': 245564, 'latest on today': 481479, 'on today health': 604778, 'today health committee': 919630, 'health committee meeting': 386277, 'committee meeting coming': 189082, 'meeting coming up': 527684, 'up on news': 945598, 'on news at': 602390, 'news at one': 560254, 'at one with': 99974, 'one with also': 607482, 'with also the': 997181, 'also the latest': 48976, 'the latest figure': 859102, 'latest figure on': 481336, 'figure on supermarket': 305215, 'on supermarket home': 603792, 'delivery slot and': 234504, 'slot and should': 774107, 'and should the': 71598, 'should the uk': 766576, 'the uk use': 870297, 'uk use drone': 938854, 'use drone to': 949173, 'drone to disinfect': 260083, 'to disinfect public': 904402, 'disinfect public space': 245565, 'fulfillment': 340437, 'autonomously': 104065, 'powered': 667755, 'automated': 103951, 'hyper': 412285, 'localization': 498745, 'algos': 41674, 'int': 440907, 'unreliable': 943328, 'the tech': 869220, 'tech changing': 836054, 'changing retail': 172786, 'retail is': 718237, 'important now': 418906, 'now given': 574789, 'given covid': 350973, '19 micro': 8647, 'micro fulfillment': 530420, 'fulfillment tiny': 340453, 'tiny warehouse': 898682, 'to autonomously': 900851, 'autonomously fulfill': 104068, 'fulfill online': 340412, 'order ai': 618007, 'ai powered': 39328, 'powered automated': 667756, 'automated inventory': 103958, 'inventory management': 443689, 'management hyper': 512579, 'hyper localization': 412293, 'localization algos': 498746, 'algos when': 41675, 'when int': 983602, 'int supply': 440915, 'are unreliable': 91336, 'the tech changing': 869221, 'tech changing retail': 836055, 'changing retail is': 172787, 'retail is more': 718243, 'more important now': 539492, 'important now given': 418907, 'now given covid': 574790, 'given covid 19': 350974, 'covid 19 micro': 213433, '19 micro fulfillment': 8648, 'micro fulfillment tiny': 530421, 'fulfillment tiny warehouse': 340454, 'tiny warehouse to': 898683, 'warehouse to autonomously': 966789, 'to autonomously fulfill': 900852, 'autonomously fulfill online': 104069, 'fulfill online order': 340413, 'online order ai': 608674, 'order ai powered': 618008, 'ai powered automated': 39329, 'powered automated inventory': 667757, 'automated inventory management': 103959, 'inventory management hyper': 443690, 'management hyper localization': 512580, 'hyper localization algos': 412294, 'localization algos when': 498747, 'algos when int': 41676, 'when int supply': 983603, 'int supply chain': 440916, 'chain are unreliable': 170519, 'myer': 550714, 'massive shock': 520106, 'shock to': 759528, 'week where': 977227, 'where ten': 985206, 'ten of': 837791, 'lost the': 503921, 'nation biggest': 552135, 'biggest department': 130212, 'store myer': 809019, 'myer is': 550715, 'standing down': 793763, 'massive shock to': 520107, 'shock to the': 759532, 'the retail sector': 865728, 'retail sector in': 718529, 'sector in week': 744237, 'in week where': 430777, 'week where ten': 977230, 'where ten of': 985207, 'ten of thousand': 837793, 'thousand of job': 893449, 'of job have': 585532, 'job have been': 465853, 'have been lost': 379601, 'been lost the': 121488, 'lost the nation': 503922, 'the nation biggest': 861221, 'nation biggest department': 552136, 'biggest department store': 130213, 'department store myer': 237280, 'store myer is': 809020, 'myer is closing': 550716, 'is closing all': 446603, 'all store for': 44496, 'store for four': 807806, 'four week and': 330699, 'week and standing': 975935, 'and standing down': 72226, 'standing down 10': 793764, 'down 10 00': 256370, '10 00 staff': 1209, 'that left': 844863, 'pilling in': 656693, 'all over no': 43873, 'football all that': 318483, 'all that left': 44642, 'that left is': 844865, 'stock pilling in': 802684, 'pilling in store': 656694, 'in store fuckoffcoronavirus': 428416, 'many grocery': 514108, 'retailer including': 719209, 'pandemic reserving': 636338, 'reserving earlier': 714150, 'earlier hour': 264456, 'risk customer': 723480, 'customer population': 222702, 'population to': 664744, 'many grocery retailer': 514109, 'grocery retailer including': 364903, 'retailer including our': 719210, 'including our customer': 432092, 'our customer have': 622663, 'customer have adjusted': 222436, 'adjusted their store': 32338, 'their store hour': 874855, 'store hour in': 808202, 'hour in light': 405689, 'the pandemic reserving': 863079, 'pandemic reserving earlier': 636339, 'reserving earlier hour': 714151, 'earlier hour of': 264457, 'hour of the': 405812, 'the day for': 852881, 'day for at': 227618, 'at risk customer': 100350, 'risk customer population': 723483, 'customer population to': 222703, 'population to do': 664746, 'drained': 258222, 'plowed': 661095, 'drained milk': 258223, 'milk broken': 531609, 'broken egg': 140891, 'egg plowed': 269953, 'plowed vegetable': 661096, 'vegetable food': 953980, 'waste during': 968105, 'drained milk broken': 258224, 'milk broken egg': 531610, 'broken egg plowed': 140892, 'egg plowed vegetable': 269954, 'plowed vegetable food': 661097, 'vegetable food waste': 953981, 'food waste during': 317476, 'waste during pandemic': 968106, 'during pandemic the': 262899, 'pandemic the new': 636690, 'highstreet': 396130, 'sbinsights': 739810, 'uk retail': 938673, 'sector is': 744240, 'it response': 460735, 'store choosing': 806975, 'door have': 255611, 'you noticed': 1020145, 'noticed store': 573473, 'your high': 1024317, 'street town': 813153, 'or village': 617674, 'village let': 957354, 'know footfall': 476380, 'footfall highstreet': 318541, 'highstreet sbinsights': 396133, 'sbinsights retail': 739811, 'the uk retail': 870274, 'uk retail sector': 938676, 'retail sector is': 718530, 'sector is stepping': 744252, 'stepping up it': 799817, 'up it response': 945246, 'it response to': 460737, '19 with many': 12136, 'with many store': 999392, 'many store choosing': 514734, 'store choosing to': 806976, 'choosing to close': 177943, 'their door have': 873070, 'door have you': 255613, 'have you noticed': 383680, 'you noticed store': 1020149, 'noticed store closure': 573475, 'store closure in': 807094, 'closure in your': 183913, 'in your high': 431091, 'your high street': 1024319, 'high street town': 395439, 'street town or': 813154, 'town or village': 927532, 'or village let': 617675, 'village let know': 957355, 'let know footfall': 486857, 'know footfall highstreet': 476381, 'footfall highstreet sbinsights': 318542, 'highstreet sbinsights retail': 396134, 'avb': 104730, 'harnessing': 378483, 'avb said': 104731, 'is harnessing': 448317, 'harnessing it': 378484, 'help it': 389942, 'it retailer': 460753, 'retailer member': 719246, 'member better': 528036, 'better transition': 128580, 'transition into': 929672, 'and drastically': 61718, 'drastically changing': 258429, 'buying habit': 150453, 'avb said it': 104732, 'said it is': 731157, 'it is harnessing': 458971, 'is harnessing it': 448318, 'harnessing it resource': 378485, 'it resource to': 460734, 'to help it': 907547, 'help it retailer': 389948, 'it retailer member': 460754, 'retailer member better': 719247, 'member better transition': 528037, 'better transition into': 128581, 'transition into the': 929673, 'into the new': 443151, 'new world of': 559902, 'world of and': 1009849, 'of and drastically': 580152, 'and drastically changing': 61719, 'drastically changing consumer': 258430, 'changing consumer buying': 172669, 'consumer buying habit': 196707, 'mckinsey estimate': 522195, 'estimate that': 282266, 'that africa': 842512, 'africa gdp': 35076, 'gdp growth': 344885, '2020 could': 14255, 'cut by': 223259, 'to percentage': 911657, 'percentage point': 651216, 'point because': 662435, 'could disrupt': 209086, 'disrupt supply': 246374, 'chain reduce': 171033, 'reduce demand': 705819, 'non oil': 566446, 'oil product': 597355, 'cause fall': 167555, 'mckinsey estimate that': 522196, 'estimate that africa': 282267, 'that africa gdp': 842513, 'africa gdp growth': 35077, 'gdp growth in': 344886, 'growth in 2020': 367392, 'in 2020 could': 419830, '2020 could be': 14256, 'could be cut': 208853, 'be cut by': 114318, 'cut by to': 223261, 'by to percentage': 154556, 'to percentage point': 911658, 'percentage point because': 651218, 'point because of': 662436, '19 the pandemic': 11230, 'pandemic could disrupt': 635244, 'could disrupt supply': 209087, 'disrupt supply chain': 246375, 'supply chain reduce': 825017, 'chain reduce demand': 171034, 'reduce demand for': 705820, 'demand for non': 235460, 'for non oil': 323902, 'non oil product': 566447, 'oil product and': 597356, 'product and cause': 680876, 'and cause fall': 59637, 'cause fall in': 167556, 'knowns': 477262, 'the known': 858847, 'known knowns': 477233, 'knowns we': 477265, 'have liquidity': 381330, 'liquidity crisis': 494131, 'crisis 70': 216968, 'spending woman': 789062, 'woman will': 1003691, 'will bear': 992779, 'bear the': 118421, 'brunt of': 141361, 'virus induced': 958346, 'induced financial': 435464, 'crisis unless': 218294, 'we act': 970273, 'act now': 29713, 'now this': 576129, 'are the known': 90847, 'the known knowns': 858848, 'known knowns we': 477234, 'knowns we have': 477266, 'we have liquidity': 971857, 'have liquidity crisis': 381331, 'liquidity crisis 70': 494132, 'crisis 70 of': 216969, 'is consumer spending': 446798, 'consumer spending woman': 199108, 'spending woman will': 789063, 'woman will bear': 1003693, 'will bear the': 992780, 'bear the brunt': 118422, 'the brunt of': 850061, 'brunt of the': 141363, 'the virus induced': 870848, 'virus induced financial': 958348, 'induced financial crisis': 435465, 'financial crisis unless': 306385, 'crisis unless we': 218295, 'unless we act': 942656, 'we act now': 970274, 'act now this': 29715, 'now this is': 576132, 'we should do': 973267, 'dirt': 243710, 'physical business': 655389, 'failing due': 296200, 'to can': 902403, 'can set': 159580, 'your shopify': 1025768, 'shopify online': 761159, 'at dirt': 98443, 'dirt cheap': 243711, 'cheap cost': 174088, 'can train': 160027, 'train you': 929292, 'in facebook': 422751, 'free retail': 332103, 'retail merchandise': 718316, 'merchandise restaurant': 528980, 'physical business are': 655390, 'business are failing': 143365, 'are failing due': 86446, 'failing due to': 296201, 'due to can': 261720, 'to can set': 902407, 'can set up': 159582, 'set up your': 753588, 'up your shopify': 946754, 'your shopify online': 1025769, 'shopify online store': 761160, 'online store at': 609443, 'store at dirt': 806581, 'at dirt cheap': 98444, 'dirt cheap cost': 243713, 'cheap cost and': 174089, 'cost and can': 207855, 'and can train': 59478, 'can train you': 160028, 'train you in': 929293, 'you in facebook': 1019302, 'in facebook ad': 422752, 'facebook ad for': 294886, 'ad for free': 31101, 'for free retail': 321725, 'free retail merchandise': 332104, 'retail merchandise restaurant': 718317, 'detected': 239339, 'seoul': 751054, 'first case': 308559, 'and south': 72024, 'korea wa': 477511, 'wa detected': 961963, 'detected on': 239340, 'by late': 153018, 'late january': 480883, 'january seoul': 464675, 'seoul had': 751055, 'had medical': 373292, 'medical company': 526099, 'company starting': 191111, 'on diagnostic': 600306, 'test one': 839113, 'wa approved': 961565, 'approved week': 83212, 'the isn': 858557, 'to meeting': 910068, 'meeting test': 527764, 'test demand': 838967, 'the first case': 855287, 'first case in': 308561, 'the and south': 848721, 'and south korea': 72027, 'south korea wa': 786754, 'korea wa detected': 477512, 'wa detected on': 961964, 'detected on the': 239341, 'same day by': 733024, 'day by late': 227420, 'by late january': 153019, 'late january seoul': 480885, 'january seoul had': 464676, 'seoul had medical': 751056, 'had medical company': 373293, 'medical company starting': 526103, 'company starting to': 191112, 'starting to work': 795048, 'work on diagnostic': 1005530, 'on diagnostic test': 600307, 'diagnostic test one': 240268, 'test one wa': 839114, 'one wa approved': 607342, 'wa approved week': 961568, 'approved week later': 83213, 'week later today': 976468, 'later today the': 481153, 'today the isn': 920294, 'the isn even': 858558, 'isn even close': 454497, 'close to meeting': 182907, 'to meeting test': 910069, 'meeting test demand': 527765, 'elevated': 271366, 'had instructed': 373204, 'introduce the': 443405, 'the elevated': 854195, 'elevated price': 271369, 'be store': 117384, 'store wide': 811320, 'wide ah': 991701, 'ah there': 39103, 'point answering': 662418, 'answering you': 78215, 'is bye': 446339, 'bye bye': 154799, 'management had instructed': 512574, 'had instructed to': 373205, 'instructed to introduce': 440530, 'to introduce the': 908473, 'introduce the elevated': 443406, 'the elevated price': 854196, 'elevated price it': 271370, 'price it seemed': 674924, 'it seemed to': 460937, 'seemed to be': 746728, 'to be store': 901565, 'be store wide': 117385, 'store wide ah': 811321, 'wide ah there': 991702, 'ah there no': 39104, 'there no point': 878830, 'no point answering': 565133, 'point answering you': 662419, 'answering you will': 78216, 'will be off': 992581, '19 is bye': 7943, 'is bye bye': 446340, 'bye bye jhoots': 154800, 'granter': 362100, 'local small': 498436, '19 shelter': 10448, 'place by': 657369, 'shopping granter': 762805, 'granter online': 362103, 'online stay': 609422, 'shop thank': 760888, 'support granter': 826545, 'granter on': 362101, 'support local small': 826633, 'local small business': 498437, 'small business during': 774856, 'covid 19 shelter': 213780, '19 shelter in': 10450, 'in place by': 426726, 'place by shopping': 657373, 'by shopping granter': 153994, 'shopping granter online': 762806, 'granter online stay': 362104, 'online stay safe': 609425, 'safe stay home': 729972, 'home and shop': 400685, 'and shop thank': 71517, 'shop thank you': 760889, 'continued support granter': 201346, 'support granter on': 826546, 'granter on ebay': 362102, 'just assume': 468237, 'save yourself': 737715, 'yourself some': 1026704, 'some sanity': 783798, 'sanity can': 736542, 'only imagine': 610626, 'potential bacteria': 667018, 'bacteria you': 107711, 're spreading': 699563, 'spreading by': 790938, 'and disinfecting': 61458, 'disinfecting all': 245837, 'let just assume': 486837, 'just assume that': 468239, 'assume that you': 97020, 'have the virus': 383041, 'virus if you': 958316, 're going into': 698752, 'going into the': 355247, 'store and save': 806336, 'and save yourself': 70962, 'save yourself some': 737717, 'yourself some sanity': 1026705, 'some sanity can': 783800, 'sanity can only': 736543, 'can only imagine': 159127, 'only imagine the': 610627, 'imagine the potential': 416800, 'the potential bacteria': 864116, 'potential bacteria you': 667019, 'bacteria you re': 107712, 'you re spreading': 1020755, 're spreading by': 699564, 'spreading by washing': 790939, 'by washing and': 154694, 'washing and disinfecting': 967646, 'and disinfecting all': 61459, 'disinfecting all your': 245838, 'all your grocery': 45567, 'professional hospital': 682457, 'worker essential': 1006858, 'service staff': 752849, 'staff people': 792743, 'people without': 650486, 'without whom': 1003047, 'whom isolation': 990560, 'isolation would': 455518, 'be impossible': 115383, 'impossible bless': 419358, 'bless them': 132601, 'all stayhome': 44450, 'bless the healthcare': 132596, 'healthcare professional hospital': 387234, 'professional hospital staff': 682458, 'hospital staff grocery': 404637, 'store staff delivery': 810309, 'staff delivery worker': 792361, 'delivery worker essential': 234772, 'worker essential service': 1006861, 'essential service staff': 281525, 'service staff people': 752853, 'staff people without': 792744, 'people without whom': 650495, 'without whom isolation': 1003049, 'whom isolation would': 990561, 'isolation would be': 455519, 'would be impossible': 1011605, 'be impossible bless': 115384, 'impossible bless them': 419359, 'bless them all': 132602, 'them all stayhome': 875350, 'money not': 536910, 'out being': 625774, 'being home': 125261, 'or spend': 617179, 'money online': 536944, 'shopping quarantinelife': 763708, 'going to save': 355696, 'to save money': 913784, 'save money not': 737585, 'money not going': 536911, 'not going out': 569700, 'going out being': 355360, 'out being home': 625775, 'being home or': 125266, 'home or spend': 401756, 'or spend more': 617180, 'spend more money': 788638, 'more money online': 539791, 'money online shopping': 536949, 'online shopping quarantinelife': 609241, 'are remaining': 89570, 'remaining open': 709973, 'open with': 612677, 'some change': 782508, 'april we': 83713, 're limiting': 698998, 'time introducing': 897045, 'introducing online': 443500, 'ordering and': 618940, 'experience safer': 291470, 'safer shop': 730378, 'online read': 608849, 'we are remaining': 970686, 'are remaining open': 89571, 'remaining open with': 709976, 'open with some': 612683, 'with some change': 1000837, 'some change to': 782509, 'change to our': 172356, 'to our operation': 911226, 'our operation in': 624166, 'operation in april': 613205, 'in april we': 420475, 'april we re': 83714, 'we re limiting': 972914, 're limiting the': 698999, 'limiting the number': 492878, 'number of customer': 576935, 'of customer at': 582266, 'customer at time': 222147, 'at time introducing': 101293, 'time introducing online': 897046, 'introducing online ordering': 443501, 'online ordering and': 608706, 'ordering and making': 618943, 'and making the': 66600, 'making the in': 511417, 'the in store': 858017, 'store shopping experience': 810134, 'shopping experience safer': 762619, 'experience safer shop': 291471, 'safer shop online': 730379, 'shop online read': 760583, 'online read more': 608850, 'lassie': 480078, 'my girl': 548496, 'girl made': 350263, 'post after': 665982, 'she came': 755911, 'home today': 402352, 'today she': 920164, 'she scared': 756330, 'scared every': 740957, 'single day': 771277, 'day going': 227677, 'work people': 1005601, 're treating': 699733, 'treating supermarket': 931013, 'worker my': 1007407, 'poor lassie': 664214, 'my girl made': 548499, 'girl made this': 350264, 'made this post': 508025, 'this post after': 889671, 'post after she': 665983, 'after she came': 36186, 'she came home': 755914, 'came home today': 157011, 'home today she': 402356, 'today she scared': 920167, 'she scared every': 756331, 'scared every single': 740959, 'every single day': 286181, 'single day going': 771280, 'day going to': 227680, 'to work people': 918766, 'work people need': 1005603, 'think about how': 885087, 'they re treating': 883144, 're treating supermarket': 699734, 'treating supermarket worker': 931014, 'supermarket worker my': 824052, 'worker my poor': 1007411, 'my poor lassie': 549807, 'please listen': 660195, 'to government': 906933, 'advice regarding': 33473, 'be mindful': 115940, 'are most': 88131, 'most susceptible': 542800, 'this strain': 890376, 'coronavirus stay': 206815, 'and responsible': 70359, 'responsible everyone': 716024, 'please listen to': 660197, 'listen to government': 494737, 'to government advice': 906934, 'government advice regarding': 359830, 'advice regarding covid': 33474, '19 and please': 5085, 'and please stop': 69116, 'buying food be': 150304, 'food be mindful': 313700, 'be mindful of': 115944, 'mindful of people': 532817, 'who are most': 988176, 'are most susceptible': 88141, 'most susceptible to': 542801, 'susceptible to this': 829447, 'to this strain': 917465, 'this strain of': 890377, 'strain of coronavirus': 812283, 'of coronavirus stay': 581964, 'coronavirus stay safe': 206817, 'safe and responsible': 729476, 'and responsible everyone': 70360, 'manifest': 513169, 'see human': 745266, 'human greed': 410500, 'greed manifest': 363403, 'manifest with': 513178, 'with massive': 999421, 'massive emptying': 520022, 'emptying of': 275264, 'and item': 65628, 'shelf pure': 757441, 'and unnecessary': 74694, 'unnecessary panic': 942918, 'panic while': 638783, 'who really': 989508, 'basic are': 111828, 'behind what': 124750, 'than or': 840989, 'public display': 687947, 'is sad to': 451606, 'sad to see': 729277, 'to see human': 914023, 'see human greed': 745267, 'human greed manifest': 410501, 'greed manifest with': 363404, 'manifest with massive': 513179, 'with massive emptying': 999422, 'massive emptying of': 520023, 'emptying of food': 275265, 'food and item': 313263, 'and item on': 65630, 'item on the': 463511, 'the shelf pure': 866870, 'shelf pure and': 757442, 'pure and unnecessary': 689963, 'and unnecessary panic': 74695, 'unnecessary panic while': 942921, 'panic while the': 638785, 'while the people': 987408, 'people who really': 650332, 'who really need': 989509, 'really need the': 702443, 'need the basic': 555739, 'the basic are': 849302, 'basic are left': 111829, 'are left behind': 87756, 'left behind what': 485427, 'behind what will': 124752, 'will be worse': 992776, 'be worse than': 118156, 'worse than or': 1011014, 'than or the': 840990, 'or the public': 617392, 'the public display': 864798, 'public display of': 687948, 'display of humanity': 246194, 'reprogramming': 712998, 'reprogramming of': 712999, 'the executive': 854682, 'executive how': 289901, 'long till': 501758, 'till there': 896106, 'but middle': 146386, 'middle lower': 530659, 'lower economic': 505848, 'economic job': 267160, 'job all': 465602, 'that probably': 845846, 'probably ha': 679276, 'infected 30': 436523, '30 40': 16937, 'of already': 580013, 'already without': 47761, 'without ever': 1002618, 'ever knowing': 285385, 'knowing stop': 477131, 'being sheep': 125773, 'reprogramming of the': 713000, 'of the executive': 591000, 'the executive how': 854684, 'executive how long': 289902, 'how long till': 408214, 'long till there': 501761, 'till there is': 896107, 'is nothing but': 450231, 'nothing but middle': 572958, 'but middle lower': 146387, 'middle lower economic': 530661, 'lower economic job': 505849, 'economic job all': 267161, 'job all for': 465603, 'all for virus': 42851, 'virus that probably': 958876, 'that probably ha': 845847, 'probably ha infected': 679277, 'ha infected 30': 370966, 'infected 30 40': 436524, '30 40 of': 16940, '40 of already': 18621, 'of already without': 580016, 'already without ever': 47762, 'without ever knowing': 1002619, 'ever knowing stop': 285386, 'knowing stop being': 477132, 'stop being sheep': 804497, 'quarantine isolation': 692310, 'isolation social': 455435, 'distancing disruption': 247103, 'disruption uncertainty': 246551, 'uncertainty people': 939740, 'must figure': 546653, 'out way': 627787, 'quarantine isolation social': 692316, 'isolation social distancing': 455436, 'social distancing disruption': 779591, 'distancing disruption uncertainty': 247104, 'disruption uncertainty people': 246552, 'uncertainty people are': 939741, 'people are forced': 646978, 'forced to distance': 328629, 'themselves from each': 876810, 'other and business': 619821, 'and business must': 59292, 'business must figure': 144075, 'must figure out': 546654, 'figure out way': 305221, 'out way to': 627789, 'to survive in': 916035, 'survive in the': 829194, 'wake of change': 964590, 'of change in': 581271, 'consumer behavior read': 196503, 'behavior read more': 124163, 'about it here': 25579, 'nation must': 552258, 'must we': 546995, 'be shit': 117143, 'shit at': 759065, 'at everything': 98577, 'everything stophoarding': 288013, 'nation must we': 552261, 'must we be': 546996, 'we be shit': 970821, 'be shit at': 117144, 'shit at everything': 759066, 'at everything stophoarding': 98578, 'the beer': 849420, 'wine spirit': 995897, 'spirit aisle': 789447, 'aisle so': 40369, 'so empty': 776949, 'empty worse': 275245, 'than xmas': 841477, 'xmas supermarket': 1013890, 'never seen the': 558181, 'seen the beer': 747276, 'the beer wine': 849424, 'beer wine spirit': 122542, 'wine spirit aisle': 995898, 'spirit aisle so': 789448, 'aisle so empty': 40370, 'so empty worse': 776952, 'empty worse than': 275246, 'worse than xmas': 1011021, 'than xmas supermarket': 841478, 'disney': 246026, 'yournerdsidepodcast': 1026440, 'yournerdside': 1026437, 'kblx1029': 471184, 'spreaker': 791119, 'tunein': 935450, 'applepodcast': 82395, 'disney warns': 246047, 'warns coronavirus': 967258, 'outbreak could': 628143, 'behavior at': 123918, 'at theme': 101190, 'theme park': 876698, 'business yournerdsidepodcast': 144731, 'yournerdsidepodcast yournerdside': 1026441, 'yournerdside kblx1029': 1026438, 'kblx1029 podcast': 471185, 'podcast disney': 662272, 'disney spreaker': 246045, 'spreaker spotify': 791120, 'spotify tunein': 790154, 'tunein applepodcast': 935451, 'disney warns coronavirus': 246048, 'warns coronavirus outbreak': 967259, 'coronavirus outbreak could': 206380, 'outbreak could change': 628145, 'could change consumer': 209009, 'change consumer behavior': 171980, 'consumer behavior at': 196443, 'behavior at theme': 123919, 'at theme park': 101191, 'theme park and': 876699, 'park and other': 641863, 'and other business': 68290, 'other business yournerdsidepodcast': 619920, 'business yournerdsidepodcast yournerdside': 144732, 'yournerdsidepodcast yournerdside kblx1029': 1026442, 'yournerdside kblx1029 podcast': 1026439, 'kblx1029 podcast disney': 471186, 'podcast disney spreaker': 662273, 'disney spreaker spotify': 246046, 'spreaker spotify tunein': 791121, 'spotify tunein applepodcast': 790155, 'tmr': 899368, 'eastside': 265634, 'supervised': 824374, 'tmr is': 899369, 'is cheque': 446510, 'cheque day': 175505, 'drug trade': 261128, 'trade continues': 928466, 'downtown eastside': 257743, 'eastside despite': 265635, 'despite covid': 238711, '19 though': 11362, 'though supply': 892902, 'is lower': 449480, 'lower and': 505796, 'higher supervised': 395740, 'supervised consumption': 824377, 'consumption site': 199943, 'doing what': 252843, 'can amid': 157487, 'amid more': 52534, 'more desperation': 539007, 'desperation fewer': 238592, 'fewer local': 304221, 'tmr is cheque': 899370, 'is cheque day': 446511, 'cheque day the': 175506, 'day the drug': 228486, 'the drug trade': 853743, 'drug trade continues': 261129, 'trade continues in': 928467, 'continues in the': 201405, 'in the downtown': 429149, 'the downtown eastside': 853635, 'downtown eastside despite': 257744, 'eastside despite covid': 265636, 'despite covid 19': 238712, 'covid 19 though': 213944, '19 though supply': 11365, 'though supply is': 892903, 'supply is lower': 825449, 'is lower and': 449481, 'lower and price': 505797, 'and price higher': 69453, 'price higher supervised': 674518, 'higher supervised consumption': 395741, 'supervised consumption site': 824378, 'consumption site are': 199944, 'site are doing': 771880, 'are doing what': 85939, 'doing what they': 252849, 'they can amid': 881610, 'can amid more': 157488, 'amid more desperation': 52535, 'more desperation fewer': 539008, 'desperation fewer local': 238593, 'fewer local service': 304222, 'presence': 670548, 'convert your': 202545, 'current website': 221432, 'website into': 975312, 'an commerce': 55520, 'commerce store': 188638, 'many shop': 514694, 'business premise': 144246, 'premise and': 669921, 'you quickly': 1020535, 'quickly build': 694484, 'online presence': 608786, 'presence corvid19uk': 670552, 'considering the current': 195425, 'current situation we': 221375, 'situation we would': 772573, 'we would like': 973971, 'like to offer': 491608, 'to offer you': 910860, 'offer you the': 594898, 'you the opportunity': 1021607, 'opportunity to convert': 613701, 'to convert your': 903469, 'convert your current': 202546, 'your current website': 1023400, 'current website into': 221433, 'website into an': 975313, 'into an commerce': 442391, 'an commerce store': 55523, 'commerce store we': 188641, 'store we know': 811174, 'we know that': 972158, 'know that many': 476773, 'that many shop': 845031, 'many shop and': 514695, 'shop and business': 759840, 'and business are': 59266, 'business are closing': 143360, 'are closing their': 85401, 'closing their business': 183782, 'their business premise': 872686, 'business premise and': 144247, 'premise and we': 669922, 'and we want': 75331, 'help you quickly': 390992, 'you quickly build': 1020536, 'quickly build an': 694485, 'build an online': 141948, 'an online presence': 56626, 'online presence corvid19uk': 608787, 'get everything': 346966, 'run errand': 727620, 'errand or': 280203, 'or buy': 614613, 'the shelterinplace': 866915, 'shelterinplace period': 758012, 'period consider': 651736, 'following go': 312734, 'go early': 353505, 'early and': 264541, 'take something': 832603, 'you wait': 1022098, 'go in and': 353700, 'in and get': 420364, 'and get everything': 63569, 'get everything needed': 346968, 'needed if you': 556397, 'trying to run': 934862, 'to run errand': 913659, 'run errand or': 727624, 'errand or buy': 280204, 'or buy food': 614615, 'buy food during': 148641, 'during the shelterinplace': 263189, 'the shelterinplace period': 866917, 'shelterinplace period consider': 758013, 'period consider the': 651737, 'consider the following': 195138, 'the following go': 855506, 'following go early': 312735, 'go early and': 353506, 'early and take': 264545, 'and take something': 72977, 'take something to': 832604, 'while you wait': 987596, 'you wait in': 1022100, 'brazil': 138327, 'triggered fall': 931914, 'of emerging': 583067, 'market currency': 516264, 'currency the': 221065, 'affected country': 34339, 'are mexico': 88072, 'mexico russia': 530020, 'russia brazil': 728448, 'brazil and': 138328, 'africa see': 35133, 'our emi': 622885, 'emi report': 273169, 'and the fall': 73364, 'the fall of': 854872, 'fall of oil': 297003, 'of oil and': 587176, 'oil and commodity': 596612, 'and commodity price': 60156, 'have triggered fall': 383406, 'triggered fall in': 931915, 'fall in the': 296967, 'in the value': 429643, 'value of emerging': 952160, 'of emerging market': 583068, 'emerging market currency': 273131, 'market currency the': 516269, 'currency the most': 221066, 'the most affected': 860943, 'most affected country': 542072, 'affected country are': 34340, 'country are mexico': 210472, 'are mexico russia': 88073, 'mexico russia brazil': 530021, 'russia brazil and': 728449, 'brazil and south': 138330, 'and south africa': 72025, 'south africa see': 786660, 'africa see more': 35134, 'see more in': 745427, 'in our emi': 426286, 'our emi report': 622886, 'globalized': 352357, 'inhumanely': 438497, 'caging': 155180, 'unsanitarily': 943411, 'butchering': 148076, 'blind': 132681, 'globalized society': 352358, 'society better': 781165, 'better demand': 128258, 'demand foodsafety': 235368, 'foodsafety 2020': 318051, 'still inhumanely': 800750, 'inhumanely hunting': 438498, 'hunting and': 411404, 'and caging': 59396, 'caging unsanitarily': 155181, 'unsanitarily butchering': 943412, 'butchering and': 148079, 'and processing': 69542, 'processing wild': 680046, 'wild animal': 992043, 'animal and': 76548, 'and pet': 68942, 'pet for': 653403, 'food do': 314249, 'not turn': 572299, 'turn blind': 935657, 'blind eye': 132688, 'on chinese': 599912, 'chinese sanitary': 177346, 'sanitary control': 733798, 'and authority': 58531, 'authority is': 103754, 'is chinesevirus': 446526, 'globalized society better': 352359, 'society better demand': 781166, 'better demand foodsafety': 128259, 'demand foodsafety 2020': 235369, 'foodsafety 2020 people': 318052, '2020 people still': 14507, 'people still inhumanely': 649598, 'still inhumanely hunting': 800751, 'inhumanely hunting and': 438499, 'hunting and caging': 411405, 'and caging unsanitarily': 59397, 'caging unsanitarily butchering': 155182, 'unsanitarily butchering and': 943413, 'butchering and processing': 148080, 'and processing wild': 69544, 'processing wild animal': 680047, 'wild animal and': 992044, 'animal and pet': 76549, 'and pet for': 68944, 'pet for food': 653404, 'for food do': 321576, 'food do not': 314251, 'do not turn': 249877, 'not turn blind': 572300, 'turn blind eye': 935658, 'blind eye on': 132689, 'eye on chinese': 294074, 'on chinese sanitary': 599916, 'chinese sanitary control': 177347, 'sanitary control and': 733799, 'control and authority': 201963, 'and authority is': 58532, 'authority is chinesevirus': 103755, 'canadian mask': 160708, 'mask supplier': 519320, 'supplier say': 824609, 'have ppe': 382010, 'ppe available': 667918, 'available and': 104220, 'we spoke': 973355, 'to three': 917543, 'three company': 893894, 'company including': 190775, 'including one': 432082, 'you hcw': 1019159, 'canadian mask supplier': 160709, 'mask supplier say': 519321, 'supplier say they': 824610, 'they have ppe': 882365, 'have ppe available': 382011, 'ppe available and': 667919, 'available and not': 104226, 'and not at': 67716, 'not at inflated': 568270, 'inflated price we': 437080, 'price we spoke': 677410, 'we spoke to': 973357, 'spoke to three': 789739, 'to three company': 917544, 'three company including': 893895, 'company including one': 190777, 'including one that': 432083, 'one that may': 607182, 'that may surprise': 845091, 'surprise you hcw': 828566, 'westside': 980720, 'take those': 832721, 'those distancing': 891935, 'distancing sign': 247478, 'sign amp': 769087, 'amp purell': 54355, 'purell at': 690007, 'granted but': 362065, 'there none': 878852, '19 protection': 9853, 'protection at': 685338, 'at corner': 98332, 'corner store': 203682, 'store westside': 811223, 'westside resident': 980721, 'resident on': 714347, 'black in': 132073, 'pandemic photo': 636180, 'you may take': 1019814, 'may take those': 521562, 'take those distancing': 832722, 'those distancing sign': 891936, 'distancing sign amp': 247479, 'sign amp purell': 769088, 'amp purell at': 54356, 'purell at the': 690008, 'supermarket for granted': 820399, 'for granted but': 321990, 'granted but there': 362066, 'but there none': 147469, 'there none of': 878854, 'none of those': 566601, 'of those covid': 592084, 'covid 19 protection': 213623, '19 protection at': 9854, 'protection at corner': 685340, 'at corner store': 98333, 'corner store westside': 203686, 'store westside resident': 811224, 'westside resident on': 980722, 'resident on the': 714349, 'on the real': 604319, 'real world need': 701466, 'world need of': 1009826, 'need of black': 555321, 'of black in': 580732, 'black in this': 132074, 'in this pandemic': 429991, 'this pandemic photo': 889415, 'itsnottheendoftheworld': 463984, 'just hope': 468980, 'your animal': 1022783, 'animal well': 76683, 'you plan': 1020342, 'of yourselves': 593549, 'yourselves and': 1026780, 'family itsnottheendoftheworld': 297970, 'just hope that': 468984, 'hope that in': 403644, 'that in this': 844462, 'in this panic': 429992, 'this panic to': 889464, 'panic to buy': 638716, 'to buy all': 902175, 'buy all of': 148292, 'of the toilet': 591547, 'paper sanitizer food': 640718, 'sanitizer food you': 734888, 'food you take': 317723, 'you take care': 1021508, 'care of your': 164123, 'of your animal': 593443, 'your animal well': 1022784, 'animal well you': 76684, 'well you plan': 978780, 'you plan to': 1020344, 'plan to take': 658329, 'care of yourselves': 164125, 'of yourselves and': 593552, 'yourselves and your': 1026785, 'your family itsnottheendoftheworld': 1023791, 'fingernail': 307826, 'often correctly': 596178, 'correctly wet': 207614, 'wet your': 980767, 'hand scrub': 375749, 'scrub everywhere': 742897, 'everywhere under': 288276, 'under those': 940357, 'those fingernail': 892005, 'fingernail too': 307829, 'too with': 925169, 'second then': 743834, 'then rinse': 877488, 'rinse dry': 722569, 'dry well': 261319, 'with clean': 997650, 'clean towel': 180665, 'towel if': 927330, 'to soap': 914806, 'water hand': 969022, 'sanitizer work': 736147, 'make sure to': 510535, 'sure to wash': 827790, 'hand often correctly': 375120, 'often correctly wet': 596179, 'correctly wet your': 207615, 'wet your hand': 980768, 'your hand scrub': 1024222, 'hand scrub everywhere': 375750, 'scrub everywhere under': 742898, 'everywhere under those': 288277, 'under those fingernail': 940358, 'those fingernail too': 892006, 'fingernail too with': 307830, 'too with soap': 925171, '20 second then': 13335, 'second then rinse': 743836, 'then rinse dry': 877489, 'rinse dry well': 722570, 'dry well with': 261320, 'well with clean': 978757, 'with clean towel': 997653, 'clean towel if': 180666, 'towel if you': 927331, 'access to soap': 28279, 'to soap and': 914807, 'and water hand': 75241, 'water hand sanitizer': 969023, 'hand sanitizer work': 375673, 'indianeconomy': 434937, 'unplanned': 943042, 'avant': 104724, 'garde': 343568, 'rbi govt': 698086, 'govt have': 361151, 'no clue': 563830, 'clue what': 184563, 'happening to': 377416, 'to indianeconomy': 908333, 'indianeconomy first': 434940, 'first they': 309065, 'they killed': 882516, 'killed demand': 474578, 'side but': 768782, 'but supported': 147231, 'supported supply': 827066, 'now unplanned': 576267, 'unplanned lockdown': 943043, 'killed both': 474563, 'both side': 136045, 'side retail': 768876, 'are 150': 84103, '150 economy': 3905, 'economy an': 267632, 'an avant': 55491, 'avant garde': 104725, 'garde rbi': 343569, 'rbi willing': 698099, 'go all': 353262, 'fight covid19': 304706, 'rbi govt have': 698087, 'govt have no': 361152, 'have no clue': 381617, 'no clue what': 563834, 'clue what is': 184564, 'is happening to': 448291, 'happening to indianeconomy': 377417, 'to indianeconomy first': 908334, 'indianeconomy first they': 434941, 'first they killed': 309067, 'they killed demand': 882517, 'killed demand side': 474580, 'demand side but': 236209, 'side but supported': 768784, 'but supported supply': 147232, 'supported supply now': 827067, 'supply now unplanned': 825609, 'now unplanned lockdown': 576268, 'unplanned lockdown ha': 943044, 'lockdown ha killed': 499450, 'ha killed both': 371079, 'killed both side': 474564, 'both side retail': 136047, 'side retail price': 768877, 'retail price are': 718406, 'price are 150': 672625, 'are 150 economy': 84104, '150 economy an': 3906, 'economy an avant': 267633, 'an avant garde': 55492, 'avant garde rbi': 104726, 'garde rbi willing': 343570, 'rbi willing to': 698100, 'willing to go': 995469, 'to go all': 906763, 'go all out': 353265, 'out to fight': 627645, 'to fight covid19': 905786, 'outbreak consumer': 628125, 'back their': 107319, 'spending but': 788761, 'grocery download': 364470, 'new infographic': 558931, 'infographic to': 437642, 'more change': 538797, 'purchase decision': 689420, 'decision and': 230998, 'with the outbreak': 1001418, 'the outbreak consumer': 862605, 'outbreak consumer are': 628126, 'consumer are cutting': 196289, 'are cutting back': 85691, 'cutting back their': 223715, 'back their spending': 107323, 'their spending but': 874775, 'spending but not': 788764, 'but not on': 146548, 'not on grocery': 570747, 'on grocery download': 601181, 'grocery download our': 364471, 'download our new': 257614, 'our new infographic': 624034, 'new infographic to': 558932, 'infographic to learn': 437644, 'learn about more': 483933, 'about more change': 25750, 'more change in': 538799, 'in consumer purchase': 421715, 'consumer purchase decision': 198613, 'purchase decision and': 689421, 'decision and behavior': 231000, 'fabliss': 294213, 'sheila': 756662, 'sendinglove': 750118, 'samantha': 732933, 'zara': 1027235, 'leon': 486394, 'fab': 294195, 'closertogetherstayingapart': 183529, 'writenow': 1012802, 'what came': 981163, 'post jessie': 666188, 'jessie wrote': 465265, 'wrote fabliss': 1013195, 'fabliss letter': 294214, 'letter thanks': 487353, 'thanks jessie': 842123, 'jessie sheila': 465263, 'sheila michael': 756663, 'michael wrote': 530269, 'wrote to': 1013226, 'to sendinglove': 914226, 'sendinglove andrew': 750119, 'andrew samantha': 76194, 'samantha zara': 732938, 'zara leon': 1027236, 'leon wrote': 486395, 'wrote another': 1013191, 'another fab': 77608, 'fab letter': 294196, 'letter yes': 487385, 'home closertogetherstayingapart': 400903, 'closertogetherstayingapart writenow': 183530, 'look what came': 502666, 'what came in': 981164, 'came in the': 157018, 'the post jessie': 864093, 'post jessie wrote': 666189, 'jessie wrote fabliss': 465266, 'wrote fabliss letter': 1013196, 'fabliss letter thanks': 294215, 'letter thanks jessie': 487354, 'thanks jessie sheila': 842124, 'jessie sheila michael': 465264, 'sheila michael wrote': 756664, 'michael wrote to': 530270, 'wrote to sendinglove': 1013227, 'to sendinglove andrew': 914227, 'sendinglove andrew samantha': 750120, 'andrew samantha zara': 76195, 'samantha zara leon': 732939, 'zara leon wrote': 1027237, 'leon wrote another': 486396, 'wrote another fab': 1013192, 'another fab letter': 77609, 'fab letter yes': 294197, 'letter yes we': 487386, 'we are hero': 970590, 'are hero and': 87128, 'hero and so': 393932, 'and so are': 71835, 'so are you': 776547, 'are you all': 91763, 'all for staying': 42847, 'for staying at': 325886, 'at home closertogetherstayingapart': 98955, 'home closertogetherstayingapart writenow': 400904, 'grossery': 366451, 'participation': 642576, 'dmart': 248948, 'tech driven': 836077, 'driven solution': 259360, 'distribute grossery': 247986, 'grossery part': 366452, 'part participation': 642404, 'participation of': 642579, 'chain dmart': 170656, 'dmart is': 248949, 'is equally': 447530, 'equally essential': 279633, 'should start': 766486, 'start push': 794445, 'push model': 690299, 'model delivery': 535241, 'to household': 908007, 'household stop': 406956, 'stop pull': 804946, 'pull model': 688869, 'model customer': 535239, 'customer visiting': 223019, 'visiting shop': 959547, 'prevent cu': 671611, 'tech driven solution': 836078, 'driven solution to': 259361, 'solution to distribute': 782097, 'to distribute grossery': 904444, 'distribute grossery part': 247987, 'grossery part participation': 366453, 'part participation of': 642405, 'participation of supermarket': 642580, 'of supermarket chain': 590416, 'supermarket chain dmart': 819602, 'chain dmart is': 170657, 'dmart is equally': 248950, 'is equally essential': 447531, 'equally essential they': 279634, 'essential they should': 281678, 'they should start': 883385, 'should start push': 766490, 'start push model': 794446, 'push model delivery': 690300, 'model delivery to': 535242, 'delivery to household': 234662, 'to household stop': 908010, 'household stop pull': 406957, 'stop pull model': 804947, 'pull model customer': 688870, 'model customer visiting': 535240, 'customer visiting shop': 223020, 'visiting shop to': 959548, 'shop to prevent': 760951, 'to prevent cu': 912054, 'been about': 120590, 'for most': 323618, 'of look': 586006, 'behavior ha': 124050, 'it been about': 456787, 'been about month': 120591, 'about month of': 25748, 'month of socialdistancing': 537904, 'of socialdistancing for': 589851, 'socialdistancing for most': 780373, 'for most of': 323622, 'most of look': 542551, 'of look at': 586007, 'at how consumer': 99208, 'how consumer behavior': 407591, 'consumer behavior ha': 196481, 'behavior ha changed': 124052, 'specify': 788314, 'lagar': 478892, 'extand': 293102, 'spreat': 791122, 'erbil': 280116, 'twitterkurds': 936755, 'if krg': 414365, 'krg specify': 477670, 'specify the': 788315, 'to hour': 908000, 'hour per': 405853, 'day this': 228530, 'make lagar': 510077, 'lagar number': 478893, 'people visit': 650092, 'cause extand': 167551, 'extand spreat': 293103, 'spreat of': 791123, 'outbreak stayhome': 628654, 'stayhome erbil': 797996, 'erbil twitterkurds': 280117, 'if krg specify': 414366, 'krg specify the': 477671, 'specify the market': 788316, 'the market opening': 860139, 'market opening time': 516810, 'opening time to': 612930, 'time to hour': 897998, 'to hour per': 908001, 'hour per day': 405854, 'per day this': 650811, 'day this will': 228540, 'this will make': 891428, 'will make lagar': 994084, 'make lagar number': 510078, 'lagar number of': 478894, 'of people visit': 588015, 'people visit the': 650093, 'time and this': 896303, 'this will cause': 891406, 'will cause extand': 992889, 'cause extand spreat': 167552, 'extand spreat of': 293104, 'spreat of the': 791124, 'the outbreak stayhome': 862698, 'outbreak stayhome erbil': 628655, 'stayhome erbil twitterkurds': 797997, 'kdka': 471216, 'eagle': 264365, 'occupancy': 578974, 'wolf': 1003367, 'kdka radio': 471217, 'radio morning': 695446, 'morning brief': 541199, 'brief for': 139674, 'for april': 319473, 'april 7th': 83517, '7th sponsored': 22528, 'sponsored by': 789836, 'giant eagle': 349765, 'eagle supermarket': 264383, 'supermarket location': 821361, 'location will': 498993, 'will admit': 992203, 'admit up': 32618, 'of maximum': 586306, 'maximum store': 520844, 'store occupancy': 809139, 'occupancy gov': 578983, 'gov tom': 359720, 'tom wolf': 923935, 'wolf urge': 1003375, 'urge pennsylvania': 948207, 'pennsylvania manufacturer': 646572, 'manufacturer to': 513526, 'produce covid': 680229, 'kdka radio morning': 471218, 'radio morning brief': 695447, 'morning brief for': 541200, 'brief for april': 139675, 'for april 7th': 319477, 'april 7th sponsored': 83519, '7th sponsored by': 22529, 'sponsored by giant': 789838, 'by giant eagle': 152678, 'giant eagle supermarket': 349769, 'eagle supermarket location': 264384, 'supermarket location will': 821362, 'location will admit': 498994, 'will admit up': 992204, 'admit up to': 32619, 'to 50 percent': 899744, '50 percent of': 19814, 'percent of maximum': 651159, 'of maximum store': 586307, 'maximum store occupancy': 520845, 'store occupancy gov': 809141, 'occupancy gov tom': 578984, 'gov tom wolf': 359721, 'tom wolf urge': 923936, 'wolf urge pennsylvania': 1003376, 'urge pennsylvania manufacturer': 948208, 'pennsylvania manufacturer to': 646573, 'manufacturer to produce': 513530, 'to produce covid': 912190, 'produce covid 19': 680230, '19 related supply': 10069, 'related supply and': 708582, 'supply and more': 824739, 'fcc ha': 300760, 'consumer warning': 199472, 'warning and': 967083, 'safety tip': 730758, 'at please': 100133, 'share not': 755110, 'only online': 610896, 'but by': 145331, 'by talking': 154212, 'your at': 1022867, 'risk family': 723533, 'be targeted': 117525, 'the fcc ha': 855000, 'fcc ha launched': 300761, 'launched new website': 482017, 'website with covid': 975489, '19 consumer warning': 5995, 'consumer warning and': 199474, 'warning and safety': 967084, 'and safety tip': 70759, 'safety tip at': 730761, 'tip at please': 898714, 'at please share': 100134, 'please share not': 660490, 'share not only': 755111, 'not only online': 570812, 'only online but': 610897, 'online but by': 607963, 'but by talking': 145333, 'by talking about': 154213, 'talking about these': 833990, 'about these scam': 26615, 'these scam to': 880628, 'scam to your': 740428, 'to your at': 918950, 'your at risk': 1022869, 'at risk family': 100359, 'risk family friend': 723534, 'family friend who': 297823, 'friend who may': 333903, 'may be targeted': 521037, 'itwire': 464029, 'datagovernance': 226532, 'cio': 178580, 'cdo': 168678, 'acc issue': 27812, 'issue advice': 455643, 'right obligation': 722194, 'obligation on': 578460, 'on event': 600612, 'event travel': 285099, 'cancellation due': 161013, '19 itwire': 8176, 'itwire acc': 464030, 'itwire datagovernance': 464035, 'datagovernance cio': 226533, 'cio cdo': 178581, 'acc issue advice': 27813, 'issue advice on': 455644, 'consumer right obligation': 198824, 'right obligation on': 722195, 'obligation on event': 578462, 'on event travel': 600614, 'event travel cancellation': 285100, 'travel cancellation due': 930310, 'cancellation due to': 161014, 'covid 19 itwire': 213303, '19 itwire acc': 8177, 'itwire acc issue': 464032, '19 itwire datagovernance': 8179, 'itwire datagovernance cio': 464036, 'datagovernance cio cdo': 226534, 'overorunder': 631375, 'subsides': 815952, 'stayingpositive': 798747, 'is song': 452126, 'song in': 785500, 'my series': 550020, 'series today': 751309, 'today song': 920207, 'song is': 785502, 'great toiletpaper': 363078, 'toiletpaper debate': 921910, 'debate overorunder': 230317, 'overorunder my': 631376, 'my plan': 549783, 'plan is': 658159, 'the song': 867476, 'song coming': 785483, 'coming until': 188256, 'virus subsides': 958829, 'subsides staysafe': 815965, 'staysafe stayingpositive': 798913, 'this is song': 888408, 'is song in': 452127, 'song in my': 785501, 'in my series': 425624, 'my series today': 550021, 'series today song': 751310, 'today song is': 920208, 'song is about': 785503, 'is about the': 445279, 'about the great': 26406, 'the great toiletpaper': 856736, 'great toiletpaper debate': 363079, 'toiletpaper debate overorunder': 921911, 'debate overorunder my': 230318, 'overorunder my plan': 631377, 'my plan is': 549785, 'plan is to': 658160, 'is to keep': 453215, 'keep the song': 472071, 'the song coming': 867477, 'song coming until': 785484, 'coming until the': 188257, 'until the virus': 943876, 'the virus subsides': 870903, 'virus subsides staysafe': 958830, 'subsides staysafe stayingpositive': 815966, 'fairly': 296426, 'pullback': 688902, 'wrought': 1013231, 'economy had': 267923, 'had fairly': 373099, 'fairly good': 296438, 'good head': 357171, 'of steam': 590111, 'steam coming': 799284, 'it heavy': 458525, 'heavy reliance': 388657, 'reliance on': 709237, 'it particularly': 460269, 'the pullback': 864887, 'pullback in': 688903, 'will result': 994677, 'change wrought': 172410, 'wrought by': 1013232, 'the rail': 865108, 'although the economy': 49358, 'the economy had': 853976, 'economy had fairly': 267925, 'had fairly good': 373100, 'fairly good head': 296439, 'good head of': 357172, 'head of steam': 385774, 'of steam coming': 590112, 'steam coming into': 799285, 'into the crisis': 443113, 'the crisis it': 852395, 'crisis it heavy': 217607, 'it heavy reliance': 458526, 'heavy reliance on': 388658, 'reliance on the': 709242, 'the consumer will': 851625, 'consumer will make': 199547, 'make it particularly': 510048, 'it particularly vulnerable': 460270, 'to the pullback': 916994, 'the pullback in': 864888, 'pullback in consumer': 688904, 'spending that will': 788999, 'that will result': 847605, 'will result from': 994678, 'result from the': 717513, 'from the change': 337635, 'the change wrought': 850677, 'change wrought by': 172411, 'wrought by the': 1013233, 'by the rail': 154420, 'always sneeze': 49740, 'into tissue': 443235, 'tissue or': 899183, 'your bent': 1022943, 'bent elbow': 127256, 'elbow ask': 270505, '19 question': 9934, 'doctor online': 251055, 'online virus': 609683, 'icliniq100hrs handwash': 412783, 'always sneeze or': 49741, 'cough into tissue': 208491, 'into tissue or': 443237, 'tissue or your': 899188, 'or your bent': 617875, 'your bent elbow': 1022944, 'bent elbow ask': 127257, 'elbow ask your': 270506, 'ask your coronavirus': 95684, 'your coronavirus covid': 1023348, 'covid 19 question': 213644, '19 question to': 9936, 'question to our': 693779, 'our doctor online': 622791, 'doctor online virus': 251057, 'online virus icliniq100hrs': 609684, 'virus icliniq100hrs handwash': 958309, 'icliniq100hrs handwash sanitizer': 412784, 'daddy': 224418, 'need sugar': 555668, 'sugar daddy': 817443, 'daddy fast': 224419, 'fast cause': 299930, 'cause this': 167773, '19 thing': 11319, 'thing isn': 884489, 'isn gonna': 454525, 'over any': 629994, 'any time': 79967, 'time soon': 897717, 'soon and': 785620, 'and love': 66423, 'love online': 504747, 'need sugar daddy': 555669, 'sugar daddy fast': 817444, 'daddy fast cause': 224420, 'fast cause this': 299931, 'cause this covid': 167774, 'covid 19 thing': 213938, '19 thing isn': 11327, 'thing isn gonna': 884490, 'isn gonna be': 454526, 'gonna be over': 356479, 'be over any': 116298, 'over any time': 629996, 'any time soon': 79978, 'time soon and': 897718, 'soon and love': 785622, 'and love online': 66424, 'love online shopping': 504748, 'realty': 702804, 'mitu': 534573, 'mathur': 520492, 'gpm': 361424, 'architect': 84050, 'lockdownextended': 500269, 'realty price': 702806, 'may suffer': 521541, 'suffer short': 817231, 'term shock': 838291, 'shock amid': 759417, 'pandemic share': 636434, 'share mitu': 755095, 'mitu mathur': 534574, 'mathur director': 520493, 'director gpm': 243625, 'gpm architect': 361425, 'architect planner': 84051, 'planner in': 658496, 'an exclusive': 55926, 'exclusive interview': 289673, 'with lockdownextended': 999295, 'realty price may': 702807, 'price may suffer': 675205, 'may suffer short': 521542, 'suffer short term': 817232, 'short term shock': 764751, 'term shock amid': 838292, 'shock amid pandemic': 759418, 'amid pandemic share': 52577, 'pandemic share mitu': 636435, 'share mitu mathur': 755096, 'mitu mathur director': 534575, 'mathur director gpm': 520494, 'director gpm architect': 243626, 'gpm architect planner': 361426, 'architect planner in': 84052, 'planner in an': 658497, 'in an exclusive': 420304, 'an exclusive interview': 55928, 'exclusive interview with': 289675, 'interview with lockdownextended': 442264, 'chevron': 175580, 'exxon': 293967, 'mobil': 534926, 'occidental': 578967, 'mb': 522017, 'trump meeting': 933705, 'meeting this': 527776, 'this hour': 887956, 'with energy': 998225, 'energy sector': 276574, 'sector ceo': 744118, 'ceo representing': 169818, 'representing chevron': 712944, 'chevron exxon': 175585, 'exxon mobil': 293972, 'mobil occidental': 534929, 'occidental petroleum': 578970, 'petroleum american': 653808, 'american petroleum': 52131, 'petroleum institute': 653817, 'institute and': 440408, 'others during': 621368, 'during photo': 262920, 'photo op': 655228, 'op heard': 611804, 'heard to': 388163, 'mention his': 528763, 'his recent': 397739, 'recent phone': 703953, 'phone call': 654919, 'call with': 156228, 'with putin': 1000368, 'putin and': 691005, 'and mb': 66828, 'mb about': 522018, 'pres trump meeting': 670454, 'trump meeting this': 933706, 'meeting this hour': 527777, 'this hour with': 887961, 'hour with energy': 406106, 'with energy sector': 998226, 'energy sector ceo': 276576, 'sector ceo representing': 744119, 'ceo representing chevron': 169819, 'representing chevron exxon': 712945, 'chevron exxon mobil': 175586, 'exxon mobil occidental': 293974, 'mobil occidental petroleum': 534930, 'occidental petroleum american': 578971, 'petroleum american petroleum': 653809, 'american petroleum institute': 52132, 'petroleum institute and': 653818, 'institute and others': 440410, 'and others during': 68442, 'others during photo': 621369, 'during photo op': 262921, 'photo op heard': 655229, 'op heard to': 611805, 'heard to mention': 388164, 'to mention his': 910085, 'mention his recent': 528764, 'his recent phone': 397740, 'recent phone call': 703954, 'phone call with': 654933, 'call with putin': 156235, 'with putin and': 1000369, 'putin and mb': 691007, 'and mb about': 66829, 'mb about oil': 522019, 'about oil production': 25839, 'oil production and': 597360, 'production and the': 681935, 'the global market': 856311, 'extent': 293317, 'piling essential': 656582, 'the extent': 854754, 'extent that': 293334, 'left barely': 485407, 'barely able': 110996, 'source thing': 786561, 'paper please': 640597, 'consider giving': 195003, 'giving some': 351391, 'your ration': 1025518, 'the people panic': 863498, 'buying and stock': 149931, 'and stock piling': 72413, 'stock piling essential': 802658, 'piling essential commodity': 656583, 'essential commodity to': 280932, 'commodity to the': 189323, 'to the extent': 916688, 'the extent that': 854757, 'extent that everyone': 293335, 'everyone is left': 287083, 'is left barely': 449270, 'left barely able': 485408, 'barely able to': 110997, 'able to source': 24547, 'to source thing': 914941, 'source thing like': 786562, 'thing like food': 884543, 'like food and': 490257, 'toilet paper please': 921395, 'paper please consider': 640598, 'please consider giving': 659814, 'consider giving some': 195006, 'giving some of': 351394, 'some of your': 783421, 'of your ration': 593516, 'your ration to': 1025519, 'ration to food': 697743, 'with learn': 999193, 'how marketer': 408298, 'marketer are': 517451, 'their strategy': 874875, 'behavior change with': 123968, 'change with learn': 172405, 'with learn how': 999194, 'learn how marketer': 483986, 'how marketer are': 408299, 'marketer are adjusting': 517452, 'adjusting their strategy': 32361, 'pantyhose': 639726, 'crossed': 219055, 'zz': 1027932, 'today greeted': 919589, 'greeted lady': 363797, 'me minute': 523156, 'minute later': 533787, 'and asked': 58431, 'have pantyhose': 381887, 'pantyhose work': 639727, 'not sell': 571521, 'sell that': 748890, 'she crossed': 755969, 'crossed her': 219058, 'and ordered': 68252, 'ordered me': 618869, 'back or': 107213, 'find someone': 307236, 'else to': 271935, 'help her': 389858, 'her lol': 392175, 'lol zz': 500986, 'zz retail': 1027935, 'today greeted lady': 919590, 'greeted lady who': 363798, 'who came back': 988362, 'came back to': 156980, 'back to look': 107377, 'look for me': 502364, 'for me minute': 323325, 'me minute later': 523157, 'minute later and': 533788, 'later and asked': 481019, 'and asked me': 58436, 'asked me why': 95795, 'me why we': 523979, 'why we didn': 991520, 'didn have pantyhose': 241094, 'have pantyhose work': 381888, 'pantyhose work at': 639728, 'store said we': 809962, 'do not sell': 249839, 'not sell that': 571525, 'sell that she': 748891, 'that she crossed': 846236, 'she crossed her': 755970, 'crossed her arm': 219059, 'her arm and': 391856, 'arm and ordered': 92884, 'and ordered me': 68254, 'ordered me to': 618870, 'me to look': 523764, 'look back or': 502316, 'back or find': 107215, 'or find someone': 615316, 'find someone else': 307237, 'someone else to': 784454, 'else to help': 271941, 'to help her': 907537, 'help her lol': 389859, 'her lol zz': 392176, 'lol zz retail': 500987, 'iwillstayathome': 464068, '30 health': 17066, 'is first': 447825, 'first personal': 308865, 'personal responsibility': 652946, 'responsibility carry': 715936, 'carry your': 165164, 'own sanitizer': 632185, 'sanitizer even': 734833, 'even you': 284842, 'make use': 510692, 'of freely': 583931, 'freely available': 332461, 'available option': 104551, 'option iwillstayathome': 614064, 'iwillstayathome stayathome': 464071, 'stayathome via': 797694, '12 30 health': 2795, '30 health is': 17067, 'health is first': 386565, 'is first personal': 447828, 'first personal responsibility': 308866, 'personal responsibility carry': 652947, 'responsibility carry your': 715937, 'carry your own': 165165, 'your own sanitizer': 1025159, 'own sanitizer even': 632189, 'sanitizer even you': 734836, 'even you make': 284843, 'you make use': 1019765, 'make use of': 510693, 'use of freely': 949410, 'of freely available': 583932, 'freely available option': 332462, 'available option iwillstayathome': 104552, 'option iwillstayathome stayathome': 614065, 'iwillstayathome stayathome via': 464072, 'vanessahudgens': 952399, 'quarantine vanessahudgens': 692670, 'vanessahudgens apparently': 952400, 'apparently stocked': 82002, 'on medicine': 602102, 'medicine covid': 526756, 'there are people': 878146, 'are people stocking': 89052, 'paper for quarantine': 640183, 'for quarantine vanessahudgens': 324901, 'quarantine vanessahudgens apparently': 692671, 'vanessahudgens apparently stocked': 952401, 'apparently stocked up': 82003, 'up on medicine': 945590, 'on medicine covid': 602104, 'medicine covid 19': 526757, 'toronto how': 925951, 'do grocery': 249356, 'if yes': 415380, 'yes where': 1015608, 'where how': 984931, 'how staying': 408742, 'staying all': 798567, 'line where': 493563, 'where which': 985354, 'store how': 808215, 'we not': 972594, 'hoard when': 398911, 'when simple': 984034, 'simple task': 770103, 'task basic': 834666, 'basic grocery': 111914, 'taking all': 833262, 'people from toronto': 648014, 'from toronto how': 338110, 'toronto how do': 925952, 'you do grocery': 1018253, 'do grocery shopping': 249359, 'online if yes': 608390, 'if yes where': 415382, 'yes where how': 1015609, 'where how staying': 984932, 'how staying all': 408743, 'staying all day': 798568, 'all day on': 42522, 'day on line': 228144, 'on line where': 601862, 'line where which': 493565, 'where which store': 985355, 'which store how': 986343, 'store how can': 808219, 'can we not': 160182, 'we not hoard': 972599, 'not hoard when': 569990, 'hoard when simple': 398912, 'when simple task': 984035, 'simple task basic': 770104, 'task basic grocery': 834667, 'basic grocery shopping': 111917, 'shopping is taking': 763083, 'is taking all': 452533, 'taking all day': 833263, 'mean key': 524517, 'by manufacturing': 153156, 'manufacturing galaxy': 513591, 'bar it': 110727, 'fun getting': 341169, 'chocolate mean key': 177687, 'mean key worker': 524518, 'but not by': 146529, 'not by manufacturing': 568667, 'by manufacturing galaxy': 153157, 'manufacturing galaxy bar': 513592, 'galaxy bar it': 342918, 'bar it wa': 110728, 'it wa fun': 462116, 'wa fun getting': 962188, 'fun getting the': 341170, 'getting the kid': 349351, 'the kid to': 858796, 'kid to say': 474141, 'to say that': 913843, 'say that wa': 739256, 'that wa key': 847292, 'louisville': 504552, 'is bottle': 446244, 'sanitizer made': 735327, 'distillery town': 247825, 'town branch': 927444, 'branch and': 137665, 'in louisville': 424942, 'louisville kentucky': 504553, 'here is bottle': 393217, 'is bottle of': 446245, 'hand sanitizer made': 375481, 'sanitizer made by': 735328, 'made by local': 507670, 'by local distillery': 153075, 'local distillery town': 497898, 'distillery town branch': 247826, 'town branch and': 927445, 'branch and delivered': 137666, 'delivered to hospital': 233424, 'to hospital in': 907972, 'hospital in louisville': 404470, 'in louisville kentucky': 424943, 'pod': 662239, 'bathtub': 112692, 'mommy': 536178, 'the dad': 852768, 'dad am': 224282, 'not changing': 568735, 'changing my': 172752, 'my clothes': 547711, 'clothes all': 184135, 'save on': 737601, 'on laundry': 601800, 'laundry pod': 482121, 'pod because': 662242, 'the toddler': 869700, 'toddler did': 920616, 'did poop': 240765, 'poop in': 664059, 'the bathtub': 849339, 'bathtub to': 112693, 'toiletpaper because': 921794, 'because mommy': 119245, 'mommy say': 536181, 'toiletpaperpanic toiletpapercrisis': 923280, 'the dad am': 852769, 'dad am not': 224283, 'am not changing': 50243, 'not changing my': 568737, 'changing my clothes': 172753, 'my clothes all': 547712, 'clothes all week': 184136, 'all week to': 45425, 'week to save': 977095, 'to save on': 913786, 'save on laundry': 737603, 'on laundry pod': 601801, 'laundry pod because': 482122, 'pod because we': 662243, 'we are running': 970694, 'running out the': 728031, 'out the toddler': 627430, 'the toddler did': 869701, 'toddler did poop': 920617, 'did poop in': 240766, 'poop in the': 664060, 'in the bathtub': 429011, 'the bathtub to': 849340, 'bathtub to save': 112694, 'save on toiletpaper': 737606, 'on toiletpaper because': 604785, 'toiletpaper because mommy': 921795, 'because mommy say': 119246, 'mommy say we': 536182, 'say we are': 739452, 'running out toiletpaperpanic': 728032, 'out toiletpaperpanic toiletpapercrisis': 627717, 'recessionary': 704430, 'turbulent': 935510, 'marketimpacts': 517505, '19 recessionary': 10003, 'recessionary impact': 704431, 'behaviour download': 124400, 'report today': 712392, 'the turbulent': 870106, 'turbulent time': 935514, 'time recession2020': 897557, 'recession2020 marketimpacts': 704425, 'marketimpacts market': 517506, 'market strategy': 517133, 'strategy free': 812647, 'covid 19 recessionary': 213667, '19 recessionary impact': 10004, 'recessionary impact and': 704432, 'impact and consumer': 417547, 'and consumer behaviour': 60353, 'consumer behaviour download': 196564, 'behaviour download the': 124401, 'download the free': 257628, 'the free report': 855769, 'free report today': 332098, 'report today and': 712393, 'today and stay': 919224, 'and stay on': 72299, 'top of the': 925642, 'of the turbulent': 591562, 'the turbulent time': 870107, 'turbulent time recession2020': 935516, 'time recession2020 marketimpacts': 897558, 'recession2020 marketimpacts market': 704426, 'marketimpacts market strategy': 517507, 'market strategy free': 517135, 'strategy free report': 812648, 'riveting': 724210, 'riveting webinar': 724211, 'webinar by': 975021, 'behaviour how': 124446, 'should brand': 765792, 'brand better': 137771, 'better engage': 128274, 'engage with': 276863, 'the aftermath': 848420, 'aftermath surely': 36663, 'surely thing': 827954, 'riveting webinar by': 724212, 'webinar by about': 975022, 'by about the': 151733, 'the coronavirus on': 851882, 'consumer behaviour how': 196578, 'behaviour how should': 124448, 'how should brand': 408677, 'should brand better': 765794, 'brand better engage': 137772, 'better engage with': 128275, 'engage with consumer': 276865, 'with consumer in': 997757, 'in the aftermath': 428970, 'the aftermath surely': 848422, 'aftermath surely thing': 36664, 'surely thing will': 827955, 'thing will never': 884992, 'same again 19': 732953, 'by eating': 152450, 'eating it': 266237, 'sure but': 827508, 'but might': 146388, 'supermarket meat': 821496, 'meat shortage': 525747, 'can you get': 160303, 'you get covid': 1018765, '19 by eating': 5557, 'by eating it': 152451, 'eating it because': 266238, 'it because not': 456754, 'because not sure': 119287, 'not sure but': 571835, 'sure but might': 827511, 'but might have': 146389, 'might have found': 531013, 'have found solution': 380702, 'solution to our': 782108, 'to our supermarket': 911246, 'our supermarket meat': 625023, 'supermarket meat shortage': 821498, 'ha this': 372256, 'this hit': 887923, 'supermarket yet': 824181, 'ha this hit': 372262, 'this hit your': 887924, 'hit your supermarket': 398524, 'your supermarket yet': 1026070, 'the recommends': 865356, 'wearing cloth': 974600, 'where socialdistancing': 985179, 'measure may': 525257, 'maintain such': 509048, '19 click': 5837, 'the recommends wearing': 865357, 'recommends wearing cloth': 704858, 'wearing cloth face': 974601, 'setting where socialdistancing': 753668, 'where socialdistancing measure': 985180, 'socialdistancing measure may': 780530, 'measure may be': 525258, 'may be difficult': 520973, 'to maintain such': 909598, 'maintain such the': 509049, 'such the grocery': 816801, 'or pharmacy to': 616586, 'pharmacy to slow': 654521, 'of 19 click': 579386, '19 click here': 5838, 'click here to': 181918, 'here to learn': 393717, 'wam': 965531, 'wam dubai': 965532, 'launched price': 482029, 'price monitor': 675258, 'monitor portal': 537307, 'to track': 917668, 'track daily': 928182, 'daily price': 224749, 'of staple': 590036, 'staple food': 793929, 'essential making': 281298, 'consumer continue': 196966, 'their basic': 872558, 'need at': 554489, 'at fair': 98616, 'wam dubai economy': 965533, 'dubai economy ha': 261468, 'economy ha launched': 267922, 'ha launched price': 371111, 'launched price monitor': 482030, 'price monitor portal': 675259, 'monitor portal to': 537308, 'portal to track': 664959, 'to track daily': 917675, 'track daily price': 928184, 'daily price of': 224750, 'price of staple': 675576, 'of staple food': 590038, 'staple food and': 793931, 'and essential making': 62256, 'essential making sure': 281299, 'making sure that': 511389, 'sure that consumer': 827692, 'that consumer continue': 843295, 'consumer continue to': 196967, 'continue to get': 201201, 'to get their': 906613, 'get their basic': 348322, 'their basic need': 872559, 'basic need at': 112009, 'need at fair': 554493, 'at fair price': 98619, 'fair price in': 296372, 'price in view': 674750, 'long until': 501798, 'until consumer': 943712, 'consumer leverage': 198037, 'leverage peak': 487792, 'how long until': 408215, 'long until consumer': 501799, 'until consumer leverage': 943713, 'consumer leverage peak': 198038, 'anticipates': 78470, '19 nyc': 8874, 'nyc anticipates': 577963, 'anticipates huge': 78473, 'huge decrease': 410017, 'decrease in': 231572, 'in renter': 427390, 'renter mortgage': 711304, 'mortgage price': 541940, 'the near': 861346, 'future the': 342472, 'fight for': 304731, 'for affordable': 319059, 'affordable housing': 34855, 'housing wa': 407162, 'being strongly': 125870, 'strongly ignored': 814231, 'ignored now': 415880, 'pandemic might': 635961, 'might just': 531054, 'just push': 469517, 'push nyc': 690301, 'nyc in': 577997, 'in newer': 425839, 'newer direction': 560050, 'direction anticipate': 243445, 'anticipate seeing': 78439, 'covid 19 nyc': 213497, '19 nyc anticipates': 8875, 'nyc anticipates huge': 577964, 'anticipates huge decrease': 78474, 'huge decrease in': 410018, 'decrease in renter': 231579, 'in renter mortgage': 427391, 'renter mortgage price': 711305, 'mortgage price in': 541941, 'in the near': 429385, 'the near future': 861349, 'near future the': 553510, 'future the fight': 342473, 'the fight for': 855165, 'fight for affordable': 304734, 'for affordable housing': 319061, 'affordable housing wa': 34856, 'housing wa being': 407163, 'wa being strongly': 961688, 'being strongly ignored': 125871, 'strongly ignored now': 814232, 'ignored now this': 415881, 'now this pandemic': 576134, 'this pandemic might': 889404, 'pandemic might just': 635963, 'might just push': 531056, 'just push nyc': 469518, 'push nyc in': 690302, 'nyc in newer': 577998, 'in newer direction': 425840, 'newer direction anticipate': 560051, 'direction anticipate seeing': 243446, 'anticipate seeing post': 78440, 'seeing post covid': 746424, 'if soap': 414836, 'available use': 104679, 'contains at': 200625, 'least 60': 484367, 'if soap and': 414837, 'water are not': 968900, 'not available use': 568309, 'available use an': 104680, 'based sanitizer that': 111740, 'that contains at': 843312, 'contains at least': 200626, 'at least 60': 99455, 'least 60 alcohol': 484368, '03454': 902, '05': 942, '06': 977, 'bought good': 136584, 'or paid': 616483, 'the whether': 871442, 'yourself or': 1026670, 're business': 698391, 'business needing': 144090, 'needing advice': 556609, 'advice you': 33560, 'get support': 348161, 'calling consumer': 156531, 'consumer helpline': 197743, 'helpline on': 391595, 'on 03454': 598975, '03454 04': 903, '04 05': 912, '05 06': 945, '06 business': 987, 'have you bought': 383658, 'you bought good': 1017505, 'bought good or': 136585, 'good or paid': 357526, 'or paid for': 616484, 'paid for service': 634021, 'for service that': 325499, 'service that ha': 752921, 'by the whether': 154480, 'the whether it': 871443, 'whether it for': 985523, 'it for yourself': 458110, 'for yourself or': 328236, 'yourself or you': 1026672, 'you re business': 1020582, 're business needing': 698392, 'business needing advice': 144091, 'needing advice you': 556610, 'advice you can': 33561, 'can get support': 158455, 'get support by': 348162, 'support by calling': 826399, 'by calling consumer': 152058, 'calling consumer helpline': 156532, 'consumer helpline on': 197745, 'helpline on 03454': 391596, 'on 03454 04': 598976, '03454 04 05': 904, '04 05 06': 913, '05 06 business': 946, '06 business can': 988, 'business can visit': 143498, 'allocates': 45889, 'fireman': 308242, 'local administration': 497667, 'administration allocates': 32446, 'allocates 100': 45890, '100 million': 1948, 'million financial': 532153, 'financial reward': 306560, 'reward to': 720796, 'to garbage': 906362, 'amp fireman': 53803, 'fireman for': 308245, 'crisis suspend': 218122, 'suspend export': 829563, 'export of': 292673, 'ministry of local': 533551, 'of local administration': 585925, 'local administration allocates': 497668, 'administration allocates 100': 32447, 'allocates 100 million': 45891, '100 million financial': 1951, 'million financial reward': 532154, 'financial reward to': 306562, 'reward to garbage': 720797, 'to garbage worker': 906363, 'garbage worker amp': 343541, 'worker amp fireman': 1006257, 'amp fireman for': 53804, 'fireman for their': 308246, 'their effort in': 873108, 'the crisis suspend': 852454, 'crisis suspend export': 218123, 'suspend export of': 829564, 'export of some': 292681, 'of some essential': 589895, 'some essential good': 782760, 'essential good to': 281101, 'good to reduce': 357898, 'thrilled': 894185, 'am confused': 49975, 'confused yesterday': 194360, 'yesterday at': 1015681, 'the briefing': 849994, 'briefing trump': 139749, 'wa saying': 963142, 'saying lower': 739638, 'price wa': 677332, 'wa tax': 963405, 'american in': 52044, 'in way': 430721, 'is he': 448347, 'he thrilled': 385528, 'thrilled to': 894188, 'be manipulating': 115905, 'manipulating the': 513223, 'man am confused': 511987, 'am confused yesterday': 49976, 'confused yesterday at': 194361, 'yesterday at the': 1015686, 'at the briefing': 100897, 'the briefing trump': 849997, 'briefing trump wa': 139750, 'trump wa saying': 933958, 'wa saying lower': 963145, 'saying lower gas': 739639, 'gas price wa': 344047, 'price wa tax': 677338, 'wa tax cut': 963406, 'tax cut for': 834955, 'cut for american': 223343, 'for american in': 319249, 'american in way': 52048, 'in way so': 430725, 'way so why': 969878, 'why is he': 991109, 'is he thrilled': 448352, 'he thrilled to': 385529, 'thrilled to be': 894189, 'to be manipulating': 901385, 'be manipulating the': 115906, 'manipulating the price': 513224, 'aerosolized': 33926, 'jama': 464366, 'fac': 294270, 'if well': 415333, 'well person': 978478, 'person without': 652749, 'mask walk': 519493, 'through air': 894300, 'air with': 39806, 'with aerosolized': 997111, 'aerosolized in': 33927, 'or self': 616991, 'self serve': 747899, 'serve gas': 751891, 'station infection': 796440, 'infection seems': 436841, 'seems more': 746827, 'more possible': 540103, 'possible given': 665658, 'given this': 351175, 'new jama': 558956, 'jama article': 464367, 'article info': 94369, 'info and': 437415, 'clothes fac': 184158, 'so if well': 777358, 'if well person': 415334, 'well person without': 978479, 'person without mask': 652750, 'without mask walk': 1002780, 'mask walk through': 519494, 'walk through air': 964889, 'through air with': 894301, 'air with aerosolized': 39807, 'with aerosolized in': 997112, 'aerosolized in grocery': 33928, 'store or self': 809369, 'or self serve': 616997, 'self serve gas': 747901, 'serve gas station': 751892, 'gas station infection': 344116, 'station infection seems': 796441, 'infection seems more': 436842, 'seems more possible': 746828, 'more possible given': 540104, 'possible given this': 665659, 'given this new': 351177, 'this new jama': 889117, 'new jama article': 558957, 'jama article info': 464368, 'article info and': 94370, 'info and why': 437419, 'and why would': 75638, 'would you think': 1012424, 'think to wash': 885718, 'wash your clothes': 967584, 'your clothes fac': 1023244, 'to quit': 912689, 'quit with': 694819, 'shopping food': 762649, 'it ain': 456321, 'ain helping': 39626, 'case number': 165879, 'need to quit': 556026, 'to quit with': 912697, 'quit with your': 694820, 'with your online': 1002215, 'online shopping food': 609123, 'shopping food delivery': 762651, 'delivery service it': 234444, 'service it ain': 752528, 'it ain helping': 456323, 'ain helping the': 39627, 'helping the covid': 391487, '19 case number': 5691, 'sideeffectsofquarantinelife': 768926, 'mum been': 545881, 'and from': 63344, 'she saying': 756328, 'sound like': 786295, 'been stressful': 122058, 'stressful situation': 813506, 'her sideeffectsofquarantinelife': 392384, 'my mum been': 549369, 'mum been to': 545882, 'morning and from': 541155, 'and from what': 63353, 'from what she': 338343, 'what she saying': 982169, 'she saying it': 756329, 'saying it sound': 739627, 'it sound like': 461184, 'sound like it': 786303, 'like it been': 490524, 'it been stressful': 456803, 'been stressful situation': 122059, 'stressful situation for': 813507, 'situation for her': 772273, 'for her sideeffectsofquarantinelife': 322235, 'curbsidetakeout': 220687, 'ampdeliveryoptions': 54872, 's101northeatery': 728848, 'so lucky': 777615, 'lucky this': 506578, 'year during': 1014533, 'during st': 263044, 'st patrick': 791743, 'patrick day': 644355, 'the nationwide': 861309, 'nationwide closing': 552717, 'place west': 657821, 'west coast': 980482, 'coast 101': 185091, '101 north': 2226, 'north eatery': 567642, 'eatery bar': 266154, 'bar adjusts': 110663, 'adjusts to': 32395, 'meet consumer': 527437, 'consumer need': 198185, 'need curbsidetakeout': 554653, 'curbsidetakeout ampdeliveryoptions': 220688, 'ampdeliveryoptions la': 54873, 'la s101northeatery': 478208, 'not so lucky': 571622, 'so lucky this': 777617, 'lucky this year': 506579, 'this year during': 891570, 'year during st': 1014534, 'during st patrick': 263045, 'st patrick day': 791745, 'patrick day in': 644356, 'of the nationwide': 591264, 'the nationwide closing': 861310, 'nationwide closing of': 552718, 'closing of restaurant': 183702, 'of restaurant and': 589013, 'restaurant and public': 716295, 'and public place': 69744, 'public place west': 688240, 'place west coast': 657822, 'west coast 101': 980483, 'coast 101 north': 185092, '101 north eatery': 2227, 'north eatery bar': 567643, 'eatery bar adjusts': 266155, 'bar adjusts to': 110664, 'adjusts to meet': 32396, 'to meet consumer': 910016, 'meet consumer need': 527440, 'consumer need curbsidetakeout': 198187, 'need curbsidetakeout ampdeliveryoptions': 554654, 'curbsidetakeout ampdeliveryoptions la': 220689, 'ampdeliveryoptions la s101northeatery': 54874, 'lahore': 478985, 'leading business': 483684, 'and emerging': 62041, 'emerging entrepreneur': 273115, 'entrepreneur handling': 278931, 'food point': 315874, 'point and': 662411, 'shopping venture': 764312, 'venture need': 954675, 'stop making': 804825, 'corona this': 204234, 'something serious': 785046, 'serious corona': 751355, 'corona lahore': 204031, 'lahore pakistan': 478992, 'pakistan pakistanfightscorona': 634484, 'pakistanfightscorona restaurant': 634525, 'the leading business': 859230, 'leading business and': 483685, 'business and emerging': 143298, 'and emerging entrepreneur': 62042, 'emerging entrepreneur handling': 273116, 'entrepreneur handling food': 278932, 'handling food point': 376352, 'food point and': 315875, 'point and online': 662416, 'online shopping venture': 609329, 'shopping venture need': 764313, 'venture need to': 954676, 'to stop making': 915544, 'stop making money': 804826, 'making money on': 511228, 'money on corona': 536928, 'on corona this': 600111, 'corona this is': 204235, 'is something serious': 452111, 'something serious corona': 785047, 'serious corona lahore': 751356, 'corona lahore pakistan': 204032, 'lahore pakistan pakistanfightscorona': 478993, 'pakistan pakistanfightscorona restaurant': 634485, 'vault': 952749, 'suspends': 829666, 'vault health': 952750, 'health launch': 386599, 'launch men': 481922, 'men consumer': 528473, 'health service': 386841, 'service with': 753080, 'million series': 532347, 'series but': 751232, 'but suspends': 147248, 'suspends some': 829679, 'person visit': 652681, 'visit due': 959238, 'vault health launch': 952751, 'health launch men': 386601, 'launch men consumer': 481923, 'men consumer health': 528474, 'consumer health service': 197731, 'health service with': 386843, 'service with 30': 753081, 'with 30 million': 996998, '30 million series': 17112, 'million series but': 532348, 'series but suspends': 751233, 'but suspends some': 147249, 'suspends some in': 829680, 'some in person': 783094, 'in person visit': 426644, 'person visit due': 652682, 'visit due to': 959239, 'seah': 743171, 'kian': 473763, 'peng': 646499, 'pray they': 669025, 're prepared': 699292, 'prepared they': 670242, 'be singapore': 117197, 'singapore parliament': 771139, 'parliament our': 642165, 'our warehouse': 625298, 'warehouse are': 966690, 'are quite': 89402, 'quite full': 694869, 'remain affordable': 709692, 'affordable say': 34898, 'say fairprice': 738625, 'fairprice chief': 296459, 'chief seah': 175969, 'seah kian': 743172, 'kian peng': 473764, 'pray they re': 669026, 'they re prepared': 883097, 're prepared they': 699293, 'prepared they claim': 670243, 'claim to be': 179846, 'to be singapore': 901543, 'be singapore parliament': 117198, 'singapore parliament our': 771140, 'parliament our warehouse': 642166, 'our warehouse are': 625299, 'warehouse are quite': 966693, 'are quite full': 89405, 'quite full and': 694870, 'full and price': 340480, 'and price to': 69480, 'price to remain': 677032, 'to remain affordable': 913155, 'remain affordable say': 709694, 'affordable say fairprice': 34899, 'say fairprice chief': 738626, 'fairprice chief seah': 296460, 'chief seah kian': 175970, 'seah kian peng': 743173, 'lloy': 497128, 'rb': 698052, 'barc': 110831, 'hsba': 409714, 'lloyd': 497131, 'barclays': 110845, 'can lloy': 158900, 'lloy rb': 497129, 'rb barc': 698053, 'barc and': 110832, 'and hsba': 64846, 'hsba recover': 409715, 'recover from': 705176, 'bank lloyd': 109982, 'lloyd barclays': 497132, 'can lloy rb': 158901, 'lloy rb barc': 497130, 'rb barc and': 698054, 'barc and hsba': 110833, 'and hsba recover': 64847, 'hsba recover from': 409716, 'recover from the': 705182, 'from the bank': 337610, 'the bank lloyd': 849247, 'bank lloyd barclays': 109983, 'hoard thing': 398886, 'that senior': 846194, 'senior need': 750360, 'need if': 555032, 'our national': 623989, 'national treasure': 552635, 'treasure and': 930763, 'not hoard thing': 569987, 'hoard thing that': 398887, 'thing that senior': 884820, 'that senior need': 846197, 'senior need if': 750361, 'need if you': 555036, 'see them in': 745915, 'them in grocery': 875903, 'store help them': 808137, 'help them they': 390715, 'they are our': 881352, 'are our national': 88865, 'our national treasure': 623990, 'national treasure and': 552636, 'treasure and we': 930764, 'and we must': 75307, 'must protect them': 546818, 'than toilet': 841347, 'paper take': 640863, 'easy on': 265740, 'paper say': 640727, 'say president': 739070, 'trump business': 933451, 'business stop': 144421, 'stop toiletpaper': 805230, 'better than toilet': 128541, 'than toilet paper': 841348, 'toilet paper take': 921481, 'paper take it': 640864, 'take it easy': 832243, 'it easy on': 457744, 'easy on the': 265742, 'on the toilet': 604407, 'toilet paper say': 921434, 'paper say president': 640728, 'say president trump': 739071, 'president trump business': 670934, 'trump business stop': 933452, 'business stop toiletpaper': 144422, 'stop toiletpaper tp': 805231, 'fundraise': 341640, 'overwhelm': 631705, 'love rt': 504764, 'rt plz': 726801, 'plz im': 661823, 'im trying': 416591, 'to fundraise': 906333, 'fundraise to': 341643, 'we fear': 971527, 'come when': 187666, 'will overwhelm': 994366, 'overwhelm ventilator': 631708, 'ventilator in': 954573, 'in whole': 430893, 'of country': 582028, 'country thank': 211102, 'love rt plz': 504765, 'rt plz im': 726802, 'plz im trying': 661824, 'im trying to': 416593, 'trying to fundraise': 934811, 'to fundraise to': 906335, 'fundraise to stock': 341644, 'up food for': 944886, 'my family support': 548225, 'family support we': 298272, 'support we fear': 826985, 'we fear that': 971529, 'fear that it': 301364, 'it will come': 462384, 'will come when': 992975, 'come when it': 187669, 'it doe it': 457614, 'doe it will': 251440, 'it will overwhelm': 462416, 'will overwhelm ventilator': 994368, 'overwhelm ventilator in': 631709, 'ventilator in whole': 954575, 'in whole of': 430894, 'whole of country': 990286, 'of country thank': 582032, 'country thank you': 211103, 'calm do': 156713, 'put yourselves': 690999, 'by rushing': 153848, 'rushing to': 728392, 'to rush': 913684, 'buy today': 149376, 'today or': 919994, 'that matter': 845064, 'matter this': 520638, 'weekend all': 977312, 'open come': 612157, 'come what': 187664, 'what may': 981858, 'may said': 521474, 'said mr': 731241, 'mr seah': 544405, 'stay calm do': 796806, 'calm do not': 156714, 'not put yourselves': 571179, 'put yourselves and': 691000, 'yourselves and others': 1026783, 'others at risk': 621293, 'at risk by': 100344, 'risk by rushing': 723441, 'by rushing to': 153849, 'rushing to buy': 728394, 'buy food there': 148679, 'food there is': 317151, 'need to rush': 556055, 'to rush to': 913687, 'to buy today': 902322, 'buy today or': 149377, 'today or for': 919996, 'or for that': 615368, 'for that matter': 326262, 'that matter this': 845070, 'matter this weekend': 520639, 'this weekend all': 891304, 'weekend all our': 977313, 'all our store': 43833, 'our store will': 624958, 'remain open come': 709804, 'open come what': 612161, 'come what may': 187665, 'what may said': 981859, 'may said mr': 521475, 'said mr seah': 731242, 'additive bleach': 31923, 'bleach crisp': 132492, 'linen scent': 493640, 'scent 90': 741385, '90 fl': 23294, 'sanitizer additive bleach': 734318, 'additive bleach crisp': 31924, 'bleach crisp linen': 132493, 'crisp linen scent': 218490, 'linen scent 90': 493643, 'scent 90 fl': 741386, '90 fl oz': 23295, 'madison': 508129, 'madison tv': 508136, 'tv station': 936202, 'station want': 796545, 'demand put': 236102, 'pantry because': 639542, 'you madison': 1019747, 'madison tv station': 508137, 'tv station want': 936203, 'station want to': 796546, 'ease the growing': 265107, 'growing demand put': 367169, 'demand put on': 236103, 'put on food': 690716, 'on food pantry': 600896, 'food pantry because': 315769, 'pantry because of': 639543, 'thank you madison': 841770, 'smelling': 775630, 'crimestoppers': 216816, 'lady wa': 478851, 'caught in': 167422, 'supermarket smelling': 822719, 'smelling all': 775631, 'the flower': 855449, 'flower breathing': 311283, 'breathing on': 139238, 'them deliberately': 875584, 'deliberately store': 232982, 'throw all': 895005, 'flower away': 311279, 'away crimestoppers': 105810, 'crimestoppers it': 216817, 'it deliberate': 457501, 'deliberate attempt': 232941, 'lady wa caught': 478854, 'wa caught in': 961794, 'caught in supermarket': 167427, 'in supermarket smelling': 428669, 'supermarket smelling all': 822720, 'smelling all the': 775632, 'all the flower': 44750, 'the flower breathing': 855452, 'flower breathing on': 311284, 'breathing on them': 139239, 'on them deliberately': 604531, 'them deliberately store': 875585, 'deliberately store had': 232983, 'store had to': 808047, 'to throw all': 917561, 'throw all the': 895006, 'the flower away': 855450, 'flower away crimestoppers': 311280, 'away crimestoppers it': 105811, 'crimestoppers it deliberate': 216818, 'it deliberate attempt': 457502, 'deliberate attempt to': 232942, 'attempt to spread': 102262, 'ink3gvurqk': 438753, 'quick excerpt': 694315, 'article coronavirus': 94294, 'how movie': 408333, 'entertainment http': 278573, 'co ink3gvurqk': 184858, 'quick excerpt from': 694316, 'good article coronavirus': 356778, 'article coronavirus is': 94295, 'triggering massive shift': 931945, 'shift in how': 758324, 'in how movie': 423875, 'how movie are': 408334, 'hollywood entertainment http': 400453, 'entertainment http co': 278574, 'http co ink3gvurqk': 409764, 'market kill': 516667, 'kill covid': 474377, 'or put': 616748, 'my table': 550303, 'table no': 831486, 'no so': 565537, 'so stfu': 778262, 'can the stock': 159962, 'stock market kill': 802408, 'market kill covid': 516668, 'kill covid 19': 474378, '19 or put': 9025, 'or put food': 616749, 'food on my': 315596, 'on my table': 602324, 'my table no': 550304, 'table no so': 831487, 'no so stfu': 565539, 'day6': 228878, 'day6 of': 228881, 'of selfisolating': 589488, 'selfisolating but': 748410, 'run quick': 727783, 'quick errand': 694311, 'errand to': 280206, 'essential cyprus': 280958, 'day6 of selfisolating': 228882, 'of selfisolating but': 589489, 'selfisolating but had': 748411, 'but had to': 145847, 'had to run': 373723, 'to run quick': 913670, 'run quick errand': 727784, 'quick errand to': 694312, 'errand to buy': 280207, 'buy some supermarket': 149216, 'some supermarket essential': 784006, 'supermarket essential cyprus': 820200, 'answered should': 78185, 'store foxnews': 807861, 'question answered should': 693535, 'answered should you': 78186, 'should you wear': 766683, 'you wear mask': 1022214, 'wear mask at': 974375, 'grocery store foxnews': 365411, 'librarian': 488053, 'waitress': 964432, 'fortnite': 329855, 'minecraft': 532948, 'lgbtq': 487922, 'lesbian': 486420, 'catholic': 167299, 'transgender': 929610, 'diabetes': 240161, 'all city': 42355, 'city around': 179066, 'lockdown you': 500179, 'may starve': 521526, 'starve to': 795228, 'to death': 903972, 'death if': 230070, 'water librarian': 969049, 'librarian lol': 488054, 'lol waitress': 500971, 'waitress fortnite': 964433, 'fortnite minecraft': 329864, 'minecraft canadian': 532949, 'canadian xbox': 160783, 'xbox lgbtq': 1013784, 'lgbtq lesbian': 487925, 'lesbian christian': 486421, 'christian catholic': 178113, 'catholic transgender': 167304, 'transgender diabetes': 929611, 'diabetes gay': 240177, 'gay trucker': 344712, 'trucker firefighter': 932915, 'when all city': 983127, 'all city around': 42356, 'city around the': 179067, 'world are in': 1009315, 'are in covid': 87368, '19 lockdown you': 8443, 'lockdown you may': 500182, 'you may starve': 1019812, 'may starve to': 521527, 'starve to death': 795229, 'to death if': 903981, 'death if you': 230071, 'if you did': 415419, 'you did not': 1018198, 'did not stock': 240734, 'food water librarian': 317510, 'water librarian lol': 969050, 'librarian lol waitress': 488055, 'lol waitress fortnite': 500972, 'waitress fortnite minecraft': 964434, 'fortnite minecraft canadian': 329865, 'minecraft canadian xbox': 532950, 'canadian xbox lgbtq': 160784, 'xbox lgbtq lesbian': 1013785, 'lgbtq lesbian christian': 487926, 'lesbian christian catholic': 486422, 'christian catholic transgender': 178114, 'catholic transgender diabetes': 167305, 'transgender diabetes gay': 929612, 'diabetes gay trucker': 240178, 'gay trucker firefighter': 344713, 'quickie': 694444, '3oz': 18373, 'excited saving': 289557, 'saving hundred': 737887, 'hundred on': 411024, 'gas although': 343753, 'although hit': 49319, 'the quickie': 865067, 'quickie market': 694445, 'market up': 517279, 'day paper': 228189, 'towel purchase': 927371, 'of 99': 579693, '99 each': 23807, 'day 11': 227092, '11 72': 2473, '72 mo': 22019, 'mo roll': 534866, 'roll ha': 725320, 'ha 10': 369385, '10 sheet': 1675, 'sheet it': 756604, 'that or': 845540, 'or 3oz': 614199, '3oz hand': 18376, 'so excited saving': 776989, 'excited saving hundred': 289558, 'saving hundred on': 737888, 'hundred on gas': 411025, 'on gas although': 601066, 'gas although hit': 343754, 'although hit the': 49320, 'hit the quickie': 398443, 'the quickie market': 865068, 'quickie market up': 694446, 'market up for': 517280, 'up for one': 944950, 'for one per': 324090, 'one per day': 606848, 'per day paper': 650805, 'day paper towel': 228190, 'paper towel purchase': 641008, 'towel purchase of': 927372, 'purchase of 99': 689572, 'of 99 each': 579695, '99 each day': 23808, 'each day 11': 264035, 'day 11 72': 227093, '11 72 mo': 2474, '72 mo roll': 22020, 'mo roll ha': 534867, 'roll ha 10': 725321, 'ha 10 sheet': 369387, '10 sheet it': 1676, 'sheet it that': 756605, 'it that or': 461497, 'that or 3oz': 845541, 'or 3oz hand': 614200, '3oz hand sanitizer': 18377, 'sanitizer for 99': 734892, 'frankly': 331165, 'group business': 366621, 'stop increasing': 804770, 'essential while': 281790, 'emergency situation': 272982, 'it frankly': 458128, 'frankly despicable': 331168, 'despicable and': 238625, 'totally void': 926408, 'void community': 960019, 'community spirit': 190102, 'spirit nameandshame': 789484, 'nameandshame 19uk': 551703, '19uk liverpool': 12560, 'seen in facebook': 747070, 'in facebook group': 422753, 'facebook group business': 294930, 'group business need': 366622, 'to stop increasing': 915539, 'stop increasing price': 804771, 'increasing price on': 433678, 'on essential while': 600598, 'essential while we': 281792, 'while we are': 987543, 'are in an': 87353, 'in an emergency': 420294, 'an emergency situation': 55689, 'emergency situation it': 272983, 'situation it frankly': 772359, 'it frankly despicable': 458129, 'frankly despicable and': 331169, 'despicable and is': 238626, 'and is totally': 65436, 'is totally void': 453310, 'totally void community': 926409, 'void community spirit': 960020, 'community spirit nameandshame': 190106, 'spirit nameandshame 19uk': 789485, 'nameandshame 19uk liverpool': 551704, 'obnormal': 578495, 'but isn': 146087, 'isn our': 454613, 'our really': 624548, 'really concerned': 702072, 'about pharmacy': 25949, 'pharmacy selling': 654445, 'selling sanitizers': 749431, 'at obnormal': 99934, 'obnormal price': 578496, 'price taking': 676751, 'but isn our': 146088, 'isn our really': 454614, 'our really concerned': 624549, 'really concerned about': 702073, 'concerned about pharmacy': 193167, 'about pharmacy selling': 25951, 'pharmacy selling sanitizers': 654447, 'selling sanitizers and': 749432, 'and mask at': 66744, 'mask at obnormal': 518428, 'at obnormal price': 99935, 'obnormal price taking': 578497, 'price taking advantage': 676752, 'smiled': 775753, 'supermarketapocalypse': 824215, 'man smiled': 512235, 'smiled when': 775760, 'he saw': 385387, 'saw me': 738171, 'my limit': 549064, 'limit of': 492391, 'of pack': 587645, 'said make': 731211, 'last use': 480615, 'use both': 949079, 'side supermarketapocalypse': 768896, 'man smiled when': 512236, 'smiled when he': 775761, 'when he saw': 983541, 'he saw me': 385389, 'saw me leaving': 738174, 'me leaving the': 523069, 'leaving the supermarket': 485157, 'supermarket with my': 823931, 'with my limit': 999636, 'my limit of': 549065, 'limit of pack': 492400, 'of pack of': 587646, 'paper and said': 639849, 'and said make': 70767, 'said make sure': 731212, 'make sure it': 510516, 'sure it last': 827601, 'it last use': 459304, 'last use both': 480616, 'use both side': 949080, 'both side supermarketapocalypse': 136048, 'dine': 242967, '20 cent': 12993, 'cent for': 169053, 'for slice': 325656, 'potato restaurant': 666972, 'restaurant price': 716642, 'increasing in': 433624, 'china following': 176657, 'the resumption': 865704, 'of dine': 582622, 'dine in': 242968, 'to offset': 910870, 'offset rising': 596107, 'rising food': 723219, 'and loss': 66404, 'loss caused': 503652, 'by pandemic': 153510, '20 cent for': 12994, 'cent for slice': 169054, 'for slice of': 325657, 'slice of potato': 773872, 'of potato restaurant': 588275, 'potato restaurant price': 666973, 'restaurant price are': 716643, 'price are increasing': 672683, 'are increasing in': 87486, 'increasing in china': 433625, 'in china following': 421400, 'china following the': 176658, 'following the resumption': 312904, 'the resumption of': 865705, 'resumption of dine': 717773, 'of dine in': 582623, 'dine in service': 242974, 'in service to': 427822, 'service to offset': 752985, 'to offset rising': 910873, 'offset rising food': 596108, 'rising food and': 723220, 'food and loss': 313275, 'and loss caused': 66405, 'loss caused by': 503653, 'caused by pandemic': 167854, 'several store': 753935, 'are pushing': 89342, 'pushing their': 690451, 'at green': 98805, 'green spring': 363697, 'spring station': 791240, 'station the': 796526, 'owner decided': 632437, 'door yesterday': 255793, 'yesterday because': 1015691, 'she urge': 756401, 'still support': 801258, 'their by': 872703, 'several store are': 753936, 'store are pushing': 806510, 'are pushing their': 89346, 'pushing their online': 690453, 'their online shopping': 874108, 'shopping like at': 763162, 'like at green': 489841, 'at green spring': 98806, 'green spring station': 363698, 'spring station the': 791241, 'station the owner': 796527, 'the owner decided': 862807, 'owner decided to': 632438, 'decided to close': 230906, 'their door yesterday': 873079, 'door yesterday because': 255794, 'yesterday because of': 1015692, 'of the but': 590837, 'the but she': 850200, 'but she urge': 147030, 'she urge you': 756402, 'you to still': 1021843, 'to still support': 915413, 'still support their': 801260, 'support their by': 826894, 'their by shopping': 872704, 'the clout': 851071, 'clout while': 184340, 'can grocery': 158534, 'clerk we': 181813, 'to slide': 914731, 'slide right': 773912, 'right back': 721794, 'back down': 106959, 'second that': 743829, 'enjoy the clout': 277185, 'the clout while': 851072, 'clout while you': 184341, 'while you can': 987586, 'you can grocery': 1017688, 'can grocery store': 158535, 'store clerk we': 807038, 'clerk we re': 181815, 'going to slide': 355710, 'to slide right': 914733, 'slide right back': 773913, 'right back down': 721796, 'back down the': 106960, 'down the second': 257300, 'the second that': 866592, 'second that is': 743830, 'that is over': 844637, 'moral dilemma': 538400, 'dilemma we': 242864, 'have couple': 380131, 'couple n95': 211628, 'mask leftover': 518908, 'leftover from': 485780, 'from smoke': 337321, 'smoke season': 775870, 'season rather': 743425, 'than donating': 840514, 'donating doe': 254444, 'make more': 510193, 'more sense': 540345, 'just wear': 470258, 'wear them': 974473, 'moral dilemma we': 538401, 'dilemma we have': 242865, 'we have couple': 971784, 'have couple n95': 380132, 'couple n95 mask': 211629, 'n95 mask leftover': 551198, 'mask leftover from': 518909, 'leftover from smoke': 485781, 'from smoke season': 337322, 'smoke season rather': 775871, 'season rather than': 743426, 'rather than donating': 697514, 'than donating doe': 840515, 'donating doe it': 254445, 'doe it make': 251434, 'it make more': 459514, 'make more sense': 510200, 'more sense for': 540346, 'sense for to': 750522, 'for to just': 327223, 'to just wear': 908734, 'just wear them': 470260, 'wear them at': 974474, 'them at the': 875447, 'injected': 438686, 'for stimulus': 325906, 'stimulus to': 801620, 'is intended': 448949, 'intended you': 441065, 'implement price': 418410, 'control otherwise': 202091, 'otherwise price': 621861, 'will simply': 994863, 'simply rise': 770276, 'the injected': 858291, 'injected uspoli': 438693, 'uspoli cdnpoli': 950846, 'for stimulus to': 325908, 'stimulus to do': 801621, 'do what is': 250513, 'what is intended': 981701, 'is intended you': 448950, 'intended you need': 441066, 'need to implement': 555968, 'to implement price': 908174, 'implement price control': 418411, 'price control otherwise': 673240, 'control otherwise price': 202092, 'otherwise price will': 621862, 'price will simply': 677586, 'will simply rise': 994864, 'simply rise to': 770277, 'rise to consume': 723032, 'consume the injected': 195950, 'the injected uspoli': 858293, 'injected uspoli cdnpoli': 438694, 'substance': 816035, 'thc': 847841, 'nicotine': 562620, 'vaping substance': 952494, 'substance that': 816038, 'that contain': 843305, 'contain thc': 200491, 'thc or': 847844, 'or nicotine': 616248, 'nicotine definitely': 562621, 'definitely ha': 232348, 'ha short': 371911, 'term health': 838163, 'health consequence': 386298, 'consequence said': 194883, 'said covid': 731033, 'infection likely': 436783, 'likely worse': 492197, 'for vapers': 327517, 'vapers smoker': 952478, 'vaping substance that': 952495, 'substance that contain': 816039, 'that contain thc': 843307, 'contain thc or': 200492, 'thc or nicotine': 847845, 'or nicotine definitely': 616249, 'nicotine definitely ha': 562622, 'definitely ha short': 232349, 'ha short term': 371912, 'short term health': 764738, 'term health consequence': 838164, 'health consequence said': 386299, 'consequence said covid': 194884, 'said covid 19': 731034, '19 infection likely': 7854, 'infection likely worse': 436784, 'likely worse for': 492198, 'worse for vapers': 1010934, 'for vapers smoker': 327518, 'even order': 284442, 'you book': 1017491, 'book slot': 134596, 'slot month': 774239, 'advance when': 32918, 'stock anyways': 801843, 'anyways this': 81075, 'becoming critical': 120286, 'critical urgent': 218714, 'urgent action': 948310, 'action need': 30076, 'place coronacrisis': 657395, 'you cannot even': 1017857, 'cannot even order': 161796, 'even order food': 284444, 'order food online': 618216, 'food online unless': 315627, 'unless you book': 942665, 'you book slot': 1017493, 'book slot month': 134598, 'slot month in': 774240, 'month in advance': 537786, 'in advance when': 420062, 'advance when it': 32919, 'when it will': 983657, 'of stock anyways': 590139, 'stock anyways this': 801844, 'anyways this situation': 81076, 'this situation with': 890198, 'situation with food': 772598, 'with food is': 998495, 'food is becoming': 315114, 'is becoming critical': 446031, 'becoming critical urgent': 120287, 'critical urgent action': 218715, 'urgent action need': 948313, 'action need to': 30077, 'take place coronacrisis': 832502, 'place coronacrisis panicbuyinguk': 657396, 'feta': 303611, 'mozzarella': 544231, 'beautiful but': 118670, 'have feta': 380603, 'feta and': 303612, 'and definitely': 61056, 'definitely will': 232415, '19 danger': 6418, 'danger zone': 225715, 'zone called': 1027752, 'called supermarket': 156446, 'have mozzarella': 381526, 'mozzarella do': 544234, 'beautiful but do': 118671, 'not have feta': 569834, 'have feta and': 380604, 'feta and definitely': 303614, 'and definitely will': 61059, 'definitely will not': 232417, 'be going back': 115050, 'back to that': 107398, 'to that covid': 916447, 'covid 19 danger': 212910, '19 danger zone': 6420, 'danger zone called': 225716, 'zone called supermarket': 1027753, 'called supermarket have': 156447, 'supermarket have mozzarella': 820695, 'have mozzarella do': 381527, 'mozzarella do you': 544235, 'think that will': 885618, 'that will work': 847619, 'every situation': 286197, 'situation including': 772329, 'including be': 431887, 'cautious and': 168210, 'that financial': 843870, 'institution will': 440480, 'never ask': 557869, 'provide personal': 686425, 'personal login': 652913, 'login or': 500686, 'or account': 614250, 'account information': 28704, 'information by': 437776, 'by text': 154243, 'text or': 839925, 'scammer will take': 740660, 'will take advantage': 995061, 'advantage of every': 33002, 'of every situation': 583242, 'every situation including': 286198, 'situation including be': 772330, 'including be cautious': 431888, 'be cautious and': 114032, 'cautious and know': 168211, 'know that financial': 476763, 'that financial institution': 843871, 'financial institution will': 306474, 'institution will never': 440481, 'will never ask': 994158, 'never ask you': 557870, 'you to provide': 1021824, 'to provide personal': 912421, 'provide personal login': 686426, 'personal login or': 652914, 'login or account': 500687, 'or account information': 614251, 'account information by': 28705, 'information by text': 437777, 'by text or': 154244, 'text or email': 839926, 'khaki': 473689, 'wardi': 966660, 'guiding': 368515, 'unecessary': 941078, 'tall': 834064, 'nagpurpolice': 551407, 'some angel': 782299, 'angel in': 76311, 'in khaki': 424492, 'khaki wardi': 473690, 'wardi serving': 966661, 'serving nation': 753195, 'nation 24': 552090, '24 risking': 15679, 'life health': 488725, 'health for': 386446, 'for guiding': 322086, 'guiding people': 368516, 'people politely': 649149, 'politely to': 663626, 'distancing using': 247585, 'using sanitizer': 950627, 'if unecessary': 415209, 'unecessary thanks': 941079, 'standing tall': 793815, 'tall strong': 834071, 'strong nagpurpolice': 814072, 'some angel in': 782300, 'angel in khaki': 76313, 'in khaki wardi': 424493, 'khaki wardi serving': 473691, 'wardi serving nation': 966662, 'serving nation 24': 753196, 'nation 24 risking': 552091, '24 risking their': 15680, 'their life health': 873833, 'life health for': 488726, 'health for guiding': 386449, 'for guiding people': 322087, 'guiding people politely': 368517, 'people politely to': 649150, 'politely to follow': 663627, 'to follow social': 906060, 'social distancing using': 779752, 'distancing using sanitizer': 247587, 'using sanitizer mask': 950631, 'sanitizer mask and': 735349, 'mask and not': 518352, 'and not to': 67783, 'not to leave': 572162, 'to leave home': 909153, 'leave home if': 484820, 'home if unecessary': 401402, 'if unecessary thanks': 415210, 'unecessary thanks for': 941080, 'thanks for standing': 842077, 'for standing tall': 325865, 'standing tall strong': 793817, 'tall strong nagpurpolice': 834072, 'colombian': 186696, 'colombia': 186691, 'gathered': 344414, 'colombian worker': 186697, 'worker demand': 1006751, 'demand protection': 236094, 'from hunger': 335977, 'in bogota': 420890, 'bogota colombia': 133996, 'colombia hundred': 186692, 'construction worker': 195831, 'worker gathered': 1007015, 'gathered to': 344424, 'protest the': 685928, 'colombian worker demand': 186698, 'worker demand protection': 1006755, 'demand protection from': 236095, 'protection from hunger': 685458, 'from hunger during': 335980, 'hunger during covid': 411100, '19 lockdown in': 8396, 'lockdown in bogota': 499499, 'in bogota colombia': 420891, 'bogota colombia hundred': 133997, 'colombia hundred of': 186693, 'hundred of construction': 410995, 'of construction worker': 581694, 'construction worker gathered': 195834, 'worker gathered to': 1007016, 'gathered to protest': 344425, 'to protest the': 912360, 'protest the lack': 685930, 'essential item in': 281206, 'item in the': 463356, 'the national quarantine': 861304, 'national quarantine due': 552594, 'havent': 383932, 'cardboard': 163710, 'aren supermarket': 92536, 'being required': 125674, 'where glove': 984886, 'even mask': 284324, 'when handling': 983516, 'food far': 314445, 'far know': 298828, 'they havent': 882411, 'havent won': 383941, 'won that': 1003922, 'that still': 846480, 'still help': 800690, 'on cardboard': 599823, 'cardboard for': 163721, 'for 24': 318772, 'right quarantine': 722242, 'why aren supermarket': 990803, 'aren supermarket worker': 92538, 'supermarket worker being': 823995, 'worker being required': 1006524, 'being required to': 125675, 'required to where': 713411, 'to where glove': 918537, 'where glove or': 984887, 'glove or even': 352838, 'or even mask': 615208, 'even mask when': 284325, 'mask when handling': 519537, 'when handling food': 983517, 'handling food far': 376350, 'food far know': 314446, 'far know they': 298829, 'know they havent': 476877, 'they havent won': 882412, 'havent won that': 383942, 'won that still': 1003923, 'that still help': 846482, 'still help spread': 800693, 'spread the virus': 790829, 'the virus we': 870917, 'virus we get': 959008, 'we get our': 971619, 'get our essential': 347724, 'our essential food': 622923, 'food item can': 315197, 'item can survive': 463174, 'survive on cardboard': 829210, 'on cardboard for': 599825, 'cardboard for 24': 163722, 'for 24 hour': 318774, '24 hour right': 15623, 'hour right quarantine': 405895, 'healthcomms': 387433, 'prpros': 687347, 'is hosting': 448555, 'hosting webinar': 404976, 'webinar right': 975092, 'confidence healthcomms': 193884, 'healthcomms and': 387434, 'and prpros': 69721, 'prpros head': 687348, 'and register': 70149, 'is hosting webinar': 448560, 'hosting webinar right': 404979, 'webinar right now': 975093, 'right now on': 722111, 'now on consumer': 575421, 'consumer habit and': 197681, 'habit and global': 372554, 'and global consumer': 63691, 'global consumer confidence': 351800, 'consumer confidence healthcomms': 196903, 'confidence healthcomms and': 193885, 'healthcomms and prpros': 387435, 'and prpros head': 69722, 'prpros head to': 687349, 'head to their': 385834, 'to their site': 917268, 'their site and': 874736, 'site and register': 771874, '15gb': 4016, 'apple verizon': 82377, 'is giving': 448058, 'giving customer': 351261, 'customer 15gb': 222008, '15gb of': 4017, 'of free': 583909, 'free data': 331746, 'data part': 226332, 'response verizon': 715903, 'verizon announced': 954820, 'announced on': 77006, 'it giving': 458246, 'giving all': 351230, 'customer an': 222063, 'additional 15gb': 31764, 'data for': 226211, 'free due': 331787, 'apple verizon is': 82378, 'verizon is giving': 954825, 'is giving customer': 448059, 'giving customer 15gb': 351262, 'customer 15gb of': 222009, '15gb of free': 4019, 'of free data': 583912, 'free data part': 331747, 'data part of': 226333, 'part of covid': 642341, '19 response verizon': 10166, 'response verizon announced': 715904, 'verizon announced on': 954821, 'announced on monday': 77007, 'on monday that': 602185, 'that it giving': 844710, 'it giving all': 458247, 'giving all consumer': 351231, 'all consumer and': 42426, 'business customer an': 143607, 'customer an additional': 222064, 'an additional 15gb': 55108, 'additional 15gb of': 31765, '15gb of data': 4018, 'of data for': 582354, 'data for free': 226215, 'for free due': 321713, 'free due to': 331788, 'seeing lot': 746354, 'who didn': 988591, 'have actual': 379120, 'actual job': 30676, 'job prior': 466101, '19 complaining': 5910, 'having money': 384169, 'store pretty': 809642, 'much every': 544859, 'is hiring': 448479, 'hiring right': 397123, 'seeing lot of': 746356, 'people who didn': 650286, 'who didn have': 988593, 'didn have actual': 241082, 'have actual job': 379122, 'actual job prior': 30677, 'job prior to': 466102, 'prior to the': 678381, 'covid 19 complaining': 212834, '19 complaining about': 5911, 'complaining about not': 191889, 'not having money': 569899, 'having money why': 384171, 'money why not': 537175, 'why not work': 991242, 'not work at': 572529, 'grocery store pretty': 365678, 'store pretty much': 809643, 'pretty much every': 671446, 'much every single': 544861, 'single one is': 771350, 'one is hiring': 606511, 'is hiring right': 448488, 'hiring right now': 397124, 'africaautoinsights': 35165, 'pandemic impact': 635684, 'is immediate': 448672, 'immediate and': 416968, 'and severe': 71341, 'severe what': 754070, 'of automotive': 580470, 'automotive executive': 104043, 'executive be': 289861, 'be download': 114590, 'here africaautoinsights': 392662, '19 pandemic impact': 9358, 'pandemic impact on': 635687, 'impact on business': 417828, 'on business is': 599740, 'business is immediate': 143955, 'is immediate and': 448673, 'immediate and severe': 416969, 'and severe what': 71344, 'severe what should': 754071, 'what should the': 982187, 'should the response': 766572, 'response of automotive': 715764, 'of automotive executive': 580471, 'automotive executive be': 104044, 'executive be download': 289862, 'be download our': 114591, 'download our latest': 257613, 'latest report here': 481527, 'report here africaautoinsights': 712010, 'deffo': 232219, 'online very': 609669, 'very naughty': 955373, 'naughty of': 553022, 'inflate the': 436998, 'your laptop': 1024586, 'laptop cashing': 479552, 'cashing in': 166675, 'on coronacrisis': 600114, 'is deffo': 447077, 'deffo no': 232220, 'online very naughty': 609670, 'very naughty of': 955374, 'naughty of you': 553023, 'you to inflate': 1021791, 'to inflate the': 908372, 'inflate the price': 436999, 'price on some': 675718, 'on some of': 603564, 'of your laptop': 593494, 'your laptop cashing': 1024588, 'laptop cashing in': 479553, 'cashing in on': 166676, 'in on coronacrisis': 426113, 'on coronacrisis is': 600115, 'coronacrisis is deffo': 204641, 'is deffo no': 447078, 'deffo no no': 232221, 'ppeshortages': 668143, 'we out': 972669, 'company who': 191312, 'are playing': 89101, 'playing state': 659446, 'state against': 795332, 'other to': 621132, 'to bid': 901805, 'bid on': 129479, 'is life': 449293, 'saving equipment': 737863, 'in national': 425689, 'paying loan': 645435, 'loan shark': 497530, 'shark price': 755641, 'price how': 674586, 'this right': 889902, 'right who': 722419, 'company ppeshortages': 190967, 'ppeshortages ppeshortages': 668144, 'can we out': 160184, 'we out the': 972670, 'out the company': 627357, 'the company who': 851361, 'company who are': 191314, 'who are playing': 988193, 'are playing state': 89103, 'playing state against': 659447, 'state against each': 795333, 'each other to': 264227, 'other to bid': 621133, 'to bid on': 901808, 'bid on what': 129480, 'on what is': 605228, 'what is life': 981706, 'is life saving': 449296, 'life saving equipment': 489012, 'saving equipment we': 737867, 'equipment we re': 279869, 're in national': 698874, 'in national crisis': 425691, 'national crisis and': 552464, 'government is paying': 360266, 'is paying loan': 450825, 'paying loan shark': 645436, 'loan shark price': 497531, 'shark price how': 755642, 'price how is': 674591, 'is this right': 453119, 'this right who': 889909, 'right who are': 722420, 'who are these': 988240, 'are these company': 90971, 'these company ppeshortages': 879791, 'company ppeshortages ppeshortages': 190968, 'distancer': 246928, 'sidewalk': 768948, 'coronapersona': 205169, 'sixfeetapart': 772721, 'social distancer': 779535, 'distancer very': 246929, 'very proactive': 955432, 'proactive about': 679144, 'about stepping': 26260, 'stepping off': 799802, 'the sidewalk': 867164, 'sidewalk to': 768957, 'others more': 621534, 'more room': 540281, 'room pay': 725948, 'pay strict': 645119, 'strict attention': 813614, 'attention to': 102493, 'floor tape': 310843, 'tape in': 834358, 'store checkout': 806956, 'checkout coronapersona': 174901, 'coronapersona socialdistance': 205170, 'socialdistance sixfeetapart': 780157, 'the social distancer': 867411, 'social distancer very': 779536, 'distancer very proactive': 246930, 'very proactive about': 955433, 'proactive about stepping': 679146, 'about stepping off': 26261, 'stepping off the': 799803, 'off the sidewalk': 594270, 'the sidewalk to': 867166, 'sidewalk to give': 768959, 'to give others': 906698, 'give others more': 350627, 'others more room': 621535, 'more room pay': 540283, 'room pay strict': 725949, 'pay strict attention': 645120, 'strict attention to': 813615, 'attention to the': 102497, 'to the floor': 916714, 'the floor tape': 855427, 'floor tape in': 310844, 'tape in the': 834360, 'grocery store checkout': 365280, 'store checkout coronapersona': 806958, 'checkout coronapersona socialdistance': 174902, 'coronapersona socialdistance sixfeetapart': 205171, 'buyingagent': 151420, 'propertyfinder': 684376, 'propertysearch': 684395, 'will uk': 995260, 'drop buyingagent': 260143, 'buyingagent propertyfinder': 151423, 'propertyfinder propertysearch': 684377, 'affecting the property': 34567, 'property market will': 684312, 'market will uk': 517366, 'will uk house': 995261, 'price drop buyingagent': 673562, 'drop buyingagent propertyfinder': 260144, 'buyingagent propertyfinder propertysearch': 151424, 'wakemed': 964641, 'requesting': 713262, 'wake county': 964581, 'county order': 211457, 'order salon': 618556, 'salon and': 732774, 'and gym': 64057, 'gym to': 369358, 'close amid': 182517, 'amid virus': 52747, 'virus wakemed': 958996, 'wakemed requesting': 964642, 'requesting donation': 713265, 'glove money': 352792, 'wake county order': 964582, 'county order salon': 211458, 'order salon and': 618557, 'salon and gym': 732776, 'and gym to': 64059, 'gym to close': 369359, 'to close amid': 902856, 'close amid virus': 182521, 'amid virus wakemed': 52750, 'virus wakemed requesting': 958997, 'wakemed requesting donation': 964643, 'requesting donation of': 713266, 'donation of hand': 254648, 'sanitizer glove money': 734991, 'glove money for': 352793, 'money for worker': 536761, 'correlate': 207620, 'vpn': 960721, 'surprising': 828623, 'outbreak correlate': 628141, 'correlate to': 207621, 'in vpn': 430627, 'vpn usage': 960722, 'usage one': 948847, 'the interesting': 858350, 'interesting but': 441522, 'but probably': 146848, 'not surprising': 571865, 'surprising change': 828628, 'consumer medium': 198114, 'medium behavior': 527017, 'behavior related': 124171, '19 outbreak correlate': 9109, 'outbreak correlate to': 628142, 'correlate to surge': 207622, 'surge in vpn': 828216, 'in vpn usage': 430628, 'vpn usage one': 960723, 'usage one of': 948848, 'of the interesting': 591152, 'the interesting but': 858351, 'interesting but probably': 441524, 'but probably not': 146849, 'probably not surprising': 679341, 'not surprising change': 571866, 'surprising change in': 828629, 'in consumer medium': 421708, 'consumer medium behavior': 198115, 'medium behavior related': 527018, 'behavior related to': 124172, 'inland': 438768, 'empire': 273406, 'the inland': 858296, 'inland empire': 438769, 'empire and': 273407, 'surrounding area': 828732, 'area adjust': 91914, 'adjust to': 32294, 'union representing': 941923, 'representing supermarket': 712948, 'on shopper': 603434, 'treat it': 930843, 'it member': 459593, 'member with': 528251, 'the respect': 865599, 'respect and': 714959, 'and appreciation': 58268, 'our un': 625224, 'the inland empire': 858297, 'inland empire and': 438770, 'empire and surrounding': 273408, 'and surrounding area': 72891, 'surrounding area adjust': 828733, 'area adjust to': 91915, 'adjust to life': 32299, 'to life in': 909251, 'pandemic the union': 636710, 'the union representing': 870409, 'union representing supermarket': 941925, 'representing supermarket and': 712949, 'supermarket and drug': 818965, 'store worker ha': 811520, 'worker ha called': 1007075, 'called on shopper': 156401, 'on shopper to': 603436, 'shopper to treat': 761778, 'to treat it': 917749, 'treat it member': 930844, 'it member with': 459598, 'member with the': 528256, 'with the respect': 1001453, 'the respect and': 865600, 'respect and appreciation': 714960, 'and appreciation they': 58270, 'appreciation they deserve': 82896, 'they deserve our': 881901, 'deserve our un': 238094, 'payday loan': 645335, 'loan are': 497394, 'most expensive': 542315, 'expensive form': 291246, 'credit available': 216314, 'with annual': 997257, 'annual interest': 77404, 'of up': 592676, 'to 390': 899703, '390 per': 18184, 'related online': 708497, 'online consumer': 608040, 'advice the': 33521, 'government warns': 360782, 'warns that': 967290, 'that payday': 845674, 'loan should': 497532, 'your absolute': 1022728, 'absolute last': 27250, 'last resort': 480473, 'payday loan are': 645336, 'loan are the': 497395, 'are the most': 90865, 'the most expensive': 860984, 'most expensive form': 542320, 'expensive form of': 291247, 'form of credit': 329534, 'of credit available': 582130, 'credit available with': 216315, 'available with annual': 104703, 'with annual interest': 997258, 'annual interest rate': 77405, 'interest rate of': 441400, 'rate of up': 697324, 'of up to': 592678, 'up to 390': 946336, 'to 390 per': 899704, '390 per cent': 18185, 'per cent in': 650752, 'cent in it': 169075, 'in it covid': 424235, '19 related online': 10058, 'related online consumer': 708498, 'online consumer advice': 608041, 'consumer advice the': 196049, 'advice the federal': 33522, 'federal government warns': 302006, 'government warns that': 360784, 'warns that payday': 967291, 'that payday loan': 845675, 'payday loan should': 645337, 'loan should be': 497533, 'should be your': 765774, 'be your absolute': 118173, 'your absolute last': 1022729, 'absolute last resort': 27251, 'stayhomesavelifes': 798322, 'northwales': 567824, 'preach more': 669228, 'suit food': 817760, 'food stayhomesavelifes': 316763, 'stayhomesavelifes northwales': 798325, 'preach more of': 669229, 'more of the': 539884, 'supermarket chain need': 819626, 'need to follow': 555941, 'to follow suit': 906062, 'follow suit food': 312508, 'suit food stayhomesavelifes': 817761, 'food stayhomesavelifes northwales': 316764, 'sccp': 741240, 'implemented': 418453, 'no trading': 565794, 'trading and': 928832, 'clearing and': 181454, 'and settlement': 71336, 'settlement at': 753714, 'the pse': 864749, 'pse sccp': 687464, 'sccp tomorrow': 741241, 'tomorrow march': 924125, 'march 17': 515093, '17 2020': 4311, '2020 until': 14684, 'the enhanced': 854336, 'quarantine implemented': 692283, 'implemented in': 418460, 'be no trading': 116114, 'no trading and': 565795, 'trading and clearing': 928833, 'and clearing and': 59964, 'clearing and settlement': 181455, 'and settlement at': 71337, 'settlement at the': 753715, 'at the pse': 101066, 'the pse sccp': 864750, 'pse sccp tomorrow': 687465, 'sccp tomorrow march': 741242, 'tomorrow march 17': 924126, 'march 17 2020': 515094, '17 2020 until': 4314, '2020 until further': 14685, 'to the enhanced': 916674, 'the enhanced community': 854337, 'community quarantine implemented': 190052, 'quarantine implemented in': 692284, 'implemented in luzon': 418462, 'ncovid': 553350, 'our laboratory': 623630, 'laboratory wa': 478485, 'wa closed': 961826, 'closed yesterday': 183450, 'yesterday we': 1015931, 'cannot resume': 162064, 'resume until': 717756, 'the ncovid': 861340, 'ncovid 19': 553351, 'control stay': 202141, 'safe eat': 729617, 'not spread': 571678, 'rumor keep': 727488, 'keep trust': 472161, 'trust in': 934267, 'in science': 427734, 'science and': 742082, 'our laboratory wa': 623631, 'laboratory wa closed': 478486, 'wa closed yesterday': 961829, 'closed yesterday we': 183452, 'yesterday we cannot': 1015933, 'we cannot resume': 971078, 'cannot resume until': 162065, 'resume until the': 717757, 'until the ncovid': 943862, 'the ncovid 19': 861341, 'ncovid 19 situation': 553352, '19 situation is': 10578, 'situation is under': 772353, 'is under control': 453458, 'under control stay': 940051, 'control stay safe': 202142, 'stay safe eat': 797228, 'safe eat good': 729618, 'good food do': 357057, 'do not spread': 249850, 'not spread rumor': 571684, 'spread rumor keep': 790776, 'rumor keep trust': 727489, 'keep trust in': 472162, 'trust in science': 934275, 'in science and': 427735, 'science and we': 742086, 'we will definitely': 973849, 'definitely get out': 232339, 'servey': 752013, 'mu': 544656, 'been 20': 120580, '20 day': 13026, 'day right': 228283, 'right everything': 721890, 'today plan': 920040, 'to servey': 914278, 'servey supermarket': 752014, 'or mu': 616206, 'mu superstore': 544659, 'superstore in': 824348, 'in mile': 425317, 'mile is': 531392, 'anyone there': 80561, 'there safe': 879008, 'from transmission': 338131, 'be rude': 116919, 'rude if': 727038, 'symptom do': 830838, 'others ok': 621564, 'home it been': 401469, 'it been 20': 456786, 'been 20 day': 120581, '20 day right': 13027, 'day right everything': 228284, 'right everything we': 721891, 'we do with': 971362, 'do with online': 250562, 'with online but': 999894, 'online but today': 607970, 'but today plan': 147604, 'today plan to': 920041, 'plan to go': 658293, 'go to servey': 354355, 'to servey supermarket': 914279, 'servey supermarket or': 752015, 'supermarket or mu': 821821, 'or mu superstore': 616207, 'mu superstore in': 544660, 'superstore in mile': 824349, 'in mile is': 425319, 'mile is anyone': 531393, 'is anyone there': 445769, 'anyone there safe': 80562, 'there safe from': 879009, 'safe from transmission': 729702, 'from transmission of': 338132, 'not be rude': 568446, 'be rude if': 116920, 'rude if you': 727039, 'you have covid': 1019032, '19 symptom do': 11015, 'symptom do not': 830839, 'do not close': 249697, 'not close the': 568777, 'close the others': 182843, 'the others ok': 862571, 'carded': 163731, 'got carded': 358470, 'carded at': 163732, 'mask but': 518492, 'but whatever': 147806, 'whatever facemasks': 982751, 'just got carded': 468851, 'got carded at': 358471, 'carded at the': 163733, 'wearing mask but': 974685, 'mask but whatever': 518499, 'but whatever facemasks': 147807, 'move come': 543632, 'come after': 187186, 'after passenger': 36022, 'passenger flight': 643330, 'flight were': 310558, 'were suspended': 980207, 'suspended in': 829620, 'the uae': 870171, 'uae to': 937778, 'the move come': 861084, 'move come after': 543633, 'come after passenger': 187188, 'after passenger flight': 36023, 'passenger flight were': 643331, 'flight were suspended': 310559, 'were suspended in': 980208, 'suspended in the': 829622, 'in the uae': 429634, 'the uae to': 870174, 'uae to battle': 937779, 'protection resource': 685590, 'resource via': 714921, '19 consumer protection': 5977, 'consumer protection resource': 198557, 'protection resource via': 685594, 'chap': 173107, 'knee': 476000, 'rummaging': 727470, 'many men': 514277, 'men will': 528544, 'the chap': 850698, 'chap seen': 173110, 'on his': 601316, 'and knee': 65875, 'knee rummaging': 476011, 'rummaging through': 727471, 'through hair': 894494, 'color while': 186756, 'while on': 987101, 'phone to': 655037, 'his other': 397667, 'other half': 620332, 'half is': 374192, 'dark or': 225973, 'or medium': 616119, 'medium ash': 527007, 'ash brown': 95025, 'brown irelandlockdown': 141241, 'how many men': 408273, 'many men will': 514280, 'men will be': 528545, 'be like the': 115749, 'like the chap': 491358, 'the chap seen': 850699, 'chap seen in': 173111, 'seen in the': 747085, 'supermarket now he': 821666, 'now he wa': 574908, 'he wa on': 385611, 'wa on his': 962825, 'on his hand': 601321, 'his hand and': 397487, 'hand and knee': 374764, 'and knee rummaging': 65876, 'knee rummaging through': 476012, 'rummaging through hair': 727472, 'through hair color': 894495, 'hair color while': 373970, 'color while on': 186757, 'while on the': 987104, 'the phone to': 863697, 'phone to his': 655040, 'to his other': 907821, 'his other half': 397668, 'other half is': 620334, 'half is it': 374194, 'is it dark': 449019, 'it dark or': 457468, 'dark or medium': 225974, 'or medium ash': 616120, 'medium ash brown': 527008, 'ash brown irelandlockdown': 95026, 'vibe': 956392, 'price doe': 673478, 'not qualify': 571182, 'any type': 79993, 'strategy selling': 812708, 'selling people': 749398, 'fear at': 301051, 'create bad': 215616, 'bad vibe': 108068, 'vibe among': 956393, 'mask at higher': 518420, 'higher price doe': 395672, 'price doe not': 673479, 'doe not qualify': 251520, 'not qualify for': 571183, 'qualify for any': 691723, 'for any type': 319428, 'any type of': 79995, 'type of business': 937547, 'of business strategy': 580969, 'business strategy selling': 144427, 'strategy selling people': 812709, 'selling people fear': 749399, 'people fear at': 647877, 'fear at high': 301053, 'high price will': 395293, 'price will create': 677559, 'will create bad': 993068, 'create bad vibe': 215617, 'bad vibe among': 108069, 'vibe among people': 956394, 'wil': 992041, 'cant to': 162346, 'pet and': 653354, 'or child': 614716, 'child not': 176151, 'sure where': 827827, 'where their': 985258, 'their next': 874055, 'next paycheck': 561501, 'paycheck is': 645292, 'from unable': 338172, 'get healthcare': 347202, 'healthcare for': 387120, 'for issue': 322683, 'issue non': 455845, 'non related': 566482, 'no in': 564481, 'care from': 163962, 'from nurse': 336618, 'nurse if': 577378, 'needed racking': 556471, 'up bill': 944497, 'bill price': 130662, 'home 24': 400537, '24 wil': 15707, 'cant to afford': 162347, 'to afford to': 900163, 'afford to care': 34791, 'care for pet': 163952, 'for pet and': 324508, 'pet and or': 653356, 'and or child': 68208, 'or child not': 614717, 'child not sure': 176152, 'not sure where': 571853, 'sure where their': 827828, 'where their next': 985259, 'their next paycheck': 874058, 'next paycheck is': 561503, 'paycheck is coming': 645293, 'is coming from': 446657, 'coming from unable': 188065, 'from unable to': 338173, 'to get healthcare': 906498, 'get healthcare for': 347203, 'healthcare for issue': 387123, 'for issue non': 322686, 'issue non related': 455846, 'non related to': 566483, '19 no in': 8798, 'no in home': 564482, 'in home care': 423779, 'home care from': 400875, 'care from nurse': 163963, 'from nurse if': 336621, 'nurse if needed': 577379, 'if needed racking': 414463, 'needed racking up': 556472, 'racking up bill': 695370, 'up bill price': 944498, 'bill price by': 130663, 'price by being': 673016, 'by being home': 151944, 'being home 24': 125262, 'home 24 wil': 400538, 'ticking': 895687, 'home these': 402263, 'these nutritious': 880357, 'supply amp': 824690, 'amp recipe': 54369, 'you ticking': 1021737, 'ticking keeping': 895688, 'your immunity': 1024457, 'immunity strong': 417434, 'strong is': 814057, 'key precaution': 473366, 'prevent here': 671640, 'even we': 284768, 'from home these': 335912, 'home these nutritious': 402267, 'these nutritious food': 880358, 'nutritious food supply': 577765, 'food supply amp': 316930, 'supply amp recipe': 824696, 'amp recipe will': 54370, 'recipe will keep': 704517, 'keep you ticking': 472249, 'you ticking keeping': 1021738, 'ticking keeping your': 895689, 'keeping your immunity': 472636, 'your immunity strong': 1024459, 'immunity strong is': 417435, 'strong is one': 814058, 'of the key': 591165, 'the key precaution': 858761, 'key precaution to': 473367, 'to prevent here': 912065, 'prevent here what': 671641, 'here what will': 393825, 'what will help': 982600, 'will help with': 993738, 'help with that': 390931, 'with that even': 1001170, 'that even we': 843744, 'even we all': 284769, 'we all stay': 970363, 'that feeling': 843856, 'feeling when': 303110, 'you finally': 1018561, 'finally find': 305985, 'ha toilet': 372331, 'that feeling when': 843857, 'feeling when you': 303111, 'when you finally': 984559, 'you finally find': 1018563, 'finally find grocery': 305986, 'store that ha': 810551, 'that ha toilet': 844140, 'ha toilet paper': 372333, 'stayprivate': 798770, 'mind with': 532782, 'coronavirus cough': 205707, 'into disposable': 442520, 'disposable tissue': 246267, 'tissue wash': 899236, 'second with': 743872, 'water phishing': 969112, 'scam attack': 740064, 'attack stayprivate': 102156, 'stayprivate phishing': 798771, 'in mind with': 425350, 'mind with the': 532783, 'the coronavirus cough': 851822, 'coronavirus cough and': 205708, 'cough and sneeze': 208449, 'and sneeze into': 71824, 'sneeze into disposable': 776249, 'into disposable tissue': 442521, 'disposable tissue wash': 246268, 'tissue wash your': 899237, '20 second with': 13336, 'second with soap': 743873, 'soap and hot': 778914, 'and hot water': 64763, 'hot water phishing': 405068, 'water phishing attack': 969113, 'phishing attack and': 654799, 'attack and scam': 102081, 'and scam attack': 71026, 'scam attack stayprivate': 740065, 'attack stayprivate phishing': 102157, 'stayprivate phishing scam': 798772, 'orlando': 619624, 'whengovernorsfail': 984694, 'orlando mayor': 619630, 'mayor call': 521935, '100 shut': 2075, 'down starting': 257206, 'thursday for': 895370, 'million resident': 532337, 'out effort': 626004, 'only trip': 611386, 'essential work': 281803, 'permitted whengovernorsfail': 652191, 'orlando mayor call': 619631, 'mayor call for': 521936, 'call for 100': 155848, 'for 100 shut': 318631, '100 shut down': 2076, 'shut down starting': 767852, 'down starting thursday': 257207, 'starting thursday for': 795010, 'thursday for million': 895372, 'for million resident': 323438, 'million resident in': 532341, 'resident in all': 714313, 'in all out': 420176, 'all out effort': 43839, 'out effort to': 626005, 'effort to stop': 269649, 'stop the only': 805142, 'the only trip': 862354, 'only trip to': 611387, 'store pharmacy and': 809533, 'pharmacy and essential': 654210, 'and essential work': 62269, 'essential work are': 281804, 'work are permitted': 1004833, 'are permitted whengovernorsfail': 89068, 'socialdistancing at': 780230, 'grocery liquor': 364693, 'practice it': 668599, 'at voting': 101460, 'voting booth': 960598, 'booth sorry': 135126, 'sorry sad': 786075, 'sad democrat': 729164, 'we can practice': 970990, 'can practice socialdistancing': 159280, 'practice socialdistancing at': 668656, 'socialdistancing at grocery': 780231, 'at grocery liquor': 98814, 'grocery liquor store': 364694, 'liquor store we': 494219, 'can practice it': 159277, 'practice it at': 668600, 'it at voting': 456631, 'at voting booth': 101461, 'voting booth sorry': 960599, 'booth sorry sad': 135127, 'sorry sad democrat': 786076, 'commercial trade': 188747, 'trade break': 928423, 'break in': 138744, 'necessarily bad': 553916, 'long run': 501605, 'run we': 727859, 'at 36': 97626, '36 month': 18018, 'month forecast': 537733, 'forecast not': 328846, 'not 36': 567999, '36 day': 18003, 'day forecast': 227641, 'consumer and commercial': 196202, 'and commercial trade': 60141, 'commercial trade break': 188748, 'trade break in': 928424, 'break in response': 138749, 'response to is': 715858, 'is not necessarily': 450135, 'not necessarily bad': 570624, 'necessarily bad thing': 553917, 'bad thing for': 108041, 'thing for the': 884337, 'for the economy': 326404, 'the economy in': 853982, 'economy in the': 267971, 'the long run': 859683, 'long run we': 501612, 'run we need': 727860, 'need to look': 555988, 'to look at': 909433, 'look at 36': 502251, 'at 36 month': 97627, '36 month forecast': 18019, 'month forecast not': 537734, 'forecast not 36': 328847, 'not 36 day': 568000, '36 day forecast': 18004, 'what lie': 981814, 'lie all': 488330, 'empty of': 274976, 'car either': 163070, 'either bbc': 270258, 'news coronavirus': 560334, 'buying no': 150757, 'what lie all': 981816, 'lie all my': 488331, 'all my local': 43563, 'my local shop': 549140, 'local shop are': 498393, 'shop are empty': 759900, 'are empty of': 86160, 'empty of essential': 274979, 'item and cannot': 463051, 'and cannot get': 59513, 'cannot get delivery': 161882, 'any supermarket you': 79921, 'supermarket you do': 824191, 'have car either': 379894, 'car either bbc': 163071, 'either bbc news': 270259, 'bbc news coronavirus': 113089, 'news coronavirus panic': 560340, 'panic buying no': 637820, 'buying no risk': 150760, 'no risk to': 565377, 'to food supply': 906101, 'aweful': 106144, 'last paycheck': 480442, 'paycheck 20': 645268, '20 aweful': 12956, 'last paycheck 20': 480443, 'paycheck 20 aweful': 645269, 'weirdest': 977819, 'unpredictable': 943223, 'the weirdest': 871359, 'weirdest thing': 977826, 'this market': 888771, 'see bad': 744951, 'news all': 560210, 'internet covid': 441928, 'lockdown unemployment': 500093, 'rate rising': 697362, 'rising oil': 723247, 'price falling': 673804, 'falling etc': 297250, 'market seems': 517035, 'in completely': 421637, 'different and': 241890, 'and unpredictable': 74699, 'unpredictable direction': 943228, 'what the weirdest': 982374, 'the weirdest thing': 871363, 'weirdest thing about': 977827, 'about this market': 26646, 'this market you': 888773, 'you see bad': 1021025, 'see bad news': 744952, 'bad news all': 107949, 'news all over': 560211, 'over the internet': 630736, 'the internet covid': 858381, 'internet covid 19': 441929, '19 lockdown unemployment': 8435, 'lockdown unemployment rate': 500094, 'unemployment rate rising': 941277, 'rate rising oil': 697363, 'rising oil price': 723248, 'oil price falling': 597127, 'price falling etc': 673811, 'falling etc but': 297251, 'etc but the': 282450, 'but the market': 147360, 'the market seems': 860156, 'market seems to': 517036, 'seems to go': 746879, 'go in completely': 353704, 'in completely different': 421638, 'completely different and': 192255, 'different and unpredictable': 241892, 'and unpredictable direction': 74700, 'financialy': 306725, 'cellphone': 168974, 'financialy speaking': 306728, 'speaking what': 787778, 'what measure': 981863, 'being taken': 125896, 'taken regarding': 833056, 'regarding consumer': 707188, 'consumer bill': 196631, 'this economic': 887341, 'economic issue': 267156, 'issue due': 455724, 'virus what': 959027, 'it verizon': 462021, 'verizon cellphone': 954822, 'financialy speaking what': 306729, 'speaking what measure': 787779, 'what measure are': 981864, 'are being taken': 84932, 'being taken regarding': 125899, 'taken regarding consumer': 833057, 'regarding consumer bill': 707190, 'consumer bill during': 196632, 'bill during this': 130563, 'during this economic': 263279, 'this economic issue': 887343, 'economic issue due': 267157, 'issue due to': 455725, 'corona virus what': 204376, 'virus what if': 959028, 'we cannot afford': 971047, 'afford it verizon': 34722, 'it verizon cellphone': 462022, 'allan': 45623, 'gr': 361445, 'very just': 955285, 'this allan': 886276, 'allan spent': 45624, 'spent yesterday': 789182, 'yesterday socialdistancing': 1015861, 'the gr': 856682, 'very just saw': 955286, 'just saw this': 469694, 'saw this allan': 738288, 'this allan spent': 886277, 'allan spent yesterday': 45625, 'spent yesterday socialdistancing': 789183, 'yesterday socialdistancing at': 1015862, 'socialdistancing at the': 780233, 'at the gr': 100964, 'tent': 838007, 'of incident': 585059, 'incident across': 431409, 'the paramedic': 863271, 'paramedic amp': 641368, 'amp nurse': 54199, 'nurse coughed': 577250, 'coughed amp': 208593, 'amp spat': 54541, 'spat on': 787640, 'on doctor': 600368, 'doctor forced': 250919, 'out amp': 625624, 'amp told': 54726, 'buy tent': 149276, 'tent police': 838014, 'officer coughed': 595651, 'on viral': 605053, 'viral trend': 957631, 'good contaminated': 356915, 'snapshot of incident': 776159, 'of incident across': 585060, 'incident across the': 431410, 'across the paramedic': 29510, 'the paramedic amp': 863272, 'paramedic amp nurse': 641369, 'amp nurse coughed': 54201, 'nurse coughed amp': 577251, 'coughed amp spat': 208594, 'amp spat on': 54542, 'spat on doctor': 787641, 'on doctor forced': 600369, 'doctor forced out': 250920, 'forced out amp': 328590, 'out amp told': 625625, 'amp told to': 54727, 'told to buy': 923745, 'to buy tent': 902315, 'buy tent police': 149277, 'tent police officer': 838015, 'police officer coughed': 663117, 'officer coughed on': 595652, 'coughed on viral': 208636, 'on viral trend': 605054, 'viral trend see': 957632, 'trend see supermarket': 931439, 'see supermarket good': 745768, 'supermarket good contaminated': 820543, 'fifteenth': 304558, 'impressive': 419478, 'fifteenth day': 304559, 'of confinement': 581657, 'confinement due': 194066, 'this beautiful': 886510, 'beautiful day': 118675, 'this impressive': 888029, 'impressive sun': 419489, 'sun before': 818056, 'before returning': 123041, 'returning home': 720011, 'remember stayhomesavelives': 710263, 'fifteenth day of': 304560, 'day of confinement': 228062, 'of confinement due': 581658, 'confinement due to': 194067, 'to and today': 900531, 'and today went': 74229, 'today went out': 920501, 'and the pharmacy': 73514, 'pharmacy and wanted': 654228, 'wanted to share': 966271, 'to share with': 914373, 'share with everyone': 755352, 'with everyone this': 998295, 'everyone this beautiful': 287481, 'this beautiful day': 886511, 'beautiful day with': 118678, 'day with this': 228786, 'with this impressive': 1001703, 'this impressive sun': 888030, 'impressive sun before': 419490, 'sun before returning': 818057, 'before returning home': 123042, 'returning home and': 720012, 'home and remember': 400681, 'and remember stayhomesavelives': 70219, 'yogi': 1016516, 'adityanath': 32258, 'khadi': 473685, 'upgovernment': 947525, 'permission': 652133, 'yogi adityanath': 1016517, 'adityanath government': 32259, 'ha decided': 370317, 'make 66': 509637, '66 million': 21420, 'million triple': 532398, 'triple layer': 932254, 'layer mask': 482629, 'mask of': 519035, 'of khadi': 585621, 'khadi it': 473686, 'poor will': 664327, 'given free': 350997, 'free upgovernment': 332291, 'upgovernment yogi': 947526, 'yogi cm': 1016519, 'cm mask': 184620, 'mask lockdown': 518922, 'lockdown permission': 499792, 'permission stayhome': 652138, 'yogi adityanath government': 1016518, 'adityanath government ha': 32260, 'government ha decided': 360144, 'ha decided that': 370318, 'decided that it': 230889, 'it will make': 462411, 'will make 66': 994072, 'make 66 million': 509638, '66 million triple': 21421, 'million triple layer': 532399, 'triple layer mask': 932255, 'layer mask of': 482630, 'mask of khadi': 519037, 'of khadi it': 585622, 'khadi it will': 473687, 'be available at': 113752, 'cheap price at': 174173, 'time the poor': 897867, 'the poor will': 863999, 'poor will be': 664328, 'will be given': 992476, 'be given free': 115025, 'given free upgovernment': 350999, 'free upgovernment yogi': 332292, 'upgovernment yogi cm': 947527, 'yogi cm mask': 1016520, 'cm mask lockdown': 184621, 'mask lockdown permission': 518924, 'lockdown permission stayhome': 499793, 'permission stayhome staysafe': 652139, 'calagione': 155277, 'there very': 879215, 'very specific': 955578, 'specific kind': 788224, 'alcohol that': 41134, 'that pretty': 845816, 'much everybody': 544862, 'everybody need': 286468, 'need say': 555541, 'say sam': 739112, 'sam calagione': 732910, 'calagione founder': 155278, 'of so': 589804, 'of crisis we': 582194, 'come to see': 187596, 'to see that': 914080, 'see that there': 745801, 'that there very': 846905, 'there very specific': 879217, 'very specific kind': 955580, 'specific kind of': 788225, 'kind of alcohol': 474872, 'of alcohol that': 579900, 'alcohol that pretty': 41135, 'that pretty much': 845817, 'pretty much everybody': 671447, 'much everybody need': 544863, 'everybody need say': 286469, 'need say sam': 555542, 'say sam calagione': 739113, 'sam calagione founder': 732911, 'calagione founder of': 155279, 'founder of so': 330558, 'of so they': 589814, 'so they started': 778482, 'they started making': 883444, 'started making hand': 794777, 'unilever': 941784, 'hindustan unilever': 396874, 'unilever to': 941797, 'product pledge': 681532, 'pledge 100': 660836, 'hindustan unilever to': 396880, 'unilever to slash': 941799, 'hygiene product pledge': 412160, 'product pledge 100': 681533, 'pledge 100 crore': 660838, 'crore to fight': 218972, 'food expert': 314432, 'expert and': 291773, 'and economist': 61918, 'economist about': 267515, 'about canada': 24924, 'seeing empty': 746282, 'purchasing they': 689935, 'say canada': 738487, 'canada ha': 160453, 'ha robust': 371771, 'robust food': 724843, 'these shortage': 880688, 'only temporary': 611247, 'spoke to of': 789732, 'to of food': 910812, 'of food expert': 583691, 'food expert and': 314433, 'expert and economist': 291775, 'and economist about': 61919, 'economist about canada': 267516, 'about canada food': 24925, 're seeing empty': 699454, 'seeing empty shelf': 746285, 'empty shelf and': 275047, 'and panic purchasing': 68662, 'panic purchasing they': 638455, 'purchasing they say': 689936, 'they say canada': 883262, 'say canada ha': 738488, 'canada ha robust': 160455, 'ha robust food': 371772, 'robust food supply': 724844, 'chain and these': 170479, 'and these shortage': 73884, 'these shortage are': 880689, 'shortage are only': 764837, 'are only temporary': 88776, 'rodahidup': 724999, 'benjamin': 127232, 'soh': 781560, 'government say': 360563, 'say delivery': 738553, 'of non': 587052, 'essential count': 280946, 'count essential': 210119, 'service rodahidup': 752776, 'rodahidup benjamin': 725000, 'benjamin aruna': 127233, 'aruna soh': 94681, 'government say delivery': 360564, 'say delivery of': 738555, 'delivery of online': 234232, 'of online purchase': 587259, 'online purchase of': 608827, 'purchase of non': 689584, 'of non food': 587055, 'non food essential': 566390, 'food essential count': 314378, 'essential count essential': 280947, 'count essential service': 210120, 'essential service rodahidup': 281522, 'service rodahidup benjamin': 752777, 'rodahidup benjamin aruna': 725001, 'benjamin aruna soh': 127234, 'stop fucking': 804673, 'fucking panic': 339967, 'food idiot': 314882, 'stop fucking panic': 804675, 'fucking panic buying': 339969, 'buying food idiot': 150315, 'ofcourse': 593581, 'soar under': 779280, 'threat in': 893667, 'in ofcourse': 426059, 'ofcourse don': 593582, 'what choice': 981212, 'choice do': 177752, 'have everyone': 380498, 'there le': 878696, 'le available': 482855, 'market soon': 517082, 'soon only': 785782, 'only wealthy': 611452, 'wealthy people': 974216, 'people might': 648767, 'food price soar': 315975, 'price soar under': 676532, 'soar under threat': 779281, 'under threat in': 940364, 'threat in ofcourse': 893670, 'in ofcourse don': 426060, 'ofcourse don want': 593583, 'want to increase': 966055, 'increase price but': 432998, 'price but what': 672992, 'but what choice': 147783, 'what choice do': 981213, 'choice do have': 177754, 'do have everyone': 249369, 'have everyone need': 380499, 'everyone need food': 287203, 'need food but': 554791, 'food but there': 313835, 'but there le': 147466, 'there le available': 878697, 'le available in': 482856, 'the market soon': 860160, 'market soon only': 517083, 'soon only wealthy': 785783, 'only wealthy people': 611453, 'wealthy people might': 974218, 'people might be': 648769, 'might be able': 530879, 'able to eat': 24476, 'drvd': 261231, 'waitr': 964429, 'aprn': 83736, 'whtr': 990710, 'cgc': 170376, 'pennystocks': 646640, 'drvd awesome': 261234, 'awesome news': 106186, 'news here': 560508, 'here mainstream': 393325, 'mainstream food': 508908, 'such waitr': 816855, 'waitr and': 964430, 'and blue': 59031, 'blue apron': 133433, 'apron have': 83746, 'reported major': 712499, 'major increase': 509362, 'demand driven': 235255, 'driven consumer': 259294, 'consumer facing': 197431, 'facing brand': 295408, 'all seen': 44267, 'seen week': 747350, 'week growth': 976292, 'growth of': 367428, '100 aprn': 1838, 'aprn whtr': 83739, 'whtr cgc': 990711, 'cgc stockmarket': 170377, 'stockmarket pennystocks': 803665, 'drvd awesome news': 261235, 'awesome news here': 106187, 'news here mainstream': 560509, 'here mainstream food': 393326, 'mainstream food delivery': 508909, 'delivery company such': 233816, 'company such waitr': 191130, 'such waitr and': 816856, 'waitr and blue': 964431, 'and blue apron': 59032, 'blue apron have': 133434, 'apron have reported': 83747, 'have reported major': 382269, 'reported major increase': 712500, 'major increase in': 509363, 'in demand driven': 422119, 'demand driven consumer': 235257, 'driven consumer facing': 259295, 'consumer facing brand': 197434, 'facing brand have': 295409, 'brand have all': 137850, 'have all seen': 379166, 'all seen week': 44270, 'seen week over': 747351, 'week over week': 976718, 'over week growth': 630912, 'week growth of': 976293, 'growth of over': 367434, 'of over 100': 587616, 'over 100 aprn': 629764, '100 aprn whtr': 1839, 'aprn whtr cgc': 83740, 'whtr cgc stockmarket': 990712, 'cgc stockmarket pennystocks': 170378, 'home movement': 401631, 'movement quarantining': 543919, 'quarantining retail': 693087, 'public gathering': 688027, 'gathering are': 344435, 'increasing our': 433649, 'our dependence': 622738, 'digital capability': 242519, 'from home movement': 335882, 'home movement quarantining': 401632, 'movement quarantining retail': 543920, 'quarantining retail store': 693088, 'closure and limit': 183839, 'and limit on': 66173, 'limit on public': 492422, 'on public gathering': 602998, 'public gathering are': 688029, 'gathering are increasing': 344437, 'are increasing our': 87488, 'increasing our dependence': 433650, 'our dependence on': 622739, 'dependence on digital': 237343, 'on digital capability': 600322, 'hyderabad ikea': 411925, 'ikea store': 416054, '19 hyderabad ikea': 7638, 'hyderabad ikea store': 411926, 'ikea store closed': 416055, 'store closed online': 807066, 'shopping to continue': 764170, 'urge everyone': 948177, 'buying all': 149875, 'food vegetable': 317419, 'fruit shop': 339145, 'shop pharmacy': 760662, 'pharmacy atm': 654244, 'atm petrol': 101948, 'petrol bank': 653714, 'bank etc': 109807, 'etc will': 282889, 'open please': 612449, 'please educate': 659948, 'educate everyone': 268753, 'everyone around': 286708, 'you indiafightscorona': 1019332, 'urge everyone to': 948180, 'everyone to stop': 287506, 'panic buying all': 637637, 'buying all essential': 149876, 'all essential like': 42700, 'essential like food': 281283, 'like food vegetable': 490265, 'food vegetable and': 317420, 'and fruit shop': 63377, 'fruit shop pharmacy': 339147, 'shop pharmacy atm': 760663, 'pharmacy atm petrol': 654245, 'atm petrol bank': 101949, 'petrol bank etc': 653715, 'bank etc will': 109809, 'etc will remain': 282894, 'remain open please': 709817, 'open please educate': 612450, 'please educate everyone': 659949, 'educate everyone around': 268754, 'everyone around you': 286709, 'around you indiafightscorona': 93663, 'trampoline': 929403, 'schoolclosuresuk': 742012, 'everyone been': 286734, 'buying bread': 150043, 'bread and': 138390, 'etc my': 282663, 'aunty panic': 103016, 'new trampoline': 559783, 'trampoline for': 929406, 'them entertained': 875655, 'entertained schoolclosuresuk': 278534, 'everyone been panic': 286735, 'panic buying bread': 637659, 'buying bread and': 150044, 'bread and food': 138398, 'and food etc': 63044, 'food etc my': 314401, 'etc my aunty': 282664, 'my aunty panic': 547358, 'aunty panic buy': 103017, 'buy new trampoline': 148995, 'new trampoline for': 559784, 'trampoline for the': 929407, 'for the kid': 326516, 'kid to keep': 474138, 'keep them entertained': 472107, 'them entertained schoolclosuresuk': 875656, 'ceased': 168714, 'boat': 133715, 'parent are': 641578, 'in family': 422787, 'work ha': 1005226, 'ha ceased': 370106, 'ceased to': 168717, 'be priority': 116540, 'priority travel': 678683, 'and leisure': 66091, 'leisure too': 486147, 'word solidarity': 1004577, 'solidarity we': 781945, 'we realize': 973014, 'same boat': 732981, 'boat rich': 133728, 'or poor': 616636, 'poor that': 664301, 'everyone coronacrisis': 286796, 'parent are with': 641587, 'are with their': 91654, 'with their child': 1001561, 'their child in': 872771, 'child in family': 176115, 'in family work': 422788, 'family work ha': 298399, 'work ha ceased': 1005228, 'ha ceased to': 370107, 'ceased to be': 168718, 'to be priority': 901455, 'be priority travel': 116541, 'priority travel and': 678684, 'travel and leisure': 930254, 'and leisure too': 66094, 'leisure too we': 486148, 'too we understand': 925157, 'value of the': 952170, 'of the word': 591625, 'the word solidarity': 871718, 'word solidarity we': 1004578, 'solidarity we realize': 781946, 'we realize that': 973015, 'realize that we': 701863, 'all in the': 43206, 'the same boat': 866201, 'same boat rich': 732984, 'boat rich or': 133729, 'rich or poor': 721243, 'or poor that': 616638, 'poor that the': 664302, 'that the supermarket': 846846, 'are empty for': 86149, 'empty for everyone': 274881, 'for everyone coronacrisis': 321203, 've notice': 953403, 'notice very': 573389, 'very steep': 955581, 'steep price': 799394, 'mask also': 518289, 'also suddenly': 48928, 'suddenly so': 817137, 'many new': 514338, 'new manufacturer': 559082, 'manufacturer popping': 513504, 'up let': 945301, 'these thug': 880833, 've notice very': 953404, 'notice very steep': 573390, 'very steep price': 955583, 'steep price on': 799395, 'price on hand': 675681, 'on hand sanitizers': 601235, 'and mask also': 66741, 'mask also suddenly': 518291, 'also suddenly so': 48929, 'suddenly so many': 817138, 'so many new': 777679, 'many new manufacturer': 514340, 'new manufacturer popping': 559083, 'manufacturer popping up': 513505, 'popping up let': 664522, 'up let all': 945302, 'all be careful': 42126, 'careful of these': 164417, 'of these thug': 591866, 'alot': 47121, 'dear doctor': 229774, 'doctor alot': 250802, 'alot of': 47128, 'of club': 581481, 'club and': 184401, 'hotel are': 405112, 'with over': 1000038, 'over 50': 629853, '50 crowded': 19661, 'crowded ignorant': 219318, 'ignorant nigerian': 415787, 'nigerian they': 562887, 'taking the': 833584, 'pandemic situation': 636474, 'situation seriously': 772474, 'seriously price': 751701, 'are be': 84794, 'dear doctor alot': 229775, 'doctor alot of': 250803, 'alot of club': 47129, 'of club and': 581482, 'club and hotel': 184403, 'and hotel are': 64765, 'hotel are open': 405113, 'are open with': 88810, 'open with over': 612681, 'with over 50': 1000039, 'over 50 crowded': 629856, '50 crowded ignorant': 19662, 'crowded ignorant nigerian': 219319, 'ignorant nigerian they': 415788, 'nigerian they are': 562888, 'not taking the': 571932, 'taking the covid': 833586, '19 pandemic situation': 9470, 'pandemic situation seriously': 636478, 'situation seriously price': 772476, 'seriously price of': 751702, 'sanitizers are be': 736212, 'wife and': 991888, 'are current': 85651, 'current betting': 221107, 'betting on': 128639, 'my wife and': 550582, 'wife and are': 991889, 'and are current': 58304, 'are current betting': 85652, 'current betting on': 221108, 'betting on supermarket': 128641, 'on supermarket sweep': 603810, 'eerily': 268945, 'bio': 131126, 'videoftheday': 956992, 'picoftheday': 656087, 'pasadena': 643179, 'scary toilet': 741212, 'paper lane': 640403, 'lane it': 479460, 'and eerily': 61946, 'eerily quite': 268950, 'quite check': 694835, 'video out': 956859, 'out guy': 626248, 'guy the': 369175, 'my bio': 547453, 'bio toiletpaper': 131169, 'toiletpaper shopping': 922459, 'shopping youtube': 764494, 'youtube youtuber': 1026929, 'youtuber videoftheday': 1026934, 'videoftheday picoftheday': 956993, 'picoftheday pasadena': 656090, 'pasadena corona': 643180, 'scary toilet paper': 741213, 'toilet paper lane': 921333, 'paper lane it': 640404, 'lane it so': 479461, 'it so empty': 461107, 'so empty and': 776950, 'empty and eerily': 274766, 'and eerily quite': 61947, 'eerily quite check': 268951, 'quite check the': 694836, 'check the video': 174660, 'the video out': 870751, 'video out guy': 956860, 'out guy the': 626249, 'guy the link': 369176, 'the link is': 859442, 'link is in': 493866, 'is in my': 448788, 'in my bio': 425542, 'my bio toiletpaper': 547456, 'bio toiletpaper shopping': 131170, 'toiletpaper shopping youtube': 922462, 'shopping youtube youtuber': 764495, 'youtube youtuber videoftheday': 1026930, 'youtuber videoftheday picoftheday': 1026935, 'videoftheday picoftheday pasadena': 956994, 'picoftheday pasadena corona': 656091, 'miserable': 533980, 'soo who': 785602, 'who working': 990054, 'digital queueing': 242632, 'queueing solution': 694182, 'supermarket entry': 820182, 'entry this': 279023, 'this ll': 888675, 'be miserable': 115945, 'miserable in': 533985, 'in wet': 430823, 'wet weather': 980755, 'weather get': 974871, 'car when': 163343, 'example lockdown': 288916, 'soo who working': 785603, 'who working on': 990055, 'working on digital': 1008803, 'on digital queueing': 600327, 'digital queueing solution': 242633, 'queueing solution for': 694183, 'solution for supermarket': 782032, 'for supermarket entry': 326009, 'supermarket entry this': 820185, 'entry this ll': 279024, 'this ll be': 888676, 'll be miserable': 496601, 'be miserable in': 115946, 'miserable in wet': 533986, 'in wet weather': 430824, 'wet weather get': 980756, 'weather get out': 974872, 'of your car': 593449, 'your car when': 1023143, 'car when it': 163344, 'when it your': 983658, 'it your turn': 462666, 'your turn for': 1026228, 'turn for example': 935669, 'for example lockdown': 321285, 'scientist and': 742193, 'and researcher': 70296, 'researcher battle': 713900, 'understand more': 940682, 'becoming an': 120271, 'important tool': 419084, 'for understanding': 327422, 'question for': 693584, 'for researcher': 325143, 'researcher then': 713933, 'then becomes': 877021, 'becomes where': 120268, 'this data': 887159, 'scientist and researcher': 742196, 'and researcher battle': 70298, 'researcher battle to': 713901, 'battle to understand': 112837, 'to understand more': 917907, 'understand more about': 940683, 'more about covid': 538502, 'data is becoming': 226284, 'is becoming an': 446028, 'becoming an even': 120272, 'even more important': 284363, 'more important tool': 539497, 'important tool for': 419085, 'tool for understanding': 925414, 'for understanding the': 327425, 'understanding the spread': 940894, 'pandemic the question': 636695, 'the question for': 865014, 'question for researcher': 693590, 'for researcher then': 325144, 'researcher then becomes': 713934, 'then becomes where': 877022, 'becomes where they': 120269, 'where they can': 985274, 'they can find': 881631, 'find this data': 307330, 'day if': 227777, 'can possibly': 159268, 'possibly avoid': 665895, 'avoid it': 105166, 'afford 14': 34666, 'day shop': 228347, 'shop do': 760098, 'do 14': 249015, 'shop then': 760909, 'then stay': 877567, 'for 14': 318658, 'need exercise': 554748, 'exercise there': 290106, 'of youtube': 593559, 'youtube video': 1026923, 'video workout': 956971, 'don go to': 253574, 'every day if': 285819, 'day if you': 227783, 'you can possibly': 1017750, 'can possibly avoid': 159269, 'possibly avoid it': 665896, 'avoid it if': 105168, 'can afford 14': 157394, 'afford 14 day': 34667, '14 day shop': 3458, 'day shop do': 228348, 'shop do 14': 760099, 'do 14 day': 249016, 'day shop then': 228350, 'shop then stay': 760912, 'then stay home': 877569, 'stay home for': 796965, 'home for 14': 401217, 'for 14 day': 318659, '14 day if': 3449, 'you need exercise': 1019988, 'need exercise there': 554749, 'exercise there are': 290107, 'lot of youtube': 504330, 'of youtube video': 593560, 'youtube video workout': 1026927, 'clare': 180049, 'connors': 194746, 'levins': 487814, '587': 20553, '4272': 18944, 'hawaii attorney': 384444, 'general clare': 345293, 'clare connors': 180050, 'connors and': 194747, 'and hawaii': 64303, 'hawaii office': 384454, 'protection executive': 685427, 'director stephen': 243668, 'stephen levins': 799737, 'levins are': 487815, 'urging the': 948451, 'the hawaii': 857153, 'hawaii public': 384458, 'to beware': 901796, 'ongoing covid': 607612, 'pandemic call': 635082, 'call 587': 155708, '587 4272': 20554, '4272 or': 18945, 'hawaii attorney general': 384445, 'attorney general clare': 102627, 'general clare connors': 345294, 'clare connors and': 180051, 'connors and hawaii': 194748, 'and hawaii office': 64304, 'hawaii office of': 384455, 'consumer protection executive': 198527, 'protection executive director': 685428, 'executive director stephen': 289887, 'director stephen levins': 243669, 'stephen levins are': 799738, 'levins are urging': 487816, 'are urging the': 91395, 'urging the hawaii': 948454, 'the hawaii public': 857154, 'hawaii public to': 384459, 'public to beware': 688373, 'to beware of': 901798, 'beware of and': 129074, 'of and report': 580177, 'report scam and': 712232, 'the ongoing covid': 862241, 'ongoing covid 19': 607613, '19 pandemic call': 9282, 'pandemic call 587': 635083, 'call 587 4272': 155709, '587 4272 or': 20555, 'to canceled': 902434, 'canceled blood': 160923, 'drive due': 259042, 'donating blood': 254440, 'blood when': 133149, 'due to canceled': 261721, 'to canceled blood': 902435, 'canceled blood drive': 160924, 'blood drive due': 133106, 'drive due to': 259043, 'to consider donating': 903223, 'consider donating blood': 194982, 'donating blood when': 254441, 'blood when you': 133150, 'scan': 740695, 'telier': 836888, 'stopscango': 805851, 'helpneedy': 391609, 'limitbuying': 492590, '2020rationing': 14752, 'beki': 126087, 'all please': 43976, 'the scan': 866429, 'scan and': 740696, 'go choice': 353412, 'choice making': 177791, 'the telier': 869270, 'telier the': 836889, 'only choice': 610244, 'choice will': 177830, 'limit buying': 492303, 'buying help': 150478, 'the needy': 861408, 'needy stopscango': 556707, 'stopscango stoppanicbuying': 805852, 'stoppanicbuying helpneedy': 805568, 'helpneedy limitbuying': 391610, 'limitbuying 2020rationing': 492591, '2020rationing beki': 14753, 'can you all': 160273, 'you all please': 1016899, 'all please stop': 43979, 'please stop the': 660592, 'stop the scan': 805151, 'the scan and': 866430, 'scan and go': 740697, 'and go choice': 63770, 'go choice making': 353413, 'choice making the': 177792, 'making the telier': 511433, 'the telier the': 869271, 'telier the only': 836890, 'the only choice': 862293, 'only choice will': 610246, 'choice will help': 177831, 'help with the': 390932, 'with the limit': 1001369, 'the limit buying': 859382, 'limit buying help': 492304, 'buying help the': 150479, 'help the needy': 390669, 'the needy stopscango': 861414, 'needy stopscango stoppanicbuying': 556708, 'stopscango stoppanicbuying helpneedy': 805853, 'stoppanicbuying helpneedy limitbuying': 805569, 'helpneedy limitbuying 2020rationing': 391611, 'limitbuying 2020rationing beki': 492592, 'domestica': 253247, 'malta': 511883, 'homefurnishings': 402700, 'bespokefurniture': 127554, 'bespoke': 127549, 'freedelivery': 332357, 'turn your': 935816, 'home into': 401444, 'into haven': 442616, 'haven domestica': 383790, 'domestica malta': 253248, 'malta home': 511884, 'home homefurnishings': 401371, 'homefurnishings sofa': 402701, 'sofa bespokefurniture': 781440, 'bespokefurniture bespoke': 127555, 'bespoke kitchen': 127550, 'kitchen online': 475732, 'online onlineshopping': 608622, 'onlineshopping offer': 609918, 'offer freedelivery': 594631, 'freedelivery shopping': 332360, 'how to turn': 409103, 'to turn your': 917853, 'turn your home': 935817, 'your home into': 1024359, 'home into haven': 401445, 'into haven domestica': 442617, 'haven domestica malta': 383791, 'domestica malta home': 253249, 'malta home homefurnishings': 511885, 'home homefurnishings sofa': 401372, 'homefurnishings sofa bespokefurniture': 402702, 'sofa bespokefurniture bespoke': 781441, 'bespokefurniture bespoke kitchen': 127556, 'bespoke kitchen online': 127551, 'kitchen online onlineshopping': 475733, 'online onlineshopping offer': 608623, 'onlineshopping offer freedelivery': 609919, 'offer freedelivery shopping': 594632, 'unfortunately there': 941652, 'been or': 121606, 'be scammed': 117011, 'scammed especially': 740510, 'especially our': 280572, 'unfortunately there are': 941653, 'are people that': 89055, 'people that have': 649767, 'have been or': 379625, 'been or will': 121608, 'or will be': 617804, 'will be scammed': 992663, 'be scammed especially': 117012, 'scammed especially our': 740511, 'especially our senior': 280574, 'our senior citizen': 624714, 'wrestling': 1012746, 'what bullshit': 981145, 'bullshit coronavirus': 142480, 'or whatever': 617773, 'whatever you': 982815, 'you call': 1017601, 'it caused': 457079, 'caused worldwide': 167979, 'worldwide shutdown': 1010423, 'shutdown no': 768061, 'and wrestling': 75940, 'wrestling with': 1012749, 'crowd shut': 219245, 'life make': 488861, 'no plan': 565119, 'plan stay': 658227, 'inside wash': 439444, 'know what bullshit': 476942, 'what bullshit coronavirus': 981146, 'bullshit coronavirus covid': 142481, '19 or whatever': 9033, 'or whatever you': 617774, 'whatever you call': 982816, 'you call it': 1017604, 'call it it': 155956, 'it it caused': 459168, 'it caused worldwide': 457080, 'caused worldwide shutdown': 167980, 'worldwide shutdown no': 1010424, 'shutdown no food': 768062, 'no food or': 564266, 'because of people': 119390, 'buying and wrestling': 149946, 'and wrestling with': 75942, 'wrestling with no': 1012750, 'with no crowd': 999744, 'no crowd shut': 563936, 'crowd shut down': 219246, 'shut down your': 767869, 'down your life': 257531, 'your life make': 1024640, 'life make no': 488862, 'make no plan': 510245, 'no plan stay': 565122, 'plan stay inside': 658229, 'stay inside wash': 797106, 'inside wash your': 439445, 'crzy': 220016, 'unproven': 943262, 'ven': 954322, 'crzy pushing': 220017, 'pushing bogus': 690396, 'bogus unproven': 134038, 'unproven drug': 943267, 'drug from': 260958, 'company he': 190744, 'he and': 384742, 'his kid': 397560, 'kid own': 474074, 'own share': 632202, 'say will': 739493, 'will cure': 993080, 'governor of': 360952, 'of florida': 583589, 'florida just': 310958, 'just bought': 468347, 'bought million': 136636, 'dos he': 255921, 'selling supply': 749463, 'supply mask': 825540, 'and ven': 74908, 'crzy pushing bogus': 220018, 'pushing bogus unproven': 690397, 'bogus unproven drug': 134039, 'unproven drug from': 943268, 'drug from the': 260959, 'from the drug': 337674, 'the drug company': 853733, 'drug company he': 260919, 'company he and': 190745, 'he and his': 384743, 'and his kid': 64603, 'his kid own': 397561, 'kid own share': 474075, 'own share in': 632203, 'share in that': 755059, 'in that he': 428921, 'that he say': 844268, 'he say will': 385403, 'say will cure': 739494, 'will cure covid': 993081, '19 the governor': 11200, 'the governor of': 856643, 'governor of florida': 360953, 'of florida just': 583591, 'florida just bought': 310959, 'just bought million': 468353, 'bought million dos': 136638, 'million dos he': 532137, 'dos he is': 255922, 'he is selling': 385145, 'is selling supply': 451765, 'selling supply mask': 749464, 'supply mask and': 825541, 'mask and ven': 518386, 'unsaleable': 943405, 'admin': 32407, 'pandemic impacted': 635689, 'impacted food': 418113, 'waste management': 968145, 'management in': 512581, 'business maybe': 144038, 'maybe you': 521890, 'have unsaleable': 383464, 'unsaleable product': 943406, 'product ingredient': 681315, 'ingredient or': 438388, 'increased production': 433428, 'production demand': 682011, 'demand if': 235659, 'if so': 414821, 'so get': 777157, 'touch we': 926572, 'can admin': 157382, 'admin co': 32414, 'ha the covid': 372193, '19 pandemic impacted': 9359, 'pandemic impacted food': 635690, 'impacted food waste': 418114, 'food waste management': 317483, 'waste management in': 968147, 'management in your': 512583, 'in your business': 431062, 'your business maybe': 1023068, 'business maybe you': 144039, 'maybe you have': 521895, 'you have unsaleable': 1019136, 'have unsaleable product': 383465, 'unsaleable product ingredient': 943407, 'product ingredient or': 681316, 'ingredient or are': 438389, 'or are experiencing': 614407, 'are experiencing increased': 86345, 'experiencing increased production': 291671, 'increased production demand': 433430, 'production demand if': 682013, 'demand if so': 235662, 'if so get': 414824, 'so get in': 777159, 'in touch we': 430234, 'touch we want': 926573, 'want to support': 966137, 'to support in': 915938, 'support in any': 826583, 'we can admin': 970901, 'can admin co': 157383, 'admin co uk': 32415, 'secondly': 743901, 'secondly there': 743902, 'there thing': 879163, 'stock when': 803180, 'there literally': 878713, 'literally ton': 495101, 'ton in': 924258, 'world you': 1010213, 'need ton': 556131, 'paper nor': 640507, 'nor do': 566943, 'need load': 555169, 'big family': 129776, 'but get': 145789, 'get without': 348636, 'without covid': 1002567, 'secondly there thing': 743903, 'there thing going': 879164, 'thing going out': 884368, 'of stock when': 590211, 'stock when there': 803182, 'when there literally': 984228, 'there literally ton': 878714, 'literally ton in': 495102, 'ton in the': 924259, 'the world you': 872014, 'world you don': 1010215, 'don need ton': 253775, 'need ton of': 556132, 'toilet paper nor': 921369, 'paper nor do': 640508, 'nor do you': 566944, 'you need load': 1020010, 'need load of': 555170, 'sanitizer and food': 734405, 'and food get': 63053, 'food get people': 314651, 'get people may': 347804, 'people may have': 648757, 'may have big': 521231, 'have big family': 379786, 'big family but': 129777, 'family but get': 297673, 'but get what': 145791, 'what you would': 982703, 'you would get': 1022449, 'would get without': 1011835, 'get without covid': 348637, 'without covid 19': 1002568, 'headquarters': 386027, 'will socialdistancing': 994882, 'socialdistancing accelerate': 780188, 'trend toward': 931481, 'home headquarters': 401348, 'headquarters by': 386028, 'will socialdistancing accelerate': 994883, 'socialdistancing accelerate trend': 780189, 'accelerate trend toward': 27871, 'trend toward home': 931482, 'toward home headquarters': 927129, 'home headquarters by': 401349, 'obnoxious': 578498, 'store your': 811700, 'talk back': 833780, 'customer that': 222913, 'that act': 842488, 'rude obnoxious': 727047, 'obnoxious ungrateful': 578505, 'you re working': 1020798, 're working at': 699824, 'for all that': 319174, 'all that you': 44651, 'grocery store your': 365982, 'store your employee': 811701, 'your employee deserve': 1023655, 'right to talk': 722356, 'to talk back': 916282, 'talk back and': 833781, 'back and or': 106860, 'any customer that': 79092, 'customer that act': 222914, 'that act like': 842489, 'like rude obnoxious': 491108, 'rude obnoxious ungrateful': 727048, 'obnoxious ungrateful piece': 578506, 'you justify': 1019437, 'justify your': 470467, 'for calpol': 319890, 'calpol why': 156918, 'big price': 129931, 'increase talk': 433092, 'about caring': 24932, 'can you justify': 160313, 'you justify your': 1019438, 'justify your price': 470468, 'your price for': 1025401, 'price for calpol': 673934, 'for calpol why': 319892, 'calpol why such': 156919, 'why such big': 991387, 'such big price': 816372, 'big price increase': 129933, 'price increase talk': 674789, 'increase talk about': 433093, 'talk about caring': 833729, 'about caring for': 24933, 'caring for the': 164718, 'for the local': 326536, 'severely': 754072, 'ha severely': 371879, 'severely impacted': 754091, 'impacted sale': 418149, 'of petrol': 588075, 'the three week': 869520, 'three week lockdown': 894108, 'week lockdown in': 976494, 'in india ha': 424038, 'india ha severely': 434446, 'ha severely impacted': 371881, 'severely impacted sale': 754094, 'impacted sale of': 418150, 'sale of petrol': 732405, 'of petrol and': 588076, 'unionize': 941955, 'cleaning food': 180947, 'food driving': 314295, 'driving and': 259895, 'and logistics': 66333, 'logistics people': 500778, 'time unionize': 898165, 'unionize and': 941956, 'demand this': 236380, 'economic system': 267332, 'system give': 831185, 'all decent': 42540, 'decent living': 230786, 'you child': 1017946, 'child do': 176059, 'ceo will': 169887, 'will toss': 995215, 'toss you': 926096, 'extra dime': 293499, 'dime when': 242920, 'over unionize': 630873, 'essential worker cleaning': 281823, 'worker cleaning food': 1006658, 'cleaning food driving': 180948, 'food driving and': 314296, 'driving and logistics': 259896, 'and logistics people': 66339, 'logistics people now': 500779, 'people now is': 648892, 'the time unionize': 869628, 'time unionize and': 898166, 'unionize and demand': 941957, 'and demand this': 61175, 'demand this economic': 236382, 'this economic system': 887345, 'economic system give': 267333, 'system give you': 831186, 'give you all': 350848, 'you all decent': 1016870, 'all decent living': 42541, 'decent living wage': 230788, 'living wage and': 496476, 'wage and future': 963808, 'and future for': 63448, 'future for you': 342328, 'for you child': 328046, 'you child do': 1017947, 'child do not': 176060, 'not think the': 572088, 'think the ceo': 885625, 'the ceo will': 850619, 'ceo will toss': 169889, 'will toss you': 995216, 'toss you an': 926097, 'an extra dime': 56011, 'extra dime when': 293500, 'dime when this': 242921, 'is over unionize': 450741, 'supreme': 827428, 'optical': 613873, 'the supreme': 868989, 'supreme committee': 827429, 'committee for': 189065, '19 closing': 5853, 'in commercial': 421599, 'complex except': 192401, 'consumer catering': 196745, 'catering store': 167271, 'store clinic': 807044, 'clinic pharmacy': 182311, 'and optical': 68199, 'optical store': 613882, 'the supreme committee': 868990, 'supreme committee for': 827430, 'committee for dealing': 189066, 'covid 19 closing': 212814, '19 closing all': 5854, 'store in commercial': 808290, 'in commercial complex': 421602, 'commercial complex except': 188683, 'complex except for': 192402, 'except for food': 289159, 'food and consumer': 313199, 'and consumer catering': 60359, 'consumer catering store': 196747, 'catering store clinic': 167272, 'store clinic pharmacy': 807045, 'clinic pharmacy and': 182312, 'pharmacy and optical': 654219, 'and optical store': 68201, 'ableism': 24585, 'visibly': 959140, 'stopablelism': 805304, 'supermarket listening': 821343, 'listening this': 494802, 'of ableism': 579703, 'ableism is': 24587, 'unacceptable in': 939359, 'not up': 572349, 'to decide': 903998, 'decide that': 230839, 'that visibly': 847256, 'visibly disabled': 959142, 'need stopablelism': 555652, 'other supermarket listening': 621021, 'supermarket listening this': 821345, 'listening this level': 494803, 'this level of': 888619, 'level of ableism': 487625, 'of ableism is': 579704, 'ableism is unacceptable': 24588, 'is unacceptable in': 453423, 'unacceptable in time': 939360, 'of need it': 586909, 'need it not': 555097, 'it not up': 459932, 'not up to': 572350, 'up to staff': 946429, 'to staff to': 915142, 'staff to decide': 792986, 'to decide that': 903999, 'decide that visibly': 230840, 'that visibly disabled': 847257, 'visibly disabled people': 959143, 'disabled people are': 243937, 'more in need': 539520, 'in need stopablelism': 425767, 'jamaica': 464369, 'service have': 752446, 'growing but': 367129, 'the growth': 856884, 'growth will': 367483, 'increase more': 432916, 'more after': 538568, 'in jamaica': 424346, 'jamaica will': 464378, 'become bigger': 119934, 'bigger business': 130147, 'people reducing': 649258, 'reducing face': 706284, 'face interaction': 294475, 'and grocery delivery': 63981, 'delivery service have': 234440, 'service have been': 752448, 'have been growing': 379563, 'been growing but': 121240, 'growing but the': 367130, 'but the growth': 147342, 'the growth will': 856886, 'growth will increase': 367485, 'will increase more': 993818, 'increase more after': 432917, 'more after covid': 538569, 'shopping in jamaica': 762974, 'in jamaica will': 424347, 'jamaica will become': 464379, 'will become bigger': 992792, 'become bigger business': 119935, 'bigger business with': 130148, 'business with people': 144703, 'with people reducing': 1000162, 'people reducing face': 649259, 'reducing face to': 706285, 'to face interaction': 905566, 'face interaction in': 294476, 'interaction in large': 441248, 'announce that': 76875, 'all hourly': 43155, 'hourly store': 406139, 'store manufacturing': 808900, 'manufacturing warehouse': 513685, 'and transportation': 74385, 'transportation partner': 930021, 'partner will': 642899, 'receive hour': 703496, 'hour texas': 405974, 'texas proud': 839810, 'proud pay': 686046, 'pay from': 644910, '16 to': 4183, 'to april': 900682, 'april 12': 83399, '12 to': 2965, 'to recognize': 912953, 'recognize their': 704655, 'commitment they': 189001, 'help serve': 390514, 'client community': 182018, 'we are proud': 970671, 'are proud to': 89306, 'proud to announce': 686053, 'to announce that': 900557, 'announce that all': 76876, 'that all hourly': 842551, 'all hourly store': 43156, 'hourly store manufacturing': 406140, 'store manufacturing warehouse': 808901, 'manufacturing warehouse and': 513686, 'warehouse and transportation': 966688, 'and transportation partner': 74388, 'transportation partner will': 930022, 'partner will receive': 642900, 'will receive hour': 994593, 'receive hour texas': 703497, 'hour texas proud': 405975, 'texas proud pay': 839811, 'proud pay from': 686047, 'pay from march': 644911, 'from march 16': 336344, 'march 16 to': 515088, '16 to april': 4184, 'to april 12': 900683, 'april 12 to': 83405, '12 to recognize': 2967, 'to recognize their': 912960, 'recognize their hard': 704656, 'hard work and': 378123, 'work and thank': 1004814, 'and thank them': 73160, 'for their commitment': 326811, 'their commitment they': 872811, 'commitment they help': 189002, 'they help serve': 882430, 'help serve our': 390516, 'our client community': 622393, 'rm': 724251, 'rm30': 724264, 'private laboratory': 678935, 'laboratory can': 478467, 'also play': 48656, 'play an': 659113, 'an important': 56192, 'important role': 418954, 'role here': 725081, 'here few': 392969, 'few can': 303741, 'afford the': 34766, 'the rm': 865909, 'rm 700': 724254, '700 900': 21874, '900 for': 23380, 'test consider': 838960, 'consider slashing': 195111, 'to bare': 901044, 'bare minimum': 110920, 'minimum of': 533202, 'of rm30': 589137, 'rm30 50': 724265, '50 you': 19921, 'been earning': 121056, 'earning from': 264867, 'public for': 688009, 'year time': 1015028, 'give back': 350399, 'private laboratory can': 678936, 'laboratory can also': 478468, 'can also play': 157465, 'also play an': 48657, 'play an important': 659115, 'an important role': 56205, 'important role here': 418955, 'role here few': 725082, 'here few can': 392970, 'few can afford': 303742, 'can afford the': 157408, 'afford the rm': 34774, 'the rm 700': 865910, 'rm 700 900': 724255, '700 900 for': 21875, '900 for test': 23382, 'for test consider': 326226, 'test consider slashing': 838961, 'consider slashing your': 195112, 'your price down': 1025398, 'down to bare': 257362, 'to bare minimum': 901046, 'bare minimum of': 110924, 'minimum of rm30': 533206, 'of rm30 50': 589138, 'rm30 50 you': 724266, '50 you have': 19922, 'you have been': 1019016, 'have been earning': 379523, 'been earning from': 121057, 'earning from the': 264868, 'from the public': 337847, 'the public for': 864810, 'public for year': 688017, 'for year time': 328017, 'year time to': 1015030, 'time to give': 897992, 'to give back': 906675, 'give back to': 350402, 'to the nation': 916890, 'nation in it': 552219, 'hallelujah': 374366, 'corkscrew': 203551, 'you picked': 1020331, 'up random': 945882, 'random bottle': 696600, 'bottle at': 136189, 'supermarket week': 823771, 'and discovered': 61417, 'discovered it': 244689, 'it screw': 460914, 'screw cap': 742789, 'cap hallelujah': 162421, 'hallelujah you': 374367, 'find corkscrew': 306863, 'corkscrew like': 203552, 'like easily': 490152, 'easily accessible': 265184, 'accessible wine': 28351, 'wine screw': 995884, 'cap wine': 162459, 'wine is': 995828, 'thought of the': 893153, 'the day you': 852928, 'day you picked': 228825, 'you picked up': 1020333, 'picked up random': 655818, 'up random bottle': 945883, 'random bottle at': 696601, 'bottle at the': 136191, 'the supermarket week': 868894, 'supermarket week ago': 823772, 'week ago and': 975836, 'ago and discovered': 38334, 'and discovered it': 61419, 'discovered it screw': 244690, 'it screw cap': 460915, 'screw cap hallelujah': 742790, 'cap hallelujah you': 162422, 'hallelujah you do': 374368, 'to find corkscrew': 905891, 'find corkscrew like': 306864, 'corkscrew like easily': 203553, 'like easily accessible': 490153, 'easily accessible wine': 265186, 'accessible wine screw': 28352, 'wine screw cap': 995885, 'screw cap wine': 742791, 'cap wine is': 162460, 'today shopping': 920175, 'shopping locally': 763205, 'locally online': 498767, 'phone is': 654966, 'to practise': 911970, 'practise ha': 668767, 'ha plan': 371491, 'for economic': 320943, 'economic support': 267330, 'amp recovery': 54371, 'recovery during': 705315, 'during together': 263358, 'this visit': 891042, 'today shopping locally': 920177, 'shopping locally online': 763206, 'locally online or': 498768, 'online or by': 608651, 'or by phone': 614627, 'by phone is': 153578, 'phone is the': 654967, 'way to practise': 970065, 'to practise ha': 911971, 'practise ha plan': 668768, 'ha plan for': 371493, 'plan for economic': 658118, 'for economic support': 320947, 'economic support amp': 267331, 'support amp recovery': 826348, 'amp recovery during': 54372, 'recovery during together': 705317, 'during together we': 263359, 'through this visit': 894855, 'obsolete': 578702, 'meansofproduction': 524877, 'soar crisis': 779236, 'crisis highlight': 217488, 'highlight class': 395901, 'class division': 180178, 'division based': 248665, 'on obsolete': 602471, 'obsolete capitalism': 578703, 'capitalism and': 162715, 'private ownership': 678958, 'ownership of': 632621, 'the meansofproduction': 860355, 'bank soar crisis': 110196, 'soar crisis highlight': 779237, 'crisis highlight class': 217489, 'highlight class division': 395902, 'class division based': 180179, 'division based on': 248666, 'based on obsolete': 111688, 'on obsolete capitalism': 602472, 'obsolete capitalism and': 578704, 'capitalism and private': 162722, 'and private ownership': 69526, 'private ownership of': 678959, 'ownership of the': 632622, 'of the meansofproduction': 591229, 'retreat': 719747, 'mode': 535151, 'chow': 178039, 'coronavirus from': 205954, 'china to': 177000, 'behaviour radically': 124498, 'altered world': 49168, 'world retreat': 1009933, 'retreat into': 719750, 'into survival': 443068, 'survival mode': 829055, 'mode report': 535195, 'report chow': 711862, 'chow china': 178040, 'china china': 176560, 'china chinavirus': 176566, 'coronavirus from china': 205955, 'from china to': 334872, 'china to the': 177006, 'the consumer behaviour': 851499, 'consumer behaviour radically': 196594, 'behaviour radically altered': 124499, 'radically altered world': 695416, 'altered world retreat': 49169, 'world retreat into': 1009934, 'retreat into survival': 719751, 'into survival mode': 443069, 'survival mode report': 829061, 'mode report chow': 535196, 'report chow china': 711863, 'chow china china': 178041, 'china china chinavirus': 176562, 'collated': 186166, 'uptodate': 947938, 'ha collated': 370195, 'collated uptodate': 186167, 'uptodate information': 947939, 'shopper right': 761668, 'right responsibility': 722254, 'responsibility which': 715992, 'which take': 986366, 'take into': 832229, 'account covid': 28649, 'the ha collated': 856984, 'ha collated uptodate': 370196, 'collated uptodate information': 186168, 'uptodate information on': 947940, 'information on your': 437930, 'on your online': 605485, 'your online shopper': 1025077, 'online shopper right': 609003, 'shopper right responsibility': 761669, 'right responsibility which': 722255, 'responsibility which take': 715993, 'which take into': 986368, 'take into account': 832230, 'into account covid': 442364, 'account covid 19': 28650, 'comodities': 190290, 'in2': 431165, 'one profiteering': 606926, 'profiteering taking': 683097, 'grocery kirana': 364680, 'kirana merchant': 475400, 'merchant they': 529052, 'having field': 384064, 'of most': 586670, 'the comodities': 851307, 'comodities by': 190293, 'last few': 480209, 'is civil': 446532, 'supply department': 825160, 'department looking': 237224, 'looking in2': 502938, 'in2 this': 431168, 'the one profiteering': 862218, 'one profiteering taking': 606927, 'profiteering taking advantage': 683098, 'advantage of are': 32988, 'of are the': 580356, 'are the grocery': 90837, 'the grocery kirana': 856816, 'grocery kirana merchant': 364681, 'kirana merchant they': 475401, 'merchant they are': 529053, 'they are having': 881293, 'are having field': 87032, 'having field day': 384065, 'field day they': 304464, 'day they have': 228521, 'they have increased': 882329, 'have increased price': 381063, 'increased price of': 433417, 'price of most': 675509, 'of most of': 586678, 'of the comodities': 590877, 'the comodities by': 851308, 'comodities by 30': 190294, 'by 30 40': 151626, '30 40 in': 16939, '40 in last': 18581, 'in last few': 424603, 'last few day': 480210, 'few day is': 303779, 'day is civil': 227835, 'is civil supply': 446533, 'civil supply department': 179557, 'supply department looking': 825161, 'department looking in2': 237225, 'looking in2 this': 502939, 'in2 this corona': 431169, 'li': 487940, 'definitely my': 232364, 'my man': 549199, 'man feel': 512059, 'this fall': 887505, 'fall when': 297109, 'about again': 24772, 'hero from': 393993, 'who they': 989766, 'healthcare people': 387204, 'people grocery': 648125, 'else putting': 271848, 'the li': 859316, 'you are definitely': 1017105, 'are definitely my': 85737, 'definitely my man': 232365, 'my man feel': 549200, 'man feel like': 512061, 'feel like this': 302753, 'like this fall': 491489, 'this fall when': 887506, 'fall when we': 297110, 'when we are': 984429, 'are out and': 88877, 'and about again': 57542, 'about again we': 24773, 'again we need': 37262, 'need to honor': 555965, 'honor our hero': 403252, 'our hero from': 623423, 'hero from covid': 393994, '19 you know': 12268, 'know who they': 477042, 'who they are': 989767, 'are our healthcare': 88861, 'our healthcare people': 623387, 'healthcare people grocery': 387205, 'people grocery store': 648127, 'owner and anyone': 632372, 'anyone else putting': 80284, 'else putting their': 271849, 'putting their life': 691241, 'their life on': 873841, 'on the li': 604209, 'trickle': 931728, 'chin': 176430, 'the crash': 852276, 'is directly': 447187, 'directly tied': 243583, 'number importer': 576890, 'world import': 1009652, 'import slowed': 418670, 'slowed to': 774501, 'to trickle': 917779, 'trickle global': 931732, 'supply increased': 825419, 'increased supply': 433481, 'demand economics': 235278, 'economics shale': 267481, 'shale oil': 754503, 'oil take': 597466, 'the chin': 850828, 'chin opec': 176433, 'opec cartel': 611847, 'cartel dependent': 165446, 'the crash in': 852277, 'crash in oil': 214995, 'price is directly': 674863, 'is directly tied': 447189, 'directly tied to': 243584, 'tied to covid': 895757, 'covid 19 china': 212795, '19 china is': 5794, 'china is the': 176764, 'is the number': 452874, 'the number importer': 861955, 'number importer of': 576891, 'importer of oil': 419206, 'of oil in': 587185, 'oil in the': 596874, 'the world import': 871892, 'world import slowed': 1009653, 'import slowed to': 418671, 'slowed to trickle': 774502, 'to trickle global': 917780, 'trickle global supply': 931733, 'global supply increased': 352235, 'supply increased supply': 825421, 'increased supply demand': 433482, 'supply demand economics': 825150, 'demand economics shale': 235279, 'economics shale oil': 267482, 'shale oil take': 754506, 'oil take it': 597467, 'take it on': 832251, 'it on the': 460061, 'on the chin': 604022, 'the chin opec': 850829, 'chin opec cartel': 176434, 'opec cartel dependent': 611848, 'kallanish': 470715, 'scrap weakens': 742588, 'weakens italy': 974090, 'italy extends': 462824, 'extends industry': 293253, 'industry lockdown': 435971, 'no scrap': 565434, 'scrap import': 742580, 'import from': 418634, 'other european': 620190, 'european country': 283550, 'country steel': 211081, 'steel kallanish': 799341, 'scrap weakens italy': 742589, 'weakens italy extends': 974091, 'italy extends industry': 462825, 'extends industry lockdown': 293254, 'industry lockdown today': 435972, 'lockdown today there': 500063, 'today there are': 920313, 'are no price': 88275, 'no price there': 565185, 'no market and': 564701, 'market and no': 515976, 'and no scrap': 67638, 'no scrap import': 565435, 'scrap import from': 742581, 'import from other': 418636, 'from other european': 336728, 'other european country': 620191, 'european country steel': 283556, 'country steel kallanish': 211082, 'withme': 1002467, 'support online': 826708, 'with withme': 1002115, 'withme 19': 1002468, '19 stayhome': 10825, 'stayhome trend': 798218, 'trend think': 931471, 'get support online': 348163, 'support online with': 826712, 'online with withme': 609756, 'with withme 19': 1002116, 'withme 19 stayhome': 1002469, '19 stayhome trend': 10831, 'stayhome trend think': 798219, 'trend think with': 931472, 'superheroes': 818669, 'hardworking': 378336, 'hailed': 373945, 'bushfires': 143150, 'supermarket superheroes': 823031, 'superheroes hardworking': 818679, 'hardworking employee': 378339, 'employee have': 273914, 'been hailed': 121245, 'hailed the': 373948, 'pandemic brave': 635019, 'brave worker': 138246, 'are compared': 85455, 'to firefighter': 905973, 'firefighter braving': 308203, 'braving bushfires': 138280, 'supermarket superheroes hardworking': 823032, 'superheroes hardworking employee': 818680, 'hardworking employee have': 378340, 'employee have been': 273917, 'have been hailed': 379564, 'been hailed the': 121246, 'hailed the unsung': 373949, 'coronavirus pandemic brave': 206438, 'pandemic brave worker': 635020, 'brave worker are': 138247, 'worker are compared': 1006375, 'are compared to': 85456, 'compared to firefighter': 191425, 'to firefighter braving': 905974, 'firefighter braving bushfires': 308204, 'axed': 106305, 'luxury seafood': 506955, 'seafood supply': 743150, 'supply hit': 825368, 'by axed': 151924, 'axed flight': 106306, 'flight bite': 310445, 'luxury seafood supply': 506956, 'seafood supply hit': 743152, 'supply hit by': 825369, 'hit by axed': 398174, 'by axed flight': 151925, 'axed flight bite': 106307, 'first store': 309036, 'this effort': 887348, 'effort could': 269501, 'could really': 209570, 'really win': 702713, 'the pr': 864184, 'pr game': 668431, 'make real': 510388, 'real difference': 701110, 'the first store': 855352, 'first store to': 309038, 'make this effort': 510637, 'this effort could': 887350, 'effort could really': 269502, 'could really win': 209576, 'really win the': 702714, 'win the pr': 995588, 'the pr game': 864186, 'pr game and': 668432, 'game and make': 343118, 'and make real': 66573, 'make real difference': 510390, 'panic malicious': 638297, 'malicious apps': 511713, 'apps email': 83277, 'email sm': 272297, 'phishing vulnerable': 654843, 'vulnerable software': 961171, 'software face': 781527, 'hand scam': 375747, 'scam discount': 740128, 'discount scam': 244531, 'way hacker and': 969612, 'hacker and scammer': 372762, 'and scammer are': 71039, 'the coronavirus panic': 851890, 'coronavirus panic malicious': 206523, 'panic malicious apps': 638298, 'malicious apps email': 511714, 'apps email sm': 83279, 'email sm phishing': 272299, 'sm phishing vulnerable': 774758, 'phishing vulnerable software': 654844, 'vulnerable software face': 961172, 'software face mask': 781528, 'mask hand scam': 518780, 'hand scam discount': 375748, 'scam discount scam': 740130, 'discount scam via': 244533, 'india announced': 434300, 'announced 1500': 76907, '1500 crore': 3938, 'crore for': 218956, 'health package': 386732, 'package india': 633309, 'india population': 434569, 'population around': 664652, 'around 130': 93107, '130 crore': 3292, 'crore indian': 218958, 'indian government': 434836, 'government aid': 359849, 'aid 115': 39351, '115 per': 2664, 'person meanwhile': 652532, 'meanwhile cost': 524961, '100 ml': 1955, 'ml sanitizer': 534724, 'is 150': 445160, '150 coronachainscare': 3903, 'coronachainscare prevention': 204464, 'prevention is': 671859, 'than depends': 840495, 'government package': 360444, 'india announced 1500': 434301, 'announced 1500 crore': 76908, '1500 crore for': 3939, 'crore for health': 218957, 'for health package': 322152, 'health package india': 386733, 'package india population': 633310, 'india population around': 434570, 'population around 130': 664653, 'around 130 crore': 93108, '130 crore indian': 3293, 'crore indian government': 218959, 'indian government aid': 434837, 'government aid 115': 359850, 'aid 115 per': 39352, '115 per person': 2665, 'per person meanwhile': 650975, 'person meanwhile cost': 652533, 'meanwhile cost of': 524962, 'cost of 100': 208036, 'of 100 ml': 579320, '100 ml sanitizer': 1956, 'ml sanitizer is': 534725, 'sanitizer is 150': 735180, 'is 150 coronachainscare': 445161, '150 coronachainscare prevention': 3904, 'coronachainscare prevention is': 204465, 'prevention is better': 671861, 'better than depends': 128519, 'than depends on': 840496, 'depends on government': 237387, 'on government package': 601163, 'food imagine': 314902, 'imagine all': 416688, 'waste people': 968171, 'told there': 923722, 'the selfish': 866658, 'bastard do': 112476, 'do stack': 250166, 'stack of': 791976, 'stock panic': 802610, 'buying coronacrisis': 150144, 'seeing all these': 746211, 'these people hoarding': 880442, 'people hoarding food': 648271, 'hoarding food imagine': 399307, 'food imagine all': 314903, 'imagine all the': 416690, 'the food waste': 855620, 'food waste people': 317488, 'waste people who': 968172, 'have been told': 379722, 'been told there': 122244, 'told there is': 923723, 'food for everyone': 314532, 'everyone if they': 287029, 'if they do': 415108, 'panic and buy': 637300, 'and buy so': 59351, 'buy so what': 149192, 'so what do': 778715, 'what do the': 981351, 'do the selfish': 250263, 'the selfish bastard': 866660, 'selfish bastard do': 748017, 'bastard do stack': 112477, 'do stack of': 250167, 'stack of stock': 791978, 'of stock panic': 590183, 'stock panic buying': 802611, 'panic buying coronacrisis': 637687, 'trolly': 932531, 'off down': 593776, 'on anyone': 599412, 'anyone that': 80555, 'had more': 373310, 'than roll': 841098, 'their trolly': 875041, 'trolly give': 932532, 'them reason': 876209, 'bought it': 136608, 'off down the': 593777, 'down the supermarket': 257307, 'supermarket to cough': 823363, 'to cough on': 903608, 'cough on anyone': 208517, 'on anyone that': 599413, 'anyone that had': 80556, 'that had more': 844153, 'had more than': 373313, 'more than roll': 540667, 'than roll of': 841099, 'paper in their': 640333, 'in their trolly': 429787, 'their trolly give': 875042, 'trolly give them': 932533, 'give them reason': 350771, 'them reason to': 876210, 'reason to have': 703029, 'to have bought': 907212, 'have bought it': 379827, 'are heartbreaking': 87072, 'necessary and those': 553955, 'and those photo': 74036, 'those photo of': 892344, 'old people looking': 598416, 'shelf are heartbreaking': 756806, 'are heartbreaking stoppanicbuying': 87073, 'expect that': 290738, 'change our': 172215, 'we should expect': 973269, 'should expect that': 765978, 'expect that the': 290742, '19 crisis will': 6354, 'crisis will change': 218406, 'will change our': 992914, 'change our business': 172216, 'our business and': 622285, 'succumbing': 816296, 'sha stock': 754317, 'with plenty': 1000232, 'plenty plenty': 660994, 'plenty food': 660915, 'food before': 313720, 'into self': 442968, 'isolation more': 455348, 'more chance': 538793, 'chance you': 171835, 'hunger than': 411191, 'than succumbing': 841176, 'succumbing to': 816297, 'sha stock the': 754318, 'stock the house': 802934, 'the house with': 857652, 'house with plenty': 406692, 'with plenty plenty': 1000234, 'plenty plenty food': 660995, 'plenty food before': 660916, 'food before going': 313722, 'before going into': 122827, 'going into self': 355242, 'into self isolation': 442969, 'self isolation more': 747785, 'isolation more chance': 455349, 'more chance you': 538796, 'chance you die': 171838, 'you die of': 1018219, 'of hunger than': 584920, 'hunger than succumbing': 411194, 'than succumbing to': 841177, 'succumbing to covid': 816298, 'scalper': 739944, 'justeatuk': 470396, 'did round': 240786, 'round robin': 726350, 'robin review': 724736, 'of takeaway': 590576, 'takeaway not': 832882, 'not impressed': 570078, 'impressed with': 419454, 'isolating but': 455069, 'but worse': 147936, 'worse is': 1010957, 'price across': 672209, 'board for': 133631, 'for scalper': 325357, 'scalper shame': 739945, 'shame shame': 754641, 'you uk': 1021953, 'uk takeaway': 938790, 'takeaway justeatuk': 832880, 'justeatuk take': 470397, 'note meet': 572753, 'just did round': 468584, 'did round robin': 240787, 'round robin review': 726352, 'robin review of': 724737, 'review of takeaway': 720579, 'of takeaway not': 590577, 'takeaway not impressed': 832883, 'not impressed with': 570080, 'impressed with the': 419458, 'with the lack': 1001360, 'lack of deal': 478616, 'of deal available': 582406, 'deal available for': 229352, 'for those self': 327134, 'self isolating but': 747714, 'isolating but worse': 455072, 'but worse is': 147938, 'worse is the': 1010958, 'is the rise': 452923, 'rise in price': 722900, 'in price across': 426946, 'price across the': 672211, 'the board for': 849808, 'board for scalper': 133632, 'for scalper shame': 325358, 'scalper shame shame': 739946, 'shame shame on': 754642, 'on you uk': 605442, 'you uk takeaway': 1021954, 'uk takeaway justeatuk': 938791, 'takeaway justeatuk take': 832881, 'justeatuk take note': 470398, 'take note meet': 832374, 'note meet up': 572754, 'meet up coronacrisis': 527646, 'establishes': 282038, 'ha meant': 371262, 'meant drop': 524882, 'donation for': 254606, 'some foodbanks': 782881, 'foodbanks while': 317855, 'while some': 987294, 'also struggling': 48920, 'buy supply': 149261, 'supply from': 825286, 'store feeding': 807705, 'feeding america': 302450, 'america establishes': 51516, 'establishes covid': 282039, 'bank during': 109798, 'buying in reaction': 150539, 'reaction to coronavirus': 700214, 'to coronavirus ha': 903551, 'coronavirus ha meant': 206029, 'ha meant drop': 371263, 'meant drop in': 524883, 'in donation for': 422360, 'donation for some': 254608, 'for some foodbanks': 325742, 'some foodbanks while': 782882, 'foodbanks while some': 317856, 'while some are': 987295, 'some are also': 782311, 'are also struggling': 84479, 'also struggling to': 48921, 'struggling to buy': 814496, 'to buy supply': 902313, 'buy supply from': 149266, 'supply from grocery': 825290, 'grocery store feeding': 365391, 'store feeding america': 807706, 'feeding america establishes': 302454, 'america establishes covid': 51517, 'establishes covid 19': 282040, 'response fund to': 715707, 'fund to help': 341524, 'food bank during': 313560, 'bank during coronavirus': 109799, 'dod': 251257, 'navy': 553149, 'dod preparing': 251260, 'preparing navy': 670347, 'navy hospital': 553150, 'ship for': 758665, 'response 19': 715610, 'dod preparing navy': 251261, 'preparing navy hospital': 670348, 'navy hospital ship': 553151, 'hospital ship for': 404608, 'ship for coronavirus': 758666, 'for coronavirus response': 320390, 'coronavirus response 19': 206664, 'cnnpolitics': 184787, 'great of': 362853, 'the cnnpolitics': 851098, 'is the great': 452812, 'the great of': 856727, 'great of the': 362854, 'of the is': 591158, 'fight the cnnpolitics': 304886, 'try watching': 934686, 'tv for': 936112, '20 minute': 13169, 'minute without': 533902, 'without seeing': 1002903, 'seeing car': 746250, 'insurance commercial': 440691, 'commercial but': 188678, 'but somehow': 147112, 'somehow their': 784338, 'very similar': 955543, 'similar it': 769903, 'been month': 121535, 'most have': 542365, 'done little': 254924, 'no driving': 564060, 'driving cannot': 259908, 'they give': 882192, 'give at': 350392, 'least month': 484558, 'month premium': 537962, 'premium credit': 669944, 'credit 19': 216291, 'try watching tv': 934687, 'watching tv for': 968818, 'tv for 20': 936113, 'for 20 minute': 318728, '20 minute without': 13175, 'minute without seeing': 533904, 'without seeing car': 1002904, 'seeing car insurance': 746251, 'car insurance commercial': 163144, 'insurance commercial but': 440692, 'commercial but somehow': 188679, 'but somehow their': 147115, 'somehow their price': 784339, 'their price are': 874376, 'price are very': 672763, 'are very similar': 91478, 'very similar it': 955544, 'similar it ha': 769904, 'ha been month': 369855, 'been month since': 121536, 'month since most': 538004, 'since most have': 770750, 'most have done': 542366, 'have done little': 380331, 'done little to': 254925, 'to no driving': 910620, 'no driving cannot': 564061, 'driving cannot they': 259909, 'cannot they give': 162181, 'they give at': 882193, 'give at least': 350393, 'at least month': 99525, 'least month premium': 484561, 'month premium credit': 537963, 'premium credit 19': 669945, 'grouping': 366988, 'singapore amp': 771099, 'amp grouping': 53892, 'grouping say': 366989, 'say 80': 738374, 'it 500': 456210, '500 member': 20014, 'member may': 528129, 'may close': 521088, 'to latest': 909085, 'latest rule': 481542, 'rule that': 727368, 'only or': 610917, 'allowed effectively': 46151, 'effectively forcing': 269349, 'of eatery': 582940, 'eatery which': 266162, 'the switch': 869067, 'singapore amp grouping': 771100, 'amp grouping say': 53893, 'grouping say 80': 366990, 'say 80 of': 738376, '80 of it': 22605, 'of it 500': 585358, 'it 500 member': 456211, '500 member may': 20015, 'member may close': 528130, 'may close in': 521089, 'close in month': 182671, 'in month due': 425414, 'due to latest': 261843, 'to latest rule': 909086, 'latest rule that': 481543, 'rule that only': 727370, 'that only or': 845525, 'only or order': 610919, 'or order will': 616416, 'be allowed effectively': 113562, 'allowed effectively forcing': 46152, 'effectively forcing the': 269350, 'forcing the closure': 328739, 'closure of eatery': 183960, 'of eatery which': 582941, 'eatery which are': 266163, 'which are unable': 985700, 'unable to make': 939335, 'make the switch': 510588, 'cf97': 170285, 'cffc': 170310, 'bureau foreclosure': 142786, 'foreclosure and': 328911, 'and eviction': 62437, 'eviction help': 288326, 'of moratorium': 586638, 'moratorium detail': 538438, 'follow adding': 312335, 'adding cf97': 31664, 'cf97 to': 170286, 'to alert': 900220, 'alert cffc': 41374, 'cffc friend': 170311, 'and fan': 62686, 'fan help': 298517, 'well done by': 978177, 'done by the': 254807, 'by the consumer': 154295, 'protection bureau foreclosure': 685363, 'bureau foreclosure and': 142787, 'foreclosure and eviction': 328913, 'and eviction help': 62438, 'eviction help in': 288327, 'form of moratorium': 329540, 'of moratorium detail': 586639, 'moratorium detail to': 538439, 'detail to follow': 239261, 'to follow adding': 906043, 'follow adding cf97': 312336, 'adding cf97 to': 31665, 'cf97 to alert': 170287, 'to alert cffc': 900222, 'alert cffc friend': 41375, 'cffc friend and': 170312, 'friend and fan': 333500, 'and fan help': 62688, 'fan help is': 298518, 'help is here': 389935, 'is here at': 448416, 'read in': 700368, 'the paper': 863260, 'paper people': 640586, 'milk to': 531865, 'in tea': 428830, 'tea coffee': 835345, 'coffee so': 185538, 'now baby': 574169, 'baby are': 106567, 'hungry this': 411320, 'disgusting people': 245438, 'going stupid': 355475, 'stupid stockpilinguk': 815468, 'stockpilinguk and': 804135, 'that increase': 844492, 'of should': 589690, 'read in the': 700371, 'in the paper': 429436, 'the paper people': 863264, 'paper people are': 640587, 'buying baby milk': 149982, 'baby milk to': 106669, 'milk to put': 531870, 'to put in': 912592, 'put in tea': 690621, 'in tea coffee': 428831, 'tea coffee so': 835347, 'coffee so now': 185539, 'so now baby': 777904, 'now baby are': 574170, 'baby are going': 106568, 'to go hungry': 906810, 'go hungry this': 353696, 'hungry this is': 411321, 'this is disgusting': 888236, 'is disgusting people': 447225, 'disgusting people are': 245439, 'are going stupid': 86900, 'going stupid stockpilinguk': 355476, 'stupid stockpilinguk and': 815469, 'stockpilinguk and people': 804136, 'and people that': 68886, 'people that increase': 649769, 'that increase price': 844494, 'increase price because': 432997, 'because of should': 119403, 'of should be': 589691, 'should be arrested': 765557, 'yep': 1015332, 'mulder': 545623, 'krychek': 477810, 'gunman': 368787, 'scully': 742964, 'clearance': 181392, 'skinner': 773107, 'file covid': 305342, '19 yep': 12245, 'yep it': 1015335, 'it alien': 456330, 'alien mulder': 41742, 'mulder is': 545624, 'in wuhan': 431001, 'wuhan somehow': 1013516, 'somehow with': 784349, 'with patient': 1000110, 'patient zero': 644326, 'zero alex': 1027402, 'alex krychek': 41581, 'krychek the': 477811, 'the lone': 859669, 'lone gunman': 501281, 'gunman have': 368788, 'get scully': 347960, 'scully clearance': 742965, 'clearance to': 181399, 'go save': 354084, 'save him': 737514, 'him cancer': 396566, 'cancer man': 161263, 'man release': 512201, 'release the': 708998, 'vaccine right': 951761, 'gonna kiss': 356570, 'kiss random': 475459, 'random scene': 696617, 'of skinner': 589762, 'skinner trying': 773108, 'open grocery': 612281, 'file covid 19': 305343, 'covid 19 yep': 214104, '19 yep it': 12246, 'yep it alien': 1015336, 'it alien mulder': 456331, 'alien mulder is': 41743, 'mulder is in': 545625, 'is in wuhan': 448830, 'in wuhan somehow': 431005, 'wuhan somehow with': 1013517, 'somehow with patient': 784350, 'with patient zero': 1000113, 'patient zero alex': 644327, 'zero alex krychek': 1027403, 'alex krychek the': 41582, 'krychek the lone': 477812, 'the lone gunman': 859671, 'lone gunman have': 501282, 'gunman have to': 368789, 'to get scully': 906584, 'get scully clearance': 347961, 'scully clearance to': 742966, 'clearance to go': 181400, 'to go save': 906849, 'go save him': 354085, 'save him cancer': 737515, 'him cancer man': 396567, 'cancer man release': 161264, 'man release the': 512202, 'release the vaccine': 708999, 'the vaccine right': 870625, 'vaccine right they': 951762, 'right they re': 722304, 'they re gonna': 883046, 're gonna kiss': 698762, 'gonna kiss random': 356571, 'kiss random scene': 475460, 'random scene of': 696618, 'scene of skinner': 741349, 'of skinner trying': 589763, 'skinner trying to': 773109, 'trying to find': 934807, 'find an open': 306776, 'an open grocery': 56655, 'open grocery store': 612282, 'workshop': 1009221, 'shopping basket': 762158, 'basket find': 112334, 'get confident': 346797, 'confident about': 193996, 'online workshop': 609762, 'workshop click': 1009222, 'at 30': 97585, 'you need some': 1020037, 'need some of': 555596, 'some of this': 783413, 'of this in': 591991, 'this in your': 888062, 'in your shopping': 431121, 'your shopping basket': 1025775, 'shopping basket find': 762161, 'basket find out': 112335, 'find out this': 307153, 'out this evening': 627564, 'evening at my': 284855, 'at my get': 99812, 'my get confident': 548490, 'get confident about': 346798, 'confident about online': 193997, 'about online workshop': 25852, 'online workshop click': 609763, 'workshop click on': 1009223, 'click on the': 181935, 'on the link': 604213, 'link below to': 493806, 'below to join': 126755, 'join me at': 466771, 'me at 30': 522463, 'world gone': 1009592, 'mad stayhomesavelives': 507570, 'wipe supermarket': 996379, 'the world gone': 871880, 'world gone mad': 1009593, 'gone mad stayhomesavelives': 356332, 'mad stayhomesavelives coronavirus': 507571, 'and wipe supermarket': 75741, 'wipe supermarket food': 996380, 'kikkerland': 474296, 'handsanitizer randomly': 376622, 'randomly found': 696645, 'on kikkerland': 601768, 'if anyone need': 413849, 'anyone need handsanitizer': 80421, 'need handsanitizer randomly': 554952, 'handsanitizer randomly found': 376623, 'randomly found it': 696646, 'it on kikkerland': 460047, 'jeeturaj': 464987, 'mumbaikiawaz': 546039, '22k': 15328, 'maharash': 508473, 'hi jeeturaj': 394674, 'jeeturaj please': 464988, 'be mumbaikiawaz': 116034, 'mumbaikiawaz tell': 546040, 'people where': 650245, 'test done': 838974, 'mumbai at': 545993, 'price currently': 673369, 'currently test': 221692, 'test rate': 839144, 'rate touching': 697400, 'touching sky': 926714, 'sky 22k': 773181, '22k which': 15329, 'than salary': 841108, 'salary of': 731987, 'mumbai maharash': 546013, 'hi jeeturaj please': 394675, 'jeeturaj please be': 464989, 'please be mumbaikiawaz': 659707, 'be mumbaikiawaz tell': 116035, 'mumbaikiawaz tell people': 546041, 'tell people where': 837051, 'people where can': 650246, 'where can we': 984770, 'we get test': 971627, 'get test done': 348180, 'test done in': 838975, 'done in mumbai': 254892, 'in mumbai at': 425512, 'mumbai at affordable': 545994, 'affordable price currently': 34874, 'price currently test': 673370, 'currently test rate': 221693, 'test rate touching': 839145, 'rate touching sky': 697401, 'touching sky 22k': 926715, 'sky 22k which': 773182, '22k which is': 15330, 'which is more': 986028, 'more than salary': 540670, 'than salary of': 841109, 'salary of many': 731988, 'of many people': 586184, 'people in mumbai': 648398, 'in mumbai maharash': 425516, 'thing price': 884695, 'price why': 677537, 'have self': 382455, 'checkout the': 175026, 'likely cause': 491962, 'cause innovation': 167615, 'innovation in': 438877, 'in solving': 428075, 'solving the': 782210, 'last mile': 480313, 'mile dilemma': 531380, 'dilemma faster': 242854, 'than we': 841425, 'going before': 355061, 'before your': 123341, 'your proposed': 1025462, 'proposed solution': 684543, 'solution will': 782136, 'will price': 994448, 'price out': 675807, 'those you': 892757, 'you claim': 1017958, 'for value': 327515, 'value will': 952246, 'funny thing price': 341802, 'thing price why': 884696, 'price why do': 677540, 'why do we': 990944, 'do we have': 250475, 'we have self': 971933, 'have self checkout': 382456, 'self checkout the': 747584, 'checkout the covid': 175027, 'crisis will likely': 218416, 'will likely cause': 993993, 'likely cause innovation': 491963, 'cause innovation in': 167616, 'innovation in solving': 438881, 'in solving the': 428076, 'solving the last': 782211, 'the last mile': 859021, 'last mile dilemma': 480315, 'mile dilemma faster': 531381, 'dilemma faster than': 242855, 'faster than we': 300131, 'than we were': 841434, 'were going before': 979687, 'going before your': 355062, 'before your proposed': 123344, 'your proposed solution': 1025463, 'proposed solution will': 684544, 'solution will price': 782138, 'will price out': 994449, 'price out those': 675809, 'out those you': 627601, 'those you claim': 892759, 'you claim to': 1017959, 'claim to fight': 179848, 'to fight for': 905788, 'fight for value': 304751, 'for value will': 327516, 'value will be': 952247, 'nothelpful': 572909, 'bellcanada': 126500, 'internet fee': 441937, 'fee increase': 302186, 'increase not': 432924, 'not what': 572481, 'need especially': 554739, 'especially not': 280551, 'not right': 571382, 'now your': 576522, 'reduced not': 706119, 'not increased': 570127, 'increased wfh': 433534, 'wfh nothelpful': 980847, 'nothelpful bekind': 572910, 'bekind bellcanada': 126091, 'with the internet': 1001351, 'the internet fee': 858383, 'internet fee increase': 441938, 'fee increase not': 302187, 'increase not what': 432926, 'not what people': 572486, 'what people need': 982016, 'people need especially': 648819, 'need especially not': 554740, 'especially not right': 280553, 'not right now': 571385, 'right now your': 722193, 'now your price': 576525, 'your price should': 1025414, 'should be reduced': 765708, 'be reduced not': 116739, 'reduced not increased': 706120, 'not increased wfh': 570131, 'increased wfh nothelpful': 433535, 'wfh nothelpful bekind': 980848, 'nothelpful bekind bellcanada': 572911, 'shpock': 767656, 'beautiful thing': 118726, 'with shpock': 1000712, 'shpock app': 767657, 'get this beautiful': 348402, 'this beautiful thing': 886514, 'beautiful thing with': 118727, 'thing with shpock': 885002, 'with shpock app': 1000713, 're wondering': 699815, 'wondering why': 1004207, 'why toiletpaper': 991486, 'shortage all': 764802, 'in msnbc': 425494, 'case you re': 166129, 'you re wondering': 1020796, 're wondering why': 699819, 'wondering why toiletpaper': 1004211, 'why toiletpaper is': 991487, 'toiletpaper is so': 922141, 'is so hard': 452013, 'to find the': 905944, 'find the truth': 307307, 'paper shortage all': 640763, 'shortage all in': 764803, 'all in msnbc': 43200, 'fewest': 304250, 'four different': 330599, 'most stock': 542769, 'the fewest': 855129, 'fewest customer': 304251, 'best hygiene': 127720, 'hygiene by': 412059, 'by employee': 152472, 'employee ve': 274372, 'learned from': 484109, 'from being': 334671, 'week that': 976974, 'that variety': 847225, 'variety is': 952558, 'market had': 516493, 'had that': 373599, 'that covered': 843381, 'covered coronacrisis': 212410, 'coronacrisis socialdistancing': 204763, 'socialdistancing food': 780368, 'of the four': 591040, 'the four different': 855736, 'four different store': 330600, 'different store ve': 242077, 've been to': 952946, 'been to today': 122232, 'to today the': 917615, 'today the asian': 920279, 'the asian market': 848963, 'asian market store': 95307, 'market store had': 517128, 'store had the': 808045, 'had the most': 373620, 'the most stock': 861040, 'most stock the': 542772, 'stock the fewest': 802929, 'the fewest customer': 855130, 'fewest customer and': 304252, 'and the best': 73257, 'the best hygiene': 849517, 'best hygiene by': 127721, 'hygiene by employee': 412060, 'by employee ve': 152475, 'employee ve learned': 274373, 've learned from': 953327, 'learned from being': 484111, 'from being home': 334678, 'being home for': 125265, 'home for week': 401248, 'for week that': 327751, 'week that variety': 976982, 'that variety is': 847226, 'variety is key': 952559, 'is key the': 449189, 'key the market': 473417, 'the market had': 860116, 'market had that': 516494, 'had that covered': 373600, 'that covered coronacrisis': 843382, 'covered coronacrisis socialdistancing': 212411, 'coronacrisis socialdistancing food': 204764, 'seattle': 743547, 'seattle to': 743575, 'provide 800': 686206, '800 in': 22704, 'voucher to': 960673, 'crisis mayor': 217712, 'mayor say': 521984, 'than 00': 840131, 'them buy': 875505, 'other household': 620369, 'household good': 406816, 'seattle to provide': 743577, 'to provide 800': 912374, 'provide 800 in': 686207, '800 in supermarket': 22707, 'in supermarket voucher': 428706, 'supermarket voucher to': 823677, 'voucher to thousand': 960680, 'thousand of family': 893438, 'of family during': 583403, 'family during coronavirus': 297755, 'coronavirus crisis mayor': 205759, 'crisis mayor say': 217713, 'mayor say to': 521985, 'say to more': 739392, 'more than 00': 540541, 'than 00 family': 840136, '00 family to': 203, 'family to help': 298328, 'help them buy': 390699, 'them buy food': 875507, 'buy food cleaning': 148637, 'and other household': 68342, 'other household good': 620370, 'interacting': 441219, 'treated fairly': 930950, 'fairly during': 296433, 'are interacting': 87552, 'interacting with': 441224, 'public hour': 688096, 'hour day': 405520, 'being exposed': 125120, 'exposed during': 292844, 'during those': 263341, 'those hour': 892071, 'hour 19': 405345, 'worker being treated': 1006527, 'being treated fairly': 125982, 'treated fairly during': 930951, 'fairly during the': 296434, 'coronavirus crisis because': 205740, 'crisis because they': 217122, 'they are interacting': 881313, 'are interacting with': 87553, 'interacting with the': 441227, 'the public hour': 864820, 'public hour day': 688097, 'hour day and': 405523, 'day and being': 227255, 'and being exposed': 58860, 'being exposed during': 125122, 'exposed during those': 292846, 'during those hour': 263342, 'those hour 19': 892072, 'ueno': 937916, 'asakusa': 94849, 'shinjuku': 758632, 'will show': 994850, 'show you': 767289, 'covid19 in': 214320, 'japan ueno': 464772, 'ueno asakusa': 937917, 'asakusa and': 94850, 'and shinjuku': 71467, 'shinjuku in': 758634, 'tokyo the': 923504, 'also quite': 48739, 'quite different': 694843, 'different japan': 241976, 'japan tokyo': 464769, 'tokyo ueno': 923508, 'asakusa shinjuku': 94852, 'shinjuku coronalockdown': 758633, 'will show you': 994851, 'show you the': 767296, 'you the current': 1021593, 'situation of covid19': 772411, 'of covid19 in': 582102, 'covid19 in japan': 214321, 'in japan ueno': 424377, 'japan ueno asakusa': 464773, 'ueno asakusa and': 937918, 'asakusa and shinjuku': 94851, 'and shinjuku in': 71468, 'shinjuku in tokyo': 758635, 'in tokyo the': 430184, 'tokyo the state': 923505, 'state of the': 795822, 'supermarket wa also': 823689, 'wa also quite': 961507, 'also quite different': 48741, 'quite different japan': 694844, 'different japan tokyo': 241977, 'japan tokyo ueno': 464770, 'tokyo ueno asakusa': 923509, 'ueno asakusa shinjuku': 937919, 'asakusa shinjuku coronalockdown': 94853, 'massive thanks': 520142, 'my delivery': 547977, 'you two': 1021947, 'two delivery': 936876, 'driver were': 259846, 'amazing excellent': 50686, 'excellent customer': 289076, 'service skill': 752834, 'skill not': 772965, 'why stopped': 991377, 'stopped having': 805712, 'having you': 384410, 'you delivery': 1018170, 'delivery my': 234196, 'you deliver': 1018167, 'deliver every': 233116, 'week once': 976681, 'once can': 605602, 'can once': 159109, 'once is': 605663, 'massive thanks to': 520143, 'to for my': 906147, 'for my delivery': 323698, 'my delivery of': 547979, 'delivery of my': 234229, 'my online food': 549578, 'online food shopping': 608216, 'food shopping you': 316548, 'shopping you two': 764491, 'you two delivery': 1021948, 'two delivery driver': 936877, 'delivery driver were': 233955, 'driver were amazing': 259847, 'were amazing excellent': 979324, 'amazing excellent customer': 50687, 'excellent customer service': 289077, 'customer service skill': 222834, 'service skill not': 752835, 'skill not sure': 772966, 'sure why stopped': 827839, 'why stopped having': 991378, 'stopped having you': 805713, 'having you delivery': 384412, 'you delivery my': 1018171, 'delivery my shopping': 234197, 'my shopping will': 550063, 'will be having': 992490, 'be having you': 115160, 'having you deliver': 384411, 'you deliver every': 1018168, 'deliver every week': 233117, 'every week once': 286365, 'week once can': 976682, 'once can once': 605603, 'can once is': 159110, 'once is over': 605664, 'innocence': 438818, 'is practicing': 450975, 'practicing safe': 668735, 'safe distancing': 729594, 'our fellow': 623055, 'fellow human': 303293, 'human from': 410498, 'difference when': 241882, 'online simply': 609366, 'simply shop': 770284, 'and amazonsmile': 58056, 'amazonsmile donates': 51263, 'order total': 618729, 'total to': 926259, 'to innocence': 908395, 'innocence project': 438819, 'project of': 683519, 'of texas': 590693, 'texas thank': 839838, 'everyone is practicing': 287102, 'is practicing safe': 450977, 'practicing safe distancing': 668736, 'safe distancing to': 729595, 'distancing to protect': 247568, 'protect our fellow': 684894, 'our fellow human': 623058, 'fellow human from': 303296, 'human from covid': 410499, 'make difference when': 509838, 'difference when shopping': 241883, 'shopping online simply': 763482, 'online simply shop': 609367, 'simply shop at': 770285, 'shop at and': 759940, 'at and amazonsmile': 97999, 'and amazonsmile donates': 58057, 'amazonsmile donates of': 51264, 'donates of your': 254402, 'of your order': 593505, 'your order total': 1025108, 'order total to': 618730, 'total to innocence': 926262, 'to innocence project': 908396, 'innocence project of': 438820, 'project of texas': 683521, 'of texas thank': 590695, 'texas thank you': 839839, 'everyone do': 286814, 'have hand': 380887, 'sanitizer literally': 735298, 'literally everyone': 494986, 'paper me': 640458, 'me essentialworker': 522702, 'everyone do you': 286817, 'you have hand': 1019054, 'have hand sanitizer': 380889, 'hand sanitizer literally': 375473, 'sanitizer literally everyone': 735299, 'literally everyone do': 494987, 'you have toilet': 1019132, 'toilet paper me': 921355, 'paper me essentialworker': 640459, 'great for': 362676, 'unemployed american': 941101, 'see increase': 745299, 'not so great': 571619, 'so great for': 777205, 'great for million': 362682, 'for million unemployed': 323440, 'million unemployed american': 532404, 'unemployed american who': 941103, 'american who will': 52307, 'who will see': 989996, 'will see increase': 994778, 'see increase in': 745300, 'increase in gas': 432836, 'hydrogen': 411967, 'peroxide': 652203, 'hacking': 372778, 'wisdomwednesday': 996665, 'new can': 558445, 'some surface': 784021, 'day dried': 227540, 'dried all': 258744, 'the fruit': 855908, 'vegetable store': 954099, 'bought packet': 136676, 'packet containing': 633690, 'containing hydrogen': 200587, 'hydrogen peroxide': 411968, 'peroxide because': 652204, 'because saw': 119525, 'saw people': 738205, 'people coughing': 647550, 'and hacking': 64092, 'hacking at': 372779, 'store wisdomwednesday': 811357, 'the new can': 861479, 'new can survive': 558446, 'survive on some': 829214, 'on some surface': 603573, 'some surface for': 784022, 'surface for day': 828025, 'for day dried': 320568, 'day dried all': 227541, 'dried all the': 258745, 'all the fruit': 44756, 'the fruit and': 855909, 'and vegetable store': 74895, 'vegetable store bought': 954100, 'store bought packet': 806758, 'bought packet containing': 136677, 'packet containing hydrogen': 633691, 'containing hydrogen peroxide': 200588, 'hydrogen peroxide because': 411969, 'peroxide because saw': 652205, 'because saw people': 119526, 'saw people coughing': 738208, 'people coughing and': 647551, 'coughing and hacking': 208660, 'and hacking at': 64093, 'hacking at the': 372780, 'grocery store wisdomwednesday': 365959, 'my lockdown': 549156, 'lockdown been': 499192, 'walk each': 964772, 'day whilst': 228753, 'whilst avoiding': 987611, 'people one': 648981, 'up prescription': 945797, 'prescription my': 670522, 'personal wine': 652996, 'wine lake': 995830, 'lake is': 479062, 'taking one': 833480, 'one hell': 606415, 'hell of': 389041, 'of hammering': 584419, 'on day of': 600223, 'day of my': 228084, 'of my lockdown': 586788, 'my lockdown been': 549157, 'lockdown been out': 499193, 'been out for': 121619, 'out for walk': 626169, 'for walk each': 327615, 'walk each day': 964773, 'each day whilst': 264054, 'day whilst avoiding': 228754, 'whilst avoiding people': 987612, 'avoiding people one': 105480, 'people one trip': 648984, 'supermarket and one': 819029, 'and one to': 68095, 'one to pick': 607281, 'pick up prescription': 655750, 'up prescription my': 945798, 'prescription my personal': 670523, 'my personal wine': 549744, 'personal wine lake': 652997, 'wine lake is': 995831, 'lake is taking': 479064, 'is taking one': 452556, 'taking one hell': 833481, 'one hell of': 606416, 'hell of hammering': 389043, 'watched': 968647, 'perpetrator': 652218, 'ethnicity': 283125, 'embarrassed': 272436, 'actually watched': 31012, 'watched the': 968670, 'and sheer': 71440, 'sheer selfishness': 756584, 'selfishness due': 748346, 'same perpetrator': 733222, 'perpetrator certain': 652219, 'certain ethnicity': 170000, 'ethnicity need': 283128, 'be told': 117746, 'sort themselves': 786153, 'themselves out': 876866, 'others embarrassed': 621378, 'embarrassed by': 272437, 'have people actually': 381906, 'people actually watched': 646771, 'actually watched the': 31013, 'watched the video': 968673, 'the video of': 870750, 'video of supermarket': 956834, 'of supermarket panic': 590438, 'supermarket panic and': 821899, 'panic and sheer': 637334, 'and sheer selfishness': 71441, 'sheer selfishness due': 756585, 'selfishness due to': 748347, 'of them the': 591766, 'them the same': 876394, 'the same perpetrator': 866277, 'same perpetrator certain': 733223, 'perpetrator certain ethnicity': 652220, 'certain ethnicity need': 170001, 'ethnicity need to': 283129, 'to be told': 901596, 'be told to': 117751, 'told to sort': 923765, 'to sort themselves': 914927, 'sort themselves out': 786154, 'themselves out and': 876867, 'out and think': 625702, 'of others embarrassed': 587390, 'others embarrassed by': 621379, 'embarrassed by our': 272438, 'by our country': 153479, 'donate some': 254226, 'some scammer': 783805, 'scammer use': 740639, 'use name': 949385, 'name that': 551684, 'that sound': 846416, 'sound lot': 786309, 'lot like': 504082, 'real charity': 701064, 'charity research': 173674, 'research money': 713788, 'money lost': 536876, 'to bogus': 901876, 'bogus charity': 134014, 'charity mean': 173652, 'mean le': 524519, 'le donation': 482935, 'way to donate': 970017, 'to donate some': 904653, 'donate some scammer': 254230, 'some scammer use': 783808, 'scammer use name': 740643, 'use name that': 949386, 'name that sound': 551685, 'that sound lot': 846419, 'sound lot like': 786310, 'lot like the': 504087, 'like the name': 491383, 'name of real': 551663, 'of real charity': 588785, 'real charity research': 701065, 'charity research money': 173675, 'research money lost': 713789, 'money lost to': 536878, 'lost to bogus': 503940, 'to bogus charity': 901877, 'bogus charity mean': 134015, 'charity mean le': 173653, 'mean le donation': 524521, 'le donation to': 482936, 'donation to help': 254709, 'secretly': 743978, 'raw video': 698004, 'video warning': 956951, 'warning mexico': 967151, 'mexico random': 530018, 'random person': 696610, 'person stop': 652620, 'stop inside': 804772, 'to secretly': 913961, 'secretly drink': 743981, 'drink restaurant': 258876, 'restaurant entire': 716447, 'entire bottle': 278650, 'lockdown follow': 499382, 'follow for': 312381, 'more raw': 540185, 'raw news': 697986, 'news video': 560941, 'raw video warning': 698005, 'video warning mexico': 956952, 'warning mexico random': 967152, 'mexico random person': 530019, 'random person stop': 696612, 'person stop inside': 652622, 'stop inside restaurant': 804774, 'inside restaurant to': 439371, 'restaurant to secretly': 716763, 'to secretly drink': 913962, 'secretly drink restaurant': 743982, 'drink restaurant entire': 258877, 'restaurant entire bottle': 716448, 'entire bottle of': 278651, 'sanitizer during coronavirus': 734798, 'during coronavirus lockdown': 262538, 'coronavirus lockdown follow': 206243, 'lockdown follow for': 499383, 'follow for more': 312384, 'for more raw': 323592, 'more raw news': 540186, 'raw news video': 697987, 'fine the': 307696, 'station for': 796408, 'for dropping': 320867, 'dropping their': 260739, 'price when': 677478, 'out unless': 627743, 'it shopping': 461026, 'one tank': 607165, 'tank last': 834216, 'month or': 537931, 'or essential': 615179, 'charged anyway': 173372, 'anyway can': 80991, 'can guarantee': 158538, 'guarantee the': 367721, 'fine the petrol': 307698, 'the petrol station': 863624, 'petrol station for': 653794, 'station for dropping': 796409, 'for dropping their': 320868, 'dropping their price': 260740, 'their price when': 874438, 'price when we': 677496, 'when we cannot': 984431, 'cannot go out': 161930, 'go out unless': 353997, 'out unless it': 627744, 'unless it shopping': 942624, 'it shopping and': 461027, 'shopping and one': 762006, 'and one tank': 68094, 'one tank last': 607166, 'tank last month': 834217, 'last month or': 480336, 'month or essential': 537932, 'or essential worker': 615185, 'essential worker should': 281851, 'should not have': 766248, 'to be charged': 901162, 'be charged anyway': 114064, 'charged anyway can': 173373, 'anyway can guarantee': 80992, 'can guarantee the': 158540, 'guarantee the price': 367724, 'go up when': 354448, 'up when it': 946577, 'ccsa': 168501, '650': 21387, 'enraged': 277817, 'dipa': 243214, 'commission sa': 188892, 'sa ccsa': 728880, 'ccsa ha': 168502, 'than 650': 840286, '650 complaint': 21392, 'complaint in': 191984, 'about three': 26687, 'from enraged': 335286, 'enraged consumer': 277818, 'the hiking': 857371, 'hiking of': 396383, 'outbreak in': 628334, 'country dipa': 210579, 'competition commission sa': 191689, 'commission sa ccsa': 188893, 'sa ccsa ha': 728881, 'ccsa ha received': 168503, 'more than 650': 540575, 'than 650 complaint': 840287, '650 complaint in': 21393, 'complaint in about': 191985, 'in about three': 419983, 'about three week': 26690, 'week from enraged': 976255, 'from enraged consumer': 335287, 'enraged consumer over': 277819, 'consumer over the': 198313, 'over the hiking': 630732, 'the hiking of': 857372, 'hiking of price': 396386, 'of essential good': 583170, 'essential good amid': 281082, 'coronavirus outbreak in': 206393, 'outbreak in the': 628351, 'the country dipa': 852063, 'aguete': 39077, 'service aguete': 752047, 'aguete look': 39080, 'how different': 407693, 'different sector': 242049, 'will fare': 993410, 'impact on digital': 417842, 'consumer service aguete': 198938, 'service aguete look': 752048, 'aguete look at': 39081, 'at how different': 99213, 'how different sector': 407696, 'different sector will': 242051, 'sector will fare': 744404, 'murray': 546217, 'kessler': 473164, 'cramer': 214834, 'perrigo': 652233, 'ceo murray': 169760, 'murray kessler': 546220, 'kessler joined': 473167, 'joined jim': 466940, 'jim cramer': 465496, 'cramer on': 214837, 'on cnbc': 599955, 'cnbc mad': 184720, 'mad money': 507555, 'about perrigo': 25945, 'perrigo role': 652234, 'role global': 725075, 'consumer self': 198893, 'care company': 163887, 'company especially': 190628, 'full interview': 340648, 'and ceo murray': 59689, 'ceo murray kessler': 169761, 'murray kessler joined': 546221, 'kessler joined jim': 473168, 'joined jim cramer': 466941, 'jim cramer on': 465497, 'cramer on cnbc': 214838, 'on cnbc mad': 599956, 'cnbc mad money': 184721, 'mad money to': 507556, 'money to talk': 537124, 'talk about perrigo': 833752, 'about perrigo role': 25946, 'perrigo role global': 652235, 'role global consumer': 725076, 'global consumer self': 351808, 'consumer self care': 198894, 'self care company': 747557, 'care company especially': 163888, 'company especially during': 190630, '19 crisis watch': 6346, 'crisis watch the': 218335, 'the full interview': 856012, 'credittrends': 216596, 'consumer face': 197427, 'face new': 294635, 'and rapidly': 69939, 'rapidly changing': 696962, 'changing pressure': 172776, 'pressure in': 671173, 'global uncertainty': 352272, 'uncertainty join': 939712, 'join our': 466808, 'our insight': 623556, 'insight driven': 439523, 'driven discussion': 259306, 'discussion into': 245028, 'behaviour credittrends': 124397, 'and consumer face': 60377, 'consumer face new': 197430, 'face new and': 294636, 'new and rapidly': 558344, 'and rapidly changing': 69940, 'rapidly changing pressure': 696967, 'changing pressure in': 172777, 'pressure in this': 671176, 'of global uncertainty': 584159, 'global uncertainty join': 352273, 'uncertainty join our': 939713, 'join our insight': 466813, 'our insight driven': 623557, 'insight driven discussion': 439524, 'driven discussion into': 259307, 'discussion into the': 245029, 'into the uk': 443183, 'the uk consumer': 870202, 'uk consumer credit': 938263, 'credit market and': 216429, 'market and the': 515997, '19 could have': 6156, 'could have on': 209262, 'have on consumer': 381765, 'consumer behaviour credittrends': 196563, 'week analysis': 975896, 'on ecommerce': 600498, 'ecommerce we': 266891, 'we compared': 971152, 'compared the': 191417, 'our 2019': 621985, '2019 benchmark': 13943, 'benchmark for': 126843, 'sector here': 744218, 'we found': 971590, 'in this week': 430044, 'this week analysis': 891185, 'week analysis of': 975897, 'analysis of on': 57067, 'of on ecommerce': 587215, 'on ecommerce we': 600503, 'ecommerce we compared': 266892, 'we compared the': 971153, 'compared the number': 191418, 'the number to': 861963, 'number to our': 577074, 'to our 2019': 911146, 'our 2019 benchmark': 621986, '2019 benchmark for': 13944, 'benchmark for the': 126844, 'the grocery sector': 856821, 'grocery sector here': 364943, 'sector here is': 744219, 'here is what': 393259, 'what we found': 982552, 'no bloody': 563704, 'bloody wonder': 133245, 'wonder people': 1003988, 'with shite': 1000675, 'shite like': 759316, 'daily rag': 224761, 'rag actually': 695516, 'actually encouraging': 30791, 'encouraging stockpiling': 275736, 'stockpiling coronacrisis': 803929, 'coronacrisis stophoarding': 204786, 'stophoarding here': 805410, 'stockpile for': 803750, 'isolation due': 455252, 'it no bloody': 459823, 'no bloody wonder': 563706, 'bloody wonder people': 133246, 'wonder people are': 1003989, 'buying with shite': 151378, 'with shite like': 1000676, 'shite like this': 759317, 'like this in': 491498, 'this in the': 888057, 'in the daily': 429119, 'the daily rag': 852783, 'daily rag actually': 224762, 'rag actually encouraging': 695517, 'actually encouraging stockpiling': 30792, 'encouraging stockpiling coronacrisis': 275737, 'stockpiling coronacrisis stophoarding': 803930, 'coronacrisis stophoarding here': 204787, 'stophoarding here how': 805411, 'here how much': 393107, 'how much food': 408347, 'to stockpile for': 915471, 'stockpile for two': 803751, 'two week in': 937334, 'week in self': 976384, 'self isolation due': 747764, 'isolation due to': 455253, 'perish': 651952, 'selfdiscipline': 747939, 'nourishment': 573683, 'criterion': 218499, 'sucked': 816952, 'spread panic': 790745, 'state where': 796078, 'where temperature': 985204, 'temperature are': 837361, 'are over': 88902, 'over 28': 629813, '28 30': 16372, '30 covid': 17010, 'will perish': 994406, 'perish right': 651955, 'right hygiene': 721944, 'hygiene selfdiscipline': 412166, 'selfdiscipline workout': 747940, 'workout nourishment': 1009170, 'nourishment healthy': 573686, 'boost immune': 134963, 'will define': 993132, 'define criterion': 232269, 'criterion of': 218500, 'of vulnerability': 592866, 'vulnerability stop': 960825, 'stop getting': 804684, 'getting sucked': 349316, 'sucked in': 816953, 'in by': 421110, 'the obsession': 862013, 'obsession be': 578679, 'strong stay': 814121, 'not spread panic': 571682, 'spread panic in': 790746, 'panic in state': 638203, 'in state where': 428248, 'state where temperature': 796080, 'where temperature are': 985205, 'temperature are over': 837363, 'are over 28': 88903, 'over 28 30': 629814, '28 30 covid': 16373, '30 covid 19': 17011, '19 will perish': 12108, 'will perish right': 994407, 'perish right hygiene': 651956, 'right hygiene selfdiscipline': 721945, 'hygiene selfdiscipline workout': 412167, 'selfdiscipline workout nourishment': 747941, 'workout nourishment healthy': 1009171, 'nourishment healthy food': 573687, 'healthy food to': 387636, 'food to boost': 317236, 'to boost immune': 901920, 'boost immune system': 134964, 'immune system will': 417358, 'system will define': 831379, 'will define criterion': 993133, 'define criterion of': 232270, 'criterion of vulnerability': 218501, 'of vulnerability stop': 592868, 'vulnerability stop getting': 960826, 'stop getting sucked': 804686, 'getting sucked in': 349317, 'sucked in by': 816954, 'in by the': 421113, 'by the obsession': 154394, 'the obsession be': 862014, 'obsession be strong': 578680, 'be strong stay': 117404, 'strong stay safe': 814122, 'my fear': 548292, 'is my fear': 449792, 'severest': 754119, '1930s': 12344, 'economy hit': 267940, 'by severest': 153955, 'severest shock': 754120, 'shock since': 759510, 'since 1930s': 770419, '1930s recession': 12349, 'recession shutdown': 704358, 'shutdown transportation': 768118, 'transportation business': 929994, 'business system': 144457, 'system oil': 831266, 'oil business': 596655, 'business consumer': 143567, 'global economy hit': 351899, 'economy hit by': 267941, 'hit by severest': 398187, 'by severest shock': 153956, 'severest shock since': 754121, 'shock since 1930s': 759511, 'since 1930s recession': 770420, '1930s recession shutdown': 12350, 'recession shutdown transportation': 704359, 'shutdown transportation business': 768119, 'transportation business system': 929995, 'business system oil': 144458, 'system oil business': 831267, 'oil business consumer': 596656, 'business consumer spending': 143574, 'allow community': 45930, 'community account': 189691, 'account to': 28769, 'be created': 114280, 'created for': 215827, 'with current': 997884, 'current restriction': 221337, 'item it': 463394, 'online being': 607928, 'have community': 380046, 'account would': 28787, 'can you allow': 160274, 'you allow community': 1016926, 'allow community account': 45931, 'community account to': 189693, 'account to be': 28770, 'to be created': 901186, 'be created for': 114281, 'created for online': 215829, 'shopping with current': 764431, 'with current restriction': 997887, 'current restriction on': 221339, 'restriction on item': 717345, 'on item it': 601706, 'item it difficult': 463398, 'it difficult for': 457552, 'difficult for many': 242223, 'for many to': 323239, 'many to shop': 514824, 'shop online being': 760564, 'online being able': 607929, 'able to have': 24490, 'to have community': 907219, 'have community account': 380047, 'community account would': 189694, 'account would help': 28788, 'kristin': 477701, 'grand': 361858, 'launching': 482057, 'kristin tovar': 477702, 'tovar wa': 927096, 'hold grand': 399931, 'grand opening': 361869, 'her new': 392227, 'store called': 806845, 'called why': 156484, 'why love': 991173, 'love where': 504871, 'weekend but': 977327, 'changed those': 172582, 'those plan': 892350, 'plan so': 658222, 'is launching': 449240, 'launching virtual': 482079, 'virtual shopping': 957789, 'experience instead': 291401, 'kristin tovar wa': 477703, 'tovar wa supposed': 927097, 'supposed to hold': 827363, 'to hold grand': 907909, 'hold grand opening': 399932, 'grand opening for': 361870, 'opening for her': 612833, 'for her new': 322225, 'her new store': 392230, 'new store called': 559665, 'store called why': 806847, 'called why love': 156485, 'why love where': 991176, 'love where live': 504872, 'where live this': 984994, 'live this weekend': 496063, 'this weekend but': 891307, 'weekend but covid': 977328, '19 ha changed': 7332, 'ha changed those': 370139, 'changed those plan': 172583, 'those plan so': 892351, 'plan so she': 658224, 'so she is': 778193, 'she is launching': 756155, 'is launching virtual': 449244, 'launching virtual shopping': 482080, 'virtual shopping experience': 957790, 'shopping experience instead': 762614, 'independent on': 434124, 'million brit': 532096, 'brit go': 140339, 'hungry job': 411273, 'supermarket strain': 823018, 'strain hit': 812278, 'hit those': 398464, 'risk poll': 723829, 'poll suggests': 663859, 'the independent on': 858107, 'independent on million': 434125, 'on million brit': 602128, 'million brit go': 532097, 'brit go hungry': 140340, 'go hungry job': 353693, 'hungry job loss': 411274, 'loss and supermarket': 503639, 'and supermarket strain': 72739, 'supermarket strain hit': 823019, 'strain hit those': 812279, 'hit those at': 398465, 'at risk poll': 100389, 'risk poll suggests': 723830, '19 difficult': 6547, 'moment thank': 536054, 'for choosing': 320074, 'price mid': 675232, 'mid term': 530591, 'for slashing': 325652, 'slashing saving': 773681, 'saving interest': 737893, 'rate choose': 697179, 'choose with': 177921, 'your foot': 1023937, 'foot in': 318388, '19 difficult time': 6548, 'difficult time at': 242278, 'time at the': 896350, 'the moment thank': 860780, 'moment thank for': 536055, 'thank for choosing': 841567, 'for choosing to': 320076, 'choosing to hike': 177944, 'hike price mid': 396265, 'price mid term': 675233, 'mid term and': 530592, 'term and for': 838059, 'and for slashing': 63158, 'for slashing saving': 325653, 'slashing saving interest': 773682, 'saving interest rate': 737894, 'interest rate choose': 441389, 'rate choose with': 697180, 'choose with your': 177922, 'with your foot': 1002200, 'your foot in': 1023939, 'foot in the': 318392, 'just donate': 468637, 'money already': 536577, 'already and': 47185, 'the shirt': 866948, 'shirt to': 759011, 'some deserving': 782676, 'deserving fan': 238190, 'fan that': 298542, 'that didn': 843524, 'it maybe': 459559, 'maybe to': 521860, 'to nurse': 910754, 'doctor delivery': 250885, 'delivery supermarket': 234583, 'etc worker': 282905, 'just donate the': 468638, 'donate the money': 254236, 'the money already': 860805, 'money already and': 536578, 'already and give': 47186, 'and give the': 63667, 'give the shirt': 350752, 'the shirt to': 866949, 'shirt to some': 759013, 'to some deserving': 914872, 'some deserving fan': 782677, 'deserving fan that': 238191, 'fan that didn': 298543, 'that didn have': 843528, 'didn have to': 241103, 'have to bid': 383164, 'to bid for': 901807, 'bid for it': 129471, 'for it maybe': 322718, 'it maybe to': 459561, 'maybe to nurse': 521862, 'to nurse doctor': 910756, 'nurse doctor delivery': 577289, 'doctor delivery supermarket': 250888, 'delivery supermarket etc': 234585, 'supermarket etc worker': 820218, '25k': 16083, 'say essential': 738613, 'should get': 766015, 'get 25k': 346477, '25k in': 16086, 'in hazard': 423583, 'compensate them': 191538, 'health during': 386385, 'pandemic this': 636742, 'this includes': 888067, 'includes health': 431756, 'clerk pharmacist': 181749, 'pharmacist postal': 654171, 'worker among': 1006250, 'say essential worker': 738614, 'worker should get': 1007775, 'should get 25k': 766016, 'get 25k in': 346478, '25k in hazard': 16087, 'in hazard pay': 423584, 'pay to compensate': 645179, 'to compensate them': 903116, 'compensate them for': 191539, 'them for risking': 875724, 'their health during': 873515, 'health during the': 386387, 'the pandemic this': 863125, 'pandemic this includes': 636744, 'this includes health': 888072, 'includes health care': 431758, 'store clerk pharmacist': 807020, 'clerk pharmacist postal': 181751, 'pharmacist postal worker': 654172, 'postal worker among': 666462, 'worker among others': 1006252, 'vandal': 952384, 'vir': 957579, 'pretty extreme': 671404, 'extreme so': 293828, 'so wash': 778647, 'hand like': 375070, 'like vandal': 491714, 'vandal bleach': 952385, 'bleach every': 132498, 'surface wipe': 828094, 'wipe the': 996383, 'floor and': 310770, 'handle vir': 376288, 'vir baby': 957580, 'baby vir': 106722, 'baby quarentinelife': 106683, 'quarentinelife coronacrisis': 693187, 'it pretty extreme': 460440, 'pretty extreme so': 671405, 'extreme so wash': 293829, 'so wash your': 778648, 'your hand like': 1024200, 'hand like vandal': 375071, 'like vandal bleach': 491715, 'vandal bleach every': 952386, 'bleach every surface': 132499, 'every surface wipe': 286276, 'surface wipe the': 828095, 'wipe the floor': 996384, 'the floor and': 855417, 'floor and door': 310771, 'and door handle': 61680, 'door handle vir': 255610, 'handle vir baby': 376289, 'vir baby vir': 957582, 'baby vir baby': 106723, 'vir baby quarentinelife': 957581, 'baby quarentinelife coronacrisis': 106684, 'quarentinelife coronacrisis stophoarding': 693188, 'coronacrisis stophoarding stoppanicbuying': 204789, 'the ration': 865172, 'ration book': 697644, 'book to': 134614, 'buying now': 150774, 'now normal': 575367, 'normal working': 567420, 'who just': 989138, 'want do': 965764, 'do weekly': 250496, 'shop cant': 760019, 'there hand': 878458, 'on nothing': 602444, 'nothing stophoarding': 573166, 'stophoarding ww2': 805519, 'ww2 coronacrisis': 1013644, 'bring back the': 139933, 'back the ration': 107316, 'the ration book': 865174, 'ration book to': 697650, 'book to stop': 134619, 'to stop this': 915587, 'stop this panic': 805194, 'panic buying now': 637823, 'buying now normal': 150776, 'now normal working': 575368, 'normal working class': 567421, 'class people who': 180243, 'people who just': 650309, 'who just want': 989147, 'just want do': 470223, 'want do weekly': 965765, 'do weekly shop': 250497, 'weekly shop cant': 977545, 'shop cant get': 760020, 'cant get there': 162303, 'get there hand': 348382, 'there hand on': 878459, 'hand on nothing': 375138, 'on nothing stophoarding': 602446, 'nothing stophoarding ww2': 573167, 'stophoarding ww2 coronacrisis': 805520, 'newzealand is': 561238, 'week our': 976705, 'should freeze': 766013, 'freeze food': 332524, 'out free': 626179, 'all kiwi': 43323, 'kiwi doubt': 475844, 'newzealand is and': 561239, 'is and will': 445717, 'and will stay': 75695, 'will stay in': 994963, 'stay in lockdown': 797052, 'in lockdown for': 424840, 'lockdown for the': 499399, 'the next week': 861712, 'next week our': 561694, 'week our government': 976708, 'our government should': 623275, 'government should freeze': 360602, 'should freeze food': 766014, 'freeze food price': 332525, 'food price and': 315920, 'price and hand': 672429, 'and hand out': 64142, 'hand out free': 375161, 'out free face': 626182, 'glove for all': 352688, 'for all kiwi': 319144, 'all kiwi doubt': 43324, 'kiwi doubt that': 475845, 'doubt that just': 256216, 'that just staying': 844796, 'just staying at': 469893, 'home will stop': 402510, 'will stop the': 995003, 'stop the virus': 805159, 'eseva': 280353, '14713': 3590, '15days': 4013, 'brat': 138194, 'mob983682234': 534917, 'eseva am': 280354, 'of bharat': 580688, 'bharat gas': 129346, 'gas consumer': 343794, 'no 14713': 563556, '14713 of': 3591, 'bengal my': 127201, 'my cylinder': 547875, 'cylinder last': 224121, 'last delivered': 480191, 'delivered 15days': 233283, '15days ago': 4014, 'now brat': 574269, 'brat gas': 138197, 'gas sending': 344089, 'sending sm': 750089, 'sm of': 774753, 'with 15': 996948, 'day which': 228743, 'already over': 47549, 'over plz': 630512, 'plz help': 661820, 'next cylinder': 561320, 'cylinder booking': 224115, 'booking mob983682234': 134735, 'eseva am consumer': 280355, 'am consumer of': 49980, 'consumer of bharat': 198237, 'of bharat gas': 580689, 'bharat gas consumer': 129347, 'gas consumer no': 343795, 'consumer no 14713': 198218, 'no 14713 of': 563557, '14713 of west': 3592, 'of west bengal': 593031, 'west bengal my': 980467, 'bengal my cylinder': 127202, 'my cylinder last': 547876, 'cylinder last delivered': 224122, 'last delivered 15days': 480192, 'delivered 15days ago': 233284, '15days ago now': 4015, 'ago now brat': 38437, 'now brat gas': 574270, 'brat gas sending': 138198, 'gas sending sm': 344090, 'sending sm of': 750090, 'sm of covid': 774754, '19 with 15': 12122, 'with 15 day': 996950, '15 day which': 3697, 'day which is': 228744, 'which is already': 985980, 'is already over': 445528, 'already over plz': 47550, 'over plz help': 630513, 'plz help me': 661822, 'help me in': 390069, 'me in my': 522971, 'in my next': 425606, 'my next cylinder': 549485, 'next cylinder booking': 561321, 'cylinder booking mob983682234': 224116, 'empowering': 274661, 'likelihood': 491926, 'feral': 303537, 'peop': 646717, 'worry can': 1010685, 'be empowering': 114666, 'empowering panic': 274662, 'panic isn': 638231, 'isn yes': 454765, 'yes highly': 1015456, 'highly concerned': 396041, 'concerned especially': 193196, 'especially about': 280424, 'the likelihood': 859373, 'likelihood of': 491927, 'of feral': 583486, 'feral gang': 303538, 'gang individual': 343403, 'individual robbing': 435246, 'robbing home': 724688, 'food other': 315694, 'staple fear': 793927, 'fear it': 301179, 'being out': 125509, 'the control': 851694, 'police army': 662924, 'army hope': 93012, 'hope peop': 403595, 'worry can be': 1010686, 'can be empowering': 157617, 'be empowering panic': 114667, 'empowering panic isn': 274663, 'panic isn yes': 638232, 'isn yes highly': 454766, 'yes highly concerned': 1015457, 'highly concerned especially': 396042, 'concerned especially about': 193197, 'especially about the': 280425, 'about the likelihood': 26435, 'the likelihood of': 859374, 'likelihood of feral': 491930, 'of feral gang': 583487, 'feral gang individual': 303539, 'gang individual robbing': 343404, 'individual robbing home': 435247, 'robbing home for': 724689, 'home for food': 401231, 'for food other': 321610, 'food other staple': 315697, 'other staple fear': 620956, 'staple fear it': 793928, 'fear it being': 301180, 'it being out': 456828, 'being out of': 125511, 'of the control': 590891, 'the control of': 851695, 'of the police': 591344, 'the police army': 863915, 'police army hope': 662925, 'army hope peop': 93013, 'focussed': 312005, 'consumer focussed': 197508, 'focussed startup': 312010, 'startup in': 795111, 'come hear': 187336, 'hear it': 387943, 'from founder': 335549, 'founder live': 330544, 'practice for consumer': 668564, 'for consumer focussed': 320258, 'consumer focussed startup': 197509, 'focussed startup in': 312011, 'startup in the': 795113, 'in the month': 429369, 'the month to': 860856, 'month to come': 538077, 'to come hear': 903031, 'come hear it': 187337, 'hear it from': 387945, 'it from founder': 458153, 'from founder live': 335550, 'founder live at': 330545, 'live at our': 495735, 'at our next': 100024, 'farmasi': 299222, 'luxurious': 506903, 'love farmasi': 504655, 'farmasi product': 299223, 'product super': 681663, 'super affordable': 818464, 'price luxurious': 675137, 'luxurious quality': 506906, 'quality get': 691792, 'your essential': 1023684, 'for self': 325418, 'care delivered': 163907, 'door cannot': 255544, 'family personal': 298155, 'personal need': 652919, 'need order': 555385, 'why love farmasi': 991174, 'love farmasi product': 504656, 'farmasi product super': 299224, 'product super affordable': 681664, 'super affordable price': 818465, 'affordable price luxurious': 34886, 'price luxurious quality': 675138, 'luxurious quality get': 506907, 'quality get your': 691793, 'get your essential': 348700, 'your essential for': 1023688, 'essential for self': 281062, 'for self care': 325419, 'self care delivered': 747558, 'care delivered to': 163908, 'your door cannot': 1023570, 'door cannot stop': 255545, 'cannot stop you': 162140, 'stop you from': 805293, 'you from getting': 1018716, 'from getting your': 335638, 'getting your family': 349465, 'your family personal': 1023798, 'family personal need': 298156, 'personal need order': 652920, 'need order today': 555386, 'yamal': 1014121, 'while curve': 986732, 'curve contract': 221845, 'contract rebound': 201691, 'rebound on': 703323, 'on optimism': 602533, 'optimism over': 613913, 'massive stimulus': 520125, 'package spot': 633401, 'spot gas': 790058, 'europe remain': 283504, 'remain weak': 709916, 'weak to': 974046, 'to driven': 904751, 'driven cut': 259298, 'demand despite': 235228, 'despite cold': 238701, 'cold weather': 185808, 'weather and': 974843, 'and downward': 61704, 'downward adjustment': 257828, 'adjustment in': 32376, 'in russian': 427594, 'russian gas': 728644, 'gas flow': 343849, 'flow through': 311261, 'the yamal': 872137, 'yamal pipeline': 1014122, 'pipeline since': 656910, 'since last': 770690, 'while curve contract': 986733, 'curve contract rebound': 221846, 'contract rebound on': 201692, 'rebound on optimism': 703324, 'on optimism over': 602534, 'optimism over the': 613914, 'over the massive': 630739, 'the massive stimulus': 860274, 'massive stimulus package': 520126, 'stimulus package spot': 801590, 'package spot gas': 633402, 'spot gas price': 790059, 'price in europe': 674681, 'in europe remain': 422650, 'europe remain weak': 283505, 'remain weak to': 709917, 'weak to driven': 974047, 'to driven cut': 904752, 'driven cut in': 259299, 'cut in demand': 223373, 'in demand despite': 422118, 'demand despite cold': 235229, 'despite cold weather': 238702, 'cold weather and': 185809, 'weather and downward': 974844, 'and downward adjustment': 61705, 'downward adjustment in': 257829, 'adjustment in russian': 32377, 'in russian gas': 427595, 'russian gas flow': 728645, 'gas flow through': 343850, 'flow through the': 311262, 'through the yamal': 894780, 'the yamal pipeline': 872138, 'yamal pipeline since': 1014123, 'pipeline since last': 656911, 'since last week': 770695, 'astrocyte': 97251, 'disinfecting wipe': 245893, 'wipe disappearing': 996221, 'shelf knowing': 757269, 'what soap': 982202, 'soap amp': 778900, 'amp cleaner': 53529, 'cleaner work': 180869, 'work best': 1004936, 'best against': 127566, 'against is': 37515, 'for keeping': 322809, 'household hygienic': 406835, 'hygienic see': 412229, 'see which': 746060, 'which household': 985939, 'household scrub': 406934, 'scrub amp': 742887, 'supply best': 824851, 'best combat': 127635, 'combat astrocyte': 186985, 'sanitizer and disinfecting': 734400, 'and disinfecting wipe': 61464, 'disinfecting wipe disappearing': 245895, 'wipe disappearing from': 996222, 'from shelf knowing': 337242, 'shelf knowing what': 757270, 'knowing what soap': 477150, 'what soap amp': 982203, 'soap amp cleaner': 778901, 'amp cleaner work': 53530, 'cleaner work best': 180870, 'work best against': 1004937, 'best against is': 127567, 'against is important': 37517, 'is important for': 448727, 'important for keeping': 418802, 'for keeping your': 322821, 'keeping your household': 472635, 'your household hygienic': 1024431, 'household hygienic see': 406836, 'hygienic see which': 412230, 'see which household': 746061, 'which household scrub': 985940, 'household scrub amp': 406935, 'scrub amp supply': 742888, 'amp supply best': 54592, 'supply best combat': 824852, 'best combat astrocyte': 127636, 'seriously stop': 751731, 'take thing': 832703, 'thing away': 884182, 'poor the': 664303, 'those working': 892744, 'also drive': 48131, 'price coronacrisis': 673249, 'seriously stop panic': 751732, 'buying there are': 151195, 'plenty of supply': 660981, 'of supply at': 590471, 'supply at the': 824820, 'moment it only': 535976, 'only take thing': 611235, 'take thing away': 832704, 'thing away from': 884183, 'away from those': 105917, 'from those who': 338035, 'it the poor': 461566, 'the poor the': 863991, 'poor the elderly': 664304, 'elderly those working': 270916, 'those working hard': 892747, 'help it will': 389953, 'it will also': 462370, 'will also drive': 992256, 'also drive up': 48133, 'drive up food': 259242, 'up food price': 944893, 'food price coronacrisis': 315929, 'wb': 970230, 'smooth': 775923, 'amitav': 52869, 'roy': 726602, 'it complete': 457242, 'complete panic': 192131, 'panic havoc': 638164, 'havoc which': 384436, 'in increase': 424010, 'price request': 676191, 'to kindly': 908953, 'kindly advice': 475104, 'advice instruct': 33411, 'instruct wb': 440522, 'wb govt': 970231, 'govt the': 361298, 'the ensure': 854340, 'ensure support': 278046, 'support smooth': 826826, 'smooth movement': 775930, 'movement of': 543895, 'have control': 380103, 'control on': 202079, 'price regard': 676143, 'regard amitav': 707127, 'amitav roy': 52870, 'it complete panic': 457244, 'complete panic havoc': 192132, 'panic havoc which': 638166, 'havoc which resulted': 384437, 'resulted in increase': 717678, 'in increase of': 424012, 'increase of essential': 432938, 'essential food price': 281046, 'food price request': 315967, 'price request you': 676192, 'you to kindly': 1021795, 'to kindly advice': 908954, 'kindly advice instruct': 475105, 'advice instruct wb': 33412, 'instruct wb govt': 440523, 'wb govt the': 970233, 'govt the ensure': 361299, 'the ensure support': 854341, 'ensure support smooth': 278047, 'support smooth movement': 826827, 'smooth movement of': 775931, 'movement of essential': 543897, 'of essential service': 583187, 'essential service to': 281535, 'service to have': 752977, 'to have control': 907221, 'have control on': 380105, 'control on food': 202080, 'on food price': 600898, 'food price regard': 315965, 'price regard amitav': 676144, 'regard amitav roy': 707128, 'wife work': 992010, 'interact with': 441201, 'asthma so': 97205, 'an increased': 56240, 'increased risk': 433456, 'of serious': 589518, 'serious complication': 751349, 'complication should': 192497, 'should contract': 765878, 'contract wa': 201716, 'wa laid': 962500, 'off month': 593975, 'insurance am': 440666, 'am terrified': 50477, 'wife work at': 992011, 'store so she': 810235, 'so she ha': 778192, 'she ha to': 756083, 'ha to continue': 372294, 'continue to interact': 201213, 'to interact with': 908450, 'interact with the': 441212, 'public have asthma': 688052, 'have asthma so': 379373, 'asthma so at': 97207, 'so at an': 776563, 'at an increased': 97988, 'an increased risk': 56246, 'increased risk of': 433458, 'risk of serious': 723774, 'of serious complication': 589519, 'serious complication should': 751351, 'complication should contract': 192498, 'should contract wa': 765879, 'contract wa laid': 201717, 'wa laid off': 962501, 'laid off month': 479024, 'off month ago': 593976, 'month ago and': 537531, 'ago and do': 38335, 'not have health': 569840, 'have health insurance': 380908, 'health insurance am': 386540, 'insurance am terrified': 440667, 'guideline we': 368496, 'our responsibility': 624624, 'responsibility to': 715985, 'keep ourselves': 471763, 'ourselves and': 625457, 'around safe': 93467, 'safe continue': 729562, 'continue shopping': 201127, 'on friend': 601020, 'stay thoughtful': 797355, '19 guideline we': 7318, 'guideline we believe': 368498, 'we believe that': 970849, 'believe that it': 126341, 'it is our': 459032, 'is our responsibility': 450639, 'our responsibility to': 624625, 'responsibility to keep': 715988, 'to keep ourselves': 908822, 'keep ourselves and': 471764, 'ourselves and the': 625460, 'and the people': 73512, 'the people around': 863455, 'people around safe': 647142, 'around safe continue': 93468, 'safe continue shopping': 729563, 'continue shopping online': 201130, 'shopping online and': 763408, 'online and practice': 607845, 'distancing when you': 247637, 'can check in': 157897, 'check in on': 174472, 'in on friend': 426119, 'on friend and': 601021, 'family and remember': 297600, 'and remember to': 70223, 'to stay thoughtful': 915325, 'isn call': 454451, 'buy but': 148454, 'for lot': 323116, 'up increased': 945194, 'demand coupled': 235180, 'covid causing': 214137, 'causing supply': 168107, 'shortage shipping': 765209, 'shipping issue': 758863, 'know we re': 476931, 'food in place': 314961, 'like the united': 491406, 'united state or': 942234, 'state or the': 795842, 'or the uk': 617405, 'uk so this': 938725, 'so this isn': 778500, 'this isn call': 888482, 'isn call to': 454452, 'call to panic': 156180, 'panic buy but': 637472, 'buy but price': 148457, 'but price for': 146842, 'price for lot': 673992, 'for lot of': 323117, 'of thing are': 591891, 'to go up': 906874, 'go up increased': 354434, 'up increased demand': 945195, 'increased demand coupled': 433266, 'demand coupled with': 235181, 'coupled with covid': 211728, 'with covid causing': 997839, 'covid causing supply': 214138, 'causing supply shortage': 168108, 'supply shortage shipping': 825837, 'shortage shipping issue': 765210, 'kungflu': 477930, 'sacked': 729057, 'behaved': 123804, 'be rightly': 116890, 'rightly judged': 722467, 'judged on': 467646, 'to kungflu': 909016, 'kungflu those': 477933, 'that hiked': 844335, 'price refused': 676141, 'pay out': 645030, 'on insurance': 601593, 'insurance policy': 440790, 'policy taken': 663508, 'taken in': 833010, 'in good': 423363, 'good faith': 357027, 'faith sacked': 296532, 'sacked staff': 729058, 'staff without': 793103, 'without warning': 1003038, 'warning or': 967172, 'just generally': 468797, 'generally behaved': 345525, 'behaved like': 123811, 'like asshole': 489837, 'asshole will': 96591, 'be remembered': 116780, 'remembered and': 710442, 'suffer long': 817214, 'company will be': 191328, 'will be rightly': 992655, 'be rightly judged': 116891, 'rightly judged on': 722468, 'judged on their': 467647, 'on their response': 604504, 'their response to': 874574, 'response to kungflu': 715862, 'to kungflu those': 909017, 'kungflu those that': 477934, 'those that hiked': 892535, 'that hiked price': 844336, 'hiked price refused': 396336, 'price refused to': 676142, 'refused to pay': 707074, 'to pay out': 911549, 'pay out on': 645032, 'out on insurance': 626907, 'on insurance policy': 601594, 'insurance policy taken': 440792, 'policy taken in': 663509, 'taken in good': 833012, 'in good faith': 423367, 'good faith sacked': 357028, 'faith sacked staff': 296533, 'sacked staff without': 729059, 'staff without warning': 793105, 'without warning or': 1003039, 'warning or just': 967173, 'or just generally': 615880, 'just generally behaved': 468798, 'generally behaved like': 345526, 'behaved like asshole': 123812, 'like asshole will': 489838, 'asshole will be': 96592, 'will be remembered': 992643, 'be remembered and': 116781, 'remembered and will': 710443, 'and will suffer': 75698, 'will suffer long': 995023, 'suffer long term': 817215, 'still part': 801026, 'life particularly': 488962, 'particularly when': 642729, 'concern make': 193013, 'difficult or': 242248, 'or impossible': 615745, 'house while': 406678, 'make tiny': 510658, 'tiny change': 898656, 'with huge': 998899, 'huge impact': 410065, 'impact use': 418036, 'use amazonsmile': 949030, 'for many of': 323228, 'many of online': 514381, 'shopping and delivery': 761975, 'and delivery are': 61110, 'delivery are still': 233723, 'are still part': 90465, 'still part of': 801027, 'part of life': 642357, 'of life particularly': 585831, 'life particularly when': 488963, 'particularly when covid': 642731, '19 concern make': 5920, 'concern make it': 193014, 'it difficult or': 457553, 'difficult or impossible': 242249, 'or impossible to': 615746, 'impossible to leave': 419402, 'to leave the': 909163, 'the house while': 857651, 'house while you': 406679, 'you shop on': 1021163, 'shop on amazon': 760541, 'on amazon you': 599297, 'can make tiny': 158954, 'make tiny change': 510659, 'tiny change with': 898657, 'change with huge': 172404, 'with huge impact': 998902, 'huge impact use': 410067, 'impact use amazonsmile': 418037, 'accordingly': 28605, 'hubby': 409862, 'didn panic': 241149, 'buy will': 149475, 'now create': 574477, 'create meal': 215680, 'meal menu': 524211, 'menu out': 528893, 'the cupboard': 852573, 'cupboard and': 220465, 'freezer then': 332637, 'then plan': 877423, 'plan my': 658178, 'next grocery': 561388, 'shop accordingly': 759795, 'accordingly although': 28606, 'although hubby': 49323, 'hubby did': 409867, 'did buy': 240576, 'buy packet': 149075, 'egg fried': 269864, 'fried rice': 333455, 'rice yesterday': 721179, 'yesterday when': 1015950, 'he went': 385655, 'buy loaf': 148909, 'loaf why': 497381, 'why stay': 991373, 'didn panic buy': 241151, 'panic buy will': 637545, 'buy will now': 149476, 'will now create': 994296, 'now create meal': 574478, 'create meal menu': 215682, 'meal menu out': 524212, 'menu out of': 528894, 'food we have': 317530, 'we have in': 971842, 'have in the': 381039, 'in the cupboard': 429114, 'the cupboard and': 852574, 'cupboard and freezer': 220466, 'and freezer then': 63290, 'freezer then plan': 332638, 'then plan my': 877424, 'plan my next': 658179, 'my next grocery': 549487, 'next grocery shop': 561391, 'grocery shop accordingly': 364964, 'shop accordingly although': 759796, 'accordingly although hubby': 28607, 'although hubby did': 49324, 'hubby did buy': 409868, 'did buy packet': 240577, 'buy packet of': 149076, 'packet of egg': 633704, 'of egg fried': 582995, 'egg fried rice': 269865, 'fried rice yesterday': 333458, 'rice yesterday when': 721180, 'yesterday when he': 1015951, 'when he went': 983550, 'he went out': 385657, 'to buy loaf': 902261, 'buy loaf why': 148910, 'loaf why stay': 497382, 'why stay safe': 991374, 'tshirt': 934930, 'followme': 312946, 'newtrend': 561151, 'your paper': 1025194, 'paper together': 640937, 'together toiletpaper': 921011, 'toiletpaper tshirt': 922779, 'tshirt top': 934931, 'top 2020': 925529, '2020 followme': 14309, 'followme newtrend': 312947, 'newtrend label': 561152, 'label corona': 478332, 'get your paper': 348722, 'your paper together': 1025195, 'paper together toiletpaper': 640938, 'together toiletpaper tshirt': 921012, 'toiletpaper tshirt top': 922780, 'tshirt top 2020': 934932, 'top 2020 followme': 925530, '2020 followme newtrend': 14310, 'followme newtrend label': 312948, 'newtrend label corona': 561153, 'supermarket supplier': 823042, 'supplier is': 824562, 'is reporting': 451439, 'reporting 500': 712659, '500 100': 19936, 'store demand': 807295, 'for bean': 319607, 'canada largest supermarket': 160486, 'largest supermarket supplier': 480032, 'supermarket supplier is': 823043, 'supplier is reporting': 824564, 'is reporting 500': 451440, 'reporting 500 100': 712660, '500 100 increase': 19938, 'increase in store': 432871, 'in store demand': 428402, 'store demand for': 807296, 'demand for bean': 235383, 'welch': 977861, 'added this': 31613, 'this great': 887749, 'health section': 386833, 'the welch': 871368, 'welch medical': 977862, 'medical library': 526243, 'library guide': 488067, 'guide well': 368378, 'just added this': 468155, 'added this great': 31614, 'this great resource': 887755, 'resource to the': 714916, 'the consumer health': 851543, 'consumer health section': 197730, 'health section of': 386834, 'of the welch': 591613, 'the welch medical': 871369, 'welch medical library': 977863, 'medical library guide': 526244, 'library guide well': 488068, 'these supermarket': 880774, 'hand stoppanicbuying': 375807, 'get anything in': 346589, 'anything in these': 80795, 'in these supermarket': 429862, 'these supermarket this': 880776, 'supermarket this is': 823314, 'of hand stoppanicbuying': 584438, 'bell': 126476, 'supportdailywagers': 827030, 'thanksitcreckitthuldaburgodrej': 842306, 'voice ring': 959998, 'ring the': 722535, 'the bell': 849457, 'bell all': 126479, 'all will': 45467, 'will listen': 994023, 'listen act': 494660, 'act indiafightscorona': 29663, 'indiafightscorona supportdailywagers': 434737, 'supportdailywagers thanksitcreckitthuldaburgodrej': 827031, 'thanksitcreckitthuldaburgodrej fmcg': 842307, 'fmcg company': 311721, 'company slash': 191086, 'slash sanitiser': 773594, 'sanitiser face': 733951, '70 via': 21852, 'raise your voice': 695981, 'your voice ring': 1026294, 'voice ring the': 959999, 'ring the bell': 722536, 'the bell all': 849458, 'bell all will': 126480, 'all will listen': 45470, 'will listen act': 994024, 'listen act indiafightscorona': 494661, 'act indiafightscorona supportdailywagers': 29664, 'indiafightscorona supportdailywagers thanksitcreckitthuldaburgodrej': 434738, 'supportdailywagers thanksitcreckitthuldaburgodrej fmcg': 827032, 'thanksitcreckitthuldaburgodrej fmcg company': 842308, 'fmcg company slash': 311725, 'company slash sanitiser': 191087, 'slash sanitiser face': 773595, 'sanitiser face mask': 733952, 'mask price by': 519141, 'price by up': 673044, 'to 70 via': 899815, 'scamwarning': 740685, 'asd': 94896, 'acsc': 29572, 'themed': 876719, 'scamwatch': 740692, 'scamwarning asd': 740686, 'asd australian': 94897, 'australian cyber': 103471, 'cyber security': 223939, 'security centre': 744565, 'centre acsc': 169476, 'acsc is': 29573, 'is aware': 445934, '19 themed': 11269, 'themed scam': 876724, 'scam being': 740078, 'being distributed': 125061, 'distributed via': 248065, 'via text': 956291, 'australian competition': 103465, 'commission acc': 188785, 'acc scamwatch': 27817, 'scamwatch ha': 740693, 'received multiple': 703651, 'multiple report': 545780, 'scamwarning asd australian': 740687, 'asd australian cyber': 94898, 'australian cyber security': 103472, 'cyber security centre': 223941, 'security centre acsc': 744566, 'centre acsc is': 169477, 'acsc is aware': 29574, 'is aware of': 445935, 'aware of covid': 105629, 'covid 19 themed': 213933, '19 themed scam': 11270, 'themed scam being': 876725, 'scam being distributed': 740079, 'being distributed via': 125063, 'distributed via text': 248067, 'via text message': 956293, 'text message we': 839919, 'message we understand': 529477, 'understand the australian': 940744, 'the australian competition': 849058, 'australian competition and': 103466, 'competition and consumer': 191663, 'and consumer commission': 60362, 'consumer commission acc': 196817, 'commission acc scamwatch': 188787, 'acc scamwatch ha': 27818, 'scamwatch ha received': 740694, 'ha received multiple': 371666, 'received multiple report': 703652, 'multiple report of': 545781, 'report of covid': 712110, 'photography': 655282, 'maharashtra': 508477, 'actually enjoying': 30793, 'enjoying this': 277245, 'this social': 890225, 'city is': 179213, 'is quiet': 451183, 'quiet and': 694673, 'and peaceful': 68821, 'peaceful and': 646025, 'time socialdistancing': 897706, 'socialdistancing stockup': 780754, 'stockup life': 804180, 'life virus': 489176, 'virus photography': 958631, 'photography morning': 655298, 'morning mumbai': 541360, 'mumbai mumbai': 546015, 'mumbai maharashtra': 546014, 'actually enjoying this': 30794, 'enjoying this social': 277246, 'this social distancing': 890227, 'distancing the city': 247533, 'the city is': 850943, 'city is quiet': 179217, 'is quiet and': 451184, 'quiet and peaceful': 694674, 'and peaceful and': 68822, 'peaceful and lot': 646026, 'lot of me': 504224, 'of me time': 586347, 'me time socialdistancing': 523733, 'time socialdistancing stockup': 897708, 'socialdistancing stockup life': 780755, 'stockup life virus': 804181, 'life virus photography': 489177, 'virus photography morning': 958632, 'photography morning mumbai': 655299, 'morning mumbai mumbai': 541361, 'mumbai mumbai maharashtra': 546016, 'attic': 102529, 'home self': 402030, 'isolation in': 455310, 'the attic': 849032, 'attic for': 102530, 'day complicated': 227471, 'complicated to': 192466, 'it mildly': 459621, 'mildly but': 531361, 'local friend': 497995, 'spare some': 787496, 'can maybe': 158976, 'maybe get': 521684, 'get stuff': 348137, 'stuff from': 815074, 'from kitchen': 336179, 'made it home': 507805, 'it home self': 458616, 'home self isolation': 402031, 'self isolation in': 747778, 'isolation in the': 455313, 'in the attic': 428994, 'the attic for': 849033, 'attic for 14': 102531, '14 day complicated': 3444, 'day complicated to': 227472, 'complicated to put': 192467, 'put it mildly': 690647, 'it mildly but': 459622, 'mildly but we': 531362, 'but we will': 147769, 'we will do': 973854, 'will do our': 993228, 'our best if': 622192, 'best if any': 127725, 'if any local': 413829, 'any local friend': 79420, 'local friend can': 497997, 'friend can spare': 333546, 'can spare some': 159687, 'spare some hand': 787497, 'sanitizer we could': 736043, 'we could use': 971219, 'could use some': 209807, 'use some so': 949603, 'some so can': 783901, 'so can maybe': 776717, 'can maybe get': 158977, 'maybe get stuff': 521686, 'get stuff from': 348139, 'stuff from kitchen': 815075, 'handsanitisers': 376458, 'conscience': 194774, 'outbreak local': 628426, 'local shopkeeper': 498427, 'shopkeeper started': 761190, 'started price': 794813, 'gouging for': 359320, 'for item': 322752, 'like handsanitisers': 490374, 'handsanitisers mask': 376461, 'mask cigarette': 518529, 'cigarette today': 178491, 'today local': 919820, 'shop increased': 760339, 'all vegetable': 45353, 'vegetable don': 953969, 'how their': 408897, 'their conscience': 872846, 'conscience allows': 194775, 'allows them': 46399, 'do profiting': 250005, '19 outbreak local': 9152, 'outbreak local shopkeeper': 628427, 'local shopkeeper started': 498428, 'shopkeeper started price': 761191, 'started price gouging': 794814, 'price gouging for': 674278, 'gouging for item': 359321, 'for item like': 322755, 'item like handsanitisers': 463414, 'like handsanitisers mask': 490375, 'handsanitisers mask cigarette': 376462, 'mask cigarette today': 518530, 'cigarette today local': 178492, 'today local grocery': 919821, 'grocery shop increased': 364974, 'shop increased price': 760340, 'increased price on': 433418, 'on all vegetable': 599254, 'all vegetable don': 45354, 'vegetable don understand': 953970, 'don understand how': 254006, 'understand how their': 940650, 'how their conscience': 408899, 'their conscience allows': 872847, 'conscience allows them': 194776, 'allows them do': 46400, 'them do profiting': 875610, 'do profiting from': 250006, 'afghanistan via': 34938, 'threat in afghanistan': 893668, 'in afghanistan via': 420079, 'on scam': 603324, 'scam be': 740071, 'aware that': 105656, 'going door': 355110, 'people or': 648997, 'or offer': 616350, 'offer virus': 594871, 'it scam': 460897, 'scam more': 740250, 'update on scam': 947131, 'on scam be': 603325, 'scam be aware': 740072, 'be aware that': 113780, 'aware that is': 105659, 'that is absolutely': 844548, 'is absolutely not': 445298, 'absolutely not going': 27409, 'not going door': 569697, 'going door to': 355111, 'to door to': 904675, 'door to check': 255748, 'to check on': 902690, 'check on people': 174511, 'on people or': 602745, 'people or offer': 649000, 'or offer virus': 616353, 'offer virus testing': 594872, 'virus testing it': 958859, 'testing it scam': 839527, 'it scam more': 460899, 'scam more info': 740252, 'more info on': 539559, 'info on coronavirus': 437525, 'on coronavirus scam': 600126, 'coronavirus scam from': 206716, 'scam from here': 740175, 'hoarding no': 399440, 'shortage except': 764935, 'except mask': 289194, 'mask plenty': 519124, 'but panic': 146747, 'shelf which': 757796, 'which creates': 985791, 'creates impression': 215947, 'impression shortage': 419470, 'shortage trigger': 765284, 'trigger more': 931875, 'buying store': 151096, 'store trouble': 810957, 'trouble keeping': 932625, 'keeping shelf': 472549, 'people stop hoarding': 649651, 'stop hoarding no': 804734, 'hoarding no shortage': 399441, 'no shortage except': 565491, 'shortage except mask': 764936, 'except mask plenty': 289195, 'mask plenty food': 519125, 'plenty food but': 660918, 'food but panic': 313828, 'but panic hoarding': 146749, 'panic hoarding empty': 638179, 'empty shelf which': 275110, 'shelf which creates': 757798, 'which creates impression': 985793, 'creates impression shortage': 215948, 'impression shortage trigger': 419471, 'shortage trigger more': 765285, 'trigger more panic': 931876, 'panic buying store': 637907, 'buying store trouble': 151097, 'store trouble keeping': 810958, 'trouble keeping shelf': 932626, 'keeping shelf stocked': 472550, 'springfashion': 791276, 'evahh': 283713, 'excited for': 289542, 'the springfashion': 867663, 'springfashion most': 791277, 'expensive and': 291218, 'and sought': 72014, 'after dress': 35583, 'dress evahh': 258664, 'evahh toiletpaper': 283714, 'toiletpaper fashion': 921977, 'fashion dress': 299802, 'dress spring': 258682, 'so excited for': 776986, 'excited for all': 289543, 'all the springfashion': 44918, 'the springfashion most': 867664, 'springfashion most expensive': 791278, 'most expensive and': 542317, 'expensive and sought': 291220, 'and sought after': 72015, 'sought after dress': 786206, 'after dress evahh': 35584, 'dress evahh toiletpaper': 258665, 'evahh toiletpaper fashion': 283715, 'toiletpaper fashion dress': 921978, 'fashion dress spring': 299803, 'congregation': 194475, 'many church': 513900, 'church are': 178337, 'are exposing': 86375, 'exposing their': 292940, 'their congregation': 872844, 'congregation to': 194480, 'people fast': 647870, 'worker etc': 1006865, 'sick die': 768414, 'die displaced': 241317, 'by unemployment': 154630, 'unemployment due': 941200, 'these congregation': 879799, 'congregation how': 194476, 'how many church': 408252, 'many church are': 513901, 'church are exposing': 178338, 'are exposing their': 86376, 'exposing their congregation': 292941, 'their congregation to': 872845, 'congregation to covid': 194481, 'and how many': 64824, 'many more supermarket': 514316, 'more supermarket worker': 540505, 'delivery people fast': 234315, 'people fast food': 647871, 'fast food worker': 299979, 'food worker etc': 317670, 'worker etc will': 1006875, 'etc will get': 282890, 'will get sick': 993520, 'get sick die': 347991, 'sick die displaced': 768415, 'die displaced by': 241318, 'displaced by unemployment': 246180, 'by unemployment due': 154631, 'unemployment due to': 941202, 'to the selfishness': 917048, 'the selfishness of': 866676, 'selfishness of these': 748372, 'of these congregation': 591820, 'these congregation how': 879800, 'congregation how much': 194477, 'cared': 164327, 'we cared': 971104, 'cared le': 164328, 'le about': 482826, 'about people': 25930, 'people c4news': 647369, 'really do not': 702127, 'about the stock': 26530, 'stock market we': 802453, 'market we be': 517318, 'we be better': 970815, 'be better off': 113839, 'better off of': 128388, 'off of we': 594013, 'of we cared': 592961, 'we cared le': 971105, 'cared le about': 164329, 'le about the': 482828, 'market and more': 515975, 'and more about': 67138, 'more about people': 538518, 'about people c4news': 25933, 'angeles county': 76370, 'county where': 211530, '00 case': 105, 'case official': 165936, 'official have': 595832, 'have urged': 383479, 'urged resident': 948274, 'los angeles county': 503363, 'angeles county where': 76372, 'county where there': 211532, 'where there are': 985262, 'there are more': 878127, 'than 00 case': 840133, '00 case official': 111, 'case official have': 165937, 'official have urged': 595837, 'have urged resident': 383480, 'urged resident to': 948276, 'resident to avoid': 714379, 'this week if': 891222, 'week if possible': 976354, 'frederick': 331588, 'more indispensable': 539533, 'indispensable than': 435115, 'pandemic ceo': 635119, 'to denver': 904174, 'denver frederick': 237118, 'frederick about': 331589, 'consumer amidst': 196183, 'consumer report more': 198714, 'report more indispensable': 712089, 'more indispensable than': 539534, 'indispensable than ever': 435116, 'ever during covid': 285284, '19 pandemic ceo': 9290, 'pandemic ceo of': 635120, 'ceo of talk': 169790, 'of talk to': 590589, 'talk to denver': 833874, 'to denver frederick': 904175, 'denver frederick about': 237119, 'frederick about the': 331590, 'about the importance': 26420, 'importance of consumer': 418699, 'of consumer amidst': 581703, 'consumer amidst the': 196184, 'startagarden': 794664, 'with nofood': 999804, 'nofood in': 566152, 'and spring': 72164, 'spring here': 791214, 'to startagarden': 915234, 'startagarden do': 794665, 'not wait': 572421, 'until you': 943937, 'other choice': 619941, 'choice start': 177806, 'start now': 794402, 'with nofood in': 999805, 'nofood in the': 566153, 'store and spring': 806356, 'and spring here': 72167, 'spring here it': 791215, 'it is time': 459104, 'is time to': 453164, 'time to startagarden': 898074, 'to startagarden do': 915235, 'startagarden do not': 794666, 'do not wait': 249884, 'not wait until': 572425, 'wait until you': 964248, 'until you have': 943942, 'you have no': 1019081, 'no other choice': 565014, 'other choice start': 619943, 'choice start now': 177807, 'fewer pasta': 304225, 'pasta shape': 643805, 'shape two': 754855, 'two variety': 937298, 'variety of': 952562, 'paper instead': 640341, 'five and': 309585, 'and focus': 63003, 'on basic': 599576, 'basic flour': 111877, 'flour food': 311101, 'manufacturer are': 513421, 'limiting production': 492851, 'to maximize': 909900, 'maximize volume': 520798, 'volume and': 960116, 'the skyrocketing': 867314, 'demand caused': 235113, 'fewer pasta shape': 304226, 'pasta shape two': 643806, 'shape two variety': 754856, 'two variety of': 937299, 'variety of toilet': 952572, 'toilet paper instead': 921320, 'paper instead of': 640342, 'instead of five': 440261, 'of five and': 583569, 'five and focus': 309586, 'and focus on': 63004, 'focus on basic': 311865, 'on basic flour': 599579, 'basic flour food': 111878, 'flour food manufacturer': 311102, 'food manufacturer are': 315373, 'manufacturer are limiting': 513427, 'are limiting production': 87819, 'limiting production to': 492852, 'production to maximize': 682249, 'to maximize volume': 909902, 'maximize volume and': 520799, 'volume and meet': 960119, 'meet the skyrocketing': 527611, 'the skyrocketing demand': 867316, 'skyrocketing demand caused': 773419, 'demand caused by': 235114, 'you one': 1020197, 'the five': 855385, 'five million': 309639, 'million worker': 532428, 'get statutory': 348109, 'you contract': 1018034, 'contract here': 201663, 'here nail': 393375, 'nail down': 551443, 'and aren': 58379, 'aren entitled': 92397, 'are you one': 91828, 'you one of': 1020200, 'of the five': 591033, 'the five million': 855387, 'five million worker': 309640, 'million worker who': 532430, 'worker who will': 1008237, 'not get statutory': 569609, 'get statutory sick': 348111, 'sick pay if': 768571, 'pay if you': 644952, 'if you contract': 415414, 'you contract here': 1018035, 'contract here nail': 201664, 'here nail down': 393376, 'nail down what': 551445, 'down what you': 257462, 'you are and': 1017059, 'are and aren': 84544, 'and aren entitled': 58382, 'aren entitled to': 92398, 'entitled to for': 278832, 'stayhome24in48': 798241, 'buying stayhome24in48': 151082, 'stayhome24in48 stophoarding': 798244, 'me when see': 523943, 'see people panic': 745564, 'panic buying stayhome24in48': 637901, 'buying stayhome24in48 stophoarding': 151083, 'switzerland': 830596, 'the ikea': 857865, 'ikea outlet': 416050, 'outlet in': 629048, 'in switzerland': 428767, 'switzerland are': 830599, 'from 17': 334200, 'march up': 515508, 'least 19': 484335, '19 april': 5186, 'april people': 83654, 'all the ikea': 44791, 'the ikea outlet': 857866, 'ikea outlet in': 416051, 'outlet in switzerland': 629049, 'in switzerland are': 428769, 'switzerland are closed': 830600, 'are closed from': 85345, 'closed from 17': 183138, 'from 17 march': 334202, '17 march up': 4357, 'march up to': 515509, 'up to at': 946358, 'to at least': 900805, 'at least 19': 99443, 'least 19 april': 484336, '19 april people': 5188, 'april people can': 83655, 'can do online': 158114, 'london your': 501235, 'behavior make': 124112, 'sense now': 750547, 'washing gone': 967662, 'gone it': 356318, 'the dishwasher': 853383, 'dishwasher turn': 245532, 'turn stop': 935765, 'idiot stophoarding': 413598, 'stophoarding panicbuy': 805436, 'london your behavior': 501236, 'your behavior make': 1022933, 'behavior make no': 124113, 'no sense now': 565461, 'sense now with': 750549, 'now with hand': 576444, 'with hand washing': 998726, 'hand washing gone': 375947, 'washing gone it': 967663, 'gone it the': 356319, 'it the dishwasher': 461527, 'the dishwasher turn': 853384, 'dishwasher turn stop': 245533, 'turn stop being': 935766, 'being selfish idiot': 125744, 'selfish idiot stophoarding': 748138, 'idiot stophoarding panicbuy': 413599, 'month from': 537744, 'from start': 337403, 'case stoppanicbuying': 166039, 'month from start': 537747, 'from start to': 337404, 'start to drop': 794580, 'drop in case': 260229, 'in case stoppanicbuying': 421277, 'siew': 769006, 'defy': 232500, 'gravity': 362449, 'bouncing': 136844, 'nice piece': 562460, 'colleague siew': 186236, 'siew can': 769007, 'can ironore': 158768, 'ironore continue': 444952, 'to defy': 904074, 'defy gravity': 232501, 'gravity despite': 362452, 'despite tanking': 238867, 'tanking steel': 834261, 'steel production': 799360, 'price scrap': 676314, 'scrap is': 742582, 'is bouncing': 446246, 'bouncing now': 136847, 'long can': 501363, 'can this': 159990, 'this continue': 886849, 'continue turkey': 201283, 'turkey catch': 935545, 'nice piece by': 562461, 'piece by my': 656284, 'by my colleague': 153278, 'my colleague siew': 547736, 'colleague siew can': 186237, 'siew can ironore': 769008, 'can ironore continue': 158769, 'ironore continue to': 444953, 'continue to defy': 201177, 'to defy gravity': 904075, 'defy gravity despite': 232502, 'gravity despite tanking': 362453, 'despite tanking steel': 238868, 'tanking steel production': 834262, 'steel production and': 799361, 'and price scrap': 69474, 'price scrap is': 676315, 'scrap is bouncing': 742583, 'is bouncing now': 446247, 'bouncing now but': 136848, 'now but how': 574285, 'but how long': 145972, 'how long can': 408193, 'long can this': 501367, 'can this continue': 159992, 'this continue turkey': 886850, 'continue turkey catch': 201284, 'turkey catch up': 935546, 'catch up on': 167053, 'on the curve': 604052, 'bombard': 134194, 'impotus': 419424, 'politicizing': 663768, 'drama no': 258247, 'no don': 564039, 'don watch': 254055, 'it instead': 458808, 'instead bombard': 440151, 'bombard wh': 134195, 'wh official': 980909, 'official office': 595861, 'office call': 595386, 'demanding impotus': 236596, 'impotus stop': 419425, 'stop politicizing': 804922, 'politicizing and': 663769, 'and lying': 66493, 'lying about': 507058, 'demand statewide': 236271, 'statewide closure': 796260, 'closure for': 183896, 'period test': 651891, 'test mask': 839083, 'mask ventilator': 519476, 'ventilator hospital': 954567, 'bed fund': 120400, 'fund food': 341400, 'for poor': 324612, 'poor time': 664309, 'drama no don': 258248, 'no don watch': 564040, 'don watch it': 254056, 'watch it instead': 968455, 'it instead bombard': 458809, 'instead bombard wh': 440152, 'bombard wh official': 134196, 'wh official office': 980910, 'official office call': 595862, 'office call demanding': 595387, 'call demanding impotus': 155832, 'demanding impotus stop': 236597, 'impotus stop politicizing': 419426, 'stop politicizing and': 804923, 'politicizing and lying': 663770, 'and lying about': 66494, 'lying about covid': 507060, '19 and demand': 5010, 'and demand statewide': 61172, 'demand statewide closure': 236272, 'statewide closure for': 796261, 'closure for period': 183898, 'for period test': 324484, 'period test mask': 651892, 'test mask ventilator': 839085, 'mask ventilator hospital': 519477, 'ventilator hospital bed': 954568, 'hospital bed fund': 404326, 'bed fund food': 120401, 'fund food for': 341401, 'food for poor': 314565, 'for poor time': 324616, 'relapsing': 708357, 'ha me': 371249, 'me relapsing': 523390, 'relapsing in': 708358, '19 ha me': 7365, 'ha me relapsing': 371254, 'me relapsing in': 523391, 'relapsing in my': 708359, 'in my online': 425607, 'decides': 230946, 'decides that': 230951, 'that during': 843650, 'during they': 263253, 'should raise': 766362, 'raise their': 695959, 'accommodate demand': 28427, 'demand order': 235988, 'that sat': 846119, 'sat in': 736899, 'in cart': 421249, 'cart overnight': 165353, 'overnight now': 631344, 'now cost': 574464, 'cost 100': 207813, '100 more': 1959, 'more nice': 539840, 'nice pull': 562467, 'decides that during': 230952, 'that during they': 843653, 'during they should': 263255, 'they should raise': 883380, 'should raise their': 766363, 'raise their price': 695960, 'their price overnight': 874411, 'price overnight to': 675820, 'overnight to accommodate': 631362, 'to accommodate demand': 899969, 'accommodate demand order': 28428, 'demand order that': 235989, 'order that sat': 618622, 'that sat in': 846120, 'sat in cart': 736900, 'in cart overnight': 421250, 'cart overnight now': 165354, 'overnight now cost': 631345, 'now cost 100': 574465, 'cost 100 more': 207817, '100 more nice': 1962, 'more nice pull': 539841, 'dtic': 261420, 'emergency price': 272896, 'control for': 202011, 'paper mask': 640451, 'good government': 357141, 'announced strict': 77048, 'strict new': 813641, 'new regulation': 559432, 'regulation to': 708120, 'gouging the': 359466, 'the dtic': 853754, 'dtic minister': 261421, 'minister ebrahim': 533360, 'patel signed': 643975, 'signed these': 769383, 'these part': 880402, 'the disaster': 853341, 'disaster management': 244223, 'management act': 512523, 'act read': 29751, 'emergency price control': 272897, 'price control for': 673236, 'control for toilet': 202013, 'toilet paper mask': 921352, 'paper mask and': 640452, 'mask and other': 518354, 'other good government': 620306, 'good government ha': 357142, 'government ha announced': 360139, 'ha announced strict': 369566, 'announced strict new': 77049, 'strict new regulation': 813642, 'new regulation to': 559434, 'regulation to prevent': 708123, 'to prevent price': 912082, 'prevent price gouging': 671702, 'price gouging the': 674331, 'gouging the dtic': 359467, 'the dtic minister': 853755, 'dtic minister ebrahim': 261422, 'minister ebrahim patel': 533361, 'ebrahim patel signed': 266574, 'patel signed these': 643977, 'signed these part': 769384, 'these part of': 880403, 'of the disaster': 590955, 'the disaster management': 853343, 'disaster management act': 244224, 'management act read': 512525, 'act read more': 29752, 'dodgy': 251304, 'cooling': 203079, 'money back': 536621, 'million dodgy': 532129, 'dodgy test': 251309, 'test that': 839190, 'don work': 254071, 'work under': 1005951, 'under believe': 940021, 'believe consumer': 126252, 'consumer legislation': 198022, 'legislation includes': 485975, 'includes cooling': 431734, 'cooling off': 203080, 'off period': 594066, 'period which': 651927, 'which give': 985862, 'mind after': 532613, 'made purchase': 507927, 'is the getting': 452808, 'the getting their': 856246, 'getting their money': 349369, 'their money back': 873994, 'money back on': 536623, 'back on million': 107191, 'on million dodgy': 602129, 'million dodgy test': 532130, 'dodgy test that': 251310, 'test that don': 839192, 'that don work': 843603, 'don work under': 254076, 'work under believe': 1005952, 'under believe consumer': 940022, 'believe consumer legislation': 126253, 'consumer legislation includes': 198023, 'legislation includes cooling': 485976, 'includes cooling off': 431735, 'cooling off period': 203081, 'off period which': 594067, 'period which give': 651928, 'which give you': 985865, 'give you the': 350871, 'you the freedom': 1021598, 'the freedom to': 855775, 'freedom to change': 332390, 'your mind after': 1024830, 'mind after you': 532614, 'after you have': 36607, 'you have made': 1019073, 'have made purchase': 381416, 'zambia': 1027206, 'salockdown': 732770, 'there one': 878893, 'one lesson': 606589, 'lesson zambia': 486525, 'zambia can': 1027209, 'take from': 832139, 'in manufacturing': 425042, 'industry this': 436158, 'is highlighting': 448459, 'highlighting how': 396010, 'consumer zambia': 199589, 'zambia wonder': 1027217, 'much impact': 545002, 'impact salockdown': 417950, 'salockdown will': 732771, 'have seeing': 382411, 'seeing we': 746551, 'we import': 972062, 'import lot': 418643, 'if there one': 415073, 'there one lesson': 878896, 'one lesson zambia': 606590, 'lesson zambia can': 486526, 'zambia can take': 1027210, 'can take from': 159897, 'take from the': 832141, 'pandemic is to': 635801, 'is to invest': 453213, 'invest in manufacturing': 443758, 'in manufacturing industry': 425045, 'manufacturing industry this': 513614, 'industry this period': 436160, 'this period is': 889522, 'period is highlighting': 651799, 'is highlighting how': 448461, 'highlighting how much': 396011, 'how much of': 408362, 'much of consumer': 545188, 'of consumer zambia': 581789, 'consumer zambia wonder': 199590, 'zambia wonder how': 1027218, 'wonder how much': 1003955, 'how much impact': 408354, 'much impact salockdown': 545003, 'impact salockdown will': 417951, 'salockdown will have': 732772, 'will have seeing': 993668, 'have seeing we': 382412, 'seeing we import': 746552, 'we import lot': 972063, 'import lot of': 418644, 'lot of product': 504261, 'of product from': 588489, 'product from them': 681218, 'impacted consumer': 418096, 'at how the': 99234, 'how the ha': 408832, 'the ha impacted': 856995, 'ha impacted consumer': 370912, 'impacted consumer spending': 418098, 'spending and worry': 788745, 'barton': 111414, 'assessment centre': 96384, 'centre will': 169564, 'begin operating': 123546, 'operating in': 613079, 'park in': 641932, 'in middleton': 425305, 'middleton next': 530719, 'the hot': 857559, 'hot hub': 405022, 'hub based': 409787, 'based at': 111512, 'tesco extra': 838702, 'extra on': 293591, 'on barton': 599568, 'barton road': 111415, 'road will': 724546, 'provide face': 686283, 'face appointment': 294313, 'appointment for': 82665, 'are believed': 84945, 'believed to': 126438, 'be carrying': 114013, 'assessment centre will': 96385, 'centre will begin': 169565, 'will begin operating': 992810, 'begin operating in': 123547, 'operating in supermarket': 613081, 'in supermarket car': 428572, 'car park in': 163225, 'park in middleton': 641935, 'in middleton next': 425306, 'middleton next week': 530720, 'next week the': 561699, 'week the hot': 976991, 'the hot hub': 857560, 'hot hub based': 405023, 'hub based at': 409788, 'based at tesco': 111514, 'at tesco extra': 100840, 'tesco extra on': 838703, 'extra on barton': 293592, 'on barton road': 599569, 'barton road will': 111416, 'road will provide': 724547, 'will provide face': 994512, 'provide face to': 686285, 'to face appointment': 905560, 'face appointment for': 294314, 'appointment for those': 82666, 'who are believed': 988106, 'are believed to': 84946, 'believed to be': 126439, 'to be carrying': 901153, 'be carrying the': 114015, 'carrying the virus': 165219, 'jersey are': 465188, 'insecure people': 439133, 'last in': 480273, 'case they': 166065, 'bank in new': 109923, 'in new jersey': 425820, 'new jersey are': 558964, 'jersey are working': 465189, 'working to ensure': 1008985, 'ensure that food': 278058, 'that food insecure': 843908, 'food insecure people': 315055, 'insecure people have': 439134, 'people have enough': 648177, 'have enough supply': 380468, 'enough supply to': 277654, 'to last in': 909065, 'last in case': 480274, 'in case they': 421280, 'case they are': 166066, 'they are confined': 881233, 'are confined to': 85489, 'their home for': 873562, 'home for while': 401249, 'savage': 737427, '48h': 19361, 'make angry': 509693, 'angry greedy': 76473, 'selfish savage': 748245, 'savage go': 737435, 'market they': 517209, 'they open': 882832, 'daily load': 224672, 'load their': 497299, 'limit permitted': 492449, 'permitted need': 652175, 'need or': 555380, 'not some': 571646, 'some sell': 783821, 'on at': 599494, 'at much': 99787, 'much inflated': 545014, 'this poor': 889658, 'poor nurse': 664238, 'after 48h': 35296, '48h shift': 19362, 'shift issue': 758340, 'issue an': 455658, 'an appeal': 55362, 'it make angry': 459509, 'make angry greedy': 509694, 'angry greedy selfish': 76474, 'greedy selfish savage': 363596, 'selfish savage go': 748246, 'savage go to': 737436, 'the market they': 860169, 'market they open': 517212, 'they open daily': 882835, 'open daily load': 612176, 'daily load their': 224673, 'load their trolley': 497301, 'their trolley to': 875037, 'trolley to the': 932492, 'to the limit': 916847, 'the limit permitted': 859389, 'limit permitted need': 492450, 'permitted need or': 652176, 'need or not': 555383, 'or not some': 616310, 'not some sell': 571648, 'some sell it': 783822, 'sell it on': 748769, 'it on at': 460031, 'on at much': 599499, 'at much inflated': 99790, 'much inflated price': 545015, 'inflated price this': 437076, 'price this poor': 676919, 'this poor nurse': 889661, 'poor nurse unable': 664239, 'food after 48h': 313038, 'after 48h shift': 35297, '48h shift issue': 19363, 'shift issue an': 758341, 'issue an appeal': 455659, 'emerged': 272551, 'gas renewed': 344078, 'renewed optimism': 711014, 'optimism after': 613901, 'after first': 35676, 'first sign': 309007, 'of slowdown': 589770, 'slowdown in': 774444, 'spread emerged': 790518, 'emerged in': 272562, 'in several': 427834, 'several european': 753840, '13 increase': 3223, 'price pushed': 676033, 'pushed european': 690359, 'higher on': 395638, 'gas renewed optimism': 344079, 'renewed optimism after': 711015, 'optimism after first': 613902, 'after first sign': 35678, 'first sign of': 309008, 'sign of slowdown': 769173, 'of slowdown in': 589773, 'slowdown in the': 774451, '19 spread emerged': 10744, 'spread emerged in': 790519, 'emerged in several': 272563, 'in several european': 427836, 'several european country': 753841, 'european country and': 283551, 'country and 13': 210432, 'and 13 increase': 57371, '13 increase in': 3224, 'increase in eua': 432833, 'eua price pushed': 283301, 'price pushed european': 676034, 'pushed european gas': 690360, 'gas price higher': 343979, 'price higher on': 674516, 'higher on monday': 395640, 'fiction': 304416, 'lovenowexplorelater': 505012, 'travellater': 930665, 'glaciermt': 351477, 'our small': 624798, 'before shop': 123073, 'shop local': 760422, 'local for': 497985, 'card fact': 163515, 'fact fiction': 295717, 'fiction book': 304417, 'book lovenowexplorelater': 134561, 'lovenowexplorelater travellater': 505014, 'travellater glaciermt': 930666, 'our small business': 624799, 'small business need': 774879, 'business need more': 144087, 'need more than': 555264, 'ever before shop': 285226, 'before shop local': 123074, 'shop local for': 760424, 'local for pickup': 497986, 'for pickup and': 324547, 'pickup and delivery': 655925, 'and delivery and': 61109, 'delivery and support': 233680, 'and support local': 72841, 'local store by': 498458, 'store by shopping': 806838, 'online and buying': 607808, 'and buying gift': 59367, 'gift card fact': 349941, 'card fact fiction': 163516, 'fact fiction book': 295718, 'fiction book lovenowexplorelater': 304418, 'book lovenowexplorelater travellater': 134562, 'lovenowexplorelater travellater glaciermt': 505015, 'the lovely': 859768, 'lovely clerk': 504948, 'clerk yesterday': 181833, 'yesterday for': 1015739, 'her service': 392357, 'service she': 752819, 'she seemed': 756337, 'seemed surprised': 746723, 'surprised said': 828600, 'don take': 253949, 'take tip': 832728, 'tip please': 898875, 'please thank': 660656, 'all any': 42025, 'thanked the lovely': 841891, 'the lovely clerk': 859769, 'lovely clerk yesterday': 504949, 'clerk yesterday for': 181834, 'yesterday for her': 1015741, 'for her service': 322232, 'her service she': 392358, 'service she seemed': 752820, 'she seemed surprised': 756338, 'seemed surprised said': 746724, 'surprised said it': 828601, 'said it these': 731167, 'it these folk': 461622, 'these folk are': 880019, 'folk are essential': 312090, 'essential and don': 280778, 'and don take': 61640, 'don take tip': 253954, 'take tip please': 832729, 'tip please thank': 898877, 'please thank them': 660660, 'thank them all': 841656, 'them all any': 875336, 'all any grocery': 42028, 'store you go': 811688, 'go to 19': 354268, 'joker': 467179, 'batman': 112697, 'the joker': 858691, 'joker wa': 467182, 'wa right': 963107, 'all started': 44426, 'started with': 794915, 'with bat': 997377, 'bat is': 112544, 'he the': 385510, 'good guy': 357155, 'guy irl': 369045, 'irl joker': 444912, 'joker batman': 467180, 'batman chaos': 112698, 'chaos society': 173059, 'society toiletpaper': 781345, 'toiletpaper quarantine': 922370, 'quarantine madness': 692359, 'the joker wa': 858692, 'joker wa right': 467183, 'wa right and': 963109, 'right and it': 721757, 'and it all': 65479, 'it all started': 456373, 'all started with': 44429, 'started with bat': 794916, 'with bat is': 997378, 'bat is he': 112545, 'is he the': 448351, 'he the good': 385511, 'the good guy': 856437, 'good guy irl': 357156, 'guy irl joker': 369046, 'irl joker batman': 444913, 'joker batman chaos': 467181, 'batman chaos society': 112699, 'chaos society toiletpaper': 173060, 'society toiletpaper quarantine': 781347, 'toiletpaper quarantine madness': 922374, 'the disinfecting': 853390, 'disinfecting personal': 245868, 'personal deployed': 652822, 'deployed in': 237460, 'in asian': 420528, 'asian street': 95352, 'street use': 813157, 'glove google': 352701, 'supermarket corona': 819790, 'why you see': 991598, 'you see the': 1021072, 'see the disinfecting': 745827, 'the disinfecting personal': 853391, 'disinfecting personal deployed': 245869, 'personal deployed in': 652823, 'deployed in asian': 237461, 'in asian street': 420529, 'asian street use': 95353, 'street use glove': 813158, 'use glove google': 949235, 'glove google and': 352702, 'google and face': 358139, 'face mask when': 294607, 'mask when going': 519535, 'the supermarket corona': 868529, 'supermarket corona 19': 819791, 'stopbulkbuying': 805314, 'food esp': 314368, 'esp if': 280397, 'everyone learns': 287152, 'learns to': 484267, 'be happening': 115135, 'happening heartbreaking': 377355, 'heartbreaking photo': 388393, 'of elderly': 583007, 'empty shop': 275120, 'shelf via': 757732, 'via stoppanicbuying': 956261, 'stoppanicbuying stopbulkbuying': 805626, 'people think there': 649836, 'think there will': 885672, 'of food esp': 583686, 'food esp if': 314369, 'esp if everyone': 280398, 'if everyone learns': 414094, 'everyone learns to': 287153, 'learns to share': 484268, 'to share this': 914369, 'share this should': 755294, 'this should not': 890132, 'not be happening': 568393, 'be happening heartbreaking': 115137, 'happening heartbreaking photo': 377356, 'heartbreaking photo of': 388394, 'photo of elderly': 655202, 'of elderly man': 583009, 'man looking at': 512147, 'at empty shop': 98538, 'empty shop shelf': 275122, 'shop shelf via': 760766, 'shelf via stoppanicbuying': 757733, 'via stoppanicbuying stopbulkbuying': 956262, 'par': 641196, 'boris should': 135491, 'supermarket see': 822359, 'crowd there': 219271, 'there supermarket': 879119, 'best place': 127829, 'get dose': 346904, 'now especially': 574611, 'especially after': 280428, 'after school': 36146, 'school shutting': 741925, 'shutting supermarket': 768291, 'be full': 114977, 'kid shopping': 474105, 'their par': 874244, 'boris should go': 135492, 'local supermarket see': 498584, 'supermarket see the': 822361, 'see the size': 745886, 'of the crowd': 590913, 'the crowd there': 852532, 'crowd there supermarket': 219272, 'there supermarket must': 879120, 'must be one': 546528, 'of the best': 590817, 'the best place': 849539, 'best place to': 127831, 'to get dose': 906462, 'get dose of': 346905, 'dose of covid': 255927, '19 now especially': 8852, 'now especially after': 574612, 'especially after school': 280431, 'after school shutting': 36148, 'school shutting supermarket': 741926, 'shutting supermarket will': 768292, 'will be full': 992471, 'be full of': 114978, 'full of kid': 340735, 'of kid shopping': 585630, 'kid shopping with': 474106, 'shopping with their': 764446, 'with their par': 1001589, 'poland': 662857, 'rzeczpospolita': 728841, 'ha shot': 371913, 'in poland': 426815, 'poland amid': 662858, 'the rzeczpospolita': 866108, 'rzeczpospolita daily': 728842, 'daily reported': 224779, 'reported on': 712509, 'shopping ha shot': 762832, 'ha shot up': 371914, 'shot up in': 765456, 'up in poland': 945170, 'in poland amid': 426816, 'poland amid fear': 662859, 'of the the': 591531, 'the the rzeczpospolita': 869397, 'the rzeczpospolita daily': 866109, 'rzeczpospolita daily reported': 728843, 'daily reported on': 224780, 'reported on wednesday': 712513, 'suffers': 817351, 'fibromyalgia': 304409, 'classed': 180291, 'mum suffers': 545949, 'suffers with': 817365, 'with fibromyalgia': 998428, 'fibromyalgia she': 304410, 'she in': 756135, 'her 50': 391819, '50 and': 19609, 'chain the': 171165, 'government classed': 359980, 'classed her': 180298, 'worried she': 1010573, 'could end': 209135, 'up very': 946523, 'very ill': 955238, 'ill if': 416134, 'she get': 756048, 'find anything': 306806, 'it recommended': 460666, 'my mum suffers': 549383, 'mum suffers with': 545950, 'suffers with fibromyalgia': 817366, 'with fibromyalgia she': 998429, 'fibromyalgia she in': 304411, 'she in her': 756137, 'in her 50': 423647, 'her 50 and': 391820, '50 and work': 19613, 'and work for': 75852, 'supermarket chain the': 819640, 'chain the government': 171168, 'the government classed': 856516, 'government classed her': 359981, 'classed her at': 180299, 'her at risk': 391865, 'at risk but': 100343, 'risk but we': 723432, 'we are worried': 970768, 'are worried she': 91736, 'worried she could': 1010574, 'she could end': 755957, 'could end up': 209136, 'end up very': 276047, 'up very ill': 946524, 'very ill if': 955241, 'ill if she': 416135, 'if she get': 414775, 'she get covid': 756049, '19 we cannot': 11922, 'we cannot find': 971061, 'cannot find anything': 161832, 'find anything about': 306807, 'it is it': 458994, 'is it recommended': 449055, 'soc': 779390, 'so done': 776912, 'done make': 254930, 'quick trip': 694412, 'week mask': 976511, 'glove washing': 353012, 'washing item': 967689, 'item before': 463152, 'they enter': 882046, 'house etc': 406285, 'etc prepared': 282718, 'battle prepare': 112815, 'for war': 327640, 'zone when': 1027780, 'there 90': 877949, 'nothing no': 573118, 'mask soc': 519287, 'so done make': 776913, 'done make quick': 254931, 'make quick trip': 510383, 'quick trip to': 694414, 'grocery store once': 365611, 'once week mask': 605797, 'week mask glove': 976512, 'mask glove washing': 518755, 'glove washing item': 353014, 'washing item before': 967690, 'item before they': 463153, 'before they enter': 123215, 'they enter the': 882051, 'enter the house': 278313, 'the house etc': 857605, 'house etc prepared': 406286, 'etc prepared for': 282719, 'prepared for battle': 670190, 'for battle prepare': 319602, 'battle prepare for': 112816, 'prepare for war': 670089, 'for war zone': 327642, 'war zone when': 966614, 'zone when get': 1027781, 'get there 90': 348379, 'there 90 of': 877950, '90 of ppl': 23318, 'of ppl are': 588329, 'ppl are doing': 668165, 'doing nothing no': 252562, 'nothing no glove': 573119, 'no glove mask': 564355, 'glove mask soc': 352782, 'investigating': 443838, 'uploaded': 947596, 'virginia police': 957677, 'department is': 237213, 'is investigating': 448969, 'investigating report': 443852, 'that teenager': 846625, 'teenager filmed': 836546, 'and uploaded': 74740, 'uploaded video': 947602, 'medium during': 527083, 'virginia police department': 957678, 'police department is': 662970, 'department is investigating': 237216, 'is investigating report': 448975, 'investigating report that': 443853, 'report that teenager': 712329, 'that teenager filmed': 846627, 'teenager filmed themselves': 836547, 'produce at local': 680197, 'store and uploaded': 806387, 'and uploaded video': 74741, 'uploaded video on': 947603, 'video on social': 956845, 'social medium during': 779846, 'medium during the': 527084, 'hagens': 373878, 'typo': 937673, 'watch fellow': 968401, 'fellow nate': 303308, 'nate hagens': 552077, 'hagens discus': 373879, 'pandemic short': 636450, 'impact will': 418044, 'behavior yes': 124321, 'yes they': 1015565, 'know there': 476862, 'is typo': 453411, 'typo in': 937674, 'video title': 956929, 'watch fellow nate': 968402, 'fellow nate hagens': 303309, 'nate hagens discus': 552078, 'hagens discus what': 373880, 'discus what the': 244944, 'the pandemic short': 863092, 'pandemic short and': 636451, 'term impact will': 838178, 'impact will be': 418045, 'the economy and': 853935, 'economy and consumer': 267640, 'consumer behavior yes': 196541, 'behavior yes they': 124322, 'yes they know': 1015567, 'they know there': 882532, 'know there is': 476865, 'there is typo': 878645, 'is typo in': 453412, 'typo in the': 937675, 'in the video': 429648, 'the video title': 870754, 'crazything': 215496, 'butticket': 148190, 'add little': 31441, 'humor crazything': 410859, 'crazything charmin': 215497, 'toiletpaper butticket': 921834, 'trying to add': 934762, 'to add little': 900059, 'add little humor': 31442, 'little humor crazything': 495395, 'humor crazything charmin': 410860, 'crazything charmin toiletpaper': 215498, 'charmin toiletpaper butticket': 173809, 'episode and': 279513, 'and debate': 60995, 'debate whether': 230325, 'the collective': 851153, 'collective memory': 186512, 'memory of': 528432, 'will remember': 994638, 'be business': 113925, 'usual after': 950877, 'all pass': 43923, 'pass listen': 643209, 'our latest episode': 623661, 'latest episode and': 481320, 'episode and debate': 279514, 'and debate whether': 60997, 'debate whether the': 230327, 'whether the collective': 985579, 'the collective memory': 851156, 'collective memory of': 186513, 'memory of the': 528433, 'consumer will remember': 199550, 'will remember the': 994642, 'remember the company': 710303, 'company who do': 191317, 'who do the': 988621, 'right thing in': 722311, 'thing in this': 884442, 'of crisis or': 582181, 'crisis or will': 217834, 'or will it': 617809, 'will it be': 993861, 'it be business': 456725, 'be business usual': 113926, 'business usual after': 144597, 'usual after this': 950878, 'after this all': 36399, 'this all pass': 886269, 'all pass listen': 43925, 'highlighted': 395981, 'really ha': 702248, 'ha highlighted': 370866, 'highlighted the': 396001, 'sheer stupidity': 756586, 'stupidity greed': 815532, 'greed and': 363358, 'and selfishness': 71201, 'particular panic': 642630, 'buying whilst': 151360, 'vulnerable get': 960972, 'get nothing': 347673, 'nothing why': 573222, 'shopping moron': 763294, 'this virus really': 891021, 'virus really ha': 958670, 'really ha highlighted': 702251, 'ha highlighted the': 370867, 'highlighted the sheer': 396003, 'the sheer stupidity': 866817, 'sheer stupidity greed': 756587, 'stupidity greed and': 815533, 'greed and selfishness': 363363, 'and selfishness of': 71204, 'uk and the': 938176, 'and the in': 73420, 'the in particular': 858013, 'in particular panic': 426535, 'particular panic buying': 642631, 'panic buying whilst': 637965, 'buying whilst the': 151361, 'whilst the elderly': 987695, 'and vulnerable get': 75054, 'vulnerable get nothing': 960974, 'get nothing why': 347676, 'nothing why there': 573223, 'why there will': 991447, 'there will still': 879366, 'will still be': 994976, 'still be food': 800252, 'be food and': 114894, 'food and you': 313387, 'and you will': 76057, 'you will still': 1022355, 'still be able': 800242, 'go shopping moron': 354119, 'makinde': 510932, 'upgrading': 947540, 'medica': 526011, 'alibaba': 41705, 'riseandshine': 723083, 'think makinde': 885385, 'makinde should': 510935, 'should tell': 766560, 'how he': 407977, 'he spent': 385460, 'spent billion': 789116, '19 lab': 8263, 'lab upgrading': 478312, 'upgrading that': 947545, 'that lab': 844833, 'lab doesn': 478256, 'doesn cost': 251737, '50 million': 19755, 'million you': 532436, 'can google': 158523, 'google the': 358192, 'those medica': 892198, 'medica equipment': 526012, 'equipment on': 279793, 'on alibaba': 599215, 'alibaba riseandshine': 41722, 'think makinde should': 885386, 'makinde should tell': 510936, 'should tell how': 766563, 'tell how he': 836981, 'how he spent': 407983, 'he spent billion': 385462, 'spent billion on': 789117, 'billion on covid': 130878, 'covid 19 lab': 213330, '19 lab upgrading': 8264, 'lab upgrading that': 478313, 'upgrading that lab': 947546, 'that lab doesn': 844834, 'lab doesn cost': 478257, 'doesn cost more': 251738, 'cost more than': 208021, 'than 50 million': 840259, '50 million you': 19757, 'million you can': 532437, 'you can google': 1017686, 'can google the': 158524, 'google the price': 358195, 'price of those': 675591, 'of those medica': 592101, 'those medica equipment': 892199, 'medica equipment on': 526013, 'equipment on alibaba': 279794, 'on alibaba riseandshine': 599216, 'create grocery': 215655, 'for only': 324119, 'only smart': 611157, 'smart people': 775405, 'that cheap': 843206, 'cheap walmart': 174228, 'walmart with': 965477, 'with name': 999669, 'name brand': 551618, 'brand product': 137974, 'product because': 681006, 'because ve': 119766, 'with walmart': 1002018, 'walmart customer': 965306, 'customer 19': 222010, 'they should create': 883358, 'should create grocery': 765887, 'create grocery store': 215656, 'store for only': 807826, 'for only smart': 324126, 'only smart people': 611158, 'smart people that': 775406, 'people that cheap': 649756, 'that cheap walmart': 843208, 'cheap walmart with': 174229, 'walmart with name': 965478, 'with name brand': 999670, 'name brand product': 551620, 'brand product because': 137975, 'product because ve': 681009, 'because ve had': 119769, 've had it': 953223, 'had it with': 373215, 'it with walmart': 462483, 'with walmart customer': 1002019, 'walmart customer 19': 965307, 'spanner': 787425, 'march 19': 515112, '19 put': 9891, 'put spanner': 690833, 'spanner on': 787426, 'chain raising': 171022, 'raising concern': 696070, 'of deflation': 582471, 'consumer price fell': 198420, 'price fell by': 673847, 'fell by the': 303184, 'most in year': 542440, 'in year in': 431025, 'in march 19': 425072, 'march 19 put': 515117, '19 put spanner': 9895, 'put spanner on': 690834, 'spanner on demand': 787427, 'on demand supply': 600289, 'demand supply chain': 236292, 'supply chain raising': 825014, 'chain raising concern': 171023, 'raising concern of': 696072, 'concern of deflation': 193021, 'daughter went': 226918, 'morning stood': 541469, 'stood outside': 804383, 'and when': 75507, 'when finally': 983415, 'finally allowed': 305938, 'were already': 979299, 'already empty': 47312, 'empty from': 274887, 'from bread': 334728, 'and ice': 64917, 'cream blue': 215532, 'blue in': 133448, 'my daughter went': 547939, 'daughter went to': 226919, 'this morning stood': 889021, 'morning stood outside': 541470, 'stood outside in': 804384, 'outside in long': 629462, 'line for more': 493109, 'more than half': 540626, 'than half hour': 840717, 'half hour and': 374184, 'hour and when': 405425, 'and when finally': 75512, 'when finally allowed': 983416, 'finally allowed in': 305939, 'in the shelf': 429544, 'shelf were already': 757764, 'were already empty': 979302, 'already empty from': 47313, 'empty from bread': 274888, 'from bread tp': 334730, 'bread tp and': 138627, 'tp and ice': 927742, 'and ice cream': 64918, 'ice cream blue': 412650, 'cream blue in': 215533, 'blue in texas': 133450, 'done news': 254945, 'news india': 560539, 'india want': 434672, 'want hear': 965806, 'hear positive': 387978, 'this hindustan': 887921, 'economic time': 267339, 'well done news': 978193, 'done news india': 254946, 'news india want': 560541, 'india want hear': 434673, 'want hear positive': 965807, 'hear positive thing': 387979, 'positive thing like': 665464, 'thing like this': 884552, 'like this hindustan': 491494, 'this hindustan unilever': 887922, '19 the economic': 11187, 'the economic time': 853921, 'chime': 176426, 'nice article': 562345, 'lost or': 503899, 'job chime': 465739, 'chime in': 176427, 'end urging': 276050, 'here is nice': 393240, 'is nice article': 449898, 'nice article by': 562346, 'challenge people are': 171529, 'going to face': 355594, 'to face paying': 905570, 've lost or': 953349, 'lost or been': 503900, 'off from their': 593852, 'from their job': 337941, 'their job chime': 873706, 'job chime in': 465740, 'chime in at': 176428, 'in at the': 420556, 'the end urging': 854309, 'end urging people': 276051, 'urging people to': 948444, 'surrogate': 828709, 'bodth': 133812, 'game for': 343172, 'most often': 542575, 'often picked': 596256, 'picked from': 655790, 'shelf by': 756913, 'by surrogate': 154184, 'surrogate shopper': 828712, 'and either': 61986, 'either picked': 270359, 'store bopis': 806746, 'bopis or': 135197, 'or delivered': 614925, 'home bodth': 400799, 'bodth supplychain': 133813, 'changed the game': 172565, 'the game for': 856120, 'game for grocery': 343173, 'shopping online grocery': 763437, 'online grocery order': 608323, 'grocery order are': 364809, 'order are most': 618053, 'are most often': 88139, 'most often picked': 542576, 'often picked from': 596257, 'picked from store': 655791, 'from store shelf': 337446, 'store shelf by': 810064, 'shelf by surrogate': 756919, 'by surrogate shopper': 154185, 'surrogate shopper and': 828713, 'shopper and either': 761360, 'and either picked': 61987, 'either picked up': 270360, 'picked up in': 655813, 'in store bopis': 428388, 'store bopis or': 806748, 'bopis or delivered': 135198, 'or delivered to': 614927, 'delivered to home': 233423, 'to home bodth': 907927, 'home bodth supplychain': 400800, 'stein': 799439, 'pandemic north': 636048, 'carolina attorney': 164832, 'general josh': 345389, 'josh stein': 467345, 'stein ha': 799442, 'ha reminded': 371716, 'reminded the': 710536, 'to charge': 902631, 'charge excessive': 173222, 'during state': 263048, '19 pandemic north': 9408, 'pandemic north carolina': 636049, 'north carolina attorney': 567628, 'carolina attorney general': 164833, 'attorney general josh': 102649, 'general josh stein': 345390, 'josh stein ha': 467347, 'stein ha reminded': 799443, 'ha reminded the': 371717, 'reminded the public': 710537, 'public that it': 688353, 'it is illegal': 458981, 'is illegal to': 448671, 'illegal to charge': 416249, 'to charge excessive': 902636, 'charge excessive price': 173223, 'excessive price during': 289403, 'price during state': 673632, 'during state of': 263049, 'gavin': 344685, 'governor gavin': 360903, 'gavin newsom': 344686, 'newsom announced': 561062, 'new public': 559373, 'public awareness': 687887, 'awareness campaign': 105693, 'campaign to': 157263, 'provide useful': 686531, 'useful information': 950168, 'information to': 438006, 'to californian': 902368, 'californian visit': 155658, 'new user': 559816, 'governor gavin newsom': 360904, 'gavin newsom announced': 344687, 'newsom announced the': 561063, 'announced the launch': 77081, 'launch of new': 481933, 'of new public': 586981, 'new public awareness': 559374, 'public awareness campaign': 687888, 'awareness campaign to': 105695, 'campaign to provide': 157265, 'to provide useful': 912447, 'provide useful information': 686533, 'useful information to': 950171, 'information to californian': 438008, 'to californian visit': 902370, 'californian visit the': 155659, 'visit the new': 959388, 'the new user': 861575, 'new user friendly': 559818, 'retweeting': 720108, 'congregating': 194466, 'retweeting this': 720115, 'video because': 956631, 'of dozen': 582807, 'dozen ve': 257926, 'seen on': 747166, 'twitter in': 936675, 'of asian': 580390, 'asian looking': 95299, 'looking men': 502970, 'men congregating': 528471, 'congregating in': 194471, 'supermarket stocking': 822972, 'roll pasta': 725467, 'pasta hand': 643736, 'gel etc': 345111, 'etc then': 282799, 'at huge': 99246, 'huge price': 410138, 'in corner': 421790, 'retweeting this video': 720116, 'this video because': 890976, 'video because it': 956632, 'because it one': 119197, 'it one of': 460076, 'one of dozen': 606740, 'of dozen ve': 582809, 'dozen ve seen': 257927, 've seen on': 953541, 'seen on twitter': 747169, 'on twitter in': 604921, 'twitter in recent': 936676, 'recent day of': 703864, 'day of asian': 228055, 'of asian looking': 580391, 'asian looking men': 95300, 'looking men congregating': 502971, 'men congregating in': 528472, 'congregating in supermarket': 194473, 'in supermarket stocking': 428677, 'supermarket stocking up': 822976, 'up on toilet': 945633, 'on toilet roll': 604782, 'toilet roll pasta': 921597, 'roll pasta hand': 725468, 'pasta hand gel': 643737, 'hand gel etc': 374978, 'gel etc then': 345112, 'etc then selling': 282802, 'then selling them': 877516, 'selling them at': 749491, 'them at huge': 875442, 'at huge price': 99249, 'huge price in': 410140, 'price in corner': 674676, 'in corner shop': 421792, 'corner shop supermarket': 203678, 'shop supermarket pharmacy': 760866, 'eustice': 283650, 'uk have': 938440, 'others such': 621676, 'such nh': 816648, 'worker after': 1006207, 'buying amid': 149887, 'outbreak environment': 628193, 'environment secretary': 279147, 'secretary eustice': 743950, 'eustice said': 283655, 'said there': 731462, 'around but': 93236, 'for shop': 325562, 'is keeping': 449169, 'the uk have': 870232, 'uk have been': 938442, 'told to be': 923744, 'responsible and think': 716004, 'of others such': 587405, 'others such nh': 621677, 'such nh worker': 816649, 'nh worker after': 562169, 'worker after panic': 1006209, 'panic buying amid': 637640, 'buying amid the': 149889, 'the outbreak environment': 862616, 'outbreak environment secretary': 628194, 'environment secretary eustice': 279148, 'secretary eustice said': 743951, 'eustice said there': 283656, 'said there is': 731463, 'enough food to': 277419, 'food to go': 317258, 'go around but': 353309, 'around but the': 93239, 'but the challenge': 147316, 'the challenge for': 850642, 'challenge for shop': 171467, 'for shop is': 325565, 'shop is keeping': 760359, 'is keeping shelf': 449177, 'eliminate': 271440, 'taking some': 833572, 'some precaution': 783619, 'precaution use': 669396, 'our alcohol': 622047, 'to eliminate': 904987, 'eliminate the': 271462, 'any medical': 79458, 'help contact': 389526, 'contact stayhome': 200208, 'staysafe indiafightscoronavirus': 798834, 'indiafightscoronavirus sanitizers': 434746, 'by taking some': 154207, 'taking some precaution': 833573, 'some precaution use': 783621, 'precaution use our': 669397, 'use our alcohol': 949456, 'our alcohol based': 622048, 'sanitizer to eliminate': 735917, 'to eliminate the': 904994, 'eliminate the coronavirus': 271463, 'the coronavirus from': 851853, 'coronavirus from your': 205959, 'from your hand': 338478, 'hand for any': 374944, 'for any medical': 319415, 'any medical help': 79459, 'medical help contact': 526209, 'help contact stayhome': 389529, 'contact stayhome staysafe': 200209, 'stayhome staysafe indiafightscoronavirus': 798169, 'staysafe indiafightscoronavirus sanitizers': 798835, 'london where': 501229, 'gone stophoarding': 356375, 'london where all': 501230, 'food gone stophoarding': 314688, 'gone stophoarding panicbuyinguk': 356376, 'chronic': 178229, 'mindful know': 532810, 'over stock': 630646, 'pls keep': 661147, 'will restock': 994671, 'restock there': 716931, 'are older': 88710, 'have chronic': 379970, 'chronic illness': 178232, 'illness that': 416398, 'home empty': 401135, 'please be mindful': 659706, 'be mindful know': 115943, 'mindful know it': 532811, 'know it easy': 476527, 'buy and over': 148329, 'and over stock': 68562, 'over stock for': 630648, 'stock for food': 802167, 'for food but': 321566, 'food but pls': 313829, 'but pls keep': 146813, 'pls keep in': 661148, 'mind that the': 532736, 'supermarket will restock': 823891, 'will restock there': 994672, 'restock there are': 716932, 'there are those': 878176, 'are those that': 91060, 'that are older': 842789, 'are older or': 88711, 'older or have': 598636, 'or have chronic': 615580, 'have chronic illness': 379971, 'chronic illness that': 178235, 'illness that can': 416399, 'that can not': 843112, 'afford to come': 34792, 'come back home': 187239, 'back home empty': 107056, 'home empty handed': 401136, '19 many': 8541, 'food may': 315415, 'may experience': 521157, 'experience wage': 291525, 'face unexpected': 294827, 'unexpected expense': 941366, 'such childcare': 816390, 'additional meal': 31841, 'meal let': 524205, 'other visit': 621173, 'give today': 350799, 'covid 19 many': 213399, '19 many people': 8547, 'many people cannot': 514496, 'on food may': 600883, 'food may experience': 315416, 'may experience wage': 521159, 'experience wage and': 291526, 'wage and job': 963813, 'loss and face': 503634, 'and face unexpected': 62587, 'face unexpected expense': 294828, 'unexpected expense such': 941367, 'expense such childcare': 291208, 'such childcare and': 816391, 'childcare and additional': 176287, 'and additional meal': 57681, 'additional meal let': 31842, 'meal let take': 524206, 'each other visit': 264231, 'other visit to': 621174, 'visit to give': 959409, 'to give today': 906723, 'leasing': 484312, 'arctic': 84074, 'drilling': 258781, 'precipitous': 669488, 'trump budget': 933449, 'budget call': 141763, 'in revenue': 427487, 'from leasing': 336206, 'leasing sale': 484319, 'the arctic': 848853, 'arctic national': 84077, 'national wildlife': 552641, 'wildlife refuge': 992137, 'refuge but': 706825, 'but between': 145296, 'between bank': 128730, 'bank saying': 110155, 'they won': 883904, 'won finance': 1003806, 'finance arctic': 306159, 'arctic drilling': 84075, 'drilling the': 258786, 'the precipitous': 864218, 'precipitous drop': 669489, 'coronavirus expert': 205901, 'that highly': 844328, 'highly unlikely': 396108, 'trump budget call': 933450, 'budget call for': 141764, 'call for billion': 155855, 'billion in revenue': 130853, 'in revenue from': 427489, 'revenue from leasing': 720419, 'from leasing sale': 336207, 'leasing sale in': 484320, 'sale in the': 732306, 'in the arctic': 428982, 'the arctic national': 848854, 'arctic national wildlife': 84078, 'national wildlife refuge': 552642, 'wildlife refuge but': 992138, 'refuge but between': 706826, 'but between bank': 145297, 'between bank saying': 128731, 'bank saying they': 110156, 'saying they won': 739733, 'they won finance': 883910, 'won finance arctic': 1003807, 'finance arctic drilling': 306160, 'arctic drilling the': 84076, 'drilling the precipitous': 258787, 'the precipitous drop': 864219, 'precipitous drop in': 669490, 'price and coronavirus': 672382, 'and coronavirus expert': 60572, 'coronavirus expert say': 205902, 'expert say that': 291960, 'say that highly': 739235, 'that highly unlikely': 844330, 'siege': 768978, 'work together': 1005914, 'together britain': 920731, 'britain supermarket': 140450, 'under siege': 940250, 'siege by': 768979, 'by customer': 152276, 'if we all': 415263, 'we all work': 970379, 'all work together': 45497, 'work together britain': 1005917, 'together britain supermarket': 920732, 'britain supermarket are': 140451, 'supermarket are under': 819191, 'are under siege': 91286, 'under siege by': 940251, 'siege by customer': 768980, 'aaron': 24142, 'smith hello': 775797, 'hello aaron': 389120, 'aaron we': 24151, 'have flexible': 380637, 'flexible relief': 310395, 'relief program': 709440, 'program for': 683245, 'card client': 163485, 'client we': 182126, 'client during': 182027, 'smith hello aaron': 775798, 'hello aaron we': 389121, 'aaron we have': 24152, 'we have flexible': 971817, 'have flexible relief': 380638, 'flexible relief program': 310396, 'relief program for': 709442, 'program for our': 683247, 'and business credit': 59276, 'business credit card': 143596, 'credit card client': 216329, 'card client we': 163486, 'client we encourage': 182128, 'encourage you visit': 275646, 'you visit to': 1022089, 'about how we': 25483, 'supporting our client': 827166, 'our client during': 622394, 'client during this': 182028, 'during this critical': 263275, 'talking to': 834039, 'got angry': 358403, 'angry she': 76493, 'you journalist': 1019410, 'journalist need': 467445, 'stop calling': 804563, 'calling hero': 156570, 'and angel': 58144, 'angel and': 76297, 'start asking': 794205, 'nh over': 562036, 'last ten': 480534, 'ten year': 837811, 'stop saying': 804975, 'while in line': 986948, 'the supermarket started': 868821, 'supermarket started talking': 822922, 'started talking to': 794847, 'talking to the': 834055, 'to the nurse': 916910, 'the nurse she': 861985, 'nurse she got': 577478, 'she got angry': 756058, 'got angry she': 358405, 'angry she said': 76494, 'she said you': 756316, 'said you journalist': 731609, 'you journalist need': 1019411, 'journalist need to': 467446, 'to stop calling': 915509, 'stop calling hero': 804564, 'calling hero and': 156571, 'hero and angel': 393927, 'and angel and': 58145, 'angel and start': 76298, 'and start asking': 72236, 'start asking the': 794206, 'asking the government': 96076, 'government what they': 360798, 'what they have': 982402, 'have done to': 380340, 'done to the': 255078, 'the nh over': 861754, 'nh over the': 562037, 'the last ten': 859046, 'last ten year': 480535, 'ten year and': 837813, 'year and stop': 1014404, 'and stop saying': 72484, 'stop saying it': 804977, 'saying it battle': 739623, 'lower income': 505882, 'income country': 432308, 'face perfect': 294704, 'lower commodity': 505813, 'now debt': 574503, 'debt cancellation': 230432, 'cancellation is': 161030, 'needed urgently': 556564, 'urgently great': 948387, 'great work': 363112, 'lower income country': 505884, 'income country face': 432309, 'country face perfect': 210635, 'face perfect storm': 294705, 'storm of lower': 811825, 'of lower commodity': 586050, 'lower commodity price': 505814, 'commodity price high': 189274, 'price high level': 674512, 'level of debt': 487629, 'of debt and': 582428, 'debt and now': 230422, 'and now debt': 67826, 'now debt cancellation': 574504, 'debt cancellation is': 230433, 'cancellation is needed': 161031, 'is needed urgently': 449868, 'needed urgently great': 556565, 'urgently great work': 948388, 'great work by': 363114, 'remind inform': 710485, 'inform your': 437675, 'member friend': 528087, 'friend neighbor': 333720, 'neighbor of': 557062, 'these persistent': 880469, 'persistent scammer': 652271, 'have absolutely': 379109, 'no moral': 564791, 'moral and': 538394, 'stop at': 804461, 'at nothing': 99921, 'money or': 536952, 'or personal': 616558, 'sure to remind': 827778, 'to remind inform': 913199, 'remind inform your': 710486, 'inform your family': 437678, 'your family member': 1023793, 'family member friend': 298033, 'member friend neighbor': 528088, 'friend neighbor of': 333722, 'neighbor of these': 557064, 'of these persistent': 591848, 'these persistent scammer': 880470, 'persistent scammer who': 652272, 'scammer who have': 740654, 'who have absolutely': 988904, 'have absolutely no': 379110, 'absolutely no moral': 27401, 'no moral and': 564792, 'moral and will': 538395, 'and will stop': 75697, 'will stop at': 994995, 'stop at nothing': 804463, 'at nothing to': 99922, 'nothing to get': 573192, 'get your money': 348715, 'your money or': 1024868, 'money or personal': 536957, 'or personal information': 616559, 'idahoan': 412976, '208': 14868, '334': 17789, 'the ag': 848427, 'ag consumer': 36777, 'office in': 595447, 'in boise': 420892, 'boise is': 134067, 'to visitor': 918218, 'visitor due': 959589, 'concern idahoan': 192995, 'idahoan with': 412979, 'question may': 693647, 'may continue': 521099, 'at 208': 97521, '208 334': 14869, '334 2424': 17790, '2424 and': 15732, 'and file': 62840, 'complaint at': 191946, 'the ag consumer': 848428, 'ag consumer protection': 36779, 'protection division office': 685399, 'division office in': 248686, 'office in boise': 595448, 'in boise is': 420893, 'boise is closed': 134068, 'closed to visitor': 183403, 'to visitor due': 918219, 'visitor due to': 959590, '19 concern idahoan': 5919, 'concern idahoan with': 192996, 'idahoan with consumer': 412980, 'with consumer related': 997765, 'consumer related question': 198677, 'related question may': 708529, 'question may continue': 693648, 'may continue to': 521100, 'continue to call': 201168, 'to call the': 902388, 'call the office': 156136, 'the office at': 862068, 'office at 208': 595374, 'at 208 334': 97522, '208 334 2424': 14870, '334 2424 and': 17791, '2424 and file': 15733, 'and file complaint': 62841, 'file complaint at': 305331, 'e14': 263964, 'in east': 422458, 'east india': 265311, 'india e14': 434385, 'e14 london': 263965, 'london ha': 501080, '20 on': 13223, 'on critical': 600166, 'critical food': 218559, 'item such': 463668, 'such egg': 816464, 'egg it': 269897, 'it shame': 460996, 'their advantage': 872473, 'advantage stockpilinguk': 33063, 'stockpilinguk coronacrisisuk': 804141, 'in east india': 422460, 'east india e14': 265312, 'india e14 london': 434386, 'e14 london ha': 263966, 'london ha increased': 501082, 'ha increased price': 370956, 'increased price by': 433411, 'price by 20': 673004, 'by 20 on': 151572, '20 on critical': 13224, 'on critical food': 600168, 'critical food item': 218560, 'food item such': 315232, 'item such egg': 463670, 'such egg it': 816465, 'egg it shame': 269898, 'it shame to': 460998, 'shame to be': 754659, 'to be using': 901618, 'be using this': 117948, 'using this situation': 950754, 'this situation for': 890175, 'situation for their': 772278, 'for their advantage': 326796, 'their advantage stockpilinguk': 872474, 'advantage stockpilinguk coronacrisisuk': 33064, 'hi jeff': 394676, 'jeff well': 465022, 'hi jeff well': 394677, 'jeff well fargo': 465023, 'postcruise': 666505, '98': 23716, 'telework': 836878, 'debating': 230331, '14daypostcruisecountdown': 3606, 'stopcorona': 805320, 'cruiseship': 219721, '14 postcruise': 3518, 'postcruise 98': 666506, '98 degree': 23725, 'degree all': 232563, 'all is': 43246, 'well in': 978311, 'in telework': 428860, 'telework land': 836879, 'land debating': 479260, 'debating if': 230334, 'if should': 414800, 'try grocery': 934486, 'cleaner bet': 180757, 'bet they': 128112, 'business 14daypostcruisecountdown': 143202, '14daypostcruisecountdown stopcorona': 3607, 'stopcorona 19': 805321, '19 cruise': 6367, 'cruise cruiseship': 219696, 'day of 14': 228047, 'of 14 postcruise': 579354, '14 postcruise 98': 3519, 'postcruise 98 degree': 666507, '98 degree all': 23726, 'degree all is': 232564, 'all is well': 43257, 'is well in': 453845, 'well in telework': 978314, 'in telework land': 428861, 'telework land debating': 836880, 'land debating if': 479261, 'debating if should': 230335, 'if should try': 414806, 'should try grocery': 766605, 'try grocery store': 934487, 'store do go': 807329, 'go to cleaner': 354291, 'to cleaner bet': 902819, 'cleaner bet they': 180758, 'bet they need': 128117, 'need the business': 555740, 'the business 14daypostcruisecountdown': 850159, 'business 14daypostcruisecountdown stopcorona': 143203, '14daypostcruisecountdown stopcorona 19': 3608, 'stopcorona 19 cruise': 805322, '19 cruise cruiseship': 6368, 'deodorant': 237168, 'overkill': 631263, 'can smell': 159645, 'smell your': 775627, 'your perfume': 1025253, 'perfume shampoo': 651536, 'shampoo deodorant': 754774, 'deodorant or': 237173, 're too': 699722, 'too fucking': 924757, 'fucking close': 339830, 'close also': 182513, 'also that': 48966, 'that overkill': 845621, 'if can smell': 413932, 'can smell your': 159647, 'smell your perfume': 775629, 'your perfume shampoo': 1025254, 'perfume shampoo deodorant': 651537, 'shampoo deodorant or': 754775, 'deodorant or hand': 237174, 'sanitizer you re': 736170, 'you re too': 1020777, 're too fucking': 699724, 'too fucking close': 924758, 'fucking close also': 339831, 'close also that': 182514, 'also that overkill': 48967, 'rundown': 727875, 'to event': 905293, 'cancellation read': 161055, 'read rundown': 700537, 'rundown of': 727878, 'store closure to': 807110, 'closure to event': 184049, 'to event cancellation': 905294, 'event cancellation read': 284958, 'cancellation read rundown': 161057, 'read rundown of': 700538, 'rundown of how': 727879, 'how the industry': 408838, 'the industry is': 858177, 'industry is coping': 435927, 'consumed': 195958, 'while supermarket': 987349, 'meat sale': 525726, 'up since': 945996, 'fish is': 309323, 'is consumed': 446784, 'consumed in': 195967, 'restaurant fishing': 716470, 'fishing revenue': 309410, 'revenue are': 720379, 'down 85': 256435, '85 percent': 22930, 'while supermarket meat': 987350, 'supermarket meat sale': 821497, 'meat sale are': 525727, 'sale are way': 732073, 'are way up': 91553, 'way up since': 970147, 'up since the': 946000, 'since the vast': 770912, 'majority of fish': 509559, 'of fish is': 583561, 'fish is consumed': 309324, 'is consumed in': 446785, 'consumed in restaurant': 195968, 'in restaurant fishing': 427434, 'restaurant fishing revenue': 716471, 'fishing revenue are': 309411, 'revenue are now': 720382, 'are now down': 88544, 'now down 85': 574563, 'down 85 percent': 256436, '2500': 16028, 'bedroom': 120454, '1700': 4423, 'serious discussion': 751369, 'discussion on': 245034, 'cause when': 167795, 'over most': 630414, 'the 1500': 847897, '1500 2500': 3932, '2500 in': 16031, 'in monthly': 425425, 'monthly rent': 538193, 'rent fee': 711083, 'fee my': 302198, 'my bedroom': 547418, 'bedroom is': 120459, 'is 1700': 445169, '1700 per': 4426, 'month what': 538110, 'do when': 250524, 'economy collapse': 267761, 'collapse it': 186025, 'it 5k': 456216, 'move or': 543707, 'be homeless': 115286, 'homeless loss': 402753, 'loss everything': 503668, 'can we have': 160176, 'we have serious': 971935, 'have serious discussion': 382473, 'serious discussion on': 751370, 'discussion on rent': 245037, 'on rent price': 603146, 'rent price cause': 711157, 'price cause when': 673092, 'cause when is': 167796, 'when is over': 983617, 'is over most': 450714, 'over most of': 630415, 'most of will': 542569, 'of will not': 593171, 'able to afford': 24447, 'to afford the': 900161, 'afford the 1500': 34767, 'the 1500 2500': 847898, '1500 2500 in': 3933, '2500 in monthly': 16032, 'in monthly rent': 425427, 'monthly rent fee': 538194, 'rent fee my': 711084, 'fee my bedroom': 302199, 'my bedroom is': 547419, 'bedroom is 1700': 120460, 'is 1700 per': 445170, '1700 per month': 4427, 'per month what': 650951, 'month what will': 538112, 'what will we': 982612, 'will we do': 995323, 'we do when': 971361, 'do when the': 250528, 'when the economy': 984147, 'the economy collapse': 853951, 'economy collapse it': 267763, 'collapse it 5k': 186026, 'it 5k to': 456217, '5k to move': 20721, 'to move or': 910314, 'move or be': 543708, 'or be homeless': 614511, 'be homeless loss': 115288, 'homeless loss everything': 402754, 'sympathiser': 830785, 'those ashley': 891813, 'ashley sympathiser': 95118, 'sympathiser amongst': 830786, 'amongst support': 53141, 'support forget': 826529, 'about his': 25391, 'his crime': 397331, 'crime against': 216766, 'against our': 37572, 'our beloved': 622180, 'beloved club': 126535, 'club remember': 184473, 'he put': 385316, 'up his': 945088, 'his price': 397728, '19 killing': 8239, 'for all those': 319180, 'all those ashley': 45158, 'those ashley sympathiser': 891814, 'ashley sympathiser amongst': 95119, 'sympathiser amongst support': 830787, 'amongst support forget': 53142, 'support forget about': 826530, 'forget about his': 329221, 'about his crime': 25394, 'his crime against': 397332, 'crime against our': 216767, 'against our beloved': 37573, 'our beloved club': 622181, 'beloved club remember': 126536, 'club remember how': 184474, 'remember how he': 710205, 'how he put': 407981, 'he put up': 385318, 'put up his': 690964, 'up his price': 945090, 'his price with': 397732, 'price with covid': 677607, 'covid 19 killing': 213321, '19 killing people': 8241, 'killing people in': 474706, 'those empty': 891964, 'empty aisle': 274743, 'america largest': 51589, 'explains why': 292257, 'worried about those': 1010525, 'about those empty': 26678, 'those empty aisle': 891965, 'empty aisle in': 274745, 'store we talk': 811182, 'talk to the': 833893, 'ceo of america': 169767, 'of america largest': 580042, 'america largest supermarket': 51593, 'chain and he': 170465, 'and he explains': 64315, 'he explains why': 384946, 'explains why you': 292265, 'should not panic': 766258, 'limited water': 492796, 'supply sign': 825858, 'sign during': 769112, 'limited water supply': 492797, 'water supply sign': 969189, 'supply sign during': 825859, '07708913141': 1045, 'ease consumer': 265076, 'consumer economic': 197291, 'economic plight': 267201, 'plight during': 661048, 'during uklockdown': 263374, 'uklockdown are': 938987, 'offering 25': 595000, '25 discount': 15860, 'discount off': 244501, 'new spirit': 559627, 'spirit natural': 789486, 'natural supplement': 552869, 'supplement see': 824424, 'see super': 745761, 'no membership': 564760, 'membership sign': 528286, 'up fee': 944845, 'fee get': 302179, 'get free': 347088, 'free nutrition': 332008, 'nutrition advice': 577709, 'advice before': 33327, 'buy uk': 149407, 'uk call': 938233, 'on 07708913141': 598984, 'help ease consumer': 389620, 'ease consumer economic': 265077, 'consumer economic plight': 197293, 'economic plight during': 267202, 'plight during uklockdown': 661049, 'during uklockdown are': 263375, 'uklockdown are offering': 938988, 'are offering 25': 88654, 'offering 25 discount': 595001, '25 discount off': 15861, 'discount off all': 244502, 'off all new': 593624, 'all new spirit': 43627, 'new spirit natural': 559629, 'spirit natural supplement': 789487, 'natural supplement see': 552870, 'supplement see super': 824425, 'see super low': 745762, 'super low price': 818537, 'low price with': 505553, 'price with no': 677620, 'with no membership': 999766, 'no membership sign': 564762, 'membership sign up': 528287, 'sign up fee': 769250, 'up fee get': 944846, 'fee get free': 302180, 'get free nutrition': 347093, 'free nutrition advice': 332009, 'nutrition advice before': 577710, 'advice before you': 33328, 'before you buy': 123317, 'you buy uk': 1017588, 'buy uk call': 149408, 'uk call on': 938234, 'call on 07708913141': 156025, 'unfairly': 941452, 'made criminal': 507701, 'criminal offence': 216861, 'offence for': 594457, 'to unfairly': 917931, 'unfairly profit': 941464, 'selling ordinary': 749386, 'ordinary product': 619095, 'at greatly': 98803, 'greatly inflated': 363323, 'price retweet': 676208, 'retweet if': 720054, 'you agree': 1016849, '19 it should': 8151, 'should be made': 765673, 'be made criminal': 115864, 'made criminal offence': 507702, 'criminal offence for': 216862, 'offence for people': 594458, 'people to unfairly': 649960, 'to unfairly profit': 917933, 'unfairly profit from': 941465, 'from this situation': 338010, 'situation by selling': 772213, 'by selling ordinary': 153929, 'selling ordinary product': 749387, 'ordinary product at': 619096, 'product at greatly': 680969, 'at greatly inflated': 98804, 'greatly inflated price': 363324, 'inflated price retweet': 437065, 'price retweet if': 676209, 'retweet if you': 720055, 'if you agree': 415388, '007': 649, '007 is': 650, 'crisis period': 217866, 'period when': 651922, 'and daily': 60910, 'daily wage': 224871, 'worker along': 1006230, 'with migrant': 999500, 'in ap': 420444, '007 is it': 651, 'is it very': 449073, 'it very bad': 462024, 'very bad to': 955003, 'bad to see': 108056, 'to see this': 914087, 'see this kind': 745948, 'kind of activity': 474871, 'of activity in': 579759, 'activity in this': 30445, '19 crisis period': 6299, 'crisis period when': 217867, 'period when our': 651923, 'when our farmer': 983826, 'our farmer are': 623021, 'farmer are in': 299282, 'are in panic': 87421, 'in panic and': 426474, 'panic and daily': 637307, 'and daily wage': 60916, 'daily wage worker': 224875, 'wage worker along': 963999, 'worker along with': 1006231, 'along with migrant': 47065, 'with migrant worker': 999502, 'migrant worker are': 531227, 'worker are not': 1006408, 'are not getting': 88378, 'not getting food': 569625, 'getting food in': 348984, 'food in ap': 314925, 'scamming': 740664, 'aft': 35255, 'hve': 411873, 'wa stupid': 963340, 'stupid in': 815404, 'in inflating': 424093, 'of scamming': 589377, 'scamming supplying': 740674, 'supplying fake': 826281, 'fake low': 296650, 'quality ppe': 691835, 'ppe mask': 667997, 'ventilator test': 954616, 'kit etc': 475538, 'very high': 955226, 'tech aft': 836028, 'aft bit': 35256, 'of struggle': 590313, 'struggle most': 814360, 'most nation': 542519, 'nation can': 552140, 'make them': 510601, 'them hve': 875875, 'hve started': 411876, 'started to': 794863, 'll know': 496873, 'they stand': 883434, 'china wa stupid': 177045, 'wa stupid in': 963341, 'stupid in inflating': 815405, 'in inflating price': 424094, 'inflating price of': 437120, 'price of scamming': 675567, 'of scamming supplying': 589378, 'scamming supplying fake': 740675, 'supplying fake low': 826282, 'fake low quality': 296651, 'low quality ppe': 505564, 'quality ppe mask': 691836, 'ppe mask ventilator': 667999, 'mask ventilator test': 519479, 'ventilator test kit': 954617, 'test kit etc': 839054, 'kit etc these': 475539, 'etc these are': 282809, 'these are not': 879626, 'are not very': 88494, 'not very high': 572390, 'very high tech': 955235, 'high tech aft': 395448, 'tech aft bit': 836029, 'aft bit of': 35257, 'bit of struggle': 131666, 'of struggle most': 590315, 'struggle most nation': 814361, 'most nation can': 542520, 'nation can make': 552141, 'can make them': 158952, 'make them hve': 510608, 'them hve started': 875876, 'hve started to': 411877, 'started to now': 794877, 'to now they': 910747, 'now they ll': 576111, 'they ll know': 882603, 'll know where': 496875, 'know where they': 477018, 'where they stand': 985286, 'confidence report': 193941, 'available including': 104459, 'including week': 432248, 'week change': 976082, 'new question': 559387, 'act some': 29770, 'some insurer': 783128, 'insurer decision': 440877, 'waive coronavirus': 964507, 'treatment cost': 931052, 'cost download': 207910, 'full summary': 340909, 'summary report': 817942, 'data from week': 226241, 'from week of': 338323, 'week of our': 976633, 'our consumer confidence': 622530, 'consumer confidence report': 196915, 'confidence report is': 193942, 'report is now': 712052, 'now available including': 574159, 'available including week': 104461, 'including week over': 432249, 'over week change': 630910, 'week change and': 976083, 'change and new': 171920, 'and new question': 67557, 'new question about': 559388, 'question about the': 693506, 'about the care': 26348, 'care act some': 163821, 'act some insurer': 29771, 'some insurer decision': 783129, 'insurer decision to': 440878, 'decision to waive': 231114, 'to waive coronavirus': 918282, 'waive coronavirus treatment': 964508, 'coronavirus treatment cost': 206963, 'treatment cost download': 931053, 'cost download the': 207911, 'download the full': 257629, 'the full summary': 856024, 'full summary report': 340910, 'shop that': 760890, 'making shopping': 511338, 'shopping even': 762589, 'more difficult': 539033, 'difficult by': 242193, 'by demanding': 152328, 'demanding card': 236579, 'card payment': 163617, 'payment only': 645694, 'only you': 611507, 'you reach': 1020803, 'reach the': 699986, 'checkout remember': 174990, 'if wanted': 415255, 'use card': 949091, 'card no': 163583, 'ha caught': 370069, 'from money': 336462, 'money their': 537065, 'attitude make': 102568, 'make another': 509697, 'for those shop': 327138, 'those shop that': 892464, 'shop that are': 760891, 'that are now': 842787, 'are now making': 88570, 'now making shopping': 575280, 'making shopping even': 511340, 'shopping even more': 762591, 'even more difficult': 284351, 'more difficult by': 539035, 'difficult by demanding': 242194, 'by demanding card': 152329, 'demanding card payment': 236580, 'card payment only': 163619, 'payment only you': 645695, 'only you reach': 611511, 'you reach the': 1020807, 'reach the checkout': 699987, 'the checkout remember': 850773, 'checkout remember this': 174991, 'remember this it': 710350, 'this it easier': 888514, 'easier to shop': 265164, 'online if wanted': 608389, 'if wanted to': 415256, 'wanted to use': 966281, 'to use card': 918008, 'use card no': 949092, 'card no one': 163585, 'one ha caught': 606385, 'ha caught covid': 370070, '19 from money': 7129, 'from money their': 336465, 'money their attitude': 537066, 'their attitude make': 872528, 'attitude make another': 102569, 'make another case': 509698, 'another case to': 77528, 'case to shop': 166077, 'must intervene': 546734, 'intervene to': 442165, 'and prosecute': 69642, 'prosecute speculator': 684625, 'speculator in': 788370, 'normal law': 567201, 'law of': 482350, 'demand create': 235188, 'create artificial': 215611, 'are recipe': 89506, 'the government must': 856566, 'government must intervene': 360369, 'must intervene to': 546736, 'intervene to regulate': 442166, 'regulate price and': 707986, 'price and prosecute': 672508, 'and prosecute speculator': 69644, 'prosecute speculator in': 684626, 'speculator in global': 788371, 'in global pandemic': 423336, 'global pandemic the': 352106, 'pandemic the normal': 636691, 'the normal law': 861862, 'normal law of': 567202, 'law of supply': 482354, 'and demand create': 61146, 'demand create artificial': 235189, 'create artificial scarcity': 215614, 'scarcity and are': 740820, 'and are recipe': 58348, 'are recipe for': 89507, 'recipe for disaster': 704459, 'underpaying': 940528, 'person consumer': 652368, 're only': 699195, 'only known': 610691, 'known consumer': 477202, 'who notice': 989344, 'notice which': 573406, 'which corporation': 985773, 'corporation are': 207384, 'are endangering': 86199, 'endangering underpaying': 276108, 'underpaying or': 940531, 'or otherwise': 616453, 'otherwise harming': 621841, 'harming their': 378466, 'taking note': 833461, 'note for': 572724, 'cannot be the': 161650, 'be the only': 117643, 'only person consumer': 610954, 'person consumer we': 652370, 'we re only': 972929, 're only known': 699197, 'only known consumer': 610692, 'known consumer who': 477203, 'consumer who notice': 199526, 'who notice which': 989345, 'notice which corporation': 573407, 'which corporation are': 985774, 'corporation are endangering': 207385, 'are endangering underpaying': 86202, 'endangering underpaying or': 276110, 'underpaying or otherwise': 940532, 'or otherwise harming': 616455, 'otherwise harming their': 621842, 'harming their workforce': 378468, 'their workforce in': 875230, 'workforce in crisis': 1008367, 'in crisis and': 421872, 'crisis and taking': 217053, 'and taking note': 73000, 'taking note for': 833462, 'note for later': 572727, 'cleaningsupplies': 181139, '19 cleaningsupplies': 5836, 'hand sanitizer 19': 375279, 'sanitizer 19 cleaningsupplies': 734281, 'netizens': 557678, 'mockery': 535127, 'melania': 527900, 'temper': 837348, 'priyanka': 679064, 'chopra': 177991, 'coronavirus better': 205558, 'better netizens': 128370, 'netizens mockery': 557681, 'mockery mode': 535128, 'mode melania': 535186, 'melania star': 527901, 'star pandemic': 794054, 'pandemic ad': 634797, 'ad watch': 31189, 'watch shop': 968524, 'shop staff': 760816, 'staff push': 792788, 'push elderly': 690258, 'man outside': 512177, 'store london': 808811, 'london public': 501160, 'public losing': 688149, 'losing temper': 503589, 'temper covid': 837349, '19 priyanka': 9829, 'priyanka chopra': 679065, 'chopra urge': 177994, 'urge fan': 948181, 'fan stock': 298540, 'up joy': 945263, 'joy love': 467512, 'love grocery': 504676, 'grocery pandemic': 364828, 'coronavirus better netizens': 205559, 'better netizens mockery': 128371, 'netizens mockery mode': 557682, 'mockery mode melania': 535129, 'mode melania star': 535187, 'melania star pandemic': 527902, 'star pandemic ad': 794055, 'pandemic ad watch': 634798, 'ad watch shop': 31190, 'watch shop staff': 968525, 'shop staff push': 760827, 'staff push elderly': 792789, 'push elderly man': 690259, 'elderly man outside': 270748, 'man outside store': 512178, 'outside store london': 629561, 'store london public': 808813, 'london public losing': 501161, 'public losing temper': 688150, 'losing temper covid': 503590, 'temper covid 19': 837350, 'covid 19 priyanka': 213613, '19 priyanka chopra': 9830, 'priyanka chopra urge': 679066, 'chopra urge fan': 177995, 'urge fan stock': 948182, 'fan stock up': 298541, 'stock up joy': 803092, 'up joy love': 945264, 'joy love grocery': 467513, 'love grocery pandemic': 504677, 'julianne': 467790, 'deb': 230287, 'companionship': 190333, 'whatweneed': 982953, 'careathome': 164324, 'safeathome': 730176, 'visitingangels': 959574, 'and here': 64526, 'here julianne': 393278, 'julianne she': 467791, 'frontline ensuring': 338734, 'ensuring her': 278179, 'her consumer': 391959, 'consumer deb': 197070, 'deb get': 230292, 'and companionship': 60184, 'companionship she': 190336, '19 whatweneed': 12011, 'whatweneed careathome': 982954, 'careathome safeathome': 164325, 'safeathome visitingangels': 730181, 'and here julianne': 64531, 'here julianne she': 393279, 'julianne she is': 467792, 'she is still': 756161, 'is still on': 452296, 'the frontline ensuring': 855867, 'frontline ensuring her': 338735, 'ensuring her consumer': 278180, 'her consumer deb': 391960, 'consumer deb get': 197071, 'deb get the': 230293, 'the care and': 850412, 'care and companionship': 163837, 'and companionship she': 60185, 'companionship she need': 190337, 'she need during': 756230, 'covid 19 whatweneed': 214063, '19 whatweneed careathome': 12012, 'whatweneed careathome safeathome': 982955, 'careathome safeathome visitingangels': 164326, 'saw pic': 738215, 'yesterday crowded': 1015709, 'crowded not': 219329, 'good these': 357832, 'these panic': 880388, 'panic moment': 638328, 'moment could': 535907, 'that spread': 846440, 'next person': 561504, 'que check': 693309, 'the thread': 869505, 'saw pic of': 738216, 'pic of people': 655615, 'supermarket yesterday crowded': 824167, 'yesterday crowded not': 1015710, 'crowded not good': 219330, 'not good these': 569733, 'good these panic': 357833, 'these panic moment': 880391, 'panic moment could': 638329, 'moment could be': 535908, 'could be the': 208931, 'be the one': 117642, 'one that spread': 607188, 'that spread 19': 846441, 'spread 19 please': 790383, '19 please don': 9716, 'please don panic': 659921, 'buy and remember': 148331, 'remember to leave': 710374, 'to leave space': 909161, 'leave space between': 484942, 'space between you': 787074, 'between you and': 128964, 'you and the': 1017009, 'the next person': 861686, 'next person in': 561506, 'person in the': 652490, 'in the que': 429491, 'the que check': 864999, 'que check the': 693310, 'check the thread': 174657, 'skynews': 773247, 'newsnight': 561048, 'lbc': 482781, 'did someone': 240817, 'someone say': 784634, 'be had': 115119, 'had applied': 372859, 'thousand wuhanvirus': 893502, 'wuhanvirus skynews': 1013582, 'skynews bbcnews': 773248, 'bbcnews newsnight': 113136, 'newsnight lbc': 561051, 'lbc c4news': 482782, 'did someone say': 240818, 'someone say there': 784635, 'say there no': 739323, 'no work to': 565931, 'to be had': 901290, 'be had applied': 115121, 'had applied and': 372860, 'hire thousand wuhanvirus': 397032, 'thousand wuhanvirus skynews': 893503, 'wuhanvirus skynews bbcnews': 1013583, 'skynews bbcnews newsnight': 773249, 'bbcnews newsnight lbc': 113137, 'newsnight lbc c4news': 561052, 'are american': 84515, 'hero get': 393996, 'and blow': 59026, 'blow one': 133331, 'one today': 607292, 'employee are american': 273604, 'are american hero': 84517, 'american hero get': 52032, 'hero get out': 393997, 'get out and': 347734, 'out and blow': 625645, 'and blow one': 59027, 'blow one today': 133334, 'fancy': 298550, 'upscale': 947786, 'maskmystery': 519654, 'can someone': 159669, 'someone tell': 784675, 'these fancy': 879998, 'fancy upscale': 298559, 'upscale hospital': 947789, 'hospital face': 404398, 'no shame': 565474, 'shame wearing': 754664, 'wearing them': 974805, 'them either': 875646, 'either knowing': 270327, 'knowing healthcare': 477115, 'same mask': 733150, 'mask maskmystery': 518956, 'maskmystery mask': 519655, 'mask mask': 518950, 'can someone tell': 159676, 'someone tell me': 784677, 'me where all': 523951, 'where all these': 984720, 'these people in': 880445, 'supermarket are getting': 819159, 'are getting these': 86828, 'getting these fancy': 349375, 'these fancy upscale': 879999, 'fancy upscale hospital': 298560, 'upscale hospital face': 947790, 'hospital face mask': 404399, 'mask they seem': 519376, 'seem to have': 746694, 'have no shame': 381656, 'no shame wearing': 565475, 'shame wearing them': 754665, 'wearing them either': 974806, 'them either knowing': 875647, 'either knowing healthcare': 270328, 'knowing healthcare worker': 477116, 'healthcare worker may': 387366, 'worker may not': 1007362, 'may not even': 521374, 'even have access': 284163, 'the same mask': 866255, 'same mask maskmystery': 733151, 'mask maskmystery mask': 518957, 'maskmystery mask mask': 519656, 'you angry': 1017016, 'angry or': 76485, 'or stressed': 617252, 'panicbuyers made you': 638865, 'made you angry': 508076, 'you angry or': 1017017, 'angry or stressed': 76486, 'blowing': 133366, 'btw for': 141534, 'who claim': 988453, 'claim wearing': 179861, 'mask doesn': 518584, 'help just': 389957, 'because medium': 119237, 'medium say': 527259, 'say so': 739146, 'so suggest': 778300, 'suggest thinking': 817545, 'thinking twice': 886020, 'twice about': 936508, 'the meaning': 860353, 'meaning of': 524823, 'of airborne': 579863, 'airborne or': 39848, 'even look': 284308, 'look it': 502445, 'up online': 945654, 'and imagine': 64988, 'imagine someone': 416779, 'someone blowing': 784386, 'blowing mouth': 133375, 'mouth water': 543576, 'water onto': 969089, 'onto your': 611690, 'face like': 294500, 'two staff': 937233, 'store did': 807305, 'btw for those': 141535, 'those who claim': 892621, 'who claim wearing': 988456, 'claim wearing mask': 179862, 'wearing mask doesn': 974689, 'mask doesn help': 518586, 'doesn help just': 251836, 'help just because': 389958, 'just because medium': 468285, 'because medium say': 119238, 'medium say so': 527260, 'say so suggest': 739147, 'so suggest thinking': 778301, 'suggest thinking twice': 817546, 'thinking twice about': 886021, 'twice about the': 936509, 'about the meaning': 26448, 'the meaning of': 860354, 'meaning of airborne': 524824, 'of airborne or': 579865, 'airborne or even': 39849, 'or even look': 615206, 'even look it': 284309, 'look it up': 502446, 'it up online': 461966, 'up online and': 945655, 'online and imagine': 607822, 'and imagine someone': 64989, 'imagine someone blowing': 416780, 'someone blowing mouth': 784387, 'blowing mouth water': 133376, 'mouth water onto': 543577, 'water onto your': 969091, 'onto your face': 611692, 'your face like': 1023751, 'face like these': 294501, 'like these two': 491440, 'these two staff': 880900, 'two staff at': 937234, 'grocery store did': 365328, 'withdrawing': 1002268, 'that starting': 846460, 'starting at': 794942, 'will enter': 993327, 'enter total': 278330, 'treatment withdrawing': 931176, 'withdrawing cash': 1002269, 'and visiting': 74990, 'punishable by': 689226, 'announced that starting': 77067, 'that starting at': 846461, 'starting at midnight': 794945, 'at midnight tonight': 99742, 'country will enter': 211247, 'will enter total': 993329, 'enter total quarantine': 278331, 'medical treatment withdrawing': 526485, 'treatment withdrawing cash': 931177, 'withdrawing cash and': 1002270, 'cash and visiting': 166164, 'and visiting supermarket': 74992, 'be punishable by': 116621, 'punishable by up': 689229, 'utilize': 951351, 'article discussing': 94302, 'diner le': 242984, 'to utilize': 918094, 'utilize off': 951356, 'demographic which': 236801, 'over of': 630451, 'interesting article discussing': 441510, 'article discussing the': 94303, 'discussing the impact': 245006, 'the impact is': 857939, 'impact is having': 417717, 'having on older': 384203, 'on older diner': 602503, 'older diner le': 598597, 'diner le inclined': 242985, 'inclined to utilize': 431496, 'to utilize off': 918096, 'utilize off premise': 951357, 'this demographic which': 887207, 'demographic which is': 236802, 'which is responsible': 986047, 'responsible for over': 716038, 'for over of': 324331, 'over of restaurant': 630453, 'of restaurant industry': 589018, 'acti': 29854, 'respected all': 715099, 'all after': 41965, 'this notification': 889178, 'notification flipkart': 573529, 'flipkart also': 310606, 'also not': 48573, 'following your': 312944, 'your given': 1024049, 'given price': 351085, 'price limit': 675054, 'limit price': 492460, 'on commerce': 599975, 'commerce please': 188612, 'please control': 659850, 'control online': 202083, 'shopping also': 761928, 'take strict': 832612, 'strict acti': 813610, 'respected all after': 715100, 'all after this': 41966, 'after this notification': 36408, 'this notification flipkart': 889179, 'notification flipkart also': 573530, 'flipkart also not': 310607, 'also not following': 48575, 'not following your': 569467, 'following your given': 312945, 'your given price': 1024050, 'given price limit': 351087, 'price limit price': 675055, 'limit price is': 492461, 'price is very': 674900, 'is very high': 453677, 'very high on': 955231, 'high on commerce': 395198, 'on commerce please': 599977, 'commerce please control': 188613, 'please control online': 659851, 'control online shopping': 202084, 'online shopping also': 609020, 'shopping also and': 761929, 'also and take': 47853, 'and take strict': 72978, 'take strict acti': 832613, 'colluding': 186675, 'botched': 135826, 'because good': 119081, 'friend russia': 333781, 'arabia are': 83860, 'are colluding': 85424, 'colluding to': 186676, 'put shale': 690807, 'producer out': 680682, 'and due': 61797, 'our botched': 622248, 'botched to': 135827, 'for gasoline': 321844, 'gasoline ha': 344234, 'collapsed but': 186091, 'but hey': 145928, 'hey get': 394388, 'get that': 348205, 'are down because': 85972, 'down because good': 256552, 'because good friend': 119082, 'good friend russia': 357110, 'friend russia and': 333782, 'saudi arabia are': 737185, 'arabia are colluding': 83861, 'are colluding to': 85425, 'colluding to put': 186677, 'to put shale': 912608, 'put shale oil': 690808, 'shale oil producer': 754505, 'oil producer out': 597342, 'producer out of': 680683, 'out of business': 626690, 'of business and': 580944, 'business and due': 143297, 'and due to': 61798, 'due to our': 261891, 'to our botched': 911155, 'our botched to': 622249, 'botched to covid': 135828, '19 demand for': 6483, 'demand for gasoline': 235427, 'for gasoline ha': 321845, 'gasoline ha collapsed': 344235, 'ha collapsed but': 370193, 'collapsed but hey': 186092, 'but hey get': 145931, 'hey get that': 394389, 'get that you': 348218, 'you don have': 1018318, 'additionally': 31903, 'realtime': 702754, 'world reeling': 1009927, 'it effect': 457765, 'effect and': 268965, 'therefore health': 879429, 'found socialdistancing': 330371, 'socialdistancing to': 780816, 'be best': 113831, 'practice additionally': 668517, 'additionally yougov': 31918, 'yougov realtime': 1022537, 'realtime ha': 702765, 'created tracker': 215919, 'tracker looking': 928282, 'in 25': 419894, '25 mar': 15904, 'pandemic ha the': 635574, 'ha the entire': 372197, 'entire world reeling': 278781, 'world reeling from': 1009928, 'reeling from it': 706446, 'from it effect': 336114, 'it effect and': 457766, 'effect and therefore': 268969, 'and therefore health': 73864, 'therefore health official': 879430, 'health official have': 386703, 'official have found': 595836, 'have found socialdistancing': 380701, 'found socialdistancing to': 330372, 'socialdistancing to be': 780818, 'to be best': 901128, 'be best practice': 113833, 'best practice additionally': 127841, 'practice additionally yougov': 668518, 'additionally yougov realtime': 31919, 'yougov realtime ha': 1022539, 'realtime ha created': 702766, 'ha created tracker': 370287, 'created tracker looking': 215921, 'tracker looking at': 928283, 'looking at consumer': 502801, 'at consumer behavior': 98313, 'behavior in 25': 124075, 'in 25 mar': 419895, 'such mask': 816629, 'of mask sanitizer': 586277, 'mask sanitizer amp': 519217, 'source supply such': 786550, 'supply such mask': 825920, 'such mask equipment': 816630, 'nakuru': 551555, 'oldest': 598695, 'nakuru oldest': 551559, 'oldest supermarket': 598700, 'supermarket join': 821212, 'join county': 466699, 'county in': 211414, '19 war': 11894, 'nakuru oldest supermarket': 551560, 'oldest supermarket join': 598701, 'supermarket join county': 821213, 'join county in': 466700, 'county in covid': 211415, 'covid 19 war': 214042, 'stake': 793298, 'succumb': 816287, 'superstition': 824337, 'quack': 691633, 'letsfightcoronatogether': 487258, 'coronafreeworld': 204950, 'srimspeaks': 791621, 'life are': 488496, 'at stake': 100625, 'stake including': 793314, 'including ours': 432095, 'ours and': 625431, 'one do': 606200, 'not succumb': 571791, 'succumb to': 816290, 'to superstition': 915865, 'superstition do': 824338, 'not listen': 570424, 'to fake': 905612, 'fake fraud': 296627, 'and quack': 69846, 'quack stay': 691637, 'safe sri': 729962, 'sri letsfightcoronatogether': 791599, 'letsfightcoronatogether coronafreeworld': 487259, 'coronafreeworld srimspeaks': 204952, 'million of human': 532269, 'of human life': 584875, 'human life are': 410546, 'life are at': 488497, 'are at stake': 84683, 'at stake including': 100630, 'stake including ours': 793316, 'including ours and': 432096, 'ours and our': 625432, 'and our loved': 68503, 'loved one do': 504908, 'one do not': 606201, 'do not succumb': 249860, 'not succumb to': 571792, 'succumb to superstition': 816292, 'to superstition do': 915866, 'superstition do not': 824339, 'do not listen': 249777, 'not listen to': 570429, 'listen to fake': 494734, 'to fake fraud': 905614, 'fake fraud and': 296628, 'fraud and quack': 331235, 'and quack stay': 69848, 'quack stay safe': 691638, 'stay safe sri': 797275, 'safe sri letsfightcoronatogether': 729963, 'sri letsfightcoronatogether coronafreeworld': 791600, 'letsfightcoronatogether coronafreeworld srimspeaks': 487260, 'growing inflation': 367207, 'inflation rising': 437231, 'and declining': 61021, 'declining purchasing': 231488, 'power are': 667563, 'already unavoidable': 47731, 'unavoidable due': 939471, 'with implication': 998954, 'for political': 324609, 'political stability': 663677, 'stability and': 791802, 'and election': 61996, 'election in': 271041, 'in russia': 427586, 'growing inflation rising': 367208, 'inflation rising price': 437232, 'rising price and': 723264, 'price and declining': 672390, 'and declining purchasing': 61026, 'declining purchasing power': 231489, 'purchasing power are': 689904, 'power are already': 667564, 'are already unavoidable': 84430, 'already unavoidable due': 47732, 'unavoidable due to': 939472, 'to 19 and': 899534, '19 and low': 5060, 'price with implication': 677617, 'with implication for': 998955, 'implication for political': 418554, 'for political stability': 324611, 'political stability and': 663678, 'stability and election': 791803, 'and election in': 61997, 'election in russia': 271043, 'webpage': 975167, 'for commission': 320187, 'commission update': 188913, 'update related': 947192, 'visit our': 959322, 'response webpage': 715917, 'webpage for': 975168, 'on agency': 599176, 'agency operation': 38053, 'operation consumer': 613166, 'program filing': 683243, 'filing and': 305417, 'more visit': 540919, 'looking for commission': 502858, 'for commission update': 320188, 'commission update related': 188914, 'update related to': 947193, '19 visit our': 11849, 'visit our response': 959329, 'our response webpage': 624623, 'response webpage for': 715918, 'webpage for update': 975170, 'update on agency': 947105, 'on agency operation': 599177, 'agency operation consumer': 38054, 'operation consumer assistance': 613167, 'consumer assistance program': 196330, 'assistance program filing': 96734, 'program filing and': 683244, 'filing and more': 305418, 'and more visit': 67228, 'phonecall': 655078, 'clarehall': 180057, 'extremely let': 293902, 'down tesco': 257254, 'tesco no': 838756, 'delivery no': 234203, 'no phonecall': 565104, 'phonecall no': 655079, 'no email': 564103, 'email have': 272196, 'no dog': 564037, 'no drinking': 564058, 'water water': 969247, 'water off': 969078, 'area today': 92241, 'today order': 919998, 'order placed': 618515, 'placed week': 657929, 'ago did': 38371, 'not stockpile': 571741, 'stockpile did': 803733, 'panic did': 638033, 'did everything': 240600, 'everything advised': 287672, 'advised ie': 33627, 'ie weekly': 413751, 'shop tesco': 760883, 'tesco clarehall': 838685, 'clarehall not': 180058, 'not responding': 571350, 'responding tesco': 715574, 'extremely let down': 293903, 'let down tesco': 486691, 'down tesco no': 257255, 'tesco no delivery': 838757, 'no delivery no': 563989, 'delivery no phonecall': 234208, 'no phonecall no': 565105, 'phonecall no email': 655080, 'no email have': 564104, 'email have no': 272197, 'food no dog': 315542, 'no dog food': 564038, 'dog food no': 252086, 'food no drinking': 315543, 'no drinking water': 564059, 'drinking water water': 258949, 'water water off': 969248, 'water off my': 969079, 'off my area': 593980, 'my area today': 547305, 'area today order': 92242, 'today order placed': 919999, 'order placed week': 618518, 'placed week ago': 657930, 'week ago did': 975844, 'ago did not': 38372, 'did not stockpile': 240735, 'not stockpile did': 571743, 'stockpile did not': 803734, 'did not panic': 240725, 'not panic did': 570905, 'panic did everything': 638034, 'did everything advised': 240601, 'everything advised ie': 287673, 'advised ie weekly': 33628, 'ie weekly shop': 413752, 'weekly shop tesco': 977554, 'shop tesco clarehall': 760884, 'tesco clarehall not': 838686, 'clarehall not responding': 180059, 'not responding tesco': 571351, 'cyclist': 224103, 'glovo': 353071, 'eats': 266357, 'sunny': 818390, 'cycling': 224088, 'quarantine in': 692285, 'downtown kyiv': 257749, 'ukraine on': 939045, '12 2020': 2785, '2020 cyclist': 14265, 'cyclist are': 224104, 'for glovo': 321901, 'glovo uber': 353074, 'uber eats': 937808, 'eats food': 266371, 'service ban': 752168, 'transport nice': 929912, 'nice sunny': 562473, 'sunny spring': 818394, 'spring weather': 791255, 'weather make': 974884, 'make cycling': 509811, 'cycling particularly': 224097, 'particularly inviting': 642705, 'quarantine in downtown': 692287, 'in downtown kyiv': 422378, 'downtown kyiv ukraine': 257750, 'kyiv ukraine on': 478090, 'ukraine on april': 939046, 'on april 12': 599430, 'april 12 2020': 83400, '12 2020 cyclist': 2786, '2020 cyclist are': 14266, 'cyclist are in': 224105, 'high demand for': 395009, 'demand for glovo': 235430, 'for glovo uber': 321902, 'glovo uber eats': 353075, 'uber eats food': 937812, 'eats food delivery': 266372, 'delivery service ban': 234427, 'service ban on': 752169, 'ban on public': 109232, 'public transport nice': 688411, 'transport nice sunny': 929913, 'nice sunny spring': 562475, 'sunny spring weather': 818395, 'spring weather make': 791256, 'weather make cycling': 974885, 'make cycling particularly': 509812, 'cycling particularly inviting': 224098, 'sarasota': 736729, 'manatee': 512929, 'lag': 478885, 'coronavirus florida': 205928, 'florida home': 310947, 'in sarasota': 427704, 'sarasota manatee': 736730, 'manatee lag': 512930, 'lag state': 478890, 'and nation': 67423, 'nation ahead': 552107, 'coronavirus florida home': 205929, 'florida home price': 310948, 'home price in': 401907, 'price in sarasota': 674728, 'in sarasota manatee': 427705, 'sarasota manatee lag': 736731, 'manatee lag state': 512931, 'lag state and': 478891, 'state and nation': 795370, 'and nation ahead': 67424, 'nation ahead of': 552108, 'quid': 694655, 'supermark': 818719, 'sure agree': 827483, 'past walk': 643637, 'walk about': 964726, 'about fully': 25286, 'adding up': 31716, 'up go': 945020, 'achieve amount': 29015, 'of meal': 586354, 'meal with': 524307, 'just 30': 468114, '30 quid': 17202, 'quid really': 694666, 'really feel': 702192, 'the breadline': 849967, 'breadline supermark': 138664, 'not sure agree': 571833, 'sure agree with': 827484, 'agree with you': 38686, 'with you there': 1002166, 'you there in': 1021630, 'there in the': 878508, 'the past walk': 863368, 'past walk about': 643638, 'walk about fully': 964727, 'about fully stocked': 25287, 'stocked supermarket adding': 803407, 'supermarket adding up': 818782, 'adding up go': 31717, 'up go to': 945022, 'go to have': 354316, 'have to achieve': 383148, 'to achieve amount': 899984, 'achieve amount of': 29016, 'amount of meal': 53233, 'of meal with': 586361, 'meal with just': 524308, 'with just 30': 999123, 'just 30 quid': 468115, '30 quid really': 17203, 'quid really feel': 694667, 'really feel for': 702193, 'feel for those': 302626, 'that are already': 842715, 'are already on': 84419, 'already on the': 47540, 'on the breadline': 603998, 'the breadline supermark': 849969, 'schooling': 742032, 'fianc': 304364, 'cog': 185575, 'also offered': 48598, 'offered to': 594975, 'support parent': 826751, 'parent home': 641646, 'home schooling': 402023, 'schooling online': 742037, 'online outside': 608723, 'outside school': 629541, 'school meanwhile': 741865, 'meanwhile her': 524980, 'her fianc': 392043, 'fianc work': 304365, 'so is': 777434, 'important cog': 418761, 'cog in': 185576, 'the wheel': 871423, 'wheel right': 983048, 'now although': 573988, 'doesn feel': 251791, 'when his': 983568, 'staff get': 792485, 'get so': 348027, 'much abuse': 544692, 'daughter ha also': 226849, 'ha also offered': 369527, 'also offered to': 48599, 'offered to support': 594983, 'to support parent': 915958, 'support parent home': 826752, 'parent home schooling': 641647, 'home schooling online': 402025, 'schooling online outside': 742038, 'online outside school': 608724, 'outside school meanwhile': 629542, 'school meanwhile her': 741866, 'meanwhile her fianc': 524981, 'her fianc work': 392044, 'fianc work in': 304366, 'work in local': 1005321, 'local supermarket so': 498590, 'supermarket so is': 822732, 'so is an': 777437, 'is an important': 445668, 'an important cog': 56195, 'important cog in': 418762, 'cog in the': 185577, 'in the wheel': 429676, 'the wheel right': 871428, 'wheel right now': 983049, 'right now although': 722017, 'now although it': 573989, 'although it doesn': 49328, 'it doesn feel': 457630, 'doesn feel like': 251792, 'feel like it': 302723, 'like it when': 490565, 'it when his': 462337, 'when his staff': 983569, 'his staff get': 397814, 'staff get so': 792488, 'get so much': 348028, 'so much abuse': 777756, 'begun to': 123734, 'but demand': 145520, 'high at': 394938, 'at most': 99776, 'most site': 542748, 'ha begun to': 370001, 'begun to provide': 123737, 'to provide food': 912394, 'provide food during': 686305, 'outbreak but demand': 628061, 'but demand is': 145521, 'demand is high': 235728, 'is high at': 448439, 'high at most': 394940, 'at most site': 99778, 'nativo': 552787, 'latest research': 481530, 'research on': 713796, 'consumption trend': 199958, 'trend courtesy': 931311, 'courtesy of': 212048, 'the nativo': 861313, 'nativo research': 552788, 'research analytics': 713664, 'analytics team': 57239, 'the latest research': 859142, 'latest research on': 481535, 'research on covid': 713798, '19 consumer content': 5964, 'content consumption trend': 200793, 'consumption trend courtesy': 199959, 'trend courtesy of': 931312, 'courtesy of the': 212054, 'of the nativo': 591265, 'the nativo research': 861314, 'nativo research analytics': 552789, 'research analytics team': 713665, 'myia': 550740, 'distance myself': 246769, 'myself from': 550862, 'pet because': 653364, 'hurt but': 411551, 'but understand': 147649, 'the condition': 851430, 'condition the': 193537, 'in would': 430994, 'never forgive': 558007, 'forgive myself': 329372, 'myself if': 550875, 'fault for': 300402, 'for bringing': 319795, 'my loved': 549166, 'especially my': 280547, 'little sister': 495570, 'sister myia': 771778, 'have to social': 383304, 'social distance myself': 779514, 'distance myself from': 246770, 'myself from my': 550865, 'my family friend': 548199, 'family friend and': 297815, 'friend and pet': 333508, 'and pet because': 68943, 'pet because work': 653366, 'store it hurt': 808578, 'it hurt but': 458664, 'hurt but understand': 411552, 'but understand the': 147650, 'understand the condition': 940750, 'the condition the': 851435, 'condition the world': 193540, 'is in would': 448829, 'in would never': 430996, 'would never forgive': 1012058, 'never forgive myself': 558008, 'forgive myself if': 329373, 'myself if it': 550876, 'if it wa': 414341, 'wa my fault': 962673, 'my fault for': 548256, 'fault for bringing': 300403, 'for bringing covid': 319797, '19 to my': 11442, 'to my loved': 910417, 'my loved one': 549167, 'loved one especially': 504910, 'one especially my': 606244, 'especially my little': 280548, 'my little sister': 549083, 'little sister myia': 495572, 'mirror': 533944, 'lhm': 487939, 'am about': 49842, 'just looked': 469190, 'at myself': 99836, 'the mirror': 860678, 'mirror and': 533945, 'to stick': 915395, 'stick the': 800052, 'place up': 657793, 'up mask': 945366, 'glove plastic': 352866, 'plastic booty': 658818, 'booty on': 135146, 'on shoe': 603426, 'shoe lhm': 759676, 'am about to': 49845, 'about to go': 26720, 'store just looked': 808619, 'just looked at': 469191, 'looked at myself': 502710, 'at myself in': 99838, 'myself in the': 550882, 'in the mirror': 429366, 'the mirror and': 860679, 'mirror and look': 533946, 'and look like': 66366, 'look like going': 502479, 'going to stick': 355722, 'to stick the': 915398, 'stick the place': 800054, 'the place up': 863776, 'place up mask': 657794, 'up mask glove': 945367, 'mask glove plastic': 518743, 'glove plastic booty': 352867, 'plastic booty on': 658819, 'booty on shoe': 135147, 'on shoe lhm': 603427, 'unclean': 939828, 'synergy': 830998, 'approaching ll': 83018, 'giving my': 351348, 'mum touching': 545959, 'touching gift': 926680, 'gift in': 349992, 'these unclean': 880915, 'unclean time': 939831, 'time synergy': 897793, 'synergy my': 830999, 'mum is': 545915, 'is soft': 452060, 'soft and': 781459, 'and strong': 72587, 'strong everytime': 814030, 'mother day is': 543082, 'day is approaching': 227833, 'is approaching ll': 445797, 'approaching ll be': 83019, 'll be giving': 496588, 'be giving my': 115037, 'giving my mum': 351349, 'my mum touching': 549385, 'mum touching gift': 545960, 'touching gift in': 926681, 'gift in these': 349994, 'in these unclean': 429876, 'these unclean time': 880916, 'unclean time synergy': 939832, 'time synergy my': 897794, 'synergy my mum': 831000, 'my mum is': 549377, 'mum is soft': 545919, 'is soft and': 452061, 'soft and strong': 781460, 'and strong everytime': 72590, 'durin': 262392, 'shoppin': 761858, 'feelin': 302952, 'thehungergames': 872404, 'worldwide all': 1010309, 'all alright': 41993, 'alright out': 47785, 'is indoors': 448887, 'indoors takin': 435426, 'takin care': 833235, 'of mamaghettoheat': 586136, 'scene durin': 741316, 'durin this': 262393, 'outbreak supermarket': 628674, 'supermarket shoppin': 822624, 'shoppin daily': 761859, 'daily feelin': 224617, 'feelin like': 302955, 'like thehungergames': 491411, 'thehungergames out': 872405, '20 bottle': 12976, 'ghettoheatmovement worldwide all': 349646, 'worldwide all alright': 1010310, 'all alright out': 41994, 'alright out there': 47786, 'there the hickson': 879148, 'hickson is indoors': 394798, 'is indoors takin': 448888, 'indoors takin care': 435427, 'takin care of': 833236, 'care of mamaghettoheat': 164106, 'of mamaghettoheat behind': 586137, 'the scene durin': 866464, 'scene durin this': 741317, 'durin this outbreak': 262394, 'this outbreak supermarket': 889329, 'outbreak supermarket shoppin': 628676, 'supermarket shoppin daily': 822625, 'shoppin daily feelin': 761860, 'daily feelin like': 224618, 'feelin like thehungergames': 302956, 'like thehungergames out': 491412, 'thehungergames out here': 872406, 'out here bought': 626273, 'bought 20 bottle': 136474, 'on toronto': 604812, 'toronto real': 925982, 'estate here': 282122, 'the 2003': 847987, '2003 sars': 13598, 'sars crisis': 736816, 'some are concerned': 782315, 'concerned about the': 193176, '19 coronavirus on': 6112, 'coronavirus on toronto': 206346, 'on toronto real': 604814, 'toronto real estate': 925983, 'real estate here': 701146, 'estate here is': 282123, 'here is look': 393235, 'is look back': 449440, 'look back at': 502314, 'at the impact': 100984, 'of the 2003': 590764, 'the 2003 sars': 847988, '2003 sars crisis': 13599, '19 energy': 6780, 'uncertainty around covid': 939659, 'covid 19 energy': 213022, '19 energy price': 6781, 'energy price are': 276538, 'are at all': 84662, 'carryout': 165225, 'sided': 768920, 'togetheralone': 921058, 'yard sign': 1014164, 'sign available': 769098, 'or carryout': 614674, 'carryout signage': 165230, 'signage single': 769283, 'single or': 771353, 'or double': 615061, 'double sided': 256047, 'sided one': 768921, 'one color': 606074, 'available price': 104564, 'at under': 101394, 'under 75': 939990, '75 sign': 22162, 'sign even': 769113, 'low quantity': 505565, 'quantity give': 691916, 'give message': 350588, 'special pricing': 788034, 'pricing signage': 677975, 'signage special': 769285, 'special togetheralone': 788080, 'yard sign available': 1014165, 'sign available for': 769099, 'available for delivery': 104366, 'for delivery or': 320641, 'delivery or carryout': 234278, 'or carryout signage': 614675, 'carryout signage single': 165231, 'signage single or': 769284, 'single or double': 771354, 'or double sided': 615062, 'double sided one': 256048, 'sided one color': 768922, 'one color available': 606075, 'color available price': 186729, 'available price start': 104565, 'price start at': 676609, 'start at under': 794215, 'at under 75': 101396, 'under 75 sign': 939991, '75 sign even': 22163, 'sign even for': 769114, 'even for low': 284080, 'for low quantity': 323131, 'low quantity give': 505566, 'quantity give message': 691917, 'give message for': 350589, 'message for special': 529306, 'for special pricing': 325810, 'special pricing signage': 788036, 'pricing signage special': 677976, 'signage special togetheralone': 769286, 'rotate': 726174, 'way if': 969647, 'food recommend': 316137, 'recommend taking': 704711, 'own seed': 632196, 'seed from': 746148, 'the vegetable': 870670, 'fruit it': 339107, 'it work': 462500, 'work too': 1005932, 'too truth': 925140, 'truth keep': 934400, 'keep stock': 471967, 'pile of': 656504, 'of seed': 589446, 'seed that': 746174, 'that rotate': 846069, 'rotate every': 726175, 'every few': 285896, 'few year': 304190, 'no way if': 565862, 'way if you': 969649, 'want to grow': 966044, 'to grow your': 907043, 'grow your own': 367089, 'own food recommend': 632000, 'food recommend taking': 316138, 'recommend taking your': 704712, 'taking your own': 833676, 'your own seed': 1025160, 'own seed from': 632197, 'seed from the': 746149, 'from the vegetable': 337914, 'the vegetable and': 870671, 'and fruit it': 63375, 'fruit it work': 339109, 'it work too': 462508, 'work too truth': 1005936, 'too truth keep': 925141, 'truth keep stock': 934401, 'keep stock pile': 471971, 'stock pile of': 802633, 'pile of seed': 656508, 'of seed that': 589447, 'seed that rotate': 746175, 'that rotate every': 846070, 'rotate every few': 726176, 'every few year': 285899, 'few year for': 304192, 'year for this': 1014569, 'isolationlife': 455541, 'my weekly': 550558, 'weekly supermarket': 977575, 'visit tesco': 959374, 'tesco stayathomeandstaysafe': 838810, 'stayathomeandstaysafe isolationlife': 797723, 'can believe the': 157744, 'believe the highlight': 126362, 'my week is': 550552, 'week is now': 976422, 'is now going': 450291, 'now going to': 574802, 'to be my': 901398, 'be my weekly': 116041, 'my weekly supermarket': 550566, 'weekly supermarket visit': 977579, 'supermarket visit tesco': 823663, 'visit tesco stayathomeandstaysafe': 959375, 'tesco stayathomeandstaysafe isolationlife': 838811, 'ninety': 563300, 'ninety per': 563305, 'cent of': 169092, 'move by': 543623, 'by truck': 154597, 'truck sometimes': 932852, 'they move': 882694, 'by ship': 153976, 'ship or': 758702, 'or train': 617514, 'train first': 929252, 'first but': 308553, 'but eventually': 145674, 'eventually they': 285173, 're delivered': 698512, 'delivered by': 233304, 'truck if': 932816, 'the saying': 866398, 'saying go': 739596, 'go truck': 354399, 'truck brought': 932739, 'ninety per cent': 563306, 'per cent of': 650755, 'cent of all': 169093, 'of all consumer': 579933, 'all consumer good': 42431, 'consumer good move': 197627, 'good move by': 357419, 'move by truck': 543627, 'by truck sometimes': 154600, 'truck sometimes they': 932853, 'sometimes they move': 785243, 'they move by': 882695, 'move by ship': 543626, 'by ship or': 153977, 'ship or train': 758704, 'or train first': 617515, 'train first but': 929253, 'first but eventually': 308555, 'but eventually they': 145675, 'eventually they re': 285174, 'they re delivered': 883019, 're delivered by': 698513, 'delivered by truck': 233306, 'by truck if': 154599, 'truck if you': 932817, 'if you got': 415447, 'got it the': 358653, 'it the saying': 461575, 'the saying go': 866399, 'saying go truck': 739597, 'go truck brought': 354400, 'truck brought it': 932740, 'howard community': 409310, 'community because': 189753, '19 howard': 7612, 'howard ha': 409316, 'ha laid': 371089, 'worker leaving': 1007301, 'leaving them': 485163, 'vulnerable join': 961026, 'of the howard': 591114, 'the howard community': 857676, 'howard community because': 409311, 'community because of': 189754, 'covid 19 howard': 213230, '19 howard ha': 7613, 'howard ha laid': 409317, 'ha laid off': 371090, 'off it food': 593937, 'service worker leaving': 753100, 'worker leaving them': 1007302, 'leaving them vulnerable': 485165, 'them vulnerable join': 876582, 'vulnerable join in': 961027, 'foodsystem': 318220, 'assuming': 97047, 'globalagenda': 352301, 'the foodsystem': 855641, 'foodsystem need': 318223, 'shift good': 758301, 'good from': 357111, 'chain to': 171189, 'even assuming': 283844, 'assuming that': 97056, 'food economy': 314333, 'economy can': 267734, 'can flip': 158354, 'flip switch': 310603, 'switch have': 830496, 'have retailer': 382310, 'retailer take': 719348, 'on 100': 598998, 'our need': 623999, 'need within': 556231, 'within day': 1002343, 'is unrealistic': 453548, 'unrealistic food': 943303, 'food globalagenda': 314668, 'the foodsystem need': 855643, 'foodsystem need to': 318224, 'need to shift': 556068, 'to shift good': 914414, 'shift good from': 758302, 'good from the': 357115, 'from the restaurant': 337856, 'the restaurant chain': 865648, 'restaurant chain to': 716362, 'chain to the': 171199, 'the retail chain': 865711, 'retail chain but': 717938, 'chain but even': 170562, 'but even assuming': 145666, 'even assuming that': 283845, 'assuming that the': 97057, 'that the food': 846732, 'the food economy': 855549, 'food economy can': 314336, 'economy can flip': 267735, 'can flip switch': 158355, 'flip switch have': 310604, 'switch have retailer': 830497, 'have retailer take': 382311, 'retailer take on': 719351, 'take on 100': 832400, 'on 100 of': 598999, '100 of our': 1989, 'of our need': 587520, 'our need within': 624003, 'need within day': 556232, 'within day is': 1002347, 'day is unrealistic': 227842, 'is unrealistic food': 453549, 'unrealistic food globalagenda': 943304, 'perfectly summarizes': 651399, 'summarizes trip': 817922, 'store lately': 808678, 'perfectly summarizes trip': 651400, 'summarizes trip to': 817923, 'grocery store lately': 365511, 'reckoned': 704576, 'liquor shop': 494191, 'owner reckoned': 632551, 'reckoned he': 704577, 'he be': 384763, 'be still': 117369, 'govt covid': 361099, '19 website': 11969, 'website mention': 975353, 'mention fast': 528753, 'fast moving': 300008, 'moving consumer': 544130, 'good including': 357254, 'including beverage': 431891, 'beverage not': 129020, 'taking chance': 833308, 'the liquor shop': 859460, 'liquor shop owner': 494193, 'shop owner reckoned': 760650, 'owner reckoned he': 632552, 'reckoned he be': 704578, 'he be still': 384765, 'be still opened': 117370, 'opened and the': 612707, 'and the govt': 73401, 'the govt covid': 856655, 'govt covid 19': 361100, 'covid 19 website': 214054, '19 website mention': 11970, 'website mention fast': 975354, 'mention fast moving': 528754, 'fast moving consumer': 300009, 'moving consumer good': 544131, 'consumer good including': 197621, 'good including beverage': 357255, 'including beverage not': 431892, 'beverage not taking': 129021, 'not taking chance': 571925, 'incoherent': 432266, 'please clarify': 659784, 'clarify you': 180089, 'it stupid': 461324, 'stupid to': 815483, 'let everyone': 486700, 'everyone go': 286940, 'more harmful': 539390, 'harmful not': 378447, 'get everyone': 346964, 'everyone back': 286726, 'work that': 1005798, 'that incoherent': 844486, 'incoherent to': 432267, 'me more': 523163, 'more human': 539458, 'human interaction': 410528, 'interaction equal': 441237, 'equal more': 279600, 'more infection': 539537, 'infection coro': 436738, 'please clarify you': 659785, 'clarify you said': 180090, 'you said it': 1020976, 'said it stupid': 731163, 'it stupid to': 461327, 'stupid to let': 815484, 'to let everyone': 909202, 'let everyone go': 486701, 'everyone go to': 286941, 'store but it': 806797, 'but it even': 146121, 'it even more': 457856, 'even more harmful': 284360, 'more harmful not': 539391, 'harmful not to': 378448, 'not to get': 572154, 'to get everyone': 906472, 'get everyone back': 346965, 'everyone back to': 286727, 'to work that': 918787, 'work that incoherent': 1005803, 'that incoherent to': 844487, 'incoherent to me': 432268, 'to me more': 909942, 'me more human': 523167, 'more human interaction': 539459, 'human interaction equal': 410530, 'interaction equal more': 441238, 'equal more infection': 279601, 'more infection coro': 539538, 'ecommercenews': 266909, 'time consumer': 896502, 'shifted to': 758504, 'time spent': 897729, 'spent at': 789114, 'family here': 297891, 'that shift': 846255, 'impacting commerce': 418187, 'commerce ecommerce': 188549, 'ecommerce ecommercenews': 266761, 'uncertain time consumer': 939615, 'time consumer shopping': 896507, 'shopping behavior ha': 762202, 'behavior ha shifted': 124053, 'ha shifted to': 371906, 'shifted to meet': 758505, 'meet the need': 527605, 'need of more': 555335, 'of more time': 586653, 'more time spent': 540774, 'time spent at': 897731, 'spent at home': 789115, 'at home for': 98995, 'whole family here': 990197, 'family here is': 297892, 'is how that': 448598, 'how that shift': 408795, 'that shift in': 846256, 'behavior is impacting': 124100, 'is impacting commerce': 448696, 'impacting commerce ecommerce': 418188, 'commerce ecommerce ecommercenews': 188552, 'buying some': 151053, 'local woolies': 498711, 'woolies and': 1004365, 'and iga': 64958, 'iga three': 415693, 'three cheer': 893892, 'worker always': 1006239, 'always in': 49628, 'good mood': 357394, 'mood and': 538265, 'and helpful': 64489, 'helpful 19': 391150, 'back from buying': 107004, 'from buying some': 334781, 'buying some essential': 151055, 'some essential at': 782759, 'essential at my': 280806, 'my local woolies': 549151, 'local woolies and': 498712, 'woolies and iga': 1004366, 'and iga three': 64959, 'iga three cheer': 415694, 'three cheer to': 893893, 'cheer to our': 175122, 'our supermarket worker': 625032, 'supermarket worker always': 823985, 'worker always in': 1006240, 'always in good': 49629, 'in good mood': 423369, 'good mood and': 357395, 'mood and helpful': 538268, 'and helpful 19': 64490, 'asi': 95147, 'nigerian stock': 562880, 'stock suffer': 802898, 'suffer another': 817193, 'another loss': 77706, 'loss asi': 503645, 'asi dip': 95148, 'dip on': 243205, 'nigerian stock suffer': 562881, 'stock suffer another': 802899, 'suffer another loss': 817194, 'another loss asi': 77707, 'loss asi dip': 503646, 'asi dip on': 95149, 'dip on covid': 243207, '19 fear falling': 6956, 'fear falling oil': 301110, 'messenger': 529533, 'dumbass': 262122, 'hometasking': 402979, 'pay attention': 644762, 'attention it': 102454, 'it where': 462342, 'covid 18': 212548, '18 bitch': 4522, 'bitch they': 131774, 'they hiding': 882432, 'hiding they': 394881, 'they getting': 882188, 'getting stronger': 349312, 'stronger 19': 814164, 'the messenger': 860532, 'messenger 18': 529534, '18 gon': 4538, 'gon fuck': 356177, 'up they': 946267, 'they coming': 881781, 'for hide': 322250, 'hide ya': 394854, 'ya kid': 1014003, 'kid hide': 473990, 'ya wife': 1014035, 'wife dumbass': 991916, 'dumbass 19': 262123, '19 hometasking': 7567, 'hometasking toiletpaper': 402980, 'need to pay': 556008, 'to pay attention': 911515, 'pay attention it': 644763, 'attention it where': 102455, 'it where covid': 462343, 'where covid 18': 984801, 'covid 18 bitch': 212549, '18 bitch they': 4523, 'bitch they hiding': 131775, 'they hiding they': 882433, 'hiding they getting': 394882, 'they getting stronger': 882190, 'getting stronger 19': 349313, 'stronger 19 wa': 814165, '19 wa the': 11876, 'wa the messenger': 963455, 'the messenger 18': 860533, 'messenger 18 gon': 529535, '18 gon fuck': 4539, 'gon fuck up': 356178, 'fuck up they': 339677, 'up they coming': 946268, 'they coming for': 881782, 'coming for hide': 188048, 'for hide ya': 322251, 'hide ya kid': 394855, 'ya kid hide': 1014004, 'kid hide ya': 473991, 'hide ya wife': 394856, 'ya wife dumbass': 1014036, 'wife dumbass 19': 991917, 'dumbass 19 hometasking': 262124, '19 hometasking toiletpaper': 7568, 'are stuck': 90596, 'running low': 727996, 'this toilet': 890791, 'calculator let': 155342, 'long your': 501881, 'your bathroom': 1022917, 'bathroom stash': 112669, 'stash will': 795304, 'last hoarding': 480269, 'hoarding pandemic': 399468, 'pandemic quaratinelife': 636276, 'quaratinelife toiletpaper': 693157, 'calculator wfh': 155364, 'who are stuck': 988232, 'are stuck inside': 90600, 'stuck inside and': 814609, 'inside and running': 439221, 'and running low': 70645, 'running low on': 728002, 'low on essential': 505455, 'on essential supply': 600596, 'essential supply this': 281630, 'supply this toilet': 825988, 'this toilet paper': 890792, 'paper calculator let': 639996, 'calculator let you': 155343, 'how long your': 408220, 'long your bathroom': 501882, 'your bathroom stash': 1022918, 'bathroom stash will': 112670, 'stash will last': 795305, 'will last hoarding': 993944, 'last hoarding pandemic': 480270, 'hoarding pandemic quaratinelife': 399469, 'pandemic quaratinelife toiletpaper': 636277, 'quaratinelife toiletpaper calculator': 693158, 'toiletpaper calculator wfh': 921845, 'stair': 793291, 'assessment when': 96407, 'when someone': 984052, 'someone cough': 784416, 'the lift': 859350, 'lift or': 489446, 'or escalator': 615173, 'escalator or': 280301, 'or stair': 617196, 'stair on': 793294, 'top floor': 925578, 'flat or': 310088, 'mall or': 511811, 'or hotel': 615681, 'hotel covid': 405134, 'risk assessment when': 723395, 'assessment when someone': 96408, 'when someone cough': 984055, 'someone cough in': 784418, 'cough in the': 208485, 'in the lift': 429319, 'the lift or': 859351, 'lift or escalator': 489447, 'or escalator or': 615174, 'escalator or stair': 280302, 'or stair on': 617197, 'stair on the': 793295, 'on the top': 604409, 'the top floor': 869780, 'top floor of': 925579, 'floor of flat': 310831, 'of flat or': 583583, 'flat or mall': 310089, 'or mall or': 616050, 'mall or hospital': 511812, 'or hospital or': 615673, 'hospital or hotel': 404541, 'or hotel covid': 615682, 'hotel covid 19': 405135, 'scp': 742521, 'scpmemes': 742524, 'pubgmobile': 687821, 'pubg': 687818, 'furries': 341974, 'besave': 127456, 'dragon': 258199, 'inst': 439875, 'meme coronamemes': 528307, 'coronamemes scp': 205068, 'scp scpmemes': 742522, 'scpmemes pubgmobile': 742525, 'pubgmobile pubg': 687822, 'pubg furries': 687819, 'furries game': 341975, 'game game': 343175, 'game besave': 343134, 'besave toiletpaper': 127457, 'toiletpaper toilet': 922627, 'toilet handsanitizer': 921150, 'handsanitizer dragon': 376518, 'dragon be': 258200, 'be save': 116994, 'save follow': 737500, 'my other': 549621, 'other account': 619794, 'account inst': 28706, 'meme coronamemes scp': 528308, 'coronamemes scp scpmemes': 205069, 'scp scpmemes pubgmobile': 742523, 'scpmemes pubgmobile pubg': 742526, 'pubgmobile pubg furries': 687823, 'pubg furries game': 687820, 'furries game game': 341976, 'game game besave': 343176, 'game besave toiletpaper': 343135, 'besave toiletpaper toilet': 127458, 'toiletpaper toilet handsanitizer': 922628, 'toilet handsanitizer dragon': 921151, 'handsanitizer dragon be': 376519, 'dragon be save': 258201, 'be save follow': 116995, 'save follow me': 737501, 'follow me and': 312458, 'me and my': 522418, 'and my other': 67382, 'my other account': 549622, 'other account inst': 619796, 'buy ice': 148802, 'cream at': 215528, 'delay due': 232691, 'not good time': 569734, 'to buy ice': 902245, 'buy ice cream': 148803, 'ice cream at': 412649, 'cream at the': 215529, 'supermarket with all': 823910, 'with all of': 997155, 'of the delay': 590939, 'the delay due': 853046, 'delay due to': 232692, 'netto': 557689, 'experience lot': 291414, 'lot if': 504060, 'if weird': 415331, 'weird thing': 977797, 'work doing': 1005056, 'some weird': 784196, 'weird story': 977787, 'story netto': 812048, 'experience lot if': 291415, 'lot if weird': 504061, 'if weird thing': 415332, 'weird thing at': 977798, 'thing at work': 884179, 'at work doing': 101596, 'work doing the': 1005057, 'doing the quarantine': 252722, 'the quarantine because': 864962, 'quarantine because work': 692048, 'at supermarket do': 100714, 'want to here': 966048, 'to here some': 907719, 'here some weird': 393588, 'some weird story': 784197, 'weird story netto': 977788, 'rhubarb': 720912, 'custard': 221944, 'job like': 465954, 'like rhubarb': 491089, 'rhubarb and': 720913, 'and custard': 60829, 'custard cream': 221945, 'cream 19': 215521, 'good job like': 357295, 'job like rhubarb': 465956, 'like rhubarb and': 491090, 'rhubarb and custard': 720914, 'and custard cream': 60830, 'custard cream 19': 221946, 'talk lot': 833817, 'about responsible': 26092, 'responsible use': 716068, 'with cannabis': 997532, 'cannabis during': 161409, 'some additional': 782256, 'additional tip': 31886, 'being responsible': 125684, 'responsible cannabis': 716009, 'we talk lot': 973493, 'talk lot about': 833818, 'lot about responsible': 503968, 'about responsible use': 26093, 'responsible use with': 716069, 'use with cannabis': 949817, 'with cannabis during': 997533, 'cannabis during we': 161410, 'during we wanted': 263397, 'to share some': 914363, 'share some additional': 755214, 'some additional tip': 782259, 'additional tip for': 31887, 'tip for being': 898760, 'for being responsible': 319636, 'being responsible cannabis': 125685, 'responsible cannabis consumer': 716010, 'human level': 410542, 'level what': 487749, 'what being': 981100, 'being left': 125375, 'behind show': 124692, 'show what': 767271, 'won eat': 1003791, 'eat even': 265905, 'scenario article': 741251, 'by psychology': 153682, 'psychology panicshopping': 687577, 'panicshopping food': 639429, 'food psychology': 316075, 'on basic human': 599582, 'basic human level': 111936, 'human level what': 410543, 'level what being': 487750, 'what being left': 981102, 'being left behind': 125376, 'left behind show': 485422, 'behind show what': 124693, 'show what people': 767274, 'what people just': 982012, 'just won eat': 470324, 'won eat even': 1003792, 'eat even in': 265906, 'in the worst': 429693, 'case scenario article': 166001, 'scenario article by': 741252, 'article by psychology': 94284, 'by psychology panicshopping': 153684, 'psychology panicshopping food': 687578, 'panicshopping food psychology': 639430, 'squeaking': 791519, 'is squeaking': 452205, 'squeaking it': 791520, 'it elderly': 457782, 'customer first': 222379, 'first stayhomechallenge': 309025, 'now that online': 576011, 'shopping is squeaking': 763080, 'is squeaking it': 452206, 'squeaking it time': 791521, 'put it elderly': 690644, 'it elderly customer': 457783, 'elderly customer first': 270651, 'customer first stayhomechallenge': 222380, 'freeport': 332484, '5th': 20820, 'newscentermaine': 561009, 'breaking all': 138911, 'close including': 182678, 'company flagship': 190660, 'in freeport': 423107, 'freeport starting': 332485, 'midnight through': 530757, 'through 29': 894293, '29 it': 16478, 'the 5th': 848159, '5th time': 20833, 'company history': 190751, 'history the': 398059, 'than 24': 840206, 'hour newscentermaine': 405777, 'breaking all store': 138912, 'all store to': 44504, 'store to close': 810763, 'to close including': 902880, 'close including the': 182679, 'including the company': 432180, 'the company flagship': 851326, 'company flagship store': 190661, 'flagship store in': 309966, 'store in freeport': 808304, 'in freeport starting': 423108, 'freeport starting at': 332486, 'at midnight through': 99741, 'midnight through 29': 530758, 'through 29 it': 894294, '29 it is': 16479, 'it is only': 459030, 'only the 5th': 611258, 'the 5th time': 848161, '5th time in': 20834, 'time in the': 897015, 'in the company': 429087, 'the company history': 851330, 'company history the': 190752, 'history the store': 398061, 'will close the': 992947, 'close the first': 182841, 'first time for': 309098, 'time for more': 896727, 'more than 24': 540555, 'than 24 hour': 840208, '24 hour newscentermaine': 15621, 'stoner': 804358, 'these best': 879688, 'on tight': 604691, 'tight budget': 895821, 'budget for': 141788, 'for stoner': 325921, 'out these best': 627534, 'these best way': 879690, 'way to save': 970087, 'save money on': 737586, 'money on tight': 536942, 'on tight budget': 604692, 'tight budget for': 895822, 'budget for stoner': 141790, 'samreen': 733496, 'taking extreme': 833358, 'extreme step': 293834, 'afloat amid': 34942, 'crisis samreen': 217998, 'company taking extreme': 191148, 'taking extreme step': 833359, 'extreme step to': 293835, 'step to continue': 799642, 'continue to stay': 201264, 'stay afloat amid': 796745, 'afloat amid covid': 34943, '19 crisis samreen': 6316, 'akdeniz': 40514, 'hoe': 399814, 'walthamstow': 965522, 'acumen': 31030, 'finest': 307770, 'congratulation to': 194445, 'to akdeniz': 900208, 'akdeniz on': 40515, 'on hoe': 601335, 'hoe street': 399817, 'in walthamstow': 430671, 'walthamstow for': 965523, 'for showing': 325608, 'showing admirable': 767409, 'admirable business': 32546, 'business acumen': 143225, 'acumen in': 31031, 'in taking': 428803, 'pandemic raising': 636285, 'price 99': 672187, 'for liter': 323005, 'liter bottle': 494917, 'of cooking': 581867, 'oil 99': 596586, 'an egg': 55624, 'egg tray': 270017, 'tray capitalism': 930728, 'capitalism at': 162724, 'it finest': 458011, 'congratulation to akdeniz': 194446, 'to akdeniz on': 900209, 'akdeniz on hoe': 40516, 'on hoe street': 601336, 'hoe street in': 399818, 'street in walthamstow': 813002, 'in walthamstow for': 430672, 'walthamstow for showing': 965524, 'for showing admirable': 325609, 'showing admirable business': 767410, 'admirable business acumen': 32547, 'business acumen in': 143226, 'acumen in taking': 31032, 'in taking advantage': 428804, 'advantage of and': 32985, 'of and the': 580186, 'the pandemic raising': 863071, 'pandemic raising their': 636287, 'their price 99': 874372, 'price 99 for': 672189, '99 for liter': 23826, 'for liter bottle': 323006, 'liter bottle of': 494918, 'bottle of cooking': 136277, 'of cooking oil': 581868, 'cooking oil 99': 202886, 'oil 99 for': 596587, '99 for an': 23822, 'for an egg': 319279, 'an egg tray': 55626, 'egg tray capitalism': 270018, 'tray capitalism at': 930729, 'capitalism at it': 162725, 'at it finest': 99322, 'antiseptic': 78554, 'instock': 440490, 'ordernow': 619065, 'dettol antiseptic': 239521, 'antiseptic disinfectant': 78557, 'disinfectant liquid': 245706, 'liquid for': 494086, 'first aid': 308489, 'aid surface': 39456, 'cleaning and': 180893, 'hygiene ad': 412041, 'ad instock': 31124, 'instock ordernow': 440493, 'ordernow amazon': 619066, 'amazon antiseptic': 50862, 'antiseptic soap': 78567, 'soap handsoap': 779025, 'handsoap sanitizer': 376736, 'sanitizer panicbuying': 735532, 'dettol antiseptic disinfectant': 239522, 'antiseptic disinfectant liquid': 78558, 'disinfectant liquid for': 245707, 'liquid for first': 494087, 'for first aid': 321501, 'first aid surface': 308491, 'aid surface cleaning': 39457, 'surface cleaning and': 827999, 'cleaning and personal': 180895, 'and personal hygiene': 68924, 'personal hygiene ad': 652871, 'hygiene ad instock': 412042, 'ad instock ordernow': 31126, 'instock ordernow amazon': 440494, 'ordernow amazon antiseptic': 619068, 'amazon antiseptic soap': 50863, 'antiseptic soap handsoap': 78568, 'soap handsoap sanitizer': 779026, 'handsoap sanitizer panicbuying': 376737, 'highland': 395885, 'highlandlakes': 395891, 'foodpantries': 318022, 'dailytrib': 224935, 'highland lake': 395886, 'lake area': 479054, 'area food': 92008, 'pantry struggle': 639678, 'shelf grocery': 757130, 'up amidst': 944284, 'pandemic highlandlakes': 635627, 'highlandlakes foodpantries': 395892, 'foodpantries dailytrib': 318023, 'highland lake area': 395887, 'lake area food': 479055, 'area food pantry': 92010, 'food pantry struggle': 315799, 'pantry struggle to': 639679, 'struggle to stock': 814394, 'stock shelf grocery': 802833, 'shelf grocery store': 757131, 'store shopper stock': 810126, 'stock up amidst': 803056, 'up amidst covid': 944285, '19 pandemic highlandlakes': 9349, 'pandemic highlandlakes foodpantries': 635628, 'highlandlakes foodpantries dailytrib': 395893, 'interesting information': 441565, 'from google': 335667, 'google on': 358180, 'on insight': 601582, 'google search': 358186, 'data via': 226483, 'interesting information from': 441566, 'information from google': 437838, 'from google on': 335668, 'google on insight': 358181, 'on insight from': 601583, 'insight from google': 439549, 'from google search': 335669, 'google search data': 358187, 'search data via': 743235, 'finder': 307419, 'for hospitality': 322371, 'staff help': 792525, 'for pub': 324849, 'pub staff': 687765, 'staff trust': 793025, 'trust advice': 934232, 'benefit debt': 126954, 'debt consumption': 230456, 'and consumption': 60457, 'consumption employment': 199867, 'employment issue': 274621, 'issue benefit': 455690, 'benefit calculator': 126939, 'calculator grant': 155329, 'grant finder': 362022, 'finder org': 307426, 'org debt': 619177, 'debt advice': 230406, 'help for hospitality': 389748, 'for hospitality staff': 322372, 'hospitality staff help': 404807, 'staff help for': 792526, 'help for pub': 389753, 'for pub staff': 324850, 'pub staff trust': 687766, 'staff trust advice': 793026, 'trust advice on': 934233, 'advice on benefit': 33453, 'on benefit debt': 599624, 'benefit debt consumption': 126956, 'debt consumption and': 230457, 'consumption and consumption': 199828, 'and consumption employment': 60460, 'consumption employment issue': 199868, 'employment issue benefit': 274622, 'issue benefit calculator': 455691, 'benefit calculator grant': 126940, 'calculator grant finder': 155330, 'grant finder org': 362023, 'finder org debt': 307427, 'org debt advice': 619178, 'pet food in': 653387, 'food in demand': 314935, 'real ya': 701467, 'there do': 878325, 'hygiene stuff': 412177, 'stuff if': 815092, 'any left': 79402, 'left wash': 485716, 'wash ya': 967575, 'ya hand': 1013999, 'ya face': 1013986, 'and ya': 75958, 'ya as': 1013963, 'as keep': 94770, 'it clean': 457151, 'clean ppl': 180619, 'ppl do': 668212, 'be asshole': 113711, 'the real ya': 865250, 'real ya ll': 701468, 'ya ll be': 1014012, 'll be safe': 496622, 'out there do': 627476, 'there do not': 878326, 'on food medicine': 600886, 'food medicine and': 315439, 'medicine and hygiene': 526718, 'and hygiene stuff': 64908, 'hygiene stuff if': 412178, 'stuff if there': 815093, 'there is any': 878525, 'is any left': 445759, 'any left wash': 79404, 'left wash ya': 485718, 'wash ya hand': 967577, 'ya hand wash': 1014000, 'hand wash ya': 375938, 'wash ya face': 967576, 'ya face and': 1013987, 'face and ya': 294306, 'and ya as': 75959, 'ya as keep': 1013965, 'as keep it': 94771, 'keep it clean': 471607, 'it clean ppl': 457153, 'clean ppl do': 180620, 'ppl do not': 668213, 'not be asshole': 568356, 'local corner': 497861, 'shop london': 760434, 'london just': 501103, 'posted sign': 666568, 'sign price': 769195, 'my local corner': 549108, 'local corner shop': 497862, 'corner shop london': 203672, 'shop london just': 760435, 'london just posted': 501104, 'just posted sign': 469476, 'posted sign price': 666569, 'sign price might': 769196, 'price might have': 675239, 'might have to': 531023, 'have to rise': 383284, 'to rise due': 913562, 'due to supply': 261983, 'to supply and': 915875, 'commandeering': 188333, 'astronomical': 97252, 'ridge': 721497, 'be commandeering': 114156, 'commandeering vehicle': 188334, 'vehicle which': 954296, 'road due': 724442, '19 loan': 8352, 'loan them': 497540, 'to etc': 905264, 'etc online': 282686, 'be astronomical': 113719, 'astronomical but': 97253, 'but vital': 147697, 'vital this': 959741, 'also create': 48078, 'create temporary': 215751, 'temporary employment': 837613, 'employment for': 274604, 'some marr': 783262, 'marr ridge': 517985, 'uk government should': 938417, 'should be commandeering': 765587, 'be commandeering vehicle': 114157, 'commandeering vehicle which': 188335, 'vehicle which are': 954297, 'which are off': 985691, 'are off the': 88650, 'off the road': 594264, 'the road due': 865926, 'road due to': 724443, 'covid 19 loan': 213363, '19 loan them': 8356, 'loan them out': 497541, 'out to etc': 627640, 'to etc online': 905265, 'etc online shopping': 282687, 'shopping delivery are': 762456, 'delivery are gonna': 233719, 'gonna be astronomical': 356465, 'be astronomical but': 113720, 'astronomical but vital': 97254, 'but vital this': 147698, 'vital this should': 959742, 'this should also': 890123, 'should also create': 765502, 'also create temporary': 48079, 'create temporary employment': 215752, 'temporary employment for': 837614, 'employment for some': 274606, 'for some marr': 325753, 'some marr ridge': 783263, 'parkinglot': 642127, 'of of': 587152, 'mind dedicated': 532652, 'to practicing': 911968, 'socialdistancing in': 780444, 'the parkinglot': 863300, 'parkinglot at': 642128, 'the pricegougers': 864446, 'pricegougers grocery': 677768, 'store coronavillains': 807187, 'with the health': 1001328, 'health of of': 386686, 'of of the': 587156, 'of the vulnerable': 591595, 'vulnerable in mind': 961015, 'in mind dedicated': 425339, 'mind dedicated to': 532653, 'dedicated to practicing': 231748, 'to practicing socialdistancing': 911969, 'practicing socialdistancing in': 668751, 'socialdistancing in the': 780448, 'in the parkinglot': 429439, 'the parkinglot at': 863301, 'parkinglot at the': 642129, 'at the pricegougers': 101063, 'the pricegougers grocery': 864447, 'pricegougers grocery store': 677769, 'grocery store coronavillains': 365305, 'askusanything': 96181, '17th': 4469, 'to confirm': 903190, 'confirm that': 194101, 'be holding': 115278, 'special askusanything': 787856, 'askusanything webinar': 96182, 'webinar on': 975063, 'april 17th': 83431, '17th with': 4473, 'with both': 997454, 'both ceo': 135876, 'ceo and': 169640, 'and key': 65817, 'advocacy leader': 33807, 'leader examine': 483449, 'examine the': 288820, 'utility industry': 951292, 'industry response': 436078, 'excited to confirm': 289572, 'to confirm that': 903192, 'confirm that will': 194106, 'will be holding': 992502, 'be holding special': 115279, 'holding special askusanything': 400160, 'special askusanything webinar': 787857, 'askusanything webinar on': 96183, 'webinar on april': 975068, 'on april 17th': 599434, 'april 17th with': 83432, '17th with both': 4474, 'with both ceo': 997455, 'both ceo and': 135877, 'ceo and key': 169645, 'and key consumer': 65818, 'key consumer advocacy': 473259, 'consumer advocacy leader': 196060, 'advocacy leader examine': 33808, 'leader examine the': 483450, 'examine the utility': 288821, 'the utility industry': 870601, 'utility industry response': 951293, 'industry response to': 436079, 'response to join': 715861, 'africa is': 35087, 'is food': 447862, 'food secure': 316332, 'secure and': 744426, 'are urged': 91387, 'south africa is': 786653, 'africa is food': 35089, 'is food secure': 447871, 'food secure and': 316333, 'secure and consumer': 744427, 'consumer are urged': 196322, 'are urged to': 91388, 'urged to stop': 948295, 'buying amid covid': 149888, 'ghaziabad': 349619, 'goi': 354954, 'proportionately': 684447, 'ghaziabad good': 349620, 'good the': 357824, 'the goi': 856407, 'goi ha': 354959, 'piece ply': 656358, 'at piece': 100122, 'piece and': 656266, 'hand sanitisers': 375257, 'sanitisers at': 734067, 'at not': 99917, 'not more': 570599, 'ml with': 534732, 'lower or': 505927, 'or higher': 615635, 'higher volume': 395788, 'volume pack': 960163, 'pack priced': 633137, 'priced proportionately': 677749, 'proportionately the': 684448, 'is effective': 447450, 'ghaziabad good the': 349621, 'good the goi': 357827, 'the goi ha': 856408, 'goi ha capped': 354960, 'capped the retail': 162884, 'at 10 per': 97408, '10 per piece': 1624, 'per piece ply': 650983, 'piece ply mask': 656359, 'mask at piece': 518429, 'at piece and': 100123, 'piece and hand': 656267, 'and hand sanitisers': 64144, 'hand sanitisers at': 375260, 'sanitisers at not': 734068, 'at not more': 99918, 'not more than': 570602, '200 ml with': 13509, 'ml with lower': 534733, 'with lower or': 999344, 'lower or higher': 505928, 'or higher volume': 615641, 'higher volume pack': 395790, 'volume pack priced': 960164, 'pack priced proportionately': 633138, 'priced proportionately the': 677750, 'proportionately the order': 684449, 'the order is': 862451, 'order is effective': 618334, 'lfk': 487889, 'maskedup': 519631, 'glovedup': 353064, 'abiding': 24356, 'maskupforothers': 519705, 'protectthevulnerable': 685860, 'in lfk': 424691, 'lfk at': 487890, 'today maskedup': 919862, 'maskedup glovedup': 519632, 'glovedup people': 353065, 'even abiding': 283801, 'abiding the': 24367, 'rule crowd': 727228, 'meat chatting': 525514, 'chatting in': 174015, 'dairy department': 224967, 'department socialdistancing': 237262, 'socialdistancing maskup': 780522, 'maskup maskupforothers': 519701, 'maskupforothers protectthevulnerable': 519706, 'in lfk at': 424692, 'lfk at the': 487891, 'store today maskedup': 810854, 'today maskedup glovedup': 919863, 'maskedup glovedup people': 519633, 'glovedup people were': 353066, 'people were even': 650201, 'were even abiding': 979589, 'even abiding the': 283802, 'abiding the rule': 24368, 'the rule crowd': 866044, 'rule crowd in': 727229, 'crowd in the': 219176, 'the produce meat': 864572, 'produce meat chatting': 680355, 'meat chatting in': 525515, 'chatting in the': 174018, 'in the dairy': 429120, 'the dairy department': 852792, 'dairy department socialdistancing': 224968, 'department socialdistancing maskup': 237263, 'socialdistancing maskup maskupforothers': 780523, 'maskup maskupforothers protectthevulnerable': 519702, 'and stripping': 72581, 'shelf like': 757282, 'like plague': 491007, 'plague of': 657971, 'of locust': 585971, 'locust you': 500583, 'yourselves nurse': 1026801, 'doctor need': 250984, 'too received': 925029, 'received today': 703699, 'ward where': 966654, 'where my': 985037, 'work random': 1005642, 'kindness that': 475224, 'that meant': 845127, 'meant so': 524899, 'much to': 545386, 'buying and stripping': 149935, 'and stripping supermarket': 72584, 'supermarket shelf like': 822490, 'shelf like plague': 757285, 'like plague of': 491008, 'plague of locust': 657973, 'of locust you': 585975, 'locust you should': 500584, 'ashamed of yourselves': 95069, 'of yourselves nurse': 593554, 'yourselves nurse doctor': 1026802, 'nurse doctor need': 577302, 'doctor need food': 250985, 'need food too': 554812, 'food too received': 317336, 'too received today': 925030, 'received today on': 703702, 'on the ward': 604439, 'the ward where': 871077, 'ward where my': 966655, 'where my daughter': 985041, 'daughter work random': 226929, 'work random act': 1005643, 'of kindness that': 585650, 'kindness that meant': 475226, 'that meant so': 845128, 'meant so much': 524900, 'so much to': 777820, 'much to the': 545394, 'to the staff': 917090, 'needtoeat': 556659, 'don meet': 253734, 'meet with': 527651, 'with come': 997693, 'to unless': 917953, 'contact nh': 200154, 'nh 11': 561863, '11 panic': 2574, 'essential we': 281761, 'all needtoeat': 43613, 'needtoeat amp': 556660, 'please don meet': 659919, 'don meet with': 253736, 'meet with come': 527653, 'with come to': 997694, 'come to unless': 187613, 'to unless it': 917954, 'unless it an': 942618, 'it an emergency': 456467, 'an emergency if': 55677, 'think you have': 885812, 'you have contact': 1019029, 'have contact nh': 380087, 'contact nh 11': 200155, 'nh 11 panic': 561864, '11 panic buy': 2575, 'panic buy essential': 637478, 'buy essential we': 148579, 'essential we all': 281762, 'we all needtoeat': 970347, 'all needtoeat amp': 43614, 'needtoeat amp the': 556661, 'amp the shop': 54668, 'the shop will': 867040, 'shop will get': 761052, 'will get more': 993512, 'get more supply': 347602, 'dominance': 253265, 'rebounded': 703330, 'fiscal': 309239, 'tempusfx': 837758, 'forexnews': 329185, 'usd continues': 948912, 'continues it': 201407, 'it dominance': 457652, 'dominance market': 253266, 'market rebounded': 516957, 'rebounded some': 703333, 'some after': 782267, 'major fiscal': 509331, 'fiscal stimulus': 309274, 'stimulus and': 801501, '2003 tempusfx': 13601, 'tempusfx payment': 837759, 'payment forexnews': 645626, 'forexnews full': 329187, 'usd continues it': 948913, 'continues it dominance': 201409, 'it dominance market': 457653, 'dominance market rebounded': 253267, 'market rebounded some': 516958, 'rebounded some after': 703334, 'some after the': 782268, 'the announcement of': 848757, 'announcement of major': 77175, 'of major fiscal': 586110, 'major fiscal stimulus': 509332, 'fiscal stimulus and': 309275, 'stimulus and oil': 801505, 'are at their': 84686, 'at their lowest': 101171, 'their lowest level': 873894, 'since 2003 tempusfx': 770447, '2003 tempusfx payment': 13602, 'tempusfx payment forexnews': 837760, 'payment forexnews full': 645627, 'forexnews full report': 329188, '19 retail': 10199, 'covid 19 retail': 213708, '19 retail store': 10207, 'barrf': 111326, 'corrupttrump': 207706, 'lyinking': 507097, 'disbarbarr': 244299, 'trumpliespeopledie': 934085, 'overdosing': 631175, 'leadi': 483672, 'bill barrf': 130518, 'barrf is': 111327, 'evil almost': 288429, 'almost worse': 46770, 'than corrupttrump': 840463, 'corrupttrump lyinking': 207707, 'lyinking disbarbarr': 507098, 'disbarbarr emphasis': 244300, 'on almost': 599259, 'almost trumpliespeopledie': 46755, 'trumpliespeopledie people': 934086, 'are overdosing': 88919, 'overdosing on': 631176, 'on hydroxychloroquine': 601456, 'hydroxychloroquine and': 411994, 'soaring trump': 779345, 'trump bad': 933430, 'bad advice': 107749, 'advice leadi': 33425, 'bill barrf is': 130519, 'barrf is evil': 111328, 'is evil almost': 447608, 'evil almost worse': 288430, 'almost worse than': 46771, 'worse than corrupttrump': 1011007, 'than corrupttrump lyinking': 840464, 'corrupttrump lyinking disbarbarr': 207708, 'lyinking disbarbarr emphasis': 507099, 'disbarbarr emphasis on': 244301, 'emphasis on almost': 273373, 'on almost trumpliespeopledie': 599261, 'almost trumpliespeopledie people': 46756, 'trumpliespeopledie people are': 934087, 'people are overdosing': 647038, 'are overdosing on': 88920, 'overdosing on hydroxychloroquine': 631177, 'on hydroxychloroquine and': 601457, 'hydroxychloroquine and the': 411995, 'are soaring trump': 90233, 'soaring trump bad': 779346, 'trump bad advice': 933431, 'bad advice leadi': 107750, 'bulkbuying': 142387, 'raise with': 695975, 'with boris': 997452, 'boris please': 135484, 'please that': 660661, 'that supermarket': 846558, 'supermarket control': 819769, 'for bulkbuying': 319816, 'bulkbuying are': 142388, 'working shelf': 1008907, 'limit still': 492499, 'still way': 801393, 'high people': 395214, 'people panicking': 649068, 'panicking they': 639388, 'eat they': 266077, 'supply how': 825374, 'you combating': 1017983, 'combating this': 187079, 'you raise with': 1020542, 'raise with boris': 695976, 'with boris please': 997453, 'boris please that': 135485, 'please that supermarket': 660662, 'that supermarket control': 846565, 'supermarket control for': 819770, 'control for bulkbuying': 202012, 'for bulkbuying are': 319817, 'bulkbuying are not': 142389, 'not working shelf': 572552, 'working shelf still': 1008908, 'shelf still empty': 757572, 'still empty limit': 800479, 'empty limit still': 274938, 'limit still way': 492500, 'still way too': 801396, 'way too high': 970126, 'too high people': 924787, 'high people panicking': 395216, 'people panicking they': 649074, 'panicking they need': 639389, 'need to eat': 555912, 'to eat they': 904905, 'eat they need': 266080, 'they need supply': 882760, 'need supply how': 555678, 'supply how are': 825375, 'are you combating': 91776, 'you combating this': 1017984, 'combating this coronacrisis': 187080, 'opecplus': 611987, 'even production': 284495, 'production cut': 681985, 'size will': 772811, 'be large': 115654, 'large enough': 479656, 'offset the': 596113, 'the induced': 858151, 'induced demand': 435462, 'shock and': 759421, 'could tumble': 209796, 'tumble in': 935307, 'week inventory': 976409, 'inventory rise': 443707, 'rise opec': 722964, 'opec opecplus': 611931, 'still even production': 800497, 'even production cut': 284496, 'production cut of': 681997, 'cut of this': 223436, 'this size will': 890202, 'size will not': 772812, 'not be large': 568410, 'be large enough': 115655, 'large enough to': 479659, 'enough to offset': 277715, 'to offset the': 910874, 'offset the induced': 596119, 'the induced demand': 858153, 'induced demand shock': 435463, 'demand shock and': 236196, 'shock and oil': 759426, 'price could tumble': 673298, 'could tumble in': 209797, 'tumble in the': 935308, 'coming week inventory': 188279, 'week inventory rise': 976410, 'inventory rise opec': 443708, 'rise opec opecplus': 722965, 'flavour': 310245, 'didn during': 241040, 'the helping': 857274, 'doing 10': 252247, 'hour night': 405778, 'shift on': 758369, 'my 5th': 547165, '5th in': 20827, 'row at': 726572, 'nh the': 562136, 'never heard': 558060, 'that flavour': 843889, 'flavour before': 310246, 'didn during the': 241041, 'during the helping': 263138, 'the helping out': 857275, 'helping out doing': 391423, 'out doing 10': 625972, 'doing 10 hour': 252248, '10 hour night': 1468, 'hour night shift': 405779, 'night shift on': 563071, 'shift on my': 758370, 'on my 5th': 602258, 'my 5th in': 547166, '5th in row': 20828, 'in row at': 427558, 'row at my': 726574, 'local supermarket filling': 498525, 'supermarket filling the': 820318, 'the shelf for': 866837, 'the nh the': 861767, 'nh the elderly': 562137, 'elderly and after': 270568, 'after the store': 36360, 'is open to': 450582, 'open to the': 612604, 'public and ve': 687860, 'and ve never': 74851, 've never heard': 953387, 'never heard of': 558061, 'of that flavour': 590720, 'that flavour before': 843890, 'rack': 695339, 'show little': 767033, 'little appreciation': 495236, 'appreciation and': 82867, 'and serve': 71289, 'serve others': 751920, 'others next': 621544, 'line checking': 493030, 'store ask': 806545, 'ask the': 95631, 'person bagger': 652325, 'bagger what': 108515, 'what snack': 982198, 'snack or': 776023, 'candy from': 161334, 'the rack': 865091, 'rack you': 695360, 'want to show': 966120, 'to show little': 914564, 'show little appreciation': 767034, 'little appreciation and': 495237, 'appreciation and serve': 82868, 'and serve others': 71291, 'serve others next': 751921, 'others next time': 621545, 'time you re': 898414, 're in line': 698872, 'in line checking': 424746, 'line checking out': 493031, 'checking out at': 174838, 'out at the': 625750, 'grocery store ask': 365217, 'store ask the': 806548, 'ask the checkout': 95632, 'the checkout person': 850771, 'checkout person bagger': 174980, 'person bagger what': 652326, 'bagger what snack': 108516, 'what snack or': 982199, 'snack or candy': 776024, 'or candy from': 614659, 'candy from the': 161335, 'from the rack': 337849, 'the rack you': 865094, 'rack you can': 695361, 'you can purchase': 1017756, 'can purchase for': 159343, 'purchase for them': 689459, 'minhas': 532990, 'great interview': 362770, 'interview this': 442247, 'evening to': 284916, 'our remarkable': 624586, 'remarkable team': 710117, 'is producing': 451061, 'producing million': 680784, 'million and': 532063, 'needed bottle': 556314, 'the minhas': 860642, 'minhas brewery': 532991, 'brewery and': 139429, 'fight stay': 304871, 'for the great': 326465, 'the great interview': 856722, 'great interview this': 362771, 'interview this evening': 442248, 'this evening to': 887448, 'evening to talk': 284919, 'talk about how': 833740, 'about how our': 25459, 'how our remarkable': 408465, 'our remarkable team': 624587, 'remarkable team is': 710118, 'team is producing': 835701, 'is producing million': 451066, 'producing million and': 680785, 'million and more': 532065, 'and more if': 67179, 'more if needed': 539476, 'if needed bottle': 414459, 'needed bottle of': 556315, 'at the minhas': 101021, 'the minhas brewery': 860643, 'minhas brewery and': 532992, 'brewery and distillery': 139430, 'and distillery to': 61501, 'distillery to fight': 247821, 'to fight stay': 905811, 'fight stay safe': 304872, 'newly hired': 560112, 'hired tesco': 397046, 'tesco worker': 838855, 'worker include': 1007215, 'include driver': 431552, 'driver helping': 259602, 'meet soaring': 527570, 'soaring demand': 779317, 'the newly hired': 861596, 'newly hired tesco': 560113, 'hired tesco worker': 397047, 'tesco worker include': 838857, 'worker include driver': 1007216, 'include driver helping': 431553, 'driver helping to': 259603, 'helping to meet': 391530, 'to meet soaring': 910050, 'meet soaring demand': 527571, 'soaring demand for': 779319, 'indebted': 433970, 'god without': 354847, 'without also': 1002481, 'also being': 47947, 'being grateful': 125190, 'pharmacist nurse': 654157, 'helping get': 391338, 'all indebted': 43213, 'indebted to': 433971, 'you can be': 1017628, 'can be grateful': 157626, 'grateful to god': 362321, 'to god without': 906899, 'god without also': 354848, 'without also being': 1002482, 'also being grateful': 47952, 'being grateful to': 125192, 'grateful to people': 362325, 'to people thank': 911639, 'of the doctor': 590959, 'the doctor pharmacist': 853469, 'doctor pharmacist nurse': 251074, 'pharmacist nurse grocery': 654158, 'employee delivery worker': 273768, 'are helping get': 87097, 'helping get through': 391341, 'through this we': 894856, 'this we are': 891143, 'are all indebted': 84318, 'all indebted to': 43214, 'indebted to you': 433973, 'beige': 124776, 'now stuck': 575924, 'with teenager': 1001136, 'teenager with': 836562, 'with autism': 997344, 'autism child': 103847, 'only eats': 610379, 'eats beige': 266363, 'beige dry': 124779, 'frozen food': 338967, 'store within': 811412, 'within 30': 1002320, '30 mile': 17106, 'radius of': 695488, 'house do': 406269, 'drive haven': 259068, 'been stockpiling': 122046, 'stockpiling fucking': 803971, 'now stuck in': 575925, 'house with teenager': 406697, 'with teenager with': 1001137, 'teenager with autism': 836563, 'with autism child': 997345, 'autism child who': 103848, 'child who only': 176266, 'who only eats': 989379, 'only eats beige': 610380, 'eats beige dry': 266364, 'beige dry food': 124780, 'dry food frozen': 261265, 'food frozen food': 314623, 'frozen food all': 338969, 'food all of': 313087, 'all of which': 43726, 'of which are': 593098, 'which are sold': 985695, 'sold out in': 781736, 'out in every': 626377, 'in every damn': 422675, 'every damn grocery': 285784, 'grocery store within': 365962, 'store within 30': 811413, 'within 30 mile': 1002321, '30 mile radius': 17108, 'mile radius of': 531410, 'radius of my': 695491, 'of my house': 586780, 'my house do': 548728, 'house do not': 406270, 'not drive haven': 569107, 'drive haven been': 259069, 'haven been stockpiling': 383762, 'been stockpiling fucking': 122047, 'perdue': 651254, 'randy': 696669, 're running': 699405, 'running much': 728007, 'much product': 545260, 'product we': 681815, 'can harvesting': 158565, 'harvesting many': 378658, 'many chicken': 513892, 'chicken we': 175876, 'working saturday': 1008903, 'saturday if': 737026, 'supply said': 825795, 'said perdue': 731311, 'perdue farm': 651255, 'farm ceo': 299098, 'ceo randy': 169816, 'randy day': 696670, 'we re running': 972955, 're running much': 699406, 'running much product': 728008, 'much product we': 545261, 'product we can': 681817, 'we can harvesting': 970958, 'can harvesting many': 158566, 'harvesting many chicken': 378659, 'many chicken we': 513894, 'chicken we can': 175878, 'we can and': 970907, 'can and we': 157499, 'are working saturday': 91716, 'working saturday if': 1008904, 'saturday if we': 737027, 'have the supply': 383032, 'the supply said': 868957, 'supply said perdue': 825796, 'said perdue farm': 731312, 'perdue farm ceo': 651256, 'farm ceo randy': 299099, 'ceo randy day': 169817, 'social recession': 779920, 'recession but': 704228, 'real damage': 701097, 'damage inflicted': 225205, 'inflicted is': 437281, 'yet being': 1016014, 'being felt': 125137, 'felt do': 303376, 'be surprised': 117482, 'surprised if': 828583, 'people before': 647240, 'before lining': 122910, 'lining up': 493763, 'supermarket first': 820328, 'first queued': 308897, 'queued for': 694151, 'an economic and': 55575, 'economic and social': 266987, 'and social recession': 71894, 'social recession but': 779921, 'recession but the': 704231, 'the real damage': 865213, 'real damage inflicted': 701098, 'damage inflicted is': 225206, 'inflicted is not': 437282, 'is not yet': 450226, 'not yet being': 572597, 'yet being felt': 1016015, 'being felt do': 125140, 'felt do not': 303377, 'not be surprised': 568466, 'be surprised if': 117483, 'surprised if people': 828586, 'if people before': 414609, 'people before lining': 647241, 'before lining up': 122911, 'lining up at': 493764, 'the supermarket first': 868593, 'supermarket first queued': 820329, 'first queued for': 308898, 'queued for food': 694152, 'for food stamp': 321635, 'assuage': 96995, 'loud': 504481, 'handsomely': 376739, 'seeing can': 746248, 'the bar': 849269, 'bar going': 110709, 'to assuage': 900788, 'assuage my': 96996, 'my need': 549421, 'by ordering': 153456, 'ordering complicated': 618950, 'complicated weight': 192468, 'of deli': 582480, 'deli cheese': 232920, 'cheese at': 175171, 'store while': 811278, 'while making': 987026, 'making loud': 511182, 'loud political': 504492, 'political comment': 663635, 'comment and': 188382, 'then handsomely': 877229, 'handsomely tipping': 376740, 'tipping the': 898995, 'person behind': 652327, 'counter quarentinelife': 210249, 'quarentinelife isolation': 693193, 'seeing can go': 746249, 'can go out': 158507, 'to the bar': 916508, 'the bar going': 849271, 'bar going to': 110710, 'going to assuage': 355527, 'to assuage my': 900789, 'assuage my need': 96997, 'my need by': 549423, 'need by ordering': 554584, 'by ordering complicated': 153457, 'ordering complicated weight': 618951, 'complicated weight of': 192469, 'weight of deli': 977707, 'of deli cheese': 582482, 'deli cheese at': 232921, 'cheese at the': 175173, 'grocery store while': 365949, 'store while making': 811285, 'while making loud': 987027, 'making loud political': 511183, 'loud political comment': 504493, 'political comment and': 663636, 'comment and then': 188387, 'and then handsomely': 73767, 'then handsomely tipping': 877230, 'handsomely tipping the': 376741, 'tipping the person': 898996, 'the person behind': 863579, 'person behind the': 652329, 'behind the counter': 124711, 'the counter quarentinelife': 852032, 'counter quarentinelife isolation': 210250, '19 side': 10538, 'morning now on': 541384, 'now on covid': 575422, 'covid 19 side': 213800, 'testy': 839699, 'begrateful': 123694, 'someone mentioned': 784566, 'mentioned today': 528849, 'that folk': 843895, 'folk working': 312316, 'store job': 808607, 'job costco': 465755, 'costco et': 208226, 'al are': 40558, 'are unsung': 91341, 'local are': 497686, 'working their': 1008943, 'their ass': 872514, 'ass off': 96260, 'off with': 594392, 'with testy': 1001160, 'testy customer': 839700, 'and freaked': 63262, 'out supply': 627284, 'good when': 357953, 'shopping begrateful': 762191, 'someone mentioned today': 784567, 'mentioned today that': 528850, 'today that folk': 920267, 'that folk working': 843896, 'folk working grocery': 312318, 'grocery store job': 365496, 'store job costco': 808609, 'job costco et': 465756, 'costco et al': 208227, 'et al are': 282348, 'al are unsung': 40560, 'are unsung hero': 91342, 'in this fight': 429948, 'this fight the': 887548, 'fight the folk': 304892, 'folk in our': 312196, 'our local are': 623765, 'local are working': 497689, 'are working their': 91720, 'working their ass': 1008945, 'their ass off': 872516, 'ass off with': 96262, 'off with testy': 594399, 'with testy customer': 1001161, 'testy customer and': 839701, 'customer and freaked': 222076, 'and freaked out': 63263, 'freaked out supply': 331526, 'out supply chain': 627285, 'chain be good': 170542, 'be good when': 115079, 'good when you': 357955, 'you re shopping': 1020743, 're shopping begrateful': 699502, '5pm': 20799, 'prophet': 684399, 'have probably': 382051, 'probably been': 679219, 'supermarket lately': 821275, 'lately and': 480946, 'and wondered': 75825, 'wondered what': 1004055, 'this sign': 890143, 'taken over': 833045, 'over tune': 630865, 'tune into': 935412, 'into living': 442704, 'living water': 496481, 'water today': 969223, 'at 5pm': 97702, '5pm with': 20812, 'the prophet': 864689, 'prophet presented': 684402, 'presented by': 670657, 'by living': 153062, 'we have probably': 971905, 'have probably been': 382052, 'probably been to': 679221, 'local supermarket lately': 498549, 'supermarket lately and': 821276, 'lately and wondered': 480948, 'and wondered what': 75826, 'wondered what happened': 1004056, 'what happened to': 981547, 'happened to all': 377272, 'paper is this': 640364, 'is this sign': 453123, 'this sign of': 890145, 'of the end': 590985, 'the end the': 854306, 'end the ha': 275974, 'the ha taken': 857023, 'ha taken over': 372148, 'taken over tune': 833048, 'over tune into': 630866, 'tune into living': 935413, 'into living water': 442705, 'living water today': 496482, 'water today at': 969224, 'today at 5pm': 919269, 'at 5pm with': 97705, '5pm with the': 20813, 'with the prophet': 1001441, 'the prophet presented': 864691, 'prophet presented by': 684403, 'presented by living': 670659, 'by living water': 153063, 'for flattening': 321520, 'curve and': 221830, 'but someone': 147117, 'someone at': 784376, 'risk covid': 723478, 'would kill': 1011975, 'me cannot': 522564, 'cannot keep': 161983, 'meet or': 527545, 'take bus': 832000, 'supermarket every': 820225, 'time leave': 897119, 'house risk': 406536, 'risk being': 723410, 'all for flattening': 42835, 'for flattening the': 321521, 'the curve and': 852685, 'curve and all': 221831, 'all that but': 44631, 'that but someone': 843066, 'but someone at': 147119, 'someone at risk': 784379, 'at risk covid': 100349, 'risk covid 19': 723479, '19 would kill': 12213, 'would kill me': 1011976, 'kill me cannot': 474439, 'me cannot keep': 522567, 'cannot keep going': 161984, 'to the convenience': 916589, 'the convenience store': 851702, 'convenience store to': 202361, 'end meet or': 275879, 'meet or try': 527546, 'or try to': 617548, 'to take bus': 916164, 'take bus to': 832001, 'bus to the': 143103, 'the nearest supermarket': 861364, 'nearest supermarket every': 553729, 'supermarket every time': 820229, 'every time leave': 286311, 'time leave the': 897120, 'the house risk': 857630, 'house risk being': 406537, 'risk being exposed': 723411, 'endometriosis': 276265, 'have type': 383444, 'type diabetes': 937518, 'diabetes care': 240171, 'for disabled': 320734, 'disabled son': 243966, 'wife who': 992006, 'with complication': 997715, 'complication from': 192486, 'from endometriosis': 335282, 'endometriosis should': 276266, 'really be': 702009, 'working front': 1008657, 'in busy': 421089, 'busy supermarket': 144972, 'if go': 414153, 'family won': 298394, 'won function': 1003812, 'function what': 341277, 'do say': 250058, 'need to reach': 556030, 'to reach out': 912804, 'reach out here': 699967, 'out here have': 626280, 'here have type': 393077, 'have type diabetes': 383445, 'type diabetes care': 937520, 'diabetes care for': 240172, 'care for disabled': 163945, 'for disabled son': 320735, 'disabled son and': 243967, 'and my wife': 67394, 'my wife who': 550608, 'wife who is': 992007, 'who is of': 989097, 'is of with': 450404, 'of with complication': 593204, 'with complication from': 997716, 'complication from endometriosis': 192487, 'from endometriosis should': 335283, 'endometriosis should really': 276267, 'should really be': 766375, 'really be working': 702016, 'be working front': 118142, 'working front line': 1008658, 'line in busy': 493192, 'in busy supermarket': 421091, 'busy supermarket if': 144976, 'supermarket if go': 820829, 'if go down': 414154, 'go down with': 353503, 'down with covid': 257493, '19 my family': 8726, 'my family won': 548237, 'family won function': 298396, 'won function what': 1003813, 'function what do': 341278, 'what do say': 981350, 'do say to': 250059, 'say to my': 739393, 'to my work': 910451, 'r1bn': 695073, 'business development': 143633, 'development minister': 239826, 'minister expected': 533362, 'announce r1bn': 76869, 'r1bn support': 695074, 'support package': 826747, 'critical consumer': 218533, 'good needed': 357434, 'effective control': 269238, 'manage possible': 512420, 'possible supply': 665797, 'small business development': 774854, 'business development minister': 143635, 'development minister expected': 239827, 'minister expected to': 533363, 'expected to announce': 290961, 'to announce r1bn': 900555, 'announce r1bn support': 76870, 'r1bn support package': 695075, 'support package to': 826750, 'package to produce': 633434, 'produce more of': 680366, 'of the critical': 590912, 'the critical consumer': 852492, 'critical consumer good': 218534, 'consumer good needed': 197628, 'good needed for': 357435, 'needed for the': 556363, 'for the effective': 326405, 'the effective control': 854077, 'effective control of': 269239, '19 coronavirus and': 6090, 'coronavirus and to': 205502, 'and to manage': 74184, 'to manage possible': 909796, 'manage possible supply': 512421, 'possible supply shortage': 665798, 'ip': 444519, 'angelo': 76402, 'mazza': 522014, 'intellectualproperty': 440976, 'ip partner': 444521, 'partner angelo': 642769, 'angelo mazza': 76403, 'mazza discus': 522015, 'discus online': 244883, 'online best': 607931, 'for protecting': 324819, 'protecting against': 685176, 'against counterfeit': 37399, 'counterfeit product': 210309, 'product when': 681828, '19 read': 9971, 'more intellectualproperty': 539607, 'intellectualproperty ip': 440977, 'ip http': 444520, 'ip partner angelo': 444522, 'partner angelo mazza': 642770, 'angelo mazza discus': 76404, 'mazza discus online': 522016, 'discus online best': 244884, 'online best practice': 607932, 'practice for protecting': 668567, 'for protecting against': 324820, 'protecting against counterfeit': 685177, 'against counterfeit product': 37400, 'counterfeit product when': 210310, 'product when shopping': 681830, 'online for supply': 608240, 'for supply during': 326041, 'covid 19 read': 213660, '19 read more': 9975, 'read more intellectualproperty': 700439, 'more intellectualproperty ip': 539608, 'intellectualproperty ip http': 440978, 'hazzard': 384628, 'harbour': 377845, 'accordance': 28505, 'swabbed': 829912, 'influenza': 437364, 'docked': 250789, 'brad hazzard': 137521, 'hazzard on': 384629, 'sky said': 773223, 'said nsw': 731268, 'nsw health': 576709, 'health allowed': 386111, 'allowed the': 46220, 'the ship': 866940, 'the harbour': 857099, 'harbour in': 377848, 'in accordance': 419998, 'accordance with': 28506, 'with federal': 998405, 'government protocol': 360495, 'protocol he': 685986, 'said more': 731235, 'than 40': 840237, '40 people': 18632, 'were swabbed': 980209, 'swabbed for': 829913, 'for influenza': 322564, 'influenza not': 437371, 'ship before': 758655, 'it docked': 457605, 'docked in': 250790, 'sydney about': 830686, 'about 15': 24646, 'brad hazzard on': 137522, 'hazzard on sky': 384630, 'on sky said': 603497, 'sky said nsw': 773224, 'said nsw health': 731269, 'nsw health allowed': 576710, 'health allowed the': 386112, 'allowed the ship': 46221, 'the ship to': 866943, 'ship to come': 758720, 'come into the': 187394, 'into the harbour': 443135, 'the harbour in': 857100, 'harbour in accordance': 377849, 'in accordance with': 419999, 'accordance with federal': 28507, 'with federal government': 998406, 'federal government protocol': 302000, 'government protocol he': 360496, 'protocol he said': 685987, 'he said more': 385369, 'said more than': 731236, 'more than 40': 540564, 'than 40 people': 840240, '40 people were': 18634, 'people were swabbed': 650225, 'were swabbed for': 980210, 'swabbed for influenza': 829914, 'for influenza not': 322565, 'influenza not covid': 437372, 'on the ship': 604357, 'the ship before': 866941, 'ship before it': 758656, 'before it docked': 122880, 'it docked in': 457606, 'docked in sydney': 250791, 'in sydney about': 428776, 'sydney about 15': 830687, 'pegging': 646331, 'ratcheting': 697137, 'economy came': 267732, 'came into': 157021, 'into sharp': 442976, 'sharp relief': 755699, 'relief on': 709402, 'thursday with': 895452, 'with government': 998654, 'government reading': 360505, 'reading pegging': 700795, 'pegging new': 646332, 'new jobless': 558993, 'claim at': 179698, 'record near': 705032, 'near million': 553545, 'million ratcheting': 532335, 'ratcheting up': 697138, 'the pressure': 864295, 'of the on': 591291, 'the on the': 862175, 'the economy came': 853946, 'economy came into': 267733, 'came into sharp': 157024, 'into sharp relief': 442977, 'sharp relief on': 755700, 'relief on thursday': 709404, 'on thursday with': 604684, 'thursday with government': 895453, 'with government reading': 998660, 'government reading pegging': 360506, 'reading pegging new': 700796, 'pegging new jobless': 646333, 'new jobless claim': 558994, 'jobless claim at': 466331, 'claim at record': 179699, 'at record near': 100271, 'record near million': 705033, 'near million ratcheting': 553546, 'million ratcheting up': 532336, 'ratcheting up the': 697140, 'up the pressure': 946203, 'the pressure on': 864300, 'pressure on demand': 671208, 'on demand and': 600272, 'facetimeing': 295227, 'mumbling': 546047, 'hahaha': 373907, 'saw these': 738284, 'these obnoxious': 880360, 'obnoxious italian': 578501, 'italian tourist': 462734, 'tourist facetimeing': 927028, 'facetimeing their': 295228, 'their friend': 873379, 'supermarket mumbling': 821547, 'mumbling look': 546048, 'america there': 51701, 'more toilet': 540807, 'paper hahaha': 640240, 'hahaha meanwhile': 373909, 'meanwhile everyone': 524963, 'everyone there': 287471, 'is looking': 449442, 'at them': 101182, 'them like': 875986, 'like italian': 490569, 'italian what': 462738, 'doing here': 252447, 'here uh': 393753, 'uh oh': 938084, 'saw these obnoxious': 738285, 'these obnoxious italian': 880361, 'obnoxious italian tourist': 578502, 'italian tourist facetimeing': 462735, 'tourist facetimeing their': 927029, 'facetimeing their friend': 295229, 'their friend at': 873381, 'the supermarket mumbling': 868706, 'supermarket mumbling look': 821548, 'mumbling look in': 546049, 'look in america': 502415, 'in america there': 420238, 'america there no': 51703, 'there no more': 878822, 'no more toilet': 564825, 'more toilet paper': 540808, 'toilet paper hahaha': 921295, 'paper hahaha meanwhile': 640241, 'hahaha meanwhile everyone': 373910, 'meanwhile everyone there': 524964, 'everyone there is': 287473, 'there is looking': 878586, 'is looking at': 449444, 'looking at them': 502828, 'at them like': 101185, 'them like italian': 875987, 'like italian what': 490571, 'italian what you': 462739, 'what you guy': 982676, 'guy doing here': 368986, 'doing here uh': 252449, 'here uh oh': 393754, 'sankey': 736577, 'mizuho': 534667, 'combo': 187155, 'paul sankey': 644559, 'sankey managing': 736578, 'director at': 243604, 'at mizuho': 99757, 'mizuho security': 534668, 'security is': 744650, 'is saying': 451653, 'saying oil': 739650, 'could combo': 209028, 'combo of': 187158, 'the saudi': 866375, 'saudi and': 737172, 'market increased': 516583, 'oil the': 597471, 'paul sankey managing': 644560, 'sankey managing director': 736579, 'managing director at': 512865, 'director at mizuho': 243605, 'at mizuho security': 99758, 'mizuho security is': 534669, 'security is saying': 744661, 'is saying oil': 451657, 'saying oil price': 739651, 'they could combo': 881821, 'could combo of': 209029, 'combo of the': 187160, 'of the saudi': 591436, 'the saudi and': 866376, 'saudi and russia': 737175, 'the market increased': 860123, 'market increased oil': 516584, 'increased oil the': 433386, 'oil the market': 597473, 'lowdown': 505760, 'judd': 467609, 'legum': 486087, 'the lowdown': 859789, 'lowdown on': 505761, 'on kroger': 601778, 'kroger sick': 477767, 'sick time': 768636, 'time policy': 897509, 'policy read': 663472, 'latest by': 481244, 'by judd': 152964, 'judd legum': 467610, 'legum update': 486091, 'update kroger': 947050, 'kroger expands': 477737, 'expands paid': 290539, '19 earlier': 6684, 'earlier post': 264477, 'post by': 666029, 'by legum': 153040, 'legum that': 486089, 'that exposed': 843803, 'exposed kroger': 292855, 'kroger policy': 477759, 'policy re': 663470, 'supermarket sick': 822694, 'for the lowdown': 326543, 'the lowdown on': 859790, 'lowdown on kroger': 505762, 'on kroger sick': 601779, 'kroger sick time': 477768, 'sick time policy': 768639, 'time policy read': 897510, 'policy read the': 663473, 'the latest by': 859079, 'latest by judd': 481245, 'by judd legum': 152965, 'judd legum update': 467612, 'legum update kroger': 486092, 'update kroger expands': 947051, 'kroger expands paid': 477738, 'expands paid sick': 290540, 'leave policy for': 484906, 'policy for covid': 663408, 'covid 19 earlier': 212997, '19 earlier post': 6685, 'earlier post by': 264478, 'post by legum': 666032, 'by legum that': 153041, 'legum that exposed': 486090, 'that exposed kroger': 843804, 'exposed kroger policy': 292856, 'kroger policy re': 477760, 'policy re sick': 663471, 're sick time': 699522, 'sick time supermarket': 768640, 'time supermarket sick': 897786, 'banger': 109471, 'randb': 696588, 'weeknd': 977600, 'theweeknd': 881069, 'rudygobert': 727074, 'tomhanks': 923981, 'this song': 890251, 'song gave': 785494, 'me lot': 523119, 'of hope': 584741, 'it banger': 456700, 'banger plz': 109474, 'plz retweet': 661830, 'retweet randb': 720072, 'randb pop': 696589, 'pop corona': 664419, 'corona weeknd': 204390, 'weeknd theweeknd': 977601, 'theweeknd pandemic': 881070, 'toiletpaper facemasks': 921967, 'facemasks handsanitizer': 295142, 'handsanitizer rudygobert': 376626, 'rudygobert nba': 727075, 'nba socialdistancing': 553219, 'socialdistancing quarantine': 780632, 'quarantine tomhanks': 692661, 'this song gave': 890252, 'song gave me': 785495, 'gave me lot': 344644, 'me lot of': 523120, 'lot of hope': 504205, 'of hope that': 584747, 'hope that we': 403660, 'that we can': 847366, 'beat the and': 118555, 'and it banger': 65487, 'it banger plz': 456701, 'banger plz retweet': 109475, 'plz retweet randb': 661832, 'retweet randb pop': 720073, 'randb pop corona': 696590, 'pop corona weeknd': 664420, 'corona weeknd theweeknd': 204391, 'weeknd theweeknd pandemic': 977602, 'theweeknd pandemic toiletpaper': 881071, 'pandemic toiletpaper facemasks': 636811, 'toiletpaper facemasks handsanitizer': 921968, 'facemasks handsanitizer rudygobert': 295143, 'handsanitizer rudygobert nba': 376627, 'rudygobert nba socialdistancing': 727076, 'nba socialdistancing quarantine': 553220, 'socialdistancing quarantine tomhanks': 780635, 'all agree': 41969, 'kind courteous': 474827, 'courteous to': 212026, 'hero working': 394180, 'working frantically': 1008651, 'frantically to': 331198, 'restock grocery': 716874, 'let all agree': 486548, 'all agree to': 41972, 'agree to be': 38657, 'to be kind': 901354, 'be kind courteous': 115615, 'kind courteous to': 474828, 'courteous to the': 212027, 'the hero working': 857303, 'hero working frantically': 394183, 'working frantically to': 1008652, 'frantically to restock': 331199, 'to restock grocery': 913403, 'restock grocery store': 716875, 'warehouse show': 966761, 'human toll': 410642, 'toll of': 923857, 'new case of': 558464, 'case of at': 165890, 'of at and': 580417, 'at and warehouse': 98014, 'and warehouse show': 75183, 'warehouse show the': 966762, 'show the human': 767211, 'the human toll': 857726, 'human toll of': 410643, 'toll of shopping': 923859, 'of shopping online': 589668, 'furloughing': 341927, 'based retail': 111725, 'retail craft': 718013, 'store giant': 807929, 'giant is': 349808, 'closing most': 183694, 'and furloughing': 63435, 'furloughing most': 341930, 'it workforce': 462524, 'workforce today': 1008394, 'and ending': 62120, 'ending emergency': 276172, 'employee so': 274219, 'can draw': 158153, 'draw unemployment': 258487, 'unemployment benefit': 941168, 'based retail craft': 111727, 'retail craft store': 718014, 'craft store giant': 214781, 'store giant is': 807930, 'giant is closing': 349811, 'is closing most': 446611, 'closing most of': 183695, 'most of it': 542549, 'store and furloughing': 806245, 'and furloughing most': 63436, 'furloughing most of': 341931, 'of it workforce': 585469, 'it workforce today': 462529, 'workforce today and': 1008395, 'today and ending': 919201, 'and ending emergency': 62121, 'ending emergency pay': 276173, 'pay and the': 644742, 'and the use': 73639, 'use of paid': 949420, 'of paid time': 587667, 'paid time off': 634156, 'time off by': 897381, 'off by employee': 593709, 'by employee so': 152474, 'employee so they': 274221, 'they can draw': 881626, 'can draw unemployment': 158154, 'draw unemployment benefit': 258488, 'stockpilling': 804151, 'and stocking': 72431, 'stocking on': 803576, 'need hope': 555019, 'you burn': 1017545, 'burn in': 142890, 'in hell': 423623, 'hell panicbuying': 389054, 'panicbuying stockpilling': 639056, 'buying and stocking': 149932, 'and stocking on': 72434, 'stocking on way': 803577, 'on way more': 605125, 'way more food': 969708, 'more food that': 539256, 'food that you': 317110, 'that you need': 847733, 'you need hope': 1020002, 'need hope you': 555020, 'hope you burn': 403791, 'you burn in': 1017546, 'burn in hell': 142891, 'in hell panicbuying': 423629, 'hell panicbuying stockpilling': 389055, 'ocr': 579126, 'updated consumer': 947357, 'right blog': 721821, 'blog today': 133037, 'include and': 431518, 'and empathy': 62051, 'empathy it': 273355, 'needed right': 556481, 'now ocr': 575391, 'ocr relevant': 579127, 'updated consumer right': 947359, 'consumer right blog': 198806, 'right blog today': 721822, 'blog today to': 133039, 'today to include': 920359, 'to include and': 908245, 'include and empathy': 431519, 'and empathy it': 62053, 'empathy it really': 273356, 'it really needed': 460650, 'really needed right': 702449, 'needed right now': 556482, 'right now ocr': 722110, 'now ocr relevant': 575392, 'ce': 168698, 'kn95': 475964, 'moq': 538385, '86159929736': 22991, 'ce ffp2': 168704, 'ffp2 kn95': 304275, 'kn95 face': 475966, 'sale with': 732655, 'price moq': 675265, 'moq 100pcs': 538386, '100pcs we': 2209, 'fight with': 304949, '19 whatsapp': 12009, 'whatsapp 86159929736': 982879, 'ce ffp2 kn95': 168705, 'ffp2 kn95 face': 304276, 'kn95 face mask': 475967, 'mask for sale': 518687, 'for sale with': 325328, 'sale with low': 732656, 'with low price': 999337, 'low price moq': 505525, 'price moq 100pcs': 675266, 'moq 100pcs we': 538387, '100pcs we can': 2210, 'help you to': 391003, 'to fight with': 905818, 'fight with covid': 304951, 'covid 19 whatsapp': 214062, '19 whatsapp 86159929736': 12010, 'stay apart': 796765, 'apart mean': 81302, 'store long': 808814, 'long you': 501870, 'in mandatory': 425029, 'mandatory isolation': 513041, 'isolation or': 455373, 'or quarantine': 616762, 'quarantine but': 692061, 'but limit': 146281, 'limit it': 492375, 'to once': 910902, 'once per': 605687, 'week otherwise': 976704, 'this together we': 890788, 'together we must': 921028, 'all stay apart': 44441, 'stay apart mean': 796766, 'apart mean you': 81303, 'still go to': 800582, 'grocery store long': 365540, 'store long you': 808816, 'long you re': 501877, 're not in': 699099, 'not in mandatory': 570099, 'in mandatory isolation': 425030, 'mandatory isolation or': 513042, 'isolation or quarantine': 455377, 'or quarantine but': 616764, 'quarantine but limit': 692062, 'but limit it': 146283, 'limit it to': 492377, 'it to once': 461738, 'to once per': 910904, 'once per week': 605688, 'per week otherwise': 651072, 'chad': 170408, 'borne the': 135572, 'covid update': 214243, 'update chad': 946894, 'chad butter': 170411, 'butter turn': 148173, 'turn his': 935675, 'his distillery': 397364, 'distillery into': 247767, 'sanitizer manufacturing': 735342, 'manufacturing facility': 513583, 'borne the battle': 135573, 'the battle covid': 849346, 'battle covid update': 112792, 'covid update chad': 214244, 'update chad butter': 946895, 'chad butter turn': 170412, 'butter turn his': 148174, 'turn his distillery': 935676, 'his distillery into': 397365, 'distillery into hand': 247768, 'hand sanitizer manufacturing': 375484, 'sanitizer manufacturing facility': 735343, 'pathanamthitta': 644039, 'asish': 95460, 'mohankumar': 535575, 'when family': 983406, 'of were': 593027, 'were detected': 979519, 'detected with': 239344, 'in kerala': 424483, 'kerala pathanamthitta': 473110, 'pathanamthitta there': 644040, 'wa panic': 962904, 'panic shop': 638540, 'shop shut': 760787, 'shut so': 767929, 'so getting': 777163, 'water became': 968912, 'became hard': 118871, 'hard now': 377978, 'is public': 451132, 'public support': 688345, 'support say': 826799, 'say medical': 738933, 'medical officer': 526275, 'officer asish': 595637, 'asish mohankumar': 95461, 'mohankumar with': 535576, 'local sending': 498380, 'sending in': 750032, 'in clothes': 421518, 'clothes amp': 184137, 'amp bed': 53437, 'bed sheet': 120418, 'when family of': 983408, 'family of were': 298110, 'of were detected': 593028, 'were detected with': 979520, 'detected with 19': 239345, 'with 19 in': 996965, '19 in kerala': 7761, 'in kerala pathanamthitta': 424484, 'kerala pathanamthitta there': 473111, 'pathanamthitta there wa': 644041, 'there wa panic': 879259, 'wa panic shop': 962907, 'panic shop shut': 638547, 'shop shut so': 760789, 'shut so getting': 767930, 'so getting food': 777164, 'getting food amp': 348977, 'amp water became': 54807, 'water became hard': 968913, 'became hard now': 118872, 'hard now there': 377979, 'there is public': 878609, 'is public support': 451134, 'public support say': 688346, 'support say medical': 826800, 'say medical officer': 738934, 'medical officer asish': 526276, 'officer asish mohankumar': 595638, 'asish mohankumar with': 95462, 'mohankumar with local': 535577, 'with local sending': 999284, 'local sending in': 498381, 'sending in clothes': 750033, 'in clothes amp': 421519, 'clothes amp bed': 184138, 'amp bed sheet': 53438, 'longboat': 501889, 'longboat key': 501890, 'key publix': 473376, 'publix store': 688775, 'put customer': 690549, 'customer limit': 222576, 'on water': 605113, 'water toilet': 969225, 'towel the': 927387, 'limiting each': 492809, 'each customer': 264026, 'one case': 606054, 'of water': 592933, 'water one': 969085, 'one package': 606823, 'of paper': 587754, 'longboat key publix': 501891, 'key publix store': 473377, 'publix store ha': 688777, 'store ha put': 808016, 'ha put customer': 371592, 'put customer limit': 690550, 'customer limit on': 222578, 'limit on water': 492433, 'on water toilet': 605118, 'water toilet paper': 969226, 'paper and paper': 639845, 'paper towel the': 641016, 'towel the grocery': 927388, 'store is limiting': 808502, 'is limiting each': 449368, 'limiting each customer': 492810, 'each customer to': 264032, 'customer to one': 222971, 'to one case': 910911, 'one case of': 606055, 'case of water': 165935, 'of water one': 592944, 'water one package': 969086, 'one package of': 606825, 'package of toilet': 633348, 'paper and one': 639843, 'and one package': 68090, 'package of paper': 633343, 'of paper towel': 587763, 'newfoundland': 560070, 'afterwards': 36742, 'the dropping': 853719, 'on newfoundland': 602387, 'newfoundland is': 560071, 'not now': 570707, 'for try': 327370, 'try focusing': 934478, 'with plan': 1000221, 'plan afterwards': 658044, 'afterwards to': 36751, 'fall out': 297019, 'our oil': 624124, 'oil re': 597386, 'think about what': 885112, 'about what effect': 26882, 'what effect the': 981402, 'effect the dropping': 269122, 'the dropping oil': 853720, 'to have on': 907285, 'have on newfoundland': 381772, 'on newfoundland is': 602388, 'newfoundland is not': 560072, 'is not now': 450139, 'not now this': 570709, 'this is just': 888299, 'is just the': 449150, 'just the beginning': 469992, 'beginning of covid': 123645, '19 for try': 7080, 'for try focusing': 327371, 'try focusing on': 934479, 'focusing on that': 312001, 'on that and': 603929, 'that and come': 842652, 'and come up': 60113, 'up with plan': 946674, 'with plan afterwards': 1000222, 'plan afterwards to': 658045, 'afterwards to deal': 36752, 'the fall out': 854873, 'fall out of': 297022, 'of our oil': 587524, 'our oil re': 624125, 'seetheday': 747366, 'thought seetheday': 893206, 'seetheday when': 747367, 'when weed': 984482, 'weed wa': 975776, 'wa easier': 962051, 'get than': 348201, 'than toiletpaper': 841349, 'and handsanitizer': 64156, 'handsanitizer 19': 376464, '19 panicshopping': 9573, 'panicshopping panicbuying': 639442, 'never thought seetheday': 558233, 'thought seetheday when': 893207, 'seetheday when weed': 747368, 'when weed wa': 984483, 'weed wa easier': 975777, 'wa easier to': 962052, 'easier to get': 265158, 'to get than': 906610, 'get than toiletpaper': 348202, 'than toiletpaper and': 841350, 'toiletpaper and handsanitizer': 921721, 'and handsanitizer 19': 64157, 'handsanitizer 19 panicshopping': 376465, '19 panicshopping panicbuying': 9574, 'bouquet': 136885, 'mom birthday': 535695, 'birthday bouquet': 131420, 'bouquet toiletpaper': 136890, 'quaratinelife 19': 693117, 'my mom birthday': 549260, 'mom birthday bouquet': 535696, 'birthday bouquet toiletpaper': 131421, 'bouquet toiletpaper quaratinelife': 136891, 'toiletpaper quaratinelife 19': 922386, 'foodie': 317943, 'moon': 538321, 'wa foodie': 962148, 'foodie before': 317944, 'ration ha': 697691, 'come down': 187271, 'because price': 119498, 'up above': 944219, 'above the': 27101, 'the moon': 860867, 'wa foodie before': 962149, 'foodie before but': 317945, 'before but you': 122683, 'but you see': 147998, 'see the ration': 745877, 'the ration ha': 865176, 'ration ha to': 697692, 'ha to come': 372293, 'to come down': 903025, 'come down because': 187272, 'down because price': 256554, 'because price of': 119501, 'price of item': 675480, 'of item are': 585477, 'item are up': 463107, 'are up above': 91356, 'up above the': 944220, 'above the moon': 27107, 'miracle': 533917, 'nailing': 551477, 'behave like': 123782, 'like everyone': 490188, 'covid this': 214236, 'be solved': 117291, 'solved in': 782180, 'community medic': 189977, 'medic cannot': 525993, 'do miracle': 249589, 'miracle going': 533923, 'supermarket coughing': 819819, 'of trolley': 592457, 'trolley that': 932478, 'an icu': 56118, 'icu bed': 412833, 'bed nailing': 120406, 'nailing it': 551478, 'on coronalockdown': 600117, 'behave like everyone': 123783, 'like everyone ha': 490190, 'everyone ha it': 286968, 'ha it covid': 371017, 'it covid this': 457385, 'covid this will': 214238, 'will be solved': 992691, 'be solved in': 117293, 'solved in the': 782181, 'in the community': 429086, 'the community medic': 851285, 'community medic cannot': 189978, 'medic cannot do': 525994, 'cannot do miracle': 161759, 'do miracle going': 249590, 'miracle going to': 533924, 'to supermarket coughing': 915783, 'supermarket coughing on': 819822, 'coughing on the': 208726, 'on the handle': 604156, 'handle of trolley': 376243, 'of trolley that': 592459, 'trolley that could': 932479, 'that could cause': 843343, 'could cause the': 209005, 'cause the use': 167766, 'use of an': 949398, 'of an icu': 580116, 'an icu bed': 56119, 'icu bed nailing': 412834, 'bed nailing it': 120407, 'nailing it on': 551479, 'it on coronalockdown': 460035, 'credit impact': 216409, 'the pipeline': 863749, 'pipeline sector': 656906, 'credit impact on': 216410, 'on the pipeline': 604283, 'the pipeline sector': 863751, 'pipeline sector from': 656907, 'sector from low': 744198, 'from low oil': 336286, 'price and global': 672426, 'global pandemic 19': 352069, 'processed': 679983, 'refined': 706573, 'calorically': 156886, 'dense': 237052, 'conditioning': 193581, 'supermarket plenty': 822026, 'whole non': 990277, 'non processed': 566465, 'processed food': 679986, 'option available': 613993, 'available meat': 104492, 'meat vegetable': 525790, 'the processed': 864554, 'processed highly': 679992, 'highly refined': 396094, 'refined calorically': 706574, 'calorically dense': 156887, 'dense shelf': 237057, 'were wiped': 980347, 'great example': 362660, 'of today': 592229, 'today society': 920203, 'society the': 781325, 'the conditioning': 851437, 'conditioning for': 193582, 'nutrition coronacrisis': 577713, 'the supermarket plenty': 868758, 'supermarket plenty of': 822027, 'plenty of whole': 660991, 'of whole non': 593141, 'whole non processed': 990278, 'non processed food': 566466, 'processed food option': 679989, 'food option available': 315640, 'option available meat': 613996, 'available meat vegetable': 104493, 'meat vegetable fruit': 525792, 'vegetable fruit it': 953991, 'fruit it the': 339108, 'it the processed': 461568, 'the processed highly': 864555, 'processed highly refined': 679993, 'highly refined calorically': 396095, 'refined calorically dense': 706575, 'calorically dense shelf': 156888, 'dense shelf that': 237058, 'shelf that were': 757643, 'that were wiped': 847451, 'were wiped out': 980348, 'wiped out great': 996472, 'out great example': 626235, 'great example of': 362661, 'example of today': 288952, 'of today society': 592238, 'today society the': 920204, 'society the conditioning': 781326, 'the conditioning for': 851438, 'conditioning for nutrition': 193583, 'for nutrition coronacrisis': 323999, 'markettrends': 517881, 'spending trend': 789028, 'trend impacted': 931357, 'consumerspending markettrends': 199770, 'consumer spending trend': 199099, 'spending trend impacted': 789029, 'trend impacted by': 931358, 'covid 19 consumerspending': 212845, '19 consumerspending markettrends': 6002, 'either going': 270308, 'money because': 536629, 'my favorite': 548265, 'favorite store': 300554, 'closing or': 183711, 'to finally': 905860, 'shopping stayathome': 763970, 'either going to': 270310, 'save money because': 737581, 'money because all': 536630, 'because all my': 118915, 'all my favorite': 43553, 'my favorite store': 548277, 'favorite store are': 300555, 'store are temporarily': 806528, 'temporarily closing or': 837480, 'closing or going': 183712, 'going to finally': 355599, 'to finally get': 905862, 'finally get into': 306011, 'get into online': 347369, 'online shopping stayathome': 609283, 'whether you': 985614, 'or heading': 615605, 'store directly': 807318, 'directly finding': 243545, 'finding thermometer': 307558, 'thermometer right': 879539, 'is next': 449890, 'to impossible': 908199, 'whether you re': 985621, 'shopping online or': 763466, 'online or heading': 608656, 'or heading to': 615606, 'the store directly': 868008, 'store directly finding': 807319, 'directly finding thermometer': 243546, 'finding thermometer right': 307559, 'thermometer right now': 879540, 'now is next': 575079, 'is next to': 449893, 'next to impossible': 561622, 'picky': 656062, 'ole': 598722, 'be picky': 116415, 'picky over': 656069, 'sanitizer scent': 735711, 'scent you': 741400, 'you wanted': 1022168, 'wanted ahh': 966192, 'ahh the': 39230, 'good ole': 357494, 'ole day': 598723, 'remember when you': 710422, 'when you could': 984552, 'could be picky': 208905, 'be picky over': 116417, 'picky over the': 656070, 'over the sanitizer': 630763, 'the sanitizer scent': 866356, 'sanitizer scent you': 735712, 'scent you wanted': 741401, 'you wanted ahh': 1022169, 'wanted ahh the': 966193, 'ahh the good': 39231, 'the good ole': 856446, 'good ole day': 357495, 'escalation': 280285, 'rapid escalation': 696912, 'escalation in': 280286, 'in negative': 425787, 'negative consumer': 556745, 'sentiment in': 750945, 'rapid escalation in': 696913, 'escalation in negative': 280287, 'in negative consumer': 425788, 'negative consumer sentiment': 556746, 'consumer sentiment in': 198916, 'sentiment in the': 750951, 'in the eu': 429178, 'di1tv': 240146, 'morocco': 541566, 'price list': 675062, 'of alcoholic': 579906, 'alcoholic antiseptic': 41202, 'antiseptic in': 78561, 'take temporary': 832627, 'measure against': 525072, 'price these': 676887, 'day source': 228384, 'source di1tv': 786473, 'di1tv morocco': 240147, 'morocco morocco': 541572, 'is the price': 452904, 'the price list': 864381, 'price list of': 675064, 'list of alcoholic': 494411, 'of alcoholic antiseptic': 579907, 'alcoholic antiseptic in': 41203, 'antiseptic in order': 78562, 'order to take': 618713, 'to take temporary': 916243, 'take temporary measure': 832628, 'temporary measure against': 837663, 'measure against the': 525076, 'against the high': 37661, 'high price these': 395282, 'price these day': 676888, 'these day source': 879891, 'day source di1tv': 228385, 'source di1tv morocco': 786474, 'di1tv morocco morocco': 240148, 'isolation grocery': 455282, 'online selfisolation': 608955, 'selfisolation selfquarantine': 748476, 'selfquarantine 14days': 748558, 'one of self': 606761, 'self isolation grocery': 747771, 'isolation grocery shopping': 455283, 'shopping online selfisolation': 763479, 'online selfisolation selfquarantine': 608956, 'selfisolation selfquarantine 14days': 748477, 'courthouse': 212060, 'update consumer': 946911, 'consumer bankruptcy': 196391, 'bankruptcy bankruptcy': 110509, 'bankruptcy court': 110522, 'court courthouse': 211984, 'courthouse entry': 212061, 'entry protocol': 279010, 'protocol and': 685971, '19 preparedness': 9783, 'preparedness bankruptcy': 670280, 'coronavirus update consumer': 206990, 'update consumer bankruptcy': 946912, 'consumer bankruptcy bankruptcy': 196392, 'bankruptcy bankruptcy court': 110510, 'bankruptcy court courthouse': 110523, 'court courthouse entry': 211985, 'courthouse entry protocol': 212062, 'entry protocol and': 279011, 'protocol and covid': 685972, 'covid 19 preparedness': 213605, '19 preparedness bankruptcy': 9784, 'it beautiful': 456740, 'take drive': 832082, 'beat standing': 118552, 'it beautiful day': 456741, 'beautiful day for': 118676, 'people to take': 649951, 'to take drive': 916173, 'take drive to': 832083, 'morell beat standing': 541053, 'beat standing in': 118553, 'glimmer': 351701, 'worry allow': 1010667, 'allow yourself': 46111, 'yourself to': 1026725, 'enjoy glimmer': 277135, 'glimmer of': 351702, 'hope and': 403416, 'and positivity': 69210, 'positivity with': 665518, 'story take': 812122, 'turning little': 935931, 'little free': 495354, 'free library': 331943, 'library into': 488073, 'into little': 442702, 'free pantry': 332043, 'panic and worry': 637345, 'and worry allow': 75906, 'worry allow yourself': 1010668, 'allow yourself to': 46112, 'yourself to enjoy': 1026729, 'to enjoy glimmer': 905129, 'enjoy glimmer of': 277136, 'glimmer of hope': 351703, 'of hope and': 584742, 'hope and positivity': 403420, 'and positivity with': 69211, 'positivity with some': 665519, 'with some good': 1000846, 'good news story': 357459, 'news story take': 560835, 'story take look': 812123, 'at how people': 99228, 'are turning little': 91225, 'turning little free': 935932, 'little free library': 495355, 'free library into': 331944, 'library into little': 488074, 'into little free': 442703, 'little free pantry': 495356, 'free pantry for': 332044, 'pantry for their': 639589, 'for their community': 326812, 'asian shop': 95334, 'shop the': 760899, 'the racist': 865089, 'racist want': 695335, 'absolutely brilliant': 27327, 'brilliant they': 139895, 'they take': 883520, 'are exactly': 86301, 'exactly the': 288754, 'same quiet': 733262, 'and reassuring': 70028, 'my local asian': 549098, 'local asian shop': 497702, 'asian shop the': 95337, 'shop the racist': 760905, 'the racist want': 865090, 'racist want to': 695336, 'want to call': 966006, 'to call it': 902381, 'call it is': 155955, 'it is absolutely': 458860, 'is absolutely brilliant': 445292, 'absolutely brilliant they': 27330, 'brilliant they take': 139896, 'they take care': 883522, 'care of all': 164093, 'all the local': 44813, 'the local and': 859533, 'local and the': 497683, 'price are exactly': 672660, 'are exactly the': 86302, 'exactly the same': 288755, 'the same quiet': 866287, 'same quiet and': 733263, 'quiet and reassuring': 694675, 'coronavirus worker': 207100, 'worker from': 1006992, 'from walmart': 338284, 'of coronavirus worker': 581979, 'coronavirus worker from': 207102, 'worker from walmart': 1006999, 'from walmart trader': 338286, 'isps': 455577, 'you nurse': 1020162, 'also people': 48650, 'store dental': 807297, 'dental worker': 237085, 'worker dealing': 1006724, 'limited mask': 492670, 'and spit': 72117, 'spit the': 789566, 'guy delivering': 368972, 'delivering my': 233528, 'team isps': 835710, 'isps emergency': 455578, 'and teacher': 73058, 'teacher doing': 835452, 'doing virtual': 252820, 'virtual thing': 957804, 'thank you nurse': 841792, 'you nurse doctor': 1020163, 'nurse doctor and': 577284, 'doctor and also': 250813, 'and also people': 57966, 'also people at': 48651, 'grocery store dental': 365326, 'store dental worker': 807298, 'dental worker dealing': 237086, 'worker dealing with': 1006725, 'dealing with limited': 229674, 'with limited mask': 999231, 'limited mask and': 492671, 'mask and spit': 518372, 'and spit the': 72119, 'spit the guy': 789567, 'the guy delivering': 856956, 'guy delivering my': 368973, 'delivering my food': 233529, 'food order delivery': 315678, 'order delivery team': 618169, 'delivery team isps': 234609, 'team isps emergency': 835711, 'isps emergency worker': 455579, 'emergency worker and': 273056, 'worker and teacher': 1006339, 'and teacher doing': 73059, 'teacher doing virtual': 835453, 'doing virtual thing': 252821, 'virtual thing during': 957805, 'techcrunch': 836171, 'privacymatters': 678853, 'rule surrounding': 727366, 'surrounding consumer': 828742, 'privacy during': 678810, '19 techcrunch': 11052, 'techcrunch ass': 836172, 'of method': 586454, 'method being': 529763, 'being used': 126014, 'used around': 949866, 'monitor social': 537316, 'distancing privacymatters': 247406, 'are the rule': 90898, 'the rule surrounding': 866052, 'rule surrounding consumer': 727367, 'surrounding consumer privacy': 828743, 'consumer privacy during': 198435, 'privacy during 19': 678811, 'during 19 techcrunch': 262410, '19 techcrunch ass': 11053, 'techcrunch ass the': 836173, 'ass the long': 96282, 'term impact of': 838175, 'impact of method': 417786, 'of method being': 586455, 'method being used': 529764, 'being used around': 126015, 'used around the': 949867, 'world to monitor': 1010084, 'to monitor social': 910236, 'monitor social distancing': 537317, 'social distancing privacymatters': 779690, 'profiling': 682631, 'happened in': 377251, 'town reminder': 927538, 'reminder once': 710579, 'again that': 37202, 'the wuhan': 872118, 'wuhan virus': 1013520, 'virus or': 958572, 'for racial': 324938, 'racial profiling': 695232, 'profiling there': 682636, 'is what happened': 453877, 'what happened in': 981544, 'happened in my': 377254, 'my town reminder': 550418, 'town reminder once': 927539, 'reminder once again': 710580, 'once again that': 605578, 'again that this': 37204, 'not the wuhan': 572046, 'the wuhan virus': 872122, 'wuhan virus or': 1013521, 'virus or anything': 958573, 'or anything like': 614378, 'like that it': 491326, '19 coronavirus the': 6133, 'coronavirus the virus': 206917, 'virus is also': 958363, 'is also no': 445568, 'also no excuse': 48571, 'no excuse for': 564162, 'excuse for racial': 289746, 'for racial profiling': 324939, 'racial profiling there': 695235, 'profiling there is': 682637, 'is no excuse': 449928, 'recruit': 705456, 'morrison ha': 541719, 'announced it': 76967, 'will recruit': 994604, 'recruit 500': 705459, '500 new': 20026, 'new staff': 559632, 'and boost': 59067, 'boost it': 134974, 'surge of': 828225, 'uk supermarket group': 938765, 'group morrison ha': 366769, 'morrison ha announced': 541720, 'ha announced it': 369560, 'announced it will': 76974, 'it will recruit': 462428, 'will recruit 500': 994605, 'recruit 500 new': 705460, '500 new staff': 20028, 'new staff and': 559634, 'staff and boost': 792125, 'and boost it': 59068, 'boost it home': 134976, 'it home delivery': 458612, 'service to cope': 752974, 'with the surge': 1001508, 'the surge of': 869003, 'surge of demand': 828229, 'of demand due': 582501, 'humankind': 410788, 'kill humankind': 474418, 'humankind it': 410791, 'own stupidity': 632243, 'selfishness stop': 748379, 'hoarding stay': 399531, 'fuck home': 339569, 'kind stophoarding': 474980, 'stophoarding 19': 805344, '19 bekind': 5363, 'it not that': 459926, 'not that will': 571977, 'will kill humankind': 993915, 'kill humankind it': 474419, 'humankind it our': 410792, 'it our own': 460167, 'our own stupidity': 624218, 'own stupidity greed': 632245, 'and selfishness stop': 71205, 'selfishness stop hoarding': 748380, 'stop hoarding stay': 804740, 'hoarding stay the': 399533, 'the fuck home': 855965, 'fuck home if': 339570, 'home if you': 401404, 'can be kind': 157637, 'be kind stophoarding': 115627, 'kind stophoarding 19': 474981, 'stophoarding 19 bekind': 805345, 'ongata': 607583, 'rongai': 725809, 'kware': 478044, 'imminent': 417266, 'mercy': 529076, 'fowarding': 330730, 'gikombacorona': 350098, 'alert ongata': 41481, 'ongata largest': 607584, 'largest wholesale': 480040, 'wholesale and': 990413, 'retail open': 718349, 'open air': 612025, 'air market': 39757, 'market rongai': 517016, 'rongai kware': 725810, 'kware face': 478045, 'face imminent': 294466, 'imminent closure': 417271, 'closure today': 184053, 'today amid': 919184, 'amid fight': 52479, 'move will': 543780, 'will leave': 993972, 'leave consumer': 484767, 'the mercy': 860496, 'mercy of': 529079, 'retailer who': 719417, 'set price': 753459, 'be fowarding': 114946, 'fowarding something': 330731, 'something gikombacorona': 784921, 'alert ongata largest': 41482, 'ongata largest wholesale': 607585, 'largest wholesale and': 480041, 'wholesale and retail': 990417, 'and retail open': 70437, 'retail open air': 718350, 'open air market': 612027, 'air market rongai': 39759, 'market rongai kware': 517017, 'rongai kware face': 725811, 'kware face imminent': 478046, 'face imminent closure': 294467, 'imminent closure today': 417272, 'closure today amid': 184054, 'today amid fight': 919186, 'amid fight against': 52480, 'against the spread': 37678, '19 the move': 11221, 'the move will': 861091, 'move will leave': 543781, 'will leave consumer': 993973, 'leave consumer at': 484768, 'consumer at the': 196338, 'at the mercy': 101019, 'the mercy of': 860497, 'mercy of local': 529080, 'of local retailer': 585936, 'local retailer who': 498357, 'retailer who will': 719425, 'who will benefit': 989982, 'will benefit from': 992822, 'benefit from the': 126993, 'from the freedom': 337712, 'freedom to set': 332394, 'to set price': 914293, 'set price to': 753465, 'price to be': 676968, 'to be fowarding': 901266, 'be fowarding something': 114947, 'fowarding something gikombacorona': 330732, 'saboteur': 729014, 'saboteur people': 729015, 'not living': 570441, 'living at': 496321, 'supermarket isle': 821144, 'isle stayhomesavelives': 454382, 'saboteur people are': 729016, 'are not living': 88411, 'not living at': 570443, 'living at the': 496323, 'at the side': 101097, 'side of supermarket': 768854, 'of supermarket isle': 590430, 'supermarket isle stayhomesavelives': 821147, 'than sanitizer': 841110, 'sanitizer gang': 734955, 'gang washyourhands': 343414, 'hand is better': 375052, 'better than sanitizer': 128533, 'than sanitizer gang': 841112, 'sanitizer gang washyourhands': 734956, 'btc': 141490, 'oio': 597742, 'dta': 261380, 'rcd': 698108, 'credit btc': 216317, 'btc oio': 141505, 'oio dta': 597743, 'dta storm': 261381, 'storm rcd': 811834, 'rcd the': 698109, 'reserve latest': 714079, 'report show': 712253, 'show american': 766854, 'american were': 52295, 'were borrowing': 979383, 'borrowing at': 135629, 'level just': 487605, 'crisis struck': 218104, 'struck read': 814274, 'credit btc oio': 216318, 'btc oio dta': 141506, 'oio dta storm': 597744, 'dta storm rcd': 261382, 'storm rcd the': 811835, 'rcd the federal': 698111, 'the federal reserve': 855077, 'federal reserve latest': 302044, 'reserve latest consumer': 714080, 'latest consumer credit': 481259, 'consumer credit report': 197026, 'credit report show': 216484, 'report show american': 712254, 'show american were': 766856, 'american were borrowing': 52296, 'were borrowing at': 979384, 'borrowing at record': 135630, 'record level just': 705001, 'level just the': 487607, 'just the covid': 469997, '19 crisis struck': 6329, 'crisis struck read': 218105, 'struck read more': 814275, 'costo': 208361, 'found enough': 330198, 'tissue to': 899221, 'month been': 537609, 'been going': 121218, 'to target': 916300, 'target walmart': 834527, 'walmart and': 965274, 'and costo': 60599, 'costo for': 208362, 'and stocked': 72422, 'up stockup': 946075, 'finally found enough': 305999, 'found enough toilet': 330200, 'enough toilet tissue': 277735, 'toilet tissue to': 921649, 'tissue to last': 899222, 'to last few': 909061, 'last few month': 480212, 'few month been': 303925, 'month been going': 537610, 'been going to': 121222, 'going to target': 355738, 'to target walmart': 916304, 'target walmart and': 834528, 'walmart and costo': 965275, 'and costo for': 60600, 'costo for the': 208363, 'past few day': 643540, 'few day and': 303768, 'day and stocked': 227283, 'and stocked up': 72426, 'stocked up stockup': 803444, 'mohammad': 535562, 'khani': 473720, 'civilised': 179576, 'mohammad khani': 535563, 'khani wrote': 473721, 'wrote on': 1013206, 'his instagram': 397542, 'page this': 633899, 'in civilised': 421492, 'civilised society': 179578, 'society look': 781261, 'like even': 490180, 'with 12': 996942, 'mohammad khani wrote': 535564, 'khani wrote on': 473722, 'wrote on his': 1013207, 'on his instagram': 601322, 'his instagram page': 397543, 'instagram page this': 439973, 'page this is': 633900, 'is what supermarket': 453897, 'what supermarket in': 982267, 'supermarket in civilised': 820880, 'in civilised society': 421493, 'civilised society look': 179579, 'society look like': 781262, 'look like even': 502474, 'like even with': 490181, 'even with 12': 284802, 'with 12 00': 996943, '12 00 people': 2759, '00 people infected': 413, 'people infected with': 648473, 'nctechmember': 553371, 'membershelpingmembers': 528261, 'yours': 1026447, 'nctechmember offering': 553372, 'offering six': 595244, 'free access': 331617, 'consumer security': 198887, 'security product': 744719, 'product during': 681143, 'pandemic learn': 635873, 'other membershelpingmembers': 620537, 'membershelpingmembers and': 528262, 'and learn': 66034, 'add yours': 31540, 'nctechmember offering six': 553373, 'offering six month': 595245, 'six month free': 772669, 'month free access': 537736, 'free access to': 331621, 'access to consumer': 28223, 'to consumer security': 903331, 'consumer security product': 198888, 'security product during': 744720, 'product during pandemic': 681147, 'during pandemic learn': 262877, 'pandemic learn more': 635876, 'more about this': 538525, 'about this and': 26629, 'this and other': 886340, 'and other membershelpingmembers': 68364, 'other membershelpingmembers and': 620538, 'membershelpingmembers and learn': 528264, 'and learn how': 66036, 'how to add': 408975, 'to add yours': 900074, 'getrich': 348805, 'paidfromhome': 634183, 'workfromanywhere': 1008404, 'internetrich': 442069, 'your new': 1024987, 'found free': 330215, 'free time': 332230, 'into paid': 442835, 'time link': 897141, 'the bio': 849716, 'bio quarantine': 131161, 'quarantine stayhome': 692567, 'stayhome getrich': 798010, 'getrich workfromhome': 348806, 'workfromhome paidfromhome': 1008424, 'paidfromhome workfromanywhere': 634184, 'workfromanywhere entrepreneur': 1008405, 'entrepreneur wealthy': 278959, 'wealthy internetrich': 974209, 'internetrich toiletpaper': 442070, 'time to turn': 898092, 'turn your new': 935818, 'your new found': 1024988, 'new found free': 558760, 'found free time': 330216, 'free time into': 332231, 'time into paid': 897044, 'into paid time': 442836, 'paid time link': 634155, 'time link in': 897142, 'link in the': 493860, 'in the bio': 429023, 'the bio quarantine': 849717, 'bio quarantine stayhome': 131162, 'quarantine stayhome getrich': 692570, 'stayhome getrich workfromhome': 798011, 'getrich workfromhome paidfromhome': 348807, 'workfromhome paidfromhome workfromanywhere': 1008425, 'paidfromhome workfromanywhere entrepreneur': 634185, 'workfromanywhere entrepreneur wealthy': 1008406, 'entrepreneur wealthy internetrich': 278960, 'wealthy internetrich toiletpaper': 974210, 'jay': 464883, 'prohibited': 683423, 'washingtonian': 967825, 'breaking washington': 139081, 'washington governor': 967775, 'governor jay': 360928, 'jay inslee': 464888, 'inslee issue': 439729, 'issue stay': 455935, 'order all': 618009, 'travel outside': 930457, 'is prohibited': 451083, 'prohibited washingtonian': 683432, 'washingtonian will': 967826, 'pharmacy doctor': 654287, 'breaking washington governor': 139082, 'washington governor jay': 967776, 'governor jay inslee': 360929, 'jay inslee issue': 464889, 'inslee issue stay': 439730, 'issue stay at': 455936, 'home order all': 401762, 'order all non': 618010, 'essential travel outside': 281723, 'travel outside the': 930458, 'the home is': 857448, 'home is prohibited': 401455, 'is prohibited washingtonian': 451085, 'prohibited washingtonian will': 683433, 'washingtonian will still': 967827, 'store pharmacy doctor': 809535, 'local highstreet': 498076, 'highstreet shop': 396135, 'really helping': 702286, 'elderly let': 270738, 'regularly stoppanicbuying': 707958, 'stoppanicbuying tear': 805649, 'tear at': 835928, 'till iceland': 896032, 'up just': 945267, 'am so happy': 50406, 'so happy to': 777246, 'see some of': 745718, 'some of my': 783403, 'my local highstreet': 549120, 'local highstreet shop': 498077, 'highstreet shop are': 396136, 'shop are really': 759911, 'are really helping': 89477, 'really helping the': 702287, 'the elderly let': 854130, 'elderly let see': 270739, 'let see more': 487034, 'see more of': 745432, 'more of this': 539889, 'of this regularly': 592029, 'this regularly stoppanicbuying': 889856, 'regularly stoppanicbuying tear': 707959, 'stoppanicbuying tear at': 805650, 'tear at the': 835933, 'the till iceland': 869558, 'till iceland store': 896033, 'iceland store open': 412722, 'store open up': 809267, 'open up just': 612633, 'up just for': 945268, 'just for the': 468760, 'fro': 334132, 'trollies': 932509, 'mike the': 531283, 'threat fro': 893663, 'fro covid': 334137, 'isn visiting': 454753, 'visiting the': 959560, 'and club': 60021, 'club it': 184451, 'supermarket too': 823509, 'those infected': 892114, 'infected trollies': 436657, 'trollies time': 932522, 'mike the biggest': 531284, 'biggest threat fro': 130345, 'threat fro covid': 893664, 'fro covid 19': 334138, '19 isn visiting': 8097, 'isn visiting the': 454754, 'visiting the pub': 959563, 'the pub and': 864764, 'pub and club': 687661, 'and club it': 60025, 'club it going': 184452, 'the supermarket too': 868869, 'supermarket too many': 823510, 'many people and': 514486, 'all those infected': 45166, 'those infected trollies': 892117, 'infected trollies time': 436658, 'trollies time to': 932523, 'time to wake': 898097, 'hunker': 411332, 'wisconsibly': 996596, 'wiunion': 1003184, 'hope from': 403489, 'from wisconsin': 338386, 'wisconsin land': 996623, 'land of': 479277, 'of brewery': 580871, 'brewery who': 139468, 'getting into': 349068, 'sanitizer business': 734601, 'and hunker': 64878, 'hunker down': 411333, 'down wisconsibly': 257484, 'wisconsibly shirt': 996597, 'shirt wiunion': 759033, 'wiunion fightcovid19': 1003185, 'hope from wisconsin': 403490, 'from wisconsin land': 338387, 'wisconsin land of': 996624, 'land of brewery': 479278, 'of brewery who': 580872, 'brewery who are': 139469, 'who are getting': 988146, 'are getting into': 86813, 'getting into the': 349072, 'into the hand': 443134, 'hand sanitizer business': 375331, 'sanitizer business and': 734602, 'business and hunker': 143311, 'and hunker down': 64879, 'hunker down wisconsibly': 411340, 'down wisconsibly shirt': 257485, 'wisconsibly shirt wiunion': 996598, 'shirt wiunion fightcovid19': 759034, 'just supermarket': 469925, 'husband is': 411720, 'night of': 563042, 'his off': 397652, 'off yesterday': 594431, 'today he': 919621, 'he hardly': 385073, 'hardly been': 378255, 'keep his': 471581, 'his eye': 397406, 'open 10pm': 612000, '10pm 6am': 2370, '6am him': 21560, 'restock the': 716920, 'shelf so': 757522, 'need be': 554522, 'them too': 876541, 'just supermarket worker': 469928, 'worker my husband': 1007410, 'my husband is': 548782, 'husband is on': 411725, 'is on night': 450475, 'on night of': 602411, 'night of his': 563043, 'of his off': 584661, 'his off yesterday': 397653, 'off yesterday and': 594432, 'and today he': 74223, 'today he hardly': 919625, 'he hardly been': 385074, 'hardly been able': 378256, 'to keep his': 908802, 'keep his eye': 471583, 'his eye open': 397407, 'eye open 10pm': 294082, 'open 10pm 6am': 612001, '10pm 6am him': 2371, '6am him and': 21561, 'him and his': 396539, 'and his colleague': 64593, 'his colleague are': 397295, 'colleague are working': 186202, 'working to restock': 1009001, 'to restock the': 913415, 'restock the shelf': 716924, 'the shelf so': 866876, 'shelf so you': 757530, 'can get everything': 158415, 'get everything you': 346971, 'you need be': 1019969, 'need be grateful': 554523, 'grateful for them': 362275, 'for them too': 326928, 'resupply': 717775, 'apocalyptic': 81591, 'industry scramble': 436091, 'scramble to': 742542, 'to resupply': 913440, 'resupply store': 717778, 'amid apocalyptic': 52391, 'apocalyptic surge': 81604, 'demand zero': 236541, 'food industry scramble': 315024, 'industry scramble to': 436092, 'scramble to resupply': 742549, 'to resupply store': 913442, 'resupply store amid': 717779, 'store amid apocalyptic': 806164, 'amid apocalyptic surge': 52392, 'apocalyptic surge in': 81605, 'in demand zero': 422170, 'demand zero hedge': 236543, 'price plummet': 675893, 'plummet by': 661263, '20 per': 13250, 'cent economist': 169049, 'economist warn': 267587, 'pandemic could see': 635252, 'could see house': 209635, 'house price plummet': 406500, 'price plummet by': 675898, 'plummet by 20': 661264, 'by 20 per': 151576, '20 per cent': 13252, 'per cent economist': 650749, 'cent economist warn': 169050, 'arbitrary': 84018, 'punitive': 689260, 'endangers': 276111, 'you deny': 1018176, 'deny curbside': 237132, 'up delivery': 944697, 'for ebt': 320935, 'ebt card': 266578, 'card holder': 163544, 'holder this': 400082, 'policy feel': 663405, 'feel arbitrary': 302568, 'arbitrary punitive': 84023, 'punitive since': 689263, 'since id': 770653, 'id are': 412929, 'shown inside': 767596, 'store when': 811234, 'using card': 950416, 'card this': 163673, 'policy endangers': 663393, 'endangers every': 276112, 'do you deny': 250623, 'you deny curbside': 1018177, 'deny curbside pick': 237133, 'pick up delivery': 655715, 'up delivery for': 944698, 'delivery for ebt': 234022, 'for ebt card': 320936, 'ebt card holder': 266580, 'card holder this': 163546, 'holder this policy': 400083, 'this policy feel': 889654, 'policy feel arbitrary': 663406, 'feel arbitrary punitive': 302569, 'arbitrary punitive since': 84024, 'punitive since id': 689264, 'since id are': 770654, 'id are not': 412930, 'are not shown': 88464, 'not shown inside': 571574, 'shown inside the': 767597, 'grocery store when': 365946, 'store when using': 811252, 'when using card': 984376, 'using card this': 950417, 'card this policy': 163674, 'this policy endangers': 889652, 'policy endangers every': 663394, 'mywifelife': 551080, 'bunghole': 142661, 'boo': 134426, 'luseelu': 506856, 'mywifelife if': 551081, 'find tp': 307351, 'tp for': 927815, 'your bunghole': 1023036, 'bunghole we': 142664, 'need having': 554958, 'having fun': 384081, 'fun drawing': 341157, 'drawing with': 258535, 'my boo': 547490, 'boo luseelu': 134427, 'luseelu do': 506857, 'let keep': 486840, 'with fam': 998372, 'fam friend': 297504, 'friend toiletpaper': 333855, 'toiletpaper art': 921753, 'mywifelife if you': 551082, 'cannot find tp': 161852, 'find tp for': 307354, 'tp for your': 927817, 'for your bunghole': 328124, 'your bunghole we': 1023037, 'bunghole we got': 142665, 'we got what': 971681, 'you need having': 1019997, 'need having fun': 554959, 'having fun drawing': 384083, 'fun drawing with': 341158, 'drawing with my': 258536, 'with my boo': 999611, 'my boo luseelu': 547491, 'boo luseelu do': 134428, 'luseelu do not': 506858, 'not let keep': 570370, 'let keep you': 486848, 'keep you from': 472237, 'you from having': 1018718, 'from having fun': 335733, 'having fun with': 384085, 'fun with fam': 341249, 'with fam friend': 998373, 'fam friend toiletpaper': 297505, 'friend toiletpaper art': 333856, 'proved': 686130, 'cn': 184703, 'order before': 618077, 'before sleeping': 123083, 'sleeping and': 773816, 'is delivered': 447097, 'in morning': 425450, 'morning this': 541499, 'many food': 514079, 'apps this': 83320, 'wuhan complete': 1013471, 'complete quarantine': 192137, 'testing tracking': 839679, 'tracking isolating': 928339, 'treating this': 931019, 'been proved': 121723, 'proved jp': 686135, 'jp kr': 467553, 'kr cn': 477615, 'use online grocery': 949444, 'shopping and order': 762008, 'and order before': 68243, 'order before sleeping': 618079, 'before sleeping and': 123084, 'sleeping and food': 773817, 'and grocery is': 63989, 'grocery is delivered': 364637, 'is delivered in': 447098, 'delivered in morning': 233348, 'in morning this': 425452, 'morning this should': 541501, 'should be done': 765605, 'be done with': 114574, 'done with so': 255122, 'so many food': 777661, 'many food delivery': 514080, 'food delivery apps': 314106, 'delivery apps this': 233705, 'apps this wa': 83321, 'done in wuhan': 254900, 'in wuhan complete': 431003, 'wuhan complete quarantine': 1013472, 'complete quarantine covid': 192138, '19 testing tracking': 11114, 'testing tracking isolating': 839680, 'tracking isolating and': 928340, 'isolating and treating': 455061, 'and treating this': 74431, 'treating this ha': 931020, 'this ha been': 887800, 'ha been proved': 369879, 'been proved jp': 121724, 'proved jp kr': 686136, 'jp kr cn': 467554, 'ra': 695116, 'absolutely take': 27454, 'the seriously': 866725, 'seriously do': 751582, 'panic take': 638661, 'precaution be': 669290, 'prepared do': 670177, 'mainstream medium': 508912, 'medium fear': 527096, 'fear tactic': 301355, 'paper buy': 639981, 'some rice': 783774, 'and ra': 69892, 'absolutely take the': 27456, 'take the seriously': 832674, 'the seriously do': 866726, 'seriously do not': 751583, 'not panic take': 570938, 'panic take the': 638663, 'take the proper': 832671, 'the proper precaution': 864678, 'proper precaution be': 684132, 'precaution be prepared': 669291, 'be prepared do': 116516, 'prepared do not': 670178, 'fall for the': 296915, 'for the mainstream': 326546, 'the mainstream medium': 859923, 'mainstream medium fear': 508914, 'medium fear tactic': 527098, 'fear tactic and': 301356, 'tactic and this': 831688, 'and this information': 73997, 'this information and': 888110, 'information and stop': 437742, 'and stop buying': 72469, 'stop buying so': 804547, 'buying so much': 151043, 'so much toilet': 777821, 'toilet paper buy': 921214, 'paper buy some': 639983, 'buy some rice': 149214, 'some rice and': 783775, 'rice and ra': 720999, '39': 18166, 'sleeper': 773812, 'recalled': 703364, 'fisher price': 309360, 'price 39': 672152, '39 baby': 18173, 'baby sleeper': 106697, 'sleeper is': 773813, 'being recalled': 125644, 'recalled across': 703365, 'across australia': 29273, 'australia after': 103218, 'being linked': 125388, 'to 32': 899686, '32 infant': 17676, 'infant death': 436474, 'state the': 795987, 'the popular': 864012, 'popular fisher': 664547, 'price baby': 672829, 'fisher price 39': 309361, 'price 39 baby': 672153, '39 baby sleeper': 18174, 'baby sleeper is': 106698, 'sleeper is being': 773814, 'is being recalled': 446106, 'being recalled across': 125645, 'recalled across australia': 703366, 'across australia after': 29274, 'australia after being': 103219, 'after being linked': 35414, 'being linked to': 125389, 'linked to 32': 493987, 'to 32 infant': 899687, '32 infant death': 17677, 'infant death in': 436475, 'death in the': 230083, 'united state the': 942245, 'state the popular': 795992, 'the popular fisher': 864014, 'popular fisher price': 664548, 'fisher price baby': 309362, 'price baby sleeper': 672830, 'will indeed': 993832, 'indeed be': 433978, 'case but': 165668, 'the travel': 869930, 'travel restriction': 930484, 'restriction in': 717289, 'risk even': 723517, 'also temper': 48958, 'temper our': 837351, 'our expectation': 622947, 'currency demand': 221024, 'normal year': 567423, 'year this': 1015017, 'be offset': 116168, 'by weaker': 154707, 'weaker consumer': 974097, 'consumer prospect': 198494, 'and broad': 59211, 'that will indeed': 847586, 'will indeed be': 993833, 'indeed be the': 433979, 'be the case': 117601, 'the case but': 850456, 'case but in': 165669, 'of the travel': 591555, 'the travel restriction': 869935, 'travel restriction in': 930489, 'restriction in place': 717295, 'place and global': 657313, 'and global covid': 63692, '19 risk even': 10244, 'risk even post': 723518, 'even post lockdown': 284481, 'post lockdown we': 666204, 'lockdown we should': 500121, 'we should also': 973255, 'should also temper': 765508, 'also temper our': 48959, 'temper our expectation': 837352, 'our expectation for': 622948, 'expectation for currency': 290818, 'for currency demand': 320492, 'currency demand the': 221025, 'demand the normal': 236354, 'the normal year': 861868, 'normal year this': 567424, 'year this will': 1015022, 'will be offset': 992584, 'be offset by': 116170, 'offset by weaker': 596096, 'by weaker consumer': 154708, 'weaker consumer prospect': 974100, 'consumer prospect and': 198495, 'prospect and broad': 684666, 'driverless': 259869, 'wariness': 966864, 'fleetmanagement': 310333, 'could covid': 209057, '19 accelerate': 4783, 'accelerate the': 27860, 'the adoption': 848364, 'adoption of': 32722, 'of driverless': 582828, 'driverless car': 259870, 'car or': 163198, 'consumer wariness': 199470, 'wariness still': 966865, 'still remain': 801113, 'remain barrier': 709706, 'barrier fleetmanagement': 111357, 'could covid 19': 209058, 'covid 19 accelerate': 212571, '19 accelerate the': 4784, 'accelerate the adoption': 27861, 'the adoption of': 848365, 'adoption of driverless': 32723, 'of driverless car': 582829, 'driverless car or': 259871, 'car or will': 163202, 'or will consumer': 617806, 'will consumer wariness': 993001, 'consumer wariness still': 199471, 'wariness still remain': 966866, 'still remain barrier': 801114, 'remain barrier fleetmanagement': 709707, 'illinois retail': 416301, 'retail merchant': 718320, 'merchant association': 529003, 'association announces': 96945, 'announces covid': 77244, 'illinois retail merchant': 416302, 'retail merchant association': 718321, 'merchant association announces': 529004, 'association announces covid': 96946, 'announces covid 19': 77245, 'store hour for': 808200, 'borisjohnsonlies': 135541, 'other condition': 619988, 'condition isolate': 193474, 'yourself they': 1026719, 'said stay': 731373, 'said then': 731460, 'left him': 485494, 'right there': 722294, 'there there': 879156, 'no provision': 565238, 'provision going': 687265, 'to larger': 909051, 'larger opening': 479897, 'opening supermarket': 612907, 'another dangerous': 77561, 'dangerous infectious': 225749, 'infectious fight': 436907, 'fight stophoarding': 304877, 'coronacrisis borisjohnsonlies': 204530, 'older people and': 598640, 'people and people': 646880, 'and people with': 68893, 'people with other': 650467, 'with other condition': 999948, 'other condition isolate': 619989, 'condition isolate yourself': 193475, 'isolate yourself they': 454963, 'yourself they said': 1026720, 'they said stay': 883245, 'said stay away': 731374, 'from people they': 336892, 'people they said': 649822, 'they said then': 883247, 'said then they': 731461, 'then they left': 877657, 'they left him': 882550, 'left him right': 485496, 'him right there': 396699, 'right there there': 722298, 'there there are': 879157, 'are no provision': 88278, 'no provision going': 565240, 'provision going to': 687266, 'going to larger': 355636, 'to larger opening': 909053, 'larger opening supermarket': 479898, 'opening supermarket just': 612908, 'supermarket just another': 821219, 'just another dangerous': 468201, 'another dangerous infectious': 77562, 'dangerous infectious fight': 225750, 'infectious fight stophoarding': 436908, 'fight stophoarding coronacrisis': 304878, 'stophoarding coronacrisis borisjohnsonlies': 805377, 'consumer manage': 198090, 'have therefore': 383079, 'therefore reduced': 879455, 'our package': 624225, 'reflect the': 706626, 'effort to help': 269627, 'help consumer manage': 389522, 'consumer manage the': 198091, 'manage the impact': 512440, 'we have therefore': 971961, 'have therefore reduced': 383080, 'therefore reduced the': 879456, 'price of our': 675526, 'of our package': 587528, 'our package to': 624226, 'package to reflect': 633435, 'to reflect the': 913069, 'learned in': 484123, 'live near': 495928, 'near grocery': 553516, 'store thank': 810536, 'you loblaws': 1019678, 'one thing have': 607220, 'thing have learned': 884406, 'have learned in': 381277, 'learned in this': 484125, 'that it good': 844712, 'it good to': 458306, 'good to live': 357889, 'to live near': 909344, 'live near grocery': 495929, 'near grocery store': 553517, 'grocery store thank': 365846, 'store thank you': 810537, 'thank you loblaws': 841764, 'there so': 879058, 'much we': 545435, 'but bottom': 145312, 'there so much': 879059, 'so much we': 777825, 'much we still': 545444, 'not know about': 570288, 'about the but': 26347, 'the but bottom': 850192, 'but bottom line': 145313, 'bottom line it': 136412, 'line it good': 493213, 'good to disinfect': 357874, 'invaluable': 443582, 'be thankful': 117571, 'nurse hospital': 577368, 'hospital personnel': 404557, 'personnel supermarket': 653156, 'worker pharmacy': 1007569, 'staff truck': 793021, 'others that': 621695, 'provide invaluable': 686366, 'invaluable assistance': 443583, 'should be thankful': 765749, 'be thankful to': 117573, 'thankful to our': 841931, 'to our first': 911181, 'responder doctor nurse': 715446, 'doctor nurse hospital': 251021, 'nurse hospital personnel': 577369, 'hospital personnel supermarket': 404559, 'personnel supermarket worker': 653158, 'supermarket worker pharmacy': 824069, 'worker pharmacy staff': 1007572, 'pharmacy staff truck': 654479, 'staff truck driver': 793022, 'driver and many': 259418, 'many others that': 514457, 'others that provide': 621700, 'that provide invaluable': 845886, 'provide invaluable assistance': 686367, 'invaluable assistance to': 443584, 'assistance to all': 96751, 'all of in': 43697, 'of in these': 585050, '55yr': 20445, 'don die': 253459, 'die amp': 241296, 'amp consultant': 53557, 'consultant dr': 195865, 'dr al': 257948, 'al told': 40606, 'told how': 923580, 'how 55yr': 407267, '55yr old': 20446, 'old work': 598552, 'home woman': 402552, 'made one': 507887, 'supermarket died': 819962, 'died yesterday': 241612, 'yesterday of': 1015818, '19 51': 4749, '51 16': 20198, '16 government': 4119, 'home save': 402014, 'life don': 488607, 'don die amp': 253460, 'die amp consultant': 241297, 'amp consultant dr': 53558, 'consultant dr al': 195866, 'dr al told': 257949, 'al told how': 40607, 'told how 55yr': 923581, 'how 55yr old': 407268, '55yr old work': 20447, 'old work from': 598553, 'from home woman': 335933, 'home woman who': 402553, 'woman who made': 1003681, 'who made one': 989243, 'made one trip': 507889, 'the supermarket died': 868553, 'supermarket died yesterday': 819963, 'died yesterday of': 241614, 'yesterday of covid': 1015819, 'covid 19 51': 212562, '19 51 16': 4750, '51 16 government': 20199, '16 government can': 4120, 'government can say': 359964, 'say this we': 739376, 'this we can': 891145, 'we can stay': 971019, 'stay home save': 797000, 'home save life': 402015, 'save life don': 737538, 'life don die': 488609, '19 impacting': 7721, 'impacting our': 418247, 'pattern new': 644484, 'new research': 559458, 'research reveals': 713830, 'reveals that': 720343, 'past 30': 643501, 'in people': 426585, 'who ordered': 989389, 'grocery were': 366125, 'were using': 980321, 'the service': 866730, 'covid 19 impacting': 213251, '19 impacting our': 7725, 'impacting our shopping': 418249, 'our shopping pattern': 624766, 'shopping pattern new': 763607, 'pattern new research': 644485, 'new research reveals': 559467, 'research reveals that': 713832, 'reveals that in': 720344, 'that in the': 844461, 'the past 30': 863347, 'past 30 day': 643502, '30 day in': 17018, 'day in people': 227806, 'in people who': 426605, 'people who ordered': 650325, 'who ordered online': 989390, 'ordered online grocery': 618881, 'online grocery were': 608336, 'grocery were using': 366126, 'were using the': 980323, 'using the service': 950713, 'the service for': 866735, 'laughter': 481836, 'dutch': 263488, 'toiletpaper laughter': 922176, 'laughter in': 481841, 'in dutch': 422426, 'dutch source': 263517, 'you think we': 1021687, 'think we will': 885777, 'out of toiletpaper': 626861, 'of toiletpaper laughter': 592271, 'toiletpaper laughter in': 922177, 'laughter in dutch': 481842, 'in dutch source': 422428, 'fluctuation': 311515, 'wisdom': 996651, 'collectiveness': 186543, 'reciprocate': 704544, 'market correction': 516225, 'correction currency': 207555, 'currency rate': 221056, 'rate correction': 697185, 'correction oil': 207566, 'correction interest': 207564, 'rate change': 697176, 'change currency': 171996, 'rate fluctuation': 697217, 'fluctuation is': 311523, 'is lifestyle': 449300, 'lifestyle correction': 489356, 'correction wisdom': 207588, 'wisdom is': 996654, 'in collectiveness': 421549, 'collectiveness respect': 186544, 'respect nature': 715027, 'nature for': 552950, 'to reciprocate': 912947, 'reciprocate no': 704545, 'is above': 445282, 'above other': 27091, 'stock market correction': 802383, 'market correction currency': 516227, 'correction currency rate': 207556, 'currency rate correction': 221058, 'rate correction oil': 697186, 'correction oil price': 207567, 'oil price correction': 597088, 'price correction interest': 673269, 'correction interest rate': 207565, 'interest rate change': 441388, 'rate change currency': 697177, 'change currency rate': 171997, 'currency rate fluctuation': 221059, 'rate fluctuation is': 697218, 'fluctuation is lifestyle': 311524, 'is lifestyle correction': 449301, 'lifestyle correction wisdom': 489357, 'correction wisdom is': 207589, 'wisdom is in': 996655, 'is in collectiveness': 448758, 'in collectiveness respect': 421550, 'collectiveness respect nature': 186545, 'respect nature for': 715028, 'nature for it': 552951, 'it to reciprocate': 461747, 'to reciprocate no': 912948, 'reciprocate no one': 704546, 'one is above': 606499, 'is above other': 445284, 'ccot': 168442, 'teaparty': 835911, 'hannity': 377003, 'kag2020': 470620, 'nra': 576626, 'oann': 578277, 'wnd': 1003297, 'ccot tcot': 168443, 'tcot pjnet': 835298, 'pjnet teaparty': 657240, 'teaparty hannity': 835912, 'hannity tucker': 377004, 'tucker christian': 935066, 'christian maga': 178121, 'maga maga2020': 508286, 'kag kag2020': 470614, 'kag2020 trump2020': 470623, 'trump2020 nra': 934010, 'nra oann': 576627, 'oann foxnews': 578278, 'foxnews wnd': 330817, 'wnd economics': 1003298, 'economics professor': 267477, 'professor why': 682596, 'should let': 766190, 'let price': 486989, 'rise during': 722834, 'during buying': 262489, 'ccot tcot pjnet': 168444, 'tcot pjnet teaparty': 835299, 'pjnet teaparty hannity': 657241, 'teaparty hannity tucker': 835913, 'hannity tucker christian': 377005, 'tucker christian maga': 935067, 'christian maga maga2020': 178122, 'maga maga2020 kag': 508287, 'maga2020 kag kag2020': 508306, 'kag kag2020 trump2020': 470615, 'kag2020 trump2020 nra': 470624, 'trump2020 nra oann': 934011, 'nra oann foxnews': 576628, 'oann foxnews wnd': 578279, 'foxnews wnd economics': 330818, 'wnd economics professor': 1003299, 'economics professor why': 267478, 'professor why you': 682597, 'you should let': 1021202, 'should let price': 766191, 'let price rise': 486990, 'price rise during': 676234, 'rise during buying': 722835, 'during buying panic': 262490, 'gauging': 344555, 'attention this': 102490, 'only merchant': 610783, 'merchant price': 529042, 'price gauging': 674154, 'gauging customer': 344560, 'call 311': 155699, '311 or': 17619, 'the inspector': 858322, 'inspector general': 439785, 'general if': 345361, 'feel your': 302947, 'over pricing': 630529, 'pricing on': 677951, 'tragedy disgusting': 929167, 'disgusting government': 245410, 'government stay': 360629, 'stay blessed': 796796, 'pay attention this': 644765, 'attention this is': 102491, 'the only merchant': 862321, 'only merchant price': 610784, 'merchant price gauging': 529043, 'price gauging customer': 674156, 'gauging customer please': 344561, 'customer please call': 222694, 'please call 311': 659746, 'call 311 or': 155700, '311 or the': 17620, 'or the inspector': 617379, 'the inspector general': 858323, 'inspector general if': 439786, 'general if you': 345362, 'you feel your': 1018546, 'feel your store': 302951, 'your store is': 1025972, 'store is over': 808513, 'is over pricing': 450724, 'over pricing on': 630530, 'pricing on this': 677953, 'on this tragedy': 604641, 'this tragedy disgusting': 890839, 'tragedy disgusting government': 929168, 'disgusting government stay': 245411, 'government stay blessed': 360630, 'robertson84': 724722, 'robertson84 live': 724723, 'stream sit': 812788, 'watch pattern': 968505, 'pattern of': 644486, 'much they': 545365, 'wearing protective': 974767, 'protective device': 685720, 'device interaction': 239913, 'interaction on': 441256, 'medium about': 526968, '19 versus': 11749, 'versus non': 954947, 'non covid': 566316, 'robertson84 live stream': 724724, 'live stream sit': 496031, 'stream sit in': 812789, 'sit in your': 771830, 'in your car': 431064, 'car at grocery': 163015, 'store and watch': 806398, 'and watch pattern': 75224, 'watch pattern of': 968506, 'pattern of who': 644488, 'of who go': 593130, 'who go in': 988790, 'go in out': 353712, 'in out and': 426356, 'out and how': 625671, 'and how much': 64825, 'how much they': 408376, 'much they get': 545368, 'they get and': 882157, 'get and if': 346553, 'and if they': 64953, 'if they re': 415124, 're wearing protective': 699791, 'wearing protective device': 974768, 'protective device interaction': 685721, 'device interaction on': 239914, 'interaction on social': 441257, 'social medium about': 779837, 'medium about covid': 526969, 'covid 19 versus': 214023, '19 versus non': 11750, 'versus non covid': 954948, 'non covid 19': 566317, 'think metre': 885393, 'metre is': 529852, 'enough check': 277352, 'this model': 888862, 'where someone': 985183, 'ha coughed': 370252, 'you think metre': 1021666, 'think metre is': 885394, 'metre is enough': 529854, 'is enough check': 447509, 'enough check out': 277353, 'out this model': 627578, 'this model of': 888863, 'model of supermarket': 535287, 'of supermarket where': 590457, 'supermarket where someone': 823826, 'where someone ha': 985184, 'someone ha coughed': 784491, 'publish': 688624, 'hello there': 389223, 'there trader': 879202, 'trader some': 928768, 'week ahead': 975868, 'ahead amid': 39130, 'pandemic april': 634936, '12 saudi': 2950, 'arabia will': 83970, 'will publish': 994524, 'publish it': 688633, 'official selling': 595920, 'crude april': 219507, 'april 13': 83406, '13 easter': 3214, 'easter monday': 265470, 'monday french': 536286, 'macron may': 507499, 'may extend': 521162, 'extend virus': 293137, 'virus lock': 958463, 'hello there trader': 389226, 'there trader some': 879203, 'trader some thing': 928769, 'thing to look': 884896, 'out for in': 626130, 'for in the': 322516, 'in the week': 429669, 'the week ahead': 871293, 'week ahead amid': 975869, 'ahead amid the': 39131, 'the pandemic april': 862910, 'pandemic april 12': 634937, 'april 12 saudi': 83404, '12 saudi arabia': 2951, 'saudi arabia will': 737230, 'arabia will publish': 83971, 'will publish it': 994526, 'publish it official': 688634, 'it official selling': 460000, 'official selling price': 595921, 'selling price for': 749411, 'price for crude': 673945, 'for crude april': 320469, 'crude april 13': 219508, 'april 13 easter': 83408, '13 easter monday': 3215, 'easter monday french': 265471, 'monday french president': 536287, 'emmanuel macron may': 273239, 'macron may extend': 507500, 'may extend virus': 521163, 'extend virus lock': 293138, 'virus lock down': 958464, 'closure expands': 183886, 'expands worker': 290547, 'worker furlough': 1007003, 'furlough program': 341896, 'program retail': 683290, 'retail jcpenney': 718250, 'jcpenney housewares': 464923, 'store closure expands': 807091, 'closure expands worker': 183887, 'expands worker furlough': 290548, 'worker furlough program': 1007004, 'furlough program retail': 341897, 'program retail jcpenney': 683291, 'retail jcpenney housewares': 718251, 'jcpenney housewares homeworld': 464924, 'eating during': 266197, 'it fair': 457933, 'say these': 739327, 'uncertain and': 939563, 'and anxious': 58207, 'either having': 270316, 'shop facing': 760163, 'facing limited': 295524, 'stock basically': 801903, 'aren always': 92319, 'always able': 49453, 'healthy eating during': 387592, 'eating during covid': 266198, '19 it fair': 8134, 'it fair to': 457935, 'fair to say': 296390, 'to say these': 913845, 'say these are': 739328, 'are uncertain and': 91268, 'uncertain and anxious': 939564, 'and anxious time': 58208, 'anxious time and': 78871, 'we are either': 970538, 'are either having': 86094, 'either having to': 270317, 'having to self': 384363, 'isolate and rely': 454815, 'rely on food': 709640, 'on food delivery': 600855, 'food delivery or': 314138, 'delivery or are': 234276, 'or are running': 614414, 'are running around': 89760, 'running around the': 727918, 'around the shop': 93557, 'the shop facing': 866993, 'shop facing limited': 760164, 'facing limited stock': 295525, 'limited stock basically': 492724, 'stock basically we': 801904, 'basically we aren': 112179, 'we aren always': 970770, 'aren always able': 92320, 'always able to': 49454, 'longtime': 502140, '750': 22177, 'persists': 652276, 'our longtime': 623803, 'longtime supporter': 502145, 'supporter ha': 827091, 'made generous': 507759, 'generous donation': 345721, 'donation providing': 254677, 'providing 750': 686925, '750 00': 22178, '00 meal': 323, 'meal so': 524275, 'distribution the': 248235, 'crisis persists': 217868, 'persists thank': 652281, 'support at': 826375, 'our longtime supporter': 623804, 'longtime supporter ha': 502146, 'supporter ha made': 827092, 'ha made generous': 371207, 'made generous donation': 507760, 'generous donation providing': 345723, 'donation providing 750': 254678, 'providing 750 00': 686926, '750 00 meal': 22179, '00 meal so': 325, 'meal so we': 524276, 'we can continue': 970924, 'continue to help': 201206, 'for food distribution': 321575, 'food distribution the': 314238, 'distribution the covid': 248236, '19 crisis persists': 6300, 'crisis persists thank': 217869, 'persists thank you': 652282, 'your support at': 1026080, 'support at time': 826376, 'time when it': 898290, 'when it needed': 983640, 'it needed more': 459758, 'cantonment': 162375, 'meerut': 527396, 'setup': 753728, 'sanitizes': 736452, 'toe': 920639, 'pradesh cantonment': 668807, 'cantonment board': 162376, 'in meerut': 425241, 'meerut setup': 527397, 'setup sanitization': 753738, 'sanitization cabin': 734137, 'cabin for': 154971, 'it sanitizes': 460865, 'sanitizes one': 736455, 'time from': 896802, 'from head': 335742, 'to toe': 917621, 'uttar pradesh cantonment': 951404, 'pradesh cantonment board': 668808, 'cantonment board in': 162377, 'board in meerut': 133646, 'in meerut setup': 425242, 'meerut setup sanitization': 527398, 'setup sanitization cabin': 753739, 'sanitization cabin for': 734138, 'cabin for staff': 154972, 'for staff it': 325853, 'staff it sanitizes': 792587, 'it sanitizes one': 460866, 'sanitizes one person': 736456, 'one person at': 606855, 'person at time': 652324, 'at time from': 101289, 'time from head': 896807, 'from head to': 335744, 'head to toe': 385835, 'forgot like': 329400, 'the teacher': 869192, 'teacher you': 835540, 're legend': 698988, 'case they forgot': 166067, 'they forgot like': 882135, 'forgot like to': 329401, 'like to say': 491619, 'to the teacher': 917117, 'the teacher you': 869198, 'teacher you re': 835542, 'you re legend': 1020667, 'sirius': 771695, 'xm': 1013874, 'free sirius': 332172, 'sirius xm': 771696, 'xm til': 1013875, 'til may': 895945, 'may 15': 520867, '15 many': 3762, 'many firm': 514068, 'firm doing': 308337, 'doing nice': 252548, 'nice thing': 562480, 'people right': 649304, 'now during': 574570, 'during anyone': 262465, 'eg discounted': 269701, 'discounted good': 244584, 'service help': 752453, 'help very': 390845, 'are shooting': 90049, 'shooting to': 759778, 'roof smaller': 725840, 'smaller package': 775287, 'free sirius xm': 332173, 'sirius xm til': 771697, 'xm til may': 1013876, 'til may 15': 895946, 'may 15 many': 520868, '15 many firm': 3763, 'many firm doing': 514069, 'firm doing nice': 308338, 'doing nice thing': 252549, 'nice thing for': 562481, 'thing for people': 884335, 'for people right': 324460, 'people right now': 649306, 'right now during': 722057, 'now during anyone': 574572, 'during anyone know': 262466, 'anyone know of': 80403, 'know of others': 476647, 'of others eg': 587389, 'others eg discounted': 621377, 'eg discounted good': 269702, 'discounted good service': 244585, 'good service help': 357711, 'service help very': 752454, 'help very important': 390846, 'very important right': 955253, 'right now grocery': 722072, 'now grocery price': 574826, 'price are shooting': 672734, 'are shooting to': 90050, 'shooting to the': 759779, 'to the roof': 917031, 'the roof smaller': 865975, 'roof smaller package': 725841, 'smaller package for': 775288, 'package for more': 633277, 'so when': 778729, 'see story': 745754, 'the arising': 848891, 'arising from': 92809, 'seeing is': 746347, 'demand disruption': 235243, 'disruption for': 246473, 'good it': 357288, 'to note': 910722, 'that more': 845214, 'people aren': 647120, 'aren starving': 92528, 'starving to': 795271, 'death specifically': 230208, 'specifically due': 788275, 'this supply': 890440, 'chain disruption': 170648, 'disruption 19': 246432, 'so when we': 778732, 'when we see': 984463, 'we see story': 973169, 'see story about': 745755, 'story about food': 811887, 'about food insecurity': 25257, 'in the arising': 428985, 'the arising from': 848892, 'arising from covid': 92812, '19 what we': 12005, 're seeing is': 699458, 'seeing is demand': 746348, 'is demand disruption': 447110, 'demand disruption for': 235244, 'disruption for perishable': 246474, 'for perishable good': 324488, 'perishable good it': 651983, 'good it very': 357291, 'it very important': 462033, 'very important to': 955256, 'important to note': 419062, 'to note that': 910724, 'note that more': 572804, 'that more people': 845217, 'more people aren': 540007, 'people aren starving': 647127, 'aren starving to': 92529, 'starving to death': 795272, 'to death specifically': 903984, 'death specifically due': 230209, 'specifically due to': 788276, 'to this supply': 917466, 'this supply chain': 890441, 'supply chain disruption': 824946, 'chain disruption 19': 170649, 'in name': 425668, 'sydney south': 830708, 'just in name': 469040, 'in name and': 425669, 'supermarket in sydney': 820988, 'in sydney south': 428780, 'sydney south west': 830709, 'proximity': 687322, 'to stayathome': 915333, 'stayathome and': 797432, 'yet so': 1016229, 'many retail': 514643, 'store remain': 809795, 'to mass': 909878, 'mass gather': 519767, 'gather and': 344368, 'are actually': 84211, 'actually queuing': 30926, 'close proximity': 182774, 'proximity to': 687331, 'food stay': 316751, 'stay 2m': 796733, 'panic get': 638133, 'get king': 347458, 'king grip': 475265, 'what don get': 981383, 'don get is': 253539, 'get is that': 347386, 'is that everyone': 452647, 'everyone is being': 287067, 'is being told': 446122, 'told to stayathome': 923767, 'to stayathome and': 915334, 'stayathome and yet': 797435, 'and yet so': 75992, 'yet so many': 1016230, 'so many retail': 777698, 'many retail store': 514644, 'retail store remain': 718691, 'store remain open': 809799, 'open for people': 612254, 'people to mass': 649920, 'to mass gather': 909880, 'mass gather and': 519768, 'gather and go': 344369, 'and go shopping': 63783, 'go shopping people': 354125, 'shopping people are': 763619, 'people are actually': 646917, 'are actually queuing': 84217, 'actually queuing in': 30927, 'queuing in close': 694216, 'in close proximity': 421512, 'close proximity to': 182778, 'proximity to go': 687332, 'go and buy': 353278, 'and buy food': 59335, 'buy food stay': 148673, 'food stay 2m': 316752, 'stay 2m apart': 796734, '2m apart and': 16659, 'apart and don': 81225, 'and don panic': 61637, 'don panic get': 253804, 'panic get king': 638134, 'get king grip': 347459, 'where to shop': 985311, 'shop in these': 760328, 'bank is': 109946, 'increasing paid': 433651, 'paid visit': 634174, 'which provides': 986245, 'provides many': 686874, 'my district': 548006, 'district with': 248392, 'with access': 997089, 'to nutritious': 910765, 'during hard': 262672, 'their mission': 873983, 'crisis the demand': 218168, 'the demand on': 853103, 'food bank is': 313590, 'bank is increasing': 109950, 'is increasing paid': 448859, 'increasing paid visit': 433652, 'paid visit to': 634175, 'the which provides': 871446, 'which provides many': 986246, 'provides many people': 686875, 'people in my': 648399, 'in my district': 425564, 'my district with': 548007, 'district with access': 248393, 'with access to': 997090, 'access to nutritious': 28263, 'to nutritious food': 910767, 'nutritious food during': 577764, 'food during hard': 314322, 'during hard time': 262673, 'hard time to': 378044, 'time to see': 898060, 'see how we': 745259, 'can help their': 158662, 'help their mission': 390693, 'carafoil': 163369, 'fachado': 295231, 'coronavirus gas': 205982, 'price road': 676259, 'road traffic': 724533, 'traffic dropping': 929083, 'dropping because': 260673, 'insider oil': 439478, 'oil oilprices': 596982, 'oilprices carafoil': 597660, 'carafoil fachado': 163370, 'coronavirus gas price': 205983, 'gas price road': 344019, 'price road traffic': 676260, 'road traffic dropping': 724534, 'traffic dropping because': 929084, 'dropping because of': 260674, '19 business insider': 5482, 'business insider oil': 143929, 'insider oil oilprices': 439479, 'oil oilprices carafoil': 596983, 'oilprices carafoil fachado': 597661, 'undoubtedly': 941040, 'abundantly': 27608, 'is undoubtedly': 453477, 'undoubtedly creating': 941041, 'creating challenge': 215983, 'term but': 838077, 'also making': 48507, 'it abundantly': 456252, 'abundantly clear': 27609, 'that understanding': 847168, 'understanding consumer': 940867, 'ever we': 285590, 'you covered': 1018112, 'covered check': 212404, 'latest consumerbehavior': 481267, 'pandemic is undoubtedly': 635805, 'is undoubtedly creating': 453478, 'undoubtedly creating challenge': 941042, 'creating challenge for': 215984, 'challenge for brand': 171458, 'for brand in': 319762, 'short term but': 764726, 'term but it': 838080, 'it is also': 458871, 'is also making': 445564, 'also making it': 48509, 'making it abundantly': 511135, 'it abundantly clear': 456253, 'abundantly clear that': 27610, 'clear that understanding': 181354, 'that understanding consumer': 847169, 'understanding consumer is': 940869, 'consumer is more': 197937, 'than ever we': 840620, 'ever we ve': 285593, 've got you': 953204, 'got you covered': 359029, 'you covered check': 1018114, 'covered check out': 212405, 'out our blog': 626968, 'our blog for': 622225, 'blog for the': 132937, 'the latest consumerbehavior': 859083, 'sniper': 776354, 'weapon': 974230, 'annihilate': 76809, 'pistol': 656987, 'covid sniper': 214225, 'sniper strange': 776357, 'strange american': 812374, 'american we': 52291, 'italy because': 462774, 'we queue': 972801, 'food disinfectant': 314218, 'disinfectant glove': 245675, 'they instead': 882466, 'instead queue': 440348, 'on ammunition': 599307, 'ammunition and': 52937, 'and weapon': 75348, 'weapon do': 974241, 'they believe': 881554, 'believe to': 126390, 'to annihilate': 900543, 'annihilate the': 76810, 'virus with': 959050, 'with shot': 1000708, 'shot and': 765411, 'and pistol': 69032, 'covid sniper strange': 214226, 'sniper strange american': 776358, 'strange american we': 812375, 'american we in': 52292, 'we in italy': 972068, 'in italy because': 424293, 'italy because of': 462776, '19 we queue': 11946, 'we queue to': 972803, 'queue to buy': 694092, 'buy food disinfectant': 148640, 'food disinfectant glove': 314219, 'disinfectant glove and': 245676, 'glove and mask': 352569, 'and mask they': 66765, 'mask they instead': 519370, 'they instead queue': 882467, 'instead queue to': 440349, 'queue to stock': 694100, 'up on ammunition': 945523, 'on ammunition and': 599308, 'ammunition and weapon': 52938, 'and weapon do': 75349, 'weapon do they': 974242, 'do they believe': 250299, 'they believe to': 881555, 'believe to annihilate': 126391, 'to annihilate the': 900544, 'annihilate the virus': 76811, 'the virus with': 870925, 'virus with shot': 959053, 'with shot and': 1000709, 'shot and pistol': 765413, 'ndia': 553414, 've updated': 953644, 'updated our': 947411, '19 information': 7879, 'information page': 437942, 'including link': 432035, 'from dhs': 335139, 'dhs and': 240131, 'and ndia': 67446, 'ndia well': 553417, 'well what': 978742, 'we currently': 971238, 'currently know': 221576, 'supermarket rule': 822263, 'rule change': 727224, 'we ve updated': 973720, 've updated our': 953645, 'updated our covid': 947414, 'covid 19 information': 213272, '19 information page': 7883, 'information page including': 437944, 'page including link': 633861, 'including link to': 432036, 'latest update from': 481589, 'update from dhs': 946976, 'from dhs and': 335140, 'dhs and ndia': 240132, 'and ndia well': 67448, 'ndia well what': 553418, 'well what we': 978744, 'what we currently': 982546, 'we currently know': 971240, 'currently know about': 221577, 'know about supermarket': 476223, 'about supermarket rule': 26287, 'supermarket rule change': 822264, 'soak': 778878, 'rub': 726908, 'caution': 168152, 'to soak': 914804, 'soak it': 778881, 'in bleach': 420873, 'bleach solution': 132519, 'kill do': 474385, 'use heavy': 949259, 'heavy duty': 388635, 'duty disinfectant': 263564, 'spray want': 790343, 'to rub': 913649, 'rub aggressively': 726909, 'aggressively no': 38268, 'problem caution': 679498, 'caution do': 168163, 'not try': 572290, 'want to soak': 966121, 'to soak it': 914805, 'soak it in': 778882, 'it in bleach': 458726, 'in bleach solution': 420875, 'bleach solution to': 132521, 'solution to kill': 782105, 'to kill do': 908926, 'kill do it': 474386, 'do it you': 249527, 'it you want': 462652, 'want to use': 966151, 'to use heavy': 918034, 'use heavy duty': 949260, 'heavy duty disinfectant': 388636, 'duty disinfectant spray': 263565, 'disinfectant spray want': 245761, 'spray want to': 790344, 'want to rub': 966105, 'to rub aggressively': 913650, 'rub aggressively no': 726910, 'aggressively no problem': 38269, 'no problem caution': 565191, 'problem caution do': 679499, 'caution do not': 168164, 'do not try': 249876, 'not try this': 572295, 'try this with': 934595, 'this with your': 891468, 'with your consumer': 1002188, 'day 31': 227141, '31 toiletpaper': 17607, 'toiletpaper me': 922226, 'store wife': 811322, 'wife toilet': 991982, 'paper if': 640304, 'it me': 459562, 'some cheap': 782512, 'cheap tp': 174219, 'at dollar': 98471, 'dollar store': 253083, 'wife oh': 991952, 'oh we': 596474, 'cheap stuff': 174203, 'stuff me': 815126, 'day 31 toiletpaper': 227142, '31 toiletpaper me': 17608, 'toiletpaper me do': 922227, 'me do we': 522664, 'we need anything': 972467, 'need anything from': 554456, 'anything from store': 80771, 'from store wife': 337449, 'store wife toilet': 811324, 'wife toilet paper': 991983, 'toilet paper if': 921313, 'paper if you': 640305, 'if you find': 415440, 'you find it': 1018572, 'find it me': 306998, 'it me got': 459564, 'me got some': 522831, 'got some cheap': 358849, 'some cheap tp': 782515, 'cheap tp at': 174220, 'tp at dollar': 927751, 'at dollar store': 98473, 'dollar store wife': 253086, 'store wife oh': 811323, 'wife oh we': 991953, 'oh we have': 596476, 'we have some': 971943, 'have some cheap': 382622, 'some cheap stuff': 782514, 'cheap stuff me': 174204, 'topsmarket': 925864, 'wherearethedeliveries': 985413, 'far now': 298869, 'now topsmarket': 576215, 'topsmarket didn': 925865, 'didn restock': 241181, 'restock last': 716878, 'night wherearethedeliveries': 563130, 'wherearethedeliveries went': 985414, 'new product': 559355, 'this ha gone': 887802, 'ha gone to': 370732, 'gone to far': 356390, 'to far now': 905671, 'far now topsmarket': 298871, 'now topsmarket didn': 576216, 'topsmarket didn restock': 925866, 'didn restock last': 241182, 'restock last night': 716879, 'last night wherearethedeliveries': 480405, 'night wherearethedeliveries went': 563131, 'wherearethedeliveries went to': 985415, 'supermarket to load': 823386, 'load up and': 497303, 'up and there': 944381, 'wa no new': 962731, 'no new product': 564867, 'get quickly': 347875, 'quickly out': 694565, 'thing can get': 884223, 'can get quickly': 158446, 'get quickly out': 347876, 'quickly out of': 694566, 'britney': 140632, 'britney pause': 140633, 'pause have': 644595, 'fight at': 304664, 'store first': 807732, 'worry honey': 1010724, 'honey feel': 403171, 'feel you': 302943, 'you later': 1019556, 'britney pause have': 140634, 'pause have to': 644596, 'have to fight': 383209, 'to fight at': 905779, 'fight at the': 304667, 'grocery store first': 365399, 'store first but': 807733, 'first but do': 308554, 'not worry honey': 572567, 'worry honey feel': 1010725, 'honey feel you': 403172, 'feel you later': 302944, 'before someone': 123091, 'someone us': 784732, 'us firearm': 948517, 'firearm just': 308146, 'how long before': 408192, 'long before someone': 501353, 'before someone us': 123093, 'someone us firearm': 784733, 'us firearm just': 948518, 'firearm just to': 308147, 'to the front': 916729, 'of supermarket queue': 590440, 'by driving': 152427, 'driving down': 259916, 'down commodity': 256645, 'is draining': 447363, 'draining 50': 258228, '50 90': 19597, '90 an': 23271, 'an acre': 55075, 'acre from': 29205, 'and revenue': 70486, 'revenue that': 720481, 'farmer expect': 299361, 'receive this': 703566, 'by driving down': 152428, 'driving down commodity': 259917, 'down commodity price': 256646, 'commodity price the': 189291, 'price the outbreak': 676852, 'outbreak is draining': 628373, 'is draining 50': 447364, 'draining 50 90': 258229, '50 90 an': 19598, '90 an acre': 23272, 'an acre from': 55076, 'acre from the': 29207, 'the and revenue': 848718, 'and revenue that': 70488, 'revenue that farmer': 720482, 'that farmer expect': 843842, 'farmer expect to': 299362, 'expect to receive': 290773, 'to receive this': 912936, 'receive this year': 703567, 'receive delivery': 703461, 'delivery package': 234297, 'package and': 633209, 'shopping anyway': 762047, 'anyway during': 81006, 'is it safe': 449057, 'safe to receive': 730057, 'to receive delivery': 912914, 'receive delivery package': 703462, 'delivery package and': 234298, 'package and should': 633216, 'and should you': 71601, 'should you be': 766671, 'you be online': 1017393, 'online shopping anyway': 609030, 'shopping anyway during': 762048, 'anyway during the': 81007, 'the crisis via': 852471, 'abilene': 24369, 'abilene bar': 24370, 'bar feel': 110704, 'feel economic': 302611, 'abilene bar feel': 24371, 'bar feel economic': 110705, 'feel economic impact': 302612, 'messing': 529545, 'hidradenitissuppurativa': 394888, 'really hoping': 702315, 'hoping once': 403934, 'once april': 605595, '1st come': 12723, 'come around': 187222, 'around all': 93178, 'government or': 360425, 'just whoever': 470299, 'whoever owns': 990103, 'owns the': 632638, 'and tp': 74331, 'tp just': 927865, 'were messing': 979877, 'messing with': 529550, 'with tired': 1001777, 'stress it': 813350, 'my skin': 550123, 'skin lol': 773070, 'lol hidradenitissuppurativa': 500912, 'really hoping once': 702316, 'hoping once april': 403935, 'once april 1st': 605596, 'april 1st come': 83440, '1st come around': 12724, 'come around all': 187223, 'around all these': 93181, 'in the government': 429238, 'the government or': 856575, 'government or just': 360428, 'or just whoever': 615897, 'just whoever owns': 470300, 'whoever owns the': 990104, 'owns the most': 632640, 'most stock in': 542771, 'stock in hand': 802266, 'in hand sanitizer': 423526, 'sanitizer and tp': 734448, 'and tp just': 74334, 'tp just say': 927867, 'just say they': 469703, 'they were messing': 883786, 'were messing with': 979878, 'messing with tired': 529552, 'with tired of': 1001778, 'tired of all': 899039, 'all the stress': 44930, 'the stress it': 868273, 'stress it not': 813351, 'it not good': 459882, 'for my skin': 323749, 'my skin lol': 550124, 'skin lol hidradenitissuppurativa': 773071, 'discrepancy': 244744, 'oman': 598824, 'muscat': 546223, 'pacp': 633753, 'noticed any': 573424, 'any discrepancy': 79121, 'discrepancy in': 244745, 'across oman': 29414, 'oman since': 598845, 'crisis oman': 217804, 'oman muscat': 598839, 'muscat pacp': 546224, 'you noticed any': 1020146, 'noticed any discrepancy': 573425, 'any discrepancy in': 79122, 'discrepancy in the': 244746, 'in the price': 429471, 'of good in': 584224, 'in shop across': 427891, 'shop across oman': 759798, 'across oman since': 29415, 'oman since the': 598846, 'the crisis oman': 852420, 'crisis oman muscat': 217805, 'oman muscat pacp': 598840, 'ren': 710921, 'trip my': 932112, 'wife make': 991948, 'my shoe': 550040, 'shoe outside': 759680, 'outside and': 629365, 'go directly': 353467, 'shower this': 767391, 'shift the': 758413, 'think movie': 885407, 'movie nope': 544034, 'nope concert': 566897, 'concert not': 193273, 'are disney': 85862, 'disney annual': 246031, 'annual pas': 77415, 'pas holder': 643108, 'holder not': 400078, 'not ren': 571305, 'after supermarket trip': 36262, 'supermarket trip my': 823545, 'trip my wife': 932113, 'my wife make': 550595, 'wife make me': 991949, 'make me take': 510147, 'take off my': 832394, 'off my shoe': 593987, 'my shoe outside': 550042, 'shoe outside and': 759681, 'outside and go': 629367, 'and go directly': 63772, 'go directly to': 353468, 'to the shower': 917064, 'the shower this': 867118, 'shower this is': 767392, 'going to shift': 355702, 'to shift the': 914416, 'shift the way': 758420, 'way people think': 969812, 'people think movie': 649833, 'think movie nope': 885408, 'movie nope concert': 544035, 'nope concert not': 566898, 'concert not this': 193274, 'not this year': 572104, 'year we are': 1015084, 'we are disney': 970530, 'are disney annual': 85863, 'disney annual pas': 246032, 'annual pas holder': 77416, 'pas holder not': 643110, 'holder not ren': 400079, 'shopper told': 761782, 'buy responsibly': 149124, 'responsibly like': 716103, 'we normally': 972590, 'normally have': 567505, 've not': 953393, 'not and': 568203, 'cannot for': 161856, 'matter increased': 520582, 'increased that': 433487, 'that problem': 845851, 'problem local': 679593, 'now running': 575715, 'on milk': 602122, 'is stupid': 452407, 'shopper told to': 761783, 'to buy responsibly': 902291, 'buy responsibly like': 149126, 'responsibly like we': 716104, 'like we normally': 491778, 'we normally have': 972592, 'normally have enough': 567506, 'have enough for': 380448, 'enough for week': 277444, 'for week in': 327719, 'week in the': 976386, 'the house we': 857648, 'house we ve': 406673, 'we ve not': 973690, 've not and': 953394, 'not and cannot': 568204, 'and cannot for': 59512, 'cannot for that': 161857, 'that matter increased': 845066, 'matter increased that': 520583, 'increased that problem': 433488, 'that problem local': 845852, 'problem local supermarket': 679594, 'local supermarket is': 498544, 'supermarket is now': 821108, 'is now running': 450329, 'now running low': 575716, 'low on milk': 505463, 'on milk this': 602126, 'milk this is': 531861, 'this is stupid': 888414, 'mnfrg': 534825, 'distrbtn': 247922, 'gutka': 368862, 'will maharashtra': 994066, 'maharashtra govt': 508478, 'govt show': 361285, 'show gut': 766961, 'gut to': 368856, 'ban mnfrg': 109220, 'mnfrg distrbtn': 534826, 'distrbtn of': 247923, 'of liquor': 585879, 'liquor gutka': 494172, 'gutka tobacco': 368865, 'tobacco product': 919079, 'product saliva': 681589, 'saliva spit': 732737, 'spit from': 789552, 'from gutka': 335711, 'gutka consuming': 368863, 'consuming people': 199806, 'major carrier': 509253, 'carrier of': 165000, 'now will maharashtra': 576429, 'will maharashtra govt': 994067, 'maharashtra govt show': 508480, 'govt show gut': 361286, 'show gut to': 766962, 'gut to ban': 368857, 'to ban mnfrg': 901021, 'ban mnfrg distrbtn': 109221, 'mnfrg distrbtn of': 534827, 'distrbtn of liquor': 247924, 'of liquor gutka': 585880, 'liquor gutka tobacco': 494173, 'gutka tobacco product': 368866, 'tobacco product saliva': 919082, 'product saliva spit': 681590, 'saliva spit from': 732739, 'spit from gutka': 789553, 'from gutka consuming': 335712, 'gutka consuming people': 368864, 'consuming people can': 199807, 'can be major': 157644, 'be major carrier': 115880, 'major carrier of': 509255, 'carrier of co': 165001, 'earner': 264839, 'precious': 669459, 'savetheday': 737822, 'not high': 569961, 'high earner': 395053, 'earner but': 264842, 'what available': 981080, 'please start': 660537, 'start wearing': 794635, 'glove your': 353056, 'are precious': 89181, 'precious boss': 669464, 'boss take': 135753, 'note coronacrisis': 572714, 'supermarket savetheday': 822318, 'supermarket worker they': 824096, 'worker they re': 1007969, 're not high': 699096, 'not high earner': 569962, 'high earner but': 395054, 'earner but they': 264843, 'they re still': 883132, 're still there': 699601, 'still there to': 801294, 'there to make': 879188, 'sure people can': 827653, 'people can get': 647391, 'can get what': 158470, 'get what available': 348620, 'what available please': 981082, 'available please start': 104561, 'please start wearing': 660541, 'start wearing mask': 794636, 'and glove your': 63751, 'glove your life': 353057, 'your life are': 1024628, 'life are precious': 488502, 'are precious boss': 89182, 'precious boss take': 669465, 'boss take note': 135754, 'take note coronacrisis': 832372, 'note coronacrisis supermarket': 572715, 'coronacrisis supermarket savetheday': 204803, 'betterthanpants': 128627, 'funnyshirt': 341830, 'you didn': 1018203, 'didn hoard': 241107, 'shirt toiletpaper': 759016, 'toiletpaper betterthanpants': 921805, 'betterthanpants funnyshirt': 128628, 'if you didn': 415420, 'you didn hoard': 1018209, 'didn hoard toilet': 241109, 'hoard toilet paper': 398893, 'paper you may': 641131, 'may need this': 521358, 'need this shirt': 555822, 'this shirt toiletpaper': 890071, 'shirt toiletpaper betterthanpants': 759017, 'toiletpaper betterthanpants funnyshirt': 921806, 'racismisavirus': 695299, 'happening especially': 377353, 'also frustrated': 48245, 'frustrated that': 339229, 'just watched': 470243, 'watched and': 968650, 'let it': 486823, 'happen like': 377114, 'like there': 491420, 'wrong toronto': 1013137, 'toronto racismisavirus': 925981, 'be happening especially': 115136, 'happening especially in': 377354, 'especially in canada': 280523, 'in canada and': 421183, 'canada and also': 160354, 'and also frustrated': 57952, 'also frustrated that': 48246, 'frustrated that people': 339230, 'that people just': 845698, 'people just watched': 648566, 'just watched and': 470244, 'watched and let': 968651, 'and let it': 66107, 'let it happen': 486827, 'it happen like': 458463, 'happen like there': 377115, 'like there nothing': 491422, 'nothing wrong toronto': 573235, 'wrong toronto racismisavirus': 1013138, 'menstrual': 528615, 'woman your': 1003714, 'your symptom': 1026095, 'symptom and': 830805, 'post viral': 666387, 'viral recovery': 957624, 'recovery may': 705359, 'your menstrual': 1024811, 'menstrual cycle': 528616, 'cycle can': 224044, 'can confirm': 157956, 'confirm the': 194107, 'the experience': 854720, 'experience by': 291329, 'day mentioned': 227974, 'mentioned in': 528830, 'this study': 890386, 'study to': 814973, 'woman your symptom': 1003715, 'your symptom and': 1026096, 'symptom and post': 830812, 'and post viral': 69233, 'post viral recovery': 666388, 'viral recovery may': 957625, 'recovery may be': 705360, 'may be affected': 520942, 'affected by your': 34332, 'by your menstrual': 154792, 'your menstrual cycle': 1024812, 'menstrual cycle can': 528617, 'cycle can confirm': 224045, 'can confirm the': 157958, 'confirm the experience': 194108, 'the experience by': 854721, 'experience by day': 291331, 'by day mentioned': 152302, 'day mentioned in': 227975, 'mentioned in this': 528831, 'in this study': 430020, 'this study to': 890387, 'goodwill': 358099, 'fairness': 296452, 'today published': 920084, 'right regarding': 722249, 'general advice': 345274, 'condition is': 193472, 'is contact': 446800, 'the provider': 864721, 'provider for': 686717, 'for refund': 325056, 'refund voucher': 706981, 'voucher acc': 960626, 'acc asking': 27796, 'for goodwill': 321949, 'goodwill and': 358103, 'and fairness': 62621, 'fairness read': 296453, 'the ha today': 857026, 'ha today published': 372328, 'today published information': 920085, 'published information on': 688660, 'consumer right regarding': 198826, 'right regarding the': 722251, 'regarding the general': 707289, 'the general advice': 856203, 'general advice for': 345275, 'advice for people': 33372, 'people with underlying': 650478, 'health condition is': 386292, 'condition is contact': 193473, 'is contact the': 446801, 'contact the provider': 200227, 'the provider for': 864722, 'provider for refund': 686720, 'for refund voucher': 325064, 'refund voucher acc': 706982, 'voucher acc asking': 960627, 'acc asking for': 27797, 'asking for goodwill': 95988, 'for goodwill and': 321950, 'goodwill and fairness': 358104, 'and fairness read': 62622, 'caption': 162926, 'posting photo': 666679, 'with caption': 997536, 'caption about': 162927, 'buying fuel': 150395, 'fuel more': 340204, 'buying stop': 151091, 'it thing': 461634, 'difficult we': 242355, 'use social': 949593, 'make each': 509866, 'other laugh': 620470, 'laugh not': 481745, 'panic ll': 638282, 'started enjoy': 794730, 'enjoy this': 277202, 'this meme': 888830, 'posting photo of': 666680, 'supermarket with caption': 823912, 'with caption about': 997537, 'caption about panic': 162928, 'panic buying fuel': 637746, 'buying fuel more': 150396, 'fuel more panic': 340206, 'panic buying stop': 637905, 'buying stop doing': 151093, 'doing it thing': 252496, 'it thing are': 461635, 'to be difficult': 901204, 'be difficult we': 114460, 'difficult we should': 242356, 'we should use': 973302, 'should use social': 766618, 'use social medium': 949595, 'medium to make': 527328, 'to make each': 909655, 'make each other': 509868, 'each other laugh': 264190, 'other laugh not': 620471, 'laugh not panic': 481746, 'not panic ll': 570919, 'panic ll get': 638283, 'll get started': 496792, 'get started enjoy': 348103, 'started enjoy this': 794731, 'enjoy this meme': 277204, 'owed': 631831, 'will eventually': 993336, 'eventually go': 285154, 'go away': 353326, 'away but': 105798, 'over 14': 629782, '14 trillion': 3538, 'trillion in': 931985, 'debt owed': 230531, 'owed to': 631834, 'the treasury': 869938, 'the will eventually': 871572, 'will eventually go': 993339, 'eventually go away': 285155, 'go away but': 353327, 'away but there': 105801, 'but there will': 147475, 'still be over': 800263, 'be over 14': 116297, 'over 14 trillion': 629785, '14 trillion in': 3539, 'trillion in consumer': 931986, 'in consumer debt': 421691, 'consumer debt owed': 197086, 'debt owed to': 230532, 'owed to the': 631836, 'to the treasury': 917140, 'affiliate': 34607, 'amazon ha': 50967, 'ha significantly': 371939, 'significantly cut': 769562, 'google ad': 358132, 'ad due': 31091, 'trend covid': 931313, 'spike over': 789319, 'over other': 630464, 'product it': 681332, 'these trend': 880880, 'trend may': 931389, 'may affect': 520890, 'affect affiliate': 34105, 'affiliate marketing': 34620, 'amazon ha significantly': 50971, 'ha significantly cut': 371941, 'significantly cut spending': 769563, 'cut spending on': 223549, 'spending on google': 788931, 'on google ad': 601153, 'google ad due': 358133, 'ad due to': 31092, 'due to change': 261725, 'to change in': 902607, 'in consumer trend': 421725, 'consumer trend covid': 199370, 'trend covid 19': 931314, '19 ha made': 7363, 'ha made the': 371217, 'made the purchase': 507996, 'the purchase of': 864917, 'purchase of household': 689581, 'household item and': 406862, 'item and medical': 463060, 'and medical supply': 66885, 'medical supply to': 526463, 'supply to spike': 826028, 'to spike over': 915010, 'spike over other': 789320, 'over other product': 630465, 'other product it': 620773, 'product it is': 681335, 'is possible that': 450951, 'possible that these': 665810, 'that these trend': 846920, 'these trend may': 880881, 'trend may affect': 931390, 'may affect affiliate': 520891, 'affect affiliate marketing': 34106, 'yourenergyyourvoice': 1026428, 'protect dc': 684812, 'dc resident': 228968, 'resident and': 714244, 'emergency we': 273043, 'to inform': 908384, 'inform dc': 437658, 'dc consumer': 228942, 'and enforce': 62129, 'enforce utility': 276695, 'utility consumer': 951275, 'protection yourenergyyourvoice': 685696, 'support the and': 826861, 'the and in': 848703, 'and in their': 65075, 'in their effort': 429738, 'effort to protect': 269638, 'to protect dc': 912299, 'protect dc resident': 684813, 'dc resident and': 228969, 'resident and business': 714246, 'and business during': 59280, 'health emergency we': 386405, 'emergency we will': 273044, 'continue to inform': 201211, 'to inform dc': 908385, 'inform dc consumer': 437659, 'dc consumer and': 228943, 'consumer and enforce': 196208, 'and enforce utility': 62133, 'enforce utility consumer': 276696, 'utility consumer protection': 951276, 'consumer protection yourenergyyourvoice': 198585, '934': 23534, 'rama': 696331, 'are 934': 84147, '934 case': 23535, 'thailand the': 840107, 'declared an': 231219, 'emergency closing': 272631, 'store office': 809164, 'shopping mall': 763226, 'chicken egg': 175777, 'egg available': 269787, 'big rama': 129952, 'rama supermarket': 696332, 'there are 934': 878058, 'are 934 case': 84148, '934 case of': 23536, 'of in thailand': 585046, 'in thailand the': 428902, 'thailand the government': 840108, 'government ha declared': 360145, 'ha declared an': 370325, 'declared an emergency': 231220, 'an emergency closing': 55670, 'emergency closing store': 272632, 'closing store office': 183763, 'store office and': 809165, 'office and shopping': 595360, 'and shopping mall': 71546, 'shopping mall and': 763227, 'mall and today': 511744, 'and today there': 74228, 'are no chicken': 88245, 'no chicken egg': 563797, 'chicken egg available': 175778, 'egg available at': 269788, 'at the big': 100889, 'the big rama': 849618, 'big rama supermarket': 129953, 'dear we': 229913, 'closed during': 183088, 'and bean': 58776, 'bean which': 118387, 'take two': 832758, 'two month': 937058, 'more every': 539157, 'every bit': 285687, 'is helpful': 448386, 'any contribution': 79064, 'dear we need': 229915, 'your help the': 1024309, 'help the country': 390646, 'country is closed': 210798, 'is closed during': 446576, 'closed during this': 183091, 'up on lot': 945589, 'food and bean': 313183, 'and bean which': 58780, 'bean which will': 118388, 'which will take': 986508, 'will take two': 995085, 'take two month': 832761, 'two month or': 937063, 'month or more': 537935, 'or more every': 616171, 'more every bit': 539158, 'every bit of': 285690, 'bit of help': 131645, 'of help is': 584544, 'help is helpful': 389934, 'is helpful and': 448387, 'helpful and you': 391158, 'can make any': 158923, 'make any contribution': 509703, 'frequent': 332813, 'taskmanagement': 834757, 'from frequent': 335562, 'frequent cleaning': 332816, 'sanitizing to': 736527, 'to keeping': 908885, 'stocked store': 803403, 'store intelligence': 808441, 'intelligence solution': 441007, 'solution can': 782005, 'keep team': 472012, 'member on': 528159, 'on task': 603886, 'task 19': 834662, 'retail retailtech': 718486, 'retailtech technology': 719564, 'technology tech': 836381, 'tech taskmanagement': 836158, 'from frequent cleaning': 335563, 'frequent cleaning and': 332817, 'cleaning and sanitizing': 180899, 'and sanitizing to': 70917, 'sanitizing to keeping': 736528, 'to keeping shelf': 908889, 'shelf stocked store': 757585, 'stocked store intelligence': 803405, 'store intelligence solution': 808443, 'intelligence solution can': 441008, 'solution can help': 782007, 'can help keep': 158629, 'help keep team': 389974, 'keep team member': 472013, 'team member on': 835728, 'member on task': 528162, 'on task 19': 603887, 'task 19 retail': 834663, '19 retail retailtech': 10204, 'retail retailtech technology': 718488, 'retailtech technology tech': 719565, 'technology tech taskmanagement': 836383, 'perlis': 652030, 'kuala': 477858, 'sanglang': 733785, 'grandma': 361903, 'perintahkawalanpergerakan': 651692, 'now already': 573981, 'already at': 47197, 'village perlis': 957364, 'perlis kuala': 652031, 'kuala sanglang': 477861, 'sanglang my': 733786, 'my grandma': 548544, 'grandma opened': 361912, 'opened grocery': 612733, 'earn living': 264789, 'living since': 496450, 'since wa': 770967, 'wa kid': 962485, 'kid that': 474126, 'is situation': 451946, 'situation now': 772406, 'now perintahkawalanpergerakan': 575535, 'now already at': 573982, 'already at my': 47201, 'at my village': 99833, 'my village perlis': 550510, 'village perlis kuala': 957365, 'perlis kuala sanglang': 652032, 'kuala sanglang my': 477862, 'sanglang my grandma': 733787, 'my grandma opened': 548546, 'grandma opened grocery': 361913, 'opened grocery store': 612734, 'store to earn': 810768, 'to earn living': 904836, 'earn living since': 264791, 'living since wa': 496451, 'since wa kid': 770971, 'wa kid that': 962487, 'kid that is': 474127, 'that is situation': 844652, 'is situation now': 451947, 'situation now perintahkawalanpergerakan': 772408, 'hurdle': 411446, 'retail trade': 718800, 'trade in': 928507, 'in milk': 425324, 'milk cheese': 531621, 'cheese butter': 175178, 'butter is': 148153, 'is rising': 451548, 'rising among': 723159, 'but producer': 146850, 'the farm': 854928, 'farm and': 299081, 'other hurdle': 620382, 'retail trade in': 718801, 'trade in milk': 928509, 'in milk cheese': 425325, 'milk cheese butter': 531622, 'cheese butter is': 175180, 'butter is rising': 148154, 'is rising among': 451549, 'rising among many': 723160, 'among many other': 53020, 'many other food': 514430, 'other food during': 620238, 'the pandemic but': 862925, 'pandemic but producer': 635051, 'but producer are': 146851, 'producer are struggling': 680577, 'struggling with lower': 814541, 'lower price at': 505953, 'at the farm': 100942, 'the farm and': 854930, 'farm and other': 299088, 'and other hurdle': 68343, 'glycerin': 353155, 'own hand': 632044, 'work against': 1004720, '19 yes': 12247, 'possible you': 665884, 'use strong': 949615, 'strong alcohol': 813963, 'alcohol base': 40921, 'then add': 876966, 'add some': 31487, 'some aloe': 782279, 'vera or': 954735, 'or glycerin': 615483, 'glycerin via': 353160, 'via staysafe': 956258, 'you make your': 1019767, 'your own hand': 1025143, 'own hand sanitizer': 632047, 'sanitizer that work': 735866, 'that work against': 847647, 'work against virus': 1004725, 'against virus like': 37734, 'virus like covid': 958460, 'covid 19 yes': 214105, '19 yes that': 12250, 'yes that possible': 1015544, 'that possible you': 845792, 'possible you should': 665887, 'you should use': 1021229, 'should use strong': 766619, 'use strong alcohol': 949616, 'strong alcohol base': 813964, 'alcohol base and': 40922, 'base and then': 111435, 'and then add': 73738, 'then add some': 876968, 'add some aloe': 31488, 'some aloe vera': 782280, 'aloe vera or': 46794, 'vera or glycerin': 954736, 'or glycerin via': 615484, 'glycerin via staysafe': 353161, 'perilously': 651684, '19 green': 7281, 'green new': 363687, 'deal the': 229498, 'this facility': 887497, 'facility combined': 295319, 'with growing': 998699, 'growing list': 367211, 'other shuttered': 620910, 'shuttered plant': 768212, 'our industry': 623532, 'pushing our': 690436, 'country perilously': 210955, 'perilously close': 651685, 'the edge': 854048, 'our meat': 623888, 'meat supply': 525763, 'more meat': 539766, 'meat green': 525599, 'covid 19 green': 213166, '19 green new': 7282, 'green new deal': 363688, 'new deal the': 558606, 'deal the closure': 229499, 'closure of this': 183979, 'of this facility': 591971, 'this facility combined': 887498, 'facility combined with': 295320, 'combined with growing': 187145, 'with growing list': 998701, 'growing list of': 367212, 'list of other': 494460, 'of other shuttered': 587374, 'other shuttered plant': 620911, 'shuttered plant across': 768213, 'plant across our': 658610, 'across our industry': 29422, 'our industry is': 623534, 'industry is pushing': 435937, 'is pushing our': 451149, 'pushing our country': 690437, 'our country perilously': 622601, 'country perilously close': 210956, 'perilously close to': 651686, 'close to the': 182918, 'to the edge': 916665, 'the edge in': 854051, 'edge in term': 268512, 'term of our': 838224, 'of our meat': 587510, 'our meat supply': 623889, 'meat supply no': 525765, 'supply no more': 825591, 'no more meat': 564812, 'more meat green': 539768, 'meat green new': 525600, 'q7': 691455, 'jen please': 465062, 'see q7': 745618, 'q7 on': 691456, 'faq in': 298673, 'hi jen please': 394681, 'jen please see': 465063, 'please see q7': 660456, 'see q7 on': 745619, 'q7 on our': 691457, 'on our consumer': 602586, 'consumer faq in': 197448, 'faq in relation': 298674, 'coverage continues': 212343, 'now released': 575667, 'released him': 709041, 'him from': 396607, 'special coverage continues': 787875, 'coverage continues speaks': 212344, 'ha now released': 371402, 'now released him': 575668, 'released him from': 709042, 'him from the': 396608, 'from the hospital': 337746, 'the hospital latest': 857525, 'nebraska': 553891, 'the nebraska': 861369, 'nebraska department': 553898, 'of insurance': 585232, 'insurance on': 440782, 'on scammer': 603328, 'scammer abusing': 740519, 'abusing the': 27723, 'alert from the': 41436, 'from the nebraska': 337798, 'the nebraska department': 861370, 'nebraska department of': 553899, 'department of insurance': 237242, 'of insurance on': 585236, 'insurance on scammer': 440784, 'on scammer abusing': 603329, 'scammer abusing the': 740520, 'abusing the covid': 27724, 'breheny': 139293, 'freemarkets': 332480, 'probs': 679792, 'neoliberal': 557390, 'libertarian': 488039, 'ok according': 597760, 'to breheny': 902009, 'breheny freemarkets': 139294, 'freemarkets no': 332481, 'no probs': 565204, 'probs neoliberal': 679793, 'neoliberal libertarian': 557393, 'libertarian do': 488040, 'not act': 568039, 'act in': 29659, 'public good': 688035, 'this is ok': 888343, 'is ok according': 450443, 'ok according to': 597761, 'according to breheny': 28523, 'to breheny freemarkets': 902010, 'breheny freemarkets no': 139295, 'freemarkets no probs': 332482, 'no probs neoliberal': 565205, 'probs neoliberal libertarian': 679794, 'neoliberal libertarian do': 557394, 'libertarian do not': 488041, 'do not act': 249655, 'not act in': 568040, 'act in the': 29660, 'in the public': 429488, 'the public good': 864813, 'public good for': 688037, 'good for lettuce': 357079, 'invading': 443568, 'phoning': 655093, 'mana': 512371, 'doing an': 252278, 'an amazing': 55264, 'amazing job': 50719, 'experienced this': 291614, 'space invading': 787129, 'invading life': 443571, 'life risking': 489000, 'risking tactic': 724091, 'tactic please': 831710, 'help all': 389316, 'all email': 42671, 'down ve': 257427, 'been phoning': 121660, 'phoning the': 655094, 'the mana': 859988, 'know the majority': 476835, 'majority of other': 509565, 'of other supermarket': 587377, 'other supermarket worker': 621027, 'worker are doing': 1006381, 'are doing an': 85885, 'doing an amazing': 252279, 'an amazing job': 55268, 'amazing job but': 50720, 'job but have': 465709, 'but have experienced': 145870, 'have experienced this': 380524, 'experienced this space': 291615, 'this space invading': 890272, 'space invading life': 787130, 'invading life risking': 443572, 'life risking tactic': 489001, 'risking tactic please': 724092, 'tactic please help': 831711, 'please help all': 660062, 'help all email': 389320, 'all email are': 42672, 'email are down': 272125, 'are down ve': 85984, 'down ve been': 257428, 've been phoning': 952918, 'been phoning the': 121661, 'phoning the store': 655095, 'store for day': 807797, 'for day for': 320570, 'for the mana': 326548, 'skidded': 772938, 'oversupply': 631570, 'price skidded': 676429, 'skidded on': 772939, 'monday after': 536228, 'after negotiation': 35953, 'negotiation to': 556957, 'output were': 629301, 'were delayed': 979503, 'delayed keeping': 232786, 'keeping oversupply': 472513, 'oversupply concern': 631585, 'concern alive': 192908, 'alive while': 41849, 'stock jumped': 802334, 'jumped investor': 467935, 'investor were': 444228, 'were encouraged': 979580, 'encouraged by': 275650, 'by slowdown': 154038, 'related death': 708409, 'death and': 229961, 'price skidded on': 676430, 'skidded on monday': 772940, 'on monday after': 602153, 'monday after negotiation': 536231, 'after negotiation to': 35954, 'negotiation to cut': 556958, 'cut output were': 223475, 'output were delayed': 629302, 'were delayed keeping': 979504, 'delayed keeping oversupply': 232787, 'keeping oversupply concern': 472514, 'oversupply concern alive': 631586, 'concern alive while': 192909, 'alive while stock': 41850, 'while stock jumped': 987327, 'stock jumped investor': 802335, 'jumped investor were': 467936, 'investor were encouraged': 444229, 'were encouraged by': 979581, 'encouraged by slowdown': 275651, 'by slowdown in': 154039, 'slowdown in related': 774450, 'in related death': 427366, 'related death and': 708410, 'death and new': 229967, 'and new case': 67549, 'suo': 818452, 'moto': 543326, 'fauci': 300349, 'than 22': 840202, '22 00': 15149, '00 american': 58, 'american 11': 51761, '00 british': 90, 'british have': 140532, 'died but': 241523, 'but supreme': 147233, 'supreme court': 827431, 'court and': 211970, 'and uk': 74574, 'uk high': 938446, 'high court': 394976, 'court have': 211990, 'have neither': 381567, 'neither taken': 557351, 'taken any': 832946, 'any suo': 79885, 'suo moto': 818453, 'moto nor': 543327, 'nor fired': 566947, 'fired dr': 308167, 'dr fauci': 258011, 'fauci how': 300362, 'how incompetent': 408052, 'incompetent american': 432525, 'american british': 51844, 'british court': 140513, 'court are': 211973, 'not playing': 571038, 'playing any': 659385, 'any role': 79766, 'in fixing': 422924, 'fixing scientific': 309861, 'scientific challenge': 742167, 'challenge may': 171501, 'be busy': 113927, 'busy in': 144914, 'in legal': 424669, 'legal issue': 485878, 'more than 22': 540554, 'than 22 00': 840203, '22 00 american': 15150, '00 american 11': 59, 'american 11 00': 51762, '11 00 british': 2431, '00 british have': 91, 'british have died': 140533, 'have died but': 380264, 'died but supreme': 241525, 'but supreme court': 147234, 'supreme court and': 827432, 'court and uk': 211972, 'and uk high': 74575, 'uk high court': 938447, 'high court have': 394978, 'court have neither': 211991, 'have neither taken': 381568, 'neither taken any': 557352, 'taken any suo': 832948, 'any suo moto': 79886, 'suo moto nor': 818454, 'moto nor fired': 543328, 'nor fired dr': 566948, 'fired dr fauci': 308168, 'dr fauci how': 258018, 'fauci how incompetent': 300363, 'how incompetent american': 408053, 'incompetent american british': 432526, 'american british court': 51845, 'british court are': 140514, 'court are not': 211975, 'are not playing': 88437, 'not playing any': 571039, 'playing any role': 659386, 'any role in': 79767, 'role in fixing': 725093, 'in fixing scientific': 422925, 'fixing scientific challenge': 309862, 'scientific challenge may': 742168, 'challenge may be': 171502, 'may be busy': 520954, 'be busy in': 113928, 'busy in legal': 144915, 'in legal issue': 424671, 'il': 416067, 'wls': 1003270, 'chicago il': 175673, 'il wls': 416076, 'wls what': 1003271, 'expect gas': 290648, 'plummet during': 661272, 'more energy': 539132, 'energy news': 276512, 'chicago il wls': 175674, 'il wls what': 416077, 'wls what to': 1003272, 'to expect gas': 905446, 'expect gas price': 290649, 'gas price plummet': 344010, 'price plummet during': 675902, 'plummet during covid': 661273, '19 pandemic more': 9395, 'pandemic more energy': 635976, 'more energy news': 539133, 'twat': 936252, 'have tweet': 383435, 'how human': 408018, 'human take': 410631, 'other instead': 620431, 'greedy stupid': 363618, 'stupid asshole': 815352, 'asshole who': 96588, 'who think': 989771, 'own selfishness': 632198, 'selfishness twat': 748385, 'can have tweet': 158594, 'have tweet about': 383436, 'tweet about how': 936326, 'about how human': 25445, 'how human take': 408020, 'human take care': 410632, 'each other instead': 264186, 'other instead of': 620432, 'instead of these': 440329, 'these greedy stupid': 880077, 'greedy stupid asshole': 363619, 'stupid asshole who': 815353, 'asshole who think': 96590, 'who think it': 989773, 'think it okay': 885346, 'okay to empty': 598023, 'to empty supermarket': 905036, 'shelf for their': 757097, 'their own selfishness': 874202, 'own selfishness twat': 632199, 'one fallout': 606277, 'fallout is': 297384, 'sure due': 827527, 'pandemic thousand': 636754, 'flat in': 310076, 'in prime': 426991, 'prime location': 678123, 'location in': 498919, 'mumbai and': 545991, 'other metro': 620541, 'metro will': 529953, 'be up': 117884, 'for re': 324971, 're sale': 699418, 'at bargain': 98087, 'bargain bottom': 111049, 'is once': 450496, 'once in': 605653, 'in lifetime': 424717, 'lifetime opportunity': 489404, 'one fallout is': 606278, 'fallout is for': 297385, 'is for sure': 447892, 'for sure due': 326073, 'sure due to': 827528, 'the corona pandemic': 851770, 'corona pandemic thousand': 204097, 'pandemic thousand of': 636755, 'thousand of flat': 893439, 'of flat in': 583582, 'flat in prime': 310078, 'in prime location': 426992, 'prime location in': 678124, 'location in mumbai': 498924, 'in mumbai and': 425511, 'mumbai and other': 545992, 'and other metro': 68365, 'other metro will': 620543, 'metro will be': 529954, 'will be up': 992749, 'be up for': 117886, 'up for re': 944957, 'for re sale': 324974, 're sale at': 699419, 'sale at bargain': 732086, 'at bargain bottom': 98088, 'bargain bottom price': 111050, 'bottom price this': 136440, 'this is once': 888345, 'is once in': 450498, 'once in lifetime': 605654, 'in lifetime opportunity': 424720, 'globalism': 352331, 'togetherness': 921076, 'shop raising': 760698, 'essential prof': 281430, 'prof that': 682373, 'that globalism': 844020, 'globalism failed': 352334, 'failed there': 296166, 'no togetherness': 565752, 'togetherness we': 921080, 'not community': 568810, 'community this': 190161, 'virus would': 959065, 'would bring': 1011692, 'bring together': 140105, 'together 100': 920659, '100 year': 2138, 'it keeping': 459266, 'keeping apart': 472381, 'togetherness fightcovid19': 921078, 'your local shop': 1024718, 'local shop raising': 498414, 'shop raising the': 760699, 'raising the price': 696146, 'of essential prof': 583184, 'essential prof that': 281431, 'prof that globalism': 682374, 'that globalism failed': 844021, 'globalism failed there': 352335, 'failed there is': 296167, 'is no togetherness': 449984, 'no togetherness we': 565754, 'togetherness we are': 921081, 'are not community': 88342, 'not community this': 568811, 'community this virus': 190164, 'this virus would': 891041, 'virus would bring': 959066, 'would bring together': 1011698, 'bring together 100': 140106, 'together 100 year': 920660, '100 year ago': 2139, 'ago and today': 38345, 'and today it': 74224, 'today it keeping': 919742, 'it keeping apart': 459267, 'keeping apart and': 472382, 'no togetherness fightcovid19': 565753, 'counterbalanced': 210289, 'indeed but': 433982, 'of travel': 592430, 'for fx': 321831, 'fx demand': 342590, 'demand normal': 235927, 'normal yr': 567428, 'yr will': 1027051, 'be counterbalanced': 114257, 'counterbalanced by': 210290, 'consumer outlook': 198307, 'outlook and': 629132, 'it will indeed': 462405, 'will indeed but': 993834, 'indeed but in': 433983, 'light of travel': 489566, 'of travel restriction': 592432, 'lockdown we have': 500120, 'have to also': 383157, 'to also temper': 900380, 'expectation for fx': 290819, 'for fx demand': 321832, 'fx demand normal': 342591, 'demand normal yr': 235928, 'normal yr will': 567429, 'yr will be': 1027052, 'will be counterbalanced': 992409, 'be counterbalanced by': 114258, 'counterbalanced by weaker': 210291, 'weaker consumer outlook': 974099, 'consumer outlook and': 198308, 'outlook and broad': 629133, 'battleground': 112855, 'the battleground': 849355, 'battleground in': 112856, 'are first': 86584, 'first the': 309056, 'hospital then': 404680, 'the frozen': 855906, 'aisle via': 40413, 'the battleground in': 849356, 'battleground in the': 112857, 'against this pandemic': 37700, 'this pandemic are': 889369, 'pandemic are first': 634943, 'are first the': 86586, 'first the hospital': 309058, 'the hospital then': 857538, 'hospital then the': 404681, 'then the frozen': 877614, 'the frozen food': 855907, 'frozen food aisle': 338968, 'food aisle via': 313079, 'blitz': 132737, 'brexiteers': 139542, 'stiff': 800129, 'tragic where': 929202, 'the blitz': 849765, 'blitz spirit': 132740, 'spirit that': 789507, 'the brexiteers': 849985, 'brexiteers were': 139545, 'invoke in': 444306, 'crisis visit': 218323, 'visit developing': 959232, 'developing country': 239771, 'country without': 211260, 'without panic': 1002817, 'service store': 752871, 'remain fully': 709750, 'stocked despite': 803301, 'despite case': 238687, 'case the': 166053, 'the famous': 854911, 'famous british': 298453, 'british stiff': 140600, 'stiff upper': 800130, 'upper lip': 947692, 'lip should': 494052, 'should now': 766273, 'be changed': 114049, 'tragic where is': 929203, 'is the blitz': 452741, 'the blitz spirit': 849766, 'blitz spirit that': 132742, 'spirit that the': 789509, 'that the brexiteers': 846671, 'the brexiteers were': 849986, 'brexiteers were going': 139546, 'going to invoke': 355629, 'to invoke in': 908498, 'invoke in the': 444307, 'the crisis visit': 852472, 'crisis visit developing': 218324, 'visit developing country': 959233, 'developing country without': 239779, 'country without panic': 211261, 'without panic shop': 1002820, 'panic shop and': 638541, 'shop and service': 759865, 'and service store': 71317, 'service store remain': 752873, 'store remain fully': 809797, 'remain fully stocked': 709752, 'fully stocked despite': 341087, 'stocked despite case': 803302, 'despite case the': 238688, 'case the famous': 166054, 'the famous british': 854912, 'famous british stiff': 298454, 'british stiff upper': 140601, 'stiff upper lip': 800131, 'upper lip should': 947695, 'lip should now': 494053, 'should now be': 766274, 'now be changed': 574194, 'be changed to': 114053, 'paper one': 640537, 'only effective': 610381, 'effective for': 269249, 'for 45': 318845, 'be put': 116639, 'in bin': 420836, 'bin on': 131028, 'out ultimately': 627739, 'ultimately face': 939139, 'don offer': 253781, 'offer 100': 594497, '100 protection': 2054, 'protection the': 685644, 'virus can': 958030, 'can enter': 158234, 'enter through': 278325, 'the eye': 854784, 'eye europe': 294042, 'europe uk': 283522, 'the paper one': 863263, 'paper one are': 640538, 'one are only': 605945, 'are only effective': 88765, 'only effective for': 610382, 'effective for 45': 269250, 'for 45 minute': 318847, '45 minute and': 19116, 'minute and should': 533729, 'should be put': 765704, 'be put in': 116641, 'put in bin': 690613, 'in bin on': 420838, 'bin on the': 131030, 'way out ultimately': 969797, 'out ultimately face': 627740, 'ultimately face mask': 939140, 'face mask don': 294535, 'mask don offer': 518590, 'don offer 100': 253782, 'offer 100 protection': 594498, '100 protection the': 2055, 'protection the virus': 685648, 'the virus can': 870809, 'virus can enter': 958032, 'can enter through': 158240, 'enter through the': 278327, 'through the eye': 894734, 'the eye europe': 854787, 'eye europe uk': 294043, 'europe uk supermarket': 283523, 'cahfsweeklyupdate': 155186, 'impacting agriculture': 418175, 'agriculture in': 38984, 'midwest the': 530833, 'agricultural product': 38910, 'product ha': 681238, 'ha fallen': 370585, 'fallen due': 297149, 'of downturn': 582805, 'and recession': 70044, 'recession lower': 704321, 'lower demand': 505830, 'demand there': 236368, 'be lower': 115843, 'product consumer': 681076, 'consumer eat': 197276, 'restaurant cahfsweeklyupdate': 716349, 'is impacting agriculture': 448691, 'impacting agriculture in': 418176, 'agriculture in the': 38985, 'in the midwest': 429360, 'the midwest the': 860585, 'midwest the future': 530834, 'future of agricultural': 342387, 'of agricultural product': 579840, 'agricultural product ha': 38911, 'product ha fallen': 681239, 'ha fallen due': 370591, 'fallen due to': 297150, 'fear of downturn': 301229, 'of downturn and': 582806, 'downturn and recession': 257788, 'and recession lower': 70049, 'recession lower demand': 704322, 'lower demand there': 505839, 'demand there may': 236369, 'may be lower': 521004, 'be lower demand': 115846, 'lower demand for': 505834, 'for some food': 325741, 'some food product': 782871, 'food product consumer': 316017, 'product consumer eat': 681078, 'consumer eat at': 197277, 'eat at home': 265855, 'of in restaurant': 585040, 'in restaurant cahfsweeklyupdate': 427427, 'fantasygrainmarketleague': 298633, 'yield': 1016357, 'with sport': 1000922, 'sport being': 789903, 'many market': 514264, 'market struggle': 517139, 'struggle right': 814370, 'mention we': 528803, 'about putting': 26031, 'putting out': 691195, 'out fantasygrainmarketleague': 626055, 'fantasygrainmarketleague with': 298634, 'with perfect': 1000183, 'perfect weather': 651367, 'weather high': 974876, 'high yield': 395528, 'yield strong': 1016377, 'strong demand': 814009, 'price thought': 676935, 'with sport being': 1000923, 'sport being shut': 789904, 'shut down and': 767802, 'down and so': 256514, 'so many market': 777674, 'many market struggle': 514266, 'market struggle right': 517141, 'struggle right now': 814371, 'now not to': 575379, 'to mention we': 910096, 'mention we re': 528804, 'we re thinking': 972988, 'thinking about putting': 885852, 'about putting out': 26032, 'putting out fantasygrainmarketleague': 691196, 'out fantasygrainmarketleague with': 626056, 'fantasygrainmarketleague with perfect': 298635, 'with perfect weather': 1000184, 'perfect weather high': 651368, 'weather high yield': 974877, 'high yield strong': 395529, 'yield strong demand': 1016378, 'strong demand and': 814010, 'demand and high': 234972, 'and high price': 64556, 'high price thought': 395285, 'thisisamess': 891640, 'twitter my': 936691, 'my 84': 547197, '84 year': 22882, 'grandfather take': 361895, 'take his': 832180, 'his also': 397187, 'also older': 48609, 'older friend': 598604, 'go can': 353403, 'you healthy': 1019174, 'healthy responsibly': 387747, 'responsibly isolating': 716101, 'isolating young': 455173, 'take part': 832483, 'offer walk': 594879, 'walk etc': 964774, 'etc take': 282781, 'other cleveland': 619954, 'cleveland thisisamess': 181855, 'twitter my 84': 936692, 'my 84 year': 547199, '84 year old': 22883, 'old grandfather take': 598273, 'grandfather take his': 361896, 'take his also': 832181, 'his also older': 397188, 'also older friend': 48610, 'older friend to': 598605, 'friend to work': 333852, 'store because she': 806686, 'to go can': 906782, 'go can all': 353404, 'can all of': 157430, 'of you healthy': 593390, 'you healthy responsibly': 1019176, 'healthy responsibly isolating': 387748, 'responsibly isolating young': 716102, 'isolating young people': 455175, 'young people take': 1022649, 'people take part': 649720, 'take part in': 832484, 'part in and': 642295, 'in and others': 420380, 'and others to': 68465, 'others to offer': 621732, 'to offer walk': 910858, 'offer walk etc': 594880, 'walk etc take': 964775, 'etc take care': 282782, 'each other cleveland': 264164, 'other cleveland thisisamess': 619955, 'undergoing': 940436, 'after undergoing': 36467, 'undergoing temperature': 940441, 'temperature test': 837405, 'test glove': 839010, 'regular doctor': 707766, 'appointment then': 82691, 'left my': 485557, 'law believe': 482230, 'believe thank': 126332, 'after undergoing temperature': 36468, 'undergoing temperature test': 940442, 'temperature test glove': 837406, 'test glove and': 839011, 'mask for regular': 518686, 'for regular doctor': 325072, 'regular doctor appointment': 707767, 'doctor appointment then': 250834, 'appointment then go': 82692, 'then go to': 877210, 'there wa nothing': 879257, 'wa nothing left': 962784, 'nothing left my': 573085, 'left my in': 485562, 'my in law': 548834, 'in law believe': 424631, 'law believe thank': 482231, 'believe thank god': 126333, 'financialhealth': 306643, 'fcac': 300741, '19 managing': 8534, 'managing financial': 512870, 'financial health': 306436, 'time financial': 896655, 'financial consumer': 306358, 'consumer agency': 196116, 'agency of': 38047, 'canada financialhealth': 160432, 'financialhealth fcac': 306644, 'covid 19 managing': 213397, '19 managing financial': 8535, 'managing financial health': 512871, 'financial health in': 306438, 'health in challenging': 386521, 'challenging time financial': 171636, 'time financial consumer': 896656, 'financial consumer agency': 306359, 'consumer agency of': 196117, 'agency of canada': 38048, 'of canada financialhealth': 581079, 'canada financialhealth fcac': 160433, 'greek gov': 363645, 'gov announces': 359537, 'announces change': 77240, 'hour no': 405780, 'more sunday': 540492, 'sunday opening': 818248, 'greek gov announces': 363646, 'gov announces change': 359538, 'announces change to': 77241, 'change to supermarket': 172364, 'to supermarket hour': 915800, 'supermarket hour no': 820803, 'hour no more': 405783, 'no more sunday': 564820, 'more sunday opening': 540493, 'facilitate': 295255, 'group this': 366925, 'go hard': 353637, 'hard on': 377980, 'shopping africa': 761902, 'africa need': 35110, 'to facilitate': 905585, 'facilitate commerce': 295258, 'commerce during': 188547, 'period show': 651878, 'and show': 71606, 'show out': 767087, 'group this is': 366926, 'to go hard': 906804, 'go hard on': 353638, 'hard on online': 377983, 'online shopping africa': 609017, 'shopping africa need': 761903, 'africa need you': 35112, 'you to facilitate': 1021774, 'to facilitate commerce': 905588, 'facilitate commerce during': 295259, 'commerce during this': 188548, '19 period show': 9650, 'period show up': 651879, 'show up and': 767252, 'up and show': 944372, 'and show out': 71615, 'mammal': 511946, 'right about': 721730, 'about limiting': 25647, 'customer inside': 222520, 'inside grocery': 439270, 'the transfer': 869898, 'the from': 855830, 'from human': 335965, 'human back': 410427, 'other mammal': 620500, 'mammal right': 511947, 'the thief': 869442, 'thief too': 884014, 'wa right about': 963108, 'right about limiting': 721731, 'about limiting the': 25648, 'of customer inside': 582275, 'customer inside grocery': 222521, 'inside grocery store': 439272, 'store wa right': 811122, 'right about the': 721733, 'about the transfer': 26543, 'the transfer of': 869900, 'transfer of the': 929523, 'of the from': 591044, 'the from human': 855831, 'from human back': 335966, 'human back to': 410428, 'back to other': 107385, 'to other mammal': 911116, 'other mammal right': 620501, 'mammal right about': 511948, 'about the thief': 26539, 'the thief too': 869444, 'to friend': 906255, 'who supermarket': 989710, 'manager in': 512731, 'uk today': 938831, 'today people': 920029, 'queuing 20': 694190, '20 deep': 13028, 'deep before': 231845, 'stripping it': 813903, 'it bare': 456702, 'bare within': 110984, 'few hour': 303864, 'hour every': 405576, 'day what': 228712, 'people moron': 648790, 'moron panicbuying': 541620, 'spoke to friend': 789727, 'to friend who': 906257, 'friend who supermarket': 333906, 'who supermarket manager': 989711, 'supermarket manager in': 821454, 'manager in the': 512736, 'the uk today': 870295, 'uk today people': 938832, 'today people are': 920030, 'are queuing 20': 89390, 'queuing 20 deep': 694191, '20 deep before': 13029, 'deep before the': 231846, 'before the shop': 123186, 'the shop open': 867018, 'shop open and': 760603, 'open and stripping': 612082, 'and stripping it': 72582, 'stripping it bare': 813904, 'it bare within': 456703, 'bare within few': 110985, 'within few hour': 1002353, 'few hour every': 303866, 'hour every single': 405578, 'single day what': 771283, 'day what the': 228717, 'hell is wrong': 389029, 'wrong with these': 1013166, 'with these people': 1001651, 'these people moron': 880452, 'people moron panicbuying': 648791, 'gonna die': 356506, 'the symptom': 869076, 'symptom fever': 830844, 'fever and': 303647, 'and cough': 60603, 'cough what': 208582, 'do buy': 249162, 'are we all': 91557, 'we all gonna': 970330, 'all gonna die': 42968, 'gonna die from': 356507, 'from coronavirus what': 335025, 'coronavirus what are': 207060, 'are the symptom': 90917, 'the symptom fever': 869078, 'symptom fever and': 830845, 'fever and cough': 303650, 'and cough what': 60606, 'cough what should': 208583, 'what should we': 982188, 'should we do': 766645, 'we do buy': 971328, 'do buy all': 249163, '299': 16523, '2020 test': 14627, 'for completed': 320218, 'completed 288': 192194, '288 confirmed': 16445, 'case 299': 165587, '299 death': 16526, 'death key': 230104, 'key concern': 473254, 'concern testing': 193103, 'testing capacity': 839463, 'capacity protective': 162564, 'equipment for': 279724, 'worker commodity': 1006674, 'price risk': 676257, 'risk communication': 723464, 'communication amp': 189574, 'amp rumour': 54416, 'rumour management': 727520, 'of april 2020': 580323, 'april 2020 test': 83475, '2020 test for': 14628, 'test for completed': 838997, 'for completed 288': 320219, 'completed 288 confirmed': 192195, '288 confirmed case': 16446, 'confirmed case 299': 194135, 'case 299 death': 165588, '299 death key': 16527, 'death key concern': 230105, 'key concern testing': 473255, 'concern testing capacity': 193104, 'testing capacity protective': 839465, 'capacity protective equipment': 162565, 'protective equipment for': 685725, 'equipment for frontline': 279726, 'frontline worker commodity': 338861, 'worker commodity price': 1006675, 'commodity price risk': 189285, 'price risk communication': 676258, 'risk communication amp': 723465, 'communication amp rumour': 189575, 'amp rumour management': 54417, 'cua': 220141, 'the catholic': 850531, 'catholic university': 167306, 'university community': 942419, 'community thanks': 190149, '19 cua': 6375, 'cua food': 220142, 'now without': 576460, 'without work': 1003055, 'work join': 1005398, 'on provide': 602987, 'of the catholic': 590853, 'the catholic university': 850532, 'catholic university community': 167308, 'university community thanks': 942421, 'community thanks to': 190150, 'covid 19 cua': 212895, '19 cua food': 6376, 'cua food service': 220143, 'service worker are': 753087, 'are now without': 88617, 'now without work': 576462, 'without work join': 1003056, 'work join in': 1005399, 'calling on provide': 156613, 'on provide their': 602988, 'checkpoint': 175069, 'today essential': 919487, 'essential shopping': 281549, 'shopping run': 763789, 'run included': 727678, 'included over': 431698, 'over 10': 629754, '10 road': 1659, 'road security': 724507, 'security checkpoint': 744567, 'checkpoint good': 175070, 'of google': 584252, 'google translate': 358197, 'translate hand': 929698, 'sanitiser glove': 733962, 'supermarket temperature': 823148, 'temperature taken': 837402, 'plenty space': 660998, 'and sensible': 71261, 'sensible shopping': 750657, 'today essential shopping': 919488, 'essential shopping run': 281556, 'shopping run included': 763790, 'run included over': 727679, 'included over 10': 431699, 'over 10 road': 629760, '10 road security': 1660, 'road security checkpoint': 724508, 'security checkpoint good': 744568, 'checkpoint good use': 175071, 'good use of': 357926, 'use of google': 949412, 'of google translate': 584253, 'google translate hand': 358198, 'translate hand sanitiser': 929699, 'hand sanitiser glove': 375232, 'sanitiser glove at': 733963, 'glove at supermarket': 352604, 'at supermarket temperature': 100778, 'supermarket temperature taken': 823149, 'temperature taken at': 837403, 'taken at supermarket': 832954, 'at supermarket plenty': 100759, 'supermarket plenty space': 822028, 'plenty space and': 660999, 'space and sensible': 787050, 'and sensible shopping': 71262, 'sensible shopping lot': 750658, 'shopping lot of': 763218, 'lot of flour': 504190, 'questioning': 693836, 'without having': 1002707, 'to question': 912662, 'question why': 693806, 'empty you': 275249, 're week': 699793, 'from questioning': 337023, 'questioning why': 693840, 'purchased so': 689808, 'many non': 514350, 'non shelf': 566496, 'stable item': 791929, 'that went': 847431, 'went bad': 978964, 'bad before': 107780, 'before consumption': 122708, 'consumption 19': 199817, 'week away from': 975970, 'away from being': 105862, 'from being able': 334672, 'able to walk': 24567, 'to walk into': 918303, 'walk into grocery': 964817, 'store without having': 811420, 'without having to': 1002710, 'having to question': 384357, 'to question why': 912665, 'question why are': 693807, 'are the aisle': 90793, 'the aisle are': 848513, 'aisle are empty': 40206, 'are empty you': 86177, 'empty you re': 275251, 'you re week': 1020790, 're week away': 699794, 'away from questioning': 105907, 'from questioning why': 337024, 'questioning why you': 693842, 'why you purchased': 991596, 'you purchased so': 1020500, 'purchased so many': 689809, 'so many non': 777680, 'many non shelf': 514351, 'non shelf stable': 566497, 'shelf stable item': 757547, 'stable item that': 791930, 'item that went': 463702, 'that went bad': 847432, 'went bad before': 978965, 'bad before consumption': 107781, 'before consumption 19': 122709, 'noon': 566833, '76': 22225, '969': 23673, 'gbp': 344800, 'pm fight': 661902, 'his health': 397503, 'in intensive': 424118, 'care the': 164229, 'face peak': 294697, 'peak of': 646085, 'pandemic noon': 636044, 'noon price': 566856, 'price 76': 672173, '76 14': 22226, '14 969': 3407, '969 watch': 23674, 'for gbp': 321848, 'gbp 19': 344801, 'pm fight for': 661903, 'fight for his': 304740, 'for his health': 322305, 'his health in': 397504, 'health in intensive': 386523, 'in intensive care': 424119, 'intensive care the': 441135, 'care the country': 164230, 'country face peak': 210634, 'face peak of': 294698, 'peak of the': 646086, 'the pandemic noon': 863035, 'pandemic noon price': 636045, 'noon price 76': 566859, 'price 76 14': 672174, '76 14 969': 22227, '14 969 watch': 3408, '969 watch out': 23675, 'out for gbp': 626125, 'for gbp 19': 321849, 'know more': 476600, 'more please': 540080, 'please comment': 659800, 'below we': 126775, 'appreciate our': 82742, 'store have special': 808102, 'senior and people': 750208, 'you know more': 1019510, 'know more please': 476609, 'more please comment': 540082, 'please comment below': 659802, 'comment below we': 188394, 'below we appreciate': 126776, 'we appreciate our': 970455, 'appreciate our grocery': 82744, 'worker who work': 1008238, 'who work around': 990031, 'work around the': 1004844, 'shelf keep your': 757268, 'keep your store': 472286, 'your store clean': 1025964, 'store clean and': 806985, 'clean and help': 180460, 'aging': 38285, 'having same': 384256, 'same problem': 733245, 'problem here': 679541, 'here haven': 393078, 'gotten grocery': 359141, 'grocery in': 364609, 'tried online': 931806, 'shopping out': 763571, 'stock called': 801969, 'called agency': 156280, 'agency on': 38050, 'on aging': 599178, 'aging to': 38288, 'what help': 981594, 'help wa': 390853, 'wa available': 961617, 'told program': 923662, 'having same problem': 384257, 'same problem here': 733246, 'problem here haven': 679542, 'here haven gotten': 393079, 'haven gotten grocery': 383815, 'gotten grocery in': 359142, 'grocery in two': 364621, 'two week tried': 937372, 'week tried online': 977124, 'tried online shopping': 931809, 'online shopping out': 609214, 'shopping out of': 763573, 'of stock called': 590147, 'stock called agency': 801970, 'called agency on': 156281, 'agency on aging': 38051, 'on aging to': 599179, 'aging to see': 38289, 'see what help': 746033, 'what help wa': 981596, 'help wa available': 390854, 'wa available and': 961618, 'available and wa': 104231, 'wa told program': 963541, '1919': 12316, 'affordability council': 34830, 'council are': 209965, 'the 1919': 847935, '1919 crisis': 12317, 'the pa proposed': 862830, 'proposed affordability council': 684518, 'affordability council are': 34831, 'council are just': 209966, 'just the 1919': 469989, 'the 1919 crisis': 847936, '1919 crisis peak': 12318, 'patron': 644407, 'felt in': 303398, 'pantry not': 639638, 'the desire': 853188, 'their patron': 874254, 'patron healthy': 644411, 'healthy well': 387809, 'well one': 978438, 'one local': 606616, 'local club': 497829, 'completely shifting': 192353, 'shifting their': 758559, 'help limit': 389997, '19 is also': 7933, 'is also being': 445550, 'also being felt': 47950, 'being felt in': 125142, 'felt in local': 303400, 'in local food': 424819, 'local food pantry': 497967, 'food pantry not': 315791, 'pantry not only': 639639, 'not only by': 570782, 'only by increased': 610212, 'by increased demand': 152894, 'increased demand but': 433264, 'demand but the': 235084, 'but the desire': 147331, 'the desire to': 853189, 'desire to keep': 238428, 'keep their patron': 472092, 'their patron healthy': 874255, 'patron healthy well': 644412, 'healthy well one': 387810, 'well one local': 978440, 'one local club': 606617, 'local club is': 497830, 'club is completely': 184449, 'is completely shifting': 446709, 'completely shifting their': 192354, 'shifting their business': 758560, 'their business model': 872684, 'business model to': 144062, 'model to help': 535322, 'to help limit': 907552, 'help limit spread': 389999, 'manslaughter': 513341, 'work cashier': 1004979, 'supermarket dozen': 820019, 'customer pas': 222675, 'pas within': 643174, 'within meter': 1002379, 'her the': 392432, 'install the': 440006, 'protective screen': 685809, 'screen if': 742700, 'she develops': 755981, 'develops high': 239861, 'high viral': 395509, 'viral load': 957602, 'load and': 497239, 'and dy': 61821, 'dy is': 263738, 'supermarket guilty': 820608, 'guilty of': 368562, 'of manslaughter': 586159, 'manslaughter ppe': 513344, 'daughter work cashier': 226926, 'work cashier in': 1004981, 'cashier in supermarket': 166552, 'in supermarket dozen': 428587, 'supermarket dozen of': 820020, 'dozen of customer': 257891, 'of customer pas': 582277, 'customer pas within': 222676, 'pas within meter': 643176, 'within meter of': 1002380, 'meter of her': 529730, 'of her the': 584585, 'her the store': 392435, 'the store failed': 868019, 'failed to install': 296179, 'to install the': 908421, 'install the protective': 440007, 'the protective screen': 864713, 'protective screen if': 685810, 'screen if she': 742701, 'if she develops': 414774, 'she develops high': 755982, 'develops high viral': 239862, 'high viral load': 395510, 'viral load and': 957603, 'load and dy': 497241, 'and dy is': 61822, 'dy is the': 263739, 'is the supermarket': 452953, 'the supermarket guilty': 868617, 'supermarket guilty of': 820609, 'guilty of manslaughter': 368568, 'of manslaughter ppe': 586160, 'selfisolation online': 748467, 'really an': 701965, 'option many': 614066, 'many place': 514562, 'place not': 657591, 'not accepting': 568029, 'accepting new': 28080, 'order week': 618760, 'half wait': 374294, 'wait if': 964136, 'selfisolation online shopping': 748468, 'shopping not really': 763354, 'not really an': 571230, 'really an option': 701967, 'an option many': 56686, 'option many place': 614067, 'many place not': 514565, 'place not accepting': 657592, 'not accepting new': 568031, 'accepting new order': 28083, 'new order week': 559232, 'order week and': 618761, 'and half wait': 64127, 'half wait if': 374295, 'wait if you': 964137, 'get an order': 346547, 'evolution': 288483, 'renewable': 710966, 'drive crude': 259022, 'price into': 674840, 'barrel range': 111274, 'range the': 696741, 'energy evolution': 276447, 'evolution team': 288496, 'team take': 835786, 'slowdown mean': 774456, 'for fossil': 321683, 'fuel utility': 340304, 'utility and': 951256, 'and renewable': 70238, 'renewable energy': 710967, 'pandemic drive crude': 635334, 'drive crude oil': 259023, 'oil price into': 597169, 'price into the': 674843, 'into the 30': 443094, 'the 30 per': 848087, '30 per barrel': 17184, 'per barrel range': 650707, 'barrel range the': 111275, 'range the energy': 696743, 'the energy evolution': 854318, 'energy evolution team': 276448, 'evolution team take': 288497, 'team take look': 835787, 'what the global': 982320, 'the global economic': 856299, 'global economic slowdown': 351886, 'economic slowdown mean': 267308, 'slowdown mean for': 774457, 'mean for fossil': 524439, 'for fossil fuel': 321684, 'fossil fuel utility': 330084, 'fuel utility and': 340305, 'utility and renewable': 951257, 'and renewable energy': 70239, 'wipeyourarse': 996493, 'mate': 520334, 'morale': 538413, 'repost stoppanicbuying': 712840, 'stoppanicbuying wipeyourarse': 805658, 'wipeyourarse washyourhands': 996494, 'washyourhands coronamemes': 967864, 'coronamemes corona': 205060, 'corona wuflu': 204402, 'wuflu wuhan': 1013456, 'wuhan kungflu': 1013501, 'kungflu tag': 477931, 'tag mate': 831761, 'mate to': 520349, 'raise morale': 695880, 'repost stoppanicbuying wipeyourarse': 712841, 'stoppanicbuying wipeyourarse washyourhands': 805659, 'wipeyourarse washyourhands coronamemes': 996495, 'washyourhands coronamemes corona': 967865, 'coronamemes corona wuflu': 205061, 'corona wuflu wuhan': 204403, 'wuflu wuhan kungflu': 1013457, 'wuhan kungflu tag': 1013502, 'kungflu tag mate': 477932, 'tag mate to': 831762, 'mate to raise': 520351, 'to raise morale': 912725, 'hamster': 374637, 'nonstop': 566756, 'accent': 27929, 'thomasandfriends': 891720, 'isolation we': 455493, 'have eaten': 380411, 'eaten most': 266135, 'our toiletpaper': 625157, 'supply the': 825958, 'old refuse': 598444, 'giant hamster': 349789, 'hamster wheel': 374656, 'wheel we': 983058, 'dog is': 252119, 'very over': 955400, 'over having': 630273, 'having all': 383963, 'all here': 43099, 'here nonstop': 393388, 'nonstop the': 566757, 'child now': 176153, 'have british': 379843, 'british accent': 140487, 'accent thanks': 27930, 'to thomasandfriends': 917487, 'week two of': 977135, 'two of isolation': 937088, 'of isolation we': 585345, 'isolation we have': 455494, 'we have eaten': 971805, 'have eaten most': 380412, 'eaten most of': 266136, 'of our toiletpaper': 587579, 'our toiletpaper supply': 625160, 'toiletpaper supply the': 922567, 'supply the year': 825969, 'the year old': 872165, 'year old refuse': 1014862, 'old refuse to': 598445, 'refuse to use': 707045, 'use the giant': 949668, 'the giant hamster': 856255, 'giant hamster wheel': 349790, 'hamster wheel we': 374658, 'wheel we made': 983059, 'we made for': 972320, 'made for him': 507742, 'for him the': 322288, 'him the dog': 396731, 'the dog is': 853496, 'dog is very': 252122, 'is very over': 453687, 'very over having': 955401, 'over having all': 630274, 'having all here': 383964, 'all here nonstop': 43103, 'here nonstop the': 393389, 'nonstop the child': 566758, 'the child now': 850822, 'child now have': 176154, 'now have british': 574867, 'have british accent': 379844, 'british accent thanks': 140488, 'accent thanks to': 27931, 'thanks to thomasandfriends': 842269, 'bangalore': 109452, 'antibody': 78402, 'rs2500': 726689, 'aidan': 39490, 'inf': 436461, 'bangalore based': 109453, 'based startup': 111746, 'startup is': 795114, 'rapid antibody': 696898, 'antibody screening': 78409, 'for rs2500': 325265, 'rs2500 on': 726690, 'website aidan': 975180, 'aidan ha': 39491, 'raised concern': 695996, 'concern to': 193127, 'to india': 908325, 'india inf': 434474, 'inf about': 436462, 'about direct': 25098, 'consumer marketing': 198104, 'marketing of': 517660, 'bangalore based startup': 109454, 'based startup is': 111749, 'startup is selling': 795115, 'is selling at': 451750, 'selling at home': 749169, '19 rapid antibody': 9956, 'rapid antibody screening': 696899, 'antibody screening test': 78410, 'screening test for': 742774, 'test for rs2500': 839004, 'for rs2500 on': 325266, 'rs2500 on it': 726691, 'on it website': 601695, 'it website aidan': 462288, 'website aidan ha': 975181, 'aidan ha raised': 39492, 'ha raised concern': 371626, 'raised concern to': 695997, 'concern to india': 193128, 'to india inf': 908328, 'india inf about': 434475, 'inf about direct': 436463, 'about direct to': 25099, 'to consumer marketing': 903315, 'consumer marketing of': 198106, 'marketing of test': 517661, 'of test kit': 590684, 'test kit to': 839070, 'kit to investigate': 475654, 'to investigate this': 908494, 'yous': 1026833, 'fact yous': 295847, 'yous are': 1026834, 'and raising': 69911, 'ridiculous lot': 721565, 'on 80': 599120, '80 pay': 22615, 're making': 699022, 'this harder': 887862, 'class sort': 180264, 'sort yourselves': 786162, 'the fact yous': 854835, 'fact yous are': 295848, 'yous are taking': 1026836, 'pandemic and raising': 634893, 'and raising food': 69912, 'food price is': 315953, 'price is ridiculous': 674884, 'is ridiculous lot': 451520, 'ridiculous lot of': 721566, 'of people have': 587920, 'people have lost': 648183, 'job or are': 466063, 'or are on': 614410, 'are on 80': 88713, 'on 80 pay': 599122, '80 pay and': 22616, 'pay and you': 644745, 'you re making': 1020674, 're making this': 699028, 'making this harder': 511461, 'this harder for': 887863, 'harder for the': 378169, 'for the working': 326786, 'the working class': 871778, 'working class sort': 1008565, 'class sort yourselves': 180265, 'krugman': 477807, 'stonewalling': 804364, 'paul krugman': 644545, 'krugman bash': 477808, 'bash trump': 111808, 'trump scheme': 933830, 'scheme to': 741589, 'boost oil': 134983, 'oil profit': 597375, 'profit while': 682890, 'while stonewalling': 987332, 'stonewalling post': 804365, 'office aid': 595347, 'aid via': 39477, 'paul krugman bash': 644546, 'krugman bash trump': 477809, 'bash trump scheme': 111809, 'trump scheme to': 933831, 'scheme to boost': 741590, 'to boost oil': 901923, 'boost oil profit': 134986, 'oil profit while': 597376, 'profit while stonewalling': 682893, 'while stonewalling post': 987333, 'stonewalling post office': 804366, 'post office aid': 666232, 'office aid via': 595348, 'ha seriously': 371864, 'seriously damaged': 751576, 'damaged supply': 225261, 'line between': 493012, 'rise result': 722989, 'the ha seriously': 857018, 'ha seriously damaged': 371866, 'seriously damaged supply': 751577, 'damaged supply line': 225262, 'supply line between': 825509, 'line between the': 493014, 'between the and': 128923, 'the and china': 848690, 'and china and': 59844, 'china and price': 176490, 'to rise result': 913575, 'bielefeld': 129595, 'nrw': 576648, 'stabbed': 791762, 'knife': 476102, 'fled': 310274, 'how stupid': 408759, 'stupid can': 815366, 'be germany': 114997, 'germany bielefeld': 346278, 'bielefeld nrw': 129596, 'nrw in': 576649, 'in bielefeld': 420823, 'bielefeld young': 129598, 'man stabbed': 512243, 'stabbed supermarket': 791766, 'the leg': 859271, 'leg with': 485823, 'with knife': 999159, 'knife during': 476105, 'during dispute': 262601, 'dispute about': 246317, 'about corona': 25021, 'corona rule': 204153, 'rule the': 727373, 'the perpetrator': 863575, 'perpetrator fled': 652221, 'how stupid can': 408760, 'stupid can people': 815367, 'can people be': 159212, 'people be germany': 647225, 'be germany bielefeld': 114998, 'germany bielefeld nrw': 346279, 'bielefeld nrw in': 129597, 'nrw in bielefeld': 576650, 'in bielefeld young': 420824, 'bielefeld young man': 129599, 'young man stabbed': 1022619, 'man stabbed supermarket': 512245, 'stabbed supermarket employee': 791767, 'supermarket employee in': 820125, 'employee in the': 273973, 'in the leg': 429313, 'the leg with': 859274, 'leg with knife': 485824, 'with knife during': 999160, 'knife during dispute': 476106, 'during dispute about': 262602, 'dispute about corona': 246318, 'about corona rule': 25022, 'corona rule the': 204154, 'rule the perpetrator': 727375, 'the perpetrator fled': 863576, 'anthony': 78238, 'fensom': 303528, 'shopper shut': 761688, 'their wallet': 875147, 'wallet consumer': 965215, 'driven global': 259318, 'recession could': 704244, 'next threat': 561591, 'threat posed': 893715, 'pandemic warns': 636919, 'warns anthony': 967250, 'anthony fensom': 78245, 'shopper shut their': 761689, 'shut their wallet': 767950, 'their wallet consumer': 875148, 'wallet consumer driven': 965216, 'consumer driven global': 197250, 'driven global recession': 259319, 'global recession could': 352155, 'recession could be': 704245, 'be the next': 117640, 'the next threat': 861702, 'next threat posed': 561592, 'threat posed by': 893716, 'the pandemic warns': 863147, 'pandemic warns anthony': 636920, 'warns anthony fensom': 967251, 'monopoly': 537421, 'gouge': 359185, 'faulty': 300433, 'neverforget': 558292, 'exploited': 292402, 'decouplefromchina': 231544, 'china company': 176574, 'their near': 874037, 'near monopoly': 553549, 'monopoly on': 537433, 'on ppe': 602869, 'price gouge': 674233, 'gouge charging': 359188, 'charging astronomical': 173457, 'astronomical price': 97259, 'for ppe': 324663, 'ppe which': 668109, 'is often': 450438, 'often counterfeit': 596180, 'counterfeit or': 210307, 'or faulty': 615280, 'faulty neverforget': 300435, 'neverforget how': 558295, 'they exploited': 882076, 'exploited in': 292413, 'must diversify': 546622, 'diversify supply': 248544, 'line or': 493338, 'or decouplefromchina': 614917, 'china company are': 176575, 'company are using': 190461, 'using their near': 950728, 'their near monopoly': 874038, 'near monopoly on': 553551, 'monopoly on ppe': 537436, 'on ppe to': 602871, 'ppe to price': 668084, 'to price gouge': 912118, 'price gouge charging': 674234, 'gouge charging astronomical': 359189, 'charging astronomical price': 173458, 'astronomical price for': 97262, 'price for ppe': 674028, 'for ppe which': 324672, 'ppe which is': 668110, 'which is often': 986035, 'is often counterfeit': 450439, 'often counterfeit or': 596181, 'counterfeit or faulty': 210308, 'or faulty neverforget': 615281, 'faulty neverforget how': 300436, 'neverforget how they': 558296, 'how they exploited': 408916, 'they exploited in': 882077, 'exploited in our': 292414, 'in our time': 426348, 'our time of': 625146, 'of need we': 586918, 'need we must': 556187, 'we must diversify': 972410, 'must diversify supply': 546623, 'diversify supply line': 248545, 'supply line or': 825511, 'line or decouplefromchina': 493339, 'abundance': 27585, 'totinosarelifenow': 926422, 'socialdistancing called': 780269, 'called the': 156453, 'were busy': 979404, 'busy before': 144873, 'only grab': 610538, 'grab necessity': 361511, 'necessity apparently': 554167, 'apparently frozen': 81937, 'now necessity': 575337, 'necessity not': 554245, 'because needed': 119268, 'needed it': 556410, 'in abundance': 419992, 'abundance totinosarelifenow': 27594, 'day of socialdistancing': 228103, 'of socialdistancing called': 589849, 'socialdistancing called the': 780270, 'called the grocery': 156456, 'store to see': 810812, 'if they were': 415137, 'they were busy': 883756, 'were busy before': 979405, 'busy before going': 144874, 'going to only': 355664, 'to only grab': 910971, 'only grab necessity': 610539, 'grab necessity apparently': 361512, 'necessity apparently frozen': 554168, 'apparently frozen pizza': 81938, 'frozen pizza is': 339005, 'pizza is now': 657178, 'is now necessity': 450304, 'now necessity not': 575338, 'necessity not because': 554246, 'not because needed': 568490, 'because needed it': 119270, 'needed it but': 556411, 'it but because': 456946, 'but because it': 145270, 'only thing in': 611306, 'thing in abundance': 884428, 'in abundance totinosarelifenow': 419995, 'wiping store': 996529, 'wipe is': 996304, 'is faster': 447751, 'faster hard': 300104, 'put item': 690652, 'the uv': 870608, 'uv box': 951467, 'box with': 137203, 'of sight': 589719, 'sight the': 769060, 'box is': 137094, 'for mail': 323153, 'mail and': 508571, 'package outside': 633363, 'outside first': 629420, 'first then': 309061, 'then item': 877290, 'item inside': 463376, 'inside still': 439386, 'out process': 627069, 'process have': 679907, 'still use': 801360, 'sanitizer throw': 735900, 'away bag': 105790, 'wiping store item': 996530, 'store item with': 808606, 'item with disinfectant': 463838, 'with disinfectant wipe': 998086, 'disinfectant wipe is': 245814, 'wipe is faster': 996306, 'is faster hard': 447753, 'faster hard to': 300105, 'hard to put': 378082, 'to put item': 912594, 'put item in': 690653, 'in the uv': 429642, 'the uv box': 870609, 'uv box with': 951469, 'box with line': 137204, 'with line of': 999239, 'line of sight': 493312, 'of sight the': 589720, 'sight the uv': 769061, 'uv box is': 951468, 'box is great': 137095, 'is great for': 448196, 'great for mail': 362681, 'for mail and': 323154, 'mail and package': 508573, 'and package outside': 68611, 'package outside first': 633364, 'outside first then': 629421, 'first then item': 309062, 'then item inside': 877291, 'item inside still': 463377, 'inside still working': 439387, 'still working out': 801439, 'working out process': 1008850, 'out process have': 627070, 'process have to': 679908, 'have to still': 383308, 'to still use': 915414, 'still use hand': 801361, 'hand sanitizer throw': 375626, 'sanitizer throw away': 735901, 'throw away bag': 895010, 'the affect': 848396, 'affect those': 34264, 'those entering': 891970, 'entering public': 278413, 'public bus': 687903, 'bus if': 143050, 'city like': 179240, 'like lagos': 490619, 'lagos and': 478920, 'enter public': 278281, 'bus please': 143069, 'of how doe': 584821, 'how doe the': 407750, 'doe the affect': 251604, 'the affect those': 848402, 'affect those entering': 34265, 'those entering public': 891971, 'entering public bus': 278414, 'public bus if': 687904, 'bus if you': 143051, 'live in city': 495851, 'in city like': 421480, 'city like lagos': 179241, 'like lagos and': 490620, 'lagos and you': 478922, 'and you enter': 76016, 'you enter public': 1018427, 'enter public bus': 278282, 'public bus please': 687905, 'bus please listen': 143071, 'listen to this': 494757, 'to this post': 917453, 'with brave': 997467, 'worker compared': 1006678, 'pandemic with brave': 637025, 'with brave worker': 997468, 'brave worker compared': 138248, 'worker compared to': 1006679, 'wastage': 968054, 'derry': 237891, 'londonderry': 501238, 'belfast': 126150, 'food how': 314865, 'about donating': 25124, 'bank it': 109956, 'it concern': 457253, 'concern me': 193015, 'purchasing there': 689931, 'be terrible': 117548, 'terrible wastage': 838454, 'wastage of': 968057, 'strain and': 812263, 'family will': 298380, 'be suffering': 117440, 'suffering derry': 817293, 'derry londonderry': 237892, 'londonderry belfast': 501239, 'can of food': 159088, 'of food how': 583713, 'food how about': 314866, 'how about donating': 407278, 'about donating to': 25126, 'donating to food': 254521, 'food bank it': 313591, 'bank it concern': 109957, 'it concern me': 457254, 'concern me that': 193016, 'me that in': 523616, 'that in all': 844446, 'the panic purchasing': 863215, 'panic purchasing there': 638454, 'purchasing there will': 689932, 'will be terrible': 992718, 'be terrible wastage': 117549, 'terrible wastage of': 838455, 'wastage of food': 968058, 'of food so': 583780, 'business are feeling': 143366, 'the strain and': 868185, 'strain and family': 812264, 'and family will': 62678, 'family will be': 298381, 'will be suffering': 992710, 'be suffering derry': 117441, 'suffering derry londonderry': 817294, 'derry londonderry belfast': 237893, 'mexican': 529976, 'tamale': 834089, 'bugin': 141920, 'dinnerandamovie': 243120, 'flinn': 310586, 'mexican be': 529977, 'like tamale': 491296, 'tamale bugin': 834090, 'bugin dinnerandamovie': 141921, 'dinnerandamovie tp': 243121, 'toiletpaper flinn': 921988, 'flinn spring': 310587, 'spring california': 791184, 'mexican be like': 529978, 'be like tamale': 115747, 'like tamale bugin': 491297, 'tamale bugin dinnerandamovie': 834091, 'bugin dinnerandamovie tp': 141922, 'dinnerandamovie tp toiletpaper': 243122, 'tp toiletpaper flinn': 927995, 'toiletpaper flinn spring': 921989, 'flinn spring california': 310588, 'the what': 871415, 'surrounding the what': 828780, 'the what the': 871418, 'qsrs': 691606, 'drivethru': 259873, 'qsr': 691601, 'industry leader': 435958, 'leader are': 483421, 'see self': 745657, 'service the': 752928, 'protect staff': 684950, 'and guest': 64036, 'guest however': 368162, 'however qsrs': 409444, 'qsrs see': 691609, 'new operational': 559219, 'operational challenge': 613296, 'ensure great': 277954, 'great guest': 362707, 'guest experience': 368154, 'experience drivethru': 291346, 'drivethru qsr': 259876, 'qsr fastfood': 691604, 'industry leader are': 435959, 'leader are beginning': 483424, 'beginning to see': 123674, 'to see self': 914063, 'see self service': 745658, 'self service the': 747907, 'service the best': 752930, 'way to protect': 970074, 'to protect staff': 912332, 'protect staff and': 684951, 'staff and guest': 792143, 'and guest however': 64037, 'guest however qsrs': 368163, 'however qsrs see': 409445, 'qsrs see an': 691610, 'in demand they': 422161, 'demand they must': 236375, 'they must face': 882705, 'must face new': 546649, 'face new operational': 294637, 'new operational challenge': 559220, 'operational challenge to': 613297, 'challenge to ensure': 171577, 'to ensure great': 905163, 'ensure great guest': 277955, 'great guest experience': 362708, 'guest experience drivethru': 368155, 'experience drivethru qsr': 291347, 'drivethru qsr fastfood': 259877, 'pooping': 664080, 'illustrator': 416471, 'illustration': 416449, 'cartoonist': 165535, 'doodle': 255426, 'cartoonofinstagram': 165538, 'sketchbook': 772902, 'home cartoon': 400885, 'cartoon pooping': 165529, 'pooping 12': 664081, '12 stayhome': 2959, 'stayhome drawing': 797986, 'drawing drawing': 258512, 'drawing illustrator': 258518, 'illustrator illustration': 416472, 'illustration illustration': 416457, 'illustration cartoon': 416450, 'cartoon cartoonist': 165507, 'cartoonist doodle': 165536, 'doodle cartoonofinstagram': 255427, 'cartoonofinstagram sketch': 165539, 'sketch sketchbook': 772891, 'sketchbook toiletpaper': 772905, 'home stay home': 402122, 'stay home cartoon': 796948, 'home cartoon pooping': 400886, 'cartoon pooping 12': 165530, 'pooping 12 stayhome': 664082, '12 stayhome drawing': 2960, 'stayhome drawing drawing': 797987, 'drawing drawing illustrator': 258513, 'drawing illustrator illustration': 258519, 'illustrator illustration illustration': 416473, 'illustration illustration cartoon': 416458, 'illustration cartoon cartoonist': 416451, 'cartoon cartoonist doodle': 165508, 'cartoonist doodle cartoonofinstagram': 165537, 'doodle cartoonofinstagram sketch': 255428, 'cartoonofinstagram sketch sketchbook': 165540, 'sketch sketchbook toiletpaper': 772892, 'just saying': 469710, 'saying work': 739766, 'in little': 424800, 'little store': 495585, 'have fresh': 380718, 'veg bread': 953730, 'product daily': 681109, 'daily small': 224803, 'small instore': 775000, 'instore bakery': 440496, 'bakery we': 108892, 'every morning': 286024, 'morning much': 541358, 'shop get': 760235, 'get angry': 346558, 'angry at': 76459, 'staff we': 793054, 'doing our': 252590, 'just saying work': 469717, 'saying work in': 739768, 'work in little': 1005320, 'in little store': 424802, 'little store we': 495587, 'store we have': 811173, 'we have fresh': 971821, 'have fresh fruit': 380720, 'fruit veg bread': 339165, 'veg bread milk': 953732, 'bread milk grocery': 138529, 'milk grocery product': 531695, 'grocery product daily': 364878, 'product daily small': 681110, 'daily small instore': 224804, 'small instore bakery': 775001, 'instore bakery we': 440497, 'bakery we stock': 108893, 'stock up every': 803079, 'up every morning': 944807, 'every morning much': 286029, 'morning much we': 541359, 'much we have': 545439, 'we have so': 971942, 'have so please': 382601, 'so please do': 778019, 'not come into': 568796, 'come into my': 187390, 'into my shop': 442789, 'my shop get': 550047, 'shop get angry': 760236, 'get angry at': 346559, 'angry at my': 76461, 'at my staff': 99830, 'my staff we': 550188, 'staff we are': 793056, 'are doing our': 85917, 'doing our best': 252591, 'iceberg': 412687, 'scam top': 740431, 'top 15': 925521, '00 news': 365, 'news feed': 560400, 'feed american': 302272, 'lost nearly': 503894, 'nearly 12': 553755, 'likely just': 492039, 'the tip': 869651, 'tip of': 898844, 'the iceberg': 857813, 'iceberg get': 412688, 'get helpful': 347212, 'tip here': 898816, 'consumer complaint about': 196848, 'complaint about covid': 191927, '19 scam top': 10351, 'scam top 15': 740432, 'top 15 00': 925522, '15 00 news': 3631, '00 news feed': 366, 'news feed american': 560401, 'feed american consumer': 302273, 'american consumer have': 51893, 'consumer have already': 197706, 'have already lost': 379193, 'already lost nearly': 47514, 'lost nearly 12': 503895, 'nearly 12 million': 553756, '12 million to': 2890, 'million to covid': 532383, 'scam and this': 740022, 'is likely just': 449349, 'likely just the': 492040, 'just the tip': 470017, 'the tip of': 869652, 'tip of the': 898845, 'of the iceberg': 591118, 'the iceberg get': 857814, 'iceberg get helpful': 412689, 'get helpful tip': 347213, 'helpful tip here': 391237, 'amidst 19': 52771, 'shopping amidst 19': 761946, 'amidst 19 pandemic': 52772, 'testimonial': 839410, 'and condition': 60262, 're introducing': 698915, 'introducing new': 443496, 'new series': 559562, 'series on': 751283, 'website on': 975372, 'on work': 605363, 'coronavirus for': 205941, 'first feature': 308668, 'feature we': 301566, 'have testimonial': 382944, 'testimonial of': 839411, 'have story': 382797, 'share dm': 754983, 'to highlight the': 907756, 'highlight the life': 395970, 'the life and': 859336, 'life and condition': 488473, 'and condition of': 60265, 'condition of worker': 193501, 'of worker we': 593285, 'worker we re': 1008147, 'we re introducing': 972900, 're introducing new': 698917, 'introducing new series': 443499, 'new series on': 559564, 'series on our': 751286, 'our website on': 625347, 'website on work': 975373, 'on work in': 605367, 'of coronavirus for': 581936, 'coronavirus for our': 205943, 'for our first': 324242, 'our first feature': 623080, 'first feature we': 308669, 'feature we have': 301567, 'we have testimonial': 971959, 'have testimonial of': 382945, 'testimonial of grocery': 839412, 'store worker do': 811482, 'worker do you': 1006794, 'you have story': 1019121, 'have story to': 382798, 'story to share': 812141, 'to share dm': 914339, 'capital economics': 162651, 'economics that': 267488, 'it lower': 459476, 'lower than': 506005, 'than during': 840528, 'early 2016': 264525, '2016 or': 13838, 'or late': 615927, 'late 2018': 480840, '2018 price': 13890, 'crash while': 215051, 'the hit': 857392, 'is weighing': 453830, 'weighing heavily': 977677, 'fall also': 296816, 'also reflect': 48773, 'reflect potentially': 706620, 'potentially seismic': 667241, 'seismic shift': 747422, 'market more': 516733, 'more below': 538717, 'below cdnecon': 126611, 'capital economics that': 162653, 'economics that left': 267489, 'that left it': 844866, 'left it lower': 485531, 'it lower than': 459478, 'lower than during': 506008, 'than during the': 840529, 'during the early': 263119, 'the early 2016': 853818, 'early 2016 or': 264526, '2016 or late': 13839, 'or late 2018': 615928, 'late 2018 price': 480842, '2018 price crash': 13891, 'price crash while': 673330, 'crash while the': 215052, 'while the hit': 987394, 'the hit to': 857397, 'hit to demand': 398473, 'to demand from': 904144, 'from the outbreak': 337819, 'outbreak is weighing': 628389, 'is weighing heavily': 453831, 'weighing heavily on': 977678, 'heavily on price': 388596, 'on price the': 602919, 'price the fall': 676833, 'the fall also': 854866, 'fall also reflect': 296817, 'also reflect potentially': 48774, 'reflect potentially seismic': 706621, 'potentially seismic shift': 667242, 'seismic shift in': 747423, 'shift in the': 758330, 'in the global': 429235, 'oil market more': 596949, 'market more below': 516734, 'more below cdnecon': 538718, 'injecting': 438697, 'withdraw': 1002254, 'injecting money': 438698, 'money into': 536837, 'and lowering': 66464, 'lowering interest': 506113, 'rate will': 697415, 'economic problem': 267213, 'problem people': 679647, 'longer earning': 501969, 'earning they': 264879, 'they withdraw': 883902, 'withdraw fund': 1002255, 'from bank': 334631, 'food government': 314700, 'government measure': 360352, 'measure have': 525213, 'stopped demand': 805695, 'injecting money into': 438699, 'money into the': 536839, 'into the economy': 443120, 'economy and lowering': 267650, 'and lowering interest': 66467, 'lowering interest rate': 506114, 'interest rate will': 441406, 'rate will not': 697418, 'solve the economic': 782161, 'the economic problem': 853910, 'economic problem people': 267214, 'problem people are': 679648, 'are losing their': 87901, 'job and no': 465636, 'and no longer': 67622, 'no longer earning': 564645, 'longer earning they': 501970, 'earning they withdraw': 264881, 'they withdraw fund': 883903, 'withdraw fund from': 1002256, 'fund from bank': 341417, 'from bank to': 334633, 'bank to buy': 110254, 'buy food government': 148651, 'food government measure': 314702, 'government measure have': 360355, 'measure have stopped': 525216, 'have stopped demand': 382785, 'stopped demand for': 805696, 'for non essential': 323900, 'non essential product': 566351, 'changing track': 172835, 'track to': 928231, '19 how company': 7599, 'company are changing': 190416, 'are changing track': 85245, 'changing track to': 172836, 'track to join': 928234, 'to join the': 908684, 'protects': 685834, 'gotta hit': 359083, 'today hope': 919659, 'mask protects': 519165, 'protects me': 685839, 'me mask': 523144, 'mask safetyfirst': 519207, 'safetyfirst hollywood': 730801, 'gotta hit the': 359084, 'store today hope': 810846, 'today hope the': 919662, 'hope the mask': 403681, 'the mask protects': 860225, 'mask protects me': 519166, 'protects me mask': 685840, 'me mask safetyfirst': 523145, 'mask safetyfirst hollywood': 519208, 'liveblog': 496139, 'the liveblog': 859505, 'liveblog free': 496140, 'free software': 332186, 'software open': 781542, 'to iga': 908105, 'iga shopper': 415686, 'shopper update': 761790, 'on changing': 599870, 'hour food': 405591, 'retail restaurant': 718454, 'restaurant distributor': 716424, 'distributor partner': 248308, 'partner up': 642888, 'on the liveblog': 604216, 'the liveblog free': 859506, 'liveblog free software': 496141, 'free software open': 332187, 'software open letter': 781543, 'letter to iga': 487364, 'to iga shopper': 908106, 'iga shopper update': 415687, 'shopper update on': 761791, 'update on changing': 947109, 'on changing store': 599873, 'changing store hour': 172804, 'store hour food': 808199, 'hour food retail': 405592, 'food retail restaurant': 316211, 'retail restaurant distributor': 718457, 'restaurant distributor partner': 716425, 'distributor partner up': 248309, 'partner up more': 642889, 'reflects': 706678, 'mobile app': 534939, 'app usage': 81790, 'usage reflects': 948851, 'reflects people': 706684, 'people daily': 647598, 'likely that': 492112, 'behaviour across': 124347, 'across many': 29382, 'many industry': 514187, 'industry via': 436209, 'mobile app usage': 534943, 'app usage reflects': 81791, 'usage reflects people': 948852, 'reflects people daily': 706685, 'people daily need': 647600, 'daily need and': 224711, 'need and it': 554428, 'and it is': 65542, 'is likely that': 449353, 'likely that the': 492115, 'that the outbreak': 846792, 'outbreak will cause': 628823, 'will cause more': 992893, 'cause more change': 167657, 'in the consumer': 429091, 'consumer behaviour across': 196549, 'behaviour across many': 124348, 'across many industry': 29383, 'many industry via': 514191, 'carrot': 165040, 'supermarket bunch': 819431, 'of pharmacy': 588088, 'up basic': 944455, 'basic stuff': 112064, 'stuff need': 815136, 'need learned': 555151, 'learned today': 484156, 'like carrot': 489966, 'carrot bc': 165044, 'of carrot': 581157, 'carrot carrot': 165046, 'carrot nyc': 165058, 'ok so went': 597890, 'the supermarket bunch': 868496, 'supermarket bunch of': 819432, 'bunch of pharmacy': 142633, 'of pharmacy and': 588089, 'pharmacy and grocery': 654213, 'store to pick': 810794, 'pick up basic': 655705, 'up basic stuff': 944458, 'basic stuff need': 112066, 'stuff need learned': 815137, 'need learned today': 555152, 'learned today no': 484158, 'today no one': 919933, 'one like carrot': 606599, 'like carrot bc': 489967, 'carrot bc there': 165045, 'bc there are': 113294, 'plenty of carrot': 660944, 'of carrot carrot': 581158, 'carrot carrot nyc': 165047, 'infra': 438164, 'panic thing': 638703, 'thing remain': 884712, 'lockdown transportation': 500074, 'transportation allowed': 929987, 'allowed with': 46261, 'with restriction': 1000496, 'restriction essential': 717265, 'only enforcement': 610391, 'enforcement infra': 276773, 'infra amp': 438165, 'amp chemist': 53523, 'chemist cashier': 175415, 'cashier amp': 166443, 'amp atm': 53418, 'atm item': 101941, 'item ration': 463597, 'ration amp': 697628, 'amp milk': 54137, 'milk shop': 531811, 'shop delivery': 760093, 'food pump': 316078, 'dont panic thing': 255268, 'panic thing remain': 638704, 'thing remain open': 884713, 'remain open during': 709807, 'open during lockdown': 612197, 'during lockdown transportation': 262777, 'lockdown transportation allowed': 500075, 'transportation allowed with': 929988, 'allowed with restriction': 46262, 'with restriction essential': 1000497, 'restriction essential item': 717266, 'essential item only': 281219, 'item only enforcement': 463523, 'only enforcement infra': 610392, 'enforcement infra amp': 276774, 'infra amp chemist': 438166, 'amp chemist cashier': 53524, 'chemist cashier amp': 175416, 'cashier amp atm': 166444, 'amp atm item': 53420, 'atm item ration': 101942, 'item ration amp': 463598, 'ration amp milk': 697629, 'amp milk shop': 54139, 'milk shop delivery': 531812, 'shop delivery food': 760094, 'delivery food pump': 234011, 'sniffed': 776343, 'wa toilet': 963533, '30am in': 17417, 'in safeway': 427626, 'safeway woman': 730860, 'me looked': 523111, 'looked sniffed': 502746, 'sniffed and': 776344, 'said only': 731298, 'only use': 611407, 'use ply': 949489, 'ply the': 661786, 'great toilet': 363076, 'paper rush': 640706, '2020 is': 14404, 'is finally': 447804, 'finally over': 306065, 'there wa toilet': 879278, 'wa toilet paper': 963534, 'morning at 30am': 541177, 'at 30am in': 97605, '30am in safeway': 17418, 'in safeway woman': 427627, 'safeway woman in': 730861, 'of me looked': 586335, 'me looked sniffed': 523112, 'looked sniffed and': 502747, 'sniffed and said': 776345, 'and said only': 70772, 'said only use': 731299, 'only use ply': 611410, 'use ply the': 949490, 'ply the great': 661787, 'the great toilet': 856735, 'great toilet paper': 363077, 'toilet paper rush': 921427, 'paper rush of': 640707, 'rush of 2020': 728313, 'of 2020 is': 579496, '2020 is finally': 14405, 'is finally over': 447807, 'finally over toiletpaper': 306066, 'over toiletpaper hoarding': 630854, 'flooded': 310725, 'shell egg': 757873, 'have doubled': 380347, 'doubled over': 256131, 'past two': 643631, 'week related': 976805, 'related concern': 708393, 'concern have': 192989, 'have flooded': 380639, 'flooded retail': 310730, 'with shopper': 1000687, 'in pursuit': 427136, 'pursuit of': 690225, 'household necessity': 406885, 'necessity being': 554183, 'being one': 125491, 'most widely': 542912, 'widely targeted': 991788, 'targeted item': 834550, 'shell egg price': 757874, 'egg price have': 269960, 'price have doubled': 674425, 'have doubled over': 380350, 'doubled over the': 256132, 'the past two': 863367, 'past two week': 643632, 'two week related': 937357, 'week related concern': 976806, 'related concern have': 708394, 'concern have flooded': 192990, 'have flooded retail': 380640, 'flooded retail store': 310731, 'retail store with': 718731, 'store with shopper': 811401, 'with shopper in': 1000689, 'shopper in pursuit': 761565, 'in pursuit of': 427137, 'pursuit of household': 690226, 'of household necessity': 584798, 'household necessity being': 406886, 'necessity being one': 554184, 'being one of': 125492, 'the most widely': 861064, 'most widely targeted': 542913, 'widely targeted item': 991789, 'by tipping': 154550, 'tipping extra': 898986, 'extra and': 293451, 'and signing': 71663, 'support your food': 827015, 'your food service': 1023925, 'service worker by': 753090, 'worker by tipping': 1006575, 'by tipping extra': 154551, 'tipping extra and': 898987, 'extra and signing': 293452, 'and signing this': 71664, 'signing this please': 769651, 'outdoor': 628885, 'zoek': 1027677, 'ha over': 371463, '200 outdoor': 13523, 'outdoor location': 628898, 'location throughout': 498969, 'throughout uk': 894999, 'uk ha': 938427, 'ha pledged': 371502, 'keep many': 471649, 'many possible': 514569, 'possible open': 665731, 'public over': 688210, 'week will': 977250, 'charge it': 173269, 'it usual': 462002, 'usual ticket': 951040, 'price read': 676095, 'more zoek': 541036, 'zoek cov': 1027678, 'which ha over': 985894, 'ha over 200': 371464, 'over 200 outdoor': 629806, '200 outdoor location': 13524, 'outdoor location throughout': 628900, 'location throughout uk': 498970, 'throughout uk ha': 895000, 'uk ha pledged': 938434, 'ha pledged to': 371503, 'pledged to keep': 660870, 'to keep many': 908811, 'keep many possible': 471650, 'many possible open': 514570, 'possible open to': 665732, 'the public over': 864842, 'public over the': 688211, 'coming week will': 188289, 'week will not': 977255, 'will not charge': 994196, 'not charge it': 568741, 'charge it usual': 173270, 'it usual ticket': 462003, 'usual ticket price': 951041, 'ticket price read': 895656, 'price read more': 676100, 'read more zoek': 700460, 'more zoek cov': 541037, 'delirious': 233067, 'distributed 47': 248028, '47 covid': 19253, 'relief grant': 709360, 'grant in': 362033, 'in 24': 419888, 'little delirious': 495310, 'delirious from': 233068, 'constant email': 195613, 'call but': 155803, 'it worth': 462562, 'what most': 981886, 'store gift': 807931, 'card because': 163470, 'cannot buy': 161686, 'distributed 47 covid': 248029, '47 covid 19': 19254, '19 relief grant': 10081, 'relief grant in': 709361, 'grant in 24': 362034, 'in 24 hour': 419889, '24 hour and': 15611, 'hour and little': 405402, 'and little delirious': 66240, 'little delirious from': 495311, 'delirious from all': 233069, 'all the constant': 44695, 'the constant email': 851475, 'constant email and': 195614, 'email and call': 272110, 'and call but': 59412, 'call but it': 155804, 'but it worth': 146181, 'it worth it': 462568, 'worth it you': 1011386, 'it you know': 462644, 'know what most': 476967, 'what most people': 981887, 'most people need': 542621, 'people need grocery': 648825, 'need grocery store': 554931, 'grocery store gift': 365428, 'store gift card': 807932, 'gift card because': 349936, 'card because they': 163472, 'they are running': 881394, 'food and cannot': 313192, 'and cannot buy': 59507, 'cannot buy more': 161694, 'economy politico': 268144, 'politico politics': 663774, 'the economy politico': 854006, 'economy politico politics': 268145, 'will you still': 995399, 'you still be': 1021399, 'still be paid': 800264, 'be paid and': 116331, 'paid and if': 633965, 'and if so': 64949, 'if so how': 414827, 'so how much': 777342, 'paper wa': 641049, 'late there': 480923, 'were only': 979938, 'only empty': 610387, 'shelf did': 756984, 'not post': 571059, 'shelf on': 757375, 'any social': 79825, 'platform you': 659065, 're welcome': 699795, 'supermarket today to': 823471, 'today to buy': 920350, 'toilet paper wa': 921515, 'paper wa too': 641055, 'wa too late': 963551, 'too late there': 924839, 'late there were': 480924, 'there were only': 879327, 'were only empty': 979942, 'only empty shelf': 610388, 'empty shelf did': 275057, 'shelf did not': 756985, 'did not post': 240727, 'not post photo': 571060, 'empty shelf on': 275082, 'shelf on any': 757376, 'on any social': 599407, 'any social medium': 79827, 'medium platform you': 527227, 'platform you re': 659067, 'you re welcome': 1020791, 'browne': 141264, '1840': 4638, 'browne drug': 141265, 'drug co': 260906, 'co is': 184861, 'nation oldest': 552276, 'oldest skincare': 598698, 'skincare company': 773093, 'company it': 190819, 'business since': 144382, 'since 1840': 770411, '1840 now': 4641, 'browne drug co': 141266, 'drug co is': 260908, 'co is one': 184863, 'the nation oldest': 861254, 'nation oldest skincare': 552277, 'oldest skincare company': 598699, 'skincare company it': 773094, 'company it been': 190820, 'it been in': 456795, 'been in business': 121336, 'in business since': 421080, 'business since 1840': 144383, 'since 1840 now': 770412, '1840 now it': 4642, 'now it making': 575123, 'it making hand': 459523, 'sanitizer in response': 735154, 'wfp': 980871, 'rome italy': 725746, 'programme wfp': 683353, 'rome italy the': 725748, 'italy the unfolding': 462945, 'food programme wfp': 316061, 'competiscan': 191649, 'the competiscan': 851369, 'competiscan insight': 191650, 'insight team': 439642, 'team just': 835714, 'released study': 709084, 'perception regarding': 651246, '19 client': 5841, 'client can': 182013, 'on competiscan': 599998, 'the competiscan insight': 851370, 'competiscan insight team': 191651, 'insight team just': 439644, 'team just released': 835715, 'just released study': 469600, 'released study on': 709085, 'study on consumer': 814938, 'on consumer perception': 600065, 'consumer perception regarding': 198354, 'perception regarding covid': 651247, 'covid 19 client': 212809, '19 client can': 5842, 'client can access': 182014, 'access the full': 28205, 'full report on': 340855, 'report on competiscan': 712141, 'rep': 711410, 'someone contact': 784410, 'were working': 980355, 'retail job': 718254, 'wa refusing': 963077, 'fear about': 301003, 'getting paid': 349175, 'leave employee': 484776, 'were having': 979723, 'cut employee': 223315, 'employee called': 273700, 'called their': 156463, 'their governor': 873428, 'and rep': 70246, 'rep within': 711434, 'within 24': 1002314, 'hour store': 405960, 'closed paid': 183281, 'had someone contact': 373532, 'someone contact me': 784411, 'contact me they': 200143, 'me they were': 523693, 'they were working': 883819, 'were working retail': 980359, 'working retail job': 1008893, 'retail job at': 718255, 'job at store': 465680, 'at store that': 100663, 'store that wa': 810580, 'that wa refusing': 847307, 'wa refusing to': 963078, 'to close despite': 902866, 'close despite fear': 182606, 'despite fear about': 238738, 'fear about covid': 301004, 'instead of getting': 440264, 'of getting paid': 584126, 'getting paid leave': 349180, 'paid leave employee': 634055, 'leave employee were': 484777, 'employee were having': 274403, 'were having their': 979724, 'having their hour': 384323, 'hour cut employee': 405514, 'cut employee called': 223316, 'employee called their': 273701, 'called their governor': 156464, 'their governor and': 873429, 'governor and rep': 360859, 'and rep within': 70247, 'rep within 24': 711435, 'within 24 hour': 1002315, '24 hour store': 15624, 'hour store closed': 405961, 'store closed paid': 807068, 'closed paid leave': 183282, 'unli': 942685, 'patience': 644098, 'declation': 231290, 'unli stupidity': 942686, 'stupidity run': 815554, 'this admin': 886203, 'admin specially': 32422, 'specially in': 788146, 'crisis historical': 217490, 'historical data': 397981, 'poor food': 664174, 'is recipe': 451344, 'recipe to': 704508, 'social unrest': 779995, 'unrest fear': 943347, 'panic amp': 637287, 'amp chaos': 53517, 'chaos stretching': 173061, 'stretching citizen': 813581, 'citizen patience': 178947, 'patience for': 644102, 'easy ml': 265736, 'ml declation': 534714, 'unli stupidity run': 942687, 'stupidity run in': 815555, 'run in this': 727676, 'in this admin': 429899, 'this admin specially': 886204, 'admin specially in': 32423, 'specially in time': 788148, 'of crisis historical': 582162, 'crisis historical data': 217491, 'historical data reveals': 397982, 'data reveals that': 226389, 'reveals that poor': 720345, 'that poor food': 845788, 'poor food security': 664176, 'food security is': 316357, 'security is recipe': 744660, 'is recipe to': 451346, 'recipe to social': 704510, 'to social unrest': 914827, 'social unrest fear': 779999, 'unrest fear panic': 943348, 'fear panic amp': 301283, 'panic amp chaos': 637288, 'amp chaos stretching': 53518, 'chaos stretching citizen': 173062, 'stretching citizen patience': 813582, 'citizen patience for': 178948, 'patience for an': 644103, 'for an easy': 319276, 'an easy ml': 55566, 'easy ml declation': 265737, 'underemployed': 940420, 'be several': 117111, 'several thousand': 753942, 'thousand healthy': 893398, 'healthy unemployed': 387797, 'unemployed or': 941125, 'or underemployed': 617589, 'underemployed people': 940421, 'why isn': 991132, 'government setting': 360588, 'up temporary': 946134, 'temporary job': 837650, 'job portal': 466092, 'match them': 520308, 'with much': 999590, 'needed vacancy': 556566, 'driver carers': 259476, 'carers and': 164565, 'there will soon': 879365, 'soon be several': 785648, 'be several thousand': 117112, 'several thousand healthy': 753943, 'thousand healthy unemployed': 893399, 'healthy unemployed or': 387798, 'unemployed or underemployed': 941126, 'or underemployed people': 617590, 'underemployed people why': 940422, 'people why isn': 650374, 'why isn the': 991134, 'isn the government': 454708, 'the government setting': 856600, 'government setting up': 360589, 'setting up temporary': 753659, 'up temporary job': 946135, 'temporary job portal': 837652, 'job portal to': 466093, 'portal to match': 664958, 'to match them': 909894, 'match them with': 520309, 'them with much': 876651, 'with much needed': 999593, 'much needed vacancy': 545172, 'needed vacancy for': 556567, 'vacancy for delivery': 951561, 'for delivery driver': 320633, 'delivery driver carers': 233895, 'driver carers and': 259477, 'carers and supermarket': 164567, 'and supermarket shelf': 72736, 'supermarket shelf stacker': 822533, 'credited': 216565, 'story wa': 812151, 'wa published': 963008, 'published by': 688642, 'person credited': 652390, 'credited did': 216566, 'not seem': 571500, 'write it': 1012770, 'it memo': 459599, 'memo from': 528402, 'manager re': 512775, 're panicbuying': 699238, 'this story wa': 890369, 'story wa published': 812152, 'wa published by': 963009, 'published by but': 688643, 'by but the': 152032, 'but the person': 147382, 'the person credited': 863581, 'person credited did': 652391, 'credited did not': 216567, 'did not seem': 240732, 'not seem to': 571502, 'seem to write': 746702, 'to write it': 918863, 'write it memo': 1012771, 'it memo from': 459600, 'memo from grocery': 528403, 'store manager re': 808887, 'manager re panicbuying': 512776, 'gamestop': 343320, 'believe have': 126271, 'but on': 146655, 'my best': 547431, 'is stuck': 452400, 'in gamestop': 423213, 'gamestop retail': 343340, 'retail hell': 718180, 'hell because': 388986, 'because her': 119123, 'store refuse': 809779, 'close if': 182664, 'are quarantined': 89371, 'quarantined because': 692828, 'were exposed': 979602, 'buy video': 149430, 'game selfish': 343240, 'cannot believe have': 161667, 'believe have to': 126273, 'to say this': 913847, 'this but on': 886645, 'but on behalf': 146657, 'behalf of my': 123759, 'of my best': 586734, 'my best friend': 547434, 'best friend who': 127704, 'who is stuck': 989118, 'is stuck in': 452402, 'stuck in gamestop': 814592, 'in gamestop retail': 423214, 'gamestop retail hell': 343341, 'retail hell because': 718181, 'hell because her': 388987, 'because her store': 119124, 'her store refuse': 392411, 'store refuse to': 809780, 'refuse to close': 707032, 'to close if': 902878, 'close if you': 182668, 'you are quarantined': 1017210, 'are quarantined because': 89372, 'quarantined because you': 692829, 'because you were': 119881, 'you were exposed': 1022246, 'were exposed to': 979603, '19 do not': 6595, 'do not leave': 249774, 'not leave your': 570354, 'your house to': 1024421, 'house to buy': 406624, 'to buy video': 902333, 'buy video game': 149431, 'video game selfish': 956760, 'game selfish asshole': 343241, 'of 900': 579682, '900 consumer': 23370, 'retail business': 717899, 'find million': 307061, 'in lost': 424932, 'lost sale': 503911, 'sale so': 732531, 'far due': 298758, 'survey of 900': 828909, 'of 900 consumer': 579684, '900 consumer product': 23371, 'product and retail': 680905, 'and retail business': 70426, 'retail business find': 717906, 'business find million': 143740, 'find million in': 307062, 'million in lost': 532195, 'in lost sale': 424934, 'lost sale so': 503914, 'sale so far': 732533, 'so far due': 777024, 'far due to': 298759, 'ghl': 349654, 'paradigm': 641299, 'rm2': 724261, 'extensive': 293295, 'company update': 191271, 'update ghl': 946999, 'ghl system': 349659, 'system paradigm': 831282, 'paradigm shift': 641300, 'in contactless': 421739, 'payment buy': 645571, 'buy rm2': 149134, 'rm2 15': 724262, '15 we': 3862, 'we remain': 973066, 'remain optimistic': 709835, 'optimistic on': 613934, 'on ghl': 601088, 'ghl long': 349657, 'business prospect': 144275, 'prospect amidst': 684663, 'see increasing': 745303, 'increasing shift': 433691, 'behaviour towards': 124545, 'towards digital': 927180, 'digital payment': 242618, 'payment ghl': 645643, 'ghl extensive': 349655, 'extensive presence': 293310, 'presence in': 670554, 'company update ghl': 191272, 'update ghl system': 947000, 'ghl system paradigm': 349660, 'system paradigm shift': 831283, 'paradigm shift in': 641301, 'shift in contactless': 758321, 'in contactless payment': 421740, 'contactless payment buy': 200375, 'payment buy rm2': 645572, 'buy rm2 15': 149135, 'rm2 15 we': 724263, '15 we remain': 3863, 'we remain optimistic': 973073, 'remain optimistic on': 709837, 'optimistic on ghl': 613935, 'on ghl long': 601089, 'ghl long term': 349658, 'long term business': 501673, 'term business prospect': 838075, 'business prospect amidst': 144276, 'prospect amidst covid': 684664, 'pandemic we see': 636949, 'we see increasing': 973161, 'see increasing shift': 745304, 'increasing shift in': 433692, 'in consumer behaviour': 421685, 'consumer behaviour towards': 196605, 'behaviour towards digital': 124546, 'towards digital payment': 927182, 'digital payment ghl': 242621, 'payment ghl extensive': 645644, 'ghl extensive presence': 349656, 'extensive presence in': 293311, 'artisan': 94559, 'buttock': 148194, 'sandpaper': 733712, 'woodworking': 1004333, 'cabinetry': 155004, 'all wipe': 45476, 'wipe our': 996340, 'our artisan': 622123, 'artisan buttock': 94560, 'buttock with': 148197, 'with only': 999910, 'slightly refined': 773972, 'refined wood': 706578, 'wood based': 1004272, 'based paper': 111711, 'start whole': 794642, 'new line': 559038, 'it buttock': 456966, 'buttock in': 148195, 'the raw': 865187, 'raw toiletpaper': 697996, 'toiletpaper artisan': 921754, 'artisan toiletpaper': 94562, 'toiletpaper sandpaper': 922434, 'sandpaper woodworking': 733715, 'woodworking cabinetry': 1004334, 'let all wipe': 486576, 'all wipe our': 45477, 'wipe our artisan': 996342, 'our artisan buttock': 622124, 'artisan buttock with': 94561, 'buttock with only': 148198, 'with only slightly': 999916, 'only slightly refined': 611154, 'slightly refined wood': 773973, 'refined wood based': 706579, 'wood based paper': 1004273, 'based paper think': 111712, 'paper think we': 640903, 'think we should': 885772, 'we should start': 973294, 'should start whole': 766492, 'start whole new': 794643, 'whole new line': 990271, 'new line of': 559039, 'line of tp': 493319, 'tp and call': 927739, 'and call it': 59414, 'call it buttock': 155950, 'it buttock in': 456967, 'buttock in the': 148196, 'in the raw': 429498, 'the raw toiletpaper': 865190, 'raw toiletpaper artisan': 697997, 'toiletpaper artisan toiletpaper': 921755, 'artisan toiletpaper sandpaper': 94563, 'toiletpaper sandpaper woodworking': 922435, 'sandpaper woodworking cabinetry': 733716, 'worshipping': 1011132, 'madmax': 508138, 'next mad': 561437, 'mad max': 507549, 'max movie': 520760, 'movie they': 544080, 'be fighting': 114833, 'paper social': 640796, 'distancing worshipping': 247661, 'worshipping the': 1011135, 'to purell': 912561, 'purell madmax': 690017, 'madmax toiletpaper': 508143, 'the next mad': 861678, 'next mad max': 561438, 'mad max movie': 507552, 'max movie they': 520761, 'movie they ll': 544082, 'll be fighting': 496586, 'be fighting for': 114834, 'fighting for toilet': 305085, 'toilet paper social': 921456, 'paper social distancing': 640797, 'social distancing worshipping': 779773, 'distancing worshipping the': 247662, 'worshipping the road': 1011136, 'the road to': 865937, 'road to purell': 724525, 'to purell madmax': 912562, 'purell madmax toiletpaper': 690018, 'florida pandemic': 310967, 'gouging 10': 359228, '10 pack': 1598, '90 and': 23273, 'and 90': 57520, 'ship it': 758690, 'florida pandemic price': 310968, 'pandemic price gouging': 636234, 'price gouging 10': 674250, 'gouging 10 pack': 359229, '10 pack of': 1600, 'paper for 90': 640173, 'for 90 and': 318946, '90 and 90': 23274, 'and 90 to': 57521, '90 to ship': 23352, 'to ship it': 914427, 'my mind': 549241, 'mind how': 532674, 'doe journalism': 251443, 'journalism survive': 467416, 'and mean': 66842, 'mean journalism': 524515, 'journalism not': 467412, 'not news': 570691, 'news because': 560267, 'there whole': 879351, 'whole lot': 990255, 'of value': 592737, 'value we': 952234, 've under': 953642, 'under estimated': 940077, 'estimated in': 282294, 'in under': 430413, 'threat b2b': 893646, 'b2b and': 106453, 'consumer title': 199301, 'title too': 899299, 'here the big': 393642, 'the big question': 849616, 'big question on': 129943, 'question on my': 693677, 'on my mind': 602296, 'my mind how': 549243, 'mind how doe': 532675, 'how doe journalism': 407743, 'doe journalism survive': 251444, 'journalism survive the': 467417, 'crisis and mean': 217034, 'and mean journalism': 66845, 'mean journalism not': 524516, 'journalism not news': 467413, 'not news because': 570692, 'news because there': 560268, 'because there whole': 119678, 'there whole lot': 879352, 'whole lot of': 990257, 'lot of value': 504319, 'of value we': 592740, 'value we ve': 952236, 'we ve under': 973719, 've under estimated': 953643, 'under estimated in': 940078, 'estimated in under': 282295, 'in under threat': 430417, 'under threat b2b': 940362, 'threat b2b and': 893647, 'b2b and consumer': 106454, 'and consumer title': 60437, 'consumer title too': 199303, 'behavior researcher': 124176, 'researcher explains': 713908, 'consumer behavior researcher': 196509, 'behavior researcher explains': 124177, 'researcher explains why': 713909, 'explains why people': 292261, 'paper amid the': 639794, 'hoodi': 403322, 'tia': 895568, 'bangalore folk': 109459, 'folk how': 312180, 'you managing': 1019776, 'managing to': 512910, 'vegetable almost': 953918, 'almost all': 46529, 'portal are': 664939, 'are non': 88294, 'non functional': 566400, 'functional in': 341302, 'area hoodi': 92055, 'hoodi pls': 403323, 'pls suggest': 661186, 'suggest if': 817516, 'help tia': 390759, 'tia lockdown': 895569, 'bangalore folk how': 109460, 'folk how are': 312181, 'are you managing': 91820, 'you managing to': 1019778, 'managing to get': 512911, 'get grocery and': 347162, 'grocery and vegetable': 364267, 'and vegetable almost': 74876, 'vegetable almost all': 953919, 'almost all of': 46537, 'of the online': 591294, 'shopping portal are': 763653, 'portal are non': 664940, 'are non functional': 88296, 'non functional in': 566401, 'functional in my': 341303, 'my area hoodi': 547296, 'area hoodi pls': 92056, 'hoodi pls suggest': 403324, 'pls suggest if': 661187, 'suggest if you': 817517, 'have any idea': 379307, 'any idea that': 79339, 'idea that could': 413180, 'that could help': 843353, 'could help tia': 209296, 'help tia lockdown': 390760, 'anticipating': 78477, 'washington are': 967765, 'are anticipating': 84570, 'anticipating surge': 78482, 'service business': 752183, 'business closure': 143541, 'layoff related': 482705, '19 continue': 6025, 'to ramp': 912744, 'up throughout': 946299, 'bank in washington': 109930, 'in washington are': 430708, 'washington are anticipating': 967766, 'are anticipating surge': 84571, 'anticipating surge in': 78483, 'demand for their': 235506, 'their service business': 874656, 'service business closure': 752184, 'business closure and': 143542, 'closure and layoff': 183838, 'and layoff related': 66002, 'layoff related to': 482706, 'covid 19 continue': 212855, '19 continue to': 6026, 'continue to ramp': 201240, 'to ramp up': 912745, 'ramp up throughout': 696448, 'up throughout the': 946300, 'throughout the state': 894983, 'watering': 969281, '2023': 14814, 'catapulted': 166928, 'retail sale': 718500, 'reach an': 699893, 'eye watering': 294121, 'watering trillion': 969284, 'trillion by': 931963, 'by 2023': 151587, '2023 the': 14817, 'ecommerce sector': 266860, 'already booming': 47236, 'booming but': 134869, 'but visual': 147695, 'visual capitalist': 959622, 'capitalist katie': 162807, 'katie jones': 471051, 'jones detail': 467241, 'below since': 126729, 'outbreak online': 628502, 'shopping been': 762182, 'been catapulted': 120804, 'catapulted into': 166929, 'into overdrive': 442828, 'with online retail': 999903, 'online retail sale': 608873, 'retail sale estimated': 718506, 'to reach an': 912793, 'reach an eye': 699895, 'an eye watering': 56039, 'eye watering trillion': 294122, 'watering trillion by': 969285, 'trillion by 2023': 931964, 'by 2023 the': 151588, '2023 the ecommerce': 14818, 'the ecommerce sector': 853881, 'ecommerce sector wa': 266861, 'sector wa already': 744388, 'wa already booming': 961482, 'already booming but': 47237, 'booming but visual': 134871, 'but visual capitalist': 147696, 'visual capitalist katie': 959624, 'capitalist katie jones': 162808, 'katie jones detail': 471052, 'jones detail below': 467242, 'detail below since': 239166, 'below since the': 126730, 'the outbreak online': 862672, 'outbreak online shopping': 628503, 'online shopping been': 609049, 'shopping been catapulted': 762183, 'been catapulted into': 120805, 'catapulted into overdrive': 166931, 'ambassador': 51281, 'moncada': 536214, 'ambassador moncada': 51286, 'moncada top': 536215, 'top drug': 925567, 'drug producer': 261064, 'producer consumer': 680593, 'consumer gang': 197567, 'gang up': 343412, 'to block': 901861, 'block venezuela': 132803, 'venezuela amid': 954429, 'ambassador moncada top': 51287, 'moncada top drug': 536216, 'top drug producer': 925568, 'drug producer consumer': 261065, 'producer consumer gang': 680595, 'consumer gang up': 197568, 'gang up to': 343413, 'up to block': 946361, 'to block venezuela': 901864, 'block venezuela amid': 132804, 'venezuela amid covid': 954430, 'appeared': 82141, 'past year': 643658, 've called': 952982, 'called for': 156312, 'an end': 55731, 'the irresponsible': 858467, 'irresponsible way': 445090, 'handle it': 376215, 'it plastic': 460342, 'plastic waste': 658886, 'waste new': 968153, 'much the': 545351, 'the continues': 851675, 'export right': 292700, 'right another': 721763, 'another reason': 77788, 'end export': 275817, 'of plastic': 588157, 'waste ha': 968130, 'ha appeared': 369597, 'appeared covid': 82144, 'the past year': 863370, 'past year we': 643662, 'year we ve': 1015090, 'we ve called': 973643, 've called for': 952984, 'called for an': 156314, 'for an end': 319282, 'an end to': 55736, 'end to the': 276012, 'to the irresponsible': 916817, 'the irresponsible way': 858468, 'irresponsible way the': 445091, 'way the handle': 969936, 'the handle it': 857072, 'handle it plastic': 376218, 'it plastic waste': 460343, 'plastic waste new': 658888, 'waste new report': 968154, 'new report show': 559452, 'report show how': 712255, 'how much the': 408373, 'much the continues': 545352, 'the continues to': 851677, 'continues to export': 201475, 'to export right': 905508, 'export right another': 292701, 'right another reason': 721764, 'another reason to': 77792, 'reason to end': 703026, 'to end export': 905077, 'end export of': 275818, 'export of plastic': 292678, 'of plastic waste': 588160, 'plastic waste ha': 658887, 'waste ha appeared': 968131, 'ha appeared covid': 369599, 'appeared covid 19': 82145, 'paterson': 644006, 'how wonderful': 409251, 'wonderful community': 1004064, 'community foodbank': 189855, 'foodbank of': 317781, 'jersey delivered': 465195, 'delivered 16': 233285, '16 00': 4051, 'to st': 915103, 'st paul': 791746, 'paul community': 644537, 'community development': 189815, 'development corporation': 239812, 'corporation paterson': 207454, 'paterson to': 644009, 'stock their': 802945, 'pantry so': 639664, 'can assist': 157534, 'assist people': 96638, 'people impacted': 648339, 'how wonderful community': 409252, 'wonderful community foodbank': 1004065, 'community foodbank of': 189856, 'foodbank of new': 317782, 'of new jersey': 586973, 'new jersey delivered': 558967, 'jersey delivered 16': 465196, 'delivered 16 00': 233286, '16 00 pound': 4056, 'food to st': 317291, 'to st paul': 915105, 'st paul community': 791747, 'paul community development': 644538, 'community development corporation': 189817, 'development corporation paterson': 239813, 'corporation paterson to': 207455, 'paterson to stock': 644010, 'to stock their': 915455, 'stock their pantry': 802950, 'their pantry so': 874242, 'pantry so they': 639665, 'they can assist': 881613, 'can assist people': 157535, 'assist people impacted': 96639, 'people impacted by': 648340, 'disinfectant kill': 245702, 'and germ': 63550, 'germ sanitizers': 346148, 'sanitizers sanitize': 736383, 'sanitize the': 734221, 'surface of': 828054, 're invaluable': 698918, 'invaluable in': 443585, 'against and': 37326, 'keeping everyone': 472414, 'everyone safe': 287329, 'disinfectant kill bacteria': 245703, 'kill bacteria virus': 474356, 'bacteria virus and': 107708, 'virus and germ': 957926, 'and germ sanitizers': 63552, 'germ sanitizers sanitize': 346149, 'sanitizers sanitize the': 736384, 'sanitize the surface': 734222, 'the surface of': 868998, 'surface of what': 828055, 'of what they': 593064, 'what they come': 982396, 'they come in': 881777, 'contact with they': 200293, 'with they re': 1001669, 'they re invaluable': 883062, 're invaluable in': 698919, 'invaluable in the': 443586, 'fight against and': 304604, 'against and in': 37327, 'and in keeping': 65057, 'in keeping everyone': 424455, 'keeping everyone safe': 472416, 'everyone safe healthy': 287332, 'healthy and protected': 387528, 'wirbleibenzuhause': 996539, 'homeoffice': 402874, 'just ran': 469551, 'paper now': 640516, 'any from': 79257, 'work home': 1005257, 'home at': 400743, 'moment wirbleibenzuhause': 536125, 'wirbleibenzuhause stayathomechallenge': 996542, 'stayathomechallenge homeoffice': 797734, 'just ran out': 469552, 'toilet paper now': 921372, 'paper now know': 640519, 'now know why': 575172, 'know why there': 477058, 'is no more': 449953, 'no more at': 564797, 'more at the': 538673, 'supermarket you can': 824188, 'can take any': 159895, 'take any from': 831945, 'any from work': 79259, 'from work home': 338409, 'work home at': 1005258, 'home at the': 400749, 'the moment wirbleibenzuhause': 860793, 'moment wirbleibenzuhause stayathomechallenge': 536126, 'wirbleibenzuhause stayathomechallenge homeoffice': 996543, 'affected the': 34441, 'elderly aren': 270596, 'even able': 283803, 'essential supermarket': 281612, 'being abused': 124807, 'abused the': 27702, 'thing everyone': 884316, 'do atm': 249108, 'atm is': 101937, 'selfish twat': 748301, 'twat coronacrisis': 936260, 're in crisis': 698867, 'in crisis the': 421897, 'world is affected': 1009684, 'is affected the': 445374, 'affected the elderly': 34443, 'the elderly aren': 854108, 'elderly aren even': 270597, 'aren even able': 92400, 'even able to': 283804, 'buy their essential': 149315, 'their essential supermarket': 873177, 'essential supermarket staff': 281615, 'staff are being': 792179, 'are being abused': 84826, 'being abused the': 124810, 'abused the one': 27703, 'the one thing': 862228, 'one thing everyone': 607218, 'thing everyone can': 884317, 'everyone can do': 286767, 'can do atm': 158094, 'do atm is': 249109, 'atm is work': 101940, 'is work together': 454029, 'work together and': 1005916, 'together and stop': 920701, 'and stop being': 72468, 'being selfish twat': 125749, 'selfish twat coronacrisis': 748303, 'be immune': 115367, 'but ask': 145230, 'yourself are': 1026532, 'dad immune': 224344, 'immune are': 417305, 'grandparent immune': 361977, 'immune is': 417323, 'that old': 845480, 'lady pas': 478807, 'pas at': 643084, 'store immune': 808257, 'immune try': 417373, 'selfish for': 748091, 'life stop': 489063, 'stop hording': 804757, 'hording use': 404033, 'your brain': 1023010, 'may be immune': 520991, 'be immune to': 115368, 'immune to but': 417363, 'to but ask': 902147, 'but ask yourself': 145232, 'ask yourself are': 95690, 'yourself are my': 1026533, 'are my mom': 88180, 'my mom and': 549255, 'mom and dad': 535681, 'and dad immune': 60899, 'dad immune are': 224345, 'immune are my': 417306, 'are my grandparent': 88177, 'my grandparent immune': 548559, 'grandparent immune is': 361978, 'immune is that': 417324, 'is that old': 452676, 'that old lady': 845481, 'old lady pas': 598325, 'lady pas at': 478808, 'pas at the': 643085, 'grocery store immune': 365482, 'store immune try': 808258, 'immune try not': 417374, 'try not being': 934520, 'not being selfish': 568547, 'being selfish for': 125741, 'selfish for the': 748092, 'time in your': 897022, 'in your life': 431101, 'your life stop': 1024645, 'life stop hording': 489066, 'stop hording use': 804759, 'hording use your': 404034, 'use your brain': 949830, 'forecasting': 328896, 'fantastic analysis': 298578, 'analysis and': 57013, 'and forecasting': 63188, 'forecasting ever': 328905, 'ever from': 285314, 'this report': 889873, 'on post': 602859, 'it free': 458130, 'fantastic analysis and': 298579, 'analysis and forecasting': 57016, 'and forecasting ever': 63190, 'forecasting ever from': 328906, 'ever from in': 285315, 'from in this': 336028, 'in this report': 430005, 'this report on': 889875, 'report on post': 712149, 'on post pandemic': 602862, 'pandemic consumer trend': 635197, 'consumer trend and': 199365, 'trend and it': 931270, 'and it free': 65529, 'it free to': 458132, 'free to download': 332239, 'eea': 268926, 'airtravel': 40150, 'consumercomplaint': 199646, 'provides help': 686858, 'to irishconsumers': 908512, 'irishconsumers who': 444902, 'who bought': 988329, 'bought fight': 136557, 'eu uk': 283288, 'uk eea': 938320, 'eea and': 268927, 'expect refund': 290712, 'if based': 413895, 'based in': 111616, 'in ireland': 424155, 'ireland read': 444847, 'your airtravel': 1022763, 'airtravel consumerrights': 40153, 'consumerrights here': 199762, 'here if': 393122, 'have consumercomplaint': 380085, 'provides help to': 686859, 'help to irishconsumers': 390779, 'to irishconsumers who': 908513, 'irishconsumers who bought': 444903, 'who bought fight': 988332, 'bought fight in': 136558, 'fight in eu': 304777, 'in eu uk': 422623, 'eu uk eea': 283289, 'uk eea and': 938321, 'eea and expect': 268928, 'and expect refund': 62482, 'expect refund if': 290713, 'refund if based': 706920, 'if based in': 413896, 'based in ireland': 111619, 'in ireland read': 424160, 'ireland read about': 444848, 'read about your': 700261, 'about your airtravel': 26986, 'your airtravel consumerrights': 1022764, 'airtravel consumerrights here': 40154, 'consumerrights here if': 199764, 'here if you': 393124, 'you have consumercomplaint': 1019028, 'just suggestion': 469922, 'suggestion but': 817629, 'roll stockpile': 725522, 'stockpile is': 803765, 'not quite': 571192, 'quite large': 694883, 'the drama': 853655, 'of visiting': 592835, 'supermarket leave': 821286, 'home stockpilinguk': 402154, 'stockpilinguk stopthespread': 804149, 'stopthespread stopstockpiling': 805923, 'just suggestion but': 469923, 'suggestion but if': 817630, 'feel your food': 302950, 'your food and': 1023908, 'toilet roll stockpile': 921606, 'roll stockpile is': 725523, 'stockpile is not': 803766, 'is not quite': 450167, 'not quite large': 571193, 'quite large enough': 694884, 'large enough and': 479657, 'enough and need': 277321, 'and need the': 67482, 'need the drama': 555742, 'the drama of': 853656, 'drama of visiting': 258251, 'of visiting supermarket': 592841, 'visiting supermarket leave': 959555, 'supermarket leave the': 821288, 'leave the rest': 484975, 'of the family': 591011, 'at home stockpilinguk': 99124, 'home stockpilinguk stopthespread': 402155, 'stockpilinguk stopthespread stopstockpiling': 804150, '19 still': 10846, 'still haunted': 800639, 'haunted my': 379036, 'virus itself': 958423, 'food need': 315516, 'least wont': 484702, 'wont die': 1004241, 'by hunger': 152850, 'hunger while': 411207, 'while im': 986932, 'im in': 416549, 'quarantine thanks': 692603, 'covid 19 still': 213866, '19 still haunted': 10849, 'still haunted my': 800640, 'haunted my country': 379037, 'my country and': 547810, 'country and the': 210448, 'and the scariest': 73568, 'scariest thing is': 741105, 'thing is not': 884478, 'the virus itself': 870853, 'virus itself but': 958424, 'itself but food': 463923, 'but food need': 145738, 'food need to': 315521, 'stock food so': 802147, 'food so at': 316646, 'at least wont': 99567, 'least wont die': 484703, 'wont die by': 1004242, 'die by hunger': 241308, 'by hunger while': 152852, 'hunger while im': 411208, 'while im in': 986933, 'im in quarantine': 416550, 'in quarantine thanks': 427191, 'and haven': 64290, 'gotten single': 359169, 'single thing': 771416, 'thing store': 884776, 'open at': 612093, '6am shelf': 21575, 'empty by': 274830, 'by 7am': 151706, '7am if': 22420, 'stockpiling rn': 804061, 'rn you': 724356, 'are trash': 91187, 'trash coronacrisis': 930150, 'the supermarket day': 868547, 'supermarket day in': 819895, 'row and haven': 726567, 'and haven gotten': 64292, 'haven gotten single': 383817, 'gotten single thing': 359170, 'single thing store': 771417, 'thing store open': 884777, 'store open at': 809251, 'open at 6am': 612095, 'at 6am shelf': 97728, '6am shelf are': 21576, 'are empty by': 86144, 'empty by 7am': 274831, 'by 7am if': 151707, '7am if you': 22421, 'you are stockpiling': 1017244, 'are stockpiling rn': 90525, 'stockpiling rn you': 804062, 'rn you are': 724357, 'you are trash': 1017269, 'are trash coronacrisis': 91188, 'assured': 97106, 'the our': 862576, 'ha immediately': 370907, 'immediately and': 417053, 'notice stopped': 573359, 'stopped accepting': 805674, 'accepting walk': 28094, 'customer rest': 222764, 'rest assured': 716149, 'assured we': 97130, 'remain committed': 709727, 'are encouraging': 86195, 'encouraging you': 275747, 'other available': 619862, 'available mean': 104490, 'contacting our': 200346, 'affair unit': 34095, 'since the threat': 770910, 'threat of coronavirus': 893690, '19 the our': 11228, 'the our ha': 862577, 'our ha immediately': 623335, 'ha immediately and': 370908, 'immediately and until': 417056, 'and until further': 74717, 'further notice stopped': 342115, 'notice stopped accepting': 573360, 'stopped accepting walk': 805675, 'accepting walk in': 28095, 'walk in customer': 964802, 'in customer rest': 421946, 'customer rest assured': 222765, 'rest assured we': 716152, 'assured we remain': 97131, 'we remain committed': 973068, 'remain committed to': 709728, 'committed to you': 189050, 'to you and': 918890, 'you and so': 1017004, 'and so we': 71855, 'we are encouraging': 970541, 'are encouraging you': 86198, 'encouraging you to': 275748, 'use the other': 949685, 'the other available': 862511, 'other available mean': 619863, 'available mean of': 104491, 'mean of contacting': 524581, 'of contacting our': 581806, 'contacting our consumer': 200347, 'our consumer affair': 622517, 'consumer affair unit': 196104, 'thunder': 895305, 'doris': 255891, 'saino': 731637, '376': 18108, 'your queuing': 1025506, 'park before': 641878, 'before 7am': 122593, '7am your': 22448, 'your massive': 1024792, 'massive thunder': 520146, 'thunder cunt': 895306, 'cunt driving': 220362, 'driving past': 259986, 'past sainsbury': 643598, 'and never': 67532, 'on doris': 600395, 'doris let': 255892, 'get saino': 347948, 'saino for': 731638, 'for 7am': 318923, '7am don': 22414, 'think 376': 885067, '376 toilet': 18109, 'if your queuing': 415604, 'your queuing to': 1025507, 'get on supermarket': 347697, 'car park before': 163213, 'park before 7am': 641879, 'before 7am your': 122595, '7am your massive': 22449, 'your massive thunder': 1024793, 'massive thunder cunt': 520147, 'thunder cunt driving': 895307, 'cunt driving past': 220363, 'driving past sainsbury': 259987, 'past sainsbury this': 643599, 'morning and never': 541161, 'and never seen': 67540, 'anything like it': 80821, 'like it come': 490528, 'it come on': 457208, 'come on doris': 187429, 'on doris let': 600396, 'doris let get': 255893, 'let get saino': 486735, 'get saino for': 347949, 'saino for 7am': 731639, 'for 7am don': 318924, '7am don think': 22415, 'don think 376': 253970, 'think 376 toilet': 885068, '376 toilet roll': 18110, 'toilet roll is': 921576, 'roll is enough': 725351, 'gearing': 345023, 'the predicts': 864226, 'predicts scammer': 669693, 'are gearing': 86773, 'gearing up': 345026, 'advantage should': 33057, 'government enact': 360062, 'enact plan': 275489, 'american amid': 51778, 'ftc say': 339443, 'keep these': 472122, 'potential plan': 667114, 'plan take': 658235, 'the predicts scammer': 864227, 'predicts scammer are': 669694, 'scammer are gearing': 740534, 'are gearing up': 86774, 'gearing up to': 345028, 'up to take': 946434, 'take advantage should': 831918, 'advantage should the': 33058, 'should the government': 766570, 'the government enact': 856532, 'government enact plan': 360063, 'enact plan to': 275490, 'plan to send': 658320, 'to send money': 914217, 'send money to': 749909, 'money to all': 537084, 'all american amid': 42001, 'american amid the': 51779, 'the ftc say': 855938, 'ftc say to': 339444, 'say to keep': 739390, 'to keep these': 908867, 'keep these thing': 472125, 'these thing in': 880816, 'thing in mind': 884436, 'mind the potential': 532743, 'the potential plan': 864123, 'potential plan take': 667115, 'plan take shape': 658236, 'jobforone': 466318, 'aretwonecessary': 92633, 'suck seeing': 816924, 'seeing so': 746468, 'many pair': 514468, 'pair couple': 634326, 'couple walking': 211699, 'rethink the': 719655, 'daily habit': 224630, 'personal exposure': 652837, 'exposure and': 292954, 'spread jobforone': 790597, 'jobforone aretwonecessary': 466319, 'aretwonecessary trumpvirus': 92634, 'suck seeing so': 816925, 'seeing so many': 746469, 'so many pair': 777688, 'many pair couple': 514469, 'pair couple walking': 634327, 'couple walking into': 211700, 'walking into supermarket': 965067, 'into supermarket people': 443053, 'supermarket people need': 821952, 'need to rethink': 556049, 'to rethink the': 913467, 'rethink the impact': 719656, 'impact of their': 417805, 'of their daily': 591656, 'their daily habit': 872967, 'daily habit and': 224631, 'habit and the': 372563, 'impact on their': 417895, 'on their personal': 604496, 'their personal exposure': 874280, 'personal exposure and': 652838, 'exposure and potential': 292959, 'and potential spread': 69261, 'potential spread jobforone': 667140, 'spread jobforone aretwonecessary': 790598, 'jobforone aretwonecessary trumpvirus': 466320, 'had grocery': 373153, 'supermarket should': 822675, 'wash the': 967543, 'food container': 314005, 'container dr': 200539, 'dr williams': 258127, 'williams of': 995443, 'of say': 589347, 'evidence is': 288362, 'spread that': 790811, 'way but': 969507, 'can wash': 160147, 'hand after': 374727, 'handling to': 376404, 'lower risk': 505989, 'risk more': 723694, 'had grocery delivered': 373154, 'grocery delivered from': 364423, 'delivered from supermarket': 233331, 'from supermarket should': 337502, 'supermarket should wash': 822682, 'should wash the': 766633, 'wash the food': 967546, 'the food container': 855540, 'food container dr': 314007, 'container dr williams': 200540, 'dr williams of': 258128, 'williams of say': 995444, 'of say no': 589348, 'say no evidence': 738980, 'no evidence is': 564144, 'evidence is being': 288364, 'being spread that': 125849, 'spread that way': 790813, 'that way but': 847341, 'way but you': 969510, 'you can wash': 1017828, 'can wash hand': 160148, 'wash hand after': 967475, 'hand after handling': 374732, 'after handling to': 35748, 'handling to lower': 376405, 'to lower risk': 909509, 'lower risk more': 505990, 'on positive': 602850, 'positive note': 665380, 'note offer': 572774, 'offer golden': 594639, 'golden opportunity': 356057, 'quit tobacco': 694815, 'amp alcohol': 53364, 'alcohol consumer': 40963, 'of either': 583003, 'either one': 270341, 'them or': 876109, 'or both': 614571, 'both will': 136093, 'have tough': 383379, 'time dealing': 896544, 'virus once': 958555, 'once affected': 605552, 'affected quit': 34419, 'quit smoking': 694813, 'smoking amp': 775896, 'amp drinking': 53677, 'on positive note': 602852, 'positive note offer': 665383, 'note offer golden': 572775, 'offer golden opportunity': 594640, 'golden opportunity to': 356058, 'opportunity to quit': 613718, 'to quit tobacco': 912695, 'quit tobacco product': 694816, 'tobacco product amp': 919080, 'product amp alcohol': 680860, 'amp alcohol consumer': 53365, 'alcohol consumer of': 40964, 'consumer of either': 198239, 'of either one': 583005, 'either one of': 270343, 'of them or': 591756, 'them or both': 876110, 'or both will': 614573, 'both will have': 136094, 'will have tough': 993680, 'have tough time': 383380, 'tough time dealing': 926849, 'time dealing with': 896545, 'dealing with the': 229696, 'the virus once': 870869, 'virus once affected': 958556, 'once affected quit': 605553, 'affected quit smoking': 34420, 'quit smoking amp': 694814, 'smoking amp drinking': 775897, 'proppa': 684574, 'love it': 504708, 'quarantine proppa': 692448, 'proppa to': 684575, 'the honey': 857481, 'honey getting': 403173, 'getting wiser': 349445, 'wiser using': 996728, 'love it when': 504715, 'when you quarantine': 984592, 'you quarantine proppa': 1020522, 'quarantine proppa to': 692449, 'proppa to the': 684576, 'to the honey': 916782, 'the honey getting': 857482, 'honey getting wiser': 403174, 'getting wiser using': 349446, 'wiser using hand': 996729, 'prebagged': 669240, 'grocer effort': 364120, 'accelerate online': 27850, 'and parking': 68719, 'lot pickup': 504343, 'pickup can': 655948, 'come soon': 187511, 'soon enough': 785699, 'enough ve': 277747, 've also': 952828, 'also seen': 48845, 'seen store': 747253, 'offer prebagged': 594749, 'prebagged essential': 669241, 'least let': 484530, 'people reserve': 649286, 'reserve shopping': 714094, 'window via': 995729, 'internet to': 442031, 'limit traffic': 492543, 'grocer effort to': 364121, 'effort to accelerate': 269609, 'to accelerate online': 899931, 'accelerate online ordering': 27851, 'ordering and parking': 618944, 'and parking lot': 68720, 'parking lot pickup': 642100, 'lot pickup can': 504344, 'pickup can come': 655949, 'can come soon': 157936, 'come soon enough': 187512, 'soon enough ve': 785701, 'enough ve also': 277748, 've also seen': 952832, 'also seen store': 48846, 'seen store offer': 747254, 'store offer prebagged': 809155, 'offer prebagged essential': 594750, 'prebagged essential at': 669242, 'essential at the': 280808, 'very least let': 955298, 'least let people': 484531, 'let people reserve': 486976, 'people reserve shopping': 649287, 'reserve shopping window': 714095, 'shopping window via': 764423, 'window via phone': 995730, 'via phone and': 956168, 'and internet to': 65335, 'internet to limit': 442032, 'to limit traffic': 909305, 'eff': 268955, 'grass': 362209, 'shauntel': 755801, 'sure this': 827751, 'lady felt': 478757, 'felt great': 303390, 'about her': 25372, 'her little': 392169, 'little service': 495560, 'service project': 752718, 'project but': 683478, 'the eff': 854060, 'eff did': 268956, '80 extra': 22569, 'extra roll': 293625, 'neighbor wouldn': 557098, 'wouldn need': 1012493, 'need donation': 554701, 'your crazy': 1023373, 'crazy grass': 215299, 'grass hadn': 362220, 'hadn been': 373842, 'been hoarding': 121301, 'hoarding shauntel': 399512, 'shauntel toiletpaper': 755802, 'sure this lady': 827755, 'this lady felt': 888586, 'lady felt great': 478758, 'felt great about': 303391, 'great about her': 362481, 'about her little': 25376, 'her little service': 392170, 'little service project': 495561, 'service project but': 752719, 'project but why': 683479, 'but why the': 147865, 'why the eff': 991413, 'the eff did': 854061, 'eff did you': 268957, 'did you have': 240932, 'you have 80': 1019010, 'have 80 extra': 379104, '80 extra roll': 22570, 'extra roll of': 293626, 'paper to begin': 640918, 'begin with your': 123607, 'with your neighbor': 1002214, 'your neighbor wouldn': 1024964, 'neighbor wouldn need': 557099, 'wouldn need donation': 1012494, 'need donation of': 554705, 'donation of your': 254657, 'of your crazy': 593455, 'your crazy grass': 1023374, 'crazy grass hadn': 215300, 'grass hadn been': 362221, 'hadn been hoarding': 373845, 'been hoarding shauntel': 121303, 'hoarding shauntel toiletpaper': 399513, 'recent day the': 703866, 'day the washington': 228502, 'the washington post': 871108, 'uneasy': 941065, 'snowstorm': 776415, 'ha many': 371234, 'people feeling': 647897, 'feeling uneasy': 303092, 'uneasy and': 941066, 'and helpless': 64499, 'helpless building': 391577, 'building supply': 142143, 'water will': 969260, 'ease some': 265100, 'stress and': 813295, 'help georgian': 389796, 'georgian prepare': 346060, 'emergency be': 272610, 'it medical': 459589, 'medical quarantine': 526352, 'quarantine snowstorm': 692542, 'snowstorm or': 776418, 'coronavirus ha many': 206027, 'ha many people': 371239, 'many people feeling': 514503, 'people feeling uneasy': 647898, 'feeling uneasy and': 303093, 'uneasy and helpless': 941067, 'and helpless building': 64500, 'helpless building supply': 391578, 'building supply of': 142144, 'supply of emergency': 825621, 'of emergency food': 583035, 'emergency food and': 272699, 'and water will': 75265, 'water will help': 969262, 'will help ease': 993708, 'help ease some': 389622, 'ease some of': 265101, 'of the stress': 591503, 'the stress and': 868268, 'stress and help': 813299, 'and help georgian': 64451, 'help georgian prepare': 389797, 'georgian prepare for': 346061, 'prepare for any': 670067, 'for any kind': 319413, 'any kind of': 79390, 'kind of emergency': 474890, 'of emergency be': 583028, 'emergency be it': 272611, 'be it medical': 115563, 'it medical quarantine': 459590, 'medical quarantine snowstorm': 526353, 'quarantine snowstorm or': 692543, 'rv': 728709, 'curtin': 221812, 'member tune': 528225, 'in wed': 430737, 'special webinar': 788094, 'webinar longtime': 975055, 'longtime rv': 502143, 'rv industry': 728717, 'analyst dr': 57124, 'dr curtin': 257990, 'curtin discus': 221813, 'confidence in': 193895, 'won want': 1003931, 'to miss': 910186, 'miss this': 534204, 'today webinar': 920491, 'member tune in': 528226, 'tune in wed': 935409, 'in wed for': 430738, 'wed for special': 975550, 'for special webinar': 325813, 'special webinar longtime': 788096, 'webinar longtime rv': 975056, 'longtime rv industry': 502144, 'rv industry analyst': 728718, 'industry analyst dr': 435623, 'analyst dr curtin': 57125, 'dr curtin discus': 257991, 'curtin discus consumer': 221814, 'discus consumer confidence': 244837, 'consumer confidence in': 196905, 'confidence in the': 193901, '19 you won': 12279, 'you won want': 1022406, 'won want to': 1003932, 'want to miss': 966069, 'to miss this': 910187, 'miss this sign': 534210, 'this sign up': 890148, 'sign up today': 769258, 'up today webinar': 946459, 'petfood': 653572, 'petfoodlidding': 653579, 'petadoption': 653488, 'booming right': 134893, 'in pet': 426661, 'pet adoption': 653349, 'adoption the': 32728, 'is boosting': 446234, 'boosting the': 135089, 'food commerce': 313967, 'commerce channel': 188529, 'channel petfood': 172917, 'petfood petfoodlidding': 653573, 'petfoodlidding petadoption': 653580, 'market is booming': 516617, 'is booming right': 446228, 'booming right now': 134894, 'now with an': 576442, 'with an increase': 997215, 'increase in pet': 432856, 'in pet adoption': 426662, 'pet adoption the': 653351, 'adoption the demand': 32729, 'demand for pet': 235473, 'for pet food': 324509, 'pet food is': 653389, 'food is at': 315111, 'is at an': 445854, 'time high and': 896927, 'high and it': 394923, 'it is boosting': 458889, 'is boosting the': 446236, 'boosting the pet': 135090, 'the pet food': 863608, 'pet food commerce': 653383, 'food commerce channel': 313968, 'commerce channel petfood': 188532, 'channel petfood petfoodlidding': 172918, 'petfood petfoodlidding petadoption': 653574, 'guardrail': 367921, 'confidentiality': 194022, 'monetizing': 536560, 'sound promising': 786321, 'promising same': 683752, 'same apply': 732967, 'privacy what': 678845, 'the guardrail': 856916, 'guardrail established': 367922, 'established to': 282036, 'non sale': 566488, 'and confidentiality': 60280, 'confidentiality of': 194023, 'my dna': 548013, 'dna data': 248982, 'data used': 226481, 'testing are': 839447, 'you protecting': 1020471, 'protecting my': 685214, 'my privacy': 549847, 'privacy or': 678825, 'or monetizing': 616149, 'monetizing my': 536562, 'my illness': 548821, 'sound promising same': 786322, 'promising same apply': 683753, 'same apply to': 732968, 'apply to about': 82607, 'to about consumer': 899910, 'about consumer privacy': 25000, 'consumer privacy what': 198438, 'privacy what are': 678846, 'are the guardrail': 90838, 'the guardrail established': 856917, 'guardrail established to': 367923, 'established to ensure': 282037, 'ensure the non': 278087, 'the non sale': 861842, 'non sale and': 566489, 'sale and confidentiality': 732036, 'and confidentiality of': 60281, 'confidentiality of my': 194024, 'of my dna': 586757, 'my dna data': 548014, 'dna data used': 248983, 'data used for': 226482, 'used for testing': 949911, 'for testing are': 326235, 'testing are you': 839449, 'are you protecting': 91837, 'you protecting my': 1020472, 'protecting my privacy': 685215, 'my privacy or': 549848, 'privacy or monetizing': 678826, 'or monetizing my': 616150, 'monetizing my illness': 536563, 'fox 10': 330740, '10 news': 1558, 'news phoenix': 560697, 'phoenix chandler': 654859, 'fox 10 news': 330741, '10 news phoenix': 1559, 'news phoenix chandler': 560698, 'phoenix chandler restaurant': 654860, 'cratered': 215147, 'poised': 662783, 'quarterly': 693271, 'financialmarkets': 306702, 'the 500': 848140, '500 ended': 19983, 'ended another': 276125, 'another volatile': 77942, 'volatile day': 960039, 'day down': 227536, 'price cratered': 673335, 'cratered the': 215154, 'is poised': 450922, 'poised for': 662784, 'worst quarterly': 1011252, 'quarterly contraction': 693274, 'contraction ever': 201798, 'ever trump': 285568, 'trump financialmarkets': 933559, 'financialmarkets oilprices': 306703, 'the 500 ended': 848143, '500 ended another': 19984, 'ended another volatile': 276126, 'another volatile day': 77943, 'volatile day down': 960040, 'day down and': 227537, 'down and oil': 256506, 'oil price cratered': 597094, 'price cratered the': 673336, 'cratered the economy': 215155, 'economy is poised': 268011, 'is poised for': 450923, 'poised for it': 662785, 'it worst quarterly': 462559, 'worst quarterly contraction': 1011253, 'quarterly contraction ever': 693275, 'contraction ever trump': 201799, 'ever trump financialmarkets': 285569, 'trump financialmarkets oilprices': 933560, 'conserve': 194928, 'stopped watching': 805777, 'house shit': 406552, 'show briefing': 766882, 'briefing watching': 139751, 'watching trump': 968814, 'trump speak': 933855, 'speak make': 787692, 'take dump': 832086, 'dump need': 262178, 'to conserve': 903215, 'conserve toiletpaper': 194931, 'stopped watching the': 805778, 'watching the white': 968807, 'white house shit': 987861, 'house shit show': 406553, 'shit show briefing': 759221, 'show briefing watching': 766883, 'briefing watching trump': 139752, 'watching trump speak': 968815, 'trump speak make': 933856, 'speak make me': 787693, 'to take dump': 916174, 'take dump need': 832087, 'dump need to': 262179, 'need to conserve': 555891, 'to conserve toiletpaper': 903216, 'doing is': 252471, 'isolating the': 455148, 'others most': 621536, 'most at': 542120, 'economy while': 268349, 'elderly continue': 270635, 'most important thing': 542413, 'important thing we': 419033, 'be doing is': 114519, 'doing is isolating': 252476, 'is isolating the': 449004, 'isolating the old': 455149, 'the old and': 862130, 'old and others': 598139, 'and others most': 68450, 'others most at': 621537, 'most at risk': 542122, 'but we re': 147758, 're not doing': 699086, 'not doing that': 569090, 'doing that we': 252711, 'we re killing': 972907, 're killing the': 698965, 'killing the economy': 474715, 'the economy while': 854039, 'economy while the': 268350, 'while the elderly': 987383, 'the elderly continue': 854117, 'elderly continue to': 270636, 'continue to shop': 201258, 'to shop at': 914449, 'shop at the': 759959, 'mlb': 534749, 'wahl': 964040, 'mlb ticket': 534750, 'change alex': 171897, 'alex wahl': 41591, 'wahl tag': 964041, 'tag mlb': 831763, 'mlb ticket price': 534751, 'ticket price covid': 895646, '19 what need': 12002, 'what need to': 981909, 'need to change': 555882, 'to change alex': 902591, 'change alex wahl': 171898, 'alex wahl tag': 41592, 'wahl tag mlb': 964042, 'tsunami': 934966, 'related monetary': 708488, 'monetary tsunami': 536555, 'tsunami impact': 934971, 'on bitcoin': 599650, 'bitcoin and': 131797, 'and gold': 63813, '19 related monetary': 10056, 'related monetary tsunami': 708489, 'monetary tsunami impact': 536556, 'tsunami impact on': 934972, 'impact on bitcoin': 417826, 'on bitcoin and': 599651, 'bitcoin and gold': 131800, 'and gold price': 63817, 'many story': 514743, 'supermarket even': 820219, 'even pharmacy': 284466, 'pharmacy hiking': 654346, 'essential such': 281605, 'such cleaning': 816400, 'product medicine': 681405, 'medicine just': 526826, 'just remember': 469602, 'remember who': 710427, 'they avoid': 881515, 'avoid them': 105339, 'whole panic': 990296, 'least calm': 484417, 'far too many': 298955, 'too many story': 924893, 'many story of': 514744, 'story of store': 812073, 'of store supermarket': 590268, 'store supermarket even': 810455, 'supermarket even pharmacy': 820223, 'even pharmacy hiking': 284467, 'pharmacy hiking up': 654347, 'on essential such': 600595, 'essential such cleaning': 281606, 'such cleaning product': 816401, 'cleaning product medicine': 181033, 'product medicine just': 681406, 'medicine just remember': 526827, 'just remember who': 469611, 'remember who are': 710428, 'who are they': 988241, 'are they avoid': 90992, 'they avoid them': 881517, 'avoid them when': 105340, 'them when this': 876608, 'when this whole': 984314, 'this whole panic': 891382, 'whole panic is': 990297, 'panic is over': 638220, 'over or at': 630460, 'at least calm': 99474, 'least calm down': 484418, 'man lick': 512137, 'lick his': 488199, 'his finger': 397429, 'finger before': 307791, 'before walking': 123275, 'assume all': 96999, 'been touched': 122253, 'touched by': 926606, 'by person': 153567, 'who licked': 989199, 'licked themselves': 488225, 'me down': 522680, 'down here': 256829, 'anxiety hole': 78722, 'hole wtf': 400243, 'wtf anxiety': 1013267, 'saw man lick': 738164, 'man lick his': 512138, 'lick his finger': 488200, 'his finger before': 397431, 'finger before walking': 307793, 'before walking into': 123276, 'walking into the': 965068, 'today so just': 920191, 'so just assume': 777489, 'just assume all': 468238, 'assume all your': 97000, 'all your product': 45580, 'your product have': 1025438, 'product have been': 681250, 'have been touched': 379723, 'been touched by': 122254, 'touched by person': 926610, 'by person who': 153568, 'person who licked': 652728, 'who licked themselves': 989202, 'licked themselves and': 488226, 'themselves and join': 876754, 'and join me': 65673, 'join me down': 466773, 'me down here': 522681, 'down here in': 256830, 'here in my': 393164, 'in my anxiety': 425533, 'my anxiety hole': 547276, 'anxiety hole wtf': 78723, 'hole wtf anxiety': 400244, 'beaver': 118832, 'royal dutch': 726614, 'dutch shell': 263513, 'shell the': 757883, 'company building': 190500, 'building beaver': 142058, 'beaver county': 118833, 'county petrochemical': 211470, 'petrochemical complex': 653678, 'complex plan': 192409, 'cut billion': 223251, 'it operating': 460135, 'operating cost': 613063, 'combat covid': 186999, 'royal dutch shell': 726615, 'dutch shell the': 263514, 'shell the company': 757884, 'the company building': 851316, 'company building beaver': 190501, 'building beaver county': 142059, 'beaver county petrochemical': 118834, 'county petrochemical complex': 211471, 'petrochemical complex plan': 653679, 'complex plan to': 192410, 'to cut billion': 903868, 'cut billion from': 223252, 'billion from it': 130824, 'from it operating': 336126, 'it operating cost': 460136, 'operating cost to': 613066, 'cost to combat': 208134, 'to combat covid': 902991, 'combat covid 19': 187000, '19 hit to': 7552, 'hit to global': 398474, 'to global oil': 906746, 'arrogant': 94022, 'beatty': 118637, 'stokenewington': 804245, 'fat arrogant': 300196, 'arrogant bastard': 94023, 'bastard who': 112516, 'of beatty': 580597, 'beatty road': 118638, 'in stokenewington': 428363, 'stokenewington ha': 804246, 'put all': 690497, 'all his': 43118, 'selling gel': 749266, 'gel for': 345116, '99 wait': 23913, 'the fat arrogant': 854975, 'fat arrogant bastard': 300197, 'arrogant bastard who': 94024, 'bastard who owns': 112521, 'who owns the': 989401, 'owns the corner': 632639, 'the corner shop': 851750, 'corner shop at': 203669, 'at the top': 101130, 'the top of': 869788, 'top of beatty': 925631, 'of beatty road': 580598, 'beatty road in': 118639, 'road in stokenewington': 724460, 'in stokenewington ha': 428364, 'stokenewington ha put': 804247, 'ha put all': 371588, 'put all his': 690501, 'all his price': 43126, 'his price up': 397730, 'price up and': 677220, 'up and selling': 944369, 'and selling gel': 71234, 'selling gel for': 749267, 'gel for 99': 345118, 'for 99 wait': 318966, '99 wait until': 23914, 'wait until this': 964246, 'until this is': 943901, 'freehold': 332414, 'terroristic': 838619, 'freehold man': 332419, 'been charged': 120816, 'with making': 999366, 'making terroristic': 511399, 'terroristic threat': 838620, 'threat after': 893627, 'after purposely': 36093, 'purposely coughing': 690180, 'grocery employee': 364488, 'claiming he': 179903, 'freehold man ha': 332420, 'ha been charged': 369746, 'been charged with': 120818, 'charged with making': 173429, 'with making terroristic': 999367, 'making terroristic threat': 511400, 'terroristic threat after': 838621, 'threat after purposely': 893630, 'after purposely coughing': 36094, 'purposely coughing on': 690181, 'coughing on grocery': 208718, 'on grocery employee': 601182, 'grocery employee and': 364490, 'employee and claiming': 273557, 'and claiming he': 59915, 'claiming he had': 179905, 'he had covid': 385046, '19 full story': 7165, 'spicier': 789230, 'spicier democrat': 789231, 'democrat will': 236752, 'probably say': 679365, 'are killing': 87683, 'killing fish': 474675, 'fish by': 309298, 'taking chloroquine': 833311, 'spicier democrat will': 789232, 'democrat will probably': 236753, 'will probably say': 994468, 'probably say we': 679366, 'we are killing': 970604, 'are killing fish': 87684, 'killing fish by': 474676, 'fish by taking': 309299, 'by taking chloroquine': 154205, 'parched': 641540, 'scratcher': 742622, 'be special': 117322, 'special place': 788018, 'who panic': 989404, 'now knowing': 575173, 'knowing full': 477113, 'full well': 340977, 'well that': 978647, 'are deliberately': 85747, 'deliberately depriving': 232963, 'depriving others': 237716, 'others of': 621556, 'their pet': 874283, 'those parched': 892310, 'parched as': 641541, 'as scratcher': 94801, 'scratcher who': 742623, 'who raise': 989489, 'for take': 326121, 'will be special': 992694, 'be special place': 117323, 'special place in': 788019, 'place in hell': 657508, 'in hell for': 423626, 'hell for people': 389007, 'people who panic': 650327, 'who panic buy': 989407, 'panic buy now': 637512, 'buy now knowing': 149016, 'now knowing full': 575174, 'knowing full well': 477114, 'full well that': 340978, 'well that they': 978651, 'they are deliberately': 881247, 'are deliberately depriving': 85748, 'deliberately depriving others': 232964, 'depriving others of': 237717, 'others of essential': 621557, 'essential and food': 280780, 'food for their': 314577, 'for their pet': 326859, 'their pet and': 874285, 'pet and for': 653355, 'and for those': 63165, 'for those parched': 327129, 'those parched as': 892311, 'parched as scratcher': 641542, 'as scratcher who': 94802, 'scratcher who raise': 742624, 'who raise price': 989490, 'price for take': 674053, 'for take advantage': 326122, 'buggy': 141913, 'demolished': 236803, 'store made': 808845, 'panic more': 638332, 'than anything': 840358, 'anything the': 80901, 'the scarcity': 866438, 'scarcity of': 740840, 'of resource': 588985, 'resource we': 714926, 'this saw': 889963, 'with gallon': 998598, 'milk in': 531696, 'her buggy': 391902, 'buggy the': 141918, 'the egg': 854086, 'egg were': 270027, 'gone bread': 356230, 'aisle wa': 40417, 'wa demolished': 961948, 'demolished coronapocolypse': 236804, 'grocery store made': 365548, 'store made me': 808848, 'made me panic': 507841, 'me panic more': 523320, 'panic more than': 638333, 'more than anything': 540592, 'than anything the': 840361, 'anything the scarcity': 80902, 'the scarcity of': 866439, 'scarcity of resource': 740848, 'of resource we': 588989, 'resource we do': 714927, 'hoard food like': 398792, 'food like this': 315315, 'like this saw': 491524, 'this saw woman': 889964, 'woman with gallon': 1003697, 'with gallon of': 998599, 'gallon of milk': 343046, 'of milk in': 586511, 'milk in her': 531698, 'in her buggy': 423652, 'her buggy the': 391904, 'buggy the egg': 141919, 'the egg were': 854091, 'egg were gone': 270028, 'were gone bread': 979691, 'gone bread aisle': 356231, 'bread aisle wa': 138385, 'aisle wa demolished': 40420, 'wa demolished coronapocolypse': 961949, 'alertnotanxious': 41565, 'hard not': 377976, 'panic when': 638774, 'empty alertnotanxious': 274748, 'it hard not': 458488, 'hard not to': 377977, 'to panic when': 911435, 'panic when grocery': 638778, 'are empty alertnotanxious': 86135, 'ha gas': 370703, 'california seen': 155567, 'local costco': 497863, 'costco gas': 208228, 'gas tonight': 344163, 'tonight costco': 924394, '19 ha gas': 7347, 'ha gas price': 370704, 'price down in': 673525, 'down in california': 256854, 'in california seen': 421146, 'california seen at': 155568, 'seen at my': 746958, 'my local costco': 549109, 'local costco gas': 497864, 'costco gas tonight': 208229, 'gas tonight costco': 344164, 'iri': 444881, 'specializing': 788135, 'from iri': 336085, 'iri market': 444882, 'market analytics': 515946, 'analytics firm': 57225, 'firm specializing': 308419, 'specializing in': 788136, 'trend ha': 931347, 'ha shared': 371885, 'shared national': 755430, 'national finding': 552508, 'finding on': 307517, 'how shopper': 408672, 'which sector': 986293, 'sector are': 744093, 'you finding': 1018585, 'finding yourself': 307578, 'in learn': 424657, 'data from iri': 226230, 'from iri market': 336086, 'iri market analytics': 444883, 'market analytics firm': 515948, 'analytics firm specializing': 57226, 'firm specializing in': 308420, 'specializing in consumer': 788137, 'consumer trend ha': 199375, 'trend ha shared': 931348, 'ha shared national': 371886, 'shared national finding': 755431, 'national finding on': 552509, 'finding on how': 307520, 'on how shopper': 601423, 'how shopper are': 408673, 'shopper are dealing': 761387, '19 which sector': 12040, 'which sector are': 986294, 'sector are you': 744101, 'are you finding': 91792, 'you finding yourself': 1018586, 'finding yourself in': 307579, 'yourself in learn': 1026644, 'in learn more': 424658, 'purchasing trend': 689939, 'trend article': 931282, 'by tonight': 154572, 'tonight fascinating': 924410, 'chain and consumer': 170457, 'and consumer purchasing': 60421, 'consumer purchasing trend': 198628, 'purchasing trend article': 689940, 'trend article by': 931283, 'article by tonight': 94287, 'by tonight fascinating': 154573, 'warning from': 967127, 'the want': 871058, 'your relief': 1025558, 'relief check': 709299, 'check scammer': 174613, 'scammer do': 740563, 'do too': 250418, 'warning from the': 967132, 'from the want': 337917, 'the want to': 871059, 'get your relief': 348729, 'your relief check': 1025559, 'relief check scammer': 709306, 'check scammer do': 174615, 'scammer do too': 740565, 'tip 13': 898685, '13 stock': 3265, 'supply enough': 825213, 'last you': 480746, 'you week': 1022223, 'out tip': 627613, 'tip staysafestayhome': 898904, 'staysafestayhome ghana': 798998, 'tip 13 stock': 898686, '13 stock up': 3266, 'on food supply': 600917, 'food supply enough': 316951, 'supply enough to': 825214, 'enough to last': 277710, 'to last you': 909080, 'last you week': 480749, 'you week or': 1022224, 'week or more': 976700, 'or more during': 616169, 'more during this': 539091, 'during this quarantine': 263311, 'this quarantine period': 889776, 'quarantine period to': 692430, 'period to avoid': 651909, 'going out tip': 355395, 'out tip staysafestayhome': 627615, 'tip staysafestayhome ghana': 898905, 'nd': 553377, 'nd day': 553380, 'need immediately': 555038, 'immediately close': 417073, 'hour allow': 405375, 'allow shelf': 46054, 'shelf be': 756874, 'restocked then': 716971, 'then set': 877522, 'up ration': 945891, 'ration card': 697652, 'card people': 163620, 'starting go': 794963, 'go without': 354514, 'greedy bulk': 363491, 'bulk buyer': 142264, 'nd day of': 553381, 'day of empty': 228067, 'shelf in need': 757208, 'in need immediately': 425748, 'need immediately close': 555039, 'immediately close supermarket': 417074, 'close supermarket for': 182820, 'supermarket for 48': 820380, 'for 48 hour': 318852, '48 hour allow': 19304, 'hour allow shelf': 405376, 'allow shelf be': 46055, 'shelf be restocked': 756876, 'be restocked then': 116847, 'restocked then set': 716972, 'then set up': 877523, 'set up ration': 753573, 'up ration card': 945892, 'ration card people': 697657, 'card people are': 163621, 'people are starting': 647085, 'are starting go': 90356, 'starting go without': 794964, 'go without food': 354515, 'without food with': 1002664, 'food with no': 317644, 'with no thanks': 999795, 'no thanks to': 565693, 'to the greedy': 916751, 'the greedy bulk': 856765, 'greedy bulk buyer': 363492, 'got dedicated': 358523, 'dedicated page': 231728, 'page with': 633917, 'our 19': 621978, '19 content': 6015, 'content insight': 200815, 'insight including': 439573, 'weekly consumer': 977483, 've got dedicated': 953174, 'got dedicated page': 358524, 'dedicated page with': 231729, 'page with all': 633918, 'of our 19': 587419, 'our 19 content': 621979, '19 content insight': 6016, 'content insight including': 200816, 'insight including our': 439574, 'including our weekly': 432094, 'our weekly consumer': 625364, 'weekly consumer tracker': 977484, 'line 10': 492927, 'are beyond': 84964, 'beyond rude': 129226, 'rude by': 727033, 'time get': 896825, 'left what': 485724, 'people started': 649542, 'work on the': 1005542, 'front line 10': 338556, 'line 10 hour': 492928, '10 hour day': 1467, 'hour day with': 405531, 'day with people': 228781, 'with people who': 1000179, 'who are beyond': 988107, 'are beyond rude': 84969, 'beyond rude by': 129227, 'rude by the': 727034, 'the time get': 869589, 'time get to': 896828, 'to supermarket there': 915847, 'nothing left what': 573092, 'left what if': 485725, 'what if people': 981631, 'if people started': 414630, 'people started to': 649546, 'started to have': 794872, 'to have little': 907266, 'have little more': 381352, 'little more respect': 495471, 'more respect and': 540242, 'respect and consideration': 714962, 'price 800': 672177, '800 dead': 22697, 'dead today': 229181, 'today doe': 919457, 'anyone care': 80229, 'oil price 800': 597031, 'price 800 dead': 672178, '800 dead today': 22698, 'dead today doe': 229182, 'today doe anyone': 919458, 'doe anyone care': 251336, 'anyone care about': 80230, 'care about oil': 163798, 'nowplaying': 576585, 'reprogram': 712988, 'beep': 122414, 'economicterrorism': 267511, 'consumerism': 199706, 'earthhour2020': 265025, 'climatechange': 182238, 'nowplaying channel': 576586, 'channel live': 172901, 'live reprogram': 496002, 'reprogram beep': 712989, 'beep stayathomeandstaysafe': 122419, 'stayathomeandstaysafe economy': 797721, 'economy climate': 267759, 'climate consumer': 182209, 'consumer economicterrorism': 197297, 'economicterrorism citizen': 267512, 'citizen consumerism': 178877, 'consumerism economiccrisis': 199711, 'economiccrisis climatecrisis': 267404, 'climatecrisis earthhour2020': 182250, 'earthhour2020 coronalockdown': 265026, 'coronalockdown climatechange': 205031, 'nowplaying channel live': 576587, 'channel live reprogram': 172902, 'live reprogram beep': 496003, 'reprogram beep stayathomeandstaysafe': 712990, 'beep stayathomeandstaysafe economy': 122420, 'stayathomeandstaysafe economy climate': 797722, 'economy climate consumer': 267760, 'climate consumer economicterrorism': 182210, 'consumer economicterrorism citizen': 197298, 'economicterrorism citizen consumerism': 267513, 'citizen consumerism economiccrisis': 178878, 'consumerism economiccrisis climatecrisis': 199712, 'economiccrisis climatecrisis earthhour2020': 267405, 'climatecrisis earthhour2020 coronalockdown': 182251, 'earthhour2020 coronalockdown climatechange': 265027, 'valchoice': 951868, 'autoinsurance': 103940, 'you big': 1017475, 'big buck': 129670, 'buck on': 141670, 'on car': 599818, 'insurance check': 440685, 'the valchoice': 870628, 'valchoice autoinsurance': 951869, 'autoinsurance calculator': 103941, 'calculator to': 155354, 'much then': 545359, 'then contact': 877088, 'your agent': 1022759, 'agent for': 38166, 'the discount': 853351, 'discount workfromhome': 244568, 'workfromhome shelterinplace': 1008435, 'from home can': 335847, 'home can save': 400868, 'save you big': 737705, 'you big buck': 1017476, 'big buck on': 129671, 'buck on car': 141671, 'on car insurance': 599819, 'car insurance check': 163143, 'insurance check out': 440686, 'out the valchoice': 627433, 'the valchoice autoinsurance': 870629, 'valchoice autoinsurance calculator': 951870, 'autoinsurance calculator to': 103942, 'calculator to see': 155356, 'see how much': 745240, 'how much then': 408374, 'much then contact': 545360, 'then contact your': 877089, 'contact your agent': 200306, 'your agent for': 1022760, 'agent for the': 38168, 'for the discount': 326387, 'the discount workfromhome': 853353, 'discount workfromhome shelterinplace': 244569, 'cochrane': 185204, 'surprised to': 828616, 'of q2': 588632, 'q2 being': 691419, 'being lower': 125405, 'april said': 83668, 'said ryan': 731337, 'ryan cochrane': 728808, 'cochrane of': 185211, 'of investing': 585281, 'investing copper': 443918, 'would be surprised': 1011654, 'be surprised to': 117486, 'surprised to see': 828617, 'see price at': 745597, 'end of q2': 275912, 'of q2 being': 588633, 'q2 being lower': 691420, 'being lower than': 125406, 'lower than we': 506018, 'than we are': 841428, 'are seeing in': 89902, 'seeing in march': 746335, 'in march april': 425081, 'march april said': 515278, 'april said ryan': 83669, 'said ryan cochrane': 731338, 'ryan cochrane of': 728809, 'cochrane of investing': 185212, 'of investing copper': 585282, 'trumpgenocide': 934046, 'still hoard': 800708, 'paper diarrhea': 640087, 'diarrhea is': 240385, 'not symptom': 571892, 'no diarrhea': 564002, 'diarrhea epidemic': 240381, 'epidemic people': 279429, 'crazy trumpgenocide': 215469, 'trumpgenocide trumpvirus': 934047, 'do people still': 249975, 'people still hoard': 649596, 'still hoard toilet': 800709, 'toilet paper diarrhea': 921253, 'paper diarrhea is': 640088, 'diarrhea is not': 240386, 'is not symptom': 450197, 'not symptom of': 571893, 'symptom of there': 830889, 'of there is': 591799, 'is no diarrhea': 449921, 'no diarrhea epidemic': 564003, 'diarrhea epidemic people': 240382, 'epidemic people stop': 279430, 'people stop going': 649650, 'stop going crazy': 804688, 'going crazy trumpgenocide': 355102, 'crazy trumpgenocide trumpvirus': 215470, 'remain on': 709793, 'on edge': 600516, 'edge after': 268491, 'after saudiarabia': 36144, 'russia postponed': 728542, 'postponed meeting': 666815, 'meeting scheduled': 527755, 'scheduled to': 741518, 'be held': 115189, 'monday about': 536224, 'about deal': 25078, 'output the': 629290, 'hit demand': 398207, 'demand it': 235753, 'oil price remain': 597234, 'price remain on': 676167, 'remain on edge': 709794, 'on edge after': 600518, 'edge after saudiarabia': 268492, 'after saudiarabia and': 36145, 'and russia postponed': 70679, 'russia postponed meeting': 728543, 'postponed meeting scheduled': 666817, 'meeting scheduled to': 527757, 'scheduled to be': 741519, 'to be held': 901299, 'be held on': 115192, 'held on monday': 388912, 'on monday about': 602151, 'monday about deal': 536225, 'about deal to': 25079, 'cut output the': 223473, 'output the pandemic': 629291, 'the pandemic hit': 862990, 'pandemic hit demand': 635638, 'hit demand it': 398209, 'demand it wa': 235760, 'pasted': 643869, 'keephopealive': 472349, 'staysafesavelives': 798977, 'staysafestayhealthy': 798982, 'today pasted': 920025, 'pasted by': 643870, 'local laundromat': 498142, 'laundromat by': 482092, 'see business': 744983, 'business taking': 144462, 'taking much': 833445, 'much effort': 544855, 'distancing keephopealive': 247272, 'keephopealive socialdistancing': 472350, 'staysafe staysafesavelives': 798917, 'staysafesavelives staysafestayhealthy': 798978, 'the way home': 871157, 'way home from': 969634, 'store today pasted': 810861, 'today pasted by': 920026, 'pasted by local': 643871, 'by local laundromat': 153077, 'local laundromat by': 498143, 'laundromat by the': 482093, 'by the house': 154351, 'house and saw': 406183, 'and saw this': 70987, 'saw this must': 738294, 'this must say': 889069, 'must say it': 546872, 'say it good': 738843, 'to see business': 913992, 'see business taking': 744985, 'business taking much': 144464, 'taking much effort': 833446, 'much effort in': 544856, 'effort in social': 269534, 'social distancing keephopealive': 779644, 'distancing keephopealive socialdistancing': 247273, 'keephopealive socialdistancing staysafe': 472351, 'socialdistancing staysafe staysafesavelives': 780750, 'staysafe staysafesavelives staysafestayhealthy': 798918, 'rudeness': 727066, 'aw': 105529, 'mum work': 545983, 'most popular': 542639, 'overwhelmed by': 631717, 'the rudeness': 866031, 'rudeness of': 727067, 'people since': 649473, 'outbreak my': 628462, 'dad just': 224359, 'after going': 35716, 'on hunt': 601450, 'hunt for': 411358, 'mum favourite': 545893, 'favourite wine': 300615, 'and along': 57931, 'wine bouquet': 995787, 'bouquet of': 136886, 'of flower': 583607, 'flower guy': 311297, 'guy cue': 368968, 'cue the': 220205, 'the aw': 849118, 'mum work in': 545984, 'the most popular': 861017, 'most popular supermarket': 542645, 'popular supermarket in': 664608, 'the state and': 867746, 'state and ha': 795365, 'and ha been': 64064, 'ha been overwhelmed': 369863, 'been overwhelmed by': 121635, 'overwhelmed by the': 631722, 'by the rudeness': 154427, 'the rudeness of': 866032, 'rudeness of people': 727068, 'of people since': 587985, 'people since the': 649474, '19 outbreak my': 9158, 'outbreak my dad': 628463, 'my dad just': 547896, 'dad just came': 224360, 'came home after': 157003, 'home after going': 400566, 'after going on': 35718, 'going on hunt': 355321, 'on hunt for': 601451, 'hunt for my': 411360, 'my mum favourite': 549372, 'mum favourite wine': 545894, 'favourite wine and': 300616, 'wine and along': 995762, 'and along with': 57932, 'along with the': 47082, 'with the wine': 1001547, 'the wine bouquet': 871603, 'wine bouquet of': 995788, 'bouquet of flower': 136887, 'of flower guy': 583611, 'flower guy cue': 311298, 'guy cue the': 368969, 'cue the aw': 220206, 'mackie': 507452, 'du': 261435, 'mackie in': 507453, 'simple term': 770108, 'term yes': 838351, 'yes people': 1015510, 'are drinking': 85993, 'drinking le': 258933, 'le restaurant': 483101, 'hotel fast': 405143, 'food outlet': 315714, 'outlet closed': 629036, 'closed creating': 183061, 'creating le': 216024, 'le demand': 482923, 'there usually': 879210, 'usually surplus': 951157, 'spring anyway': 791161, 'anyway and': 80979, 'much is': 545020, 'is dumped': 447410, 'dumped covid': 262202, 'created le': 215844, 'demand du': 235266, 'mackie in simple': 507454, 'in simple term': 427963, 'simple term yes': 770109, 'term yes people': 838352, 'yes people are': 1015511, 'people are drinking': 646957, 'are drinking le': 85994, 'drinking le restaurant': 258934, 'le restaurant hotel': 483102, 'restaurant hotel fast': 716514, 'hotel fast food': 405144, 'fast food outlet': 299972, 'food outlet closed': 315717, 'outlet closed creating': 629037, 'closed creating le': 183062, 'creating le demand': 216025, 'le demand there': 482927, 'demand there usually': 236370, 'there usually surplus': 879212, 'usually surplus of': 951158, 'surplus of milk': 828492, 'milk in the': 531704, 'the spring anyway': 867655, 'spring anyway and': 791162, 'anyway and much': 80980, 'and much is': 67306, 'much is dumped': 545021, 'is dumped covid': 447411, 'dumped covid 19': 262203, '19 ha created': 7336, 'ha created le': 370273, 'created le demand': 215845, 'le demand du': 482925, 'saw employee': 738102, 'employee without': 274449, 'without glove': 1002688, 'sanitizer asked': 734496, 'to correct': 903586, 'correct this': 207533, 'answer wa': 78141, 'nothing this': 573181, 'is criminal': 446927, 'criminal exposing': 216834, 'exposing employee': 292923, 'without protective': 1002864, 'saw employee without': 738103, 'employee without glove': 274450, 'without glove mask': 1002691, 'glove mask and': 352770, 'and no hand': 67618, 'hand sanitizer asked': 375312, 'sanitizer asked what': 734497, 'asked what your': 95902, 'what your company': 982709, 'your company is': 1023284, 'company is doing': 190798, 'doing to correct': 252788, 'to correct this': 903587, 'correct this the': 207534, 'this the answer': 890514, 'the answer wa': 848776, 'answer wa nothing': 78143, 'wa nothing this': 962788, 'nothing this is': 573182, 'this is criminal': 888221, 'is criminal exposing': 446928, 'criminal exposing employee': 216835, 'exposing employee without': 292924, 'employee without protective': 274455, 'without protective gear': 1002865, 'activate': 30217, 'dpa': 257930, 'gouged': 359196, 'why must': 991195, 'must activate': 546457, 'activate the': 30224, 'the dpa': 853643, 'dpa life': 257931, 'life depend': 488584, 'it gouged': 458319, 'gouged price': 359201, 'price middleman': 675234, 'middleman and': 530705, 'supply chaos': 825076, 'chaos why': 173078, 'why governor': 991020, 'governor are': 360868, 'so upset': 778614, 'upset with': 947832, 'with trump': 1001852, 'why must activate': 991196, 'must activate the': 546458, 'activate the dpa': 30225, 'the dpa life': 853644, 'dpa life depend': 257932, 'life depend on': 488585, 'depend on it': 237317, 'on it gouged': 601663, 'it gouged price': 458320, 'gouged price middleman': 359203, 'price middleman and': 675235, 'middleman and medical': 530706, 'medical supply chaos': 526432, 'supply chaos why': 825077, 'chaos why governor': 173079, 'why governor are': 991021, 'governor are so': 360870, 'are so upset': 90224, 'so upset with': 778616, 'upset with trump': 947833, 'convince': 202643, 'smallbiz': 775196, 'smallbiztips': 775205, 'to trying': 917825, 'keep selling': 471920, 'selling through': 749500, 'to convince': 903470, 'convince customer': 202644, 'that purchasing': 845907, 'purchasing from': 689865, 'from you': 338452, 'you is': 1019376, 'safe smallbiz': 729943, 'smallbiz smallbiztips': 775201, 'smallbiztips smallbusiness': 775206, 'smallbusiness owner': 775229, 'owner business': 632412, 'business safety': 144342, 'safety grocery': 730560, 'are you trying': 91874, 'trying to trying': 934894, 'to trying to': 917827, 'to keep selling': 908843, 'keep selling through': 471922, 'selling through the': 749502, '19 crisis learn': 6275, 'crisis learn how': 217650, 'how to convince': 409000, 'to convince customer': 903471, 'convince customer that': 202645, 'customer that purchasing': 222920, 'that purchasing from': 845908, 'purchasing from you': 689867, 'from you is': 338462, 'you is safe': 1019378, 'is safe smallbiz': 451622, 'safe smallbiz smallbiztips': 729944, 'smallbiz smallbiztips smallbusiness': 775202, 'smallbiztips smallbusiness owner': 775207, 'smallbusiness owner business': 775230, 'owner business safety': 632414, 'business safety grocery': 144343, 'safety grocery supermarket': 730561, 'ml 100': 534707, '100 30': 1817, '2020 indiafightscorona': 14395, '200 ml 100': 13504, 'ml 100 30': 534708, '100 30 2020': 1818, '30 2020 indiafightscorona': 16933, 'extortionist': 293414, 'stop extortionist': 804645, 'extortionist shop': 293417, 'shop uklockdown': 760985, 'uklockdown report': 939005, 'the cma': 851090, 'cma if': 184646, 'if shop': 414790, 'shop charge': 760027, 'or make': 616036, 'make misleading': 510172, 'claim coronacrisis': 179717, 'stop extortionist shop': 804646, 'extortionist shop uklockdown': 293418, 'shop uklockdown report': 760986, 'uklockdown report them': 939006, 'report them to': 712364, 'them to the': 876522, 'to the cma': 916571, 'the cma if': 851091, 'cma if shop': 184647, 'if shop charge': 414792, 'shop charge excessive': 760028, 'price or make': 675782, 'or make misleading': 616040, 'make misleading claim': 510173, 'misleading claim coronacrisis': 534093, 'billionaire': 130946, 'ackman': 29091, 'hoovering': 403389, 'justification': 470454, 'billionaire bill': 130949, 'bill ackman': 130487, 'ackman is': 29094, 'is hoovering': 448533, 'hoovering up': 403392, 'share at': 754932, 'price he': 674478, 'll make': 496892, 'million from': 532162, 'no justification': 564558, 'justification for': 470455, 'for treating': 327334, 'treating the': 931015, 'market essential': 516340, 'essential it': 281183, 'it pure': 460553, 'pure profiteering': 689981, 'from death': 335115, 'and misery': 67060, 'billionaire bill ackman': 130950, 'bill ackman is': 130489, 'ackman is hoovering': 29095, 'is hoovering up': 448534, 'hoovering up share': 403394, 'up share at': 945970, 'share at rock': 754934, 'bottom price he': 136436, 'price he ll': 674482, 'he ll make': 385196, 'll make million': 496896, 'make million from': 510164, 'million from there': 532165, 'from there is': 337969, 'is no justification': 449945, 'no justification for': 564559, 'justification for treating': 470458, 'for treating the': 327337, 'treating the stock': 931018, 'stock market essential': 802395, 'market essential it': 516341, 'essential it pure': 281184, 'it pure profiteering': 460555, 'pure profiteering from': 689982, 'profiteering from death': 683042, 'from death and': 335116, 'death and misery': 229966, 'soviet': 786955, 'agony': 38569, 'service could': 752257, 'the soviet': 867521, 'soviet practice': 786958, 'practice of': 668614, 'of providing': 588570, 'providing internal': 687036, 'internal food': 441727, 'to spare': 914953, 'spare them': 787502, 'them this': 876429, 'this agony': 886252, 'agony panicbuying': 38570, 'panicbuying panicbuyers': 639009, 'emergency service could': 272956, 'service could follow': 752258, 'could follow the': 209190, 'follow the soviet': 312546, 'the soviet practice': 867522, 'soviet practice of': 786959, 'practice of providing': 668617, 'of providing internal': 588572, 'providing internal food': 687037, 'internal food package': 441728, 'food package to': 315735, 'package to frontline': 633429, 'to frontline staff': 906274, 'frontline staff to': 338832, 'staff to spare': 792996, 'to spare them': 914956, 'spare them this': 787503, 'them this agony': 876430, 'this agony panicbuying': 886253, 'agony panicbuying panicbuyers': 38571, 'virtue': 957860, 'signaling': 769329, 'of virtue': 592820, 'virtue signaling': 957866, 'signaling in': 769330, 'brand communication': 137801, 'communication about': 189569, 'your message': 1024819, 'message really': 529402, 'really consumer': 702074, 'consumer centered': 196757, 'centered or': 169343, 'or mere': 616127, 'mere brand': 529085, 'brand commitment': 137798, 'beware of virtue': 129098, 'of virtue signaling': 592821, 'virtue signaling in': 957867, 'signaling in brand': 769331, 'in brand communication': 420946, 'brand communication about': 137802, 'communication about is': 189571, 'about is your': 25558, 'is your message': 454155, 'your message really': 1024820, 'message really consumer': 529403, 'really consumer centered': 702075, 'consumer centered or': 196758, 'centered or mere': 169344, 'or mere brand': 616128, 'mere brand commitment': 529086, 'shopworkersunite': 764568, 'staff aren': 792213, 'aren is': 92443, 'it case': 457068, 'just opening': 469395, 'opening the': 612909, 'the lorry': 859731, 'lorry and': 503333, 'helping themselves': 391505, 'themselves keyworkers': 876847, 'keyworkers shopworkersunite': 473601, 'so see supermarket': 778164, 'see supermarket delivery': 745765, 'driver are key': 259435, 'are key worker': 87678, 'key worker but': 473472, 'worker but supermarket': 1006561, 'but supermarket staff': 147221, 'supermarket staff aren': 822813, 'staff aren is': 792215, 'aren is it': 92444, 'is it case': 449015, 'it case of': 457069, 'case of just': 165913, 'of just opening': 585574, 'just opening the': 469397, 'opening the back': 612910, 'back of the': 107176, 'of the lorry': 591201, 'the lorry and': 859732, 'lorry and everyone': 503334, 'and everyone helping': 62400, 'everyone helping themselves': 287006, 'helping themselves keyworkers': 391506, 'themselves keyworkers shopworkersunite': 876848, 'rubbing': 726961, 'that planet': 845757, 'earth is': 264988, 'totally out': 926380, 'of lysol': 586088, 'lysol spray': 507190, 'spray rubbing': 790323, 'rubbing alcohol': 726962, 'alcohol hand': 41018, 'being lied': 125381, 'lied to': 488420, 'find it really': 307003, 'it really hard': 460640, 'to believe that': 901751, 'believe that planet': 126345, 'that planet earth': 845758, 'planet earth is': 658400, 'earth is totally': 264992, 'is totally out': 453307, 'totally out of': 926381, 'out of lysol': 626780, 'of lysol spray': 586089, 'lysol spray rubbing': 507192, 'spray rubbing alcohol': 790324, 'rubbing alcohol hand': 726966, 'alcohol hand sanitizer': 41020, 'think we re': 885770, 'we re being': 972834, 're being lied': 698360, 'being lied to': 125382, 'masterpiece': 520228, 'teenage': 836520, 'readsteadycook': 700834, 'ainsleyharriott': 39670, 'creating kitchen': 216020, 'kitchen masterpiece': 475726, 'masterpiece from': 520229, 'like living': 490656, 'living my': 496418, 'my teenage': 550335, 'teenage dream': 836523, 'of appearing': 580308, 'on ready': 603084, 'ready steady': 700920, 'steady cook': 799115, 'cook readsteadycook': 202771, 'readsteadycook ainsleyharriott': 700835, 'creating kitchen masterpiece': 216021, 'kitchen masterpiece from': 475727, 'masterpiece from what': 520230, 'what left on': 981810, 'shelf is like': 757238, 'is like living': 449321, 'like living my': 490657, 'living my teenage': 496419, 'my teenage dream': 550336, 'teenage dream of': 836524, 'dream of appearing': 258605, 'of appearing on': 580309, 'appearing on ready': 82175, 'on ready steady': 603085, 'ready steady cook': 700921, 'steady cook readsteadycook': 799117, 'cook readsteadycook ainsleyharriott': 202772, 'market meet': 516715, '19 explained': 6901, 'explained by': 292149, 'by pretend': 153646, 'pretend the': 671317, 'is shopping': 451868, 'mall marketplace': 511802, 'marketplace supply': 517840, 'shop demand': 760095, 'stuff thread': 815221, 'financial market meet': 306508, 'market meet covid': 516716, 'covid 19 explained': 213061, '19 explained by': 6902, 'explained by pretend': 292150, 'by pretend the': 153647, 'pretend the global': 671318, 'global economy is': 351902, 'economy is shopping': 268013, 'is shopping mall': 451874, 'shopping mall marketplace': 763233, 'mall marketplace supply': 511803, 'marketplace supply is': 517841, 'supply is the': 825458, 'is the stuff': 452952, 'the shop demand': 866990, 'shop demand is': 760096, 'demand is the': 235744, 'consumer buying the': 196711, 'buying the stuff': 151174, 'the stuff thread': 868334, 'vp': 960703, 'anand': 57277, 'siddiqui': 768776, 'time entertainment': 896621, 'entertainment amp': 278547, 'amp connectivity': 53551, 'connectivity are': 194730, 'global vp': 352284, 'vp of': 960713, 'of insight': 585222, 'insight amp': 439501, 'amp analytics': 53388, 'analytics anand': 57206, 'anand siddiqui': 57282, 'siddiqui reveals': 768777, 'consumer search': 198877, 'search behavior': 743225, 'behavior that': 124223, 'first time entertainment': 309096, 'time entertainment amp': 896622, 'entertainment amp connectivity': 278548, 'amp connectivity are': 53552, 'connectivity are being': 194731, 'are being held': 84868, 'held up basic': 388946, 'up basic need': 944456, 'basic need in': 112012, 'need in global': 555042, 'in global vp': 423345, 'global vp of': 352285, 'vp of insight': 960714, 'of insight amp': 585223, 'insight amp analytics': 439502, 'amp analytics anand': 53389, 'analytics anand siddiqui': 57207, 'anand siddiqui reveals': 57283, 'siddiqui reveals the': 768778, 'reveals the real': 720353, 'the real time': 865241, 'real time consumer': 701403, 'time consumer search': 896506, 'consumer search behavior': 198878, 'search behavior that': 743227, 'behavior that is': 124226, 'is seeing in': 451711, 'seeing in light': 746334, 'running ad': 727891, 'hot sale': 405039, 'sale toilet': 732594, 'stock against': 801770, 'against article': 37334, 'article must': 94390, 'be scammer': 117013, 'should just assume': 766160, 'assume that anyone': 97015, 'that anyone who': 842685, 'who is running': 989107, 'is running ad': 451591, 'running ad for': 727892, 'ad for hand': 31102, 'sanitizer and hot': 734411, 'and hot sale': 64761, 'hot sale toilet': 405040, 'sale toilet paper': 732595, 'in stock against': 428278, 'stock against article': 801771, 'against article must': 37335, 'article must be': 94391, 'must be scammer': 546544, 'francisco curfew': 331107, 'curfew resident': 220920, 'resident banned': 714260, 'from leaving': 336208, 'after midnight': 35930, 'midnight on': 530753, 'tuesday for': 935149, 'for anything': 319456, 'but doctor': 145567, 'doctor visit': 251147, 'visit or': 959318, 'coronavirus sanfrancisco': 206698, 'sanfrancisco curfew': 733776, 'curfew lockdown': 220900, 'san francisco curfew': 733539, 'francisco curfew resident': 331108, 'curfew resident banned': 220921, 'resident banned from': 714261, 'banned from leaving': 110573, 'from leaving home': 336209, 'leaving home after': 485086, 'home after midnight': 400570, 'after midnight on': 35931, 'midnight on tuesday': 530754, 'on tuesday for': 604883, 'tuesday for anything': 935150, 'for anything but': 319458, 'anything but doctor': 80695, 'but doctor visit': 145568, 'doctor visit or': 251148, 'visit or grocery': 959319, 'or grocery shop': 615525, 'grocery shop to': 364979, 'shop to fight': 760944, 'to fight coronavirus': 905784, 'fight coronavirus sanfrancisco': 304703, 'coronavirus sanfrancisco curfew': 206699, 'sanfrancisco curfew lockdown': 733777, 'oculus': 579156, 'craving': 215177, 'novelty': 573833, 'there long': 878732, 'long fb': 501413, 'fb position': 300664, 'position on': 665185, 'on accelerating': 599146, 'accelerating vr': 27924, 'vr adoption': 960728, 'adoption few': 32716, 'ago tech': 38486, 'tech circle': 836056, 'circle were': 178624, 'were excited': 979594, 'about oculus': 25829, 'oculus it': 579161, 'appears that': 82205, 'that real': 845954, 'real progress': 701322, 'progress ha': 683370, 'consumer if': 197794, 'quarantined for': 692851, 'people craving': 647574, 'craving for': 215183, 'for visual': 327588, 'visual novelty': 959627, 'novelty could': 573836, 'be turning': 117837, 'turning point': 935945, 'is there long': 453017, 'there long fb': 878733, 'long fb position': 501414, 'fb position on': 300665, 'position on accelerating': 665186, 'on accelerating vr': 599148, 'accelerating vr adoption': 27925, 'vr adoption few': 960729, 'adoption few month': 32717, 'few month ago': 303923, 'month ago tech': 537544, 'ago tech circle': 38487, 'tech circle were': 836057, 'circle were excited': 178626, 'were excited about': 979595, 'excited about oculus': 289526, 'about oculus it': 25830, 'oculus it appears': 579162, 'it appears that': 456565, 'appears that real': 82209, 'that real progress': 845956, 'real progress ha': 701323, 'progress ha been': 683371, 'been made for': 121510, 'made for the': 507747, 'the consumer if': 851546, 'consumer if we': 197796, 'if we are': 415266, 'we are quarantined': 970677, 'are quarantined for': 89373, 'quarantined for more': 692856, 'than month people': 840907, 'month people craving': 537954, 'people craving for': 647575, 'craving for visual': 215184, 'for visual novelty': 327589, 'visual novelty could': 959628, 'novelty could be': 573837, 'could be turning': 208933, 'be turning point': 117838, 'go digital': 353462, 'digital nike': 242610, 'nike strategy': 563229, 'strategy to': 812726, 'china offer': 176856, 'offer lesson': 594683, 'group and': 366600, 'retailer around': 719023, 'go digital nike': 353463, 'digital nike strategy': 242611, 'nike strategy to': 563230, 'strategy to weather': 812736, 'weather the covid': 974897, '19 outbreak in': 9139, 'outbreak in china': 628338, 'in china offer': 421421, 'china offer lesson': 176857, 'offer lesson for': 594684, 'lesson for consumer': 486472, 'for consumer group': 320263, 'consumer group and': 197654, 'group and retailer': 366604, 'and retailer around': 70454, 'retailer around the': 719024, 'the world via': 871999, 'jizzed': 465543, 'binge': 131069, 'the doomsdaypreppers': 853556, 'doomsdaypreppers been': 255485, 'for they': 326986, 've jizzed': 953286, 'jizzed their': 465544, 'their pant': 874235, 'pant watching': 639503, 'drama over': 258252, 'shortage while': 765302, 'while binge': 986653, 'binge eating': 131074, 'eating their': 266314, 'they watch': 883729, 'watch empty': 968395, 'shelf from': 757100, 'their bunker': 872666, 'bunker flat': 142679, 'flat screen': 310097, 'screen trumpvirus': 742735, 'trumpvirus stayhome': 934186, 'is what the': 453898, 'what the doomsdaypreppers': 982307, 'the doomsdaypreppers been': 853557, 'doomsdaypreppers been waiting': 255486, 'waiting for they': 964340, 'for they ve': 326989, 'they ve jizzed': 883659, 've jizzed their': 953287, 'jizzed their pant': 465545, 'their pant watching': 874237, 'pant watching the': 639504, 'watching the drama': 968795, 'the drama over': 853657, 'drama over the': 258253, 'over the tp': 630780, 'tp shortage while': 927940, 'shortage while binge': 765303, 'while binge eating': 986654, 'binge eating their': 131076, 'eating their food': 266315, 'their food they': 873354, 'food they watch': 317182, 'they watch empty': 883730, 'watch empty supermarket': 968396, 'supermarket shelf from': 822473, 'shelf from their': 757104, 'from their bunker': 337936, 'their bunker flat': 872667, 'bunker flat screen': 142680, 'flat screen trumpvirus': 310098, 'screen trumpvirus stayhome': 742736, 'what dental': 981311, 'dental office': 237083, 'what dental office': 981312, 'dental office are': 237084, 'office are doing': 595367, 'doing to prevent': 252797, 'to prevent infection': 912072, 'and disinfectant': 61439, 'are provided': 89313, 'liberal blame': 488004, 'blame their': 132306, 'mask and disinfectant': 518318, 'and disinfectant are': 61440, 'disinfectant are sold': 245615, 'doctor are provided': 250839, 'are provided with': 89314, 'provided with the': 686671, 'the best safety': 849549, 'pakistani liberal blame': 634531, 'liberal blame their': 488005, 'blame their own': 132307, 'morning spoke': 541453, 'with on': 999870, 'recent research': 703975, 'research report': 713823, 'this morning spoke': 889017, 'morning spoke with': 541455, 'spoke with on': 789750, 'with on about': 999871, 'on about how': 599138, 'how the public': 408867, 'the public are': 864788, 'responding to and': 715576, 'to and about': 900484, 'and about the': 57554, 'about the result': 26500, 'the result of': 865697, 'result of our': 717605, 'of our most': 587516, 'most recent research': 542686, 'recent research report': 703977, 'outsourcing': 629679, 'doing ur': 252815, 'ur own': 948045, 'shopping now': 763358, 'now like': 575205, 'like regular': 491070, 'regular person': 707829, 'still outsourcing': 801013, 'outsourcing it': 629680, 'working poor': 1008876, 'poor at': 664118, 'risk getting': 723575, 'getting at': 348853, 'so dont': 776915, 'are doing ur': 85935, 'doing ur own': 252816, 'ur own grocery': 948046, 'own grocery shopping': 632030, 'grocery shopping now': 365059, 'shopping now like': 763362, 'now like regular': 575208, 'like regular person': 491071, 'regular person or': 707830, 'person or are': 652562, 'or are still': 614415, 'are still outsourcing': 90461, 'still outsourcing it': 801014, 'outsourcing it to': 629681, 'to the working': 917201, 'the working poor': 871784, 'working poor at': 1008877, 'poor at to': 664119, 'at to risk': 101332, 'to risk getting': 913595, 'risk getting at': 723576, 'getting at the': 348854, 'the store so': 868106, 'store so dont': 810221, 'so dont have': 776916, 'dont have to': 255231, 'advancing': 32950, 'bolstering': 134153, 'dairy product': 225026, 'rose advancing': 726048, 'advancing for': 32951, 'and bolstering': 59052, 'bolstering optimism': 134154, 'optimism about': 613899, 'for demand': 320657, 'world continues': 1009445, 'to grapple': 906984, 'dairy product price': 225030, 'product price rose': 681547, 'price rose advancing': 676265, 'rose advancing for': 726049, 'advancing for the': 32952, 'first time since': 309112, 'time since january': 897668, 'since january and': 770675, 'january and bolstering': 464647, 'and bolstering optimism': 59053, 'bolstering optimism about': 134155, 'optimism about the': 613900, 'about the outlook': 26472, 'outlook for demand': 629151, 'for demand the': 320658, 'demand the world': 236362, 'the world continues': 871845, 'world continues to': 1009446, 'continues to grapple': 201479, 'to grapple with': 906985, 'grapple with covid': 362193, 'tumble at': 935296, 'the open': 862378, 'open in': 612317, 'asia after': 95155, 'after trillion': 36447, 'dollar senate': 253067, 'senate proposal': 749720, 'hit american': 398132, 'economy wa': 268320, 'wa defeated': 961929, 'defeated and': 232054, 'toll soared': 923881, 'soared across': 779289, 'price tumble at': 677144, 'tumble at the': 935298, 'at the open': 101041, 'the open in': 862380, 'open in asia': 612318, 'in asia after': 420517, 'asia after trillion': 95156, 'after trillion dollar': 36448, 'trillion dollar senate': 931981, 'dollar senate proposal': 253068, 'senate proposal to': 749721, 'proposal to help': 684481, 'help the hit': 390656, 'the hit american': 857394, 'hit american economy': 398133, 'american economy wa': 51938, 'economy wa defeated': 268322, 'wa defeated and': 961930, 'defeated and death': 232055, 'and death toll': 60993, 'death toll soared': 230254, 'toll soared across': 923882, 'soared across europe': 779290, 'vladimir': 959858, 'see vladimir': 746004, 'vladimir putin': 959859, 'putin response': 691042, 'outbreak no': 628468, 'no nonsense': 564878, 'nonsense ghana': 566724, 'ghana putin': 349584, 'putin coronacrisis': 691016, 'see vladimir putin': 746005, 'vladimir putin response': 959861, 'putin response to': 691043, 'to the hiking': 916777, 'hiking of face': 396384, 'mask price after': 519138, 'price after the': 672237, 'the outbreak no': 862669, 'outbreak no nonsense': 628469, 'no nonsense ghana': 564879, 'nonsense ghana putin': 566725, 'ghana putin coronacrisis': 349585, 'coded': 185404, 'recall': 703359, 'illegally': 416260, 'she coded': 755941, 'coded in': 185405, 'arm mother': 92900, 'mother recall': 543151, 'recall 27': 703360, 'daughter last': 226881, 'last moment': 480322, 'moment cried': 535915, 'cried and': 216743, 'am sad': 50356, 'sad lord': 729196, 'lord please': 503315, 'let donald': 486686, 'trump lose': 933689, 'lose so': 503473, 'have real': 382175, 'real leader': 701245, 'leader he': 483470, 'he fired': 384962, 'fired fine': 308171, 'fine while': 307722, 'while people': 987148, 'is dying': 447417, 'dying because': 263785, 'because he': 119108, 'he want': 385635, 'used illegally': 949934, 'illegally america': 416261, 'america wake': 51734, 'she coded in': 755942, 'coded in my': 185406, 'in my arm': 425536, 'my arm mother': 547310, 'arm mother recall': 92901, 'mother recall 27': 543152, 'recall 27 year': 703361, 'old daughter last': 598214, 'daughter last moment': 226883, 'last moment cried': 480323, 'moment cried and': 535916, 'cried and am': 216744, 'and am sad': 58027, 'am sad lord': 50357, 'sad lord please': 729197, 'lord please let': 503316, 'please let donald': 660177, 'let donald trump': 486687, 'donald trump lose': 254113, 'trump lose so': 933690, 'lose so we': 503474, 'can have real': 158584, 'have real leader': 382178, 'real leader he': 701246, 'leader he fired': 483471, 'he fired fine': 384963, 'fired fine while': 308172, 'fine while people': 307724, 'while people is': 987151, 'people is dying': 648515, 'is dying because': 447419, 'dying because he': 263786, 'because he want': 119122, 'he want the': 385640, 'want the money': 965960, 'the money to': 860830, 'money to be': 537085, 'to be used': 901616, 'be used illegally': 117916, 'used illegally america': 949935, 'illegally america wake': 416262, 'america wake up': 51735, 'sentinel': 751036, 'hey join': 394443, 'at mustard': 99801, 'seed sentinel': 746170, 'sentinel on': 751037, 'the wix': 871648, 'wix app': 1003193, 'read consumer': 700317, 'news tip': 560890, 'on surviving': 603856, 'surviving pay': 829367, 'or job': 615861, 'loss during': 503664, 'more post': 540105, 'go job': 353782, 'job work': 466309, 'hey join me': 394444, 'me at mustard': 522474, 'at mustard seed': 99802, 'mustard seed sentinel': 547027, 'seed sentinel on': 746171, 'sentinel on the': 751038, 'on the wix': 604456, 'the wix app': 871649, 'wix app to': 1003194, 'app to read': 81777, 'to read consumer': 912828, 'read consumer news': 700318, 'consumer news tip': 198216, 'news tip on': 560891, 'tip on surviving': 898863, 'on surviving pay': 603857, 'surviving pay cut': 829368, 'pay cut or': 644829, 'cut or job': 223461, 'or job loss': 615862, 'job loss during': 465971, 'loss during covid': 503665, 'and more post': 67203, 'more post on': 540106, 'on the go': 604143, 'the go job': 856384, 'go job work': 353783, 'scamdemic': 740501, 'you filed': 1018557, 'filed tax': 305410, 'tax in': 835008, '2018 or': 13888, 'or 2019': 614185, '2019 you': 14052, 'your check': 1023187, 'check do': 174417, 'give anyone': 350390, 'anyone personal': 80464, 'receive your': 703574, 'check scamdemic': 174612, 'if you filed': 415439, 'you filed tax': 1018558, 'filed tax in': 305411, 'tax in 2018': 835009, 'in 2018 or': 419788, '2018 or 2019': 13889, 'or 2019 you': 614186, '2019 you do': 14053, 'do anything to': 249091, 'anything to get': 80913, 'get your check': 348694, 'your check do': 1023188, 'check do not': 174418, 'not give anyone': 569636, 'give anyone personal': 350391, 'anyone personal information': 80465, 'personal information to': 652902, 'information to sign': 438016, 'to receive your': 912939, 'receive your check': 703575, 'your check scamdemic': 1023191, 'baking': 108897, 'powder': 667530, 'no baking': 563661, 'baking powder': 108919, 'powder on': 667540, 'people baking': 647211, 'baking away': 108900, 'insecurity socialdistancing': 439179, 'today there wa': 920315, 'wa no baking': 962716, 'no baking powder': 563662, 'baking powder on': 108920, 'powder on the': 667541, 'supermarket are people': 819178, 'are people baking': 89025, 'people baking away': 647212, 'baking away their': 108901, 'away their fear': 106053, 'their fear and': 873300, 'and insecurity socialdistancing': 65253, 'in morocco': 425454, 'morocco remain': 541573, 'stable despite': 791899, 'price in morocco': 674710, 'in morocco remain': 425455, 'morocco remain stable': 541574, 'remain stable despite': 709856, 'stable despite covid': 791900, 'deadliest': 229203, 'by attempting': 151905, 'from higher': 335791, 'price anti': 672593, 'anti price': 78320, 'gouging practice': 359432, 'practice might': 668608, 'be increasing': 115464, 'increasing exposure': 433605, 'the deadliest': 852938, 'deadliest virus': 229206, 'in generation': 423261, 'by attempting to': 151906, 'attempting to protect': 102288, 'protect consumer from': 684805, 'consumer from higher': 197557, 'from higher price': 335794, 'higher price anti': 395664, 'price anti price': 672594, 'anti price gouging': 78321, 'price gouging practice': 674315, 'gouging practice might': 359434, 'practice might be': 668609, 'might be increasing': 530906, 'be increasing exposure': 115465, 'increasing exposure to': 433606, 'exposure to one': 293011, 'of the deadliest': 590930, 'the deadliest virus': 852939, 'deadliest virus in': 229207, 'virus in generation': 958322, 'vet': 955699, 'elanco': 270487, 'farmer vet': 299558, 'vet matter': 955704, 'matter farmer': 520559, 'are delivering': 85764, 'delivering the': 233547, 'need store': 555658, 'store continue': 807157, 'meat milk': 525657, 'milk egg': 531653, 'egg vet': 270023, 'vet continue': 955702, 'our pet': 624322, 'pet healthy': 653410, 'at elanco': 98526, 'elanco we': 270488, 'stand by': 793501, 'farmer vet matter': 299559, 'vet matter farmer': 955705, 'matter farmer are': 520560, 'farmer are delivering': 299272, 'are delivering the': 85767, 'delivering the food': 233549, 'food supply we': 317012, 'we need store': 972548, 'need store continue': 555659, 'store continue to': 807158, 'continue to stock': 201266, 'stock for the': 802176, 'for the demand': 326378, 'for meat milk': 323363, 'meat milk egg': 525658, 'milk egg vet': 531661, 'egg vet continue': 270024, 'vet continue to': 955703, 'keep our pet': 471741, 'our pet healthy': 624325, 'pet healthy at': 653411, 'healthy at elanco': 387536, 'at elanco we': 98527, 'elanco we stand': 270489, 'we stand by': 973362, 'stand by our': 793503, 'by our customer': 153480, 'our customer in': 622665, 'customer in this': 222511, 'in this unprecedented': 430037, 'jwn': 470544, 'retailapocalypse2020': 718918, 'rack store': 695350, 'washington st': 967801, 'st market': 791728, 'market to': 517226, 'drive store': 259158, 'sale this': 732576, 'weekend jwn': 977366, 'jwn retail': 470545, 'retail retailapocalypse2020': 718469, 'retailapocalypse2020 retailnews': 718919, 'rack store making': 695352, 'store making effort': 808858, 'effort in washington': 269536, 'in washington st': 430711, 'washington st market': 967802, 'st market to': 791729, 'market to drive': 517235, 'to drive store': 904747, 'drive store sale': 259160, 'store sale this': 809975, 'sale this weekend': 732577, 'this weekend jwn': 891313, 'weekend jwn retail': 977367, 'jwn retail retailapocalypse2020': 470546, 'retail retailapocalypse2020 retailnews': 718470, 'mcas': 522087, 'the mcas': 860322, 'mcas have': 522088, 'also claimed': 48024, 'claimed that': 179887, 'the official': 862089, 'official at': 595763, 'county of': 211448, 'of bungoma': 580936, 'bungoma are': 142667, 'inflate price': 436986, 'good some': 357751, 'even purchased': 284502, 'the mcas have': 860323, 'mcas have also': 522089, 'have also claimed': 379208, 'also claimed that': 48025, 'claimed that some': 179888, 'of the official': 591287, 'the official at': 862090, 'official at the': 595764, 'at the county': 100917, 'the county of': 852195, 'county of bungoma': 211449, 'of bungoma are': 580937, 'bungoma are using': 142668, 'using the fight': 950700, '19 to inflate': 11435, 'to inflate price': 908371, 'inflate price of': 436992, 'of good some': 584237, 'good some of': 357753, 'some of which': 783417, 'which are not': 985689, 'not even purchased': 569272, 'linda': 492914, 'bud': 141718, 'staysa': 798775, 'morning linda': 541337, 'linda and': 492915, 'everyone mother': 287191, 'mother nature': 543139, 'nature is': 552958, 'is moving': 449754, 'moving along': 544117, 'along happy': 47001, 'the bud': 850078, 'bud on': 141729, 'the tree': 869945, 'tree heading': 931190, 'store then': 810637, 'then outside': 877397, 'flower bed': 311281, 'bed staysa': 120420, 'good morning linda': 357408, 'morning linda and': 541338, 'linda and everyone': 492916, 'and everyone mother': 62405, 'everyone mother nature': 287192, 'mother nature is': 543140, 'nature is moving': 552960, 'is moving along': 449755, 'moving along happy': 544118, 'along happy to': 47002, 'see the bud': 745814, 'the bud on': 850080, 'bud on all': 141730, 'all the tree': 44953, 'the tree heading': 869946, 'tree heading to': 931191, 'grocery store then': 365851, 'store then outside': 810642, 'then outside to': 877398, 'outside to clean': 629615, 'clean up the': 180674, 'up the flower': 946172, 'the flower bed': 855451, 'flower bed staysa': 311282, 'toiletpaperhoarding': 923173, 'my dream': 548036, 'dream would': 258636, 'be about': 113445, 'about toiletpaper': 26747, 'toiletpaper due': 921930, 'to toiletpaperhoarding': 917627, 'toiletpaperhoarding during': 923174, 'never thought my': 558229, 'thought my dream': 893130, 'my dream would': 548037, 'dream would be': 258637, 'would be about': 1011542, 'be about toiletpaper': 113449, 'about toiletpaper due': 26751, 'toiletpaper due to': 921931, 'due to toiletpaperhoarding': 262001, 'to toiletpaperhoarding during': 917628, 'toiletpaperhoarding during this': 923175, 'zamahni': 1027200, 'zamahni if': 1027201, 'if price': 414684, 'low which': 505741, 'last up': 480611, 'month then': 538052, 'definitely recession': 232383, 'recession covid': 704247, 'also leading': 48469, 'to low': 909477, 'low demand': 505232, 'oil while': 597514, 'while oil': 987097, 'oil power': 597020, 'power increase': 667626, 'production simple': 682209, 'simple economy': 770010, 'economy free': 267882, 'zamahni if price': 1027202, 'if price remain': 414689, 'price remain low': 676166, 'remain low which': 709784, 'low which is': 505742, 'which is expected': 986007, 'expected to last': 290987, 'to last up': 909077, 'last up to': 480612, 'up to month': 946403, 'to month then': 910247, 'month then it': 538053, 'then it is': 877282, 'it is definitely': 458927, 'is definitely recession': 447087, 'definitely recession covid': 232384, 'recession covid 19': 704248, 'is also leading': 445563, 'also leading to': 48470, 'leading to low': 483765, 'to low demand': 909484, 'low demand for': 505238, 'demand for oil': 235464, 'for oil while': 324046, 'oil while oil': 597515, 'while oil power': 987099, 'oil power increase': 597021, 'power increase production': 667627, 'increase production simple': 433023, 'production simple economy': 682210, 'simple economy free': 770011, 'opinion please': 613489, 'please government': 660041, 'government give': 360123, 'give small': 350704, 'small trader': 775168, 'trader tax': 928774, 'tax break': 834940, 'break amid': 138672, 'amid this': 52721, 'this lockdown': 888684, 'lockdown ask': 499174, 'ask landlord': 95573, 'landlord to': 479371, 'give mortgage': 350599, 'mortgage break': 541868, 'break direct': 138696, 'direct money': 243357, 'money transfer': 537135, 'transfer to': 929531, 'to remove': 913213, 'remove commission': 710812, 'commission assist': 188793, 'assist internet': 96632, 'provider to': 686800, 'to double': 904679, 'double down': 256006, 'price freeze': 674100, 'for main': 323157, 'main food': 508752, 'opinion please government': 613490, 'please government give': 660042, 'government give small': 360124, 'give small trader': 350705, 'small trader tax': 775169, 'trader tax break': 928775, 'tax break amid': 834941, 'break amid this': 138673, 'amid this lockdown': 52723, 'this lockdown ask': 888687, 'lockdown ask landlord': 499175, 'ask landlord to': 95574, 'landlord to give': 479372, 'to give mortgage': 906693, 'give mortgage break': 350600, 'mortgage break direct': 541870, 'break direct money': 138697, 'direct money transfer': 243358, 'money transfer to': 537136, 'transfer to remove': 929534, 'to remove commission': 913217, 'remove commission assist': 710813, 'commission assist internet': 188794, 'assist internet provider': 96633, 'internet provider to': 442000, 'provider to double': 686803, 'to double down': 904681, 'double down price': 256009, 'down price freeze': 257113, 'price freeze price': 674103, 'freeze price for': 332549, 'price for main': 673994, 'for main food': 323158, 'main food item': 508753, 'boycotted': 137362, 'shitstorm': 759345, 'these shop': 880672, 'basic thing': 112083, 'roll need': 725393, 'be boycotted': 113898, 'boycotted once': 137365, 'this shitstorm': 890095, 'shitstorm is': 759346, 'all these shop': 45056, 'these shop who': 880681, 'shop who are': 761040, 'are putting price': 89358, 'price up for': 677233, 'up for basic': 944919, 'for basic thing': 319592, 'basic thing like': 112085, 'thing like toilet': 884554, 'like toilet roll': 491644, 'toilet roll need': 921587, 'roll need to': 725394, 'to be boycotted': 901136, 'be boycotted once': 113899, 'boycotted once this': 137366, 'once this shitstorm': 605758, 'this shitstorm is': 890096, 'shitstorm is over': 759347, 'from european': 335311, 'inoculated from european': 438954, 'from european price': 335312, 'mortality': 541796, 'onset': 611543, 'ralph': 696304, 'koijen': 477341, 'mothiro': 543247, 'yogo': 1016523, 'fact stock': 295784, 'company which': 191308, 'which safeguard': 986281, 'safeguard long': 730206, 'term saving': 838280, 'saving and': 737843, 'and insure': 65306, 'insure health': 440853, 'health mortality': 386653, 'mortality risk': 541805, 'risk declined': 723487, 'sharply during': 755737, 'the onset': 862360, 'onset of': 611544, '19 ralph': 9949, 'ralph koijen': 696307, 'koijen mothiro': 477342, 'mothiro yogo': 543248, 'yogo discus': 1016524, 'policy implication': 663425, 'fact stock price': 295785, 'price of life': 675488, 'of life insurance': 585826, 'life insurance company': 488785, 'insurance company which': 440703, 'company which safeguard': 191311, 'which safeguard long': 986282, 'safeguard long term': 730207, 'long term saving': 501714, 'term saving and': 838281, 'saving and insure': 737844, 'and insure health': 65307, 'insure health mortality': 440854, 'health mortality risk': 386654, 'mortality risk declined': 541807, 'risk declined sharply': 723488, 'declined sharply during': 231440, 'sharply during the': 755738, 'during the onset': 263165, 'the onset of': 862361, 'onset of covid': 611546, 'covid 19 ralph': 213650, '19 ralph koijen': 9950, 'ralph koijen mothiro': 696308, 'koijen mothiro yogo': 477343, 'mothiro yogo discus': 543249, 'yogo discus the': 1016525, 'discus the fragility': 244919, 'fragility of the': 330915, 'of the industry': 591140, 'the industry and': 858161, 'industry and policy': 435645, 'and policy implication': 69167, 'can sleep': 159637, 'sleep because': 773756, 'because scared': 119529, 'nervous because': 557456, 'because have': 119095, 'get couple': 346822, 'couple thing': 211688, 'think just': 885365, 'just going': 468831, 'no sleep': 565517, 'sleep scared': 773786, 'scared anxiety': 740946, 'can sleep because': 159638, 'sleep because scared': 773757, 'because scared and': 119530, 'and nervous because': 67519, 'nervous because have': 557457, 'because have to': 119106, 'to get couple': 906450, 'get couple thing': 346824, 'couple thing from': 211690, 'store think just': 810687, 'think just going': 885366, 'just going to': 468834, 'to go now': 906829, 'go now on': 353859, 'now on no': 575430, 'on no sleep': 602420, 'no sleep scared': 565518, 'sleep scared anxiety': 773787, 'periodt': 651949, 'stayingathomechallenge': 798733, 'thankshealthheroes': 842302, 'and bus': 59259, 'here taking': 393627, 'taking risk': 833547, 'risk while': 724018, 'while am': 986599, 'family thank': 298287, 'else need': 271798, 'stay tf': 797341, 'tf home': 840000, 'home periodt': 401847, 'periodt stayhome': 651950, 'stayhome stayhomesavelives': 798152, 'stayhomesavelives stayingathomechallenge': 798460, 'stayingathomechallenge thankshealthheroes': 798734, 'thankshealthheroes california': 842303, 'and nurse and': 67884, 'nurse and grocery': 577198, 'clerk and bus': 181636, 'and bus driver': 59260, 'driver are out': 259438, 'are out here': 88885, 'out here taking': 626297, 'here taking risk': 393628, 'taking risk while': 833549, 'risk while am': 724019, 'while am at': 986600, 'am at home': 49911, 'home with my': 402530, 'my family thank': 548228, 'family thank you': 298288, 'you and everyone': 1016984, 'everyone else need': 286867, 'else need to': 271799, 'to stay tf': 915321, 'stay tf home': 797342, 'tf home periodt': 840002, 'home periodt stayhome': 401848, 'periodt stayhome stayhomesavelives': 651951, 'stayhome stayhomesavelives stayingathomechallenge': 798156, 'stayhomesavelives stayingathomechallenge thankshealthheroes': 798461, 'stayingathomechallenge thankshealthheroes california': 798735, 'kroger you': 477786, 'should only': 766289, 'only order': 610924, 'and purchase': 69778, 'online ask': 607878, 'pick them': 655691, 'them up': 876564, 'up curbside': 944678, 'curbside my': 220633, 'hard and': 377859, 'are baby': 84734, 'baby in': 106641, 'and hundred': 64871, 'shopping she': 763853, 'she going': 756055, 'kroger you should': 477787, 'you should only': 1021210, 'should only order': 766292, 'only order and': 610925, 'order and purchase': 618034, 'and purchase online': 69782, 'purchase online ask': 689600, 'online ask them': 607879, 'ask them to': 95647, 'them to pick': 876497, 'to pick them': 911728, 'pick them up': 655692, 'them up curbside': 876567, 'up curbside my': 944679, 'curbside my sister': 220634, 'sister work hard': 771804, 'work hard and': 1005236, 'hard and there': 377865, 'there are baby': 878069, 'are baby in': 84736, 'baby in the': 106642, 'house and hundred': 406181, 'and hundred of': 64872, 'are shopping she': 90063, 'shopping she going': 763854, 'she going to': 756056, 'scenario it': 741271, 'scale focus': 739889, 'focus group': 311843, 'group that': 366906, 'one asked': 605957, 'case scenario it': 166003, 'scenario it the': 741273, 'it the large': 461551, 'the large scale': 858951, 'large scale focus': 479785, 'scale focus group': 739890, 'focus group that': 311844, 'group that no': 366912, 'no one asked': 564919, 'one asked for': 605958, 'oneself': 607562, 'ffodbanks': 304273, 'single bar': 771241, 'bar pub': 110748, 'pub club': 687693, 'club coffee': 184427, 'coffee shop': 185530, 'shop restaurant': 760717, 'restaurant should': 716698, 'be donating': 114544, 'donating it': 254470, 'it stock': 461260, 'on table': 603862, 'table outside': 831492, 'help oneself': 390187, 'oneself ffodbanks': 607563, 'every single bar': 286178, 'single bar pub': 771243, 'bar pub club': 110749, 'pub club coffee': 687696, 'club coffee shop': 184428, 'coffee shop restaurant': 185537, 'shop restaurant should': 760720, 'restaurant should be': 716699, 'should be donating': 765604, 'be donating it': 114545, 'donating it stock': 254472, 'it stock to': 461266, 'stock to food': 802996, 'food bank or': 313609, 'bank or on': 110079, 'or on table': 616373, 'on table outside': 603866, 'table outside to': 831493, 'outside to help': 629620, 'to help oneself': 907574, 'help oneself ffodbanks': 390188, '701': 21927, 'nyc administrative': 577955, 'administrative code': 32516, 'code 20': 185329, '20 701': 12921, '701 make': 21930, 'percent or': 651166, 'during 60': 262425, 've witnessed': 953658, 'witnessed pricegouging': 1003166, 'like handsanitizer': 490376, 'handsanitizer during': 376521, 'the attorney': 849034, 'general learn': 345395, 'nyc administrative code': 577956, 'administrative code 20': 32517, 'code 20 701': 185330, '20 701 make': 12922, '701 make it': 21931, 'illegal to increase': 416252, 'increase price by': 432999, 'price by 10': 673001, 'by 10 percent': 151519, '10 percent or': 1629, 'percent or more': 651167, 'more during 60': 539088, 'during 60 day': 262426, 'day period if': 228212, 'period if you': 651788, 'you ve witnessed': 1022071, 've witnessed pricegouging': 953659, 'witnessed pricegouging on': 1003167, 'pricegouging on item': 677834, 'item like handsanitizer': 463415, 'like handsanitizer during': 490377, 'handsanitizer during the': 376522, 'during the you': 263220, 'report it the': 712067, 'it the attorney': 461511, 'the attorney general': 849035, 'attorney general learn': 102652, 'general learn how': 345396, 'expert share': 291970, 'share tip': 755298, 'eat during': 265891, 'expert share tip': 291973, 'share tip for': 755299, 'tip for how': 898769, 'for how to': 322423, 'how to shop': 409082, 'shop and make': 759854, 'sure your food': 827882, 'your food is': 1023920, 'food is safe': 315148, 'is safe to': 451623, 'safe to eat': 730048, 'to eat during': 904879, 'eat during the': 265893, 'news nervous': 560626, 'nervous consumer': 557466, 'consumer hoard': 197756, 'restaurant go': 716483, 'out while': 627834, 'while unemployment': 987495, 'unemployment skyrocket': 941296, 'skyrocket and': 773287, 'pantry suffer': 639680, 'suffer but': 817197, 'but solution': 147086, 'solution exist': 782015, 'exist look': 290241, 'at rising': 100327, 'waste food': 968119, 'insecurity amid': 439140, 'waste news': 968155, 'in the news': 429394, 'the news nervous': 861620, 'news nervous consumer': 560627, 'nervous consumer hoard': 557468, 'consumer hoard grocery': 197757, 'hoard grocery and': 398805, 'grocery and restaurant': 364255, 'and restaurant go': 70378, 'restaurant go take': 716484, 'go take out': 354190, 'take out while': 832464, 'out while unemployment': 627836, 'while unemployment skyrocket': 987496, 'unemployment skyrocket and': 941297, 'skyrocket and food': 773288, 'and food pantry': 63073, 'food pantry suffer': 315800, 'pantry suffer but': 639681, 'suffer but solution': 817198, 'but solution exist': 147088, 'solution exist look': 782016, 'exist look at': 290242, 'look at rising': 502292, 'at rising food': 100328, 'rising food waste': 723222, 'food waste food': 317480, 'waste food insecurity': 968124, 'food insecurity amid': 315058, 'insecurity amid panic': 439142, 'amid panic food': 52583, 'panic food waste': 638114, 'food waste news': 317485, 'brainless': 137615, 'nice one': 562450, 'one let': 606591, 'but show': 147052, 'show ppl': 767097, 'ppl in': 668255, 'france queueing': 331018, 'queueing for': 694169, 'food brainless': 313781, 'brainless ffs': 137616, 'nice one let': 562451, 'one let not': 606592, 'let not panic': 486943, 'panic but show': 637450, 'but show ppl': 147053, 'show ppl in': 767098, 'ppl in france': 668256, 'in france queueing': 423083, 'france queueing for': 331019, 'queueing for food': 694170, 'for food brainless': 321563, 'food brainless ffs': 313782, 'be wonderful': 118127, 'wonderful if': 1004088, 'prepare your': 670151, 'up folk': 944867, 'folk could': 312130, 'could refrain': 209586, 'hoarding extra': 399288, 'extra this': 293672, 'go long': 353807, 'ensure there': 278098, 'would be wonderful': 1011670, 'be wonderful if': 118128, 'wonderful if you': 1004089, 'if you prepare': 415495, 'you prepare your': 1020413, 'prepare your family': 670153, 'family and stock': 297606, 'stock up folk': 803082, 'up folk could': 944868, 'folk could refrain': 312131, 'could refrain from': 209587, 'and hoarding extra': 64653, 'hoarding extra this': 399289, 'extra this go': 293673, 'this go long': 887714, 'go long way': 353808, 'way to ensure': 970025, 'to ensure there': 905197, 'ensure there is': 278100, 'one minute': 606669, 'minute video': 533888, 'video about': 956595, 'to prepare': 911997, 'prepare hand': 670096, 'here is one': 393242, 'is one minute': 450504, 'one minute video': 606672, 'minute video about': 533889, 'video about how': 956596, 'how to prepare': 409055, 'to prepare hand': 912002, 'prepare hand sanitizer': 670097, 'sanitizer in one': 735149, 'in one minute': 426149, 'yoghurt': 1016509, 'inhaler': 438430, 'ventilon': 954650, 'suffer with': 817249, 'with chest': 997616, 'chest infection': 175564, 'infection work': 436888, 'if work': 415365, 'work the': 1005806, 'the cold': 851140, 'cold fridge': 185760, 'fridge stocking': 333426, 'stocking yoghurt': 803626, 'yoghurt and': 1016510, 'cheese my': 175205, 'my chest': 547671, 'chest get': 175560, 'get real': 347888, 'real wheezy': 701453, 'wheezy after': 983093, 'after my': 35941, 'shift and': 758230, 'following day': 312711, 'day ve': 228643, 've an': 952841, 'an inhaler': 56334, 'inhaler ventilon': 438445, 'ventilon but': 954651, 'no doctor': 564034, 'doctor ha': 250939, 've asthma': 952851, 'asthma am': 97177, 'suffer with chest': 817250, 'with chest infection': 997617, 'chest infection work': 175566, 'infection work in': 436889, 'and if work': 64956, 'if work the': 415367, 'work the cold': 1005807, 'the cold fridge': 851142, 'cold fridge stocking': 185761, 'fridge stocking yoghurt': 333427, 'stocking yoghurt and': 803627, 'yoghurt and cheese': 1016511, 'and cheese my': 59802, 'cheese my chest': 175206, 'my chest get': 547673, 'chest get real': 175561, 'get real wheezy': 347896, 'real wheezy after': 701454, 'wheezy after my': 983094, 'after my shift': 35945, 'my shift and': 550036, 'shift and the': 758237, 'and the following': 73382, 'the following day': 855503, 'following day ve': 312714, 'day ve an': 228644, 've an inhaler': 952843, 'an inhaler ventilon': 56336, 'inhaler ventilon but': 438446, 'ventilon but no': 954652, 'but no doctor': 146483, 'no doctor ha': 564035, 'doctor ha said': 250941, 'ha said you': 371800, 'said you ve': 731612, 'you ve asthma': 1022026, 've asthma am': 952852, 'asthma am at': 97178, 'am at risk': 49912, 'price opec': 675756, 'opec to': 611978, 'hold emergency': 399918, 'emergency meeting': 272805, 'meeting with': 527793, 'russia others': 728531, 'on output': 602650, 'oil price opec': 597210, 'price opec to': 675757, 'opec to hold': 611980, 'to hold emergency': 907908, 'hold emergency meeting': 399919, 'emergency meeting with': 272808, 'meeting with russia': 527798, 'with russia others': 1000533, 'russia others on': 728532, 'others on output': 621566, 'on output cut': 602651, 'do understand': 250428, 'understand please': 940698, 'our support': 625042, 'you during': 1018380, 'time adp': 896207, 'we do understand': 971358, 'do understand please': 250430, 'understand please check': 940699, 'out our support': 626997, 'our support for': 625045, 'support for you': 826528, 'for you during': 328052, 'you during this': 1018384, 'this time adp': 890616, 'moscow relies': 542005, 'it energy': 457818, 'energy export': 276452, 'export low': 292662, 'it nervous': 459770, 'nervous no': 557472, 'one need': 606706, 'need oil': 555357, 'oil now': 596977, 'writes one': 1012858, 'one russian': 606978, 'russian paper': 728656, 'paper today': 640933, 'doesn cure': 251742, 'cure people': 220789, 'of another': 580231, 'another warns': 77950, 'warns the': 967297, 'the commodity': 851240, 'commodity market': 189216, 'face collapse': 294356, 'moscow relies on': 542006, 'relies on it': 709519, 'on it energy': 601657, 'it energy export': 457819, 'energy export low': 276453, 'export low oil': 292663, 'price are making': 672697, 'are making it': 87986, 'making it nervous': 511146, 'it nervous no': 459772, 'nervous no one': 557473, 'no one need': 564950, 'one need oil': 606708, 'need oil now': 555358, 'oil now writes': 596978, 'now writes one': 576488, 'writes one russian': 1012859, 'one russian paper': 606979, 'russian paper today': 728658, 'paper today after': 640934, 'today after all': 919153, 'after all it': 35326, 'all it doesn': 43267, 'it doesn cure': 457626, 'doesn cure people': 251743, 'cure people of': 220790, 'people of another': 648909, 'of another warns': 580234, 'another warns the': 77952, 'warns the commodity': 967298, 'the commodity market': 851243, 'commodity market face': 189219, 'market face collapse': 516366, 'staff today': 793005, 'that new': 845325, 'new look': 559066, 'look have': 502399, 'been letting': 121454, 'letting staff': 487441, 'staff go': 792493, 'without pay': 1002826, 'pay due': 644835, 'so bare': 776592, 'bare that': 110958, 'maybe check': 521654, 'out different': 625953, 'different high': 241961, 'store website': 811198, 'website instead': 975311, 'from staff today': 337400, 'staff today that': 793006, 'today that new': 920271, 'that new look': 845329, 'new look have': 559067, 'look have been': 502400, 'have been letting': 379596, 'been letting staff': 121455, 'letting staff go': 487442, 'staff go without': 792495, 'go without pay': 354518, 'without pay due': 1002828, 'pay due to': 644836, '19 so bare': 10636, 'so bare that': 776594, 'bare that in': 110959, 'that in mind': 844453, 'mind when you': 532777, 'you re doing': 1020602, 're doing your': 698556, 'doing your online': 252887, 'shopping and maybe': 762000, 'and maybe check': 66808, 'maybe check out': 521655, 'check out different': 174545, 'out different high': 625954, 'different high street': 241962, 'street store website': 813129, 'store website instead': 811199, 'motor': 543329, 'me disabled': 522651, 'disabled severe': 243960, 'severe motor': 754035, 'motor problem': 543336, 'husband asthma': 411681, 'asthma cancer': 97191, 'cancer self': 161274, 'self isolated': 747701, 'isolated cannot': 454985, 'get fast': 346992, 'fast delivery': 299941, 'delivery cannot': 233779, 'get they': 348395, 'they let': 882557, 'bulk so': 142356, 'stop hoarder': 804718, 'hoarder the': 399117, 'coronavirus walk': 207040, 'me disabled severe': 522652, 'disabled severe motor': 243961, 'severe motor problem': 754037, 'motor problem my': 543337, 'problem my husband': 679608, 'my husband asthma': 548772, 'husband asthma cancer': 411682, 'asthma cancer self': 97192, 'cancer self isolated': 161275, 'self isolated cannot': 747704, 'isolated cannot get': 454986, 'cannot get fast': 161886, 'get fast delivery': 346993, 'fast delivery cannot': 299942, 'delivery cannot get': 233780, 'cannot get they': 161910, 'get they let': 348396, 'they let people': 882559, 'let people buy': 486972, 'people buy in': 647334, 'buy in bulk': 148810, 'in bulk so': 421046, 'bulk so how': 142357, 'so how do': 777338, 'do you stop': 250683, 'you stop hoarder': 1021437, 'stop hoarder the': 804721, 'hoarder the coronavirus': 399118, 'the coronavirus walk': 851940, 'coronavirus walk through': 207041, 'walk through the': 964894, 'the supermarket like': 868673, 'anything worse': 80951, 'than being': 840398, 'with dickhead': 998027, 'dickhead of': 240485, 'customer pilling': 222689, 'pilling their': 656698, 'with pasta': 1000107, 'and bog': 59046, 'could not think': 209462, 'not think of': 572080, 'think of anything': 885437, 'of anything worse': 580297, 'anything worse than': 80952, 'worse than being': 1011006, 'than being on': 840402, 'being on minimum': 125487, 'wage in supermarket': 963902, 'supermarket with dickhead': 823918, 'with dickhead of': 998028, 'dickhead of customer': 240486, 'of customer pilling': 582278, 'customer pilling their': 222690, 'pilling their trolley': 656699, 'their trolley with': 875038, 'trolley with pasta': 932505, 'with pasta and': 1000108, 'pasta and bog': 643676, 'and bog roll': 59047, 'virus highly': 958283, 'highly recommend': 396091, 'recommend this': 704721, 'your website': 1026320, 'is simple': 451923, 'task you': 834737, '19 the corona': 11181, 'corona virus highly': 204315, 'virus highly recommend': 958284, 'highly recommend this': 396093, 'recommend this company': 704722, 'this company for': 886822, 'company for your': 190678, 'for your website': 328225, 'your website it': 1026323, 'website it is': 975327, 'it is simple': 459079, 'is simple task': 451925, 'simple task you': 770107, 'task you can': 834738, 'can do yourself': 158130, 'eaglenews': 264385, 'in berlin': 420795, 'here eaglenews': 392943, 'shelf in berlin': 757187, 'in berlin supermarket': 420798, 'berlin supermarket amid': 127348, 'supermarket amid covid': 818901, 'outbreak read here': 628571, 'read here eaglenews': 700349, 'proceeded': 679840, 'and tried': 74454, 'que until': 693328, 'until woman': 943934, 'woman walk': 1003654, 'walk and': 964737, 'up behind': 944484, 'asked her': 95756, 'her if': 392132, 'she watch': 756454, 'and proceeded': 69537, 'proceeded to': 679841, 'ask her': 95552, 'back socialdistancing': 107274, 'been to supermarket': 122227, 'supermarket and tried': 819091, 'and tried to': 74455, 'tried to distance': 931831, 'to distance myself': 904431, 'distance myself in': 246771, 'the que until': 865001, 'que until woman': 693329, 'until woman walk': 943935, 'woman walk and': 1003655, 'walk and stand': 964739, 'and stand right': 72221, 'right up behind': 722382, 'up behind me': 944485, 'me asked her': 522458, 'asked her if': 95758, 'her if she': 392133, 'if she watch': 414784, 'she watch the': 756455, 'watch the news': 968549, 'the news and': 861602, 'news and proceeded': 560235, 'and proceeded to': 69538, 'proceeded to ask': 679842, 'to ask her': 900754, 'ask her to': 95553, 'her to step': 392474, 'to step back': 915385, 'step back socialdistancing': 799508, 'been emptied': 121075, 'emptied case': 274674, 'case spike': 166027, 'spike across': 789257, 'what time': 982444, 'time will': 898338, 'supermarket shelf have': 822479, 'shelf have been': 757142, 'have been emptied': 379526, 'been emptied case': 121076, 'emptied case spike': 274675, 'case spike across': 166028, 'spike across the': 789258, 'uk but what': 938232, 'but what time': 147800, 'what time will': 982447, 'time will open': 898342, 'will open and': 994342, 'and close in': 60000, 'close in the': 182675, 'fascism': 299776, 'grim': 363957, 'of gen': 584073, 'gen and': 345207, 'millennials high': 532011, 'unemployment low': 941246, 'wage unaffordable': 963978, 'unaffordable apartment': 939392, 'apartment price': 81418, 'price few': 673860, 'few job': 303892, 'job prospect': 466109, 'prospect fascism': 684672, 'fascism growing': 299777, 'growing mental': 367213, 'problem year': 679776, 'of dismantling': 582697, 'net and': 557535, '19 imagine': 7680, 'the grim': 856790, 'grim prospect': 363968, 'prospect now': 684686, 'face of gen': 294654, 'of gen and': 584074, 'gen and millennials': 345208, 'and millennials high': 67024, 'millennials high unemployment': 532012, 'high unemployment low': 395497, 'unemployment low wage': 941248, 'low wage unaffordable': 505735, 'wage unaffordable apartment': 963979, 'unaffordable apartment price': 939393, 'apartment price few': 81419, 'price few job': 673861, 'few job prospect': 303893, 'job prospect fascism': 466110, 'prospect fascism growing': 684673, 'fascism growing mental': 299778, 'growing mental health': 367214, 'mental health problem': 528648, 'health problem year': 386758, 'problem year of': 679777, 'year of dismantling': 1014776, 'of dismantling the': 582698, 'dismantling the social': 245995, 'the social safety': 867417, 'safety net and': 730634, 'net and all': 557536, 'and all this': 57900, 'all this before': 45093, 'this before covid': 886528, 'covid 19 imagine': 213247, '19 imagine the': 7683, 'imagine the grim': 416799, 'the grim prospect': 856793, 'grim prospect now': 363969, 'grosser': 366448, 'it long': 459454, 'been clear': 120828, 'clear cash': 181235, 'cash is': 166260, 'disgusting mode': 245424, 'mode of': 535188, 'of payment': 587840, 'but paying': 146756, 'paying with': 645524, 'card is': 163561, 'is possibly': 450954, 'possibly even': 665918, 'even grosser': 284143, 'it long been': 459455, 'long been clear': 501340, 'been clear cash': 120829, 'clear cash is': 181236, 'cash is disgusting': 166262, 'is disgusting mode': 447222, 'disgusting mode of': 245425, 'mode of payment': 535191, 'of payment but': 587841, 'payment but paying': 645568, 'but paying with': 146758, 'paying with credit': 645525, 'credit card is': 216341, 'card is possibly': 163563, 'is possibly even': 450955, 'possibly even grosser': 665919, 'mummy': 546053, 'to dan': 903906, 'dan murphy': 225540, 'murphy to': 546212, 'being stuck': 125872, 'stuck home': 814585, 'kid without': 474177, 'without mummy': 1002793, 'mummy medicine': 546060, 'off to dan': 594319, 'to dan murphy': 903907, 'dan murphy to': 225541, 'murphy to stock': 546214, 'stock up can': 803067, 'up can think': 944577, 'can think of': 159988, 'than being stuck': 840404, 'being stuck home': 125874, 'stuck home with': 814587, 'home with the': 402539, 'the kid without': 858799, 'kid without mummy': 474178, 'without mummy medicine': 1002794, 'tread': 930753, '806': 22741, '464': 19236, '9197': 23458, 'pandemic tread': 636835, 'tread connection': 930754, 'connection is': 194702, 'open providing': 612467, 'providing tire': 687121, 'tire service': 899019, 'and waiving': 75131, 'waiving on': 964568, 'on site': 603479, 'site fee': 771913, 'fee for': 302169, 'driver please': 259697, 'contact 806': 199996, '806 464': 22742, '464 9197': 19237, '9197 or': 23459, '19 pandemic tread': 9507, 'pandemic tread connection': 636836, 'tread connection is': 930755, 'connection is open': 194704, 'is open providing': 450576, 'open providing tire': 612468, 'providing tire service': 687122, 'tire service and': 899020, 'service and waiving': 752115, 'and waiving on': 75133, 'waiving on site': 964569, 'on site fee': 603484, 'site fee for': 771914, 'fee for emergency': 302172, 'for emergency service': 321022, 'emergency service for': 272962, 'service for healthcare': 752380, 'responder and delivery': 715409, 'delivery driver please': 233929, 'driver please contact': 259698, 'please contact 806': 659828, 'contact 806 464': 199997, '806 464 9197': 22743, '464 9197 or': 19238, '9197 or visit': 23460, 'fightingcoronavirus': 305166, 'an almost': 55246, 'store safeway': 809955, 'safeway so': 730854, 'so decided': 776847, 'to print': 912136, 'print it': 678277, 'shoe with': 759698, 'with hope': 998875, 'away wishing': 106117, 'wishing all': 996871, 'good health': 357173, 'health fightingcoronavirus': 386431, 'came home to': 157010, 'home to an': 402305, 'to an almost': 900440, 'an almost empty': 55247, 'almost empty grocery': 46607, 'grocery store safeway': 365739, 'store safeway so': 809957, 'safeway so decided': 730855, 'so decided to': 776848, 'decided to print': 230927, 'to print it': 912137, 'print it on': 678278, 'it on my': 460051, 'on my shoe': 602314, 'my shoe with': 550043, 'shoe with hope': 759699, 'with hope that': 998876, 'hope that it': 403645, 'it will go': 462398, 'will go away': 993540, 'go away wishing': 353335, 'away wishing all': 106118, 'wishing all of': 996873, 'all of good': 43690, 'of good health': 584222, 'good health fightingcoronavirus': 357177, 'criticalpersonnel': 218744, 'reclassified groceryworkers': 704587, 'groceryworkers criticalpersonnel': 366397, 'criticalpersonnel they': 218745, 'need ppe': 555455, 'ppe badly': 667920, 'have reclassified groceryworkers': 382217, 'reclassified groceryworkers criticalpersonnel': 704588, 'groceryworkers criticalpersonnel they': 366398, 'criticalpersonnel they need': 218746, 'they need ppe': 882754, 'need ppe badly': 555457, 'llc': 497111, 'seen photo': 747193, 'store meat': 808935, 'meat case': 525512, 'case caused': 165680, 'consumer panic': 198328, 'pandemic 210': 634780, '210 analytics': 15045, 'analytics llc': 57231, 'llc say': 497114, 'say meat': 738931, 'department sale': 237258, 'sale without': 732659, 'without deli': 1002587, 'deli surged': 232936, 'surged by': 828295, 'by 76': 151704, '76 over': 22236, 'ending march': 276185, '15 2020': 3648, 'by now you': 153377, 'now you ve': 576520, 'you ve probably': 1022057, 'probably seen photo': 679371, 'seen photo of': 747195, 'of empty grocery': 583090, 'grocery store meat': 365562, 'store meat case': 808936, 'meat case caused': 525513, 'case caused by': 165681, 'caused by consumer': 167831, 'by consumer panic': 152191, 'consumer panic buying': 198329, 'buying over the': 150859, '19 pandemic 210': 9247, 'pandemic 210 analytics': 634781, '210 analytics llc': 15046, 'analytics llc say': 57232, 'llc say meat': 497115, 'say meat department': 738932, 'meat department sale': 525540, 'department sale without': 237259, 'sale without deli': 732661, 'without deli surged': 1002588, 'deli surged by': 232937, 'surged by 76': 828297, 'by 76 over': 151705, '76 over the': 22237, 'over the week': 630783, 'the week ending': 871299, 'week ending march': 976188, 'ending march 15': 276187, 'march 15 2020': 515074, 'aegis': 33881, 'ngf': 561818, 'telecommunication': 836701, 'disbursement': 244311, 'the 36': 848093, '36 state': 18026, 'state under': 796052, 'the aegis': 848390, 'aegis of': 33882, 'nigeria governor': 562746, 'governor forum': 360901, 'forum ngf': 329956, 'ngf have': 561821, 'have resolved': 382286, 'resolved to': 714652, 'the telecommunication': 869258, 'telecommunication industry': 836705, 'industry mean': 435988, 'mean to': 524727, 'vulnerable nigerian': 961053, 'nigerian for': 562844, 'the disbursement': 853345, 'disbursement of': 244312, 'of palliative': 587683, 'governor of the': 360956, 'of the 36': 590769, 'the 36 state': 848094, '36 state under': 18027, 'state under the': 796053, 'under the aegis': 940289, 'the aegis of': 848391, 'aegis of the': 33883, 'the nigeria governor': 861798, 'nigeria governor forum': 562747, 'governor forum ngf': 360902, 'forum ngf have': 329957, 'ngf have resolved': 561822, 'have resolved to': 382287, 'resolved to rely': 714653, 'rely on consumer': 709637, 'on consumer data': 600038, 'consumer data in': 197056, 'in the telecommunication': 429597, 'the telecommunication industry': 869259, 'telecommunication industry mean': 836706, 'industry mean to': 435989, 'mean to reach': 524741, 'to vulnerable nigerian': 918247, 'vulnerable nigerian for': 961054, 'nigerian for the': 562846, 'for the disbursement': 326385, 'the disbursement of': 853346, 'disbursement of palliative': 244313, 'article for': 94315, 'report explains': 711923, 'explains exactly': 292206, 'exactly how': 288733, 'you or your': 1020228, 'or your loved': 617885, 'loved one is': 504915, 'one is at': 606500, 'is at high': 445864, '19 my article': 8719, 'my article for': 547319, 'article for consumer': 94316, 'for consumer report': 320286, 'consumer report explains': 198708, 'report explains exactly': 711924, 'explains exactly how': 292207, 'exactly how to': 288737, 'priscillaconsolo': 678699, 'to priscillaconsolo': 912148, 'priscillaconsolo and': 678700, 'and adam': 57657, 'adam for': 31216, 'helping my': 391393, 'mom stock': 535804, 'food true': 317370, 'hero let': 394028, 'let beat': 486623, 'virus handwashing': 958256, 'socialdistancing orlando': 780579, 'orlando florida': 619629, 'thanks to priscillaconsolo': 842254, 'to priscillaconsolo and': 912149, 'priscillaconsolo and adam': 678701, 'and adam for': 57659, 'adam for helping': 31217, 'for helping my': 322200, 'helping my mom': 391395, 'my mom stock': 549281, 'mom stock up': 535805, 'on food true': 600924, 'food true hero': 317371, 'true hero let': 933101, 'hero let beat': 394029, 'let beat this': 486625, 'beat this virus': 118573, 'this virus handwashing': 891009, 'virus handwashing socialdistancing': 958257, 'handwashing socialdistancing orlando': 376860, 'socialdistancing orlando florida': 780580, 'caput': 162966, 'case count': 165699, 'count in': 210129, 'in louisiana': 424939, 'louisiana on': 504545, 'on per': 602763, 'per caput': 650734, 'caput basis': 162967, 'basis is': 112250, 'is among': 445624, 'highest in': 395825, 'country this': 211145, 'serious situation': 751473, 'the case count': 850457, 'case count in': 165700, 'count in louisiana': 210130, 'in louisiana on': 424941, 'louisiana on per': 504546, 'on per caput': 602764, 'per caput basis': 650735, 'caput basis is': 162968, 'basis is among': 112252, 'is among the': 445626, 'among the highest': 53063, 'the highest in': 857340, 'highest in the': 395826, 'the country this': 852165, 'country this is': 211146, 'is very very': 453703, 'very very serious': 955650, 'very serious situation': 955521, 'saw on': 738189, 'news how': 560517, 'how those': 408961, 'those reusable': 892402, 'grocery sack': 364924, 'sack people': 729055, 'bring to': 140100, 'home could': 400956, 'transmit time': 929790, 'for governor': 321965, 'governor store': 360996, 'owner etc': 632447, 'who banned': 988294, 'banned plastic': 110594, 'lift that': 489460, 'that ban': 842922, 'ban for': 109204, 'just saw on': 469687, 'saw on the': 738191, 'the news how': 861612, 'news how those': 560519, 'how those reusable': 408965, 'those reusable grocery': 892403, 'reusable grocery sack': 720164, 'grocery sack people': 364925, 'sack people bring': 729056, 'people bring to': 647307, 'bring to and': 140101, 'to and from': 900503, 'and from home': 63346, 'from home could': 335850, 'home could transmit': 400959, 'could transmit time': 209787, 'transmit time for': 929791, 'time for governor': 896712, 'for governor store': 321966, 'governor store owner': 360997, 'store owner etc': 809429, 'owner etc who': 632448, 'etc who banned': 282881, 'who banned plastic': 988295, 'banned plastic bag': 110595, 'plastic bag to': 658811, 'bag to lift': 108428, 'to lift that': 909265, 'lift that ban': 489461, 'that ban for': 842923, 'ban for such': 109206, 'for such time': 325977, 'such time this': 816829, 'to listen': 909326, 'saying here': 739606, 'it compare': 457235, 'news socialmedia': 560804, 'socialmedia branding': 781076, 'branding analytics': 138122, 'uncertain time it': 939618, 'time it important': 897081, 'important to listen': 419058, 'to listen to': 909330, 'listen to what': 494760, 'to what people': 918523, 'people are saying': 647064, 'are saying here': 89821, 'saying here how': 739607, 'here how consumer': 393100, 'consumer are talking': 196319, 'coronavirus crisis and': 205737, 'crisis and how': 217030, 'and how it': 64820, 'how it compare': 408127, 'it compare to': 457237, 'compare to the': 191414, 'to the news': 916900, 'the news socialmedia': 861629, 'news socialmedia branding': 560805, 'socialmedia branding analytics': 781077, 'fook': 318276, 'pissed': 656962, 'jammed': 464430, 'fook panic': 318281, 'need loo': 555177, 'sanitizer also': 734348, 'being pissed': 125547, 'pissed off': 656973, 'off co': 593732, 'co tesco': 184969, 'tesco car': 838681, 'park is': 641937, 'is jammed': 449087, 'jammed if': 464433, 'period ha': 651777, 'ha thought': 372270, 'thought nothing': 893135, 'else it': 271763, 'that life': 844878, 'under no': 940174, 'no obligation': 564895, 'obligation to': 578465, 'give what': 350833, 'expect stockpile': 290730, 'stockpile on': 803786, 'hope stayhome': 403632, 'fook panic buying': 318282, 'buying thing that': 151208, 'thing that we': 884824, 'that we do': 847370, 'not need loo': 570662, 'need loo roll': 555178, 'hand sanitizer also': 375296, 'sanitizer also being': 734349, 'also being pissed': 47955, 'being pissed off': 125548, 'pissed off co': 656974, 'off co tesco': 593733, 'co tesco car': 184970, 'tesco car park': 838682, 'car park is': 163226, 'park is jammed': 641938, 'is jammed if': 449088, 'jammed if this': 464434, 'if this period': 415166, 'this period ha': 889519, 'period ha thought': 651778, 'ha thought nothing': 372271, 'thought nothing else': 893136, 'nothing else it': 572993, 'else it that': 271765, 'it that life': 461492, 'that life is': 844880, 'life is under': 488820, 'is under no': 453464, 'under no obligation': 940175, 'no obligation to': 564896, 'obligation to give': 578467, 'to give what': 906727, 'give what we': 350834, 'what we expect': 982550, 'we expect stockpile': 971499, 'expect stockpile on': 290731, 'stockpile on hope': 803788, 'on hope stayhome': 601360, 'korea see': 477500, 'see steep': 745743, 'steep rise': 799396, 'korea see steep': 477501, 'see steep rise': 745744, 'steep rise in': 799397, 'rise in online': 722894, 'shopping during covid': 762533, 'reckless': 704547, 'ii': 415969, 'explosive': 292568, 'expansion': 290549, 'suppressed': 827404, 'recovery expect': 705323, 'expect strong': 290732, 'strong recovery': 814102, 'recovery once': 705372, 'this reckless': 889839, 'reckless hysteria': 704552, 'hysteria end': 412441, 'end economist': 275815, 'economist expected': 267550, 'expected depression': 290885, 'depression after': 237622, 'after world': 36585, 'war ii': 966464, 'ii only': 415982, 'an explosive': 55978, 'explosive economic': 292569, 'economic expansion': 267092, 'expansion long': 290561, 'long suppressed': 501664, 'suppressed consumer': 827409, 'demand turned': 236420, '19 recovery expect': 10014, 'recovery expect strong': 705324, 'expect strong recovery': 290733, 'strong recovery once': 814103, 'recovery once this': 705374, 'once this reckless': 605757, 'this reckless hysteria': 889840, 'reckless hysteria end': 704553, 'hysteria end economist': 412442, 'end economist expected': 275816, 'economist expected depression': 267551, 'expected depression after': 290886, 'depression after world': 237623, 'after world war': 36586, 'world war ii': 1010136, 'war ii only': 966468, 'ii only to': 415983, 'see an explosive': 744895, 'an explosive economic': 55979, 'explosive economic expansion': 292570, 'economic expansion long': 267093, 'expansion long suppressed': 290562, 'long suppressed consumer': 501665, 'suppressed consumer demand': 827410, 'consumer demand turned': 197171, 'demand turned to': 236421, 'turned to supply': 935890, 'coordinating': 203204, '43': 18952, 'foodbanking': 317808, 'bank around': 109664, 'experiencing unprecedented': 291713, 'demand million': 235869, 'and hunger': 64873, 'hunger rise': 411181, 'rise is': 722921, 'is coordinating': 446836, 'coordinating technical': 203205, 'technical and': 836194, 'financial assistance': 306327, 'member food': 528078, 'in 43': 419930, '43 country': 18961, 'country foodbanking': 210662, 'food bank around': 313523, 'bank around the': 109665, 'world are experiencing': 1009313, 'are experiencing unprecedented': 86354, 'experiencing unprecedented demand': 291714, 'unprecedented demand million': 943120, 'demand million of': 235871, 'of people lose': 587942, 'job and hunger': 465631, 'and hunger rise': 64875, 'hunger rise is': 411182, 'rise is coordinating': 722922, 'is coordinating technical': 446837, 'coordinating technical and': 203206, 'technical and financial': 836195, 'and financial assistance': 62869, 'financial assistance to': 306334, 'assistance to it': 96756, 'to it member': 908597, 'it member food': 459596, 'member food bank': 528079, 'bank in 43': 109914, 'in 43 country': 419931, '43 country foodbanking': 18962, 'innovative': 438915, 'to shifting': 914420, 'spending during': 788792, '19 non': 8812, 'are furloughing': 86760, 'furloughing employee': 341928, 'close store': 182806, 'production facility': 682030, 'facility due': 295323, 'to infection': 908360, 'infection resulting': 436830, 'resulting in': 717702, 'in innovative': 424108, 'innovative action': 438916, 'response to shifting': 715880, 'to shifting consumer': 914421, 'shifting consumer spending': 758524, 'consumer spending during': 199056, 'spending during covid': 788793, 'covid 19 non': 213480, '19 non food': 8813, 'non food retailer': 566394, 'food retailer are': 316222, 'retailer are furloughing': 719000, 'are furloughing employee': 86761, 'furloughing employee while': 341929, 'employee while some': 274417, 'while some food': 987296, 'some food retailer': 782872, 'to close store': 902896, 'close store and': 182808, 'store and production': 806323, 'and production facility': 69580, 'production facility due': 682032, 'facility due to': 295324, 'due to infection': 261829, 'to infection resulting': 908364, 'infection resulting in': 436831, 'resulting in innovative': 717708, 'in innovative action': 424109, 'innovative action from': 438917, 'action from the': 30030, 'from the industry': 337756, 'across britain': 29278, 'britain at': 140379, 'of disruption': 582707, 'disruption amid': 246435, 'outbreak it': 628391, 'essential that': 281654, 'all shop': 44314, 'shop take': 760876, 'disinfect the': 245577, 'of shop': 589617, 'shop trolley': 760975, 'uk supermarket across': 938755, 'supermarket across britain': 818766, 'across britain at': 29279, 'britain at risk': 140380, 'risk of disruption': 723742, 'of disruption amid': 582708, 'disruption amid covid': 246436, '19 outbreak it': 9143, 'outbreak it is': 628392, 'it is essential': 458947, 'is essential that': 447553, 'essential that all': 281655, 'that all shop': 842561, 'all shop take': 44322, 'shop take step': 760877, 'step to disinfect': 799645, 'to disinfect the': 904404, 'disinfect the handle': 245578, 'handle of shop': 376240, 'of shop trolley': 589627, 'shop trolley basket': 760976, 'kazatomprom': 471176, 'nuclear': 576753, 'reactor': 700238, 'kazatomprom slash': 471177, 'slash 2020': 773551, '2020 production': 14536, 'production guidance': 682062, 'guidance by': 368209, 'over 10m': 629774, '10m pound': 2355, 'pound due': 667363, 'crisis morning': 217733, 'morning spot': 541456, 'spot price': 790094, 'price jump': 674951, 'jump to': 467899, 'per pound': 650991, 'pound nuclear': 667388, 'nuclear reactor': 576758, 'reactor keep': 700239, 'keep producing': 471821, 'producing clean': 680747, 'clean carbon': 180492, 'carbon free': 163398, 'free electricity': 331794, 'electricity and': 271145, 'and consuming': 60455, 'consuming uranium': 199810, 'kazatomprom slash 2020': 471178, 'slash 2020 production': 773552, '2020 production guidance': 14537, 'production guidance by': 682063, 'guidance by over': 368210, 'by over 10m': 153494, 'over 10m pound': 629775, '10m pound due': 2356, 'pound due to': 667364, '19 crisis morning': 6286, 'crisis morning spot': 217734, 'morning spot price': 541457, 'spot price jump': 790098, 'price jump to': 674958, 'jump to near': 467901, 'to near 30': 910495, 'near 30 per': 553457, '30 per pound': 17188, 'per pound nuclear': 650993, 'pound nuclear reactor': 667389, 'nuclear reactor keep': 576759, 'reactor keep producing': 700240, 'keep producing clean': 471822, 'producing clean carbon': 680748, 'clean carbon free': 180493, 'carbon free electricity': 163400, 'free electricity and': 331795, 'electricity and consuming': 271146, 'and consuming uranium': 60456, 'petersburg': 653564, 'ah nothing': 39094, 'like government': 490337, 'government propaganda': 360487, 'propaganda all': 684056, 'well comrade': 978114, 'comrade via': 192782, 'via en': 955956, 'en st': 275401, 'st petersburg': 791749, 'petersburg governor': 653565, 'governor visit': 361020, 'visit grocery': 959263, 'to verify': 918144, 'verify stocked': 954792, 'and speaks': 72061, 'speaks to': 787804, 'to random': 912746, 'random shopper': 696619, 'who randomly': 989498, 'randomly turn': 696655, 'an actress': 55089, 'actress russia': 30620, 'ah nothing like': 39095, 'nothing like government': 573096, 'like government propaganda': 490338, 'government propaganda all': 360488, 'propaganda all is': 684057, 'is well comrade': 453841, 'well comrade via': 978115, 'comrade via en': 192783, 'via en st': 955957, 'en st petersburg': 275402, 'st petersburg governor': 791750, 'petersburg governor visit': 653566, 'governor visit grocery': 361021, 'visit grocery store': 959264, 'store to verify': 810825, 'to verify stocked': 918145, 'verify stocked shelf': 954793, 'stocked shelf and': 803387, 'shelf and speaks': 756763, 'and speaks to': 72062, 'speaks to random': 787808, 'to random shopper': 912747, 'random shopper who': 696620, 'shopper who randomly': 761829, 'who randomly turn': 989499, 'randomly turn out': 696656, 'turn out to': 935744, 'be an actress': 113589, 'an actress russia': 55090, 'magazine': 508330, 'theglobe': 872373, 'nationalenquirer': 552650, 'newsoftheworld': 561057, 'completely irresponsible': 192314, 'and unacceptable': 74590, 'unacceptable that': 939371, 'supermarket rag': 822152, 'rag magazine': 695526, 'magazine theglobe': 508347, 'theglobe nationalenquirer': 872374, 'nationalenquirer newsoftheworld': 552651, 'newsoftheworld etc': 561058, 'etc sell': 282738, 'sell cure': 748672, 'their cover': 872910, 'cover every': 212218, 'supermarket need': 821584, 'eliminate this': 271467, 'shitty paper': 759378, 'it is completely': 458909, 'is completely irresponsible': 446706, 'completely irresponsible and': 192315, 'irresponsible and unacceptable': 445036, 'and unacceptable that': 74591, 'unacceptable that supermarket': 939372, 'that supermarket rag': 846573, 'supermarket rag magazine': 822154, 'rag magazine theglobe': 695527, 'magazine theglobe nationalenquirer': 508348, 'theglobe nationalenquirer newsoftheworld': 872375, 'nationalenquirer newsoftheworld etc': 552652, 'newsoftheworld etc sell': 561059, 'etc sell cure': 282739, 'sell cure for': 748673, 'for the on': 326597, 'the on their': 862176, 'on their cover': 604473, 'their cover every': 872912, 'cover every supermarket': 212219, 'every supermarket need': 286260, 'supermarket need to': 821586, 'need to eliminate': 555915, 'to eliminate this': 904995, 'eliminate this shitty': 271469, 'this shitty paper': 890099, 'shitty paper now': 759379, 'boarder': 133688, 'declaration': 231146, 'nosedive': 567946, 'callouts': 156671, 'wto': 1013413, 'let sum': 487088, 'sum it': 817870, 'far outbreak': 298879, 'outbreak turned': 628768, 'into pandemic': 442837, 'pandemic closure': 635159, 'of boarder': 580755, 'boarder declaration': 133691, 'declaration of': 231161, 'of state': 590062, 'of war': 592904, 'war nosedive': 966489, 'nosedive of': 567949, 'price financial': 673869, 'market collapse': 516182, 'collapse callouts': 185979, 'callouts for': 156672, 'for recession': 325014, 'recession world': 704417, 'politics who': 663811, 'who wto': 990069, 'let sum it': 487089, 'sum it up': 817871, 'it up so': 461967, 'up so far': 946014, 'so far outbreak': 777049, 'far outbreak turned': 298880, 'outbreak turned into': 628769, 'turned into pandemic': 935850, 'into pandemic closure': 442838, 'pandemic closure of': 635160, 'closure of boarder': 183956, 'of boarder declaration': 580756, 'boarder declaration of': 133692, 'declaration of state': 231163, 'of state of': 590069, 'state of war': 795825, 'of war nosedive': 592907, 'war nosedive of': 966490, 'nosedive of oil': 567950, 'oil price financial': 597130, 'price financial market': 673871, 'financial market collapse': 306499, 'market collapse callouts': 516184, 'collapse callouts for': 185980, 'callouts for recession': 156673, 'for recession world': 325019, 'recession world economy': 704418, 'world economy politics': 1009510, 'economy politics who': 268149, 'politics who wto': 663812, 'unfolding pandemic': 941525, 'hold ha': 399935, 'warned in': 967005, 'report foodsecurity': 711949, 'the unfolding pandemic': 870391, 'unfolding pandemic is': 941527, 'take hold ha': 832190, 'hold ha warned': 399936, 'ha warned in': 372455, 'warned in new': 967006, 'in new report': 425827, 'new report foodsecurity': 559447, 'wear glass': 974330, 'glass and': 351596, 'and shower': 71620, 'shower cap': 767369, 'cap when': 162457, 'tell me you': 837034, 'me you re': 524051, 'to wear glass': 918430, 'wear glass and': 974331, 'glass and shower': 351599, 'and shower cap': 71621, 'shower cap when': 767370, 'cap when you': 162458, 'when you want': 984616, 'go shopping or': 354124, 'shopping or something': 763554, 'word stay': 1004579, 'healthy jane': 387672, 'wise word stay': 996706, 'word stay healthy': 1004580, 'stay healthy jane': 796906, 'reissue': 708283, 'michigan ag': 530311, 'ag nessel': 36811, 'nessel reissue': 557515, 'reissue consumer': 708284, 'alert coronavirus': 41389, 'scam spread': 740365, 'spread scam': 790783, 'michigan ag nessel': 530314, 'ag nessel reissue': 36814, 'nessel reissue consumer': 557516, 'reissue consumer alert': 708285, 'consumer alert coronavirus': 196140, 'alert coronavirus scam': 41395, 'coronavirus scam spread': 206721, 'scam spread scam': 740366, 'elab': 270471, 'alumnus': 49441, 'ithaca': 463881, 'ithacaisstartups': 463887, 'pandemic elab': 635364, 'elab alumnus': 270472, 'alumnus is': 49442, 'is using': 453631, 'it platform': 460346, 'community learn': 189961, 'the ithaca': 858619, 'ithaca based': 463882, 'startup and': 795088, 'it delivery': 457507, 'delivery area': 233727, 'area ithacaisstartups': 92091, '19 pandemic elab': 9315, 'pandemic elab alumnus': 635365, 'elab alumnus is': 270473, 'alumnus is using': 49443, 'is using it': 453634, 'using it platform': 950533, 'it platform to': 460347, 'platform to provide': 659048, 'provide food supply': 686314, 'food supply from': 316954, 'supply from local': 825291, 'store to community': 810764, 'to community learn': 903101, 'community learn more': 189962, 'about the ithaca': 26428, 'the ithaca based': 858620, 'ithaca based startup': 463884, 'based startup and': 111747, 'startup and it': 795089, 'and it delivery': 65511, 'it delivery area': 457508, 'delivery area ithacaisstartups': 233729, 'bingo': 131094, 'consumer learn': 198015, 'learn and': 483947, 'and spot': 72134, 'spot scam': 790102, 'well some': 978567, 'common fraud': 189385, 'fraud the': 331357, 'the created': 852304, 'ftc bingo': 339384, 'bingo card': 131095, 'card once': 163594, 'once they': 605740, 'have bingo': 379801, 'bingo share': 131104, 'share it': 755071, 'help consumer learn': 389521, 'consumer learn and': 198016, 'learn and spot': 483948, 'and spot scam': 72135, 'spot scam related': 790104, 'to the well': 917186, 'the well some': 871380, 'well some of': 978570, 'of the other': 591305, 'the other common': 862517, 'other common fraud': 619968, 'common fraud the': 189386, 'fraud the created': 331358, 'the created the': 852305, 'created the ftc': 215907, 'the ftc bingo': 855925, 'ftc bingo card': 339385, 'bingo card once': 131097, 'card once they': 163595, 'once they have': 605743, 'they have bingo': 882296, 'have bingo share': 379802, 'bingo share it': 131105, 'share it with': 755080, 'it with the': 462480, 'with the ftc': 1001312, 'can honor': 158693, 'honor grocery': 403246, 'did 11': 240535, '11 first': 2524, 'responder 19': 715396, 'we can honor': 970964, 'can honor grocery': 158694, 'honor grocery store': 403247, 'store worker like': 811538, 'worker like we': 1007325, 'like we did': 491771, 'we did 11': 971290, 'did 11 first': 240536, '11 first responder': 2525, 'first responder 19': 308924, 'mx': 547117, 'topstories': 925867, 'top story': 925725, 'retail news': 718329, 'business headline': 143837, 'headline that': 386013, 'that interest': 844525, 'interest today': 441422, 'today launch': 919786, 'launch dedicated': 481891, 'dedicated covid': 231700, '19 supply': 10965, 'supply store': 825909, 'store expands': 807680, 'expands no': 290535, 'contact service': 200201, 'service mx': 752604, 'mx halting': 547122, 'halting production': 374504, 'of beer': 580617, 'beer retailnews': 122500, 'retailnews headline': 719521, 'headline topstories': 386015, 'top story in': 925728, 'story in retail': 812015, 'in retail news': 427462, 'retail news and': 718330, 'news and the': 560239, 'the business headline': 850168, 'business headline that': 143838, 'headline that interest': 386014, 'that interest today': 844526, 'interest today launch': 441423, 'today launch dedicated': 919787, 'launch dedicated covid': 481892, 'dedicated covid 19': 231701, 'covid 19 supply': 213891, '19 supply store': 10970, 'supply store expands': 825910, 'store expands no': 807681, 'expands no contact': 290536, 'no contact service': 563893, 'contact service mx': 200202, 'service mx halting': 752605, 'mx halting production': 547123, 'halting production of': 374505, 'production of beer': 682139, 'of beer retailnews': 580622, 'beer retailnews headline': 122501, 'retailnews headline topstories': 719522, 'cooperate': 203132, 'eradicate': 280091, 'let cooperate': 486659, 'cooperate to': 203139, 'to eradicate': 905240, 'eradicate this': 280098, 'this fast': 887517, 'fast so': 300036, 'so president': 778067, 'trump can': 933464, 'economy booming': 267708, 'booming again': 134866, 'supermarket today let': 823453, 'today let cooperate': 919797, 'let cooperate to': 486660, 'cooperate to eradicate': 203140, 'to eradicate this': 905244, 'eradicate this fast': 280099, 'this fast so': 887518, 'fast so president': 300038, 'so president trump': 778068, 'president trump can': 670935, 'trump can get': 933466, 'can get our': 158438, 'get our economy': 347723, 'our economy booming': 622841, 'economy booming again': 267709, 'punished': 689232, 'of increasing': 585081, 'increasing your': 433749, 'might come': 530947, 'to haunt': 907188, 'haunt you': 379029, 'you brand': 1017518, 'brand that': 138030, 'that treat': 847117, 'treat customer': 930820, 'customer unfairly': 223005, 'unfairly during': 941453, 'be punished': 116623, 'punished per': 689239, 'thinking of increasing': 885963, 'of increasing your': 585085, 'increasing your price': 433751, 'your price during': 1025399, 'this time that': 890698, 'time that might': 897835, 'that might come': 845157, 'might come back': 530948, 'come back to': 187245, 'back to haunt': 107369, 'to haunt you': 907190, 'haunt you brand': 379030, 'you brand that': 1017519, 'brand that treat': 138036, 'that treat customer': 847118, 'treat customer unfairly': 930823, 'customer unfairly during': 223006, 'unfairly during the': 941454, 'crisis will be': 218405, 'will be punished': 992626, 'be punished per': 116625, 'chester': 175570, 'sealand': 743182, 'far in': 298812, 'in chester': 421361, 'chester for': 175571, 'shop so': 760802, 'so been': 776612, 'been pretty': 121701, 'pretty lucky': 671439, 'lucky long': 506562, 'into tesco': 443082, 'tesco on': 838768, 'on sealand': 603343, 'sealand right': 743183, 'first time ve': 309118, 'time ve had': 898182, 've had to': 953239, 'had to queue': 373714, 'queue so far': 694059, 'so far in': 777038, 'far in chester': 298813, 'in chester for': 421362, 'chester for supermarket': 175572, 'for supermarket shop': 326022, 'supermarket shop so': 822595, 'shop so been': 760803, 'so been pretty': 776613, 'been pretty lucky': 121702, 'pretty lucky long': 671440, 'lucky long queue': 506563, 'get into tesco': 347375, 'into tesco on': 443083, 'tesco on sealand': 838770, 'on sealand right': 603344, 'sealand right now': 743184, 'abpoli': 27120, 'cut expense': 223325, 'expense and': 291173, 'salary more': 731985, 'more oil': 539908, 'producer cut': 680601, 'cut their': 223582, 'their capital': 872718, 'capital plan': 162675, 'with oil': 999858, 'oil at': 596625, 'low canada': 505179, 'canada is': 160476, 'war abpoli': 966334, 'abpoli cdnecon': 27121, 'the latest to': 859153, 'latest to cut': 481583, 'to cut expense': 903873, 'cut expense and': 223326, 'expense and salary': 291177, 'and salary more': 70788, 'salary more oil': 731986, 'more oil producer': 539909, 'oil producer cut': 597337, 'producer cut their': 680603, 'cut their capital': 223583, 'their capital plan': 872719, 'capital plan with': 162676, 'plan with oil': 658354, 'with oil at': 999859, 'oil at record': 596630, 'at record low': 100270, 'record low canada': 705008, 'low canada is': 505180, 'canada is the': 160478, 'first victim of': 309161, 'victim of the': 956504, 'the price war': 864433, 'price war abpoli': 677347, 'war abpoli cdnecon': 966335, 'hovers': 407250, 'producer advised': 680550, 'spend nothing': 788654, 'nothing on': 573126, 'on drilling': 600412, 'drilling oil': 258784, 'price hovers': 674584, 'hovers at': 407253, 'at 25': 97545, '25 amid': 15833, 'producer advised to': 680551, 'advised to spend': 33652, 'to spend nothing': 914997, 'spend nothing on': 788655, 'nothing on drilling': 573127, 'on drilling oil': 600413, 'drilling oil price': 258785, 'oil price hovers': 597161, 'price hovers at': 674585, 'hovers at 25': 407254, 'at 25 amid': 97548, '25 amid covid': 15834, 'danwel': 225908, 'danwel in': 225909, 'pandemic their': 636716, 'their government': 873423, 'giving isolating': 351324, 'isolating people': 455134, 'people free': 647977, 'they test': 883540, 'test anyone': 838922, 'who show': 989616, 'free all': 331631, 'stocked so': 803394, 'so in': 777380, 'eye they': 294105, 'danwel in this': 225910, 'this pandemic their': 889436, 'pandemic their government': 636717, 'their government are': 873424, 'government are giving': 359897, 'are giving isolating': 86857, 'giving isolating people': 351325, 'isolating people free': 455135, 'people free food': 647978, 'food and they': 313358, 'and they test': 73945, 'they test anyone': 883541, 'test anyone who': 838923, 'anyone who show': 80632, 'who show symptom': 989619, '19 for free': 7066, 'for free all': 321703, 'free all the': 331632, 'supermarket are fully': 819158, 'fully stocked so': 341102, 'stocked so in': 803395, 'so in my': 777385, 'in my eye': 425571, 'my eye they': 548141, 'eye they are': 294106, 'sailed': 731626, 'make anybody': 509712, 'anybody getting': 80080, 'getting off': 349149, 'off plane': 594074, 'plane any': 658374, 'any different': 79114, 'different to': 242107, 'work key': 1005408, 'worker if': 1007152, 'spain but': 787283, 'uk get': 938401, 'that ship': 846257, 'ship ha': 758674, 'ha sailed': 371801, 'sailed hasn': 731627, 'yes but how': 1015392, 'but how doe': 145970, 'how doe that': 407749, 'doe that make': 251596, 'that make anybody': 844989, 'make anybody getting': 509713, 'anybody getting off': 80081, 'getting off plane': 349150, 'off plane any': 594075, 'plane any different': 658375, 'any different to': 79115, 'different to me': 242109, 'to me going': 909928, 'supermarket or going': 821810, 'to work key': 918745, 'work key worker': 1005409, 'key worker if': 473488, 'worker if covid': 1007153, '19 wa in': 11867, 'wa in spain': 962383, 'in spain but': 428168, 'spain but not': 787284, 'but not the': 146572, 'not the uk': 572040, 'the uk get': 870224, 'uk get it': 938402, 'get it but': 347399, 'it but think': 456960, 'but think that': 147535, 'think that ship': 885609, 'that ship ha': 846258, 'ship ha sailed': 758675, 'ha sailed hasn': 371802, 'doe everyone': 251387, 'everyone agree': 286677, 'agree these': 38651, 'these class': 879763, 'class are': 180149, 'harder online': 378179, 'they easier': 882024, 'let discus': 486676, 'doe everyone agree': 251388, 'everyone agree these': 286678, 'agree these class': 38652, 'these class are': 879764, 'class are harder': 180150, 'are harder online': 87019, 'harder online or': 378180, 'online or are': 608649, 'or are they': 614421, 'are they easier': 90997, 'they easier for': 882025, 'easier for you': 265149, 'for you let': 328072, 'you let discus': 1019589, 'scam based': 740066, 'based around': 111508, 'current pandemic': 221287, 'pandemic like': 635885, 'like excessive': 490203, 'or fake': 615260, 'fake if': 296642, 'any complaint': 79038, 'complaint contact': 191957, 'information go': 437850, 'to uk': 917878, 'out for scam': 626155, 'for scam based': 325363, 'scam based around': 740067, 'based around the': 111509, 'around the current': 93534, 'the current pandemic': 852649, 'current pandemic like': 221294, 'pandemic like excessive': 635887, 'like excessive price': 490204, 'price or fake': 675773, 'or fake if': 615261, 'fake if you': 296643, 'have any complaint': 379297, 'any complaint contact': 79039, 'complaint contact and': 191958, 'contact and for': 200011, 'and for more': 63149, 'more information go': 539585, 'information go to': 437851, 'go to uk': 354377, 'day reminds': 228273, 'of queing': 588680, 'queing for': 693434, 'club back': 184411, 'day feel': 227597, 'feel little': 302768, 'little exciting': 495331, 'exciting once': 289599, 'guard wave': 367862, 'wave you': 969400, 'in socialdistancing': 428049, 'queuing to enter': 694237, 'enter into the': 278264, 'the supermarket these': 868850, 'these day reminds': 879890, 'day reminds me': 228274, 'me of queing': 523244, 'of queing for': 588681, 'queing for the': 693435, 'for the club': 326348, 'the club back': 851080, 'club back in': 184412, 'the day feel': 852880, 'day feel little': 227598, 'feel little exciting': 302769, 'little exciting once': 495332, 'exciting once you': 289600, 'once you make': 605823, 'the front and': 855841, 'front and the': 338516, 'and the security': 73572, 'security guard wave': 744631, 'guard wave you': 367863, 'wave you in': 969401, 'you in socialdistancing': 1019317, 'sufficiency': 817370, 'gratefully': 362345, 'crisis project': 217916, 'project self': 683531, 'self sufficiency': 747914, 'sufficiency will': 817371, 'will gratefully': 993571, 'gratefully accept': 362346, 'accept monetary': 27975, 'monetary donation': 536540, 'donation well': 254729, 'well new': 978417, 'new non': 559134, 'non perishable': 566452, 'perishable item': 651994, 'pantry monday': 639634, 'monday friday': 536288, 'friday 9am': 333189, '9am noon': 23960, 'noon donate': 566838, 'donate online': 254214, 'health crisis project': 386345, 'crisis project self': 217917, 'project self sufficiency': 683532, 'self sufficiency will': 747915, 'sufficiency will gratefully': 817372, 'will gratefully accept': 993572, 'gratefully accept monetary': 362347, 'accept monetary donation': 27976, 'monetary donation well': 536544, 'donation well new': 254730, 'well new non': 978418, 'new non perishable': 559135, 'non perishable item': 566458, 'perishable item to': 651998, 'item to stock': 463767, 'to stock our': 915444, 'our food pantry': 623119, 'food pantry monday': 315790, 'pantry monday friday': 639635, 'monday friday 9am': 536289, 'friday 9am noon': 333190, '9am noon donate': 23961, 'noon donate online': 566839, 'aapl': 24127, 'discretionary': 244761, 'why analyst': 990746, 'are upgrading': 91380, 'upgrading aapl': 947541, 'aapl based': 24130, 'on upcoming': 604989, 'upcoming iphone': 946795, 'iphone who': 444581, 'new iphone': 558945, 'iphone in': 444571, 'current environment': 221182, 'environment re': 279133, 're outbreak': 699227, 'outbreak are': 628025, 'likely thru': 492122, 'thru year': 895249, 'year end': 1014540, 'end at': 275781, 'least and': 484386, 'consumer discretionary': 197213, 'discretionary spending': 244776, 'spending will': 789052, 'be way': 118066, 'not understand why': 572328, 'understand why analyst': 940814, 'why analyst are': 990747, 'analyst are upgrading': 57108, 'are upgrading aapl': 91381, 'upgrading aapl based': 947542, 'aapl based on': 24131, 'based on upcoming': 111701, 'on upcoming iphone': 604990, 'upcoming iphone who': 946796, 'iphone who is': 444582, 'who is going': 989076, 'going to buy': 355545, 'to buy new': 902275, 'buy new iphone': 148993, 'new iphone in': 558947, 'iphone in the': 444572, 'the current environment': 852628, 'current environment re': 221183, 'environment re outbreak': 279134, 're outbreak are': 699228, 'outbreak are likely': 628027, 'are likely thru': 87806, 'likely thru year': 492123, 'thru year end': 895250, 'year end at': 1014542, 'end at least': 275783, 'at least and': 99462, 'least and consumer': 484387, 'and consumer discretionary': 60372, 'consumer discretionary spending': 197218, 'discretionary spending will': 244780, 'spending will be': 789053, 'will be way': 992768, 'be way down': 118067, 'monye': 538253, 'morris': 541681, 'remedial': 710137, 'monye thanks': 538254, 'thanks morris': 842141, 'morris who': 541686, 'need fitch': 554780, 'fitch to': 309514, 'in recession': 427325, 'recession meanwhile': 704325, 'care policy': 164150, 'policy might': 663448, 'be remedial': 116778, 'remedial with': 710138, '19 most': 8688, 'most economy': 542280, 'economy have': 267930, 'have zero': 383723, 'zero chance': 1027415, 'chance didn': 171715, 'any provision': 79704, 'monye thanks morris': 538255, 'thanks morris who': 842142, 'morris who need': 541687, 'who need fitch': 989311, 'need fitch to': 554781, 'fitch to know': 309515, 'to know we': 909001, 'know we are': 476927, 'are in recession': 87429, 'in recession meanwhile': 427327, 'recession meanwhile for': 704326, 'meanwhile for all': 524970, 'for all you': 319192, 'all you care': 45534, 'you care policy': 1017896, 'care policy might': 164151, 'policy might not': 663449, 'not be remedial': 568442, 'be remedial with': 116779, 'remedial with the': 710139, 'with the crash': 1001253, 'crash in crude': 214989, 'covid 19 most': 213448, '19 most economy': 8689, 'most economy have': 542281, 'economy have zero': 267933, 'have zero chance': 383724, 'zero chance didn': 1027416, 'chance didn see': 171716, 'see any provision': 744921, 'any provision for': 79705, 'besides leaving': 127511, 'leaving store': 485137, 'bare the': 110960, 'buying happening': 150465, 'happening across': 377311, 'an extremely': 56024, 'extremely damaging': 293865, 'damaging effect': 225273, 'besides leaving store': 127512, 'leaving store shelf': 485139, 'store shelf bare': 810060, 'shelf bare the': 756869, 'bare the panic': 110963, 'panic buying happening': 637756, 'buying happening across': 150466, 'happening across our': 377312, 'country is having': 210805, 'having an extremely': 383971, 'an extremely damaging': 56026, 'extremely damaging effect': 293866, 'damaging effect on': 225274, 'effect on food': 269085, 'expanding': 290499, 'iwanttospeaktoyourmana': 464057, 'fda everyone': 300852, 'everyone including': 287052, 'including cashier': 431903, 'clerk at': 181661, 'store touch': 810924, 'touch surface': 926542, 'that covid19': 843387, 'covid19 can': 214279, 'aren you': 92600, 'you expanding': 1018474, 'expanding the': 290517, 'to glove': 906751, 'worker why': 1008241, 'beyond iwanttospeaktoyourmana': 129194, 'fda everyone including': 300853, 'everyone including cashier': 287053, 'including cashier and': 431904, 'cashier and stock': 166463, 'stock clerk at': 801989, 'clerk at grocery': 181662, 'grocery store touch': 365881, 'store touch surface': 810927, 'touch surface that': 926544, 'surface that covid19': 828076, 'that covid19 can': 843388, 'covid19 can live': 214280, 'live on why': 495968, 'on why aren': 605306, 'why aren you': 990808, 'aren you expanding': 92601, 'you expanding the': 1018475, 'expanding the need': 290519, 'need to glove': 555952, 'to glove for': 906753, 'for all worker': 319189, 'all worker why': 45509, 'worker why aren': 1008242, 'aren you going': 92602, 'you going above': 1018878, 'and beyond iwanttospeaktoyourmana': 58947, 'westlake': 980676, 'junior': 468020, 'reversal': 720514, 'order ha': 618276, 'ha left': 371127, 'left road': 485621, 'empty business': 274819, 'business closed': 143536, 'store line': 808746, 'line long': 493237, 'long westlake': 501843, 'westlake junior': 980677, 'junior sophie': 468027, 'sophie robson': 785965, 'robson photo': 724826, 'photo essay': 655159, 'essay reflects': 280716, 'reflects this': 706691, 'this reversal': 889894, 'reversal of': 720517, 'of ordinary': 587349, 'ordinary life': 619089, 'home order ha': 401775, 'order ha left': 618278, 'ha left road': 371131, 'left road empty': 485622, 'road empty business': 724445, 'empty business closed': 274820, 'business closed and': 143538, 'closed and grocery': 182984, 'grocery store line': 365527, 'store line long': 808754, 'line long westlake': 493238, 'long westlake junior': 501844, 'westlake junior sophie': 980678, 'junior sophie robson': 468028, 'sophie robson photo': 785966, 'robson photo essay': 724827, 'photo essay reflects': 655161, 'essay reflects this': 280717, 'reflects this reversal': 706692, 'this reversal of': 889895, 'reversal of ordinary': 720518, 'of ordinary life': 587350, 'amazon prime': 51073, 'prime pantry': 678171, 'pantry temporarily': 639682, 'close online': 182739, 'shopping surge': 764026, 'amazon prime pantry': 51079, 'prime pantry temporarily': 678172, 'pantry temporarily close': 639683, 'temporarily close online': 837451, 'close online shopping': 182740, 'online shopping surge': 609293, 'shopping surge amid': 764028, 'surge amid outbreak': 828123, 'saudi are': 737237, 'to break': 901996, 'state lower': 795752, 'price aim': 672253, 'to bankrupt': 901036, 'bankrupt our': 110495, 'our energy': 622904, 'sector chinaliedpeopledied': 744122, 'the saudi are': 866377, 'saudi are collaborating': 737239, 'collaborating with china': 185922, 'with china to': 997633, 'china to try': 177007, 'try to break': 934607, 'to break the': 902006, 'break the united': 138809, 'united state lower': 942228, 'state lower oil': 795753, 'oil price aim': 597037, 'price aim to': 672254, 'aim to bankrupt': 39544, 'to bankrupt our': 901038, 'bankrupt our energy': 110496, 'our energy sector': 622907, 'energy sector chinaliedpeopledied': 276577, 'castle': 166776, 'tower': 927409, 'switched': 830531, 'point pretty': 662598, 'case at': 165646, 'at castle': 98207, 'castle tower': 166781, 'tower which': 927420, 'center near': 169264, 'near my': 553554, 'there almost': 877960, 'day also': 227230, 'also had': 48313, 'to university': 917949, 'university on': 942455, 'monday before': 536263, 'it switched': 461411, 'switched to': 830551, 'so being': 776618, 'this point pretty': 889641, 'point pretty sure': 662599, 'pretty sure it': 671506, 'sure it not': 827603, 'it not covid': 459868, '19 but there': 5535, 'but there wa': 147473, 'there wa confirmed': 879235, 'wa confirmed case': 961854, 'confirmed case at': 194137, 'case at castle': 165647, 'at castle tower': 98208, 'castle tower which': 166782, 'tower which is': 927421, 'which is shopping': 986053, 'is shopping center': 451870, 'shopping center near': 762344, 'center near my': 169265, 'near my house': 553557, 'my house and': 548722, 'house and there': 406186, 'and there almost': 73827, 'there almost every': 877961, 'every day also': 285790, 'day also had': 227233, 'also had to': 48315, 'had to travel': 373737, 'travel to university': 930543, 'to university on': 917950, 'university on monday': 942456, 'on monday before': 602161, 'monday before it': 536264, 'before it switched': 122895, 'it switched to': 461412, 'switched to online': 830554, 'to online so': 910951, 'online so being': 609387, 'so being careful': 776619, 'other true': 621143, 'true death': 933065, 'shopping is the': 763084, 'is the other': 452882, 'the other true': 862561, 'other true death': 621144, 'true death of': 933066, 'death of covid': 230142, 'sedalia': 744817, 'wood supermarket': 1004285, 'in sedalia': 427774, 'sedalia is': 744818, 'is maintaining': 449517, 'maintaining accessibility': 509093, 'accessibility for': 28321, 'during stressful': 263062, 'is dealing': 447048, 'wood supermarket in': 1004286, 'supermarket in sedalia': 820974, 'in sedalia is': 427775, 'sedalia is maintaining': 744819, 'is maintaining accessibility': 449518, 'maintaining accessibility for': 509094, 'accessibility for customer': 28322, 'for customer during': 320506, 'customer during stressful': 222319, 'during stressful time': 263063, 'stressful time read': 813521, 'time read more': 897551, 'how the local': 408842, 'the local store': 859572, 'store is dealing': 808483, 'is dealing with': 447049, 'shorted': 765325, 'restored': 717058, 'full month': 340686, 'still shorted': 801192, 'shorted my': 765326, 'my pickup': 549769, 'order out': 618498, 'paper rubbing': 640702, 'alcohol shampoo': 41100, 'shampoo hand': 754778, 'hand soap': 375767, 'and chunky': 59883, 'chunky soup': 178327, 'soup placed': 786403, 'placed order': 657909, 'order day': 618157, 'ago get': 38395, 'chain restored': 171051, 'restored or': 717065, 'or ration': 616782, 'ration fairly': 697671, 'fairly not': 296440, 'by who': 154738, 'there 1st': 877940, '1st food': 12740, 'food news': 315532, 'full month in': 340687, 'month in to': 537798, 'in to panic': 430130, 'buying and still': 149930, 'and still shorted': 72389, 'still shorted my': 801193, 'shorted my pickup': 765327, 'my pickup order': 549770, 'pickup order out': 656004, 'order out of': 618499, 'toilet paper rubbing': 921425, 'paper rubbing alcohol': 640703, 'rubbing alcohol shampoo': 726968, 'alcohol shampoo hand': 41101, 'shampoo hand soap': 754779, 'hand soap and': 375769, 'soap and chunky': 778907, 'and chunky soup': 59884, 'chunky soup placed': 178328, 'soup placed order': 786404, 'placed order day': 657910, 'order day ago': 618158, 'day ago get': 227200, 'ago get supply': 38396, 'get supply chain': 348152, 'supply chain restored': 825023, 'chain restored or': 171052, 'restored or ration': 717066, 'or ration fairly': 616783, 'ration fairly not': 697672, 'fairly not by': 296441, 'not by who': 568669, 'by who get': 154741, 'who get there': 988776, 'get there 1st': 348378, 'there 1st food': 877941, '1st food news': 12741, 'grapevine': 362136, 'do an': 249054, 'an investigation': 56443, 'the gamestop': 856130, 'gamestop warehouse': 343342, 'warehouse in': 966732, 'in grapevine': 423406, 'grapevine hearing': 362137, 'hearing at': 388196, 'least employee': 484450, 'gotten in': 359143, 'you do an': 1018244, 'do an investigation': 249059, 'an investigation into': 56444, 'investigation into the': 443879, 'into the gamestop': 443129, 'the gamestop warehouse': 856131, 'gamestop warehouse in': 343343, 'warehouse in grapevine': 966733, 'in grapevine hearing': 423407, 'grapevine hearing at': 362138, 'hearing at least': 388197, 'at least employee': 99487, 'least employee have': 484451, 'employee have gotten': 273921, 'have gotten in': 380821, 'gotten in recent': 359144, 'recent day also': 703855, 'day also making': 227235, 'also making fake': 48508, 'fake hand sanitizer': 296636, 'just felt': 468700, 'like so': 491205, 'much racism': 545273, 'racism it': 695286, 'much racial': 545271, 'profiling felt': 682634, 'were targeted': 980219, 'targeted black': 834536, 'woman speaks': 1003614, 'speaks out': 787799, 'on video': 605048, 'went viral': 979227, 'viral of': 957610, 'her being': 391879, 'being accused': 124815, 'of stealing': 590109, 'stealing while': 799266, 'while prepping': 987165, 'prepping for': 670421, 'it just felt': 459221, 'just felt like': 468701, 'felt like so': 303413, 'like so much': 491207, 'so much racism': 777807, 'much racism it': 545274, 'racism it just': 695287, 'so much racial': 777806, 'much racial profiling': 545272, 'racial profiling felt': 695234, 'profiling felt like': 682635, 'felt like we': 303418, 'like we were': 491781, 'we were targeted': 973812, 'were targeted black': 980220, 'targeted black woman': 834537, 'black woman speaks': 132156, 'woman speaks out': 1003615, 'speaks out on': 787801, 'out on video': 626924, 'on video that': 605049, 'video that went': 956918, 'that went viral': 847434, 'went viral of': 979228, 'viral of her': 957611, 'of her being': 584567, 'her being accused': 391880, 'being accused of': 124816, 'accused of stealing': 28956, 'of stealing while': 590110, 'stealing while prepping': 799267, 'while prepping for': 987166, 'exceptional': 289293, 'commend the': 188368, 'their exceptional': 873190, 'exceptional service': 289303, 'no government': 564373, 'government support': 360649, 'support consumer': 826437, 'commend the medical': 188369, 'medical staff and': 526385, 'staff and hospital': 792145, 'for their exceptional': 326824, 'their exceptional service': 873191, 'exceptional service even': 289304, 'shortage of essential': 765109, 'essential supply and': 281619, 'and no government': 67617, 'no government support': 564374, 'government support consumer': 360651, 'support consumer people': 826439, 'krishnan': 477692, 'sickening': 768707, 'resorting': 714690, 'krishnan food': 477693, 'who spread': 989656, 'spread rumour': 790778, 'rumour and': 727510, 'and create': 60701, 'create unnecessary': 215763, 'unnecessary tension': 942943, 'tension and': 837975, 'panic use': 638746, 'use common': 949125, 'sense put': 750579, 'your education': 1023621, 'education to': 268874, 'use sickening': 949572, 'sickening to': 768720, 'see even': 745081, 'even educated': 284037, 'people resorting': 649290, 'resorting to': 714691, 'these stunt': 880760, 'krishnan food for': 477694, 'for thought for': 327159, 'thought for those': 893052, 'those who spread': 892674, 'who spread rumour': 989658, 'spread rumour and': 790779, 'rumour and create': 727511, 'and create unnecessary': 60705, 'create unnecessary tension': 215765, 'unnecessary tension and': 942944, 'tension and panic': 837977, 'and panic use': 68667, 'panic use common': 638747, 'use common sense': 949126, 'common sense put': 189465, 'sense put your': 750580, 'put your education': 690989, 'your education to': 1023622, 'education to good': 268875, 'good use sickening': 357928, 'use sickening to': 949573, 'sickening to see': 768721, 'to see even': 914004, 'see even educated': 745083, 'even educated people': 284038, 'educated people resorting': 268787, 'people resorting to': 649291, 'resorting to these': 714692, 'to these stunt': 917353, 'cardi': 163746, 'cardi by': 163747, 'by official': 153404, 'official coronavirus': 595792, 'coronavirus music': 206300, 'music video': 546351, 'cardi by official': 163748, 'by official coronavirus': 153405, 'official coronavirus music': 595793, 'coronavirus music video': 206301, 'ontarians': 611569, 'tou': 926435, 'are pleased': 89109, 'province decision': 687166, 'provide electricity': 686269, 'electricity relief': 271208, 'support ontarians': 826713, 'ontarians impacted': 611574, '19 of': 8888, 'today household': 919667, 'household farm': 406792, 'farm small': 299183, 'who pay': 989418, 'pay tou': 645193, 'tou rate': 926436, 'charged off': 173405, 'peak price': 646091, 'price 24': 672134, '24 for': 15595, '45 day': 19082, 'day full': 227663, 'we are pleased': 970661, 'are pleased to': 89110, 'pleased to support': 660804, 'support the province': 826882, 'the province decision': 864727, 'province decision to': 687167, 'decision to provide': 231109, 'to provide electricity': 912388, 'provide electricity relief': 686270, 'electricity relief to': 271209, 'relief to support': 709482, 'to support ontarians': 915952, 'support ontarians impacted': 826714, 'ontarians impacted by': 611575, 'covid 19 of': 213504, '19 of today': 8891, 'of today household': 592235, 'today household farm': 919668, 'household farm small': 406793, 'farm small business': 299184, 'business who pay': 144671, 'who pay tou': 989419, 'pay tou rate': 645194, 'tou rate will': 926437, 'rate will be': 697416, 'will be charged': 992394, 'be charged off': 114066, 'charged off peak': 173406, 'off peak price': 594057, 'peak price 24': 646092, 'price 24 for': 672135, '24 for 45': 15596, 'for 45 day': 318846, '45 day full': 19084, 'day full detail': 227664, 'seasoning': 743489, 'department ha': 237198, 'emptied out': 274690, 'the spice': 867571, 'spice and': 789201, 'and seasoning': 71111, 'seasoning shelf': 743497, 'full what': 340980, 'that tell': 846628, 'while the meat': 987404, 'meat department ha': 525537, 'department ha been': 237199, 'ha been emptied': 369794, 'been emptied out': 121078, 'emptied out at': 274691, 'out at every': 625742, 'store the spice': 810624, 'the spice and': 867572, 'spice and seasoning': 789202, 'and seasoning shelf': 71112, 'seasoning shelf are': 743498, 'are full what': 86739, 'full what doe': 340981, 'doe that tell': 251601, 'that tell you': 846631, 'largest decline': 479943, 'state in': 795680, 'is the largest': 452843, 'the largest decline': 858962, 'largest decline in': 479944, 'united state in': 942224, 'state in year': 795688, 'alberta announces': 40777, 'announces new': 77268, 'new emergency': 558671, 'emergency payment': 272857, 'payment because': 645560, '19 falling': 6931, 'alberta announces new': 40778, 'announces new emergency': 77269, 'new emergency payment': 558675, 'emergency payment because': 272858, 'payment because of': 645561, 'covid 19 falling': 213071, '19 falling oil': 6932, 'thankthemeveryday': 842314, 'fuck doe': 339545, 'take pandemic': 832479, 'thank doctor': 841550, 'people postal': 649165, 'discovered these': 244702, 'people existed': 647838, 'existed thankthemeveryday': 290269, 'why the fuck': 991417, 'the fuck doe': 855962, 'fuck doe it': 339547, 'it take pandemic': 461428, 'take pandemic to': 832480, 'pandemic to thank': 636795, 'to thank doctor': 916421, 'thank doctor nurse': 841551, 'store worker delivery': 811476, 'delivery people postal': 234323, 'people postal worker': 649166, 'postal worker etc': 666472, 'worker etc you': 1006876, 'etc you think': 282918, 'the world just': 871903, 'world just discovered': 1009734, 'just discovered these': 468605, 'discovered these people': 244703, 'these people existed': 880434, 'people existed thankthemeveryday': 647839, 'extending the': 293234, 'the transition': 869903, 'transition period': 929676, 'period johnson': 651807, 'johnson chance': 466584, 'to lead': 909117, 'lead today': 483399, 'today new': 919919, 'my brexit': 547538, 'brexit blog': 139492, 'blog on': 132974, 'why brexit': 990846, 'brexit still': 139521, 'still matter': 800841, 'matter extension': 520557, 'extension isn': 293282, 'isn about': 454415, 'about stopping': 26267, 'just commonsense': 468508, 'commonsense and': 189501, 'it near': 459742, 'near inevitable': 553524, 'inevitable johnson': 436392, 'johnson should': 466622, 'make virtue': 510699, 'virtue of': 957861, 'extending the transition': 293237, 'the transition period': 869905, 'transition period johnson': 929677, 'period johnson chance': 651808, 'johnson chance to': 466585, 'chance to lead': 171807, 'to lead today': 909120, 'lead today new': 483400, 'today new post': 919921, 'post on my': 666255, 'on my brexit': 602268, 'my brexit blog': 547539, 'brexit blog on': 139493, 'blog on why': 132977, 'on why brexit': 605307, 'why brexit still': 990847, 'brexit still matter': 139522, 'still matter extension': 800842, 'matter extension isn': 520558, 'extension isn about': 293283, 'isn about stopping': 454416, 'about stopping it': 26268, 'stopping it it': 805816, 'it it just': 459175, 'it just commonsense': 459219, 'just commonsense and': 468509, 'commonsense and it': 189502, 'and it near': 65558, 'it near inevitable': 459743, 'near inevitable johnson': 553525, 'inevitable johnson should': 436393, 'johnson should make': 466623, 'should make virtue': 766219, 'make virtue of': 510700, 'virtue of necessity': 957863, 'pandemonium': 637136, 'melanoma': 527910, 'week began': 975999, 'began with': 123464, 'ultimate fear': 939107, 'fear socialdistancing': 301332, 'shortage snd': 765211, 'snd pandemonium': 776185, 'pandemonium at': 637139, 'ending even': 276174, 'worse amongst': 1010861, 'amongst all': 53121, 'this husband': 887984, 'husband had': 411708, 'had surgery': 373586, 'surgery for': 828328, 'for melanoma': 323401, 'melanoma and': 527911, 'coronacrisis grows': 204619, 'week began with': 976000, 'began with this': 123465, 'this ultimate fear': 890895, 'ultimate fear socialdistancing': 939108, 'fear socialdistancing and': 301333, 'socialdistancing and shortage': 780217, 'and shortage snd': 71574, 'shortage snd pandemonium': 765212, 'snd pandemonium at': 776186, 'pandemonium at the': 637140, 'store and it': 806272, 'it is ending': 458946, 'is ending even': 447489, 'ending even worse': 276175, 'even worse amongst': 284821, 'worse amongst all': 1010862, 'amongst all of': 53122, 'of this husband': 591987, 'this husband had': 887985, 'husband had surgery': 411710, 'had surgery for': 373587, 'surgery for melanoma': 828329, 'for melanoma and': 323402, 'melanoma and the': 527912, 'and the danger': 73314, 'danger of coronacrisis': 225677, 'of coronacrisis grows': 581906, 'how felt': 407861, 'felt when': 303476, 'when bought': 983204, 'bought the': 136733, 'last can': 480132, 'of refried': 588872, 'bean at': 118302, 'how felt when': 407862, 'felt when bought': 303477, 'when bought the': 983206, 'bought the last': 136740, 'the last can': 858997, 'last can of': 480133, 'can of refried': 159092, 'of refried bean': 588873, 'refried bean at': 706775, 'bean at the': 118303, 'subcmte': 815699, 'national institute': 552543, 'institute on': 440426, 'on drug': 600425, 'drug abuse': 260844, 'abuse say': 27653, 'say amp': 738414, 'amp smoking': 54519, 'smoking cause': 775903, 'cause serious': 167724, 'serious risk': 751468, 'patient that': 644272, 'why economic': 990975, 'economic amp': 266972, 'policy subcmte': 663506, 'subcmte chair': 815700, 'chair asked': 171293, 'asked fda': 95738, 'of cigarette': 581420, 'cigarette amid': 178474, 'the national institute': 861296, 'national institute on': 552545, 'institute on drug': 440427, 'on drug abuse': 600426, 'drug abuse say': 260845, 'abuse say amp': 27654, 'say amp smoking': 738416, 'amp smoking cause': 54520, 'smoking cause serious': 775904, 'cause serious risk': 167725, 'serious risk for': 751470, 'risk for patient': 723554, 'for patient that': 324419, 'patient that why': 644273, 'that why economic': 847533, 'why economic amp': 990976, 'economic amp consumer': 266973, 'amp consumer policy': 53569, 'consumer policy subcmte': 198384, 'policy subcmte chair': 663507, 'subcmte chair asked': 815701, 'chair asked fda': 171294, 'asked fda to': 95739, 'fda to clear': 300937, 'to clear the': 902834, 'clear the market': 181360, 'the market of': 860136, 'market of cigarette': 516777, 'of cigarette amid': 581421, 'cigarette amid the': 178475, 'ing': 438275, 'pirate': 656930, 'proper taking': 684158, 'taking going': 833372, 'had look': 373260, 'ebay for': 266454, 'soap out': 779076, 'interest number': 441376, 'joke would': 467172, 'rather go': 697465, 'without than': 1002957, 'than buy': 840425, 'buy of': 149023, 'these ing': 880170, 'ing pirate': 438289, 'pirate coronacrisisuk': 656931, 'proper taking going': 684159, 'taking going on': 833373, 'going on just': 355326, 'on just had': 601749, 'just had look': 468900, 'had look on': 373263, 'look on ebay': 502553, 'on ebay for': 600491, 'ebay for toilet': 266464, 'roll and hand': 725175, 'and hand soap': 64147, 'hand soap out': 375774, 'soap out of': 779077, 'out of interest': 626762, 'of interest number': 585254, 'interest number of': 441377, 'who are selling': 988214, 'selling at ridiculous': 749174, 'ridiculous price and': 721587, 'is joke would': 449111, 'joke would rather': 467173, 'would rather go': 1012154, 'rather go without': 697467, 'go without than': 354524, 'without than buy': 1002958, 'than buy of': 840426, 'buy of these': 149024, 'of these ing': 591835, 'these ing pirate': 880172, 'ing pirate coronacrisisuk': 438290, 'cannot actually': 161589, 'actually get': 30801, 'anyone to': 80577, 'to organise': 911095, 'at serious': 100490, 'risk due': 723501, 'health issue': 386573, 'issue already': 455652, 'already sick': 47656, 'sick self': 768598, 'isolating while': 455162, 'for result': 325184, 'being tested': 125903, 'of those vulnerable': 592126, 'those vulnerable people': 892596, 'vulnerable people cannot': 961084, 'people cannot actually': 647425, 'cannot actually get': 161592, 'actually get hold': 30802, 'hold of anyone': 399964, 'of anyone to': 580284, 'anyone to organise': 80579, 'to organise online': 911096, 'organise online shopping': 619305, 'shopping at serious': 762110, 'at serious risk': 100491, 'serious risk due': 751469, 'risk due to': 723502, 'due to health': 261802, 'to health issue': 907372, 'health issue already': 386574, 'issue already sick': 455653, 'already sick self': 47660, 'sick self isolating': 768599, 'self isolating while': 747745, 'isolating while waiting': 455163, 'waiting for result': 964331, 'for result after': 325185, 'result after being': 717471, 'after being tested': 35416, 'being tested for': 125909, 'store ration': 809741, 'ration of': 697713, 'paper were': 641071, 'on better': 599631, 'better check': 128230, 'roll calculator': 725238, 'calculator toiletpapercrisis': 155360, 'back from the': 107017, 'grocery store ration': 365701, 'store ration of': 809742, 'ration of toilet': 697714, 'toilet paper were': 921522, 'paper were going': 641072, 'were going on': 979688, 'going on better': 355305, 'on better check': 599632, 'better check the': 128232, 'check the toilet': 174659, 'toilet roll calculator': 921558, 'roll calculator toiletpapercrisis': 725240, 'calculator toiletpapercrisis toiletpaperpanic': 155361, 'toiletpapercrisis toiletpaperpanic toiletpaper': 923116, 'long doe': 501400, 'virus last': 958450, 'last new': 480360, 'new study': 559679, 'study look': 814930, 'at survival': 100803, 'survival time': 829091, 'the germ': 856225, 'germ that': 346159, 'cause covid': 167531, '19 outside': 9217, 'living body': 496326, 'how long doe': 408199, 'long doe the': 501403, 'doe the virus': 251624, 'the virus last': 870857, 'virus last new': 958451, 'last new study': 480361, 'new study look': 559684, 'study look at': 814931, 'look at survival': 502296, 'at survival time': 100804, 'survival time of': 829092, 'of the germ': 591062, 'the germ that': 856228, 'germ that cause': 346160, 'that cause covid': 843180, 'cause covid 19': 167532, 'covid 19 outside': 213536, '19 outside of': 9218, 'outside of living': 629508, 'of living body': 585909, 'shopped': 761294, '19 everyone': 6868, 'who shopped': 989606, 'shopped there': 761321, 'have touched': 383375, 'touched anything': 926600, 'anything he': 80779, 'he touched': 385542, 'touched be': 926602, 'what matter': 981854, 'matter is': 520586, 'getting people': 349192, 'work before': 1004929, 'before this': 123223, 'economy by': 267728, 'by making': 153137, 'disease spread': 245234, 'spread fast': 790529, 'employee at local': 273648, 'store ha covid': 808002, 'covid 19 everyone': 213048, '19 everyone who': 6871, 'everyone who shopped': 287602, 'who shopped there': 989607, 'shopped there could': 761322, 'there could have': 878293, 'could have touched': 209272, 'have touched anything': 383376, 'touched anything he': 926601, 'anything he touched': 80781, 'he touched be': 385543, 'touched be infected': 926603, 'be infected but': 115478, 'infected but what': 436542, 'but what matter': 147794, 'what matter is': 981855, 'matter is getting': 520587, 'is getting people': 448036, 'getting people back': 349193, 'people back to': 647210, 'to work before': 918696, 'work before this': 1004930, 'before this is': 123229, 'is over to': 450739, 'over to help': 630834, 'help the economy': 390648, 'the economy by': 853945, 'economy by making': 267729, 'by making sure': 153146, 'making sure the': 511390, 'sure the disease': 827709, 'the disease spread': 853373, 'disease spread fast': 245235, 'spread fast possible': 790530, 'loom': 503086, 'ihs': 415959, 'markit': 517927, 'stockmarketcrash2020': 803691, 'can fall': 158286, '300 an': 17284, 'an ounce': 56724, 'ounce recession': 621969, 'recession loom': 704319, 'loom ihs': 503095, 'ihs markit': 415960, 'markit stockmarketcrash2020': 517928, 'stockmarketcrash2020 stockmarket': 803701, 'gold price can': 355951, 'price can fall': 673059, 'can fall to': 158287, 'fall to 300': 297091, 'to 300 an': 899675, '300 an ounce': 17285, 'an ounce recession': 56727, 'ounce recession loom': 621970, 'recession loom ihs': 704320, 'loom ihs markit': 503096, 'ihs markit stockmarketcrash2020': 415961, 'markit stockmarketcrash2020 stockmarket': 517929, 'story time': 812135, 'time woke': 898371, 'up around': 944407, 'am and': 49888, 'who got': 988805, 'got her': 358596, 'her period': 392296, 'period went': 651920, 'bathroom no': 112653, 'toiletpaper viral': 922802, 'story time woke': 812137, 'time woke up': 898372, 'woke up around': 1003356, 'up around 00': 944408, 'around 00 am': 93091, '00 am and': 53, 'am and guess': 49890, 'and guess who': 64033, 'guess who got': 368096, 'who got her': 988810, 'got her period': 358598, 'her period went': 392297, 'period went to': 651921, 'to the bathroom': 916510, 'the bathroom no': 849332, 'bathroom no toilet': 112654, 'paper toiletpaper viral': 640962, 'of public': 588584, 'public emergency': 687968, 'emergency why': 273049, 'the gst': 856891, 'gst on': 367556, 'such sanitizer': 816729, 'sanitizer 18': 734278, '18 and': 4516, 'mask 12': 518252, 'time of public': 897355, 'of public emergency': 588586, 'public emergency why': 687969, 'emergency why is': 273050, 'is the gst': 452815, 'the gst on': 856893, 'gst on essential': 367557, 'essential such sanitizer': 281607, 'such sanitizer 18': 816730, 'sanitizer 18 and': 734279, '18 and mask': 4518, 'and mask 12': 66738, 'phnom': 654851, 'penh': 646513, 'cambodian': 156933, 'started across': 794672, 'across phnom': 29429, 'phnom penh': 654852, 'penh cambodian': 646514, 'cambodian border': 156934, 'border closure': 135230, 'cause fear': 167561, 'country resulting': 211012, 'food staple': 316741, 'staple to': 794004, 'to almost': 900366, 'almost double': 46597, 'buying ha started': 150450, 'ha started across': 372040, 'started across phnom': 794673, 'across phnom penh': 29430, 'phnom penh cambodian': 654853, 'penh cambodian border': 646515, 'cambodian border closure': 156935, 'border closure due': 135233, '19 cause fear': 5718, 'cause fear of': 167563, 'shortage in the': 765023, 'the country resulting': 852143, 'country resulting in': 211013, 'resulting in price': 717709, 'price for some': 674048, 'some food staple': 782874, 'food staple to': 316744, 'staple to almost': 794005, 'to almost double': 900370, 'of fortunate': 583881, 'fortunate enough': 329887, 'stable employment': 791901, 'employment have': 274607, 'those of fortunate': 892263, 'of fortunate enough': 583882, 'fortunate enough to': 329888, 'have stable employment': 382706, 'stable employment have': 791902, 'employment have duty': 274608, 'community here are': 189893, 'albertans': 40834, 'negative while': 556843, 'while alberta': 986578, 'alberta deficit': 40785, 'deficit is': 232249, 'to triple': 917786, 'triple all': 932238, 'province battle': 687162, 'battle virus': 112840, 'that official': 845468, 'official expect': 595807, 'expect could': 290619, 'could kill': 209364, 'kill between': 474357, 'between 400': 128685, 'and 100': 57350, '100 albertans': 1830, 'albertans by': 40835, 'the summer': 868405, 'turn negative while': 935708, 'negative while alberta': 556844, 'while alberta deficit': 986579, 'alberta deficit is': 40786, 'deficit is expected': 232250, 'expected to triple': 291009, 'to triple all': 917787, 'triple all this': 932239, 'all this the': 45139, 'this the province': 890534, 'the province battle': 864726, 'province battle virus': 687163, 'battle virus that': 112841, 'virus that official': 958875, 'that official expect': 845469, 'official expect could': 595808, 'expect could kill': 290620, 'could kill between': 209365, 'kill between 400': 474358, 'between 400 and': 128686, '400 and 100': 18718, 'and 100 albertans': 57351, '100 albertans by': 1831, 'albertans by the': 40836, 'of the summer': 591508, 'stubborn': 814558, 're walking': 699775, 'walking through': 965110, 'average age': 104799, 'age is': 37840, 'over 60': 629871, '60 unbelievable': 21035, 'unbelievable do': 939500, 'so stubborn': 778287, 'stubborn and': 814559, 'you re walking': 1020787, 're walking through': 699779, 'walking through the': 965113, 'and the average': 73251, 'the average age': 849095, 'average age is': 104800, 'age is over': 37842, 'is over 60': 450681, 'over 60 unbelievable': 629883, '60 unbelievable do': 21036, 'unbelievable do not': 939501, 'not be so': 568459, 'be so stubborn': 117266, 'so stubborn and': 778288, 'stubborn and go': 814560, 'and go home': 63775, 'go home please': 353670, 'chapati': 173112, '22 day': 15201, 'of chapati': 581282, 'chapati flour': 173113, 'pay shipping': 645105, 'when you haven': 984568, 'you haven been': 1019145, 'haven been to': 383766, 'store in 22': 808262, 'in 22 day': 419884, '22 day but': 15203, 'day but now': 227408, 'out of chapati': 626693, 'of chapati flour': 581283, 'chapati flour and': 173114, 'flour and don': 311068, 'to pay shipping': 911557, 'lightly': 489656, 'saut': 737421, 'bagel': 108469, 'you lightly': 1019601, 'lightly saut': 489663, 'saut tp': 737422, 'add everything': 31426, 'everything except': 287781, 'except trader': 289252, 'joe bagel': 466405, 'bagel seasoning': 108479, 'seasoning you': 743499, 'of make': 586120, 'people coronapocolypse': 647548, 'coronapocolypse coronavid19': 205227, 'coronavid19 toiletpaperpanic': 205400, 'toiletpaperpanic 19': 923196, 'know that if': 476766, 'if you lightly': 415464, 'you lightly saut': 1019602, 'lightly saut tp': 489664, 'saut tp and': 737423, 'tp and then': 927748, 'then add everything': 876967, 'add everything except': 31428, 'everything except trader': 287785, 'except trader joe': 289253, 'trader joe bagel': 928709, 'joe bagel seasoning': 466406, 'bagel seasoning you': 108481, 'seasoning you can': 743500, 'you can have': 1017691, 'can have enough': 158576, 'have enough food': 380447, 'food for family': 314533, 'for family of': 321391, 'family of make': 298102, 'of make people': 586121, 'make people coronapocolypse': 510314, 'people coronapocolypse coronavid19': 647549, 'coronapocolypse coronavid19 toiletpaperpanic': 205228, 'coronavid19 toiletpaperpanic 19': 205401, 'neighbor went': 557086, '70 slot': 21840, 'slot saw': 774256, 'twenty and': 936491, 'him should': 396709, 'be here': 115223, 'here give': 393041, 'give old': 350615, 'old guy': 598279, 'guy chance': 368956, 'chance the': 171788, 'man responded': 512209, 'responded off': 715355, 'off they': 594301, 'they gave': 882150, 'gave their': 344666, 'life so': 489049, 'one now': 606726, 'now our': 575487, 'our action': 622019, 'action could': 29992, 'save theirs': 737677, 'my neighbor went': 549430, 'neighbor went to': 557087, 'morning for the': 541262, 'over 70 slot': 629919, '70 slot saw': 21841, 'slot saw young': 774257, 'saw young man': 738340, 'his twenty and': 397882, 'twenty and said': 936492, 'said to him': 731515, 'to him should': 907776, 'him should you': 396710, 'you be here': 1017390, 'be here give': 115225, 'here give old': 393042, 'give old guy': 350617, 'old guy chance': 598280, 'guy chance the': 368957, 'chance the man': 171789, 'the man responded': 859982, 'man responded off': 512210, 'responded off they': 715356, 'off they gave': 594303, 'they gave their': 882154, 'gave their life': 344667, 'their life so': 873846, 'life so we': 489052, 'so we could': 778662, 'we could have': 971208, 'could have one': 209263, 'have one now': 381793, 'one now our': 606727, 'now our action': 575488, 'our action could': 622020, 'action could save': 29994, 'could save theirs': 209621, 'relative': 708715, 'essential you': 281874, 'out self': 627158, 'isolate completely': 454840, 'completely if': 192302, 'symptom be': 830822, 'considerate in': 195216, 'supermarket check': 819656, 'neighbour give': 557210, 'give any': 350387, 'vulnerable relative': 961140, 'relative call': 708719, 'call write': 156244, 'write nice': 1012776, 'nice letter': 562431, 'local care': 497801, 'at home unless': 99155, 'unless it is': 942622, 'is essential you': 447559, 'essential you go': 281877, 'go out self': 353980, 'out self isolate': 627159, 'self isolate completely': 747669, 'isolate completely if': 454841, 'completely if you': 192303, 'have any of': 379310, 'any of the': 79538, 'of the symptom': 591518, 'the symptom be': 869077, 'symptom be considerate': 830823, 'be considerate in': 114196, 'considerate in the': 195217, 'the supermarket check': 868514, 'supermarket check in': 819657, 'in on your': 426133, 'on your neighbour': 605483, 'your neighbour give': 1024975, 'neighbour give any': 557211, 'give any elderly': 350389, 'any elderly vulnerable': 79171, 'elderly vulnerable relative': 270933, 'vulnerable relative call': 961142, 'relative call write': 708720, 'call write nice': 156245, 'write nice letter': 1012777, 'nice letter to': 562432, 'letter to your': 487375, 'your local care': 1024686, 'local care home': 497802, 'twgrp': 936503, 'leadright': 483786, 'trump2020landslidevictory': 934016, 'that healthcare': 844283, 'than actor': 840315, 'actor professional': 30591, 'professional athlete': 682420, 'athlete and': 101756, 'and famous': 62683, 'famous musician': 298478, 'musician corona': 546369, 'virus twgrp': 958952, 'twgrp whitehouse': 936504, 'whitehouse leadright': 987949, 'leadright maga': 483787, 'kag2020 trump2020landslidevictory': 470625, 'and just like': 65706, 'just like that': 469156, 'like that healthcare': 491322, 'that healthcare worker': 844284, 'truck driver have': 932782, 'driver have become': 259593, 'have become more': 379441, 'become more important': 120057, 'important than actor': 418985, 'than actor professional': 840318, 'actor professional athlete': 30592, 'professional athlete and': 682422, 'athlete and famous': 101758, 'and famous musician': 62685, 'famous musician corona': 298480, 'musician corona virus': 546370, 'corona virus twgrp': 204369, 'virus twgrp whitehouse': 958953, 'twgrp whitehouse leadright': 936505, 'whitehouse leadright maga': 987950, 'leadright maga maga2020': 483788, 'kag kag2020 trump2020landslidevictory': 470616, 'explanation': 292268, 'doe anybody': 251332, 'anybody have': 80088, 'have sound': 382663, 'sound explanation': 786281, 'explanation for': 292273, 'buying yet': 151401, 'yet our': 1016183, 'is swimming': 452514, 'swimming in': 830357, 'food food': 314486, 'food availability': 313464, 'availability probably': 104169, 'probably hasn': 679281, 'changed how': 172491, 'much pasta': 545223, 'actually use': 30998, 'use and': 949040, 'we throw': 973544, 'away ton': 106078, 'food year': 317691, 'year coronacrisis': 1014485, 'doe anybody have': 251333, 'anybody have sound': 80090, 'have sound explanation': 382664, 'sound explanation for': 786282, 'explanation for the': 292274, 'for the panic': 326609, 'panic buying yet': 637976, 'buying yet our': 151402, 'yet our country': 1016184, 'country is swimming': 210824, 'is swimming in': 452515, 'swimming in food': 830358, 'in food food': 422970, 'food food availability': 314487, 'food availability probably': 313467, 'availability probably hasn': 104170, 'probably hasn changed': 679282, 'hasn changed how': 378733, 'changed how much': 172492, 'how much pasta': 408365, 'much pasta and': 545224, 'pasta and toilet': 643689, 'roll can you': 725246, 'can you actually': 160271, 'you actually use': 1016817, 'actually use and': 30999, 'use and store': 949047, 'and store we': 72520, 'store we throw': 811183, 'we throw away': 973545, 'throw away ton': 895016, 'away ton of': 106079, 'of food year': 583825, 'food year coronacrisis': 317692, 'betw': 128659, 'compartmentalized': 191471, 'cursed': 221758, 'supermarket line': 821322, 'line space': 493414, 'space betw': 787067, 'betw customer': 128660, 'customer waiting': 223031, 'enter store': 278291, 'normal our': 567242, 'life compartmentalized': 488562, 'compartmentalized human': 191472, 'human solidarity': 410620, 'solidarity killed': 781937, 'distancing break': 247051, 'get cursed': 346843, 'cursed oh': 221761, 'oh it': 596410, 'll stay': 497035, 'just came from': 468423, 'came from the': 157000, 'the supermarket line': 868674, 'supermarket line space': 821329, 'line space betw': 493415, 'space betw customer': 787068, 'betw customer waiting': 128661, 'customer waiting to': 223033, 'to enter store': 905224, 'enter store the': 278292, 'store the new': 810607, 'new normal our': 559166, 'normal our life': 567244, 'our life compartmentalized': 623719, 'life compartmentalized human': 488563, 'compartmentalized human solidarity': 191473, 'human solidarity killed': 410621, 'solidarity killed by': 781938, 'killed by psychology': 474572, 'by psychology of': 153683, 'psychology of social': 687571, 'social distancing break': 779573, 'distancing break the': 247052, 'break the distance': 138805, 'the distance and': 853415, 'distance and you': 246645, 'and you get': 76020, 'you get cursed': 1018766, 'get cursed oh': 346844, 'cursed oh it': 221762, 'oh it ll': 596412, 'it ll stay': 459432, 'cpuc': 214661, 'compile': 191805, 'the cpuc': 852256, 'cpuc ha': 214662, 'created new': 215857, 'new webpage': 559864, 'webpage to': 975171, 'to compile': 903126, 'compile the': 191806, 'protection your': 685694, 'your water': 1026309, 'water energy': 968981, 'and telecommunication': 73083, 'telecommunication company': 836702, 'providing to': 687123, 'the cpuc ha': 852257, 'cpuc ha created': 214663, 'ha created new': 370276, 'created new webpage': 215860, 'new webpage to': 559865, 'webpage to compile': 975173, 'to compile the': 903127, 'compile the consumer': 191807, 'consumer protection your': 198584, 'protection your water': 685695, 'your water energy': 1026310, 'water energy and': 968982, 'energy and telecommunication': 276393, 'and telecommunication company': 73084, 'telecommunication company are': 836703, 'company are providing': 190441, 'are providing to': 89325, 'providing to help': 687125, 'help you during': 390966, 'up pretty': 945800, 'much where': 545455, 'where those': 985296, 'those paper': 892308, 'bag are': 108228, 'are sitting': 90145, 'and sitting': 71705, 'sitting right': 772143, 'right in': 721952, 'is 12': 445154, '12 roll': 2946, 'toiletpaper faith': 921973, 'faith humor': 296512, 'humor life': 410897, 'happen to look': 377183, 'to look up': 909443, 'look up pretty': 502651, 'up pretty much': 945801, 'pretty much where': 671466, 'much where those': 545456, 'where those paper': 985297, 'those paper bag': 892309, 'paper bag are': 639919, 'bag are sitting': 108232, 'are sitting in': 90146, 'sitting in this': 772124, 'in this picture': 429996, 'this picture and': 889577, 'picture and sitting': 656107, 'and sitting right': 71708, 'sitting right in': 772144, 'right in front': 721953, 'of me is': 586334, 'me is 12': 522994, 'is 12 roll': 445155, '12 roll of': 2947, 'paper toiletpaper faith': 640947, 'toiletpaper faith humor': 921974, 'faith humor life': 296513, 'bangkok': 109486, 'varies': 952547, '4usd': 19555, 'all chain': 42334, 'chain pharmacy': 170985, 'in bangkok': 420693, 'bangkok that': 109497, 'to are': 900687, 'independent pharmacy': 434126, 'them quality': 876199, 'quality varies': 691868, 'varies and': 952548, 'are ridiculous': 89687, 'ridiculous one': 721572, 'them tried': 876550, 'sell me': 748790, 'one mask': 606644, 'for 4usd': 318858, '4usd ended': 19556, 'buying 10': 149832, 'for 50': 318860, '50 somewhere': 19855, 'somewhere else': 785292, 'all chain pharmacy': 42335, 'chain pharmacy in': 170986, 'pharmacy in bangkok': 654356, 'in bangkok that': 420695, 'bangkok that have': 109498, 'have been to': 379721, 'been to are': 122211, 'to are sold': 900692, 'of mask but': 586262, 'mask but the': 518497, 'but the independent': 147346, 'the independent pharmacy': 858108, 'independent pharmacy have': 434127, 'pharmacy have them': 654339, 'have them quality': 383071, 'them quality varies': 876200, 'quality varies and': 691869, 'varies and some': 952549, 'and some price': 71976, 'price are ridiculous': 672722, 'are ridiculous one': 89690, 'ridiculous one of': 721573, 'of them tried': 591769, 'them tried to': 876551, 'to sell me': 914159, 'sell me one': 748791, 'me one mask': 523268, 'one mask for': 606645, 'mask for 4usd': 518668, 'for 4usd ended': 318859, '4usd ended up': 19557, 'ended up buying': 276139, 'up buying 10': 944534, 'buying 10 for': 149833, '10 for 50': 1430, 'for 50 somewhere': 318868, '50 somewhere else': 19856, 'it clearer': 457165, 'clearer than': 181445, 'than sunny': 841180, 'sunny day': 818391, 'now farmer': 574668, 'farmer nurse': 299469, 'all 1st': 41892, 'responder should': 715519, 'in mansion': 425040, 'mansion not': 513339, 'not athlete': 568276, 'athlete actor': 101754, 'it clearer than': 457166, 'clearer than sunny': 181446, 'than sunny day': 841181, 'sunny day now': 818393, 'day now farmer': 228035, 'now farmer nurse': 574669, 'farmer nurse grocery': 299470, 'worker all 1st': 1006221, 'all 1st responder': 41893, '1st responder should': 12799, 'responder should be': 715520, 'should be living': 765663, 'living in mansion': 496381, 'in mansion not': 425041, 'mansion not athlete': 513340, 'not athlete actor': 568277, 'kindle': 475096, 'today free': 919552, 'free book': 331677, 'book on': 134573, 'on kindle': 601769, 'today free book': 919553, 'free book on': 331678, 'book on kindle': 134574, '19 hygienic': 7639, 'hygienic company': 412210, 'now dealing': 574501, 'with 10x': 996936, '10x influx': 2407, 'sanitizer read': 735633, 'full case': 340522, 'study here': 814908, 'how rpa': 408607, 'rpa software': 726660, 'helping company': 391292, 'covid 19 hygienic': 213239, '19 hygienic company': 7640, 'hygienic company is': 412211, 'company is now': 190805, 'is now dealing': 450276, 'now dealing with': 574502, 'dealing with 10x': 229654, 'with 10x influx': 996937, '10x influx of': 2408, 'influx of order': 437389, 'of order for': 587335, 'order for hand': 618230, 'hand sanitizer read': 375558, 'sanitizer read the': 735635, 'the full case': 856001, 'full case study': 340525, 'case study here': 166042, 'study here to': 814909, 'here to see': 393727, 'see how rpa': 745247, 'how rpa software': 408608, 'rpa software is': 726661, 'software is helping': 781535, 'is helping company': 448393, 'helping company during': 391293, 'pantry here': 639603, 'our pack': 624223, 'pack the': 633161, 'the pantry': 863249, 'pantry drive': 639561, 'help support local': 390614, 'support local food': 826625, 'food pantry here': 315784, 'pantry here how': 639604, 'donate to our': 254265, 'to our pack': 911228, 'our pack the': 624224, 'pack the pantry': 633162, 'the pantry drive': 863253, 'kolonya': 477364, 'fragrance': 330916, 'bienetre': 129600, 'who remembers': 989527, 'remembers the': 710473, 'the kolonya': 858849, 'kolonya that': 477367, 'our grandparent': 623293, 'grandparent had': 361975, 'had sprayed': 373540, 'sprayed on': 790358, 'on kid': 601764, 'kid this': 474132, 'this traditional': 890835, 'traditional turkish': 929023, 'turkish home': 935595, 'made fragrance': 507748, 'fragrance is': 330923, 'made sanitizer': 507947, 'sanitizer long': 735306, 'long it': 501464, 'it contains': 457303, 'contains 70': 200619, '70 ethanol': 21762, 'ethanol kolonya': 282988, 'kolonya bienetre': 477365, 'bienetre publichealth': 129601, 'who remembers the': 989529, 'remembers the kolonya': 710474, 'the kolonya that': 858850, 'kolonya that our': 477368, 'that our grandparent': 845581, 'our grandparent had': 623295, 'grandparent had sprayed': 361976, 'had sprayed on': 373541, 'sprayed on kid': 790359, 'on kid this': 601765, 'kid this traditional': 474134, 'this traditional turkish': 890836, 'traditional turkish home': 929024, 'turkish home made': 935596, 'home made fragrance': 401566, 'made fragrance is': 507749, 'fragrance is your': 330924, 'is your home': 454150, 'your home made': 1024362, 'home made sanitizer': 401571, 'made sanitizer long': 507948, 'sanitizer long it': 735307, 'long it contains': 501465, 'it contains 70': 457304, 'contains 70 ethanol': 200620, '70 ethanol kolonya': 21763, 'ethanol kolonya bienetre': 282989, 'kolonya bienetre publichealth': 477366, 'yumyumsbakery': 1027107, 'yqg': 1026989, 'our heart': 623396, 'heart to': 388346, 'professional delivery': 682438, 'worker caregiver': 1006605, 'caregiver grocery': 164506, 'scientist who': 742272, 'pandemic thankshealthheroes': 636646, 'thankshealthheroes yumyumsbakery': 842304, 'yumyumsbakery yqg': 1027108, 'thank you from': 841729, 'from the bottom': 337618, 'bottom of our': 136419, 'of our heart': 587486, 'our heart to': 623398, 'heart to all': 388347, 'healthcare professional delivery': 387230, 'professional delivery worker': 682440, 'delivery worker caregiver': 234770, 'worker caregiver grocery': 1006606, 'caregiver grocery store': 164507, 'employee and scientist': 273581, 'and scientist who': 71085, 'scientist who are': 742273, 'are working the': 91719, 'working the frontlines': 1008939, 'this pandemic thankshealthheroes': 889433, 'pandemic thankshealthheroes yumyumsbakery': 636647, 'thankshealthheroes yumyumsbakery yqg': 842305, 'squeeze': 791527, 'seamlessly': 743204, 'digitalcapitalism': 242701, 'profitability of': 682914, 'the everything': 854627, 'everything store': 288015, 'store empire': 807447, 'empire rest': 273415, 'rest not': 716175, 'only on': 610852, 'it ability': 456232, 'to squeeze': 915097, 'squeeze worker': 791541, 'and exploit': 62516, 'exploit economy': 292337, 'of scale': 589352, 'scale but': 739877, 'also on': 48611, 'to seamlessly': 913948, 'seamlessly connect': 743205, 'connect million': 194609, 'to amazon': 900392, 'amazon digitalcapitalism': 50915, 'the profitability of': 864625, 'profitability of the': 682915, 'of the everything': 590997, 'the everything store': 854628, 'everything store empire': 288016, 'store empire rest': 807448, 'empire rest not': 273416, 'rest not only': 716176, 'not only on': 570811, 'only on it': 610857, 'on it ability': 601647, 'it ability to': 456233, 'ability to squeeze': 24404, 'to squeeze worker': 915100, 'squeeze worker and': 791542, 'worker and exploit': 1006292, 'and exploit economy': 62517, 'exploit economy of': 292338, 'economy of scale': 268114, 'of scale but': 589353, 'scale but also': 739878, 'but also on': 145130, 'also on it': 48614, 'ability to seamlessly': 24401, 'to seamlessly connect': 913949, 'seamlessly connect million': 743206, 'connect million of': 194610, 'people to amazon': 649875, 'to amazon digitalcapitalism': 900393, 'today going': 919575, 'off please': 594076, 'please wish': 660776, 'me well': 523920, 'well all': 977998, 'very popular': 955423, 'been stretched': 122063, 'stretched to': 813578, 'the max': 860302, 'today going back': 919576, 'to work after': 918678, 'work after two': 1004717, 'after two day': 36462, 'two day off': 936866, 'day off please': 228129, 'off please wish': 594078, 'please wish me': 660777, 'wish me well': 996793, 'me well all': 523921, 'well all work': 978001, 'all work for': 45493, 'work for very': 1005179, 'for very popular': 327546, 'very popular grocery': 955424, 'store and we': 806399, 've been stretched': 952934, 'been stretched to': 122064, 'stretched to the': 813579, 'to the max': 916873, 'the max of': 860304, 'max of late': 520766, 'monday 23': 536220, '23 mar': 15403, 'mar 2020': 514976, '2020 covid': 14259, 'update is': 947039, 'order only': 618486, 'only click': 610247, 'collect is': 186289, 'open by': 612137, 'by appointment': 151878, 'appointment only': 82673, 'only we': 611448, 'not open': 570842, 'for physical': 324538, 'physical visit': 655476, 'please expect': 659977, 'expect delivery': 290629, 'staff shortage': 792851, 'shortage especially': 764928, 'especially within': 280677, 'delivery industry': 234123, 'monday 23 mar': 536221, '23 mar 2020': 15404, 'mar 2020 covid': 514977, '2020 covid 19': 14260, '19 update is': 11668, 'update is open': 947041, 'is open for': 450566, 'open for online': 612253, 'online order only': 608696, 'order only click': 618487, 'only click collect': 610248, 'click collect is': 181896, 'collect is open': 186291, 'is open by': 450562, 'open by appointment': 612138, 'by appointment only': 151879, 'appointment only we': 82676, 'only we are': 611449, 'are not open': 88427, 'not open for': 570843, 'open for physical': 612255, 'for physical visit': 324541, 'physical visit and': 655477, 'visit and shopping': 959181, 'and shopping please': 71550, 'shopping please expect': 763644, 'please expect delivery': 659978, 'expect delivery delay': 290630, 'delivery delay due': 233855, 'due to staff': 261968, 'to staff shortage': 915138, 'staff shortage especially': 792853, 'shortage especially within': 764930, 'especially within the': 280678, 'within the delivery': 1002433, 'the delivery industry': 853067, 'get weird': 348609, 'weird we': 977810, 'we adjust': 970287, 'normal amid': 567081, 'shopping get weird': 762778, 'get weird we': 348611, 'weird we adjust': 977811, 'we adjust to': 970288, 'adjust to new': 32300, 'new normal amid': 559147, 'normal amid pandemic': 567082, 'of town': 592351, 'town for': 927462, 'past day': 643515, 'am struggling': 50441, 'our fridge': 623174, 'fridge with': 333440, 'essential just': 281252, 'family through': 298313, 'we empty': 971444, 'before trip': 123251, 'trip so': 932160, 'so food': 777106, 'food doesn': 314257, 'doesn go': 251809, 'waste speechless': 968191, 'speechless quarantinelife': 788422, 'after being out': 35415, 'out of town': 626865, 'of town for': 592352, 'town for the': 927464, 'the past day': 863351, 'past day am': 643516, 'day am struggling': 227241, 'am struggling to': 50442, 'struggling to stock': 814519, 'stock our fridge': 802600, 'our fridge with': 623176, 'fridge with the': 333443, 'the essential just': 854509, 'essential just to': 281254, 'get my family': 347629, 'my family through': 548230, 'family through the': 298314, 'through the week': 894776, 'the week we': 871320, 'week we empty': 977191, 'we empty our': 971445, 'empty our fridge': 274989, 'our fridge before': 623175, 'fridge before trip': 333384, 'before trip so': 123252, 'trip so food': 932161, 'so food doesn': 777107, 'food doesn go': 314259, 'doesn go to': 251812, 'to waste speechless': 918372, 'waste speechless quarantinelife': 968192, 'notmypresident': 573589, 'toiletpaperchallenge': 922972, 'gotta thank': 359107, 'thank my': 841609, 'my bro': 547543, 'bro for': 140679, 'for giving': 321889, 'giving these': 351429, 'these tp': 880872, 'tp roll': 927918, 'roll joke': 725362, 'joke for': 467077, 'for xmas': 327981, 'xmas came': 1013878, 'in handy': 423533, 'handy notmypresident': 376896, 'notmypresident 19': 573590, '19 trump': 11588, 'trump toiletpaperchallenge': 933929, 'toiletpaperchallenge toiletpaper': 922980, 'gotta thank my': 359108, 'thank my bro': 841610, 'my bro for': 547544, 'bro for giving': 140680, 'for giving these': 321892, 'giving these tp': 351431, 'these tp roll': 880873, 'tp roll joke': 927919, 'roll joke for': 725363, 'joke for xmas': 467079, 'for xmas came': 327982, 'xmas came in': 1013879, 'came in handy': 157016, 'in handy notmypresident': 423536, 'handy notmypresident 19': 376897, 'notmypresident 19 trump': 573591, '19 trump toiletpaperchallenge': 11589, 'trump toiletpaperchallenge toiletpaper': 933930, 'for signing': 325620, 'signing our': 769642, 'our pledge': 624369, 'pledge and': 660844, 'your comment': 1023256, 'comment signing': 188448, 'signing because': 769629, 'have spent': 382683, 'last 16': 480093, 'year working': 1015117, 'you for signing': 1018670, 'for signing our': 325621, 'signing our pledge': 769644, 'our pledge and': 624370, 'pledge and for': 660845, 'and for your': 63168, 'for your comment': 328131, 'your comment signing': 1023257, 'comment signing because': 188449, 'signing because have': 769630, 'because have spent': 119103, 'have spent the': 382690, 'the last 16': 858989, 'last 16 year': 480094, '16 year working': 4197, 'year working in': 1015118, 'in retail via': 427472, 'people became': 647232, 'became nicer': 118879, 'nicer during': 562548, 'time without': 898365, 'same mission': 733161, 'mission bit': 534347, 'put an': 690508, 'this nonsense': 889157, 'nonsense hopefully': 566732, 'hopefully this': 403894, 'put thing': 690907, 'thing into': 884456, 'into perspective': 442866, 'perspective for': 653194, 'many quarantine': 514609, 'noticed that some': 573484, 'that some people': 846392, 'some people became': 783507, 'people became nicer': 647233, 'became nicer during': 118880, 'nicer during these': 562549, 'these time without': 880855, 'time without the': 898368, 'without the grocery': 1002969, 'grocery store if': 365480, 'store if we': 808249, 'we were on': 973799, 'the same mission': 866259, 'same mission bit': 733162, 'mission bit to': 534348, 'bit to put': 131720, 'to put an': 912580, 'put an end': 690509, 'end to this': 276013, 'to this nonsense': 917444, 'this nonsense hopefully': 889159, 'nonsense hopefully this': 566733, 'hopefully this put': 403896, 'this put thing': 889767, 'put thing into': 690908, 'thing into perspective': 884457, 'into perspective for': 442868, 'perspective for many': 653195, 'for many quarantine': 323232, 'favour': 300568, 'gu': 367676, 'and shelter': 71452, 'shelter is': 757934, 'lockdown pg': 499794, 'pg owner': 653950, 'owner demand': 632439, 'demand money': 235877, 'money plz': 536976, 'plz do': 661809, 'do favour': 249290, 'favour for': 300569, 'while address': 986566, 'address to': 32057, 'to nation': 910475, 'nation on': 552279, 'today 10am': 919120, '10am request': 2299, 'request government': 713169, 'in waiving': 430651, 'waiving off': 964566, 'our paying': 624299, 'paying gu': 645422, 'food and shelter': 313331, 'and shelter is': 71457, 'shelter is necessary': 757936, 'is necessary to': 449849, 'necessary to survive': 554129, '19 lockdown pg': 8417, 'lockdown pg owner': 499795, 'pg owner demand': 653952, 'owner demand money': 632440, 'demand money plz': 235878, 'money plz do': 536977, 'plz do favour': 661810, 'do favour for': 249291, 'favour for while': 300570, 'for while address': 327836, 'while address to': 986567, 'address to nation': 32059, 'to nation on': 910476, 'nation on today': 552282, 'on today 10am': 604774, 'today 10am request': 919121, '10am request government': 2300, 'request government can': 713170, 'government can help': 359960, 'help in waiving': 389914, 'in waiving off': 430653, 'waiving off our': 964567, 'off our paying': 594040, 'our paying gu': 624300, 'of gallon': 584028, 'of unleaded': 592650, 'unleaded gas': 942573, 'gas in': 343868, 'some part': 783496, 'of minnesota': 586567, 'minnesota is': 533614, 'below 00': 126547, '00 per': 426, 'price of gallon': 675458, 'of gallon of': 584031, 'gallon of unleaded': 343049, 'of unleaded gas': 592651, 'unleaded gas in': 942574, 'gas in some': 343872, 'in some part': 428094, 'some part of': 783497, 'part of minnesota': 642361, 'of minnesota is': 586568, 'minnesota is below': 533615, 'is below 00': 446126, 'below 00 per': 126552, '00 per gallon': 430, 'spelling': 788530, 'about bad': 24841, 'bad spelling': 108014, 'spelling price': 788531, 'close ct': 182603, 'ct food': 220100, 'food business': 313796, 'business down': 143656, 'complaint about bad': 191925, 'about bad spelling': 24843, 'bad spelling price': 108015, 'spelling price help': 788532, 'price help to': 674499, 'help to close': 390769, 'to close ct': 902865, 'close ct food': 182604, 'ct food business': 220101, 'food business down': 313798, 'coronavirus here': 206070, 'surrounding the coronavirus': 828767, 'the coronavirus here': 851865, 'coronavirus here are': 206071, '19why': 12571, '50ft': 20150, 'publix walmart': 688790, 'walmart thats': 965429, 'thats how': 847810, 'it spreading': 461206, 'spreading through': 791070, 'community you': 190246, 'home all': 400580, 'week then': 977015, 'get gallon': 347129, 'milk with': 531914, 'with side': 1000725, 'covid 19why': 214113, '19why would': 12572, 'you set': 1021130, 'of boat': 580757, 'boat in': 133720, 'stay 50ft': 796736, '50ft apart': 20151, 'apart but': 81234, 'not regulate': 571286, 'publix walmart thats': 688791, 'walmart thats how': 965430, 'thats how it': 847811, 'how it spreading': 408142, 'it spreading through': 461207, 'spreading through our': 791072, 'through our community': 894613, 'our community you': 622492, 'community you may': 190247, 'you may stay': 1019813, 'may stay home': 521530, 'stay home all': 796935, 'home all week': 400585, 'all week then': 45424, 'week then go': 977018, 'then go get': 877205, 'go get gallon': 353607, 'get gallon of': 347130, 'of milk with': 586525, 'milk with side': 531915, 'with side of': 1000726, 'side of covid': 768846, 'of covid 19why': 582093, 'covid 19why would': 214114, '19why would you': 12573, 'would you set': 1012422, 'you set limit': 1021131, 'set limit of': 753420, 'limit of boat': 492394, 'of boat in': 580758, 'boat in the': 133723, 'in the water': 429663, 'the water to': 871129, 'water to stay': 969221, 'to stay 50ft': 915264, 'stay 50ft apart': 796737, '50ft apart but': 20152, 'apart but not': 81235, 'but not regulate': 146558, 'not regulate the': 571288, 'regulate the amount': 707993, 'people in supermarket': 648434, 'blu': 133414, 'this fucking': 887642, 'fucking joke': 339921, 'joke these': 467142, 'are usually': 91437, 'usually the': 951161, 'with dvd': 998155, 'dvd or': 263634, 'or blu': 614565, 'blu ray': 133418, 'ray price': 698031, 'investigate you': 443812, 'you pretty': 1020421, 'all digital': 42574, 'digital bu': 242516, 'is this fucking': 453088, 'this fucking joke': 887644, 'fucking joke these': 339922, 'joke these price': 467143, 'these price are': 880524, 'price are usually': 672760, 'are usually the': 91439, 'usually the buy': 951162, 'the buy and': 850218, 'buy and keep': 148324, 'and keep with': 65787, 'keep with dvd': 472212, 'with dvd or': 998156, 'dvd or blu': 263635, 'or blu ray': 614566, 'blu ray price': 133419, 'ray price need': 698032, 'price need to': 675318, 'need to investigate': 555976, 'to investigate you': 908496, 'investigate you pretty': 443813, 'you pretty sure': 1020422, 'pretty sure they': 671510, 'sure they make': 827741, 'they make it': 882647, 'illegal to hike': 416251, 'hike price during': 396257, '19 and you': 5143, 'done this with': 255060, 'this with all': 891456, 'with all digital': 997148, 'all digital bu': 42575, 'kano': 470795, 'shebi': 756498, 'kano hand': 470796, 'sanitizer go': 734993, 'go dey': 353455, 'dey cure': 240021, 'cure shebi': 220801, 'kano hand sanitizer': 470797, 'hand sanitizer go': 375421, 'sanitizer go dey': 734994, 'go dey cure': 353456, 'dey cure shebi': 240022, 'so imagine': 777367, 'imagine everyone': 416718, 'everyone getting': 286933, 'same supermarket': 733309, 'supermarket ignoring': 820846, 'ignoring all': 415898, 'the socialdistancing': 867423, 'socialdistancing you': 780890, 'happen more': 377118, 'more death': 538971, 'death curfew': 230012, 'curfew cannot': 220862, 'cannot just': 161976, 'just happen': 468923, 'happen planned': 377141, 'planned at': 658441, 'least more': 484563, 'so imagine everyone': 777368, 'imagine everyone getting': 416719, 'everyone getting out': 286934, 'of their car': 591645, 'their car and': 872721, 'car and going': 162994, 'and going to': 63812, 'the same supermarket': 866304, 'same supermarket ignoring': 733313, 'supermarket ignoring all': 820847, 'ignoring all the': 415899, 'all the socialdistancing': 44914, 'the socialdistancing you': 867430, 'socialdistancing you know': 780892, 'will happen more': 993600, 'happen more death': 377119, 'more death curfew': 538972, 'death curfew cannot': 230013, 'curfew cannot just': 220865, 'cannot just happen': 161979, 'just happen planned': 468924, 'happen planned at': 377142, 'planned at least': 658442, 'at least more': 99526, 'least more than': 484564, 'chalet': 171372, 'queenston': 693420, 'the swiss': 869060, 'swiss chalet': 830450, 'chalet in': 171373, 'in hamilton': 423518, 'hamilton on': 374560, 'on queenston': 603048, 'queenston road': 693421, 'latest example': 481326, 'of stepping': 590122, 'those battling': 891840, 'battling on': 112865, 'restaurant is': 716535, 'free dinner': 331766, 'dinner to': 243098, 'to bus': 902118, 'worker way': 1008135, 'of saying': 589350, 'saying thanks': 739694, 'the swiss chalet': 869062, 'swiss chalet in': 830451, 'chalet in hamilton': 171374, 'in hamilton on': 423520, 'hamilton on queenston': 374561, 'on queenston road': 603049, 'queenston road is': 693422, 'road is just': 724465, 'just the latest': 470004, 'the latest example': 859100, 'latest example of': 481327, 'example of stepping': 288948, 'of stepping up': 590123, 'up to support': 946432, 'to support those': 915980, 'support those battling': 826931, 'those battling on': 891841, 'battling on the': 112867, 'crisis the restaurant': 218190, 'the restaurant is': 865655, 'restaurant is offering': 716538, 'is offering free': 450420, 'offering free dinner': 595118, 'free dinner to': 331767, 'dinner to bus': 243100, 'to bus driver': 902119, 'bus driver and': 143014, 'store worker way': 811617, 'worker way of': 1008136, 'way of saying': 969765, 'of saying thanks': 589351, 'louis based': 504520, 'based is': 111634, 'selling grocery': 749278, 'the rising': 865865, 'food created': 314054, 'st louis based': 791723, 'louis based is': 504521, 'based is selling': 111635, 'is selling grocery': 451756, 'selling grocery to': 749279, 'grocery to help': 366052, 'meet the rising': 527610, 'the rising demand': 865867, 'for food created': 321573, 'food created by': 314055, 'created by the': 215795, 'store employee at': 807460, 'employee at risk': 273650, 'dailyneeds': 224925, 'hyd how': 411904, 'without vegetable': 1003029, 'vegetable dailyneeds': 953965, 'dailyneeds please': 224926, 'please look': 660208, 'into today': 443243, 'have vegetable': 383493, 'price double': 673498, 'difficult know': 242243, 'know please': 476684, 'this anna': 886364, 'anna hope': 76772, 'are understand': 91296, 'understand tq': 940796, 'hyd how we': 411905, 'we can survive': 971026, 'can survive without': 159882, 'survive without vegetable': 829304, 'without vegetable dailyneeds': 1003030, 'vegetable dailyneeds please': 953966, 'dailyneeds please look': 224927, 'please look into': 660211, 'look into today': 502438, 'into today we': 443244, 'today we have': 920474, 'we have vegetable': 971981, 'have vegetable market': 383494, 'vegetable market price': 954031, 'market price double': 516884, 'price double it': 673501, 'double it is': 256025, 'is difficult know': 447172, 'difficult know please': 242244, 'know please look': 476686, 'look into this': 502437, 'into this anna': 443209, 'this anna hope': 886365, 'anna hope you': 76773, 'you are understand': 1017276, 'are understand tq': 91297, 'mechanical': 525840, 'shop price': 760680, 'getting over': 349173, 'over charged': 630077, 'for mechanical': 323368, 'mechanical work': 525843, '19 floating': 7026, 'floating around': 310663, 'around now': 93420, 'to hmu': 907860, 'hmu between': 398716, 'between myself': 128829, 'myself and': 550815, 'my folk': 548367, 'folk got': 312165, 'got hook': 358617, 'hook ups': 403346, 'ups going': 947748, 'on dm': 600363, 'for need': 323798, 'need pricing': 555471, 'tired of shop': 899051, 'of shop price': 589623, 'shop price getting': 760682, 'price getting over': 674176, 'getting over charged': 349174, 'over charged for': 630078, 'charged for mechanical': 173382, 'for mechanical work': 323369, 'mechanical work with': 525844, 'covid 19 floating': 213104, '19 floating around': 7027, 'floating around now': 310664, 'around now is': 93421, 'time to hmu': 897997, 'to hmu between': 907861, 'hmu between myself': 398717, 'between myself and': 128830, 'myself and my': 550823, 'and my folk': 67366, 'my folk got': 548369, 'folk got hook': 312166, 'got hook ups': 358618, 'hook ups going': 403347, 'ups going on': 947749, 'going on dm': 355313, 'on dm me': 600364, 'dm me for': 248905, 'me for need': 522756, 'for need pricing': 323800, 'literal': 494943, 'fuckery': 339758, 're telling': 699669, 'telling me': 837220, 'me work': 524012, 'yet putting': 1016215, 'putting my': 691166, 'my literal': 549077, 'literal fucking': 494946, 'fucking life': 339930, 'line almost': 492940, 'almost just': 46684, 'just much': 469292, 'much doctor': 544837, 'doctor or': 251058, 'or nurse': 616328, 'nurse with': 577552, 'shit right': 759206, 'yet still': 1016244, 'wage what': 963990, 'of fuckery': 583988, 'fuckery is': 339759, 'you re telling': 1020770, 're telling me': 699671, 'telling me work': 837233, 'me work in': 524014, 'supermarket and yet': 819110, 'and yet putting': 75991, 'yet putting my': 1016216, 'putting my literal': 691167, 'my literal fucking': 549078, 'literal fucking life': 494947, 'fucking life on': 339931, 'the line almost': 859399, 'line almost just': 492941, 'almost just much': 46685, 'just much doctor': 469293, 'much doctor or': 544839, 'doctor or nurse': 251060, 'or nurse with': 616333, 'nurse with covid': 577553, '19 shit right': 10465, 'shit right and': 759207, 'right and yet': 721762, 'and yet still': 75993, 'yet still on': 1016245, 'still on minimum': 800934, 'minimum wage what': 533250, 'wage what kind': 963991, 'kind of fuckery': 474897, 'of fuckery is': 583989, 'fuckery is this': 339760, 'youllneverwalkalone': 1022549, 'ausgangssperrejetzt': 103051, 'ynwa': 1016415, 'afterhours': 36637, 'davido': 227010, 'now receiving': 575653, 'receiving patient': 703790, 'from chloroquine': 334878, 'chloroquine poisoning': 177615, 'poisoning lagos': 662804, 'lagos state': 478949, 'state govt': 795628, 'govt youllneverwalkalone': 361340, 'youllneverwalkalone ausgangssperrejetzt': 1022550, 'ausgangssperrejetzt ynwa': 103052, 'ynwa afterhours': 1016416, 'afterhours davido': 36640, 'davido calockdown': 227011, 'calockdown stophoarding': 156884, 'stophoarding fridayfeeling': 805399, 'fridayfeeling coronacrisis': 333326, 'are now receiving': 88587, 'now receiving patient': 575655, 'receiving patient suffering': 703791, 'suffering from chloroquine': 817307, 'from chloroquine poisoning': 334879, 'chloroquine poisoning lagos': 177616, 'poisoning lagos state': 662805, 'lagos state govt': 478952, 'state govt youllneverwalkalone': 795632, 'govt youllneverwalkalone ausgangssperrejetzt': 361341, 'youllneverwalkalone ausgangssperrejetzt ynwa': 1022551, 'ausgangssperrejetzt ynwa afterhours': 103053, 'ynwa afterhours davido': 1016417, 'afterhours davido calockdown': 36641, 'davido calockdown stophoarding': 227012, 'calockdown stophoarding fridayfeeling': 156885, 'stophoarding fridayfeeling coronacrisis': 805400, '1million': 12667, 'unemployment amp': 941151, 'amp inflation': 53989, 'the pop': 864009, 'pop below': 664409, 'below poverty': 126713, 'is while': 453936, 'stolen over': 804300, 'over 3b': 629840, '3b to': 18217, 'fund proxy': 341481, 'yet spends': 1016240, 'spends only': 789075, 'only 1million': 609986, '1million on': 12668, 'price unemployment amp': 677188, 'unemployment amp inflation': 941152, 'amp inflation have': 53990, 'of the pop': 591349, 'the pop below': 864010, 'pop below poverty': 664410, 'below poverty line': 126714, 'line this is': 493470, 'this is while': 888467, 'is while khamenei': 453938, 'ha stolen over': 372072, 'stolen over 3b': 804301, 'over 3b to': 629841, '3b to fund': 18218, 'to fund proxy': 906332, 'fund proxy yet': 341482, 'proxy yet spends': 687346, 'yet spends only': 1016241, 'spends only 1million': 789076, 'only 1million on': 609987, '1million on the': 12669, 'on the ppl': 604297, 'destructive': 239128, 'ideology': 413417, 'exceptionalism': 289307, 'absurd': 27487, 'self destructive': 747602, 'destructive ideology': 239131, 'ideology of': 413418, 'british exceptionalism': 140519, 'exceptionalism ha': 289308, 'done enough': 254826, 'enough damage': 277359, 'damage already': 225173, 'this how': 887967, 'how absurd': 407317, 'absurd that': 27509, 'turning on': 935937, 'on back': 599532, 'for easier': 320917, 'essential medical': 281300, 'the self destructive': 866652, 'self destructive ideology': 747603, 'destructive ideology of': 239132, 'ideology of british': 413419, 'of british exceptionalism': 580893, 'british exceptionalism ha': 140520, 'exceptionalism ha done': 289309, 'ha done enough': 370415, 'done enough damage': 254827, 'enough damage already': 277360, 'damage already in': 225174, 'already in this': 47477, 'in this how': 429963, 'this how absurd': 887968, 'how absurd that': 407318, 'absurd that we': 27510, 'we are turning': 970746, 'are turning on': 91227, 'turning on back': 935938, 'on back on': 599533, 'on the chance': 604017, 'the chance for': 850660, 'chance for easier': 171724, 'for easier access': 320918, 'access to more': 28258, 'to more essential': 910254, 'more essential medical': 539148, 'essential medical equipment': 281301, 'equipment and at': 279677, 'and at lower': 58480, 'at lower price': 99640, 'information hub': 437857, 'hub from': 409798, 'from information': 336062, 'information hub from': 437859, 'hub from information': 409801, 'from information about': 336063, 'right and obligation': 721760, 'and obligation on': 67925, 'obligation on business': 578461, 'on business in': 599739, 'business in relation': 143899, 'place cap': 657381, 'cap on': 162437, 'daily essential': 224595, 'have private': 382049, 'private pharmacy': 678962, 'pharmacy charging': 654275, 'charging time': 173526, 'price nh': 675333, 'need to place': 556009, 'to place cap': 911750, 'place cap on': 657382, 'cap on medicine': 162438, 'on medicine and': 602103, 'medicine and daily': 526712, 'and daily essential': 60911, 'daily essential good': 224599, 'essential good price': 281097, 'good price in': 357589, 'we have private': 971904, 'have private pharmacy': 382050, 'private pharmacy charging': 678963, 'pharmacy charging time': 654277, 'charging time the': 173527, 'time the price': 897869, 'the price nh': 864389, 'quadcities': 691646, 'thriving': 894220, 'quadcities are': 691647, 'you small': 1021274, 'owner looking': 632492, 'or restaurant': 616877, 'restaurant thriving': 716753, 'thriving maybe': 894225, 'are local': 87855, 'local consumer': 497852, 'consumer looking': 198072, 'some valuable': 784154, 'valuable information': 952026, 'do both': 249149, 'quadcities are you': 691648, 'are you small': 91857, 'you small business': 1021276, 'business owner looking': 144188, 'owner looking for': 632493, 'your store or': 1025982, 'store or restaurant': 809365, 'or restaurant thriving': 616883, 'restaurant thriving maybe': 716754, 'thriving maybe you': 894226, 'maybe you are': 521892, 'you are local': 1017164, 'are local consumer': 87856, 'local consumer looking': 497854, 'consumer looking to': 198073, 'looking to support': 503048, 'to support this': 915979, 'support this type': 826929, 'of business here': 580956, 'business here some': 143844, 'here some valuable': 393587, 'some valuable information': 784155, 'valuable information from': 952027, 'information from on': 437844, 'how to do': 409010, 'to do both': 904490, 'ok worst': 597950, 'about socialdistancing': 26215, 'socialdistancing nobody': 780560, 'nobody is': 566020, 'helping me': 391382, 'top shelf': 925717, 'ok worst thing': 597951, 'worst thing about': 1011281, 'thing about socialdistancing': 884092, 'about socialdistancing nobody': 26219, 'socialdistancing nobody is': 780561, 'nobody is helping': 566023, 'is helping me': 448403, 'helping me to': 391383, 'me to reach': 523771, 'to reach the': 912808, 'reach the thing': 699990, 'the thing on': 869462, 'thing on top': 884643, 'on top shelf': 604809, 'top shelf at': 925718, 'traditionl': 929034, 'bankfee': 110399, 'traditionl bank': 929035, 'bank screw': 110161, 'screw over': 742798, 'consumer with': 199559, 'every possible': 286116, 'possible bankfee': 665583, 'bankfee imaginable': 110400, 'imaginable there': 416674, 'other resource': 620836, 'resource apps': 714708, 'apps available': 83267, 'available now': 104514, 'now screw': 575741, 'screw the': 742805, 'money lender': 536867, 'lender their': 486251, 'their bank': 872551, 'bank fee': 109826, 'fee banking': 302146, 'banking nationalemergency': 110443, 'traditionl bank screw': 929036, 'bank screw over': 110162, 'screw over the': 742799, 'over the consumer': 630705, 'the consumer with': 851626, 'consumer with every': 199561, 'with every possible': 998277, 'every possible bankfee': 286117, 'possible bankfee imaginable': 665584, 'bankfee imaginable there': 110401, 'imaginable there other': 416675, 'there other resource': 878906, 'other resource apps': 620837, 'resource apps available': 714709, 'apps available now': 83268, 'available now screw': 104521, 'now screw the': 575742, 'screw the money': 742806, 'the money lender': 860817, 'money lender their': 536868, 'lender their bank': 486252, 'their bank fee': 872553, 'bank fee banking': 109828, 'fee banking nationalemergency': 302147, 'gra': 361450, 'gra supply': 361453, 'supply innovative': 825426, 'innovative consumer': 438921, 'consumer healthcare': 197735, 'healthcare product': 387221, 'product gra': 681232, 'gra goal': 361451, 'goal is': 354571, 'world best': 1009355, 'best performing': 127826, 'performing and': 651491, 'and trusted': 74500, 'trusted emergency': 934337, 'emergency supply': 273001, 'supply company': 825089, 'company gra': 190703, 'gra supply innovative': 361454, 'supply innovative consumer': 825427, 'innovative consumer healthcare': 438922, 'consumer healthcare product': 197737, 'healthcare product gra': 387224, 'product gra goal': 681233, 'gra goal is': 361452, 'goal is to': 354572, 'is to be': 453182, 'the world best': 871822, 'world best performing': 1009356, 'best performing and': 127827, 'performing and trusted': 651492, 'and trusted emergency': 74501, 'trusted emergency supply': 934338, 'emergency supply company': 273004, 'supply company gra': 825091, 'psychosis': 687588, 'while this': 987451, 'doesn answer': 251699, 'question here': 693609, 'ever read': 285461, 'paper supermarket': 640848, 'supermarket psychosis': 822090, 'psychosis fascinating': 687589, 'fascinating piece': 299763, 'while this doesn': 987453, 'this doesn answer': 887273, 'doesn answer all': 251700, 'answer all the': 78007, 'all the question': 44878, 'the question here': 865016, 'question here the': 693611, 'here the best': 393641, 'best thing ve': 127929, 've ever read': 953094, 'ever read about': 285462, 'read about toilet': 700258, 'toilet paper supermarket': 921476, 'paper supermarket psychosis': 640850, 'supermarket psychosis fascinating': 822091, 'psychosis fascinating piece': 687590, 'seriously can': 751557, 'buying free': 150370, 'food cause': 313888, 'cause they': 167768, 'already hoarded': 47451, 'medical issue': 526227, 'issue please': 455890, 'buy there': 149338, 'is need': 449854, 'seriously can people': 751558, 'can people stop': 159216, 'people stop buying': 649649, 'stop buying free': 804537, 'buying free from': 150371, 'from food cause': 335505, 'food cause they': 313891, 'cause they have': 167772, 'they have already': 882290, 'have already hoarded': 379191, 'already hoarded the': 47452, 'hoarded the other': 398965, 'the other food': 862527, 'other food people': 620246, 'people need the': 648836, 'need the free': 555745, 'from food due': 335507, 'due to medical': 261866, 'to medical issue': 909997, 'medical issue please': 526228, 'issue please stop': 455893, 'stop panic buy': 804881, 'panic buy there': 637537, 'buy there is': 149341, 'there is need': 878593, 'foodshortage': 318126, 'got new': 358734, 'new posted': 559329, 'posted on': 666554, 'my youtube': 550671, 'channel please': 172919, 'please sub': 660602, 'sub and': 815673, 'would enjoy': 1011788, 'my content': 547796, 'content appreciate': 200781, 'appreciate it': 82728, 'it quarentinelife': 460576, 'quarentinelife supermarket': 693214, 'supermarket foodshortage': 820371, 'got new posted': 358736, 'new posted on': 559330, 'posted on my': 666558, 'on my youtube': 602331, 'my youtube channel': 550672, 'youtube channel please': 1026893, 'channel please sub': 172920, 'please sub and': 660603, 'sub and share': 815675, 'and share with': 71397, 'share with anyone': 755351, 'with anyone you': 997287, 'anyone you think': 80669, 'you think would': 1021690, 'think would enjoy': 885797, 'would enjoy my': 1011789, 'enjoy my content': 277153, 'my content appreciate': 547797, 'content appreciate it': 200782, 'appreciate it quarentinelife': 82734, 'it quarentinelife supermarket': 460577, 'quarentinelife supermarket foodshortage': 693215, 'having huge': 384114, 'life from': 488674, 'from pension': 336871, 'pension and': 646644, 'and investment': 65359, 'job security': 466140, 'security mortgage': 744670, 'mortgage payment': 541934, 'right we': 722405, 'got plenty': 358788, 'of guidance': 584384, 'pandemic is having': 635774, 'is having huge': 448329, 'having huge impact': 384115, 'huge impact on': 410066, 'impact on our': 417878, 'on our way': 602642, 'of life from': 585822, 'life from pension': 488676, 'from pension and': 336872, 'pension and investment': 646645, 'and investment to': 65364, 'investment to job': 444073, 'to job security': 908670, 'job security mortgage': 466145, 'security mortgage payment': 744671, 'mortgage payment and': 541935, 'payment and consumer': 645543, 'and consumer right': 60425, 'consumer right we': 198832, 'right we ve': 722409, 've got plenty': 953193, 'got plenty of': 358790, 'plenty of guidance': 660953, 'of guidance and': 584386, 'guidance and tip': 368208, 'help you through': 391002, 'you through it': 1021728, 'kinda weird': 475083, 'weird the': 977795, 'the feeling': 855099, 'feeling that': 303066, 'age your': 37925, 'your playing': 1025332, 'playing you': 659475, 'you bet': 1017458, 'bet your': 128132, 'life you': 489244, 'your mail': 1024760, 'mail your': 508674, 'family come': 297710, 'kinda weird the': 475084, 'weird the feeling': 977796, 'the feeling that': 855103, 'feeling that at': 303067, 'that at my': 842880, 'at my age': 99804, 'my age your': 547240, 'age your playing': 37926, 'your playing you': 1025333, 'playing you bet': 659476, 'you bet your': 1017459, 'bet your life': 128137, 'your life you': 1024654, 'life you go': 489245, 'store you check': 811682, 'you check your': 1017935, 'check your mail': 174734, 'your mail your': 1024763, 'mail your family': 508675, 'your family come': 1023776, 'family come in': 297711, 'identification': 413317, 'people action': 646763, 'so selfish': 778171, 'selfish if': 748142, 'people over': 649035, 'over 65': 629889, '65 could': 21347, 'shop show': 760785, 'show identification': 766999, 'identification just': 413318, 'young couple': 1022580, 'with 300': 997002, '300 roll': 17343, 'tp no': 927876, 'shit well': 759288, 'well maybe': 978388, 'maybe epidemic': 521670, 'some people action': 783501, 'people action are': 646764, 'action are so': 29963, 'are so selfish': 90217, 'so selfish if': 778174, 'selfish if were': 748143, 'if were the': 415348, 'were the ceo': 980238, 'ceo of grocery': 169780, 'grocery store from': 365414, 'store from to': 807883, 'from to people': 338063, 'to people over': 911634, 'people over 65': 649036, 'over 65 could': 629890, '65 could shop': 21348, 'could shop show': 209673, 'shop show identification': 760786, 'show identification just': 767000, 'identification just saw': 413319, 'just saw young': 469697, 'saw young couple': 738338, 'young couple with': 1022583, 'couple with 300': 211720, 'with 300 roll': 997003, '300 roll of': 17344, 'of tp no': 592373, 'tp no one': 927877, 'one is that': 606527, 'is that full': 452649, 'that full of': 843973, 'of shit well': 589606, 'shit well maybe': 759289, 'well maybe epidemic': 978389, 'beleaguered': 126144, 'nowaste': 576541, 'why wouldn': 991574, 'govt buy': 361084, 'food pay': 315825, 'pay beleaguered': 644775, 'beleaguered airline': 126145, 'fly it': 311618, 'needed probably': 556464, 'probably cost': 679240, 'than other': 840996, 'other measure': 620516, 'measure put': 525297, 'needed sustainability': 556513, 'sustainability nowaste': 829773, 'nowaste supply': 576542, 'why wouldn the': 991576, 'wouldn the govt': 1012510, 'the govt buy': 856652, 'govt buy the': 361085, 'buy the food': 149297, 'the food pay': 855586, 'food pay beleaguered': 315826, 'pay beleaguered airline': 644776, 'beleaguered airline to': 126146, 'airline to fly': 40050, 'to fly it': 906033, 'fly it where': 311620, 'it where it': 462344, 'where it needed': 984970, 'it needed probably': 459759, 'needed probably cost': 556465, 'probably cost le': 679241, 'cost le than': 207998, 'le than other': 483185, 'than other measure': 840999, 'other measure put': 620517, 'measure put people': 525299, 'put people back': 690768, 'to work get': 918726, 'work get food': 1005208, 'get food to': 347070, 'food to where': 317303, 'to where it': 918538, 'it needed sustainability': 459760, 'needed sustainability nowaste': 556514, 'sustainability nowaste supply': 829774, 'nowaste supply demand': 576543, 'generate': 345556, 'customer willing': 223097, 'pay how': 644945, 'we set': 973210, 'set our': 753449, 'can generate': 158393, 'generate value': 345569, 'value stayhomesavelives': 952202, 'how much is': 408355, 'much is the': 545022, 'is the customer': 452761, 'the customer willing': 852740, 'customer willing to': 223098, 'willing to pay': 995474, 'to pay how': 911537, 'pay how do': 644946, 'how do we': 407730, 'do we set': 250486, 'we set our': 973211, 'set our price': 753450, 'our price are': 624438, 'price are there': 672751, 'are there other': 90959, 'there other way': 878907, 'other way we': 621189, 'we can generate': 970953, 'can generate value': 158395, 'generate value stayhomesavelives': 345570, 'keyboard': 473535, 'r3m': 695091, 'retract': 719738, 'lockdownsa': 500362, 'slander': 773519, 'checkfacts': 174802, 'valuable lesson': 952037, 'all keyboard': 43314, 'keyboard warrior': 473536, 'warrior pay': 967370, 'pay r3m': 645064, 'r3m or': 695092, 'or retract': 616895, 'retract scare': 719739, 'scare for': 740874, 'for joburg': 322770, 'joburg dad': 466374, 'dad who': 224406, 'who accused': 988020, 'accused spar': 28960, 'spar of': 787454, 'of hiking': 584626, 'price lockdownsa': 675083, 'lockdownsa business': 500363, 'business socialmedia': 144395, 'socialmedia slander': 781093, 'slander legal': 773520, 'legal checkfacts': 485852, 'checkfacts process': 174803, 'process retail': 679953, 'retail consequence': 717982, 'valuable lesson to': 952038, 'lesson to all': 486512, 'to all keyboard': 900260, 'all keyboard warrior': 43315, 'keyboard warrior pay': 473537, 'warrior pay r3m': 967371, 'pay r3m or': 645065, 'r3m or retract': 695093, 'or retract scare': 616896, 'retract scare for': 719740, 'scare for joburg': 740876, 'for joburg dad': 322771, 'joburg dad who': 466375, 'dad who accused': 224407, 'who accused spar': 988021, 'accused spar of': 28961, 'spar of hiking': 787455, 'of hiking price': 584627, 'hiking price lockdownsa': 396399, 'price lockdownsa business': 675084, 'lockdownsa business socialmedia': 500364, 'business socialmedia slander': 144397, 'socialmedia slander legal': 781094, 'slander legal checkfacts': 773521, 'legal checkfacts process': 485853, 'checkfacts process retail': 174804, 'process retail consequence': 679954, 'vision': 959148, 'new vision': 559839, 'vision for': 959149, 'for district': 320775, 'district 11': 248343, '11 in': 2539, 'must follow': 546664, 'rule and': 727185, 'and guideline': 64046, 'together stayhome': 920953, 'stayhome and': 797941, 'selfish in': 748146, 'supermarket let': 821293, 'pandemic community': 635177, 'not immune': 570065, 'immune no': 417327, 'new vision for': 559840, 'vision for district': 959150, 'for district 11': 320776, 'district 11 in': 248344, '11 in these': 2541, 'crisis we must': 218350, 'we must follow': 972416, 'must follow all': 546665, 'follow all the': 312348, 'all the rule': 44894, 'the rule and': 866039, 'rule and guideline': 727187, 'and guideline to': 64047, 'guideline to overcome': 368485, 'to overcome this': 911300, 'overcome this crisis': 631136, 'this crisis together': 887101, 'crisis together stayhome': 218261, 'together stayhome and': 920954, 'stayhome and do': 797942, 'be selfish in': 117061, 'selfish in the': 748147, 'the supermarket let': 868671, 'supermarket let fight': 821294, 'this pandemic community': 889379, 'pandemic community we': 635178, 'are not immune': 88393, 'not immune no': 570067, 'immune no one': 417328, 'queue my': 693998, 'in right': 427512, 'elderly store': 270897, 'all doing': 42605, 'best public': 127873, 'public trying': 688442, 'done scary': 254998, 'supermarket queue my': 822126, 'queue my friend': 693999, 'my friend in': 548436, 'friend in right': 333656, 'in right now': 427513, 'right now see': 722129, 'now see the': 575752, 'see the ambulance': 745808, 'the ambulance crew': 848620, 'ambulance crew and': 51325, 'crew and elderly': 216679, 'and elderly store': 61994, 'elderly store all': 270898, 'store all doing': 806132, 'all doing their': 42612, 'doing their best': 252733, 'their best public': 872602, 'best public trying': 127874, 'public trying to': 688443, 'buy essential what': 148580, 'essential what can': 281782, 'what can be': 981167, 'be done scary': 114567, 'done scary time': 254999, 'ohiosafeohioworking': 596566, 'product line': 681378, 'from is': 336091, 'only designed': 610327, 'bacteria but': 107663, 'but cold': 145425, 'cold and': 185732, 'and flu': 62998, 'flu virus': 311491, 'virus well': 959025, 'well microban': 978397, 'microban 24': 530433, '24 is': 15638, 'is home': 448524, 'home sanitizer': 402012, 'is formulated': 447913, 'formulated to': 329744, 'kill some': 474493, 'some form': 782899, 'human ohiosafeohioworking': 410577, 'new product line': 559360, 'product line from': 681380, 'line from is': 493124, 'from is not': 336098, 'not only designed': 570786, 'only designed to': 610328, 'designed to kill': 238359, 'to kill bacteria': 908920, 'kill bacteria but': 474349, 'bacteria but cold': 107665, 'but cold and': 145426, 'cold and flu': 185734, 'and flu virus': 63000, 'flu virus well': 311493, 'virus well microban': 959026, 'well microban 24': 978398, 'microban 24 is': 530434, '24 is home': 15639, 'is home sanitizer': 448527, 'home sanitizer that': 402013, 'sanitizer that is': 735861, 'that is formulated': 844587, 'is formulated to': 447914, 'formulated to kill': 329745, 'to kill some': 908940, 'kill some form': 474494, 'some form of': 782900, 'form of the': 329546, 'the human ohiosafeohioworking': 857720, 'fraud watch': 331374, 'watch group': 968430, 'group update': 366949, 'update ha': 947009, 'been released': 121811, 'released you': 709106, 'access it': 28152, 'our latest covid': 623657, '19 fraud watch': 7104, 'fraud watch group': 331375, 'watch group update': 968432, 'group update ha': 366950, 'update ha now': 947011, 'now been released': 574229, 'been released you': 121815, 'released you can': 709107, 'can access it': 157353, 'access it here': 28153, 'honeymoon': 403185, 'only positive': 611001, 'positive so': 665431, 'far about': 298689, 'are drastically': 85989, 'drastically dropping': 258434, 'dropping for': 260690, 'for hotel': 322377, 'hotel flight': 405145, 'flight in': 310495, 'europe if': 283454, 'if my': 414429, 'my honeymoon': 548706, 'honeymoon happens': 403186, 'happens leave': 377488, 'leave july': 484852, 'july 3rd': 467808, '3rd then': 18448, 'then we': 877721, 'be saving': 116997, 'saving over': 737943, 'worth the': 1011444, 'risk honeymoon': 723606, 'honeymoon wedding': 403188, 'only positive so': 611004, 'positive so far': 665432, 'so far about': 777007, 'far about covid': 298690, 'that the price': 846809, 'price are drastically': 672656, 'are drastically dropping': 85990, 'drastically dropping for': 258435, 'dropping for hotel': 260691, 'for hotel flight': 322380, 'hotel flight in': 405147, 'flight in europe': 310496, 'in europe if': 422639, 'europe if my': 283455, 'if my honeymoon': 414435, 'my honeymoon happens': 548707, 'honeymoon happens leave': 403187, 'happens leave july': 377489, 'leave july 3rd': 484853, 'july 3rd then': 467809, '3rd then we': 18449, 'then we will': 877733, 'will be saving': 992662, 'be saving over': 116999, 'saving over 500': 737944, 'over 500 100': 629864, '500 100 but': 19937, '100 but is': 1851, 'but is it': 146076, 'is it worth': 449079, 'it worth the': 462574, 'worth the risk': 1011447, 'the risk honeymoon': 865875, 'risk honeymoon wedding': 723607, 'loaded': 497306, 'qui': 694256, 'sonne': 785539, 'cloche': 182392, '60 minute': 20961, 'minute current': 533755, 'current program': 221324, 'program tv': 683310, 'tv add': 936074, 'add we': 31530, 'to starve': 915242, 'starve because': 795192, 'because charity': 118996, 'charity are': 173566, 'even getting': 284112, 'getting enough': 348952, 'demand loaded': 235810, 'loaded question': 497315, 'question how': 693614, '19 last': 8271, 'last fear': 480207, 'fear fear': 301115, 'fear qui': 301298, 'qui sonne': 694257, 'sonne la': 785540, 'la cloche': 478145, '60 minute current': 20962, 'minute current program': 533756, 'current program tv': 221325, 'program tv add': 683311, 'tv add we': 936075, 'add we are': 31531, 'are all going': 84308, 'going to starve': 355719, 'to starve because': 915243, 'starve because charity': 795193, 'because charity are': 118997, 'charity are not': 173568, 'not even getting': 569248, 'even getting enough': 284113, 'getting enough food': 348953, 'enough food because': 277386, 'because of huge': 119354, 'of huge demand': 584859, 'huge demand loaded': 410022, 'demand loaded question': 235811, 'loaded question how': 497316, 'question how long': 693617, 'long will covid': 501852, 'covid 19 last': 213334, '19 last fear': 8272, 'last fear fear': 480208, 'fear fear qui': 301116, 'fear qui sonne': 301299, 'qui sonne la': 694258, 'sonne la cloche': 785541, '877': 23029, '764': 22264, '2535': 16058, 'touching without': 926750, 'without sanitizing': 1002898, 'sanitizing guess': 736475, 'top 10': 925512, '10 surface': 1691, 'surface to': 828080, 'sanitizing during': 736468, 'outbreak 30': 627942, '30 45': 16942, '45 877': 19061, '877 764': 23032, '764 2535': 22265, '2535 sanitizer': 16059, 'should you avoid': 766670, 'you avoid touching': 1017356, 'avoid touching without': 105358, 'touching without sanitizing': 926751, 'without sanitizing guess': 1002900, 'sanitizing guess the': 736476, 'guess the top': 368058, 'the top 10': 869770, 'top 10 surface': 925515, '10 surface to': 1692, 'surface to avoid': 828081, 'to avoid touching': 900952, 'without sanitizing during': 1002899, 'sanitizing during the': 736469, 'coronavirus outbreak 30': 206368, 'outbreak 30 45': 627943, '30 45 877': 16943, '45 877 764': 19062, '877 764 2535': 23033, '764 2535 sanitizer': 22266, 'linus': 494020, 'apologizing': 81648, 'quick shout': 694380, 'to linus': 909319, 'linus eats': 494021, 'eats prescription': 266382, 'prescription cat': 670497, 'outbreak covid': 628149, '19 ve': 11735, 'been super': 122103, 'super scared': 818577, 'his food': 397443, 'they sent': 883320, 'sent me': 750770, 'email apologizing': 272122, 'apologizing that': 81649, 'order would': 618790, 'would take': 1012306, 'longer but': 501948, 'still got': 800601, 'guy rock': 369129, 'just quick shout': 469538, 'quick shout out': 694381, 'out to linus': 627658, 'to linus eats': 909320, 'linus eats prescription': 494022, 'eats prescription cat': 266383, 'prescription cat food': 670498, 'food and and': 313174, 'and and with': 58139, 'and with the': 75780, 'the outbreak covid': 862609, 'outbreak covid 19': 628150, 'covid 19 ve': 214019, '19 ve been': 11736, 've been super': 952937, 'been super scared': 122104, 'super scared and': 818578, 'scared and trying': 740943, 'up on his': 945578, 'on his food': 601320, 'his food they': 397445, 'food they sent': 317177, 'they sent me': 883321, 'sent me an': 750771, 'an email apologizing': 55654, 'email apologizing that': 272123, 'apologizing that my': 81650, 'that my order': 845276, 'my order would': 549617, 'order would take': 618794, 'would take longer': 1012311, 'take longer but': 832286, 'longer but still': 501949, 'but still got': 147166, 'still got my': 800603, 'got my order': 358730, 'my order in': 549612, 'order in day': 618311, 'in day you': 422027, 'day you guy': 228822, 'you guy rock': 1018972, 'the partnership': 863318, 'partnership will': 642945, 'will allow': 992239, 'allow consumer': 45934, 'use to': 949750, 'buy different': 148531, 'different combo': 241924, 'combo pack': 187161, 'such beverage': 816365, 'beverage and': 128984, 'item offered': 463497, 'offered by': 594911, 'the partnership will': 863319, 'partnership will allow': 642946, 'will allow consumer': 992242, 'allow consumer to': 45936, 'consumer to use': 199334, 'to use to': 918076, 'use to buy': 949753, 'to buy different': 902215, 'buy different combo': 148532, 'different combo pack': 241925, 'combo pack of': 187162, 'pack of essential': 633096, 'essential product such': 281425, 'product such beverage': 681652, 'such beverage and': 816366, 'beverage and food': 128986, 'and food item': 63064, 'food item offered': 315220, 'item offered by': 463498, 'offered by consumer': 594912, 'by consumer product': 152192, 'use toilet': 949765, 'paper zero': 641140, 'zero waste': 1027514, 'waste family': 968117, 'via toiletpaper': 956330, 'toiletpaper looroll': 922205, 'looroll toiletroll': 503179, 'not use toilet': 572363, 'use toilet paper': 949766, 'toilet paper zero': 921539, 'paper zero waste': 641141, 'zero waste family': 1027515, 'waste family of': 968118, 'family of via': 298108, 'of via toiletpaper': 592794, 'via toiletpaper looroll': 956331, 'toiletpaper looroll toiletroll': 922207, 'austerity': 103155, 'will reduce': 994606, 'reduce it': 705863, 'budget in': 141800, 'first austerity': 308520, 'austerity measure': 103162, 'measure the': 525364, 'economy reel': 268174, 'reel from': 706438, 'the fast': 854962, 'fast spreading': 300043, 'spreading and': 790920, 'and crashing': 60692, 'crashing oil': 215118, 'arabia will reduce': 83973, 'will reduce it': 994607, 'reduce it 2020': 705864, 'it 2020 budget': 456195, '2020 budget in': 14194, 'budget in it': 141801, 'in it first': 424246, 'it first austerity': 458022, 'first austerity measure': 308521, 'austerity measure the': 103163, 'measure the economy': 525366, 'the economy reel': 854012, 'economy reel from': 268175, 'reel from the': 706439, 'from the fast': 337692, 'the fast spreading': 854967, 'fast spreading and': 300044, 'spreading and crashing': 790921, 'and crashing oil': 60694, 'crashing oil price': 215119, 'turner join': 935898, 'join grocery': 466723, 'chain representative': 171044, 'representative to': 712919, 'to update': 917977, 'update public': 947182, 'public on': 688195, 'turner join grocery': 935899, 'join grocery chain': 466724, 'grocery chain representative': 364369, 'chain representative to': 171045, 'representative to update': 712923, 'to update public': 917979, 'update public on': 947183, 'public on supply': 688196, 'on supply and': 603816, 'supply and store': 824753, 'and store hour': 72507, 'rancher': 696531, 'and gratitude': 63928, 'farmer rancher': 299483, 'rancher truck': 696547, 'driver grocer': 259585, 'grocer and': 364090, 'who ensure': 988700, 'ensure our': 277997, 'supply remains': 825759, 'one 19': 605848, 'you and gratitude': 1016990, 'and gratitude to': 63930, 'gratitude to american': 362397, 'to american farmer': 900416, 'american farmer rancher': 51972, 'farmer rancher truck': 299487, 'rancher truck driver': 696548, 'truck driver grocer': 932780, 'driver grocer and': 259586, 'grocer and grocer': 364093, 'and grocer and': 63971, 'grocer and many': 364094, 'many more who': 514324, 'more who ensure': 540973, 'who ensure our': 988701, 'ensure our food': 277999, 'food supply remains': 316986, 'supply remains strong': 825761, 'remains strong we': 710068, 'are one 19': 88746, 'refinery': 706585, 'insight europe': 439529, 'crash 32': 214948, '32 of': 17684, 'of refinery': 588869, 'refinery capacity': 706586, 'capacity restricted': 162568, 'restricted offline': 717154, 'offline icis': 596041, 'price refinery': 676137, 'refinery oil': 706590, 'oil ethylene': 596770, 'ethylene propylene': 283145, 'propylene benzene': 684602, 'insight europe chemical': 439530, 'chemical price crash': 175374, 'price crash 32': 673314, 'crash 32 of': 214949, '32 of refinery': 17685, 'of refinery capacity': 588870, 'refinery capacity restricted': 706587, 'capacity restricted offline': 162569, 'restricted offline icis': 717155, 'offline icis europe': 596042, 'icis europe chemical': 412754, 'chemical price refinery': 175375, 'price refinery oil': 676138, 'refinery oil ethylene': 706591, 'oil ethylene propylene': 596771, 'ethylene propylene benzene': 283146, 'devised': 239978, 'hike amidst': 396194, 'amidst is': 52803, 'is crime': 446924, 'crime we': 216809, 'have devised': 380255, 'devised plan': 239979, 'plan the': 658246, 'business association': 143405, 'association community': 96951, 'community leader': 189958, 'leader municipality': 483491, 'municipality to': 546107, 'help alleviate': 389327, 'alleviate burden': 45805, 'burden am': 142730, 'am glad': 50080, 'our necessary': 623993, 'necessary step': 554091, 'step have': 799552, 'already shown': 47654, 'shown result': 767607, 'result within': 717659, 'price hike amidst': 674526, 'hike amidst is': 396195, 'amidst is crime': 52804, 'is crime we': 446926, 'crime we have': 216810, 'we have devised': 971799, 'have devised plan': 380256, 'devised plan the': 239980, 'plan the help': 658248, 'help of local': 390160, 'of local business': 585926, 'local business association': 497752, 'business association community': 143406, 'association community leader': 96952, 'community leader municipality': 189960, 'leader municipality to': 483492, 'municipality to control': 546108, 'control price and': 202111, 'price and help': 672432, 'and help alleviate': 64441, 'help alleviate burden': 389328, 'alleviate burden am': 45806, 'burden am glad': 142731, 'am glad to': 50082, 'see our necessary': 745530, 'our necessary step': 623994, 'necessary step have': 554093, 'step have already': 799553, 'have already shown': 379202, 'already shown result': 47655, 'shown result within': 767608, 'result within day': 717660, 'within day afghanistan': 1002344, 'duh': 262058, 'panadol': 634672, 'cotton': 208402, 'dye': 263759, 'in popular': 426836, 'popular health': 664556, 'health beauty': 386186, 'australia and': 103222, 'order of': 618434, '19 happened': 7427, 'happened hand': 377247, 'sanitiser duh': 733943, 'duh panadol': 262059, 'panadol paracetamol': 634673, 'paracetamol thermometer': 641272, 'thermometer cotton': 879512, 'cotton ball': 208403, 'ball hand': 109055, 'wash lock': 967517, 'down happened': 256817, 'happened hair': 377245, 'hair dye': 373978, 'dye and': 263760, 'work in popular': 1005336, 'in popular health': 426837, 'popular health beauty': 664557, 'health beauty retail': 386187, 'beauty retail store': 118781, 'store in australia': 808269, 'in australia and': 420595, 'australia and this': 103225, 'is the order': 452880, 'the order of': 862452, 'order of item': 618444, 'of item that': 585491, 'item that were': 463703, 'that were sold': 847446, 'sold out since': 781747, 'out since covid': 627196, 'covid 19 happened': 213183, '19 happened hand': 7428, 'happened hand sanitiser': 377248, 'hand sanitiser duh': 375227, 'sanitiser duh panadol': 733944, 'duh panadol paracetamol': 262060, 'panadol paracetamol thermometer': 634674, 'paracetamol thermometer cotton': 641273, 'thermometer cotton ball': 879513, 'cotton ball hand': 208404, 'ball hand wash': 109056, 'hand wash lock': 375929, 'wash lock down': 967518, 'lock down happened': 499034, 'down happened hair': 256818, 'happened hair dye': 377246, 'hair dye and': 373979, 'dye and bleach': 263761, 'nyc it': 578004, 'on real': 603086, 'estate begin': 282104, 'coronavirus spread in': 206804, 'spread in nyc': 790578, 'in nyc it': 426024, 'nyc it impact': 578005, 'impact on real': 417883, 'on real estate': 603089, 'real estate begin': 701138, 'estate begin to': 282105, 'begin to take': 123596, 'to take shape': 916233, 'predictably': 669596, 'marijuana': 515711, 'jobstobedone': 466370, 'predictably consumer': 669597, 'preference have': 669782, 'have shifted': 382509, 'shifted during': 758486, 'pandemic retail': 636356, 'retail travel': 718812, 'leisure are': 486137, 'down while': 257471, 'while demand': 986744, 'grocery gun': 364577, 'and marijuana': 66696, 'marijuana skyrocket': 515721, 'skyrocket the': 773334, 'prevailing jobstobedone': 671549, 'jobstobedone are': 466371, 'feeling safe': 303049, 'being entertained': 125114, 'entertained at': 278524, 'predictably consumer preference': 669598, 'consumer preference have': 198407, 'preference have shifted': 669783, 'have shifted during': 382510, 'shifted during the': 758487, 'the pandemic retail': 863081, 'pandemic retail travel': 636361, 'retail travel and': 718813, 'and leisure are': 66092, 'leisure are down': 486138, 'are down while': 85986, 'down while demand': 257473, 'while demand for': 986745, 'for grocery gun': 322032, 'grocery gun and': 364578, 'gun and marijuana': 368687, 'and marijuana skyrocket': 66697, 'marijuana skyrocket the': 515722, 'skyrocket the prevailing': 773335, 'the prevailing jobstobedone': 864306, 'prevailing jobstobedone are': 671550, 'jobstobedone are feeling': 466372, 'are feeling safe': 86519, 'feeling safe and': 303050, 'safe and being': 729435, 'and being entertained': 58859, 'being entertained at': 125115, 'entertained at home': 278525, 'whiplash': 987734, 'halfway': 374304, 'after having': 35757, 'having kid': 384133, 'kid grocery': 473970, 'mom superpower': 535806, 'superpower she': 824312, 'through those': 894858, 'those aisle': 891782, 'so fast': 777076, 'fast it': 299998, 'you whiplash': 1022298, 'whiplash today': 987735, 'today teaching': 920245, 'teaching her': 835553, 'online hour': 608377, 're halfway': 698778, 'halfway through': 374305, 'after having kid': 35759, 'having kid grocery': 384134, 'kid grocery shopping': 473971, 'shopping in person': 762982, 'in person is': 426630, 'person is my': 652503, 'is my mom': 449802, 'my mom superpower': 549282, 'mom superpower she': 535807, 'superpower she can': 824313, 'she can go': 755922, 'can go through': 158516, 'go through those': 354256, 'through those aisle': 894859, 'those aisle so': 891783, 'aisle so fast': 40371, 'so fast it': 777077, 'fast it will': 300001, 'it will give': 462397, 'will give you': 993536, 'give you whiplash': 350875, 'you whiplash today': 1022299, 'whiplash today teaching': 987736, 'today teaching her': 920246, 'teaching her to': 835554, 'her to shop': 392471, 'shop online hour': 760573, 'online hour and': 608378, 'hour and we': 405424, 'we re halfway': 972888, 're halfway through': 698779, 'halfway through the': 374306, 'through the list': 894747, 'suspend any': 829549, 'new legislation': 559018, 'legislation which': 486000, 'which would': 986512, 'store sector': 810013, 'call on to': 156049, 'on to suspend': 604765, 'to suspend any': 916066, 'suspend any new': 829550, 'any new legislation': 79510, 'new legislation which': 559019, 'legislation which would': 486001, 'which would have': 986517, 'would have an': 1011866, 'on the convenience': 604037, 'convenience store sector': 202356, 'store sector in': 810014, 'sector in scotland': 744235, '996': 23930, '514': 20220, '11 only': 2570, 'only killed': 610685, 'killed 996': 474561, '996 people': 23931, 'killing more': 474696, 'more 514': 538485, '514 dead': 20221, 'dead restaurant': 229169, 'closed city': 183043, 'closed country': 183057, 'are crashing': 85607, 'crashing market': 215116, 'paper water': 641060, 'no end': 564116, 'sight store': 769058, '11 only killed': 2571, 'only killed 996': 610686, 'killed 996 people': 474562, '996 people but': 23932, 'people but is': 647318, 'but is killing': 146077, 'is killing more': 449207, 'killing more 514': 474697, 'more 514 dead': 538486, '514 dead restaurant': 20222, 'dead restaurant and': 229170, 'restaurant and store': 716301, 'and store are': 72501, 'are closed school': 85364, 'closed school are': 183321, 'are closed city': 85334, 'closed city are': 183044, 'city are closed': 179058, 'are closed country': 85336, 'closed country are': 183058, 'country are shut': 210480, 'are shut down': 90090, 'shut down stock': 767853, 'down stock market': 257213, 'stock market are': 802379, 'market are crashing': 516016, 'are crashing market': 85608, 'crashing market are': 215117, 'market are running': 516029, 'toilet paper water': 921518, 'paper water and': 641061, 'water and food': 968862, 'and food with': 63108, 'with no end': 999747, 'no end in': 564118, 'in sight store': 427948, 'sight store now': 769059, 'beggar': 123469, 'autoimmune': 103930, 'pm me': 661934, 'be beggar': 113823, 'beggar but': 123473, 'but really': 146897, 'an autoimmune': 55485, 'autoimmune disease': 103931, 'and cant': 59527, 'cant leave': 162318, 'house im': 406350, 'im running': 416574, 'family cant': 297688, 'cant afford': 162261, 'more my': 539820, 'probably be': 679214, 'be raised': 116672, 'raised until': 696054, 'thing clear': 884237, 'clear up': 181378, 'pm me not': 661935, 'to be beggar': 901127, 'be beggar but': 113824, 'beggar but really': 123474, 'but really need': 146899, 'need the in': 555749, 'the in this': 858020, 'this pandemic have': 889392, 'pandemic have an': 635588, 'have an autoimmune': 379242, 'an autoimmune disease': 55486, 'autoimmune disease and': 103932, 'disease and cant': 245084, 'and cant leave': 59529, 'cant leave the': 162319, 'the house im': 857614, 'house im running': 406351, 'im running out': 416575, 'food and my': 313288, 'my family cant': 548189, 'family cant afford': 297689, 'cant afford to': 162264, 'buy more my': 148973, 'more my price': 539821, 'price will probably': 677579, 'will probably be': 994461, 'probably be raised': 679217, 'be raised until': 116673, 'raised until this': 696055, 'until this covid': 943899, '19 thing clear': 11323, 'thing clear up': 884238, 'repetitive': 711572, 'on man': 601975, 'man have': 512092, 'you shown': 1021240, 'shown chart': 767580, '2020 this': 14653, 'not chart': 568746, 'chart pattern': 173846, 'pattern it': 644480, 'that occurred': 845438, 'occurred due': 579040, 'price classic': 673137, 'classic bullshit': 180315, 'bullshit tech': 142513, 'tech analysis': 836032, 'analysis is': 57057, 'is repetitive': 451431, 'come on man': 187440, 'on man have': 601976, 'man have you': 512093, 'have you shown': 383690, 'you shown chart': 1021241, 'shown chart for': 767581, 'chart for march': 173829, 'for march 2020': 323245, 'march 2020 this': 515166, '2020 this is': 14655, 'is not chart': 450043, 'not chart pattern': 568747, 'chart pattern it': 173847, 'pattern it is': 644481, 'is the crisis': 452759, 'the crisis that': 852459, 'crisis that occurred': 218152, 'that occurred due': 845439, 'occurred due to': 579041, 'oil price classic': 597076, 'price classic bullshit': 673138, 'classic bullshit tech': 180316, 'bullshit tech analysis': 142514, 'tech analysis is': 836033, 'analysis is repetitive': 57058, 'legit nothing': 486039, 'got good': 358585, 'good delivery': 356966, 'slot but': 774152, 'but hardly': 145859, 'buyer coronacrisis': 149616, 'legit nothing on': 486040, 'nothing on the': 573128, 'on the online': 604261, 'the online delivery': 862269, 'online delivery shop': 608091, 'delivery shop on': 234489, 'shop on and': 760542, 'on and ve': 599380, 'and ve got': 74849, 've got good': 953178, 'got good delivery': 358586, 'good delivery slot': 356967, 'delivery slot but': 234513, 'slot but hardly': 774153, 'but hardly any': 145860, 'hardly any food': 378249, 'any food because': 79234, 'of these panic': 591845, 'these panic buyer': 880389, 'panic buyer coronacrisis': 637565, 'cld': 180439, 'solution resource': 782069, 'for distribution': 320770, 'be added': 113481, 'added at': 31544, 'when resource': 983939, 'resource cld': 714747, 'cld become': 180440, 'become thin': 120168, 'thin the': 884070, 'state controlled': 795485, 'also good': 48279, 'move can': 543628, 'can figure': 158300, 'yes that could': 1015543, 'that could be': 843339, 'be the solution': 117659, 'the solution resource': 867466, 'solution resource for': 782070, 'resource for distribution': 714780, 'for distribution should': 320773, 'distribution should be': 248215, 'should be added': 765543, 'be added at': 113482, 'added at time': 31546, 'time when resource': 898302, 'when resource cld': 983940, 'resource cld become': 714748, 'cld become thin': 180441, 'become thin the': 120169, 'thin the state': 884071, 'the state controlled': 867759, 'state controlled the': 795488, 'controlled the price': 202261, 'the price which': 864437, 'which is also': 985981, 'is also good': 445557, 'also good move': 48281, 'good move can': 357420, 'move can figure': 543629, 'demystdata': 236905, 'datasets': 226567, 'geolocation': 345962, 'externaldata': 293354, 'at demystdata': 98420, 'demystdata we': 236906, 'to multiple': 910346, 'multiple datasets': 545742, 'datasets and': 226568, 'and data': 60955, 'data product': 226367, 'that track': 847109, 'track consumer': 928175, 'behavior demographic': 123993, 'demographic profile': 236793, 'profile and': 682604, 'and geolocation': 63543, 'geolocation detail': 345963, 'help understand': 390828, 'understand which': 940810, 'impacted the': 418159, 'the hardest': 857108, 'hardest pandemic': 378225, 'pandemic externaldata': 635417, 'at demystdata we': 98421, 'demystdata we have': 236907, 'we have access': 971746, 'access to multiple': 28259, 'to multiple datasets': 910347, 'multiple datasets and': 545743, 'datasets and data': 226569, 'and data product': 60956, 'data product that': 226368, 'product that track': 681702, 'that track consumer': 847110, 'track consumer behavior': 928176, 'consumer behavior demographic': 196464, 'behavior demographic profile': 123994, 'demographic profile and': 236794, 'profile and geolocation': 682606, 'and geolocation detail': 63544, 'geolocation detail to': 345964, 'detail to help': 239262, 'to help understand': 907658, 'help understand which': 390831, 'understand which sector': 940811, 'sector are and': 744094, 'be impacted the': 115372, 'impacted the hardest': 418162, 'the hardest pandemic': 857112, 'hardest pandemic externaldata': 378226, 'unsafe': 943383, 'store unsafe': 811005, 'unsafe too': 943401, 'people too': 649984, 'grocery store unsafe': 365901, 'store unsafe too': 811006, 'unsafe too many': 943402, 'many people too': 514541, 'people too close': 649985, 'fart': 299726, 'thanos': 842408, 'avenger': 104757, 'funnymemes': 341822, 'sarcasm': 736742, 'dank': 225860, 'dankmemes': 225878, 'tuesdathoughts': 935097, 'them bath': 875460, 'bath and': 112594, 'and body': 59041, 'body work': 133913, 'work sanitizers': 1005687, 'sanitizers smell': 736397, 'like unicorn': 491696, 'unicorn fart': 941730, 'fart stayhome': 299729, 'staysafe sanitizer': 798874, 'sanitizer thanos': 735853, 'thanos avenger': 842409, 'avenger funnymemes': 104764, 'funnymemes sarcasm': 341826, 'sarcasm dank': 736743, 'dank dankmemes': 225861, 'dankmemes tuesdathoughts': 225887, 'them bath and': 875461, 'bath and body': 112595, 'and body work': 59043, 'body work sanitizers': 133914, 'work sanitizers smell': 1005688, 'sanitizers smell like': 736398, 'smell like unicorn': 775610, 'like unicorn fart': 491697, 'unicorn fart stayhome': 941731, 'fart stayhome staysafe': 299730, 'stayhome staysafe sanitizer': 798171, 'staysafe sanitizer thanos': 798876, 'sanitizer thanos avenger': 735854, 'thanos avenger funnymemes': 842411, 'avenger funnymemes sarcasm': 104765, 'funnymemes sarcasm dank': 341827, 'sarcasm dank dankmemes': 736744, 'dank dankmemes tuesdathoughts': 225862, 'advisor': 33718, 'johnson advisor': 466578, 'advisor on': 33735, 'the insurance': 858332, 'insurance side': 440812, 'side should': 768882, 'get rush': 347942, 'business of': 144115, 'thing stock': 884768, 'market take': 517155, 'take biggest': 831992, 'biggest drop': 130214, 'while insurance': 986958, 'insurance is': 440761, 'still steady': 801228, 'steady along': 799113, 'that allow': 842584, 'allow investor': 45985, 'johnson advisor on': 466579, 'advisor on the': 33736, 'on the insurance': 604184, 'the insurance side': 858333, 'insurance side should': 440813, 'side should get': 768883, 'should get rush': 766035, 'get rush of': 347943, 'rush of business': 728314, 'of business of': 580962, 'business of this': 144122, '19 thing stock': 11328, 'thing stock market': 884769, 'stock market take': 802440, 'market take biggest': 517156, 'take biggest drop': 831993, 'biggest drop in': 130215, 'drop in long': 260260, 'long time while': 501787, 'time while insurance': 898327, 'while insurance is': 986959, 'insurance is still': 440762, 'is still steady': 452313, 'still steady along': 801229, 'steady along with': 799114, 'with the other': 1001417, 'the other benefit': 862513, 'other benefit that': 619889, 'benefit that allow': 127099, 'that allow investor': 842585, 'allow investor to': 45986, 'investor to take': 444221, 'geopolitically': 345978, 'distant': 247674, 'week market': 976508, 'been volatile': 122336, 'volatile due': 960041, 'both covid': 135888, 'the geopolitically': 856219, 'geopolitically driven': 345979, 'driven collapse': 259292, 'price ultimately': 677169, 'ultimately we': 939164, 'will recover': 994599, 'this recent': 889831, 'recent correction': 703846, 'correction will': 207586, 'will one': 994316, 'day be': 227350, 'be distant': 114496, 'distant memory': 247681, 'few week market': 304153, 'week market have': 976509, 'market have been': 516497, 'have been volatile': 379739, 'been volatile due': 122337, 'volatile due to': 960042, 'impact of both': 417753, 'of both covid': 580793, 'both covid 19': 135889, '19 fear and': 6952, 'fear and the': 301040, 'and the geopolitically': 73393, 'the geopolitically driven': 856220, 'geopolitically driven collapse': 345980, 'driven collapse in': 259293, 'oil price ultimately': 597303, 'price ultimately we': 677171, 'ultimately we will': 939165, 'we will recover': 973897, 'will recover from': 994601, 'recover from this': 705183, 'from this crisis': 337990, 'crisis and this': 217057, 'and this recent': 74008, 'this recent correction': 889832, 'recent correction will': 703847, 'correction will one': 207587, 'will one day': 994317, 'one day be': 606149, 'day be distant': 227351, 'be distant memory': 114497, 'unravelled': 943281, 'revisit': 720664, 'piece wa': 656377, 'wa written': 963747, 'written in': 1012960, 'january 2008': 464621, '2008 by': 13649, 'by few': 152576, 'before massive': 122940, 'massive financial': 520032, 'crisis unravelled': 218296, 'unravelled across': 943282, 'world good': 1009594, 'to revisit': 913502, 'revisit this': 720667, 'this piece wa': 889591, 'piece wa written': 656378, 'wa written in': 963748, 'written in january': 1012961, 'in january 2008': 424353, 'january 2008 by': 464622, '2008 by few': 13650, 'by few month': 152577, 'few month before': 303926, 'month before massive': 537614, 'before massive financial': 122941, 'massive financial crisis': 520033, 'financial crisis unravelled': 306386, 'crisis unravelled across': 218297, 'unravelled across the': 943283, 'the world good': 871881, 'world good time': 1009595, 'time to revisit': 898055, 'to revisit this': 913503, 'paris': 641825, 'koronavirus': 477546, 'thephotohour': 877877, 'to stage': 915143, 'the now': 861933, 'work go': 1005211, 'health reason': 386782, 'reason exercise': 702893, 'exercise bit': 290031, 'bit or': 131670, 'or walk': 617710, 'dog paris': 252152, 'paris photography': 641832, 'photography koronavirus': 655292, 'koronavirus coronaoutbreak': 477547, 'coronaoutbreak socialdistancing': 205133, 'socialdistancing thephotohour': 780800, 'france ha moved': 331002, 'moved to stage': 543841, 'to stage of': 915144, 'stage of the': 793208, 'of the now': 591280, 'the now you': 861944, 'to work go': 918727, 'work go grocery': 1005212, 'shopping and for': 761985, 'and for health': 63140, 'for health reason': 322153, 'health reason exercise': 386783, 'reason exercise bit': 702894, 'exercise bit or': 290032, 'bit or walk': 131672, 'or walk the': 617712, 'walk the dog': 964879, 'the dog paris': 853500, 'dog paris photography': 252153, 'paris photography koronavirus': 641833, 'photography koronavirus coronaoutbreak': 655293, 'koronavirus coronaoutbreak socialdistancing': 477548, 'coronaoutbreak socialdistancing thephotohour': 205134, 'had held': 373172, 'he had held': 385053, 'had held on': 373173, 'whyt': 991624, 'gotdamit': 359050, 'law say': 482392, 'say ppl': 739064, 'wash and': 967431, 'before touching': 123247, 'too whyt': 925167, 'whyt ppl': 991625, 'ppl wash': 668364, 'hand gotdamit': 374998, 'gotdamit or': 359051, 'or ghana': 615443, 'ghana ppl': 349580, 'ppl may': 668279, 'may ask': 520932, 'ghana law say': 349575, 'law say ppl': 482393, 'say ppl must': 739065, 'must wash and': 546987, 'wash and sanitize': 967434, 'and sanitize your': 70851, 'hand before touching': 374833, 'before touching food': 123248, 'wypipo too whyt': 1013732, 'too whyt ppl': 925168, 'whyt ppl wash': 991626, 'ppl wash your': 668365, 'your hand gotdamit': 1024193, 'hand gotdamit or': 374999, 'gotdamit or ghana': 359052, 'or ghana ppl': 615444, 'ghana ppl may': 349581, 'ppl may ask': 668280, 'may ask you': 520933, 'you to leave': 1021798, 'polowczyk': 663925, 'asked by': 95723, 'by if': 152863, 'is sending': 451768, 'sending ppe': 750079, 'sector for': 744195, 'distribution polowczyk': 248194, 'polowczyk said': 663926, 'that normally': 845377, 'normally how': 567508, 'thing work': 885014, 'not here': 569947, 'when asked by': 983178, 'asked by if': 95724, 'by if the': 152864, 'government is sending': 360274, 'is sending ppe': 451772, 'sending ppe to': 750080, 'ppe to the': 668088, 'to the private': 916983, 'private sector for': 678978, 'sector for distribution': 744196, 'for distribution polowczyk': 320772, 'distribution polowczyk said': 248195, 'polowczyk said that': 663927, 'said that normally': 731410, 'that normally how': 845378, 'normally how thing': 567509, 'how thing work': 408941, 'thing work right': 885016, 'work right not': 1005677, 'right not here': 722008, 'not here to': 569951, 'here to disrupt': 393706, 'to disrupt supply': 904421, 'shopresponsibly': 764533, 'juststayhome': 470524, 'this break': 886611, 'heart it': 388309, 'so difficult': 776864, 'place please': 657659, 'shop responsibly': 760708, 'responsibly shopresponsibly': 716113, 'shopresponsibly juststayhome': 764534, 'juststayhome elderly': 470525, 'this break my': 886612, 'break my heart': 138771, 'my heart it': 548657, 'heart it must': 388310, 'be so difficult': 117254, 'so difficult for': 776865, 'difficult for her': 242222, 'for her to': 322237, 'her to get': 392460, 'first place please': 308869, 'place please shop': 657660, 'please shop responsibly': 660510, 'shop responsibly shopresponsibly': 760715, 'responsibly shopresponsibly juststayhome': 716114, 'shopresponsibly juststayhome elderly': 764535, 'open 19': 612004, 'in supermarket before': 428565, 'supermarket before it': 819348, 'before it open': 122891, 'it open 19': 460120, 'naa': 551333, 'breakfast serf': 138895, 'serf best': 751191, 'best on': 127804, 'on don': 600382, 'take ur': 832771, 'ur precaution': 948050, 'precaution today': 669392, 'today against': 919163, 'the taking': 869131, 'taking ur': 833655, 'washing ur': 967746, 'frequently under': 332882, 'water maintain': 969053, 'distance gm': 246725, 'gm naa': 353177, 'breakfast serf best': 138896, 'serf best on': 751192, 'best on don': 127805, 'on don forget': 600383, 'forget to take': 329334, 'to take ur': 916256, 'take ur precaution': 832772, 'ur precaution today': 948051, 'precaution today against': 669393, 'today against the': 919164, 'against the taking': 37680, 'the taking ur': 869132, 'taking ur hand': 833656, 'ur hand sanitizer': 948012, 'hand sanitizer washing': 375649, 'sanitizer washing ur': 736033, 'washing ur hand': 967747, 'ur hand frequently': 948011, 'hand frequently under': 374959, 'frequently under running': 332883, 'running water maintain': 728131, 'water maintain social': 969054, 'maintain social distance': 509032, 'social distance gm': 779505, 'distance gm naa': 246726, 'frontlines their': 338925, 'their just': 873748, 'temporary hour': 837640, 'hour pay': 405848, 'pay raise': 645066, 'raise from': 695851, 'from grocer': 335697, 'grocer for': 364130, 'employee dedication': 273762, 'dedication and': 231772, 'and hard': 64183, 'thank your local': 841852, 'the frontlines their': 855903, 'frontlines their just': 338926, 'their just announced': 873749, 'just announced temporary': 468195, 'announced temporary hour': 77055, 'temporary hour pay': 837641, 'hour pay raise': 405849, 'pay raise from': 645069, 'raise from grocer': 695852, 'from grocer for': 335698, 'grocer for the': 364131, 'the employee dedication': 854258, 'employee dedication and': 273763, 'dedication and hard': 231773, 'and hard work': 64188, 'only info': 610642, 'info people': 437551, 'must socially': 546892, 'distance keep': 246753, 'others safety': 621630, 'safety what': 730780, 'what today': 982470, 'saw while': 738322, 'while going': 986878, 'disappointed govt': 244101, 'doing everything': 252386, 'their safety': 874610, 'safety but': 730487, 'not responsible': 571352, 'responsible citizen': 716011, 'the only info': 862313, 'only info people': 610643, 'info people need': 437552, 'people need is': 648829, 'need is that': 555074, 'is that they': 452698, 'that they must': 846938, 'they must socially': 882709, 'must socially distance': 546893, 'socially distance keep': 781045, 'distance keep away': 246754, 'from people for': 336877, 'people for their': 647960, 'their own and': 874159, 'own and others': 631885, 'and others safety': 68459, 'others safety what': 621631, 'safety what today': 730782, 'what today saw': 982471, 'today saw while': 920146, 'saw while going': 738323, 'while going to': 986881, 'store wa really': 811121, 'wa really disappointed': 963062, 'really disappointed govt': 702117, 'disappointed govt is': 244102, 'govt is doing': 361163, 'is doing everything': 447272, 'doing everything for': 252388, 'everything for their': 287793, 'for their safety': 326868, 'their safety but': 874613, 'safety but they': 730488, 'are not responsible': 88458, 'not responsible citizen': 571353, 'occured': 579030, 'you clean': 1017964, 'clean your': 180692, 'supermarket item': 821187, 'item due': 463221, 'situation or': 772427, 'you done': 1018339, 'done it': 254905, 'it before': 456809, 'virus occured': 958544, 'occured or': 579031, 'or poll': 616634, 'poll poll': 663850, 'do you clean': 250619, 'you clean your': 1017966, 'clean your supermarket': 180699, 'your supermarket item': 1026050, 'supermarket item due': 821191, 'item due to': 463222, 'to the situation': 917068, 'the situation or': 867270, 'situation or have': 772428, 'or have you': 615592, 'have you done': 383664, 'you done it': 1018341, 'done it before': 254907, 'it before the': 456813, 'before the virus': 123196, 'the virus occured': 870867, 'virus occured or': 958545, 'occured or poll': 579032, 'or poll poll': 616635, 'mobilityrevolution': 535100, 'uber share': 937828, 'share are': 754928, 'up 33': 944157, '33 in': 17758, 'market like': 516686, 'like hong': 490449, 'kong sign': 477406, 'recovery uber': 705412, 'uber is': 937820, 'seeing growth': 746311, 'it eats': 457748, 'delivery business': 233754, 'business even': 143711, 'in hard': 423545, 'hit market': 398314, 'like seattle': 491145, 'seattle the': 743573, 'the mobilityrevolution': 860718, 'mobilityrevolution doe': 535101, 'stop with': 805276, 'uber share are': 937829, 'share are up': 754931, 'are up 33': 91352, 'up 33 in': 944158, '33 in some': 17759, 'some market like': 783259, 'market like hong': 516687, 'like hong kong': 490450, 'hong kong sign': 403208, 'kong sign of': 477407, 'sign of recovery': 769170, 'of recovery uber': 588849, 'recovery uber is': 705413, 'uber is seeing': 937821, 'is seeing growth': 451710, 'seeing growth in': 746313, 'growth in it': 367399, 'in it eats': 424240, 'it eats food': 457749, 'food delivery business': 314113, 'delivery business even': 233756, 'business even in': 143712, 'even in hard': 284238, 'in hard hit': 423546, 'hard hit market': 377939, 'hit market like': 398315, 'market like seattle': 516688, 'like seattle the': 491146, 'seattle the mobilityrevolution': 743574, 'the mobilityrevolution doe': 860719, 'mobilityrevolution doe not': 535102, 'doe not stop': 251533, 'not stop with': 571762, 'from face': 335377, 'related phishing': 708511, 'attack outline': 102140, 'outline way': 629100, 'that hacker': 844145, 'are exploiting': 86364, 'exploiting pandemic': 292437, 'from face mask': 335378, 'sanitizer scam to': 735708, 'scam to 19': 740417, 'to 19 related': 899550, '19 related phishing': 10060, 'related phishing attack': 708513, 'phishing attack outline': 654801, 'attack outline way': 102141, 'outline way that': 629101, 'way that hacker': 969922, 'that hacker and': 844146, 'scammer are exploiting': 740533, 'are exploiting pandemic': 86367, 'carter': 165465, 'child clothing': 176049, 'clothing chain': 184250, 'chain carter': 170582, 'carter furlough': 165466, 'furlough all': 341876, 'employee take': 274262, 'take additional': 831909, 'additional step': 31875, 'step due': 799530, 'via carter': 955849, 'furlough layoff': 341890, 'layoff economy': 482690, 'economy retail': 268180, 'child clothing chain': 176050, 'clothing chain carter': 184251, 'chain carter furlough': 170583, 'carter furlough all': 165467, 'furlough all store': 341877, 'all store employee': 44494, 'store employee take': 807547, 'employee take additional': 274263, 'take additional step': 831910, 'additional step due': 31876, 'step due to': 799531, '19 via carter': 11758, 'via carter furlough': 955850, 'carter furlough layoff': 165468, 'furlough layoff economy': 341891, 'layoff economy retail': 482691, 'economy retail business': 268181, 'surge to': 828267, 'record depleting': 704941, 'depleting inventory': 237423, 'easter price': 265479, 'double grocery': 256019, 'grocery sale': 364929, 'sale run': 732503, 'run time': 727839, 'time normal': 897282, 'normal level': 567203, 'level amid': 487500, 'breaking egg price': 138943, 'egg price surge': 269967, 'price surge to': 676727, 'surge to record': 828271, 'to record depleting': 912977, 'record depleting inventory': 704942, 'depleting inventory for': 237424, 'inventory for easter': 443669, 'for easter price': 320921, 'easter price double': 265480, 'price double grocery': 673500, 'double grocery sale': 256020, 'grocery sale run': 364935, 'sale run time': 732504, 'run time normal': 727840, 'time normal level': 897283, 'normal level amid': 567204, 'level amid panic': 487501, 'supermarket restriction': 822224, 'restriction ahead': 717200, 'weekend 9news': 977308, '9news au': 23997, 'au australia': 102778, '19 supermarket restriction': 10955, 'supermarket restriction ahead': 822226, 'restriction ahead of': 717201, 'ahead of easter': 39178, 'of easter weekend': 582929, 'easter weekend 9news': 265523, 'weekend 9news au': 977309, '9news au australia': 23998, 'case surge': 166048, 'surge globally': 828170, 'globally there': 352404, 'product critical': 681098, 'the humble': 857734, 'humble soap': 410828, 'soap here': 779032, 'how corona': 407608, 'case surge globally': 166049, 'surge globally there': 828171, 'globally there one': 352405, 'there one consumer': 878895, 'one consumer product': 606099, 'consumer product critical': 198452, 'product critical to': 681099, 'critical to the': 218712, 'pandemic the humble': 636685, 'the humble soap': 857736, 'humble soap here': 410829, 'soap here how': 779033, 'here how corona': 393101, 'world rich': 1009937, 'the world rich': 871951, 'world rich are': 1009938, 'rich are struggling': 721193, 'get their hand': 348334, 'hand on gold': 375134, 'deceased': 230717, 'walmart employee': 965317, 'employee agree': 273530, 'family we': 298358, 'ppe the': 668071, 'not cleaned': 568758, 'cleaned no': 180716, 'no paid': 565034, 'leave dougmcmillon': 484771, 'dougmcmillon we': 256290, 'frontline exposed': 338738, 'to hundred': 908053, 'hundred day': 410979, 'day sued': 228427, 'sued death': 817179, 'death by': 229990, 'of deceased': 582430, 'deceased employee': 230718, 'walmart employee agree': 965318, 'employee agree with': 273531, 'with the family': 1001299, 'the family we': 854908, 'family we have': 298361, 'have no ppe': 381645, 'no ppe the': 565170, 'ppe the store': 668073, 'the store not': 868063, 'store not cleaned': 809101, 'not cleaned no': 568759, 'cleaned no paid': 180717, 'no paid leave': 565035, 'paid leave dougmcmillon': 634054, 'leave dougmcmillon we': 484772, 'dougmcmillon we are': 256291, 'are the frontline': 90832, 'the frontline exposed': 855868, 'frontline exposed to': 338739, 'exposed to hundred': 292896, 'to hundred day': 908054, 'hundred day sued': 410980, 'day sued death': 228428, 'sued death by': 817180, 'death by family': 229991, 'family of deceased': 298094, 'of deceased employee': 582431, 'understandably': 940850, 'hung': 411037, 'world deal': 1009472, 'seems people': 746833, 'still comfortable': 800381, 'comfortable shopping': 187874, 'online today': 609603, 'today shipped': 920171, 'these pretty': 880519, 'pretty amber': 671354, 'amber ring': 51297, 'ring but': 722515, 'is understandably': 453471, 'understandably slowing': 940853, 'slowing my': 774558, 'is toronto': 453293, 'toronto realtor': 925985, 'realtor am': 702776, 'am but': 49959, 'have hung': 381004, 'hung my': 411038, 'my license': 549007, 'license for': 488134, 'the world deal': 871852, 'world deal with': 1009473, '19 it seems': 8150, 'it seems people': 460950, 'seems people are': 746834, 'are still comfortable': 90406, 'still comfortable shopping': 800382, 'comfortable shopping online': 187875, 'shopping online today': 763500, 'online today shipped': 609607, 'today shipped out': 920172, 'shipped out of': 758805, 'out of these': 626853, 'of these pretty': 591854, 'these pretty amber': 880520, 'pretty amber ring': 671355, 'amber ring but': 51298, 'ring but it': 722516, 'it is understandably': 459113, 'is understandably slowing': 453472, 'understandably slowing my': 940854, 'slowing my husband': 774559, 'husband is toronto': 411728, 'is toronto realtor': 453294, 'toronto realtor am': 925986, 'realtor am but': 702777, 'am but have': 49961, 'but have hung': 145876, 'have hung my': 381005, 'hung my license': 411039, 'my license for': 549008, 'and throughout': 74089, 'throughout run': 894956, 'run smoothly': 727803, 'time remember': 897565, 'say thanks': 739218, 'thanks the': 842193, 'grocery and stock': 364261, 'stock clerk are': 801988, 'clerk are working': 181660, 'to ensure our': 905178, 'and supply chain': 72779, 'supply chain in': 824976, 'chain in and': 170797, 'in and throughout': 420396, 'and throughout run': 74091, 'throughout run smoothly': 894957, 'run smoothly during': 727804, 'smoothly during these': 775956, 'difficult time remember': 242305, 'time remember to': 897568, 'remember to say': 710383, 'to say thanks': 913841, 'say thanks the': 739220, 'thanks the next': 842194, 'time you see': 898417, 'refer': 706471, 'also refer': 48770, 'refer to': 706474, 'to guide': 907071, 'guide and': 368304, 'prevent transmission': 671750, 'can also refer': 157467, 'also refer to': 48771, 'refer to guide': 706475, 'to guide and': 907072, 'guide and share': 368305, 'share with your': 755361, 'with your supermarket': 1002238, 'your supermarket pharmacy': 1026056, 'supermarket pharmacy to': 821979, 'pharmacy to help': 654518, 'help them with': 390720, 'them with best': 876644, 'with best practice': 997389, 'practice to prevent': 668692, 'to prevent transmission': 912095, 'prevent transmission of': 671751, 'project joined': 683507, 'joined this': 466958, 'fight because': 304673, 'because being': 118948, 'prison is': 678729, 'death sentence': 230190, 'sentence during': 750859, 'pandemic black': 635009, 'black people': 132112, 'over criminalized': 630128, 'criminalized and': 216900, 'and stuck': 72603, 'prison without': 678745, 'without soap': 1002920, 'project joined this': 683508, 'joined this fight': 466959, 'this fight because': 887543, 'fight because being': 304674, 'because being in': 118949, 'being in prison': 125302, 'in prison is': 427003, 'prison is death': 678730, 'is death sentence': 447053, 'death sentence during': 230191, 'sentence during pandemic': 750860, 'during pandemic black': 262858, 'pandemic black people': 635010, 'black people are': 132113, 'people are over': 647037, 'are over criminalized': 88908, 'over criminalized and': 630129, 'criminalized and stuck': 216901, 'and stuck in': 72604, 'stuck in prison': 814599, 'in prison without': 427005, 'prison without soap': 678746, 'without soap sanitizer': 1002922, 'soap sanitizer and': 779105, 'sanitizer and unable': 734449, 'unable to socially': 939347, 'is bitcoin': 446195, 'bitcoin safe': 131837, 'haven what': 383922, 'is bitcoin safe': 446196, 'bitcoin safe haven': 131838, 'safe haven what': 729741, 'haven what covid': 383923, '19 pandemic mean': 9391, 'mean for price': 524448, 'basmati': 112441, 'flyer': 311645, 'office closed': 595392, 'closed no': 183239, 'no package': 565030, 'delivered soon': 233392, 'soon there': 785848, 'more affordable': 538563, 'store nor': 809097, 'nor poultry': 566970, 'poultry except': 667314, 'few package': 303976, 'package extra': 633266, 'extra large': 293564, 'large basmati': 479598, 'basmati bag': 112442, 'bag no': 108340, 'no sale': 565396, 'sale by': 732115, 'by flyer': 152603, 'flyer nofood': 311656, 'nofood at': 566137, 'at foodpantries': 98679, 'foodpantries supply': 318024, 'supply staple': 825889, 'staple safeway': 793985, 'safeway delay': 730834, 'and uncertain': 74600, 'uncertain product': 939604, 'my office closed': 549547, 'office closed no': 595393, 'closed no package': 183243, 'no package delivered': 565031, 'package delivered soon': 633248, 'delivered soon there': 233393, 'soon there will': 785850, 'be no more': 116103, 'no more affordable': 564795, 'more affordable food': 538564, 'affordable food at': 34842, 'grocery store nor': 365595, 'store nor poultry': 809098, 'nor poultry except': 566971, 'poultry except for': 667316, 'except for few': 289158, 'for few package': 321458, 'few package extra': 303978, 'package extra large': 633267, 'extra large basmati': 293565, 'large basmati bag': 479599, 'basmati bag no': 112443, 'bag no sale': 108342, 'no sale by': 565397, 'sale by flyer': 732117, 'by flyer nofood': 152604, 'flyer nofood at': 311657, 'nofood at foodpantries': 566138, 'at foodpantries supply': 98680, 'foodpantries supply staple': 318025, 'supply staple safeway': 825890, 'staple safeway delay': 793986, 'safeway delay and': 730835, 'delay and uncertain': 232673, 'and uncertain product': 74602, 'uncertain product on': 939605, 'product on my': 681468, 'on my delivery': 602276, 'being done': 125072, 'done virtually': 255096, 'virtually and': 957830, 'online right': 608895, 'right school': 722258, 'school work': 741993, 'work family': 1005119, 'family connection': 297715, 'connection shopping': 194719, 'shopping maybe': 763259, 'just guess': 468887, 'guess though': 368068, 'though trumpgenocide': 892938, 'realize that everything': 701852, 'everything is being': 287865, 'is being done': 446078, 'being done virtually': 125077, 'done virtually and': 255097, 'virtually and online': 957831, 'and online right': 68117, 'online right school': 608897, 'right school work': 722260, 'school work family': 741994, 'work family connection': 1005120, 'family connection shopping': 297716, 'connection shopping maybe': 194720, 'shopping maybe it': 763261, 'maybe it ha': 521723, 'it ha something': 458415, 'do with just': 250555, 'with just guess': 999125, 'just guess though': 468889, 'guess though trumpgenocide': 368069, 'attention senior': 102479, 'senior if': 750331, 'pharmacy due': 654290, 'and prescription': 69379, 'prescription delivered': 670499, 'through new': 894589, 'new volunteer': 559843, 'volunteer program': 960323, 'program click': 683225, 'attention senior if': 102481, 'senior if you': 750332, 'or pharmacy due': 616572, 'pharmacy due to': 654291, 'due to you': 262037, 'to you can': 918895, 'you can now': 1017734, 'can now have': 159064, 'now have your': 574889, 'have your food': 383710, 'food and prescription': 313312, 'and prescription delivered': 69380, 'prescription delivered to': 670500, 'delivered to you': 233427, 'to you through': 918932, 'you through new': 1021729, 'through new volunteer': 894590, 'new volunteer program': 559844, 'volunteer program click': 960324, 'program click to': 683226, 'click to learn': 181961, 'aucklanders': 102836, 'fucken': 339741, 'licensing': 488186, 'merit': 529127, 'ta': 831428, 'west aucklanders': 980457, 'aucklanders before': 102839, '19 fucken': 7155, 'fucken trust': 339742, 'trust we': 934327, 'get booze': 346690, 'booze at': 135157, 'supermarket wtf': 824145, 'wtf west': 1013340, 'aucklanders after': 102837, '19 well': 11980, 'well actually': 977992, 'actually think': 30982, 'the licensing': 859326, 'licensing trust': 488189, 'trust system': 934315, 'many merit': 514281, 'merit it': 529132, 'it benefit': 456844, 'benefit the': 127101, 'many way': 514856, 'll explain': 496748, 'explain in': 292104, 'ted ta': 836418, 'west aucklanders before': 980459, 'aucklanders before covid': 102840, 'covid 19 fucken': 213131, '19 fucken trust': 7156, 'fucken trust we': 339743, 'trust we cannot': 934328, 'we cannot get': 971062, 'cannot get booze': 161876, 'get booze at': 346691, 'booze at the': 135158, 'the supermarket wtf': 868918, 'supermarket wtf west': 824147, 'wtf west aucklanders': 1013341, 'west aucklanders after': 980458, 'aucklanders after covid': 102838, 'covid 19 well': 214057, '19 well actually': 11981, 'well actually think': 977993, 'actually think you': 30984, 'think you ll': 885814, 'll find that': 496771, 'that the licensing': 846761, 'the licensing trust': 859327, 'licensing trust system': 488190, 'trust system ha': 934316, 'system ha many': 831193, 'ha many merit': 371237, 'many merit it': 514282, 'merit it benefit': 529133, 'it benefit the': 456847, 'benefit the community': 127102, 'the community in': 851279, 'community in many': 189916, 'in many way': 425064, 'many way ll': 514859, 'way ll explain': 969686, 'll explain in': 496750, 'explain in my': 292105, 'in my ted': 425635, 'my ted ta': 550331, 'morning just': 541331, 'teacher janitor': 835474, 'amazing of': 50749, 'of irvine': 585310, 'irvine staff': 445133, 'not survive': 571872, 'this without': 891469, 'you irvine': 1019375, 'this morning just': 888979, 'morning just want': 541333, 'store worker teacher': 811594, 'worker teacher janitor': 1007887, 'teacher janitor and': 835475, 'janitor and our': 464532, 'and our amazing': 68475, 'our amazing of': 622062, 'amazing of irvine': 50750, 'of irvine staff': 585311, 'irvine staff you': 445134, 'are the backbone': 90799, 'backbone of our': 107505, 'society and we': 781158, 'and we could': 75288, 'we could not': 971213, 'could not survive': 209460, 'not survive this': 571880, 'survive this without': 829274, 'this without you': 891473, 'without you thank': 1003071, 'thank you irvine': 841754, 'dependant': 237332, 'of continued': 581820, 'continued hand': 201321, 'sanitizer usage': 735990, 'usage it': 948839, 'hand have': 375005, 'become alcohol': 119911, 'alcohol dependant': 40986, 'week of continued': 976608, 'of continued hand': 581821, 'continued hand sanitizer': 201322, 'hand sanitizer usage': 375637, 'sanitizer usage it': 735991, 'usage it fair': 948840, 'say that my': 739245, 'that my hand': 845267, 'my hand have': 548607, 'hand have become': 375007, 'have become alcohol': 379426, 'become alcohol dependant': 119912, 'ffinancialadvisors': 304267, '19 ffinancialadvisors': 6980, 'covid 19 ffinancialadvisors': 213087, 'lithium': 495125, 'looming': 503099, 'electricvehicleindustry': 271242, 'for lithium': 323011, 'lithium is': 495126, 'rapidly however': 696986, 'now uncertain': 576244, 'uncertain due': 939578, 'the looming': 859711, 'looming economic': 503104, 'the electricvehicleindustry': 854185, 'demand for lithium': 235449, 'for lithium is': 323012, 'lithium is rising': 495127, 'is rising rapidly': 451556, 'rising rapidly however': 723278, 'rapidly however the': 696987, 'however the increase': 409477, 'demand is now': 235735, 'is now uncertain': 450351, 'now uncertain due': 576246, 'uncertain due to': 939579, 'outbreak the looming': 628716, 'the looming economic': 859713, 'looming economic downturn': 503105, 'economic downturn and': 267073, 'downturn and the': 257789, 'oil price what': 597319, 'price what is': 677471, 'is the effect': 452783, 'the effect on': 854068, 'on the electricvehicleindustry': 604090, 'departmental': 237295, 'hereby': 393867, 'obliged': 578476, 'selflessly': 748539, 'let warn': 487203, 'warn all': 966925, 'and departmental': 61212, 'departmental store': 237296, 'that take': 846612, 'are hereby': 87125, 'hereby also': 393868, 'also obliged': 48589, 'obliged to': 578479, 'all hospital': 43148, 'who selflessly': 989584, 'selflessly touch': 748544, 'touch and': 926450, 'treat all': 930798, 'all patient': 43926, 'and let warn': 66117, 'let warn all': 487204, 'warn all medical': 966926, 'all medical and': 43487, 'medical and departmental': 526043, 'and departmental store': 61213, 'departmental store that': 237297, 'store that take': 810576, 'that take the': 846615, 'take the risk': 832673, 'risk of increasing': 723756, 'of increasing the': 585084, 'hygiene product during': 412151, 'product during this': 681150, 'this period we': 889533, 'period we are': 651918, 'we are hereby': 970589, 'are hereby also': 87126, 'hereby also obliged': 393869, 'also obliged to': 48590, 'obliged to thank': 578484, 'thank all hospital': 841533, 'all hospital employee': 43149, 'hospital employee who': 404393, 'employee who selflessly': 274433, 'who selflessly touch': 989585, 'selflessly touch and': 748545, 'touch and treat': 926452, 'and treat all': 74416, 'treat all patient': 930799, 'anecdote': 76262, 'yeltsin': 1015305, 'amazed': 50620, 'that anecdote': 842661, 'anecdote about': 76263, 'about yeltsin': 26963, 'yeltsin shopping': 1015306, 'western grocery': 980620, 'being amazed': 124837, 'amazed at': 50621, 'variety capitalism': 952556, 'capitalism offered': 162774, 'offered people': 594957, 'remember that anecdote': 710275, 'that anecdote about': 842662, 'anecdote about yeltsin': 76264, 'about yeltsin shopping': 26964, 'yeltsin shopping in': 1015307, 'shopping in western': 762998, 'in western grocery': 430815, 'western grocery store': 980621, 'store and being': 806204, 'and being amazed': 58858, 'being amazed at': 124838, 'amazed at the': 50623, 'at the variety': 101139, 'the variety capitalism': 870644, 'variety capitalism offered': 952557, 'capitalism offered people': 162775, 'thankfully': 841943, 'to prep': 911993, 'prep for': 670005, 'the thankfully': 869359, 'thankfully no': 841955, 'little prep': 495533, 'prep talk': 670017, 'store last week': 808675, 'last week to': 480685, 'week to prep': 977090, 'to prep for': 911994, 'prep for the': 670006, 'for the thankfully': 326724, 'the thankfully no': 869360, 'thankfully no one': 841956, 'one wa just': 607347, 'wa just little': 962464, 'just little prep': 469173, 'little prep talk': 495534, 'immense': 417180, 'given me': 351047, 'an immense': 56172, 'immense hatred': 417183, 'hatred for': 378977, 'know could': 476338, 'retail store open': 718673, 'store open during': 809258, '19 ha given': 7348, 'ha given me': 370713, 'given me an': 351048, 'me an immense': 522399, 'an immense hatred': 56173, 'immense hatred for': 417184, 'hatred for people': 378978, 'people that didn': 649758, 'that didn even': 843527, 'didn even know': 241047, 'even know could': 284277, 'know could have': 476339, 'pham': 653989, 'thu pham': 895276, 'pham our': 653990, 'our brand': 622256, 'brand performance': 137966, 'performance consultant': 651437, 'consultant ha': 195871, 'ha gathered': 370705, 'gathered in': 344419, 'depth data': 237760, 'data insight': 226280, 'from key': 336169, 'key market': 473340, 'behaviour get': 124425, 'more insight': 539601, 'insight here': 439561, 'thu pham our': 895277, 'pham our brand': 653991, 'our brand performance': 622257, 'brand performance consultant': 137967, 'performance consultant ha': 651438, 'consultant ha gathered': 195872, 'ha gathered in': 370706, 'gathered in depth': 344421, 'in depth data': 422200, 'depth data insight': 237761, 'data insight from': 226281, 'insight from key': 439551, 'from key market': 336170, 'key market to': 473342, 'market to show': 517243, 'to show the': 914577, 'show the impact': 767212, 'consumer behaviour get': 196571, 'behaviour get more': 124426, 'get more insight': 347592, 'more insight here': 539603, 'observed': 578603, 'anthropologist': 78251, 'margaret': 515584, 'mead': 524066, 'do are': 249098, 'are entirely': 86232, 'entirely different': 278786, 'thing observed': 884630, 'observed the': 578632, 'the anthropologist': 848780, 'anthropologist margaret': 78252, 'margaret mead': 515588, 'mead if': 524067, 'only more': 610800, 'more marketer': 539751, 'marketer were': 517501, 'were aware': 979359, 'what people say': 982017, 'people say what': 649355, 'say what people': 739471, 'what people do': 982011, 'people do and': 647677, 'do and what': 249074, 'what they say': 982416, 'say they do': 739340, 'they do are': 881954, 'do are entirely': 249099, 'are entirely different': 86233, 'entirely different thing': 278788, 'different thing observed': 242098, 'thing observed the': 884631, 'observed the anthropologist': 578633, 'the anthropologist margaret': 848781, 'anthropologist margaret mead': 78253, 'margaret mead if': 515589, 'mead if only': 524068, 'if only more': 414553, 'only more marketer': 610801, 'more marketer were': 539752, 'marketer were aware': 517502, 'were aware of': 979360, 'aware of it': 105636, 'safeway is': 730848, 'hiring safeway': 397125, 'hiring for': 397097, 'for 00': 318597, 'the maryland': 860204, 'maryland virginia': 518214, 'virginia dc': 957656, 'dc and': 228938, 'and delaware': 61064, 'delaware area': 232643, 'area to': 92233, 'pandemic find': 635429, 'safeway is hiring': 730849, 'is hiring safeway': 448489, 'hiring safeway is': 397126, 'is hiring for': 448486, 'hiring for 00': 397098, 'for 00 job': 318600, '00 job in': 286, 'in the maryland': 429343, 'the maryland virginia': 860206, 'maryland virginia dc': 518215, 'virginia dc and': 957657, 'dc and delaware': 228939, 'and delaware area': 61065, 'delaware area to': 232644, 'area to keep': 92238, 'with the food': 1001310, 'supply demand during': 825149, 'demand during the': 235274, 'the pandemic find': 862966, 'pandemic find out': 635431, 'you can apply': 1017622, 'you inflating': 1019342, 'real enemy': 701126, 'enemy of': 276362, 'of you inflating': 593397, 'you inflating price': 1019343, 'and service due': 71300, '19 pandemic are': 9266, 'pandemic are the': 634950, 'the real enemy': 865218, 'real enemy of': 701127, 'enemy of humanity': 276363, 'will oil': 994312, 'price boost': 672938, 'boost be': 134927, 'be lost': 115831, 'will oil price': 994313, 'oil price boost': 597063, 'price boost be': 672939, 'boost be lost': 134928, 'be lost to': 115833, 'lost to the': 503943, 'azeri': 106402, 'manat': 512926, '588': 20556, 'coronarvirusitalia': 205266, 'azeri president': 106404, 'president ordered': 670878, 'billion manat': 130862, 'manat 588': 512927, '588 million': 20557, 'state budget': 795436, 'economy amid': 267626, 'declining oil': 231481, 'price coronapocolypse': 673258, 'coronapocolypse coronarvirusitalia': 205226, 'azeri president ordered': 106405, 'president ordered the': 670879, 'ordered the provision': 618914, 'provision of billion': 687275, 'of billion manat': 580712, 'billion manat 588': 130863, 'manat 588 million': 512928, '588 million from': 20558, 'million from the': 532164, 'from the state': 337887, 'the state budget': 867755, 'state budget to': 795438, 'budget to support': 141826, 'support the economy': 826868, 'the economy amid': 853934, 'economy amid the': 267628, 'of and declining': 580148, 'and declining oil': 61023, 'declining oil price': 231482, 'oil price coronapocolypse': 597087, 'price coronapocolypse coronarvirusitalia': 673259, 'charity fighting': 173617, 'fighting do': 305057, 'not lose': 570465, 'process be': 679886, 'careful when': 164451, 'when donating': 983360, 'avoid charity': 105031, 'charity fraud': 173624, 'fraud learn': 331300, 'avoid fraud': 105111, 'fraud moleg': 331308, 'you like to': 1019612, 'like to donate': 491584, 'donate to charity': 254251, 'to charity fighting': 902655, 'charity fighting do': 173618, 'fighting do not': 305058, 'do not lose': 249780, 'not lose your': 570469, 'lose your money': 503504, 'personal information in': 652894, 'information in the': 437868, 'the process be': 864546, 'process be careful': 679887, 'be careful when': 114003, 'careful when donating': 164452, 'when donating to': 983361, 'donating to avoid': 254517, 'to avoid charity': 900875, 'avoid charity fraud': 105032, 'charity fraud learn': 173625, 'fraud learn more': 331302, 'learn more for': 484024, 'more for information': 539267, 'information and tip': 437744, 'and tip on': 74134, 'to avoid fraud': 900898, 'avoid fraud moleg': 105112, 'hoarding toiletpaper': 399617, 'ha shit': 371909, 'for brain': 319756, 'brain panicbuying': 137600, 'panicbuying coronapocalypse': 638922, 'anyone hoarding toiletpaper': 80369, 'hoarding toiletpaper ha': 399618, 'toiletpaper ha shit': 922044, 'ha shit for': 371910, 'shit for brain': 759097, 'for brain panicbuying': 319757, 'brain panicbuying coronapocalypse': 137601, '492': 19411, 'considering an': 195354, 'of 492': 579601, '492 kg': 19412, 'kg person': 473663, 'buying doe': 150196, 'amount food': 53178, 'already expected': 47326, 'increase even': 432760, 'shop smart': 760795, 'considering an average': 195355, 'average of 492': 104879, 'of 492 kg': 579602, '492 kg person': 19413, 'kg person of': 473664, 'thoughtless panic buying': 893368, 'panic buying doe': 637706, 'buying doe not': 150197, 'doe not increase': 251502, 'this amount food': 886310, 'amount food waste': 53179, 'waste is already': 968140, 'is already expected': 445519, 'already expected to': 47327, 'to increase even': 908277, 'increase even in': 432761, 'even in difficult': 284235, 'difficult time we': 242316, 'you to shop': 1021836, 'to shop smart': 914487, 'shop smart and': 760796, 'smart and try': 775342, 'agaisnt': 37764, 'recipe is': 704481, 'anyone looking': 80413, 'yourself agaisnt': 1026509, 'agaisnt corona': 37765, 'recipe is anyone': 704482, 'is anyone looking': 445765, 'anyone looking for': 80414, 'looking for how': 502872, 'protect yourself agaisnt': 685079, 'yourself agaisnt corona': 1026510, 'agaisnt corona virus': 37766, 'corona virus 19': 204279, 'angelus': 76408, 'teetering': 836595, 'tyee': 937492, 'angelus 19': 76409, '19 march': 8550, 'other emergency': 620129, 'is crashing': 446880, 'crashing oilprices': 215120, 'oilprices the': 597695, 'other factor': 620207, 'factor have': 295881, 'world teetering': 1010032, 'teetering on': 836598, 'on economic': 600505, 'economic depression': 267051, 'depression say': 237668, 'say expert': 738622, 'expert the': 291982, 'the tyee': 870163, 'angelus 19 march': 76410, '19 march 2020': 8551, '2020 the other': 14640, 'the other emergency': 862524, 'other emergency is': 620131, 'emergency is crashing': 272760, 'is crashing oilprices': 446883, 'crashing oilprices the': 215121, 'oilprices the and': 597696, 'the and other': 848713, 'and other factor': 68323, 'other factor have': 620209, 'factor have the': 295882, 'have the world': 383043, 'the world teetering': 871980, 'world teetering on': 1010033, 'teetering on economic': 836599, 'on economic depression': 600507, 'economic depression say': 267054, 'depression say expert': 237669, 'say expert the': 738623, 'expert the tyee': 291983, 'alabanza': 40628, 'fedex': 302110, 'alabanza supermarket': 40629, 'supermarket stocker': 822970, 'stocker and': 803488, 'cashier pharmacist': 166582, 'pharmacist pharmacy': 654169, 'pharmacy tech': 654495, 'tech worker': 836169, 'worker ups': 1008084, 'ups fedex': 947746, 'fedex public': 302116, 'public work': 688493, 'work public': 1005632, 'our electric': 622875, 'electric phone': 271118, 'phone cable': 654917, 'cable working': 155031, 'alabanza supermarket stocker': 40630, 'supermarket stocker and': 822971, 'stocker and cashier': 803489, 'and cashier pharmacist': 59612, 'cashier pharmacist pharmacy': 166583, 'pharmacist pharmacy tech': 654170, 'pharmacy tech worker': 654496, 'tech worker ups': 836170, 'worker ups fedex': 1008085, 'ups fedex public': 947747, 'fedex public work': 302117, 'public work public': 688498, 'work public health': 1005633, 'public health worker': 688086, 'health worker people': 386987, 'worker people who': 1007559, 'keep our electric': 471730, 'our electric phone': 622876, 'electric phone cable': 271119, 'phone cable working': 654918, 'see your': 746119, 'your tremendous': 1026212, 'tremendous effort': 931219, 'effort we': 269664, 'you to grocery': 1021784, 'to grocery worker': 907013, 'grocery worker around': 366163, 'world we see': 1010149, 'we see your': 973177, 'see your tremendous': 746126, 'your tremendous effort': 1026213, 'tremendous effort we': 931223, 'effort we appreciate': 269665, 'appreciate you and': 82781, 'you and we': 1017012, 'wish you all': 996857, 'you all the': 1016912, 'all the best': 44672, 'ali': 41688, 'naka': 551541, 'rwandatrade': 728765, 'sayentrepreneur rt': 739535, 'rt ali': 726732, 'ali naka': 41697, 'naka the': 551545, 'of rwandatrade': 589196, 'rwandatrade ha': 728766, 'fixed food': 309790, 'prevent market': 671672, 'market from': 516434, 'from hiking': 335800, 'hiking them': 396420, 'outbreak leadership': 628411, 'sayentrepreneur rt ali': 739536, 'rt ali naka': 726733, 'ali naka the': 41698, 'naka the ministry': 551546, 'ministry of rwandatrade': 533552, 'of rwandatrade ha': 589197, 'rwandatrade ha fixed': 728767, 'ha fixed food': 370630, 'fixed food price': 309791, 'price in order': 674719, 'order to prevent': 618696, 'to prevent market': 912074, 'prevent market from': 671673, 'market from hiking': 516436, 'from hiking them': 335801, 'hiking them during': 396421, 'them during the': 875636, 'the outbreak leadership': 862656, 'saturday off': 737053, 'in age': 420102, 'age doing': 37816, 'doing stock': 252679, 'stock take': 802907, 'take and': 831938, 'seeing how': 746324, 'can physically': 159228, 'physically survive': 655522, 'spent the first': 789172, 'the first saturday': 855343, 'first saturday off': 308990, 'saturday off in': 737054, 'off in age': 593922, 'in age doing': 420103, 'age doing stock': 37817, 'doing stock take': 252680, 'stock take and': 802908, 'take and seeing': 831939, 'and seeing how': 71160, 'seeing how long': 746326, 'how long we': 408216, 'long we can': 501832, 'we can physically': 970985, 'can physically survive': 159229, 'physically survive without': 655524, 'survive without having': 829301, 'to supermarket the': 915845, 'supermarket the new': 823233, 'rampage': 696453, 'india could': 434363, 'could experience': 209146, 'experience steep': 291488, 'steep slump': 799398, 'slump due': 774686, '19 rampage': 9952, 'property price in': 684330, 'in india could': 424028, 'india could experience': 434364, 'could experience steep': 209147, 'experience steep slump': 291489, 'steep slump due': 799399, 'slump due to': 774687, 'covid 19 rampage': 213651, '18bn': 4670, '15bn': 4010, 'opex': 613423, 'oil french': 596812, 'french major': 332738, 'major total': 509513, 'total cut': 926156, 'capital spending': 162682, 'spending 20': 788711, '20 reduction': 13295, 'reduction form': 706352, 'form 18bn': 329482, '18bn to': 4671, 'to 15bn': 899512, '15bn announces': 4011, 'announces opex': 77275, 'opex saving': 613424, 'the buyback': 850221, 'buyback oott': 149520, 'oott oilpricewar': 611772, 'oilpricewar statement': 597718, 'big oil french': 129888, 'oil french major': 596813, 'french major total': 332739, 'major total cut': 509514, 'total cut capital': 926157, 'cut capital spending': 223266, 'capital spending 20': 162683, 'spending 20 reduction': 788713, '20 reduction form': 13296, 'reduction form 18bn': 706353, 'form 18bn to': 329483, '18bn to 15bn': 4672, 'to 15bn announces': 899513, '15bn announces opex': 4012, 'announces opex saving': 77276, 'opex saving and': 613425, 'saving and stop': 737845, 'stop the buyback': 805126, 'the buyback oott': 850222, 'buyback oott oilpricewar': 149521, 'oott oilpricewar statement': 611774, 'defenseag': 232147, 'alcoholsanitizer': 41235, 'new defenseag': 558614, 'defenseag reliable': 232148, 'reliable 75': 709191, '75 alcoholic': 22110, 'alcoholic professional': 41218, 'professional handsanitizer': 682449, 'handsanitizer available': 376486, 'in pack': 426409, 'and pack': 68602, 'of visit': 592833, 'order sanitizer': 618558, 'sanitizer quarantine': 735626, 'quarantine stayhomestaysafe': 692575, 'corona usa': 204264, 'usa alcoholsanitizer': 948577, 'alcoholsanitizer sanity': 41236, 'introducing new defenseag': 443497, 'new defenseag reliable': 558615, 'defenseag reliable 75': 232149, 'reliable 75 alcoholic': 709192, '75 alcoholic professional': 22111, 'alcoholic professional handsanitizer': 41219, 'professional handsanitizer available': 682450, 'handsanitizer available in': 376487, 'available in pack': 104450, 'in pack of': 426412, 'pack of and': 633087, 'of and pack': 580173, 'and pack of': 68604, 'pack of visit': 633117, 'of visit to': 592834, 'visit to order': 959414, 'to order sanitizer': 911081, 'order sanitizer quarantine': 618559, 'sanitizer quarantine stayhomestaysafe': 735628, 'quarantine stayhomestaysafe corona': 692576, 'stayhomestaysafe corona usa': 798505, 'corona usa alcoholsanitizer': 204265, 'usa alcoholsanitizer sanity': 948578, 'landscaping': 479420, 'montco': 537499, 'please suspend': 660622, 'suspend or': 829577, 'or stop': 617240, 'stop landscaping': 804805, 'landscaping in': 479423, 'in hardest': 423548, 'hit area': 398150, 'or statewide': 617204, 'statewide philly': 796277, 'philly montco': 654772, 'montco is': 537500, 'is mess': 449634, 'mess people': 529235, 'per truck': 651060, 'truck with': 932881, 'ppe sanitizer': 668043, 'major safety': 509453, 'safety issue': 730596, 'issue cannot': 455702, 'cannot social': 162109, 'distance please': 246800, 'help ve': 390843, 'please suspend or': 660624, 'suspend or stop': 829578, 'or stop landscaping': 617241, 'stop landscaping in': 804806, 'landscaping in hardest': 479424, 'in hardest hit': 423549, 'hardest hit area': 378215, 'hit area or': 398152, 'area or statewide': 92151, 'or statewide philly': 617205, 'statewide philly montco': 796278, 'philly montco is': 654773, 'montco is mess': 537501, 'is mess people': 449635, 'mess people per': 529236, 'people per truck': 649097, 'per truck with': 651061, 'truck with no': 932882, 'with no ppe': 999778, 'no ppe sanitizer': 565168, 'ppe sanitizer is': 668046, 'sanitizer is major': 735197, 'is major safety': 449528, 'major safety issue': 509454, 'safety issue cannot': 730597, 'issue cannot social': 455703, 'cannot social distance': 162110, 'social distance please': 779518, 'distance please help': 246801, 'please help ve': 660089, 'petition is': 653613, 'is le': 449246, 'than halfway': 840721, 'halfway to': 374307, 'it goal': 458269, 'goal please': 354581, 'sign tell': 769218, 'tell congress': 836933, 'congress and': 194485, 'from financial': 335468, 'hardship due': 378285, 'pandemic sign': 636469, 'report advocacy': 711786, 'advocacy petition': 33810, 'this petition is': 889544, 'petition is le': 653614, 'is le than': 449251, 'le than halfway': 483174, 'than halfway to': 840722, 'halfway to it': 374309, 'to it goal': 908583, 'it goal please': 458271, 'goal please sign': 354582, 'please sign tell': 660518, 'sign tell congress': 769219, 'tell congress and': 836934, 'congress and the': 194486, 'and the white': 73653, 'white house to': 987863, 'house to protect': 406630, 'people from financial': 647989, 'from financial hardship': 335473, 'financial hardship due': 306432, 'hardship due to': 378286, 'the pandemic sign': 863095, 'pandemic sign the': 636470, 'sign the consumer': 769229, 'consumer report advocacy': 198698, 'report advocacy petition': 711787, 'magnetic': 508428, 'depressing scene': 237613, 'store photo': 809550, 'photo the': 655252, 'should issue': 766148, 'issue temporary': 455951, 'temporary magnetic': 837660, 'magnetic ration': 508429, 'than of': 840960, 'anything per': 80859, 'week card': 976070, 'card slipped': 163647, 'slipped into': 774042, 'into box': 442434, 'box once': 137136, 'limit is': 492373, 'is reached': 451246, 'reached that': 700056, 'and allow': 57914, 'allow thing': 46086, 'depressing scene in': 237614, 'scene in supermarket': 741333, 'in supermarket food': 428600, 'supermarket food store': 820364, 'food store photo': 316857, 'store photo the': 809551, 'photo the government': 655253, 'government should issue': 360606, 'should issue temporary': 766149, 'issue temporary magnetic': 455952, 'temporary magnetic ration': 837661, 'magnetic ration card': 508430, 'ration card no': 697655, 'card no more': 163584, 'more than of': 540653, 'than of anything': 840961, 'of anything per': 580293, 'anything per person': 80860, 'per week card': 651065, 'week card slipped': 976071, 'card slipped into': 163648, 'slipped into box': 774043, 'into box once': 442435, 'box once the': 137137, 'once the limit': 605725, 'the limit is': 859386, 'limit is reached': 492374, 'is reached that': 451247, 'reached that it': 700057, 'that it that': 844749, 'it that would': 461504, 'that would stop': 847689, 'would stop panic': 1012282, 'stop panic buyer': 804882, 'panic buyer and': 637554, 'buyer and allow': 149555, 'and allow thing': 57918, 'allow thing for': 46087, 'thing for everyone': 884330, 'highlander': 395888, 'government tell': 360664, 'without essential': 1002616, 'essential function': 281075, 'function to': 341274, 'home company': 400909, 'like retail': 491083, 'sending representative': 750081, 'busiest store': 143187, 'stock book': 801928, 'book with': 134636, 'with title': 1001781, 'title like': 899288, 'the lusty': 859832, 'lusty highlander': 506870, 'amid the coronacrisis': 52686, 'the coronacrisis the': 851788, 'the government tell': 856606, 'government tell people': 360665, 'tell people without': 837052, 'people without essential': 650489, 'without essential function': 1002617, 'essential function to': 281077, 'function to stay': 341276, 'stay home company': 796949, 'home company like': 400910, 'company like retail': 190845, 'like retail and': 491084, 'retail and are': 717813, 'and are sending': 58358, 'are sending representative': 89979, 'sending representative to': 750082, 'representative to the': 712922, 'to the busiest': 916534, 'the busiest store': 850156, 'busiest store where': 143188, 'store where people': 811260, 'where people buy': 985095, 'to stock book': 915429, 'stock book with': 801931, 'book with title': 134638, 'with title like': 1001782, 'title like the': 899289, 'like the lusty': 491379, 'the lusty highlander': 859833, 'loosen': 503209, 'of reassuring': 588812, 'reassuring ourselves': 703231, 'ourselves of': 625485, 'our luxury': 623826, 'luxury we': 506977, 'after our': 36001, 'our necessity': 623995, 'necessity the': 554270, 'system won': 831392, 'won disappear': 1003784, 'disappear if': 244040, 'you loosen': 1019710, 'loosen your': 503210, 'your grip': 1024114, 'grip on': 364028, 'll flourish': 496774, 'instead of reassuring': 440310, 'of reassuring ourselves': 588813, 'reassuring ourselves of': 703232, 'ourselves of our': 625486, 'of our luxury': 587507, 'our luxury we': 623827, 'luxury we should': 506979, 'should be looking': 765669, 'be looking after': 115820, 'looking after our': 502781, 'after our necessity': 36002, 'our necessity the': 623996, 'necessity the system': 554272, 'the system won': 869101, 'system won disappear': 831393, 'won disappear if': 1003786, 'disappear if you': 244041, 'if you loosen': 415471, 'you loosen your': 1019711, 'loosen your grip': 503211, 'your grip on': 1024115, 'grip on it': 364029, 'on it it': 601671, 'it it ll': 459177, 'it ll flourish': 459424, 'love socialdistancing': 504784, 'socialdistancing can': 780271, 'supermarket without': 823948, 'without fear': 1002642, 'fear can': 301079, 'it permanent': 460316, 'love socialdistancing can': 504785, 'socialdistancing can now': 780273, 'can now go': 159063, 'the supermarket without': 868912, 'supermarket without fear': 823950, 'without fear can': 1002643, 'fear can we': 301080, 'can we make': 160181, 'make it permanent': 510049, 'another is': 77678, 'to jail': 908643, 'jail twisted': 464285, 'twisted coronavirus': 936600, 'coronavirus prank': 206570, 'prank pa': 668942, 'pa supermarket': 632883, 'supermarket forced': 820434, 'to destroy': 904214, 'destroy more': 239018, 'than 35': 840232, 'intentionally cough': 441162, 'cough all': 208441, 'over it': 630339, 'another is going': 77679, 'going to jail': 355631, 'to jail twisted': 908647, 'jail twisted coronavirus': 464286, 'twisted coronavirus prank': 936601, 'coronavirus prank pa': 206573, 'prank pa supermarket': 668943, 'pa supermarket forced': 632884, 'supermarket forced to': 820435, 'forced to destroy': 328628, 'to destroy more': 904216, 'destroy more than': 239020, 'more than 35': 540562, 'than 35 00': 840233, 'in food after': 422963, 'woman intentionally cough': 1003526, 'intentionally cough all': 441163, 'cough all over': 208442, 'all over it': 43869, 'ok this': 597909, 'is crazy': 446889, 'have buddy': 379852, 'buddy who': 141743, 'direct contact': 243301, 'with person': 1000185, 'for company': 320203, 'who produce': 989450, 'being force': 125163, 'work still': 1005765, 'still after': 800171, 'he let': 385185, 'let his': 486797, 'company know': 190832, 'not lay': 570332, 'lay him': 482595, 'him off': 396676, 'off because': 593682, 'ok this shit': 597911, 'shit is crazy': 759139, 'is crazy now': 446897, 'crazy now have': 215361, 'now have buddy': 574868, 'have buddy who': 379853, 'buddy who ha': 141744, 'ha been in': 369832, 'been in direct': 121342, 'in direct contact': 422279, 'direct contact with': 243302, 'contact with person': 200283, 'with person who': 1000187, 'who ha tested': 988866, '19 and work': 5140, 'work for company': 1005143, 'for company who': 320208, 'company who produce': 191322, 'who produce food': 989451, 'produce food and': 680268, 'food and he': 313249, 'and he is': 64320, 'he is being': 385114, 'is being force': 446085, 'being force to': 125164, 'force to work': 328535, 'to work still': 918785, 'work still after': 1005766, 'still after he': 800172, 'after he let': 35765, 'he let his': 385186, 'let his company': 486798, 'his company know': 397306, 'company know they': 190833, 'know they will': 476882, 'will not lay': 994241, 'not lay him': 570333, 'lay him off': 482596, 'him off because': 396677, 'off because of': 593683, 'because of demand': 119330, 'buying business': 150058, 'business tripling': 144574, 'tripling even': 932297, 'even quadrupling': 284507, 'people basically': 647216, 'basically do': 112122, 'not caring': 568701, 'caring about': 164694, 'hygiene probably': 412144, 'probably spreading': 679382, 'really losing': 702388, 'losing any': 503539, 'any faith': 79211, 'faith had': 296510, 'had in': 373197, 'in humanity': 423908, 'general 19': 345271, 'panic buying business': 637664, 'buying business tripling': 150059, 'business tripling even': 144575, 'tripling even quadrupling': 932298, 'even quadrupling price': 284508, 'quadrupling price people': 691675, 'price people basically': 675848, 'people basically do': 647217, 'basically do not': 112123, 'do not caring': 249690, 'not caring about': 568702, 'caring about social': 164696, 'about social contact': 26212, 'social contact and': 779473, 'contact and basic': 200009, 'and basic hygiene': 58718, 'basic hygiene probably': 111941, 'hygiene probably spreading': 412145, 'probably spreading the': 679383, 'spreading the virus': 791059, 'virus really losing': 958671, 'really losing any': 702389, 'losing any faith': 503540, 'any faith had': 79212, 'faith had in': 296511, 'had in humanity': 373198, 'in humanity in': 423911, 'humanity in general': 410738, 'in general 19': 423244, 'naturalrubber': 552933, 'nr': 576624, 'natural rubber': 552861, 'rubber market': 726946, 'market monitor': 516728, 'monitor price': 537309, 'tumble naturalrubber': 935309, 'naturalrubber rubber': 552934, 'rubber nr': 726948, 'nr price': 576625, 'natural rubber market': 552862, 'rubber market monitor': 726947, 'market monitor price': 516730, 'monitor price tumble': 537311, 'price tumble naturalrubber': 677146, 'tumble naturalrubber rubber': 935310, 'naturalrubber rubber nr': 552935, 'rubber nr price': 726949, 'rig': 721707, 'oil rig': 597398, 'rig worker': 721720, 'worker hit': 1007128, 'hit with': 398509, 'oil rig worker': 597401, 'rig worker hit': 721721, 'worker hit with': 1007129, 'hit with one': 398512, 'with one two': 999891, 'punch of and': 689165, 'of and plummeting': 580174, 'and plummeting oil': 69128, 'plin': 661055, 'hrl': 409693, 'safm': 730870, 'lway': 507039, 'tsn': 934954, 'brfs': 139550, 'bsn': 141448, 'plin like': 661058, 'this meat': 888826, 'stock after': 801766, 'after reading': 36105, 'reading new': 700787, 'new goldman': 558811, 'goldman coverage': 356088, 'coverage rumor': 212379, 'rumor have': 727486, 'been pointing': 121672, 'pointing to': 662757, 'to activity': 900023, 'activity since': 30493, 'since plin': 770786, 'plin sell': 661060, 'this coverage': 886989, 'coverage with': 212388, 'price target': 676757, 'target hint': 834465, 'hint this': 396925, 'of roll': 589148, 'roll up': 725577, 'up opportunity': 945670, 'opportunity may': 613658, 'coming hrl': 188079, 'hrl safm': 409694, 'safm lway': 730871, 'lway ppc': 507040, 'ppc tsn': 667883, 'tsn brfs': 934955, 'brfs bsn': 139551, 'plin like this': 661059, 'like this meat': 491506, 'this meat food': 888827, 'meat food stock': 525577, 'food stock after': 316774, 'stock after reading': 801767, 'after reading new': 36106, 'reading new goldman': 700788, 'new goldman coverage': 558812, 'goldman coverage rumor': 356089, 'coverage rumor have': 212380, 'rumor have been': 727487, 'have been pointing': 379635, 'been pointing to': 121673, 'pointing to activity': 662758, 'to activity since': 900024, 'activity since plin': 30494, 'since plin sell': 770787, 'plin sell off': 661061, 'sell off and': 748813, 'off and now': 593645, 'and now this': 67868, 'now this coverage': 576130, 'this coverage with': 886991, 'coverage with price': 212389, 'with price target': 1000314, 'price target hint': 676758, 'target hint this': 834467, 'hint this kind': 396926, 'kind of roll': 474934, 'of roll up': 589150, 'roll up opportunity': 725579, 'up opportunity may': 945671, 'opportunity may be': 613659, 'be coming hrl': 114153, 'coming hrl safm': 188080, 'hrl safm lway': 409695, 'safm lway ppc': 730872, 'lway ppc tsn': 507041, 'ppc tsn brfs': 667884, 'tsn brfs bsn': 934956, '4th': 19518, 'sindh': 771066, 'alhamdolillah': 41680, '4th patient': 19533, 'patient of': 644221, 'in sindh': 427967, 'sindh ha': 771073, 'ha recovered': 371677, 'recovered tested': 705247, 'tested negative': 839325, 'negative twice': 556841, 'this case': 886707, 'case is': 165825, 'another ray': 77786, 'ray of': 698029, 'hope for': 403477, 'for since': 325630, 'home isolation': 401464, 'isolation alhamdolillah': 455183, '4th patient of': 19534, 'patient of corona': 644222, 'of corona virus': 581901, 'corona virus in': 204320, 'virus in sindh': 958329, 'in sindh ha': 427968, 'sindh ha recovered': 771074, 'ha recovered tested': 371678, 'recovered tested negative': 705248, 'tested negative twice': 839327, 'negative twice this': 556842, 'twice this case': 936548, 'this case is': 886709, 'case is another': 165826, 'is another ray': 445738, 'another ray of': 77787, 'ray of hope': 698030, 'of hope for': 584743, 'hope for since': 403485, 'for since the': 325631, 'since the person': 770900, 'the person wa': 863593, 'person wa under': 652693, 'wa under home': 963601, 'under home isolation': 940118, 'home isolation alhamdolillah': 401465, 'standstill': 793839, 'restricts': 717426, 'reporting price': 712739, 'were flat': 979635, 'flat month': 310084, 'on month': 602198, 'march giving': 515373, 'giving year': 351454, 'year increase': 1014660, 'now essentially': 574615, 'essentially coming': 281899, 'to standstill': 915174, 'standstill severely': 793855, 'severely restricts': 754111, 'restricts activity': 717427, 'our analysis of': 622074, 'of the reporting': 591405, 'the reporting price': 865543, 'reporting price were': 712740, 'price were flat': 677446, 'were flat month': 979636, 'flat month on': 310085, 'month on month': 537924, 'on month in': 602201, 'in march giving': 425105, 'march giving year': 515374, 'giving year on': 351455, 'on year increase': 605400, 'year increase of': 1014661, 'increase of market': 432939, 'of market now': 586234, 'market now essentially': 516767, 'now essentially coming': 574616, 'essentially coming to': 281900, 'coming to standstill': 188231, 'to standstill severely': 915179, 'standstill severely restricts': 793856, 'severely restricts activity': 754112, 'well dang': 978135, 'dang it': 225617, 'no home': 564437, 'are zero': 91902, 'zero slot': 1027497, 'the foreseeable': 855694, 'foreseeable future': 329060, 'future any': 342258, 'other idea': 620386, 'idea before': 413014, 'before brave': 122668, 'limit and': 492280, 'show most': 767060, 'most thing': 542809, 'likely out': 492070, 'well dang it': 978136, 'dang it look': 225618, 'look like there': 502516, 'like there is': 491421, 'is no home': 449940, 'no home delivery': 564438, 'home delivery or': 401037, 'delivery or pick': 234286, 'up in and': 945146, 'in and there': 420394, 'there are zero': 878187, 'are zero slot': 91904, 'zero slot for': 1027498, 'for the foreseeable': 326445, 'the foreseeable future': 855696, 'foreseeable future any': 329061, 'future any other': 342259, 'any other idea': 79593, 'other idea before': 620387, 'idea before brave': 413015, 'before brave the': 122669, 'brave the grocery': 138235, 'grocery store set': 365761, 'set limit and': 753419, 'limit and show': 492287, 'and show most': 71613, 'show most thing': 767062, 'most thing are': 542810, 'thing are likely': 884159, 'are likely out': 87802, 'likely out 19': 492071, 'worth reading': 1011426, 'reading hopefully': 700775, 'hopefully at': 403841, 'shopping more': 763285, 'more locally': 539711, 'locally in': 498756, 'course if': 211876, 'store like': 808720, 'like survive': 491276, 'it worth reading': 462571, 'worth reading hopefully': 1011427, 'reading hopefully at': 700776, 'hopefully at the': 403842, 'very least the': 955299, 'least the public': 484649, 'the public will': 864875, 'public will want': 688486, 'want to consider': 966017, 'to consider shopping': 903235, 'consider shopping more': 195104, 'shopping more locally': 763288, 'more locally in': 539712, 'locally in the': 498758, 'future of course': 342393, 'of course if': 582056, 'course if store': 211879, 'if store like': 414885, 'store like survive': 808732, 'and wash': 75201, 'clothes after': 184130, 'store groceryshopping': 807978, 'to change and': 902592, 'change and wash': 171927, 'and wash your': 75205, 'your clothes after': 1023240, 'clothes after visiting': 184132, 'after visiting the': 36497, 'visiting the grocery': 959562, 'grocery store groceryshopping': 365443, 'lockthemallup': 500541, 'stillrelevant': 801465, 'oneworld': 607575, 'forever on': 329131, 'repeat stophoarding': 711533, 'stophoarding lockthemallup': 805422, 'lockthemallup stillrelevant': 500542, 'stillrelevant fridaythoughts': 801466, 'fridaythoughts oneworld': 333358, 'forever on repeat': 329132, 'on repeat stophoarding': 603152, 'repeat stophoarding lockthemallup': 711534, 'stophoarding lockthemallup stillrelevant': 805423, 'lockthemallup stillrelevant fridaythoughts': 500543, 'stillrelevant fridaythoughts oneworld': 801467, 'moronic': 541661, 'numpties': 577149, 'wakeupandsmelltheconsumerism': 964661, 'seeing tweet': 746531, 'tweet that': 936406, 'that suggest': 846553, 'suggest is': 817518, 'is trial': 453351, 'trial socialism': 931658, 'socialism it': 780963, 'it what': 462320, 'what hiking': 981599, 'is moronic': 449733, 'moronic and': 541662, 'show lack': 767027, 'knowledge of': 477176, 'how capitalism': 407535, 'capitalism work': 162790, 'work these': 1005836, 'shop aren': 759922, 'aren owned': 92469, 'state numpties': 795787, 'numpties wakeupandsmelltheconsumerism': 577153, 'seeing tweet that': 746532, 'tweet that suggest': 936409, 'that suggest is': 846554, 'suggest is trial': 817519, 'is trial socialism': 453353, 'trial socialism it': 931659, 'socialism it what': 780964, 'it what hiking': 462323, 'what hiking up': 981600, 'hiking up food': 396427, 'food price to': 315982, 'price to think': 677055, 'that is moronic': 844619, 'is moronic and': 449734, 'moronic and show': 541663, 'and show lack': 71612, 'show lack of': 767028, 'of knowledge of': 585676, 'knowledge of how': 477178, 'of how capitalism': 584814, 'how capitalism work': 407537, 'capitalism work these': 162791, 'work these shop': 1005838, 'these shop aren': 880676, 'shop aren owned': 759924, 'aren owned by': 92470, 'owned by the': 632335, 'by the state': 154445, 'the state numpties': 867796, 'state numpties wakeupandsmelltheconsumerism': 795788, 'portco': 664969, 'kangaroohealth': 470788, 'our portco': 624399, 'portco kangaroohealth': 664970, 'kangaroohealth ha': 470789, 'launched consumer': 481974, 'consumer enterprise': 197370, 'enterprise focused': 278449, 'focused intelligent': 311941, 'intelligent quarantine': 441031, 'quarantine management': 692360, 'management solution': 512628, 'for remote': 325109, 'remote risk': 710726, 'risk monitoring': 723691, 'monitoring early': 537353, 'early virtual': 264741, 'virtual triage': 957811, 'triage more': 931622, 'info for': 437477, 'for employer': 321037, 'our portco kangaroohealth': 624400, 'portco kangaroohealth ha': 664971, 'kangaroohealth ha launched': 470790, 'ha launched consumer': 371103, 'launched consumer enterprise': 481976, 'consumer enterprise focused': 197371, 'enterprise focused intelligent': 278450, 'focused intelligent quarantine': 311942, 'intelligent quarantine management': 441032, 'quarantine management solution': 692361, 'management solution for': 512629, 'solution for remote': 782031, 'for remote risk': 325111, 'remote risk monitoring': 710727, 'risk monitoring early': 723693, 'monitoring early virtual': 537354, 'early virtual triage': 264742, 'virtual triage more': 957812, 'triage more info': 931623, 'more info for': 539554, 'info for employer': 437478, 'loosing': 503223, 'mayoroflondon': 521998, 've inflated': 953278, 'inflated their': 437089, 'be loosing': 115827, 'loosing their': 503226, 'their licence': 873809, 'licence epidemic': 488105, 'epidemic ukgoverment': 279463, 'ukgoverment london': 938956, 'london uk': 501211, 'uk mayoroflondon': 938544, 'so all these': 776480, 'all these local': 45040, 'these local shop': 880247, 'local shop owner': 498411, 'shop owner who': 760654, 'owner who ve': 632604, 'who ve inflated': 989881, 've inflated their': 953279, 'inflated their price': 437090, 'price on product': 675710, 'on product during': 602951, 'difficult time will': 242321, 'time will soon': 898344, 'soon be loosing': 785641, 'be loosing their': 115828, 'loosing their licence': 503227, 'their licence epidemic': 873810, 'licence epidemic ukgoverment': 488106, 'epidemic ukgoverment london': 279464, 'ukgoverment london uk': 938957, 'london uk mayoroflondon': 501212, 'extenders': 293216, 'pres promised': 670445, 'promised to': 683731, 'lower rx': 505991, 'rx price': 728788, 'he been': 384767, 'been leader': 121440, 'leader in': 483476, 'fight passing': 304840, 'passing surprise': 643398, 'billing health': 130761, 'health extenders': 386423, 'extenders out': 293217, 'out rx': 627126, 'rx reform': 728792, 'reform will': 706737, 'make keeping': 510075, 'keeping that': 472570, 'that pledge': 845770, 'pledge nearly': 660846, 'nearly impossible': 553835, 'pres promised to': 670446, 'promised to lower': 683733, 'to lower rx': 909510, 'lower rx price': 505992, 'rx price he': 728790, 'price he been': 674479, 'he been leader': 384770, 'been leader in': 121441, 'leader in the': 483478, 'the fight passing': 855167, 'fight passing surprise': 304841, 'passing surprise billing': 643399, 'surprise billing health': 828516, 'billing health extenders': 130762, 'health extenders out': 386424, 'extenders out rx': 293218, 'out rx reform': 627127, 'rx reform will': 728793, 'reform will make': 706738, 'will make keeping': 994083, 'make keeping that': 510076, 'keeping that pledge': 472571, 'that pledge nearly': 845771, 'pledge nearly impossible': 660847, 'minneapolis': 533589, 'gas slip': 344093, 'slip below': 774010, 'below gallon': 126655, 'in minnesota': 425358, 'minnesota in': 533609, 'in sign': 427951, 'of where': 593089, 'year minneapolis': 1014751, 'minneapolis mn': 533590, 'gas slip below': 344094, 'slip below gallon': 774011, 'below gallon in': 126658, 'gallon in minnesota': 343024, 'in minnesota in': 425361, 'minnesota in sign': 533610, 'in sign of': 427952, 'sign of where': 769178, 'of where the': 593093, 'where the economy': 985224, 'the next year': 861717, 'next year minneapolis': 561733, 'year minneapolis mn': 1014752, 'expert warn': 292012, 'warn that': 966964, 'crisis could': 217262, 'to economic': 904926, 'social collapse': 779463, 'expert warn that': 292015, 'warn that the': 966968, 'by the crisis': 154299, 'the crisis could': 852363, 'crisis could lead': 217265, 'lead to economic': 483341, 'to economic and': 904927, 'and social collapse': 71882, 'rise cost': 722815, 'cost increase': 207979, 'increase take': 433090, '19 grocery price': 7289, 'grocery price start': 364873, 'price start to': 676614, 'start to rise': 794594, 'to rise cost': 913558, 'rise cost increase': 722816, 'cost increase take': 207980, 'increase take hold': 433091, 'staff keeping': 792597, 'keeping food': 472425, 'driver getting': 259578, 'smart stay': 775428, 'home do': 401085, 'dick stayathome': 240471, 'supermarket staff keeping': 822860, 'staff keeping food': 792599, 'keeping food on': 472427, 'the shelf all': 866820, 'shelf all the': 756696, 'delivery driver getting': 233912, 'driver getting food': 259579, 'food to store': 317296, 'to store be': 915606, 'store be smart': 806664, 'be smart stay': 117236, 'smart stay at': 775429, 'at home do': 98975, 'home do not': 401086, 'not be dick': 568371, 'be dick stayathome': 114441, 'dick stayathome stayhomesavelives': 240472, 'infuriates': 438249, 'what infuriates': 981664, 'infuriates me': 438252, 'me most': 523173, 'most about': 542060, 'british panic': 140554, 'is perishable': 450857, 'perishable it': 651991, 'up thrown': 946301, 'away before': 105794, 'eaten while': 266143, 'are faced': 86402, 'faced with': 295039, 'what infuriates me': 981665, 'infuriates me most': 438253, 'me most about': 523174, 'most about the': 542061, 'about the british': 26344, 'the british panic': 850027, 'british panic buying': 140555, 'stripping supermarket of': 813919, 'of everything is': 583273, 'everything is that': 287888, 'is that most': 452669, 'most of that': 542560, 'of that food': 590722, 'that food is': 843909, 'food is perishable': 315143, 'is perishable it': 450858, 'perishable it will': 651993, 'it will end': 462393, 'will end up': 993308, 'end up thrown': 276046, 'up thrown away': 946302, 'thrown away before': 895130, 'away before it': 105795, 'before it is': 122890, 'it is eaten': 458943, 'is eaten while': 447435, 'eaten while others': 266144, 'while others who': 987128, 'others who need': 621791, 'need it are': 555082, 'it are faced': 456583, 'are faced with': 86403, 'faced with empty': 295042, 'with empty shelf': 998220, 'cybercriminals': 223965, 'cybercriminals are': 223970, 'uncertainty surrounding': 939763, 'sell fake': 748707, 'text and': 839873, 'and message': 66961, 'message social': 529419, 'medium post': 527232, 'money get': 536779, 'information follow': 437819, 'help avoid': 389398, 'cybercriminals are taking': 223971, 'of the uncertainty': 591568, 'the uncertainty surrounding': 870343, 'uncertainty surrounding the': 939765, '19 to sell': 11456, 'to sell fake': 914151, 'sell fake product': 748713, 'fake product or': 296694, 'product or use': 681499, 'or use fake': 617617, 'fake email text': 296618, 'email text and': 272319, 'text and message': 839875, 'and message social': 66963, 'message social medium': 529420, 'social medium post': 779875, 'medium post to': 527236, 'post to get': 666372, 'your money get': 1024860, 'money get your': 536781, 'personal information follow': 652891, 'information follow these': 437820, 'follow these tip': 312560, 'these tip to': 880861, 'to help avoid': 907459, 'help avoid covid': 389400, 'harris': 378502, 'teeter': 836592, 'two visit': 937304, 'to harris': 907178, 'harris teeter': 378509, 'teeter and': 836593, '450 later': 19154, 'later don': 481048, 'in another': 420407, 'another damn': 77559, 'two visit to': 937305, 'visit to harris': 959411, 'to harris teeter': 907179, 'harris teeter and': 378510, 'teeter and 450': 836594, 'and 450 later': 57485, '450 later don': 19155, 'later don want': 481049, 'go in another': 353701, 'in another damn': 420408, 'another damn grocery': 77560, 'airline pilot': 39993, 'pilot offering': 656737, 'offering to': 595301, 'stock supermarket': 802900, 'in nz': 426033, 'nz lockdown': 578195, 'lockdown 19': 499092, 'airline pilot offering': 39994, 'pilot offering to': 656738, 'offering to stock': 595307, 'to stock supermarket': 915452, 'stock supermarket shelf': 802902, 'shelf in nz': 757209, 'in nz lockdown': 426036, 'nz lockdown 19': 578196, 'india set': 434604, 'to import': 908186, 'import record': 418662, 'record volume': 705079, 'of lng': 585922, 'lng spot': 497218, 'to impact': 908146, 'india set to': 434605, 'set to import': 753524, 'to import record': 908187, 'import record volume': 418663, 'record volume of': 705080, 'volume of lng': 960157, 'of lng spot': 585923, 'lng spot price': 497219, 'spot price fall': 790096, 'price fall due': 673784, 'due to impact': 261823, 'to impact of': 908154, 'their self': 874643, 'self on': 747826, 'sure our': 827645, 'family have': 297876, 'if you go': 415445, 'grocery store make': 365549, 'store make sure': 808855, 'sure you thank': 827874, 'you thank the': 1021556, 'thank the worker': 841651, 'the worker they': 871763, 'they are putting': 881372, 'are putting their': 89363, 'putting their self': 691245, 'their self on': 874644, 'self on the': 747827, 'line to make': 493488, 'make sure our': 510521, 'sure our family': 827647, 'our family have': 622997, 'family have what': 297884, 'have what they': 383578, 'just online': 469387, 'be transformed': 117791, 'transformed during': 929584, 'will online': 994318, 'could prioritise': 209531, 'prioritise to': 678399, 'to keyworker': 908902, 'keyworker with': 473588, 'with thanks': 1001164, 'just online education': 469388, 'online education will': 608163, 'education will be': 268885, 'will be transformed': 992735, 'be transformed during': 117792, 'transformed during so': 929585, 'during so will': 263029, 'so will online': 778773, 'will online shopping': 994322, 'shopping could prioritise': 762407, 'could prioritise to': 209532, 'prioritise to keyworker': 678400, 'to keyworker with': 908903, 'keyworker with thanks': 473589, 'peer': 646305, 'playspace': 659495, 'spread we': 790877, 'we join': 972094, 'our peer': 624301, 'peer in': 646308, 'in shutting': 427926, 'our playspace': 624367, 'playspace cancelling': 659496, 'cancelling all': 161204, 'all event': 42711, 'event to': 285092, 'support government': 826543, 'government led': 360306, 'led social': 485259, 'distancing directive': 247099, 'directive walk': 243517, 'and video': 74954, 'video content': 956689, 'content so': 200842, 'so follow': 777104, 'follow to': 312571, 'our year': 625420, 'year journey': 1014686, '19 spread we': 10756, 'spread we join': 790880, 'we join our': 972097, 'join our peer': 466814, 'our peer in': 624302, 'peer in shutting': 646309, 'in shutting down': 427927, 'down our playspace': 257070, 'our playspace cancelling': 624368, 'playspace cancelling all': 659497, 'cancelling all event': 161205, 'all event to': 42713, 'event to support': 285095, 'to support government': 915934, 'support government led': 826544, 'government led social': 360308, 'led social distancing': 485260, 'social distancing directive': 779589, 'distancing directive walk': 247100, 'directive walk in': 243518, 'walk in retail': 964807, 'in retail is': 427458, 'retail is still': 718246, 'still open is': 800964, 'open is our': 612334, 'is our online': 450633, 'online store and': 609442, 'store and video': 806391, 'and video content': 74956, 'video content so': 956691, 'content so follow': 200843, 'so follow to': 777105, 'follow to join': 312572, 'join the next': 466863, 'next step in': 561567, 'step in our': 799563, 'in our year': 426354, 'our year journey': 625421, 'lid': 488263, 'kroger close': 477728, 'close meat': 182721, 'and seafood': 71098, 'seafood counter': 743127, 'counter add': 210186, 'add new': 31456, 'new lid': 559025, 'lid for': 488266, 'and hire': 64583, '00 additional': 40, 'additional worker': 31901, 'address crisis': 31963, 'crisis kroger': 217638, 'kroger panicshopping': 477757, 'panicshopping grocerystores': 639431, 'grocerystores groceryworkers': 366368, 'kroger close meat': 477729, 'close meat and': 182722, 'meat and seafood': 525482, 'and seafood counter': 71099, 'seafood counter add': 743128, 'counter add new': 210187, 'add new lid': 31457, 'new lid for': 559026, 'lid for essential': 488267, 'for essential product': 321117, 'product and hire': 680889, 'and hire 10': 64584, '10 00 additional': 1189, '00 additional worker': 42, 'additional worker to': 31902, 'worker to address': 1007994, 'to address crisis': 900087, 'address crisis kroger': 31964, 'crisis kroger panicshopping': 217639, 'kroger panicshopping grocerystores': 477758, 'panicshopping grocerystores groceryworkers': 639432, 'world on': 1009863, 'physical aspect': 655372, 'of consumerism': 581790, 'consumerism from': 199713, 'online experience': 608184, 'experience for': 291361, 'for fashion': 321412, 'fashion retailer': 299841, 'latest post': 481501, 'to discover': 904363, 'discover fact': 244655, 'fact opportunity': 295765, 'industry retail': 436080, 'with the world': 1001550, 'the world on': 871929, 'world on lockdown': 1009864, 'on lockdown the': 601922, 'lockdown the physical': 500015, 'the physical aspect': 863708, 'physical aspect of': 655373, 'aspect of consumerism': 96215, 'of consumerism from': 581791, 'consumerism from in': 199714, 'from in store': 336026, 'store shopping will': 810141, 'shopping will change': 764411, 'will change to': 992924, 'change to an': 172338, 'an online experience': 56617, 'online experience for': 608185, 'experience for fashion': 291362, 'for fashion retailer': 321413, 'fashion retailer have': 299842, 'retailer have look': 719181, 'look at our': 502281, 'at our latest': 100017, 'our latest post': 623675, 'latest post to': 481503, 'post to discover': 666370, 'to discover fact': 904367, 'discover fact opportunity': 244656, 'fact opportunity for': 295766, 'opportunity for the': 613631, 'the industry retail': 858187, 'behavior the': 124229, 'world more': 1009801, 'more video': 540905, 'content savvy': 200840, 'savvy and': 738022, 'and apple': 58261, 'apple shake': 82363, 'up ar': 944404, 'consumer behavior the': 196524, 'behavior the world': 124234, 'the world more': 871914, 'world more video': 1009803, 'more video content': 540907, 'video content savvy': 956690, 'content savvy and': 200841, 'savvy and apple': 738023, 'and apple shake': 58262, 'apple shake up': 82364, 'shake up ar': 754431, 'conservative': 194902, 'pande': 634733, 'wow what': 1012619, 'what bitch': 981121, 'bitch well': 131783, 'too capitalism': 924641, 'capitalism huh': 162760, 'huh conservative': 410308, 'conservative toiletpaper': 194921, 'trumpmeltdown trump': 934094, 'and conservative': 60307, 'conservative say': 194917, 'say liberal': 738889, 'being over': 125515, 'over dramatic': 630162, 'dramatic about': 258265, 'the pande': 862885, 'wow what bitch': 1012620, 'what bitch well': 981122, 'bitch well the': 131784, 'well the store': 978666, 'the store owner': 868075, 'store owner is': 809432, 'owner is responsible': 632483, 'responsible for this': 716042, 'this too capitalism': 890804, 'too capitalism huh': 924642, 'capitalism huh conservative': 162761, 'huh conservative toiletpaper': 410309, 'conservative toiletpaper trumpmeltdown': 194922, 'toiletpaper trumpmeltdown trump': 922771, 'trumpmeltdown trump and': 934095, 'trump and conservative': 933407, 'and conservative say': 60308, 'conservative say liberal': 194918, 'say liberal are': 738890, 'liberal are being': 487999, 'are being over': 84890, 'being over dramatic': 125516, 'over dramatic about': 630163, 'dramatic about the': 258266, 'about the pande': 26473, 'ridiculous just': 721563, 'everything single': 287993, 'single food': 771298, 'wa sold': 963270, 'even possible': 284476, 'beyond ridiculous just': 129224, 'ridiculous just went': 721564, 'make my usual': 510230, 'at and everything': 98002, 'and everything single': 62428, 'everything single food': 287994, 'single food wa': 771300, 'food wa sold': 317446, 'wa sold out': 963272, 'is that even': 452646, 'that even possible': 843740, 'even possible you': 284478, 'possible you feed': 665886, 'now responsible': 575692, 'economic disruption': 267068, 'disruption since': 246523, '2008 financial': 13661, 'and clean': 59931, 'clean energy': 180518, 'energy investment': 276485, 'investment is': 444022, 'suffer result': 817228, 'coronavirus is now': 206169, 'is now responsible': 450327, 'now responsible for': 575693, 'worst economic disruption': 1011173, 'economic disruption since': 267071, 'disruption since the': 246524, 'the 2008 financial': 847992, '2008 financial crisis': 13662, 'financial crisis and': 306368, 'crisis and clean': 217016, 'and clean energy': 59933, 'clean energy investment': 180522, 'energy investment is': 276486, 'investment is likely': 444024, 'likely to suffer': 492181, 'to suffer result': 915737, 'virus19': 959080, 'together all': 920672, 'country of': 210926, 'covid virus19': 214245, 'virus19 punishment': 959081, 'punishment country': 689253, 'on dog': 600373, 'other exotic': 620196, 'exotic animal': 290437, 'animal without': 76689, 'without limit': 1002762, 'limit food': 492342, 'chain only': 170973, 'only cattle': 610227, 'cattle pig': 167363, 'pig chicken': 656439, 'chicken who': 175879, 'pay covid': 644819, 'bring together all': 140107, 'together all the': 920673, 'all the country': 44699, 'the country of': 852124, 'country of the': 210929, 'world to demand': 1010077, 'demand from china': 235532, 'china the spread': 176988, 'the covid virus19': 852240, 'covid virus19 punishment': 214246, 'virus19 punishment country': 959082, 'punishment country that': 689254, 'country that feed': 211113, 'feed on dog': 302348, 'on dog and': 600374, 'dog and other': 252035, 'and other exotic': 68318, 'other exotic animal': 620197, 'exotic animal without': 290438, 'animal without limit': 76690, 'without limit food': 1002763, 'limit food chain': 492343, 'food chain only': 313914, 'chain only cattle': 170974, 'only cattle pig': 610228, 'cattle pig chicken': 167364, 'pig chicken who': 656440, 'chicken who will': 175880, 'who will pay': 989995, 'will pay covid': 994390, 'buckwheat': 141704, 'zelensky': 1027354, 'ukraine facing': 939041, 'facing pandemic': 295558, 'price significantly': 676405, 'significantly increased': 769586, 'increased the': 433489, 'popular buckwheat': 664538, 'buckwheat increased': 141711, '50 potato': 19818, 'potato by': 666922, 'by 60': 151690, '60 onion': 20970, 'onion by': 607716, '50 sugar': 19867, 'sugar by': 817432, '16 zelensky': 4200, 'zelensky government': 1027355, 'must control': 546608, 'during health': 262678, 'ukraine facing pandemic': 939042, 'facing pandemic food': 295559, 'pandemic food price': 635439, 'food price significantly': 315971, 'price significantly increased': 676406, 'significantly increased the': 769588, 'increased the price': 433495, 'price of popular': 675537, 'of popular buckwheat': 588231, 'popular buckwheat increased': 664539, 'buckwheat increased by': 141712, 'increased by 50': 433228, 'by 50 potato': 151668, '50 potato by': 19819, 'potato by 60': 666923, 'by 60 onion': 151692, '60 onion by': 20971, 'onion by 50': 607717, 'by 50 sugar': 151672, '50 sugar by': 19868, 'sugar by 16': 817434, 'by 16 zelensky': 151556, '16 zelensky government': 4201, 'zelensky government must': 1027356, 'government must control': 360366, 'must control price': 546609, 'control price during': 202113, 'price during health': 673623, 'during health emergency': 262681, 'emerging health': 273123, 'economic risk': 267260, 'risk resulting': 723847, 'and decline': 61018, 'price pose': 675958, 'pose existential': 665095, 'existential threat': 290286, 'to nigeria': 910600, 'nigeria economy': 562734, 'economy healthcare': 267936, 'system national': 831255, 'national security': 552611, 'security well': 744789, 'our citizen': 622368, 'the emerging health': 854240, 'emerging health and': 273124, 'and economic risk': 61907, 'economic risk resulting': 267261, 'risk resulting from': 723848, 'pandemic and decline': 634869, 'and decline in': 61019, 'decline in international': 231359, 'in international oil': 424125, 'oil price pose': 597220, 'price pose existential': 675959, 'pose existential threat': 665096, 'existential threat to': 290287, 'threat to nigeria': 893738, 'to nigeria economy': 910602, 'nigeria economy healthcare': 562736, 'economy healthcare system': 267937, 'healthcare system national': 387312, 'system national security': 831256, 'national security well': 552615, 'security well the': 744790, 'well the life': 978663, 'life of our': 488924, 'of our citizen': 587433, 'scummy': 743011, 'moan': 534885, 'carp': 164875, 'scott well': 742469, 'well said': 978533, 'said tom': 731527, 'tom stay': 923925, 'we middle': 972367, 'class must': 180216, 'must stick': 546913, 'stick together': 800067, 'and hide': 64546, 'hide away': 394830, 'away in': 105945, 'our isolated': 623586, 'isolated safe': 455022, 'safe space': 729957, 'let those': 487183, 'those scummy': 892427, 'scummy working': 743014, 'class transport': 180278, 'supermarket folk': 820346, 'folk take': 312260, 'health risk': 386805, 'we blog': 970858, 'blog moan': 132968, 'moan and': 534886, 'and carp': 59575, 'scott well said': 742470, 'well said tom': 978537, 'said tom stay': 731528, 'tom stay safe': 923926, 'safe we middle': 730117, 'we middle class': 972368, 'middle class must': 530636, 'class must stick': 180217, 'must stick together': 546914, 'stick together and': 800068, 'together and hide': 920693, 'and hide away': 64547, 'hide away in': 394831, 'away in our': 105948, 'in our isolated': 426307, 'our isolated safe': 623587, 'isolated safe space': 455023, 'safe space and': 729958, 'space and let': 787048, 'and let those': 66116, 'let those scummy': 487185, 'those scummy working': 892429, 'scummy working class': 743015, 'working class transport': 1008566, 'class transport worker': 180279, 'transport worker and': 929978, 'worker and supermarket': 1006337, 'and supermarket folk': 72718, 'supermarket folk take': 820347, 'folk take all': 312261, 'take all the': 831930, 'all the health': 44778, 'the health risk': 857187, 'health risk while': 386814, 'risk while we': 724020, 'while we blog': 987544, 'we blog moan': 970859, 'blog moan and': 132969, 'moan and carp': 534887, 'hygeinic': 412032, 'sterilizing': 799879, 'response we': 715914, 'also saw': 48823, 'saw early': 738097, 'early hoarding': 264614, 'of important': 585003, 'important hygeinic': 418826, 'hygeinic and': 412033, 'like hand': 490366, 'sanitizer sterilizing': 735811, 'sterilizing wipe': 799884, 'importantly surgical': 419145, 'should note': 766271, 'these hoarding': 880126, 'hoarding behavior': 399218, 'behavior were': 124300, 'were global': 979685, 'the consumer response': 851586, 'consumer response we': 198790, 'response we also': 715915, 'we also saw': 970408, 'also saw early': 48825, 'saw early hoarding': 738098, 'early hoarding of': 264615, 'hoarding of important': 399453, 'of important hygeinic': 585004, 'important hygeinic and': 418827, 'hygeinic and medical': 412034, 'medical supply like': 526449, 'supply like hand': 825501, 'like hand sanitizer': 490367, 'hand sanitizer sterilizing': 375602, 'sanitizer sterilizing wipe': 735812, 'sterilizing wipe and': 799885, 'wipe and most': 996190, 'most importantly surgical': 542426, 'importantly surgical mask': 419146, 'surgical mask we': 828373, 'mask we should': 519514, 'we should note': 973283, 'should note that': 766272, 'note that these': 572814, 'that these hoarding': 846913, 'these hoarding behavior': 880127, 'hoarding behavior were': 399221, 'behavior were global': 124301, 'washinghands': 967759, 'warned about': 966984, 'about wearing': 26863, 'supermarket sound': 822788, 'sound advice': 786257, 'advice but': 33335, 'think most': 885405, 'most will': 542917, 'will bin': 992830, 'bin them': 131041, 'or home': 615663, 'home wiping': 402514, 'wiping any': 996503, 'any possible': 79668, 'possible off': 665723, 'off one': 594027, 'one shopping': 607020, 'shopping when': 764373, 'when home': 983570, 'then washinghands': 877719, 'washinghands key': 967760, 'key too': 473448, 'being warned about': 126046, 'warned about wearing': 966987, 'about wearing glove': 26864, 'wearing glove at': 974628, 'the supermarket sound': 868816, 'supermarket sound advice': 822789, 'sound advice but': 786258, 'advice but think': 33336, 'but think most': 147532, 'think most will': 885406, 'most will bin': 542918, 'will bin them': 992831, 'bin them before': 131042, 'them before they': 875471, 'before they get': 123216, 'they get in': 882167, 'get in their': 347312, 'their car or': 872728, 'car or home': 163199, 'or home wiping': 615666, 'home wiping any': 402515, 'wiping any possible': 996504, 'any possible off': 79671, 'possible off one': 665724, 'off one shopping': 594028, 'one shopping when': 607021, 'shopping when home': 764376, 'when home then': 983572, 'home then washinghands': 402256, 'then washinghands key': 877720, 'washinghands key too': 967761, 'time online': 897406, 'we isolate': 972087, 'ourselves meaning': 625483, 'meaning more': 524820, 'to fraud': 906222, 'fraud you': 331378, 'victim if': 956478, 'buy good': 148741, 'online seller': 608957, 'seller that': 749086, 'that never': 845320, 'never arrives': 557867, 'arrives more': 93997, 'information can': 437778, 'found at': 330166, 'of are spending': 580353, 'more time online': 540772, 'time online we': 897412, 'online we isolate': 609699, 'we isolate ourselves': 972090, 'isolate ourselves meaning': 454907, 'ourselves meaning more': 625484, 'meaning more people': 524821, 'more people could': 540013, 'people could fall': 647557, 'could fall victim': 209171, 'victim to fraud': 956521, 'to fraud you': 906226, 'fraud you are': 331379, 'are the victim': 90931, 'the victim if': 870730, 'victim if you': 956479, 'you buy good': 1017569, 'buy good from': 148742, 'good from an': 357112, 'from an online': 334493, 'an online seller': 56631, 'online seller that': 608961, 'seller that never': 749090, 'that never arrives': 845322, 'never arrives more': 557868, 'arrives more information': 93998, 'more information can': 539580, 'information can be': 437779, 'can be found': 157624, 'be found at': 114935, 'paknsave': 634545, 'countdown': 210154, 'newworld': 561165, 'nzlockdown': 578225, 'world supermarket': 1010021, 'zealand provide': 1027304, 'provide staff': 686495, 'with life': 999208, 'saving measure': 737923, 'measure foodstuff': 525194, 'foodstuff grocery': 318173, 'grocery paknsave': 364826, 'paknsave countdown': 634546, 'countdown newworld': 210163, 'newworld newzealand': 561168, 'newzealand nzlockdown': 561245, 'nzlockdown lockdownnz': 578226, 'new world supermarket': 559907, 'world supermarket in': 1010022, 'supermarket in new': 820943, 'new zealand provide': 559994, 'zealand provide staff': 1027305, 'provide staff with': 686496, 'staff with life': 793098, 'with life saving': 999213, 'life saving measure': 489015, 'saving measure foodstuff': 737924, 'measure foodstuff grocery': 525195, 'foodstuff grocery paknsave': 318174, 'grocery paknsave countdown': 364827, 'paknsave countdown newworld': 634547, 'countdown newworld newzealand': 210164, 'newworld newzealand nzlockdown': 561169, 'newzealand nzlockdown lockdownnz': 561246, 'fencepeace': 303523, 'is absolute': 445286, 'in lidl': 424699, 'lidl fencepeace': 488288, 'fencepeace rd': 303524, 'rd people': 698141, 'fighting and': 305033, 'and arguing': 58388, 'arguing over': 92734, 'and queue': 69867, 'queue lane': 693977, 'lane front': 479448, 'front to': 338676, 'store stress': 810423, 'level are': 487508, 'it is absolute': 458859, 'is absolute panic': 445288, 'absolute panic in': 27269, 'panic in lidl': 638197, 'in lidl fencepeace': 424700, 'lidl fencepeace rd': 488289, 'fencepeace rd people': 303525, 'rd people are': 698142, 'people are fighting': 646972, 'are fighting and': 86542, 'fighting and arguing': 305034, 'and arguing over': 58389, 'arguing over food': 92735, 'over food and': 630218, 'food and queue': 313320, 'and queue lane': 69871, 'queue lane front': 693978, 'lane front to': 479449, 'front to back': 338677, 'to back of': 900978, 'back of store': 107174, 'of store stress': 590267, 'store stress level': 810424, 'stress level are': 813355, 'level are very': 487513, 'are very high': 91466, 'pple': 668386, 'while lockdown': 987010, 'lockdown might': 499658, 'contain this': 200504, 'this deadly': 887173, 'deadly covid': 229261, 'difficult without': 242357, 'without bare': 1002510, 'essential of': 281342, 'life utility': 489167, 'utility like': 951296, 'like water': 491764, 'power aren': 667566, 'aren there': 92557, 'most family': 542329, 'live from': 495827, 'enough provision': 277587, 'provision pple': 687282, 'pple have': 668391, 'while lockdown might': 987011, 'lockdown might help': 499659, 'might help contain': 531030, 'help contain this': 389534, 'contain this deadly': 200506, 'this deadly covid': 887174, 'deadly covid 19': 229262, '19 it very': 8160, 'it very difficult': 462028, 'very difficult without': 955125, 'difficult without bare': 242358, 'without bare essential': 1002511, 'bare essential of': 110898, 'essential of life': 281345, 'of life utility': 585837, 'life utility like': 489168, 'utility like water': 951297, 'like water and': 491765, 'water and power': 968876, 'and power aren': 69276, 'power aren there': 667567, 'aren there and': 92558, 'there and most': 878005, 'and most family': 67268, 'most family live': 542330, 'family live from': 297992, 'live from hand': 495829, 'to mouth and': 910293, 'mouth and can': 543482, 'and can afford': 59447, 'to stock enough': 915431, 'stock enough provision': 802085, 'enough provision pple': 277589, 'provision pple have': 687283, 'pple have no': 668392, 'have no money': 381637, 'upside': 947849, 'the upside': 870513, 'upside of': 947859, 'in third': 429893, 'third world': 886116, 'world country': 1009459, 'is people': 450835, 'actually make': 30880, 'sell dodgy': 748688, 'dodgy looking': 251307, 'looking sorta': 503005, 'sorta legit': 786168, 'legit alcohol': 486026, 'gel themselves': 345153, 'themselves when': 876936, 'stock run': 802802, 'guess the upside': 368059, 'the upside of': 870514, 'upside of living': 947861, 'of living in': 585914, 'living in third': 496395, 'in third world': 429894, 'third world country': 886118, 'world country is': 1009463, 'country is people': 210815, 'is people can': 450836, 'people can actually': 647379, 'can actually make': 157366, 'actually make and': 30881, 'make and sell': 509690, 'and sell dodgy': 71213, 'sell dodgy looking': 748689, 'dodgy looking sorta': 251308, 'looking sorta legit': 503006, 'sorta legit alcohol': 786169, 'legit alcohol gel': 486027, 'alcohol gel themselves': 41014, 'gel themselves when': 345154, 'themselves when supermarket': 876937, 'when supermarket stock': 984096, 'supermarket stock run': 822967, 'stock run out': 802803, 'unelected': 941095, 'if unelected': 415211, 'unelected and': 941096, 'had done': 373045, 'done their': 255047, 'job two': 466245, 'and taken': 72988, 'protect america': 684771, 'america from': 51527, 'from we': 338303, 'we wouldn': 973981, 'mass quantity': 519844, 'today american': 919182, 'if unelected and': 415212, 'unelected and had': 941097, 'and had done': 64098, 'had done their': 373046, 'done their job': 255050, 'their job two': 873743, 'job two month': 466246, 'two month ago': 937059, 'ago and taken': 38343, 'and taken step': 72989, 'to protect america': 912291, 'protect america from': 684772, 'america from we': 51528, 'from we wouldn': 338308, 'we wouldn need': 973985, 'wouldn need mass': 1012496, 'need mass quantity': 555218, 'mass quantity of': 519846, 'sanitizer today american': 735959, 'today american are': 919183, 'fisherman': 309369, 'organisation': 619247, 'scottish fisherman': 742474, 'fisherman are': 309370, 'welfare organisation': 977963, 'organisation the': 619277, 'to plummeting': 911832, 'for seafood': 325397, 'seafood leaving': 743138, 'leaving many': 485102, 'many unable': 514832, 'family grim': 297858, 'grim wait': 363974, 'they hear': 882416, 'hear what': 388020, 'what brexit': 981137, 'brexit will': 139538, 'scottish fisherman are': 742475, 'fisherman are turning': 309371, 'turning to food': 935963, 'bank and welfare': 109625, 'and welfare organisation': 75396, 'welfare organisation the': 977964, 'organisation the coronavirus': 619278, 'coronavirus crisis ha': 205752, 'led to plummeting': 485293, 'to plummeting demand': 911833, 'plummeting demand for': 661374, 'demand for seafood': 235493, 'for seafood leaving': 325400, 'seafood leaving many': 743139, 'leaving many unable': 485104, 'many unable to': 514833, 'unable to work': 939354, 'work to feed': 1005887, 'their family grim': 873255, 'family grim wait': 297860, 'grim wait until': 363975, 'wait until they': 964245, 'until they hear': 943892, 'they hear what': 882418, 'hear what brexit': 388022, 'what brexit will': 981138, 'brexit will bring': 139539, 'pyramid': 691392, 'my weekend': 550555, 'weekend plan': 977387, 'plan are': 658072, 'cancelled who': 161193, 'who down': 988659, 'hang apart': 376925, 'make eye': 509895, 'eye contact': 294022, 'contact across': 200002, 'the pyramid': 864940, 'pyramid of': 691393, 'since all my': 770495, 'all my weekend': 43576, 'my weekend plan': 550557, 'weekend plan are': 977388, 'plan are cancelled': 658073, 'are cancelled who': 85164, 'cancelled who down': 161194, 'who down to': 988660, 'down to hang': 257368, 'to hang apart': 907143, 'hang apart at': 376926, 'apart at the': 81230, 'we can make': 970975, 'can make eye': 158929, 'make eye contact': 509896, 'eye contact across': 294023, 'contact across the': 200003, 'across the pyramid': 29516, 'the pyramid of': 864941, 'pyramid of orange': 691395, 'infused': 438266, 'vaycay': 952767, '2020 social': 14604, 'distancing sanitizer': 247455, 'sanitizer infused': 735168, 'infused vaycay': 438267, '2020 social distancing': 14605, 'social distancing sanitizer': 779707, 'distancing sanitizer infused': 247456, 'sanitizer infused vaycay': 735169, 'customer didn': 222302, 'didn appreciate': 240984, 'you coughing': 1018071, 'coughing without': 208772, 'without covering': 1002564, 'your mouth': 1024895, 'mouth in': 543523, 'same isle': 733129, 'isle we': 454393, 'cough coughing': 208467, 'coughing shopping': 208750, 'store food': 807760, 'food customer': 314070, 'customer virus': 223017, 'virus sick': 958750, 'sick flu': 768447, 'flu cold': 311396, 'cold sanitizing': 185785, 'sanitizing pandemic': 736490, 'sense people and': 750571, 'people and the': 646887, 'the other customer': 862519, 'other customer didn': 620058, 'customer didn appreciate': 222303, 'didn appreciate you': 240985, 'appreciate you coughing': 82783, 'you coughing without': 1018072, 'coughing without covering': 208773, 'without covering your': 1002566, 'covering your mouth': 212511, 'your mouth in': 1024899, 'mouth in the': 543524, 'the same isle': 866246, 'same isle we': 733130, 'isle we were': 454394, 'we were shopping': 973809, 'shopping in cough': 762957, 'in cough coughing': 421817, 'cough coughing shopping': 208468, 'coughing shopping grocery': 208751, 'shopping grocery store': 762809, 'grocery store food': 365407, 'store food customer': 807765, 'food customer virus': 314071, 'customer virus sick': 223018, 'virus sick flu': 958751, 'sick flu cold': 768448, 'flu cold sanitizing': 311398, 'cold sanitizing pandemic': 185786, 'goddess': 354866, 'ganjagoddess': 343421, 'goddessorders': 354873, 'love corona': 504638, 'down street': 257224, 'street are': 812907, 'empty parking': 274997, 'parking available': 642060, 'available everywhere': 104346, 'everywhere have': 288213, 'keep everyone': 471474, 'everyone foot': 286916, 'touch the': 926545, 'the goddess': 856403, 'goddess without': 354871, 'without permission': 1002836, 'permission ganjagoddess': 652134, 'ganjagoddess goddess': 343422, 'goddess goddessorders': 354869, 'goddessorders 19': 354874, 'love corona virus': 504639, 'virus 19 gas': 957888, 'are down street': 85982, 'down street are': 257225, 'street are empty': 812909, 'are empty parking': 86162, 'empty parking available': 274998, 'parking available everywhere': 642061, 'available everywhere have': 104347, 'everywhere have an': 288214, 'have an excuse': 379249, 'an excuse to': 55936, 'excuse to keep': 289784, 'to keep everyone': 908784, 'keep everyone foot': 471477, 'everyone foot away': 286917, 'away from me': 105895, 'from me do': 336391, 'me do not': 522662, 'not touch the': 572234, 'touch the goddess': 926550, 'the goddess without': 856404, 'goddess without permission': 354872, 'without permission ganjagoddess': 1002837, 'permission ganjagoddess goddess': 652135, 'ganjagoddess goddess goddessorders': 343423, 'goddess goddessorders 19': 354870, 'goddessorders 19 socialdistancing': 354875, 'when those': 984315, 'and bakery': 58663, 'bakery are': 108837, 'are stripped': 90568, 'stripped bare': 813844, 'bare of': 110932, 'food by': 313856, 'little left': 495443, 'increase learn': 432894, 'about why': 26929, 'happens when those': 377528, 'when those supermarket': 984316, 'those supermarket and': 892506, 'supermarket and bakery': 818937, 'and bakery are': 58664, 'bakery are stripped': 108839, 'are stripped bare': 90569, 'stripped bare of': 813849, 'bare of all': 110933, 'all their food': 44999, 'their food by': 873340, 'food by people': 313858, 'by people panic': 153553, 'there is little': 878585, 'is little left': 449402, 'little left for': 495444, 'left for those': 485471, 'it most at': 459680, 'most at time': 542124, 'time when demand': 898283, 'will increase learn': 993815, 'increase learn more': 432895, 'more about why': 538531, 'about why we': 26936, 'why we shouldn': 991529, 'shouldn be panic': 766726, 'adulteration': 32876, 'dal': 225081, 'atta': 102012, 'rava': 697906, 'adulterate': 32869, 'for govts': 321970, 'govts kindly': 361345, 'kindly avoid': 475108, 'avoid shortage': 105278, 'shortage adulteration': 764799, 'adulteration control': 32877, 'good milk': 357389, 'milk rice': 531802, 'rice dal': 721031, 'dal atta': 225082, 'atta rava': 102027, 'rava oil': 697907, 'oil during': 596761, 'lockdown due': 499325, 'some trader': 784110, 'trader selling': 928762, 'selling good': 749274, 'with adulterate': 997102, 'adulterate hike': 32870, 'it burden': 456931, 'burden of': 142747, 'need denatured': 554672, 'denatured are': 236918, 'are harmful': 87021, 'harmful to': 378455, 'health thanks': 386901, 'appeal for govts': 82063, 'for govts kindly': 321971, 'govts kindly avoid': 361346, 'kindly avoid shortage': 475109, 'avoid shortage adulteration': 105279, 'shortage adulteration control': 764800, 'adulteration control price': 32878, 'control price of': 202116, 'price of consumer': 675428, 'consumer good milk': 197626, 'good milk rice': 357391, 'milk rice dal': 531803, 'rice dal atta': 721032, 'dal atta rava': 225083, 'atta rava oil': 102028, 'rava oil during': 697908, 'oil during lockdown': 596762, 'during lockdown due': 262761, 'lockdown due to': 499326, '19 some trader': 10699, 'some trader selling': 784113, 'trader selling good': 928764, 'selling good with': 749277, 'good with adulterate': 357966, 'with adulterate hike': 997103, 'adulterate hike price': 32871, 'hike price it': 396261, 'price it burden': 674912, 'it burden of': 456932, 'burden of people': 142748, 'of people need': 587948, 'people need denatured': 648817, 'need denatured are': 554673, 'denatured are harmful': 236919, 'are harmful to': 87022, 'harmful to health': 378457, 'to health thanks': 907375, 'bridging': 139647, 'start bridging': 794230, 'bridging the': 139648, 'be wasted': 118058, 'wasted and': 968227, 'pushed into': 690368, 'the warns': 871096, 'warns oxfam': 967276, 'oxfam wasting': 632654, 'wasting food': 968307, 'can we start': 160200, 'we start bridging': 973373, 'start bridging the': 794231, 'bridging the gap': 139649, 'gap between food': 343434, 'between food that': 128782, 'food that would': 317109, 'would be wasted': 1011665, 'be wasted and': 118059, 'wasted and growing': 968228, 'growing need in': 367219, 'need in food': 555041, 'in food bank': 422965, 'could be pushed': 208909, 'be pushed into': 116636, 'pushed into poverty': 690369, 'poverty by the': 667490, 'by the warns': 154476, 'the warns oxfam': 871097, 'warns oxfam wasting': 967277, 'oxfam wasting food': 632655, 'wasting food to': 968312, 'introvert': 443519, 'lifeadjustment': 489251, 'not difficult': 569026, 'an introvert': 56433, 'introvert my': 443525, 'but going': 145801, 'have difficult': 380272, 'time standing': 897744, 'up few': 944851, 'few item': 303885, 'item lifeadjustment': 463409, 'staying in the': 798646, 'the house is': 857616, 'house is not': 406376, 'is not difficult': 450062, 'not difficult for': 569027, 'difficult for me': 242224, 'for me an': 323304, 'me an introvert': 522400, 'an introvert my': 56436, 'introvert my home': 443526, 'my home but': 548684, 'home but going': 400834, 'but going to': 145803, 'to have difficult': 907231, 'have difficult time': 380273, 'difficult time standing': 242308, 'time standing in': 897745, 'standing in long': 793777, 'long line outside': 501502, 'outside the grocery': 629593, 'pick up few': 655721, 'up few item': 944853, 'few item lifeadjustment': 303889, 'conquered': 194761, 'tmall': 899355, 'finally conquered': 305961, 'conquered brand': 194762, 'brand thanks': 138028, 'the both': 849893, 'and launched': 65980, 'launched tmall': 482044, 'tmall store': 899356, 'sale drop': 732175, 'drop caused': 260151, 'by closing': 152135, 'finally conquered brand': 305962, 'conquered brand thanks': 194763, 'brand thanks to': 138029, 'to the both': 916524, 'the both and': 849894, 'both and launched': 135849, 'and launched tmall': 65982, 'launched tmall store': 482045, 'tmall store to': 899357, 'make up the': 510690, 'up the sale': 946211, 'the sale drop': 866175, 'sale drop caused': 732176, 'drop caused by': 260152, 'caused by closing': 167830, 'by closing down': 152137, 'closing down of': 183623, 'down of store': 257000, 'united donate': 942154, 'donate 50': 254148, '50 00': 19569, 'each in': 264098, 'demand following': 235353, 'outbreak corona': 628135, 'manchester united donate': 512963, 'united donate 50': 942156, 'donate 50 00': 254149, '50 00 each': 19573, '00 each in': 180, 'each in support': 264099, 'support of local': 826690, 'of local food': 585930, 'bank in response': 109925, 'to the growing': 916757, 'growing demand following': 367163, 'demand following the': 235354, '19 outbreak corona': 9107, 'tuebrook': 935084, 'heron': 394217, 'mortuary': 541986, 'in serving': 427823, 'serving me': 753192, 'in tuebrook': 430315, 'tuebrook liverpool': 935085, 'liverpool heron': 496243, 'heron supermarket': 394218, 'she and': 755856, 'her colleague': 391947, 'and thanked': 73162, 'queue said': 694052, 'said so': 731359, 'am love': 50199, 'love so': 504779, 'so asked': 776555, 'asked where': 95903, 'where she': 985162, 'worked and': 1006094, 'the mortuary': 860931, 'the woman in': 871664, 'woman in serving': 1003520, 'in serving me': 427824, 'serving me in': 753194, 'me in tuebrook': 522982, 'in tuebrook liverpool': 430316, 'tuebrook liverpool heron': 935086, 'liverpool heron supermarket': 496244, 'heron supermarket that': 394219, 'supermarket that she': 823196, 'that she and': 846233, 'she and her': 755857, 'and her colleague': 64509, 'her colleague are': 391948, 'colleague are essential': 186193, 'are essential worker': 86262, 'essential worker now': 281844, 'worker now and': 1007457, 'now and thanked': 574059, 'and thanked her': 73163, 'thanked her the': 841876, 'her the woman': 392436, 'the woman behind': 871661, 'behind me in': 124665, 'the queue said': 865051, 'queue said so': 694053, 'said so am': 731360, 'so am love': 776491, 'am love so': 50200, 'love so asked': 504780, 'so asked where': 776556, 'asked where she': 95904, 'where she worked': 985170, 'she worked and': 756479, 'worked and she': 1006095, 'and she said': 71425, 'said the mortuary': 731441, 'emergency country': 272645, 'country must': 210912, 'must ensure': 546640, 'time information': 897033, 'information is': 437874, 'includes food': 431748, 'food trade': 317350, 'trade measure': 928527, 'measure level': 525250, 'of production': 588506, 'production amp': 681911, 'amp consumption': 53574, 'consumption food': 199873, 'during emergency country': 262624, 'emergency country must': 272646, 'country must ensure': 210913, 'must ensure that': 546642, 'ensure that real': 278068, 'that real time': 845957, 'real time information': 701409, 'time information is': 897035, 'information is available': 437875, 'is available to': 445929, 'available to all': 104638, 'to all this': 900295, 'all this includes': 45112, 'this includes food': 888070, 'includes food trade': 431749, 'food trade measure': 317352, 'trade measure level': 928528, 'measure level of': 525251, 'level of production': 487654, 'of production amp': 588507, 'production amp consumption': 681912, 'amp consumption food': 53575, 'consumption food stock': 199874, 'food stock food': 316788, 'stock food price': 802144, 'usable': 948806, 'sanjana': 736559, '140': 3549, 'continue and': 200999, 'and remain': 70212, 'remain functional': 709753, 'functional don': 341290, '12 am': 2817, 'am all': 49855, 'item will': 463830, 'be usable': 117907, 'usable sanjana': 948807, 'sanjana singh': 736560, 'singh writes': 771203, 'writes 140': 1012823, '140 on': 3554, 'all essential service': 42703, 'service to continue': 752973, 'to continue and': 903378, 'continue and remain': 201000, 'and remain functional': 70214, 'remain functional don': 709754, 'functional don panic': 341291, 'don panic even': 253800, 'panic even after': 638078, 'even after 12': 283808, 'after 12 am': 35268, '12 am all': 2818, 'am all food': 49856, 'food item will': 315243, 'item will be': 463831, 'will be usable': 992753, 'be usable sanjana': 117908, 'usable sanjana singh': 948808, 'sanjana singh writes': 736561, 'singh writes 140': 771204, 'writes 140 on': 1012824, '140 on 19': 3555, 'mississippian': 534411, 'your attorney': 1022874, 'general want': 345495, 'want all': 965692, 'all mississippian': 43514, 'mississippian to': 534412, 'the various': 870646, 'various scam': 952635, 'that threaten': 847023, 'threaten to': 893763, 'your identity': 1024447, 'hard earned': 377906, 'earned money': 264830, 'below you': 126780, 'seeing during': 746276, 'your attorney general': 1022875, 'attorney general want': 102661, 'general want all': 345496, 'want all mississippian': 965694, 'all mississippian to': 43515, 'mississippian to be': 534413, 'of the various': 591585, 'the various scam': 870650, 'various scam that': 952636, 'scam that threaten': 740401, 'that threaten to': 847024, 'threaten to steal': 893764, 'steal your identity': 799216, 'your identity or': 1024448, 'identity or your': 413410, 'or your hard': 617882, 'your hard earned': 1024253, 'hard earned money': 377907, 'earned money in': 264831, 'in the link': 429323, 'link below you': 493807, 'below you can': 126781, 'can read about': 159382, 'read about the': 700257, 'the scam the': 866420, 'scam the ftc': 740404, 'ftc is seeing': 339414, 'is seeing during': 451709, 'seeing during the': 746277, 'could quarantine': 209550, 'myself would': 550985, 'would but': 1011699, 'me who': 523963, 'supermarket still': 822954, 'afford not': 34735, 'patient when': 644297, 'when line': 983693, 'line get': 493129, 'get long': 347498, 'long or': 501541, 'you right': 1020938, 'right away': 721784, 'away quarantine': 106015, 'quarantine commerce': 692091, 'if could quarantine': 414009, 'could quarantine myself': 209551, 'quarantine myself would': 692380, 'myself would but': 550986, 'would but people': 1011700, 'but people like': 146768, 'people like me': 648646, 'like me who': 490759, 'me who work': 523971, 'in supermarket still': 428676, 'supermarket still have': 822956, 'to work cannot': 918700, 'work cannot afford': 1004973, 'cannot afford not': 161606, 'afford not to': 34736, 'not to please': 572173, 'to please be': 911813, 'kind to and': 475004, 'to and be': 900487, 'and be patient': 58762, 'be patient when': 116375, 'patient when line': 644298, 'when line get': 983694, 'line get long': 493130, 'get long or': 347499, 'long or if': 501542, 'or if we': 615723, 'we cannot help': 971066, 'help you right': 390994, 'you right away': 1020939, 'right away quarantine': 721791, 'away quarantine commerce': 106016, 'you any': 1017026, 'any plan': 79658, 'introduce online': 443388, 'with tesco': 1001153, 'tesco you': 838860, 'the option': 862426, 'available thanks': 104615, 'hi there have': 394750, 'there have you': 878469, 'have you any': 383655, 'you any plan': 1017028, 'any plan to': 79661, 'plan to introduce': 658298, 'to introduce online': 908470, 'introduce online shopping': 443389, 'shopping because of': 762177, '19 emergency just': 6758, 'emergency just had': 272767, 'just had to': 468910, 'had to do': 373685, 'my grocery shop': 548580, 'grocery shop online': 364975, 'shop online with': 760597, 'online with tesco': 609750, 'with tesco you': 1001155, 'tesco you don': 838861, 'don have the': 253619, 'have the option': 383007, 'the option available': 862428, 'option available thanks': 613997, 'senfeinstein': 750164, 'kamalaharris': 470733, 'speakerpelosi': 787750, 'repadamschiff': 711445, 'ericsawell': 280161, 'californiacoronavirus': 155619, 'maggienyt': 508377, 'washingtonpost': 967828, 'latimes': 481638, 'gasprices why': 344306, 'in southern': 428148, 'southern california': 786852, 'california pricegouging': 155561, 'pricegouging pricegouging': 677841, 'pricegouging gavinnewsom': 677812, 'gavinnewsom senfeinstein': 344692, 'senfeinstein kamalaharris': 750165, 'kamalaharris speakerpelosi': 470734, 'speakerpelosi repadamschiff': 787751, 'repadamschiff ericsawell': 711446, 'ericsawell californiacoronavirus': 280162, 'californiacoronavirus maggienyt': 155621, 'maggienyt washingtonpost': 508378, 'washingtonpost latimes': 967829, 'gasprices why the': 344307, 'why the gas': 991419, 'price are still': 672745, 'still high in': 800703, 'high in southern': 395133, 'in southern california': 428149, 'southern california pricegouging': 786854, 'california pricegouging pricegouging': 155562, 'pricegouging pricegouging gavinnewsom': 677842, 'pricegouging gavinnewsom senfeinstein': 677813, 'gavinnewsom senfeinstein kamalaharris': 344693, 'senfeinstein kamalaharris speakerpelosi': 750166, 'kamalaharris speakerpelosi repadamschiff': 470735, 'speakerpelosi repadamschiff ericsawell': 787752, 'repadamschiff ericsawell californiacoronavirus': 711447, 'ericsawell californiacoronavirus maggienyt': 280163, 'californiacoronavirus maggienyt washingtonpost': 155622, 'maggienyt washingtonpost latimes': 508379, 'price rate': 676082, 'rate just': 697286, 'revive tourism': 720688, 'tourism demand': 926981, 'already declining': 47281, 'declining due': 231471, 'restriction could': 717248, 'more damaging': 538945, 'damaging cost': 225271, 'cost trap': 208145, 'trap company': 930089, 'company may': 190882, 'may miss': 521346, 'miss opportunity': 534169, 'charge higher': 173256, 'industry could': 435752, 'have allowed': 379179, 'allowed it': 46182, 'lower price rate': 505968, 'price rate just': 676083, 'rate just to': 697287, 'just to revive': 470101, 'to revive tourism': 913508, 'revive tourism demand': 720689, 'tourism demand that': 926982, 'that is already': 844552, 'is already declining': 445515, 'already declining due': 47282, 'declining due to': 231472, 'to 19 travel': 899556, '19 travel restriction': 11555, 'travel restriction could': 930487, 'restriction could be': 717249, 'could be more': 208897, 'be more damaging': 115969, 'more damaging cost': 538946, 'damaging cost trap': 225272, 'cost trap company': 208146, 'trap company may': 930090, 'company may miss': 190884, 'may miss opportunity': 521347, 'miss opportunity to': 534170, 'opportunity to charge': 613698, 'to charge higher': 902640, 'charge higher price': 173257, 'higher price when': 395699, 'price when the': 677491, 'when the industry': 984164, 'the industry could': 858168, 'industry could have': 435753, 'could have allowed': 209239, 'have allowed it': 379180, 'accurate': 28886, 'not suggesting': 571800, 'suggesting everything': 817596, 'everything this': 288054, 'this guy': 887783, 'guy say': 369132, 'is accurate': 445315, 'accurate just': 28902, 'thought some': 893221, 'thing he': 884412, 'he mentioned': 385232, 'mentioned were': 528851, 'were interesting': 979799, 'interesting some': 441611, 'really going': 702228, 'panic merchant': 638308, 'merchant lie': 529030, 'lie conspiracy': 488344, 'conspiracy and': 195570, 'and statistic': 72284, 'statistic oh': 796583, 'and sc': 71020, 'sc via': 739860, 'via video': 956356, 'not suggesting everything': 571801, 'suggesting everything this': 817597, 'everything this guy': 288055, 'this guy say': 887795, 'guy say is': 369133, 'say is accurate': 738815, 'is accurate just': 445316, 'accurate just thought': 28903, 'just thought some': 470068, 'thought some thing': 893222, 'some thing he': 784041, 'thing he mentioned': 884413, 'he mentioned were': 385234, 'mentioned were interesting': 528852, 'were interesting some': 979800, 'interesting some food': 441613, 'some food for': 782859, 'for thought on': 327162, 'thought on what': 893166, 'what is really': 981720, 'is really going': 451298, 'really going on': 702229, 'going on 19': 355293, 'on 19 panic': 599032, '19 panic merchant': 9554, 'panic merchant lie': 638309, 'merchant lie conspiracy': 529031, 'lie conspiracy and': 488345, 'conspiracy and statistic': 195571, 'and statistic oh': 72285, 'statistic oh and': 796584, 'oh and sc': 596358, 'and sc via': 71021, 'sc via video': 739861, 'lethal': 487231, 'medically': 526529, 'complicating': 192474, 'enfo': 276654, 'it every': 457870, 'day work': 228796, 'many older': 514412, 'older resident': 598671, 'resident view': 714393, 'view covid': 957085, '19 joke': 8191, 'joke even': 467075, 'more potentially': 540107, 'potentially lethal': 667219, 'lethal or': 487238, 'least medically': 484550, 'medically complicating': 526532, 'complicating than': 192475, 're willing': 699804, 'to admit': 900114, 'admit and': 32590, 'and bet': 58912, 'bet local': 128081, 'police aren': 662922, 'aren going': 92422, 'to enfo': 905111, 'see it every': 745329, 'it every day': 457872, 'every day work': 285864, 'day work at': 228797, 'work at my': 1004885, 'my supermarket so': 550277, 'supermarket so many': 822734, 'so many older': 777683, 'many older resident': 514414, 'older resident view': 598673, 'resident view covid': 714394, 'view covid 19': 957086, 'covid 19 joke': 213309, '19 joke even': 8193, 'joke even though': 467076, 'even though it': 284709, 'though it more': 892841, 'it more potentially': 459673, 'more potentially lethal': 540108, 'potentially lethal or': 667221, 'lethal or at': 487239, 'at least medically': 99522, 'least medically complicating': 484551, 'medically complicating than': 526533, 'complicating than they': 192476, 'than they re': 841303, 'they re willing': 883152, 're willing to': 699805, 'willing to admit': 995462, 'to admit and': 900115, 'admit and bet': 32591, 'and bet local': 58913, 'bet local police': 128082, 'local police aren': 498283, 'police aren going': 662923, 'aren going to': 92424, 'going to enfo': 355586, 'vermont will': 954861, 'will classify': 992937, 'classify grocery': 180373, 'worker cnn': 1006667, 'cnn smart': 184777, 'and vermont will': 74933, 'vermont will classify': 954862, 'will classify grocery': 992938, 'classify grocery store': 180374, 'employee emergency worker': 273816, 'emergency worker cnn': 273057, 'worker cnn smart': 1006668, 'stop sharing': 805006, 'sharing medium': 755553, 'stop sharing medium': 805007, 'sharing medium post': 755554, 'been tough': 122255, '19 nowhere': 8863, 'nowhere more': 576567, 'more so': 540411, 'so than': 778345, 'bank where': 110293, 'where demand': 984814, 'up new': 945446, 'new food': 558745, 'drive is': 259080, 'now underway': 576259, 'in hope': 423798, 'of easing': 582921, 'easing some': 265273, 'that burden': 843052, 'it been tough': 456805, 'been tough time': 122257, 'for everyone with': 321253, 'everyone with covid': 287622, 'covid 19 nowhere': 213491, '19 nowhere more': 8864, 'nowhere more so': 576568, 'more so than': 540417, 'so than food': 778347, 'than food bank': 840659, 'food bank where': 313667, 'bank where demand': 110294, 'where demand is': 984816, 'demand is up': 235746, 'is up new': 453577, 'up new food': 945448, 'new food drive': 558746, 'food drive is': 314288, 'drive is now': 259082, 'is now underway': 450353, 'now underway in': 576260, 'underway in hope': 940968, 'in hope of': 423801, 'hope of easing': 403566, 'of easing some': 582922, 'easing some of': 265274, 'some of that': 783407, 'of that burden': 590714, 'finally after': 305934, 'after 30': 35287, '30 year': 17267, 'france shopping': 331026, 'shopping today': 764202, 'the metre': 860544, 'metre rule': 529867, 'rule is': 727278, 'norm my': 567051, 'my north': 549514, 'north american': 567609, 'american sense': 52187, 'personal space': 652969, 'space feel': 787093, 'feel almost': 302556, 'almost in': 46674, 'french behaviour': 332718, 'finally after 30': 305935, 'after 30 year': 35289, '30 year in': 17272, 'year in france': 1014649, 'in france shopping': 423085, 'france shopping today': 331027, 'shopping today in': 764210, 'today in supermarket': 919694, 'supermarket where the': 823827, 'where the metre': 985238, 'the metre rule': 860548, 'metre rule is': 529869, 'rule is the': 727281, 'is the norm': 452873, 'the norm my': 861856, 'norm my north': 567052, 'my north american': 549515, 'north american sense': 567616, 'american sense of': 52188, 'sense of personal': 750564, 'of personal space': 588064, 'personal space feel': 652971, 'space feel almost': 787094, 'feel almost in': 302557, 'almost in line': 46677, 'line with french': 493575, 'with french behaviour': 998546, 'average consumer': 104817, 'consumer weird': 199498, 'weird time': 977803, 'time find': 896657, 'consumer think': 199283, 'average consumer weird': 104821, 'consumer weird time': 199499, 'weird time find': 977804, 'time find out': 896658, 'what the average': 982295, 'the average consumer': 849097, 'average consumer think': 104820, 'consumer think about': 199284, 'rishisunak': 723138, 'warehousing': 966832, 'stop online': 804868, 'amid uk': 52735, 'uk restriction': 938669, 'restriction the': 717388, 'clear many': 181283, 'many worker': 514894, 'worker feel': 1006920, 'feel they': 302895, 'climate retailing': 182231, 'retailing borisjohnson': 719474, 'borisjohnson chinavirus': 135513, 'chinavirus rishisunak': 177170, 'rishisunak warehousing': 723139, 'warehousing distribution': 966843, 'next stop online': 561574, 'stop online shopping': 804870, 'shopping amid uk': 761944, 'amid uk restriction': 52736, 'uk restriction the': 938670, 'restriction the company': 717389, 'company said it': 191043, 'it is clear': 458904, 'is clear many': 446548, 'clear many worker': 181284, 'many worker feel': 514896, 'worker feel they': 1006922, 'feel they should': 302899, 'should be at': 765560, 'be at home': 113733, 'at home in': 99012, 'home in the': 401421, 'current climate retailing': 221130, 'climate retailing borisjohnson': 182232, 'retailing borisjohnson chinavirus': 719475, 'borisjohnson chinavirus rishisunak': 135514, 'chinavirus rishisunak warehousing': 177171, 'rishisunak warehousing distribution': 723140, 'ecopies': 268392, 'paperback': 641144, 'righteousness': 722441, 'abideth': 24353, 'icicle': 412738, 'moonbeam': 538334, 'romance': 725721, 'suspense': 829683, 'my ecopies': 548059, 'ecopies are': 268393, 'are 99': 84149, '99 paperback': 23875, 'paperback path': 641147, 'of righteousness': 589114, 'righteousness 50': 722442, '50 there': 19875, 'there abideth': 877951, 'abideth hope': 24354, 'hope 50': 403406, '50 very': 19897, 'very present': 955429, 'present help': 670595, 'help 99': 389289, '99 his': 23841, 'his perfect': 397696, 'perfect love': 651313, 'love 50': 504582, '50 amp': 19605, 'amp icicle': 53968, 'icicle to': 412739, 'to moonbeam': 910248, 'moonbeam 50': 538335, '50 read': 19828, 'read stay': 700555, 'safe amp': 729428, 'amp busy': 53477, 'busy christian': 144886, 'christian romance': 178128, 'romance suspense': 725726, '19 all price': 4900, 'all price on': 44040, 'price on my': 675697, 'on my ecopies': 602278, 'my ecopies are': 548060, 'ecopies are 99': 268394, 'are 99 paperback': 84150, '99 paperback path': 23876, 'paperback path of': 641148, 'path of righteousness': 644023, 'of righteousness 50': 589115, 'righteousness 50 there': 722443, '50 there abideth': 19876, 'there abideth hope': 877952, 'abideth hope 50': 24355, 'hope 50 very': 403407, '50 very present': 19898, 'very present help': 955430, 'present help 99': 670596, 'help 99 his': 389290, '99 his perfect': 23842, 'his perfect love': 397697, 'perfect love 50': 651314, 'love 50 amp': 504583, '50 amp icicle': 19606, 'amp icicle to': 53969, 'icicle to moonbeam': 412740, 'to moonbeam 50': 910249, 'moonbeam 50 read': 538336, '50 read stay': 19829, 'read stay safe': 700556, 'stay safe amp': 797210, 'safe amp busy': 729429, 'amp busy christian': 53478, 'busy christian romance': 144887, 'christian romance suspense': 178129, 'who abuse': 988011, 'abuse grocery': 27637, 'solid kick': 781920, 'as something': 94811, 'done while': 255110, 'while safely': 987231, 'safely socialdistancing': 730320, 'socialdistancing if': 780435, 'are tall': 90744, 'tall and': 834065, 'and flexible': 62966, 'flexible enough': 310384, 'anyone who abuse': 80611, 'who abuse grocery': 988012, 'abuse grocery store': 27638, 'store staff should': 810327, 'staff should get': 792862, 'should get solid': 766038, 'get solid kick': 348038, 'solid kick in': 781921, 'kick in the': 473791, 'the as something': 848953, 'as something that': 94812, 'something that can': 785072, 'be done while': 114572, 'done while safely': 255111, 'while safely socialdistancing': 987232, 'safely socialdistancing if': 730321, 'socialdistancing if you': 780438, 'you are tall': 1017253, 'are tall and': 90745, 'tall and flexible': 834066, 'and flexible enough': 62967, 'everyone wa': 287532, 'wa pushing': 963014, 'pushing the': 690447, 'the trollies': 870013, 'trollies with': 932526, 'that panama': 845636, 'panama hasn': 634684, 'hasn informed': 378752, 'informed people': 438118, 'yet that': 1016249, 'that plastic': 845762, 'plastic can': 658824, 'carry bacteria': 165068, 'bacteria for': 107670, 'day wash': 228662, 'yesterday and everyone': 1015660, 'and everyone wa': 62411, 'everyone wa pushing': 287541, 'wa pushing the': 963015, 'pushing the trollies': 690450, 'the trollies with': 870014, 'trollies with their': 932528, 'with their hand': 1001575, 'their hand and': 873471, 'hand and realized': 374768, 'realized that panama': 701912, 'that panama hasn': 845637, 'panama hasn informed': 634685, 'hasn informed people': 378753, 'informed people yet': 438119, 'people yet that': 650563, 'yet that plastic': 1016250, 'that plastic can': 845763, 'plastic can carry': 658825, 'can carry bacteria': 157870, 'carry bacteria for': 165069, 'bacteria for day': 107671, 'for day wash': 320592, 'day wash your': 228663, 'scanning': 740739, 'somebody out': 784276, 'there know': 878688, 'answer to': 78126, 'one why': 607469, 'not scanning': 571450, 'scanning people': 740747, 'for fever': 321444, 'store takeout': 810501, 'takeout place': 833179, 'pharmacy instant': 654361, 'instant read': 440113, 'read thermometer': 700599, 'thermometer are': 879508, 'that expensive': 843793, 'somebody out there': 784277, 'out there know': 627495, 'there know the': 878689, 'know the answer': 476809, 'the answer to': 848775, 'answer to this': 78135, 'to this one': 917445, 'this one why': 889256, 'one why are': 607470, 'are we not': 91579, 'we not scanning': 972604, 'not scanning people': 571451, 'scanning people for': 740748, 'people for fever': 647950, 'for fever at': 321445, 'the entrance to': 854387, 'entrance to every': 278904, 'to every grocery': 905304, 'grocery store takeout': 365835, 'store takeout place': 810502, 'takeout place and': 833180, 'place and pharmacy': 657320, 'and pharmacy instant': 68973, 'pharmacy instant read': 654362, 'instant read thermometer': 440114, 'read thermometer are': 700600, 'thermometer are not': 879509, 'are not that': 88483, 'not that expensive': 571969, 'guard at': 367785, 'requires guard': 713464, 'guard to': 367851, 'poor checkout': 664143, 'checkout staff': 175010, 'security guard at': 744612, 'guard at the': 367787, 'supermarket wtf is': 824146, 'with people that': 1000174, 'people that requires': 649776, 'that requires guard': 846010, 'requires guard to': 713465, 'guard to protect': 367854, 'protect the poor': 684982, 'the poor checkout': 863972, 'poor checkout staff': 664144, 'adqcc': 32762, 'qccabudhabi': 691527, 'abudhabi': 27561, 'inabudhabi': 431179, 'market service': 517041, 'sector of': 744278, 'of adqcc': 579794, 'adqcc conducted': 32763, 'conducted inspection': 193669, 'inspection to': 439778, 'verify the': 954794, 'the effectiveness': 854078, 'effectiveness of': 269390, 'the procedure': 864539, 'procedure to': 679822, '19 qccabudhabi': 9898, 'qccabudhabi stayhome': 691528, 'stayhome uae': 798220, 'uae abudhabi': 937731, 'abudhabi inabudhabi': 27562, 'inabudhabi together': 431180, 'win covid19': 995545, 'consumer and market': 196224, 'and market service': 66711, 'market service sector': 517042, 'service sector of': 752797, 'sector of adqcc': 744279, 'of adqcc conducted': 579795, 'adqcc conducted inspection': 32764, 'conducted inspection to': 193670, 'inspection to verify': 439779, 'to verify the': 918146, 'verify the effectiveness': 954796, 'the effectiveness of': 854079, 'effectiveness of the': 269393, 'of the procedure': 591367, 'the procedure to': 864540, 'procedure to fight': 679825, 'against the new': 37668, 'new coronavirus pandemic': 558549, 'coronavirus pandemic covid': 206453, 'covid 19 qccabudhabi': 213639, '19 qccabudhabi stayhome': 9899, 'qccabudhabi stayhome uae': 691529, 'stayhome uae abudhabi': 798221, 'uae abudhabi inabudhabi': 937732, 'abudhabi inabudhabi together': 27563, 'inabudhabi together we': 431181, 'will win covid19': 995349, 'tantrum': 834280, 'cuntmom': 220379, 'that mom': 845196, 'mom in': 535751, 'store trying': 810967, 'to reason': 912879, 'child throw': 176229, 'throw tantrum': 895047, 'tantrum and': 834281, 'and called': 59422, 'called her': 156337, 'her cuntmom': 391974, 'she is that': 756164, 'is that mom': 452668, 'that mom in': 845197, 'mom in the': 535753, 'grocery store trying': 365888, 'store trying to': 810968, 'trying to reason': 934854, 'to reason with': 912882, 'reason with her': 703067, 'with her child': 998773, 'her child throw': 391933, 'child throw tantrum': 176230, 'throw tantrum and': 895048, 'tantrum and called': 834282, 'and called her': 59424, 'called her cuntmom': 156338, 'seminar': 749653, 'bough': 136461, 'day saturday': 228303, 'saturday we': 737079, 'had seminar': 373484, 'seminar awareness': 749654, 'awareness re': 105731, 're covid': 698476, 'office it': 595466, 'wa informative': 962403, 'informative we': 438072, 'we then': 973524, 'then bough': 877038, 'bough grocery': 136464, 'the nearby': 861353, 'medicine everything': 526773, 'day saturday we': 228304, 'saturday we had': 737080, 'we had seminar': 971721, 'had seminar awareness': 373485, 'seminar awareness re': 749655, 'awareness re covid': 105732, 're covid 19': 698477, 'covid 19 at': 212660, '19 at the': 5251, 'at the office': 101037, 'the office it': 862073, 'office it wa': 595467, 'it wa informative': 462132, 'wa informative we': 962404, 'informative we then': 438073, 'we then bough': 973525, 'then bough grocery': 877039, 'bough grocery at': 136465, 'grocery at the': 364288, 'at the nearby': 101031, 'the nearby supermarket': 861356, 'nearby supermarket grocery': 553686, 'supermarket grocery medicine': 820579, 'grocery medicine everything': 364724, 'medicine everything we': 526774, 'for the quarantine': 326643, 'the quarantine period': 864971, 'dont hoard': 255233, 'that elderly': 843688, 'please dont hoard': 659937, 'dont hoard thing': 255234, 'thing that elderly': 884802, 'that elderly people': 843690, 'elderly people need': 270830, 'people need if': 648827, 'grocery store please': 365665, 'store please help': 809587, 'please help them': 660084, 'and we need': 75308, 'service need': 752612, 'store stayhomesavelives': 810364, 'thought on grocery': 893162, 'on grocery delivery': 601180, 'delivery service need': 234450, 'service need to': 752613, 'need to not': 555997, 'to not go': 910692, 'the store stayhomesavelives': 868110, 'to while': 918561, 'while there': 987427, 'around many': 93388, 'product service': 681606, 'free of': 332010, 'of charge': 581285, 'charge or': 173304, 'an ultimate': 56816, 'ultimate list': 939119, '200 such': 13548, 'such resource': 816713, 'we re living': 972916, 're living in': 699005, 'living in challenging': 496367, 'challenging time due': 171635, 'due to while': 262027, 'to while there': 918563, 'while there lot': 987429, 'of uncertainty around': 592589, 'uncertainty around many': 939660, 'around many company': 93389, 'many company are': 513915, 'company are offering': 190437, 'are offering their': 88680, 'offering their product': 595285, 'their product service': 874474, 'product service free': 681608, 'service free of': 752403, 'free of charge': 332012, 'of charge or': 581288, 'charge or at': 173305, 'or at discounted': 614442, 'discounted price here': 244598, 'price here an': 674505, 'here an ultimate': 392695, 'an ultimate list': 56817, 'ultimate list of': 939120, 'list of 200': 494406, 'of 200 such': 579457, '200 such resource': 13549, 'unreasonably': 943320, 'with significant': 1000734, 'significant following': 769452, 'following should': 312845, 'should spread': 766484, 'rumour that': 727529, 'that virus': 847253, 'spread more': 790636, 'with stocked': 1000979, 'stocked food': 803317, 'food maybe': 315420, 'maybe this': 521850, 'from stocking': 337423, 'food unreasonably': 317403, 'unreasonably stophoarding': 943321, 'someone with significant': 784790, 'with significant following': 1000735, 'significant following should': 769453, 'following should spread': 312846, 'should spread rumour': 766485, 'spread rumour that': 790780, 'rumour that virus': 727530, 'that virus spread': 847255, 'virus spread more': 958787, 'spread more in': 790638, 'more in house': 539516, 'in house with': 423858, 'house with stocked': 406695, 'with stocked food': 1000980, 'stocked food maybe': 803319, 'food maybe this': 315422, 'maybe this will': 521852, 'this will stop': 891447, 'will stop people': 995001, 'people from stocking': 648009, 'from stocking food': 337424, 'stocking food unreasonably': 803560, 'food unreasonably stophoarding': 317404, 'best part': 127822, 'nonsense is': 566734, 'stock they': 802965, 'should keep': 766166, 'keep so': 471939, 'so stock': 778267, 'bargain price': 111061, 'already positioned': 47576, 'positioned my': 665218, 'my 401k': 547159, '401k to': 18797, 'make 7k': 509641, '7k in': 22478, 'two when': 937379, 'it rebound': 460660, 'the best part': 849537, 'best part of': 127824, 'of this nonsense': 592017, 'this nonsense is': 889160, 'nonsense is everyone': 566735, 'is everyone is': 447585, 'everyone is thing': 287118, 'is thing they': 453064, 'thing they don': 884848, 'they don need': 881995, 'don need and': 253753, 'need and stock': 554437, 'and stock they': 72417, 'stock they should': 802971, 'they should keep': 883373, 'should keep so': 766168, 'keep so stock': 471940, 'so stock are': 778268, 'stock are at': 801850, 'are at bargain': 84664, 'at bargain price': 98090, 'bargain price right': 111064, 'right now already': 722016, 'now already positioned': 573984, 'already positioned my': 47577, 'positioned my 401k': 665219, 'my 401k to': 547160, '401k to make': 18798, 'to make 7k': 909617, 'make 7k in': 509642, '7k in the': 22479, 'next month or': 561458, 'month or two': 537936, 'or two when': 617579, 'two when it': 937380, 'when it rebound': 983647, 'covdhousearrest': 212160, 'housearrestnotquarantine': 406716, 'corinahysteria': 203541, 'coronahoax': 204971, 'pennsylvania allowed': 646553, 'allowed limited': 46184, 'limited sale': 492711, 'spirit via': 789518, 'of volume': 592854, 'volume duh': 960133, 'duh politician': 262061, 'politician get': 663713, 'the bunker': 850120, 'bunker covdhousearrest': 142677, 'covdhousearrest housearrestnotquarantine': 212161, 'housearrestnotquarantine 19': 406717, '19 corinahysteria': 6041, 'corinahysteria coronahoax': 203542, 'pennsylvania allowed limited': 646554, 'allowed limited sale': 46185, 'limited sale of': 492712, 'of wine spirit': 593188, 'wine spirit via': 995900, 'spirit via online': 789519, 'via online shopping': 956137, 'shopping only the': 763520, 'only the website': 611283, 'the website is': 871279, 'website is down': 975320, 'is down of': 447350, 'down of volume': 257003, 'of volume duh': 592855, 'volume duh politician': 960134, 'duh politician get': 262062, 'politician get the': 663714, 'get the bunker': 348229, 'the bunker covdhousearrest': 850121, 'bunker covdhousearrest housearrestnotquarantine': 142678, 'covdhousearrest housearrestnotquarantine 19': 212162, 'housearrestnotquarantine 19 corinahysteria': 406718, '19 corinahysteria coronahoax': 6042, 'truffle': 933246, 'environ': 279069, 'lett': 487278, 'black truffle': 132146, 'truffle sale': 933251, 'at low': 99628, 'france regional': 331020, 'regional market': 707517, '20 the': 13371, 'outbreak may': 628443, 'been factor': 121127, 'factor though': 295907, 'though truffle': 892936, 'truffle price': 933247, 'were high': 979736, 'high climate': 394960, 'causing french': 168037, 'french truffle': 332762, 'truffle production': 933249, 'decline over': 231389, 'term see': 838285, 'see environ': 745077, 'environ re': 279070, 're lett': 698991, 'lett 14': 487279, '14 2019': 3388, 'black truffle sale': 132147, 'truffle sale were': 933252, 'sale were at': 732641, 'were at low': 979354, 'at low in': 99630, 'low in france': 505332, 'in france regional': 423084, 'france regional market': 331021, 'regional market in': 707518, 'market in 2019': 516546, 'in 2019 20': 419796, '2019 20 the': 13921, '20 the covid': 13372, '19 outbreak may': 9154, 'outbreak may have': 628445, 'have been factor': 379535, 'been factor though': 121128, 'factor though truffle': 295908, 'though truffle price': 892937, 'truffle price were': 933248, 'price were high': 677449, 'were high climate': 979737, 'high climate change': 394961, 'climate change is': 182199, 'change is causing': 172150, 'is causing french': 446422, 'causing french truffle': 168038, 'french truffle production': 332763, 'truffle production to': 933250, 'production to decline': 682240, 'to decline over': 904017, 'decline over the': 231390, 'over the longer': 630738, 'longer term see': 502066, 'term see environ': 838286, 'see environ re': 745078, 'environ re lett': 279071, 're lett 14': 698992, 'lett 14 2019': 487280, 'spewing': 789186, 'adderall': 31620, 'uttered': 951440, 'reverential': 720506, 'sympathetic': 830779, 'obama': 578322, 'sulfuric': 817850, 'dying by': 263787, 'and trump': 74485, 'trump spewing': 933861, 'spewing adderall': 789187, 'adderall speak': 31621, 'speak on': 787699, 'ha he': 370836, 'he once': 385276, 'once uttered': 605775, 'uttered reverential': 951441, 'reverential sympathetic': 720507, 'sympathetic gesture': 830780, 'gesture to': 346443, 'the deceased': 852991, 'deceased you': 230721, 'know in': 476497, 'that caring': 843163, 'caring way': 164731, 'way obama': 969735, 'obama did': 578323, 'did sulfuric': 240827, 'sulfuric ignorant': 817851, 'ignorant buffoon': 415777, 'people are dying': 646960, 'are dying by': 86041, 'dying by the': 263788, 'by the minute': 154377, 'minute and trump': 533731, 'and trump spewing': 74491, 'trump spewing adderall': 933862, 'spewing adderall speak': 789188, 'adderall speak on': 31622, 'speak on gas': 787701, 'on gas price': 601070, 'price ha he': 674385, 'ha he once': 370838, 'he once uttered': 385277, 'once uttered reverential': 605776, 'uttered reverential sympathetic': 951442, 'reverential sympathetic gesture': 720508, 'sympathetic gesture to': 830781, 'gesture to the': 346444, 'the family of': 854899, 'family of the': 298106, 'of the deceased': 590935, 'the deceased you': 852992, 'deceased you know': 230722, 'you know in': 1019503, 'know in that': 476499, 'in that caring': 428914, 'that caring way': 843164, 'caring way obama': 164732, 'way obama did': 969736, 'obama did sulfuric': 578324, 'did sulfuric ignorant': 240828, 'sulfuric ignorant buffoon': 817852, 'saas': 728979, 'prescriptive': 670545, 'marketer start': 517493, 'start shifting': 794491, 'shifting budget': 758514, 'budget strategy': 141820, 'strategy now': 812690, 'set yourselves': 753596, 'yourselves up': 1026819, 'for success': 325966, 'success say': 816218, 'say hello': 738743, 'hello to': 389230, 'your b2b': 1022886, 'b2b saas': 106472, 'saas playbook': 728980, 'playbook for': 659266, 'for marketing': 323262, 'marketing mitigating': 517651, 'mitigating disruption': 534550, 'disruption during': 246464, 'during prescriptive': 262926, 'prescriptive tactic': 670546, 'tactic new': 831704, 'data everything': 226203, 'marketer start shifting': 517494, 'start shifting budget': 794492, 'shifting budget strategy': 758515, 'budget strategy now': 141821, 'strategy now to': 812691, 'now to set': 576185, 'to set yourselves': 914298, 'set yourselves up': 753597, 'yourselves up for': 1026821, 'up for success': 944963, 'for success say': 325967, 'success say hello': 816219, 'say hello to': 738746, 'hello to your': 389235, 'to your b2b': 918952, 'your b2b saas': 1022887, 'b2b saas playbook': 106473, 'saas playbook for': 728981, 'playbook for marketing': 659267, 'for marketing mitigating': 323263, 'marketing mitigating disruption': 517652, 'mitigating disruption during': 534551, 'disruption during prescriptive': 246465, 'during prescriptive tactic': 262927, 'prescriptive tactic new': 670547, 'tactic new consumer': 831705, 'new consumer data': 558521, 'consumer data everything': 197053, 'data everything you': 226204, 'you need via': 1020055, 'wheat despite': 982980, 'despite consumer': 238705, 'buying world': 151385, 'world wheat': 1010161, 'wheat stockpile': 983018, 'stockpile seen': 803796, 'seen rising': 747208, 'record in': 704985, '2020 21': 14105, '21 season': 15025, 'season pandemic': 743423, 'ha boosted': 370017, 'boosted near': 135049, 'term demand': 838117, 'for wheat': 327815, 'world will have': 1010189, 'will have lot': 993647, 'lot of wheat': 504325, 'of wheat despite': 593081, 'wheat despite consumer': 982981, 'despite consumer panic': 238706, 'panic buying world': 637970, 'buying world wheat': 151386, 'world wheat stockpile': 1010162, 'wheat stockpile seen': 983019, 'stockpile seen rising': 803797, 'seen rising to': 747209, 'rising to record': 723308, 'to record in': 912980, 'record in 2020': 704986, 'in 2020 21': 419816, '2020 21 season': 14107, '21 season pandemic': 15026, 'season pandemic ha': 743424, 'pandemic ha boosted': 635532, 'ha boosted near': 370018, 'boosted near term': 135050, 'near term demand': 553600, 'term demand for': 838118, 'demand for wheat': 235516, 'jd': 464927, 'pdd': 645938, 'tcehy': 835281, 'tcom': 835290, 'wynn': 1013723, 'lvs': 507036, 'mlco': 534752, 'bili': 130480, 'yumc': 1027090, 'craig': 214803, 'consumer baba': 196379, 'baba jd': 106540, 'jd pdd': 464934, 'pdd tcehy': 645941, 'tcehy tcom': 835282, 'tcom wynn': 835291, 'wynn lvs': 1013724, 'lvs mlco': 507037, 'mlco iq': 534753, 'iq bili': 444647, 'bili yumc': 130481, 'yumc dm': 1027091, 'email craig': 272150, 'craig com': 214804, 'com for': 186934, 'more data': 538959, '19 on chinese': 8933, 'on chinese consumer': 599914, 'chinese consumer baba': 177224, 'consumer baba jd': 196380, 'baba jd pdd': 106541, 'jd pdd tcehy': 464935, 'pdd tcehy tcom': 645942, 'tcehy tcom wynn': 835283, 'tcom wynn lvs': 835292, 'wynn lvs mlco': 1013725, 'lvs mlco iq': 507038, 'mlco iq bili': 534754, 'iq bili yumc': 444648, 'bili yumc dm': 130482, 'yumc dm or': 1027092, 'dm or email': 248915, 'or email craig': 615143, 'email craig com': 272151, 'craig com for': 214805, 'com for more': 186937, 'for more data': 323563, 'only been': 610162, 'been week': 122361, 'but tough': 147620, 'tough start': 926842, 'start for': 794295, 'big policy': 129927, 'policy to': 663522, 'coronavirus recession': 206624, 'it only been': 460092, 'only been week': 610167, 'been week but': 122363, 'week but tough': 976045, 'but tough start': 147621, 'tough start for': 926843, 'start for every': 794296, 'for every big': 321160, 'every big policy': 285686, 'big policy to': 129928, 'policy to mitigate': 663525, 'mitigate the coronavirus': 534540, 'the coronavirus recession': 851896, 'damning': 225481, 'world coronavirus': 1009455, 'solution thread': 782088, 'thread look': 893573, 'world affected': 1009265, 'is common': 446680, 'common lockdown': 189405, 'lockdown however': 499480, 'economic effect': 267082, 'effect is': 269019, 'is damning': 447021, 'damning fall': 225482, 'some developed': 782680, 'developed country': 239695, 'country go': 210687, 'go far': 353524, 'the world coronavirus': 871849, 'world coronavirus the': 1009456, 'coronavirus the solution': 206915, 'the solution thread': 867468, 'solution thread look': 782089, 'thread look at': 893574, 'at all the': 97910, 'all the nation': 44835, 'the nation of': 861253, 'nation of the': 552275, 'the world affected': 871807, 'world affected by': 1009266, '19 one thing': 8981, 'thing is common': 884467, 'is common lockdown': 446681, 'common lockdown however': 189406, 'lockdown however the': 499481, 'however the economic': 409474, 'the economic effect': 853901, 'economic effect is': 267086, 'effect is damning': 269021, 'is damning fall': 447022, 'damning fall in': 225483, 'oil price increase': 597168, 'price increase in': 674775, 'in food price': 422979, 'food price some': 315977, 'price some developed': 676553, 'some developed country': 782681, 'developed country go': 239696, 'country go far': 210688, 'wa 30': 961368, '30 something': 17222, 'something guy': 784929, 'guy complaining': 368964, 'complaining abt': 191895, 'abt no': 27538, 'are ppl': 89167, 'ppl hoarding': 668248, 'hoarding egg': 399274, 'could he': 209275, 'he use': 385565, 'use wic': 949809, 'wic on': 991655, 'on brand': 599685, 'brand egg': 137831, 'egg he': 269883, 'had six': 373510, 'six gallon': 772648, 'of lactose': 585702, 'lactose milk': 478708, 'cart stophoarding': 165385, 'store there wa': 810652, 'there wa 30': 879221, 'wa 30 something': 961370, '30 something guy': 17223, 'something guy complaining': 784930, 'guy complaining abt': 368965, 'complaining abt no': 191896, 'abt no egg': 27539, 'no egg and': 564088, 'egg and why': 269776, 'and why are': 75621, 'why are ppl': 990783, 'are ppl hoarding': 89169, 'ppl hoarding egg': 668249, 'hoarding egg and': 399275, 'egg and could': 269762, 'and could he': 60615, 'could he use': 209276, 'he use wic': 385566, 'use wic on': 949810, 'wic on brand': 991656, 'on brand egg': 599686, 'brand egg he': 137832, 'egg he had': 269884, 'he had six': 385056, 'had six gallon': 373512, 'six gallon of': 772649, 'gallon of lactose': 343045, 'of lactose milk': 585703, 'lactose milk in': 478709, 'milk in his': 531699, 'in his cart': 423723, 'his cart stophoarding': 397282, 'cart stophoarding 19': 165386, 'everyone hoarding': 287013, 'hoarding rice': 399497, 'rice who': 721170, 'who until': 989852, 'now doesn': 574550, 'eat rice': 266037, 'rice remember': 721123, 'all left': 43358, 'left over': 485600, 've hoarded': 953265, 'hoarded to': 398966, 'bank near': 110019, 'you food': 1018611, 'waste should': 968185, 'be side': 117184, 'of irrational': 585306, 'irrational panic': 444990, 'buying coronavir': 150145, 'to everyone hoarding': 905339, 'everyone hoarding rice': 287014, 'hoarding rice who': 399499, 'rice who until': 721171, 'who until now': 989853, 'until now doesn': 943799, 'now doesn eat': 574551, 'doesn eat rice': 251763, 'eat rice remember': 266038, 'rice remember to': 721124, 'remember to donate': 710371, 'to donate it': 904648, 'donate it and': 254192, 'it and all': 456481, 'and all left': 57873, 'all left over': 43362, 'left over food': 485601, 'over food you': 630227, 'food you ve': 317724, 'you ve hoarded': 1022046, 've hoarded to': 953268, 'hoarded to food': 398967, 'food bank near': 313602, 'bank near you': 110020, 'near you food': 553639, 'you food waste': 1018616, 'food waste should': 317493, 'waste should not': 968186, 'not be side': 568456, 'be side effect': 117185, '19 result of': 10194, 'result of irrational': 717599, 'of irrational panic': 585307, 'irrational panic buying': 444991, 'panic buying coronavir': 637688, 'tackle keep': 831577, 'keep maldives': 471645, 'maldives safe': 511679, 'to tackle keep': 916130, 'tackle keep maldives': 831580, 'keep maldives safe': 471646, 'tru': 932701, 'applauds': 82281, 'nyse': 578126, 'tru transunion': 932702, 'transunion applauds': 930075, 'applauds regulatory': 82286, 'consumer relief': 198686, 'relief nyse': 709398, 'nyse tru': 578140, 'tru transunion applauds': 932703, 'transunion applauds regulatory': 930076, 'applauds regulatory guidance': 82287, 'regulatory guidance on': 708177, 'guidance on covid': 368263, 'related consumer relief': 708401, 'consumer relief nyse': 198690, 'relief nyse tru': 709399, 'studying': 814989, 'idiotic': 413646, 'rumination': 727469, 'tank product': 834226, 'same chemical': 732991, 'chemical is': 175365, 'is studying': 452403, 'studying for': 814990, 'please trump': 660689, 'trump idiotic': 933617, 'idiotic rumination': 413654, 'fish tank product': 309345, 'tank product ha': 834227, 'product ha the': 681243, 'ha the same': 372225, 'the same chemical': 866205, 'same chemical is': 732993, 'chemical is studying': 175366, 'is studying for': 452404, 'studying for covid': 814991, '19 to please': 11446, 'to please trump': 911822, 'please trump idiotic': 660690, 'trump idiotic rumination': 933618, 'tele': 836660, 'et ftc': 282359, 'ftc will': 339473, 'will join': 993873, 'join aarp': 466661, 'aarp weekly': 24156, 'weekly live': 977509, 'live information': 495897, 'information tele': 437990, 'tele town': 836667, 'town hall': 927474, 'hall gov': 374330, 'gov official': 359647, 'official will': 595977, 'will answer': 992287, 'about avoiding': 24839, 'providing resource': 687085, 'family caregiver': 297690, 'today at 1pm': 919267, '1pm et ftc': 12693, 'et ftc will': 282361, 'ftc will join': 339474, 'will join aarp': 993874, 'join aarp weekly': 466662, 'aarp weekly live': 24157, 'weekly live information': 977510, 'live information tele': 495898, 'information tele town': 437991, 'tele town hall': 836668, 'town hall gov': 927476, 'hall gov official': 374331, 'gov official will': 359648, 'official will answer': 595978, 'will answer your': 992288, 'answer your question': 78156, 'question about avoiding': 693493, 'about avoiding scam': 24840, 'avoiding scam and': 105490, 'scam and providing': 740015, 'and providing resource': 69713, 'providing resource for': 687086, 'resource for family': 714782, 'for family caregiver': 321385, 'hugged': 410279, 'dave': 226956, 'whamond': 980945, 'distancing have': 247194, 'have hugged': 380999, 'hugged the': 410282, 'found toilet': 330444, 'at marianos': 99675, 'marianos best': 515685, 'best easter': 127672, 'easter gift': 265434, 'gift ever': 349968, 'ever lol': 285395, 'lol art': 500875, 'by dave': 152295, 'dave whamond': 226966, 'whamond toiletpaper': 980946, 'toiletpaperpanic socialdistancing': 923241, 'socialdistancing easter': 780341, 'easter groceryworkers': 265442, 'groceryworkers washyourhands': 366411, 'washyourhands stayathome': 967913, 'wasn for social': 967976, 'social distancing have': 779629, 'distancing have hugged': 247196, 'have hugged the': 381000, 'hugged the grocery': 410283, 'worker we found': 1008141, 'we found toilet': 971593, 'found toilet paper': 330445, 'paper at marianos': 639896, 'at marianos best': 99676, 'marianos best easter': 515686, 'best easter gift': 127673, 'easter gift ever': 265435, 'gift ever lol': 349969, 'ever lol art': 285396, 'lol art by': 500876, 'art by dave': 94146, 'by dave whamond': 152296, 'dave whamond toiletpaper': 226967, 'whamond toiletpaper toiletpaperpanic': 980947, 'toiletpaper toiletpaperpanic socialdistancing': 922704, 'toiletpaperpanic socialdistancing easter': 923242, 'socialdistancing easter groceryworkers': 780342, 'easter groceryworkers washyourhands': 265443, 'groceryworkers washyourhands stayathome': 366412, 'soo are': 785563, 'you telling': 1021544, 'not cure': 568940, 'disinfectant covid': 245639, 'soo are you': 785564, 'are you telling': 91869, 'you telling me': 1021545, 'telling me that': 837229, 'me that this': 523632, 'is not cure': 450058, 'not cure for': 568941, 'be killed by': 115603, 'by soap and': 154058, 'soap and disinfectant': 778909, 'and disinfectant covid': 61444, 'disinfectant covid 19': 245640, 'latest new': 481443, 'york city': 1016587, 'city grocer': 179160, 'grocer to': 364175, 'hold special': 399999, 'especially vulnerable': 280650, 'it the latest': 461553, 'the latest new': 859130, 'latest new york': 481444, 'new york city': 559922, 'york city grocer': 1016590, 'city grocer to': 179162, 'grocer to hold': 364176, 'to hold special': 907915, 'hold special hour': 400000, 'senior who are': 750441, 'who are especially': 988138, 'are especially vulnerable': 86241, 'especially vulnerable to': 280652, 'wandering': 965569, 'dontstockpile': 255401, 'fucking stock': 340009, 'pile ve': 656518, 'seen elder': 747006, 'elder people': 270542, 'people wandering': 650136, 'wandering around': 965576, 'like zombie': 491901, 'zombie trying': 1027731, 'find something': 307240, 'eat dontstockpile': 265888, 'do not fucking': 249743, 'not fucking stock': 569549, 'fucking stock pile': 340010, 'stock pile ve': 802634, 'pile ve seen': 656519, 've seen elder': 953526, 'seen elder people': 747007, 'elder people wandering': 270544, 'people wandering around': 650138, 'wandering around the': 965577, 'supermarket like zombie': 821319, 'like zombie trying': 491903, 'zombie trying to': 1027732, 'to find something': 905937, 'find something to': 307243, 'something to eat': 785100, 'to eat dontstockpile': 904878, 'family fear': 297781, 'fear nursing': 301217, 'could collapse': 209023, 'collapse under': 186068, 'under pressure': 940200, 'family fear nursing': 297783, 'fear nursing home': 301218, 'nursing home could': 577613, 'home could collapse': 400957, 'could collapse under': 209025, 'collapse under pressure': 186069, 'spain 15': 787265, '15 people': 3811, 'people enter': 647800, 'enter at': 278233, 'rest wait': 716236, 'outside meter': 629484, 'store in spain': 808394, 'in spain 15': 428165, 'spain 15 people': 787266, '15 people enter': 3814, 'people enter at': 647801, 'enter at time': 278235, 'at time and': 101283, 'time and the': 896299, 'the rest wait': 865640, 'rest wait outside': 716237, 'wait outside meter': 964175, 'outside meter apart': 629485, 'timeforplanb': 898450, 'ricecrypto': 721181, 'o0dsd66xjz': 578230, 'using crypto': 950441, 'crypto for': 219946, 'wa designed': 961958, 'do used': 250437, 'used bitcoin': 949872, 'bitcoin to': 131839, 'some ball': 782376, 'ball with': 109078, 'my card': 547608, 'card glad': 163534, 'glad did': 351483, 'did price': 240767, 'skyrocketing now': 773438, 'everyone timeforplanb': 287492, 'timeforplanb crypto': 898451, 'crypto ricecrypto': 219962, 'ricecrypto o0dsd66xjz': 721182, 'using crypto for': 950442, 'crypto for what': 219947, 'for what it': 327799, 'what it wa': 981760, 'it wa designed': 462101, 'wa designed to': 961960, 'designed to do': 238353, 'to do used': 904578, 'do used bitcoin': 250438, 'used bitcoin to': 949873, 'bitcoin to buy': 131840, 'buy some ball': 149195, 'some ball with': 782377, 'ball with my': 109079, 'with my card': 999612, 'my card glad': 547610, 'card glad did': 163535, 'glad did price': 351484, 'did price are': 240768, 'are skyrocketing now': 90167, 'skyrocketing now with': 773440, 'now with stay': 576455, 'with stay safe': 1000953, 'safe everyone timeforplanb': 729653, 'everyone timeforplanb crypto': 287493, 'timeforplanb crypto ricecrypto': 898452, 'crypto ricecrypto o0dsd66xjz': 219963, 'alice': 41723, 'chan': 171688, 'bumped': 142579, 'joel': 466460, 'alicechan': 41728, 'joelchan': 466465, 'destiny': 238998, 'alice chan': 41724, 'chan bumped': 171689, 'bumped into': 142580, 'into joel': 442681, 'joel chan': 466461, 'chan when': 171693, 'supermarket alicechan': 818862, 'alicechan joelchan': 41729, 'joelchan grocery': 466466, 'supermarket destiny': 819954, 'alice chan bumped': 41725, 'chan bumped into': 171690, 'bumped into joel': 142581, 'into joel chan': 442682, 'joel chan when': 466462, 'chan when buying': 171694, 'when buying grocery': 983225, 'buying grocery at': 150410, 'the supermarket alicechan': 868452, 'supermarket alicechan joelchan': 818863, 'alicechan joelchan grocery': 41730, 'joelchan grocery supermarket': 466467, 'grocery supermarket destiny': 365994, 'cosmetic': 207784, 'onlineshop': 609872, 'your beauty': 1022923, 'beauty regime': 118774, 'regime shop': 707366, 'shop offer': 760531, 'delivery now': 234213, 'now staysafestayhome': 575902, 'staysafestayhome stayathome': 799019, 'stayathome fridayfeeling': 797480, 'fridayfeeling staysafe': 333338, 'staysafe beauty': 798784, 'beauty washyourhands': 118818, 'washyourhands cosmetic': 967866, 'cosmetic onlineshop': 207790, 'onlineshop shopping': 609878, 'shopping dontbeaspreader': 762510, 'staying safe at': 798689, 'home still want': 402147, 'want to keep': 966058, 'up with your': 946703, 'with your beauty': 1002179, 'your beauty regime': 1022924, 'beauty regime shop': 118775, 'regime shop offer': 707367, 'shop offer online': 760532, 'offer online with': 594727, 'online with free': 609746, 'with free delivery': 998534, 'free delivery now': 331756, 'delivery now staysafestayhome': 234216, 'now staysafestayhome stayathome': 575903, 'staysafestayhome stayathome fridayfeeling': 799020, 'stayathome fridayfeeling staysafe': 797481, 'fridayfeeling staysafe beauty': 333339, 'staysafe beauty washyourhands': 798785, 'beauty washyourhands cosmetic': 118819, 'washyourhands cosmetic onlineshop': 967867, 'cosmetic onlineshop shopping': 207791, 'onlineshop shopping dontbeaspreader': 609879, 'mustread': 547036, 'important step': 418969, 'step keep': 799581, 'hand when': 375976, 'get home': 347236, 'via mustread': 956086, 'mustread health': 547039, 'health 19': 386094, 'important step keep': 418970, 'step keep distance': 799582, 'keep distance and': 471449, 'distance and wash': 246643, 'your hand when': 1024242, 'hand when you': 375979, 'when you get': 984563, 'you get home': 1018777, 'get home via': 347251, 'home via mustread': 402428, 'via mustread health': 956087, 'mustread health 19': 547040, 'with milk': 999505, 'price plunging': 675938, 'plunging to': 661548, 'low dairy': 505225, 'dairy cooperative': 224965, 'cooperative are': 203170, 'dumping the': 262252, 'curb an': 220548, 'an oversupply': 56762, 'oversupply during': 631591, 'lockdown more': 499668, 'with milk price': 999506, 'milk price plunging': 531784, 'price plunging to': 675939, 'plunging to low': 661549, 'to low dairy': 909483, 'low dairy cooperative': 505226, 'dairy cooperative are': 224966, 'cooperative are dumping': 203171, 'are dumping the': 86027, 'dumping the product': 262253, 'the product to': 864598, 'product to curb': 681743, 'to curb an': 903797, 'curb an oversupply': 220549, 'an oversupply during': 56764, 'oversupply during the': 631592, 'during the lockdown': 263150, 'the lockdown more': 859617, 'ro': 724376, 'cranberry': 214851, 'desperatetimescallfordesperatemeasures': 238586, 'technicallynolongerboxwine': 836216, 'ratapiko': 697134, 'slot left': 774228, 'left so': 485639, 'made ro': 507943, 'ro from': 724379, 'from box': 334721, 'box wine': 137201, 'and cranberry': 60688, 'cranberry juice': 214852, 'juice desperatetimescallfordesperatemeasures': 467737, 'desperatetimescallfordesperatemeasures selfisolation': 238587, 'selfisolation technicallynolongerboxwine': 748505, 'technicallynolongerboxwine ratapiko': 836217, 'ratapiko new': 697135, 'ha no delivery': 371338, 'delivery slot left': 234531, 'slot left so': 774230, 'left so made': 485641, 'so made ro': 777625, 'made ro from': 507944, 'ro from box': 724380, 'from box wine': 334723, 'box wine and': 137202, 'wine and cranberry': 995765, 'and cranberry juice': 60689, 'cranberry juice desperatetimescallfordesperatemeasures': 214853, 'juice desperatetimescallfordesperatemeasures selfisolation': 467738, 'desperatetimescallfordesperatemeasures selfisolation technicallynolongerboxwine': 238588, 'selfisolation technicallynolongerboxwine ratapiko': 748506, 'technicallynolongerboxwine ratapiko new': 836218, 'ratapiko new zealand': 697136, 'ding': 242992, 'tonic': 924333, 'illusion': 416429, 'ding ding': 242993, 'ding we': 242997, 'we noticed': 972607, 'noticed this': 573496, 'too specifically': 925079, 'specifically tonic': 788292, 'tonic water': 924341, 'water strange': 969174, 'strange hopefully': 812394, 'hopefully people': 403874, 'aren under': 92576, 'the illusion': 857886, 'illusion that': 416430, 'that tonic': 847090, 'tonic will': 924346, 'will actually': 992190, 'actually cure': 30769, 'ding ding we': 242994, 'ding we noticed': 242998, 'we noticed this': 972608, 'noticed this in': 573497, 'this in our': 888052, 'local supermarket too': 498606, 'supermarket too specifically': 823511, 'too specifically tonic': 925080, 'specifically tonic water': 788293, 'tonic water strange': 924344, 'water strange hopefully': 969175, 'strange hopefully people': 812395, 'hopefully people aren': 403875, 'people aren under': 647130, 'aren under the': 92577, 'under the illusion': 940313, 'the illusion that': 857887, 'illusion that tonic': 416432, 'that tonic will': 847091, 'tonic will actually': 924347, 'will actually cure': 992192, 'actually cure covid': 30770, '2qfy2020': 16856, 'qoq': 691580, 'research rubber': 713833, 'rubber glove': 726936, 'glove producer': 352872, 'producer top': 680706, 'top glove': 925584, 'glove record': 352885, 'record better': 704913, 'better 2qfy2020': 128172, '2qfy2020 result': 16857, 'result qoq': 717633, 'qoq without': 691581, 'without much': 1002790, 'much contribution': 544807, 'contribution from': 201935, '19 healthcare': 7486, 'system switch': 831327, 'switch from': 830490, 'from cheaper': 334831, 'cheaper vinyl': 174292, 'vinyl glove': 957473, 'to safer': 913724, 'safer rubber': 730376, 'glove lower': 352763, 'price mean': 675211, 'mean lower': 524542, 'lower input': 505893, 'input cost': 438972, 'research rubber glove': 713834, 'rubber glove producer': 726941, 'glove producer top': 352873, 'producer top glove': 680707, 'top glove record': 925585, 'glove record better': 352886, 'record better 2qfy2020': 704914, 'better 2qfy2020 result': 128173, '2qfy2020 result qoq': 16858, 'result qoq without': 717634, 'qoq without much': 691582, 'without much contribution': 1002791, 'much contribution from': 544808, 'contribution from covid': 201936, 'covid 19 healthcare': 213196, '19 healthcare system': 7490, 'healthcare system switch': 387314, 'system switch from': 831328, 'switch from cheaper': 830491, 'from cheaper vinyl': 334832, 'cheaper vinyl glove': 174293, 'vinyl glove to': 957474, 'glove to safer': 352975, 'to safer rubber': 913725, 'safer rubber glove': 730377, 'rubber glove lower': 726939, 'glove lower oil': 352764, 'oil price mean': 597191, 'price mean lower': 675212, 'mean lower input': 524543, 'lower input cost': 505894, 'input cost more': 438974, 'totnes': 926423, 'of totnes': 592334, 'totnes shop': 926424, 'place offering': 657609, 'offering collection': 595036, 'delivery please': 234347, 'ensure they': 278101, 'list of totnes': 494485, 'of totnes shop': 592335, 'totnes shop and': 926425, 'shop and food': 759846, 'and food place': 63075, 'food place offering': 315855, 'place offering collection': 657610, 'offering collection or': 595037, 'or delivery please': 614946, 'delivery please contact': 234348, 'contact the business': 200220, 'the business in': 850169, 'business in advance': 143876, 'advance to ensure': 32916, 'to ensure they': 905198, 'ensure they are': 278102, 'they are open': 881350, 'shopping cannot': 762279, 'time felt': 896651, 'attack while grocery': 102176, 'while grocery shopping': 986888, 'grocery shopping cannot': 365005, 'shopping cannot remember': 762280, 'last time felt': 480561, 'time felt so': 896652, 'lewisville': 487848, '225': 15293, 'mound': 543389, 'in lewisville': 424683, 'lewisville they': 487852, 'they donated': 882009, 'donated 225': 254310, '225 individual': 15296, 'individual bottle': 435147, '15 large': 3758, 'large container': 479624, 'container for': 200543, 'for refill': 325052, 'refill to': 706555, 'flower mound': 311311, 'mound fire': 543390, 'department thank': 237284, 'you to in': 1021790, 'to in lewisville': 908226, 'in lewisville they': 424684, 'lewisville they donated': 487853, 'they donated 225': 882010, 'donated 225 individual': 254311, '225 individual bottle': 15297, 'individual bottle of': 435148, 'sanitizer and about': 734378, 'and about 15': 57540, 'about 15 large': 24648, '15 large container': 3759, 'large container for': 479625, 'container for refill': 200544, 'for refill to': 325053, 'refill to the': 706556, 'to the flower': 916716, 'the flower mound': 855455, 'flower mound fire': 311312, 'mound fire department': 543391, 'fire department thank': 308070, 'department thank you': 237285, 'dummy': 262145, '8105473545': 22781, 'earn easily': 264783, 'easily just': 265218, 'just by': 468394, 'creating dummy': 215997, 'dummy purchase': 262146, 'purchase list': 689537, 'and earn': 61845, 'earn coin': 264779, 'coin which': 185646, 'can later': 158836, 'later me': 481096, 'me transferred': 523827, 'transferred directly': 929547, 'account give': 28683, 'give missed': 350592, 'missed call': 534227, 'to 8105473545': 899855, '8105473545 and': 22782, 'will set': 994823, 'set your': 753593, 'business live': 144004, 'in 30': 419906, '30 min': 17113, 'min download': 532531, 'download app': 257579, 'app restaurant': 81752, 'earn easily just': 264784, 'easily just by': 265219, 'just by creating': 468397, 'by creating dummy': 152257, 'creating dummy purchase': 215998, 'dummy purchase list': 262147, 'purchase list and': 689538, 'list and earn': 494268, 'and earn coin': 61846, 'earn coin which': 264780, 'coin which can': 185647, 'which can later': 985735, 'can later me': 158837, 'later me transferred': 481097, 'me transferred directly': 523828, 'transferred directly to': 929548, 'directly to your': 243595, 'to your bank': 918953, 'bank account give': 109552, 'account give missed': 28684, 'give missed call': 350593, 'missed call to': 534228, 'call to 8105473545': 156163, 'to 8105473545 and': 899856, '8105473545 and we': 22783, 'we will set': 973906, 'will set your': 994826, 'set your business': 753594, 'your business live': 1023065, 'business live in': 144006, 'live in 30': 495844, 'in 30 min': 419909, '30 min download': 17116, 'min download app': 532532, 'download app restaurant': 257580, 'app restaurant food': 81753, 'restaurant food retail': 716478, 'really maybe': 702409, 'maybe that': 521821, 'do make': 249579, 'big difference': 129755, 'difference but': 241821, 'know wear': 476935, 'thick shit really': 883990, 'shit really maybe': 759203, 'really maybe that': 702410, 'maybe that you': 521826, 'that you and': 847712, 'you and face': 1016986, 'face mask do': 294534, 'mask do make': 518582, 'do make big': 249580, 'make big difference': 509735, 'big difference but': 129756, 'difference but of': 241822, 'but of course': 146636, 'of course you': 582081, 'course you know': 211968, 'you know wear': 1019539, 'know wear mask': 476936, 'own urban': 632282, 'urban farming': 948109, 'farming flourish': 299621, 'flourish in': 311194, 'your own urban': 1025167, 'own urban farming': 632283, 'urban farming flourish': 948110, 'farming flourish in': 299622, 'flourish in lockdown': 311195, 'healthdaynews': 387440, 'smartphone apps': 775518, 'apps might': 83296, 'might track': 531149, 'track slow': 928221, 'slow spread': 774394, '19 thanks': 11140, 'to healthdaynews': 907390, 'healthdaynews for': 387441, 'for including': 322518, 'including my': 432066, 'my quote': 549881, 'smartphone apps might': 775519, 'apps might track': 83297, 'might track slow': 531150, 'track slow spread': 928222, 'slow spread of': 774395, 'covid 19 thanks': 213929, '19 thanks to': 11144, 'thanks to healthdaynews': 842234, 'to healthdaynews for': 907391, 'healthdaynews for including': 387442, 'for including my': 322520, 'including my quote': 432067, 'unfortunately in': 941611, 'any alternative': 78913, 'least try': 484673, 'get another': 346561, 'another provider': 77780, 'provider and': 686684, 'and obviously': 67940, 'obviously we': 578864, 'need access': 554358, 'internet even': 441933, 'so these': 778456, 'pandemic going': 635501, 'yourself for': 1026601, 'for charging': 320021, 'charging these': 173524, 'such slow': 816757, 'slow internet': 774367, 'internet service': 442017, 'unfortunately in my': 941613, 'in my home': 425585, 'my home do': 548685, 'not have any': 569810, 'have any alternative': 379294, 'any alternative to': 78914, 'alternative to at': 49267, 'at least try': 99560, 'least try to': 484674, 'to get another': 906410, 'get another provider': 346564, 'another provider and': 77781, 'provider and obviously': 686686, 'and obviously we': 67947, 'obviously we need': 578865, 'we need access': 972460, 'need access to': 554359, 'to the internet': 916814, 'the internet even': 858382, 'internet even more': 441934, 'even more so': 284377, 'more so these': 540418, 'so these day': 778457, 'these day with': 879903, 'day with the': 228784, '19 pandemic going': 9337, 'pandemic going on': 635502, 'going on you': 355348, 'on you should': 605437, 'ashamed of yourself': 95068, 'of yourself for': 593544, 'yourself for charging': 1026602, 'for charging these': 320023, 'charging these price': 173525, 'these price for': 880531, 'price for such': 674051, 'for such slow': 325976, 'such slow internet': 816758, 'slow internet service': 774368, 'your pet': 1025268, 'pet get': 653405, 'get board': 346682, 'bathroom toiletpaper': 112679, 'toiletpaper quarantinelife': 922381, 'quarantinelife toiletpaperapocalypse': 693035, 'when your pet': 984637, 'your pet get': 1025272, 'pet get board': 653406, 'get board in': 346683, 'board in the': 133647, 'the bathroom toiletpaper': 849337, 'bathroom toiletpaper quarantinelife': 112680, 'toiletpaper quarantinelife toiletpaperapocalypse': 922382, 'trucker working': 932969, 'chain moving': 170933, 'moving to': 544201, 'meet surging': 527584, 'surging consumer': 828411, 'finding it': 307491, 'navigate growing': 553066, 'of challenge': 581261, 'trucker working overtime': 932970, 'overtime to keep': 631647, 'supply chain moving': 824993, 'chain moving to': 170935, 'moving to meet': 544209, 'to meet surging': 910054, 'meet surging consumer': 527585, 'surging consumer demand': 828412, 'consumer demand during': 197129, 'pandemic are finding': 634942, 'are finding it': 86571, 'finding it more': 307495, 'it more difficult': 459668, 'more difficult to': 539040, 'difficult to navigate': 242341, 'to navigate growing': 910488, 'navigate growing list': 553068, 'list of challenge': 494418, 'schneider': 741634, 're adapting': 698181, 'living working': 496490, 'moment md': 535990, 'md mike': 522277, 'mike schneider': 531281, 'schneider retailer': 741639, 'retailer ha': 719170, 'good more': 357397, 'australian work': 103580, 'to socialdistanacing': 914828, 'we re adapting': 972815, 're adapting to': 698184, 'adapting to new': 31348, 'of living working': 585919, 'living working at': 496491, 'the moment md': 860768, 'moment md mike': 535991, 'md mike schneider': 522278, 'mike schneider retailer': 531282, 'schneider retailer ha': 741640, 'retailer ha seen': 719171, 'demand for good': 235432, 'for good more': 321938, 'good more australian': 357398, 'more australian work': 538689, 'australian work and': 103581, 'work and spend': 1004808, 'and spend time': 72090, 'spend time at': 788688, 'due to socialdistanacing': 261959, 'duality': 261449, 'jungian': 468017, 'selfie': 747959, 'to suggest': 915742, 'suggest something': 817532, 'the duality': 853761, 'duality of': 261450, 'of man': 586138, 'man the': 512268, 'the jungian': 858706, 'jungian thing': 468018, 'thing sir': 884746, 'sir weird': 771674, 'weird feeling': 977760, 'feeling myself': 303031, 'myself waiting': 550966, 'sister at': 771717, 'because socialdistancing': 119566, 'socialdistancing selfie': 780667, 'selfie felt': 747962, 'felt might': 303424, 'might take': 531136, 'down quarantine': 257133, 'think wa trying': 885750, 'trying to suggest': 934883, 'to suggest something': 915744, 'suggest something about': 817533, 'something about the': 784833, 'about the duality': 26380, 'the duality of': 853762, 'duality of man': 261451, 'of man the': 586139, 'man the jungian': 512269, 'the jungian thing': 858707, 'jungian thing sir': 468019, 'thing sir weird': 884747, 'sir weird feeling': 771675, 'weird feeling myself': 977761, 'feeling myself waiting': 303032, 'myself waiting in': 550967, 'the car for': 850375, 'car for my': 163088, 'my sister at': 550104, 'sister at the': 771718, 'store because socialdistancing': 806687, 'because socialdistancing selfie': 119568, 'socialdistancing selfie felt': 780668, 'selfie felt might': 747963, 'felt might take': 303425, 'might take it': 531138, 'take it down': 832242, 'it down quarantine': 457695, 'invade': 443556, 'distancing while': 247642, 'go against': 353253, 'against everything': 37431, 'everything society': 288001, 'society taught': 781318, 'taught about': 834886, 'about standing': 26245, 'to invade': 908475, 'invade people': 443559, 'people space': 649513, 'space socialdistanacing': 787163, 'trying to practice': 934841, 'social distancing while': 779768, 'distancing while in': 247643, 'store go against': 807942, 'go against everything': 353254, 'against everything society': 37432, 'everything society taught': 288002, 'society taught about': 781319, 'taught about standing': 834887, 'about standing in': 26246, 'in line we': 424783, 'line we love': 493552, 'we love to': 972311, 'love to invade': 504850, 'to invade people': 908477, 'invade people space': 443560, 'people space socialdistanacing': 649514, 'staff cannot': 792300, 'handle debit': 376190, 'debit credit': 230378, 'credit store': 216516, 'store card': 806869, 'card etc': 163513, 'transmission but': 929733, 'problem touching': 679726, 'touching all': 926655, 'food packaging': 315737, 'packaging which': 633577, 'which also': 985656, 'also touched': 49026, 'touched and': 926597, 'by others': 153469, 'others stranger': 621671, 'so supermarket checkout': 778307, 'supermarket checkout staff': 819670, 'checkout staff cannot': 175012, 'staff cannot handle': 792301, 'cannot handle debit': 161937, 'handle debit credit': 376191, 'debit credit store': 230379, 'credit store card': 216517, 'store card etc': 806870, 'card etc to': 163514, 'etc to reduce': 282837, '19 transmission but': 11545, 'transmission but no': 929734, 'but no problem': 146495, 'no problem touching': 565200, 'problem touching all': 679727, 'touching all that': 926657, 'all that food': 44638, 'that food packaging': 843912, 'food packaging which': 315741, 'packaging which also': 633578, 'which also touched': 985658, 'also touched and': 49027, 'touched and who': 926599, 'and who may': 75592, 'who may also': 989268, 'may also have': 520918, 'also have been': 48324, 'affected by others': 34319, 'by others stranger': 153473, 'covid falling': 214159, 'force canadian': 328354, 'oil to': 597475, 'spending 19': 788709, '19 news': 8774, 'news market': 560599, 'covid falling price': 214160, 'falling price force': 297323, 'price force canadian': 674083, 'force canadian oil': 328355, 'canadian oil to': 160722, 'oil to cut': 597476, 'to cut spending': 903888, 'cut spending 19': 223546, 'spending 19 news': 788710, '19 news market': 8777, 'ioc': 444432, 'exclusive the': 289698, '2020 tokyo': 14670, 'tokyo olympics': 923497, 'olympics will': 598800, 'be postponed': 116486, 'postponed likely': 666813, 'to 2021': 899600, '2021 veteran': 14801, 'veteran ioc': 955717, 'ioc member': 444435, 'member dick': 528056, 'dick pound': 240467, 'pound say': 667402, 'the basis': 849322, 'basis of': 112259, 'information the': 438000, 'the ioc': 858433, 'ioc ha': 444433, 'ha postponement': 371517, 'postponement ha': 666848, 'been decided': 120926, 'decided pound': 230877, 'pound told': 667410, 'exclusive the 2020': 289699, 'the 2020 tokyo': 848027, '2020 tokyo olympics': 14671, 'tokyo olympics will': 923499, 'olympics will be': 598801, 'will be postponed': 992615, 'be postponed likely': 116489, 'postponed likely to': 666814, 'likely to 2021': 492125, 'to 2021 veteran': 899601, '2021 veteran ioc': 14802, 'veteran ioc member': 955718, 'ioc member dick': 444436, 'member dick pound': 528057, 'dick pound say': 240468, 'pound say on': 667403, 'on the basis': 603980, 'the basis of': 849323, 'basis of the': 112262, 'the information the': 858260, 'information the ioc': 438003, 'the ioc ha': 858434, 'ioc ha postponement': 444434, 'ha postponement ha': 371518, 'postponement ha been': 666849, 'ha been decided': 369767, 'been decided pound': 120927, 'decided pound told': 230878, 'trench': 931245, 'don expect': 253498, 'this horrible': 887947, 'horrible pandemic': 404112, 'pandemic without': 637036, 'getting sick': 349270, 'sick at': 768385, 'point supermarket': 662634, 'worker explains': 1006890, 'coronavirus trench': 206967, 'don expect to': 253499, 'expect to get': 290768, 'through this horrible': 894821, 'this horrible pandemic': 887949, 'horrible pandemic without': 404113, 'pandemic without getting': 637037, 'without getting sick': 1002683, 'getting sick at': 349272, 'sick at some': 768387, 'some point supermarket': 783589, 'point supermarket worker': 662637, 'supermarket worker explains': 824019, 'worker explains what': 1006891, 'explains what it': 292250, 'it like in': 459365, 'the coronavirus trench': 851935, 'brenden': 139315, 'brenden me': 139316, 'because were': 119823, 'were lockdown': 979848, 'lockdown here': 499463, 'here due': 392938, 'brenden me want': 139317, 'want to stock': 966131, 'stock food because': 802125, 'food because were': 313718, 'because were lockdown': 119824, 'were lockdown here': 979849, 'lockdown here due': 499466, 'here due to': 392939, 'dgp': 240075, 'karnataka': 470956, 'kind dgp': 474831, 'dgp karnataka': 240076, 'karnataka say': 470963, 'essential shop': 281542, 'shop can': 760015, '24 across': 15557, 'across karnataka': 29365, 'karnataka so': 470965, 'not crowd': 568935, 'crowd just': 219192, 'and evening': 62356, 'evening up': 284924, 'up government': 945029, 'also follow': 48220, 'it kind dgp': 459273, 'kind dgp karnataka': 474832, 'dgp karnataka say': 240077, 'karnataka say grocery': 470964, 'say grocery shop': 738708, 'and food essential': 63042, 'food essential shop': 314386, 'essential shop can': 281546, 'shop can be': 760016, 'can be open': 157652, 'be open 24': 116239, 'open 24 across': 612006, '24 across karnataka': 15558, 'across karnataka so': 29366, 'karnataka so that': 470966, 'do not crowd': 249711, 'not crowd just': 568937, 'crowd just in': 219194, 'the morning and': 860909, 'morning and evening': 541154, 'and evening up': 62357, 'evening up government': 284925, 'up government should': 945031, 'government should also': 360597, 'should also follow': 765503, 'also follow this': 48221, 'follow this it': 312564, 'it will stop': 462444, 'will stop panic': 994999, 'been empty': 121079, 'no hero': 564421, 'hero gram': 394000, 'gram for': 361822, 'is national': 449823, 'falling coronacrisis': 297223, 'coronacrisis panicbuying': 204690, 'come on your': 187454, 'on your supermarket': 605505, 'your supermarket shelf': 1026060, 'have been empty': 379527, 'been empty for': 121080, 'empty for day': 274880, 'for day no': 320577, 'day no hero': 228019, 'no hero gram': 564422, 'hero gram for': 394001, 'gram for you': 361824, 'for you this': 328093, 'you this is': 1021702, 'this is national': 888327, 'is national crisis': 449825, 'crisis and you': 217062, 'you are falling': 1017120, 'are falling coronacrisis': 86461, 'falling coronacrisis panicbuying': 297224, 'everywhere lockdown': 288232, 'lockdown staysafe': 499962, 'staysafe panicbuying': 798861, 'panicbuying supermarket': 639066, 'here to my': 393721, 'to my supermarket': 910440, 'my supermarket worker': 550288, 'worker everywhere lockdown': 1006884, 'everywhere lockdown staysafe': 288233, 'lockdown staysafe panicbuying': 499963, 'staysafe panicbuying supermarket': 798862, 'panicbuying supermarket coronacrisis': 639068, 'morning had': 541276, 'or pickup': 616610, 'pickup available': 655938, 'available all': 104208, 'you those': 1021711, 'those employee': 891960, 'very exhausted': 955146, 'exhausted my': 290160, 'favorite cashier': 300495, 'cashier looked': 166564, 'he hadn': 385064, 'hadn slept': 373860, 'slept in': 773845, 'they keep': 882507, 'keep afloat': 471287, 'afloat and': 34944, 'risk lot': 723672, 'lot 19': 503964, 'to my grocery': 910405, 'this morning had': 888962, 'morning had to': 541277, 'had to no': 373708, 'to no delivery': 910619, 'no delivery or': 563991, 'delivery or pickup': 234287, 'or pickup available': 616612, 'pickup available all': 655939, 'available all of': 104210, 'of you those': 593426, 'you those employee': 1021712, 'those employee are': 891961, 'employee are very': 273632, 'are very exhausted': 91459, 'very exhausted my': 955147, 'exhausted my favorite': 290161, 'my favorite cashier': 548267, 'favorite cashier looked': 300496, 'cashier looked like': 166565, 'looked like he': 502733, 'like he hadn': 490399, 'he hadn slept': 385065, 'hadn slept in': 373861, 'slept in day': 773846, 'in day please': 422018, 'day please thank': 228226, 'thank them they': 841663, 'them they keep': 876418, 'they keep afloat': 882508, 'keep afloat and': 471288, 'afloat and risk': 34945, 'and risk lot': 70556, 'risk lot 19': 723673, 'page will': 633915, 'be for': 114906, 'for exposing': 321338, 'exposing shopkeeper': 292934, 'shopkeeper who': 761201, 'who increase': 989030, 'would also': 1011511, 'also like': 48476, 'include picture': 431608, 'of honest': 584734, 'honest shopkeeper': 403075, 'this page will': 889358, 'page will be': 633916, 'will be for': 992465, 'be for exposing': 114909, 'for exposing shopkeeper': 321339, 'exposing shopkeeper who': 292935, 'shopkeeper who increase': 761203, 'who increase price': 989031, 'increase price of': 433009, 'price of necessity': 675517, 'of necessity during': 586896, '19 pandemic but': 9278, 'pandemic but we': 635061, 'we would also': 973964, 'would also like': 1011513, 'also like to': 48477, 'like to include': 491599, 'to include picture': 908250, 'include picture and': 431609, 'picture and video': 656108, 'and video of': 74957, 'video of honest': 956826, 'of honest shopkeeper': 584736, 'honest shopkeeper who': 403076, 'shopkeeper who care': 761202, 'who care about': 988436, 'care about their': 163807, 'about their community': 26577, 'yes stay': 1015536, 'indoors for': 435399, 'week without': 977270, 'clean water': 180679, 'water again': 968846, 'again hunger': 37029, 'kill depression': 474383, 'depression kill': 237653, 'your antibody': 1022790, 'antibody week': 78413, 'are okay': 88704, 'okay it': 597988, 'virus flu': 958188, 'flu be': 311383, 'wise there': 996696, 'and misinformation': 67061, 'yes stay indoors': 1015537, 'stay indoors for': 797075, 'indoors for week': 435402, 'for week without': 327767, 'week without food': 977272, 'without food and': 1002653, 'food and clean': 313195, 'and clean water': 59937, 'clean water again': 180680, 'water again hunger': 968847, 'again hunger kill': 37030, 'hunger kill depression': 411142, 'kill depression kill': 474384, 'depression kill the': 237654, 'kill the cure': 474513, 'cure for covid': 220739, '19 is your': 8086, 'is your antibody': 454132, 'your antibody week': 1022791, 'antibody week you': 78414, 'week you are': 977295, 'you are okay': 1017184, 'are okay it': 88706, 'okay it virus': 597990, 'it virus flu': 462042, 'virus flu be': 958189, 'flu be wise': 311384, 'be wise there': 118114, 'wise there is': 996697, 'lot of panic': 504245, 'of panic and': 587718, 'panic and misinformation': 637323, 'tip check': 898729, 'sanitizer according': 734312, 'cdc it': 168583, 'have minimum': 381475, 'of 60': 579641, 'alcohol content': 40970, 'content to': 200850, 'tip check your': 898731, 'check your hand': 174732, 'hand sanitizer according': 375288, 'sanitizer according to': 734313, 'to the cdc': 916546, 'the cdc it': 850573, 'cdc it must': 168584, 'it must have': 459710, 'must have minimum': 546702, 'have minimum of': 381476, 'minimum of 60': 533204, 'of 60 alcohol': 579643, '60 alcohol content': 20889, 'alcohol content to': 40973, 'content to be': 200851, 'to be effective': 901231, 'be effective against': 114651, 'unfortunate hand': 941561, 'dispenser ripped': 246148, 'off wall': 594369, 'wall at': 965152, 'at kansa': 99356, 'kansa city': 470805, 'city international': 179211, 'international airport': 441748, 'airport amid': 40084, 'unfortunate hand sanitizer': 941562, 'sanitizer dispenser ripped': 734767, 'dispenser ripped off': 246149, 'ripped off wall': 722707, 'off wall at': 594370, 'wall at kansa': 965153, 'at kansa city': 99357, 'kansa city international': 470806, 'city international airport': 179212, 'international airport amid': 441749, 'airport amid outbreak': 40085, 'mf': 530051, 'you mf': 1019845, 'mf are': 530052, 'are shameless': 90014, 'going up on': 355789, 'up on grocery': 945571, 'on grocery and': 601178, 'grocery and cleaning': 364225, 'supply you mf': 826146, 'you mf are': 1019846, 'mf are shameless': 530053, 'cdn': 168648, 'generic': 345684, 'cdn federal': 168649, 'and provincial': 69716, 'provincial gov': 687210, 'gov ought': 359653, 'use 19': 949003, 'patent act': 643981, 'allow the': 46070, 'the generic': 856207, 'generic manufacture': 345687, 'product needed': 681430, 'cannot ensure': 161778, 'all or': 43764, 'or charge': 614700, 'cdn federal and': 168650, 'federal and provincial': 301951, 'and provincial gov': 69717, 'provincial gov ought': 687211, 'gov ought to': 359654, 'ought to make': 621946, 'clear that they': 181353, 'they will use': 883898, 'will use 19': 995278, 'use 19 of': 949004, '19 of the': 8890, 'of the patent': 591326, 'the patent act': 863384, 'patent act to': 643982, 'to allow the': 900359, 'allow the generic': 46075, 'the generic manufacture': 856208, 'generic manufacture of': 345688, 'manufacture of any': 513382, 'of any and': 580246, 'any and all': 78924, 'and all product': 57886, 'all product needed': 44064, 'product needed to': 681431, 'needed to deal': 556531, '19 virus if': 11810, 'virus if company': 958312, 'company cannot ensure': 190535, 'cannot ensure supply': 161780, 'ensure supply to': 278045, 'supply to all': 825996, 'to all or': 900274, 'all or charge': 43765, 'or charge high': 614702, 'consumer responds': 198782, 'responds team': 715594, 'done ton': 255083, 'of story': 590274, 'story over': 812100, 'so like': 777553, 'share them': 755272, 'many source': 514718, 'source who': 786584, 've helped': 953257, 'helped help': 391075, 'public stay': 688335, 'stay savvy': 797312, 'savvy healthy': 738026, 'healthy 19': 387506, 'at the consumer': 100913, 'the consumer responds': 851585, 'consumer responds team': 198783, 'responds team ha': 715595, 'team ha done': 835654, 'ha done ton': 370423, 'done ton of': 255084, 'ton of story': 924285, 'of story over': 590280, 'story over the': 812101, 'or so like': 617128, 'so like to': 777555, 'like to share': 491622, 'to share them': 914368, 'share them here': 755273, 'them here and': 875847, 'here and thank': 392711, 'and thank the': 73159, 'thank the many': 841644, 'the many source': 860053, 'many source who': 514720, 'source who ve': 786585, 'who ve helped': 989880, 've helped help': 953259, 'helped help the': 391076, 'help the public': 390677, 'the public stay': 864856, 'public stay savvy': 688337, 'stay savvy healthy': 797313, 'savvy healthy 19': 738027, 'rise up': 723049, 'hero your': 394189, 'need read': 555501, 'special article': 787853, 'about situation': 26202, 'rise up and': 723050, 'up and be': 944307, 'and be the': 58772, 'be the hero': 117618, 'the hero your': 857304, 'hero your consumer': 394190, 'your consumer need': 1023323, 'consumer need read': 198196, 'need read our': 555502, 'read our special': 700520, 'our special article': 624857, 'special article about': 787854, 'article about situation': 94237, 'about situation here': 26203, '34 since': 17831, 'january although': 464643, 'consumer spending grocery': 199063, 'spending grocery store': 788820, 'store spending ha': 810275, 'spending ha increased': 788828, 'about 34 since': 24702, '34 since january': 17832, 'since january although': 770674, 'january although the': 464644, 'closetherange': 183557, 'boycottherange': 137370, 'therange': 877897, 'uaz05hc3ev': 937793, 'retweet mate': 720061, 'mate closetherange': 520339, 'closetherange no': 183558, 'ppe no': 668016, 'cleaning no': 180987, 'no screen': 565436, 'screen people': 742715, 'coughing no': 208709, 'distancing essential': 247128, 'essential priced': 281410, 'priced not': 677742, 'essential boycottherange': 280835, 'boycottherange stayhomesavelives': 137372, 'stayhomesavelives therange': 798478, 'therange co': 877898, 'co uaz05hc3ev': 184991, 'please retweet mate': 660412, 'retweet mate closetherange': 720062, 'mate closetherange no': 520340, 'closetherange no ppe': 183559, 'no ppe no': 565165, 'ppe no cleaning': 668017, 'no cleaning no': 563819, 'cleaning no screen': 180988, 'no screen people': 565438, 'screen people coughing': 742716, 'people coughing no': 647552, 'coughing no social': 208711, 'no social distancing': 565547, 'social distancing essential': 779601, 'distancing essential priced': 247129, 'essential priced not': 281411, 'priced not essential': 677743, 'not essential boycottherange': 569213, 'essential boycottherange stayhomesavelives': 280836, 'boycottherange stayhomesavelives therange': 137373, 'stayhomesavelives therange co': 798479, 'therange co uaz05hc3ev': 877899, 'trend have': 931349, 'changed amid': 172429, 'pandemic stockmarket': 636559, 'how consumer trend': 407601, 'consumer trend have': 199376, 'trend have changed': 931350, 'have changed amid': 379931, 'changed amid the': 172430, 'coronavirus pandemic stockmarket': 206490, 'pandemic stockmarket stockmarketcrash': 636560, 'what pandemic': 981993, 'what been': 981092, 'been tight': 122200, 'tight housing': 895825, 'market explains': 516363, 'explains today': 292244, 'today isn': 919729, 'isn stopping': 454676, 'stopping coloradan': 805798, 'coloradan from': 186765, 'selling their': 749483, 'even still': 284607, 'for premium': 324691, 'premium via': 669981, 'what pandemic when': 981994, 'pandemic when it': 636979, 'come to what': 187616, 'to what been': 918508, 'what been tight': 981095, 'been tight housing': 122201, 'tight housing market': 895826, 'housing market explains': 407103, 'market explains today': 516364, 'explains today isn': 292245, 'today isn stopping': 919730, 'isn stopping coloradan': 454677, 'stopping coloradan from': 805799, 'coloradan from selling': 186766, 'from selling their': 337215, 'selling their home': 749487, 'home and some': 400689, 'some are even': 782318, 'are even still': 86279, 'even still going': 284608, 'still going for': 800587, 'going for premium': 355146, 'for premium via': 324692, 'corovid19': 207167, 'store wasn': 811159, 'wasn bad': 967959, 'wa sunday': 963355, 'sunday but': 818178, 'but far': 145697, 'far tissue': 298946, 'towel it': 927339, 'still clean': 800372, 'clean out': 180602, 'out corovid19': 625901, 'so today at': 778548, 'today at the': 919287, 'grocery store wasn': 365933, 'store wasn bad': 811160, 'wasn bad it': 967960, 'bad it wa': 107915, 'it wa sunday': 462203, 'wa sunday but': 963356, 'sunday but far': 818179, 'but far tissue': 145698, 'far tissue paper': 298947, 'paper towel it': 640998, 'towel it still': 927340, 'it still clean': 461247, 'still clean out': 800373, 'clean out corovid19': 180604, 'indiaunderlockdown': 434957, 'davanagere': 226953, 'exorbitantly': 290432, 'indiaunderlockdown low': 434958, 'low footfall': 505280, 'footfall witnessed': 318545, 'witnessed at': 1003136, 'at market': 99679, 'in davanagere': 421998, 'davanagere the': 226954, 'fix the': 309752, 'vegetable official': 954049, 'against vendor': 37720, 'vendor if': 954379, 'they charge': 881744, 'charge exorbitantly': 173226, 'indiaunderlockdown low footfall': 434959, 'low footfall witnessed': 505281, 'footfall witnessed at': 318546, 'witnessed at market': 1003137, 'at market in': 99684, 'market in davanagere': 516554, 'in davanagere the': 421999, 'davanagere the district': 226955, 'the district administration': 853429, 'district administration ha': 248348, 'administration ha taken': 32475, 'step to fix': 799649, 'to fix the': 905993, 'fix the price': 309753, 'of vegetable official': 592763, 'vegetable official to': 954050, 'official to take': 595950, 'action against vendor': 29941, 'against vendor if': 37721, 'vendor if they': 954380, 'if they charge': 415100, 'they charge exorbitantly': 881745, 'frying': 339302, 'and following': 63017, 'following close': 312697, 'close behind': 182567, 'behind are': 124596, 'are frying': 86709, 'frying they': 339303, 'won talk': 1003920, 'out and following': 625661, 'and following close': 63018, 'following close behind': 312698, 'close behind are': 182568, 'behind are frying': 124597, 'are frying they': 86710, 'frying they won': 339305, 'they won talk': 883913, 'won talk about': 1003921, 'because they know': 119707, 'they know it': 882527, 'know it true': 476547, 're calling': 698405, 'no patent': 565080, 'patent or': 643994, 'or profiteering': 616720, 'drug test': 261104, 'and vaccine': 74829, 'vaccine rationing': 951756, 'rationing because': 697793, 'and insufficient': 65296, 'insufficient supply': 440609, 'will prolong': 994485, 'prolong the': 683616, 'we re calling': 972838, 're calling for': 698407, 'calling for no': 156555, 'for no patent': 323892, 'no patent or': 565081, 'patent or profiteering': 643995, 'or profiteering on': 616722, 'profiteering on drug': 683075, 'on drug test': 600430, 'drug test and': 261105, 'test and vaccine': 838920, 'and vaccine rationing': 74835, 'vaccine rationing because': 951757, 'rationing because of': 697794, 'high price and': 395231, 'price and insufficient': 672446, 'and insufficient supply': 65298, 'insufficient supply will': 440611, 'supply will prolong': 826114, 'will prolong the': 994486, 'are imagine': 87306, 'imagine most': 416757, 'most place': 542635, 'same if': 733118, 'extra personal': 293606, 'ppe in': 667976, 'particular mask': 642621, 'sanitizer please': 735552, 'your healthcare': 1024280, 'system help': 831197, 'help now': 390149, 'it later': 459308, 'later plz': 481110, 'plz rt': 661833, 'you are imagine': 1017147, 'are imagine most': 87307, 'imagine most place': 416758, 'most place are': 542636, 'place are the': 657338, 'the same if': 866244, 'same if you': 733119, 'have any extra': 379302, 'any extra personal': 79207, 'extra personal protection': 293607, 'equipment ppe in': 279808, 'ppe in particular': 667980, 'in particular mask': 426534, 'particular mask and': 642622, 'hand sanitizer please': 375536, 'sanitizer please donate': 735553, 'please donate to': 659931, 'donate to your': 254274, 'to your healthcare': 918991, 'your healthcare system': 1024282, 'healthcare system help': 387310, 'system help now': 831198, 'help now so': 390154, 'now so we': 575854, 'need it later': 555093, 'it later plz': 459309, 'later plz rt': 481111, 'plz rt 19': 661834, 'start tackling': 794531, 'tackling selfish': 831650, 'selfish customer': 748065, 'customer behaviour': 222182, 'during by': 262491, 'by limiting': 153053, 'limiting online': 492839, 'slot to': 774277, 'per customer': 650772, 'at any': 98019, 'time clearly': 896484, 'clearly people': 181541, 'are block': 84993, 'block booking': 132769, 'booking them': 134749, 'them making': 876004, 'making availability': 510971, 'availability impossible': 104145, 'impossible for': 419374, 'for sensible': 325487, 'sensible sh': 750654, 'start tackling selfish': 794532, 'tackling selfish customer': 831651, 'selfish customer behaviour': 748066, 'customer behaviour during': 222184, 'behaviour during by': 124405, 'during by limiting': 262492, 'by limiting online': 153054, 'limiting online shopping': 492840, 'shopping slot to': 763910, 'slot to one': 774280, 'one per customer': 606847, 'per customer at': 650775, 'customer at any': 222142, 'at any one': 98027, 'any one time': 79560, 'one time clearly': 607253, 'time clearly people': 896485, 'clearly people are': 181542, 'people are block': 646938, 'are block booking': 84994, 'block booking them': 132770, 'booking them making': 134750, 'them making availability': 876005, 'making availability impossible': 510972, 'availability impossible for': 104146, 'impossible for sensible': 419376, 'for sensible sh': 325488, 'pricewar': 677901, 'price closed': 673151, 'closed high': 183157, 'high come': 394962, 'come weekend': 187662, 'weekend brent': 977325, 'crude closed': 219513, 'closed at': 183002, 'at 34': 97621, '34 11': 17795, '11 per': 2576, 'barrel gain': 111225, 'gain more': 342796, 'war ending': 966422, 'ending pricewar': 276196, 'pricewar marketcrash': 677902, 'marketcrash trump': 517427, 'trump oil': 933734, 'oil brent': 596653, 'brent saudiarabia': 139353, 'saudiarabia saudiaramco': 737363, 'saudiaramco barrel': 737374, 'barrel russia': 111276, 'russia poll': 728539, 'oil price closed': 597079, 'price closed high': 673154, 'closed high come': 183158, 'high come weekend': 394963, 'come weekend brent': 187663, 'weekend brent crude': 977326, 'brent crude closed': 139329, 'crude closed at': 219514, 'closed at 34': 183004, 'at 34 11': 97622, '34 11 per': 17796, '11 per barrel': 2577, 'per barrel gain': 650697, 'barrel gain more': 111226, 'gain more than': 342797, 'more than is': 540635, 'than is the': 840794, 'price war ending': 677356, 'war ending pricewar': 966423, 'ending pricewar marketcrash': 276197, 'pricewar marketcrash trump': 677903, 'marketcrash trump oil': 517428, 'trump oil brent': 933735, 'oil brent saudiarabia': 596654, 'brent saudiarabia saudiaramco': 139354, 'saudiarabia saudiaramco barrel': 737365, 'saudiaramco barrel russia': 737375, 'barrel russia poll': 111277, 'watermelon': 969294, 'harrow': 378525, 'weald': 974137, 'well managed': 978381, 'get watermelon': 348604, 'watermelon at': 969295, 'at waitrose': 101468, 'waitrose in': 964455, 'in harrow': 423557, 'harrow weald': 378531, 'weald today': 974138, 'today which': 920523, 'nice no': 562440, 'no milk': 564770, 'bread egg': 138449, 'roll aisle': 725160, 'wa completely': 961843, 'completely empty': 192277, 'empty usual': 275219, 'usual toiletpaper': 951046, 'toiletpaperpanic supermarket': 923255, 'well managed to': 978382, 'to get watermelon': 906640, 'get watermelon at': 348605, 'watermelon at waitrose': 969296, 'at waitrose in': 101469, 'waitrose in harrow': 964457, 'in harrow weald': 423558, 'harrow weald today': 378532, 'weald today which': 974139, 'today which wa': 920524, 'which wa nice': 986447, 'wa nice no': 962706, 'nice no milk': 562441, 'no milk bread': 564771, 'milk bread egg': 531598, 'bread egg and': 138450, 'egg and the': 269770, 'and the toilet': 73619, 'toilet roll aisle': 921548, 'roll aisle wa': 725165, 'aisle wa completely': 40419, 'wa completely empty': 961845, 'completely empty usual': 192283, 'empty usual toiletpaper': 275220, 'usual toiletpaper toiletpapercrisis': 951047, 'toiletpapercrisis toiletpaperpanic supermarket': 923114, 'albertsons': 40845, '1u': 12840, 'outbreak washington': 628786, 'and 38': 57460, '38 have': 18130, 'reached an': 700033, 'an agreement': 55193, 'agreement and': 38768, 'and understanding': 74639, 'understanding with': 940903, 'with safeway': 1000546, 'safeway and': 730829, 'and albertsons': 57827, 'albertsons that': 40855, 'should better': 765775, 'better protect': 128429, 'support grocery': 826547, 'employee 1u': 273507, '19 outbreak washington': 9203, 'outbreak washington state': 628787, 'washington state and': 967804, 'state and 38': 795354, 'and 38 have': 57461, '38 have reached': 18131, 'have reached an': 382166, 'reached an agreement': 700034, 'an agreement and': 55194, 'agreement and understanding': 38769, 'and understanding with': 74643, 'understanding with safeway': 940905, 'with safeway and': 1000548, 'safeway and albertsons': 730830, 'and albertsons that': 57828, 'albertsons that should': 40856, 'that should better': 846284, 'should better protect': 765776, 'better protect and': 128430, 'protect and support': 684784, 'and support grocery': 72839, 'support grocery store': 826549, 'store employee 1u': 807451, 'cbsnews': 168383, 'make home': 509985, 'sanitizer which': 736076, 'the trending': 869970, 'trending news': 931553, 'news cbsnews': 560303, 'to make home': 909676, 'make home made': 509986, 'hand sanitizer which': 375662, 'sanitizer which is': 736079, 'which is effective': 986005, 'is effective against': 447451, 'effective against the': 269212, 'against the trending': 37683, 'the trending news': 869971, 'trending news cbsnews': 931554, 'encountering': 275564, 'ever business': 285237, 'school close': 741722, 'outbreak demand': 628164, 'growing at': 367127, 'at rapid': 100252, 'rapid rate': 696925, 'are encountering': 86191, 'encountering higher': 275565, 'higher cost': 395557, 'and longer': 66355, 'longer delivery': 501964, 'time through': 897930, 'our supplier': 625033, 'supplier please': 824590, 'make donation': 509855, 'donation today': 254721, 'bank need your': 110028, 'your help now': 1024307, 'help now more': 390152, 'than ever business': 840573, 'ever business and': 285238, 'business and school': 143328, 'and school close': 71073, 'school close due': 741724, '19 outbreak demand': 9114, 'outbreak demand for': 628165, 'food is growing': 315127, 'is growing at': 448232, 'growing at rapid': 367128, 'at rapid rate': 100253, 'rapid rate we': 696926, 'rate we are': 697405, 'we are encountering': 970539, 'are encountering higher': 86192, 'encountering higher cost': 275566, 'higher cost and': 395558, 'cost and longer': 207861, 'and longer delivery': 66357, 'longer delivery time': 501965, 'delivery time through': 234645, 'time through our': 897931, 'through our supplier': 894620, 'our supplier please': 625035, 'supplier please make': 824592, 'please make donation': 660219, 'make donation today': 509859, 'coronaupdates': 205334, 'leftist': 485765, 'umarakmalquotes': 939217, 'dr wash': 258122, 'wash sanitizer': 967535, 'hand coronaupdates': 374881, 'coronaupdates meme': 205336, 'meme english': 528312, 'english liberal': 277057, 'liberal leftist': 488013, 'leftist umarakmalquotes': 485768, 'dr wash sanitizer': 258123, 'wash sanitizer with': 967536, 'sanitizer with your': 736144, 'with your hand': 1002203, 'your hand coronaupdates': 1024180, 'hand coronaupdates meme': 374882, 'coronaupdates meme english': 205337, 'meme english liberal': 528313, 'english liberal leftist': 277058, 'liberal leftist umarakmalquotes': 488014, 'potable': 666895, 'wud': 1013440, 'watercrisis': 969279, 'il shocked': 416072, 'shocked if': 759573, 'if in': 414253, 'we told': 973547, 'be water': 118064, 'water crisis': 968956, 'crisis price': 217900, 'for potable': 324647, 'potable water': 666896, 'reason they': 703005, 'give wud': 350844, 'wud be': 1013441, 'be we': 118069, 'we wasted': 973758, 'wasted too': 968271, 'much water': 545433, 'water during': 968969, 'the cornavirusoutbreak': 851739, 'cornavirusoutbreak so': 203617, 'be ready': 116694, 'ready water': 700993, 'water watercrisis': 969250, 'watercrisis soon': 969280, 'il shocked if': 416073, 'shocked if in': 759574, 'if in the': 414258, 'the future we': 856095, 'future we told': 342517, 'we told there': 973548, 'told there will': 923726, 'will be water': 992767, 'be water crisis': 118065, 'water crisis price': 968957, 'crisis price for': 217902, 'price for potable': 674027, 'for potable water': 324648, 'potable water will': 666897, 'water will go': 969261, 'go up the': 354440, 'up the reason': 946205, 'the reason they': 865278, 'reason they will': 703009, 'they will give': 883852, 'will give wud': 993535, 'give wud be': 350845, 'wud be we': 1013442, 'be we wasted': 118071, 'we wasted too': 973759, 'wasted too much': 968272, 'too much water': 924954, 'much water during': 545434, 'water during the': 968970, 'during the cornavirusoutbreak': 263100, 'the cornavirusoutbreak so': 851740, 'cornavirusoutbreak so be': 203618, 'so be ready': 776606, 'be ready water': 116700, 'ready water watercrisis': 700994, 'water watercrisis soon': 969251, 'ho': 398728, 'latest shock': 481548, 'chain that': 171159, 'but 19': 145027, 'being under': 125997, 'under prepared': 940198, 'for risk': 325240, 'risk say': 723861, 'say associate': 738441, 'professor william': 682598, 'william ho': 995432, 'ho read': 398739, 'coronavirus pandemic is': 206468, 'pandemic is only': 635787, 'only the latest': 611268, 'the latest shock': 859145, 'latest shock to': 481549, 'shock to supply': 759531, 'to supply chain': 915876, 'supply chain that': 825048, 'chain that stock': 171163, 'that stock our': 846493, 'stock our supermarket': 802605, 'supermarket shelf but': 822435, 'shelf but 19': 756899, 'but 19 is': 145028, 'up call to': 944569, 'call to business': 156166, 'business in term': 143904, 'term of the': 838228, 'of the cost': 590899, 'the cost of': 851986, 'cost of being': 208039, 'of being under': 580663, 'being under prepared': 125998, 'under prepared for': 940199, 'prepared for risk': 670201, 'for risk say': 325242, 'risk say associate': 723862, 'say associate professor': 738442, 'associate professor william': 96887, 'professor william ho': 682599, 'william ho read': 995433, 'ho read more': 398740, 'earth where': 265016, 'where now': 985061, 'now ventilator': 576297, 'ventilator are': 954534, 'are made': 87956, 'by ppe': 153635, 'ppe medical': 668004, 'medical vest': 526496, 'vest by': 955683, 'only country on': 610281, 'country on earth': 210936, 'on earth where': 600476, 'earth where now': 265017, 'where now ventilator': 985062, 'now ventilator are': 576298, 'ventilator are made': 954536, 'are made by': 87957, 'made by ppe': 507673, 'by ppe medical': 153637, 'ppe medical vest': 668005, 'medical vest by': 526497, 'vest by ppe': 955684, 'by ppe mask': 153636, 'ppe mask by': 667998, 'mask by and': 518504, 'by and hand': 151839, 'sanitizer by 19': 734618, 'rise make': 722932, 'your guard': 1024143, 'guard please': 367828, 'important article': 418741, 'article it': 94375, 'really save': 702539, 'save someone': 737642, 'someone from': 784472, 'from becoming': 334654, 'victim 19': 956453, 'the rise make': 865857, 'rise make sure': 722933, 'sure you know': 827863, 'know what to': 476983, 'for and be': 319318, 'and be on': 58761, 'be on your': 116218, 'on your guard': 605471, 'your guard please': 1024144, 'guard please share': 367829, 'share this important': 755282, 'this important article': 888020, 'important article it': 418742, 'article it could': 94376, 'it could really': 457368, 'could really save': 209574, 'really save someone': 702540, 'save someone from': 737643, 'someone from becoming': 784473, 'from becoming victim': 334656, 'becoming victim 19': 120350, 'health professional': 386764, 'professional around': 682411, '19 meanwhile': 8601, 'meanwhile pharmacist': 525022, 'pharmacist in': 654149, 'in naija': 425659, 'naija are': 551436, 'of medicine': 586410, 'medicine that': 526898, 'help save': 390481, 'life saying': 489023, 'saying like': 739634, 'just business': 468378, 'health professional around': 386765, 'professional around the': 682412, 'world are doing': 1009312, 'are doing everything': 85895, 'doing everything they': 252392, 'everything they can': 288047, 'they can to': 881684, 'can to contain': 160004, 'covid 19 meanwhile': 213418, '19 meanwhile pharmacist': 8604, 'meanwhile pharmacist in': 525023, 'pharmacist in naija': 654150, 'in naija are': 425660, 'naija are taking': 551437, 'the situation by': 867245, 'situation by raising': 772212, 'by raising the': 153714, 'price of medicine': 675504, 'of medicine that': 586415, 'medicine that can': 526900, 'can help save': 158652, 'help save life': 390483, 'save life saying': 737555, 'life saying like': 489024, 'saying like it': 739635, 'like it just': 490545, 'it just business': 459216, 'el': 270439, 'plz see': 661835, 'my post': 549819, 'pandemic collapse': 635165, 'people survive': 649705, 'green zone': 363719, 'zone el': 1027754, 'plz see my': 661836, 'see my post': 745459, 'my post on': 549821, '19 pandemic collapse': 9296, 'pandemic collapse of': 635168, 'iraqi people survive': 444798, 'people survive the': 649707, 'survive the demise': 829247, 'the green zone': 856781, 'green zone el': 363720, 'ryvita': 728838, 'move next': 543697, 'next door': 561341, 'me spreading': 523528, 'spreading shoe': 791038, 'shoe polish': 759682, 'polish on': 663584, 'on ryvita': 603245, 'ryvita co': 728839, 'co that': 184972, 'move next door': 543698, 'next door to': 561346, 'door to the': 255758, 'supermarket near me': 821574, 'near me spreading': 553542, 'me spreading shoe': 523529, 'spreading shoe polish': 791039, 'shoe polish on': 759683, 'polish on ryvita': 663585, 'on ryvita co': 603246, 'ryvita co that': 728840, 'co that the': 184973, 'only thing they': 611319, 'thing they have': 884849, 'they have left': 882337, 'have left on': 381297, 'left on their': 485592, 'their shelf coronacrisis': 874681, '250ml': 16050, '105': 2255, '0330': 881, '124': 3060, '1733': 4435, 'sanitiser in': 733975, 'in litre': 424798, 'litre or': 495173, 'or 250ml': 614189, '250ml next': 16053, '99 250ml': 23756, '250ml 105': 16051, '105 99': 2256, '99 litre': 23855, 'litre pallet': 495175, 'pallet quantity': 634595, 'quantity available': 691912, 'order call': 618100, 'call now': 156008, 'on 0330': 598973, '0330 124': 882, '124 1733': 3061, '1733 or': 4436, 'or mail': 616028, 'mail sale': 508650, 'sale com': 732126, 'hand sanitiser in': 375236, 'sanitiser in stock': 733979, 'stock now available': 802507, 'now available in': 574158, 'available in litre': 104446, 'in litre or': 424799, 'litre or 250ml': 495174, 'or 250ml next': 614190, '250ml next day': 16054, 'day delivery price': 227519, 'delivery price 99': 234363, 'price 99 250ml': 672188, '99 250ml 105': 23757, '250ml 105 99': 16052, '105 99 litre': 2257, '99 litre pallet': 23858, 'litre pallet quantity': 495176, 'pallet quantity available': 634596, 'quantity available to': 691913, 'available to order': 104652, 'to order call': 911065, 'order call now': 618103, 'call now on': 156011, 'now on 0330': 575415, 'on 0330 124': 598974, '0330 124 1733': 883, '124 1733 or': 3062, '1733 or mail': 4437, 'or mail sale': 616029, 'mail sale com': 508651, 'amanda': 50591, 'prevents': 671929, 'increasin': 433542, 'hi amanda': 394594, 'amanda we': 50596, 'strongly condemn': 814223, 'condemn price': 193359, 'gouging and': 359243, 'and posted': 69237, 'posted price': 666566, 'we placed': 972709, 'placed chain': 657878, 'chain wide': 171238, 'wide price': 991743, 'change hold': 172083, 'on over': 602654, 'over 900': 629941, '900 item': 23385, 'march which': 515532, 'which prevents': 986234, 'prevents item': 671937, 'from increasin': 336036, 'hi amanda we': 394595, 'amanda we strongly': 50597, 'we strongly condemn': 973436, 'strongly condemn price': 814224, 'condemn price gouging': 193360, 'price gouging and': 674257, 'gouging and posted': 359250, 'and posted price': 69240, 'posted price are': 666567, 'price are our': 672710, 'are our normal': 88866, 'our normal price': 624090, 'normal price in': 567274, 'price in response': 674725, 'pandemic we placed': 636946, 'we placed chain': 972710, 'placed chain wide': 657879, 'chain wide price': 171239, 'wide price change': 991744, 'price change hold': 673108, 'change hold on': 172084, 'hold on over': 399978, 'on over 900': 602655, 'over 900 item': 629942, '900 item the': 23386, 'item the week': 463708, 'the week of': 871306, 'of march which': 586218, 'march which prevents': 515533, 'which prevents item': 986235, 'prevents item from': 671938, 'item from increasin': 463284, 'shutter': 768194, 'city shutter': 179362, 'shutter business': 768195, 'stop spreading': 805055, 'spreading there': 791064, 'provide income': 686362, 'income for': 432340, 'don provide': 253838, 'spread amp': 790400, 'amp tank': 54621, 'tank our': 834221, 'city shutter business': 179363, 'shutter business to': 768196, 'business to stop': 144558, 'to stop spreading': 915577, 'stop spreading there': 805059, 'spreading there is': 791065, 'is no plan': 449957, 'no plan in': 565120, 'plan in place': 658152, 'in place to': 426771, 'place to provide': 657764, 'to provide income': 912407, 'provide income for': 686363, 'income for those': 432346, 'for those out': 327128, 'of work if': 593253, 'work if we': 1005282, 'we don provide': 971391, 'don provide relief': 253839, 'relief for the': 709345, 'most vulnerable group': 542879, 'vulnerable group of': 960986, 'group of our': 366798, 'of our nation': 587519, 'our nation we': 623986, 'nation we will': 552373, 'we will allow': 973832, 'will allow the': 992244, 'allow the virus': 46078, 'virus to spread': 958927, 'to spread amp': 915051, 'spread amp tank': 790401, 'amp tank our': 54622, 'tank our consumer': 834222, 'our consumer driven': 622531, 'girlfriend': 350305, 'my girlfriend': 548502, 'girlfriend who': 350318, 'is japanese': 449090, 'japanese asked': 464784, 'she should': 756341, 'be worried': 118149, 'that someone': 846405, 'will punch': 994528, 'punch her': 689158, 'face if': 294464, 'la so': 478215, 'went with': 979235, 'her ridiculous': 392331, 'ridiculous that': 721612, 'this thought': 890582, 'thought ha': 893068, 'even cross': 283986, 'cross her': 219007, 'her mind': 392194, 'mind chinavirus': 532647, 'my girlfriend who': 548506, 'girlfriend who is': 350319, 'who is japanese': 989086, 'is japanese asked': 449091, 'japanese asked me': 464785, 'me if she': 522941, 'if she should': 414780, 'she should be': 756343, 'should be worried': 765773, 'be worried that': 118151, 'worried that someone': 1010586, 'that someone will': 846407, 'someone will punch': 784780, 'will punch her': 994529, 'punch her in': 689159, 'her in the': 392141, 'the face if': 854803, 'face if she': 294465, 'if she wore': 414785, 'wore her mask': 1004660, 'in la so': 424565, 'la so went': 478216, 'so went with': 778704, 'went with her': 979236, 'with her ridiculous': 998777, 'her ridiculous that': 392332, 'ridiculous that this': 721615, 'that this thought': 847003, 'this thought ha': 890583, 'thought ha to': 893069, 'ha to even': 372298, 'to even cross': 905286, 'even cross her': 283987, 'cross her mind': 219008, 'her mind chinavirus': 392195, 'etiquette': 283149, 'store etiquette': 807634, 'etiquette in': 283152, 'grocery store etiquette': 365377, 'store etiquette in': 807635, 'etiquette in the': 283153, 'age of covid': 37864, 'just cause': 468446, 'cause bored': 167502, 'online shopping just': 609163, 'shopping just cause': 763115, 'just cause bored': 468447, 'latest possible': 481499, 'possible positive': 665739, 'test involves': 839035, 'involves retail': 444382, 'on rainbow': 603069, 'latest possible positive': 481500, 'possible positive test': 665740, 'positive test involves': 665452, 'test involves retail': 839036, 'involves retail store': 444383, 'retail store on': 718671, 'store on rainbow': 809203, 'running smallbusiness': 728067, 'smallbusiness you': 775238, 'hoard the': 398878, 'important asset': 418744, 'asset you': 96493, 'no do': 564031, 'mean toiletpaper': 524749, 'toiletpaper mean': 922228, 'mean cash': 524389, 'this urge': 890943, 'these action': 879574, 'action right': 30126, 'away thursdaymotivation': 106067, 'you re running': 1020728, 're running smallbusiness': 699408, 'running smallbusiness you': 728068, 'smallbusiness you need': 775239, 'to hoard the': 907880, 'hoard the most': 398881, 'most important asset': 542397, 'important asset you': 418745, 'asset you have': 96494, 'have no do': 381622, 'no do not': 564032, 'do not mean': 249784, 'not mean toiletpaper': 570557, 'mean toiletpaper mean': 524750, 'toiletpaper mean cash': 922229, 'mean cash to': 524390, 'cash to do': 166355, 'do this urge': 250372, 'this urge you': 890944, 'take these action': 832700, 'these action right': 879576, 'action right away': 30127, 'right away thursdaymotivation': 721793, 'idc': 412987, 'see someone': 745727, 'or costco': 614837, 'costco gonna': 208232, 'gonna call': 356490, 'call them': 156146, 'out idc': 626354, 'idc groceryshopping': 412988, 've decided that': 953030, 'decided that if': 230888, 'that if see': 844422, 'if see someone': 414765, 'see someone hoarding': 745731, 'someone hoarding supply': 784506, 'hoarding supply at': 399564, 'store or costco': 809321, 'or costco gonna': 614838, 'costco gonna call': 208233, 'gonna call them': 356491, 'call them out': 156149, 'them out idc': 876127, 'out idc groceryshopping': 626355, 'psa from': 687402, 'worker stop': 1007832, 'replace toilet': 711593, 'paper real': 640661, 'real baby': 701045, 'baby need': 106672, 'them more': 876030, 'more con': 538849, 'psa from grocery': 687404, 'store worker stop': 811590, 'worker stop buying': 1007833, 'stop buying baby': 804529, 'buying baby wipe': 149983, 'baby wipe to': 106743, 'wipe to replace': 996396, 'to replace toilet': 913252, 'replace toilet paper': 711594, 'toilet paper real': 921414, 'paper real baby': 640662, 'real baby need': 701046, 'baby need them': 106673, 'need them more': 555779, 'them more con': 876031, 'hotchick': 405092, 'badasswoman': 108101, 'dirtypeople': 243775, 'filth': 305783, 'living above': 496311, 'above your': 27118, 'your mean': 1024800, 'mean corona': 524399, 'toiletpaper bidet': 921807, 'bidet comedy': 129556, 'comedy hotchick': 187750, 'hotchick badasswoman': 405093, 'badasswoman washyourhands': 108102, 'washyourhands lockdown': 967880, 'lockdown debt': 499308, 'debt cleanliness': 230436, 'cleanliness dirtypeople': 181151, 'dirtypeople filth': 243777, 'filth germ': 305786, 'germ virus': 346171, 'virus antiviral': 957953, 'antiviral quarantine': 78597, 'quarantine mentalhealth': 692371, 'mentalhealth hygiene': 528679, 'not living above': 570442, 'living above your': 496312, 'above your mean': 27119, 'your mean corona': 1024801, 'mean corona 19': 524400, 'corona 19 toiletpaper': 203785, '19 toiletpaper bidet': 11487, 'toiletpaper bidet comedy': 921809, 'bidet comedy hotchick': 129557, 'comedy hotchick badasswoman': 187751, 'hotchick badasswoman washyourhands': 405094, 'badasswoman washyourhands lockdown': 108103, 'washyourhands lockdown debt': 967881, 'lockdown debt cleanliness': 499309, 'debt cleanliness dirtypeople': 230437, 'cleanliness dirtypeople filth': 181152, 'dirtypeople filth germ': 243778, 'filth germ virus': 305787, 'germ virus antiviral': 346172, 'virus antiviral quarantine': 957954, 'antiviral quarantine mentalhealth': 78598, 'quarantine mentalhealth hygiene': 692372, 'situation regarding': 772459, 'virus hustler': 958304, 'hustler hollywood': 411838, 'hollywood ha': 400456, 'of helping': 584555, 'spread closure': 790470, 'closure will': 184067, 'begin on': 123544, 'sunday 22': 818153, '22 at': 15183, '23 until': 15438, 'until 31': 943656, '31 learn': 17581, 'continue to monitor': 201222, 'monitor the situation': 537324, 'the situation regarding': 867273, 'situation regarding the': 772461, 'regarding the covid': 707285, '19 virus hustler': 11809, 'virus hustler hollywood': 958305, 'hustler hollywood ha': 411839, 'hollywood ha decided': 400457, 'ha decided to': 370320, 'decided to temporarily': 230935, 'to temporarily close': 916356, 'temporarily close our': 837452, 'close our retail': 182754, 'store in hope': 808314, 'hope of helping': 403568, 'of helping to': 584560, 'helping to mitigate': 391531, 'the spread closure': 867620, 'spread closure will': 790471, 'closure will begin': 184069, 'will begin on': 992809, 'begin on sunday': 123545, 'on sunday 22': 603748, 'sunday 22 at': 818154, '22 at 23': 15186, 'at 23 until': 97538, '23 until 31': 15439, 'until 31 learn': 943657, '31 learn more': 17582, 'testing support': 839653, 'support following': 826496, 'following more': 312794, 'than 60': 840272, '60 slide': 21004, 'slide in': 773902, 'in since': 427965, 'market is testing': 516645, 'is testing support': 452620, 'testing support following': 839654, 'support following more': 826497, 'following more than': 312795, 'more than 60': 540571, 'than 60 slide': 840277, '60 slide in': 21005, 'slide in since': 773905, 'in since the': 427966, 'the year due': 872154, 'the on global': 862167, 'on global demand': 601103, 'what the first': 982316, 'first thing you': 309082, 'thing you re': 885040, 'to do once': 904536, 'do once this': 249928, '221': 15266, 'have hear': 380913, 'hear our': 387971, 'our story': 624961, 'latest show': 481550, 'show episode': 766937, 'episode 221': 279507, '221 is': 15267, 'now link': 575219, 'in bio': 420843, 'bio featuring': 131136, 'featuring shopping': 301606, 'shopping story': 763993, 'in kentucky': 424467, 'kentucky and': 472844, 'and reporting': 70274, 'coast more': 185109, 'did you go': 240929, 'we have hear': 971832, 'have hear our': 380914, 'hear our story': 387973, 'our story in': 624963, 'story in our': 812013, 'our latest show': 623679, 'latest show episode': 481551, 'show episode 221': 766938, 'episode 221 is': 279508, '221 is available': 15268, 'is available now': 445926, 'available now link': 104519, 'now link in': 575220, 'link in bio': 493854, 'in bio featuring': 420847, 'bio featuring shopping': 131137, 'featuring shopping story': 301607, 'shopping story in': 763994, 'story in kentucky': 812010, 'in kentucky and': 424468, 'kentucky and reporting': 472845, 'and reporting from': 70275, 'from the west': 337926, 'the west coast': 871394, 'west coast more': 980485, 'faceshields': 295198, 'preventive': 671909, 'wear faceshields': 974322, 'faceshields while': 295201, 'while serving': 987248, 'customer preventive': 222710, 'preventive measure': 671916, 'cashier in retail': 166551, 'retail store wear': 718724, 'store wear faceshields': 811190, 'wear faceshields while': 974323, 'faceshields while serving': 295202, 'while serving their': 987249, 'serving their customer': 753224, 'their customer preventive': 872957, 'customer preventive measure': 222711, 'preventive measure against': 671918, 'crazy on': 215365, 'supermarket floor': 820336, 'floor for': 310796, 'big sweep': 130043, 'sweep supermarket': 830164, 'sweep via': 830181, 'via wait': 956359, 'wait walmart': 964251, 'starting one': 794989, 'out bullshit': 625780, 'bullshit so': 142511, 'sweep now': 830141, 'we gonna': 971662, 'be timed': 117719, 'timed next': 898442, 'next is': 561413, 'there prize': 878961, 'going crazy on': 355098, 'crazy on the': 215366, 'the supermarket floor': 868595, 'supermarket floor for': 820337, 'floor for the': 310799, 'for the big': 326322, 'the big sweep': 849627, 'big sweep supermarket': 130044, 'sweep supermarket sweep': 830166, 'supermarket sweep via': 823113, 'sweep via wait': 830182, 'via wait walmart': 956360, 'wait walmart is': 964252, 'walmart is starting': 965365, 'is starting one': 452233, 'starting one in': 794990, 'one in one': 606481, 'in one out': 426152, 'one out bullshit': 606805, 'out bullshit so': 625781, 'bullshit so we': 142512, 'all in supermarket': 43204, 'in supermarket sweep': 428682, 'supermarket sweep now': 823098, 'sweep now are': 830142, 'now are we': 574102, 'are we gonna': 91571, 'we gonna be': 971663, 'gonna be timed': 356484, 'be timed next': 117720, 'timed next is': 898443, 'next is there': 561416, 'is there prize': 453023, 'client to': 182114, 'provide additional': 686212, 'additional assistance': 31774, 'assistance for': 96691, 'those impacted': 892089, 'coronavirus through': 206940, 'client assistance': 182007, 'we re working': 973003, 're working closely': 699825, 'closely with our': 183483, 'with our client': 999979, 'our client to': 622401, 'client to provide': 182115, 'to provide additional': 912377, 'provide additional assistance': 686213, 'additional assistance for': 31775, 'assistance for those': 96696, 'for those impacted': 327116, 'those impacted by': 892090, 'by coronavirus through': 152237, 'coronavirus through our': 206941, 'through our client': 894612, 'our client assistance': 622392, 'client assistance program': 182008, 'feat': 301525, 'bojo': 134069, 'livingdead': 496492, 'it mark': 459531, 'mark new': 515805, 'new era': 558707, 'era in': 280056, 'in tv': 430341, 'tv film': 936110, 'film making': 305688, 'making feat': 511067, 'feat zombie': 301526, 'zombie bojo': 1027704, 'bojo madmax': 134072, 'toiletpaper bikers': 921810, 'bikers cat': 130435, 'cat hoarding': 166881, 'many livingdead': 514238, 'livingdead more': 496493, 'more sundaythoughts': 540494, 'sundaythoughts isolation': 818340, '19 how it': 7605, 'how it mark': 408135, 'it mark new': 459532, 'mark new era': 515806, 'new era in': 558708, 'era in tv': 280057, 'in tv film': 430342, 'tv film making': 936111, 'film making feat': 305689, 'making feat zombie': 511068, 'feat zombie bojo': 301527, 'zombie bojo madmax': 1027705, 'bojo madmax toiletpaper': 134073, 'madmax toiletpaper bikers': 508144, 'toiletpaper bikers cat': 921811, 'bikers cat hoarding': 130436, 'cat hoarding and': 166882, 'hoarding and many': 399181, 'and many livingdead': 66672, 'many livingdead more': 514239, 'livingdead more sundaythoughts': 496494, 'more sundaythoughts isolation': 540495, 'center of': 169270, 'of riyadh': 589133, 'riyadh the': 724228, 'great saudi': 362977, 'arabia 21': 83845, '21 03': 14947, '03 2020': 857, '2020 stayathome': 14612, 'this supermarket is': 890431, 'in the center': 429062, 'the center of': 850597, 'center of riyadh': 169275, 'of riyadh the': 589134, 'riyadh the great': 724229, 'the great saudi': 856731, 'great saudi arabia': 362978, 'saudi arabia 21': 737180, 'arabia 21 03': 83846, '21 03 2020': 14949, '03 2020 stayathome': 860, 'otc': 619772, 'before heading': 122847, 'store learn': 808695, 'item make': 463440, 'sense to': 750604, '19 canned': 5635, 'canned good': 161529, 'good prescription': 357579, 'prescription medication': 670516, 'medication otc': 526668, 'otc medication': 619775, 'before heading to': 122850, 'heading to your': 385969, 'grocery store learn': 365515, 'store learn what': 808697, 'learn what item': 484089, 'what item make': 981767, 'item make sense': 463441, 'make sense to': 510445, 'sense to stock': 750609, 'on and other': 599366, 'and other way': 68432, 'other way to': 621188, 'way to prepare': 970066, 'to prepare for': 912000, 'prepare for covid': 670071, 'covid 19 canned': 212759, '19 canned good': 5636, 'canned good prescription': 161543, 'good prescription medication': 357580, 'prescription medication otc': 670517, 'medication otc medication': 526669, 'reasoned': 703154, 'named': 551709, 'baby father': 106600, 'father reasoned': 300308, 'reasoned that': 703155, 'he named': 385241, 'named his': 551719, 'his son': 397801, 'son sanitizer': 785430, 'sanitizer because': 734553, 'the baby father': 849135, 'baby father reasoned': 106601, 'father reasoned that': 300309, 'reasoned that he': 703156, 'that he named': 844263, 'he named his': 385242, 'named his son': 551720, 'his son sanitizer': 397804, 'son sanitizer because': 785431, 'sanitizer because it': 734555, 'because it had': 119190, 'it had the': 458436, 'had the capacity': 373611, 'capacity to fight': 162586, 'jesuschristonacracker': 465323, 'this jesuschristonacracker': 888539, 'jesuschristonacracker my': 465324, 'store manages': 808898, 'manages to': 512842, 'ration egg': 697663, 'to carton': 902473, 'carton per': 165492, 'so maybe': 777733, 'maybe we': 521868, 'can fairly': 158284, 'fairly distribute': 296431, 'distribute covid': 247966, 'test too': 839215, 'if only wa': 414560, 'able to do': 24472, 'about this jesuschristonacracker': 26643, 'this jesuschristonacracker my': 888540, 'jesuschristonacracker my grocery': 465325, 'grocery store manages': 365553, 'store manages to': 808899, 'manages to ration': 512845, 'to ration egg': 912761, 'ration egg to': 697664, 'egg to carton': 270008, 'to carton per': 902474, 'carton per customer': 165493, 'per customer per': 650781, 'customer per day': 222681, 'per day so': 650808, 'day so maybe': 228368, 'so maybe we': 777734, 'maybe we can': 521870, 'we can fairly': 970947, 'can fairly distribute': 158285, 'fairly distribute covid': 296432, 'distribute covid 19': 247967, '19 test too': 11086, 'totalsocial': 926413, 'consumerconversations': 199660, 'pandemic causing': 635112, 'causing widespread': 168150, 'widespread anxiety': 991826, 'disruption engagement': 246467, 'engagement lab': 276898, 'lab is': 478271, 'is monitoring': 449689, 'monitoring it': 537357, 'national conversation': 552457, 'conversation in': 202469, 'affecting brand': 34493, 'brand totalsocial': 138055, 'totalsocial consumerconversations': 926414, 'consumerconversations consumerinsights': 199661, 'the pandemic causing': 862929, 'pandemic causing widespread': 635115, 'causing widespread anxiety': 168151, 'widespread anxiety and': 991827, 'anxiety and disruption': 78651, 'and disruption engagement': 61493, 'disruption engagement lab': 246468, 'engagement lab is': 276899, 'lab is monitoring': 478272, 'is monitoring it': 449691, 'monitoring it impact': 537358, 'on the national': 604247, 'the national conversation': 861288, 'national conversation in': 552458, 'conversation in the': 202470, 'the and also': 848681, 'and also how': 57959, 'also how it': 48377, 'it is affecting': 458864, 'is affecting brand': 445382, 'affecting brand totalsocial': 34495, 'brand totalsocial consumerconversations': 138056, 'totalsocial consumerconversations consumerinsights': 926415, 'scum': 742970, 'farther': 299735, 'isolation of': 455362, 'of now': 587093, 'search various': 743301, 'various store': 952649, 'find stuff': 307256, 'stuff for': 815068, 'dinner if': 243069, 'people didn': 647645, 'buy we': 149438, 'shop but': 759994, 'but since': 147058, 'since those': 770943, 'those scum': 892425, 'scum buying': 742974, 'travel farther': 930359, 'farther each': 299736, 'time fuck': 896814, 'all stockpilinguk': 44476, 'self isolation of': 747787, 'isolation of now': 455364, 'of now have': 587096, 'now have symptom': 574881, 'symptom but we': 830829, 'but we need': 147754, 'need to search': 556060, 'to search various': 913954, 'search various store': 743302, 'various store to': 952651, 'store to find': 810770, 'to find stuff': 905939, 'find stuff for': 307258, 'stuff for dinner': 815069, 'for dinner if': 320719, 'dinner if people': 243070, 'if people didn': 414614, 'people didn panic': 647648, 'panic buy we': 637542, 'buy we could': 149439, 'we could go': 971207, 'to shop but': 914451, 'shop but since': 760003, 'but since those': 147062, 'since those scum': 770944, 'those scum buying': 892426, 'scum buying all': 742975, 'buying all the': 149879, 'have to travel': 383325, 'to travel farther': 917730, 'travel farther each': 930360, 'farther each time': 299737, 'each time fuck': 264296, 'time fuck all': 896815, 'fuck all stockpilinguk': 339519, 'the 47': 848125, '47 respondent': 19266, 'respondent with': 715393, 'disability who': 243862, 'have used': 383481, 'crisis 45': 216960, '45 believe': 19069, 'are performing': 89063, 'performing poorly': 651501, 'poorly to': 664398, 'to very': 918151, 'very poorly': 955421, 'of the 47': 590771, 'the 47 respondent': 848127, '47 respondent with': 19267, 'respondent with disability': 715394, 'with disability who': 998067, 'disability who have': 243865, 'who have used': 988969, 'have used online': 383483, 'used online shopping': 949985, 'the crisis 45': 852338, 'crisis 45 believe': 216961, '45 believe they': 19071, 'believe they are': 126375, 'they are performing': 881359, 'are performing poorly': 89064, 'performing poorly to': 651503, 'poorly to very': 664400, 'to very poorly': 918154, 'refreshingly': 706770, 'bewell': 129115, 'what refreshingly': 982090, 'refreshingly generous': 706771, 'generous and': 345715, 'and practical': 69297, 'practical approach': 668454, 'approach compared': 82933, 'shopping giant': 762779, 'giant and': 349740, 'many major': 514256, 'store dogood': 807351, 'dogood bewell': 252213, 'bewell trader': 129116, 'joe is': 466421, 'giving it': 351326, 'employee bonus': 273682, 'for record': 325024, 'record sale': 705058, 'sale during': 732179, 'what refreshingly generous': 982091, 'refreshingly generous and': 706772, 'generous and practical': 345718, 'and practical approach': 69298, 'practical approach compared': 668455, 'approach compared to': 82934, 'compared to the': 191440, 'online shopping giant': 609130, 'shopping giant and': 762780, 'giant and many': 349741, 'and many major': 66673, 'many major grocery': 514258, 'grocery store dogood': 365337, 'store dogood bewell': 807352, 'dogood bewell trader': 252214, 'bewell trader joe': 129117, 'trader joe is': 928715, 'joe is giving': 466422, 'is giving it': 448063, 'giving it employee': 351329, 'it employee bonus': 457798, 'employee bonus for': 273683, 'bonus for record': 134377, 'for record sale': 325029, 'record sale during': 705060, 'sale during the': 732182, 'smoother': 775946, 'fm': 311690, 'tomor': 923995, 'really starting': 702609, 'home town': 402365, 'town empty': 927456, 'supermarket empty': 820155, 'empty station': 275136, 'station in': 796431, 'in rush': 427582, 'rush hour': 728299, 'hour shout': 405930, 'that unseen': 847189, 'unseen work': 943472, 'work behind': 1004931, 'scene making': 741340, 'making our': 511257, 'our transition': 625183, 'transition to': 929682, 'home smoother': 402079, 'smoother hoping': 775947, 'working fm': 1008627, 'fm home': 311701, 'from tomor': 338090, 'really starting to': 702610, 'see the impact': 745845, '19 on my': 8956, 'my home town': 548697, 'home town empty': 402366, 'town empty shelf': 927457, 'the supermarket empty': 868571, 'supermarket empty road': 820157, 'empty road empty': 275030, 'road empty station': 724446, 'empty station in': 275137, 'station in rush': 796436, 'in rush hour': 427584, 'rush hour shout': 728300, 'hour shout out': 405931, 'to all that': 900291, 'all that unseen': 44648, 'that unseen work': 847190, 'unseen work behind': 943473, 'work behind the': 1004932, 'the scene making': 866469, 'scene making our': 741341, 'making our transition': 511261, 'our transition to': 625184, 'transition to work': 929686, 'from home smoother': 335904, 'home smoother hoping': 402080, 'smoother hoping to': 775948, 'hoping to be': 403951, 'to be working': 901639, 'be working fm': 118141, 'working fm home': 1008628, 'fm home from': 311702, 'home from tomor': 401275, 'hannaford': 376994, 'hannaford supermarket': 376995, 'is donating': 447308, 'donating 250': 254421, 'local area': 497690, '19 global': 7217, 'health pandemic': 386734, 'hannaford supermarket is': 376996, 'supermarket is donating': 821086, 'is donating 250': 447312, 'donating 250 00': 254422, '250 00 to': 16011, '00 to local': 547, 'to local area': 909370, 'local area food': 497692, 'area food bank': 92009, 'food bank to': 313658, 'bank to help': 110259, 'the demand caused': 853088, 'covid 19 global': 213146, '19 global health': 7220, 'global health pandemic': 351977, '301': 17378, '324': 17717, '9500': 23616, '681': 21497, '9797': 23713, 'pgcounty': 653957, 'visualeyes': 959638, 'product alert': 680842, 'alert vision': 41535, 'vision source': 959156, 'source pure': 786537, 'pure clean': 689967, 'clean disinfectant': 180500, 'kill coronavirus': 474373, 'coronavirus product': 206594, 'product info': 681312, 'info to': 437590, 'order 301': 617987, '301 324': 17379, '324 9500': 17718, '9500 301': 23617, '301 681': 17381, '681 9797': 21498, '9797 order': 23714, 'online disinfectant': 608110, 'disinfectant pgcounty': 245724, 'pgcounty sanitizer': 653958, 'sanitizer visualeyes': 736017, 'new product alert': 559356, 'product alert vision': 680843, 'alert vision source': 41536, 'vision source pure': 959157, 'source pure clean': 786538, 'pure clean disinfectant': 689968, 'clean disinfectant kill': 180502, 'disinfectant kill coronavirus': 245704, 'kill coronavirus product': 474376, 'coronavirus product info': 206595, 'product info to': 681313, 'info to order': 437594, 'to order 301': 911059, 'order 301 324': 617988, '301 324 9500': 17380, '324 9500 301': 17719, '9500 301 681': 23618, '301 681 9797': 17382, '681 9797 order': 21499, '9797 order online': 23715, 'order online disinfectant': 618467, 'online disinfectant pgcounty': 608111, 'disinfectant pgcounty sanitizer': 245725, 'pgcounty sanitizer visualeyes': 653959, 'rebreathing': 703342, 'great thought': 363055, 'thought tonight': 893282, 'tonight on': 924462, 'why shutdown': 991346, 'shutdown is': 768049, 'the wrong': 872099, 'wrong reaction': 1013092, 'reaction but': 700191, 'far your': 298987, 'store easy': 807428, 'see they': 745931, 'are different': 85814, 'different most': 241996, 'most work': 542925, 'work done': 1005058, 'done for': 254837, 'in confined': 421649, 'confined space': 194046, 'space rebreathing': 787157, 'rebreathing others': 703343, 'others air': 621244, 'air most': 39766, 'great thought tonight': 363056, 'thought tonight on': 893283, 'tonight on why': 924467, 'on why shutdown': 605316, 'why shutdown is': 991347, 'shutdown is the': 768051, 'is the wrong': 452982, 'the wrong reaction': 872109, 'wrong reaction but': 1013093, 'reaction but far': 700192, 'but far your': 145699, 'far your work': 298988, 'your work grocery': 1026373, 'grocery store easy': 365355, 'store easy to': 807429, 'easy to see': 265789, 'to see they': 914086, 'see they are': 745932, 'they are different': 881250, 'are different most': 85816, 'different most work': 241997, 'most work done': 542926, 'work done for': 1005059, 'done for hr': 254840, 'for hr day': 322426, 'hr day week': 409608, 'day week in': 228696, 'week in confined': 976367, 'in confined space': 421650, 'confined space rebreathing': 194047, 'space rebreathing others': 787158, 'rebreathing others air': 703344, 'others air most': 621245, 'air most grocery': 39767, 'most grocery trip': 542358, 'esterson': 282226, 'why doesn': 990956, 'doesn the': 251969, 'government enforce': 360066, 'enforce everyone': 276666, 'use click': 949115, 'collect that': 186328, 'way no': 969726, 'walk around': 964740, 'around supermarket': 93498, 'can queue': 159360, 'at specific': 100607, 'time 2m': 896185, 'apart esterson': 81250, 'why doesn the': 990959, 'doesn the government': 251970, 'the government enforce': 856534, 'government enforce everyone': 360067, 'enforce everyone who': 276667, 'everyone who can': 287582, 'who can go': 988386, 'store to use': 810824, 'to use click': 918015, 'use click and': 949116, 'and collect that': 60092, 'collect that way': 186329, 'that way no': 847346, 'way no one': 969728, 'one need to': 606709, 'need to walk': 556114, 'to walk around': 918299, 'walk around supermarket': 964744, 'around supermarket and': 93499, 'supermarket and can': 818952, 'and can queue': 59467, 'can queue for': 159361, 'queue for their': 693933, 'for their good': 326830, 'their good at': 873418, 'good at specific': 356801, 'at specific time': 100608, 'specific time 2m': 788260, 'time 2m apart': 896186, '2m apart esterson': 16660, 'only letting': 610726, 'letting in': 487414, 'in limited': 424736, 'limited number': 492680, 'good those': 357859, 'those waiting': 892597, 'outside were': 629640, 'standing right': 793805, 'right next': 722004, 'other that': 621091, 'bad socialdistancing': 108012, 'store which wa': 811277, 'which wa only': 986448, 'wa only letting': 962856, 'only letting in': 610728, 'letting in limited': 487416, 'in limited number': 424737, 'limited number of': 492681, 'of customer that': 582284, 'customer that good': 222916, 'that good those': 844051, 'good those waiting': 357861, 'those waiting in': 892598, 'in line outside': 424766, 'line outside were': 493352, 'outside were standing': 629641, 'were standing right': 980164, 'standing right next': 793807, 'right next to': 722006, 'each other that': 264223, 'other that bad': 621092, 'that bad socialdistancing': 842921, 'commented': 188490, 'just commented': 468502, 'commented on': 188495, 'on ie': 601476, 'ie supermarket': 413742, 'hiring hundred': 397106, 'just commented on': 468504, 'commented on ie': 188497, 'on ie supermarket': 601478, 'ie supermarket hiring': 413743, 'supermarket hiring hundred': 820765, 'hiring hundred of': 397107, 'hundred of employee': 410999, 'of employee to': 583079, 'employee to meet': 274330, 'to meet covid': 910019, 'backlogged': 107567, 'cant believe': 162268, 'said but': 731008, 'but keep': 146210, 'grocery are': 364278, 'are backlogged': 84743, 'backlogged for': 107568, 'week please': 976754, 'own essential': 631970, 'shopping responsibly': 763742, 'responsibly save': 716109, 'save that': 737649, 'cant believe this': 162270, 'believe this ha': 126383, 'to be said': 901519, 'be said but': 116983, 'said but keep': 731010, 'but keep hearing': 146214, 'keep hearing that': 471576, 'hearing that online': 388242, 'that online grocery': 845510, 'online grocery are': 608313, 'grocery are backlogged': 364279, 'are backlogged for': 84744, 'backlogged for week': 107569, 'for week please': 327741, 'week please if': 976755, 'please if you': 660103, 'do your own': 250709, 'your own essential': 1025135, 'own essential shopping': 631971, 'essential shopping responsibly': 281555, 'shopping responsibly save': 763743, 'responsibly save that': 716110, 'save that service': 737650, 'that service for': 846212, 'for those at': 327099, 'those at high': 891820, 'high risk and': 395345, 'risk and unable': 723380, 'unable to venture': 939352, 'plead': 659569, 'buying trigger': 151263, 'trigger supermarket': 931891, 'hike retailer': 396276, 'retailer plead': 719274, 'plead for': 659570, 'for calm': 319883, 'calm pricegouging': 156782, 'pricegouging auspol': 677788, 'panic buying trigger': 637943, 'buying trigger supermarket': 151264, 'trigger supermarket price': 931892, 'supermarket price hike': 822057, 'price hike retailer': 674536, 'hike retailer plead': 396277, 'retailer plead for': 719275, 'plead for calm': 659571, 'for calm pricegouging': 319888, 'calm pricegouging auspol': 156783, 'maisano': 509184, 'protection update': 685669, 'update tune': 947283, 'in tomorrow': 430186, '7pm director': 22500, 'director jim': 243631, 'jim maisano': 465500, 'maisano join': 509185, 'answer viewer': 78139, 'viewer question': 957191, 'protect resident': 684933, 'resident during': 714289, 'consumer protection update': 198573, 'protection update tune': 685670, 'update tune in': 947284, 'tune in tomorrow': 935408, 'in tomorrow at': 430187, 'tomorrow at 7pm': 924033, 'at 7pm director': 97756, '7pm director jim': 22501, 'director jim maisano': 243632, 'jim maisano join': 465501, 'maisano join to': 509186, 'join to answer': 466884, 'to answer viewer': 900592, 'answer viewer question': 78140, 'viewer question on': 957192, 'question on the': 693681, 'on the work': 604459, 'the work the': 871740, 'work the department': 1005809, 'the department is': 853143, 'department is doing': 237214, 'to protect resident': 912326, 'protect resident during': 684935, 'resident during the': 714290, 'tavern': 834919, 'samorning': 733449, 'sally': 732746, 'burdett': 142768, 'xoli': 1013891, 'mngambi': 534828, 'ha published': 371574, 'published strict': 688696, 'strict regulation': 813650, 'includes closing': 431729, 'closing bar': 183595, 'bar tavern': 110772, 'tavern and': 834920, 'sent to': 750840, 'jail for': 464264, 'spreading fake': 790962, 'news samorning': 560770, 'samorning with': 733450, 'with sally': 1000561, 'sally burdett': 732747, 'burdett and': 142769, 'and xoli': 75954, 'xoli mngambi': 1013892, 'government ha published': 360163, 'ha published strict': 371577, 'published strict regulation': 688697, 'strict regulation to': 813652, 'the this includes': 869486, 'this includes closing': 888069, 'includes closing bar': 431730, 'closing bar tavern': 183596, 'bar tavern and': 110773, 'tavern and restaurant': 834921, 'and restaurant and': 70366, 'restaurant and being': 716275, 'and being sent': 58869, 'being sent to': 125760, 'sent to jail': 750843, 'to jail for': 908645, 'jail for spreading': 464267, 'for spreading fake': 325839, 'spreading fake news': 790963, 'fake news samorning': 296674, 'news samorning with': 560771, 'samorning with sally': 733451, 'with sally burdett': 1000562, 'sally burdett and': 732748, 'burdett and xoli': 142770, 'and xoli mngambi': 75955, 'passenger too': 643353, 'too add': 924564, 'canceled travel': 160965, 'line let make': 493230, 'let make sure': 486885, 'protect passenger too': 684916, 'passenger too add': 643354, 'too add consumer': 924565, 'for canceled travel': 319905, 'struggling nationally': 814464, 'nationally and': 552689, 'and locally': 66307, 'locally please': 498773, 'give and': 350385, 'and encourage': 62096, 'encourage others': 275612, 'same they': 733328, 'ever food': 285307, 'bank supply': 110216, 'supply decrease': 825141, 'increased and': 433196, 'are struggling nationally': 90590, 'struggling nationally and': 814465, 'nationally and locally': 552690, 'and locally please': 66308, 'locally please continue': 498774, 'continue to give': 201202, 'to give and': 906673, 'give and encourage': 350386, 'and encourage others': 62098, 'encourage others to': 275613, 'others to do': 621725, 'the same they': 866308, 'same they are': 733329, 'they are needed': 881339, 'are needed more': 88200, 'than ever food': 840581, 'ever food bank': 285308, 'food bank supply': 313650, 'bank supply decrease': 110217, 'supply decrease and': 825142, 'decrease and demand': 231548, 'and demand ha': 61155, 'ha increased and': 370944, 'increased and will': 433198, 'and will increase': 75671, 'the shameful': 866777, 'shameful legislation': 754689, 'legislation proposed': 485979, 'proposed by': 684521, 'consumer attorney': 196352, 'attorney of': 102678, 'of california': 581040, 'california amid': 155456, 'the shameful legislation': 866778, 'shameful legislation proposed': 754690, 'legislation proposed by': 485980, 'proposed by the': 684523, 'the consumer attorney': 851495, 'consumer attorney of': 196353, 'attorney of california': 102679, 'of california amid': 581041, 'california amid the': 155457, 'until rationing': 943816, 'rationing is': 697827, 'is introduced': 448958, 'current state': 221383, 'only last': 610698, 'last so': 480498, 'long and': 501327, 'are clearly': 85315, 'clearly benefiting': 181493, 'benefiting from': 127164, 'price rationing': 676085, 'long until rationing': 501800, 'until rationing is': 943817, 'rationing is introduced': 697829, 'is introduced the': 448959, 'introduced the current': 443458, 'the current state': 852667, 'current state of': 221384, 'the store can': 867992, 'store can only': 806860, 'can only last': 159129, 'only last so': 610699, 'last so long': 480499, 'so long and': 777581, 'long and people': 501329, 'people are clearly': 646946, 'are clearly benefiting': 85316, 'clearly benefiting from': 181494, 'benefiting from buying': 127165, 'from buying in': 334778, 'bulk and then': 142243, 'and then selling': 73805, 'then selling it': 877514, 'it at inflated': 456620, 'inflated price rationing': 437064, 'nation have': 552203, 'lowest point': 506201, 'the nation have': 861238, 'nation have fallen': 552204, 'their lowest point': 873895, 'lowest point in': 506202, 'point in at': 662515, 'done multiple': 254943, 'multiple story': 545797, 'supply lately': 825491, 'despite empty': 238728, 'empty store': 275147, 'shelf here': 757155, 'here psa': 393485, 'psa don': 687396, 'not running': 571409, 'ha up': 372405, 'to four': 906212, 'four month': 330628, 've done multiple': 953063, 'done multiple story': 254944, 'multiple story about': 545798, 'food supply lately': 316965, 'supply lately and': 825492, 'lately and despite': 480947, 'and despite empty': 61268, 'despite empty store': 238731, 'empty store shelf': 275150, 'store shelf here': 810078, 'shelf here psa': 757157, 'here psa don': 393486, 'psa don panic': 687397, 'don panic we': 253816, 'panic we are': 638761, 'are not running': 88459, 'not running out': 571410, 'food expert say': 314434, 'expert say the': 291961, 'say the food': 739278, 'food industry ha': 315014, 'industry ha up': 435868, 'ha up to': 372406, 'up to four': 946379, 'to four month': 906213, 'four month of': 330633, 'month of staple': 537905, 'of staple in': 590041, 'staple in stock': 793960, 'diplomatic': 243220, 'dictate': 240499, 'now those': 576137, 'infected nation': 436602, 'nation are': 552124, 'at often': 99944, 'often highly': 596208, 'to various': 918120, 'various report': 952633, 'report handing': 711997, 'handing the': 376142, 'chinese diplomatic': 177240, 'diplomatic if': 243221, 'not commercial': 568805, 'commercial coup': 188690, 'coup they': 211546, 'they dictate': 881912, 'dictate where': 240508, 'where supply': 985196, 'essential life': 281280, 'isn shipped': 454663, 'now those covid': 576138, '19 infected nation': 7842, 'infected nation are': 436603, 'nation are having': 552125, 'buy it back': 148846, 'it back at': 456664, 'back at often': 106892, 'at often highly': 99945, 'often highly inflated': 596209, 'inflated price according': 437023, 'according to various': 28601, 'to various report': 918122, 'various report handing': 952634, 'report handing the': 711998, 'handing the chinese': 376143, 'the chinese diplomatic': 850851, 'chinese diplomatic if': 177241, 'diplomatic if not': 243222, 'if not commercial': 414490, 'not commercial coup': 568806, 'commercial coup they': 188691, 'coup they dictate': 211547, 'they dictate where': 881913, 'dictate where supply': 240509, 'where supply of': 985198, 'supply of essential': 825622, 'of essential life': 583177, 'essential life saving': 281281, 'saving equipment is': 737865, 'equipment is and': 279762, 'is and isn': 445706, 'and isn shipped': 65449, 'my gp': 548538, 'gp agreed': 361398, 'agreed wa': 38755, 'wa vulnerable': 963655, 'and filled': 62847, 'filled in': 305540, 'your site': 1025813, 'package it': 633314, 'now look': 575251, 'supermarket thanks': 823171, 'guy cross': 368966, 'cross your': 219043, 'your finger': 1023878, 'finger for': 307800, 'me lockdownextension': 523103, 'lockdownextension lockdown': 500282, 'hey my gp': 394464, 'my gp agreed': 548539, 'gp agreed wa': 361399, 'agreed wa vulnerable': 38756, 'wa vulnerable and': 963656, 'vulnerable and filled': 960859, 'and filled in': 62848, 'filled in the': 305543, 'the form on': 855709, 'form on your': 329551, 'on your site': 605502, 'your site where': 1025819, 'site where are': 772059, 'are the care': 90805, 'the care package': 850414, 'care package it': 164137, 'package it been': 633315, 'it been week': 456806, 'been week now': 122365, 'week now look': 976591, 'now look like': 575252, 'the supermarket thanks': 868844, 'supermarket thanks guy': 823173, 'thanks guy cross': 842098, 'guy cross your': 368967, 'cross your finger': 219044, 'your finger for': 1023882, 'finger for me': 307801, 'for me lockdownextension': 323320, 'me lockdownextension lockdown': 523104, 'condominium': 193622, 'since may': 770728, 'may 2018': 520873, '2018 home': 13880, 'have declined': 380198, 'in both': 420917, 'the freehold': 855776, 'freehold and': 332415, 'and condominium': 60267, 'condominium segment': 193625, 'segment result': 747391, 'mar 15': 514970, '15 the': 3845, 'for freehold': 321741, 'freehold home': 332417, 'toronto hit': 925945, 'hit 36': 398110, '36 million': 18015, 'million they': 532373, 've dropped': 953069, '25 million': 15908, 'on apr': 599424, 'time since may': 897669, 'since may 2018': 770730, 'may 2018 home': 520874, '2018 home price': 13881, 'home price have': 401905, 'price have declined': 674423, 'have declined in': 380201, 'declined in both': 231430, 'in both the': 420928, 'both the freehold': 136063, 'the freehold and': 855777, 'freehold and condominium': 332416, 'and condominium segment': 60268, 'condominium segment result': 193626, 'segment result of': 747392, '19 on mar': 8953, 'on mar 15': 602002, 'mar 15 the': 514971, '15 the average': 3846, 'average price for': 104889, 'price for freehold': 673968, 'for freehold home': 321742, 'freehold home in': 332418, 'home in toronto': 401423, 'in toronto hit': 430204, 'toronto hit 36': 925946, 'hit 36 million': 398111, '36 million they': 18017, 'million they ve': 532374, 'they ve dropped': 883647, 've dropped to': 953070, 'dropped to 25': 260640, 'to 25 million': 899639, '25 million on': 15912, 'million on apr': 532298, 'market doesn': 516304, 'run it': 727688, 'about share': 26169, 'price an': 672345, 'hour from': 405629, 'now stockpiling': 575910, 'stockpiling ventilator': 804111, 'for rare': 324958, 'rare pandemic': 697091, 'is against': 445417, 'market stand': 517108, 'the market doesn': 860103, 'market doesn care': 516305, 'care about our': 163799, 'about our health': 25894, 'our health in': 623373, 'health in the': 386525, 'long run it': 501609, 'run it care': 727689, 'it care about': 457064, 'care about share': 163802, 'about share price': 26170, 'share price an': 755158, 'price an hour': 672348, 'an hour from': 56084, 'hour from now': 405634, 'from now stockpiling': 336613, 'now stockpiling ventilator': 575912, 'stockpiling ventilator for': 804112, 'ventilator for rare': 954559, 'for rare pandemic': 324959, 'rare pandemic is': 697092, 'pandemic is against': 635753, 'is against everything': 445418, 'against everything the': 37433, 'everything the market': 288040, 'the market stand': 860163, 'market stand for': 517109, 'attendee': 102398, 'are canceling': 85157, 'canceling our': 160990, 'next event': 561356, 'event due': 284975, 'our attendee': 622142, 'attendee speaker': 102399, 'speaker and': 787735, 'our ultimate': 625222, 'ultimate priority': 939127, 'priority sorry': 678656, 'any cause': 79001, 'of disappointment': 582648, 'disappointment answer': 244152, 'the faq': 854924, 'faq are': 298666, 'unfortunately we are': 941661, 'we are canceling': 970497, 'are canceling our': 85158, 'canceling our next': 160991, 'our next event': 624058, 'next event due': 561357, 'event due to': 284976, '19 the health': 11206, 'health and well': 386163, 'of our attendee': 587423, 'our attendee speaker': 622143, 'attendee speaker and': 102400, 'speaker and staff': 787737, 'and staff is': 72194, 'staff is our': 792578, 'is our ultimate': 450649, 'our ultimate priority': 625223, 'ultimate priority sorry': 939128, 'priority sorry for': 678657, 'sorry for any': 786041, 'for any cause': 319397, 'any cause of': 79002, 'cause of disappointment': 167680, 'of disappointment answer': 582649, 'disappointment answer to': 244153, 'answer to the': 78134, 'to the faq': 916698, 'the faq are': 854925, 'faq are available': 298668, 'are available in': 84711, 'jesuschrist': 465319, 'religiousfreedom': 709593, 'keepput': 472663, 'starwars': 795282, 'justkidding': 470498, 'happy easter': 377604, 'easter good': 265438, 'friday easter': 333214, 'easter away': 265380, 'away game': 105929, 'game anticipation': 343122, 'anticipation sunday': 78498, 'sunday jesus': 818224, 'jesus jesuschrist': 465302, 'jesuschrist religion': 465321, 'religion religiousfreedom': 709563, 'religiousfreedom world': 709594, 'world stayhome': 1010000, 'stayhome keepput': 798027, 'keepput starwars': 472664, 'starwars justkidding': 795285, 'justkidding toiletpaper': 470501, 'toiletpaper fact': 921969, 'fact place': 295777, 'happy easter good': 377607, 'easter good friday': 265439, 'good friday easter': 357100, 'friday easter away': 333215, 'easter away game': 265381, 'away game anticipation': 105930, 'game anticipation sunday': 343123, 'anticipation sunday jesus': 78499, 'sunday jesus jesuschrist': 818225, 'jesus jesuschrist religion': 465303, 'jesuschrist religion religiousfreedom': 465322, 'religion religiousfreedom world': 709564, 'religiousfreedom world stayhome': 709595, 'world stayhome keepput': 1010001, 'stayhome keepput starwars': 798028, 'keepput starwars justkidding': 472665, 'starwars justkidding toiletpaper': 795286, 'justkidding toiletpaper fact': 470502, 'toiletpaper fact place': 921970, 'lenin': 486343, 'nonetheless': 566629, 'are decade': 85707, 'decade where': 230706, 'where nothing': 985059, 'nothing happens': 573031, 'happens and': 377445, 'are week': 91605, 'where decade': 984812, 'decade happen': 230681, 'happen lenin': 377112, 'lenin while': 486344, 'while not': 987085, 'not intended': 570153, 'brand under': 138059, '19 siege': 10539, 'siege should': 768989, 'note nonetheless': 572761, 'nonetheless this': 566630, 'this three': 890594, 'three part': 894022, 'part series': 642420, 'series tackle': 751303, 'tackle some': 831599, 'implication advertising': 418542, 'advertising marketing': 33248, 'there are decade': 878089, 'are decade where': 85708, 'decade where nothing': 230707, 'where nothing happens': 985060, 'nothing happens and': 573032, 'happens and there': 377447, 'there are week': 878185, 'are week where': 91606, 'week where decade': 977228, 'where decade happen': 984813, 'decade happen lenin': 230682, 'happen lenin while': 377113, 'lenin while not': 486345, 'while not intended': 987086, 'not intended for': 570154, 'intended for brand': 441051, 'for brand under': 319768, 'brand under covid': 138060, 'covid 19 siege': 213801, '19 siege should': 10540, 'siege should take': 768990, 'should take note': 766549, 'take note nonetheless': 832376, 'note nonetheless this': 572762, 'nonetheless this three': 566631, 'this three part': 890595, 'three part series': 894023, 'part series tackle': 642421, 'series tackle some': 751304, 'tackle some of': 831600, 'of the implication': 591130, 'the implication advertising': 857967, 'implication advertising marketing': 418543, 'leavenlaw': 485058, 'yourself facing': 1026594, 'facing foreclosure': 295473, 'foreclosure or': 328926, 'or debt': 614903, 'collection call': 186421, 'mortgage company': 541878, 'pandemic leavenlaw': 635877, 'leavenlaw consumer': 485059, 'protection attorney': 685343, 'attorney can': 102614, 'you find yourself': 1018584, 'find yourself facing': 307414, 'yourself facing foreclosure': 1026595, 'facing foreclosure or': 295474, 'foreclosure or debt': 328927, 'or debt collection': 614904, 'debt collection call': 230440, 'collection call from': 186422, 'call from your': 155912, 'from your mortgage': 338483, 'your mortgage company': 1024884, 'mortgage company during': 541880, 'company during this': 190624, '19 pandemic leavenlaw': 9379, 'pandemic leavenlaw consumer': 635878, 'leavenlaw consumer protection': 485060, 'consumer protection attorney': 198510, 'protection attorney can': 685344, 'attorney can help': 102615, 'onassignment': 605543, 'woman wearing': 1003661, 'protective glove': 685769, 'mask precaution': 519132, 'precaution against': 669265, 'shop grocery': 760244, 'in miami': 425275, 'miami florida': 530174, 'florida united': 310994, 'state on': 795830, '20 2020': 12879, '2020 onassignment': 14484, 'onassignment for': 605544, 'for photojournalism': 324536, 'woman wearing protective': 1003664, 'wearing protective glove': 974770, 'protective glove and': 685770, 'and mask precaution': 66759, 'mask precaution against': 519133, 'precaution against coronavirus': 669267, 'against coronavirus covid': 37387, 'covid 19 shop': 213787, '19 shop grocery': 10475, 'shop grocery at': 760245, 'grocery at supermarket': 364287, 'supermarket in miami': 820933, 'in miami florida': 425279, 'miami florida united': 530176, 'florida united state': 310995, 'united state on': 942233, 'state on march': 795832, 'march 20 2020': 515127, '20 2020 onassignment': 12884, '2020 onassignment for': 14485, 'onassignment for photojournalism': 605545, 'for photojournalism documentary': 324537, 'slope': 774084, 'jumping': 467961, 'sane': 733754, 'bite found': 131865, 'great off': 362855, 'off road': 594111, 'road route': 724501, 'route to': 726473, 'anyone come': 80234, 'come walking': 187656, 'walking towards': 965116, 'towards me': 927215, 'in opposite': 426194, 'direction either': 243457, 'the slope': 867334, 'slope or': 774086, 'or jumping': 615869, 'jumping in': 467962, 'the river': 865899, 'river nature': 724187, 'nature keep': 552961, 'keep me': 471651, 'me relatively': 523392, 'relatively sane': 708776, 'bite found this': 131866, 'found this great': 330433, 'this great off': 887753, 'great off road': 362856, 'off road route': 594112, 'road route to': 724502, 'route to the': 726476, 'supermarket if anyone': 820828, 'if anyone come': 413843, 'anyone come walking': 80235, 'come walking towards': 187657, 'walking towards me': 965117, 'towards me in': 927216, 'me in opposite': 522972, 'in opposite direction': 426195, 'opposite direction either': 613781, 'direction either going': 243458, 'either going up': 270311, 'going up the': 355795, 'up the slope': 946215, 'the slope or': 867335, 'slope or jumping': 774087, 'or jumping in': 615870, 'jumping in the': 467963, 'in the river': 429519, 'the river nature': 865900, 'river nature keep': 724188, 'nature keep me': 552963, 'keep me relatively': 471654, 'me relatively sane': 523393, 'fairytale': 296488, 'brownie': 141267, '531': 20304, '5209': 20262, 'hi arizona': 394602, 'arizona customer': 92833, 'customer beginning': 222180, 'today march': 919853, '18 the': 4586, 'the fairytale': 854854, 'fairytale brownie': 296489, 'brownie retail': 141272, '19 brownie': 5458, 'brownie and': 141268, 'gift still': 350023, 'still can': 800329, 'be ordered': 116271, 'or 800': 614222, '800 531': 22674, '531 5209': 20307, 'hi arizona customer': 394603, 'arizona customer beginning': 92834, 'customer beginning today': 222181, 'beginning today march': 123681, 'today march 18': 919854, 'march 18 the': 515110, '18 the fairytale': 4587, 'the fairytale brownie': 854855, 'fairytale brownie retail': 296490, 'brownie retail store': 141273, 'covid 19 brownie': 212736, '19 brownie and': 5459, 'brownie and gift': 141269, 'and gift still': 63646, 'gift still can': 350024, 'still can be': 800330, 'can be ordered': 157654, 'be ordered online': 116272, 'ordered online at': 618880, 'online at or': 607891, 'at or 800': 99988, 'or 800 531': 614224, '800 531 5209': 22675, 'clientele': 182146, 'utmost': 951383, 'and wellbeing': 75416, 'our clientele': 622406, 'clientele and': 182147, 'our utmost': 625247, 'utmost priority': 951390, 'priority due': 678553, '19 william': 12117, 'william amp': 995423, 'amp son': 54535, 'son have': 785385, 'have taken': 382903, 'the difficult': 853273, 'difficult decision': 242207, 'on 19th': 599040, '19th march': 12539, 'march until': 515504, 'until 6th': 943663, '6th april': 21679, 'april when': 83716, 'are hoping': 87230, 'and safety and': 70736, 'safety and wellbeing': 730468, 'and wellbeing of': 75417, 'wellbeing of our': 978798, 'of our clientele': 587435, 'our clientele and': 622407, 'clientele and staff': 182148, 'is our utmost': 450651, 'our utmost priority': 625248, 'utmost priority due': 951391, 'priority due to': 678554, 'covid 19 william': 214078, '19 william amp': 12118, 'william amp son': 995425, 'amp son have': 54536, 'son have taken': 785387, 'have taken the': 382917, 'taken the difficult': 833073, 'the difficult decision': 853274, 'difficult decision to': 242208, 'decision to temporarily': 231112, 'close the retail': 182844, 'store on 19th': 809183, 'on 19th march': 599041, '19th march until': 12541, 'march until 6th': 515505, 'until 6th april': 943664, '6th april when': 21681, 'april when we': 83717, 'we are hoping': 970591, 'are hoping to': 87232, 'hoping to reopen': 403957, 'insult': 440634, 'injury': 438713, 'today dude': 919467, 'dude were': 261620, 'using thermometer': 950741, 'thermometer to': 879547, 'fever before': 303660, 'before allowing': 122619, 'allowing for': 46285, 'add insult': 31437, 'insult to': 440639, 'the injury': 858294, 'injury everything': 438716, 'wa wiped': 963710, 'supermarket today dude': 823442, 'today dude were': 919468, 'dude were using': 261621, 'were using thermometer': 980324, 'using thermometer to': 950742, 'thermometer to test': 879550, 'to test for': 916392, 'test for fever': 839000, 'for fever before': 321446, 'fever before allowing': 303661, 'before allowing for': 122621, 'allowing for entry': 46286, 'for entry to': 321073, 'entry to add': 279031, 'to add insult': 900058, 'add insult to': 31438, 'insult to the': 440640, 'to the injury': 916811, 'the injury everything': 858295, 'injury everything wa': 438717, 'everything wa wiped': 288079, 'wa wiped out': 963711, 'out by the': 625819, 'by the panic': 154403, 'the panic buyer': 863190, 'minder': 532801, 'await': 105532, 'fate': 300263, 'big up': 130090, 'up anyone': 944395, 'anyone working': 80653, 'teacher child': 835444, 'child minder': 176145, 'minder carers': 532802, 'worker without': 1008270, 'country would': 211271, 'would simply': 1012243, 'simply stop': 770294, 'stop and': 804449, 'and await': 58587, 'await it': 105533, 'it fate': 457961, 'fate you': 300270, 'all hero': 43104, 'hero 19': 393917, 'big up anyone': 130091, 'up anyone working': 944396, 'anyone working on': 80655, 'the frontline nh': 855881, 'nh staff teacher': 562105, 'staff teacher child': 792921, 'teacher child minder': 835445, 'child minder carers': 176146, 'minder carers supermarket': 532803, 'carers supermarket worker': 164617, 'and all essential': 57862, 'essential worker without': 281866, 'worker without you': 1008272, 'without you the': 1003073, 'you the country': 1021592, 'the country would': 852188, 'country would simply': 211273, 'would simply stop': 1012244, 'simply stop and': 770295, 'stop and await': 804450, 'and await it': 58588, 'await it fate': 105534, 'it fate you': 457963, 'fate you guy': 300271, 'guy are all': 368895, 'are all hero': 84314, 'all hero 19': 43105, 'postcovid19': 666501, 'behavior stabilize': 124198, 'stabilize once': 791851, 'once we': 605777, 'we flatten': 971574, 'curve or': 221881, 'this our': 889305, 'normal postcovid19': 567263, 'will this drastic': 995195, 'this drastic change': 887293, 'consumer behavior stabilize': 196515, 'behavior stabilize once': 124199, 'stabilize once we': 791852, 'once we flatten': 605780, 'we flatten the': 971575, 'the curve or': 852701, 'curve or is': 221882, 'or is this': 615838, 'is this our': 453108, 'this our new': 889307, 'our new normal': 624036, 'new normal postcovid19': 559167, 'facebook about': 294878, 'about thing': 26622, '1919 depression': 12319, 'cashier at supermarket': 166487, 'supermarket and posted': 819041, 'and posted on': 69239, 'posted on facebook': 666556, 'on facebook about': 600698, 'facebook about thing': 294880, 'about thing to': 26623, 'to do when': 904589, 'do when grocery': 250525, 'when grocery shopping': 983496, 'during the 1919': 263078, 'the 1919 depression': 847937, 'staythefuckhome': 799068, 'cult': 220252, 'cinephile': 178558, 'geo': 345926, 'staythefuckhome we': 799073, 'up special': 946053, 'special section': 788046, 'section with': 744057, 'great cult': 362599, 'cult film': 220255, 'film on': 305698, 'also reduced': 48768, 'movie pack': 544045, 'pack movie': 633074, 'movie movie': 544022, 'movie 10': 543974, '15 20': 3642, '20 20': 12872, '20 stay': 13361, 'safe cinephile': 729544, 'cinephile stayathome': 178559, 'stayathome some': 797621, 'some title': 784073, 'title are': 899281, 'are geo': 86784, 'geo blocked': 345927, 'staythefuckhome we have': 799074, 'set up special': 753578, 'up special section': 946054, 'special section with': 788048, 'section with great': 744059, 'with great cult': 998669, 'great cult film': 362600, 'cult film on': 220256, 'film on we': 305699, 'on we have': 605134, 'we have also': 971754, 'have also reduced': 379219, 'also reduced the': 48769, 'price of movie': 675510, 'of movie pack': 586700, 'movie pack movie': 544046, 'pack movie movie': 633075, 'movie movie 10': 544023, 'movie 10 15': 543975, '10 15 20': 1239, '15 20 20': 3643, '20 20 stay': 12875, '20 stay home': 13362, 'stay safe cinephile': 797219, 'safe cinephile stayathome': 729545, 'cinephile stayathome some': 178560, 'stayathome some title': 797622, 'some title are': 784074, 'title are geo': 899282, 'are geo blocked': 86785, 'annihilates': 76812, 'how soap': 408702, 'soap absolutely': 778891, 'absolutely annihilates': 27313, 'annihilates the': 76813, 'how soap absolutely': 408703, 'soap absolutely annihilates': 778892, 'absolutely annihilates the': 27314, 'annihilates the coronavirus': 76814, 'saraimrieart': 736723, 'artoftheday': 94646, 'artseries': 94652, 'toiletpaperart': 922962, 'kitchener': 475784, 'one hundred': 606449, 'hundred dollar': 410981, 'dollar saraimrieart': 253065, 'saraimrieart toiletpaper': 736724, 'toiletpaper artoftheday': 921756, 'artoftheday quarantine': 94647, 'quarantine toiletpapercrisis': 692656, 'toiletpapercrisis selfisolation': 923059, 'selfisolation artseries': 748438, 'artseries toiletpaperart': 94653, 'toiletpaperart kitchener': 922963, 'kitchener ontario': 475785, 'one hundred dollar': 606450, 'hundred dollar saraimrieart': 410982, 'dollar saraimrieart toiletpaper': 253066, 'saraimrieart toiletpaper artoftheday': 736725, 'toiletpaper artoftheday quarantine': 921757, 'artoftheday quarantine toiletpapercrisis': 94648, 'quarantine toiletpapercrisis selfisolation': 692657, 'toiletpapercrisis selfisolation artseries': 923060, 'selfisolation artseries toiletpaperart': 748439, 'artseries toiletpaperart kitchener': 94654, 'toiletpaperart kitchener ontario': 922964, 'stock alert': 801774, 'alert 80': 41336, '80 pack': 22613, 'free prime': 332078, 'prime delivery': 678107, 'from affiliate': 334405, 'affiliate link': 34618, 'link see': 493904, 'see profile': 745615, 'profile toiletpaper': 682629, 'toiletpaper prepper': 922354, 'in stock alert': 428279, 'stock alert 80': 801775, 'alert 80 pack': 41337, '80 pack of': 22614, 'paper with free': 641102, 'with free prime': 998539, 'free prime delivery': 332079, 'prime delivery from': 678109, 'delivery from affiliate': 234042, 'from affiliate link': 334406, 'affiliate link see': 34619, 'link see profile': 493905, 'see profile toiletpaper': 745617, 'profile toiletpaper prepper': 682630, 'loonie': 503130, 'newswatch': 561140, 'sector help': 744216, 'help toronto': 390813, 'toronto market': 925966, 'rise oil': 722955, 'climb loonie': 182265, 'loonie edge': 503131, 'edge higher': 268506, 'higher national': 395629, 'national newswatch': 552573, 'energy sector help': 276578, 'sector help toronto': 744217, 'help toronto market': 390814, 'toronto market rise': 925967, 'market rise oil': 517007, 'rise oil price': 722957, 'oil price climb': 597078, 'price climb loonie': 673147, 'climb loonie edge': 182266, 'loonie edge higher': 503132, 'edge higher national': 268508, 'higher national newswatch': 395630, 'honestly have': 403104, 'an emotional': 55693, 'emotional quarantine': 273297, 'quarantine since': 692540, 'mid 2018': 530541, '2018 which': 13910, 'the different': 853266, 'different from': 241952, 'only real': 611047, 'difference is': 241854, 'is go': 448075, 'supermarket once': 821745, 'once month': 605678, 'month once': 537928, 'trump era': 933541, 'honestly have been': 403105, 'been in an': 121332, 'in an emotional': 420295, 'an emotional quarantine': 55694, 'emotional quarantine since': 273298, 'quarantine since mid': 692541, 'since mid 2018': 770737, 'mid 2018 which': 530542, '2018 which ha': 13911, 'which ha not': 985893, 'ha not been': 371360, 'not been all': 568504, 'been all the': 120642, 'all the different': 44719, 'the different from': 853269, 'different from this': 241955, 'from this covid': 337988, '19 quarantine the': 9918, 'quarantine the only': 692611, 'the only real': 862335, 'only real difference': 611048, 'real difference is': 701112, 'difference is go': 241855, 'is go to': 448076, 'the supermarket once': 868727, 'supermarket once month': 821748, 'once month once': 605679, 'month once week': 537930, 'once week the': 605803, 'week the trump': 977010, 'the trump era': 870065, 'indulges': 435511, 'macrobond': 507480, 'asset value': 96484, 'value fluctuation': 952122, 'fluctuation during': 311516, 'the 21daylockdown': 848037, '21daylockdown in': 15101, 'post indulges': 666169, 'indulges in': 435512, 'some economic': 782723, 'economic history': 267118, 'history chart': 398011, 'chart and': 173815, 'and discus': 61422, 'shock short': 759508, 'on asset': 599487, 'price macrobond': 675141, 'asset value fluctuation': 96485, 'value fluctuation during': 952123, 'fluctuation during the': 311517, 'during the 21daylockdown': 263085, 'the 21daylockdown in': 848038, '21daylockdown in our': 15102, 'blog post indulges': 132991, 'post indulges in': 666170, 'indulges in some': 435513, 'in some economic': 428087, 'some economic history': 782724, 'economic history chart': 267119, 'history chart and': 398012, 'chart and discus': 173816, 'and discus the': 61423, 'discus the shock': 244933, 'the shock short': 866966, 'shock short and': 759509, 'effect on asset': 269078, 'on asset price': 599489, 'asset price macrobond': 96457, 'cannot top': 162187, 'prepayment meter': 670373, 'meter visit': 529739, 'visit citizen': 959214, 'you cannot top': 1017884, 'cannot top up': 162188, 'your prepayment meter': 1025381, 'prepayment meter visit': 670375, 'meter visit citizen': 529740, 'visit citizen advice': 959215, 'citizen advice for': 178820, 'advice for information': 33370, 'for information on': 322579, 'information on what': 437928, 'more will': 540985, 'lost by': 503831, 'the combination': 851172, 'many more will': 514326, 'more will be': 540986, 'will be lost': 992546, 'be lost by': 115832, 'lost by the': 503832, 'by the combination': 154287, 'the combination of': 851173, 'combination of oil': 187104, 'appetite': 82229, 'bombing': 134206, 'syria': 831033, 'pentagon': 646704, 'recourse': 705152, 'no public': 565243, 'public of': 688184, 'any western': 80042, 'western country': 980608, 'will contest': 993005, 'contest usa': 200881, 'usa appetite': 948591, 'appetite for': 82232, 'for bombing': 319714, 'bombing iran': 134207, 'maybe syria': 521815, 'syria too': 831044, 'too seems': 925046, 'for pentagon': 324439, 'pentagon the': 646705, 'emergency plan': 272876, 'bring under': 140108, 'control oil': 202077, 'and recourse': 70065, 'light of no': 489560, 'of no public': 587045, 'no public of': 565246, 'public of any': 688185, 'of any western': 580276, 'any western country': 80043, 'western country will': 980610, 'country will contest': 211245, 'will contest usa': 993006, 'contest usa appetite': 200882, 'usa appetite for': 948592, 'appetite for bombing': 82233, 'for bombing iran': 319715, 'bombing iran and': 134208, 'iran and maybe': 444670, 'and maybe syria': 66819, 'maybe syria too': 521816, 'syria too seems': 831045, 'too seems to': 925047, 'to be for': 901262, 'be for pentagon': 114912, 'for pentagon the': 324440, 'pentagon the emergency': 646706, 'the emergency plan': 854232, 'emergency plan to': 272880, 'plan to bring': 658272, 'to bring under': 902056, 'bring under control': 140109, 'under control oil': 940049, 'control oil price': 202078, 'price and recourse': 672519, 'tracing': 928149, 'you trace': 1021904, 'trace and': 928124, 'and isolate': 65451, 'isolate when': 454941, 'who served': 989599, 'served man': 751998, 'doe doesn': 251377, 'know should': 476714, 'put privacy': 690791, 'privacy ahead': 678794, 'of tracing': 592389, 'tracing testing': 928156, 'and isolating': 65459, 'isolating in': 455112, 'positive exposed': 665312, 'exposed others': 292861, 'others how': 621462, 'suggest th': 817534, 'do you trace': 250691, 'you trace and': 1021905, 'trace and isolate': 928125, 'and isolate when': 65455, 'isolate when the': 454943, 'when the supermarket': 984202, 'worker who served': 1008228, 'who served man': 989600, 'served man who': 751999, 'man who doe': 512326, 'who doe doesn': 988628, 'doe doesn know': 251378, 'doesn know should': 251864, 'know should we': 476715, 'should we put': 766651, 'we put privacy': 972794, 'put privacy ahead': 690792, 'privacy ahead of': 678795, 'ahead of tracing': 39195, 'of tracing testing': 592390, 'tracing testing and': 928157, 'testing and isolating': 839436, 'and isolating in': 65460, 'isolating in sa': 455114, 'in sa people': 427605, 'sa people have': 728921, 'people have tested': 648204, 'tested positive exposed': 839348, 'positive exposed others': 665313, 'exposed others how': 292863, 'others how do': 621463, 'you suggest th': 1021471, 'spider': 789241, 'roach': 724383, 'eventually the': 285171, 'only toilet': 611375, 'paper left': 640407, 'left will': 485736, 'in those': 430050, 'those forest': 892018, 'forest park': 329083, 'park bathroom': 641874, 'bathroom where': 112686, 'giant spider': 349865, 'spider and': 789242, 'and roach': 70577, 'roach go': 724384, 'for vacation': 327507, 'vacation then': 951594, 'then and': 876987, 'only then': 611289, 'the survivor': 869030, 'survivor are': 829386, 'this society': 890234, 'eventually the only': 285172, 'the only toilet': 862352, 'only toilet paper': 611376, 'toilet paper left': 921335, 'paper left will': 640411, 'left will be': 485737, 'be in those': 115442, 'in those forest': 430052, 'those forest park': 892019, 'forest park bathroom': 329084, 'park bathroom where': 641875, 'bathroom where all': 112687, 'all the giant': 44763, 'the giant spider': 856260, 'giant spider and': 349866, 'spider and roach': 789243, 'and roach go': 70578, 'roach go for': 724385, 'go for vacation': 353577, 'for vacation then': 327508, 'vacation then and': 951595, 'then and only': 876990, 'and only then': 68152, 'only then will': 611293, 'then will we': 877770, 'will we see': 995334, 'we see who': 973174, 'see who the': 746070, 'who the survivor': 989757, 'the survivor are': 869031, 'survivor are in': 829387, 'are in this': 87451, 'in this society': 430015, 'this society toiletpaper': 890235, 'massachusetts man': 519915, 'man accused': 511971, 'of spitting': 589982, 'spitting coughing': 789588, 'massachusetts man accused': 519916, 'man accused of': 511972, 'accused of spitting': 28955, 'of spitting coughing': 589983, 'spitting coughing in': 789590, 'store during outbreak': 807406, 'prominent': 683655, 'lappet': 479533, 'beak': 118265, 'seetheworld': 747369, 'kilimanjaro': 474314, 'safari': 729396, 'very prominent': 955436, 'prominent bird': 683656, 'bird of': 131340, 'of prey': 588391, 'prey lappet': 672067, 'lappet faced': 479534, 'faced vulture': 295035, 'vulture strong': 961299, 'strong always': 813966, 'always active': 49458, 'active with': 30293, 'with hook': 998873, 'hook like': 403340, 'like beak': 489881, 'beak for': 118266, 'for opening': 324137, 'the prey': 864324, 'prey stay': 672074, 'strong to': 814141, 'fight safeathome': 304858, 'safeathome seetheworld': 730177, 'seetheworld kilimanjaro': 747370, 'kilimanjaro travel': 474315, 'travel holiday': 930378, 'holiday nature': 400334, 'nature safari': 552980, 'safari adventure': 729397, 'adventure journey': 33103, 'very prominent bird': 955437, 'prominent bird of': 683657, 'bird of prey': 131341, 'of prey lappet': 588392, 'prey lappet faced': 672068, 'lappet faced vulture': 479535, 'faced vulture strong': 295036, 'vulture strong always': 961300, 'strong always active': 813967, 'always active with': 49459, 'active with hook': 30294, 'with hook like': 998874, 'hook like beak': 403341, 'like beak for': 489882, 'beak for opening': 118267, 'for opening the': 324138, 'opening the prey': 612911, 'the prey stay': 864325, 'prey stay safe': 672075, 'safe be strong': 729514, 'be strong to': 117405, 'strong to fight': 814142, 'to fight safeathome': 905808, 'fight safeathome seetheworld': 304859, 'safeathome seetheworld kilimanjaro': 730178, 'seetheworld kilimanjaro travel': 747371, 'kilimanjaro travel holiday': 474316, 'travel holiday nature': 930381, 'holiday nature safari': 400335, 'nature safari adventure': 552981, 'safari adventure journey': 729398, 'business we': 144634, 'how marketing': 408300, 'marketing need': 517656, 'adapt to': 31277, 'remain relevant': 709849, 'relevant research': 709172, 'shopping medium': 763275, 'medium transport': 527333, 'transport will': 929972, 'all afford': 41955, 'afford opportunity': 34739, 'on business we': 599743, 'business we need': 144638, 'at how marketing': 99225, 'how marketing need': 408301, 'marketing need to': 517657, 'need to adapt': 555851, 'to adapt to': 900046, 'adapt to remain': 31286, 'to remain relevant': 913171, 'remain relevant research': 709850, 'relevant research online': 709173, 'research online shopping': 713806, 'online shopping medium': 609187, 'shopping medium transport': 763277, 'medium transport will': 527334, 'transport will all': 929973, 'will all afford': 992229, 'all afford opportunity': 41956, 'afford opportunity for': 34740, 'opportunity for innovation': 613616, 'just print': 469492, 'print three': 678302, 'set it': 753410, 'who print': 989446, 'print 3t': 678259, 'is disturbing': 447251, 'sense just print': 750540, 'just print three': 469493, 'print three trillion': 678303, 'response to this': 715890, 'to this while': 917479, 'this while the': 891366, 'while the country': 987379, 'country ha no': 210721, 'cannot set it': 162087, 'set it own': 753411, 'it own price': 460222, 'set by the': 753364, 'by the same': 154431, 'same people who': 733217, 'people who print': 650328, 'who print 3t': 989447, 'print 3t but': 678260, '7b is disturbing': 22454, 'pam': 634643, 'farrare': 299723, 'wilmore': 995507, 'hygiene is': 412110, 'disease such': 245241, 'disinfectant when': 245800, 'when done': 983362, 'done right': 254990, 'right both': 721823, 'are possible': 89152, 'possible say': 665767, 'say infection': 738802, 'control expert': 202007, 'expert pam': 291908, 'pam farrare': 634644, 'farrare wilmore': 299724, 'wilmore via': 995508, 'hand hygiene is': 375027, 'hygiene is the': 412115, 'is the way': 452977, 'way to prevent': 970068, 'prevent the transmission': 671737, 'transmission of disease': 929751, 'of disease such': 582675, 'disease such the': 245243, 'such the hand': 816802, 'the hand soap': 857065, 'hand soap or': 375773, 'soap or disinfectant': 779071, 'or disinfectant when': 614996, 'disinfectant when done': 245801, 'when done right': 983363, 'done right both': 254991, 'right both are': 721824, 'both are possible': 135856, 'are possible say': 89153, 'possible say infection': 665768, 'say infection control': 738803, 'infection control expert': 436735, 'control expert pam': 202008, 'expert pam farrare': 291909, 'pam farrare wilmore': 634645, 'farrare wilmore via': 299725, 'embraceyourcommunity': 272504, 'selfish please': 748225, 'hoarding think': 399606, 'others think': 621715, 'nh think': 562143, 'elderly think': 270905, 'vulnerable stophoarding': 961180, 'stophoarding dontpanicbuy': 805394, 'dontpanicbuy stoppanicbuying': 255386, 'stoppanicbuying dontbeselfish': 805559, 'dontbeselfish embraceyourcommunity': 255350, 'embraceyourcommunity corvid19uk': 272505, 'corvid19uk please': 207753, 'so selfish please': 778175, 'selfish please stop': 748226, 'please stop hoarding': 660579, 'stop hoarding think': 804748, 'hoarding think of': 399607, 'of others think': 587408, 'others think of': 621716, 'the nh think': 861768, 'nh think of': 562144, 'the elderly think': 854150, 'elderly think of': 270906, 'the vulnerable stophoarding': 870996, 'vulnerable stophoarding dontpanicbuy': 961181, 'stophoarding dontpanicbuy stoppanicbuying': 805395, 'dontpanicbuy stoppanicbuying dontbeselfish': 255387, 'stoppanicbuying dontbeselfish embraceyourcommunity': 805560, 'dontbeselfish embraceyourcommunity corvid19uk': 255351, 'embraceyourcommunity corvid19uk please': 272506, 'corvid19uk please rt': 207754, 'do realize': 250027, 'realize if': 701843, 'touch everything': 926470, 'everything then': 288042, 'then touch': 877686, 'your item': 1024516, 'yourself there': 1026717, 'there really': 878984, 'really no': 702456, 'you wearing': 1022219, 'wearing those': 974811, 'those glove': 892026, 'the people at': 863456, 'wearing glove you': 974649, 'glove you do': 353052, 'you do realize': 1018268, 'do realize if': 250028, 'realize if you': 701844, 'you touch everything': 1021897, 'touch everything then': 926474, 'everything then touch': 288043, 'then touch your': 877687, 'touch your item': 926588, 'your item and': 1024517, 'item and yourself': 463084, 'and yourself there': 76109, 'yourself there really': 1026718, 'there really no': 878989, 'really no point': 702457, 'no point to': 565138, 'point to you': 662680, 'to you wearing': 918937, 'you wearing those': 1022221, 'wearing those glove': 974813, 'time had': 896885, 'buy bread': 148439, 'bread from': 138473, 'from polish': 336946, 'of literally': 585889, 'literally nowhere': 495055, 'nowhere having': 576563, 'having any': 383980, 'any thanks': 79953, 'thanks panic': 842155, 'buyer enjoy': 149638, 'your quickly': 1025510, 'quickly running': 694589, 'date hoarded': 226641, 'hoarded bread': 398933, 'first time had': 309099, 'time had to': 896886, 'go to buy': 354285, 'to buy bread': 902193, 'buy bread from': 148442, 'bread from polish': 138475, 'from polish supermarket': 336947, 'polish supermarket because': 663587, 'because of literally': 119365, 'of literally nowhere': 585890, 'literally nowhere having': 495056, 'nowhere having any': 576564, 'having any thanks': 383981, 'any thanks panic': 79954, 'thanks panic buyer': 842156, 'panic buyer enjoy': 637573, 'buyer enjoy your': 149639, 'enjoy your quickly': 277214, 'your quickly running': 1025511, 'quickly running out': 694590, 'of date hoarded': 582367, 'date hoarded bread': 226642, 'for lockdown': 323062, 'lockdown food': 499384, 'are rising': 89705, 'rising how': 723232, 'survive people': 829224, 'virus because': 957990, 'for kaduna': 322803, 'kaduna state': 470594, 'state how': 795671, 'we fighting': 971550, 'not sure we': 571850, 'sure we are': 827804, 'are ready for': 89459, 'ready for lockdown': 700865, 'for lockdown food': 323065, 'lockdown food price': 499386, 'price are rising': 672724, 'are rising how': 89714, 'rising how many': 723233, 'many people can': 514495, 'people can survive': 647414, 'can survive people': 159877, 'survive people will': 829225, 'people will die': 650384, 'will die of': 993187, 'of hunger and': 584905, 'hunger and not': 411076, 'and not the': 67780, 'not the virus': 572041, 'the virus because': 870802, 'virus because they': 957993, 'because they won': 119730, 'they won be': 883905, 'won be able': 1003734, 'stock their house': 802948, 'their house do': 873605, 'house do you': 406272, 'have any plan': 379312, 'any plan for': 79659, 'plan for kaduna': 658121, 'for kaduna state': 322804, 'kaduna state how': 470596, 'state how are': 795672, 'are we fighting': 91568, 'we fighting covid': 971551, 'lecturer': 485209, 'lecturer at': 485210, 'at south': 100597, 'african university': 35231, 'university are': 942409, 'move teaching': 543734, 'teaching online': 835557, 'crisis yet': 218458, 'our student': 624982, 'student lack': 814717, 'lack internet': 478595, 'access because': 28106, 'for data': 320546, 'data charged': 226172, 'sa we': 728963, 'on sa': 603247, 'sa mobile': 728910, 'mobile network': 534998, 'network provider': 557758, 'to zero': 919049, 'zero rate': 1027485, 'rate all': 697145, 'all university': 45318, 'university site': 942461, 'site now': 771983, 'lecturer at south': 485211, 'at south african': 100598, 'south african university': 786680, 'african university are': 35232, 'university are told': 942412, 'are told to': 91129, 'told to move': 923755, 'to move teaching': 910319, 'move teaching online': 543735, 'teaching online during': 835558, '19 crisis yet': 6358, 'crisis yet our': 218459, 'yet our student': 1016187, 'our student lack': 624984, 'student lack internet': 814718, 'lack internet access': 478596, 'internet access because': 441895, 'access because they': 28107, 'because they can': 119691, 'they can pay': 881660, 'can pay the': 159205, 'pay the high': 645149, 'price for data': 673948, 'for data charged': 320548, 'data charged in': 226173, 'charged in sa': 173397, 'in sa we': 427608, 'sa we call': 728964, 'call on sa': 156044, 'on sa mobile': 603248, 'sa mobile network': 728911, 'mobile network provider': 535000, 'network provider to': 557759, 'provider to zero': 686808, 'to zero rate': 919054, 'zero rate all': 1027486, 'rate all university': 697146, 'all university site': 45319, 'university site now': 942462, 'ontpoli': 611693, 'the wage': 871020, 'wage of': 963930, 'crisis many': 217698, 'life fr': 488672, 'fr themselves': 330848, 'risk we': 724004, 'get wage': 348592, 'wage increase': 963904, 'increase etc': 432758, 'etc ontpoli': 282690, 'ontpoli cdnpoli': 611694, 'fight for increase': 304742, 'for increase the': 322527, 'increase the wage': 433117, 'the wage of': 871022, 'wage of grocery': 963932, 'worker during this': 1006821, 'of crisis many': 582172, 'crisis many are': 217699, 'many are putting': 513775, 'their life fr': 873832, 'life fr themselves': 488673, 'fr themselves and': 330849, 'themselves and family': 876752, 'family at risk': 297643, 'at risk we': 100413, 'risk we need': 724005, 'to demand they': 904162, 'demand they get': 236372, 'they get wage': 882186, 'get wage increase': 348593, 'wage increase etc': 963905, 'increase etc ontpoli': 432759, 'etc ontpoli cdnpoli': 282691, '4h': 19454, 'hospital don': 404379, 'have visitor': 383515, 'visitor at': 959581, 'moment how': 535960, 'their gift': 873406, 'gift shop': 350016, 'get turned': 348546, 'supermarket express': 820257, 'express store': 293063, 'closest to': 183543, 'each hospital': 264091, 'hospital restock': 404586, 'restock it': 716876, 'every 4h': 285654, '4h it': 19455, 'our hardworking': 623356, 'hardworking staff': 378343, 'staff nh': 792677, 'hospital don have': 404380, 'don have visitor': 253624, 'have visitor at': 383516, 'visitor at the': 959582, 'the moment how': 860761, 'moment how about': 535961, 'how about their': 407308, 'about their gift': 26586, 'their gift shop': 873407, 'gift shop get': 350017, 'shop get turned': 760238, 'get turned into': 348547, 'turned into supermarket': 935853, 'into supermarket express': 443041, 'supermarket express store': 820258, 'express store the': 293066, 'store the closest': 810591, 'the closest to': 851043, 'closest to each': 183544, 'to each hospital': 904824, 'each hospital restock': 264092, 'hospital restock it': 404587, 'restock it every': 716877, 'it every 4h': 457871, 'every 4h it': 285655, '4h it only': 19456, 'it only for': 460098, 'only for our': 610471, 'for our hardworking': 324254, 'our hardworking staff': 623358, 'hardworking staff nh': 378344, 'agfunder': 38208, 'agfunder quick': 38209, 'quick look': 694323, 'produce and': 680172, 'and ag': 57766, 'ag commodity': 36775, 'agfunder quick look': 38210, 'quick look at': 694324, '19 on fresh': 8945, 'on fresh produce': 600993, 'fresh produce and': 333045, 'produce and ag': 680173, 'and ag commodity': 57767, 'ag commodity price': 36776, 'declares': 231251, 'govt declares': 361101, 'declares 16': 231252, 'service commodity': 752247, 'commodity essential': 189173, 'service jammu': 752537, 'jammu march': 464449, 'march 22': 515177, '22 in': 15213, 'govt declares 16': 361102, 'declares 16 service': 231253, '16 service commodity': 4166, 'service commodity essential': 752248, 'commodity essential service': 189174, 'essential service jammu': 281512, 'service jammu march': 752538, 'jammu march 22': 464450, 'march 22 in': 515181, '22 in view': 15215, 'to doing': 904623, 'doing business': 252318, 'business amid': 143272, 'food where': 317577, 'needed but': 556319, 'also warning': 49079, 'warning lawmaker': 967142, 'lawmaker and': 482481, 'agency that': 38081, 'will require': 994660, 'require much': 713318, 'more help': 539399, 'and week': 75377, 'bank are adapting': 109636, 'adapting to doing': 31346, 'to doing business': 904625, 'doing business amid': 252319, 'business amid the': 143273, 'pandemic in order': 635704, 'order to get': 618683, 'get food where': 347077, 'food where it': 317579, 'it needed but': 459757, 'needed but are': 556320, 'but are also': 145207, 'are also warning': 84488, 'also warning lawmaker': 49080, 'warning lawmaker and': 967143, 'lawmaker and government': 482482, 'and government agency': 63874, 'government agency that': 359846, 'agency that they': 38083, 'they will require': 883879, 'will require much': 994662, 'require much more': 713319, 'much more help': 545108, 'more help in': 539401, 'the day and': 852869, 'day and week': 227294, 'and week ahead': 75378, 'important medical': 418876, 'hygiene supply': 412179, 'must note': 546787, 'consumer response to': 198789, 'to we also': 918400, 'of important medical': 585005, 'important medical and': 418877, 'medical and hygiene': 526048, 'and hygiene supply': 64909, 'hygiene supply like': 412180, 'mask we must': 519512, 'we must note': 972430, 'must note that': 546788, 'chelsea': 175306, 'the chelsea': 850789, 'chelsea special': 175311, 'people 60': 646728, 'of age': 579822, 'age and': 37801, 'older began': 598584, 'began other': 123419, 'other location': 620483, 'also offering': 48600, 'offering this': 595295, 'this due': 887315, 'earlier this morning': 264494, 'morning at the': 541183, 'at the chelsea': 100911, 'the chelsea special': 850790, 'chelsea special shopping': 175312, 'hour for people': 405614, 'for people 60': 324443, 'people 60 year': 646730, '60 year of': 21049, 'year of age': 1014772, 'of age and': 579823, 'age and older': 37802, 'and older began': 68040, 'older began other': 598585, 'began other location': 123420, 'other location and': 620484, 'location and other': 498853, 'and other supermarket': 68418, 'other supermarket chain': 621014, 'supermarket chain are': 819594, 'chain are also': 170494, 'are also offering': 84468, 'also offering this': 48601, 'offering this due': 595296, 'this due to': 887316, 'america are': 51463, 'one helping': 606417, 'hold american': 399887, 'american society': 52200, 'together restaurant': 920919, 'teacher let': 835481, 'let remember': 487007, 'get past': 347790, 'past this': 643622, 'amazing how some': 50710, 'how some of': 408718, 'paid people in': 634108, 'people in america': 648344, 'in america are': 420216, 'america are the': 51469, 'the one helping': 862204, 'one helping to': 606418, 'helping to hold': 391527, 'to hold american': 907905, 'hold american society': 399888, 'american society together': 52201, 'society together restaurant': 781341, 'together restaurant worker': 920920, 'restaurant worker grocery': 716819, 'worker teacher let': 1007888, 'teacher let remember': 835482, 'let remember that': 487008, 'that when we': 847497, 'we get past': 971622, 'get past this': 347791, '80k': 22757, 'what lucrative': 981842, 'lucrative business': 506590, 'someone start': 784666, 'with 80k': 997065, '80k asking': 22758, 'for friend': 321765, 'what lucrative business': 981843, 'lucrative business can': 506591, 'business can someone': 143497, 'can someone start': 159675, 'someone start with': 784668, 'start with 80k': 794647, 'with 80k asking': 997066, '80k asking for': 22759, 'asking for friend': 95985, 'employee our': 274093, 'line wherever': 493566, 'all our medical': 43816, 'store employee our': 807518, 'employee our first': 274094, 'responder and all': 715406, 'all those in': 45164, 'those in the': 892103, 'in the front': 429221, 'front line wherever': 338621, 'line wherever you': 493567, 'world we thank': 1010151, 'beetroot': 122564, 'getagripbritishpeople': 348757, 'aren great': 92427, 'great here': 362717, 'here either': 392952, 'either queuing': 270363, 'queuing outside': 694225, 'outside seems': 629545, 'seems fine': 746782, 'fine then': 307699, 'then suddenly': 877581, 'suddenly in': 817110, 'it oh': 460006, 'oh forgot': 596382, 'forgot the': 329410, 'the beetroot': 849425, 'beetroot it': 122565, 'it perfectly': 460308, 'perfectly ok': 651393, 'risk killing': 723659, 'people by': 647357, 'by breaching': 151996, 'breaching socialdistancing': 138371, 'socialdistancing getagripbritishpeople': 780377, 'people aren great': 647125, 'aren great here': 92429, 'great here either': 362718, 'here either queuing': 392953, 'either queuing outside': 270364, 'queuing outside seems': 694226, 'outside seems fine': 629546, 'seems fine then': 746784, 'fine then suddenly': 307701, 'then suddenly in': 877582, 'suddenly in the': 817111, 'supermarket it oh': 821175, 'it oh forgot': 460007, 'oh forgot the': 596384, 'forgot the beetroot': 329411, 'the beetroot it': 849426, 'beetroot it perfectly': 122567, 'it perfectly ok': 460309, 'perfectly ok to': 651394, 'ok to risk': 597927, 'to risk killing': 913598, 'risk killing people': 723660, 'killing people by': 474704, 'people by breaching': 647358, 'by breaching socialdistancing': 151997, 'breaching socialdistancing getagripbritishpeople': 138372, 'masque': 519723, 'arrivent': 93981, 'dessindepresse': 238952, 'pour': 667426, 'sur': 827454, 'histoire': 397936, 'une': 941059, 'nurie': 577172, 'racont': 695372, 'ici': 412735, 'le masque': 483022, 'masque arrivent': 519724, 'arrivent dessindepresse': 93982, 'dessindepresse pour': 238953, 'pour fr': 667436, 'fr sur': 330844, 'sur histoire': 827455, 'histoire une': 397937, 'une nurie': 941060, 'nurie racont': 577173, 'racont par': 695373, 'par ici': 641200, 'le masque arrivent': 483023, 'masque arrivent dessindepresse': 519725, 'arrivent dessindepresse pour': 93983, 'dessindepresse pour fr': 238954, 'pour fr sur': 667437, 'fr sur histoire': 330845, 'sur histoire une': 827456, 'histoire une nurie': 397938, 'une nurie racont': 941061, 'nurie racont par': 577174, 'racont par ici': 695374, 'pharmacy unless': 654535, 'unless absolutely': 942595, 'absolutely necessary': 27391, 'or pharmacy unless': 616591, 'pharmacy unless absolutely': 654536, 'unless absolutely necessary': 942597, 'new career': 558452, 'career wear': 164364, 'wear since': 974457, 'since ll': 770703, 'be teaching': 117530, 'teaching completely': 835548, 'completely online': 192326, 'future college': 342287, 'college professor': 186642, 'for new career': 323819, 'new career wear': 558453, 'career wear since': 164365, 'wear since ll': 974458, 'since ll be': 770704, 'll be teaching': 496634, 'be teaching completely': 117531, 'teaching completely online': 835549, 'completely online for': 192327, 'online for the': 608241, 'foreseeable future college': 329062, 'future college professor': 342288, 'glanced': 351576, 'copy': 203454, 'meaningfully': 524868, 'glanced at': 351577, 'few provision': 304023, 'provision in': 687269, 'the stimulus': 867891, 'stimulus bill': 801514, 'bill many': 130615, 'provision appear': 687250, 'be copy': 114247, 'copy from': 203457, '2008 09': 13634, '09 crisis': 1153, 'and resulting': 70420, 'resulting stimulus': 717721, 'ha missed': 371279, 'missed yet': 534261, 'another opportunity': 77744, 'to meaningfully': 909976, 'meaningfully reform': 524869, 'reform consumer': 706715, 'protection esp': 685419, 'esp in': 280400, 'glanced at few': 351578, 'at few provision': 98641, 'few provision in': 304024, 'provision in the': 687271, 'in the stimulus': 429573, 'the stimulus bill': 867894, 'stimulus bill many': 801516, 'bill many of': 130618, 'of the provision': 591376, 'the provision appear': 864741, 'provision appear to': 687251, 'to be copy': 901183, 'be copy from': 114248, 'copy from 2008': 203458, 'from 2008 09': 334233, '2008 09 crisis': 13635, '09 crisis and': 1154, 'crisis and resulting': 217046, 'and resulting stimulus': 70423, 'resulting stimulus package': 717722, 'stimulus package the': 801593, 'package the ha': 633420, 'the ha missed': 857003, 'ha missed yet': 371280, 'missed yet another': 534262, 'yet another opportunity': 1015996, 'another opportunity to': 77745, 'opportunity to meaningfully': 613713, 'to meaningfully reform': 909977, 'meaningfully reform consumer': 524870, 'reform consumer protection': 706716, 'consumer protection esp': 198525, 'protection esp in': 685421, 'esp in the': 280401, 'in the travel': 429626, 'the travel industry': 869934, 'haha': 373890, 'hollywood show': 400468, 'all supply': 44563, 'equipment are': 279689, 'ready and': 700839, 'and available': 58544, 'dream trump': 258628, 'trump said': 933801, 'said week': 731575, 'ago that': 38490, 'are well': 91609, 'for yes': 328022, 'yes well': 1015602, 'prepared you': 670270, 'find hand': 306951, 'sanitizer haha': 735017, 'hollywood show that': 400469, 'show that all': 767176, 'that all supply': 842568, 'all supply equipment': 44564, 'supply equipment are': 825218, 'equipment are ready': 279691, 'are ready and': 89458, 'ready and available': 700840, 'and available for': 58548, 'available for american': 104358, 'for american people': 319252, 'american people but': 52121, 'people but it': 647319, 'is just dream': 449126, 'just dream trump': 468651, 'dream trump said': 258629, 'trump said week': 933811, 'said week ago': 731576, 'week ago that': 975856, 'ago that we': 38493, 'we are well': 970760, 'are well prepared': 91612, 'well prepared for': 978503, 'prepared for yes': 670206, 'for yes well': 328023, 'yes well prepared': 1015603, 'well prepared you': 978506, 'prepared you can': 670271, 'can find hand': 158325, 'find hand sanitizer': 306952, 'hand sanitizer haha': 375426, 'staycation': 797838, '19 list': 8342, 'list support': 494546, 'independent shop': 434134, 'shop support': 760874, 'local charity': 497816, 'charity have': 173636, 'have staycation': 382741, 'staycation in': 797839, 'in independent': 424015, 'independent hotel': 434114, 'emptied supermarket': 274697, 'local high': 498074, 'street whilst': 813175, 'whilst you': 987711, 'your pasta': 1025225, 'covid 19 list': 213359, '19 list support': 8343, 'list support local': 494547, 'support local independent': 826628, 'local independent shop': 498118, 'independent shop support': 434136, 'shop support local': 760875, 'support local charity': 826622, 'local charity have': 497817, 'charity have staycation': 173637, 'have staycation in': 382742, 'staycation in independent': 797840, 'in independent hotel': 424016, 'independent hotel and': 434115, 'hotel and to': 405111, 'and to all': 74149, 'all the selfish': 44903, 'selfish bastard who': 748023, 'bastard who emptied': 112518, 'who emptied supermarket': 988692, 'emptied supermarket shelf': 274698, 'supermarket shelf how': 822481, 'shelf how about': 757167, 'about you support': 26980, 'you support your': 1021487, 'your local high': 1024699, 'local high street': 498075, 'high street whilst': 395440, 'street whilst you': 813176, 'whilst you re': 987712, 'you re eating': 1020609, 're eating your': 698586, 'eating your pasta': 266345, 'have focused': 380642, 'their heroic': 873537, 'heroic fight': 394198, 'against but': 37348, 'keep grocery': 471558, 'your thought': 1026145, 'thought and': 892967, 'and prayer': 69323, 'prayer well': 669079, 'well their': 978669, 'more dangerous': 538953, 'dangerous these': 225789, 'have focused on': 380643, 'focused on and': 311946, 'on and their': 599376, 'and their heroic': 73690, 'their heroic fight': 873538, 'heroic fight against': 394199, 'fight against but': 304607, 'against but please': 37349, 'but please keep': 146800, 'please keep grocery': 660152, 'keep grocery and': 471559, 'essential worker in': 281838, 'in your thought': 431133, 'your thought and': 1026146, 'thought and prayer': 892969, 'and prayer well': 69328, 'prayer well their': 669080, 'well their job': 978670, 'their job are': 873698, 'job are lot': 465660, 'are lot more': 87909, 'lot more dangerous': 504104, 'more dangerous these': 538957, 'dangerous these day': 225790, 'consumer cell': 196752, 'phone location': 654970, 'location data': 498883, 'data ha': 226255, 'proven to': 686181, 'be hugely': 115319, 'hugely lucrative': 410275, 'lucrative for': 506592, 'marketing sector': 517699, 'and law': 65988, 'enforcement community': 276752, 'community it': 189941, 'also useful': 49053, 'useful to': 950201, 'to urban': 917987, 'urban planner': 948120, 'planner and': 658486, 'other researcher': 620831, 'researcher hoping': 713914, 'of population': 588235, 'in sophisticated': 428121, 'sophisticated detail': 785976, 'consumer cell phone': 196753, 'cell phone location': 168961, 'phone location data': 654971, 'location data ha': 498885, 'data ha proven': 226258, 'ha proven to': 371567, 'proven to be': 686182, 'to be hugely': 901317, 'be hugely lucrative': 115320, 'hugely lucrative for': 410276, 'lucrative for the': 506593, 'for the marketing': 326551, 'the marketing sector': 860189, 'marketing sector and': 517700, 'sector and law': 744085, 'and law enforcement': 65989, 'law enforcement community': 482268, 'enforcement community it': 276753, 'community it also': 189942, 'it also useful': 456439, 'also useful to': 49054, 'useful to urban': 950202, 'to urban planner': 917988, 'urban planner and': 948121, 'planner and other': 658487, 'and other researcher': 68394, 'other researcher hoping': 620832, 'researcher hoping to': 713915, 'hoping to track': 403961, 'to track the': 917682, 'track the movement': 928227, 'the movement of': 861099, 'movement of population': 543901, 'of population in': 588236, 'population in sophisticated': 664695, 'in sophisticated detail': 428122, 'sanitizer change': 734648, 'verify can hand': 954790, 'hand sanitizer change': 375341, 'sanitizer change skin': 734649, 'vince': 957415, 'troyjohnson': 932698, 'feedingsandiego': 302508, 'sandiegostrong': 733702, 'essential human': 281138, 'need ceo': 554598, 'ceo vince': 169875, 'vince hall': 957416, 'hall explains': 374328, '19 troyjohnson': 11581, 'troyjohnson feedingsandiego': 932699, 'feedingsandiego sandiegostrong': 302509, 'food is the': 315157, 'the most essential': 860981, 'most essential human': 542301, 'essential human need': 281139, 'human need ceo': 410571, 'need ceo vince': 554599, 'ceo vince hall': 169876, 'vince hall explains': 957417, 'hall explains the': 374329, 'explains the challenge': 292230, 'the challenge to': 850653, 'challenge to meet': 171579, 'rising demand during': 723197, 'demand during 19': 235270, 'during 19 troyjohnson': 262411, '19 troyjohnson feedingsandiego': 11582, 'troyjohnson feedingsandiego sandiegostrong': 932700, 'digitatmarketing': 242822, 'webdevelopment': 974995, 'intelligent pricing': 441029, 'pricing keep': 677946, 'business alive': 143257, 'alive during': 41812, 'during epidemic': 262631, 'epidemic price': 279435, 'price business': 672967, 'business epidemic': 143703, 'epidemic socialmediamarketing': 279441, 'socialmediamarketing seo': 781116, 'seo digitatmarketing': 751046, 'digitatmarketing webdevelopment': 242823, 'webdevelopment smo': 974996, 'smo ppc': 775846, 'intelligent pricing keep': 441030, 'pricing keep your': 677947, 'keep your business': 472254, 'your business alive': 1023047, 'business alive during': 143258, 'alive during epidemic': 41814, 'during epidemic price': 262632, 'epidemic price business': 279436, 'price business epidemic': 672968, 'business epidemic socialmediamarketing': 143704, 'epidemic socialmediamarketing seo': 279442, 'socialmediamarketing seo digitatmarketing': 781118, 'seo digitatmarketing webdevelopment': 751047, 'digitatmarketing webdevelopment smo': 242824, 'webdevelopment smo ppc': 974997, 'glasgow': 351590, 'pondering': 663966, 'near glasgow': 553514, 'glasgow yesterday': 351593, 'yesterday it': 1015786, 'wa packed': 962899, 'people blocking': 647289, 'aisle studying': 40378, 'studying the': 814994, 'and pondering': 69184, 'pondering whether': 663967, 'whether to': 985601, 'buy have': 148776, 'heard about': 388045, 'pandemic glasgow': 635494, 'glasgow sundaymorning': 351591, 'sundaymorning stayathomeandstaysafe': 818312, 'stayathomeandstaysafe qu': 797724, 'to supermarket near': 915815, 'supermarket near glasgow': 821572, 'near glasgow yesterday': 553515, 'glasgow yesterday it': 351594, 'yesterday it wa': 1015787, 'it wa packed': 462169, 'wa packed with': 962903, 'with people blocking': 1000139, 'people blocking the': 647290, 'the aisle studying': 848535, 'aisle studying the': 40380, 'studying the item': 814995, 'item and pondering': 463067, 'and pondering whether': 69185, 'pondering whether to': 663968, 'whether to buy': 985602, 'to buy have': 902241, 'buy have they': 148778, 'have they heard': 383089, 'they heard about': 882420, 'heard about the': 388053, 'the pandemic glasgow': 862975, 'pandemic glasgow sundaymorning': 635495, 'glasgow sundaymorning stayathomeandstaysafe': 351592, 'sundaymorning stayathomeandstaysafe qu': 818313, 'stayathomeandstaysafe qu dateencasa': 797725, 'friction': 333169, 'fraudprevention': 331386, 'fight fraud': 304753, 'fraud customer': 331254, 'customer friction': 222392, 'friction to': 333172, 'post economy': 666101, 'economy fraudprevention': 267880, 'fraudprevention riskmanagement': 331391, 'riskmanagement banking': 724107, 'to fight fraud': 905789, 'fight fraud customer': 304754, 'fraud customer friction': 331255, 'customer friction to': 222393, 'friction to survive': 333173, 'the post economy': 864086, 'post economy fraudprevention': 666102, 'economy fraudprevention riskmanagement': 267881, 'fraudprevention riskmanagement banking': 331392, 'skyrocketing and': 773408, 'and costing': 60597, 'costing consumer': 208324, 'consumer according': 196002, '5m some': 20773, 'scam involve': 740211, 'involve fake': 444331, 'fake virus': 296737, 'virus treatment': 958946, 'fake vaccination': 296729, 'vaccination and': 951623, 'and scheme': 71067, 'trick the': 931712, 'into providing': 442902, 'providing personal': 687071, 'complaint about scam': 191932, 'about scam are': 26137, 'scam are skyrocketing': 740044, 'are skyrocketing and': 90161, 'skyrocketing and costing': 773409, 'and costing consumer': 60598, 'costing consumer according': 208325, 'consumer according to': 196003, 'according to 5m': 28515, 'to 5m some': 899781, '5m some of': 20774, 'the scam involve': 866415, 'scam involve fake': 740212, 'involve fake virus': 444332, 'fake virus treatment': 296738, 'virus treatment and': 958947, 'treatment and fake': 931030, 'and fake vaccination': 62632, 'fake vaccination and': 296730, 'vaccination and scheme': 951625, 'and scheme to': 71068, 'scheme to trick': 741593, 'to trick the': 917777, 'trick the virus': 931713, 'the virus into': 870850, 'virus into providing': 958356, 'into providing personal': 442903, 'providing personal information': 687072, 'downturn cheap': 257792, 'price global': 674193, 'disruption will': 246555, 'likely have': 492011, 'have major': 381423, 'major consequence': 509281, 'for clean': 320105, 'energy development': 276435, 'development climate': 239808, 'climate action': 182177, 'action at': 29965, 'at 00': 97346, 'pm today': 662013, 'today host': 919663, 'host covid': 404867, '19 clean': 5832, 'and climate': 59990, 'climate impact': 182226, 'the economic downturn': 853900, 'economic downturn cheap': 267075, 'downturn cheap oil': 257793, 'cheap oil gas': 174157, 'oil gas price': 596828, 'gas price global': 343971, 'price global supply': 674196, 'chain disruption will': 170655, 'disruption will likely': 246556, 'will likely have': 994002, 'likely have major': 492017, 'have major consequence': 381424, 'major consequence for': 509282, 'consequence for clean': 194853, 'for clean energy': 320106, 'clean energy development': 180520, 'energy development climate': 276436, 'development climate action': 239809, 'climate action at': 182178, 'action at 00': 29966, 'at 00 pm': 97353, '00 pm today': 443, 'pm today host': 662014, 'today host covid': 919664, 'host covid 19': 404868, 'covid 19 clean': 212807, '19 clean energy': 5833, 'clean energy and': 180519, 'energy and climate': 276386, 'and climate impact': 59992, 'procuring': 680129, 'minimizing': 533152, 'are best': 84952, 'practice suggestion': 668671, 'for procuring': 324763, 'procuring grocery': 680134, 'and minimizing': 67050, 'minimizing risk': 533154, 'of spreading': 590004, 'boston area': 135780, 'if relevant': 414723, 'relevant seems': 709174, 'that going': 844030, 'is worst': 454076, 'worst idea': 1011202, 'but grocery': 145825, 'delivery also': 233639, 'also come': 48040, 'what are best': 981056, 'are best practice': 84954, 'best practice suggestion': 127849, 'practice suggestion for': 668672, 'suggestion for procuring': 817639, 'for procuring grocery': 324765, 'procuring grocery and': 680135, 'grocery and minimizing': 364247, 'and minimizing risk': 67051, 'minimizing risk of': 533155, 'risk of spreading': 723779, 'of spreading covid': 590006, 're in boston': 698865, 'in boston area': 420912, 'boston area if': 135781, 'area if relevant': 92062, 'if relevant seems': 414724, 'relevant seems that': 709175, 'seems that going': 746856, 'that going to': 844033, 'store is worst': 808549, 'is worst idea': 454077, 'worst idea but': 1011203, 'idea but grocery': 413020, 'but grocery and': 145826, 'and other food': 68329, 'other food delivery': 620237, 'food delivery also': 314104, 'delivery also come': 233641, 'also come with': 48041, 'come with plenty': 187687, 'with plenty of': 1000233, 'plenty of risk': 660974, 'goodness': 358048, 'survived': 829312, 'herdmentality': 392632, 'relaxpeople': 708901, 'thisisamerica': 891637, 'whyworry': 991627, 'freakingout': 331555, 'lovenotfear': 505008, 'thank goodness': 841586, 'goodness me': 358055, 'my 72': 547171, '72 roll': 22023, 'paper survived': 640859, 'survived coronavirus': 829313, 'coronavirus 2020': 205440, 'toiletpaper merica': 922238, 'merica relax': 529119, 'relax herdmentality': 708814, 'herdmentality calmdown': 392633, 'calmdown relaxpeople': 156836, 'relaxpeople sheeple': 708902, 'sheeple thisisamerica': 756565, 'thisisamerica irrational': 891638, 'irrational whyworry': 444992, 'whyworry freakingout': 991628, 'freakingout lovenotfear': 331556, 'lovenotfear love': 505009, 'love fear': 504657, 'thank goodness me': 841588, 'goodness me and': 358056, 'and my 72': 67350, 'my 72 roll': 547172, '72 roll of': 22024, 'toilet paper survived': 921479, 'paper survived coronavirus': 640860, 'survived coronavirus 2020': 829314, 'coronavirus 2020 toiletpaper': 205441, '2020 toiletpaper merica': 14668, 'toiletpaper merica relax': 922239, 'merica relax herdmentality': 529120, 'relax herdmentality calmdown': 708815, 'herdmentality calmdown relaxpeople': 392634, 'calmdown relaxpeople sheeple': 156837, 'relaxpeople sheeple thisisamerica': 708903, 'sheeple thisisamerica irrational': 756566, 'thisisamerica irrational whyworry': 891639, 'irrational whyworry freakingout': 444993, 'whyworry freakingout lovenotfear': 991629, 'freakingout lovenotfear love': 331557, 'lovenotfear love fear': 505010, 'redtree': 705778, 'gallery': 342944, 'sterilization': 799852, 'crosby': 218978, 'compounding': 192603, 'columbus': 186891, 'feel good': 302643, 'friday thank': 333290, 'you true': 1021933, 'true tattoo': 933178, 'tattoo supply': 834869, 'supply redtree': 825753, 'redtree tattoo': 705779, 'tattoo gallery': 834863, 'gallery who': 342949, 'who donated': 988653, 'donated glove': 254343, 'glove sterilization': 352926, 'sterilization wipe': 799857, 'wipe mask': 996314, 'mask thank': 519337, 'to crosby': 903757, 'crosby drug': 218979, 'drug home': 260974, 'home health': 401352, 'care compounding': 163890, 'compounding pharmacy': 192606, 'pharmacy for': 654311, 'donating hand': 254466, 'appreciate columbus': 82716, 'feel good friday': 302646, 'good friday thank': 357104, 'friday thank you': 333291, 'thank you true': 841836, 'you true tattoo': 1021934, 'true tattoo supply': 933179, 'tattoo supply redtree': 834870, 'supply redtree tattoo': 825754, 'redtree tattoo gallery': 705780, 'tattoo gallery who': 834864, 'gallery who donated': 342950, 'who donated glove': 988654, 'donated glove sterilization': 254344, 'glove sterilization wipe': 352927, 'sterilization wipe mask': 799858, 'wipe mask thank': 996316, 'mask thank you': 519339, 'you to crosby': 1021766, 'to crosby drug': 903758, 'crosby drug home': 218980, 'drug home health': 260975, 'home health care': 401355, 'health care compounding': 386223, 'care compounding pharmacy': 163891, 'compounding pharmacy for': 192607, 'pharmacy for donating': 654313, 'for donating hand': 320819, 'donating hand sanitizer': 254467, 'sanitizer we appreciate': 736041, 'we appreciate columbus': 970452, 'mof': 535535, 'international crude': 441779, 'low our': 505474, 'our govt': 623284, 'govt under': 361322, 'under pm': 940196, 'pm modi': 661939, 'modi fm': 535451, 'fm mof': 311705, 'mof raise': 535536, 'raise petrol': 695900, 'by during': 152439, 'crisis instead': 217552, 'boosting economy': 135070, 'in critical': 421906, 'situation implementing': 772313, 'implementing negative': 418511, 'negative policy': 556814, 'policy is': 663429, 'when international crude': 983605, 'international crude price': 441781, 'crude price are': 219583, 'price are all': 672630, 'are all time': 84365, 'time low our': 897165, 'low our govt': 505475, 'our govt under': 623288, 'govt under pm': 361323, 'under pm modi': 940197, 'pm modi fm': 661942, 'modi fm mof': 535452, 'fm mof raise': 311706, 'mof raise petrol': 535537, 'raise petrol diesel': 695901, 'diesel price by': 241676, 'price by during': 673019, 'by during time': 152440, '19 crisis instead': 6265, 'crisis instead of': 217553, 'instead of boosting': 440238, 'of boosting economy': 580786, 'boosting economy in': 135071, 'economy in critical': 267964, 'in critical situation': 421909, 'critical situation implementing': 218662, 'situation implementing negative': 772314, 'implementing negative policy': 418512, 'negative policy is': 556815, 'policy is this': 663431, 'this the way': 890542, 'the way forward': 871152, 'hit everyone': 398227, 'everyone hard': 286989, 'all shed': 44303, 'shed tear': 756520, 'tear for': 835942, 'really suffering': 702634, 'suffering result': 817338, 'price government': 674347, 'government really': 360509, 'should prioritise': 766331, 'prioritise state': 678397, 'state support': 795963, 'pandemic ha hit': 635550, 'ha hit everyone': 370880, 'hit everyone hard': 398228, 'everyone hard but': 286990, 'hard but let': 377881, 'but let all': 146261, 'let all shed': 486569, 'all shed tear': 44304, 'shed tear for': 756521, 'tear for the': 835944, 'for the oil': 326595, 'the oil company': 862106, 'oil company they': 596695, 'company they re': 191207, 'they re really': 883108, 're really suffering': 699363, 'really suffering result': 702636, 'suffering result of': 817339, 'result of low': 717600, 'oil price government': 597153, 'price government really': 674349, 'government really should': 360512, 'really should prioritise': 702583, 'should prioritise state': 766332, 'prioritise state support': 678398, 'state support for': 795964, 'support for them': 826526, 'hefty': 388784, 'mahn': 508517, 'that organization': 845557, 'organization that': 619426, 'that charge': 843202, 'charge hefty': 173251, 'hefty price': 388789, 'ridiculous mahn': 721567, 'fact that organization': 295806, 'that organization that': 845559, 'organization that charge': 619428, 'that charge hefty': 843203, 'charge hefty price': 173253, 'hefty price to': 388790, 'to make use': 909761, 'of their service': 591701, 'their service are': 874655, 'service are now': 752139, 'now asking for': 574115, 'asking for donation': 95983, 'for donation amid': 320824, 'donation amid the': 254536, 'virus is ridiculous': 958400, 'is ridiculous mahn': 451521, 'imagery': 416666, 'see ton': 745978, 'of picture': 588115, 'buying moment': 150722, 'moment then': 536063, 'available ve': 104683, 'that imagery': 844430, 'imagery when': 416667, 'when really': 983927, 'not indicative': 570137, 'actual availability': 30631, 'you see ton': 1021075, 'see ton of': 745979, 'ton of picture': 924281, 'of picture of': 588116, 'empty shelf during': 275060, 'shelf during panic': 757002, 'panic buying moment': 637810, 'buying moment then': 150723, 'moment then you': 536064, 'then you re': 877792, 'going to think': 355745, 'think that there': 885612, 'that there no': 846903, 'no food available': 564252, 'food available ve': 313481, 'available ve seen': 104684, 'lot of that': 504301, 'of that imagery': 590728, 'that imagery when': 844431, 'imagery when really': 416668, 'when really that': 983928, 'really that not': 702646, 'that not indicative': 845392, 'not indicative of': 570138, 'indicative of the': 435039, 'of the actual': 590777, 'the actual availability': 848315, 'actual availability of': 30632, 'baffling': 108199, 'devastate': 239562, 'why nigerian': 991205, 'nigerian aren': 562834, 'aren completely': 92367, 'completely mad': 192318, 'russian and': 728609, 'saudi for': 737263, 'for crushing': 320472, 'crushing oil': 219817, 'is bit': 446186, 'bit baffling': 131535, 'baffling to': 108204, 'me their': 523667, 'their feud': 873307, 'feud along': 303634, 'the worsening': 872033, 'worsening covid': 1011090, 'will devastate': 993172, 'devastate the': 239563, 'the nigerian': 861800, 'nigerian economy': 562843, 'why nigerian aren': 991206, 'nigerian aren completely': 562835, 'aren completely mad': 92368, 'completely mad at': 192319, 'mad at the': 507525, 'at the russian': 101084, 'the russian and': 866093, 'russian and saudi': 728610, 'and saudi for': 70937, 'saudi for crushing': 737264, 'for crushing oil': 320473, 'crushing oil price': 219818, 'price is bit': 674860, 'is bit baffling': 446187, 'bit baffling to': 131536, 'baffling to me': 108205, 'to me their': 909959, 'me their feud': 523669, 'their feud along': 873308, 'feud along with': 303635, 'with the worsening': 1001551, 'the worsening covid': 872034, 'worsening covid 19': 1011091, 'crisis will devastate': 218409, 'will devastate the': 993173, 'devastate the nigerian': 239565, 'the nigerian economy': 861801, 'lfc75': 487886, 'lfc75 judge': 487887, 'judge tell': 467637, 'tell her': 836966, 'her you': 392543, 'supermarket had': 820655, 'had sold': 373524, 'lfc75 judge tell': 487888, 'judge tell her': 467638, 'tell her you': 836969, 'her you checked': 392544, 'you checked and': 1017937, 'checked and the': 174742, 'and the local': 73455, 'local supermarket had': 498532, 'supermarket had sold': 820659, 'had sold out': 373525, 'ultralow': 939180, 'lend': 486201, 'condemned': 193361, 'deceived by': 230729, 'by ultralow': 154628, 'ultralow interest': 939181, 'rate american': 697147, 'american borrow': 51842, 'borrow amp': 135596, 'amp lend': 54065, 'lend in': 486205, 'the kind': 858810, 'of false': 583395, 'false economy': 297423, 'that candidate': 843128, 'candidate trump': 161305, 'trump properly': 933768, 'properly condemned': 684176, 'condemned in': 193362, 'in 2016': 419775, '2016 covid': 13828, 'will sooner': 994905, 'sooner or': 785919, 'or later': 615930, 'later beat': 481033, 'beat retreat': 118548, 'retreat for': 719748, 'honest price': 403072, 'amp true': 54744, 'true value': 933202, 'value it': 952141, 'well if': 978302, 'if central': 413952, 'central banker': 169379, 'banker did': 110359, 'deceived by ultralow': 230730, 'by ultralow interest': 154629, 'ultralow interest rate': 939182, 'interest rate american': 441386, 'rate american borrow': 697148, 'american borrow amp': 51843, 'borrow amp lend': 135597, 'amp lend in': 54066, 'lend in the': 486206, 'in the kind': 429299, 'the kind of': 858812, 'kind of false': 474894, 'of false economy': 583397, 'false economy that': 297424, 'economy that candidate': 268263, 'that candidate trump': 843129, 'candidate trump properly': 161306, 'trump properly condemned': 933769, 'properly condemned in': 684177, 'condemned in 2016': 193363, 'in 2016 covid': 419776, '2016 covid 19': 13829, '19 will sooner': 12111, 'will sooner or': 994906, 'sooner or later': 785920, 'or later beat': 615931, 'later beat retreat': 481034, 'beat retreat for': 118549, 'retreat for the': 719749, 'sake of honest': 731866, 'of honest price': 584735, 'honest price amp': 403073, 'price amp true': 672344, 'amp true value': 54745, 'true value it': 933203, 'value it would': 952144, 'would be well': 1011667, 'be well if': 118085, 'well if central': 978304, 'if central banker': 413953, 'central banker did': 169380, 'banker did the': 110360, 'did the same': 240854, 'g2': 342660, 'exploding': 292320, 'the traffic': 869878, 'our category': 622326, 'on g2': 601063, 'g2 is': 342661, 'is exploding': 447655, 'exploding result': 292325, 'quarantine think': 692623, 'think what': 885779, 'largest shift': 480017, 'the traffic to': 869880, 'traffic to some': 929156, 'of our category': 587430, 'our category on': 622328, 'category on g2': 167201, 'on g2 is': 601064, 'g2 is exploding': 342662, 'is exploding result': 447657, 'exploding result of': 292326, 'result of everyone': 717588, 'of everyone working': 583263, 'everyone working from': 287634, '19 quarantine think': 9919, 'quarantine think what': 692624, 'think what we': 885781, 'seeing is the': 746349, 'is the beginning': 452735, 'beginning of one': 123651, 'the largest shift': 858976, 'largest shift of': 480018, 'behavior in history': 124079, 'wfp warned': 980876, 'warned on': 967017, 'programme wfp warned': 683354, 'wfp warned on': 980877, 'warned on friday': 967018, 'food what': 317556, 'buying nobody': 150762, 'nobody ha': 566007, 'of starvation': 590052, 'starvation in': 795171, 'lockdown they': 500025, 've died': 953046, 'coronavirus stoppanicbuying': 206836, 'even in lockdown': 284241, 'lockdown in other': 499510, 'other country people': 620024, 'country people can': 210953, 'people can still': 647411, 'can still get': 159775, 'still get food': 800553, 'get food what': 347075, 'food what is': 317564, 'with people stop': 1000172, 'stop buying nobody': 804544, 'buying nobody ha': 150763, 'nobody ha died': 566009, 'died of starvation': 241593, 'of starvation in': 590057, 'starvation in lockdown': 795172, 'in lockdown they': 424854, 'lockdown they ve': 500028, 'they ve died': 883645, 've died of': 953047, 'died of coronavirus': 241586, 'of coronavirus stoppanicbuying': 581966, 'human in': 410513, 'these scary': 880632, 'income people': 432430, 'cannot panic': 162025, 'buy they': 149347, 'it consider': 457269, 'bank group': 109879, 'that support': 846590, 'support nutrition': 826682, 'nutrition program': 577736, 'program quarter': 683286, 'our child': 622362, 'receive regular': 703534, 'regular meal': 707812, 'meal all': 524085, 'all year': 45524, 'year round': 1014933, 'buying it human': 150596, 'it human in': 458658, 'human in these': 410517, 'in these scary': 429854, 'these scary time': 880633, 'scary time low': 741208, 'time low income': 897164, 'low income people': 505355, 'income people cannot': 432432, 'people cannot panic': 647436, 'cannot panic buy': 162026, 'panic buy they': 637539, 'buy they cannot': 149349, 'afford it consider': 34710, 'it consider donating': 457270, 'food bank group': 313580, 'bank group that': 109880, 'group that support': 366915, 'that support nutrition': 846591, 'support nutrition program': 826683, 'nutrition program quarter': 577738, 'program quarter of': 683287, 'quarter of our': 693258, 'of our child': 587432, 'our child do': 622363, 'do not receive': 249814, 'not receive regular': 571250, 'receive regular meal': 703535, 'regular meal all': 707813, 'meal all year': 524087, 'all year round': 45525, 'have terrible': 382938, 'terrible habit': 838403, 'of touching': 592340, 'touching my': 926699, 'face doesn': 294403, 'farm or': 299153, 'or now': 616326, 'to wearing': 918449, 'wearing because': 974594, 'because for': 119066, 'whatever reason': 982790, 'reason it': 702947, 'help remind': 390435, 'have terrible habit': 382939, 'terrible habit of': 838404, 'habit of touching': 372662, 'of touching my': 592341, 'touching my face': 926700, 'my face doesn': 548154, 'face doesn matter': 294404, 'matter if out': 520579, 'if out on': 414585, 'out on the': 626921, 'on the farm': 604110, 'the farm or': 854934, 'farm or now': 299156, 'or now in': 616327, 'now in grocery': 575001, 'store ve taken': 811046, 've taken to': 953624, 'taken to wearing': 833111, 'to wearing because': 918451, 'wearing because for': 974595, 'because for whatever': 119067, 'for whatever reason': 327813, 'whatever reason it': 982791, 'reason it help': 702949, 'it help remind': 458550, 'help remind me': 390436, 'remind me not': 710488, 'movementcontrolorder': 543947, 'just wondering': 470328, 'if hotel': 414242, 'still operating': 800991, 'operating or': 613097, 'they allowed': 881125, 'during movementcontrolorder': 262799, 'movementcontrolorder and': 543948, 'just sharing': 469774, 'thought do': 893021, 'very risky': 955476, 'now someone': 575869, 'someone might': 784568, 'affected and': 34287, 'and touched': 74303, 'touched you': 926653, 'just wondering if': 470330, 'wondering if hotel': 1004169, 'if hotel are': 414243, 'hotel are still': 405115, 'are still operating': 90458, 'still operating or': 800994, 'operating or are': 613098, 'are they allowed': 90987, 'they allowed to': 881128, 'allowed to operate': 46241, 'operate during movementcontrolorder': 612990, 'during movementcontrolorder and': 262800, 'movementcontrolorder and just': 543949, 'and just sharing': 65720, 'just sharing my': 469775, 'sharing my thought': 755558, 'my thought do': 550355, 'thought do you': 893022, 'think it very': 885357, 'it very risky': 462038, 'very risky to': 955478, 'risky to go': 724129, 'go and stock': 353289, 'on grocery at': 601179, 'at supermarket now': 100752, 'supermarket now someone': 821675, 'now someone might': 575870, 'someone might have': 784570, 'might have been': 531008, 'been affected and': 120620, 'affected and touched': 34288, 'and touched you': 74304, 'used inside': 949946, 'inside knowledge': 439304, 'looming crisis': 503102, 'price crashed': 673331, 'they used inside': 883622, 'used inside knowledge': 949947, 'inside knowledge about': 439305, 'about the looming': 26439, 'the looming crisis': 859712, 'looming crisis to': 503103, 'before price crashed': 123022, 'no people': 565092, 'people licking': 648627, 'supermarket simply': 822700, 'not participating': 570965, 'are no people': 88274, 'no people licking': 565094, 'people licking apple': 648628, 'the supermarket simply': 868803, 'supermarket simply because': 822701, 'simply because of': 770184, '19 you are': 12263, 'are not participating': 88432, 'not participating in': 570966, 'participating in reality': 642574, 'sustainable': 829787, 'aapl warned': 24136, 'china impact': 176718, 'impact to': 418027, 'ha yet': 372502, 'to warn': 918337, 'warn on': 966949, 'on worldwide': 605382, 'worldwide impact': 1010373, 'impact do': 417636, 'think 5g': 885069, '5g phone': 20677, 'phone will': 655066, 'be big': 113852, 'big seller': 129981, 'are introducing': 87561, 'introducing cheaper': 443488, 'cheaper phone': 174260, 'phone would': 655072, 'if current': 414020, 'price aren': 672769, 'aren sustainable': 92541, 'sustainable 270': 829788, '270 call': 16325, 'call flying': 155843, 'shelf sell': 757494, 'sell or': 748831, 'aapl warned on': 24137, 'warned on the': 967019, 'on the china': 604023, 'the china impact': 850834, 'china impact to': 176719, 'impact to 19': 418028, 'to 19 but': 899538, '19 but ha': 5504, 'but ha yet': 145843, 'ha yet to': 372504, 'yet to warn': 1016298, 'to warn on': 918340, 'warn on worldwide': 966950, 'on worldwide impact': 605383, 'worldwide impact do': 1010374, 'impact do not': 417637, 'not think 5g': 572074, 'think 5g phone': 885071, '5g phone will': 20678, 'phone will be': 655067, 'will be big': 992379, 'be big seller': 113853, 'big seller and': 129982, 'seller and the': 748968, 'only reason they': 611058, 'reason they are': 703006, 'they are introducing': 881314, 'are introducing cheaper': 87562, 'introducing cheaper phone': 443489, 'cheaper phone would': 174261, 'phone would be': 655073, 'be if current': 115348, 'if current price': 414021, 'current price aren': 221310, 'price aren sustainable': 672772, 'aren sustainable 270': 92542, 'sustainable 270 call': 829789, '270 call flying': 16326, 'call flying off': 155844, 'the shelf sell': 866874, 'shelf sell or': 757495, 'sell or buy': 748833, 'strengthens': 813272, 'forexsignals': 329193, 'forextrader': 329198, 'forex news': 329172, 'news dollar': 560367, 'dollar strengthens': 253088, 'strengthens oil': 813275, 'off record': 594109, 'record session': 705061, 'session forexsignals': 753281, 'forexsignals forextrader': 329194, 'forextrader currency': 329199, 'currency stockmarket': 221064, 'forex news dollar': 329173, 'news dollar strengthens': 560368, 'dollar strengthens oil': 253089, 'strengthens oil price': 813276, 'oil price come': 597082, 'price come off': 673190, 'come off record': 187425, 'off record session': 594110, 'record session forexsignals': 705062, 'session forexsignals forextrader': 753282, 'forexsignals forextrader currency': 329195, 'forextrader currency stockmarket': 329200, 'stop stock': 805070, 'stock buying': 801961, 'selling on': 749372, 'ashamed seen': 95075, 'seen cleaning': 746979, 'product toilet': 681772, 'worse baby': 1010872, 'and nappy': 67419, 'nappy all': 551874, 'world stop stock': 1010009, 'stop stock buying': 805071, 'stock buying and': 801962, 'and selling on': 71238, 'selling on you': 749374, 'be ashamed seen': 113700, 'ashamed seen cleaning': 95076, 'seen cleaning product': 746980, 'cleaning product toilet': 181040, 'product toilet roll': 681773, 'toilet roll but': 921557, 'roll but the': 725229, 'but the worse': 147430, 'the worse baby': 872028, 'worse baby formula': 1010873, 'formula and nappy': 329696, 'and nappy all': 67420, 'nappy all selling': 551875, 'please believe': 659725, 'believe walked': 126404, 'past local': 643560, 'pub today': 687787, 'my way': 550531, 'inside drinking': 439253, 'drinking there': 258941, 'be stricter': 117395, 'place clearly': 657383, 'clearly some': 181570, 'please believe walked': 659726, 'believe walked past': 126405, 'walked past local': 964972, 'past local pub': 643561, 'local pub today': 498311, 'pub today on': 687788, 'today on my': 919971, 'on my way': 602328, 'my way to': 550539, 'way to stock': 970104, 'on food there': 600920, 'food there were': 317156, 'were people inside': 979974, 'people inside drinking': 648481, 'inside drinking there': 439254, 'drinking there need': 258942, 'to be stricter': 901567, 'be stricter measure': 117396, 'stricter measure in': 813668, 'in place clearly': 426727, 'place clearly some': 657384, 'clearly some people': 181571, 'some people aren': 783505, 'people aren taking': 647129, 'preying': 672085, 'consumer what': 199504, 'yourself against': 1026504, 'against hacker': 37479, 'hacker preying': 372771, 'preying on': 672086, 'on based': 599574, 'based fear': 111574, 'fear get': 301139, 'get tip': 348454, 'from perspective': 336907, 'perspective gt': 653200, 'consumer what can': 199505, 'what can you': 981185, 'you do to': 1018276, 'do to protect': 250398, 'protect yourself against': 685078, 'yourself against hacker': 1026506, 'against hacker preying': 37480, 'hacker preying on': 372772, 'preying on based': 672087, 'on based fear': 599575, 'based fear get': 111575, 'fear get tip': 301140, 'get tip to': 348456, 'tip to get': 898929, 'get you through': 348685, 'you through the': 1021731, 'through the from': 894739, 'the from perspective': 855835, 'from perspective gt': 336908, 'apparel': 81854, 'we hear': 972001, 'all mall': 43446, 'mall retail': 511820, 'retail board': 717888, 'of director': 582640, 'director and': 243600, 'and top': 74284, 'top management': 925611, 'taken pay': 833049, 'cut after': 223217, 'the numerous': 861970, 'numerous furlough': 577136, 'furlough personal': 341894, 'personal uncertainty': 652987, 'uncertainty shouldn': 939757, 'shouldn just': 766739, 'just hit': 468972, 'associate retail': 96892, 'retail apparel': 717845, 'apparel fashion': 81857, 'will we hear': 995330, 'we hear that': 972002, 'hear that all': 387985, 'that all mall': 842554, 'all mall retail': 43447, 'mall retail board': 511821, 'retail board of': 717889, 'board of director': 133658, 'of director and': 582641, 'director and top': 243603, 'and top management': 74286, 'top management have': 925612, 'management have taken': 512577, 'have taken pay': 382914, 'taken pay cut': 833050, 'pay cut after': 644825, 'cut after the': 223219, 'after the numerous': 36337, 'the numerous furlough': 861972, 'numerous furlough personal': 577137, 'furlough personal uncertainty': 341895, 'personal uncertainty shouldn': 652988, 'uncertainty shouldn just': 939758, 'shouldn just hit': 766740, 'just hit the': 468974, 'hit the store': 398450, 'the store associate': 867982, 'store associate retail': 806566, 'associate retail apparel': 96893, 'retail apparel fashion': 717846, 'hid': 394800, 'spoon': 789865, 'mypov love': 550791, 'price removed': 676179, 'removed egg': 710858, 'egg from': 269866, 'the fried': 855821, 'rice reduced': 721121, 'the portion': 864050, 'portion and': 665018, 'and hid': 64544, 'hid the': 394801, 'the spoon': 867591, 'spoon service': 789871, 'le portion': 483079, 'portion smaller': 665026, 'smaller price': 775291, 'up how': 945123, 'how fight': 407865, 'fight racism': 304852, 'mypov love them': 550792, 'love them but': 504815, 'them but they': 875500, 'but they raised': 147513, 'their price removed': 874414, 'price removed egg': 676180, 'removed egg from': 710859, 'egg from the': 269867, 'from the fried': 337713, 'the fried rice': 855822, 'fried rice reduced': 333457, 'rice reduced the': 721122, 'reduced the portion': 706184, 'the portion and': 864051, 'portion and hid': 665019, 'and hid the': 64545, 'hid the spoon': 394802, 'the spoon service': 867592, 'spoon service is': 789872, 'service is le': 752518, 'is le portion': 449248, 'le portion smaller': 483080, 'portion smaller price': 665027, 'smaller price up': 775292, 'price up how': 677238, 'up how fight': 945124, 'how fight racism': 407866, 'donnie': 255148, 'donnie work': 255149, 'work thinking': 1005851, 'face face': 294430, 'face with': 294859, 'medical mask': 526252, 'mask face': 518634, 'face screaming': 294720, 'screaming in': 742661, 'in fear': 422811, 'fear grocery': 301147, 'from covi': 335047, 'donnie work thinking': 255151, 'work thinking face': 1005852, 'thinking face face': 885903, 'face face with': 294431, 'face with medical': 294862, 'with medical mask': 999471, 'medical mask face': 526256, 'mask face screaming': 518635, 'face screaming in': 294721, 'screaming in fear': 742662, 'in fear grocery': 422816, 'fear grocery worker': 301148, 'worker are starting': 1006426, 'die from the': 241357, 'the coronavirus at': 851806, 'died from covi': 241551, 'patchogue': 643950, 'kullen': 477904, 'raid': 695594, 'flea': 310268, 'tick': 895573, 'paperproducts': 641153, 'ghost supermarket': 349672, 'supermarket patchogue': 821939, 'patchogue march': 643951, '2020 empty': 14292, 'empty paper': 274995, 'product shelf': 681613, 'king kullen': 475274, 'kullen in': 477905, 'in patchogue': 426547, 'patchogue plenty': 643953, 'of raid': 588719, 'raid flea': 695597, 'flea tick': 310269, 'tick spray': 895576, 'spray if': 790296, 'supermarket emptyshelves': 820160, 'emptyshelves paperproducts': 275311, 'ghost supermarket patchogue': 349673, 'supermarket patchogue march': 821940, 'patchogue march 20': 643952, '20 2020 empty': 12881, '2020 empty paper': 14293, 'empty paper product': 274996, 'paper product shelf': 640632, 'product shelf at': 681614, 'shelf at king': 756848, 'at king kullen': 99384, 'king kullen in': 475275, 'kullen in patchogue': 477906, 'in patchogue plenty': 426548, 'patchogue plenty of': 643954, 'plenty of raid': 660970, 'of raid flea': 588720, 'raid flea tick': 695598, 'flea tick spray': 310270, 'tick spray if': 895577, 'spray if you': 790297, 'you could use': 1018104, 'could use it': 209804, 'use it supermarket': 949314, 'it supermarket emptyshelves': 461361, 'supermarket emptyshelves paperproducts': 820161, 'alright swiss': 47787, 'swiss government': 830452, 'government just': 360295, 'called emergency': 156301, 'emergency status': 272988, 'status all': 796657, 'all unnecessary': 45320, 'unnecessary store': 942938, 'still the': 801285, 'doctor don': 250893, 'alright swiss government': 47788, 'swiss government just': 830454, 'government just called': 360297, 'just called emergency': 468411, 'called emergency status': 156302, 'emergency status all': 272989, 'status all unnecessary': 796658, 'all unnecessary store': 45322, 'unnecessary store are': 942939, 'are closed and': 85330, 'closed and you': 183001, 'have to disinfect': 383195, 'to disinfect your': 904405, 'hand before you': 374835, 'before you enter': 123319, 'the supermarket but': 868498, 'supermarket but still': 819457, 'but still the': 147184, 'still the doctor': 801288, 'the doctor don': 853461, 'doctor don want': 250894, 'to take in': 916190, 'experiment': 291730, 'small experiment': 774941, 'experiment facebook': 291731, 'facebook approved': 294892, 'approved seven': 83194, 'seven scheduled': 753766, 'scheduled ad': 741480, 'ad with': 31196, 'with content': 997773, 'content that': 200846, 'that violated': 847251, 'violated company': 957487, 'company rule': 191038, 'rule about': 727171, '19 indicating': 7823, 'indicating flaw': 435008, 'in automated': 420635, 'automated ad': 103952, 'ad screening': 31153, 'screening consumer': 742762, 'in small experiment': 428015, 'small experiment facebook': 774942, 'experiment facebook approved': 291732, 'facebook approved seven': 294894, 'approved seven scheduled': 83195, 'seven scheduled ad': 753767, 'scheduled ad with': 741481, 'ad with content': 31197, 'with content that': 997774, 'content that violated': 200847, 'that violated company': 847252, 'violated company rule': 957488, 'company rule about': 191039, 'rule about covid': 727172, 'covid 19 indicating': 213261, '19 indicating flaw': 7824, 'indicating flaw in': 435009, 'flaw in automated': 310260, 'in automated ad': 420636, 'automated ad screening': 103953, 'ad screening consumer': 31154, 'screening consumer report': 742763, '973': 23705, '504': 20128, '6240': 21250, 'njcoronavirus': 563477, 'who suspect': 989720, 'other fraud': 620267, 'can file': 158302, 'complaint online': 192006, 'state division': 795524, 'at 973': 97812, '973 504': 23706, '504 6240': 20129, '6240 call': 21252, 'call leave': 155969, 'name message': 551654, 'company name': 190898, 'address njcoronavirus': 32000, 'anyone who suspect': 80633, 'who suspect price': 989721, 'gouging and other': 359249, 'and other fraud': 68330, 'other fraud related': 620268, '19 can file': 5609, 'can file complaint': 158303, 'file complaint online': 305335, 'complaint online at': 192007, 'at or contact': 99990, 'or contact the': 614804, 'contact the state': 200230, 'the state division': 867763, 'state division of': 795525, 'affair at 973': 34004, 'at 973 504': 97813, '973 504 6240': 23707, '504 6240 call': 20131, '6240 call leave': 21253, 'call leave your': 155970, 'leave your name': 485056, 'your name message': 1024929, 'name message and': 551655, 'message and the': 529267, 'and the company': 73290, 'the company name': 851338, 'company name and': 190899, 'name and address': 551605, 'and address njcoronavirus': 57688, 'main thing': 508839, 'thing brit': 884200, 'brit want': 140353, 'over download': 630158, 'report tracking': 712397, 'sentiment on': 750973, 'are the main': 90860, 'the main thing': 859914, 'main thing brit': 508840, 'thing brit want': 884201, 'brit want to': 140354, 'do once the': 249927, 'is over download': 450696, 'over download our': 630159, 'free report tracking': 332099, 'report tracking consumer': 712398, 'consumer sentiment on': 198920, 'sentiment on the': 750975, 'get the answer': 348221, 'spouse': 790224, 'the spouse': 867609, 'spouse keep': 790227, 'keep making': 471643, 'me use': 523868, 'sanitizer isn': 735218, 'isn virus': 454751, 'virus using': 958970, 'like throwing': 491564, 'throwing salt': 895105, 'salt over': 732819, 'your shoulder': 1025797, 'shoulder or': 766698, 'or knocking': 615909, 'knocking on': 476184, 'on wood': 605362, 'the spouse keep': 867610, 'spouse keep making': 790228, 'keep making me': 471644, 'making me use': 511205, 'me use hand': 523869, 'hand sanitizer isn': 375459, 'sanitizer isn virus': 735221, 'isn virus using': 454752, 'virus using hand': 958971, 'sanitizer is like': 735195, 'is like throwing': 449336, 'like throwing salt': 491565, 'throwing salt over': 895106, 'salt over your': 732820, 'over your shoulder': 630973, 'your shoulder or': 1025800, 'shoulder or knocking': 766699, 'or knocking on': 615910, 'knocking on wood': 476185, 'for god': 321905, 'god sake': 354793, 'sake we': 731877, 'pandemic stop': 636561, 'stop running': 804964, 'thing every': 884312, 'house you': 406708, 'risking your': 724101, 'safety is': 730587, 'is loaf': 449412, 'fresh bread': 332930, 'bread worth': 138645, 'worth your': 1011462, 'for god sake': 321906, 'god sake we': 354795, 'sake we are': 731878, 'middle of pandemic': 530683, 'of pandemic stop': 587708, 'pandemic stop running': 636562, 'stop running to': 804967, 'supermarket for couple': 820386, 'of thing every': 591897, 'thing every time': 884315, 'time you leave': 898406, 'your house you': 1024425, 'house you are': 406709, 'you are risking': 1017218, 'are risking your': 89728, 'risking your safety': 724103, 'your safety is': 1025665, 'safety is loaf': 730591, 'is loaf of': 449413, 'loaf of fresh': 497366, 'of fresh bread': 583942, 'fresh bread worth': 332934, 'bread worth your': 138646, 'worth your life': 1011463, 'your life 19': 1024626, '19 get': 7194, 'get protected': 347857, 'protected face': 685129, 'mask on': 519042, 'on stock': 603670, 'stock regular': 802782, '19 get protected': 7200, 'get protected face': 347858, 'protected face mask': 685130, 'face mask on': 294570, 'mask on stock': 519054, 'on stock regular': 603676, 'stock regular price': 802783, 'oil call': 596663, 'call won': 156238, 'crashed to': 215091, 'low up': 505717, 'up 40': 944168, 'bullish oil call': 142462, 'oil call won': 596664, 'call won big': 156239, 'won big price': 1003755, 'big price crashed': 129932, 'price crashed to': 673334, 'crashed to 18': 215092, 'year low up': 1014740, 'low up 40': 505718, 'up 40 in': 944170, 'bender': 126864, 'from supplier': 337515, 'for private': 324748, 'private shop': 678985, 'shop such': 760857, 'such my': 816646, 'dad butcher': 224301, 'butcher because': 148035, 'longer we': 502107, 'we ignore': 972054, 'ignore the': 415842, 'higher the': 395765, 'of private': 588445, 'owner becoming': 632402, 'becoming broke': 120278, 'broke and': 140821, 'and struggling': 72599, 'struggling self': 814488, 'isolate mean': 454883, 'mean stay': 524652, 'inside not': 439324, 'on bender': 599621, 'going up from': 355783, 'up from supplier': 944992, 'from supplier for': 337517, 'supplier for private': 824536, 'for private shop': 324755, 'private shop such': 678987, 'shop such my': 760858, 'such my dad': 816647, 'my dad butcher': 547883, 'dad butcher because': 224302, 'butcher because of': 148036, '19 the longer': 11216, 'the longer we': 859697, 'longer we ignore': 502108, 'we ignore the': 972055, 'ignore the severity': 415847, 'severity of this': 754133, 'of this the': 592050, 'this the higher': 890524, 'the higher the': 857332, 'higher the chance': 395766, 'the chance of': 850661, 'chance of private': 171766, 'of private shop': 588449, 'private shop owner': 678986, 'shop owner becoming': 760641, 'owner becoming broke': 632403, 'becoming broke and': 120279, 'broke and struggling': 140822, 'and struggling self': 72601, 'struggling self isolate': 814489, 'self isolate mean': 747683, 'isolate mean stay': 454884, 'mean stay inside': 524654, 'stay inside not': 797102, 'inside not go': 439325, 'go out on': 353970, 'out on bender': 626897, 'addressing': 32085, 'rutte': 728706, 'the dutch': 853793, 'dutch prime': 263509, 'minister visiting': 533487, 'with camera': 997519, 'camera addressing': 157108, 'addressing the': 32106, 'paper issue': 640372, 'can poop': 159263, 'poop for': 664055, 'year coronanl': 1014490, 'coronanl rutte': 205094, 'the dutch prime': 853796, 'dutch prime minister': 263510, 'prime minister visiting': 678164, 'minister visiting supermarket': 533488, 'visiting supermarket with': 959559, 'supermarket with camera': 823911, 'with camera addressing': 997520, 'camera addressing the': 157109, 'addressing the toilet': 32109, 'toilet paper issue': 921326, 'paper issue we': 640373, 'issue we can': 455997, 'we can poop': 970989, 'can poop for': 159264, 'poop for 10': 664056, 'for 10 year': 318621, '10 year coronanl': 1767, 'year coronanl rutte': 1014491, 'california and': 155461, 'york have': 1016621, 'have stay': 382738, 'worker what': 1008172, 'work not': 1005499, 'school you': 741998, 'pharmacy you': 654586, 'california and new': 155463, 'and new york': 67564, 'new york have': 559933, 'york have stay': 1016622, 'have stay at': 382739, 'order for non': 618234, 'non essential worker': 566372, 'essential worker what': 281863, 'worker what doe': 1008175, 'that mean stay': 845120, 'mean stay home': 524653, 'to work not': 918757, 'work not going': 1005501, 'going to school': 355698, 'to school you': 913905, 'school you can': 741999, 'the pharmacy you': 863667, 'pharmacy you can': 654587, 'go out but': 353938, 'out but keep': 625791, 'but keep your': 146220, 'distance you can': 246905, 'you can tell': 1017808, 'can tell the': 159922, 'tell the people': 837088, 'people you love': 650575, 'thought see': 893198, 'that start': 846456, 'start shopping': 794497, 'grocery using': 366093, 'using store': 950668, 'so could': 776799, 'could avoid': 208830, 'avoid entering': 105087, 'entering what': 278439, 'now germ': 574765, 'germ central': 346108, 'central station': 169425, 'station just': 796446, 'just don': 468628, 'touch card': 926462, 'card terminal': 163661, 'terminal ever': 838362, 'never thought see': 558232, 'thought see the': 893201, 'see the day': 745824, 'the day that': 852917, 'day that start': 228474, 'that start shopping': 846457, 'start shopping online': 794499, 'online for grocery': 608228, 'for grocery using': 322056, 'grocery using store': 366094, 'using store pickup': 950669, 'store pickup so': 809561, 'pickup so could': 656020, 'so could avoid': 776800, 'could avoid entering': 208831, 'avoid entering what': 105088, 'entering what is': 278440, 'what is now': 981714, 'is now germ': 450288, 'now germ central': 574766, 'germ central station': 346109, 'central station just': 169426, 'station just don': 796447, 'just don want': 468636, 'want to touch': 966147, 'to touch card': 917648, 'touch card terminal': 926463, 'card terminal ever': 163662, 'terminal ever again': 838363, 'rapporteur': 697057, 'spexperts': 789195, 'of may': 586308, 'may will': 521615, 'new special': 559625, 'special rapporteur': 788040, 'rapporteur on': 697058, 'highlighted what': 396005, 'what many': 981851, 'knew we': 476093, 'all depend': 42552, 'food housing': 314863, 'housing well': 407168, 'being hunger': 125271, 'hunger is': 411135, 'political failure': 663646, 'failure not': 296277, 'not lack': 570323, 'supply spexperts': 825881, 'of may will': 586310, 'may will be': 521616, 'the new special': 861558, 'new special rapporteur': 559626, 'special rapporteur on': 788041, 'rapporteur on the': 697059, 'on the right': 604336, 'right to food': 722340, 'to food this': 906102, 'food this pandemic': 317195, 'pandemic ha highlighted': 635549, 'ha highlighted what': 370868, 'highlighted what many': 396006, 'what many of': 981852, 'many of already': 514365, 'of already knew': 580015, 'already knew we': 47495, 'knew we all': 476094, 'we all depend': 970320, 'all depend on': 42553, 'depend on each': 237312, 'on each other': 600453, 'other for food': 620257, 'for food housing': 321592, 'food housing well': 314864, 'housing well being': 407169, 'well being hunger': 978059, 'being hunger is': 125272, 'hunger is always': 411136, 'is always the': 445602, 'always the result': 49772, 'result of political': 717609, 'of political failure': 588208, 'political failure not': 663647, 'failure not lack': 296278, 'not lack of': 570324, 'lack of supply': 478660, 'of supply spexperts': 590500, 'csr': 220060, 'fantasized': 298574, 'deck grocery': 231136, 'store executive': 807676, 'executive get': 289897, 'hard life': 377961, 'coronavirus front': 205960, 'line via': 493540, 'moment many': 535988, 'many front': 514088, 'line csr': 493045, 'csr ha': 220061, 'ha fantasized': 370601, 'fantasized about': 298575, 'about they': 26619, 'come work': 187697, 'on deck grocery': 600244, 'deck grocery store': 231137, 'grocery store executive': 365385, 'store executive get': 807678, 'executive get taste': 289898, 'of the hard': 591091, 'the hard life': 857103, 'hard life on': 377963, 'life on coronavirus': 488933, 'on coronavirus front': 600123, 'coronavirus front line': 205961, 'front line via': 338619, 'line via this': 493541, 'via this is': 956324, 'is the moment': 452865, 'the moment many': 860767, 'moment many front': 535989, 'many front line': 514089, 'front line csr': 338565, 'line csr ha': 493046, 'csr ha fantasized': 220062, 'ha fantasized about': 370602, 'fantasized about they': 298576, 'about they should': 26621, 'they should come': 883355, 'should come work': 765848, 'come work and': 187698, 'work and see': 1004802, 'and see what': 71149, 'see what it': 746036, 'consumergoods': 199677, 'and consumergoods': 60448, 'consumergoods supplychain': 199684, 'supplychain strain': 826231, 'keep pace': 471770, 'pace especially': 632925, 'especially when': 280656, 'when relying': 983933, 'from quarantined': 337021, 'quarantined area': 692821, 'area here': 92047, 'stay resilient': 797198, 'resilient ai': 714511, 'retail and consumergoods': 717816, 'and consumergoods supplychain': 60449, 'consumergoods supplychain strain': 199685, 'supplychain strain to': 826232, 'strain to keep': 812306, 'to keep pace': 908824, 'keep pace especially': 471771, 'pace especially when': 632926, 'especially when relying': 280659, 'when relying on': 983934, 'relying on good': 709675, 'on good from': 601146, 'good from quarantined': 357114, 'from quarantined area': 337022, 'quarantined area here': 692822, 'area here how': 92049, 'how to stay': 409090, 'to stay resilient': 915312, 'stay resilient ai': 797199, 'attorney office': 102680, 'office take': 595561, 'maintain mission': 508993, 'mission amidst': 534340, 'emergency official': 272825, 'official announced': 595748, 'of step': 590119, 'step aimed': 799489, 'at protecting': 100214, 'protecting consumer': 685184, 'financial safety': 306566, 'and preventing': 69420, 'preventing civil': 671802, 'violation amidst': 957512, 'attorney office take': 102682, 'office take step': 595562, 'step to maintain': 799656, 'to maintain mission': 909582, 'maintain mission amidst': 508994, 'mission amidst covid': 534341, 'health emergency official': 386400, 'emergency official announced': 272826, 'official announced series': 595749, 'series of step': 751277, 'of step aimed': 590120, 'step aimed at': 799490, 'aimed at protecting': 39575, 'at protecting consumer': 100215, 'protecting consumer financial': 685188, 'consumer financial safety': 197490, 'financial safety and': 306568, 'safety and preventing': 730460, 'and preventing civil': 69421, 'preventing civil right': 671803, 'civil right violation': 179539, 'right violation amidst': 722392, 'violation amidst the': 957514, 'amidst the covid': 52822, 'in world': 430981, 'virus wanna': 958998, 'wanna be': 965612, 'in world full': 430983, 'full of corona': 340708, 'corona virus wanna': 204373, 'virus wanna be': 958999, 'wanna be your': 965616, 'be your hand': 118174, 'carphone': 164900, 'retailapocalypse': 718917, 'more gap': 539329, 'gap appear': 343430, 'appear on': 82114, 'the highstreet': 857362, 'highstreet carphone': 396131, 'carphone warehouse': 164901, 'warehouse shut': 966763, 'shut up': 767957, 'shop changing': 760025, 'behaviour not': 124482, 'blame cx': 132251, 'cx customerexperience': 223904, 'customerexperience retail': 223139, 'retail retailapocalypse': 718468, 'more gap appear': 539330, 'gap appear on': 343431, 'appear on the': 82116, 'on the highstreet': 604160, 'the highstreet carphone': 857363, 'highstreet carphone warehouse': 396132, 'carphone warehouse shut': 164902, 'warehouse shut up': 966765, 'shut up shop': 767961, 'up shop changing': 945976, 'shop changing consumer': 760026, 'changing consumer behaviour': 172668, 'consumer behaviour not': 196590, 'behaviour not covid': 124483, '19 to blame': 11416, 'to blame cx': 901844, 'blame cx customerexperience': 132252, 'cx customerexperience retail': 223905, 'customerexperience retail retailapocalypse': 223140, 'superstar': 824328, 'nashville country': 552012, 'music superstar': 546343, 'superstar free': 824333, 'free supermarket': 332201, 'is providing': 451116, 'providing free': 687002, 'delivering them': 233553, 'in nashville country': 425681, 'nashville country music': 552013, 'country music superstar': 210911, 'music superstar free': 546345, 'superstar free supermarket': 824334, 'free supermarket is': 332202, 'supermarket is providing': 821116, 'is providing free': 451119, 'providing free grocery': 687004, 'free grocery and': 331881, 'grocery and delivering': 364231, 'and delivering them': 61103, 'delivering them to': 233554, 'them to senior': 876507, 'to senior during': 914232, 'food here': 314813, 'should buy': 765802, 'store listed': 808779, 'listed well': 494653, 'you still need': 1021405, 'on food here': 600869, 'food here are': 314814, 'thing you should': 885041, 'you should buy': 1021186, 'should buy there': 765809, 'buy there are': 149339, 'there are online': 878136, 'are online store': 88756, 'online store listed': 609456, 'store listed well': 808780, 'never give': 558015, 'life face': 488645, 'sanitizer never': 735401, 'never knew': 558081, 'knew they': 476084, 'would blow': 1011685, 'never give up': 558016, 'give up in': 350814, 'up in life': 945164, 'in life face': 424706, 'life face mask': 488646, 'hand sanitizer never': 375500, 'sanitizer never knew': 735402, 'never knew they': 558084, 'knew they would': 476087, 'they would blow': 883937, 'would blow one': 1011686, 'blow one day': 133332, 'one day 19': 606145, 'mankind': 513254, 'prudential': 687363, 'magnanimous': 508419, 'with very': 1001969, 'very first': 955165, 'of retreat': 589072, 'retreat the': 719756, 'will sore': 994907, 'sore to': 785982, 'new high': 558877, 'high very': 395507, 'very rapidly': 955449, 'rapidly that': 697027, 'never witnessed': 558275, 'witnessed in': 1003148, 'history of': 398038, 'of mankind': 586153, 'mankind in': 513268, 'in highly': 423697, 'highly prudential': 396087, 'prudential way': 687364, 'way usa': 970149, 'usa pumped': 948726, 'pumped magnanimous': 689116, 'magnanimous amount': 508420, 'of liquidity': 585876, 'liquidity by': 494125, 'by mainly': 153126, 'mainly monetary': 508881, 'monetary and': 536535, 'and fiscal': 62935, 'fiscal action': 309242, 'with very first': 1001973, 'very first sign': 955167, 'sign of retreat': 769171, 'of retreat the': 589073, 'retreat the asset': 719757, 'the asset price': 848978, 'asset price will': 96465, 'price will sore': 677589, 'will sore to': 994908, 'sore to the': 785984, 'the new high': 861519, 'new high very': 558881, 'high very rapidly': 395508, 'very rapidly that': 955450, 'rapidly that never': 697028, 'that never witnessed': 845324, 'never witnessed in': 558276, 'witnessed in the': 1003149, 'in the history': 429268, 'the history of': 857391, 'history of mankind': 398040, 'of mankind in': 586154, 'mankind in highly': 513269, 'in highly prudential': 423699, 'highly prudential way': 396088, 'prudential way usa': 687365, 'way usa pumped': 970150, 'usa pumped magnanimous': 948727, 'pumped magnanimous amount': 689117, 'magnanimous amount of': 508421, 'amount of liquidity': 53232, 'of liquidity by': 585877, 'liquidity by mainly': 494126, 'by mainly monetary': 153127, 'mainly monetary and': 508882, 'monetary and fiscal': 536536, 'and fiscal action': 62936, 'another great': 77642, 'coronavirus insight': 206146, 'data think': 226447, 'google brand': 358143, 'another great article': 77643, 'great article from': 362510, 'article from coronavirus': 94326, 'from coronavirus insight': 335017, 'coronavirus insight from': 206147, 'search data think': 743234, 'data think with': 226448, 'with google brand': 998646, 'tesco able': 838649, 'pay uk': 645201, 'uk dividend': 938306, 'dividend sale': 248631, 'sale soar': 732537, 'tesco able to': 838650, 'to pay uk': 911570, 'pay uk dividend': 645202, 'uk dividend sale': 938307, 'dividend sale soar': 248632, 'sale soar due': 732539, 'been demand': 120948, 'for ethanol': 321137, 'ethanol which': 283018, 'been subsidy': 122090, 'subsidy fraud': 816011, 'fraud from': 331273, 'from day': 335106, 'is disastrous': 447198, 'disastrous for': 244288, 'for engine': 321061, 'engine that': 276944, 'cause pollution': 167704, 'pollution by': 663899, 'by running': 153845, 'running them': 728100, 'them poorly': 876171, 'poorly corn': 664381, 'fall back': 296849, 'to 2016': 899593, '2016 level': 13832, 'level covid': 487543, 'lockdown reduce': 499848, 'reduce ethanol': 705830, 'there ha never': 878453, 'never been demand': 557892, 'been demand for': 120949, 'demand for ethanol': 235413, 'for ethanol which': 321140, 'ethanol which ha': 283019, 'which ha been': 985877, 'ha been subsidy': 369941, 'been subsidy fraud': 122091, 'subsidy fraud from': 816012, 'fraud from day': 331274, 'from day one': 335110, 'day one it': 228153, 'one it is': 606539, 'it is disastrous': 458932, 'is disastrous for': 447201, 'disastrous for engine': 244289, 'for engine that': 321062, 'engine that cause': 276945, 'that cause pollution': 843183, 'cause pollution by': 167705, 'pollution by running': 663901, 'by running them': 153847, 'running them poorly': 728101, 'them poorly corn': 876172, 'poorly corn price': 664382, 'corn price fall': 203584, 'price fall back': 673776, 'fall back to': 296853, 'back to 2016': 107349, 'to 2016 level': 899594, '2016 level covid': 13833, 'level covid 19': 487544, '19 lockdown reduce': 8421, 'lockdown reduce ethanol': 499849, 'reduce ethanol demand': 705831, 'utakaa': 951211, 'kwa': 478024, 'nyumba': 578166, 'ukule': 939071, 'nini': 563307, 'ha even': 370519, 'even considered': 283968, 'reduce tax': 705952, 'bring price': 140048, 'down utakaa': 257425, 'utakaa kwa': 951212, 'kwa nyumba': 478025, 'nyumba ukule': 578167, 'ukule nini': 939072, 'nini there': 563308, 'is chance': 446458, 'chance with': 171831, 'with starvation': 1000945, 'government ha even': 360149, 'ha even considered': 370520, 'even considered to': 283971, 'considered to reduce': 195342, 'to reduce tax': 913044, 'reduce tax to': 705953, 'tax to bring': 835110, 'to bring price': 902045, 'bring price down': 140049, 'price down utakaa': 673535, 'down utakaa kwa': 257426, 'utakaa kwa nyumba': 951213, 'kwa nyumba ukule': 478026, 'nyumba ukule nini': 578168, 'ukule nini there': 939073, 'nini there is': 563309, 'there is chance': 878536, 'is chance you': 446460, 'chance you can': 171837, 'you can survive': 1017804, 'can survive covid': 159873, '19 but no': 5516, 'but no chance': 146479, 'no chance with': 563785, 'chance with starvation': 171832, 'riverfront': 724193, 'cody': 185426, 'pfister': 653915, 'missouri': 534417, 'terrorist': 838614, 'riverfront time': 724194, 'time cody': 896489, 'cody pfister': 185429, 'pfister the': 653919, 'the 26': 848055, '26 year': 16200, 'old who': 598538, 'the by': 850237, 'licking product': 488250, 'at missouri': 99755, 'missouri walmart': 534444, 'walmart in': 965353, '11 wa': 2611, 'with terrorist': 1001149, 'terrorist threat': 838617, 'riverfront time cody': 724195, 'time cody pfister': 896490, 'cody pfister the': 185432, 'pfister the 26': 653920, 'the 26 year': 848057, '26 year old': 16202, 'year old who': 1014878, 'old who did': 598540, 'who did the': 988590, 'did the by': 240845, 'the by licking': 850244, 'by licking product': 153052, 'licking product at': 488251, 'product at missouri': 680977, 'at missouri walmart': 99756, 'missouri walmart in': 534445, 'walmart in march': 965357, 'in march 11': 425071, 'march 11 wa': 515057, '11 wa charged': 2612, 'wa charged with': 961809, 'charged with terrorist': 173431, 'with terrorist threat': 1001150, 'patriotic': 644369, 'merciless': 529067, 'elsewhere natural': 272019, 'natural disaster': 552820, 'disaster or': 244225, 'or situation': 617098, 'situation like': 772369, '19 give': 7212, 'how patriotic': 408488, 'patriotic they': 644372, 'are but': 85105, 'are merciless': 88068, 'merciless and': 529068, 'than 500': 840265, 'elsewhere natural disaster': 272020, 'natural disaster or': 552824, 'disaster or situation': 244228, 'or situation like': 617099, 'situation like covid': 772370, 'covid 19 give': 213144, '19 give people': 7214, 'give people the': 350647, 'people the opportunity': 649793, 'opportunity to show': 613725, 'show how patriotic': 766989, 'how patriotic they': 408489, 'patriotic they are': 644373, 'they are but': 881219, 'are but here': 85107, 'we are merciless': 970627, 'are merciless and': 88069, 'merciless and price': 529069, 'and price increase': 69456, 'increase by more': 432709, 'more than 500': 540569, 'disconnected': 244412, 'are mad': 87953, 'mad disconnected': 507541, 'disconnected from': 244413, 'world gas': 1009576, 'low because': 505156, 'some of all': 783388, 'of all are': 579921, 'all are mad': 42046, 'are mad disconnected': 87954, 'mad disconnected from': 507542, 'disconnected from the': 244416, 'from the world': 337929, 'the world gas': 871875, 'world gas price': 1009577, 'gas price aren': 343932, 'price aren low': 672771, 'aren low because': 92455, 'low because of': 505157, 'commuter': 190274, 'belt': 126790, 'how working': 409257, 'hit commuter': 398201, 'commuter belt': 190275, 'belt house': 126797, 'price property': 676013, 'property lockdown': 684291, 'lockdown realestate': 499842, 'realestate pandemic': 701507, 'pandemic lockdown': 635899, 'lockdown wfh': 500126, 'wfh workfromhome': 980867, 'how working from': 409258, 'home could hit': 400958, 'could hit commuter': 209303, 'hit commuter belt': 398202, 'commuter belt house': 190276, 'belt house price': 126798, 'house price property': 406502, 'price property lockdown': 676015, 'property lockdown realestate': 684292, 'lockdown realestate pandemic': 499843, 'realestate pandemic lockdown': 701508, 'pandemic lockdown wfh': 635905, 'lockdown wfh workfromhome': 500127, '599': 20599, 'egypt': 270094, 'senegal': 750155, 'tunisia': 935464, 'burkina': 142872, 'faso': 299894, 'update 599': 946837, '599 case': 20600, 'africa egypt': 35068, 'egypt 196': 270096, '196 dead': 12397, 'dead 27': 229124, '27 recover': 16303, 'recover southafrica': 705202, 'southafrica 116': 786795, '116 algeria': 2670, 'algeria 72': 41631, '72 dead': 22004, 'dead morocco': 229162, 'morocco 49': 541567, '49 dead': 19381, 'dead senegal': 229175, 'senegal 29': 750156, '29 recover': 16493, 'recover tunisia': 705215, 'tunisia 29': 935465, '29 burkina': 16470, 'burkina faso': 142873, 'faso 27': 299895, '27 dead': 16272, 'dead cameroon': 229141, 'cameroon 10': 157143, '10 nigeria': 1562, 'nigeria recover': 562789, 'recover thread': 705212, 'update 599 case': 946838, '599 case in': 20601, 'case in africa': 165782, 'in africa egypt': 420084, 'africa egypt 196': 35069, 'egypt 196 dead': 270097, '196 dead 27': 12398, 'dead 27 recover': 229125, '27 recover southafrica': 16304, 'recover southafrica 116': 705203, 'southafrica 116 algeria': 786796, '116 algeria 72': 2671, 'algeria 72 dead': 41632, '72 dead morocco': 22005, 'dead morocco 49': 229163, 'morocco 49 dead': 541568, '49 dead senegal': 19382, 'dead senegal 29': 229176, 'senegal 29 recover': 750157, '29 recover tunisia': 16494, 'recover tunisia 29': 705216, 'tunisia 29 burkina': 935466, '29 burkina faso': 16471, 'burkina faso 27': 142874, 'faso 27 dead': 299896, '27 dead cameroon': 16273, 'dead cameroon 10': 229142, 'cameroon 10 nigeria': 157144, '10 nigeria recover': 1563, 'nigeria recover thread': 562790, 'decently': 230810, 'use consumer': 949130, 'consumer power': 198390, 'to force': 906165, 'force company': 328360, 'behave decently': 123773, 'time to use': 898094, 'to use consumer': 918018, 'use consumer power': 949132, 'consumer power to': 198393, 'power to force': 667707, 'to force company': 906167, 'force company to': 328361, 'company to behave': 191220, 'to behave decently': 901722, 'band': 109327, 'lombardia': 500995, 'distantimauniti': 247689, 'europa': 283384, 'resilienza': 714549, 'staystrong': 799052, 'having breakfast': 384000, 'breakfast with': 138903, 'the kill': 858803, 'the beast': 849397, 'beast band': 118478, 'band shop': 109349, 'here lombardia': 393309, 'lombardia distantimauniti': 500996, 'distantimauniti italy': 247690, 'italy europa': 462818, 'europa iorestoacasa': 283385, 'iorestoacasa socialdistancing': 444466, 'socialdistancing workfromhome': 780881, 'workfromhome resilienza': 1008431, 'resilienza facemask': 714550, 'facemask staysafe': 295103, 'staysafe online': 798855, 'online war': 609691, 'war culture': 966407, 'culture staystrong': 220308, 'staystrong rock': 799053, 'rock shopping': 724919, 'having breakfast with': 384001, 'breakfast with the': 138905, 'with the kill': 1001358, 'the kill the': 858805, 'kill the beast': 474511, 'the beast band': 849398, 'beast band shop': 118480, 'band shop here': 109350, 'shop here lombardia': 760276, 'here lombardia distantimauniti': 393310, 'lombardia distantimauniti italy': 500997, 'distantimauniti italy europa': 247691, 'italy europa iorestoacasa': 462819, 'europa iorestoacasa socialdistancing': 283386, 'iorestoacasa socialdistancing workfromhome': 444467, 'socialdistancing workfromhome resilienza': 780882, 'workfromhome resilienza facemask': 1008432, 'resilienza facemask staysafe': 714551, 'facemask staysafe online': 295104, 'staysafe online war': 798856, 'online war culture': 609693, 'war culture staystrong': 966408, 'culture staystrong rock': 220309, 'staystrong rock shopping': 799054, 'any chicken': 79018, 'or ground': 615531, 'ground beef': 366479, 'beef in': 120514, 'outbreak don': 628176, 'worry just': 1010741, 'can find any': 158313, 'find any chicken': 306788, 'any chicken or': 79019, 'chicken or ground': 175825, 'or ground beef': 615532, 'ground beef in': 366482, 'beef in your': 120515, 'store during this': 807412, 'this outbreak don': 889320, 'outbreak don worry': 628177, 'don worry just': 254083, 'worry just go': 1010742, 'have the meat': 383001, 'cardholder': 163739, 'and pension': 68844, 'pension cardholder': 646650, 'cardholder have': 163740, 'of dedicated': 582447, 'hour set': 405902, 'senior and pension': 750207, 'and pension cardholder': 68846, 'pension cardholder have': 646651, 'cardholder have tried': 163741, 'have tried to': 383403, 'tried to make': 931837, 'make the most': 510574, 'the most of': 861009, 'most of dedicated': 542544, 'of dedicated shopping': 582448, 'shopping hour set': 762927, 'hour set up': 405904, 'set up by': 753548, 'up by major': 944556, 'by major supermarket': 153134, 'supermarket chain for': 819604, 'chain for vulnerable': 170720, 'thread about': 893515, 'about someone': 26232, 'someone on': 784588, 'on budget': 599717, 'budget cannot': 141767, 'everything on': 287943, 'being to': 125959, 'another please': 77761, 'thread about someone': 893517, 'about someone on': 26233, 'someone on budget': 784589, 'on budget cannot': 599718, 'budget cannot afford': 141768, 'stockpile food or': 803748, 'food or other': 315665, 'other essential so': 620176, 'essential so for': 281564, 'so for those': 777113, 'of you who': 593432, 'you who panic': 1022308, 'panic buy everything': 637480, 'buy everything on': 148598, 'everything on the': 287946, 'the shelf from': 866838, 'shelf from human': 757102, 'from human being': 335967, 'human being to': 410445, 'being to another': 125960, 'to another please': 900573, 'another please stop': 77762, 'understands': 940908, 'pm say': 661975, 'say stay': 739170, 'but nobody': 146507, 'nobody understands': 566071, 'understands that': 940913, 'that common': 843264, 'is jobless': 449098, 'jobless because': 466327, 'worried price': 1010571, 'and veggie': 74901, 'veggie ha': 954187, 'pm say stay': 661977, 'say stay home': 739172, 'home keep all': 401489, 'keep all the': 471300, 'all the essential': 44738, 'the essential but': 854499, 'essential but nobody': 280873, 'but nobody understands': 146508, 'nobody understands that': 566072, 'understands that common': 940914, 'that common man': 843265, 'common man who': 189413, 'man who work': 512345, 'work to run': 1005900, 'to run the': 913673, 'run the house': 727823, 'house is jobless': 406374, 'is jobless because': 449099, 'jobless because of': 466328, '19 and ha': 5037, 'and ha no': 64078, 'ha no money': 371345, 'money to buy': 537088, 'buy the essential': 149296, 'the essential what': 854526, 'essential what are': 281781, 'to do people': 904543, 'do people are': 249967, 'people are worried': 647116, 'are worried price': 91735, 'worried price of': 1010572, 'price of grocery': 675464, 'grocery and veggie': 364268, 'and veggie ha': 74904, 'veggie ha gone': 954188, 'at lidl': 99580, 'lidl it': 488292, '10 customer': 1373, 'customer allowed': 222048, 'happened two': 377292, 'ago lockdown': 38420, 'returned from supermarket': 719964, 'from supermarket shop': 337501, 'supermarket shop at': 822585, 'shop at lidl': 759949, 'at lidl it': 99582, 'lidl it one': 488293, 'it one in': 460074, 'one out no': 606808, 'out no more': 626642, 'than 10 customer': 840144, '10 customer allowed': 1374, 'customer allowed in': 222049, 'allowed in store': 46168, 'in store the': 428462, 'store the shelf': 810622, 'wa no panic': 962732, 'no panic it': 565043, 'panic it what': 638242, 'it what should': 462325, 'what should have': 982186, 'should have happened': 766080, 'have happened two': 380901, 'happened two week': 377293, 'two week ago': 937316, 'week ago lockdown': 975851, '19 spain': 10711, 'spain other': 787332, 'other hero': 620357, 'hero supermarket': 394098, 'coronavirus via': 207013, 'nice to supermarket': 562498, 'supermarket worker 19': 823979, 'worker 19 spain': 1006186, '19 spain other': 10712, 'spain other hero': 787333, 'other hero supermarket': 620360, 'hero supermarket cashier': 394099, 'supermarket cashier on': 819563, 'line against coronavirus': 492935, 'against coronavirus via': 37396, 'something positive': 785011, 'positive what': 665487, 'something you': 785156, 'learned to': 484154, 'to appreciate': 900665, 'appreciate more': 82737, 'more since': 540396, 'took over': 925308, 'over our': 630466, 'let do something': 486680, 'do something positive': 250149, 'something positive what': 785015, 'positive what is': 665488, 'what is something': 981728, 'is something you': 452118, 'something you have': 785159, 'you have learned': 1019068, 'have learned to': 381280, 'learned to appreciate': 484155, 'to appreciate more': 900667, 'appreciate more since': 82738, 'more since covid': 540397, '19 took over': 11513, 'took over our': 925310, 'over our life': 630469, 'our life for': 623722, 'life for me': 488665, 'for me it': 323319, 'me it grocery': 523011, 'worker and local': 1006310, 'and local small': 66304, 'aetna': 33937, 'marketing101': 517758, 'customerjourney': 223151, 'cv health': 223839, 'health release': 386789, 'release covid': 708931, 'for aetna': 319054, 'aetna member': 33940, 'member drug': 528064, 'news innovation': 560544, 'innovation marketing101': 438885, 'marketing101 customerjourney': 517761, 'customerjourney retail': 223152, 'cv health release': 223840, 'health release covid': 386790, 'release covid 19': 708932, '19 resource for': 10131, 'resource for aetna': 714777, 'for aetna member': 319055, 'aetna member drug': 33941, 'member drug store': 528065, 'drug store news': 261092, 'store news innovation': 809066, 'news innovation marketing101': 560545, 'innovation marketing101 customerjourney': 438886, 'marketing101 customerjourney retail': 517762, 'customerjourney retail via': 223153, 'capitalize': 162834, 'to capitalize': 902446, 'capitalize on': 162835, 'some scam': 783803, 'trying to capitalize': 934775, 'to capitalize on': 902447, 'capitalize on people': 162839, 'on people fear': 602740, 'people fear over': 647882, 'are some scam': 90286, 'some scam to': 783804, 'aired': 39887, 'wa last': 962502, 'last saturday': 480481, 'saturday in': 737030, 'other word': 621211, 'word lifetime': 1004514, 'lifetime ago': 489390, 'ago in': 38409, 'the evolution': 854640, 'evolution of': 288486, '19 best': 5378, 'practice fb': 668554, 'fb wa': 300681, 'wa doing': 961998, 'protect it': 684858, 'customer based': 222167, 'had at': 372863, 'time cbc': 896459, 'cbc aired': 168268, 'aired great': 39890, 'great clip': 362575, 'clip on': 182369, 'it wa last': 462137, 'wa last saturday': 962504, 'last saturday in': 480483, 'saturday in other': 737032, 'in other word': 426253, 'other word lifetime': 621213, 'word lifetime ago': 1004515, 'lifetime ago in': 489391, 'ago in the': 38413, 'in the evolution': 429184, 'the evolution of': 854641, 'evolution of covid': 288490, 'covid 19 best': 212699, '19 best practice': 5380, 'best practice fb': 127843, 'practice fb wa': 668555, 'fb wa doing': 300682, 'wa doing it': 962004, 'best to protect': 127958, 'to protect it': 912313, 'protect it customer': 684859, 'it customer based': 457447, 'customer based on': 222168, 'on the information': 604182, 'information we had': 438034, 'we had at': 971701, 'had at the': 372866, 'the time cbc': 869581, 'time cbc aired': 896460, 'cbc aired great': 168269, 'aired great clip': 39891, 'great clip on': 362577, 'clip on how': 182370, 'spoke my': 789720, 'my good': 548535, 'friend about': 333479, 'the fed': 855053, 'fed response': 301884, 'we touched': 973561, 'touched on': 926632, 'on number': 602455, 'of recent': 588816, 'recent development': 703882, 'development including': 239820, 'the act': 848299, 'act amp': 29590, 'amp new': 54172, 'new tariff': 559720, 'tariff relief': 834617, 'relief aimed': 709267, 'at increasing': 99284, 'morning spoke my': 541454, 'spoke my good': 789721, 'my good friend': 548536, 'good friend about': 357107, 'friend about the': 333481, 'about the fed': 26397, 'the fed response': 855067, 'fed response to': 301885, 'the we touched': 871222, 'we touched on': 973562, 'touched on number': 926633, 'on number of': 602456, 'number of recent': 576984, 'of recent development': 588819, 'recent development including': 703883, 'development including the': 239821, 'including the act': 432178, 'the act amp': 848300, 'act amp new': 29592, 'amp new tariff': 54174, 'new tariff relief': 559722, 'tariff relief aimed': 834618, 'relief aimed at': 709268, 'aimed at increasing': 39570, 'at increasing the': 99286, 'increasing the distribution': 433708, 'distribution of hand': 248175, 'who declared': 988545, 'declared covid': 231221, 'pandemic on': 636083, 'on 12': 599005, '12 03': 2766, '20 le': 13125, 'ago many': 38423, 'many tourist': 514825, 'tourist were': 927046, 'from then': 337961, 'then on': 877375, 'on airline': 599200, 'airline started': 40032, 'started canceling': 794700, 'canceling flight': 160985, 'flight many': 310509, 'tourist are': 927023, 'stuck and': 814577, 'and trapped': 74393, 'trapped some': 930116, 'some cannot': 782477, 'the who declared': 871470, 'who declared covid': 988546, 'declared covid 19': 231222, '19 pandemic on': 9414, 'pandemic on 12': 636085, 'on 12 03': 599006, '12 03 20': 2767, '03 20 le': 852, '20 le than': 13126, 'le than 30': 483160, 'than 30 day': 840223, '30 day ago': 17015, 'day ago many': 227202, 'ago many tourist': 38424, 'many tourist were': 514827, 'tourist were already': 927047, 'were already here': 979303, 'already here from': 47439, 'here from then': 393031, 'from then on': 337962, 'then on airline': 877376, 'on airline started': 599202, 'airline started canceling': 40033, 'started canceling flight': 794701, 'canceling flight many': 160986, 'flight many tourist': 310511, 'many tourist are': 514826, 'tourist are stuck': 927024, 'are stuck and': 90597, 'stuck and trapped': 814578, 'and trapped some': 74394, 'trapped some cannot': 930117, 'hospitalized': 404835, 'baby end': 106596, 'up hospitalized': 945109, 'hospitalized for': 404840, 'after father': 35649, 'father visited': 300316, 'visited the': 959502, 'store read': 809747, 'baby end up': 106597, 'end up hospitalized': 276032, 'up hospitalized for': 945110, 'hospitalized for covid': 404841, '19 after father': 4854, 'after father visited': 35650, 'father visited the': 300317, 'visited the grocery': 959503, 'grocery store read': 365703, 'store read more': 809748, 'telecommuting': 836713, 'telecommuting online': 836714, 'and streaming': 72542, 'streaming video': 812853, 'video are': 956618, 'good bet': 356827, 'bet the': 128107, 'crisis spread': 218077, 'live our': 495978, 'telecommuting online shopping': 836715, 'shopping and streaming': 762027, 'and streaming video': 72545, 'streaming video are': 812854, 'video are all': 956619, 'are all good': 84310, 'all good bet': 42976, 'good bet the': 356828, 'bet the crisis': 128108, 'the crisis spread': 852450, 'crisis spread and': 218078, 'spread and change': 790405, 'way we live': 970174, 'we live our': 972220, 'live our life': 495979, 'grandad': 361878, '11pm': 2739, 'my grandad': 548540, 'grandad is': 361881, 'is 85': 445249, '85 high': 22924, 'high blood': 394947, 'blood pressure': 133135, 'pressure post': 671229, 'post cancer': 666035, 'cancer he': 161254, 'he life': 385189, 'opposite side': 613807, 'country there': 211137, 'one slot': 607050, 'delivery between': 233748, 'between 7am': 128691, '7am and': 22408, 'and 11pm': 57359, '11pm for': 2740, 'week can': 976058, 'choose if': 177890, 'are young': 91884, 'young fit': 1022595, 'fit and': 309464, 'healthy please': 387731, 'my grandad is': 548541, 'grandad is 85': 361882, 'is 85 high': 445250, '85 high blood': 22925, 'high blood pressure': 394948, 'blood pressure post': 133136, 'pressure post cancer': 671230, 'post cancer he': 666036, 'cancer he life': 161255, 'he life on': 385190, 'on the opposite': 604264, 'the opposite side': 862417, 'opposite side of': 613808, 'the country there': 852163, 'country there is': 211139, 'is not one': 450143, 'not one slot': 570767, 'one slot for': 607051, 'slot for food': 774180, 'food delivery between': 314111, 'delivery between 7am': 233749, 'between 7am and': 128693, '7am and 11pm': 22409, 'and 11pm for': 57360, '11pm for the': 2741, 'for the three': 326730, 'three week can': 894100, 'week can choose': 976060, 'can choose if': 157905, 'choose if you': 177891, 'you are young': 1017296, 'are young fit': 91887, 'young fit and': 1022596, 'fit and healthy': 309466, 'and healthy please': 64397, 'healthy please think': 387732, 'please think before': 660671, 'think before panic': 885154, 'before panic buying': 123001, 'skillful': 773019, 'imagination': 416679, 'edward': 268914, 'hopper': 403976, 'supportyourlocals': 827298, 'conceptstore': 192880, 'restart': 716238, 'newconcept': 560043, 'no amount': 563613, 'of skillful': 589758, 'skillful invention': 773020, 'invention can': 443627, 'can replace': 159441, 'essential element': 280992, 'element of': 271342, 'of imagination': 584983, 'imagination edward': 416680, 'edward hopper': 268919, 'hopper 19': 403977, '19 supportyourlocals': 10980, 'supportyourlocals retail': 827299, 'restaurant hopper': 716508, 'hopper conceptstore': 403979, 'conceptstore restart': 192881, 'restart newconcept': 716241, 'no amount of': 563614, 'amount of skillful': 53257, 'of skillful invention': 589759, 'skillful invention can': 773021, 'invention can replace': 443628, 'can replace the': 159442, 'replace the essential': 711586, 'the essential element': 854503, 'essential element of': 280993, 'element of imagination': 271344, 'of imagination edward': 584984, 'imagination edward hopper': 416681, 'edward hopper 19': 268920, 'hopper 19 supportyourlocals': 403978, '19 supportyourlocals retail': 10981, 'supportyourlocals retail store': 827300, 'retail store restaurant': 718696, 'store restaurant hopper': 809847, 'restaurant hopper conceptstore': 716509, 'hopper conceptstore restart': 403980, 'conceptstore restart newconcept': 192882, 'starting tonight': 795063, 'tonight not': 924458, 'only ticket': 611344, 'ticket but': 895599, 'also face': 48186, 'be required': 116814, 'required if': 713378, 'to board': 901873, 'board nj': 133652, 'nj transit': 563462, 'transit gov': 929636, 'gov murphy': 359635, 'murphy is': 546202, 'is expanding': 447639, 'expanding exec': 290500, 'exec order': 289826, 'face during': 294416, 'pandemic store': 636566, 'supermarket restaurant': 822213, 'restaurant for': 716479, 'for pick': 324542, 'up public': 945862, 'public transportation': 688427, 'starting tonight not': 795064, 'tonight not only': 924459, 'not only ticket': 570836, 'only ticket but': 611345, 'ticket but also': 895600, 'but also face': 145111, 'also face mask': 48189, 'mask is going': 518867, 'to be required': 901503, 'be required if': 116815, 'required if you': 713379, 'want to board': 965999, 'to board nj': 901875, 'board nj transit': 133653, 'nj transit gov': 563463, 'transit gov murphy': 929637, 'gov murphy is': 359636, 'murphy is expanding': 546203, 'is expanding exec': 447640, 'expanding exec order': 290501, 'exec order to': 289828, 'order to cover': 618674, 'your face during': 1023746, 'face during covid': 294417, '19 pandemic store': 9482, 'pandemic store supermarket': 636567, 'store supermarket restaurant': 810460, 'supermarket restaurant for': 822217, 'restaurant for pick': 716481, 'for pick up': 324543, 'pick up public': 655753, 'up public transportation': 945864, 'often can': 596172, 'what count': 981273, 'count an': 210097, 'item leave': 463405, 'question in': 693624, 'comment section': 188445, 'article our': 94418, 'our expert': 622953, 'some precious': 783623, 'precious advice': 669460, 'how often can': 408422, 'often can go': 596173, 'can go shopping': 158511, 'shopping and what': 762042, 'and what count': 75457, 'what count an': 981274, 'count an essential': 210098, 'an essential item': 55825, 'essential item leave': 281210, 'item leave your': 463406, 'leave your question': 485057, 'your question in': 1025499, 'question in the': 693627, 'the comment section': 851215, 'comment section at': 188447, 'section at the': 744001, 'at the bottom': 100895, 'bottom of this': 136421, 'of this article': 591938, 'this article our': 886426, 'article our expert': 94419, 'our expert will': 622963, 'expert will give': 292030, 'give you some': 350868, 'you some precious': 1021303, 'some precious advice': 783624, 'certain industry': 170032, 'industry during': 435788, 'pandemic pandemic': 636142, 'pandemic consumerbehaviour': 635199, 'an interesting take': 56410, 'interesting take on': 441623, 'take on consumer': 832401, 'behaviour and it': 124364, 'on certain industry': 599858, 'certain industry during': 170033, 'industry during the': 435790, '19 pandemic pandemic': 9423, 'pandemic pandemic consumerbehaviour': 636143, 'conserved': 194934, 'nygobernador': 578097, 'you encourage': 1018404, 'encourage price': 275621, 'encourage manufacturer': 275600, 'raise ppe': 695902, 'ppe price': 668027, 'government resource': 360535, 'resource need': 714832, 'be conserved': 114191, 'conserved we': 194935, 'bad price': 107993, 'crisis nygobernador': 217774, 'would you encourage': 1012409, 'you encourage price': 1018407, 'encourage price gouging': 275622, 'gouging and would': 359255, 'and would you': 75935, 'you encourage manufacturer': 1018406, 'encourage manufacturer to': 275601, 'manufacturer to raise': 513531, 'to raise ppe': 912730, 'raise ppe price': 695903, 'ppe price government': 668028, 'price government resource': 674350, 'government resource need': 360536, 'resource need to': 714834, 'to be conserved': 901176, 'be conserved we': 114192, 'conserved we are': 194936, 'in crisis this': 421899, 'crisis this is': 218224, 'this is bad': 888185, 'is bad price': 445971, 'bad price should': 107994, 'price should not': 676387, 'should not increase': 766250, 'not increase due': 570119, 'due to crisis': 261747, 'to crisis nygobernador': 903745, 'uofchicago': 944099, 'from uofchicago': 338200, 'uofchicago on': 944100, 'affected stock': 34431, '18 our': 4570, 'our forecast': 623151, 'forecast of': 328848, 'of annual': 580222, 'annual growth': 77398, 'in dividend': 422326, 'dividend is': 248627, 'down 28': 256403, '28 in': 16394, 'and 25': 57426, '25 in': 15885, 'of gdp': 584064, 'growth is': 367413, 'both in': 135937, 'from uofchicago on': 338201, 'uofchicago on how': 944101, 'on how ha': 601401, 'ha affected stock': 369467, 'affected stock price': 34432, 'price of march': 675499, 'of march 18': 586194, 'march 18 our': 515109, '18 our forecast': 4571, 'our forecast of': 623152, 'forecast of annual': 328849, 'of annual growth': 580223, 'annual growth in': 77399, 'growth in dividend': 367397, 'in dividend is': 422327, 'dividend is down': 248628, 'is down 28': 447340, 'down 28 in': 256404, '28 in the': 16396, 'the and 25': 848680, 'and 25 in': 57427, '25 in the': 15889, 'eu and our': 283199, 'and our forecast': 68488, 'forecast of gdp': 328850, 'of gdp growth': 584067, 'gdp growth is': 344887, 'growth is down': 367414, 'is down by': 447344, 'down by both': 256595, 'by both in': 151990, 'both in the': 135941, 'creatives': 216204, 'friend dr': 333585, 'dr birx': 257968, 'birx say': 131482, 'pharmacy but': 654262, 'but doing': 145581, 'healthy creatives': 387568, 'to my friend': 910401, 'my friend dr': 548429, 'friend dr birx': 333586, 'dr birx say': 257975, 'birx say this': 131483, 'say this is': 739368, 'the moment to': 860786, 'store not going': 809105, 'the pharmacy but': 863651, 'pharmacy but doing': 654263, 'but doing everything': 145582, 'doing everything you': 252394, 'everything you can': 288132, 'you can to': 1017814, 'can to keep': 160010, 'friend safe stay': 333789, 'home stay healthy': 402121, 'stay healthy creatives': 796897, 'getting up': 349423, '30am so': 17427, 'can attend': 157545, 'attend the': 102321, 'risk hour': 723608, '6am going': 21558, 'going about': 354984, 'about every': 25191, 'every two': 286345, 'getting up at': 349424, 'at 30am so': 97607, '30am so can': 17428, 'so can attend': 776701, 'can attend the': 157546, 'attend the 60': 102322, 'the 60 and': 848164, '60 and at': 20899, 'and at risk': 58485, 'at risk hour': 100366, 'risk hour at': 723609, 'the supermarket starting': 868822, 'supermarket starting at': 822924, 'starting at 6am': 794944, 'at 6am going': 97722, '6am going about': 21559, 'going about every': 354985, 'about every two': 25193, 'every two week': 286347, 'ang': 76281, 'lu': 506406, 'bora': 135203, 'grooming': 366421, 'barber': 110805, 'waxing': 969415, 'mani': 513147, 'pedi': 646217, 'aesthetic': 33934, 'derma': 237871, 'kbbq': 471181, 'buffet': 141870, 'inom': 438955, 'iba': 412563, 'done which': 255108, 'which industry': 985964, 'industry do': 435777, 'think ang': 885143, 'ang may': 76286, 'may spike': 521519, 'demand tourism': 236412, 'tourism lu': 926995, 'lu bora': 506407, 'bora hotel': 135204, 'flight grooming': 310476, 'grooming salon': 366426, 'salon barber': 732779, 'barber waxing': 110813, 'waxing mani': 969416, 'mani pedi': 513150, 'pedi medical': 646218, 'medical aesthetic': 526035, 'aesthetic dentist': 33935, 'dentist derma': 237096, 'derma food': 237872, 'etc kbbq': 282635, 'kbbq buffet': 471182, 'buffet milk': 141874, 'milk tea': 531845, 'tea inom': 835364, 'inom if': 438956, 'if iba': 414251, 'iba reply': 412564, 'reply here': 711739, '19 is done': 7962, 'is done which': 447328, 'done which industry': 255109, 'which industry do': 985966, 'industry do you': 435778, 'you think ang': 1021647, 'think ang may': 885144, 'ang may spike': 76287, 'may spike in': 521521, 'in demand tourism': 422164, 'demand tourism lu': 236413, 'tourism lu bora': 926996, 'lu bora hotel': 506408, 'bora hotel flight': 135205, 'hotel flight grooming': 405146, 'flight grooming salon': 310477, 'grooming salon barber': 366427, 'salon barber waxing': 732780, 'barber waxing mani': 110814, 'waxing mani pedi': 969417, 'mani pedi medical': 513151, 'pedi medical aesthetic': 646219, 'medical aesthetic dentist': 526036, 'aesthetic dentist derma': 33936, 'dentist derma food': 237097, 'derma food etc': 237873, 'food etc kbbq': 314400, 'etc kbbq buffet': 282636, 'kbbq buffet milk': 471183, 'buffet milk tea': 141875, 'milk tea inom': 531846, 'tea inom if': 835365, 'inom if iba': 438957, 'if iba reply': 414252, 'iba reply here': 412565, 'parasitic': 641470, 'commoning': 189490, 'corona show': 204172, 'our modern': 623935, 'modern economic': 535382, 'and political': 69173, 'political system': 663683, 'system must': 831253, 'our drug': 622815, 'drug development': 260935, 'development system': 239844, 'system should': 831312, 'should promote': 766338, 'promote innovation': 683777, 'innovation not': 438887, 'not parasitic': 570959, 'parasitic corporate': 641471, 'corporate monopoly': 207311, 'monopoly resulting': 537442, 'price commoning': 673196, 'commoning pandemic': 189491, 'survival strategy': 829084, 'corona show that': 204173, 'show that our': 767191, 'that our modern': 845587, 'our modern economic': 623936, 'modern economic and': 535383, 'economic and political': 266984, 'and political system': 69175, 'political system must': 663684, 'system must change': 831254, 'must change our': 546581, 'change our drug': 172218, 'our drug development': 622816, 'drug development system': 260936, 'development system should': 239845, 'system should promote': 831314, 'should promote innovation': 766339, 'promote innovation not': 683778, 'innovation not parasitic': 438888, 'not parasitic corporate': 570960, 'parasitic corporate monopoly': 641472, 'corporate monopoly resulting': 207312, 'monopoly resulting in': 537443, 'resulting in high': 717707, 'high price commoning': 395240, 'price commoning pandemic': 673197, 'commoning pandemic survival': 189492, 'pandemic survival strategy': 636609, 'the section': 866609, 'website ha': 975287, 'been updated': 122302, 'updated with': 947463, 'with information': 999005, 'consumer agriculture': 196128, 'agriculture producer': 39016, 'producer and': 680559, 'business visit': 144625, 'visit for': 959248, 'the loan': 859521, 'loan for': 497436, 'for small': 325662, 'business crop': 143600, 'crop insurance': 218932, 'insurance update': 440829, 'update the section': 947255, 'the section of': 866610, 'section of our': 744026, 'of our website': 587590, 'our website ha': 625339, 'website ha been': 975289, 'ha been updated': 369974, 'been updated with': 122305, 'updated with information': 947465, 'with information for': 999009, 'information for consumer': 437824, 'for consumer agriculture': 320238, 'consumer agriculture producer': 196129, 'agriculture producer and': 39017, 'producer and small': 680565, 'small business visit': 774899, 'business visit for': 144626, 'visit for info': 959251, 'for info on': 322570, 'info on the': 437539, 'on the loan': 604217, 'the loan for': 859523, 'loan for small': 497438, 'for small business': 325663, 'small business crop': 774852, 'business crop insurance': 143601, 'crop insurance update': 218933, 'insurance update and': 440830, 'update and more': 946862, 'anyone cannot': 80227, 'sanitizer just': 735239, 'just ordered': 469403, 'ordered some': 618898, 'some from': 782915, 'hemp good': 391705, 'product you': 681879, 'also support': 48936, 'business while': 144662, 'protecting yourself': 685259, 'yourself coronacrisis': 1026568, 'if anyone cannot': 413842, 'anyone cannot find': 80228, 'cannot find hand': 161840, 'hand sanitizer just': 375463, 'sanitizer just ordered': 735241, 'just ordered some': 469405, 'ordered some from': 618899, 'some from hemp': 782916, 'from hemp good': 335764, 'hemp good price': 391706, 'good price for': 357587, 'price for great': 673973, 'for great product': 322005, 'great product you': 362932, 'product you can': 681882, 'can also support': 157471, 'also support small': 48938, 'small business while': 774902, 'business while protecting': 144665, 'while protecting yourself': 987183, 'protecting yourself coronacrisis': 685261, 'jersey slap': 465231, 'slap terror': 773544, 'charge on': 173299, 'man over': 512179, 'over alleged': 629958, 'alleged supermarket': 45669, 'supermarket covid': 819850, 'cough threat': 208577, 'new jersey slap': 558981, 'jersey slap terror': 465232, 'slap terror charge': 773545, 'terror charge on': 838589, 'charge on man': 173300, 'on man over': 601978, 'man over alleged': 512180, 'over alleged supermarket': 629960, 'alleged supermarket covid': 45670, 'supermarket covid 19': 819851, '19 cough threat': 6150, 'lovely should': 504986, 'your covid': 1023368, 'what all of': 981008, 'you lovely should': 1019736, 'lovely should do': 504987, 'should do with': 765937, 'do with your': 250578, 'with your covid': 1002189, 'your covid 19': 1023369, 'also asks': 47889, 'asks people': 96156, 'food say': 316306, 'say shop': 739130, 'commodity usual': 189334, 'usual these': 951036, 'not run': 571406, 'in shortage': 427916, 'also asks people': 47890, 'asks people to': 96157, 'people to not': 649922, 'panic and stock': 637339, 'and stock food': 72406, 'stock food say': 802145, 'food say shop': 316310, 'say shop for': 739131, 'for essential commodity': 321096, 'essential commodity usual': 280934, 'commodity usual these': 189335, 'usual these will': 951037, 'these will not': 880975, 'will not run': 994266, 'not run in': 571407, 'run in shortage': 727674, 'are leaving': 87750, 'leaving testing': 485142, 'testing queue': 839624, 'queue when': 694130, 'they find': 882110, 'out testing': 627307, 'people are leaving': 647011, 'are leaving testing': 87753, 'leaving testing queue': 485143, 'testing queue when': 839625, 'queue when they': 694131, 'when they find': 984258, 'they find out': 882111, 'find out testing': 307149, 'out testing price': 627308, 'longest': 502119, 'vegancupboard': 953895, 'fun new': 341193, 'new game': 558791, 'game who': 343291, 'the longest': 859698, 'longest surviving': 502120, 'surviving only': 829365, 'they stocked': 883475, 'without another': 1002490, 'another trip': 77919, 'trip have': 932086, 'have day': 380183, 'far without': 298978, 'without going': 1002693, 'store vegancupboard': 811048, 'fun new game': 341194, 'new game who': 558794, 'game who can': 343292, 'can go the': 158514, 'go the longest': 354207, 'the longest surviving': 859699, 'longest surviving only': 502121, 'surviving only on': 829366, 'only on food': 610855, 'food they stocked': 317179, 'they stocked up': 883476, 'up on at': 945527, 'on at the': 599501, 'store without another': 811418, 'without another trip': 1002491, 'another trip have': 77920, 'trip have day': 932087, 'have day so': 380184, 'day so far': 228365, 'so far without': 777069, 'far without going': 298979, 'without going to': 1002694, 'the store vegancupboard': 868135, 'kev': 473196, 'and kev': 65815, 'kev have': 473197, 'have ordered': 381828, 'ordered soo': 618900, 'soo much': 785587, 'much fresh': 544931, 'lockdown rather': 499836, 'just having': 468939, 'having supermarket': 384295, 'be continuing': 114223, 'continuing this': 201551, 'this once': 889225, 'over loving': 630375, 'loving all': 505047, 'the cooking': 851715, 'and baking': 58666, 'baking too': 108929, 'too supportlocalbusiness': 925097, 'me and kev': 522413, 'and kev have': 65816, 'kev have ordered': 473198, 'have ordered soo': 381831, 'ordered soo much': 618901, 'soo much fresh': 785588, 'much fresh fish': 544932, 'fish and other': 309289, 'other food from': 620240, 'from local business': 336246, 'local business since': 497775, 'business since lockdown': 144384, 'since lockdown rather': 770707, 'lockdown rather than': 499837, 'rather than just': 697532, 'than just having': 840815, 'just having supermarket': 468941, 'having supermarket food': 384296, 'supermarket food will': 820368, 'food will definitely': 317621, 'definitely be continuing': 232308, 'be continuing this': 114224, 'continuing this once': 201552, 'this once it': 889226, 'once it over': 605669, 'it over loving': 460208, 'over loving all': 630376, 'loving all the': 505048, 'all the cooking': 44696, 'the cooking and': 851716, 'cooking and baking': 202843, 'and baking too': 58668, 'baking too supportlocalbusiness': 108930, 'sanitizer 21daylockdown': 734288, 'full of will': 340769, 'your sanitizer 21daylockdown': 1025676, 'describe': 237924, 'uncertainty is': 939707, 'to describe': 904200, 'describe the': 237931, 'economic condition': 267018, 'condition caused': 193429, 'by effort': 152460, 'consumer ha': 197674, 'ha essentially': 370511, 'essentially been': 281897, 'while economic': 986785, 'activity will': 30536, 'stop but': 804521, 'ha slowed': 371973, 'uncertainty is not': 939709, 'not enough to': 569197, 'enough to describe': 277697, 'to describe the': 904203, 'describe the economic': 237932, 'the economic condition': 853896, 'economic condition caused': 267021, 'condition caused by': 193430, 'caused by effort': 167839, 'by effort to': 152461, 'effort to slow': 269645, '19 the american': 11167, 'the american consumer': 848627, 'american consumer ha': 51891, 'consumer ha essentially': 197676, 'ha essentially been': 370512, 'essentially been told': 281898, 'told to stay': 923766, 'for while economic': 327840, 'while economic activity': 986786, 'economic activity will': 266967, 'activity will not': 30538, 'not stop but': 571752, 'stop but there': 804522, 'is no doubt': 449923, 'no doubt that': 564055, 'doubt that it': 256215, 'it ha slowed': 458414, 'pap': 639733, 'shopping became': 762171, 'became convenient': 118863, 'convenient long': 202404, 'time effort': 896602, 'effort saved': 269581, 'saved plus': 737755, 'plus you': 661725, 'you usually': 1022018, 'usually find': 951117, 'find item': 307014, 'online that': 609524, 'of though': 592131, 'nothing quite': 573144, 'like touching': 491654, 'touching the': 926726, 'the pap': 863259, 'online shopping became': 609046, 'shopping became convenient': 762172, 'became convenient long': 118864, 'convenient long before': 202405, 'long before covid': 501347, '19 because of': 5332, 'because of time': 119418, 'of time effort': 592171, 'time effort saved': 896603, 'effort saved plus': 269582, 'saved plus you': 737756, 'plus you usually': 661727, 'you usually find': 1022019, 'usually find item': 951118, 'find item online': 307015, 'item online that': 463520, 'online that the': 609528, 'that the physical': 846800, 'the physical store': 863712, 'physical store have': 655468, 'store have run': 808097, 'out of though': 626856, 'of though there': 592132, 'though there nothing': 892918, 'there nothing quite': 878876, 'nothing quite like': 573145, 'quite like touching': 694887, 'like touching the': 491655, 'touching the pap': 926728, 'caritasuganda': 164740, 'promoted': 683809, 'adapting how': 31331, 'our work': 625395, 'our seed': 624700, 'seed fair': 746146, 'fair at': 296318, 'at rural': 100428, 'rural market': 728255, 'uganda today': 937995, 'with caritasuganda': 997548, 'caritasuganda we': 164741, 'we provided': 972777, 'provided hand': 686611, 'washing station': 967720, 'station sanitizer': 796506, 'sanitizer promoted': 735612, 'promoted social': 683812, 'distancing so': 247484, 'so farmer': 777071, 'farmer could': 299327, 'could acquire': 208790, 'due to we': 262020, 'to we re': 918406, 're adapting how': 698183, 'adapting how we': 31332, 'how we do': 409169, 'do our work': 249953, 'our work at': 625396, 'work at our': 1004888, 'at our seed': 100032, 'our seed fair': 624701, 'seed fair at': 746147, 'fair at rural': 296319, 'at rural market': 100429, 'rural market in': 728256, 'market in uganda': 516580, 'in uganda today': 430377, 'uganda today with': 937996, 'today with caritasuganda': 920549, 'with caritasuganda we': 997549, 'caritasuganda we provided': 164742, 'we provided hand': 972778, 'provided hand washing': 686612, 'hand washing station': 375958, 'washing station sanitizer': 967725, 'station sanitizer promoted': 796507, 'sanitizer promoted social': 735613, 'promoted social distancing': 683813, 'social distancing so': 779720, 'distancing so farmer': 247485, 'so farmer could': 777073, 'farmer could acquire': 299328, 'onlinegrocerybusiness': 609822, 'crisis long': 217677, 'expect permanent': 290698, 'behavior therefore': 124235, 'therefore setting': 879461, 'an onlinegrocerybusiness': 56643, 'onlinegrocerybusiness is': 609823, 'perfect idea': 651303, 'idea learn': 413110, 'grocery industry will': 364631, 'will be feeling': 992458, 'be feeling the': 114820, 'feeling the impact': 303074, 'the crisis long': 852403, 'crisis long after': 217678, 'after the quarantine': 36348, 'the quarantine we': 864986, 'quarantine we can': 692691, 'can expect permanent': 158278, 'expect permanent change': 290699, 'consumer behavior therefore': 196525, 'behavior therefore setting': 124236, 'therefore setting up': 879462, 'up an onlinegrocerybusiness': 944298, 'an onlinegrocerybusiness is': 56644, 'onlinegrocerybusiness is perfect': 609824, 'is perfect idea': 450845, 'perfect idea learn': 651304, 'idea learn more': 413111, 'learn more visit': 484042, 'optimum': 613959, 'utilisation': 951236, 'roti': 726191, 'sabzi': 729020, 'daal': 224251, 'chawal': 174045, 'khaao': 473682, 'biting': 131889, 'not experiment': 569335, 'experiment on': 291737, 'on making': 601968, 'making food': 511073, 'the grain': 856687, 'grain pulse': 361794, 'pulse are': 688973, 'everyone optimum': 287240, 'optimum utilisation': 613964, 'utilisation of': 951239, 'done roti': 254993, 'roti sabzi': 726192, 'sabzi daal': 729021, 'daal chawal': 224252, 'chawal khaao': 174048, 'khaao do': 473683, 'not attempt': 568280, 'attempt cheese': 102218, 'cheese garlic': 175191, 'bread stuff': 138598, 'stuff cheese': 815043, 'cheese is': 175199, 'important biting': 418750, 'biting item': 131896, 'pls do not': 661126, 'do not experiment': 249732, 'not experiment on': 569336, 'experiment on making': 291738, 'on making food': 601969, 'making food all': 511074, 'food all the': 313090, 'all the grain': 44768, 'the grain pulse': 856689, 'grain pulse are': 361795, 'pulse are very': 688974, 'are very important': 91467, 'important to everyone': 419052, 'to everyone optimum': 905346, 'everyone optimum utilisation': 287241, 'optimum utilisation of': 613965, 'utilisation of resource': 951240, 'of resource need': 588986, 'be done roti': 114566, 'done roti sabzi': 254994, 'roti sabzi daal': 726193, 'sabzi daal chawal': 729022, 'daal chawal khaao': 224253, 'chawal khaao do': 174049, 'khaao do not': 473684, 'do not attempt': 249672, 'not attempt cheese': 568281, 'attempt cheese garlic': 102219, 'cheese garlic bread': 175192, 'garlic bread stuff': 343676, 'bread stuff cheese': 138599, 'stuff cheese is': 815044, 'cheese is an': 175200, 'an important biting': 56194, 'important biting item': 418751, 'biting item do': 131897, 'item do not': 463210, 'underprivileged': 940544, 'imp': 417524, 'thread request': 893595, 'on mask': 602041, 'mask sanitizers': 519231, 'sanitizers etc': 736268, 'do provide': 250010, 'to underprivileged': 917895, 'underprivileged people': 940549, 'educate those': 268766, 'how imp': 408027, 'imp to': 417525, 'wear these': 974477, 'these mask': 880275, 'and such': 72651, 'such precaution': 816691, 'thread request to': 893596, 'request to keep': 713215, 'to keep an': 908752, 'an eye on': 56036, 'eye on the': 294080, 'on the increasing': 604178, 'the increasing price': 858088, 'price on mask': 675691, 'on mask sanitizers': 602045, 'mask sanitizers etc': 519235, 'sanitizers etc please': 736269, 'etc please do': 282704, 'please do provide': 659896, 'do provide mask': 250011, 'and sanitizers to': 70907, 'sanitizers to underprivileged': 736429, 'to underprivileged people': 917896, 'underprivileged people please': 940550, 'people please educate': 649133, 'please educate those': 659950, 'educate those people': 268767, 'those people that': 892330, 'people that how': 649768, 'that how imp': 844380, 'how imp to': 408028, 'imp to wear': 417526, 'to wear these': 918445, 'wear these mask': 974478, 'these mask and': 880276, 'mask and such': 518374, 'and such precaution': 72652, 'then protective': 877450, 'certainly have': 170156, 'sent through': 750838, 'true then protective': 933190, 'then protective face': 877451, 'household would certainly': 406999, 'would certainly have': 1011711, 'certainly have been': 170157, 'have been better': 379477, 'letter sent through': 487349, 'sent through the': 750839, 'through the post': 894764, 'petbarn': 653496, 'bestfriends': 128026, 'furmum': 341934, 'furbaby': 341846, 'hey doe': 394361, 'doe shutting': 251575, 'down non': 256986, 'business include': 143912, 'include pet': 431606, 'like petbarn': 490992, 'petbarn and': 653497, 'and bestfriends': 58910, 'bestfriends because': 128027, 'because this': 119736, 'guy ha': 369014, 'ha intolerance': 370987, 'intolerance and': 443332, 'cannot eat': 161767, 'eat supermarket': 266060, 'supermarket sh': 822393, 'sh furmum': 754289, 'furmum furbaby': 341935, 'hey doe shutting': 394362, 'doe shutting down': 251576, 'shutting down non': 768268, 'down non essential': 256987, 'essential business include': 280851, 'business include pet': 143913, 'include pet food': 431607, 'pet food store': 653399, 'food store like': 316852, 'store like petbarn': 808731, 'like petbarn and': 490993, 'petbarn and bestfriends': 653498, 'and bestfriends because': 58911, 'bestfriends because this': 128028, 'because this guy': 119739, 'this guy ha': 887788, 'guy ha intolerance': 369016, 'ha intolerance and': 370988, 'intolerance and cannot': 443333, 'and cannot eat': 59509, 'cannot eat supermarket': 161774, 'eat supermarket sh': 266061, 'supermarket sh furmum': 822394, 'sh furmum furbaby': 754290, 'buy item': 148868, 'bulk you': 142376, 'bank for': 109839, 'the remains': 865497, 'remains of': 710035, 'leave behind': 484752, 'behind stop': 124700, 'being so': 125812, 'selfish we': 748308, 'together 19uk': 920664, '19uk panicshopping': 12562, 'afford to panic': 34803, 'panic buy item': 637495, 'buy item in': 148869, 'item in bulk': 463342, 'in bulk you': 421054, 'bulk you can': 142378, 'afford to donate': 34793, 'food bank for': 313574, 'bank for those': 109843, 'have to try': 383327, 'try and pick': 934448, 'pick up the': 655765, 'up the remains': 946207, 'the remains of': 865498, 'remains of what': 710036, 'of what you': 593070, 'what you leave': 982679, 'you leave behind': 1019574, 'leave behind stop': 484754, 'behind stop being': 124701, 'stop being so': 804498, 'being so selfish': 125823, 'so selfish we': 778176, 'selfish we are': 748310, 'this together 19uk': 890756, 'together 19uk panicshopping': 920665, 'hanes': 376921, 'clothing company': 184252, 'company hanes': 190725, 'hanes will': 376922, 'begin producing': 123550, 'producing mask': 680777, 'clothing company hanes': 184253, 'company hanes will': 190726, 'hanes will begin': 376923, 'will begin producing': 992811, 'begin producing mask': 123553, 'producing mask for': 680778, 'mask for health': 518678, 'for health care': 322148, 'health care professional': 386245, 'care professional on': 164163, 'frontlines of the': 338922, 'problematic': 679781, 'is problematic': 451056, 'problematic is': 679786, 'the behavior': 849440, 'behavior of': 124129, 'of australian': 580457, 'australian in': 103507, 'supermarket prime': 822059, 'minister scott': 533456, 'scott morrison': 742454, 'morrison once': 541741, 'again call': 36936, 'buying auspol': 149975, 'auspol panicbuying': 103089, 'is no problem': 449961, 'problem with australia': 679751, 'with australia food': 997338, 'food supply what': 317014, 'supply what is': 826092, 'what is problematic': 981719, 'is problematic is': 451057, 'problematic is the': 679787, 'is the behavior': 452736, 'the behavior of': 849442, 'behavior of australian': 124130, 'of australian in': 580460, 'australian in supermarket': 103508, 'in supermarket prime': 428651, 'supermarket prime minister': 822060, 'prime minister scott': 678158, 'minister scott morrison': 533457, 'scott morrison once': 742457, 'morrison once again': 541742, 'once again call': 605559, 'again call on': 36937, 'call on people': 156041, 'on people to': 602756, 'panic buying auspol': 637649, 'buying auspol panicbuying': 149976, 'springmarket': 791286, 'pre virus': 669221, 'virus home': 958296, 'home market': 401584, 'market across': 515909, 'across region': 29434, 'region seeing': 707456, 'via real': 956197, 'estate housing': 282126, 'housing springmarket': 407152, 'pre virus home': 669222, 'virus home market': 958297, 'home market across': 401585, 'market across region': 515910, 'across region seeing': 29436, 'region seeing higher': 707457, 'seeing higher price': 746318, 'higher price via': 395697, 'price via real': 677310, 'via real estate': 956198, 'real estate housing': 701148, 'estate housing springmarket': 282128, 'striving': 813929, 'alexa': 41593, 'been striving': 122072, 'striving for': 813930, 'live off': 495946, 'off sofa': 594170, 'sofa online': 781446, 'shopping streaming': 763998, 'streaming deliveroo': 812811, 'deliveroo amazon': 233571, 'amazon google': 50959, 'google alexa': 358134, 'alexa work': 41598, 'home social': 402092, 'medium pj': 527221, 'pj day': 657230, 'day vr': 228651, 'vr now': 960745, 'queue 19': 693849, 'we have been': 971765, 'have been striving': 379698, 'been striving for': 122073, 'striving for year': 813931, 'for year to': 328018, 'year to live': 1015045, 'to live off': 909345, 'live off sofa': 495948, 'off sofa online': 594171, 'sofa online shopping': 781447, 'online shopping streaming': 609289, 'shopping streaming deliveroo': 763999, 'streaming deliveroo amazon': 812812, 'deliveroo amazon google': 233573, 'amazon google alexa': 50960, 'google alexa work': 358135, 'alexa work from': 41599, 'from home social': 335905, 'home social medium': 402094, 'social medium pj': 779873, 'medium pj day': 527222, 'pj day vr': 657231, 'day vr now': 228652, 'vr now we': 960746, 'now we are': 576334, 'we are being': 970490, 'asked to do': 95862, 'do so we': 250105, 'want to stand': 966126, 'stand in queue': 793532, 'in queue 19': 427217, 'message infecting': 529346, 'text message infecting': 839909, 'message infecting computer': 529347, 'spread mass': 790622, 'hysteria and': 412429, 'what lead': 981801, 'causing shortage': 168094, 'guard won': 367872, 'be placing': 116426, 'placing military': 657947, 'military lockdown': 531477, 'lockdown should': 499913, 'some extra': 782798, 'store get': 807916, 'get raided': 347880, 'raided yes': 695645, 'is just way': 449154, 'way to spread': 970100, 'to spread mass': 915070, 'spread mass hysteria': 790623, 'mass hysteria and': 519787, 'hysteria and panic': 412433, 'and panic and': 68642, 'panic and is': 637320, 'and is what': 65442, 'is what lead': 453884, 'what lead to': 981802, 'lead to people': 483376, 'to people buying': 911616, 'people buying out': 647352, 'buying out the': 150853, 'out the shelf': 627418, 'the shelf and': 866823, 'shelf and causing': 756722, 'and causing shortage': 59646, 'causing shortage the': 168096, 'shortage the national': 765256, 'national guard won': 552532, 'guard won be': 367873, 'won be placing': 1003747, 'be placing military': 116427, 'placing military lockdown': 657948, 'military lockdown should': 531478, 'lockdown should you': 499915, 'should you have': 766677, 'you have some': 1019114, 'have some extra': 382627, 'some extra food': 782799, 'extra food and': 293512, 'and supply just': 72798, 'supply just in': 825479, 'in case the': 421278, 'case the store': 166058, 'the store get': 868026, 'store get raided': 807921, 'get raided yes': 347881, 'overview': 631678, '19 everything': 6872, 'down listing': 256928, 'listing sale': 494878, 'demand find': 235346, 'find quick': 307196, 'quick overview': 694336, 'overview of': 631681, 'number what': 577082, 'mean via': 524753, 'via our': 956145, 'covid 19 everything': 213049, '19 everything is': 6873, 'everything is down': 287869, 'is down listing': 447349, 'down listing sale': 256929, 'listing sale price': 494879, 'sale price and': 732456, 'and demand find': 61153, 'demand find quick': 235347, 'find quick overview': 307197, 'quick overview of': 694337, 'overview of the': 631685, 'of the number': 591281, 'the number what': 861964, 'number what they': 577084, 'they mean via': 882671, 'mean via our': 524754, 'via our latest': 956148, 'ozon': 632783, 'ozon is': 632786, 'gauging and': 344556, 'offering contactless': 595040, 'option customer': 614012, 'customer turn': 223001, 'to ecommerce': 904919, 'ecommerce platform': 266835, 'amid via': 52746, 'ozon is taking': 632787, 'is taking measure': 452554, 'measure to prevent': 525401, 'prevent price gauging': 671701, 'price gauging and': 674155, 'gauging and is': 344557, 'is offering contactless': 450417, 'offering contactless delivery': 595041, 'contactless delivery option': 200366, 'delivery option customer': 234272, 'option customer turn': 614013, 'customer turn to': 223002, 'turn to ecommerce': 935779, 'to ecommerce platform': 904920, 'ecommerce platform to': 266837, 'platform to buy': 659039, 'their essential good': 873175, 'good amid via': 356717, 'bronchitis': 140954, 'saturated': 736976, 'coworkers': 214493, 'wa likely': 962556, 'likely bronchitis': 491958, 'bronchitis and': 140955, 'negative for': 556777, 'for pneumonia': 324592, 'pneumonia but': 662092, 'didn or': 241145, 'or couldn': 614850, 'couldn test': 209926, 'very saturated': 955499, 'saturated retail': 736981, '50 other': 19792, 'other employee': 620133, 'employee god': 273889, 'god willing': 354843, 'willing didn': 995456, 'didn pas': 241152, 'pas it': 643113, 'to anybody': 900614, 'but coworkers': 145480, 'it wa likely': 462141, 'wa likely bronchitis': 962557, 'likely bronchitis and': 491959, 'bronchitis and tested': 140956, 'and tested negative': 73139, 'tested negative for': 839326, 'negative for pneumonia': 556779, 'for pneumonia but': 324593, 'pneumonia but they': 662093, 'but they didn': 147501, 'they didn or': 881931, 'didn or couldn': 241146, 'or couldn test': 614851, 'couldn test for': 209927, 'work in very': 1005353, 'in very saturated': 430571, 'very saturated retail': 955500, 'saturated retail store': 736982, 'store with 50': 811362, 'with 50 other': 997035, '50 other employee': 19793, 'other employee god': 620136, 'employee god willing': 273890, 'god willing didn': 354844, 'willing didn pas': 995457, 'didn pas it': 241153, 'pas it on': 643115, 'it on to': 460064, 'on to anybody': 604726, 'to anybody else': 900615, 'anybody else but': 80069, 'else but coworkers': 271648, 'up complaint': 944627, 'complaint form': 191971, 'potential price': 667118, 'you believe': 1017443, 'believe store': 126330, 'increased it': 433356, 'it price': 460456, 'price unfairly': 677190, 'unfairly please': 941461, 'please file': 659989, 'complaint here': 191980, 'set up complaint': 753551, 'up complaint form': 944628, 'complaint form for': 191973, 'form for potential': 329509, 'for potential price': 324655, 'potential price gouging': 667119, 'gouging by business': 359276, 'by business because': 152025, 'business because of': 143433, 'because of if': 119357, 'of if you': 584975, 'if you believe': 415400, 'you believe store': 1017449, 'believe store ha': 126331, 'ha increased it': 370950, 'increased it price': 433359, 'it price unfairly': 460469, 'price unfairly please': 677192, 'unfairly please file': 941463, 'please file complaint': 659990, 'file complaint here': 305333, 'accident': 28389, 'socialdistance is': 780150, 'really failing': 702180, 'failing because': 296198, 'because someone': 119573, 'someone wa': 784734, 'in car': 421231, 'car accident': 162976, 'accident near': 28396, 'socialdistance is really': 780152, 'is really failing': 451297, 'really failing because': 702182, 'failing because someone': 296199, 'because someone wa': 119576, 'someone wa in': 784737, 'wa in car': 962360, 'in car accident': 421232, 'car accident near': 162978, 'accident near grocery': 28397, 'attract': 102692, 'gigantic': 350067, 'primark': 678053, 'not publish': 571168, 'publish an': 688625, 'about concern': 24985, 'staff instead': 792568, 'instead your': 440390, 'store attract': 806612, 'attract gigantic': 102697, 'gigantic number': 350070, 'even offer': 284416, 'shopping an': 761957, 'alternative what': 49283, 'what corporate': 981260, 'corporate joke': 207301, 'joke primark': 467124, 'primark co': 678056, 'why not publish': 991230, 'not publish an': 571169, 'publish an article': 688626, 'an article about': 55417, 'article about concern': 94232, 'about concern about': 24986, 'about the safety': 26507, 'safety of your': 730659, 'your own retail': 1025155, 'own retail staff': 632164, 'retail staff instead': 718595, 'staff instead your': 792569, 'instead your store': 440391, 'your store attract': 1025961, 'store attract gigantic': 806613, 'attract gigantic number': 102699, 'gigantic number of': 350071, 'of customer and': 582265, 'customer and you': 222106, 'and you do': 76012, 'not even offer': 569267, 'even offer online': 284418, 'online shopping an': 609028, 'shopping an alternative': 761958, 'an alternative what': 55261, 'alternative what corporate': 49284, 'what corporate joke': 981261, 'corporate joke primark': 207302, 'joke primark co': 467125, 'chip are': 177503, 'for dutch': 320885, 'dutch sector': 263511, 'sector demand': 744164, 'for french': 321749, 'french fry': 332732, 'fry plummet': 339295, 'plummet amid': 661249, 'amid closure': 52402, 'chip are down': 177504, 'are down for': 85976, 'down for dutch': 256771, 'for dutch sector': 320886, 'dutch sector demand': 263512, 'sector demand for': 744165, 'demand for french': 235422, 'for french fry': 321750, 'french fry plummet': 332733, 'fry plummet amid': 339296, 'plummet amid closure': 661250, 'commercialization': 188758, 'china ha': 176687, 'been stupid': 122082, 'stupid with': 815502, 'gouging fraud': 359325, 'and commercialization': 60143, 'commercialization supply': 188759, 'ventilator virus': 954632, 'high technology': 395451, 'technology but': 836264, 'after some': 36224, 'some effort': 782728, 'effort most': 269552, 'country can': 210535, 'can produce': 159307, 'produce them': 680459, 'started now': 794786, 'will know': 993929, 'china ha been': 176689, 'ha been stupid': 369940, 'been stupid with': 122083, 'stupid with price': 815503, 'with price gouging': 1000306, 'price gouging fraud': 674279, 'gouging fraud and': 359326, 'fraud and commercialization': 331228, 'and commercialization supply': 60144, 'commercialization supply of': 188760, 'supply of fake': 825624, 'of fake low': 583382, 'mask ventilator virus': 519481, 'ventilator virus testing': 954633, 'virus testing kit': 958860, 'testing kit etc': 839538, 'very high technology': 955236, 'high technology but': 395452, 'technology but after': 836265, 'but after some': 145069, 'after some effort': 36225, 'some effort most': 782730, 'effort most country': 269553, 'most country can': 542216, 'country can produce': 210539, 'can produce them': 159312, 'produce them and': 680460, 'them and have': 875379, 'and have started': 64279, 'have started now': 382725, 'started now they': 794789, 'now they will': 576119, 'they will know': 883859, 'will know where': 993932, 'where they are': 985271, 'caronavirus2020': 164869, 'healthyathome': 387826, '19 ccpvirus': 5732, 'ccpvirus caronavirus2020': 168490, 'caronavirus2020 order': 164870, 'order healthyathome': 618292, 'healthyathome sanitizer': 387827, 'sanitizers mask': 736341, 'others from covid': 621418, 'covid 19 ccpvirus': 212773, '19 ccpvirus caronavirus2020': 5733, 'ccpvirus caronavirus2020 order': 168491, 'caronavirus2020 order healthyathome': 164871, 'order healthyathome sanitizer': 618293, 'healthyathome sanitizer sanitizers': 387828, 'sanitizer sanitizers mask': 735697, 'lung': 506779, 'organ': 619200, 'component': 192544, 'vu': 960781, 'our lung': 623823, 'lung are': 506782, 'are much': 88160, 'vulnerable organ': 961072, 'organ to': 619207, 'the component': 851406, 'component of': 192551, 'disinfectant unlike': 245790, 'unlike the': 942726, 'hand also': 374739, 'moment covid': 535913, 'it way': 462267, 'way into': 969662, 'lung comfort': 506789, 'comfort zone': 187862, 'zone it': 1027762, 'becomes monster': 120234, 'monster for': 537460, 'hand the': 375821, 'is vu': 453725, 'our lung are': 623824, 'lung are much': 506784, 'are much more': 88164, 'much more vulnerable': 545131, 'more vulnerable organ': 540932, 'vulnerable organ to': 961073, 'organ to support': 619208, 'support the component': 826864, 'the component of': 851407, 'component of disinfectant': 192552, 'of disinfectant unlike': 582689, 'disinfectant unlike the': 245791, 'unlike the hand': 942729, 'the hand also': 857056, 'hand also the': 374741, 'also the moment': 48980, 'the moment covid': 860748, 'moment covid 19': 535914, '19 find it': 7010, 'find it way': 307011, 'it way into': 462270, 'way into our': 969663, 'into our lung': 442822, 'our lung comfort': 623825, 'lung comfort zone': 506790, 'comfort zone it': 187863, 'zone it becomes': 1027763, 'it becomes monster': 456777, 'becomes monster for': 120235, 'monster for our': 537461, 'for our hand': 324253, 'our hand the': 623352, 'hand the virus': 375825, 'virus is vu': 958413, 'bcg first': 113331, 'first weekly': 309177, 'sentiment snapshot': 750995, 'snapshot reveals': 776166, 'reveals fear': 720316, 'also many': 48515, 'many sign': 514705, 'bcg first weekly': 113332, 'first weekly covid': 309178, 'consumer sentiment snapshot': 198926, 'sentiment snapshot reveals': 750999, 'snapshot reveals fear': 776168, 'reveals fear of': 720317, 'virus and recession': 957941, 'and recession but': 70045, 'recession but also': 704229, 'but also many': 145127, 'also many sign': 48518, 'many sign of': 514706, 'sign of business': 769155, 'of business usual': 580974, 'are others': 88849, 'others required': 621617, 'shield from': 758154, '19 getting': 7204, 'now supposed': 575946, 'nh list': 562003, 'given priority': 351088, 'priority delivery': 678546, 'only existing': 610412, 'to depend': 904182, 'friend volunteer': 333870, 'volunteer until': 960365, 'how are others': 407409, 'are others required': 88850, 'others required to': 621618, 'required to shield': 713407, 'to shield from': 914406, 'shield from covid': 758155, 'covid 19 getting': 213142, '19 getting on': 7207, 'on with supermarket': 605347, 'with supermarket delivery': 1001051, 'supermarket delivery they': 819935, 'delivery they are': 234625, 'are now supposed': 88602, 'now supposed to': 575947, 'supposed to have': 827361, 'have an nh': 379262, 'an nh list': 56523, 'nh list of': 562004, 'list of people': 494461, 'be given priority': 115031, 'given priority delivery': 351089, 'priority delivery but': 678547, 'delivery but only': 233762, 'but only existing': 146687, 'only existing customer': 610413, 'existing customer how': 290305, 'customer how we': 222476, 'want to depend': 966023, 'to depend on': 904183, 'depend on friend': 237313, 'on friend volunteer': 601022, 'friend volunteer until': 333871, 'volunteer until vaccine': 960366, 'popped': 664494, 'notright': 573627, 'disgusted after': 245357, 'my visit': 550512, 'visit yesterday': 959434, 'so popped': 778047, 'popped in': 664497, 'man made': 512149, 'our ice': 623501, 'ice coffee': 412645, 'coffee after': 185447, 'after wiped': 36546, 'wiped his': 996457, 'his nose': 397646, 'nose no': 567904, 'no washing': 565854, 'hand notright': 375099, 'disgusted after my': 245358, 'after my visit': 35948, 'my visit yesterday': 550513, 'visit yesterday wa': 959435, 'yesterday wa out': 1015926, 'wa out at': 962877, 'store so popped': 810233, 'so popped in': 778048, 'popped in with': 664500, 'in with mask': 430946, 'with mask on': 999410, 'mask on man': 519053, 'on man made': 601977, 'man made our': 512152, 'made our ice': 507896, 'our ice coffee': 623502, 'ice coffee after': 412646, 'coffee after wiped': 185448, 'after wiped his': 36548, 'wiped his nose': 996458, 'his nose no': 397649, 'nose no glove': 567905, 'glove no washing': 352810, 'no washing hand': 565855, 'washing hand notright': 967673, 'elegance our': 271323, 'article explores': 94310, 'executive should': 289939, 'be africaautoinsights': 113527, 'the lockdown where': 859640, 'than elegance our': 840542, 'elegance our latest': 271324, 'latest article explores': 481216, 'article explores what': 94313, 'explores what the': 292539, 'what the response': 982359, 'automotive executive should': 104045, 'executive should be': 289940, 'should be africaautoinsights': 765548, 'pymnts': 691387, 'what 2k': 980956, 'consumer told': 199339, 'told pymnts': 923665, 'pymnts about': 691388, 'changed their': 172574, 'life via': 489173, 'what 2k consumer': 980957, '2k consumer told': 16621, 'consumer told pymnts': 199340, 'told pymnts about': 923666, 'pymnts about how': 691389, 'ha changed their': 370138, 'changed their daily': 172576, 'their daily life': 872968, 'daily life via': 224669, 'coronadebat': 204928, 'know are': 476275, 'being overworked': 125522, 'overworked by': 631788, 'by grocery': 152731, 'making crazy': 511008, 'crazy money': 215356, 'money right': 536999, 'still paying': 801031, 'paying these': 645507, 'worker minimum': 1007389, 'minimum and': 533172, 'them take': 876360, 'take public': 832532, 'transit putting': 929643, 'putting everyone': 691110, 'risk at': 723396, 'least pay': 484594, 'their uber': 875064, 'uber coronadebat': 937802, 'of people know': 587935, 'people know are': 648595, 'know are being': 476276, 'are being overworked': 84891, 'being overworked by': 125523, 'overworked by grocery': 631789, 'by grocery store': 152732, 'store chain the': 806936, 'chain the store': 171171, 'store owner are': 809424, 'owner are making': 632389, 'are making crazy': 87976, 'making crazy money': 511009, 'crazy money right': 215357, 'money right now': 537001, 'now and they': 574063, 'are still paying': 90467, 'still paying these': 801033, 'paying these worker': 645509, 'these worker minimum': 880993, 'worker minimum and': 1007390, 'minimum and making': 533173, 'and making them': 66601, 'making them take': 511446, 'them take public': 876363, 'take public transit': 832533, 'public transit putting': 688397, 'transit putting everyone': 929644, 'putting everyone at': 691111, 'everyone at risk': 286717, 'at risk at': 100340, 'risk at least': 723397, 'at least pay': 99534, 'least pay their': 484595, 'pay their uber': 645163, 'their uber coronadebat': 875065, 'could supermarket': 209735, 'run get': 727648, 'worse coronavirus': 1010908, 'coronavirus measure': 206277, 'measure could': 525163, 'cause global': 167576, 'shortage un': 765286, 'un warns': 939302, 'could supermarket run': 209738, 'supermarket run get': 822272, 'run get worse': 727649, 'get worse coronavirus': 348648, 'worse coronavirus measure': 1010909, 'coronavirus measure could': 206278, 'measure could cause': 525164, 'could cause global': 208998, 'cause global food': 167577, 'global food shortage': 351949, 'food shortage un': 316614, 'shortage un warns': 765287, 'masksforall': 519683, 'gobills': 354617, 'buffalonian': 141857, 'ready if': 700895, 'go brave': 353380, 'brave grocery': 138217, 'store masksforall': 808916, 'masksforall gobills': 519684, 'gobills buffalonian': 354618, 'ready if have': 700896, 'to go brave': 906778, 'go brave grocery': 353381, 'brave grocery store': 138218, 'grocery store masksforall': 365556, 'store masksforall gobills': 808917, 'masksforall gobills buffalonian': 519685, 'ward because': 966634, 'because asked': 118939, 'it staff': 461209, 'staff said': 792816, 'said totally': 731533, 'totally embarrassing': 926330, 'embarrassing stophoarding': 272452, 'no hand sanitiser': 564396, 'sanitiser in one': 733977, 'in one of': 426151, 'the ward because': 871076, 'ward because asked': 966635, 'because asked because': 118940, 'stealing it staff': 799237, 'it staff said': 461212, 'staff said totally': 792817, 'said totally embarrassing': 731534, 'totally embarrassing stophoarding': 926331, 'embarrassing stophoarding stopstockpiling': 272453, 'resistance': 714588, 'twd': 936272, 'an enforced': 55748, 'enforced lockdown': 276711, 'better smh': 128468, 'smh resist': 775685, 'resist resistance': 714576, 'resistance twd': 714593, 'this is another': 888177, 'is another reason': 445739, 'another reason why': 77793, 'reason why we': 703064, 'we need an': 972465, 'need an enforced': 554404, 'an enforced lockdown': 55749, 'enforced lockdown they': 276714, 'lockdown they know': 500027, 'they know better': 882523, 'know better smh': 476309, 'better smh resist': 128469, 'smh resist resistance': 775686, 'resist resistance twd': 714577, 'medicine in': 526813, 'impending financial': 418318, 'financial and': 306320, 'collapse thank': 186058, 'helping people': 391431, 'buying food water': 150344, 'water and medicine': 968869, 'and medicine in': 66909, 'medicine in stock': 526817, 'in stock not': 428317, 'stock not because': 802500, 'of the impending': 591129, 'the impending financial': 857957, 'impending financial and': 418319, 'financial and economic': 306322, 'and economic collapse': 61898, 'economic collapse thank': 267013, 'collapse thank you': 186059, 'for helping people': 322202, 'helping people get': 391437, 'people get ready': 648056, 'superbug': 818632, 'the overuse': 862795, 'antibacterial going': 78358, 'new problem': 559346, 'problem like': 679591, 'like superbug': 491263, 'is the overuse': 452885, 'the overuse of': 862796, 'sanitizer and antibacterial': 734382, 'and antibacterial going': 58178, 'antibacterial going to': 78359, 'going to lead': 355638, 'to lead to': 909119, 'to new problem': 910571, 'new problem like': 559348, 'problem like superbug': 679592, 'seeing empty grocery': 746284, 'shelf here why': 757159, 'fundraiser': 341645, 'for nonprofit': 323908, 'nonprofit marketer': 566694, 'marketer and': 517448, 'and fundraiser': 63419, 'fundraiser how': 341650, 'impact overall': 417916, 'overall consumer': 631001, 'their charitable': 872762, 'charitable giving': 173546, 'giving and': 351235, 'and greg': 63958, 'greg fox': 363825, 'fox share': 330774, 'share more': 755101, 'for nonprofit marketer': 323909, 'nonprofit marketer and': 566695, 'marketer and fundraiser': 517450, 'and fundraiser how': 63420, 'fundraiser how will': 341651, 'how will covid': 409225, '19 impact overall': 7706, 'impact overall consumer': 417917, 'overall consumer behavior': 631002, 'consumer behavior and': 196439, 'behavior and their': 123907, 'and their charitable': 73674, 'their charitable giving': 872763, 'charitable giving and': 173547, 'giving and greg': 351237, 'and greg fox': 63959, 'greg fox share': 363826, 'fox share more': 330775, 'mm': 534755, 'justsa': 470510, 'market hey': 516520, 'look love': 502535, 'the milk': 860602, 'milk market': 531722, 'an asset': 55441, 'city but': 179077, 'the mm': 860699, 'mm cannot': 534758, 'cannot control': 161728, 'control number': 202061, 'to le': 909115, '100 and': 1832, 'supermarket keep': 821238, 'distance otherwise': 246794, 'otherwise we': 621885, 'well have': 978269, 'one big': 605998, 'big street': 130021, 'street gathering': 812978, 'gathering justsa': 344475, 'market hey look': 516521, 'hey look love': 394454, 'look love the': 502536, 'love the milk': 504809, 'the milk market': 860609, 'milk market it': 531723, 'market it an': 516652, 'it an asset': 456466, 'an asset to': 55442, 'asset to the': 96483, 'to the city': 916563, 'the city but': 850921, 'city but the': 179079, 'but the mm': 147365, 'the mm cannot': 860700, 'mm cannot control': 534759, 'cannot control number': 161730, 'control number to': 202062, 'number to le': 577073, 'to le than': 909116, 'le than 100': 483154, 'than 100 and': 840156, '100 and it': 1833, 'and it not': 65562, 'not like supermarket': 570400, 'like supermarket keep': 491271, 'supermarket keep your': 821242, 'social distance otherwise': 779516, 'distance otherwise we': 246795, 'otherwise we might': 621886, 'we might well': 972379, 'might well have': 531169, 'well have one': 978271, 'have one big': 381784, 'one big street': 606002, 'big street gathering': 130022, 'street gathering justsa': 812979, 'flex': 310340, 'bargaining': 111075, 'kyuu': 478110, 'aree': 92298, 'milta': 532470, 'rupaye': 728178, 'aapke': 24124, 'yahan': 1014043, 'kyu': 478107, 'sucha': 816879, 'cutie': 223680, 'rashamidesai': 697124, 'watch flex': 968407, 'flex her': 310343, 'her bargaining': 391873, 'bargaining skill': 111084, 'skill kyuu': 772963, 'kyuu 40': 478111, '40 aree': 18531, 'aree internet': 92299, 'internet pe': 441982, 'pe milta': 645964, 'milta 30': 532471, '30 rupaye': 17210, 'rupaye me': 728179, 'me aapke': 522342, 'aapke yahan': 24125, 'yahan kyu': 1014044, 'kyu 40': 478108, '40 sucha': 18668, 'sucha cutie': 816880, 'cutie rashamidesai': 223681, 'watch flex her': 968408, 'flex her bargaining': 310344, 'her bargaining skill': 391874, 'bargaining skill kyuu': 111085, 'skill kyuu 40': 772964, 'kyuu 40 aree': 478112, '40 aree internet': 18532, 'aree internet pe': 92300, 'internet pe milta': 441983, 'pe milta 30': 645965, 'milta 30 rupaye': 532472, '30 rupaye me': 17211, 'rupaye me aapke': 728180, 'me aapke yahan': 522343, 'aapke yahan kyu': 24126, 'yahan kyu 40': 1014045, 'kyu 40 sucha': 478109, '40 sucha cutie': 18669, 'sucha cutie rashamidesai': 816881, 'wa wondering': 963719, 'everyone gas': 286927, 'are have': 87023, 'seen such': 747257, 'such low': 816606, 'time gasoline': 896821, 'gasoline 19': 344215, 'wa wondering what': 963721, 'wondering what everyone': 1004191, 'what everyone gas': 981427, 'everyone gas price': 286928, 'price are have': 672674, 'are have never': 87025, 'never seen such': 558179, 'seen such low': 747258, 'such low gas': 816607, 'price in long': 674705, 'long time gasoline': 501770, 'time gasoline 19': 896822, 'shopping online during': 763426, 'spread while': 790885, 'the spread while': 867644, 'spread while shopping': 790886, 'shopping in our': 762981, 'payout': 645792, 'vikez': 957286, 'government 00': 359806, '00 minimum': 331, 'minimum payout': 533213, 'payout to': 645795, 'american which': 52299, 'is designed': 447132, 'outbreak market': 628441, 'market insider': 516591, 'insider economy': 439465, 'economy aid': 267622, 'aid vikez': 39478, 'vikez business': 957287, 'consumer link': 198049, 'the government 00': 856502, 'government 00 minimum': 359807, '00 minimum payout': 333, 'minimum payout to': 533214, 'payout to all': 645796, 'all american which': 42005, 'american which is': 52300, 'which is designed': 986002, 'is designed to': 447133, 'designed to fight': 238355, 'fight the coronavirus': 304887, 'coronavirus outbreak market': 206399, 'outbreak market insider': 628442, 'market insider economy': 516592, 'insider economy aid': 439466, 'economy aid vikez': 267623, 'aid vikez business': 39479, 'vikez business consumer': 957288, 'business consumer link': 143570, 'my 26': 547143, 'son arrived': 785353, 'arrived back': 93949, 'his flat': 397436, 'flat after': 310062, 'london for': 501068, 'find his': 306963, 'his fridge': 397454, 'fridge freezer': 333396, 'freezer wa': 332646, 'wa broken': 961748, 'broken and': 140880, 'food wasted': 317496, 'wasted this': 968267, 'wa devastating': 961967, 'devastating he': 239591, 'on low': 601943, 'wage but': 963833, 'today my 26': 919899, 'my 26 year': 547144, 'old son arrived': 598472, 'son arrived back': 785354, 'arrived back to': 93950, 'back to his': 107371, 'to his flat': 907812, 'his flat after': 397437, 'flat after working': 310064, 'after working and': 36579, 'working and staying': 1008510, 'and staying in': 72321, 'staying in london': 798639, 'in london for': 424879, 'london for day': 501069, 'for day to': 320589, 'day to find': 228565, 'to find his': 905908, 'find his fridge': 306964, 'his fridge freezer': 397455, 'fridge freezer wa': 333401, 'freezer wa broken': 332647, 'wa broken and': 961749, 'broken and all': 140881, 'and all his': 57867, 'all his food': 43121, 'his food wasted': 397446, 'food wasted this': 317499, 'wasted this wa': 968268, 'this wa devastating': 891059, 'wa devastating he': 961968, 'devastating he is': 239592, 'he is on': 385136, 'is on low': 450473, 'on low wage': 601946, 'low wage but': 505727, 'wage but when': 963834, 'but when he': 147816, 'he went to': 385658, 'the supermarket there': 868849, 'supermarket there wa': 823281, 'ronn': 725814, 'torossian': 926029, '5wpr': 20839, 'dara': 225917, 'busch': 143119, 'hear tomorrow': 388016, 'tomorrow ronn': 924175, 'ronn torossian': 725815, 'torossian 5wpr': 926030, '5wpr ceo': 20840, 'ceo president': 169810, 'and dara': 60948, 'dara busch': 225918, 'busch president': 143123, 'consumer practice': 198398, 'practice will': 668705, 'be hosting': 115306, 'hosting beauty': 404948, 'beauty matter': 118765, 'matter live': 520593, 'live covid': 495779, 'crisis communication': 217229, 'communication seminar': 189640, 'seminar register': 749656, 'join them': 466876, 'them march': 876008, '26th 00pm': 16238, '00pm et': 690, 'did you hear': 240933, 'you hear tomorrow': 1019182, 'hear tomorrow ronn': 388017, 'tomorrow ronn torossian': 924176, 'ronn torossian 5wpr': 725816, 'torossian 5wpr ceo': 926031, '5wpr ceo president': 20841, 'ceo president and': 169811, 'president and dara': 670760, 'and dara busch': 60949, 'dara busch president': 225919, 'busch president of': 143124, 'president of our': 670871, 'our consumer practice': 622542, 'consumer practice will': 198403, 'practice will be': 668706, 'will be hosting': 992504, 'be hosting beauty': 115307, 'hosting beauty matter': 404949, 'beauty matter live': 118766, 'matter live covid': 520594, 'live covid 19': 495780, '19 crisis communication': 6230, 'crisis communication seminar': 217231, 'communication seminar register': 189641, 'seminar register here': 749657, 'register here and': 707576, 'here and join': 392708, 'and join them': 65676, 'join them march': 466877, 'them march 26th': 876009, 'march 26th 00pm': 515221, '26th 00pm et': 16239, 'if dc': 414024, 'dc is': 228962, 'be sued': 117437, 'sued their': 817185, 'their council': 872895, 'council had': 209985, 'the courage': 852209, 'courage to': 211787, 'they probably': 882912, 'probably won': 679421, 'see if dc': 745277, 'if dc is': 414025, 'dc is going': 228963, 'to be sued': 901570, 'be sued their': 117439, 'sued their council': 817186, 'their council had': 872896, 'council had the': 209986, 'had the courage': 373613, 'the courage to': 852210, 'courage to stand': 211790, 'stand up for': 793603, 'up for the': 944965, 'for the people': 326616, 'the people and': 863453, 'people and they': 646890, 'and they probably': 73925, 'they probably won': 882915, 'probably won be': 679422, 'won be sued': 1003752, 'prowl': 687314, 'tax tip': 835107, 'tip tuesday': 898947, 'tuesday scammer': 935180, 'the prowl': 864745, 'prowl if': 687315, 'call or': 156053, 'verify your': 954802, 'security number': 744682, 'number or': 577029, 'bank info': 109940, 'avoid go': 105126, 'tax tip tuesday': 835108, 'tip tuesday scammer': 898948, 'tuesday scammer are': 935181, 'scammer are on': 740538, 'on the prowl': 604312, 'the prowl if': 864746, 'prowl if you': 687316, 'receive call or': 703453, 'call or email': 156054, 'or email to': 615149, 'email to verify': 272342, 'to verify your': 918148, 'verify your social': 954803, 'your social security': 1025856, 'social security number': 779948, 'security number or': 744684, 'number or bank': 577030, 'or bank info': 614492, 'bank info to': 109942, 'info to receive': 437596, 'your check it': 1023189, 'check it scam': 174479, 'it scam for': 460898, 'to avoid go': 900904, 'avoid go to': 105127, 'chemist to': 175455, 'some med': 783272, 'med and': 525870, 'they strictly': 883486, 'strictly imposed': 813696, 'imposed meter': 419295, 'meter away': 529695, 'customer same': 222794, 'with sainsbury': 1000549, 'sainsbury supermarket': 731723, 'been to chemist': 122213, 'to chemist to': 902711, 'chemist to buy': 175456, 'buy some med': 149211, 'some med and': 783273, 'med and they': 525874, 'and they strictly': 73943, 'they strictly imposed': 883487, 'strictly imposed meter': 813697, 'imposed meter away': 419296, 'meter away from': 529696, 'from each customer': 335240, 'each customer same': 264030, 'customer same with': 222795, 'same with sainsbury': 733427, 'with sainsbury supermarket': 1000550, 'sainsbury supermarket socialdistancing': 731727, 'collateral': 186169, '19 collateral': 5877, 'collateral damage': 186170, 'damage panic': 225213, 'panic stock': 638630, 'piling of': 656616, 'fruit is': 339105, 'is adding': 445351, 'inflation rbi': 437228, 'covid 19 collateral': 212822, '19 collateral damage': 5878, 'collateral damage panic': 186171, 'damage panic stock': 225215, 'panic stock piling': 638631, 'stock piling of': 802669, 'piling of vegetable': 656617, 'and fruit is': 63374, 'fruit is adding': 339106, 'is adding to': 445355, 'adding to food': 31709, 'food inflation rbi': 315043, 'irresponsibility': 445029, 'flame': 309984, 'purely': 690037, 'hyperbole': 412295, 'the irresponsibility': 858465, 'irresponsibility of': 445030, 'british medium': 140541, 'medium trying': 527338, 'to fan': 905663, 'fan the': 298544, 'the flame': 855392, 'flame of': 309985, 'by asking': 151894, 'asking when': 96106, 'when food': 983436, 'out purely': 627082, 'purely for': 690040, 'for hyperbole': 322458, 'hyperbole headline': 412296, 'headline bbc': 385989, 'bbc coronacrisis': 113073, 'coronacrisis coronacrisisuk': 204568, 'the irresponsibility of': 858466, 'irresponsibility of the': 445031, 'of the british': 590833, 'the british medium': 850026, 'british medium trying': 140543, 'medium trying to': 527339, 'trying to fan': 934803, 'to fan the': 905664, 'fan the flame': 298545, 'the flame of': 855393, 'flame of panic': 309986, 'of panic by': 587724, 'panic by asking': 637979, 'by asking when': 151895, 'asking when food': 96107, 'when food will': 983440, 'food will run': 317630, 'run out purely': 727766, 'out purely for': 627083, 'purely for hyperbole': 690041, 'for hyperbole headline': 322459, 'hyperbole headline bbc': 412297, 'headline bbc coronacrisis': 385990, 'bbc coronacrisis coronacrisisuk': 113074, 'overcame the': 631084, 'their labor': 873776, 'labor so': 478447, 'who overcame the': 989396, 'overcame the panic': 631085, 'put in their': 690623, 'in their labor': 429751, 'their labor so': 873777, 'labor so that': 478448, 'so that we': 778403, 'can all have': 157424, 'all have food': 43046, 'essential supply in': 281624, 'supply in this': 825416, 'athabasca': 101737, 'oilsands': 597726, 'athabasca oil': 101738, 'down oilsands': 257011, 'oilsands project': 597729, 'project due': 683487, 'pandemic yyc': 637100, 'athabasca oil to': 101740, 'oil to shut': 597478, 'to shut down': 914603, 'shut down oilsands': 767841, 'down oilsands project': 257012, 'oilsands project due': 597731, 'project due to': 683488, 'due to drop': 261768, '19 pandemic yyc': 9533, 'scammer exploiting': 740572, 'exploiting panic': 292438, 'panic with': 638794, 'these common': 879776, 'out for scammer': 626156, 'for scammer exploiting': 325368, 'scammer exploiting panic': 740573, 'exploiting panic with': 292440, 'panic with these': 638797, 'with these common': 1001636, 'these common scam': 879777, 'just visited': 470183, 'local hardly': 498065, 'any mask': 79451, 'mask people': 519104, 'just talking': 469954, 'talking out': 834028, 'out loud': 626525, 'loud and': 504484, 'and breathing': 59180, 'breathing supermarket': 139247, 'should demand': 765912, 'demand hazard': 235627, 'hazard out': 384554, 'out fitting': 626075, 'fitting and': 309553, 'and minimum': 67052, '50 an': 19607, 'hour hazard': 405665, 'pay plus': 645047, 'plus health': 661619, 'insurance essentialworkers': 440724, 'essentialworkers plandemic': 281959, 'just visited the': 470189, 'visited the local': 959505, 'the local hardly': 859554, 'local hardly any': 498066, 'hardly any mask': 378250, 'any mask people': 79452, 'mask people just': 519106, 'people just talking': 648562, 'just talking out': 469957, 'talking out loud': 834029, 'out loud and': 626527, 'loud and breathing': 504485, 'and breathing supermarket': 59181, 'breathing supermarket worker': 139248, 'supermarket worker should': 824083, 'worker should demand': 1007773, 'should demand hazard': 765913, 'demand hazard out': 235628, 'hazard out fitting': 384555, 'out fitting and': 626076, 'fitting and minimum': 309554, 'and minimum of': 67053, 'minimum of 50': 533203, 'of 50 an': 579606, '50 an hour': 19608, 'an hour hazard': 56085, 'hour hazard pay': 405666, 'hazard pay plus': 384572, 'pay plus health': 645048, 'plus health benefit': 661620, 'health benefit and': 386191, 'benefit and life': 126919, 'and life insurance': 66139, 'life insurance essentialworkers': 488786, 'insurance essentialworkers plandemic': 440725, 'dire': 243246, 'half as': 374144, 'as mask': 94775, 'if aren': 413875, 'aren health': 92432, 'professional or': 682476, 'or ur': 617609, 'ur immune': 948019, 'system isn': 831229, 'isn compromised': 454466, 'compromised you': 192694, 're kinda': 698969, 'kinda that': 475079, 'that jerk': 844767, 'jerk hospital': 465149, 'responder are': 715419, 'in dire': 422273, 'dire need': 243256, 'those supply': 892511, 'so funny': 777147, 'funny when': 341815, 'phone with': 655068, 'glove and half': 352560, 'and half as': 64120, 'half as mask': 374145, 'as mask to': 94776, 'mask to grocery': 519406, 'store if aren': 808242, 'if aren health': 413876, 'aren health care': 92433, 'care professional or': 164164, 'professional or ur': 682477, 'or ur immune': 617610, 'ur immune system': 948020, 'immune system isn': 417343, 'system isn compromised': 831230, 'isn compromised you': 454467, 'compromised you re': 192695, 'you re kinda': 1020665, 're kinda that': 698970, 'kinda that jerk': 475080, 'that jerk hospital': 844768, 'jerk hospital staff': 465150, 'hospital staff and': 404627, 'staff and first': 792139, 'first responder are': 308930, 'responder are in': 715421, 'are in dire': 87377, 'in dire need': 422274, 'dire need of': 243257, 'need of those': 555347, 'of those supply': 592119, 'those supply so': 892512, 'supply so funny': 825865, 'so funny when': 777151, 'funny when you': 341818, 'when you check': 984546, 'check your phone': 174735, 'your phone with': 1025297, 'phone with your': 655071, 'with your glove': 1002202, 'your glove on': 1024060, 'comprise': 192650, 'restaurant banned': 716325, 'house dining': 406267, 'dining university': 243037, 'university cafeteria': 942415, 'cafeteria cruise': 155145, 'cruise ship': 219703, 'ship hotel': 758676, 'more make': 539743, 'up 42': 944173, 'demand while': 236485, 'while export': 986818, 'export also': 292607, 'also banned': 47904, 'banned comprise': 110561, 'comprise around': 192651, '25 supplychain': 15966, 'supplychain foodsecurity': 826179, 'foodsecurity farmer': 318076, 'shuttered school restaurant': 768215, 'school restaurant banned': 741906, 'restaurant banned from': 716326, 'banned from in': 110571, 'from in house': 336023, 'in house dining': 423848, 'house dining university': 406268, 'dining university cafeteria': 243039, 'university cafeteria cruise': 942416, 'cafeteria cruise ship': 155146, 'cruise ship hotel': 219706, 'ship hotel and': 758677, 'hotel and more': 405107, 'and more make': 67191, 'more make up': 539744, 'make up 42': 510681, 'up 42 of': 944174, '42 of food': 18909, 'of food demand': 583676, 'food demand while': 314183, 'demand while export': 236487, 'while export also': 986819, 'export also banned': 292608, 'also banned comprise': 47906, 'banned comprise around': 110562, 'comprise around 25': 192652, 'around 25 supplychain': 93137, '25 supplychain foodsecurity': 15967, 'supplychain foodsecurity farmer': 826180, 'controversial': 202288, 'israeli': 455607, 'spyware': 791418, 'nso': 576671, 'controversial israeli': 202289, 'israeli spyware': 455623, 'spyware company': 791419, 'company nso': 190915, 'nso is': 576674, 'creating mobile': 216030, 'mobile data': 534957, 'data tracking': 226472, 'tracking analysis': 928317, 'analysis software': 57080, 'software to': 781548, 'to map': 909832, 'map the': 514948, 'outbreak source': 628638, 'source told': 786570, 'me he': 522868, 'currently being': 221481, 'tested this': 839376, 'this come': 886801, 'come amid': 187206, 'of privacy': 588442, 'privacy violation': 678843, 'violation state': 957525, 'state use': 796062, 'our smartphones': 624805, 'smartphones to': 775539, 'detect infected': 239330, 'infected people': 436612, 'controversial israeli spyware': 202290, 'israeli spyware company': 455624, 'spyware company nso': 791420, 'company nso is': 190916, 'nso is creating': 576675, 'is creating mobile': 446913, 'creating mobile data': 216031, 'mobile data tracking': 534961, 'data tracking analysis': 226473, 'tracking analysis software': 928318, 'analysis software to': 57081, 'software to map': 781550, 'to map the': 909834, 'map the outbreak': 514949, 'the outbreak source': 862693, 'outbreak source told': 628639, 'source told me': 786571, 'told me he': 923607, 'me he is': 522872, 'he is currently': 385119, 'is currently being': 446987, 'currently being tested': 221483, 'being tested this': 125915, 'tested this come': 839377, 'this come amid': 886804, 'come amid growing': 187207, 'amid growing fear': 52495, 'fear of privacy': 301254, 'of privacy violation': 588444, 'privacy violation state': 678844, 'violation state use': 957526, 'state use our': 796063, 'use our smartphones': 949467, 'our smartphones to': 624806, 'smartphones to detect': 775540, 'to detect infected': 904228, 'detect infected people': 239331, 'shopping priority': 763676, 'priority for': 678567, 'loss group': 503684, 'of charity': 581292, 'and organisation': 68267, 'organisation for': 619263, 'loss have': 503686, 'have teamed': 382929, 'launch petition': 481939, 'petition calling': 653595, 'for priority': 324740, 'priority access': 678498, 'petition for online': 653606, 'online shopping priority': 609233, 'shopping priority for': 763677, 'priority for people': 678570, 'sight loss group': 769044, 'loss group of': 503685, 'group of charity': 366787, 'of charity and': 581293, 'charity and organisation': 173563, 'and organisation for': 68268, 'organisation for people': 619264, 'sight loss have': 769045, 'loss have teamed': 503688, 'have teamed up': 382930, 'teamed up to': 835855, 'up to launch': 946395, 'to launch petition': 909103, 'launch petition calling': 481940, 'petition calling for': 653596, 'calling for priority': 156558, 'for priority access': 324741, 'priority access to': 678500, 'the outbreak read': 862685, 'edited': 268589, 'recorded video': 705124, 'store yesterday': 811663, 'and edited': 61940, 'edited them': 268593, 'them into': 875933, 'this short': 890113, 'short film': 764616, 'film about': 305657, 'recorded video on': 705125, 'video on my': 956842, 'way to the': 970114, 'grocery store yesterday': 365979, 'store yesterday and': 811664, 'yesterday and edited': 1015659, 'and edited them': 61941, 'edited them into': 268594, 'them into this': 875941, 'into this short': 443222, 'this short film': 890114, 'short film about': 764617, 'film about the': 305658, 'about the corona': 26361, 'virus in nigeria': 958325, 'approx': 83223, 'thought approx': 892973, 'approx 300': 83230, '300 death': 17295, 'with approx': 997299, 'approx 30': 83228, 'case 80': 165603, '00 death': 161, 'from various': 338221, 'various flu': 952602, 'flu in': 311422, 'the 2018': 848009, '2018 winter': 13912, 'winter there': 996148, 'were 11': 979248, 'million case': 532104, 'of influenza': 585186, 'influenza in': 437369, 'the winter': 871614, 'winter of': 996135, '2019 where': 14043, 'for thought approx': 327157, 'thought approx 300': 892974, 'approx 300 death': 83231, '300 death in': 17296, 'in the this': 429604, 'the this year': 869494, 'year with approx': 1015112, 'with approx 30': 997300, 'approx 30 00': 83229, '30 00 case': 16917, '00 case 80': 107, 'case 80 00': 165604, '80 00 death': 22539, '00 death in': 163, 'in the from': 429220, 'the from various': 855838, 'from various flu': 338222, 'various flu in': 952603, 'flu in the': 311424, 'in the 2018': 428950, 'the 2018 winter': 848010, '2018 winter there': 13913, 'winter there were': 996149, 'there were 11': 879304, 'were 11 million': 979249, '11 million case': 2557, 'million case of': 532106, 'case of influenza': 165910, 'of influenza in': 585187, 'influenza in the': 437370, 'in the winter': 429684, 'the winter of': 871616, 'winter of 2019': 996137, 'of 2019 where': 579482, 'biggest online': 130284, 'increase since': 433061, 'the started': 867737, 'started charted': 794709, 'product that have': 681692, 'that have seen': 844233, 'seen the biggest': 747277, 'the biggest online': 849666, 'biggest online shopping': 130285, 'shopping increase since': 763008, 'increase since the': 433063, 'since the started': 770907, 'the started charted': 867738, 'on webinar': 605156, 'webinar regarding': 975085, 'regarding real': 707246, 'estate covid': 282113, 'interesting question': 441596, 'what change': 981201, 'change do': 172016, 'see grocery': 745164, 'grocery when': 366131, 'when many': 983714, 'get used': 348578, 'shopping how': 762931, 'convenience and': 202316, 'back do': 106953, 'le neighbourhood': 483037, 'neighbourhood grocery': 557274, 'on webinar regarding': 605157, 'webinar regarding real': 975087, 'regarding real estate': 707247, 'real estate covid': 701141, 'estate covid 19': 282114, 'the interesting question': 858352, 'interesting question what': 441597, 'question what change': 693794, 'what change do': 981204, 'change do we': 172017, 'do we see': 250485, 'we see grocery': 973157, 'see grocery when': 745166, 'grocery when many': 366132, 'when many more': 983716, 'more people get': 540021, 'people get used': 648062, 'get used to': 348579, 'used to online': 950072, 'to online grocery': 910934, 'grocery shopping how': 365037, 'shopping how many': 762933, 'many people see': 514531, 'see the convenience': 745819, 'the convenience and': 851700, 'convenience and never': 202318, 'and never go': 67536, 'never go back': 558019, 'go back do': 353343, 'back do we': 106954, 'we see le': 973163, 'see le neighbourhood': 745357, 'le neighbourhood grocery': 483038, 'neighbourhood grocery in': 557275, 'grocery in the': 364620, 'mco': 522223, 'malaysia dip': 511602, 'in fuel': 423149, 'price mco': 675209, 'mco may': 522226, 'may see': 521478, 'see petrol': 745575, 'station close': 796373, 'close say': 182788, 'say group': 738711, 'malaysia dip in': 511603, 'dip in fuel': 243190, 'in fuel price': 423151, 'fuel price mco': 340240, 'price mco may': 675210, 'mco may see': 522227, 'may see petrol': 521481, 'see petrol station': 745576, 'petrol station close': 653789, 'station close say': 796375, 'close say group': 182789, 've shopped': 953564, 'shopped online': 761313, 'local walmart': 498688, 'walmart for': 965328, 'for about': 318975, 'about year': 26959, 'saw no': 738183, 'no change': 563786, 'from before': 334660, 'after now': 35967, 're price': 699301, 'gouging they': 359470, 've shopped online': 953565, 'shopped online at': 761314, 'online at the': 607895, 'the local walmart': 859579, 'local walmart for': 498689, 'walmart for about': 965329, 'for about year': 318984, 'about year and': 26960, 'year and saw': 1014402, 'and saw no': 70983, 'saw no change': 738184, 'no change in': 563788, 'change in price': 172128, 'in price from': 426965, 'price from before': 674110, 'from before covid': 334662, '19 and after': 4982, 'and after now': 57755, 'after now if': 35968, 'now if they': 574974, 'they re price': 883099, 're price gouging': 699303, 'price gouging they': 674332, 'gouging they re': 359471, 'not doing it': 569087, 'doing it here': 252483, 'bbcyourquestions': 113159, 'am supermarket': 50451, 'my year': 550658, 'old niece': 598395, 'niece is': 562630, 'risk category': 723454, 'category is': 167188, 'of passing': 587802, 'passing on': 643384, 'member bbcyourquestions': 528033, 'am supermarket worker': 50453, 'worker my year': 1007412, 'my year old': 550661, 'year old niece': 1014857, 'old niece is': 598396, 'niece is in': 562631, 'is in high': 448776, 'high risk category': 395351, 'risk category is': 723457, 'category is it': 167189, 'it safe for': 460840, 'safe for me': 729678, 'me to go': 523754, 'to work are': 918687, 'work are supermarket': 1004835, 'are supermarket worker': 90656, 'supermarket worker at': 823992, 'worker at high': 1006464, 'risk of passing': 723768, 'of passing on': 587803, 'passing on covid': 643386, '19 to family': 11426, 'to family member': 905658, 'family member bbcyourquestions': 298027, 'yesterday grocery': 1015759, 'worker really': 1007664, 'high praise': 395221, 'praise pay': 668860, 'raise something': 695949, 'something they': 785091, 'wa there': 963477, 'there yesterday': 879387, 'yesterday everyone': 1015725, 'very kind': 955287, 'and patient': 68770, 'patient worker': 644320, 'supermarket yesterday grocery': 824170, 'yesterday grocery store': 1015760, 'store worker really': 811571, 'worker really need': 1007665, 'really need high': 702436, 'need high praise': 555010, 'high praise pay': 395222, 'praise pay raise': 668861, 'pay raise something': 645070, 'raise something they': 695950, 'something they are': 785092, 'they are some': 881412, 'of the true': 591559, 'true hero and': 933099, 'hero and when': 393934, 'and when wa': 75526, 'when wa there': 984408, 'wa there yesterday': 963483, 'there yesterday everyone': 879388, 'yesterday everyone wa': 1015726, 'everyone wa very': 287545, 'wa very kind': 963643, 'very kind and': 955288, 'kind and patient': 474808, 'and patient worker': 68777, 'patient worker and': 644321, 'worker and customer': 1006284, 'supermarket couple': 819844, 'ago told': 38523, 'queue that': 694080, 'whole nonsense': 990279, 'nonsense wa': 566751, 'wa hoax': 962316, 'hoax lady': 399726, 'lady agreed': 478731, 'agreed with': 38759, 'ha very': 372425, 'ill child': 416110, 'child by': 176028, 'that something': 846409, 'local supermarket couple': 498513, 'supermarket couple of': 819845, 'of day ago': 582375, 'day ago told': 227212, 'ago told everyone': 38525, 'told everyone in': 923550, 'the queue that': 865054, 'queue that the': 694082, 'the whole nonsense': 871499, 'whole nonsense wa': 990280, 'nonsense wa hoax': 566752, 'wa hoax lady': 962321, 'hoax lady agreed': 399727, 'lady agreed with': 478732, 'agreed with me': 38760, 'with me she': 999450, 'me she ha': 523444, 'she ha very': 756085, 'ha very ill': 372427, 'very ill child': 955240, 'ill child by': 416111, 'child by the': 176029, 'by the way': 154477, 'the way so': 871186, 'way so guess': 969874, 'so guess that': 777216, 'guess that something': 368042, 'wm': 1003273, 'petrides': 653656, 'making new': 511248, 'new 52': 558311, '52 week': 20257, 'week high': 976328, 'high it': 395145, 'high right': 395340, 'real demand': 701106, 'for wm': 327903, 'wm share': 1003276, 'share 2020': 754904, '2020 we': 14700, 'store wm': 811426, 'wm ha': 1003274, 'ha about': 369426, 'grocery sold': 365139, 'sold throughout': 781785, 'country petrides': 210957, 'petrides via': 653657, 'walmart is making': 965363, 'is making new': 449553, 'making new 52': 511249, 'new 52 week': 558312, '52 week high': 20258, 'week high it': 976330, 'high it at': 395146, 'it at it': 456621, 'at it all': 99313, 'it all time': 456380, 'time high right': 896932, 'high right so': 395341, 'right so there': 722276, 'there is real': 878611, 'is real demand': 451265, 'real demand for': 701107, 'demand for wm': 235518, 'for wm share': 327904, 'wm share 2020': 1003277, 'share 2020 we': 754905, '2020 we have': 14701, 'have run on': 382370, 'run on the': 727741, 'on the grocery': 604150, 'grocery store wm': 365964, 'store wm ha': 811427, 'wm ha about': 1003275, 'ha about 50': 369427, 'about 50 of': 24723, '50 of the': 19776, 'the grocery sold': 856825, 'grocery sold throughout': 365140, 'sold throughout the': 781786, 'throughout the country': 894967, 'the country petrides': 852128, 'country petrides via': 210958, 'store rightly': 809896, 'rightly limit': 722469, 'grateful just': 362290, 'selfish needy': 748179, 'needy asshole': 556671, 'terrified of': 838493, 'shopping without': 764449, 'without their': 1002984, 'their significant': 874731, 'significant other': 769484, 'get over': 347751, 'over themselves': 630802, 'themselves get': 876816, 'get fucking': 347119, 'fucking big': 339812, 'big weird': 130102, 'weird beyond': 977744, 'beyond stayhomesavelives': 129234, 'message from the': 529324, 'supermarket store rightly': 823011, 'store rightly limit': 809897, 'rightly limit the': 722470, 'same time am': 733346, 'time am grateful': 896240, 'am grateful just': 50104, 'grateful just want': 362291, 'just want the': 470227, 'want the selfish': 965962, 'the selfish needy': 866668, 'selfish needy asshole': 748180, 'needy asshole who': 556673, 'asshole who are': 96589, 'who are terrified': 988237, 'are terrified of': 90778, 'terrified of shopping': 838496, 'of shopping without': 589675, 'shopping without their': 764452, 'without their significant': 1002988, 'their significant other': 874732, 'significant other to': 769485, 'other to get': 621134, 'to get over': 906553, 'get over themselves': 347756, 'over themselves and': 630803, 'themselves and get': 876753, 'and get over': 63593, 'over themselves get': 630804, 'themselves get fucking': 876817, 'get fucking big': 347120, 'fucking big weird': 339813, 'big weird beyond': 130103, 'weird beyond stayhomesavelives': 977745, 'there discussion': 878321, 'market what': 517334, 'there discussion on': 878322, 'discussion on how': 245036, '19 will affect': 12077, 'will affect the': 992216, 'affect the real': 34250, 'estate market what': 282160, 'market what do': 517335, 'think the effect': 885631, 'the effect will': 854072, 'fiji': 305271, 'fijian': 305296, 'saulevu': 737387, 'jiko': 465478, 'kada': 470579, 'ga': 342679, 'kakana': 470683, 'viti': 959834, 'dou': 255965, 'qai': 691458, 'raica': 695591, 'kina': 474789, 'the fiji': 855176, 'fiji competition': 305274, 'commission fcc': 188817, 'fcc is': 300762, 'urging fijian': 948422, 'fijian not': 305303, 'happen sa': 377151, 'sa saulevu': 728930, 'saulevu jiko': 737388, 'jiko kada': 465479, 'kada ga': 470580, 'ga na': 342682, 'na kakana': 551293, 'kakana viti': 470684, 'viti maybe': 959835, 'all lowered': 43424, 'lowered the': 506081, 'price ya': 677680, 'ya dou': 1013978, 'dou na': 255966, 'na qai': 551315, 'qai raica': 691459, 'raica kina': 695592, 'kina na': 474790, 'na panic': 551307, 'they say the': 883280, 'say the fiji': 739277, 'the fiji competition': 855177, 'fiji competition and': 305275, 'consumer commission fcc': 196819, 'commission fcc is': 188818, 'fcc is urging': 300763, 'is urging fijian': 453603, 'urging fijian not': 948423, 'fijian not to': 305304, 'not to engage': 572147, 'engage in panic': 276859, '19 like it': 8328, 'like it wa': 490563, 'to happen sa': 907158, 'happen sa saulevu': 377152, 'sa saulevu jiko': 728931, 'saulevu jiko kada': 737389, 'jiko kada ga': 465480, 'kada ga na': 470581, 'ga na kakana': 342683, 'na kakana viti': 551294, 'kakana viti maybe': 470685, 'viti maybe you': 959837, 'maybe you all': 521891, 'you all lowered': 1016890, 'all lowered the': 43426, 'lowered the price': 506083, 'the price ya': 864442, 'price ya dou': 677681, 'ya dou na': 1013979, 'dou na qai': 255967, 'na qai raica': 551316, 'qai raica kina': 691460, 'raica kina na': 695593, 'kina na panic': 474791, 'na panic buying': 551308, 'anarchy': 57290, 'crtitcal': 219437, 'ger': 346065, 'nl': 563509, 'if want': 415250, 'avoid globally': 105124, 'globally social': 352398, 'unrest anarchy': 943334, 'anarchy then': 57291, 'should add': 765476, 'add couple': 31418, 'our bank': 622159, 'bank statement': 110203, 'statement and': 796159, 'price stable': 676598, 'stable this': 791963, 'fear away': 301055, 'from humanity': 335973, 'humanity and': 410700, 'them confidence': 875539, 'confidence to': 193964, 'to pas': 911483, 'pas this': 643159, 'this crtitcal': 887127, 'crtitcal time': 219438, 'time ger': 896823, 'ger nl': 346068, 'nl eu': 563510, 'if want to': 415254, 'want to avoid': 965991, 'to avoid globally': 900903, 'avoid globally social': 105125, 'globally social unrest': 352399, 'social unrest anarchy': 779996, 'unrest anarchy then': 943335, 'anarchy then they': 57292, 'then they should': 877659, 'they should add': 883351, 'should add couple': 765477, 'add couple of': 31419, 'couple of in': 211641, 'in our bank': 426262, 'our bank statement': 622162, 'bank statement and': 110204, 'statement and keep': 796160, 'and keep the': 65784, 'the price stable': 864419, 'price stable this': 676602, 'stable this will': 791965, 'this will take': 891448, 'will take the': 995082, 'take the fear': 832646, 'the fear away': 855033, 'fear away from': 301056, 'away from humanity': 105891, 'from humanity and': 335974, 'humanity and give': 410701, 'give them confidence': 350764, 'them confidence to': 875540, 'confidence to pas': 193965, 'to pas this': 911489, 'pas this crtitcal': 643160, 'this crtitcal time': 887128, 'crtitcal time ger': 219439, 'time ger nl': 896824, 'ger nl eu': 346069, 'vancouvercorona': 952362, 'canadalockdown': 160623, 'friend work': 333920, 'large grocery': 479677, 'in vancouvercorona': 430530, 'vancouvercorona this': 952363, 'this person': 889535, 'been at': 120700, 'with fever': 998412, 'fever coughing': 303669, 'coughing etc': 208681, 'tested can': 839280, 'you imagine': 1019289, 'with canadalockdown': 997526, 'canadalockdown yvr': 160626, 'yvr vancouver': 1027145, 'friend work in': 333921, 'work in large': 1005319, 'in large grocery': 424585, 'large grocery store': 479679, 'store in vancouvercorona': 808411, 'in vancouvercorona this': 430531, 'vancouvercorona this person': 952364, 'this person ha': 889536, 'person ha been': 652451, 'ha been at': 369726, 'been at home': 120703, 'home with fever': 402521, 'with fever coughing': 998415, 'fever coughing etc': 303670, 'coughing etc for': 208682, 'etc for four': 282547, 'for four day': 321686, 'four day and': 330597, 'day and ha': 227263, 'and ha not': 64079, 'not been tested': 568521, 'been tested can': 122150, 'tested can you': 839281, 'can you imagine': 160310, 'you imagine all': 1019290, 'the people they': 863510, 'people they have': 649820, 'they have come': 882303, 'have come in': 380030, 'contact with canadalockdown': 200268, 'with canadalockdown yvr': 997527, 'canadalockdown yvr vancouver': 160627, 'leveling': 487765, 'something very': 785128, 'very strange': 955586, 'strange is': 812402, 'number china': 576848, 'china say': 176926, 'case people': 165953, 'running scenario': 728053, 'scenario saying': 741285, 'saying 10m': 739542, '10m 100m': 2347, '100m dead': 2187, 'dead italy': 229154, 'italy is': 462854, 'in chaos': 421328, 'chaos but': 173005, 'but death': 145510, 'death are': 229972, 'are leveling': 87772, 'leveling out': 487766, 'out korea': 626479, 'korea china': 477461, 'china singapore': 176945, 'singapore are': 771105, 'week none': 976574, 'this add': 886196, 'something very strange': 785129, 'very strange is': 955587, 'strange is going': 812403, 'on with the': 605348, 'the number china': 861952, 'number china say': 576849, 'china say no': 176928, 'say no new': 738984, 'no new case': 564864, 'new case people': 558465, 'case people are': 165954, 'people are running': 647062, 'are running scenario': 89769, 'running scenario saying': 728054, 'scenario saying 10m': 741286, 'saying 10m 100m': 739543, '10m 100m dead': 2348, '100m dead italy': 2188, 'dead italy is': 229155, 'italy is in': 462859, 'is in chaos': 448754, 'in chaos but': 421329, 'chaos but death': 173006, 'but death are': 145511, 'death are leveling': 229975, 'are leveling out': 87773, 'leveling out korea': 487767, 'out korea china': 626480, 'korea china singapore': 477462, 'china singapore are': 176946, 'singapore are back': 771106, 'are back to': 84742, 'to normal in': 910650, 'normal in week': 567184, 'in week none': 430759, 'week none of': 976575, 'none of this': 566600, 'of this add': 591933, 'this add up': 886198, 'latest driver': 481302, 'nj around': 563411, 'around country': 93262, 'country still': 211083, 'seeing gas': 746303, 'drop amid': 260118, 'covid mar': 214190, 'mar 21': 514980, '21 10': 14950, '10 28': 1261, '28 am': 16378, 'am et': 50023, 'coronavirus latest driver': 206207, 'latest driver in': 481303, 'driver in nj': 259615, 'in nj around': 425898, 'nj around country': 563412, 'around country still': 93263, 'country still seeing': 211084, 'still seeing gas': 801155, 'seeing gas price': 746304, 'gas price drop': 343954, 'price drop amid': 673558, 'drop amid covid': 260120, 'amid covid mar': 52433, 'covid mar 21': 214191, 'mar 21 10': 514981, '21 10 28': 14951, '10 28 am': 1262, '28 am et': 16379, '018': 783, '233': 15457, 'diseasecontrol': 245283, 'people walk': 650120, 'walk by': 964759, 'london britain': 501040, 'britain march': 140422, '21 2020': 14953, '2020 britain': 14188, 'britain of': 140431, 'which 67': 985639, '67 800': 21452, '800 were': 22726, 'were confirmed': 979472, 'confirmed negative': 194174, 'negative and': 556737, 'and 018': 57337, '018 were': 784, 'confirmed positive': 194182, 'positive 233': 665242, '233 patient': 15460, 'patient tested': 644270, 'died britain': 241521, 'britain london': 140420, 'london diseasecontrol': 501055, 'people walk by': 650122, 'walk by almost': 964760, 'by almost empty': 151803, 'almost empty shelf': 46610, 'shelf of supermarket': 757370, 'in london britain': 424878, 'london britain march': 501041, 'britain march 21': 140424, 'march 21 2020': 515171, '21 2020 britain': 14955, '2020 britain of': 14189, 'britain of which': 140432, 'of which 67': 593097, 'which 67 800': 985640, '67 800 were': 21453, '800 were confirmed': 22727, 'were confirmed negative': 979473, 'confirmed negative and': 194175, 'negative and 018': 556738, 'and 018 were': 57338, '018 were confirmed': 785, 'were confirmed positive': 979474, 'confirmed positive 233': 194183, 'positive 233 patient': 665243, '233 patient tested': 15461, 'patient tested positive': 644271, 'the virus have': 870839, 'virus have died': 958265, 'have died britain': 380263, 'died britain london': 241522, 'britain london diseasecontrol': 140421, 'outage': 627918, 'internet outage': 441980, 'outage during': 627921, '19th will': 12546, 'will facilitate': 993396, 'facilitate the': 295274, 'urge government': 948189, 'government around': 359911, 'ensure free': 277947, 'free open': 332031, 'access during': 28110, 'internet outage during': 441981, 'outage during the': 627922, 'during the 19th': 263080, 'the 19th will': 847967, '19th will facilitate': 12547, 'will facilitate the': 993397, 'facilitate the spread': 295277, 'virus we urge': 959010, 'we urge government': 973598, 'urge government around': 948191, 'government around the': 359912, 'world to ensure': 1010080, 'to ensure free': 905161, 'ensure free open': 277949, 'free open and': 332032, 'open and secure': 612076, 'and secure internet': 71120, 'internet access during': 441896, 'access during this': 28111, 'during this global': 263289, 'this global pandemic': 887708, 'writingcommunity': 1012943, 'hugging': 410284, 'authorslife': 103845, 'writingcommunity today': 1012945, 'husband came': 411695, 'supermarket beaming': 819328, 'beaming hugging': 118274, 'hugging pack': 410292, 'paper victory': 641047, 'victory is': 956571, 'so sweet': 778326, 'sweet who': 830261, '2020 buying': 14207, 'buying single': 151034, 'single pack': 771357, 'paper would': 641111, 'bring so': 140068, 'much joy': 545027, 'joy and': 467499, 'and relief': 70198, 'relief toiletpaper': 709489, 'toiletpaper authorslife': 921770, 'writingcommunity today my': 1012946, 'my husband came': 548777, 'husband came home': 411696, 'came home from': 157006, 'the supermarket beaming': 868481, 'supermarket beaming hugging': 819329, 'beaming hugging pack': 118275, 'hugging pack of': 410293, 'toilet paper victory': 921514, 'paper victory is': 641048, 'victory is so': 956572, 'is so sweet': 452037, 'so sweet who': 778327, 'sweet who would': 830262, 'thought that in': 893232, 'that in 2020': 844445, 'in 2020 buying': 419826, '2020 buying single': 14208, 'buying single pack': 151035, 'single pack of': 771358, 'toilet paper would': 921534, 'paper would bring': 641112, 'would bring so': 1011697, 'bring so much': 140069, 'so much joy': 777788, 'much joy and': 545028, 'joy and relief': 467501, 'and relief toiletpaper': 70201, 'relief toiletpaper authorslife': 709490, 'scar': 740761, 'scab': 739862, 'growfearless': 367117, 'creativity in': 216210, 'quarantine our': 692416, 'of innovation': 585212, 'innovation consumer': 438863, 'technology share': 836360, 'brand response': 137993, 'between scar': 128883, 'scar and': 740764, 'and scab': 71022, 'scab of': 739864, 'behavior growfearless': 124049, 'creativity in quarantine': 216212, 'in quarantine our': 427188, 'quarantine our head': 692417, 'our head of': 623361, 'head of innovation': 385771, 'of innovation consumer': 585214, 'innovation consumer technology': 438864, 'consumer technology share': 199239, 'technology share the': 836361, 'share the evolution': 755246, 'evolution of brand': 288488, 'of brand response': 580828, 'brand response to': 137994, 'and the difference': 73324, 'difference between scar': 241816, 'between scar and': 128884, 'scar and scab': 740765, 'and scab of': 71023, 'scab of consumer': 739865, 'consumer behavior growfearless': 196480, 'trump admin': 933372, 'admin to': 32426, 'supply worker': 826135, 'worker step': 1007818, 'meet growing': 527496, 'are vital': 91491, 'vital great': 959692, 'people part': 649077, 'critical infrastructure': 218589, 'infrastructure show': 438219, 'job poultry': 466097, 'poultry worker': 667350, 'worker death': 1006726, 'death highlight': 230064, 'highlight spread': 395955, 'in meat': 425217, 'meat plant': 525688, 'the trump admin': 870061, 'trump admin to': 933374, 'admin to food': 32427, 'food supply worker': 317020, 'supply worker step': 826137, 'worker step up': 1007819, 'to meet growing': 910026, 'meet growing demand': 527498, 'growing demand you': 367170, 'you are vital': 1017283, 'are vital great': 91493, 'vital great service': 959693, 'great service to': 362987, 'service to people': 752987, 'to people part': 911636, 'people part of': 649078, 'part of critical': 642342, 'of critical infrastructure': 582205, 'critical infrastructure show': 218592, 'infrastructure show up': 438220, 'up and do': 944319, 'do your job': 250705, 'your job poultry': 1024536, 'job poultry worker': 466098, 'poultry worker death': 667351, 'worker death highlight': 1006727, 'death highlight spread': 230065, 'highlight spread of': 395956, 'of in meat': 585033, 'in meat plant': 425218, 'dewine': 240006, 'elitist': 271524, 'fyi snap': 342646, 'recipient are': 704522, 'now allowed': 573968, 'reduce community': 705798, 'community spread': 190109, '19 per': 9635, 'per gov': 650865, 'gov dewine': 359573, 'dewine don': 240007, 'all elitist': 42667, 'elitist people': 271525, 'people this': 649843, 'risk community': 723466, 'spread just': 790601, 'use food': 949213, 'fyi snap recipient': 342647, 'snap recipient are': 776109, 'recipient are now': 704523, 'are now allowed': 88519, 'now allowed to': 573970, 'allowed to use': 46252, 'to use online': 918053, 'shopping to pay': 764187, 'pay for grocery': 644879, 'for grocery to': 322054, 'to help reduce': 907605, 'help reduce community': 390423, 'reduce community spread': 705799, 'community spread of': 190112, 'covid 19 per': 213567, '19 per gov': 9637, 'per gov dewine': 650866, 'gov dewine don': 359574, 'dewine don get': 240008, 'don get all': 253535, 'get all elitist': 346519, 'all elitist people': 42668, 'elitist people this': 271526, 'people this is': 649845, 'is good thing': 448153, 'good thing people': 357850, 'thing people should': 884677, 'people should have': 649446, 'should have to': 766101, 'have to risk': 383285, 'to risk community': 913591, 'risk community spread': 723467, 'community spread just': 190110, 'spread just because': 790602, 'just because they': 468293, 'because they use': 119724, 'they use food': 883613, 'use food stamp': 949214, 'be furious': 114989, 'furious not': 341857, 'he expose': 384947, 'expose you': 292820, 'he also': 384726, 'also exposed': 48180, 'exposed his': 292853, 'now expose': 574649, 'expose more': 292791, 'will expose': 993383, 'expose nurse': 292793, 'provider garbage': 686724, 'garbage collector': 343517, 'collector supermarket': 186586, 'farmer etc': 299358, 'should be furious': 765632, 'be furious not': 114990, 'furious not only': 341858, 'only did he': 610332, 'did he expose': 240632, 'he expose you': 384948, 'expose you to': 292821, 'you to covid': 1021765, '19 he also': 7469, 'he also exposed': 384730, 'also exposed his': 48181, 'exposed his friend': 292854, 'his friend who': 397459, 'who will now': 989994, 'will now expose': 994299, 'now expose more': 574650, 'expose more people': 292792, 'people who will': 650359, 'who will expose': 989986, 'will expose nurse': 993385, 'expose nurse doctor': 292794, 'nurse doctor healthcare': 577297, 'doctor healthcare provider': 250952, 'healthcare provider garbage': 387250, 'provider garbage collector': 686725, 'garbage collector supermarket': 343525, 'collector supermarket worker': 186587, 'delivery driver farmer': 233906, 'driver farmer etc': 259552, 'craic': 214800, 'arguement': 92708, '30mins': 17483, 'mothersday is': 543236, 'no craic': 563926, 'craic when': 214801, 'two mam': 937026, 'mam it': 511914, 'just long': 469184, 'long arguement': 501336, 'arguement about': 92709, 'about which': 26921, 'of deserves': 582548, 'deserves the': 238181, 'and nobody': 67657, 'nobody win': 566088, 'win and': 995539, 'be fight': 114831, 'fight over': 304825, 'over who': 630930, 'and parent': 68709, 'escape to': 280317, 'virus infected': 958350, 'infected supermarket': 436641, 'for 30mins': 318815, 'mothersday is no': 543237, 'is no craic': 449918, 'no craic when': 563927, 'craic when it': 214802, 'when it two': 983655, 'it two mam': 461893, 'two mam it': 937027, 'mam it just': 511915, 'it just long': 459230, 'just long arguement': 469185, 'long arguement about': 501337, 'arguement about which': 92710, 'about which one': 26922, 'which one of': 986202, 'one of deserves': 606739, 'of deserves the': 582549, 'deserves the day': 238182, 'the day off': 852901, 'day off and': 228121, 'off and nobody': 593644, 'and nobody win': 67664, 'nobody win and': 566089, 'win and now': 995540, 'and now with': 67873, 'now with it': 576447, 'with it will': 999091, 'will be fight': 992459, 'be fight over': 114832, 'fight over who': 304834, 'over who get': 630931, 'who get to': 988777, 'get to stay': 348493, 'in and parent': 420382, 'and parent and': 68710, 'parent and who': 641577, 'and who get': 75585, 'get to escape': 348465, 'to escape to': 905251, 'escape to virus': 280320, 'to virus infected': 918198, 'virus infected supermarket': 958351, 'infected supermarket for': 436642, 'supermarket for 30mins': 820379, 'buyer this': 149775, 'aftermath of': 36653, 'going shop': 355442, 'shop trying': 760979, 'get toilet': 348512, 'paper 19': 639755, 'fuck all you': 339521, 'all you panic': 45550, 'panic buyer this': 637607, 'buyer this wa': 149777, 'wa the aftermath': 963440, 'the aftermath of': 848421, 'aftermath of going': 36657, 'of going shop': 584195, 'going shop to': 355443, 'shop to shop': 760954, 'to shop trying': 914497, 'shop trying to': 760980, 'to get toilet': 906626, 'get toilet paper': 348513, 'toilet paper 19': 921172, 'paper 19 toiletpaper': 639758, 'sadly there': 729364, 'are scammer': 89832, 'scammer trying': 740637, 'misinformation surrounding': 534075, 'take few': 832114, 'few min': 303911, 'min here': 532543, 'to arm': 900710, 'arm yourself': 92921, 'some helpful': 783040, 'helpful info': 391190, 'sadly there are': 729365, 'there are scammer': 878156, 'are scammer trying': 89835, 'scammer trying to': 740638, 'of fear and': 583453, 'fear and misinformation': 301035, 'and misinformation surrounding': 67063, 'misinformation surrounding covid': 534076, '19 take few': 11026, 'take few min': 832115, 'few min here': 303912, 'min here to': 532544, 'here to arm': 393705, 'to arm yourself': 900711, 'arm yourself with': 92922, 'with some helpful': 1000848, 'some helpful info': 783041, 'helpful info from': 391191, 'from the the': 337898, 'the the fda': 869381, 'toast': 919060, '19 toiletpaperapocalypse': 11497, 'toiletpaperapocalypse went': 922957, 'towel no': 927349, 'milk no': 531740, 'no heavy': 564415, 'heavy cream': 388626, 'cream damn': 215540, 'damn no': 225404, 'no toast': 565748, 'toast or': 919065, 'bread no': 138539, 'no flour': 564235, 'flour at': 311074, 'supermarket lot': 821406, 'rice noodle': 721084, 'noodle me': 566804, 'me packet': 523315, 'rice bag': 721012, 'of noodle': 587058, 'noodle female': 566794, 'female dog': 303502, 'dog panic': 252148, 'panic 10': 637238, '10 bag': 1329, 'covid 19 toiletpaperapocalypse': 213962, '19 toiletpaperapocalypse went': 11499, 'toiletpaperapocalypse went to': 922958, 'to supermarket no': 915816, 'supermarket no paper': 821615, 'no paper no': 565058, 'paper no paper': 640500, 'paper towel no': 641002, 'towel no milk': 927351, 'no milk no': 564773, 'milk no heavy': 531743, 'no heavy cream': 564416, 'heavy cream damn': 388627, 'cream damn no': 215541, 'damn no toast': 225405, 'no toast or': 565749, 'toast or bread': 919066, 'or bread no': 614580, 'bread no flour': 138541, 'no flour at': 564236, 'flour at least': 311075, 'least in supermarket': 484518, 'in supermarket lot': 428628, 'supermarket lot of': 821408, 'lot of rice': 504271, 'of rice noodle': 589100, 'rice noodle me': 721085, 'noodle me packet': 566805, 'me packet of': 523316, 'packet of rice': 633711, 'of rice bag': 589092, 'rice bag of': 721013, 'bag of noodle': 108358, 'of noodle female': 587059, 'noodle female dog': 566795, 'female dog panic': 303503, 'dog panic 10': 252149, 'panic 10 bag': 637239, '10 bag of': 1330, 'actively': 30296, 'in four': 423061, 'four american': 330581, 'are actively': 84203, 'actively avoiding': 30297, 'avoiding eating': 105447, 'restaurant crisis': 716407, 'crisis worsens': 218447, 'worsens via': 1011121, 'via restaurant': 956205, 'more than one': 540656, 'than one in': 840979, 'one in four': 606473, 'in four american': 423062, 'four american are': 330582, 'american are actively': 51793, 'are actively avoiding': 84204, 'actively avoiding eating': 30298, 'avoiding eating out': 105448, 'eating out in': 266272, 'out in restaurant': 626393, 'in restaurant crisis': 427431, 'restaurant crisis worsens': 716409, 'crisis worsens via': 218449, 'worsens via restaurant': 1011122, 'bible': 129430, 'loon': 503123, 'remember wherever': 710423, 're from': 698715, 'world it': 1009725, 'worse you': 1011062, 'american bible': 51838, 'bible loon': 129433, 'just remember wherever': 469610, 'remember wherever you': 710424, 'wherever you re': 985477, 'you re from': 1020628, 're from in': 698716, 'from in the': 336027, 'the world it': 871901, 'world it could': 1009726, 'could be much': 208899, 'be much worse': 116029, 'much worse you': 545479, 'worse you could': 1011063, 'could be an': 208841, 'be an american': 113594, 'an american bible': 55282, 'american bible loon': 51839, 'doin': 252241, 'tongue': 924326, 'who doin': 988643, 'doin dumb': 252242, 'dumb shit': 262113, 'shit like': 759164, 'like coughing': 490054, 'and licking': 66135, 'licking their': 488254, 'their nasty': 874033, 'nasty as': 552054, 'as tongue': 94819, 'tongue on': 924331, 'guess ll': 367999, 'll wait': 497091, 'guess who doin': 368095, 'who doin dumb': 988644, 'doin dumb shit': 252243, 'dumb shit like': 262114, 'shit like coughing': 759165, 'like coughing on': 490055, 'on food in': 600873, 'store and licking': 806281, 'and licking their': 66136, 'licking their nasty': 488256, 'their nasty as': 874034, 'nasty as tongue': 552055, 'as tongue on': 94820, 'tongue on product': 924332, 'product in store': 681298, 'in store just': 428424, 'store just guess': 808616, 'just guess ll': 468888, 'guess ll wait': 368005, 'slipping': 774059, '19 brings': 5446, 'brings country': 140236, 'standstill consumer': 793847, 'confidence continued': 193842, 'continued it': 201327, 'it drastic': 457702, 'drastic decline': 258397, 'decline slipping': 231398, 'slipping to': 774060, 'year read': 1014921, 'full economic': 340574, 'economic sentiment': 267268, 'sentiment index': 750952, 'index reading': 434234, 'covid 19 brings': 212731, '19 brings country': 5448, 'brings country and': 140237, 'global economy to': 351908, 'economy to standstill': 268299, 'to standstill consumer': 915177, 'standstill consumer confidence': 793848, 'consumer confidence continued': 196889, 'confidence continued it': 193843, 'continued it drastic': 201328, 'it drastic decline': 457703, 'drastic decline slipping': 258399, 'decline slipping to': 231399, 'slipping to it': 774061, 'it lowest point': 459483, 'point in over': 662523, 'in over year': 426382, 'over year read': 630958, 'year read the': 1014923, 'the full economic': 856005, 'full economic sentiment': 340576, 'economic sentiment index': 267269, 'sentiment index reading': 750957, 'medicating': 526613, 'morning equally': 541244, 'equally long': 279637, 'long for': 501417, 'for amp': 319257, 'amp bottle': 53464, 'bottle store': 136326, 'store south': 810268, 'african self': 35224, 'self medicating': 747816, 'medicating through': 526614, 'queue at 9am': 693881, 'this morning equally': 888955, 'morning equally long': 541245, 'equally long for': 279638, 'long for amp': 501418, 'for amp bottle': 319258, 'amp bottle store': 53465, 'bottle store south': 136327, 'store south african': 810269, 'south african self': 786677, 'african self medicating': 35225, 'self medicating through': 747817, 'enough food etc': 277394, 'food etc for': 314397, 'etc for everyone': 282544, '61': 21177, 'week catherine': 976073, 'catherine and': 167293, 'others will': 621797, 'have vital': 383519, 'vital food': 959682, 'food access': 313028, 'access via': 28304, 'online snap': 609383, 'snap purchasing': 776106, 'purchasing the': 689929, 'the 61': 848170, '61 year': 21192, 'old lung': 598336, 'lung cancer': 506785, 'cancer patient': 161269, 'patient is': 644191, 'home per': 401838, 'per she': 651013, 'threatening illness': 893809, 'illness if': 416370, 'if exposed': 414105, 'few week catherine': 304141, 'week catherine and': 976074, 'catherine and others': 167294, 'and others will': 68468, 'others will have': 621799, 'will have vital': 993682, 'have vital food': 383520, 'vital food access': 959683, 'food access via': 313029, 'access via online': 28305, 'via online snap': 956138, 'online snap purchasing': 609385, 'snap purchasing the': 776107, 'purchasing the 61': 689930, 'the 61 year': 848171, '61 year old': 21193, 'year old lung': 1014845, 'old lung cancer': 598337, 'lung cancer patient': 506788, 'cancer patient is': 161272, 'patient is staying': 644192, 'is staying at': 452249, 'at home per': 99078, 'home per she': 401839, 'per she ha': 651014, 'ha very high': 372426, 'very high risk': 955234, 'risk of life': 723760, 'of life threatening': 585835, 'life threatening illness': 489124, 'threatening illness if': 893811, 'illness if exposed': 416371, 'if exposed to': 414106, 'columbia': 186875, 'update unemployment': 947287, 'unemployment application': 941162, 'application in': 82468, 'in missouri': 425377, 'missouri are': 534420, 'soaring the': 779342, 'the mo': 860703, 'mo attorney': 534852, 'general ha': 345344, 'ha ordered': 371456, 'ordered man': 618864, 'man to': 512275, 'selling n95': 749356, 'price drive': 673549, 'thru test': 895223, 'test site': 839173, 'site in': 771952, 'in columbia': 421572, 'columbia mo': 186880, 'mo tested': 534874, 'tested more': 839321, 'live update unemployment': 496103, 'update unemployment application': 947288, 'unemployment application in': 941163, 'application in missouri': 82469, 'in missouri are': 425378, 'missouri are soaring': 534421, 'are soaring the': 90232, 'soaring the mo': 779344, 'the mo attorney': 860704, 'mo attorney general': 534853, 'attorney general ha': 102640, 'general ha ordered': 345345, 'ha ordered man': 371458, 'ordered man to': 618865, 'man to stop': 512276, 'to stop selling': 915568, 'stop selling n95': 804991, 'selling n95 mask': 749357, 'mask at inflated': 518423, 'inflated price drive': 437038, 'price drive thru': 673550, 'drive thru test': 259206, 'thru test site': 895224, 'test site in': 839174, 'site in columbia': 771954, 'in columbia mo': 421573, 'columbia mo tested': 186881, 'mo tested more': 534875, 'tested more than': 839322, 'than 00 people': 840137, '00 people in': 411, 'people in one': 648409, 'knowingly': 477159, 'cincinnati': 178513, 'they arrested': 881491, 'arrested woman': 93882, 'who told': 989799, 'them she': 876272, 'she recently': 756286, 'recently tested': 704163, 'and accused': 57607, 'accused her': 28938, 'of knowingly': 585670, 'knowingly exposing': 477161, 'exposing several': 292932, 'several people': 753918, 'at cincinnati': 98268, 'cincinnati area': 178518, 'area supermarket': 92210, 'police said they': 663186, 'said they arrested': 731471, 'they arrested woman': 881492, 'arrested woman who': 93883, 'woman who told': 1003685, 'who told them': 989801, 'told them she': 923716, 'them she recently': 876274, 'she recently tested': 756288, 'recently tested positive': 704164, '19 and accused': 4981, 'and accused her': 57608, 'accused her of': 28939, 'her of knowingly': 392240, 'of knowingly exposing': 585671, 'knowingly exposing several': 477162, 'exposing several people': 292933, 'several people to': 753919, 'people to the': 649955, 'to the highly': 916776, 'highly contagious virus': 396051, 'contagious virus at': 200454, 'virus at cincinnati': 957973, 'at cincinnati area': 98269, 'cincinnati area supermarket': 178519, 'duster': 263470, 'suffocation': 817411, 'meanwhile scene': 525028, 'scene from': 741324, 'from socialdistancing': 337332, 'socialdistancing do': 780321, 'have scarf': 382403, 'scarf or': 741081, 'or dog': 615033, 'dog bandana': 252045, 'bandana where': 109390, 'so wore': 778801, 'wore duster': 1004650, 'duster held': 263471, 'held in': 388901, 'by hair': 152739, 'hair tie': 374013, 'tie to': 895747, 'store thought': 810714, 'would die': 1011757, 'of suffocation': 590380, 'suffocation before': 817412, 'meanwhile scene from': 525029, 'scene from socialdistancing': 741326, 'from socialdistancing do': 337333, 'socialdistancing do not': 780322, 'not have scarf': 569867, 'have scarf or': 382404, 'scarf or dog': 741082, 'or dog bandana': 615034, 'dog bandana where': 252046, 'bandana where am': 109391, 'where am so': 984727, 'am so wore': 50415, 'so wore duster': 778804, 'wore duster held': 1004651, 'duster held in': 263472, 'held in place': 388903, 'place by hair': 657371, 'by hair tie': 152741, 'hair tie to': 374015, 'tie to go': 895748, 'grocery store thought': 365860, 'store thought would': 810717, 'thought would die': 893325, 'would die of': 1011758, 'die of suffocation': 241430, 'of suffocation before': 590381, 'suffocation before the': 817413, 'virus could kill': 958094, 'could kill me': 209366, 'that simple': 846316, 'simple trip': 770129, 'be terrifying': 117550, 'terrifying life': 838532, 'threatening experience': 893800, 'experience pandemic': 291454, 'pandemic socialdistancing': 636500, 'thought that simple': 893234, 'that simple trip': 846317, 'simple trip to': 770130, 'would be terrifying': 1011657, 'be terrifying life': 117551, 'terrifying life threatening': 838533, 'life threatening experience': 489122, 'threatening experience pandemic': 893801, 'experience pandemic socialdistancing': 291455, 'overwhelmingly': 631772, 'the incredible': 858092, 'incredible business': 433822, 'business community': 143550, 'community for': 189857, 'an overwhelmingly': 56767, 'overwhelmingly positive': 631773, 'positive response': 665421, 'american company': 51874, 'company wanting': 191283, 'through in': 894520, 'in kind': 424510, 'kind donation': 474835, 'donation or': 254658, 'or contract': 614814, 'contract at': 201636, 'at cut': 98395, 'cut rate': 223515, 'rate price': 697345, 'to the incredible': 916805, 'the incredible business': 858093, 'incredible business community': 433823, 'business community for': 143552, 'community for it': 189858, 'for it support': 322738, 'it support of': 461382, 'of the american': 590788, 'american people during': 52122, 'pandemic we ve': 636954, 've had an': 953216, 'had an overwhelmingly': 372845, 'an overwhelmingly positive': 56768, 'overwhelmingly positive response': 631774, 'positive response from': 665422, 'response from american': 715693, 'from american company': 334464, 'american company wanting': 51880, 'company wanting to': 191284, 'wanting to help': 966305, 'to help through': 907653, 'help through in': 390757, 'through in kind': 894521, 'in kind donation': 424511, 'kind donation or': 474836, 'donation or contract': 254659, 'or contract at': 614815, 'contract at cut': 201637, 'at cut rate': 98397, 'cut rate price': 223519, 'myquarantineinsixwords': 550802, 'survivor40': 829408, 'bleach2020': 132534, 'facemask n95': 295090, 'n95 myquarantineinsixwords': 551210, 'myquarantineinsixwords quarantine': 550803, 'quarantine chinesecoronavirus': 692082, 'chinesecoronavirus socialdistancing': 177409, 'socialdistancing survivor40': 780776, 'survivor40 bleach2020': 829409, 'bleach2020 face': 132535, 'stock soon': 802871, 'soon ton': 785877, 'of stuff': 590325, 'stuff follow': 815064, 'detail best': 239167, 'facemask n95 myquarantineinsixwords': 295091, 'n95 myquarantineinsixwords quarantine': 551211, 'myquarantineinsixwords quarantine chinesecoronavirus': 550804, 'quarantine chinesecoronavirus socialdistancing': 692083, 'chinesecoronavirus socialdistancing survivor40': 177410, 'socialdistancing survivor40 bleach2020': 780777, 'survivor40 bleach2020 face': 829410, 'bleach2020 face mask': 132536, 'sanitizer in stock': 735157, 'in stock soon': 428329, 'stock soon ton': 802873, 'soon ton of': 785878, 'ton of stuff': 924286, 'of stuff follow': 590328, 'stuff follow for': 815065, 'follow for detail': 312383, 'for detail best': 320677, 'detail best price': 239168, 'best price available': 127863, 'all wanted': 45392, 'do wa': 250447, 'wa kill': 962489, 'kill myself': 474456, 'myself happy': 550871, 'happy time': 377703, 'today and all': 919193, 'and all wanted': 57904, 'all wanted to': 45393, 'to do wa': 904581, 'do wa kill': 250450, 'wa kill myself': 962490, 'kill myself happy': 474457, 'myself happy time': 550872, 'youdrugstore': 1022523, 'onlinepharmacy': 609854, 'canadianpharmacy': 160785, 'safe indoors': 729774, 'indoors by': 435387, 'having your': 384413, 'family medication': 298015, 'delivered we': 233447, 'offer low': 594693, 'top brand': 925541, 'brand name': 137920, 'and generic': 63520, 'generic product': 345694, 'product youdrugstore': 681883, 'youdrugstore onlinepharmacy': 1022524, 'onlinepharmacy canadianpharmacy': 609855, 'canadianpharmacy pandemic': 160786, 'stay safe indoors': 797246, 'safe indoors by': 729775, 'indoors by having': 435388, 'by having your': 152770, 'having your family': 384415, 'your family medication': 1023792, 'family medication delivered': 298016, 'medication delivered we': 526640, 'delivered we offer': 233449, 'we offer low': 972626, 'offer low price': 594694, 'low price on': 505529, 'price on top': 675730, 'on top brand': 604807, 'top brand name': 925542, 'brand name and': 137921, 'name and generic': 551607, 'and generic product': 63521, 'generic product youdrugstore': 345695, 'product youdrugstore onlinepharmacy': 681884, 'youdrugstore onlinepharmacy canadianpharmacy': 1022525, 'onlinepharmacy canadianpharmacy pandemic': 609856, 'is reducing': 451379, 'reducing it': 706298, '2020 capital': 14213, 'percent and': 651110, 'lowering cash': 506097, 'cash operating': 166287, 'operating expense': 613069, 'expense by': 291182, 'by 15': 151543, '15 percent': 3820, 'low commodity': 505190, 'price resulting': 676201, 'from oversupply': 336823, 'oversupply and': 631573, 'demand weakness': 236463, 'weakness from': 974131, 'said today it': 731523, 'today it is': 919741, 'it is reducing': 459059, 'is reducing it': 451381, 'reducing it 2020': 706299, 'it 2020 capital': 456196, '2020 capital spending': 14215, 'capital spending by': 162686, 'spending by 30': 788769, 'by 30 percent': 151632, '30 percent and': 17190, 'percent and lowering': 651112, 'and lowering cash': 66465, 'lowering cash operating': 506098, 'cash operating expense': 166289, 'operating expense by': 613070, 'expense by 15': 291183, 'by 15 percent': 151547, '15 percent in': 3821, 'percent in response': 651134, 'response to low': 715865, 'to low commodity': 909481, 'low commodity price': 505192, 'commodity price resulting': 189284, 'price resulting from': 676202, 'resulting from oversupply': 717694, 'from oversupply and': 336824, 'oversupply and demand': 631576, 'and demand weakness': 61177, 'demand weakness from': 236464, 'weakness from the': 974132, 'authorized': 103828, 'consumer medical': 198112, 'selling expensive': 749228, 'expensive at': 291223, 'home testing': 402204, 'kit the': 475645, 'fda ha': 300866, 'ha stated': 372054, 'stated that': 796140, 'not authorized': 568288, 'authorized any': 103829, 'any test': 79947, 'testing yourself': 839693, 'yourself at': 1026534, 'to consumer medical': 903316, 'consumer medical company': 198113, 'medical company are': 526100, 'company are trying': 190459, 'capitalize on the': 162840, 'on the by': 604006, 'the by selling': 850247, 'by selling expensive': 153925, 'selling expensive at': 749229, 'expensive at home': 291225, 'at home testing': 99135, 'home testing kit': 402206, 'testing kit the': 839547, 'kit the fda': 475647, 'the fda ha': 855018, 'fda ha stated': 300871, 'ha stated that': 372055, 'stated that it': 796142, 'it ha not': 458403, 'ha not authorized': 371359, 'not authorized any': 568289, 'authorized any test': 103830, 'any test that': 79948, 'test that is': 839195, 'that is available': 844558, 'available to purchase': 104655, 'to purchase for': 912529, 'purchase for testing': 689458, 'for testing yourself': 326239, 'testing yourself at': 839694, 'yourself at home': 1026536, 'bourbon': 136895, 'up hour': 945113, 'hour before': 405458, 'paper hard': 640256, 'hard pas': 377991, 'can walk': 160139, 'walk right': 964869, 'get bourbon': 346703, 'bourbon some': 136900, 'clue how': 184540, 'quarantine guess': 692235, 'guess enjoy': 367972, 'enjoy that': 277182, 'have to line': 383240, 'to line up': 909318, 'line up hour': 493524, 'up hour before': 945114, 'hour before the': 405462, 'before the grocery': 123168, 'store open to': 809266, 'open to get': 612596, 'toilet paper hard': 921301, 'paper hard pas': 640257, 'hard pas but': 377992, 'pas but can': 643089, 'but can walk': 145366, 'can walk right': 160145, 'walk right into': 964870, 'right into the': 721966, 'into the liquor': 443141, 'liquor store to': 494217, 'to get bourbon': 906428, 'get bourbon some': 346704, 'bourbon some people': 136901, 'people have no': 648185, 'no clue how': 563833, 'clue how to': 184543, 'how to self': 409078, 'self quarantine guess': 747858, 'quarantine guess enjoy': 692236, 'guess enjoy that': 367973, 'enjoy that toilet': 277183, 'all make': 43437, 'outbreak by': 628071, 'checking on': 174832, 'on elderly': 600532, 'vulnerable neighbour': 961051, 'neighbour donating': 557198, 'bank church': 109726, 'church and': 178330, 'leaving that': 485144, 'that loaf': 844917, 'of bread': 580833, 'bread you': 138649, 'you dont': 1018343, 'dont need': 255256, 'for someone': 325777, 'else bekind': 271641, 'bekind stockpiling': 126114, 'can all make': 157428, 'all make difference': 43438, '19 outbreak by': 9091, 'outbreak by checking': 628072, 'by checking on': 152115, 'checking on elderly': 174833, 'on elderly vulnerable': 600533, 'elderly vulnerable neighbour': 270932, 'vulnerable neighbour donating': 961052, 'neighbour donating to': 557199, 'food bank church': 313538, 'bank church and': 109727, 'church and leaving': 178332, 'and leaving that': 66071, 'leaving that loaf': 485145, 'that loaf of': 844918, 'loaf of bread': 497365, 'of bread you': 580853, 'bread you dont': 138651, 'you dont need': 1018347, 'dont need in': 255258, 'supermarket for someone': 820419, 'for someone else': 325778, 'someone else bekind': 784445, 'else bekind stockpiling': 271642, 'frazzled': 331496, 'morrissons': 541793, 'would just': 1011970, 'retail who': 718852, 'be frazzled': 114948, 'frazzled by': 331497, 'by stupid': 154144, 'stupid people': 815438, 'are appreciated': 84601, 'appreciated tesco': 82838, 'tesco morrissons': 838746, 'morrissons sainsbury': 541794, 'sainsbury lidl': 731693, 'lidl and': 488279, 'and aldi': 57841, 'aldi amongst': 41249, 'amongst others': 53136, 'others people': 621577, 'take more': 832338, 'need normally': 555305, 'would just like': 1011972, 'just like to': 469158, 'like to thank': 491629, 'thank everyone working': 841562, 'everyone working in': 287635, 'in retail who': 427474, 'retail who must': 718855, 'who must be': 989301, 'must be frazzled': 546507, 'be frazzled by': 114949, 'frazzled by stupid': 331498, 'by stupid people': 154145, 'stupid people stock': 815442, 'people stock piling': 649617, 'piling food and': 656587, 'and essential you': 62271, 'essential you are': 281875, 'you are appreciated': 1017061, 'are appreciated tesco': 84602, 'appreciated tesco morrissons': 82840, 'tesco morrissons sainsbury': 838747, 'morrissons sainsbury lidl': 541795, 'sainsbury lidl and': 731694, 'lidl and aldi': 488280, 'and aldi amongst': 57843, 'aldi amongst others': 41250, 'amongst others people': 53138, 'others people please': 621579, 'people please don': 649131, 'please don take': 659924, 'don take more': 253952, 'take more than': 832341, 'than you need': 841495, 'you need normally': 1020020, 'took le': 925269, 'than wk': 841466, 'wk for': 1003208, 'worker 1st': 1006187, 'responder truck': 715541, 'driver amp': 259398, 'employee become': 273671, 'important in': 418831, 'america than': 51690, 'than nba': 840924, 'nba player': 553208, 'player actor': 659296, 'actor amp': 30559, 'influencers 19': 437337, 'took le than': 925270, 'le than wk': 483194, 'than wk for': 841467, 'wk for healthcare': 1003209, 'healthcare worker 1st': 387340, 'worker 1st responder': 1006189, '1st responder truck': 12801, 'responder truck driver': 715542, 'truck driver amp': 932763, 'driver amp grocery': 259400, 'amp grocery store': 53891, 'store employee become': 807462, 'employee become more': 273672, 'more important in': 539491, 'important in america': 418832, 'in america than': 420236, 'america than nba': 51691, 'than nba player': 840925, 'nba player actor': 553209, 'player actor amp': 659297, 'actor amp social': 30560, 'amp social medium': 54526, 'medium influencers 19': 527146, 'month panicked': 537949, 'have caused': 379916, 'now independent': 575036, 'grocer serving': 364162, 'serving low': 753190, 'income bay': 432294, 'bay area': 112906, 'area area': 91956, 'area say': 92180, 'with staple': 1000941, 'since last month': 770692, 'last month panicked': 480338, 'month panicked shopper': 537950, 'shopper have caused': 761540, 'have caused panic': 379919, 'caused panic and': 167932, 'panic and now': 637325, 'and now independent': 67845, 'now independent grocer': 575037, 'independent grocer serving': 434111, 'grocer serving low': 364163, 'serving low income': 753191, 'low income bay': 505343, 'income bay area': 432295, 'bay area area': 112908, 'area area say': 91957, 'area say they': 92181, 'say they cannot': 739337, 'they cannot stock': 881717, 'cannot stock their': 162131, 'stock their store': 802952, 'their store with': 874871, 'store with staple': 811404, 'with staple food': 1000942, 'staple food item': 793935, 'food item in': 315212, 'item in high': 463346, '19 russian': 10276, 'russian president': 728659, 'president vladimir': 670963, 'putin revoke': 691044, 'mask video': 519483, '19 russian president': 10277, 'russian president vladimir': 728660, 'president vladimir putin': 670964, 'vladimir putin revoke': 959862, 'putin revoke license': 691045, 'license of company': 488149, 'of company for': 581606, 'price of face': 675450, 'face mask video': 294605, 'hoc': 399794, 'compiling': 191829, 'proposes': 684551, 'averting': 104930, 'incorporating': 432621, 'senate ad': 749686, 'ad hoc': 31116, 'hoc committee': 399795, 'committee led': 189077, 'by sen': 153936, 'sen is': 749669, 'is compiling': 446689, 'compiling report': 191834, 'that proposes': 845878, 'proposes rent': 684556, 'rent waiver': 711205, 'waiver slashing': 964554, 'slashing of': 773669, 'price protecting': 676018, 'protecting healthcare': 685198, 'worker averting': 1006486, 'averting job': 104931, 'loss etc': 503666, 'etc while': 282876, 'while also': 986588, 'also incorporating': 48406, 'incorporating public': 432624, 'sector view': 744383, 'senate ad hoc': 749687, 'ad hoc committee': 31117, 'hoc committee led': 399796, 'committee led by': 189078, 'led by sen': 485223, 'by sen is': 153937, 'sen is compiling': 749670, 'is compiling report': 446690, 'compiling report that': 191835, 'report that proposes': 712327, 'that proposes rent': 845879, 'proposes rent waiver': 684557, 'rent waiver slashing': 711206, 'waiver slashing of': 964555, 'slashing of food': 773670, 'of food price': 583754, 'food price protecting': 315963, 'price protecting healthcare': 676019, 'protecting healthcare worker': 685199, 'healthcare worker averting': 387346, 'worker averting job': 1006487, 'averting job loss': 104932, 'job loss etc': 465972, 'loss etc while': 503667, 'etc while also': 282877, 'while also incorporating': 986591, 'also incorporating public': 48407, 'incorporating public and': 432625, 'public and private': 687853, 'private sector view': 678982, 'sector view on': 744384, 'view on how': 957136, 'how to mitigate': 409047, 'antimalarial': 78523, '250mg': 16047, '500mg': 20097, 'company increased': 190778, 'of chloroquine': 581385, 'chloroquine an': 177586, 'an antimalarial': 55336, 'antimalarial which': 78528, 'tested against': 839259, 'on jan': 601718, 'jan 23': 464459, '23 the': 15433, 'rose 98': 726046, '98 to': 23735, 'to 66': 899803, '66 per': 21424, 'per 250mg': 650675, '250mg pill': 16048, 'pill and': 656647, '19 88': 4767, '88 per': 23058, 'per 500mg': 650679, '500mg pill': 20098, 'pharmaceutical company increased': 654068, 'company increased the': 190779, 'price of chloroquine': 675423, 'of chloroquine an': 581387, 'chloroquine an antimalarial': 177587, 'an antimalarial which': 55337, 'antimalarial which is': 78529, 'which is one': 986037, 'of the drug': 590967, 'the drug that': 853740, 'drug that is': 261109, 'that is being': 844560, 'is being tested': 446117, 'being tested against': 125904, 'tested against covid': 839260, '19 on jan': 8952, 'on jan 23': 601719, 'jan 23 the': 464460, '23 the drug': 15435, 'the drug price': 853737, 'drug price rose': 261053, 'price rose 98': 676264, 'rose 98 to': 726047, '98 to 66': 23736, 'to 66 per': 899804, '66 per 250mg': 21425, 'per 250mg pill': 650676, '250mg pill and': 16049, 'pill and 19': 656648, 'and 19 88': 57390, '19 88 per': 4768, '88 per 500mg': 23059, 'per 500mg pill': 650680, 'slagging': 773475, 'three middle': 893984, 'aged people': 37954, 'with packed': 1000059, 'packed trolley': 633657, 'trolley in': 932430, 'supermarket slagging': 822711, 'slagging off': 773476, 'off people': 594060, 'pub hypocrisy': 687712, 'hypocrisy panicbuying': 412402, 'three middle aged': 893985, 'middle aged people': 530618, 'aged people with': 37955, 'people with packed': 650468, 'with packed trolley': 1000060, 'packed trolley in': 633658, 'trolley in the': 932434, 'the supermarket slagging': 868807, 'supermarket slagging off': 822712, 'slagging off people': 773477, 'off people going': 594061, 'people going to': 648103, 'the pub hypocrisy': 864770, 'pub hypocrisy panicbuying': 687713, 'keepyourlocalpubalive': 472686, 'pubsclosed': 688799, 'isolation forget': 455276, 'forget going': 329256, 'your beer': 1022927, 'beer etc': 122456, 'etc go': 282561, 'pub take': 687773, 'take some': 832597, 'some empty': 782745, 'empty bottle': 274807, 'bottle and': 136178, 'what stock': 982258, 'got keepyourlocalpubalive': 358661, 'keepyourlocalpubalive pubsclosed': 472687, 'of you not': 593405, 'you not in': 1020123, 'not in isolation': 570095, 'in isolation forget': 424196, 'isolation forget going': 455277, 'forget going to': 329257, 'to the big': 916518, 'big supermarket for': 130030, 'supermarket for your': 820433, 'for your beer': 328121, 'your beer etc': 1022928, 'beer etc go': 122457, 'etc go to': 282562, 'go to your': 354386, 'your local pub': 1024713, 'local pub take': 498309, 'pub take some': 687774, 'take some empty': 832599, 'some empty bottle': 782746, 'empty bottle and': 274808, 'bottle and buy': 136179, 'and buy what': 59357, 'buy what stock': 149456, 'what stock they': 982259, 'stock they ve': 802972, 'they ve got': 883654, 've got keepyourlocalpubalive': 953182, 'got keepyourlocalpubalive pubsclosed': 358662, 'pack available': 633023, 'for collection': 320150, 'collection in': 186437, 'in range': 427249, 'price our': 675803, 'our takeout': 625075, 'takeout selection': 833185, 'selection is': 747521, 'with load': 999272, 'spirit and': 789449, 'and non': 67667, 'non alcoholic': 566299, 'alcoholic option': 41216, 'have our': 381843, 'our tap': 625079, 'tap available': 834316, 'for takeout': 326131, 'takeout come': 833142, 'come support': 187517, 're still open': 699599, 'open we have': 612651, 'we have pack': 971891, 'have pack available': 381863, 'pack available for': 633024, 'available for collection': 104361, 'for collection in': 320151, 'collection in range': 186438, 'in range of': 427250, 'of price our': 588414, 'price our takeout': 675806, 'our takeout selection': 625076, 'takeout selection is': 833186, 'selection is still': 747522, 'is still available': 452264, 'still available with': 800229, 'available with load': 104705, 'with load of': 999273, 'load of beer': 497258, 'of beer wine': 580624, 'wine spirit and': 995899, 'spirit and non': 789450, 'and non alcoholic': 67668, 'non alcoholic option': 566300, 'alcoholic option we': 41217, 'option we also': 614142, 'we also have': 970399, 'also have our': 48334, 'have our tap': 381850, 'our tap available': 625080, 'tap available for': 834317, 'available for takeout': 104382, 'for takeout come': 326132, 'takeout come support': 833143, 'nallan': 551570, 'suresh': 827965, 'expect at': 290605, 'at in': 99270, 'ahead expert': 39151, 'expert nallan': 291887, 'nallan suresh': 551571, 'suresh talk': 827968, 'grocery supply': 366008, 'chain appear': 170485, 'be reacting': 116689, 'reacting fast': 700170, 'increasing upstream': 433732, 'upstream production': 947888, 'production volume': 682272, 'to expect at': 905442, 'expect at in': 290606, 'at in the': 99276, 'week ahead expert': 975871, 'ahead expert nallan': 39152, 'expert nallan suresh': 291888, 'nallan suresh talk': 551572, 'suresh talk about': 827969, 'talk about supply': 833759, 'about supply chain': 26293, 'chain and covid': 170458, '19 grocery supply': 7292, 'grocery supply chain': 366009, 'supply chain appear': 824904, 'chain appear to': 170486, 'to be reacting': 901483, 'be reacting fast': 116690, 'reacting fast and': 700171, 'fast and increasing': 299914, 'and increasing upstream': 65133, 'increasing upstream production': 433733, 'upstream production volume': 947889, 'production volume and': 682273, 'volume and capacity': 960117, 'resonating': 714664, 'adivasi': 32261, 'saira': 731830, 'hooghly': 403336, 'fightcovid': 304981, 'amp ration': 54363, 'ration for': 697681, 'is resonating': 451465, 'resonating across': 714665, 'country adivasi': 210407, 'adivasi agricultural': 32262, 'agricultural labourer': 38893, 'labourer in': 478546, 'in saira': 427638, 'saira village': 731831, 'village hooghly': 957348, 'hooghly west': 403337, 'bengal with': 127207, 'with poster': 1000266, 'poster demanding': 666604, 'demanding food': 236585, 'amp wage': 54793, 'wage to': 963969, 'fight 19': 304594, '19 fightcovid': 6991, 'for food amp': 321548, 'food amp ration': 313146, 'amp ration for': 54364, 'ration for all': 697684, 'for all is': 319139, 'all is resonating': 43252, 'is resonating across': 451466, 'resonating across the': 714666, 'the country adivasi': 852041, 'country adivasi agricultural': 210408, 'adivasi agricultural labourer': 32263, 'agricultural labourer in': 38894, 'labourer in saira': 478547, 'in saira village': 427639, 'saira village hooghly': 731832, 'village hooghly west': 957349, 'hooghly west bengal': 403338, 'west bengal with': 980470, 'bengal with poster': 127208, 'with poster demanding': 1000267, 'poster demanding food': 666605, 'demanding food ration': 236586, 'food ration amp': 316115, 'ration amp wage': 697630, 'amp wage to': 54794, 'wage to fight': 963973, 'to fight 19': 905772, 'fight 19 fightcovid': 304596, 'compounded': 192599, 'phenomenon': 654666, 'is compounded': 446716, 'compounded by': 192600, 'stock effect': 802076, 'effect phenomenon': 269104, 'phenomenon which': 654671, 'which suggests': 986350, 'suggests that': 817713, 'when consumer': 983276, 'of specific': 589972, 'specific product': 788240, 'hand they': 375837, 'in higher': 423690, 'volume than': 960169, 'under usual': 940371, 'usual circumstance': 950900, 'demand is compounded': 235718, 'is compounded by': 446717, 'compounded by the': 192602, 'by the stock': 154447, 'the stock effect': 867908, 'stock effect phenomenon': 802077, 'effect phenomenon which': 269105, 'phenomenon which suggests': 654672, 'which suggests that': 986351, 'suggests that when': 817717, 'that when consumer': 847481, 'when consumer have': 983279, 'consumer have more': 197711, 'have more of': 381502, 'more of specific': 539881, 'of specific product': 589973, 'specific product on': 788242, 'product on hand': 681467, 'on hand they': 601238, 'hand they ll': 375839, 'll use the': 497089, 'use the good': 949669, 'good in higher': 357245, 'in higher volume': 423692, 'higher volume than': 395791, 'volume than under': 960170, 'than under usual': 841379, 'under usual circumstance': 940372, 'brawling': 138321, 'vinegar': 957433, 'shoppingwars': 764528, 'over worked': 630950, 'worked run': 1006140, 'run off': 727728, 'off their': 594284, 'their foot': 873364, 'foot it': 318398, 'have this': 383097, 'with mass': 999418, 'mass brawling': 519748, 'brawling which': 138322, 'which started': 986336, 'started over': 794797, 'over white': 630928, 'white vinegar': 987915, 'vinegar well': 957438, 'well street': 978616, 'street tesco': 813136, 'tesco metro': 838741, 'metro in': 529922, 'in hackney': 423499, 'hackney london': 372790, 'london shoppingwars': 501173, 'shoppingwars london': 764529, 'staff are over': 792201, 'are over worked': 88913, 'over worked run': 630951, 'worked run off': 1006141, 'run off their': 727730, 'off their foot': 594288, 'their foot it': 873365, 'foot it is': 318400, 'is with the': 454016, 'coronavirus panic shopping': 206525, 'panic shopping now': 638580, 'shopping now they': 763368, 'now they have': 576110, 'they have this': 882392, 'have this to': 383109, 'this to deal': 890732, 'deal with mass': 229559, 'with mass brawling': 999419, 'mass brawling which': 519749, 'brawling which started': 138323, 'which started over': 986337, 'started over white': 794798, 'over white vinegar': 630929, 'white vinegar well': 987916, 'vinegar well street': 957439, 'well street tesco': 978617, 'street tesco metro': 813137, 'tesco metro in': 838742, 'metro in hackney': 529923, 'in hackney london': 423500, 'hackney london shoppingwars': 372791, 'london shoppingwars london': 501174, 'privileged': 679044, 'least privileged': 484607, 'privileged enough': 679047, 'these place': 880488, 'place can': 657376, 'can stop': 159814, 'stop thinking': 805181, 'without easy': 1002605, 'easy access': 265641, 'to transport': 917712, 'are le': 87732, 'le able': 482821, 'multiple shop': 545788, 'shop please': 760668, 'start thinking': 794563, 'and stoppanicbuying': 72496, 'at least privileged': 99536, 'least privileged enough': 484608, 'privileged enough to': 679048, 'enough to drive': 277700, 'drive to all': 259216, 'to all these': 900293, 'all these place': 45048, 'these place can': 880489, 'place can stop': 657378, 'can stop thinking': 159827, 'stop thinking about': 805182, 'thinking about those': 885863, 'about those without': 26686, 'those without easy': 892732, 'without easy access': 1002606, 'easy access to': 265642, 'access to transport': 28293, 'to transport or': 917714, 'transport or who': 929925, 'or who are': 617795, 'who are le': 988168, 'are le able': 87733, 'le able to': 482823, 'able to travel': 24563, 'travel to multiple': 930537, 'to multiple shop': 910348, 'multiple shop please': 545790, 'shop please people': 760671, 'please people start': 660285, 'people start thinking': 649539, 'start thinking of': 794565, 'thinking of others': 885966, 'others and stoppanicbuying': 621264, 'one behaviour': 605992, 'behaviour change': 124381, 'is hygiene': 448645, 'hygiene culture': 412079, 'culture in': 220294, 'india we': 434684, 'many change': 513886, 'around also': 93185, 'also huge': 48379, 'huge change': 409999, 'their changing': 872758, 'changing need': 172754, 'need new': 555295, 'new startup': 559644, 'in healthcare': 423606, 'the one behaviour': 862192, 'one behaviour change': 605993, 'behaviour change that': 124384, 'change that we': 172283, 'can see is': 159540, 'see is hygiene': 745319, 'is hygiene culture': 448646, 'hygiene culture in': 412080, 'culture in india': 220295, 'in india we': 424063, 'india we will': 434687, 'will see so': 994793, 'so many change': 777643, 'many change in': 513887, 'change in business': 172108, 'in business around': 421070, 'business around also': 143402, 'around also huge': 93186, 'also huge change': 48380, 'huge change in': 410000, 'behaviour and their': 124368, 'and their changing': 73673, 'their changing need': 872759, 'changing need new': 172755, 'need new startup': 555296, 'new startup and': 559645, 'startup and new': 795090, 'and new product': 67555, 'new product in': 559359, 'product in healthcare': 681285, 'stayh': 797885, 'isolation because': 455214, 'because showing': 119558, 'testing is': 839519, 'limited here': 492640, 'here so': 393565, 'tested it': 839316, 'getting scary': 349252, 'scary now': 741166, 'now hope': 574945, 'hope don': 403449, 'don pas': 253821, 'kid stayh': 474120, 'store in self': 808387, 'self isolation because': 747757, 'isolation because showing': 455216, 'because showing symptom': 119559, 'showing symptom of': 767512, '19 testing is': 11102, 'testing is limited': 839521, 'is limited here': 449363, 'limited here so': 492641, 'here so can': 393566, 'so can get': 776710, 'can get tested': 158457, 'get tested it': 348190, 'tested it getting': 839318, 'it getting scary': 458234, 'getting scary now': 349253, 'scary now hope': 741167, 'now hope don': 574947, 'hope don pas': 403450, 'don pas this': 253822, 'pas this on': 643161, 'this on to': 889220, 'on to my': 604748, 'to my kid': 910412, 'my kid stayh': 548959, 'in bengaluru': 420788, 'bengaluru stock': 127218, 'week bangalore': 975979, 'bangalore mirror': 109463, '19 in bengaluru': 7732, 'in bengaluru stock': 420789, 'bengaluru stock up': 127219, 'on food item': 600878, 'food item for': 315207, 'item for week': 463278, 'for week bangalore': 327692, 'week bangalore mirror': 975980, 'shutthemdown': 768236, 'people pharmacy': 649104, 'in birmingham': 420859, 'birmingham are': 131377, 'selling calpol': 749190, 'for kid': 322834, 'kid how': 474001, 'can any': 157505, 'any pharmacist': 79652, 'pay that': 645138, 'that shutthemdown': 846308, 'with people pharmacy': 1000159, 'people pharmacy chain': 649106, 'pharmacy chain in': 654271, 'chain in birmingham': 170801, 'in birmingham are': 420860, 'birmingham are selling': 131378, 'are selling calpol': 89952, 'selling calpol for': 749192, 'is for kid': 447884, 'for kid how': 322843, 'kid how can': 474002, 'how can any': 407492, 'can any pharmacist': 157507, 'any pharmacist allow': 79653, 'afford to pay': 34804, 'to pay that': 911563, 'pay that shutthemdown': 645139, 'elderly where': 270941, 'where ever': 984860, 'ever possible': 285453, 'or veggie': 617654, 'veggie or': 954203, 'or what': 617764, 'what ever': 981421, 'ever help': 285352, 'help required': 390441, 'the elderly where': 854158, 'elderly where ever': 270942, 'where ever possible': 984861, 'ever possible to': 285454, 'grocery or veggie': 364807, 'or veggie or': 617655, 'veggie or what': 954204, 'or what ever': 617765, 'what ever help': 981422, 'ever help required': 285354, 'macys': 507509, 'macys temporarily': 507512, 'nationwide in': 552732, 'macys temporarily close': 507513, 'temporarily close store': 837453, 'close store nationwide': 182813, 'store nationwide in': 809030, 'nationwide in response': 552733, 'response to outbreak': 715877, 'to outbreak online': 911268, 'shopping will remain': 764416, 'ally led': 46435, 'by russia': 153850, 'russia agreed': 728414, 'in output': 426363, 'unprecedented deal': 943103, 'with fellow': 998407, 'fellow oil': 303319, 'oil nation': 596965, 'nation including': 552223, 'unitedstates that': 942299, 'could curb': 209064, 'curb global': 220556, 'supply by': 824874, 'and ally led': 57924, 'ally led by': 46436, 'led by russia': 485222, 'by russia agreed': 153851, 'russia agreed on': 728415, 'sunday to record': 818288, 'record cut in': 704929, 'cut in output': 223382, 'in output to': 426367, 'output to prop': 629295, 'prop up oil': 684047, 'the pandemic in': 862996, 'pandemic in an': 635693, 'an unprecedented deal': 56884, 'unprecedented deal with': 943105, 'deal with fellow': 229549, 'with fellow oil': 998408, 'fellow oil nation': 303320, 'oil nation including': 596967, 'nation including the': 552224, 'including the unitedstates': 432191, 'the unitedstates that': 870424, 'unitedstates that could': 942300, 'that could curb': 843345, 'could curb global': 209065, 'curb global oil': 220557, 'oil supply by': 597461, 'supply by 20': 824875, 'new post covid': 559321, '19 and commodity': 5000, 'entice': 278637, 'amazon offer': 51048, 'offer higher': 594654, 'higher pay': 395647, 'for switching': 326111, 'grocery work': 366155, 'work amid': 1004742, 'amid increased': 52510, 'increased food': 433319, 'demand amazon': 234924, 'to entice': 905234, 'entice it': 278638, 'own warehouse': 632296, 'pick and': 655639, 'pack whole': 633198, 'food grocery': 314717, 'grocery with': 366148, 'with higher': 998810, 'food an': 313156, 'an internal': 56413, 'internal document': 441723, 'document reveals': 251203, 'amazon offer higher': 51049, 'offer higher pay': 594655, 'higher pay for': 395651, 'pay for switching': 644904, 'for switching to': 326112, 'switching to grocery': 830579, 'to grocery work': 907012, 'grocery work amid': 366156, 'work amid increased': 1004744, 'amid increased food': 52512, 'increased food demand': 433320, 'food demand amazon': 314165, 'demand amazon is': 234925, 'amazon is trying': 51011, 'trying to entice': 934800, 'to entice it': 905235, 'entice it own': 278639, 'it own warehouse': 460227, 'own warehouse worker': 632297, 'warehouse worker to': 966831, 'to pick and': 911718, 'pick and pack': 655640, 'and pack whole': 68606, 'pack whole food': 633199, 'whole food grocery': 990212, 'food grocery with': 314727, 'grocery with higher': 366149, 'with higher pay': 998812, 'higher pay amid': 395648, 'pay amid increased': 644721, 'amid increased demand': 52511, 'for food an': 321549, 'food an internal': 313159, 'an internal document': 56414, 'internal document reveals': 441724, 'kindleunlimited': 475100, 'kindlebook': 475097, 'starting tomorrow': 795057, '8am you': 23171, 'can download': 158146, 'download my': 257597, 'my book': 547494, 'only 99': 610022, 'cent end': 169051, 'world price': 1009910, 'price kindleunlimited': 674993, 'kindleunlimited kindlebook': 475101, 'kindlebook coronapocalypse': 475098, 'coronapocalypse wednesdaythoughts': 205206, 'starting tomorrow at': 795058, 'tomorrow at 8am': 924034, 'at 8am you': 97789, '8am you can': 23172, 'you can download': 1017663, 'can download my': 158149, 'download my book': 257598, 'my book for': 547496, 'book for only': 134528, 'for only 99': 324122, 'only 99 cent': 610023, '99 cent end': 23792, 'cent end of': 169052, 'the world price': 871943, 'world price kindleunlimited': 1009912, 'price kindleunlimited kindlebook': 674994, 'kindleunlimited kindlebook coronapocalypse': 475102, 'kindlebook coronapocalypse wednesdaythoughts': 475099, '24hr': 15759, '0200hrs': 806, 'or offline': 616363, 'offline yesterday': 596064, 'to 24hr': 899630, '24hr supermarket': 15762, 'at 0200hrs': 97371, '0200hrs there': 807, '50 customer': 19665, 'from 20': 334225, '20 60': 12910, '60 yr': 21051, 'yr age': 1027000, 'age handwash': 37824, 'handwash before': 376758, 'before driving': 122747, 'driving the': 260004, 'what your shopping': 982720, 'your shopping story': 1025793, 'shopping story online': 763995, 'story online or': 812096, 'online or offline': 608662, 'or offline yesterday': 616364, 'offline yesterday went': 596065, 'went to 24hr': 979136, 'to 24hr supermarket': 899631, '24hr supermarket at': 15763, 'supermarket at 0200hrs': 819223, 'at 0200hrs there': 97372, '0200hrs there were': 808, 'there were about': 879308, 'were about 50': 979270, 'about 50 customer': 24719, '50 customer from': 19666, 'customer from 20': 222395, 'from 20 60': 334227, '20 60 yr': 12911, '60 yr age': 21052, 'yr age handwash': 1027001, 'age handwash before': 37825, 'handwash before left': 376759, 'before left for': 122904, 'left for the': 485469, 'for the car': 326335, 'the car hand': 850376, 'sanitizer before driving': 734562, 'before driving the': 122748, 'driving the car': 260005, 'weirdest most': 977824, 'american moment': 52090, 'distancing my': 247344, 'all butter': 42258, 'butter but': 148136, 'still had': 800624, 'in the weirdest': 429670, 'the weirdest most': 871362, 'weirdest most american': 977825, 'most american moment': 542091, 'american moment of': 52091, 'moment of this': 536022, 'of this social': 592041, 'social distancing my': 779668, 'distancing my grocery': 247346, 'store wa completely': 811106, 'wa completely out': 961849, 'of all butter': 579926, 'all butter but': 42259, 'butter but still': 148137, 'but still had': 147167, 'still had plenty': 800625, 'plenty of rice': 660973, 'staff which': 793079, 'which job': 986084, 'safe now': 729845, 'nh worker delivery': 562182, 'supermarket staff which': 822905, 'staff which job': 793080, 'which job are': 986085, 'job are safe': 465662, 'are safe now': 89792, 'vividly': 959844, 'mpls': 544327, 'ha vividly': 372432, 'vividly highlighted': 959845, 'provide our': 686416, 'our critical': 622629, 'service like': 752565, 'personnel our': 653144, 'our mpls': 623957, 'mpls public': 544332, 'work folk': 1005131, 'there getting': 878431, '19 ha vividly': 7403, 'ha vividly highlighted': 372433, 'vividly highlighted the': 959846, 'highlighted the importance': 396002, 'importance of the': 418715, 'people who provide': 650330, 'who provide our': 989469, 'provide our critical': 686417, 'our critical service': 622630, 'critical service like': 218657, 'service like grocery': 752566, 'responder and medical': 715413, 'and medical personnel': 66878, 'medical personnel our': 526296, 'personnel our mpls': 653145, 'our mpls public': 623958, 'mpls public work': 544333, 'public work folk': 688496, 'work folk are': 1005132, 'folk are out': 312095, 'are out there': 88890, 'out there getting': 627483, 'there getting it': 878432, 'have water': 383550, 'water use': 969234, 'alcohol stay': 41118, 'if you dont': 415425, 'you dont have': 1018344, 'dont have water': 255232, 'have water use': 383551, 'water use hand': 969235, 'sanitizer with over': 736137, 'with over 60': 1000040, 'over 60 alcohol': 629872, '60 alcohol stay': 20894, 'alcohol stay at': 41119, 'warns we': 967311, 'our bit': 622213, 'prevent this': 671744, 'by avoiding': 151920, 'avoiding panic': 105477, 'food cutting': 314072, 'cutting down': 223722, 'waste buying': 968091, 'buying only': 150824, 'un warns we': 939305, 'warns we can': 967312, 'can do our': 158115, 'do our bit': 249945, 'our bit to': 622215, 'bit to prevent': 131719, 'to prevent this': 912094, 'prevent this by': 671746, 'this by avoiding': 886657, 'by avoiding panic': 151922, 'avoiding panic buying': 105478, 'and hoarding food': 64654, 'hoarding food cutting': 399302, 'food cutting down': 314073, 'cutting down on': 223723, 'down on food': 257020, 'on food waste': 600926, 'food waste buying': 317473, 'waste buying only': 968092, 'buying only what': 150827, 'only what you': 611468, 'you need read': 1020034, 'sleuth': 773849, 'chasing': 173904, 'jeweller': 465375, 'whereabouts': 985407, 'recd': 703388, 'tax sleuth': 835095, 'sleuth are': 773850, 'are chasing': 85256, 'chasing the': 173914, 'the jeweller': 858645, 'jeweller for': 465376, 'the whereabouts': 871440, 'whereabouts of': 985408, 'cash recd': 166315, 'recd during': 703389, 'during 2016': 262418, '2016 will': 13842, 'extra ordinary': 293595, 'ordinary revenue': 619097, 'revenue earned': 720407, 'earned through': 264834, 'through exorbitant': 894450, '19 scare': 10359, 'way the tax': 969943, 'the tax sleuth': 869174, 'tax sleuth are': 835096, 'sleuth are chasing': 773851, 'are chasing the': 85257, 'chasing the jeweller': 173915, 'the jeweller for': 858646, 'jeweller for the': 465377, 'for the whereabouts': 326778, 'the whereabouts of': 871441, 'whereabouts of cash': 985409, 'of cash recd': 581184, 'cash recd during': 166316, 'recd during 2016': 703390, 'during 2016 will': 262419, '2016 will they': 13843, 'will they do': 995178, 'they do the': 881975, 'the same for': 866227, 'same for extra': 733070, 'for extra ordinary': 321346, 'extra ordinary revenue': 293596, 'ordinary revenue earned': 619098, 'revenue earned through': 720408, 'earned through exorbitant': 264836, 'through exorbitant price': 894451, 'exorbitant price during': 290408, 'the period of': 863566, 'period of covid': 651837, 'covid 19 scare': 213750, 'overhears': 631250, 'me practising': 523351, 'practising social': 668785, 'supermarket overhears': 821869, 'overhears two': 631251, 'two old': 937095, 'old dude': 598233, 'dude in': 261591, 'milk aisle': 531543, 'aisle saying': 40358, 'isolate because': 454825, 'because covid': 119008, 'sell newspaper': 748807, 'newspaper also': 561080, 'also me': 48523, 'me increase': 522985, 'increase social': 433071, 'to five': 905985, 'five metre': 309636, 'me practising social': 523352, 'practising social distancing': 668786, 'the supermarket overhears': 868737, 'supermarket overhears two': 821870, 'overhears two old': 631252, 'two old dude': 937096, 'old dude in': 598234, 'dude in the': 261592, 'in the milk': 429363, 'the milk aisle': 860603, 'milk aisle saying': 531544, 'aisle saying they': 40359, 'saying they re': 739728, 'going to self': 355700, 'self isolate because': 747665, 'isolate because covid': 454826, 'because covid 19': 119009, '19 is just': 7998, 'way to sell': 970088, 'to sell newspaper': 914164, 'sell newspaper also': 748808, 'newspaper also me': 561081, 'also me increase': 48525, 'me increase social': 522986, 'increase social distancing': 433072, 'distancing to five': 247563, 'to five metre': 905987, 'po': 662121, 'allegedly spitting': 45707, 'in cop': 421784, 'cop face': 203265, 'face seriously': 294726, 'seriously spitting': 751725, 'coughing criminal': 208675, 'criminal new': 216859, 'new weapon': 559858, 'weapon of': 974247, 'choice against': 177722, 'against po': 37583, 'po bus': 662124, 'driver security': 259740, 'security person': 744708, 'or retail': 616886, 'employee more': 274045, 'serious crime': 751363, 'crime more': 216788, 'serious consequence': 751352, 'consequence frontline': 194861, 'man charged for': 512021, 'charged for allegedly': 173378, 'for allegedly spitting': 319197, 'allegedly spitting in': 45708, 'spitting in cop': 789592, 'in cop face': 421785, 'cop face seriously': 203266, 'face seriously spitting': 294727, 'seriously spitting coughing': 751726, 'spitting coughing criminal': 789589, 'coughing criminal new': 208676, 'criminal new weapon': 216860, 'new weapon of': 559859, 'weapon of choice': 974248, 'of choice against': 581398, 'choice against po': 177723, 'against po bus': 37584, 'po bus driver': 662125, 'bus driver security': 143028, 'driver security person': 259742, 'security person or': 744709, 'person or retail': 652565, 'or retail store': 616888, 'retail store employee': 718635, 'store employee more': 807511, 'employee more serious': 274046, 'more serious crime': 540355, 'serious crime more': 751364, 'crime more serious': 216789, 'more serious consequence': 540354, 'serious consequence frontline': 751354, 'that get': 843995, 'get excited': 346972, 'excited when': 289578, 'mom be': 535689, 'be walking': 118037, 'excited by': 289537, 'by looking': 153094, 'quarantine shit': 692527, 'shit got': 759117, 'me fucked': 522792, 'up quarantine': 945875, 'it kind of': 459275, 'kind of sad': 474935, 'of sad that': 589212, 'sad that get': 729251, 'that get excited': 843998, 'get excited when': 346977, 'excited when go': 289579, 'grocery shopping with': 365109, 'shopping with my': 764439, 'with my mom': 999638, 'my mom be': 549257, 'mom be walking': 535690, 'be walking around': 118038, 'store and get': 806247, 'and get excited': 63570, 'get excited by': 346975, 'excited by looking': 289538, 'by looking at': 153095, 'at the stuff': 101114, 'the stuff at': 868325, 'store this quarantine': 810703, 'this quarantine shit': 889779, 'quarantine shit got': 692529, 'shit got me': 759118, 'got me fucked': 358696, 'me fucked up': 522793, 'fucked up quarantine': 339734, 've discovered': 953052, 'discovered why': 244706, 'have toiletpapercrisis': 383358, 'think ve discovered': 885737, 've discovered why': 953054, 'discovered why we': 244708, 'why we have': 991524, 'we have toiletpapercrisis': 971971, 'have toiletpapercrisis toiletpaperpanic': 383359, 'toiletpapercrisis toiletpaperpanic toiletpaperapocalypse': 923117, 'toiletpaperpanic toiletpaperapocalypse toiletpaper': 923275, 'excerise': 289319, 'daily reminder': 224774, 'reminder every': 710545, 'day until': 228637, 'settled down': 753703, 'down please': 257095, 'home go': 401301, 'for excerise': 321304, 'excerise and': 289320, 'emergency or': 272831, 'shopping be': 762165, 'hand don': 374898, 'buy get': 148732, 'week keep': 976451, 'distance follow': 246701, 'is your daily': 454141, 'your daily reminder': 1023446, 'daily reminder every': 224775, 'reminder every day': 710546, 'every day until': 285856, 'day until the': 228638, 'pandemic ha settled': 635567, 'ha settled down': 371875, 'settled down please': 753704, 'down please stay': 257097, 'please stay at': 660544, 'at home go': 98999, 'home go out': 401302, 'out for excerise': 626116, 'for excerise and': 321305, 'excerise and emergency': 289321, 'and emergency or': 62036, 'emergency or food': 272832, 'or food shopping': 615348, 'food shopping be': 316512, 'shopping be safe': 762169, 'be safe and': 116941, 'safe and wash': 729492, 'your hand don': 1024183, 'hand don panic': 374900, 'panic buy get': 637486, 'buy get what': 148734, 'you need this': 1020052, 'need this week': 555827, 'this week keep': 891227, 'week keep your': 976453, 'your distance follow': 1023530, 'distance follow this': 246702, 'follow this please': 312567, 'claw': 180420, 'of socially': 589863, 'isolated elderly': 454991, 'people healthcare': 648224, 'provider working': 686822, 'overtime stressed': 631639, 'stressed supermarket': 813459, 'employee small': 274217, 'owner apply': 632382, 'people live': 648671, 'flu claw': 311395, 'real victim of': 701445, 'victim of socially': 956502, 'of socially isolated': 589864, 'socially isolated elderly': 781069, 'isolated elderly people': 454992, 'elderly people healthcare': 270824, 'people healthcare provider': 648225, 'healthcare provider working': 387260, 'provider working overtime': 686823, 'working overtime stressed': 1008864, 'overtime stressed supermarket': 631640, 'stressed supermarket employee': 813460, 'supermarket employee small': 820134, 'employee small business': 274218, 'business owner apply': 144177, 'owner apply for': 632383, 'apply for loan': 82560, 'loan people live': 497501, 'people live paycheck': 648676, 'wutang flu claw': 1013611, 'changed some': 172554, 'it shipping': 461019, 'shipping procedure': 758899, 'procedure due': 679807, 'current rise': 221342, 'shopping check': 762366, 'amazon new': 51041, 'new shipping': 559579, 'shipping status': 758917, 'status and': 796659, 'few step': 304073, 'ensure your': 278132, 'your amazon': 1022774, 'amazon advertising': 50835, 'advertising effort': 33226, 'effort can': 269495, 'amazon ha changed': 50968, 'ha changed some': 370136, 'changed some of': 172555, 'some of it': 783399, 'of it shipping': 585443, 'it shipping procedure': 461020, 'shipping procedure due': 758900, 'procedure due to': 679808, 'the current rise': 852659, 'current rise in': 221343, 'online shopping check': 609071, 'shopping check out': 762367, 'blog post on': 132993, 'post on amazon': 666248, 'on amazon new': 599282, 'amazon new shipping': 51042, 'new shipping status': 559580, 'shipping status and': 758918, 'status and few': 796660, 'and few step': 62818, 'few step you': 304075, 'to ensure your': 905205, 'ensure your amazon': 278133, 'your amazon advertising': 1022776, 'amazon advertising effort': 50836, 'advertising effort can': 33227, 'effort can still': 269496, 'still be effective': 800251, 'plunging even': 661531, 'more today': 540804, 'today bad': 919298, 'for canada': 319898, 'are plunging even': 89125, 'plunging even more': 661532, 'even more today': 284384, 'more today bad': 540805, 'today bad news': 919299, 'news for canada': 560426, 'kmc': 475954, 'equality': 279617, 'rio': 722582, 'kmc order': 475955, 'order dated': 618155, 'dated 27': 226776, '27 03': 16252, 'in each': 422436, 'each city': 264008, 'city price': 179331, 'vegetable must': 954044, 'controlled even': 202238, 'after is': 35828, 'over let': 630357, 'create equality': 215638, 'equality in': 279620, 'sense rio': 750583, 'rio goi': 722587, 'goi india': 354961, 'kmc order dated': 475956, 'order dated 27': 618156, 'dated 27 03': 226777, '27 03 2020': 16253, '03 2020 this': 861, 'is how in': 448580, 'how in each': 408046, 'in each city': 422437, 'each city price': 264009, 'city price of': 179332, 'of vegetable must': 592762, 'vegetable must be': 954045, 'must be controlled': 546499, 'be controlled even': 114227, 'controlled even after': 202239, 'even after is': 283814, 'after is over': 35830, 'is over let': 450707, 'over let create': 630358, 'let create equality': 486667, 'create equality in': 215639, 'equality in real': 279621, 'in real sense': 427294, 'real sense rio': 701357, 'sense rio goi': 750584, 'rio goi india': 722588, 'desperation state': 238613, 'in desperation state': 422218, 'desperation state pay': 238614, 'byron': 154831, 'value ever': 952116, 'ever recorded': 285463, 'recorded demand': 705099, 'fear linked': 301186, 'on glut': 601119, 'glut ethanol': 353101, 'sophie byron': 785964, 'lowest value ever': 506241, 'value ever recorded': 952117, 'ever recorded demand': 285464, 'recorded demand fear': 705100, 'demand fear linked': 235333, 'fear linked to': 301187, 'linked to and': 493989, 'to and falling': 900496, 'and falling gasoline': 62642, 'pressure on glut': 671212, 'on glut ethanol': 601120, 'glut ethanol market': 353102, 'market sophie byron': 517085, 'devil': 239955, 'cctv': 168513, 'resisting': 714609, 'agent of': 38182, 'the devil': 853230, 'devil this': 239967, 'chinese wa': 177390, 'caught on': 167444, 'on cctv': 599848, 'cctv spitting': 168518, 'some fruit': 782922, 'wa resisting': 963088, 'resisting arrest': 714610, 'after helping': 35778, 'helping her': 391352, 'her country': 391968, 'country china': 210543, '19 round': 10254, 'world she': 1009971, 'she tested': 756377, 'positive to': 665470, 'to covid19': 903672, 'agent of the': 38183, 'of the devil': 590949, 'the devil this': 853234, 'devil this chinese': 239968, 'this chinese wa': 886767, 'chinese wa caught': 177391, 'wa caught on': 961795, 'caught on cctv': 167447, 'on cctv spitting': 599850, 'cctv spitting on': 168519, 'spitting on some': 789605, 'on some fruit': 603558, 'some fruit in': 782924, 'fruit in uk': 339102, 'in uk supermarket': 430398, 'uk supermarket she': 938775, 'supermarket she wa': 822411, 'she wa resisting': 756424, 'wa resisting arrest': 963089, 'resisting arrest after': 714611, 'arrest after helping': 93746, 'after helping her': 35779, 'helping her country': 391353, 'her country china': 391969, 'country china to': 210544, 'china to spread': 177005, 'to spread covid': 915057, 'covid 19 round': 213723, '19 round the': 10255, 'round the world': 726367, 'the world she': 871963, 'world she tested': 1009972, 'she tested positive': 756378, 'tested positive to': 839355, 'positive to covid19': 665472, 'and cattle': 59632, 'cattle price': 167365, 'aren the': 92552, 'got hit': 358608, 'market and cattle': 515952, 'and cattle price': 59634, 'cattle price aren': 167367, 'price aren the': 672773, 'aren the only': 92554, 'one who got': 607446, 'who got hit': 988811, 'got hit by': 358609, 'by the virus': 154474, 'socialresponsibility': 781121, 'russian commerce': 728618, 'commerce platform': 188606, 'platform ozon': 659018, 'ozon ha': 632784, 'ha focused': 370638, 'on protecting': 602979, 'by capping': 152069, 'capping price': 162894, 'contactless door': 200370, 'door delivery': 255568, 'service socialresponsibility': 752846, 'russian commerce platform': 728619, 'commerce platform ozon': 188611, 'platform ozon ha': 659019, 'ozon ha focused': 632785, 'ha focused on': 370639, 'focused on protecting': 311961, 'on protecting consumer': 602980, 'protecting consumer by': 685186, 'consumer by capping': 196714, 'by capping price': 152070, 'capping price to': 162895, 'price to prevent': 677025, 'gouging and offering': 359248, 'and offering contactless': 67982, 'offering contactless door': 595042, 'contactless door delivery': 200371, 'door delivery service': 255569, 'delivery service socialresponsibility': 234463, 'naturaldisaster': 552888, 'disaster buy': 244188, 'buy milk': 148956, 'bread pandemic': 138558, 'pandemic buy': 635064, 'on pandemic': 602684, 'pandemic naturaldisaster': 636007, 'naturaldisaster toiletpaper': 552889, 'natural disaster buy': 552821, 'disaster buy milk': 244189, 'buy milk and': 148957, 'milk and bread': 531556, 'and bread pandemic': 59169, 'bread pandemic buy': 138559, 'pandemic buy all': 635065, 'paper can get': 640006, 'get my hand': 347631, 'my hand on': 548610, 'hand on pandemic': 375140, 'on pandemic naturaldisaster': 602686, 'pandemic naturaldisaster toiletpaper': 636008, 'brings to': 140282, 'brings to it': 140283, '1980s': 12448, 'supermarket look': 821386, 'like russia': 491114, 'russia in': 728497, 'the 1980s': 847950, '1980s uk': 12453, 'it 2020 in': 456197, '2020 in the': 14394, 'uk and yet': 938180, 'and yet every': 75984, 'yet every supermarket': 1016063, 'every supermarket look': 286258, 'supermarket look like': 821389, 'look like russia': 502507, 'like russia in': 491115, 'russia in the': 728499, 'in the 1980s': 428945, 'the 1980s uk': 847953, 'gurgaon': 368819, 'are charging': 85249, 'charging double': 173465, 'double and': 255975, 'and triple': 74462, 'triple price': 932257, 'for daily': 320523, 'daily use': 224857, 'vegetable item': 954023, 'item demand': 463201, 'surged in': 828308, 'in gurgaon': 423484, 'gurgaon impact': 368822, 'impact please': 417930, 'please act': 659631, 'act these': 29790, 'and grocery shop': 64001, 'grocery shop are': 364967, 'shop are charging': 759896, 'are charging double': 85251, 'charging double and': 173466, 'double and triple': 255977, 'and triple price': 74464, 'triple price for': 932258, 'price for daily': 673947, 'for daily use': 320531, 'daily use and': 224858, 'use and food': 949042, 'and food vegetable': 63104, 'food vegetable item': 317421, 'vegetable item demand': 954024, 'item demand of': 463202, 'demand of item': 235950, 'of item ha': 585482, 'item ha surged': 463307, 'ha surged in': 372126, 'surged in gurgaon': 828309, 'in gurgaon impact': 423486, 'gurgaon impact please': 368823, 'impact please act': 417931, 'please act these': 659632, 'act these are': 29791, 'these are essential': 879615, 'are essential item': 86251, 'of feb': 583466, 'feb consumer': 301639, 'spending wa': 789044, 'wa growing': 962262, 'growing roughly': 367234, 'roughly yoy': 726298, 'yoy when': 1026975, 'consumer began': 196422, 'we saw': 973132, 'saw partial': 738203, 'partial return': 642523, 'to growth': 907047, 'growth before': 367350, 'before significant': 123081, 'significant decline': 769414, 'decline through': 231411, 'march check': 515316, 'through the first': 894736, 'half of feb': 374224, 'of feb consumer': 583467, 'feb consumer spending': 301641, 'consumer spending wa': 199104, 'spending wa growing': 789046, 'wa growing roughly': 962263, 'growing roughly yoy': 367235, 'roughly yoy when': 726299, 'yoy when consumer': 1026976, 'when consumer began': 983277, 'consumer began to': 196424, 'began to stock': 123448, 'stock up due': 803075, 'to we saw': 918407, 'we saw partial': 973137, 'saw partial return': 738204, 'partial return to': 642524, 'return to growth': 719917, 'to growth before': 907048, 'growth before significant': 367351, 'before significant decline': 123082, 'significant decline through': 769416, 'decline through the': 231412, 'half of march': 374228, 'of march check': 586204, 'march check out': 515317, 'check out more': 174559, 'out more insight': 626572, 'basil': 112196, 'vacuum': 951812, 'and basil': 58728, 'basil to': 112197, 'who vacuum': 989871, 'vacuum pasta': 951825, 'pasta flour': 643717, 'flour hand': 311113, 'soap whatever': 779173, 'whatever look': 982780, 'at yourselves': 101696, 'are disgrace': 85852, 'disgrace to': 245319, 'the specie': 867548, 'specie you': 788198, 'selfish and': 747982, 'and ignorant': 64963, 'ignorant idiot': 415782, 'idiot oh': 413560, 'forgot idiot': 329398, 'idiot panic': 413564, 'to supermarket to': 915851, 'buy egg and': 148555, 'egg and basil': 269758, 'and basil to': 58729, 'basil to all': 112198, 'people who vacuum': 650353, 'who vacuum pasta': 989872, 'vacuum pasta flour': 951826, 'pasta flour hand': 643718, 'flour hand soap': 311114, 'hand soap whatever': 375779, 'soap whatever look': 779174, 'whatever look at': 982781, 'look at yourselves': 502311, 'at yourselves you': 101697, 'yourselves you are': 1026823, 'you are disgrace': 1017109, 'are disgrace to': 85855, 'disgrace to the': 245320, 'to the specie': 917083, 'the specie you': 867549, 'specie you are': 788199, 'are selfish and': 89934, 'selfish and ignorant': 747985, 'and ignorant idiot': 64964, 'ignorant idiot oh': 415784, 'idiot oh forgot': 413561, 'oh forgot idiot': 596383, 'forgot idiot panic': 329399, 'idiot panic buying': 413567, 'abroad': 27146, 'nzpol': 578227, 'reminder from': 710556, 'minister that': 533467, 'we give': 971642, 'them time': 876442, 'restock food': 716872, 'be brought': 113918, 'brought from': 141152, 'from abroad': 334366, 'abroad there': 27166, 'buying nzpol': 150784, 'reminder from the': 710557, 'from the prime': 337843, 'the prime minister': 864459, 'prime minister that': 678159, 'minister that our': 533468, 'that our supermarket': 845597, 'our supermarket will': 625031, 'supermarket will continue': 823881, 'continue to have': 201205, 'food on their': 315605, 'their shelf if': 874682, 'shelf if we': 757179, 'if we give': 415284, 'we give them': 971643, 'give them time': 350775, 'them time to': 876443, 'time to restock': 898052, 'to restock food': 913402, 'restock food will': 716873, 'food will continue': 317620, 'continue to be': 201165, 'to be brought': 901141, 'be brought from': 113919, 'brought from abroad': 141153, 'from abroad there': 334369, 'abroad there is': 27167, 'panic when buying': 638775, 'when buying nzpol': 983226, 'eroding': 280179, 'extinct': 293359, 'brokerage': 140945, 'lepage': 486411, 'outbreak combined': 628114, 'with collapse': 997689, 'is slowly': 451979, 'slowly eroding': 774593, 'eroding demand': 280180, 'in key': 424485, 'market open': 516805, 'open house': 612310, 'house are': 406195, 'are quickly': 89396, 'quickly becoming': 694470, 'becoming extinct': 120294, 'extinct said': 293362, 'said chief': 731024, 'chief executive': 175926, 'executive of': 289915, 'of brokerage': 580906, 'brokerage lepage': 140946, 'lepage via': 486412, 'the outbreak combined': 862603, 'outbreak combined with': 628115, 'combined with collapse': 187143, 'with collapse in': 997690, 'collapse in price': 186019, 'price is slowly': 674890, 'is slowly eroding': 451980, 'slowly eroding demand': 774594, 'eroding demand in': 280181, 'demand in key': 235672, 'in key market': 424490, 'key market open': 473341, 'market open house': 516808, 'open house are': 612311, 'house are quickly': 406197, 'are quickly becoming': 89397, 'quickly becoming extinct': 694471, 'becoming extinct said': 120295, 'extinct said chief': 293363, 'said chief executive': 731025, 'chief executive of': 175930, 'executive of brokerage': 289916, 'of brokerage lepage': 580907, 'brokerage lepage via': 140947, 'experimenting': 291752, 'recording': 705127, 'vlog': 959864, 'upload': 947589, 'home try': 402371, 'try experimenting': 934472, 'experimenting with': 291753, 'online content': 608047, 'content try': 200853, 'try recording': 934548, 'recording that': 705136, 'house vlog': 406657, 'vlog video': 959876, 'video upload': 956941, 'upload the': 947592, 'trying new': 934719, 'new hair': 558844, 'hair style': 374009, 'style screen': 815625, 'screen record': 742721, 'record your': 705085, 'experience all': 291305, 'all content': 42437, 'content doe': 200798, 'the or': 862432, 're at home': 698326, 'at home try': 99152, 'home try experimenting': 402372, 'try experimenting with': 934473, 'experimenting with your': 291755, 'your online content': 1025070, 'online content try': 608049, 'content try recording': 200854, 'try recording that': 934549, 'recording that house': 705137, 'that house vlog': 844377, 'house vlog video': 406658, 'vlog video upload': 959878, 'video upload the': 956942, 'upload the video': 947593, 'video of you': 956838, 'of you trying': 593429, 'you trying new': 1021940, 'trying new hair': 934720, 'new hair style': 558845, 'hair style screen': 374010, 'style screen record': 815626, 'screen record your': 742722, 'record your online': 705087, 'online shopping experience': 609117, 'shopping experience all': 762605, 'experience all content': 291306, 'all content doe': 42438, 'content doe not': 200799, 'to be about': 901085, 'be about the': 113448, 'about the or': 26468, 'the or quarantine': 862440, 'takeup': 833227, 'aswell': 97278, 'sudden closure': 816991, 'market rumor': 517018, 'rumor mill': 727490, 'mill running': 531973, 'running recently': 728043, 'recently observed': 704127, 'observed price': 578624, 'of 300': 579564, '300 in': 17312, 'use commodity': 949123, 'commodity by': 189141, 'local vendor': 498673, 'vendor after': 954335, 'seeing efficient': 746278, 'efficient takeup': 269435, 'takeup on': 833228, 'on would': 605384, 'would urge': 1012356, 'urge look': 948201, 'this aswell': 886445, 'with the sudden': 1001503, 'the sudden closure': 868381, 'sudden closure of': 816992, 'closure of market': 183970, 'of market rumor': 586238, 'market rumor mill': 517019, 'rumor mill running': 727491, 'mill running recently': 531974, 'running recently observed': 728044, 'recently observed price': 704128, 'observed price hike': 578625, 'hike of 300': 396236, 'of 300 in': 579565, '300 in price': 17313, 'price of daily': 675434, 'of daily use': 582319, 'daily use commodity': 224859, 'use commodity by': 949124, 'commodity by local': 189143, 'by local vendor': 153081, 'local vendor after': 498674, 'vendor after seeing': 954336, 'after seeing efficient': 36157, 'seeing efficient takeup': 746279, 'efficient takeup on': 269436, 'takeup on would': 833229, 'on would urge': 605385, 'would urge look': 1012357, 'urge look into': 948202, 'into this aswell': 443210, 'brace': 137482, 'crisis consumer': 217236, 'internet startup': 442026, 'startup brace': 795094, 'brace for': 137483, 'for salary': 325308, 'salary cut': 731963, 'layoff economiccrisis': 482689, 'crisis consumer internet': 217242, 'consumer internet startup': 197916, 'internet startup brace': 442027, 'startup brace for': 795095, 'brace for salary': 137489, 'for salary cut': 325309, 'salary cut layoff': 731964, 'cut layoff economiccrisis': 223418, 'need government': 554918, 'government intervention': 360234, 'food stuff': 316882, 'stuff ha': 815082, 'skyrocketed seller': 773378, 'make double': 509860, 'double gain': 256018, 'we need government': 972489, 'need government intervention': 554920, 'government intervention price': 360235, 'intervention price of': 442198, 'of food stuff': 583788, 'food stuff ha': 316890, 'stuff ha skyrocketed': 815083, 'ha skyrocketed seller': 371959, 'skyrocketed seller are': 773379, 'seller are taking': 748981, '19 situation to': 10598, 'situation to make': 772540, 'to make double': 909653, 'make double gain': 509861, 'suddenlyscaredofpeople': 817149, 'should blame': 765779, 'blame socialdistanacing': 132288, 'socialdistanacing or': 780083, 'having moment': 384166, 'trip just': 932104, 'just led': 469123, 'what believe': 981105, 'believe wa': 126400, 'first panic': 308849, 'attack like': 102127, 'like didn': 490120, 'didn already': 240978, 'have mentalhealth': 381462, 'mentalhealth issue': 528680, 'issue to': 455972, 'being dick': 125047, 'dick suddenlyscaredofpeople': 240474, 'know if should': 476481, 'if should blame': 414801, 'should blame socialdistanacing': 765781, 'blame socialdistanacing or': 132289, 'socialdistanacing or just': 780084, 'or just having': 615883, 'just having moment': 468940, 'having moment but': 384167, 'moment but my': 535888, 'but my grocery': 146430, 'store trip just': 810949, 'trip just led': 932105, 'just led to': 469124, 'led to what': 485307, 'to what believe': 918509, 'what believe wa': 981106, 'believe wa my': 126401, 'my first panic': 548346, 'first panic attack': 308850, 'panic attack like': 637379, 'attack like didn': 102128, 'like didn already': 490121, 'didn already have': 240979, 'already have mentalhealth': 47427, 'have mentalhealth issue': 381463, 'mentalhealth issue to': 528681, 'issue to deal': 455974, 'deal with thanks': 229580, 'with thanks for': 1001165, 'thanks for being': 842051, 'for being dick': 319626, 'being dick suddenlyscaredofpeople': 125048, 'hope everybody': 403455, 'safe make': 729812, 'hand 10': 374716, 'also eat': 48144, 'eat healthy': 265932, 'virus dont': 958147, 'dont worry': 255321, 'worry it': 1010737, 'world caution': 1009406, 'caution yes': 168187, 'yes panic': 1015504, 'hope everybody is': 403457, 'everybody is safe': 286450, 'is safe make': 451621, 'safe make sure': 729813, 'your hand 10': 1024157, 'hand 10 per': 374717, '10 per day': 1622, 'per day also': 650793, 'day also eat': 227232, 'also eat healthy': 48145, 'eat healthy food': 265934, 'food to fight': 317251, '19 virus dont': 11798, 'virus dont worry': 958148, 'dont worry it': 255322, 'worry it not': 1010740, 'the world caution': 871833, 'world caution yes': 1009407, 'caution yes panic': 168188, 'yes panic no': 1015505, 'ghar': 349611, 'bihiv': 130395, 'te': 835320, 'nyabar': 577938, 'mah': 508464, 'neeriv': 556713, 'mumkinhaiyeh': 546050, 'that cover': 843379, 'with disposable': 998088, 'disposable cap': 246234, 'cap wear': 162455, 'keep bottle': 471349, 'safe ghar': 729708, 'ghar bihiv': 349612, 'bihiv te': 130396, 'te nyabar': 835322, 'nyabar mah': 577939, 'mah neeriv': 508465, 'neeriv mumkinhaiyeh': 556714, 'mumkinhaiyeh jammu': 546051, 'jammu kashmir': 464447, 'kashmir awareness': 470980, 'awareness stayhome': 105733, 'for that cover': 326253, 'that cover your': 843380, 'cover your head': 212325, 'your head with': 1024268, 'head with disposable': 385869, 'with disposable cap': 998089, 'disposable cap wear': 246235, 'cap wear mask': 162456, 'mask and keep': 518340, 'and keep bottle': 65752, 'keep bottle of': 471350, 'bottle of sanitizer': 136294, 'of sanitizer with': 589304, 'sanitizer with you': 736143, 'with you at': 1002144, 'you at all': 1017332, 'all time stay': 45225, 'time stay home': 897751, 'stay safe ghar': 797238, 'safe ghar bihiv': 729709, 'ghar bihiv te': 349613, 'bihiv te nyabar': 130397, 'te nyabar mah': 835323, 'nyabar mah neeriv': 577940, 'mah neeriv mumkinhaiyeh': 508466, 'neeriv mumkinhaiyeh jammu': 556715, 'mumkinhaiyeh jammu kashmir': 546052, 'jammu kashmir awareness': 464448, 'kashmir awareness stayhome': 470981, 'awareness stayhome staysafe': 105734, 'bjp': 131998, 'will bjp': 992834, 'bjp govt': 131999, 'spit fr': 789551, 'now will bjp': 576423, 'will bjp govt': 992835, 'bjp govt show': 132000, 'saliva spit fr': 732738, 'risingprices': 723333, 'those raising': 892384, 'article look': 94384, 'the guidance': 856918, 'market authority': 516056, 'authority risingprices': 103777, 'consequence for those': 194859, 'for those raising': 327130, 'those raising price': 892385, 'raising price unfairly': 696131, 'price unfairly during': 677191, 'pandemic this article': 636743, 'this article look': 886422, 'article look at': 94385, 'at the guidance': 100970, 'the guidance issued': 856922, 'guidance issued by': 368252, 'by the competition': 154294, 'competition and market': 191666, 'and market authority': 66704, 'market authority risingprices': 516064, 'safe to go': 730052, 'normality': 567451, 'cannot wait': 162211, 'wait till': 964210, 'till this': 896113, 'finished and': 307889, 'life return': 488992, 'to normality': 910674, 'day that you': 228477, 'need to queue': 556024, 'to queue for': 912669, 'queue for over': 693930, 'for over an': 324327, 'over an hour': 629975, 'an hour to': 56108, 'hour to enter': 406021, 'enter supermarket cannot': 278298, 'supermarket cannot wait': 819524, 'cannot wait till': 162213, 'wait till this': 964216, 'till this is': 896115, 'this is finished': 888259, 'is finished and': 447819, 'finished and life': 307890, 'and life return': 66141, 'life return to': 488993, 'return to normality': 719925, 'fox5dc': 330789, 'damascusmd': 225293, 'nice we': 562513, 'we weren': 973821, 'weren hording': 980401, 'hording toiletpaper': 404031, 'toiletpaper but': 921829, 'purchase some': 689657, 'some you': 784240, 'you doubled': 1018349, 'pandemic wtf': 637075, 'wtf no': 1013306, 'people horde': 648295, 'horde taking': 404007, 'tragedy foxnews': 929171, 'foxnews fox5dc': 330802, 'fox5dc douchebags': 330790, 'douchebags damascusmd': 256240, 'nice we weren': 562515, 'we weren hording': 973822, 'weren hording toiletpaper': 980402, 'hording toiletpaper but': 404032, 'toiletpaper but when': 921833, 'but when we': 147827, 'when we went': 984474, 'to purchase some': 912549, 'purchase some you': 689658, 'some you doubled': 784241, 'you doubled the': 1018350, 'the price during': 864346, 'this pandemic wtf': 889451, 'pandemic wtf no': 637076, 'wtf no wonder': 1013307, 'no wonder people': 565913, 'wonder people horde': 1003990, 'people horde taking': 648296, 'horde taking advantage': 404008, 'this tragedy foxnews': 890840, 'tragedy foxnews fox5dc': 929172, 'foxnews fox5dc douchebags': 330803, 'fox5dc douchebags damascusmd': 330791, 'delicious': 233007, 'be keeping': 115588, 'keeping after': 472366, 'after end': 35622, 'the polish': 863944, 'polish deli': 663578, 'deli where': 232938, 'where have': 984910, 'you been': 1017417, 'life your': 489248, 'your meat': 1024802, 'meat are': 525489, 'are delicious': 85754, 'delicious your': 233030, 'coffee is': 185502, 'and tasty': 73042, 'tasty why': 834824, 'have wasted': 383546, 'wasted so': 968260, 'life shopping': 489036, 'thing will be': 884987, 'will be keeping': 992526, 'be keeping after': 115589, 'keeping after end': 472367, 'after end the': 35625, 'end the polish': 275979, 'the polish deli': 863945, 'polish deli where': 663579, 'deli where have': 232939, 'where have you': 984913, 'have you been': 383657, 'you been all': 1017418, 'been all my': 120640, 'my life your': 549052, 'life your meat': 489249, 'your meat are': 1024803, 'meat are delicious': 525490, 'are delicious your': 85755, 'delicious your coffee': 233031, 'your coffee is': 1023250, 'coffee is cheap': 185503, 'is cheap and': 446493, 'cheap and tasty': 174078, 'and tasty why': 73043, 'tasty why have': 834825, 'why have wasted': 991055, 'have wasted so': 383547, 'wasted so much': 968261, 'so much of': 777796, 'of my life': 586785, 'my life shopping': 549035, 'life shopping in': 489037, 'norc': 566999, 'madtweets': 508239, 'ap norc': 81206, 'norc poll': 567000, 'poll about': 663822, 'lose income': 503439, 'income due': 432316, 'to since': 914663, 'since 70': 770492, 'is based': 445999, 'spending consider': 788777, 'impact this': 418024, 'before investing': 122873, 'investing madtweets': 443934, 'ap norc poll': 81207, 'norc poll about': 567001, 'poll about half': 663823, 'half of worker': 374239, 'of worker will': 593288, 'worker will lose': 1008251, 'will lose income': 994052, 'lose income due': 503440, 'income due to': 432317, 'due to since': 261954, 'to since 70': 914665, 'since 70 of': 770493, 'economy is based': 267989, 'is based on': 446001, 'based on consumer': 111671, 'consumer spending consider': 199050, 'spending consider the': 788778, 'consider the impact': 195139, 'the impact this': 857949, 'impact this will': 418026, 'have on stock': 381776, 'on stock before': 603672, 'stock before investing': 801911, 'before investing madtweets': 122874, 'bag that': 108410, 'back could': 106939, 'transmit it': 929786, 'lift this': 489469, 'this ban': 886489, 'period like': 651815, 'grocery bag that': 364300, 'bag that people': 108413, 'that people take': 845707, 'people take home': 649717, 'take home and': 832203, 'home and back': 400613, 'and back could': 58615, 'back could transmit': 106940, 'could transmit it': 209786, 'transmit it time': 929787, 'etc who have': 282883, 'who have banned': 988910, 'have banned plastic': 379406, 'to lift this': 909266, 'lift this ban': 489470, 'this ban for': 886490, 'ban for period': 109205, 'for period like': 324482, 'period like this': 651816, 'homemade natural': 402842, 'natural hand': 552842, 'sanitizer diy': 734771, 'diy recipe': 248767, 'infection with': 436885, 'with natural': 999680, 'natural ingredient': 552845, 'everyday use': 286649, 'sanitizers handsanitizer': 736297, 'handsanitizer handsanitizers': 376541, 'handsanitizers coronavir': 376696, 'your homemade natural': 1024391, 'homemade natural hand': 402843, 'natural hand sanitizer': 552843, 'hand sanitizer diy': 375374, 'sanitizer diy recipe': 734773, 'diy recipe to': 248769, 'recipe to protect': 704509, 'yourself and prevent': 1026525, 'prevent infection with': 671663, 'infection with natural': 436886, 'with natural ingredient': 999681, 'natural ingredient for': 552846, 'ingredient for everyday': 438364, 'for everyday use': 321191, 'everyday use sanitizer': 286650, 'use sanitizer sanitizers': 949548, 'sanitizer sanitizers handsanitizer': 735696, 'sanitizers handsanitizer handsanitizers': 736298, 'handsanitizer handsanitizers coronavir': 376543, 'reviewed': 720603, 'news kaduna': 560573, 'ha reviewed': 371756, 'reviewed the': 720611, 'movement imposed': 543881, 'imposed to': 419318, 'enable people': 275428, 'essential curfew': 280954, 'curfew limited': 220896, 'limited every': 492626, 'every tuesday': 286341, 'and wednesday': 75375, 'breaking news kaduna': 139006, 'news kaduna state': 560574, 'kaduna state government': 470595, 'state government ha': 795612, 'government ha reviewed': 360166, 'ha reviewed the': 371757, 'reviewed the restriction': 720612, 'the restriction of': 865673, 'of movement imposed': 586694, 'movement imposed to': 543882, 'imposed to curb': 419319, 'curb the spread': 220585, 'spread of to': 790717, 'of to enable': 592210, 'to enable people': 905041, 'enable people to': 275430, 'other essential curfew': 620156, 'essential curfew limited': 280955, 'curfew limited every': 220897, 'limited every tuesday': 492627, 'every tuesday and': 286342, 'tuesday and wednesday': 935119, 'crushed': 219796, 'fnv': 311796, 'sbsw': 739833, 'kgc': 473678, 'btg': 141513, 'auy': 104088, 'drd': 258557, 'just crushed': 468543, 'crushed new': 219808, 'new year': 559909, 'high now': 395180, 'watch gold': 968428, 'gold fnv': 355890, 'fnv sbsw': 311797, 'sbsw kgc': 739834, 'kgc btg': 473679, 'btg auy': 141514, 'auy drd': 104089, 'gold price just': 355963, 'price just crushed': 674972, 'just crushed new': 468544, 'crushed new year': 219809, 'new year high': 559911, 'year high now': 1014623, 'high now what': 395182, 'now what to': 576385, 'what to watch': 982469, 'to watch gold': 918382, 'watch gold fnv': 968429, 'gold fnv sbsw': 355891, 'fnv sbsw kgc': 311798, 'sbsw kgc btg': 739835, 'kgc btg auy': 473680, 'btg auy drd': 141515, 'depository': 237526, 'chicagoland': 175707, 'bank amp': 109596, 'amp depository': 53638, 'depository are': 237527, 'pandemic appreciated': 634934, 'appreciated my': 82827, 'my discussion': 547997, 'with greater': 998675, 'greater chicago': 363152, 'chicago this': 175696, 'week about': 975812, 'of addressing': 579780, 'addressing food': 32092, 'insecurity for': 439155, 'thousand across': 893371, 'across chicagoland': 29295, 'our food bank': 623101, 'food bank amp': 313516, 'bank amp depository': 109597, 'amp depository are': 53639, 'depository are experiencing': 237528, 'increased demand during': 433269, 'the pandemic appreciated': 862909, 'pandemic appreciated my': 634935, 'appreciated my discussion': 82829, 'my discussion with': 547999, 'discussion with greater': 245060, 'with greater chicago': 998676, 'greater chicago this': 363153, 'chicago this week': 175697, 'this week about': 891181, 'week about the': 975814, 'importance of addressing': 418693, 'of addressing food': 579781, 'addressing food insecurity': 32093, 'food insecurity for': 315063, 'insecurity for thousand': 439156, 'for thousand across': 327169, 'thousand across chicagoland': 893372, 'ifrs': 415647, 'honestly don': 403096, 'why ve': 991497, 'been thinking': 122179, 'on ifrs': 601486, 'ifrs 13': 415648, '13 fair': 3216, 'fair value': 296396, 'value quoted': 952185, 'quoted price': 695023, 'honestly don know': 403097, 'don know why': 253679, 'know why ve': 477062, 'why ve been': 991498, 've been thinking': 952944, 'been thinking about': 122180, '19 on ifrs': 8949, 'on ifrs 13': 601487, 'ifrs 13 fair': 415649, '13 fair value': 3217, 'fair value quoted': 296397, 'value quoted price': 952186, 'price won': 677636, 'won reduce': 1003888, 'reduce for': 705838, 'fix fuel': 309723, 'price build': 672965, 'build energy': 141968, 'energy stability': 276587, 'stability fund': 791811, 'fund amid': 341352, '19 crude': 6364, 'crude collapse': 219515, 'fuel price won': 340264, 'price won reduce': 677640, 'won reduce for': 1003889, 'reduce for year': 705839, 'year to fix': 1015041, 'to fix fuel': 905989, 'fix fuel price': 309724, 'fuel price build': 340222, 'price build energy': 672966, 'build energy stability': 141969, 'energy stability fund': 276588, 'stability fund amid': 791812, 'fund amid 19': 341353, 'amid 19 crude': 52371, '19 crude collapse': 6365, 'bothered': 136137, 'finance minister': 306228, 'minister doesn': 533356, 'eat onion': 266003, 'onion so': 607738, 'not bothered': 568600, 'bothered about': 136138, 'price she': 676363, 'not suffering': 571796, 'would she': 1012235, 'she be': 755875, 'be bothered': 113889, 'finance minister doesn': 306229, 'minister doesn eat': 533357, 'doesn eat onion': 251762, 'eat onion so': 266004, 'onion so she': 607739, 'she is not': 756158, 'is not bothered': 450040, 'not bothered about': 568601, 'bothered about price': 136140, 'about price she': 25997, 'price she is': 676364, 'is not suffering': 450194, 'not suffering from': 571797, '19 so why': 10658, 'so why would': 778763, 'why would she': 991569, 'would she be': 1012236, 'she be bothered': 755876, 'stage if': 793189, 'government doe': 360035, 'not financially': 569414, 'financially support': 306688, 'need what': 556196, 'when thousand': 984317, 'left without': 485750, 'have grocery': 380843, 'store left': 808703, 'at even': 98559, 'have income': 381045, 'income onpoli': 432423, 'early stage if': 264700, 'stage if the': 793191, 'the government doe': 856528, 'government doe not': 360037, 'doe not financially': 251492, 'not financially support': 569415, 'financially support those': 306689, 'support those in': 826934, 'in need what': 425782, 'need what do': 556198, 'will happen when': 993605, 'happen when thousand': 377207, 'when thousand of': 984319, 'are left without': 87761, 'left without money': 485752, 'without money you': 1002789, 'money you will': 537200, 'will not have': 994228, 'not have grocery': 569837, 'have grocery store': 380845, 'grocery store left': 365518, 'store left to': 808704, 'left to shop': 485692, 'shop at even': 759943, 'at even if': 98560, 'even if you': 284224, 'to have income': 907259, 'have income onpoli': 381047, 'originally': 619593, 'the 3d': 848099, '3d of': 18243, 'of virus': 592822, 'in average': 420637, 'average grocery': 104846, 'with run': 1000526, 'run of': 727725, 'the mill': 860614, 'mill apparently': 531952, 'apparently aerosol': 81903, 'aerosol carrying': 33900, 'can remain': 159425, 'than originally': 840993, 'originally thought': 619602, 'thought gt': 893066, 'gt avoid': 367583, 'avoid busy': 105018, 'busy indoor': 144920, 'indoor space': 435363, 'for yr': 328247, 'yr own': 1027042, 'own good': 632020, 'see the 3d': 745807, 'the 3d of': 848101, '3d of virus': 18244, 'of virus spreading': 592830, 'virus spreading in': 958796, 'spreading in average': 790982, 'in average grocery': 420639, 'average grocery store': 104847, 'store with run': 811398, 'with run of': 1000527, 'run of the': 727727, 'of the mill': 591244, 'the mill apparently': 860615, 'mill apparently aerosol': 531953, 'apparently aerosol carrying': 81904, 'aerosol carrying the': 33901, 'carrying the can': 165217, 'the can remain': 850313, 'can remain in': 159426, 'remain in the': 709771, 'in the longer': 429330, 'the longer than': 859694, 'longer than originally': 502074, 'than originally thought': 840995, 'originally thought gt': 619603, 'thought gt avoid': 893067, 'gt avoid busy': 367584, 'avoid busy indoor': 105019, 'busy indoor space': 144921, 'indoor space for': 435364, 'space for yr': 787105, 'for yr own': 328248, 'yr own good': 1027043, 'worker share': 1007757, 'key worker share': 473510, 'worker share your': 1007760, 'share your coronavirus': 755373, 'your coronavirus experience': 1023350, 'grandpa': 361950, 'takecareofeachother': 832925, '84 grandpa': 22874, 'grandpa is': 361955, 'taking his': 833385, 'all healthy': 43082, 'responsibly self': 716111, 'young folk': 1022597, 'offer ride': 594769, 'ride etc': 721430, 'etc takecareofeachother': 282783, 'takecareofeachother cleveland': 832926, 'my 84 grandpa': 547198, '84 grandpa is': 22875, 'grandpa is taking': 361956, 'is taking his': 452545, 'taking his also': 833386, 'can all healthy': 157425, 'all healthy responsibly': 43083, 'healthy responsibly self': 387749, 'responsibly self isolating': 716112, 'self isolating young': 747749, 'isolating young folk': 455174, 'young folk get': 1022598, 'folk get on': 312163, 'get on and': 347696, 'on and the': 599375, 'and the like': 73448, 'the like to': 859371, 'to offer ride': 910846, 'offer ride etc': 594770, 'ride etc takecareofeachother': 721431, 'etc takecareofeachother cleveland': 282784, 'takecareofeachother cleveland thisisamess': 832927, 'matty': 520703, 'stanton': 793884, 'foodwaste': 318246, 'reducewaste': 706258, 'new on': 559193, 'the blog': 849774, 'blog panic': 132980, 'buying fighting': 150289, 'fighting food': 305067, 'waste amid': 968065, 'amid matty': 52530, 'matty stanton': 520704, 'stanton examines': 793885, 'uk food': 938364, 'chain read': 171028, 'here foodwaste': 392993, 'foodwaste reducewaste': 318260, 'reducewaste stayhomesavelives': 706259, 'stayhomesavelives uk': 798483, 'uk hospitality': 938454, 'new on the': 559197, 'on the blog': 603991, 'the blog panic': 849778, 'blog panic buying': 132981, 'panic buying fighting': 637730, 'buying fighting food': 150290, 'fighting food waste': 305068, 'food waste amid': 317468, 'waste amid matty': 968067, 'amid matty stanton': 52531, 'matty stanton examines': 520705, 'stanton examines the': 793886, 'the crisis on': 852421, 'crisis on uk': 217819, 'on uk food': 604947, 'uk food supply': 938370, 'supply chain read': 825016, 'chain read more': 171029, 'more here foodwaste': 539421, 'here foodwaste reducewaste': 392994, 'foodwaste reducewaste stayhomesavelives': 318261, 'reducewaste stayhomesavelives uk': 706260, 'stayhomesavelives uk hospitality': 798484, 'miss going': 534142, 'and offline': 68002, 'offline need': 596043, 'normal corona': 567121, 'corona ha': 203969, 'created such': 215896, 'such barrier': 816357, 'barrier public': 111363, 'transport just': 929900, 'just ain': 468174, 'ain it': 39632, 'already so': 47668, 'can enjoy': 158222, 'enjoy myself': 277155, 'myself man': 550906, 'man coronapocolypse': 512037, 'miss going shopping': 534144, 'going shopping online': 355452, 'online and offline': 607829, 'and offline need': 68003, 'offline need all': 596044, 'need all of': 554384, 'of this to': 592053, 'this to go': 890735, 'to normal corona': 910645, 'normal corona ha': 567122, 'corona ha created': 203971, 'ha created such': 370283, 'created such barrier': 215897, 'such barrier public': 816358, 'barrier public transport': 111364, 'public transport just': 688410, 'transport just ain': 929901, 'just ain it': 468175, 'ain it we': 39633, 'it we need': 462280, 'need this to': 555825, 'be done already': 114550, 'done already so': 254766, 'already so can': 47669, 'so can enjoy': 776709, 'can enjoy myself': 158224, 'enjoy myself man': 277156, 'myself man coronapocolypse': 550907, 'homequarantine': 402909, 'cleanlife': 181143, 'cleancity': 180700, 'cleanworld': 181199, 'stay clean': 796827, 'clean homequarantine': 180563, 'homequarantine earth': 402910, 'earth peace': 264997, 'peace mask': 646003, 'mask cleanlife': 518531, 'cleanlife cleancity': 181144, 'cleancity cleanworld': 180701, 'cleanworld stopthespread': 181200, 'stoppanicbuying designer': 805555, 'designer awareness': 238375, 'home stay clean': 402119, 'stay clean homequarantine': 796834, 'clean homequarantine earth': 180564, 'homequarantine earth peace': 402911, 'earth peace mask': 264998, 'peace mask cleanlife': 646004, 'mask cleanlife cleancity': 518532, 'cleanlife cleancity cleanworld': 181145, 'cleancity cleanworld stopthespread': 180702, 'cleanworld stopthespread stoppanicbuying': 181201, 'stopthespread stoppanicbuying designer': 805922, 'stoppanicbuying designer awareness': 805556, 'po3': 662140, 'premier shop': 669908, 'shop po3': 760672, 'po3 put': 662141, 'his beer': 397237, 'beer price': 122498, 'been regular': 121807, 'regular for': 707776, '20 yr': 13433, 'yr hope': 1027018, 'hope he': 403495, 'he get': 384980, 'get aid': 346514, 'premier shop po3': 669909, 'shop po3 put': 760673, 'po3 put his': 662142, 'put his beer': 690601, 'his beer price': 397238, 'beer price up': 122499, 'up ve been': 946516, 've been regular': 952923, 'been regular for': 121808, 'regular for 20': 707777, 'for 20 yr': 318737, '20 yr hope': 13434, 'yr hope he': 1027019, 'hope he get': 403496, 'he get aid': 384981, 'align': 41757, 'uncertainty small': 939759, 'small brand': 774821, 'brand and': 137724, 'are re': 89443, 'evaluating their': 283727, 'their go': 873413, 'better align': 128186, 'align with': 41760, 'current market': 221249, 'behavior could': 123991, 'could some': 209683, 'these strategy': 880750, 'strategy be': 812619, 'be helpful': 115206, 'helpful for': 391177, 'for growing': 322073, 'your brand': 1023012, 'of uncertainty small': 592601, 'uncertainty small brand': 939760, 'small brand and': 774822, 'brand and business': 137727, 'business are re': 143383, 'are re evaluating': 89444, 're evaluating their': 698626, 'evaluating their go': 283729, 'their go to': 873414, 'to market strategy': 909860, 'market strategy to': 517136, 'strategy to better': 812728, 'to better align': 901784, 'better align with': 128187, 'align with current': 41762, 'with current market': 997886, 'current market condition': 221251, 'market condition and': 516205, 'condition and consumer': 193395, 'consumer behavior could': 196463, 'behavior could some': 123992, 'could some of': 209685, 'of these strategy': 591861, 'these strategy be': 880751, 'strategy be helpful': 812620, 'be helpful for': 115209, 'helpful for growing': 391178, 'for growing your': 322074, 'growing your brand': 367263, 'releasing': 709114, 'owning': 632623, 'like guess': 490356, 'the console': 851469, 'console will': 195539, 'be releasing': 116768, 'releasing in': 709119, 'post or': 666267, 'or still': 617225, 'still ongoing': 800938, 'world not': 1009840, 'if most': 414425, 'it or': 460139, 'or feel': 615288, 'feel content': 302599, 'in owning': 426396, 'owning one': 632624, 'one depends': 606175, 'the release': 865477, 'release library': 708961, 'library and': 488059, 'whatever you like': 982820, 'you like guess': 1019607, 'like guess the': 490357, 'guess the console': 368048, 'the console will': 851470, 'console will be': 195540, 'will be releasing': 992639, 'be releasing in': 116769, 'releasing in post': 709120, 'in post or': 426863, 'post or still': 666268, 'or still ongoing': 617226, 'still ongoing covid': 800939, '19 world not': 12190, 'world not sure': 1009841, 'not sure if': 571840, 'sure if most': 827585, 'if most people': 414426, 'most people can': 542611, 'people can buy': 647382, 'can buy it': 157826, 'buy it or': 148859, 'it or feel': 460142, 'or feel content': 615289, 'feel content in': 302600, 'content in owning': 200812, 'in owning one': 426397, 'owning one depends': 632625, 'one depends on': 606176, 'depends on the': 237391, 'on the release': 604332, 'the release library': 865478, 'release library and': 708962, 'library and the': 488060, 'the consumer purchasing': 851581, 'consumer purchasing power': 198623, 'kid clean': 473902, 'after themselves': 36380, 'time make': 897179, 'them earn': 875640, 'earn their': 264815, 'toiletpaper parentinginapandemic': 922330, 'make your kid': 510760, 'your kid clean': 1024554, 'kid clean up': 473903, 'clean up after': 180670, 'up after themselves': 944230, 'after themselves when': 36381, 'themselves when they': 876938, 'they re home': 883053, 're home all': 698823, 'home all the': 400584, 'the time make': 869605, 'time make them': 897182, 'make them earn': 510604, 'them earn their': 875642, 'earn their toilet': 264816, 'paper toiletpaper parentinginapandemic': 640951, 'no consumer': 563880, 'buy ticket': 149370, 'ticket from': 895620, 'or they': 617424, 'situation putting': 772455, 'in vulnerable': 430632, 'vulnerable situation': 961167, 'is fraud': 447919, 'fraud 19': 331213, 'are no consumer': 88248, 'no consumer right': 563885, 'right when you': 722418, 'you buy ticket': 1017586, 'buy ticket from': 149371, 'ticket from or': 895622, 'from or they': 336716, 'or they are': 617425, 'the pandemic situation': 863096, 'pandemic situation putting': 636477, 'situation putting their': 772456, 'putting their customer': 691238, 'their customer in': 872953, 'customer in vulnerable': 222513, 'in vulnerable situation': 430634, 'vulnerable situation this': 961168, 'this is fraud': 888263, 'is fraud 19': 447920, 'piano': 655562, 'drum': 261198, 'studio': 814828, 'if trump': 415197, 'trump sends': 933836, 'sends 00': 750122, '00 relief': 463, 'check then': 174665, 'then already': 876983, 'the gear': 856198, 'gear wanted': 345007, 'wanted in': 966211, 'cart lol': 165330, 'lol let': 500919, 'get brand': 346709, 'brand new': 137927, 'new piano': 559272, 'piano drum': 655563, 'drum and': 261199, 'the studio': 868317, 'studio block': 814833, 'block haha': 132782, 'if trump sends': 415199, 'trump sends 00': 933837, 'sends 00 relief': 750123, '00 relief check': 464, 'relief check then': 709307, 'check then already': 174666, 'then already have': 876984, 'have the gear': 382989, 'the gear wanted': 856199, 'gear wanted in': 345008, 'wanted in the': 966212, 'in the online': 429418, 'shopping cart lol': 762305, 'cart lol let': 165331, 'lol let me': 500920, 'me get brand': 522803, 'get brand new': 346710, 'brand new piano': 137934, 'new piano drum': 559273, 'piano drum and': 655564, 'drum and buy': 261200, 'and buy up': 59356, 'buy up the': 149416, 'up the studio': 946222, 'the studio block': 868319, 'studio block haha': 814834, 'tumultuous': 935363, 'rocketing': 724966, 'set aside': 753343, 'aside supply': 95435, 'bank after': 109574, 'after tumultuous': 36458, 'tumultuous few': 935364, 'which several': 986310, 'several emergency': 753833, 'aid charity': 39365, 'charity closed': 173596, 'others struggled': 621674, 'meet rocketing': 527566, 'rocketing demand': 724967, 'people hit': 648261, 'the fallout': 854879, 'uk supermarket have': 938766, 'supermarket have been': 820679, 'asked to set': 95877, 'to set aside': 914288, 'set aside supply': 753348, 'aside supply for': 95437, 'supply for food': 825264, 'food bank after': 313512, 'bank after tumultuous': 109576, 'after tumultuous few': 36459, 'tumultuous few day': 935365, 'few day in': 303778, 'day in which': 227815, 'in which several': 430868, 'which several emergency': 986311, 'several emergency food': 753834, 'emergency food aid': 272698, 'food aid charity': 313065, 'aid charity closed': 39366, 'charity closed and': 173597, 'closed and others': 182994, 'and others struggled': 68461, 'others struggled to': 621675, 'struggled to meet': 814413, 'to meet rocketing': 910048, 'meet rocketing demand': 527567, 'rocketing demand from': 724968, 'demand from people': 235544, 'from people hit': 336880, 'people hit by': 648262, 'by the fallout': 154324, 'the fallout from': 854880, 'fallout from coronavirus': 297380, 'tuesdaythoughts be': 935217, 'careful shopping': 164429, 'are focusing': 86614, 'on fear': 600756, 'the these': 869430, 'these can': 879718, 'can include': 158739, 'include cure': 431545, 'cure there': 220825, 'isn one': 454604, 'one yet': 607535, 'yet equipment': 1016057, 'equipment such': 279835, 'such facemasks': 816486, 'facemasks which': 295178, 'which may': 986135, 'may never': 521360, 'never arrive': 557862, 'arrive and': 93900, 'more stay': 540451, 'on official': 602482, 'official site': 595928, 'be led': 115690, 'led off': 485249, 'off them': 594294, 'tuesdaythoughts be careful': 935218, 'be careful shopping': 113995, 'careful shopping online': 164430, 'online and scam': 607848, 'and scam that': 71033, 'that are focusing': 842751, 'are focusing on': 86615, 'focusing on fear': 311993, 'on fear over': 600761, 'over the these': 630777, 'the these can': 869431, 'these can include': 879720, 'can include cure': 158740, 'include cure there': 431546, 'cure there isn': 220827, 'there isn one': 878670, 'isn one yet': 454606, 'one yet equipment': 607536, 'yet equipment such': 1016058, 'equipment such facemasks': 279836, 'such facemasks which': 816487, 'facemasks which may': 295179, 'which may never': 986140, 'may never arrive': 521361, 'never arrive and': 557863, 'arrive and many': 93901, 'many more stay': 514315, 'more stay on': 540453, 'stay on official': 797145, 'on official site': 602484, 'official site do': 595929, 'site do not': 771906, 'not be led': 568412, 'be led off': 115691, 'led off them': 485250, 'essary': 280697, 're kind': 698967, 'of starting': 590049, 'starting all': 794936, 'over again': 629947, 'do co': 249191, 'owner tim': 632580, 'tim essary': 896152, 'essary said': 280698, 'said except': 731062, 'except now': 289206, 'sell toilet': 748922, 'we re kind': 972908, 're kind of': 698968, 'kind of starting': 474942, 'of starting all': 590050, 'starting all over': 794937, 'all over again': 43850, 'over again and': 629948, 'again and that': 36893, 'that the best': 846668, 'best thing we': 127930, 'can do co': 158098, 'do co owner': 249192, 'co owner tim': 184938, 'owner tim essary': 632581, 'tim essary said': 896153, 'essary said except': 280699, 'said except now': 731063, 'except now we': 289208, 'now we sell': 576354, 'we sell toilet': 973198, 'sell toilet paper': 748923, 'farmed': 299228, 'salmon': 732764, 'shrimp': 767679, 'iu49tbeund': 464037, 'news call': 560292, 'call global': 155913, 'global farmed': 351931, 'farmed salmon': 299229, 'salmon market': 732765, 'market disaster': 516294, 'disaster while': 244263, 'india there': 434643, 'is some': 452083, 'low shrimp': 505602, 'shrimp price': 767682, 'indeed they': 434015, 'have http': 380991, 'co iu49tbeund': 184864, 'latest news call': 481453, 'news call global': 560293, 'call global farmed': 155914, 'global farmed salmon': 351932, 'farmed salmon market': 299230, 'salmon market disaster': 732766, 'market disaster while': 516295, 'disaster while in': 244264, 'while in india': 986945, 'in india there': 424057, 'india there is': 434644, 'there is some': 878626, 'is some concern': 452086, 'about how low': 25452, 'how low shrimp': 408234, 'low shrimp price': 505603, 'shrimp price could': 767683, 'could fall and': 209162, 'fall and indeed': 296831, 'and indeed they': 65141, 'indeed they have': 434016, 'they have http': 882326, 'have http co': 380992, 'http co iu49tbeund': 409765, '2months': 16741, 'biko': 130442, 'pooh': 664006, 'can personally': 159224, 'personally have': 653031, 'been quarantined': 121759, 'almost 2months': 46496, '2months straight': 16742, 'straight and': 812200, 'still breathing': 800298, 'breathing this': 139249, 'this life': 888621, 'one biko': 606003, 'biko stay': 130445, 'indoors pooh': 435417, 'food and stay': 313344, 'and stay indoors': 72296, 'you can personally': 1017743, 'can personally have': 159225, 'personally have been': 653032, 'have been quarantined': 379650, 'been quarantined for': 121760, 'quarantined for almost': 692854, 'for almost 2months': 319209, 'almost 2months straight': 46497, '2months straight and': 16743, 'straight and still': 812201, 'and still breathing': 72368, 'still breathing this': 800299, 'breathing this life': 139250, 'this life is': 888623, 'life is only': 488815, 'only one biko': 610865, 'one biko stay': 606004, 'biko stay indoors': 130446, 'stay indoors pooh': 797080, 'country fighting': 210652, 'lady fight': 478759, 'country fighting for': 210653, 'fighting for medical': 305076, 'for medical supply': 323385, 'supply like lady': 825505, 'like lady fight': 490618, 'lady fight in': 478760, 'supermarket for toilet': 820427, 'my dollar': 548023, 'now charging': 574375, 'charging 25': 173445, '25 for': 15866, 'tissue that': 899217, 'normally okay': 567515, 'okay toiletpaper': 598028, 'so my dollar': 777834, 'my dollar store': 548024, 'dollar store is': 253084, 'is now charging': 450270, 'now charging 25': 574376, 'charging 25 for': 173446, '25 for pack': 15867, 'for pack of': 324347, 'of toilet tissue': 592254, 'toilet tissue that': 921647, 'tissue that is': 899218, 'that is normally': 844624, 'is normally okay': 450016, 'normally okay toiletpaper': 567516, 'cornfed': 203708, 'peru': 653293, 'dejected': 232603, 'cornfedinperu': 203712, 'cornfed and': 203709, 'in peru': 426656, 'peru no': 653296, 'no flight': 564229, 'flight no': 310512, 'no how': 564452, 'how dejected': 407674, 'dejected we': 232604, 'we return': 973099, 'their hotel': 873589, 'hotel the': 405204, 'news break': 560277, 'break that': 138799, 'the exception': 854670, 'exception of': 289274, 'doctor pharmacy': 251077, 'are required': 89611, 'inside cornfedinperu': 439248, 'cornfedinperu cornfed': 203713, 'cornfed peru': 203711, 'cornfed and covid': 203710, '19 in peru': 7775, 'in peru no': 426658, 'peru no flight': 653297, 'no flight no': 564231, 'flight no way': 310514, 'no way no': 565865, 'way no how': 969727, 'no how dejected': 564453, 'how dejected we': 407675, 'dejected we return': 232605, 'we return to': 973100, 'return to their': 719933, 'to their hotel': 917240, 'their hotel the': 873590, 'hotel the news': 405206, 'the news break': 861605, 'news break that': 560278, 'break that with': 138800, 'with the exception': 1001290, 'the exception of': 854671, 'exception of going': 289275, 'of going to': 584197, 'the doctor pharmacy': 853470, 'doctor pharmacy or': 251079, 'store we are': 811168, 'we are required': 970689, 'are required to': 89613, 'required to stay': 713409, 'to stay inside': 915296, 'stay inside cornfedinperu': 797096, 'inside cornfedinperu cornfed': 439249, 'cornfedinperu cornfed peru': 203714, 'news204': 560986, 'post for': 666130, 'on news204': 602395, 'new post for': 559323, 'post for lettuce': 666134, 'buying ha been': 150431, 'published on news204': 688678, 'tucson': 935070, 'in tucson': 430311, 'tucson are': 935071, 'are apparently': 84590, 'apparently desperate': 81929, 'desperate for': 238523, 'people in tucson': 648442, 'in tucson are': 430312, 'tucson are apparently': 935072, 'are apparently desperate': 84591, 'apparently desperate for': 81930, 'desperate for toiletpaper': 238530, 'for toiletpaper they': 327265, 'toiletpaper they could': 922609, 'they could just': 881832, 'could just stay': 209360, 'just stay home': 469887, 'stay home order': 796990, 'home order online': 401782, 'just afraid': 468168, 'afraid when': 35031, 'this decides': 887181, 'decides to': 230953, 'leave these': 484991, 'will too': 995212, 'too to': 925128, 'like gallon': 490292, 'gallon you': 343075, 'when everybody': 983394, 'station will': 796556, 'will scream': 994761, 'scream supply': 742641, 'just afraid when': 468169, 'afraid when this': 35032, 'when this decides': 984304, 'this decides to': 887182, 'decides to leave': 230955, 'to leave these': 909165, 'leave these price': 484994, 'these price at': 880525, 'pump will too': 689112, 'will too to': 995214, 'too to like': 925129, 'to like gallon': 909276, 'like gallon you': 490293, 'gallon you know': 343076, 'you know when': 1019542, 'know when everybody': 476997, 'when everybody can': 983395, 'everybody can get': 286420, 'get out the': 347747, 'out the station': 627421, 'the station will': 867835, 'station will scream': 796557, 'will scream supply': 994762, 'scream supply and': 742642, 'and demand and': 61138, 'demand and jack': 234977, 'commentary how': 188481, 'how switzerland': 408774, 'switzerland ended': 830604, 'second highest': 743734, 'highest coronavirus': 395816, 'infection rate': 436821, 'rate in': 697261, 'commentary how switzerland': 188482, 'how switzerland ended': 408775, 'switzerland ended up': 830605, 'ended up with': 276145, 'with the second': 1001470, 'the second highest': 866582, 'second highest coronavirus': 743735, 'highest coronavirus infection': 395817, 'coronavirus infection rate': 206139, 'infection rate in': 436823, 'rate in the': 697268, 'the sport': 867593, 'sport ban': 789901, 'ban just': 109213, 'just turn': 470149, 'early at': 264550, 'tomorrow live': 924120, 'live mma': 495922, 'mma coronacrisis': 534768, 'with the sport': 1001489, 'the sport ban': 867594, 'sport ban just': 789902, 'ban just turn': 109215, 'just turn up': 470150, 'turn up early': 935804, 'up early at': 944767, 'early at your': 264551, 'local supermarket tomorrow': 498604, 'supermarket tomorrow live': 823500, 'tomorrow live mma': 924121, 'live mma coronacrisis': 495923, 'seriously is': 751650, 'there shortage': 879040, 'paper where': 641086, 'are 19': 84107, 'but seriously is': 147014, 'seriously is there': 751651, 'is there shortage': 453032, 'there shortage of': 879042, 'toilet paper where': 921525, 'paper where you': 641087, 'you are 19': 1017046, 'coveryourface': 212520, 'weekly trip': 977586, 'store covered': 807211, 'covered my': 212434, 'same 19': 732947, '19 coveryourface': 6179, 'coveryourface socialdistancing': 212521, 'made my weekly': 507865, 'my weekly trip': 550567, 'weekly trip to': 977587, 'grocery store covered': 365311, 'store covered my': 807213, 'covered my face': 212435, 'my face for': 548156, 'face for myself': 294445, 'for myself and': 323763, 'myself and for': 550818, 'and for others': 63152, 'for others you': 324208, 'others you should': 621814, 'the same 19': 866191, 'same 19 coveryourface': 732948, '19 coveryourface socialdistancing': 6180, 'sewage': 754148, 'hsr': 409738, 'to water': 918396, 'water sewage': 969149, 'sewage worker': 754154, 'who remain': 989524, 'job so': 466158, 'have chance': 379925, 'practice adequate': 668519, 'adequate hygiene': 32170, 'hygiene to': 412183, 'pharmacist truck': 654186, 'driver doctor': 259513, 'nurse hsr': 577373, 'hsr delivery': 409739, 'you to water': 1021854, 'to water sewage': 918397, 'water sewage worker': 969150, 'sewage worker who': 754155, 'worker who remain': 1008224, 'who remain on': 989525, 'remain on the': 709796, 'the job so': 858672, 'job so that': 466160, 'we have chance': 971772, 'have chance to': 379927, 'chance to practice': 171811, 'to practice adequate': 911952, 'practice adequate hygiene': 668520, 'adequate hygiene to': 32171, 'hygiene to avoid': 412184, 'avoid the spread': 105334, 'clerk pharmacist truck': 181752, 'pharmacist truck driver': 654187, 'truck driver doctor': 932771, 'driver doctor nurse': 259514, 'doctor nurse hsr': 251022, 'nurse hsr delivery': 577374, 'hsr delivery driver': 409740, 'china cautious': 176547, 'cautious return': 168231, 'lockdown wuhan': 500171, 'china life': 176796, 'life asia': 488503, 'asia economy': 95170, 'economy business': 267716, 'consumer publichealth': 198603, 'publichealth vikez': 688546, 'vikez millennials': 957289, 'millennials genz': 532007, 'genz health': 345921, 'health news': 386666, 'wuhan china cautious': 1013466, 'china cautious return': 176548, 'cautious return to': 168232, 'normal after the': 567073, 'after the end': 36310, 'end of coronavirus': 275893, 'of coronavirus lockdown': 581949, 'coronavirus lockdown wuhan': 206257, 'lockdown wuhan china': 500172, 'wuhan china life': 1013469, 'china life asia': 176797, 'life asia economy': 488504, 'asia economy business': 95171, 'economy business consumer': 267718, 'business consumer publichealth': 143572, 'consumer publichealth vikez': 198604, 'publichealth vikez millennials': 688547, 'vikez millennials genz': 957290, 'millennials genz health': 532008, 'genz health news': 345922, 'horrific': 404155, 'grandesynthe': 361889, 'vigilante': 957263, 'and horrific': 64737, 'horrific headline': 404156, 'headline from': 385996, 'from grandesynthe': 335687, 'grandesynthe to': 361890, 'avoid tension': 105313, 'tension vigilante': 838002, 'vigilante and': 957264, 'police filter': 662992, 'filter migrant': 305772, 'migrant entrance': 531204, 'incredible and horrific': 433816, 'and horrific headline': 64738, 'horrific headline from': 404157, 'headline from grandesynthe': 385997, 'from grandesynthe to': 335688, 'grandesynthe to avoid': 361891, 'to avoid tension': 900946, 'avoid tension vigilante': 105315, 'tension vigilante and': 838003, 'vigilante and police': 957265, 'and police filter': 69158, 'police filter migrant': 662993, 'filter migrant entrance': 305773, 'migrant entrance to': 531205, 'be local': 115787, 'local to': 498649, 'doubled there': 256149, 'were plenty': 979981, 'plenty in': 660929, 'stock though': 802979, 'though still': 892894, 'other paper': 620642, 'so might': 777739, 'might wanna': 531163, 'wanna grab': 965641, 'grab egg': 361475, 'egg next': 269927, 'might just be': 531055, 'just be local': 468274, 'be local to': 115789, 'local to my': 498650, 'to my area': 910373, 'my area but': 547292, 'area but just': 91966, 'but just went': 146206, 'supermarket and because': 818939, 'because of egg': 119335, 'of egg price': 582999, 'have doubled there': 380354, 'doubled there were': 256150, 'there were plenty': 879329, 'were plenty in': 979982, 'plenty in stock': 660930, 'in stock though': 428338, 'stock though still': 802980, 'though still no': 892895, 'still no tp': 800883, 'no tp or': 565789, 'tp or other': 927896, 'or other paper': 616440, 'other paper product': 620644, 'paper product so': 640633, 'product so might': 681629, 'so might wanna': 777741, 'might wanna grab': 531164, 'wanna grab egg': 965642, 'grab egg next': 361476, 'egg next time': 269928, 'consumer opinion': 198271, 'opinion of': 613479, 'of socialmedia': 589865, 'socialmedia ha': 781086, 'ha declined': 370329, 'another shift': 77840, 'in thinking': 429890, 'thinking thanks': 885992, 'recent demand': 703879, 'digital connection': 242532, 'connection amid': 194693, 'amid socialdistancing': 52663, 'socialdistancing could': 780297, 'could positive': 209516, 'positive messaging': 665367, 'messaging and': 529508, 'and content': 60485, 'content bring': 200785, 'back consumer': 106933, 'consumer trust': 199397, 'consumer opinion of': 198274, 'opinion of socialmedia': 613480, 'of socialmedia ha': 589866, 'socialmedia ha declined': 781087, 'ha declined in': 370330, 'declined in recent': 231432, 'in recent year': 427322, 'recent year but': 704032, 'year but we': 1014451, 'but we could': 147743, 'we could see': 971217, 'could see another': 209630, 'see another shift': 744912, 'another shift in': 77841, 'shift in thinking': 758331, 'in thinking thanks': 429891, 'thinking thanks to': 885993, 'to the recent': 917008, 'the recent demand': 865305, 'recent demand for': 703880, 'demand for digital': 235404, 'for digital connection': 320708, 'digital connection amid': 242533, 'connection amid socialdistancing': 194694, 'amid socialdistancing could': 52664, 'socialdistancing could positive': 780298, 'could positive messaging': 209517, 'positive messaging and': 665368, 'messaging and content': 529509, 'and content bring': 60486, 'content bring back': 200786, 'bring back consumer': 139928, 'back consumer trust': 106936, 'lincoln': 492908, 'concern raise': 193060, 'raise demand': 695829, 'of lincoln': 585868, 'lincoln food': 492911, '19 concern raise': 5924, 'concern raise demand': 193061, 'raise demand of': 695831, 'demand of lincoln': 235951, 'of lincoln food': 585869, 'lincoln food bank': 492912, 'axiety': 106308, 'give everyone': 350476, 'everyone axiety': 286724, 'axiety right': 106309, 'now tp': 576219, 'how to give': 409027, 'to give everyone': 906684, 'give everyone axiety': 350478, 'everyone axiety right': 286725, 'axiety right now': 106310, 'right now tp': 722165, 'now tp toiletpaper': 576220, 'coronaquarantine': 205259, 'missyoudad': 534459, 'dad stop': 224382, 'hi while': 394769, 'while walking': 987531, 'walking home': 965055, 'store newnormal': 809062, 'newnormal coronaquarantine': 560137, 'coronaquarantine missyoudad': 205260, 'missyoudad new': 534460, 'york new': 1016641, 'dad stop by': 224383, 'stop by to': 804560, 'by to say': 154561, 'to say hi': 913822, 'say hi while': 738756, 'hi while walking': 394770, 'while walking home': 987534, 'walking home from': 965056, 'grocery store newnormal': 365590, 'store newnormal coronaquarantine': 809063, 'newnormal coronaquarantine missyoudad': 560138, 'coronaquarantine missyoudad new': 205261, 'missyoudad new york': 534461, 'new york new': 559942, 'york new york': 1016642, 'dontrunoutoftoiletpaper': 255394, 'dontneedatherapist': 255368, 'digiscrapthat': 242472, 'paper shirt': 640758, 'shirt via': 759025, 'via dontrunoutoftoiletpaper': 955929, 'dontrunoutoftoiletpaper toiletpaper': 255395, 'toiletpaper dontneedatherapist': 921922, 'dontneedatherapist pandemic': 255369, 'pandemic toiletpapershortage': 636823, 'toiletpapershortage digiscrapthat': 923318, 'do not run': 249833, 'not run out': 571408, 'toilet paper shirt': 921449, 'paper shirt via': 640760, 'shirt via dontrunoutoftoiletpaper': 759026, 'via dontrunoutoftoiletpaper toiletpaper': 955930, 'dontrunoutoftoiletpaper toiletpaper dontneedatherapist': 255396, 'toiletpaper dontneedatherapist pandemic': 921923, 'dontneedatherapist pandemic toiletpapershortage': 255370, 'pandemic toiletpapershortage digiscrapthat': 636824, 'judgement': 467653, 'iamdjblaque': 412542, 'iamlegend': 412545, 'in couple': 421835, 'couple week': 211703, 'week feel': 976207, 'feel this': 302900, 'how ll': 408178, 'supermarket practice': 822048, 'practice good': 668572, 'good judgement': 357301, 'judgement and': 467654, 'and proper': 69626, 'proper social': 684151, 'distancing iamdjblaque': 247206, 'iamdjblaque iamlegend': 412543, 'iamlegend will': 412546, 'in couple week': 421837, 'couple week feel': 211705, 'week feel this': 976209, 'feel this is': 302901, 'is how ll': 448584, 'how ll be': 408180, 'll be walking': 496645, 'be walking to': 118039, 'local supermarket practice': 498577, 'supermarket practice good': 822049, 'practice good judgement': 668575, 'good judgement and': 357302, 'judgement and proper': 467655, 'and proper social': 69629, 'proper social distancing': 684152, 'social distancing iamdjblaque': 779633, 'distancing iamdjblaque iamlegend': 247207, 'iamdjblaque iamlegend will': 412544, 'iamlegend will socialdistancing': 412547, 'mdoc': 522311, 'horhn': 404035, 'ms65': 544500, 'prisoner': 678751, 'inhuman': 438477, 'kw': 478021, 'ality': 41792, 'amplifier': 54896, 'msleg': 544542, 'finalize': 305911, '2123': 15063, 'mdoc horhn': 522312, 'horhn ms65': 404036, 'ms65 50': 544501, '50 brown': 19639, 'brown mississippi': 141242, 'mississippi prisoner': 534406, 'prisoner go': 678757, 'official food': 595809, 'water strike': 969176, 'strike on': 813755, '2020 to': 14661, 'protest against': 685909, 'pandemic amp': 634846, 'amp lack': 54057, 'of preventive': 588386, 'by mdoc': 153190, 'mdoc staff': 522314, 'shortage inhuman': 765027, 'inhuman living': 438480, 'living condition': 496329, 'condition poor': 193512, 'food quality': 316095, 'quality kw': 691813, 'kw ality': 478022, 'ality abuse': 41793, 'abuse amplifier': 27614, 'amplifier question': 54901, 'question msleg': 693656, 'msleg finalize': 544543, 'finalize amplifier': 305914, 'amplifier enact': 54897, 'enact sb': 275493, 'sb 2123': 739785, 'mdoc horhn ms65': 522313, 'horhn ms65 50': 404037, 'ms65 50 brown': 544502, '50 brown mississippi': 19640, 'brown mississippi prisoner': 141243, 'mississippi prisoner go': 534408, 'prisoner go on': 678758, 'go on official': 353888, 'on official food': 602483, 'official food and': 595811, 'and water strike': 75256, 'water strike on': 969178, 'strike on april': 813756, 'on april 2020': 599438, 'april 2020 to': 83478, '2020 to protest': 14664, 'to protest against': 912358, 'protest against the': 685910, 'against the covid': 37651, '19 pandemic amp': 9263, 'pandemic amp lack': 634849, 'amp lack of': 54058, 'lack of preventive': 478647, 'of preventive measure': 588387, 'preventive measure taken': 671925, 'taken by mdoc': 832971, 'by mdoc staff': 153191, 'mdoc staff shortage': 522315, 'staff shortage inhuman': 792854, 'shortage inhuman living': 765028, 'inhuman living condition': 438481, 'living condition poor': 496331, 'condition poor food': 193513, 'poor food quality': 664175, 'food quality kw': 316096, 'quality kw ality': 691814, 'kw ality abuse': 478023, 'ality abuse amplifier': 41794, 'abuse amplifier question': 27615, 'amplifier question msleg': 54902, 'question msleg finalize': 693657, 'msleg finalize amplifier': 544545, 'finalize amplifier enact': 305915, 'amplifier enact sb': 54898, 'enact sb 2123': 275494, 'donators': 254740, 'native': 552777, 'chickasaw': 175725, 'hardman': 378265, 'supply asap': 824802, 'asap any': 94861, 'any donators': 79135, 'donators are': 254741, 'are encouraged': 86193, 'contact this': 200239, 'this native': 889088, 'native american': 552778, 'company chickasaw': 190546, 'chickasaw rep': 175726, 'rep jason': 711419, 'jason hardman': 464842, 'hardman com': 378266, 'com they': 186958, 'plenty bed': 660907, 'bed and': 120378, 'gallon coronavirus': 342991, 'america need supply': 51622, 'need supply asap': 555676, 'supply asap any': 824803, 'asap any donators': 94862, 'any donators are': 79136, 'donators are encouraged': 254742, 'are encouraged to': 86194, 'encouraged to contact': 275664, 'to contact this': 903359, 'contact this native': 200240, 'this native american': 889089, 'native american company': 552779, 'american company chickasaw': 51876, 'company chickasaw rep': 190547, 'chickasaw rep jason': 175727, 'rep jason hardman': 711420, 'jason hardman com': 464843, 'hardman com they': 378267, 'com they have': 186959, 'they have plenty': 882364, 'have plenty bed': 381964, 'plenty bed and': 660908, 'bed and hand': 120381, 'sanitizer by the': 734624, 'the gallon coronavirus': 856112, 'goodfriday': 358016, 'easterweekend': 265614, 'reminder it': 710565, 'friday not': 333265, 'just any': 468205, 'any friday': 79253, 'friday it': 333243, 'friday have': 333231, 'wonderful easter': 1004077, 'weekend you': 977460, 'you move': 1019898, 'move from': 543651, 'from room': 337127, 'room to': 725978, 'to room': 913633, 'room at': 725886, 'an exciting': 55923, 'exciting trip': 289611, 'supermarket thrown': 823334, 'thrown in': 895135, 'good measure': 357378, 'measure stay': 525341, 'safe good': 729719, 'good goodfriday': 357139, 'goodfriday 19': 358017, '19 easterweekend': 6690, 'easterweekend stayhomesavelives': 265621, 'daily reminder it': 224776, 'reminder it friday': 710566, 'it friday not': 458141, 'friday not just': 333266, 'not just any': 570212, 'just any friday': 468206, 'any friday it': 79254, 'friday it good': 333244, 'it good friday': 458297, 'good friday have': 357101, 'friday have wonderful': 333233, 'have wonderful easter': 383619, 'wonderful easter weekend': 1004078, 'easter weekend you': 265527, 'weekend you move': 977462, 'you move from': 1019899, 'move from room': 543656, 'from room to': 337128, 'room to room': 725981, 'to room at': 913634, 'room at home': 725887, 'home with an': 402517, 'with an exciting': 997212, 'an exciting trip': 55925, 'exciting trip to': 289613, 'the supermarket thrown': 868858, 'supermarket thrown in': 823335, 'thrown in for': 895136, 'in for good': 423015, 'for good measure': 321936, 'good measure stay': 357379, 'measure stay safe': 525342, 'stay safe good': 797239, 'safe good goodfriday': 729720, 'good goodfriday 19': 357140, 'goodfriday 19 easterweekend': 358018, '19 easterweekend stayhomesavelives': 6691, 'at current': 98388, 'price add': 672218, 'at current price': 98391, 'current price add': 221309, 'mobie': 534923, 'genie': 345751, 'folding': 312074, '2299': 15325, '2699': 16234, 'also negotiated': 48558, 'negotiated better': 556920, 'the reduced': 865393, 'reduced travel': 706205, 'the mobie': 860711, 'mobie and': 534924, 'and genie': 63526, 'genie folding': 345754, 'folding mobility': 312075, 'mobility scooter': 535089, 'scooter have': 742324, 'reduced to': 706193, 'to 2299': 899618, '2299 2699': 15326, '2699 respectively': 16235, 'respectively find': 715166, 'news we have': 560954, 'have also negotiated': 379216, 'also negotiated better': 48559, 'negotiated better price': 556921, 'better price in': 128426, 'price in light': 674704, 'of the reduced': 591397, 'the reduced travel': 865396, 'reduced travel demand': 706207, 'travel demand caused': 930333, 'caused by covid': 167835, '19 the price': 11236, 'price of the': 675584, 'of the mobie': 591246, 'the mobie and': 860712, 'mobie and genie': 534925, 'and genie folding': 63528, 'genie folding mobility': 345755, 'folding mobility scooter': 312076, 'mobility scooter have': 535090, 'scooter have now': 742325, 'now been reduced': 574228, 'been reduced to': 121800, 'reduced to 2299': 706194, 'to 2299 2699': 899619, '2299 2699 respectively': 15327, '2699 respectively find': 16236, 'respectively find out': 715167, 'on the look': 604221, 'the look out': 859708, 'out for covid': 626106, 'rizk': 724230, 'zouzou': 1027875, 'shakib': 754459, '1946': 12369, 'dir': 243239, 'hassan': 378811, 'imam': 416861, 'samir': 733440, 'farid': 299060, 'archive': 84058, 'amina rizk': 52846, 'rizk and': 724231, 'and zouzou': 76124, 'zouzou shakib': 1027876, 'shakib demonstrate': 754460, 'demonstrate proper': 236837, 'proper queuing': 684145, 'queuing etiquette': 694205, 'etiquette at': 283150, 'socialdistancing image': 780439, 'image from': 416629, 'from angel': 334532, 'hell 1946': 388975, '1946 dir': 12370, 'dir hassan': 243242, 'hassan al': 378812, 'al imam': 40574, 'imam from': 416862, 'the samir': 866326, 'samir farid': 733441, 'farid collection': 299061, 'collection archive': 186402, 'archive egypt': 84059, 'egypt film': 270104, 'amina rizk and': 52847, 'rizk and zouzou': 724232, 'and zouzou shakib': 76125, 'zouzou shakib demonstrate': 1027877, 'shakib demonstrate proper': 754461, 'demonstrate proper queuing': 236838, 'proper queuing etiquette': 684146, 'queuing etiquette at': 694206, 'etiquette at the': 283151, 'the supermarket socialdistancing': 868811, 'supermarket socialdistancing image': 822756, 'socialdistancing image from': 780440, 'image from angel': 416630, 'from angel in': 334533, 'angel in hell': 76312, 'in hell 1946': 423624, 'hell 1946 dir': 388976, '1946 dir hassan': 12371, 'dir hassan al': 243243, 'hassan al imam': 378813, 'al imam from': 40575, 'imam from the': 416863, 'from the samir': 337869, 'the samir farid': 866327, 'samir farid collection': 733442, 'farid collection archive': 299062, 'collection archive egypt': 186403, 'archive egypt film': 84060, 'brookside': 141011, '1litre': 12640, 'maize': 509193, 'conned': 194739, 'so brookside': 776652, 'brookside buy': 141012, 'buy 1litre': 148250, '1litre of': 12641, 'milk from': 531681, 'farmer at': 299304, 'about 35': 24703, '35 remove': 17915, 'remove fat': 710824, 'fat to': 300217, 'make ghee': 509936, 'ghee butter': 349633, 'butter and': 148122, 'back water': 107449, 'water of': 969074, 'of 1litre': 579440, '1litre same': 12643, 'same happens': 733097, 'happens for': 377463, 'for maize': 323161, 'maize and': 509194, 'and wheat': 75502, 'wheat kenyan': 982994, 'kenyan so': 472988, 'your leader': 1024599, 'always get': 49569, 'get conned': 346805, 'so brookside buy': 776653, 'brookside buy 1litre': 141013, 'buy 1litre of': 148251, '1litre of milk': 12642, 'of milk from': 586510, 'milk from farmer': 531682, 'from farmer at': 335416, 'farmer at about': 299305, 'at about 35': 97833, 'about 35 remove': 24705, '35 remove fat': 17916, 'remove fat to': 710825, 'fat to make': 300218, 'to make ghee': 909668, 'make ghee butter': 509937, 'ghee butter and': 349634, 'butter and give': 148124, 'give you back': 350851, 'you back water': 1017370, 'back water of': 107450, 'water of 1litre': 969075, 'of 1litre same': 579441, '1litre same happens': 12644, 'same happens for': 733098, 'happens for maize': 377464, 'for maize and': 323162, 'maize and wheat': 509196, 'and wheat kenyan': 75505, 'wheat kenyan so': 982995, 'kenyan so long': 472989, 'so long your': 777591, 'long your leader': 501883, 'your leader are': 1024600, 'leader are in': 483426, 'are in business': 87358, 'in business with': 421087, 'business with we': 144709, 'with we will': 1002044, 'we will always': 973834, 'will always get': 992274, 'always get conned': 49570, 'stopwastingtests': 805946, 'testgrocerystoreworkers': 839401, 'get smart': 348023, 'start testing': 794542, 'testing grocery': 839502, 'high exposure': 395068, 'one asymptomatic': 605961, 'asymptomatic worker': 97339, 'can infect': 158742, 'infect thousand': 436513, 'day forget': 227642, 'forget testing': 329287, 'testing traveler': 839683, 'traveler and': 930614, 'the already': 848596, 'can isolate': 158772, 'isolate stopwastingtests': 454917, 'stopwastingtests testgrocerystoreworkers': 805947, 'get smart and': 348024, 'smart and start': 775341, 'and start testing': 72249, 'start testing grocery': 794545, 'testing grocery store': 839503, 'worker now they': 1007461, 'they have high': 882325, 'have high exposure': 380941, 'high exposure and': 395069, 'exposure and just': 292957, 'and just one': 65710, 'just one asymptomatic': 469371, 'one asymptomatic worker': 605962, 'asymptomatic worker can': 97340, 'worker can infect': 1006589, 'can infect thousand': 158744, 'infect thousand in': 436514, 'thousand in day': 893401, 'in day forget': 422010, 'day forget testing': 227643, 'forget testing traveler': 329288, 'testing traveler and': 839684, 'traveler and the': 930615, 'and the already': 73240, 'the already sick': 848598, 'already sick they': 47661, 'sick they can': 768630, 'they can isolate': 881640, 'can isolate stopwastingtests': 158773, 'isolate stopwastingtests testgrocerystoreworkers': 454918, 'fifth': 304561, 'yes dr': 1015419, 'dr dr': 258001, 'dr is': 258034, 'me sane': 523413, 'sane how': 733759, 'how dare': 407666, 'dare they': 225930, 'they fail': 882088, 'to screen': 913931, 'screen it': 742704, 'wednesday night': 975666, 'night in': 563013, 'in favour': 422804, 'favour of': 300571, '19 piece': 9680, 'piece am': 656263, 'still recovering': 801104, 'recovering from': 705260, 'my fifth': 548311, 'fifth supermarket': 304574, 'shop without': 761068, 'seeing toilet': 746521, 'yes dr dr': 1015420, 'dr dr is': 258002, 'dr is keeping': 258036, 'is keeping me': 449173, 'keeping me sane': 472478, 'me sane how': 523414, 'sane how dare': 733760, 'how dare they': 407667, 'dare they fail': 225931, 'they fail to': 882089, 'fail to screen': 296113, 'to screen it': 913932, 'screen it last': 742705, 'it last wednesday': 459306, 'last wednesday night': 480622, 'wednesday night in': 975668, 'night in favour': 563014, 'in favour of': 422805, 'favour of covid': 300572, 'covid 19 piece': 213580, '19 piece am': 9681, 'piece am still': 656264, 'am still recovering': 50434, 'still recovering from': 801105, 'recovering from my': 705263, 'from my fifth': 336507, 'my fifth supermarket': 548312, 'fifth supermarket shop': 304575, 'supermarket shop without': 822601, 'shop without seeing': 761074, 'without seeing toilet': 1002905, 'seeing toilet roll': 746522, 'sumer': 817897, 'previous': 671955, 'hemisphere': 391688, 'so hearing': 777282, 'hearing many': 388214, 'many myth': 514329, 'myth about': 551043, 'about 19': 24657, 'quickly clear': 694499, 'record coronavirus': 704921, 'in sumer': 428536, 'sumer month': 817898, 'month wrong': 538148, 'wrong previous': 1013087, 'previous pandemic': 671987, 'pandemic didn': 635302, 'didn follow': 241063, 'follow weather': 312583, 'weather pattern': 974886, 'pattern plus': 644495, 'plus we': 661714, 'we enter': 971466, 'enter summer': 278293, 'summer there': 818015, 'be winter': 118106, 'winter in': 996129, 'the southern': 867516, 'southern hemisphere': 786858, 'hemisphere virus': 391689, 'so hearing many': 777283, 'hearing many myth': 388215, 'many myth about': 514330, 'myth about 19': 551044, 'about 19 and': 24658, '19 and would': 5142, 'like to quickly': 491614, 'to quickly clear': 912679, 'quickly clear the': 694500, 'clear the record': 181362, 'the record coronavirus': 865360, 'record coronavirus will': 704923, 'coronavirus will go': 207085, 'go away in': 353328, 'away in sumer': 105950, 'in sumer month': 428537, 'sumer month wrong': 817899, 'month wrong previous': 538149, 'wrong previous pandemic': 1013088, 'previous pandemic didn': 671988, 'pandemic didn follow': 635303, 'didn follow weather': 241064, 'follow weather pattern': 312584, 'weather pattern plus': 974887, 'pattern plus we': 644496, 'plus we enter': 661715, 'we enter summer': 971468, 'enter summer there': 278294, 'summer there will': 818016, 'will be winter': 992772, 'be winter in': 118107, 'winter in the': 996130, 'in the southern': 429555, 'the southern hemisphere': 867517, 'southern hemisphere virus': 786859, 'hemisphere virus is': 391690, 'virus is global': 958374, 'coastal': 185125, 'holidaymaker': 400397, 'victorian': 956555, 'in coastal': 421528, 'coastal community': 185126, 'already being': 47229, 'being inundated': 125333, 'with holidaymaker': 998859, 'holidaymaker from': 400400, 'from melbourne': 336414, 'melbourne in': 527933, 'advance of': 32906, 'the victorian': 870732, 'victorian school': 956558, 'school holiday': 741819, 'holiday which': 400382, 'will ultimately': 995263, 'ultimately put': 939152, 'put strain': 690838, 'our already': 622054, 'already strained': 47684, 'strained supermarket': 812323, 'not staying': 571709, 'live in coastal': 495853, 'in coastal community': 421529, 'coastal community and': 185127, 'we are already': 970474, 'are already being': 84400, 'already being inundated': 47231, 'being inundated with': 125334, 'inundated with holidaymaker': 443548, 'with holidaymaker from': 998860, 'holidaymaker from melbourne': 400401, 'from melbourne in': 336415, 'melbourne in advance': 527934, 'in advance of': 420057, 'advance of the': 32908, 'of the victorian': 591589, 'the victorian school': 870733, 'victorian school holiday': 956559, 'school holiday which': 741821, 'holiday which will': 400383, 'which will ultimately': 986509, 'will ultimately put': 995265, 'ultimately put strain': 939153, 'put strain on': 690839, 'strain on our': 812292, 'on our already': 602573, 'our already strained': 622055, 'already strained supermarket': 47686, 'strained supermarket supply': 812324, 'supermarket supply this': 823054, 'supply this is': 825987, 'is not staying': 450191, 'foodhall': 317927, 'stayingopen': 798744, 'stayingassafeaswecan': 798731, 'of shitty': 589608, 'shitty day': 759374, 'frontline keyworker': 338771, 'keyworker corona': 473577, 'corona foodhall': 203947, 'foodhall supermarket': 317932, 'supermarket stayingopen': 822945, 'stayingopen stayingassafeaswecan': 798745, 'stayingassafeaswecan belfast': 798732, 'bit of shitty': 131662, 'of shitty day': 589609, 'shitty day at': 759375, 'the frontline keyworker': 855875, 'frontline keyworker corona': 338772, 'keyworker corona foodhall': 473578, 'corona foodhall supermarket': 203948, 'foodhall supermarket stayingopen': 317933, 'supermarket stayingopen stayingassafeaswecan': 822946, 'stayingopen stayingassafeaswecan belfast': 798746, 'shapiro': 754892, 'coalition': 185077, 'general shapiro': 345470, 'shapiro led': 754893, 'led coalition': 485225, 'coalition of': 185080, '23 attorney': 15378, 'general to': 345489, 'bureau enforce': 142782, 'enforce the': 276687, 'and require': 70287, 'require credit': 713303, 'credit reporting': 216487, 'reporting agency': 712663, 'the fair': 854851, 'fair credit': 296327, 'reporting act': 712661, 'act during': 29630, 'attorney general shapiro': 102657, 'general shapiro led': 345471, 'shapiro led coalition': 754894, 'led coalition of': 485226, 'coalition of 23': 185081, 'of 23 attorney': 579527, '23 attorney general': 15379, 'attorney general to': 102659, 'general to demand': 345490, 'to demand the': 904161, 'demand the consumer': 236346, 'protection bureau enforce': 685361, 'bureau enforce the': 142783, 'enforce the care': 276688, 'care act and': 163815, 'act and require': 29598, 'and require credit': 70288, 'require credit reporting': 713304, 'credit reporting agency': 216489, 'reporting agency to': 712664, 'agency to follow': 38088, 'follow the fair': 312524, 'the fair credit': 854852, 'fair credit reporting': 296328, 'credit reporting act': 216488, 'reporting act during': 712662, 'act during the': 29631, 'angie': 76420, 'kim': 474760, 'volunteered': 960381, 'humiliation': 410846, 'enduring': 276324, 'angie kim': 76421, 'kim is': 474763, 'is loblaw': 449416, 'loblaw executive': 497614, 'executive who': 289952, 'who volunteered': 989892, 'volunteered to': 960384, 'month she': 537996, 'been shocked': 121947, 'little humiliation': 495392, 'humiliation and': 410847, 'and cruel': 60773, 'cruel comment': 219671, 'comment that': 188458, 'that clerk': 843245, 'are enduring': 86207, 'enduring every': 276329, 'angie kim is': 76422, 'kim is loblaw': 474764, 'is loblaw executive': 449417, 'loblaw executive who': 497615, 'executive who volunteered': 289953, 'who volunteered to': 989893, 'volunteered to work': 960387, 'work in store': 1005345, 'crisis for the': 217394, 'last month she': 480340, 'month she been': 537997, 'she been shocked': 755886, 'been shocked by': 121948, 'by the little': 154365, 'the little humiliation': 859488, 'little humiliation and': 495393, 'humiliation and cruel': 410848, 'and cruel comment': 60774, 'cruel comment that': 219672, 'comment that clerk': 188459, 'that clerk are': 843246, 'clerk are enduring': 181654, 'are enduring every': 86208, 'enduring every day': 276330, 'every day in': 285820, 'middle of all': 530670, 'of all this': 579986, '2metres': 16735, 'nobogroll': 566090, 'coughonmeandillnutya': 208783, 'uk closing': 938249, 'closing because': 183597, 'poor sap': 664282, 'sap that': 736680, 'supermarket 2metres': 818749, '2metres nobogroll': 16736, 'nobogroll coughonmeandillnutya': 566091, 'these company in': 879789, 'the uk closing': 870201, 'uk closing because': 938250, 'closing because of': 183598, 'and the poor': 73517, 'the poor sap': 863987, 'poor sap that': 664283, 'sap that work': 736681, 'in supermarket 2metres': 428553, 'supermarket 2metres nobogroll': 818750, '2metres nobogroll coughonmeandillnutya': 16737, 'hi well': 394767, 'facing challenge': 295423, 'challenge related': 171540, 'need assistance': 554483, 'assistance qualified': 96735, 'qualified specialist': 691706, 'consumer small': 199003, 'deposit loan': 237504, 'loan product': 497509, 'hi well fargo': 394768, 'helping customer facing': 391301, 'customer facing challenge': 222371, 'facing challenge related': 295425, 'challenge related to': 171541, 'know need assistance': 476619, 'need assistance qualified': 554488, 'assistance qualified specialist': 96736, 'qualified specialist are': 691708, 'discus consumer small': 244842, 'consumer small business': 199005, 'and deposit loan': 61226, 'deposit loan product': 237505, 'loan product at': 497510, 'mtr': 544647, 'cannot everyone': 161805, 'everyone obey': 287219, 'supermarket could': 819824, 'it any': 456539, 'any easier': 79153, 'easier way': 265166, 'way aisle': 969439, 'aisle mtr': 40311, 'mtr marker': 544648, 'marker both': 515879, 'both of': 135984, 'often ignored': 596212, 'ignored come': 415870, 'people these': 649810, 'life let': 488844, 'safe 19': 729403, 'why cannot everyone': 990871, 'cannot everyone obey': 161806, 'everyone obey the': 287220, 'obey the shopping': 578392, 'the shopping rule': 867074, 'shopping rule the': 763787, 'rule the supermarket': 727376, 'the supermarket could': 868537, 'supermarket could not': 819827, 'could not make': 209449, 'not make it': 570496, 'make it any': 510020, 'it any easier': 456540, 'any easier way': 79154, 'easier way aisle': 265167, 'way aisle mtr': 969442, 'aisle mtr marker': 40312, 'mtr marker both': 544649, 'marker both of': 515880, 'both of which': 135987, 'which are often': 985692, 'are often ignored': 88690, 'often ignored come': 596213, 'ignored come on': 415871, 'on people these': 602755, 'people these supermarket': 649813, 'these supermarket worker': 880778, 'worker are key': 1006401, 'key to our': 473439, 'to our life': 911203, 'our life let': 623727, 'life let help': 488845, 'help keep them': 389976, 'keep them all': 472102, 'them all safe': 875349, 'all safe 19': 44222, 'davy': 227030, 'will davy': 993096, 'davy said': 227031, 'said at': 730985, 'one point': 606894, 'point last': 662538, 'month their': 538050, 'service wa': 753046, 'wa up': 963612, 'up 70': 944200, '70 compared': 21745, 'time last': 897112, 'year some': 1014964, 'business saw': 144344, 'saw an': 738056, 'uptick due': 947903, 'ceo will davy': 169888, 'will davy said': 993097, 'davy said at': 227032, 'said at one': 730986, 'at one point': 99970, 'one point last': 606896, 'point last month': 662539, 'last month their': 480345, 'month their service': 538051, 'their service wa': 874667, 'service wa up': 753047, 'wa up 70': 963614, 'up 70 compared': 944201, '70 compared to': 21746, 'same time last': 733360, 'time last year': 897113, 'last year some': 480734, 'year some business': 1014965, 'some business saw': 782451, 'business saw an': 144345, 'saw an uptick': 738061, 'an uptick due': 56948, 'uptick due to': 947904, 'apple is': 82332, 'considering delay': 195371, 'delay to': 232752, 'it iphone': 458844, 'iphone launch': 444573, 'launch by': 481870, 'by month': 153239, 'month because': 537603, 'of issue': 585354, 'and aftermath': 57764, 'aftermath there': 36665, 'would entertain': 1011790, 'entertain moving': 278510, 'moving forward': 544145, 'forward right': 330008, 'apple is considering': 82333, 'is considering delay': 446757, 'considering delay to': 195372, 'delay to it': 232753, 'to it iphone': 908588, 'it iphone launch': 458845, 'iphone launch by': 444574, 'launch by month': 481871, 'by month because': 153240, 'month because of': 537604, 'because of issue': 119361, 'of issue related': 585355, 'related to consumer': 708597, 'to consumer demand': 903288, '19 coronavirus crisis': 6098, 'crisis and aftermath': 217010, 'and aftermath there': 57765, 'aftermath there is': 36666, 'is no way': 449989, 'no way they': 565871, 'way they would': 969968, 'they would entertain': 883939, 'would entertain moving': 1011791, 'entertain moving forward': 278511, 'moving forward right': 544148, 'forward right now': 330009, 'binge shopping': 131083, 'online quarantinelife': 608837, 'binge shopping online': 131084, 'shopping online quarantinelife': 763471, 'dearcustomer': 229927, 'ha arrow': 369622, 'reason follow': 702897, 'them then': 876403, 'then people': 877413, 'you dirty': 1018227, 'look staythefhome': 502601, 'staythefhome dearcustomer': 799060, 'if the grocery': 414982, 'store ha arrow': 807996, 'ha arrow on': 369624, 'the ground for': 856848, 'ground for reason': 366498, 'for reason follow': 324999, 'reason follow them': 702898, 'follow them then': 312551, 'them then people': 876404, 'then people will': 877415, 'will not give': 994225, 'not give you': 569648, 'give you dirty': 350854, 'you dirty look': 1018228, 'dirty look staythefhome': 243763, 'look staythefhome dearcustomer': 502602, 'to dc': 903961, 'dc for': 228949, 'for vote': 327593, 'vote this': 960512, 'week on': 976663, 'on regular': 603125, 'regular sunday': 707877, 'sunday this': 818280, 'this plane': 889603, 'plane is': 658384, 'is usually': 453638, 'usually completely': 951104, 'completely full': 192294, 'full congress': 340537, 'congress must': 194511, 'act quickly': 29748, 'quickly to': 694621, 'to rescue': 913324, 'rescue our': 713626, 'our tourism': 625173, 'industry small': 436115, 'business american': 143270, 'headed to dc': 385917, 'to dc for': 903962, 'dc for vote': 228950, 'for vote this': 327594, 'vote this week': 960513, 'this week on': 891243, 'week on regular': 976674, 'on regular sunday': 603127, 'regular sunday this': 707878, 'sunday this plane': 818281, 'this plane is': 889604, 'plane is usually': 658385, 'is usually completely': 453642, 'usually completely full': 951105, 'completely full congress': 192295, 'full congress must': 340538, 'congress must act': 194512, 'must act quickly': 546455, 'act quickly to': 29750, 'quickly to rescue': 694629, 'to rescue our': 913327, 'rescue our tourism': 713627, 'our tourism industry': 625174, 'tourism industry small': 926992, 'industry small business': 436116, 'small business american': 774835, 'business american in': 143271, 'american in need': 52046, 'sightx': 769075, 'automatingcuriosity': 104008, 'another piece': 77759, 'piece in': 656312, 'consumer psychology': 198594, 'psychology puzzle': 687579, 'puzzle trying': 691339, 'the changing': 850678, 'changing consumption': 172680, 'spending pattern': 788944, 'pattern during': 644461, '19 sightx': 10541, 'sightx automatingcuriosity': 769076, 'automatingcuriosity mrx': 104009, 'consumerinsights insight': 199700, 'insight analytics': 439505, 'another piece in': 77760, 'piece in the': 656314, 'the consumer psychology': 851580, 'consumer psychology puzzle': 198601, 'psychology puzzle trying': 687580, 'puzzle trying to': 691340, 'trying to understand': 934895, 'understand the changing': 940748, 'the changing consumption': 850680, 'changing consumption and': 172681, 'consumption and spending': 199833, 'and spending pattern': 72094, 'spending pattern during': 788948, 'pattern during and': 644462, 'and after covid': 57753, 'covid 19 sightx': 213802, '19 sightx automatingcuriosity': 10542, 'sightx automatingcuriosity mrx': 769077, 'automatingcuriosity mrx marketresearch': 104010, 'marketresearch consumerinsights insight': 517854, 'consumerinsights insight analytics': 199701, 'shedding': 756525, 'catchup the': 167140, 'amp 500': 53338, '500 future': 19991, 'future rise': 342447, 'oil benchmark': 596650, 'benchmark are': 126830, 'are sea': 89874, 'of red': 588853, 'red with': 705632, 'with down': 998128, 'down more': 256961, 'than shedding': 841133, 'shedding of': 756528, 'it value': 462013, 'value watch': 952230, 'watch these': 968564, 'news catchup the': 560301, 'catchup the amp': 167141, 'the amp 500': 848656, 'amp 500 future': 53341, '500 future rise': 19992, 'future rise oil': 342448, 'rise oil benchmark': 722956, 'oil benchmark are': 596651, 'benchmark are sea': 126831, 'are sea of': 89875, 'sea of red': 743100, 'of red with': 588857, 'red with down': 705633, 'with down more': 998129, 'down more than': 256963, 'more than shedding': 540674, 'than shedding of': 841134, 'shedding of it': 756529, 'of it value': 585461, 'it value watch': 462016, 'value watch these': 952231, 'watch these price': 968565, 'these price read': 880539, 'price read the': 676101, 'core': 203516, 'who faced': 988722, 'faced financial': 295017, 'financial housing': 306444, 'housing and': 407050, 'food instability': 315083, 'instability in': 439893, 'in college': 421551, 'college the': 186653, 'my summer': 550259, 'summer employment': 817971, 'employment is': 274617, 'longer guaranteed': 501983, 'guaranteed at': 367739, 'is frightening': 447937, 'frightening shake': 334066, 'shake me': 754415, 'the core': 851733, 'core cause': 203519, 'cause me': 167651, 'me distress': 522655, 'distress and': 247926, 'someone who faced': 784755, 'who faced financial': 988723, 'faced financial housing': 295018, 'financial housing and': 306445, 'housing and food': 407051, 'and food instability': 63060, 'food instability in': 315084, 'instability in college': 439894, 'in college the': 421553, 'college the fact': 186654, 'fact that my': 295804, 'that my summer': 845281, 'my summer employment': 550260, 'summer employment is': 817972, 'employment is no': 274620, 'no longer guaranteed': 564648, 'longer guaranteed at': 501984, 'guaranteed at this': 367740, 'this point in': 889636, 'point in time': 662528, 'in time due': 430079, '19 is frightening': 7973, 'is frightening shake': 447939, 'frightening shake me': 334067, 'shake me to': 754416, 'me to the': 523790, 'to the core': 916591, 'the core cause': 851734, 'core cause me': 203520, 'cause me distress': 167652, 'me distress and': 522656, 'distress and panic': 247927, 'takingmore': 833678, 'everyone taking': 287448, 'in desperate': 422211, 'desperate need': 238537, 'to high': 907732, 'by hope': 152827, 'people boycott': 647301, 'boycott your': 137353, 'once thing': 605744, 'thing return': 884717, 'normal no': 567219, 'no room': 565380, 'room for': 725910, 'for greed': 322011, 'and takingmore': 73004, 'to everyone taking': 905353, 'everyone taking advantage': 287449, 'people in desperate': 648367, 'in desperate need': 422213, 'desperate need and': 238538, 'need and driving': 554424, 'driving up product': 260035, 'up product price': 945849, 'product price due': 681541, 'due to high': 261808, 'to high demand': 907733, 'high demand caused': 394997, 'caused by hope': 167843, 'by hope people': 152828, 'hope people boycott': 403597, 'people boycott your': 647302, 'boycott your store': 137354, 'your store once': 1025980, 'store once thing': 809214, 'once thing return': 605745, 'thing return to': 884718, 'to normal no': 910653, 'normal no room': 567220, 'no room for': 565381, 'room for greed': 725913, 'for greed and': 322012, 'greed and takingmore': 363364, 'still commuting': 800389, 'commuting to': 190279, 'work loved': 1005450, 'still shopping': 801189, 'don put': 253842, 'put more': 690694, 'driving too': 260024, 'too fast': 924731, 'fast the': 300050, 'last thing': 480540, 'those taking': 892515, 'taking unnecessary': 833648, 'unnecessary risk': 942929, 'are still commuting': 90408, 'still commuting to': 800390, 'commuting to work': 190280, 'to work loved': 918752, 'work loved one': 1005451, 'loved one are': 504903, 'one are still': 605947, 'are still shopping': 90481, 'still shopping for': 801190, 'food don put': 314263, 'don put more': 253844, 'put more life': 690695, 'more life at': 539678, 'risk by driving': 723436, 'by driving too': 152430, 'driving too fast': 260025, 'too fast the': 924732, 'fast the last': 300052, 'the last thing': 859047, 'last thing the': 480546, 'thing the need': 884835, 'the need is': 861397, 'need is more': 555071, 'is more demand': 449701, 'more demand from': 538990, 'demand from those': 235549, 'from those taking': 338034, 'those taking unnecessary': 892518, 'taking unnecessary risk': 833649, 'damn right': 225416, 'right am': 721744, 'am theft': 50490, 'theft is': 872354, 'is theft': 452983, 'theft just': 872356, 'had our': 373376, 'our shop': 624747, 'shop broken': 759990, 'broken into': 140897, 'into with': 443298, 'stuff theft': 815205, 'theft doesn': 872344, 'help anyone': 389371, 'anyone it': 80394, 'not hurt': 570037, 'hurt the': 411612, 'higher ups': 395786, 'ups of': 947756, 'business but': 143466, 'when hour': 983573, 'hour get': 405643, 'get cu': 346840, 'damn right am': 225417, 'right am theft': 721745, 'am theft is': 50491, 'theft is theft': 872355, 'is theft just': 452984, 'theft just had': 872357, 'just had our': 468903, 'had our shop': 373377, 'our shop broken': 624749, 'shop broken into': 759991, 'broken into with': 140900, 'into with all': 443299, '19 stuff theft': 10922, 'stuff theft doesn': 815206, 'theft doesn help': 872345, 'doesn help anyone': 251831, 'help anyone it': 389373, 'anyone it may': 80395, 'it may not': 459553, 'may not hurt': 521381, 'not hurt the': 570038, 'hurt the higher': 411616, 'the higher ups': 857333, 'higher ups of': 395787, 'ups of business': 947757, 'of business but': 580948, 'business but it': 143468, 'but it hurt': 146131, 'it hurt the': 458666, 'hurt the employee': 411614, 'employee and the': 273588, 'the consumer when': 851622, 'consumer when hour': 199509, 'when hour get': 983574, 'hour get cu': 405644, 'mobilising': 535066, 'retrain': 719744, 'to british': 902062, 'british company': 140506, 'is mobilising': 449673, 'mobilising virtual': 535069, 'virtual reality': 957779, 'reality training': 701808, 'training solution': 929361, 'help retrain': 390457, 'retrain nh': 719745, 'kudos to british': 477882, 'to british company': 902063, 'british company that': 140507, 'company that ha': 191171, 'that ha cut': 844115, 'ha cut it': 370305, 'cut it price': 223410, 'it price and': 460458, 'price and is': 672450, 'and is mobilising': 65417, 'is mobilising virtual': 449674, 'mobilising virtual reality': 535070, 'virtual reality training': 957783, 'reality training solution': 701809, 'training solution to': 929362, 'solution to help': 782099, 'to help retrain': 907614, 'help retrain nh': 390458, 'retrain nh worker': 719746, 'nh worker during': 562185, '19 safe': 10284, 'safe weekend': 730125, 'buy anymore': 148357, 'anymore leave': 80141, 'nh people': 562042, 'covid 19 safe': 213735, '19 safe weekend': 10286, 'safe weekend and': 730126, 'weekend and don': 977317, 'and don forget': 61633, 'panic buy anymore': 637467, 'buy anymore leave': 148358, 'anymore leave some': 80142, 'leave some food': 484932, 'food for emergency': 314530, 'for emergency and': 321014, 'emergency and nh': 272602, 'and nh people': 67584, 'anyone only': 80447, 'only money': 610798, 'care too': 164241, 'too loose': 924872, 'loose customer': 503187, 'whole home': 990236, 'gym came': 369303, 'about anyone only': 24823, 'anyone only money': 80449, 'only money people': 610799, 'work there are': 1005827, 'there are getting': 878110, 'are getting sick': 86822, 'getting sick they': 349277, 'even care too': 283941, 'care too loose': 164242, 'too loose customer': 924873, 'loose customer like': 503188, 'me my whole': 523199, 'my whole home': 550578, 'whole home gym': 990237, 'home gym came': 401318, 'gym came from': 369304, 'came from them': 157001, 'from them this': 337960, 'them this is': 876431, 'is all to': 445473, 'all to try': 45253, 'try and save': 934451, 'and save the': 70960, 'save the store': 737667, '19 free': 7107, 'guidance under': 368299, 'under which': 940385, 'which eligible': 985842, 'eligible child': 271411, 'and young': 76061, 'meal or': 524228, 'covid 19 free': 213124, '19 free school': 7110, 'meal guidance under': 524176, 'guidance under which': 368300, 'under which eligible': 940387, 'which eligible child': 985843, 'eligible child and': 271412, 'child and young': 176005, 'and young people': 76063, 'young people will': 1022651, 'people will continue': 650382, 'continue to receive': 201243, 'to receive free': 912918, 'receive free school': 703483, 'school meal or': 741859, 'meal or supermarket': 524233, 'or supermarket voucher': 617289, 'mentioning': 528853, 'farm labourer': 299147, 'production operative': 682167, 'operative working': 613335, 'keep supermarket': 471987, 'supermarket stocked': 822968, 'stocked while': 803454, 'is mentioning': 449632, 'mentioning them': 528860, 'deserve recognition': 238110, 'recognition wereinthistogether': 704629, 'all the farm': 44743, 'the farm labourer': 854933, 'farm labourer and': 299148, 'labourer and food': 478534, 'food production operative': 316048, 'production operative working': 682168, 'operative working hard': 613336, 'to keep supermarket': 908858, 'keep supermarket stocked': 471991, 'supermarket stocked while': 822969, 'stocked while everyone': 803455, 'everyone panic buying': 287251, 'buying no one': 150759, 'one is mentioning': 606514, 'is mentioning them': 449633, 'mentioning them and': 528861, 'them and they': 875405, 'and they deserve': 73900, 'they deserve recognition': 881904, 'deserve recognition wereinthistogether': 238112, 'petchemindustry': 653499, 'oilcrash': 597569, 'listed share': 494644, 'company fell': 190655, 'fell even': 303188, 'even oil': 284419, 'the prospect': 864696, 'prospect that': 684697, 'world major': 1009775, 'producer could': 680599, 'could reach': 209563, 'reach deal': 699908, 'limit output': 492438, 'output petchemindustry': 629280, 'petchemindustry petrochemical': 653500, 'petrochemical stockmarket': 653703, 'stockmarket oilcrash': 803664, 'listed share of': 494645, 'share of chemical': 755117, 'of chemical company': 581318, 'chemical company fell': 175343, 'company fell even': 190656, 'fell even oil': 303189, 'even oil price': 284420, 'price rose for': 676267, 'second day on': 743692, 'day on the': 228148, 'on the prospect': 604311, 'the prospect that': 864699, 'prospect that the': 684699, 'the world major': 871907, 'world major oil': 1009776, 'oil producer could': 597336, 'producer could reach': 680600, 'could reach deal': 209567, 'reach deal to': 699910, 'deal to limit': 229509, 'to limit output': 909292, 'limit output petchemindustry': 492440, 'output petchemindustry petrochemical': 629281, 'petchemindustry petrochemical stockmarket': 653501, 'petrochemical stockmarket oilcrash': 653704, 'tenner': 837937, 'apiece': 81460, 'have college': 380017, 'college and': 186598, 'business all': 143260, 'over ireland': 630333, 'ireland donating': 444821, 'donating their': 254511, 'their ppe': 874345, 'the hse': 857682, 'hse for': 409726, 'then wa': 877714, 'in pharmacy': 426672, 'pharmacy today': 654523, 'today where': 920521, 'for tenner': 326210, 'tenner apiece': 837938, 'apiece somehow': 81463, 'somehow disgusting': 784312, 'so you have': 778843, 'you have college': 1019025, 'have college and': 380018, 'college and business': 186600, 'and business all': 59265, 'business all over': 143261, 'all over ireland': 43867, 'over ireland donating': 630334, 'ireland donating their': 444822, 'donating their ppe': 254512, 'their ppe to': 874346, 'to the hse': 916787, 'the hse for': 857683, 'hse for the': 409727, 'for the fight': 326433, 'the fight and': 855163, 'fight and then': 304658, 'and then wa': 73819, 'then wa in': 877715, 'wa in pharmacy': 962378, 'in pharmacy today': 426676, 'pharmacy today where': 654525, 'today where they': 920522, 'where they were': 985289, 'they were selling': 883800, 'were selling mask': 980101, 'and sanitiser for': 70831, 'sanitiser for tenner': 733958, 'for tenner apiece': 326211, 'tenner apiece somehow': 837939, 'apiece somehow disgusting': 81464, 'distanced': 246911, 'great all': 362492, 'these socially': 880704, 'socially distanced': 781053, 'distanced lonely': 246918, 'lonely people': 501304, 'day except': 227583, 'except me': 289196, 'pay which': 645227, 'mean get': 524459, 'talk all': 833774, 'supermarket during time': 820062, 'during time is': 263345, 'time is great': 897057, 'is great all': 448186, 'great all of': 362494, 'of these socially': 591860, 'these socially distanced': 880705, 'socially distanced lonely': 781056, 'distanced lonely people': 246919, 'lonely people have': 501305, 'have no one': 381641, 'no one to': 564971, 'one to talk': 607285, 'to talk to': 916289, 'talk to all': 833868, 'to all day': 900239, 'all day except': 42518, 'day except me': 227584, 'except me when': 289197, 'me when they': 523945, 'when they come': 984247, 'they come to': 881779, 'come to pay': 187587, 'to pay which': 911573, 'pay which mean': 645228, 'which mean get': 986145, 'mean get to': 524460, 'get to talk': 348496, 'to talk all': 916280, 'talk all day': 833775, 'sneaky': 776211, 'addition': 31721, 'senatecorruption': 749730, 'the illegal': 857874, 'illegal stock': 416244, 'trading is': 928886, 'is huge': 448612, 'huge issue': 410075, 'for after': 319071, 'senate just': 749712, 'do simple': 250079, 'simple bill': 769993, 'bill without': 130735, 'the sneaky': 867388, 'sneaky addition': 776212, 'addition senatecorruption': 31726, 'the illegal stock': 857875, 'illegal stock trading': 416245, 'stock trading is': 803027, 'trading is huge': 928887, 'is huge issue': 448613, 'huge issue for': 410076, 'issue for after': 455754, 'for after we': 319075, 'we have for': 971819, 'have for food': 380678, 'for food can': 321567, 'food can the': 313874, 'can the senate': 159961, 'the senate just': 866706, 'senate just do': 749713, 'just do simple': 468616, 'do simple bill': 250080, 'simple bill without': 769994, 'bill without all': 130736, 'without all the': 1002479, 'all the sneaky': 44913, 'the sneaky addition': 867389, 'sneaky addition senatecorruption': 776213, 'binning': 131119, 'now binning': 574258, 'binning out': 131120, 'date food': 226625, 'food panicbuying': 315757, 'panicbuying foodwaste': 638948, 'buyer are now': 149572, 'are now binning': 88531, 'now binning out': 574259, 'binning out of': 131121, 'of date food': 582366, 'date food panicbuying': 226629, 'food panicbuying foodwaste': 315758, 'snatching': 776176, 'gird': 350224, 'anxious shopper': 78861, 'shopper snatching': 761690, 'snatching up': 776179, 'up gun': 945048, 'and ammo': 58071, 'to gird': 906665, 'gird for': 350225, 'potential chaos': 667030, 'chaos related': 173049, 'leading in': 483714, 'some case': 782482, 'to long': 909423, 'line short': 493394, 'purchase limit': 689528, 'anxious shopper snatching': 78862, 'shopper snatching up': 761691, 'snatching up gun': 776180, 'up gun and': 945049, 'gun and ammo': 368685, 'and ammo to': 58076, 'ammo to gird': 52919, 'to gird for': 906666, 'gird for potential': 350226, 'for potential chaos': 324653, 'potential chaos related': 667032, 'chaos related to': 173050, 'the pandemic are': 862911, 'pandemic are leading': 634944, 'are leading in': 87740, 'leading in some': 483715, 'in some case': 428082, 'some case to': 782492, 'case to long': 166075, 'to long line': 909424, 'long line short': 501505, 'line short supply': 493395, 'short supply and': 764701, 'supply and purchase': 824749, 'and purchase limit': 69781, 'coronawuhanvirus': 207134, 'pricegouging continues': 677800, 'continues on': 201423, 'on 50': 599106, '12 double': 2846, 'double roll': 256042, 'roll there': 725538, 'many posting': 514572, 'posting of': 666671, 'different brand': 241913, 'brand stayathomeorder': 138014, 'stayathomeorder coronawuhanvirus': 797774, 'coronawuhanvirus toiletpaperpanic': 207135, 'toiletpaper democratsaredestroyingamerica': 921914, 'pricegouging continues on': 677801, 'continues on 50': 201424, 'on 50 for': 599107, '50 for 12': 19689, 'for 12 double': 318640, '12 double roll': 2847, 'double roll there': 256044, 'roll there are': 725539, 'are many posting': 88033, 'many posting of': 514573, 'posting of different': 666672, 'of different brand': 582597, 'different brand stayathomeorder': 241915, 'brand stayathomeorder coronawuhanvirus': 138015, 'stayathomeorder coronawuhanvirus toiletpaperpanic': 797775, 'coronawuhanvirus toiletpaperpanic toiletpaper': 207136, 'toiletpaperpanic toiletpaper democratsaredestroyingamerica': 923262, 'afar': 33961, 'geography': 345950, 'europe ha': 283446, 'observe the': 578598, 'the hurricane': 857766, 'hurricane flood': 411474, 'flood and': 310701, 'and epidemic': 62215, 'recent decade': 703873, 'decade from': 230679, 'from afar': 334401, 'afar but': 33962, 'but geography': 145787, 'geography or': 345953, 'or wealth': 617745, 'wealth do': 974156, 'not protect': 571123, 'now treat': 576223, 'treat our': 930860, 'our least': 623703, 'least powerful': 484604, 'powerful will': 667811, 'will tell': 995100, 'can hope': 158700, 'for read': 324980, 'europe ha been': 283447, 'ha been fortunate': 369811, 'fortunate to observe': 329905, 'to observe the': 910796, 'observe the hurricane': 578600, 'the hurricane flood': 857767, 'hurricane flood and': 411475, 'flood and epidemic': 310702, 'and epidemic of': 62216, 'epidemic of recent': 279422, 'of recent decade': 588818, 'recent decade from': 703874, 'decade from afar': 230680, 'from afar but': 334402, 'afar but geography': 33963, 'but geography or': 145788, 'geography or wealth': 345954, 'or wealth do': 617746, 'wealth do not': 974157, 'do not protect': 249806, 'not protect from': 571124, 'protect from how': 684845, 'from how we': 335962, 'how we now': 409183, 'we now treat': 972617, 'now treat our': 576224, 'treat our least': 930861, 'our least powerful': 623704, 'least powerful will': 484606, 'powerful will tell': 667812, 'will tell what': 995102, 'tell what we': 837132, 'we can hope': 970965, 'can hope for': 158701, 'hope for read': 403483, 'for read it': 324981, 'read it at': 700381, 'dermatitis': 237874, 'know too': 476913, 'much hand': 544969, 'amp handwashing': 53905, 'handwashing can': 376822, 'to dermatitis': 904194, 'dermatitis expert': 237875, 'share prevention': 755155, 'prevention tip': 671897, 'you know too': 1019534, 'know too much': 476914, 'too much hand': 924923, 'much hand sanitizer': 544971, 'sanitizer amp handwashing': 734365, 'amp handwashing can': 53906, 'handwashing can lead': 376823, 'lead to dermatitis': 483339, 'to dermatitis expert': 904195, 'dermatitis expert share': 237876, 'expert share prevention': 291971, 'share prevention tip': 755156, 'amwalalghaden': 54972, 'octane': 579131, 'amwalalghaden egypt': 54973, 'egypt lower': 270109, 'lower 92': 505784, '92 95': 23471, '95 octane': 23596, 'octane petrol': 579132, 'outbreak egypt': 628187, 'egypt petrolprice': 270115, 'petrolprice petrol': 653857, 'amwalalghaden egypt lower': 54974, 'egypt lower 92': 270110, 'lower 92 95': 505785, '92 95 octane': 23472, '95 octane petrol': 23597, 'octane petrol price': 579133, 'petrol price by': 653761, 'price by in': 673024, 'by in bid': 152879, 'bid to mitigate': 129494, 'mitigate the impact': 534541, 'coronavirus outbreak egypt': 206383, 'outbreak egypt petrolprice': 628188, 'egypt petrolprice petrol': 270116, 'petrolprice petrol fuel': 653858, 'yourself disinfecting': 1026577, 'disinfecting hand': 245852, 'sanitizer wholesale': 736093, 'wholesale need': 990457, 'need contact': 554639, 'protect yourself disinfecting': 685088, 'yourself disinfecting hand': 1026578, 'disinfecting hand sanitizer': 245853, 'hand sanitizer wholesale': 375665, 'sanitizer wholesale need': 736094, 'wholesale need contact': 990458, 'need contact diy': 554640, 'und': 939923, 'hello covid': 389144, 'ha spread': 372026, 've recently': 953494, 'recently seen': 704144, 'online some': 609400, 'our delivery': 622723, 'delivery promise': 234373, 'promise are': 683669, 'usual but': 950896, 'ship item': 758691, 'item quickly': 463592, 'quickly we': 694634, 'your und': 1026242, 'hello covid 19': 389145, '19 ha spread': 7391, 'ha spread we': 372029, 'spread we ve': 790882, 'we ve recently': 973703, 've recently seen': 953495, 'recently seen an': 704145, 'seen an increase': 746932, 'increase in people': 432854, 'in people shopping': 426599, 'people shopping online': 649436, 'shopping online some': 763485, 'online some of': 609401, 'of our delivery': 587449, 'our delivery promise': 622728, 'delivery promise are': 234374, 'promise are longer': 683670, 'are longer than': 87877, 'than usual but': 841390, 'usual but we': 950897, 're working around': 699823, 'clock to ship': 182419, 'to ship item': 914428, 'ship item quickly': 758692, 'item quickly we': 463594, 'quickly we re': 694636, 'we re able': 972813, 'able to thank': 24560, 'for your und': 328223, 'massive amount': 519962, 'italy mean': 462875, 'mean it': 524506, 'it airborne': 456328, 'airborne lockdown': 39844, 'lockdown isnt': 499562, 'isnt working': 454789, 'working or': 1008836, 'or people': 616537, 'people went': 650186, 'into lockdown': 442708, 'ready sick': 700916, 'sick genuinely': 768457, 'genuinely confused': 345882, 'confused they': 194352, 'cannot all': 161622, 'by going': 152699, 'pharmacy etc': 654297, 'do the massive': 250248, 'the massive amount': 860261, 'massive amount of': 519964, 'amount of new': 53239, 'of new case': 586957, 'new case in': 558462, 'case in italy': 165796, 'in italy mean': 424309, 'italy mean it': 462876, 'mean it airborne': 524507, 'it airborne lockdown': 456329, 'airborne lockdown isnt': 39845, 'lockdown isnt working': 499563, 'isnt working or': 454790, 'working or people': 1008837, 'or people went': 616542, 'people went into': 650189, 'went into lockdown': 979048, 'into lockdown all': 442709, 'lockdown all ready': 499115, 'all ready sick': 44123, 'ready sick genuinely': 700917, 'sick genuinely confused': 768458, 'genuinely confused they': 345883, 'confused they cannot': 194353, 'they cannot all': 881699, 'cannot all be': 161623, 'all be getting': 42131, 'be getting it': 115005, 'getting it by': 349075, 'it by going': 456975, 'by going to': 152703, 'supermarket pharmacy etc': 821975, 'mimbling': 532493, 'lark': 480050, 'bloke': 133076, 'one still': 607104, 'ha clue': 370181, 'clue all': 184527, 'all just': 43293, 'just mimbling': 469276, 'mimbling about': 532494, 'great lark': 362794, 'lark no': 480051, 'you weird': 1022226, 'weird when': 977812, 'do one': 249930, 'one bloke': 606007, 'bloke in': 133085, 'though good': 892817, 'good effort': 356995, 'food had to': 314758, 'had to risk': 373722, 'to risk the': 913604, 'risk the supermarket': 723933, 'supermarket no one': 821612, 'no one still': 564965, 'one still ha': 607105, 'still ha clue': 800614, 'ha clue all': 370182, 'clue all just': 184528, 'all just mimbling': 43300, 'just mimbling about': 469277, 'mimbling about if': 532495, 'about if it': 25498, 'it wa great': 462122, 'wa great lark': 962250, 'great lark no': 362795, 'lark no social': 480052, 'distancing people look': 247396, 'people look at': 648698, 'look at you': 502309, 'at you weird': 101663, 'you weird when': 1022227, 'weird when you': 977813, 'you do one': 1018265, 'do one bloke': 249931, 'one bloke in': 606008, 'bloke in mask': 133086, 'in mask though': 425168, 'mask though good': 519381, 'though good effort': 892818, 'labeled': 478362, 'deficiency': 232230, 'panic upon': 638744, 'upon covid': 947619, '19 being': 5358, 'being labeled': 125366, 'labeled pandemic': 478371, 'pandemic showcase': 636460, 'showcase very': 767314, 'real deficiency': 701104, 'deficiency in': 232232, 'emergency preparedness': 272894, 'preparedness from': 670285, 'individual level': 435210, 'level get': 487566, 'get prepared': 347835, 'prepared first': 670181, 'aid training': 39475, 'training self': 929359, 'self defense': 747597, 'defense training': 232145, 'training supply': 929363, 'supply food': 825246, 'water med': 969057, 'med etc': 525888, 'etc bug': 282443, 'bug out': 141902, 'out bag': 625758, 'bag bag': 108238, 'bag stay': 108406, 'think that the': 885611, 'that the panic': 846795, 'the panic upon': 863226, 'panic upon covid': 638745, 'upon covid 19': 947620, 'covid 19 being': 212692, '19 being labeled': 5361, 'being labeled pandemic': 125367, 'labeled pandemic showcase': 478372, 'pandemic showcase very': 636461, 'showcase very real': 767315, 'very real deficiency': 955452, 'real deficiency in': 701105, 'deficiency in emergency': 232233, 'in emergency preparedness': 422546, 'emergency preparedness from': 272895, 'preparedness from an': 670286, 'from an individual': 334487, 'an individual level': 56283, 'individual level get': 435211, 'level get prepared': 487567, 'get prepared first': 347836, 'prepared first aid': 670182, 'first aid training': 308492, 'aid training self': 39476, 'training self defense': 929360, 'self defense training': 747599, 'defense training supply': 232146, 'training supply food': 929364, 'supply food water': 825257, 'food water med': 317511, 'water med etc': 969058, 'med etc bug': 525889, 'etc bug out': 282444, 'bug out bag': 141903, 'out bag bag': 625759, 'bag bag stay': 108239, 'bag stay safe': 108407, 'now delivering': 574508, 'these guy are': 880088, 'guy are now': 368904, 'are now delivering': 88541, 'now delivering to': 574510, 'delivering to your': 233560, 'your home stayhomesavelives': 1024376, 'make much': 510207, 'room and make': 725878, 'and make much': 66564, 'make much food': 510208, 'arrested man': 93859, 'man for': 512064, 'email scam': 272290, 'scam selling': 740354, 'arrested man for': 93860, 'man for email': 512066, 'for email scam': 321011, 'email scam selling': 272294, 'scam selling mask': 740355, 'selling mask sanitizer': 749341, 'daw': 227033, 'auang': 102806, 'suu': 829844, 'kyi': 478082, 'state counsellor': 795496, 'counsellor daw': 210081, 'daw auang': 227034, 'auang san': 102807, 'san suu': 733567, 'suu kyi': 829845, 'kyi said': 478083, 'said profiteer': 731318, 'profiteer taking': 682986, 'prosecuted mask': 684646, 'mask other': 519084, 'are need': 88195, 'public excessive': 687983, 'tolerated people': 923816, 'should file': 765988, 'government link': 360320, 'state counsellor daw': 795497, 'counsellor daw auang': 210082, 'daw auang san': 227035, 'auang san suu': 102808, 'san suu kyi': 733568, 'suu kyi said': 829846, 'kyi said profiteer': 478084, 'said profiteer taking': 731319, 'profiteer taking advantage': 682987, 'will be prosecuted': 992620, 'be prosecuted mask': 116578, 'prosecuted mask other': 684647, 'mask other product': 519087, 'other product are': 620767, 'product are need': 680943, 'are need for': 88196, 'for the public': 326641, 'the public excessive': 864806, 'public excessive price': 687984, 'excessive price will': 289410, 'price will not': 677576, 'be tolerated people': 117756, 'tolerated people should': 923817, 'people should file': 649444, 'should file complaint': 765989, 'complaint with government': 192053, 'with government link': 998658, 'to bar': 901039, 'bar again': 110665, 'again pre': 37122, '19 economics': 6707, 'economics fantasy': 267449, 'fantasy now': 298631, 'see total': 745982, 'total shift': 926240, 'habit after': 372540, 'covid more': 214194, 'home purchase': 401929, 'purchase movie': 689557, 'movie watch': 544095, 'out to bar': 627621, 'to bar again': 901040, 'bar again pre': 110666, 'again pre covid': 37123, 'covid 19 economics': 213003, '19 economics fantasy': 6708, 'economics fantasy now': 267450, 'fantasy now see': 298632, 'now see total': 575753, 'see total shift': 745983, 'total shift in': 926241, 'consumer spending habit': 199066, 'spending habit after': 788832, 'habit after covid': 372541, 'after covid more': 35519, 'covid more at': 214195, 'at home purchase': 99088, 'home purchase movie': 401930, 'purchase movie watch': 689558, 'protecting it': 685200, 'workforce during': 1008355, 'online preparing': 608784, 'preparing order': 670351, 'hasn even': 378741, 'even been': 283865, 'given hand': 351008, 'driver how': 259606, 'he meant': 385228, 'ensure his': 277967, 'hand are': 374797, 'are kept': 87670, 'kept clean': 473026, 'clean during': 180512, 'during his': 262690, 'his 5am': 397174, '5am 12': 20613, '12 noon': 2914, 'noon shift': 566864, 'like to know': 491603, 'know how is': 476445, 'how is protecting': 408105, 'is protecting it': 451108, 'protecting it workforce': 685203, 'it workforce during': 462526, 'workforce during this': 1008356, 'this time my': 890665, 'time my son': 897249, 'work in online': 1005331, 'in online preparing': 426171, 'online preparing order': 608785, 'preparing order and': 670352, 'order and hasn': 618027, 'and hasn even': 64210, 'hasn even been': 378742, 'even been given': 283866, 'been given hand': 121208, 'given hand sanitizer': 351009, 'sanitizer it only': 735229, 'it only the': 460110, 'only the driver': 611263, 'the driver how': 853695, 'driver how is': 259607, 'how is he': 408096, 'is he meant': 448348, 'he meant to': 385229, 'meant to ensure': 524908, 'to ensure his': 905168, 'ensure his hand': 277968, 'his hand are': 397488, 'hand are kept': 374799, 'are kept clean': 87671, 'kept clean during': 473027, 'clean during his': 180514, 'during his 5am': 262691, 'his 5am 12': 397175, '5am 12 noon': 20614, '12 noon shift': 2916, 'you wild': 1022320, 'wild asshole': 992045, 'asshole never': 96538, 'never wash': 558267, 'no reason': 565281, 'why damn': 990910, 'did you wild': 240953, 'you wild asshole': 1022321, 'wild asshole never': 992046, 'asshole never wash': 96539, 'never wash your': 558268, 'hand before covid': 374830, '19 there no': 11288, 'there no reason': 878837, 'no reason why': 565301, 'reason why damn': 703058, 'why damn supermarket': 990911, 'damn supermarket should': 225434, 'supermarket should be': 822676, 'should be out': 765683, 'out of soap': 626830, '19 across': 4791, 'nation and': 552117, 'help fellow': 389700, 'fellow neighbor': 303310, 'neighbor down': 557001, 'covid 19 across': 212575, '19 across the': 4795, 'the nation and': 861218, 'nation and the': 552122, 'and the need': 73490, 'need for essential': 554837, 'for essential in': 321108, 'essential in high': 281152, 'high demand many': 395019, 'business are doing': 143361, 'are doing it': 85909, 'doing it part': 252488, 'it part to': 460268, 'part to help': 642467, 'to help fellow': 907513, 'help fellow neighbor': 389702, 'fellow neighbor down': 303312, 'neighbor down the': 557002, 'smearing': 775596, 'are wanted': 91526, 'wanted after': 966190, 'after licking': 35864, 'and smearing': 71802, 'smearing them': 775597, 'them over': 876138, 'in morecambe': 425448, 'morecambe supermarket': 541042, 'supermarket crime': 819862, 'two men are': 937038, 'men are wanted': 528458, 'are wanted after': 91527, 'wanted after licking': 966191, 'after licking their': 35867, 'licking their hand': 488255, 'hand and smearing': 374775, 'and smearing them': 71803, 'smearing them over': 775598, 'them over food': 876140, 'over food in': 630221, 'food in morecambe': 314952, 'in morecambe supermarket': 425449, 'morecambe supermarket crime': 541043, 'need armed': 554479, 'armed police': 92944, 'and soldier': 71940, 'soldier to': 781822, 'buyer before': 149587, 'late stopstockpiling': 480917, 'stoppanicbuying stophoarding': 805632, 'coronacrisis socialdistanacing': 204760, 'we need armed': 972468, 'need armed police': 554480, 'armed police and': 92945, 'police and soldier': 662911, 'and soldier to': 71941, 'soldier to stop': 781825, 'panic buyer before': 637558, 'buyer before it': 149588, 'it is too': 459107, 'is too late': 453279, 'too late stopstockpiling': 924836, 'late stopstockpiling stoppanicbuying': 480918, 'stopstockpiling stoppanicbuying stophoarding': 805888, 'stoppanicbuying stophoarding coronacrisis': 805634, 'stophoarding coronacrisis socialdistanacing': 805380, 'misinformation smm': 534071, 'smm socialmediamarketing': 775835, 'socialmediamarketing digitalmarketing': 781113, 'digitalmarketing facebook': 242775, '19 misinformation smm': 8659, 'misinformation smm socialmediamarketing': 534072, 'smm socialmediamarketing digitalmarketing': 775836, 'socialmediamarketing digitalmarketing facebook': 781114, 'sector come': 744125, 'the plate': 863817, 'plate and': 658904, 'four item': 330618, 'be sufficient': 117443, 'sufficient speak': 817391, 'the sector come': 866613, 'sector come up': 744126, 'to the plate': 916958, 'the plate and': 863818, 'plate and help': 658906, 'or four item': 615385, 'four item will': 330619, 'item will not': 463832, 'not be sufficient': 568464, 'be sufficient speak': 117444, 'sufficient speak to': 817392, 'speak to and': 787709, 'put online': 690736, 'shopping into': 763027, 'overdrive worker': 631194, 'warehouse community': 966703, 'are demanding': 85773, 'demanding stronger': 236612, 'stronger environmental': 814176, 'environmental health': 279193, 'and increased': 65111, 'increased corporate': 433254, 'corporate responsibility': 207332, 'put online shopping': 690737, 'online shopping into': 609159, 'shopping into overdrive': 763028, 'into overdrive worker': 442830, 'overdrive worker and': 631195, 'worker and warehouse': 1006353, 'and warehouse community': 75179, 'warehouse community are': 966704, 'community are demanding': 189735, 'are demanding stronger': 85777, 'demanding stronger environmental': 236613, 'stronger environmental health': 814177, 'environmental health protection': 279195, 'health protection and': 386773, 'protection and increased': 685319, 'and increased corporate': 65114, 'increased corporate responsibility': 433255, 'infectiousdisease': 436919, 'wage earner': 963845, 'earner in': 264844, 'country likely': 210866, 'be hit': 115264, 'hit hardest': 398258, 'hardest by': 378203, 'america look': 51596, 'more susceptible': 540514, 'infected die': 436560, 'die pandemia': 241438, 'pandemia inequality': 634746, 'inequality infectiousdisease': 436346, 'low wage earner': 505728, 'wage earner in': 963847, 'earner in any': 264845, 'in any country': 420423, 'any country likely': 79079, 'country likely to': 210867, 'to be hit': 901308, 'be hit hardest': 115269, 'hit hardest by': 398259, 'hardest by in': 378206, 'by in america': 152878, 'in america look': 420229, 'america look like': 51597, 'look like grocery': 502481, 'worker are among': 1006367, 'among the more': 53067, 'the more susceptible': 860894, 'more susceptible to': 540515, 'susceptible to get': 829442, 'get infected die': 347328, 'infected die pandemia': 436561, 'die pandemia inequality': 241439, 'pandemia inequality infectiousdisease': 634747, 'installation': 440010, 'trackingworld': 928379, 'navigation': 553139, 'let share': 487046, 'share burden': 754949, 'burden enjoy': 142740, 'enjoy flat': 277133, 'flat 10': 310057, 'off free': 593843, 'shipping and': 758822, 'and installation': 65276, 'installation hurry': 440011, 'hurry and': 411502, 'shop our': 760628, 'at flat': 98665, 'off term': 594214, 'condition apply': 193402, 'apply trackingworld': 82622, 'trackingworld sale': 928380, 'sale tracker': 732600, 'tracker navigation': 928284, 'navigation fleet': 553140, 'fleet shopping': 310326, 'shopping tracking': 764239, '19 let share': 8316, 'let share burden': 487047, 'share burden enjoy': 754950, 'burden enjoy flat': 142742, 'enjoy flat 10': 277134, 'flat 10 off': 310059, '10 off free': 1577, 'off free shipping': 593845, 'free shipping and': 332153, 'shipping and installation': 758823, 'and installation hurry': 65277, 'installation hurry and': 440012, 'hurry and shop': 411504, 'and shop our': 71506, 'shop our product': 760631, 'our product at': 624476, 'product at flat': 680967, 'at flat 10': 98666, '10 off term': 1582, 'off term and': 594215, 'term and condition': 838055, 'and condition apply': 60263, 'condition apply trackingworld': 193404, 'apply trackingworld sale': 82623, 'trackingworld sale tracker': 928381, 'sale tracker navigation': 732601, 'tracker navigation fleet': 928285, 'navigation fleet shopping': 553141, 'fleet shopping tracking': 310327, 'feminine': 303514, 'vaunrable': 952752, 'believe ebay': 126262, 'ebay are': 266431, 'roll feminine': 725296, 'feminine product': 303515, 'price shame': 676356, 'all panic': 43905, 'buying caused': 150103, 'caused this': 167974, 'this sorry': 890259, 'sorry state': 786077, 'of affair': 579809, 'affair cashing': 34011, 'in when': 430845, 'when vaunrable': 984381, 'vaunrable people': 952753, 'are scared': 89847, 'scared is': 740975, 'absolute disgrace': 27233, 'cannot believe ebay': 161666, 'believe ebay are': 126264, 'ebay are allowing': 266432, 'to sell toilet': 914184, 'sell toilet roll': 748924, 'toilet roll feminine': 921570, 'roll feminine product': 725297, 'feminine product at': 303516, 'product at extortionate': 680965, 'extortionate price shame': 293402, 'price shame on': 676357, 'shame on them': 754629, 'on them all': 604526, 'them all panic': 875347, 'all panic buying': 43907, 'panic buying caused': 637675, 'buying caused this': 150105, 'caused this sorry': 167975, 'this sorry state': 890260, 'sorry state of': 786078, 'state of affair': 795794, 'of affair cashing': 579810, 'affair cashing in': 34012, 'cashing in when': 166677, 'in when vaunrable': 430848, 'when vaunrable people': 984382, 'vaunrable people are': 952754, 'people are scared': 647065, 'are scared is': 89849, 'scared is an': 740976, 'is an absolute': 445632, 'an absolute disgrace': 55038, 'temporary shut': 837688, 'department store ha': 237275, 'store ha announced': 807995, 'announced temporary shut': 77056, 'temporary shut down': 837689, 'shut down of': 767839, 'down of all': 256995, 'of all of': 579965, 'of it physical': 585429, 'store amid 19': 806163, 'amid 19 outbreak': 52375, 'generalinsurance': 345515, 'consumer about': 195991, 'their buying': 872700, 'buying behaviour': 150018, 'here our': 393426, 'first insight': 308731, 'insight insurance': 439577, 'insurance generalinsurance': 440738, 'we are talking': 970732, 'are talking to': 90743, 'talking to consumer': 834042, 'to consumer about': 903261, 'consumer about how': 195994, 'about how is': 25447, 'is affecting their': 445398, 'affecting their life': 34578, 'their life and': 873822, 'life and their': 488489, 'and their buying': 73672, 'their buying behaviour': 872701, 'buying behaviour here': 150021, 'behaviour here our': 124445, 'here our first': 393429, 'our first insight': 623081, 'first insight insurance': 308732, 'insight insurance generalinsurance': 439578, 'spurt': 791357, 'ocado stock': 578920, 'stock spurt': 802874, 'spurt face': 791358, 'face big': 294333, 'big test': 130055, 'test in': 839031, 'security rethink': 744733, 'rethink via': 719662, 'via foodsecurity': 955984, 'ocado stock spurt': 578921, 'stock spurt face': 802875, 'spurt face big': 791359, 'face big test': 294334, 'big test in': 130056, 'test in food': 839034, 'in food security': 422985, 'food security rethink': 316364, 'security rethink via': 744734, 'rethink via foodsecurity': 719663, 'fax': 300620, 'scam identity': 740195, 'identity thief': 413411, 'thief work': 884017, 'obtain your': 578743, 'information do': 437796, 'to unsolicited': 917966, 'unsolicited email': 943513, 'message phone': 529396, 'call letter': 155971, 'letter fax': 487308, 'fax or': 300621, 'medium asking': 527009, 'beware of scam': 129094, 'of scam identity': 589359, 'scam identity thief': 740196, 'identity thief work': 413413, 'thief work hard': 884018, 'hard to obtain': 378075, 'to obtain your': 910804, 'obtain your personal': 578744, 'personal information do': 652888, 'information do not': 437797, 'not respond to': 571349, 'respond to unsolicited': 715333, 'to unsolicited email': 917967, 'unsolicited email text': 943515, 'email text message': 272322, 'text message phone': 839912, 'message phone call': 529397, 'phone call letter': 654925, 'call letter fax': 155972, 'letter fax or': 487309, 'fax or social': 300622, 'or social medium': 617141, 'social medium asking': 779841, 'medium asking for': 527010, 'asking for personal': 95995, 'for personal information': 324503, 'feel it': 302687, 'francisco had': 331111, 'to hustle': 908069, 'hustle my': 411824, 'different grocery': 241957, 'find grass': 306943, 'grass fed': 362214, 'fed organic': 301863, 'organic milk': 619227, 'milk ton': 531883, 'perishable on': 651999, 'empty expect': 274866, 'expect price': 290702, 'skyrocket too': 773339, 'too during': 924698, 'duration of': 262369, 'plague sanfrancisco': 657984, 'starting to really': 795033, 'to really feel': 912865, 'really feel it': 702194, 'feel it in': 302688, 'it in san': 458743, 'san francisco had': 733541, 'francisco had to': 331112, 'had to hustle': 373700, 'to hustle my': 908070, 'hustle my way': 411825, 'way to different': 970014, 'to different grocery': 904286, 'different grocery store': 241958, 'to find grass': 905904, 'find grass fed': 306944, 'grass fed organic': 362217, 'fed organic milk': 301864, 'organic milk ton': 619228, 'milk ton of': 531884, 'ton of perishable': 924280, 'of perishable on': 588050, 'perishable on shelf': 652000, 'on shelf empty': 603403, 'shelf empty expect': 757019, 'empty expect price': 274867, 'expect price to': 290705, 'price to skyrocket': 677040, 'to skyrocket too': 914710, 'skyrocket too during': 773340, 'too during the': 924700, 'during the duration': 263118, 'the duration of': 853785, 'duration of the': 262370, 'of the plague': 591338, 'the plague sanfrancisco': 863786, 'calculate how': 155293, 'll last': 496877, 'you currently': 1018135, 'currently have': 221555, 'the advanced': 848366, 'advanced feature': 32927, 'feature my': 301554, 'my result': 549940, 'result day': 717495, 'day 29': 227133, '29 of': 16486, 'my quarantine': 549872, 'calculate how long': 155294, 'how long you': 408219, 'long you ll': 501876, 'you ll last': 1019659, 'll last in': 496878, 'last in quarantine': 480277, 'in quarantine with': 427197, 'quarantine with the': 692710, 'number of roll': 576987, 'of roll of': 589149, 'roll of you': 725425, 'of you currently': 593378, 'you currently have': 1018137, 'currently have on': 221559, 'have on hand': 381770, 'on hand be': 601228, 'sure to use': 827789, 'use the advanced': 949650, 'the advanced feature': 848367, 'advanced feature my': 32928, 'feature my result': 301555, 'my result day': 549941, 'result day 29': 717496, 'day 29 of': 227135, '29 of my': 16489, 'of my quarantine': 586810, 'almost year': 46774, 'low meaning': 505405, 'meaning american': 524802, 'american had': 52015, 'had le': 373229, 'le confidence': 482882, 'confidence with': 193989, 'with obama': 999841, 'obama in': 578331, 'in normal': 425932, 'normal time': 567365, 'time than': 897816, 'than with': 841464, 'with under': 1001893, 'fall to an': 297094, 'an almost year': 55248, 'almost year low': 46775, 'year low meaning': 1014725, 'low meaning american': 505406, 'meaning american had': 524803, 'american had le': 52016, 'had le confidence': 373230, 'le confidence with': 482883, 'confidence with obama': 193990, 'with obama in': 999842, 'obama in normal': 578332, 'in normal time': 425934, 'normal time than': 567370, 'time than with': 897819, 'than with under': 841465, 'with under the': 1001894, 'under the threat': 940337, 'courier': 211796, 'instituting': 440445, 'worry free': 1010712, 'understand stress': 940719, 'and precaution': 69333, 'precaution is': 669324, 'of utmost': 592729, 'utmost importance': 951387, 'importance which': 418722, 'why online': 991257, 'go our': 353926, 'our courier': 622615, 'courier partner': 211814, 'partner are': 642773, 'are instituting': 87550, 'instituting the': 440448, 'the no': 861824, 'delivery concept': 233820, 'concept for': 192853, 'info read': 437564, 'worry free online': 1010714, 'free online shopping': 332027, 'online shopping we': 609337, 'shopping we understand': 764354, 'we understand stress': 973589, 'understand stress level': 940720, 'level are high': 487511, 'are high and': 87149, 'high and precaution': 394925, 'and precaution is': 69335, 'precaution is of': 669326, 'is of utmost': 450403, 'of utmost importance': 592730, 'utmost importance which': 951389, 'importance which is': 418723, 'is why online': 453971, 'why online shopping': 991258, 'to go our': 906836, 'go our courier': 353927, 'our courier partner': 622617, 'courier partner are': 211815, 'partner are instituting': 642776, 'are instituting the': 87551, 'instituting the no': 440449, 'the no contact': 861825, 'no contact delivery': 563889, 'contact delivery concept': 200062, 'delivery concept for': 233821, 'concept for more': 192854, 'more info read': 539562, 'info read here': 437565, 'rajendras': 696184, 'namaka': 551579, 'jam': 464349, 'midway': 530807, 'rajendras at': 696185, 'at namaka': 99843, 'namaka wa': 551584, 'wa jam': 962440, 'jam packed': 464360, 'packed from': 633604, 'from midway': 336430, 'midway just': 530808, 'just closed': 468488, 'closed minute': 183224, 'minute ago': 533717, 'restock and': 716864, 'and open': 68163, 'open again': 612020, 'again at': 36909, '5pm till': 20809, '8pm tonight': 23240, 'tonight informed': 924428, 'informed by': 438087, 'rajendras at namaka': 696186, 'at namaka wa': 99844, 'namaka wa jam': 551585, 'wa jam packed': 962441, 'jam packed from': 464361, 'packed from midway': 633605, 'from midway just': 336431, 'midway just closed': 530809, 'just closed minute': 468489, 'closed minute ago': 183225, 'minute ago to': 533720, 'ago to restock': 38517, 'to restock and': 913399, 'restock and open': 716866, 'and open again': 68164, 'open again at': 612022, 'again at 5pm': 36910, 'at 5pm till': 97704, '5pm till 8pm': 20810, 'till 8pm tonight': 895987, '8pm tonight informed': 23241, 'tonight informed by': 924429, 'informed by one': 438089, 'by one of': 153429, 'of their staff': 591703, 'their staff supermarket': 874798, 'staff supermarket owner': 792905, 'supermarket owner must': 821877, 'owner must be': 632502, 'must be happy': 546509, 'be happy with': 115144, 'with this panic': 1001715, 'brjl203': 140672, 'brjl309': 140675, 'dodgemojo': 251289, 'dispelling': 246114, 'brjl203 brjl309': 140673, 'brjl309 dodgemojo': 140676, 'dodgemojo good': 251290, 'good interview': 357274, 'interview especially': 442212, 'especially second': 280589, 'second question': 743802, 'question response': 693722, 'response dispelling': 715674, 'dispelling fear': 246115, 'fear many': 301190, 'have can': 379878, 'by touching': 154578, 'from amazon': 334456, 'brjl203 brjl309 dodgemojo': 140674, 'brjl309 dodgemojo good': 140677, 'dodgemojo good interview': 251291, 'good interview especially': 357275, 'interview especially second': 442213, 'especially second question': 280590, 'second question response': 743803, 'question response dispelling': 693723, 'response dispelling fear': 715675, 'dispelling fear many': 246116, 'fear many people': 301191, 'many people have': 514508, 'people have can': 648166, 'have can you': 379880, 'you get by': 1018762, 'get by touching': 346731, 'by touching item': 154579, 'touching item at': 926688, 'item at grocery': 463126, 'store is it': 808500, 'safe to get': 730051, 'delivery from amazon': 234043, 'were telling': 980225, 'telling grocery': 837198, 'real job': 701237, 're praising': 699290, 'praising them': 668906, 'their contribution': 872878, 'to society': 914847, 'society all': 781146, 'all fake': 42749, 'fake af': 296566, 'af better': 33950, 'not hear': 569914, 'hear word': 388029, 'word from': 1004492, 'again coronacrisis': 36958, 'ago all were': 38326, 'all were telling': 45435, 'were telling grocery': 980226, 'telling grocery store': 837199, 'worker they didn': 1007962, 'didn have real': 241096, 'have real job': 382177, 'real job and': 701238, 'job and now': 465637, 'and now you': 67874, 'you re praising': 1020707, 're praising them': 699291, 'praising them for': 668907, 'for their contribution': 326815, 'their contribution to': 872879, 'contribution to society': 201944, 'to society all': 914848, 'society all fake': 781147, 'all fake af': 42750, 'fake af better': 296567, 'af better not': 33951, 'better not hear': 128379, 'not hear word': 569915, 'hear word from': 388030, 'word from you': 1004498, 'from you ever': 338458, 'ever again coronacrisis': 285187, 'drugstore': 261179, 'hydroxide': 411984, 'in brazil': 420952, 'brazil the': 138339, 'the drugstore': 853747, 'drugstore are': 261180, 'buying day': 150178, 'after it': 35835, 'that chloroquine': 843216, 'chloroquine hydroxide': 177601, 'hydroxide wa': 411985, 'wa effective': 962054, 'treating covid': 930987, 'imagine similar': 416773, 'similar situation': 769927, 'situation exists': 772262, 'exists in': 290357, 'company could': 190571, 'here in brazil': 393136, 'in brazil the': 420953, 'brazil the drugstore': 138340, 'the drugstore are': 853748, 'drugstore are out': 261181, 'of stock because': 590141, 'stock because of': 801907, 'panic buying day': 637700, 'buying day after': 150179, 'day after it': 227182, 'after it wa': 35844, 'it wa announced': 462065, 'wa announced that': 961545, 'announced that chloroquine': 77059, 'that chloroquine hydroxide': 843218, 'chloroquine hydroxide wa': 177602, 'hydroxide wa effective': 411986, 'wa effective for': 962056, 'effective for treating': 269252, 'for treating covid': 327336, 'treating covid 19': 930988, '19 imagine similar': 7682, 'imagine similar situation': 416774, 'similar situation exists': 769928, 'situation exists in': 772263, 'exists in the': 290358, 'in the or': 429421, 'the or drug': 862435, 'or drug company': 615081, 'drug company could': 260915, 'essentialoils': 281917, 'stayinghealthy': 798736, 'great recipe': 362951, 'for diy': 320781, 'sanitizer check': 734650, 'on using': 605001, 'using essential': 950468, 'oil more': 596961, 'more recipe': 540199, 'recipe included': 704479, 'included handsanitizer': 431684, 'handsanitizer essentialoils': 376525, 'essentialoils stayinghealthy': 281922, 'anyone is looking': 80390, 'is looking for': 449445, 'looking for great': 502870, 'for great recipe': 322006, 'great recipe for': 362952, 'recipe for diy': 704460, 'for diy hand': 320783, 'hand sanitizer check': 375342, 'sanitizer check out': 734651, 'out my blog': 626594, 'my blog post': 547479, 'post on using': 666262, 'on using essential': 605002, 'using essential oil': 950469, 'essential oil more': 281350, 'oil more recipe': 596962, 'more recipe included': 540200, 'recipe included handsanitizer': 704480, 'included handsanitizer essentialoils': 431685, 'handsanitizer essentialoils stayinghealthy': 376526, 'nstworld': 576697, 'nstworld amazon': 576698, 'amazon said': 51097, 'wa boosting': 961733, 'boosting pay': 135078, 'and hiring': 64586, 'hiring 100': 397056, 'to strain': 915656, 'workforce caused': 1008345, 'by surge': 154180, 'shopping prompted': 763691, 'by fear': 152566, 'nstworld amazon said': 576699, 'amazon said it': 51098, 'it wa boosting': 462082, 'wa boosting pay': 961734, 'boosting pay and': 135079, 'pay and hiring': 644733, 'and hiring 100': 64587, 'hiring 100 00': 397057, '00 worker due': 606, 'due to strain': 261978, 'to strain on': 915657, 'strain on it': 812290, 'on it workforce': 601697, 'it workforce caused': 462525, 'workforce caused by': 1008346, 'caused by surge': 167869, 'by surge in': 154181, 'online shopping prompted': 609238, 'shopping prompted by': 763692, 'prompted by fear': 683928, 'successfully': 816255, 'concludes': 193313, 'opec the': 611975, 'the group': 856859, 'group composed': 366654, 'composed of': 192568, 'nation successfully': 552322, 'successfully concludes': 816258, 'concludes deal': 193314, 'bpd which': 137458, 'which amount': 985661, 'amount to': 53287, 'supply after': 824662, 'after compromise': 35484, 'compromise with': 192666, 'with mexico': 999487, 'mexico oott': 530014, 'opec the group': 611976, 'the group composed': 856863, 'group composed of': 366655, 'composed of opec': 192569, 'of opec russia': 587289, 'producing nation successfully': 680794, 'nation successfully concludes': 552323, 'successfully concludes deal': 816259, 'concludes deal to': 193315, 'to cut oil': 903881, 'cut oil output': 223450, 'million bpd which': 532095, 'bpd which amount': 137459, 'which amount to': 985662, 'amount to 10': 53288, 'to 10 percent': 899431, '10 percent of': 1628, 'percent of global': 651157, 'global supply after': 352231, 'supply after compromise': 824663, 'after compromise with': 35485, 'compromise with mexico': 192667, 'with mexico oott': 999488, 'mexico oott saudiarabia': 530015, 'kungfu': 477941, 'only at': 610126, 'appointment otherwise': 82680, 'otherwise be': 621826, 'home kungfu': 401509, 'kungfu chinesecoronavirus': 477942, 'chinesecoronavirus glove': 177406, 'only at the': 610129, 'store and doctor': 806230, 'and doctor appointment': 61574, 'doctor appointment otherwise': 250832, 'appointment otherwise be': 82681, 'otherwise be safe': 621827, 'stay home kungfu': 796981, 'home kungfu chinesecoronavirus': 401510, 'kungfu chinesecoronavirus glove': 477943, 'sure food': 827554, '19 before': 5344, 'you store': 1021447, 'good video': 357934, 'making sure food': 511380, 'sure food from': 827556, 'supermarket is free': 821090, 'is free of': 447927, 'free of covid': 332013, 'covid 19 before': 212688, '19 before you': 5346, 'before you store': 123336, 'you store it': 1021450, 'store it good': 808574, 'it good video': 458307, 'good video have': 357935, 'photooftheday': 655321, 'photographyeveryday': 655309, 'day your': 228831, 'your purchase': 1025476, 'purchase help': 689490, 'are donating': 85945, 'donating of': 254485, 'all purchase': 44096, '19 solidarity': 10688, 'solidarity response': 781942, 'fund photo': 341477, 'photo photooftheday': 655232, 'photooftheday photographyeveryday': 655326, 'photographyeveryday photo': 655310, 'photo dmart': 655153, 'dmart superstore': 248951, 'the day your': 852929, 'day your purchase': 228833, 'your purchase help': 1025480, 'purchase help fight': 689491, 'we are donating': 970532, 'are donating of': 85948, 'donating of all': 254486, 'of all purchase': 579972, 'all purchase to': 44098, 'purchase to who': 689705, 'to who covid': 918569, 'covid 19 solidarity': 213830, '19 solidarity response': 10689, 'solidarity response fund': 781943, 'response fund photo': 715705, 'fund photo photooftheday': 341478, 'photo photooftheday photographyeveryday': 655233, 'photooftheday photographyeveryday photo': 655327, 'photographyeveryday photo dmart': 655311, 'photo dmart superstore': 655154, 'massacre': 519934, 'wtf we': 1013338, 'london since': 501175, 'tuesday we': 935201, 'we only': 972645, 'eat exercise': 265911, 'exercise outdoors': 290082, 'outdoors with': 628929, 'distancing our': 247385, 'our son': 624843, 'son had': 785383, 'had fever': 373107, 'fever for': 303672, 'other symptom': 621052, 'the gp': 856680, 'gp telephone': 361419, 'telephone appointment': 836798, 'appointment belief': 82655, 'belief it': 126203, 'not after': 568084, 'supermarket massacre': 821471, 'massacre at': 519935, 'wtf we are': 1013339, 'in london since': 424895, 'london since tuesday': 501176, 'since tuesday we': 770954, 'tuesday we only': 935202, 'we only go': 972648, 'to eat exercise': 904881, 'eat exercise outdoors': 265912, 'exercise outdoors with': 290084, 'outdoors with social': 628930, 'social distancing our': 779681, 'distancing our son': 247387, 'our son had': 624845, 'son had fever': 785384, 'had fever for': 373108, 'fever for day': 303673, 'day no other': 228022, 'no other symptom': 565019, 'other symptom and': 621053, 'symptom and had': 830808, 'and had fever': 64100, 'day the gp': 228489, 'the gp telephone': 856681, 'gp telephone appointment': 361420, 'telephone appointment belief': 836799, 'appointment belief it': 82656, 'belief it wa': 126205, 'wa not after': 962755, 'not after the': 568085, 'the supermarket massacre': 868697, 'supermarket massacre at': 821472, 'changing marketer': 172743, 'marketer must': 517470, 'start there': 794558, 'keep moving': 471683, 'both now': 135981, 'always it': 49634, 'vital to': 959743, 'to tune': 917835, 'through understanding': 894879, 'understanding their': 940895, 'their need': 874041, 'offer the': 594824, 'right solution': 722278, 'and behavior are': 58834, 'behavior are changing': 123909, 'are changing marketer': 85237, 'changing marketer must': 172744, 'marketer must start': 517471, 'must start there': 546901, 'start there in': 794559, 'there in order': 878507, 'to keep moving': 908813, 'keep moving forward': 471684, 'moving forward both': 544146, 'forward both now': 329973, 'both now and': 135982, 'and always it': 57997, 'always it vital': 49635, 'it vital to': 462047, 'vital to tune': 959746, 'to tune in': 917836, 'the customer through': 852735, 'customer through understanding': 222950, 'through understanding their': 894880, 'understanding their need': 940896, 'their need you': 874045, 'need you ll': 556259, 'll be able': 496565, 'able to offer': 24512, 'to offer the': 910851, 'offer the right': 594829, 'the right solution': 865826, 'plunge with': 661476, 'crude future': 219532, 'future hitting': 342353, 'hitting an': 398554, 'low government': 505307, 'government worldwide': 360827, 'worldwide accelerated': 1010307, 'accelerated lockdown': 27888, 'counter the': 210265, 'causing global': 168039, 'global fuel': 351957, 'to collapse': 902949, 'price plunge with': 675934, 'plunge with crude': 661477, 'with crude future': 997865, 'crude future hitting': 219533, 'future hitting an': 342355, 'hitting an 18': 398555, 'year low government': 1014720, 'low government worldwide': 505309, 'government worldwide accelerated': 360828, 'worldwide accelerated lockdown': 1010308, 'accelerated lockdown to': 27889, 'lockdown to counter': 500053, 'to counter the': 903627, 'counter the pandemic': 210267, 'that is causing': 844566, 'is causing global': 446423, 'causing global fuel': 168042, 'global fuel demand': 351959, 'fuel demand to': 340158, 'demand to collapse': 236391, 'is america': 445618, 'america milk': 51614, 'food soap': 316673, 'soap toilet': 779132, 'paper medicine': 640462, 'medicine social': 526889, 'distance no': 246775, 'no some': 565555, 'some stock': 783946, 'ammunition during': 52941, 'this is america': 888174, 'is america milk': 445620, 'america milk and': 51615, 'milk and other': 531564, 'other food soap': 620249, 'food soap toilet': 316677, 'soap toilet paper': 779133, 'toilet paper medicine': 921357, 'paper medicine social': 640463, 'medicine social distance': 526890, 'social distance no': 779515, 'distance no some': 246777, 'no some stock': 565557, 'some stock up': 783951, 'on gun and': 601208, 'and ammunition during': 58080, 'ammunition during crisis': 52942, 'improvise': 419605, 'any or': 79573, 'or 95': 614230, 'to improvise': 908212, 'improvise cannot': 419606, 'to rock': 913619, 'rock this': 724926, 'cannot find any': 161831, 'find any or': 306799, 'any or 95': 79574, 'or 95 mask': 614231, '95 mask so': 23590, 'mask so it': 519283, 'so it time': 777480, 'time to improvise': 898001, 'to improvise cannot': 908213, 'improvise cannot wait': 419607, 'cannot wait to': 162214, 'wait to rock': 964231, 'to rock this': 913624, 'rock this at': 724927, 'this at the': 886454, 'hello and': 389126, 'store out': 809401, 'there impose': 878501, 'impose limit': 419240, 'limit do': 492330, 'part canadian': 642255, 'canadian company': 160652, 'support citizen': 826415, 'during rather': 262961, 'than fill': 840650, 'fill your': 305517, 'hello and every': 389127, 'every other grocery': 286066, 'grocery store out': 365627, 'store out there': 809403, 'out there impose': 627490, 'there impose limit': 878502, 'impose limit do': 419241, 'limit do your': 492332, 'your part canadian': 1025212, 'part canadian company': 642256, 'canadian company to': 160654, 'company to support': 191246, 'to support citizen': 915912, 'support citizen during': 826416, 'citizen during rather': 178886, 'during rather than': 262962, 'rather than fill': 697517, 'than fill your': 840651, 'fill your bank': 305518, 'practically': 668497, 'how 3m': 407263, '3m doubled': 18319, 'doubled n95': 256123, 'mask production': 519159, 'production practically': 682184, 'practically overnight': 668508, 'is how 3m': 448569, 'how 3m doubled': 407264, '3m doubled n95': 18320, 'doubled n95 mask': 256124, 'n95 mask production': 551204, 'mask production practically': 519160, 'production practically overnight': 682185, 'practically overnight to': 668510, 'overnight to fight': 631364, 'benchmark brent': 126832, 'oil future': 596820, 'future rose': 342449, 'rose high': 726069, 'high 33': 394898, '33 37': 17742, '37 barrel': 18069, 'barrel on': 111257, 'on rising': 603202, 'rising hope': 723230, 'new global': 558804, 'global deal': 351853, 'global crude': 351843, 'crude supply': 219615, 'benchmark brent crude': 126833, 'brent crude oil': 139333, 'crude oil future': 219558, 'oil future rose': 596822, 'future rose high': 342450, 'rose high 33': 726070, 'high 33 37': 394899, '33 37 barrel': 17743, '37 barrel on': 18070, 'barrel on rising': 111260, 'on rising hope': 603203, 'rising hope of': 723231, 'hope of new': 403571, 'of new global': 586968, 'new global deal': 558806, 'global deal to': 351856, 'cut global crude': 223357, 'global crude supply': 351847, 'shunned': 767773, 'digitalpayment': 242793, 'creditcard': 216558, 'debitcard': 230386, 'financialservices': 306716, 'home shopping': 402058, 'paper currency': 640072, 'currency being': 221014, 'being shunned': 125784, 'shunned due': 767776, 'to curious': 903822, 'how digitalpayment': 407703, 'digitalpayment platform': 242794, 'like and': 489777, 'and creditcard': 60736, 'creditcard debitcard': 216559, 'debitcard usage': 230387, 'usage will': 948861, 'will rise': 994706, 'rise banking': 722791, 'banking financialservices': 110428, 'with everyone at': 998286, 'everyone at home': 286715, 'at home shopping': 99105, 'home shopping online': 402060, 'online and paper': 607835, 'and paper currency': 68693, 'paper currency being': 640073, 'currency being shunned': 221015, 'being shunned due': 125785, 'shunned due to': 767777, 'due to curious': 261749, 'to curious to': 903823, 'curious to see': 220991, 'see how digitalpayment': 745225, 'how digitalpayment platform': 407704, 'digitalpayment platform like': 242795, 'platform like and': 658997, 'like and creditcard': 489781, 'and creditcard debitcard': 60737, 'creditcard debitcard usage': 216560, 'debitcard usage will': 230388, 'usage will rise': 948862, 'will rise banking': 994709, 'rise banking financialservices': 722792, 'dribble': 258733, 'warmup': 966915, '028': 826, 'dribbleweeklywarmup': 258736, 'dribble weekly': 258734, 'weekly warmup': 977592, 'warmup 028': 966916, '028 message': 827, 'message of': 529375, 'week challenge': 976080, 'challenge wa': 171586, 'create message': 215687, 'is mine': 449657, 'mine dribbleweeklywarmup': 532888, 'dribbleweeklywarmup hope': 258737, 'hope tp': 403753, 'toiletpaper illustration': 922110, 'dribble weekly warmup': 258735, 'weekly warmup 028': 977593, 'warmup 028 message': 966917, '028 message of': 828, 'message of hope': 529377, 'of hope this': 584748, 'hope this week': 403730, 'this week challenge': 891199, 'week challenge wa': 976081, 'challenge wa to': 171587, 'wa to create': 963517, 'to create message': 903715, 'create message of': 215688, 'hope for our': 403481, 'for our community': 324219, 'our community this': 622485, 'community this is': 190162, 'this is mine': 888320, 'is mine dribbleweeklywarmup': 449659, 'mine dribbleweeklywarmup hope': 532889, 'dribbleweeklywarmup hope tp': 258738, 'hope tp toiletpaper': 403754, 'tp toiletpaper illustration': 927998, 'first contacted': 308591, 'contacted three': 200341, 'they never': 882777, 'never got': 558032, 'me but': 522531, 'today kroger': 919776, 'kroger ceo': 477726, 'ceo announced': 169654, 'that two': 847147, 'employee tested': 274278, 'first contacted three': 308592, 'contacted three day': 200342, 'three day ago': 893906, 'ago and they': 38344, 'and they never': 73923, 'they never got': 882778, 'never got back': 558033, 'got back to': 358428, 'back to me': 107379, 'to me but': 909921, 'me but today': 522538, 'but today kroger': 147603, 'today kroger ceo': 919777, 'kroger ceo announced': 477727, 'ceo announced that': 169655, 'announced that two': 77073, 'that two kroger': 847148, 'two kroger employee': 936998, 'kroger employee tested': 477736, 'employee tested positive': 274279, 'luke': 506632, 'tilley': 896135, 'wilmington': 995504, 'seen said': 747210, 'said luke': 731209, 'luke tilley': 506637, 'tilley chief': 896136, 'economist at': 267523, 'at wilmington': 101568, 'wilmington trust': 995505, 'trust auspol': 934244, 'auspol how': 103081, 'how transformed': 409111, 'transformed the': 929594, 'way american': 969455, 'american spend': 52206, 'ever seen said': 285491, 'seen said luke': 747211, 'said luke tilley': 731210, 'luke tilley chief': 506638, 'tilley chief economist': 896137, 'chief economist at': 175912, 'economist at wilmington': 267526, 'at wilmington trust': 101569, 'wilmington trust auspol': 995506, 'trust auspol how': 934245, 'auspol how transformed': 103082, 'how transformed the': 409112, 'transformed the way': 929596, 'the way american': 871141, 'way american spend': 969456, 'american spend their': 52207, 'their money the': 874002, 'money the new': 537062, 'toiletpaper planet': 922347, 'earth toiletpaper planet': 265009, 'toiletpaper planet earth': 922348, 'the walking': 871044, 'walking dead': 965040, 'dead went': 229185, 'and struck': 72596, 'struck the': 814282, 'the jackpot': 858627, 'jackpot toilet': 464198, 'it like it': 459366, 'like it the': 490559, 'it the walking': 461585, 'the walking dead': 871045, 'walking dead went': 965043, 'dead went out': 229186, 'went out for': 979083, 'out for supply': 626162, 'for supply run': 326052, 'supply run and': 825781, 'run and struck': 727563, 'and struck the': 72598, 'struck the jackpot': 814283, 'the jackpot toilet': 858628, 'jackpot toilet paper': 464199, 'odisha sir': 579248, 'sir online': 771615, 'may immediately': 521279, 'immediately be': 417061, 'stopped to': 805769, 'check covid': 174405, 'odisha sir online': 579249, 'sir online shopping': 771616, 'shopping may immediately': 763257, 'may immediately be': 521280, 'immediately be stopped': 417062, 'be stopped to': 117383, 'stopped to check': 805770, 'to check covid': 902681, 'check covid 19': 174406, 'ninja': 563313, 'keepyourdistance': 472677, 'like ninja': 490855, 'ninja when': 563315, 'store these': 810656, 'day anyone': 227309, 'anyone stopped': 80536, 'stopped chatting': 805693, 'chatting will': 174029, 'be run': 116926, 'run over': 727776, 'over stayhomesavelives': 630642, 'stayhomesavelives keepyourdistance': 798405, 'like ninja when': 490856, 'ninja when go': 563316, 'grocery store these': 365854, 'store these day': 810658, 'these day anyone': 879866, 'day anyone stopped': 227310, 'anyone stopped chatting': 80537, 'stopped chatting will': 805694, 'chatting will be': 174030, 'will be run': 992660, 'be run over': 116928, 'run over stayhomesavelives': 727777, 'over stayhomesavelives keepyourdistance': 630643, 'slim': 773984, 'amused': 54953, 'dislike': 245960, 'macaroni': 507325, 'annoyed by': 77349, 'the slim': 867330, 'slim picking': 773989, 'picking in': 655857, 'store also': 806155, 'also amused': 47844, 'amused by': 54956, 'by what': 154719, 'left apparently': 485390, 'apparently people': 81988, 'an intense': 56386, 'intense dislike': 441079, 'dislike for': 245961, 'for organic': 324160, 'organic macaroni': 619223, 'macaroni and': 507326, 'cheese and': 175162, 'canned pork': 161556, 'pork and': 664782, 'annoyed by the': 77351, 'by the slim': 154440, 'the slim picking': 867331, 'slim picking in': 773990, 'picking in the': 655859, 'grocery store also': 365188, 'store also amused': 806156, 'also amused by': 47845, 'amused by what': 54957, 'by what is': 154720, 'what is left': 981705, 'is left apparently': 449268, 'left apparently people': 485391, 'apparently people have': 81991, 'people have an': 648161, 'have an intense': 379259, 'an intense dislike': 56388, 'intense dislike for': 441080, 'dislike for organic': 245962, 'for organic macaroni': 324162, 'organic macaroni and': 619224, 'macaroni and cheese': 507327, 'and cheese and': 59798, 'cheese and canned': 175164, 'and canned pork': 59503, 'canned pork and': 161557, 'pork and bean': 664783, 'hay': 384496, 'comida': 187970, 'casa': 165550, 'positive of': 665385, 'down 79': 256433, '79 today': 22379, 'today costco': 919408, 'doing 15': 252249, 'out 15': 625525, '15 in': 3738, 'most relaxing': 542690, 'relaxing shopping': 708895, 'trip ve': 932209, 'at costco': 98345, 'costco cooked': 208214, 'cooked and': 202808, 'and ate': 58492, 'ate home': 101721, 'home everyday': 401167, 'everyday this': 286640, 'week maybe': 976521, 'maybe hay': 521697, 'hay comida': 384499, 'comida en': 187971, 'en la': 275382, 'la casa': 478141, 'casa ain': 165551, 'ain that': 39661, 'positive of covid': 665387, 'price down 79': 673515, 'down 79 today': 256434, '79 today costco': 22380, 'today costco wa': 919410, 'costco wa doing': 208287, 'wa doing 15': 961999, 'doing 15 people': 252250, '15 people out': 3816, 'people out 15': 649014, 'out 15 in': 625526, '15 in and': 3739, 'wa the most': 963457, 'the most relaxing': 861024, 'most relaxing shopping': 542691, 'relaxing shopping trip': 708896, 'shopping trip ve': 764257, 'trip ve ever': 932210, 've ever had': 953093, 'ever had at': 285339, 'had at costco': 372864, 'at costco cooked': 98347, 'costco cooked and': 208215, 'cooked and ate': 202809, 'and ate home': 58493, 'ate home everyday': 101722, 'home everyday this': 401168, 'everyday this week': 286642, 'this week maybe': 891232, 'week maybe hay': 976522, 'maybe hay comida': 521698, 'hay comida en': 384500, 'comida en la': 187972, 'en la casa': 275383, 'la casa ain': 478142, 'casa ain that': 165552, 'ain that bad': 39662, 'line ups': 493532, 'ups to': 947777, 'than line': 840843, 'paper never': 640491, 'never on': 558134, 'on special': 603591, 'when line ups': 983695, 'line ups to': 493537, 'ups to the': 947780, 'store are longer': 806497, 'longer than line': 502072, 'than line ups': 840844, 'the club and': 851078, 'club and toilet': 184406, 'toilet paper never': 921366, 'paper never on': 640492, 'never on special': 558135, 'tyson': 937693, 'cwt': 223892, '94': 23540, 'grid': 363885, 'tyson announced': 937694, 'adding per': 31691, 'per cwt': 650788, 'cwt over': 223895, 'base price': 111471, 'live cattle': 495762, 'and 94': 57524, '94 per': 23546, 'cwt for': 223893, 'for dressed': 320850, 'dressed and': 258693, 'and grid': 63960, 'grid cattle': 363888, 'cattle due': 167343, 'tyson announced it': 937695, 'announced it is': 76972, 'it is adding': 458862, 'is adding per': 445354, 'adding per cwt': 31692, 'per cwt over': 650790, 'cwt over the': 223896, 'over the base': 630697, 'the base price': 849294, 'base price for': 111472, 'price for live': 673990, 'for live cattle': 323020, 'live cattle and': 495763, 'cattle and 94': 167337, 'and 94 per': 57525, '94 per cwt': 23547, 'per cwt for': 650789, 'cwt for dressed': 223894, 'for dressed and': 320851, 'dressed and grid': 258694, 'and grid cattle': 63961, 'grid cattle due': 363889, 'cattle due to': 167344, 'acityunited': 29085, 'acityunited and': 29088, 'acityunited and have': 29089, 'counterbalance': 210286, 'digitalizes': 242735, 'izberg': 464093, 'to counterbalance': 903631, 'counterbalance the': 210287, 'of revenue': 589081, 'revenue with': 720493, 'pandemic sonae': 636514, 'sonae sierra': 785470, 'sierra digitalizes': 768997, 'digitalizes it': 242736, 'mall through': 511843, 'marketplace powered': 517829, 'powered by': 667758, 'by izberg': 152953, 'to counterbalance the': 903632, 'counterbalance the loss': 210288, 'loss of revenue': 503752, 'of revenue with': 589086, 'revenue with the': 720494, 'with the closure': 1001236, 'closure of the': 183978, 'of the physical': 591334, 'physical store due': 655466, '19 pandemic sonae': 9476, 'pandemic sonae sierra': 636515, 'sonae sierra digitalizes': 785471, 'sierra digitalizes it': 768998, 'digitalizes it shopping': 242737, 'it shopping mall': 461028, 'shopping mall through': 763238, 'mall through the': 511844, 'through the online': 894759, 'the online marketplace': 862274, 'online marketplace powered': 608530, 'marketplace powered by': 517830, 'powered by izberg': 667761, 'with student': 1001026, 'student reporter': 814762, 'reporter at': 712602, 'whether we': 985609, 'shortage no': 765083, 'no supply': 565629, 'good shape': 357721, 'shape best': 754824, 'do stay': 250172, 'inside if': 439283, 'out wash': 627781, 'often amp': 596153, 'amp maintain': 54091, 'spoke with student': 789755, 'with student reporter': 1001028, 'student reporter at': 814763, 'reporter at about': 712603, 'at about why': 97836, 'about why people': 26934, 'why people panic': 991288, 'buy and whether': 148338, 'and whether we': 75551, 'whether we should': 985611, 'we should worry': 973304, 'should worry about': 766667, 'food shortage no': 316590, 'shortage no supply': 765087, 'no supply chain': 565631, 'chain are in': 170503, 'are in good': 87386, 'in good shape': 423370, 'good shape best': 357722, 'shape best thing': 754825, 'to do stay': 904560, 'do stay inside': 250173, 'stay inside if': 797099, 'inside if you': 439284, 'must go out': 546687, 'go out wash': 353998, 'out wash hand': 627782, 'wash hand often': 967490, 'hand often amp': 375119, 'often amp maintain': 596154, 'amp maintain distance': 54092, 'tencent': 837869, 'tencent see': 837872, 'in user': 430505, 'user due': 950274, 'tencent see surge': 837873, 'surge in user': 828214, 'in user due': 430506, 'user due to': 950275, 'ml for': 534717, 'update 19': 946829, '200 ml for': 13506, 'ml for the': 534719, 'latest update 19': 481586, 'e3': 263970, 'momar': 535855, 'against bacteria': 37338, 'virus learn': 958454, 'sanitizer han': 735020, 'han size': 374696, 'size spray': 772799, 'spray e3': 790288, 'e3 shoot': 263971, 'shoot message': 759738, 'message or': 529386, 'local momar': 498188, 'momar representative': 535856, 'order yours': 618807, 'yours today': 1026482, 'info visit': 437607, 'help protect against': 390366, 'protect against bacteria': 684758, 'against bacteria and': 37339, 'and virus learn': 74977, 'virus learn the': 958456, 'learn the best': 484067, 'way to use': 970118, 'to use our': 918054, 'use our hand': 949462, 'our hand sanitizer': 623351, 'hand sanitizer han': 375428, 'sanitizer han size': 735021, 'han size spray': 374697, 'size spray e3': 772800, 'spray e3 shoot': 790289, 'e3 shoot message': 263972, 'shoot message or': 759739, 'message or contact': 529389, 'or contact your': 614805, 'contact your local': 200309, 'your local momar': 1024706, 'local momar representative': 498189, 'momar representative to': 535857, 'representative to order': 712921, 'to order yours': 911091, 'order yours today': 618810, 'yours today for': 1026485, 'today for product': 919539, 'for product info': 324772, 'product info visit': 681314, 'fci': 300784, 'fci had': 300787, 'had 77': 372809, '77 million': 22291, 'million metric': 532240, 'metric ton': 529886, 'on 1st': 599042, '1st march': 12764, '2020 how': 14368, 'been distributed': 121008, 'case increasing': 165820, 'increasing govt': 433616, 'is contemplating': 446806, 'contemplating an': 200768, 'an extension': 55991, 'lockdown with': 500162, 'state already': 795345, 'already doing': 47299, 'fci had 77': 300788, 'had 77 million': 372810, '77 million metric': 22292, 'million metric ton': 532241, 'metric ton of': 529887, 'food stock on': 316802, 'stock on 1st': 802556, 'on 1st march': 599043, '1st march 2020': 12765, 'march 2020 how': 515160, '2020 how much': 14369, 'much of it': 545192, 'of it ha': 585404, 'ha been distributed': 369787, 'been distributed to': 121009, 'distributed to the': 248062, 'people now with': 648897, '19 case increasing': 5683, 'case increasing govt': 165821, 'increasing govt is': 433617, 'govt is contemplating': 361162, 'is contemplating an': 446807, 'contemplating an extension': 200769, 'an extension of': 55992, 'of lockdown with': 585965, 'lockdown with many': 500166, 'with many state': 999391, 'many state already': 514724, 'state already doing': 795346, 'dracula': 258135, 'countdracula': 210179, 'loveatfirstbite': 504894, 'wa love': 962596, 'love at': 504610, 'first ply': 308873, 'ply little': 661770, 'little wednesday': 495646, 'wednesday humor': 975643, 'humor for': 410871, 'you toiletpaper': 1021871, 'toiletpaper dracula': 921926, 'dracula countdracula': 258136, 'countdracula satire': 210180, 'satire humor': 736942, 'humor loveatfirstbite': 410898, 'it wa love': 462145, 'wa love at': 962597, 'love at first': 504611, 'at first ply': 98657, 'first ply little': 308874, 'ply little wednesday': 661771, 'little wednesday humor': 495647, 'wednesday humor for': 975644, 'humor for you': 410872, 'for you toiletpaper': 328096, 'you toiletpaper dracula': 1021872, 'toiletpaper dracula countdracula': 921927, 'dracula countdracula satire': 258137, 'countdracula satire humor': 210181, 'satire humor loveatfirstbite': 736943, 'mktgsales': 534704, 'mckinsey study': 522203, 'study italian': 814920, 'crisis by': 217167, 'by mktgsales': 153233, 'mktgsales via': 534705, 'mckinsey study italian': 522204, 'study italian consumer': 814921, 'italian consumer sentiment': 462691, 'the crisis by': 852353, 'crisis by mktgsales': 217174, 'by mktgsales via': 153234, 'beside': 127473, 'alabama went': 40626, 'tell woman': 837142, 'in aisle': 420127, 'aisle waiting': 40424, 'distancing she': 247471, 'she say': 756321, 'stop watching': 805262, 'watching liberal': 968753, 'liberal medium': 488015, 'medium there': 527315, 'nothing going': 573022, 'on alabama': 599206, 'alabama is': 40620, 'is beside': 446135, 'beside georgia': 127474, 'georgia where': 346050, 'friend in alabama': 333647, 'in alabama went': 420138, 'alabama went to': 40627, 'grocery store he': 365456, 'store he tell': 808122, 'he tell woman': 385504, 'tell woman in': 837143, 'woman in aisle': 1003512, 'in aisle waiting': 420129, 'aisle waiting for': 40425, 'waiting for you': 964346, 'to move to': 910322, 'move to observe': 543761, 'social distancing she': 779714, 'distancing she say': 247472, 'she say you': 756327, 'say you need': 739518, 'to stop watching': 915592, 'stop watching liberal': 805263, 'watching liberal medium': 968754, 'liberal medium there': 488016, 'medium there nothing': 527317, 'there nothing going': 878871, 'nothing going on': 573023, 'going on alabama': 355297, 'on alabama is': 599207, 'alabama is beside': 40621, 'is beside georgia': 446136, 'beside georgia where': 127475, 'georgia where there': 346051, 'there are high': 878113, 'are high number': 87151, 'outlining': 629115, 'article outlining': 94424, 'outlining how': 629116, 'great article outlining': 362511, 'article outlining how': 94425, 'outlining how consumer': 629117, 'how consumer behaviour': 407592, 'behaviour and market': 124365, 'and market are': 66703, 'market are affected': 516012, 'onlineclasses': 609794, 'quarantinecats': 692790, 'totallockdown': 926288, 'assignment': 96606, 'labreports': 478559, 'annotated': 76828, 'bibliography': 129442, 'venmo': 954477, 'conquer': 194756, 'new alert': 558335, 'alert reduced': 41497, 'to onlineclasses': 910960, 'onlineclasses quarantinecats': 609797, 'quarantinecats totallockdown': 692795, 'totallockdown hire': 926290, 'hire me': 397013, 'your assignment': 1022863, 'assignment research': 96609, 'research paper': 713809, 'paper essay': 640131, 'essay labreports': 280705, 'labreports annotated': 478560, 'annotated bibliography': 76829, 'bibliography spring': 129443, 'spring class': 791185, 'class my': 180218, 'my response': 549935, 'response team': 715803, 'is 24': 445189, '24 take': 15689, 'take cashapp': 832017, 'cashapp venmo': 166389, 'venmo and': 954478, 'and paypal': 68818, 'paypal we': 645809, 'will conquer': 992989, 'new alert reduced': 558336, 'alert reduced price': 41498, 'due to onlineclasses': 261885, 'to onlineclasses quarantinecats': 910961, 'onlineclasses quarantinecats totallockdown': 609799, 'quarantinecats totallockdown hire': 692796, 'totallockdown hire me': 926291, 'hire me for': 397014, 'me for your': 522771, 'for your assignment': 328119, 'your assignment research': 1022864, 'assignment research paper': 96611, 'research paper essay': 713810, 'paper essay labreports': 640132, 'essay labreports annotated': 280706, 'labreports annotated bibliography': 478561, 'annotated bibliography spring': 76830, 'bibliography spring class': 129444, 'spring class my': 791186, 'class my response': 180219, 'my response team': 549936, 'response team is': 715806, 'team is 24': 835697, 'is 24 take': 445191, '24 take cashapp': 15690, 'take cashapp venmo': 832018, 'cashapp venmo and': 166390, 'venmo and paypal': 954480, 'and paypal we': 68819, 'paypal we will': 645810, 'we will conquer': 973843, 'touring': 926954, 'retailstong': 719542, 'grocery ceo': 364350, 'essential retailer': 281475, 'retailer that': 719354, 'open right': 612489, 'store floor': 807744, 'and touring': 74313, 'touring location': 926955, 'location if': 498915, 'you expect': 1018476, 'expect your': 290788, 'put themselves': 690895, 'there at': 878197, 'same retailstong': 733271, 'retailstong retailing': 719543, 'convenience store grocery': 202348, 'store grocery ceo': 807971, 'grocery ceo of': 364351, 'ceo of essential': 169776, 'of essential retailer': 583186, 'essential retailer that': 281480, 'retailer that are': 719356, 'that are remaining': 842805, 'remaining open right': 709974, 'open right now': 612490, 'now you should': 576518, 'be out on': 116288, 'on the store': 604387, 'the store floor': 868021, 'store floor and': 807745, 'floor and touring': 310774, 'and touring location': 74314, 'touring location if': 926956, 'location if you': 498916, 'if you expect': 415432, 'you expect your': 1018485, 'expect your employee': 290790, 'your employee to': 1023663, 'employee to put': 274331, 'to put themselves': 912619, 'put themselves out': 690900, 'themselves out there': 876869, 'out there at': 627470, 'there at this': 878199, 'this time you': 890717, 'time you do': 898404, 'you do the': 1018275, 'the same retailstong': 866291, 'same retailstong retailing': 733272, 'blacked': 132169, 'group reliant': 366856, 'order blacked': 618086, 'blacked out': 132170, 'out non': 626645, 'essential do': 280970, 'about tp': 26769, 'point please': 662591, 'buying tesco': 151141, 'tesco stophoarding': 838812, 'isolation for the': 455271, 'next 12 week': 561260, '12 week due': 2983, 'being in vulnerable': 125309, 'in vulnerable group': 430633, 'vulnerable group reliant': 960988, 'group reliant on': 366857, 'reliant on online': 709258, 'grocery order blacked': 364810, 'order blacked out': 618087, 'blacked out non': 132171, 'out non essential': 626646, 'non essential do': 566337, 'essential do not': 280971, 'care about tp': 163808, 'about tp at': 26770, 'tp at this': 927754, 'this point please': 889640, 'point please stop': 662593, 'panic buying tesco': 637922, 'buying tesco stophoarding': 151142, 'hemsworth': 391723, 'harlow': 378378, 'homedelivery': 402673, 'shop home': 760284, 'delivery new': 234201, 'new location': 559055, 'location added': 498842, 'added reading': 31600, 'reading hemsworth': 700773, 'hemsworth harlow': 391724, 'harlow check': 378379, 'your post': 1025360, 'post code': 666047, 'code below': 185340, 'below delivery': 126628, 'delivery day': 233850, 'day available': 227342, 'available next': 104504, 'over 600': 629885, '600 product': 21108, 'product available': 680990, 'including 100': 431840, 'essential homedelivery': 281132, 'homedelivery foodshopping': 402676, 'food shop home': 316481, 'shop home delivery': 760285, 'home delivery new': 401031, 'delivery new location': 234202, 'new location added': 559056, 'location added reading': 498843, 'added reading hemsworth': 31601, 'reading hemsworth harlow': 700774, 'hemsworth harlow check': 391725, 'harlow check your': 378380, 'check your post': 174736, 'your post code': 1025361, 'post code below': 666048, 'code below delivery': 185341, 'below delivery day': 126629, 'delivery day available': 233851, 'day available next': 227343, 'available next week': 104506, 'next week over': 561695, 'week over 600': 976715, 'over 600 product': 629887, '600 product available': 21109, 'product available including': 680992, 'available including 100': 104460, 'including 100 of': 431841, '100 of your': 1997, 'of your daily': 593459, 'your daily essential': 1023439, 'daily essential homedelivery': 224600, 'essential homedelivery foodshopping': 281133, 'bindu': 131066, 'mayi': 521919, 'expertise': 292036, 'store dr': 807386, 'dr bindu': 257966, 'bindu mayi': 131067, 'mayi offer': 521920, 'offer up': 594865, 'up her': 945069, 'her expertise': 392024, 'you do when': 1018279, 'do when you': 250530, 'grocery store dr': 365346, 'store dr bindu': 807387, 'dr bindu mayi': 257967, 'bindu mayi offer': 131068, 'mayi offer up': 521921, 'offer up her': 594866, 'up her expertise': 945070, 'confidence ha': 193875, 'plummeted to': 661355, 'seen during': 747004, '2008 2009': 13637, '2009 recession': 13716, 'recession the': 704377, 'pandemic unfolds': 636864, 'unfolds and': 941532, 'and force': 63169, 'force britain': 328346, 'britain into': 140412, 'consumer confidence ha': 196901, 'confidence ha plummeted': 193879, 'ha plummeted to': 371511, 'plummeted to level': 661356, 'to level not': 909229, 'not seen during': 571507, 'seen during the': 747005, 'during the 2008': 263081, 'the 2008 2009': 847990, '2008 2009 recession': 13639, '2009 recession the': 13717, 'recession the covid': 704379, '19 pandemic unfolds': 9510, 'pandemic unfolds and': 636865, 'unfolds and force': 941533, 'and force britain': 63170, 'force britain into': 328347, 'britain into lockdown': 140413, 'our guide': 623322, 'guide on': 368339, 'money option': 536950, 'option during': 614018, 'outbreak inc': 628352, 'inc new': 431294, 'new benefit': 558394, 'benefit info': 127016, 'we have updated': 971978, 'have updated our': 383474, 'updated our guide': 947415, 'our guide on': 623324, 'guide on your': 368344, 'on your money': 605481, 'your money option': 1024867, 'money option during': 536951, 'option during the': 614020, 'the outbreak inc': 862648, 'outbreak inc new': 628353, 'inc new benefit': 431295, 'new benefit info': 558395, 'benefit info and': 127017, 'info and update': 437418, 'and update on': 74736, 'update on online': 947127, 'online shopping option': 609210, 'takitaki': 833679, 'being urged': 126011, 'urged not': 948263, 'panic after': 637269, 'worker wa': 1008107, 'wa tested': 963423, '19 takitaki': 11032, 'kaikohe local are': 470664, 'local are being': 497687, 'are being urged': 84938, 'being urged not': 126012, 'urged not to': 948264, 'to panic after': 911381, 'panic after supermarket': 637270, 'supermarket worker wa': 824112, 'worker wa tested': 1008111, 'wa tested positive': 963425, 'covid 19 takitaki': 213908, 'ontario food': 611593, 'bank who': 110304, 'to with': 918639, 'box find': 137059, 'already given': 47373, 'given we': 351205, 'we have plan': 971898, 'to help ontario': 907576, 'help ontario food': 390193, 'ontario food bank': 611594, 'food bank who': 313671, 'bank who ve': 110307, 'who ve been': 989877, 'been working tirelessly': 122402, 'tirelessly to meet': 899091, 'meet the surge': 527614, 'due to with': 262030, 'to with our': 918643, 'with our new': 1000007, 'our new emergency': 624029, 'new emergency food': 558672, 'emergency food box': 272702, 'food box find': 313776, 'box find out': 137060, 'can help to': 158667, 'help to those': 390797, 'who have already': 988907, 'have already given': 379189, 'already given we': 47375, 'given we are': 351206, 'are so grateful': 90201, 'so grateful for': 777201, 'scared but': 740949, 'but italy': 146185, 'italy manages': 462871, 'keep store': 471976, 'store supplied': 810466, 'supplied we': 824474, 'the collection': 851151, 'collection baby': 186413, 'is stocked': 452335, 'and distributed': 61513, 'distributed by': 248040, 'bank perhaps': 110093, 'perhaps by': 651576, 'pharmacy that': 654497, 'that know': 844831, 'know local': 476577, 'local family': 497933, 'family crazy': 297731, 'crazy panic': 215381, 'are scared but': 89848, 'scared but italy': 740950, 'but italy manages': 146186, 'italy manages to': 462872, 'manages to keep': 512844, 'to keep store': 908856, 'keep store supplied': 471980, 'store supplied we': 810468, 'supplied we must': 824475, 'we must stop': 972442, 'must stop the': 546926, 'stop the collection': 805127, 'the collection baby': 851152, 'collection baby food': 186414, 'baby food is': 106606, 'food is stocked': 315155, 'is stocked and': 452336, 'stocked and distributed': 803260, 'and distributed by': 61516, 'distributed by food': 248041, 'by food bank': 152613, 'food bank perhaps': 313614, 'bank perhaps by': 110094, 'perhaps by local': 651577, 'by local pharmacy': 153079, 'local pharmacy that': 498276, 'pharmacy that know': 654500, 'that know local': 844832, 'know local family': 476578, 'local family crazy': 497935, 'family crazy panic': 297732, 'crazy panic buying': 215382, 'product cleared': 681063, 'supermarket re': 822164, 're sold': 699543, 'price supermarket': 676703, 'ebay need': 266473, 'end all': 275761, 'all listing': 43392, 'listing for': 494846, 'item or': 463529, 'continue asda': 201002, 'asda tesco': 94985, 'tesco nh': 838754, 'nh boris': 561903, 'cleaning product cleared': 181026, 'product cleared out': 681064, 'cleared out of': 181429, 'out of uk': 626868, 'uk supermarket re': 938772, 'supermarket re sold': 822165, 're sold at': 699544, 'sold at inflated': 781637, 'inflated price supermarket': 437070, 'price supermarket and': 676704, 'supermarket and ebay': 818968, 'and ebay need': 61888, 'ebay need to': 266474, 'need to end': 555918, 'to end all': 905071, 'end all listing': 275763, 'all listing for': 43393, 'listing for item': 494847, 'for item or': 322756, 'item or will': 463539, 'or will continue': 617807, 'will continue asda': 993010, 'continue asda tesco': 201003, 'asda tesco nh': 94987, 'tesco nh boris': 838755, 'chronically': 178241, 'honored': 403275, 'time chronically': 896478, 'chronically ill': 178242, 'given voice': 351203, 'voice worldwide': 960010, 'are honored': 87228, 'honored superheroes': 403278, 'superheroes and': 818670, 'small child': 774914, 'child can': 176030, 'world simply': 1009979, 'simply by': 770190, 'washing their': 967730, 'hand wow': 376025, 'first time chronically': 309094, 'time chronically ill': 896479, 'chronically ill people': 178247, 'ill people are': 416162, 'people are given': 646988, 'are given voice': 86850, 'given voice worldwide': 351204, 'voice worldwide food': 960011, 'worldwide food service': 1010351, 'food service grocery': 316417, 'employee are honored': 273618, 'are honored superheroes': 87229, 'honored superheroes and': 403279, 'superheroes and small': 818671, 'and small child': 71775, 'small child can': 774915, 'child can help': 176031, 'help save the': 390485, 'save the world': 737671, 'the world simply': 871966, 'world simply by': 1009980, 'simply by washing': 770192, 'by washing their': 154695, 'washing their hand': 967731, 'their hand wow': 873490, 'line so': 493409, 'staying ft': 798593, 'ft away': 339327, 'store before it': 806699, 'it opened and': 460127, 'opened and people': 612706, 'and people were': 68890, 'in line so': 424772, 'line so much': 493410, 'much for staying': 544924, 'for staying ft': 325887, 'staying ft away': 798594, 'ft away from': 339329, 'sule': 817844, 'chsl': 178267, 'sule news': 817845, 'news food': 560415, 'of veggie': 592770, 'veggie to': 954219, 'to kirana': 908958, 'store veggie': 811051, 'vendor in': 954382, 'in versova': 430560, 'versova village': 954934, 'village are': 957331, 'basic household': 111930, 'item rose': 463625, 'rose chsl': 726060, 'chsl versova': 178268, 'sule news food': 817846, 'news food supply': 560417, 'food supply of': 316974, 'supply of veggie': 825656, 'of veggie to': 592771, 'veggie to kirana': 954220, 'to kirana store': 908959, 'kirana store veggie': 475409, 'store veggie vendor': 811052, 'veggie vendor in': 954223, 'vendor in versova': 954383, 'in versova village': 430561, 'versova village are': 954935, 'village are totally': 957333, 'are totally out': 91157, 'of stock we': 590208, 'stock we are': 803156, 'get basic household': 346647, 'basic household item': 111931, 'household item rose': 406869, 'item rose chsl': 463626, 'rose chsl versova': 726061, 've launched': 953320, 'launched covid': 481979, 'with lot': 999318, 'money saving': 537007, 'saving tip': 737974, 'to relevant': 913140, 'relevant financial': 709156, 'we ve launched': 973683, 've launched covid': 953322, 'launched covid 19': 481980, 'information page with': 437945, 'page with lot': 633921, 'with lot of': 999320, 'of money saving': 586616, 'money saving tip': 537009, 'saving tip and': 737975, 'tip and link': 898705, 'link to relevant': 493942, 'to relevant financial': 913141, 'relevant financial information': 709157, 'interlocutor': 441700, 'nicole': 562613, 'newborn': 560022, 'describes': 237959, 'mie': 530841, 'our interlocutor': 623575, 'interlocutor nicole': 441701, 'nicole who': 562618, 'ha toddler': 372329, 'toddler and': 920612, 'and newborn': 67566, 'newborn struggle': 560027, 'contain her': 200476, 'her emotion': 392012, 'emotion when': 273267, 'when she': 983992, 'she describes': 755977, 'describes to': 237968, 'to mie': 910122, 'mie the': 530844, 'the difficulty': 853275, 'difficulty she': 242405, 'ha finding': 370625, 'finding food': 307469, 'of panicked': 587746, 'our interlocutor nicole': 623576, 'interlocutor nicole who': 441702, 'nicole who ha': 562619, 'who ha toddler': 988871, 'ha toddler and': 372330, 'toddler and newborn': 920613, 'and newborn struggle': 67567, 'newborn struggle to': 560028, 'struggle to contain': 814384, 'to contain her': 903364, 'contain her emotion': 200477, 'her emotion when': 392013, 'emotion when she': 273268, 'when she describes': 983995, 'she describes to': 755978, 'describes to mie': 237969, 'to mie the': 910123, 'mie the difficulty': 530845, 'the difficulty she': 853277, 'difficulty she ha': 242406, 'she ha finding': 756075, 'ha finding food': 370626, 'finding food because': 307470, 'because of panicked': 119388, 'of panicked shopper': 587747, 'hiatus': 394784, 'the canada': 850315, 'canada through': 160584, 'through april': 894333, 'april 3rd': 83501, '3rd due': 18425, 'concern they': 193122, 'll continue': 496686, 'continue paying': 201095, 'paying regular': 645470, 'regular wage': 707894, 'wage benefit': 963827, 'to employee': 905019, 'employee online': 274079, 'open shipping': 612495, 'shipping fee': 758848, 'fee return': 302219, 'policy will': 663541, 'be adjusted': 113492, 'adjusted around': 32317, 'around this': 93583, 'this hiatus': 887918, 'close all store': 182508, 'all store across': 44486, 'across the canada': 29485, 'the canada through': 850318, 'canada through april': 160585, 'through april 3rd': 894336, 'april 3rd due': 83502, '3rd due to': 18426, 'to concern they': 903172, 'concern they ll': 193123, 'they ll continue': 882590, 'll continue paying': 496687, 'continue paying regular': 201098, 'paying regular wage': 645471, 'regular wage benefit': 707895, 'wage benefit to': 963828, 'benefit to employee': 127115, 'to employee online': 905023, 'employee online shopping': 274080, 'remain open shipping': 709821, 'open shipping fee': 612496, 'shipping fee return': 758849, 'fee return policy': 302220, 'return policy will': 719887, 'policy will be': 663542, 'will be adjusted': 992344, 'be adjusted around': 113494, 'adjusted around this': 32318, 'around this hiatus': 93584, 'googletranslate': 358214, 'digestive': 242460, 'toiletpaper knew': 922168, 'knew since': 476070, 'january that': 464677, 'would need': 1012046, 'prepared tweet': 670262, 'tweet from': 936364, 'from chinese': 334875, 'chinese people': 177316, 'people used': 650072, 'used googletranslate': 949926, 'googletranslate to': 358215, 'them sometimes': 876308, 'sometimes mentioned': 785221, 'mentioned digestive': 528822, 'digestive issue': 242461, 'issue going': 455768, 'with infected': 998993, 'people 19': 646721, 'toiletpaper knew since': 922169, 'knew since january': 476071, 'since january that': 770679, 'january that you': 464679, 'that you would': 847755, 'you would need': 1022454, 'would need to': 1012052, 'be prepared tweet': 116522, 'prepared tweet from': 670263, 'tweet from chinese': 936365, 'from chinese people': 334877, 'chinese people used': 177318, 'people used googletranslate': 650073, 'used googletranslate to': 949927, 'googletranslate to read': 358216, 'to read them': 912842, 'read them sometimes': 700598, 'them sometimes mentioned': 876309, 'sometimes mentioned digestive': 785222, 'mentioned digestive issue': 528823, 'digestive issue going': 242462, 'issue going on': 455769, 'on with infected': 605343, 'with infected people': 998994, 'infected people 19': 436613, 'grotesque': 366467, 'disgustingly': 245488, 'egregious': 270085, 'representation': 712884, 'hoarding grotesque': 399344, 'grotesque amount': 366468, 'of vital': 592846, 'mass at': 519743, 'at disgustingly': 98452, 'disgustingly inflated': 245489, 'for egregious': 320976, 'egregious profit': 270090, 'profit isn': 682789, 'perfect representation': 651333, 'representation of': 712887, 'capitalism do': 162738, 'if people buying': 414610, 'buying out and': 150850, 'out and hoarding': 625669, 'and hoarding grotesque': 64657, 'hoarding grotesque amount': 399345, 'grotesque amount of': 366469, 'amount of vital': 53267, 'of vital supply': 592848, 'vital supply in': 959729, 'supply in order': 825405, 'order to resell': 618702, 'to the mass': 916869, 'the mass at': 860240, 'mass at disgustingly': 519744, 'at disgustingly inflated': 98453, 'disgustingly inflated price': 245490, 'price for egregious': 673956, 'for egregious profit': 320977, 'egregious profit isn': 270091, 'profit isn the': 682790, 'isn the perfect': 454713, 'the perfect representation': 863544, 'perfect representation of': 651334, 'representation of capitalism': 712888, 'of capitalism do': 581120, 'capitalism do not': 162739, 'inequity': 436357, 'kirkham': 475421, 'crisis drive': 217314, 'drive inequity': 259076, 'inequity home': 436358, 'home cf': 400887, 'cf kirkham': 170284, 'the crisis drive': 852368, 'crisis drive inequity': 217317, 'drive inequity home': 259077, 'inequity home cf': 436359, 'home cf kirkham': 400888, 'bongkhao': 134310, 'duda': 261571, 'lakh': 479092, 'tobu': 919106, 'shri bongkhao': 767671, 'bongkhao advisor': 134311, 'advisor duda': 33729, 'duda on': 261572, 'monday donated': 536271, 'donated general': 254341, 'general medicine': 345406, 'medicine hand': 526798, 'and sum': 72678, 'sum of': 817874, '00 two': 569, 'two lakh': 937001, 'lakh towards': 479121, 'community of': 190009, 'of tobu': 592227, 'tobu area': 919107, 'shri bongkhao advisor': 767672, 'bongkhao advisor duda': 134312, 'advisor duda on': 33730, 'duda on monday': 261573, 'on monday donated': 602163, 'monday donated general': 536272, 'donated general medicine': 254342, 'general medicine hand': 345407, 'medicine hand sanitizer': 526799, 'mask and sum': 518375, 'and sum of': 72679, 'sum of 00': 817875, 'of 00 00': 579292, '00 00 two': 11, '00 two lakh': 570, 'two lakh towards': 937002, 'lakh towards the': 479122, 'the community of': 851288, 'community of tobu': 190011, 'of tobu area': 592228, 'downloads': 257651, 'surpassing': 828469, 'ha sent': 371852, 'sent walmart': 750852, 'grocery app': 364272, 'record downloads': 704947, 'downloads surpassing': 257671, 'surpassing amazon': 828470, 'amazon by': 50889, '20 demand': 13030, 'downloads sur': 257670, 'grocery shopping amid': 364994, 'pandemic ha sent': 635566, 'ha sent walmart': 371859, 'sent walmart grocery': 750853, 'walmart grocery app': 965335, 'grocery app to': 364274, 'app to record': 81778, 'to record downloads': 912978, 'record downloads surpassing': 704950, 'downloads surpassing amazon': 257672, 'surpassing amazon by': 828471, 'amazon by 20': 50890, 'by 20 demand': 151568, '20 demand for': 13031, 'record downloads sur': 704949, 'malawi': 511569, 'mutharika': 547068, 'malawi president': 511580, 'president peter': 670882, 'peter mutharika': 653527, 'mutharika order': 547069, 'order reduction': 618534, 'following growing': 312742, 'recent hike': 703910, 'in transport': 430268, 'transport fare': 929884, 'malawi president peter': 511581, 'president peter mutharika': 670884, 'peter mutharika order': 653528, 'mutharika order reduction': 547070, 'order reduction of': 618535, 'reduction of fuel': 706389, 'fuel price following': 340232, 'price following growing': 673908, 'following growing concern': 312743, 'concern over recent': 193051, 'over recent hike': 630564, 'recent hike in': 703911, 'hike in transport': 396226, 'in transport fare': 430269, 'andhra': 76150, 'lockdown paddy': 499755, 'paddy price': 633799, 'drop with': 260452, 'with closure': 997674, 'of inter': 585244, 'inter state': 441190, 'state border': 795428, 'border in': 135253, 'in andhra': 420399, 'andhra pradesh': 76151, 'pradesh via': 668813, '19 lockdown paddy': 8412, 'lockdown paddy price': 499756, 'paddy price drop': 633800, 'price drop with': 673585, 'drop with closure': 260453, 'with closure of': 997675, 'closure of inter': 183967, 'of inter state': 585245, 'inter state border': 441191, 'state border in': 795431, 'border in andhra': 135254, 'in andhra pradesh': 420400, 'andhra pradesh via': 76152, 'reverse': 720519, 'world equity': 1009518, 'likely pricing': 492083, '30 drop': 17031, 'in earnings': 422455, 'earnings per': 264922, 'per share': 651008, 'the 58': 848154, '58 collapse': 20527, 'collapse seen': 186053, 'crisis strategist': 218102, 'strategist say': 812583, 'say however': 738777, 'speed of': 788452, 'this decline': 887190, 'decline is': 231372, 'is unprecedented': 453538, 'unprecedented may': 943158, 'not reverse': 571371, 'reverse until': 720527, 'until peak': 943808, 'world equity market': 1009519, 'equity market are': 279955, 'market are likely': 516025, 'are likely pricing': 87804, 'likely pricing in': 492084, 'pricing in 30': 677936, 'in 30 drop': 419907, '30 drop in': 17032, 'drop in earnings': 260239, 'in earnings per': 422457, 'earnings per share': 264923, 'per share but': 651009, 'share but not': 754953, 'not the 58': 571980, 'the 58 collapse': 848156, '58 collapse seen': 20528, 'collapse seen in': 186054, 'in the financial': 429201, 'the financial crisis': 855211, 'financial crisis strategist': 306382, 'crisis strategist say': 218103, 'strategist say however': 812584, 'say however the': 738778, 'however the speed': 409483, 'the speed of': 867561, 'speed of this': 788454, 'of this decline': 591962, 'this decline is': 887191, 'decline is unprecedented': 231375, 'is unprecedented may': 453542, 'unprecedented may not': 943159, 'may not reverse': 521387, 'not reverse until': 571372, 'reverse until peak': 720528, 'until peak in': 943809, 'visuals': 959656, 'pict': 656096, 'waiting on': 964362, 'more visuals': 540921, 'visuals wa': 959661, 'wa hoping': 962330, 'long version': 501805, 'version too': 954927, 'too this': 925124, 'online challenge': 608000, 'challenge on': 171520, 'on also': 599264, 'also waiting': 49073, 'ask me': 95579, 'toiletpaper had': 922046, 'clarify that': 180083, 'home pict': 401859, 'waiting on more': 964366, 'on more visuals': 602217, 'more visuals wa': 540922, 'visuals wa hoping': 959662, 'wa hoping for': 962331, 'hoping for the': 403928, 'the long version': 859685, 'long version too': 501806, 'version too this': 954928, 'too this is': 925125, 'is the online': 452877, 'the online challenge': 862266, 'online challenge on': 608001, 'challenge on also': 171521, 'on also waiting': 599265, 'also waiting for': 49074, 'waiting for parent': 964329, 'for parent to': 324392, 'parent to ask': 641749, 'to ask me': 900758, 'ask me for': 95581, 'me for toiletpaper': 522767, 'for toiletpaper had': 327256, 'toiletpaper had to': 922047, 'had to clarify': 373677, 'to clarify that': 902799, 'clarify that it': 180084, 'that it not': 844729, 'it not my': 459898, 'not my home': 570620, 'my home pict': 548694, 'tinto': 898644, 'crisis lower': 217684, 'price dollar': 673483, 'dollar help': 253003, 'help rio': 390467, 'rio tinto': 722589, 'tinto meet': 898645, 'meet cost': 527445, 'of workplace': 593307, 'workplace change': 1009190, 'curb spread': 220575, 'coronavirus crisis lower': 205757, 'crisis lower oil': 217686, 'oil price dollar': 597107, 'price dollar help': 673484, 'dollar help rio': 253004, 'help rio tinto': 390468, 'rio tinto meet': 722590, 'tinto meet cost': 898646, 'meet cost of': 527446, 'cost of workplace': 208067, 'of workplace change': 593308, 'workplace change to': 1009191, 'change to curb': 172344, 'to curb spread': 903804, 'curb spread of': 220576, 'kaplan': 470847, 'federalreserve': 302092, 'dallas fed': 225125, 'fed kaplan': 301843, 'kaplan asks': 470848, 'asks how': 96146, 'will behave': 992814, 'behave the': 123792, 'crisis subsides': 218109, 'subsides federalreserve': 815957, 'federalreserve economy': 302093, 'economy via': 268318, 'dallas fed kaplan': 225127, 'fed kaplan asks': 301844, 'kaplan asks how': 470849, 'asks how consumer': 96147, 'business will behave': 144678, 'will behave the': 992816, 'behave the crisis': 123793, 'the crisis subsides': 852453, 'crisis subsides federalreserve': 218110, 'subsides federalreserve economy': 815958, 'federalreserve economy via': 302094, 'richest': 721336, 'amazon 800': 50827, '800 00': 22650, 'safety we': 730778, 'should ask': 765524, 'ask jeff': 95571, 'jeff bezos': 464999, 'bezos the': 129287, 'the richest': 865788, 'richest man': 721344, 'world if': 1009646, 'he can': 384809, 'guarantee paid': 367713, 'leave hazard': 484810, 'safety condition': 730506, 'condition for': 193452, 'majority of amazon': 509548, 'of amazon 800': 580026, 'amazon 800 00': 50828, '800 00 worker': 22653, '00 worker work': 613, 'worker work in': 1008283, 'work in warehouse': 1005356, 'warehouse and worry': 966689, 'worry about their': 1010657, 'about their safety': 26593, 'their safety we': 874618, 'safety we should': 730779, 'we should ask': 973257, 'should ask jeff': 765525, 'ask jeff bezos': 95572, 'jeff bezos the': 465004, 'bezos the richest': 129288, 'the richest man': 865792, 'richest man in': 721347, 'man in the': 512118, 'the world if': 871890, 'world if he': 1009647, 'if he can': 414209, 'he can afford': 384810, 'afford to guarantee': 34797, 'to guarantee paid': 907056, 'guarantee paid sick': 367714, 'sick leave hazard': 768495, 'leave hazard pay': 484811, 'hazard pay and': 384558, 'pay and safety': 644739, 'and safety condition': 70742, 'safety condition for': 730507, 'condition for all': 193453, 'for all his': 319132, 'all his worker': 43127, 'emarketer here': 272400, 'changed because': 172441, 'emarketer here how': 272401, 'ha changed because': 370118, 'changed because of': 172442, 'manpower': 513329, 'hema': 391673, 'china alibaba': 176455, 'alibaba introduced': 41716, 'introduced resource': 443445, 'resource leasing': 714828, 'leasing model': 484315, 'share manpower': 755090, 'manpower for': 513332, 'chain hema': 170777, 'hema to': 391676, 'facilitate massive': 295268, 'massive increase': 520042, 'epidemic part': 279427, 'blog series': 133009, 'china alibaba introduced': 176456, 'alibaba introduced resource': 41717, 'introduced resource leasing': 443446, 'resource leasing model': 714829, 'leasing model to': 484316, 'model to share': 535324, 'to share manpower': 914352, 'share manpower for': 755091, 'manpower for it': 513333, 'for it grocery': 322708, 'it grocery chain': 458352, 'grocery chain hema': 364364, 'chain hema to': 170778, 'hema to facilitate': 391677, 'to facilitate massive': 905592, 'facilitate massive increase': 295269, 'massive increase in': 520043, 'in demand during': 422121, '19 epidemic part': 6811, 'epidemic part of': 279428, 'part of new': 642365, 'of new blog': 586955, 'new blog series': 558408, 'theoldman': 877827, 'destined': 238992, 'pandemic washyourhands': 636923, 'washyourhands okay': 967889, 'my psa': 549862, 'psa had': 687405, 'for theoldman': 326951, 'theoldman today': 877828, 'grab grocery': 361493, 'him ten': 396720, 'ten thing': 837807, 'thing long': 884563, 'and while': 75564, 'while really': 987203, 'get along': 346528, 'him sometimes': 396715, 'sometimes and': 785184, 'likely destined': 491985, 'destined to': 238996, 'pandemic washyourhands okay': 636924, 'washyourhands okay so': 967890, 'okay so here': 598003, 'so here my': 777299, 'here my psa': 393367, 'my psa had': 549863, 'psa had to': 687406, 'store for theoldman': 807846, 'for theoldman today': 326952, 'theoldman today to': 877829, 'to grab grocery': 906964, 'grab grocery list': 361494, 'grocery list for': 364699, 'list for him': 494326, 'for him ten': 322287, 'him ten thing': 396721, 'ten thing long': 837808, 'thing long and': 884564, 'long and while': 501333, 'and while really': 75570, 'while really don': 987204, 'really don get': 702140, 'don get along': 253536, 'get along with': 346529, 'along with him': 47056, 'with him sometimes': 998826, 'him sometimes and': 396716, 'sometimes and think': 785185, 'and think that': 73970, 'think that one': 885603, 'one of is': 606747, 'of is likely': 585321, 'is likely destined': 449346, 'likely destined to': 491986, 'destined to kill': 238997, 'letsgetafterit': 487264, 'cuomoprimetime': 220436, 'amc': 51354, 'syfy': 830744, 'logo': 500819, 'lockdown letsgetafterit': 499592, 'letsgetafterit cuomoprimetime': 487265, 'cuomoprimetime cnn': 220437, 'cnn nbc': 184765, 'nbc shutdown': 553239, 'shutdown toiletpaper': 768115, 'toiletpaperapocalypse amc': 922897, 'amc syfy': 51355, 'syfy 19': 830745, 'nation new': 552264, 'new logo': 559061, 'logo think': 500838, 'lockdown letsgetafterit cuomoprimetime': 499593, 'letsgetafterit cuomoprimetime cnn': 487266, 'cuomoprimetime cnn nbc': 220438, 'cnn nbc shutdown': 184767, 'nbc shutdown toiletpaper': 553240, 'shutdown toiletpaper toiletpaperapocalypse': 768117, 'toiletpaper toiletpaperapocalypse amc': 922633, 'toiletpaperapocalypse amc syfy': 922898, 'amc syfy 19': 51356, 'syfy 19 our': 830746, '19 our nation': 9055, 'our nation new': 623983, 'nation new logo': 552265, 'new logo think': 559063, 'logo think that': 500839, 'think that say': 885607, 'that say it': 846137, 'say it all': 738831, 'last on': 480417, 'various item': 952610, 'supermarket eg': 820097, 'eg fruit': 269709, 'vegetable package': 954064, 'package also': 633206, 'the newspaper': 861637, 'newspaper that': 561102, 'that delivered': 843483, 'long doe covid': 501402, '19 last on': 8273, 'last on the': 480420, 'on the various': 604424, 'the various item': 870648, 'various item from': 952611, 'the supermarket eg': 868568, 'supermarket eg fruit': 820098, 'eg fruit vegetable': 269710, 'fruit vegetable package': 339186, 'vegetable package also': 954065, 'package also the': 633207, 'also the newspaper': 48982, 'the newspaper that': 861638, 'newspaper that delivered': 561103, 'scared trump': 741033, 're terrible': 699675, 'terrible reporter': 838424, 'reporter that': 712636, 'what say': 982123, 'say unreal': 739423, 'do you say': 250674, 'you say to': 1021005, 'say to american': 739384, 'to american who': 900422, 'american who are': 52302, 'who are scared': 988211, 'are scared trump': 89856, 'scared trump say': 741034, 'say that you': 739261, 'that you re': 847740, 'you re terrible': 1020772, 're terrible reporter': 699676, 'terrible reporter that': 838425, 'reporter that what': 712637, 'that what say': 847466, 'what say unreal': 982124, 'crisis last': 217641, 'last my': 480356, 'ha hour': 370889, 'from 00': 334148, '00 exclusively': 192, 'senior over': 750380, 'old came': 598172, '09 45': 1149, '45 and': 19067, 'didn challenge': 241007, 'challenge me': 171503, 'me now': 523235, 'now really': 575647, 'feel old': 302799, 'old reading': 598442, 'reading writing': 700827, 'the crisis last': 852399, 'crisis last my': 217643, 'last my local': 480357, 'supermarket ha hour': 820630, 'ha hour from': 370890, 'hour from 00': 405630, 'from 00 to': 334151, '00 to 10': 534, 'to 10 00': 899419, '10 00 exclusively': 1196, '00 exclusively for': 193, 'exclusively for senior': 289721, 'for senior over': 325472, 'senior over 60': 750381, 'over 60 year': 629884, 'year old came': 1014815, 'old came in': 598173, 'came in at': 157014, 'in at 09': 420547, 'at 09 45': 97393, '09 45 and': 1150, '45 and they': 19068, 'and they didn': 73901, 'they didn challenge': 881926, 'didn challenge me': 241008, 'challenge me now': 171504, 'me now really': 523238, 'now really feel': 575648, 'really feel old': 702196, 'feel old reading': 302800, 'old reading writing': 598443, 'su': 815658, 'su student': 815665, 'student this': 814787, 'who serve': 989595, 'food every': 314416, 'su student this': 815666, 'student this is': 814788, 'is what happens': 453879, 'people who serve': 650339, 'who serve you': 989598, 'serve you food': 751972, 'you food every': 1018613, 'food every day': 314417, 'spending dropped': 788789, 'dropped 15': 260503, '15 yoy': 3880, 'yoy in': 1026956, 'nyc from': 577989, '19 25': 4738, '25 hobby': 15883, 'hobby and': 399764, 'and toy': 74329, 'toy sale': 927695, 'up 39': 944166, '39 while': 18181, 'while travel': 987475, 'travel spending': 930514, 'dropped 76': 260520, '76 see': 22246, 'weekly update': 977588, 'city industry': 179209, 'business most': 144068, 'most impacted': 542389, 'consumer spending dropped': 199055, 'spending dropped 15': 788790, 'dropped 15 yoy': 260504, '15 yoy in': 3881, 'yoy in nyc': 1026958, 'in nyc from': 426020, 'nyc from march': 577990, 'from march 19': 336346, 'march 19 25': 515113, '19 25 hobby': 4739, '25 hobby and': 15884, 'hobby and toy': 399765, 'and toy sale': 74330, 'toy sale up': 927696, 'sale up 39': 732620, 'up 39 while': 944167, '39 while travel': 18182, 'while travel spending': 987476, 'travel spending dropped': 930515, 'spending dropped 76': 788791, 'dropped 76 see': 260521, '76 see our': 22247, 'see our weekly': 745535, 'our weekly update': 625369, 'weekly update on': 977589, 'on the city': 604026, 'the city industry': 850942, 'city industry and': 179210, 'industry and business': 435630, 'and business most': 59291, 'business most impacted': 144069, 'most impacted by': 542390, 'staygreetingstayathome': 797884, 'teacher nurse': 835487, 'and shelf': 71442, 'shelf stocker': 757594, 'stocker nursing': 803512, 'on duty': 600446, 'duty performing': 263605, 'performing critical': 651495, 'critical work': 218723, 'are amazing': 84511, 'amazing and': 50639, 'great deal': 362612, 'deal staygreetingstayathome': 229489, 'out to teacher': 627688, 'to teacher nurse': 916315, 'teacher nurse doctor': 835489, 'nurse doctor grocery': 577295, 'staff and shelf': 792160, 'and shelf stocker': 71451, 'shelf stocker nursing': 757595, 'stocker nursing home': 803513, 'nursing home staff': 577619, 'home staff and': 402112, 'staff and anyone': 792123, 'and anyone on': 58228, 'anyone on duty': 80443, 'on duty performing': 600447, 'duty performing critical': 263606, 'performing critical work': 651496, 'critical work during': 218725, 'work during these': 1005072, 'difficult time you': 242323, 'time you all': 898399, 'all are amazing': 42037, 'are amazing and': 84512, 'amazing and we': 50645, 'and we thank': 75328, 'you for great': 1018640, 'for great deal': 322002, 'great deal staygreetingstayathome': 362615, 'sanitizer there': 735876, 'another golden': 77634, 'golden commodity': 356045, 'commodity fast': 189177, 'fast disappearing': 299944, 'crisis firearm': 217373, 'store around the': 806542, 'around the nation': 93546, 'the nation are': 861219, 'nation are struggling': 552128, 'for food toilet': 321645, 'hand sanitizer there': 375619, 'sanitizer there is': 735877, 'there is another': 878524, 'is another golden': 445736, 'another golden commodity': 77635, 'golden commodity fast': 356046, 'commodity fast disappearing': 189178, 'fast disappearing from': 299945, 'disappearing from the': 244081, 'the shelf amid': 866822, 'shelf amid the': 756709, 'the crisis firearm': 852377, 'sdw': 743040, 'stagedancewearuk': 793232, 'stagedancewearonline': 793229, 'keepdancing': 472330, 'swipe our': 830428, 'our popular': 624394, 'popular online': 664577, 'online product': 608808, 'product take': 681677, 'look through': 502621, 'through and': 894324, 'maybe treat': 521864, 'treat yourself': 930927, 'your dancer': 1023459, 'dancer price': 225593, 'online include': 608408, 'include delivery': 431549, 'delivery sdw': 234411, 'sdw stagedancewearuk': 743041, 'stagedancewearuk stagedancewearonline': 793233, 'stagedancewearonline socialdistancing': 793230, 'socialdistancing keepdancing': 780485, 'swipe our popular': 830429, 'our popular online': 624395, 'popular online product': 664578, 'online product take': 608810, 'product take look': 681678, 'take look through': 832297, 'look through and': 502622, 'through and maybe': 894326, 'and maybe treat': 66823, 'maybe treat yourself': 521865, 'treat yourself or': 930928, 'yourself or your': 1026673, 'or your dancer': 617879, 'your dancer price': 1023460, 'dancer price online': 225594, 'price online include': 675749, 'online include delivery': 608409, 'include delivery sdw': 431551, 'delivery sdw stagedancewearuk': 234412, 'sdw stagedancewearuk stagedancewearonline': 743042, 'stagedancewearuk stagedancewearonline socialdistancing': 793234, 'stagedancewearonline socialdistancing keepdancing': 793231, 'closed through': 183389, 'march we': 515517, 'fulfill and': 340399, 'and ship': 71469, 'out order': 626960, 'placed online': 657907, 'pickup will': 656049, 'to regular': 913110, 'regular hour': 707791, 'be closed through': 114134, 'closed through the': 183391, 'of march we': 586217, 'march we are': 515518, 'doing this to': 252773, 'this to keep': 890740, 'keep our staff': 471752, 'customer safe during': 222785, 'crisis we will': 218357, 'continue to fulfill': 201200, 'to fulfill and': 906301, 'fulfill and ship': 340400, 'and ship out': 71471, 'ship out order': 758709, 'out order placed': 626961, 'order placed online': 618516, 'placed online pickup': 657908, 'online pickup will': 608759, 'pickup will not': 656050, 'not be available': 568358, 'be available until': 113765, 'available until we': 104678, 'until we return': 943928, 'return to regular': 719928, 'to regular hour': 913111, 'gorman': 358331, 'creatively': 216195, 'our account': 622017, 'account planner': 28745, 'planner marie': 658500, 'marie gorman': 515704, 'gorman share': 358332, 'share about': 754906, 'some sharp': 783837, 'sharp brand': 755667, 'are creatively': 85623, 'creatively pivoting': 216198, 'better meet': 128365, 'in com': 421574, 'com and': 186917, 'here marketing': 393336, 'our account planner': 622018, 'account planner marie': 28746, 'planner marie gorman': 658501, 'marie gorman share': 515705, 'gorman share about': 358333, 'share about how': 754907, 'about how some': 25473, 'how some sharp': 408720, 'some sharp brand': 783838, 'sharp brand are': 755668, 'brand are creatively': 137741, 'are creatively pivoting': 85624, 'creatively pivoting to': 216199, 'pivoting to better': 657132, 'to better meet': 901785, 'better meet consumer': 128366, 'consumer need during': 198190, 'crisis read it': 217942, 'read it in': 700385, 'it in com': 458728, 'in com and': 421575, 'com and here': 186919, 'and here marketing': 64532, 'to hawaii': 907346, 'hawaii have': 384450, 'dropped but': 260545, 'asking tourist': 96100, 'tourist to': 927042, 'postpone trip': 666789, 'trip for': 932070, 'for 30': 318799, 'ticket price to': 895658, 'price to hawaii': 676998, 'to hawaii have': 907347, 'hawaii have dropped': 384451, 'have dropped but': 380377, 'dropped but is': 260546, 'but is asking': 146071, 'is asking tourist': 445835, 'asking tourist to': 96101, 'tourist to postpone': 927045, 'to postpone trip': 911929, 'postpone trip for': 666790, 'trip for 30': 932071, 'for 30 day': 318800, '30 day to': 17023, 'day to slow': 228586, 'dailyfx': 224912, 'policy dailyfx': 663373, '19 policy dailyfx': 9744, 'china reserve': 176905, 'reserve fell': 714056, 'second consecutive': 743682, 'consecutive month': 194819, 'march to': 515497, 'to 06': 899416, '06 trillion': 995, 'trillion the': 932006, 'of reserve': 588970, 'reserve in': 714070, 'other currency': 620048, 'currency fell': 221029, 'novel outbreak': 573801, 'china reserve fell': 176906, 'reserve fell for': 714057, 'the second consecutive': 866576, 'second consecutive month': 743683, 'consecutive month in': 194820, 'in march to': 425124, 'march to 06': 515498, 'to 06 trillion': 899417, '06 trillion the': 996, 'trillion the value': 932008, 'value of reserve': 952168, 'of reserve in': 588971, 'reserve in other': 714072, 'in other currency': 426240, 'other currency fell': 620049, 'currency fell due': 221030, 'the global financial': 856302, 'global financial market': 351941, 'financial market turmoil': 306514, 'market turmoil and': 517267, 'turmoil and decline': 935614, 'amid the novel': 52703, 'the novel outbreak': 861919, 'corner grocery': 203646, 'people officially': 648945, 'not from': 569535, 'easily people': 265238, 'are manipulated': 88022, 'manipulated how': 513206, 'even serious': 284559, 'braving the corner': 138286, 'the corner grocery': 851746, 'corner grocery store': 203648, '55 00 people': 20355, '00 people officially': 414, 'people officially scared': 648946, 'scared not from': 740988, 'not from but': 569537, 'from but from': 334765, 'but from people': 145781, 'from people how': 336881, 'how easily people': 407776, 'easily people are': 265239, 'people are manipulated': 647019, 'are manipulated how': 88023, 'manipulated how selfish': 513207, 'isn even serious': 454501, 'uk still': 938738, 'still being': 800272, 'being stripped': 125864, 'including toilet': 432211, 'paper official': 640526, 'the uk still': 870284, 'uk still being': 938739, 'still being stripped': 800280, 'being stripped of': 125866, 'essential item including': 281207, 'item including toilet': 463371, 'including toilet paper': 432212, 'toilet paper official': 921375, 'paper official said': 640527, 'official said there': 595904, 'said there wa': 731464, 'wa no need': 962730, 'starch': 794115, 'marchmadness': 515561, 'fridayvibes': 333372, 'bread pasta': 138562, 'pasta potato': 643787, 'potato rice': 666974, 'rice cereal': 721023, 'cereal flour': 169922, 'flour emptied': 311094, 'emptied from': 274682, 'shelf we': 757748, 're officially': 699166, 'of starch': 590045, 'starch madness': 794116, 'madness marchmadness': 508190, 'marchmadness quaratineandchill': 515562, 'quaratineandchill coronacrisis': 693106, 'coronacrisis fridayvibes': 204608, 'of the bread': 590831, 'the bread pasta': 849962, 'bread pasta potato': 138566, 'pasta potato rice': 643788, 'potato rice cereal': 666975, 'rice cereal flour': 721024, 'cereal flour emptied': 169923, 'flour emptied from': 311095, 'emptied from our': 274683, 'from our grocery': 336775, 'store shelf we': 810108, 'shelf we re': 757753, 'we re officially': 972927, 're officially in': 699167, 'officially in the': 596007, 'middle of starch': 530685, 'of starch madness': 590046, 'starch madness marchmadness': 794117, 'madness marchmadness quaratineandchill': 508191, 'marchmadness quaratineandchill coronacrisis': 515563, 'quaratineandchill coronacrisis fridayvibes': 693107, 'we mean': 972358, 'starve in': 795201, 'home crazy': 400967, 'birx say you': 131484, 'say you now': 739519, 'you now can': 1020154, 'now can go': 574331, 'store so are': 810213, 'are we mean': 91577, 'we mean to': 972359, 'mean to starve': 524744, 'to starve in': 915245, 'starve in our': 795202, 'our home crazy': 623444, 'torkham': 925900, 'chaman': 171662, 'dawood': 227072, 'the torkham': 869804, 'torkham and': 925901, 'and chaman': 59713, 'chaman crossing': 171663, 'crossing point': 219087, 'point will': 662715, 'will reopen': 994651, 'reopen for': 711359, 'and transit': 74372, 'transit after': 929620, 'of developing': 582568, 'developing procedure': 239790, 'procedure well': 679829, 'well strong': 978618, 'strong spirit': 814117, 'of partnership': 587798, 'with dawood': 997931, 'dawood trade': 227073, 'trade can': 928429, 'can resume': 159472, 'resume between': 717736, 'between our': 128844, 'breaking news the': 139009, 'news the torkham': 560872, 'the torkham and': 869805, 'torkham and chaman': 925902, 'and chaman crossing': 59714, 'chaman crossing point': 171664, 'crossing point will': 219088, 'point will reopen': 662716, 'will reopen for': 994652, 'reopen for trade': 711361, 'for trade and': 327304, 'trade and transit': 928413, 'and transit after': 74373, 'transit after week': 929621, 'week of developing': 976609, 'of developing procedure': 582569, 'developing procedure well': 239791, 'procedure well strong': 679830, 'well strong spirit': 978619, 'strong spirit of': 814118, 'spirit of partnership': 789494, 'of partnership with': 587799, 'partnership with dawood': 642949, 'with dawood trade': 997932, 'dawood trade can': 227074, 'trade can resume': 928430, 'can resume between': 159475, 'resume between our': 717737, 'between our country': 128845, 'our country thank': 622603, 'you the business': 1021587, 'the business community': 850162, 'criminal target': 216882, 'target the': 834512, 'the desperate': 853192, 'desperate with': 238563, 'with loan': 999274, 'loan scam': 497526, 'criminal target the': 216883, 'target the desperate': 834513, 'the desperate with': 853195, 'desperate with loan': 238564, 'with loan scam': 999275, 'loan scam and': 497527, 'scam and fake': 739996, 'and fake home': 62629, 'home test kit': 402200, 'vegetarianrecipes': 954153, 'tofurkey': 920657, 'say sick': 739136, 'and luckily': 66476, 'luckily still': 506516, 'job had': 465847, 'of fun': 584006, 'fun doing': 341155, 'it dinner': 457559, 'dinner pasta': 243087, 'pasta vegetarianrecipes': 643840, 'vegetarianrecipes tofurkey': 954154, 'to say sick': 913836, 'say sick of': 739137, 'of this because': 591941, 'this because of': 886517, 'the quarantine but': 864963, 'quarantine but work': 692068, 'store and luckily': 806288, 'and luckily still': 66477, 'luckily still have': 506517, 'still have job': 800655, 'have job had': 381170, 'job had lot': 465849, 'lot of fun': 504195, 'of fun doing': 584007, 'fun doing it': 341156, 'doing it dinner': 252482, 'it dinner pasta': 457560, 'dinner pasta vegetarianrecipes': 243088, 'pasta vegetarianrecipes tofurkey': 643841, 'tillys': 896141, 'you making': 1019768, 'making customer': 511010, 'customer pay': 222677, 'for shipping': 325549, 'shipping when': 758942, 'ha control': 370241, 'control over': 202094, 'why put': 991308, 'burden on': 142750, 'consumer smh': 199009, 'smh tillys': 775689, 'are you making': 91819, 'you making customer': 1019769, 'making customer pay': 511012, 'customer pay for': 222678, 'pay for shipping': 644900, 'for shipping when': 325552, 'shipping when all': 758943, 'when all your': 983139, 'all your store': 45586, 'your store are': 1025960, 'are closed no': 85355, 'closed no one': 183242, 'one ha control': 606386, 'ha control over': 370242, 'control over covid': 202096, '19 but why': 5544, 'but why put': 147864, 'why put the': 991309, 'put the burden': 690853, 'the burden on': 850127, 'burden on the': 142753, 'the consumer smh': 851596, 'consumer smh tillys': 199010, 'go supermarket': 354174, 'please bring': 659735, 'bring mask': 140021, 'least medical': 484548, 'medical level': 526241, 'level normal': 487620, 'normal mask': 567217, 'to go supermarket': 906858, 'go supermarket please': 354180, 'supermarket please bring': 822010, 'please bring mask': 659736, 'bring mask at': 140022, 'mask at least': 518425, 'at least medical': 99521, 'least medical level': 484549, 'medical level normal': 526242, 'level normal mask': 487621, 'normal mask is': 567218, 'is not available': 450033, 'not available for': 568301, 'available for covid': 104363, 'loyal': 506266, 'kindly review': 475165, 'review your': 720601, 'your token': 1026181, 'token price': 923480, 'taking into': 833404, 'account people': 28741, 'on necessity': 602355, 'necessity there': 554273, 'money going': 536787, 'your loyal': 1024749, 'loyal player': 506277, 'player now': 659324, 'kindly review your': 475166, 'review your token': 720602, 'your token price': 1026182, 'token price taking': 923481, 'price taking into': 676753, 'taking into account': 833405, 'into account people': 442367, 'account people are': 28742, 'people are trying': 647104, 'up on necessity': 945596, 'on necessity there': 602357, 'necessity there is': 554274, 'is no money': 449952, 'no money going': 564783, 'money going around': 536788, 'going around what': 355031, 'around what are': 93620, 'you doing to': 1018301, 'doing to stand': 252800, 'to stand by': 915157, 'stand by your': 793504, 'by your loyal': 154790, 'your loyal player': 1024751, 'loyal player now': 506278, 'mohr': 535578, 'cascade': 165559, 'economy begin': 267698, 'contract and': 201631, 'and enter': 62176, 'enter recession': 278283, 'recession some': 704362, 'economist fear': 267552, 'debt burden': 230427, 'burden could': 142736, 'more pressing': 540126, 'pressing issue': 671116, 're starting': 699576, 'some crack': 782627, 'crack in': 214701, 'the armor': 848901, 'armor mohr': 92977, 'mohr said': 535579, 'said fear': 731070, 'will trigger': 995231, 'trigger cascade': 931867, 'cascade of': 165560, 'loan default': 497426, 'if the economy': 414969, 'the economy begin': 853940, 'economy begin to': 267699, 'begin to contract': 123579, 'to contract and': 903422, 'contract and enter': 201632, 'and enter recession': 62177, 'enter recession some': 278284, 'recession some economist': 704363, 'some economist fear': 782727, 'economist fear the': 267553, 'fear the debt': 301375, 'the debt burden': 852985, 'debt burden could': 230428, 'burden could be': 142737, 'be more pressing': 115990, 'more pressing issue': 540127, 'pressing issue we': 671117, 'issue we re': 455998, 'we re starting': 972972, 're starting to': 699577, 'see some crack': 745714, 'some crack in': 782628, 'crack in the': 214702, 'in the armor': 428986, 'the armor mohr': 848902, 'armor mohr said': 92978, 'mohr said fear': 535580, 'said fear that': 731072, 'fear that covid': 301360, '19 will trigger': 12116, 'will trigger cascade': 995233, 'trigger cascade of': 931868, 'cascade of consumer': 165561, 'of consumer loan': 581753, 'consumer loan default': 198060, 'loorollgate': 503181, 'placard': 657280, 'loorollgate strike': 503182, 'again spotted': 37176, 'spotted today': 790217, 'supermarket desperate': 819952, 'desperate poet': 238547, 'poet dump': 662363, 'dump protest': 262182, 'protest placard': 685921, 'placard in': 657283, 'in trolley': 430291, 'trolley bay': 932381, 'bay panicbuying': 112960, 'panicbuying hoarding': 638963, 'loorollgate strike again': 503183, 'strike again spotted': 813722, 'again spotted today': 37177, 'spotted today at': 790218, 'today at supermarket': 919285, 'at supermarket desperate': 100713, 'supermarket desperate poet': 819953, 'desperate poet dump': 238548, 'poet dump protest': 662364, 'dump protest placard': 262183, 'protest placard in': 685922, 'placard in trolley': 657284, 'in trolley bay': 430292, 'trolley bay panicbuying': 932382, 'bay panicbuying hoarding': 112961, 'good coverage': 356927, 'coverage main': 212362, 'main page': 508783, 'page here': 633855, 'packaging here': 633547, 'report ha good': 711993, 'ha good coverage': 370738, 'good coverage main': 356928, 'coverage main page': 212363, 'main page here': 508785, 'page here the': 633856, 'the one about': 862187, 'one about food': 605853, 'about food packaging': 25259, 'food packaging here': 315739, 'downloading': 257648, 'teamukcbcdubai': 835887, 'mydubai': 550708, 'dubai take': 261490, 'hike you': 396301, 'on 600': 599110, '600 54': 21057, '54 55': 20311, '55 55': 20356, '55 learn': 20389, 'by downloading': 152413, 'downloading the': 257649, 'the dubai': 853763, 'dubai consumer': 261464, 'app stay': 81762, 'responsibly teamukcbcdubai': 716115, 'teamukcbcdubai dubai': 835888, 'dubai uae': 261494, 'uae mydubai': 937764, 'mydubai health': 550709, 'health safety': 386817, 'safety solidarity': 730733, 'solidarity humanity': 781933, 'dubai take care': 261491, 'of their consumer': 591652, 'their consumer if': 872858, 'consumer if you': 197797, 'you see price': 1021059, 'see price hike': 745601, 'price hike you': 674541, 'hike you can': 396302, 'report it on': 712065, 'it on 600': 460026, 'on 600 54': 599111, '600 54 55': 21058, '54 55 55': 20312, '55 55 learn': 20357, '55 learn more': 20390, 'learn more by': 484018, 'more by downloading': 538749, 'by downloading the': 152414, 'downloading the dubai': 257650, 'the dubai consumer': 853764, 'dubai consumer app': 261465, 'consumer app stay': 196263, 'app stay safe': 81763, 'safe and shop': 729481, 'and shop responsibly': 71509, 'shop responsibly teamukcbcdubai': 760716, 'responsibly teamukcbcdubai dubai': 716116, 'teamukcbcdubai dubai uae': 835889, 'dubai uae mydubai': 261496, 'uae mydubai health': 937765, 'mydubai health safety': 550710, 'health safety solidarity': 386820, 'safety solidarity humanity': 730734, '2020undefeated': 14757, 'revivetheeconomy': 720702, 'helptheearth': 391632, 'over plan': 630507, 'drop some': 260393, 'some pretty': 783629, 'pretty heavy': 671431, 'heavy coin': 388624, 'coin at': 185625, 'at restaurant': 100297, 'retailer besides': 719039, 'who with': 990018, 'me 2020undefeated': 522332, '2020undefeated revivetheeconomy': 14758, 'revivetheeconomy push': 720703, 'push helptheearth': 690277, '19 is over': 8022, 'is over plan': 450720, 'over plan to': 630508, 'plan to drop': 658284, 'to drop some': 904778, 'drop some pretty': 260396, 'some pretty heavy': 783630, 'pretty heavy coin': 671432, 'heavy coin at': 388625, 'coin at restaurant': 185626, 'at restaurant and': 100298, 'restaurant and retailer': 716297, 'and retailer besides': 70455, 'retailer besides the': 719040, 'besides the wonderful': 127528, 'wonderful supermarket who': 1004124, 'supermarket who with': 823862, 'who with me': 990020, 'with me 2020undefeated': 999438, 'me 2020undefeated revivetheeconomy': 522333, '2020undefeated revivetheeconomy push': 14759, 'revivetheeconomy push helptheearth': 720704, 'and actually': 57651, 'actually have': 30828, 'have human': 381001, 'human fight': 410494, 'fight each': 304712, 'over damn': 630137, 'damn package': 225407, 'paper cannot': 640012, 'dinner right': 243091, 'it fucking': 458166, 'fucking stupid': 340018, 'stupid covid': 815374, 'ridiculous now the': 721571, 'now the food': 576042, 'the food isn': 855565, 'food isn going': 315166, 'sensible and actually': 750630, 'and actually have': 57654, 'actually have human': 30830, 'have human fight': 381003, 'human fight each': 410495, 'fight each other': 304713, 'other over damn': 620638, 'over damn package': 630138, 'damn package of': 225408, 'toilet paper cannot': 921222, 'paper cannot even': 640014, 'supermarket for dinner': 820390, 'for dinner right': 320722, 'dinner right now': 243092, 'right now it': 722089, 'now it fucking': 575115, 'it fucking stupid': 458171, 'fucking stupid covid': 340020, 'stupid covid 19': 815375, 'precarious': 669243, 'to lock': 909393, 'one know': 606560, 'happening around': 377326, 'rising everyone': 723208, 'in precarious': 426911, 'precarious fear': 669246, 'fear may': 301192, 'allah help': 45601, 'country is about': 210795, 'about to lock': 26728, 'to lock down': 909394, 'lock down due': 499027, '19 no one': 8804, 'no one know': 564943, 'one know what': 606563, 'is happening around': 448275, 'happening around the': 377327, 'around the market': 93545, 'the market price': 860143, 'market price is': 516891, 'price is rising': 674886, 'is rising everyone': 451553, 'rising everyone is': 723209, 'everyone is in': 287082, 'is in precarious': 448802, 'in precarious fear': 426912, 'precarious fear may': 669247, 'fear may allah': 301193, 'may allah help': 520904, 'via panicked': 956158, 'stockpiling toilet': 804102, 'is impossible': 448739, 'find anywhere': 306812, 'anywhere is': 81126, 'and hysteria': 64913, 'hysteria greater': 412446, 'greater than': 363243, 'via panicked people': 956159, 'panicked people are': 639276, 'people are emptying': 646963, 'are emptying supermarket': 86186, 'shelf and stockpiling': 756765, 'and stockpiling toilet': 72456, 'stockpiling toilet paper': 804103, 'sanitizer is impossible': 735193, 'is impossible to': 448745, 'impossible to find': 419397, 'to find anywhere': 905882, 'find anywhere is': 306813, 'anywhere is the': 81127, 'is the impact': 452826, 'the fear and': 855032, 'fear and hysteria': 301031, 'and hysteria greater': 64914, 'hysteria greater than': 412447, 'greater than the': 363248, 'than the risk': 841269, 'risk of the': 723783, 'quail': 691683, 'newnormalisveryposh': 560153, 'store egg': 807441, 'egg shelf': 269982, 'shelf completely': 756952, 'empty forced': 274883, 'buy last': 148890, 'two carton': 936823, 'of quail': 588641, 'quail egg': 691684, 'egg newnormalisveryposh': 269926, 'grocery store egg': 365359, 'store egg shelf': 807442, 'egg shelf completely': 269983, 'shelf completely empty': 756953, 'completely empty forced': 192278, 'empty forced to': 274884, 'forced to buy': 328619, 'to buy last': 902258, 'buy last two': 148891, 'last two carton': 480601, 'two carton of': 936824, 'carton of quail': 165489, 'of quail egg': 588642, 'quail egg newnormalisveryposh': 691685, 'leaking': 483866, 'se': 743043, 'spied': 789250, 'apple maintaining': 82338, 'maintaining that': 509137, '19 hasn': 7439, 'hasn disrupted': 378739, 'disrupted it': 246402, 'it chance': 457091, 'launch the': 481953, 'iphone even': 444566, 'even leaking': 284292, 'leaking that': 483867, 'iphone se': 444579, 'se will': 743067, 'will launch': 993959, 'launch next': 481927, 'week hasn': 976305, 'hasn spied': 378782, 'spied confidence': 789251, 'confidence if': 193893, 'their 2020': 872428, '2020 target': 14625, 'iphone 11': 444555, '11 series': 2592, 'series wil': 751316, 'apple maintaining that': 82339, 'maintaining that covid': 509138, 'covid 19 hasn': 213188, '19 hasn disrupted': 7440, 'hasn disrupted it': 378740, 'disrupted it chance': 246403, 'it chance to': 457092, 'chance to launch': 171806, 'to launch the': 909104, 'launch the new': 481954, 'the new iphone': 861521, 'new iphone even': 558946, 'iphone even leaking': 444567, 'even leaking that': 284293, 'leaking that the': 483868, 'that the iphone': 846754, 'the iphone se': 858441, 'iphone se will': 444580, 'se will launch': 743068, 'will launch next': 993960, 'launch next week': 481928, 'next week hasn': 561684, 'week hasn spied': 976306, 'hasn spied confidence': 378783, 'spied confidence if': 789252, 'confidence if they': 193894, 'not make their': 570508, 'make their 2020': 510593, 'their 2020 target': 872429, '2020 target the': 14626, 'target the iphone': 834515, 'the iphone 11': 858439, 'iphone 11 series': 444559, '11 series wil': 2593, 'report hint': 712016, 'hint the': 396921, 'may mail': 521332, 'mail check': 508590, 'support income': 826587, 'income lost': 432405, 'lost due': 503839, 'ha tip': 372283, 'using those': 950756, 'those rumor': 892412, 'rumor cover': 727482, 'cover never': 212262, 'your number': 1025045, 'number bank': 576837, 'info over': 437547, 'never pay': 558144, 'pay fee': 644862, 'fee tax': 302235, 'advance for': 32896, 'loan grant': 497446, 'report hint the': 712017, 'hint the government': 396922, 'government may mail': 360349, 'may mail check': 521333, 'mail check to': 508591, 'check to support': 174689, 'to support income': 915939, 'support income lost': 826588, 'income lost due': 432406, 'lost due to': 503840, 'due to ha': 261797, 'to ha tip': 907087, 'ha tip to': 372286, 'tip to spot': 898940, 'scammer using those': 740646, 'using those rumor': 950757, 'those rumor cover': 892413, 'rumor cover never': 727483, 'cover never give': 212263, 'never give your': 558017, 'give your number': 350888, 'your number bank': 1025046, 'number bank info': 576838, 'bank info over': 109941, 'info over the': 437548, 'the phone and': 863684, 'phone and never': 654883, 'and never pay': 67539, 'never pay fee': 558145, 'pay fee tax': 644863, 'fee tax in': 302236, 'tax in advance': 835010, 'in advance for': 420052, 'advance for loan': 32897, 'for loan grant': 323037, 'reaffirm': 701012, 'leader reaffirm': 483521, 'reaffirm the': 701013, 'country supplychain': 211095, 'supplychain is': 826197, 'industry leader reaffirm': 435961, 'leader reaffirm the': 483522, 'reaffirm the country': 701014, 'the country supplychain': 852159, 'country supplychain is': 211096, 'supplychain is prepared': 826198, 'prepared to meet': 670256, 'can right': 159484, 'keeping this': 472601, 'country moving': 210904, 'moving spare': 544182, 'supermarket worker can': 824000, 'worker can right': 1006593, 'can right now': 159485, 'they are critical': 881240, 'are critical in': 85628, 'critical in keeping': 218577, 'in keeping this': 424458, 'keeping this country': 472602, 'this country moving': 886961, 'country moving spare': 210907, 'moving spare thought': 544183, 'thought for them': 893050, 'for them and': 326892, 'them and give': 875378, 'and give your': 63671, 'give your support': 350891, 'the 13': 847883, '13 who': 3281, 'care ok': 164126, 'ok that': 597902, 'problem those': 679722, 'those greedy': 892032, 'selfish prick': 748231, 'prick should': 678009, 'and pelted': 68833, 'pelted with': 646391, 'the rotting': 865995, 'rotting food': 726213, 'this ridiculous': 889898, 'ridiculous panic': 721578, 'it the 13': 461509, 'the 13 who': 847884, '13 who care': 3282, 'who care ok': 988440, 'care ok that': 164127, 'ok that is': 597903, 'is the problem': 452907, 'the problem those': 864528, 'problem those greedy': 679723, 'those greedy selfish': 892034, 'greedy selfish prick': 363595, 'selfish prick should': 748234, 'prick should be': 678010, 'put in stock': 690620, 'stock and pelted': 801826, 'and pelted with': 68834, 'pelted with the': 646392, 'with the rotting': 1001462, 'the rotting food': 865996, 'rotting food that': 726215, 'food that result': 317100, 'result from this': 717514, 'from this ridiculous': 338007, 'this ridiculous panic': 889899, 'ridiculous panic buying': 721579, 'kotler': 477567, 'joemandese': 466470, 'great column': 362578, 'column on': 186906, 'on consumerism': 600085, 'consumerism and': 199707, 'by marketing': 153177, 'marketing guru': 517612, 'guru phil': 368836, 'phil kotler': 654680, 'kotler joemandese': 477568, 'read this great': 700615, 'this great column': 887750, 'great column on': 362579, 'column on consumerism': 186907, 'on consumerism and': 600086, 'consumerism and the': 199708, 'and the effect': 73341, '19 by marketing': 5565, 'by marketing guru': 153178, 'marketing guru phil': 517613, 'guru phil kotler': 368837, 'phil kotler joemandese': 654681, 'meera': 527392, 'poly': 663932, 'qatarnews': 691516, 'of al': 579874, 'al meera': 40588, 'meera consumer': 527393, 'good co': 356891, 'co have': 184848, 'started poly': 794807, 'poly bagging': 663933, 'bagging commodity': 108525, 'commodity such': 189314, 'such vegetable': 816850, 'fruit to': 339158, 'extra layer': 293566, 'from contamination': 334985, 'contamination by': 200704, 'by touch': 154576, 'touch qatar': 926523, 'qatar qatarnews': 691498, 'qatarnews yoursafetyismysafety': 691520, 'yoursafetyismysafety doha': 1026493, 'supermarket of al': 821696, 'of al meera': 579875, 'al meera consumer': 40589, 'meera consumer good': 527394, 'consumer good co': 197605, 'good co have': 356892, 'co have started': 184850, 'have started poly': 382728, 'started poly bagging': 794808, 'poly bagging commodity': 663934, 'bagging commodity such': 108526, 'commodity such vegetable': 189315, 'such vegetable and': 816851, 'and fruit to': 63378, 'fruit to provide': 339159, 'to provide an': 912379, 'provide an extra': 686222, 'an extra layer': 56014, 'extra layer of': 293567, 'of protection from': 588555, 'protection from contamination': 685455, 'from contamination by': 334986, 'contamination by touch': 200705, 'by touch qatar': 154577, 'touch qatar qatarnews': 926524, 'qatar qatarnews yoursafetyismysafety': 691500, 'qatarnews yoursafetyismysafety doha': 691521, 'overheard': 631229, 'atlanta whole': 101850, 'worker interviewed': 1007231, 'interviewed overheard': 442290, 'overheard customer': 631236, 'customer walk': 223034, 'say into': 738810, 'his phone': 397702, 'phone pretty': 654999, 'sure have': 827561, 'just have': 468932, 'at whole': 101554, 'food first': 314473, 'the atlanta whole': 849010, 'atlanta whole food': 101851, 'whole food worker': 990218, 'food worker interviewed': 317674, 'worker interviewed overheard': 1007232, 'interviewed overheard customer': 442291, 'overheard customer walk': 631237, 'customer walk into': 223035, 'walk into the': 964822, 'store and say': 806338, 'and say into': 70999, 'say into his': 738811, 'into his phone': 442635, 'his phone pretty': 397704, 'phone pretty sure': 655000, 'pretty sure have': 671505, 'sure have it': 827562, 'have it going': 381149, 'the doctor now': 853465, 'doctor now just': 250992, 'now just have': 575153, 'just have to': 468936, 'to stop at': 915500, 'stop at whole': 804466, 'at whole food': 101555, 'whole food first': 990211, 'really boosted': 702033, 'boosted my': 135047, 'time which': 898321, 'is is': 448995, 'way something': 969883, 'something needed': 784973, 'needed thanks': 556515, 'being stuck at': 125873, 'at home ha': 99001, 'home ha really': 401330, 'ha really boosted': 371647, 'really boosted my': 702034, 'boosted my online': 135048, 'online shopping time': 609309, 'shopping time which': 764149, 'time which is': 898325, 'which is is': 986021, 'is is no': 448997, 'no way something': 565868, 'way something needed': 969884, 'something needed thanks': 784974, 'needed thanks covid': 556516, 'stubbornaf': 814567, 'safea': 730175, 'parent age': 641565, 'age 73': 37799, '73 85': 22059, '85 are': 22910, 'still doing': 800445, 'run even': 727630, 'after la': 35852, 'la mayor': 478191, 'mayor ha': 521961, 'two stubbornaf': 937243, 'stubbornaf losangeles': 814568, 'losangeles california': 503389, 'california safea': 155565, 'my parent age': 549686, 'parent age 73': 641566, 'age 73 85': 37800, '73 85 are': 22060, '85 are still': 22911, 'are still doing': 90414, 'still doing grocery': 800446, 'doing grocery store': 252437, 'store run even': 809919, 'run even after': 727631, 'even after la': 283815, 'after la mayor': 35853, 'la mayor ha': 478193, 'mayor ha told': 521963, 'ha told not': 372339, 'house for the': 406311, 'next week or': 561693, 'or two stubbornaf': 617572, 'two stubbornaf losangeles': 937244, 'stubbornaf losangeles california': 814569, 'losangeles california safea': 503390, 'cooky': 202960, 'carol heading': 164820, 'get ingredient': 347339, 'ingredient to': 438408, 'more cooky': 538889, 'cooky twd': 202974, 'twd thewalkingdead': 936275, 'carol heading to': 164821, 'to get ingredient': 906509, 'get ingredient to': 347340, 'ingredient to make': 438410, 'to make more': 909697, 'make more cooky': 510195, 'more cooky twd': 538890, 'cooky twd thewalkingdead': 202975, 'have reality': 382182, 'serious this': 751492, 'not extra': 569341, 'extra holiday': 293544, 'holiday stay': 400357, 'example to': 288988, 'themselves panic': 876872, 'sight lockdownuknow': 769042, 'need to have': 555957, 'to have reality': 907297, 'have reality check': 382183, 'reality check this': 701716, 'check this 19': 174673, 'this 19 pandemic': 886154, 'pandemic is serious': 635795, 'is serious this': 451790, 'serious this is': 751494, 'is not extra': 450076, 'not extra holiday': 569342, 'extra holiday stay': 293545, 'holiday stay at': 400358, 'unless you need': 942671, 'out for example': 626115, 'for example to': 321294, 'example to get': 288989, 'some food people': 782867, 'food people should': 315837, 'people should be': 649440, 'of themselves panic': 591787, 'themselves panic buying': 876873, 'buying and visiting': 149942, 'and visiting the': 74993, 'visiting the sight': 959564, 'the sight lockdownuknow': 867173, 'of 1kg': 579438, '1kg basmati': 12630, 'basmati rice': 112446, 'rice doesn': 721033, 'cost we': 208155, 'when there no': 984229, 'there no queue': 878835, 'no queue at': 565262, 'supermarket and bag': 818936, 'and bag of': 58643, 'bag of 1kg': 108344, 'of 1kg basmati': 579439, '1kg basmati rice': 12631, 'basmati rice doesn': 112447, 'rice doesn cost': 721034, 'doesn cost we': 251739, 'cost we can': 208156, 'we can only': 970982, 'can only dream': 159124, 'celebs': 168917, 'holed': 400247, 'advert': 33142, 'perhaps some': 651633, 'these celebs': 879728, 'celebs holed': 168920, 'holed up': 400248, 'up could': 944663, 'could shut': 209677, 'down there': 257326, 'there instagram': 878511, 'instagram for': 439960, 'for bit': 319686, 'bit make': 131614, 'make plea': 510335, 'stop stripping': 805088, 'shelf advert': 756682, 'advert to': 33149, 'before 7pm': 122596, '7pm corona': 22498, 'corona fightcovid19': 203943, 'perhaps some of': 651634, 'of these celebs': 591817, 'these celebs holed': 879729, 'celebs holed up': 168921, 'holed up could': 400250, 'up could shut': 944664, 'could shut down': 209678, 'shut down there': 767859, 'down there instagram': 257327, 'there instagram for': 878512, 'instagram for bit': 439961, 'for bit make': 319690, 'bit make plea': 131615, 'make plea for': 510336, 'plea for people': 659544, 'to stop stripping': 915579, 'stop stripping supermarket': 805089, 'supermarket shelf advert': 822420, 'shelf advert to': 756683, 'advert to go': 33150, 'go out just': 353964, 'out just before': 626463, 'just before 7pm': 468312, 'before 7pm corona': 122597, '7pm corona fightcovid19': 22499, 'distancing learn': 247276, 'social distancing learn': 779646, 'distancing learn more': 247277, 'learn more via': 484041, 'bow': 136947, 'will patrol': 994383, 'patrol supermarket': 644388, 'supermarket island': 821142, 'island wake': 454320, 'up australian': 944447, 'australian you': 103584, 'are bunch': 85084, 'idiot who': 413636, 'be locked': 115799, 'up there': 946257, 'behavior bow': 123934, 'bow your': 136954, '19 police will': 9740, 'police will patrol': 663269, 'will patrol supermarket': 994384, 'patrol supermarket island': 644390, 'supermarket island wake': 821143, 'island wake up': 454321, 'wake up australian': 964618, 'up australian you': 944448, 'australian you are': 103585, 'you are bunch': 1017077, 'are bunch of': 85085, 'bunch of selfish': 142636, 'of selfish idiot': 589478, 'selfish idiot who': 748141, 'idiot who deserve': 413640, 'who deserve to': 988569, 'to be locked': 901373, 'be locked up': 115801, 'locked up there': 500508, 'up there is': 946261, 'excuse for your': 289749, 'for your behavior': 328122, 'your behavior bow': 1022930, 'behavior bow your': 123935, 'bow your head': 136955, 'syaysafe': 830659, 'indialockdown': 434752, 'kandlasagarmala': 470780, 'kandla': 470777, 'tranship': 929613, 'cargostevedores': 164670, 'shorehandling': 764587, 'containerhandling': 200566, 'totallogistics': 926295, 'gandhidham': 343384, 'water sanitizer': 969145, 'sanitizer stay': 735794, 'safe stayhome': 729980, 'stayathome virus': 797695, 'virus syaysafe': 958845, 'syaysafe indialockdown': 830660, 'indialockdown kandlasagarmala': 434757, 'kandlasagarmala kandla': 470781, 'kandla tranship': 470778, 'tranship cargostevedores': 929614, 'cargostevedores shorehandling': 164671, 'shorehandling containerhandling': 764588, 'containerhandling totallogistics': 200567, 'totallogistics gandhidham': 926296, 'with soap water': 1000809, 'soap water sanitizer': 779162, 'water sanitizer stay': 969146, 'sanitizer stay home': 735795, 'stay safe stayhome': 797278, 'safe stayhome stayathome': 729982, 'stayhome stayathome virus': 798140, 'stayathome virus syaysafe': 797697, 'virus syaysafe indialockdown': 958846, 'syaysafe indialockdown kandlasagarmala': 830661, 'indialockdown kandlasagarmala kandla': 434758, 'kandlasagarmala kandla tranship': 470782, 'kandla tranship cargostevedores': 470779, 'tranship cargostevedores shorehandling': 929615, 'cargostevedores shorehandling containerhandling': 164672, 'shorehandling containerhandling totallogistics': 764589, 'containerhandling totallogistics gandhidham': 200568, 'concern grows': 192987, 'over safety': 630596, 'worker following': 1006955, 'following death': 312717, 'death inside': 230092, 'inside edition': 439255, 'concern grows over': 192988, 'grows over safety': 367323, 'over safety of': 630598, 'safety of grocery': 730647, 'store worker following': 811504, 'worker following death': 1006956, 'following death inside': 312718, 'death inside edition': 230093, 'supply prepare': 825723, 'prepare kit': 670106, 'event of': 285031, 'emergency your': 273072, 'your emergency': 1023645, 'emergency kit': 272769, 'kit should': 475634, 'should include': 766126, 'include 30': 431503, 'day supply': 228434, 'pet medication': 653419, 'medication well': 526693, 'well at': 978034, 'least two': 484677, 'on pet supply': 602778, 'pet supply prepare': 653466, 'supply prepare kit': 825725, 'prepare kit with': 670107, 'kit with essential': 475677, 'with essential supply': 998258, 'essential supply to': 281631, 'supply to have': 826009, 'on hand in': 601230, 'the event of': 854603, 'event of an': 285032, 'an emergency your': 55692, 'emergency your emergency': 273073, 'your emergency kit': 1023646, 'emergency kit should': 272770, 'kit should include': 475635, 'should include 30': 766127, 'include 30 day': 431504, '30 day supply': 17021, 'day supply of': 228438, 'supply of your': 825657, 'of your pet': 593511, 'your pet medication': 1025273, 'pet medication well': 653420, 'medication well at': 526694, 'well at least': 978036, 'at least two': 99562, 'least two week': 484678, 'two week worth': 937376, 'community through': 190167, 'through hope': 894514, 'hope south': 403628, 'bay nutrition': 112956, 'nutrition hub': 577726, 'hub is': 409808, 'doing drive': 252361, 'through food': 894467, 'distribution demand': 248142, 'skyrocketed smaller': 773382, 'smaller food': 775269, 'pantry have': 639601, 'risk thank': 723921, 'you of': 1020173, 'of for': 583853, 'morning distribution': 541237, 'community through hope': 190169, 'through hope south': 894515, 'hope south bay': 403629, 'south bay nutrition': 786698, 'bay nutrition hub': 112957, 'nutrition hub is': 577727, 'hub is doing': 409809, 'is doing drive': 447268, 'doing drive through': 252362, 'drive through food': 259179, 'through food distribution': 894469, 'food distribution demand': 314226, 'distribution demand ha': 248144, 'demand ha skyrocketed': 235616, 'ha skyrocketed smaller': 371961, 'skyrocketed smaller food': 773383, 'smaller food pantry': 775271, 'food pantry have': 315783, 'pantry have closed': 639602, 'have closed due': 379997, '19 risk thank': 10247, 'risk thank you': 723922, 'thank you of': 841793, 'you of for': 1020174, 'of for coming': 583855, 'for coming out': 320175, 'coming out we': 188168, 'out we prepare': 627799, 'we prepare for': 972735, 'prepare for this': 670088, 'for this morning': 327050, 'this morning distribution': 888952, 'goko': 355838, 'gust': 368843, 'now give': 574786, 'give everybody': 350473, 'everybody panic': 286475, 'and chaos': 59741, 'coronavirus goko': 205995, 'goko trying': 355841, 'minimize footprint': 533109, 'footprint and': 318570, 'get best': 346659, 'best condition': 127637, 'our gust': 623330, 'gust we': 368844, 'will serve': 994814, 'serve the': 751943, 'food until': 317405, 'get government': 347144, 'government announce': 359881, 'announce god': 76839, 'family goko': 297852, 'goko restaurant': 355839, 'restaurant goko': 716485, 'now give everybody': 574787, 'give everybody panic': 350475, 'everybody panic and': 286476, 'panic and chaos': 637302, 'and chaos but': 59742, 'chaos but we': 173008, 'will get over': 993517, 'get over the': 347755, 'the coronavirus goko': 851858, 'coronavirus goko trying': 205996, 'goko trying to': 355842, 'trying to minimize': 934829, 'to minimize footprint': 910163, 'minimize footprint and': 533110, 'footprint and get': 318571, 'and get best': 63564, 'get best condition': 346660, 'best condition for': 127638, 'condition for our': 193455, 'for our gust': 324252, 'our gust we': 623331, 'gust we will': 368845, 'we will serve': 973905, 'will serve the': 994818, 'serve the food': 751946, 'the food until': 855619, 'food until we': 317409, 'until we get': 943923, 'we get government': 971612, 'get government announce': 347145, 'government announce god': 359882, 'announce god bless': 76840, 'bless you and': 132607, 'your family goko': 1023783, 'family goko restaurant': 297853, 'goko restaurant goko': 355840, 'and honestly': 64702, 'never wanted': 558264, 'to punch': 912505, 'punch piece': 689169, 'paper more': 640475, 'entire life': 278696, 'saw this at': 738289, 'today and honestly': 919214, 'and honestly have': 64704, 'honestly have never': 403106, 'have never wanted': 381587, 'never wanted to': 558266, 'wanted to punch': 966266, 'to punch piece': 912506, 'punch piece of': 689170, 'piece of paper': 656341, 'of paper more': 587758, 'paper more in': 640476, 'in my entire': 425568, 'my entire life': 548101, 'the fijian': 855179, 'fijian competition': 305299, 'commission ha': 188837, 'ha reassured': 371656, 'reassured fijian': 703206, 'fijian that': 305305, 'isn shortage': 454666, 'paper because': 639933, 'the fijian competition': 855180, 'fijian competition and': 305300, 'consumer commission ha': 196820, 'commission ha reassured': 188838, 'ha reassured fijian': 371657, 'reassured fijian that': 703207, 'fijian that there': 305306, 'there isn shortage': 878673, 'isn shortage of': 454667, 'toilet paper because': 921202, 'paper because of': 639934, 'coronavirus pandemic more': 206474, 'lastone': 480796, 'remembers these': 710475, 'these my': 880331, 'grandma still': 361914, 'ha one': 371435, 'one repost': 606953, 'repost meme': 712826, 'toiletpaper hidden': 922066, 'hidden lastone': 394818, 'lastone life': 480797, 'who remembers these': 989530, 'remembers these my': 710476, 'these my grandma': 880332, 'my grandma still': 548547, 'grandma still ha': 361915, 'still ha one': 800620, 'ha one repost': 371439, 'one repost meme': 606954, 'repost meme toiletpaper': 712827, 'meme toiletpaper hidden': 528369, 'toiletpaper hidden lastone': 922067, 'hidden lastone life': 394819, '59pm': 20605, '11 59pm': 2465, '59pm tonight': 20610, 'tonight new': 924454, 'zealand will': 1027321, 'of here': 584590, 'available during': 104333, 'from 11 59pm': 334173, '11 59pm tonight': 2468, '59pm tonight new': 20611, 'tonight new zealand': 924455, 'new zealand will': 560001, 'zealand will be': 1027322, 'will be going': 992478, 'be going into': 115053, 'going into lockdown': 355240, 'into lockdown to': 442720, 'lockdown to prevent': 500059, 'spread of here': 790678, 'of here what': 584591, 'about the essential': 26390, 'the essential service': 854520, 'essential service available': 281498, 'service available during': 752166, 'available during this': 104335, 'borough': 135583, 'greenwich': 363779, 'plumstead': 661398, 'se18': 743073, 'newsletter apr': 561021, 'apr supermarket': 83373, 'hour coronavirus': 405504, '19 royal': 10256, 'royal borough': 726610, 'borough of': 135590, 'of greenwich': 584335, 'greenwich plumstead': 363782, 'plumstead se18': 661399, 'newsletter apr supermarket': 561022, 'apr supermarket hour': 83374, 'supermarket hour coronavirus': 820798, 'hour coronavirus covid': 405505, 'covid 19 royal': 213724, '19 royal borough': 10257, 'royal borough of': 726611, 'borough of greenwich': 135591, 'of greenwich plumstead': 584336, 'greenwich plumstead se18': 363783, 'subbed': 815696, 'elastic': 270490, 'sewing': 754169, 'janky': 464579, 'stitching': 801709, 'rock little': 724902, 'little red': 495537, 'red number': 705604, 'store used': 811029, 'the nytimes': 862007, 'nytimes pattern': 578156, 'pattern but': 644451, 'but subbed': 147207, 'subbed in': 815697, 'in elastic': 422520, 'elastic hair': 270491, 'tie for': 895737, 'ear piece': 264399, 'piece the': 656370, 'whole hand': 990231, 'hand sewing': 375753, 'sewing thing': 754186, 'real trip': 701433, 'trip check': 932053, 'my total': 550404, 'total janky': 926174, 'janky stitching': 464582, 'stitching newnormal': 801712, 'newnormal maskup': 560139, 'maskup staythefhome': 519704, 'excuse to rock': 289789, 'to rock little': 913620, 'rock little red': 724903, 'little red number': 495538, 'red number to': 705605, 'number to the': 577077, 'grocery store used': 365906, 'store used the': 811030, 'used the nytimes': 950015, 'the nytimes pattern': 862008, 'nytimes pattern but': 578157, 'pattern but subbed': 644452, 'but subbed in': 147208, 'subbed in elastic': 815698, 'in elastic hair': 422521, 'elastic hair tie': 270492, 'hair tie for': 374014, 'tie for the': 895738, 'for the ear': 326400, 'the ear piece': 853811, 'ear piece the': 264400, 'piece the whole': 656372, 'the whole hand': 871493, 'whole hand sewing': 990232, 'hand sewing thing': 375754, 'sewing thing wa': 754187, 'thing wa real': 884950, 'wa real trip': 963057, 'real trip check': 701434, 'trip check out': 932054, 'out my total': 626611, 'my total janky': 550405, 'total janky stitching': 926175, 'janky stitching newnormal': 464583, 'stitching newnormal maskup': 801713, 'newnormal maskup staythefhome': 560140, 'abating': 24233, 'announced new': 77002, 'both shopper': 136043, 'spain show': 787340, 'no sign': 565508, 'of abating': 579696, 'ha announced new': 369562, 'announced new series': 77003, 'new series of': 559563, 'series of guideline': 751272, 'of guideline to': 584389, 'guideline to maintain': 368484, 'maintain the health': 509060, 'safety of both': 730643, 'of both shopper': 580797, 'both shopper and': 136044, 'shopper and worker': 761375, 'and worker the': 75883, 'worker the crisis': 1007923, 'crisis in spain': 217540, 'in spain show': 428179, 'spain show no': 787341, 'show no sign': 767068, 'no sign of': 565510, 'sign of abating': 769154, 'unclear': 939833, 'erstwhile': 280235, 'today lockdown': 919823, 'will ease': 993279, 'ease at': 265072, 'point though': 662662, 'it unclear': 461911, 'unclear when': 939842, 'when perhaps': 983872, 'perhaps even': 651584, 'uncertain is': 939598, 'the mindset': 860638, 'mindset of': 532852, 'of erstwhile': 583152, 'erstwhile customer': 280236, 'today lockdown will': 919824, 'lockdown will ease': 500149, 'will ease at': 993280, 'ease at some': 265073, 'some point though': 783590, 'point though it': 662663, 'though it unclear': 892844, 'it unclear when': 461912, 'unclear when perhaps': 939843, 'when perhaps even': 983873, 'perhaps even more': 651586, 'even more uncertain': 284385, 'more uncertain is': 540842, 'uncertain is what': 939599, 'what the mindset': 982341, 'the mindset of': 860639, 'mindset of erstwhile': 532853, 'of erstwhile customer': 583153, 'erstwhile customer will': 280237, 'reiwa': 708311, 'cdt': 168684, 'online event': 608176, 'event japan': 285008, 'japan changing': 464716, 'of reiwa': 588902, 'reiwa and': 708312, '19 tuesday': 11595, 'tuesday april': 935120, 'april 14': 83410, '14 2020': 3389, '2020 00': 14077, 'pm dallas': 661889, 'dallas cdt': 225117, 'online event japan': 608178, 'event japan changing': 285009, 'japan changing consumer': 464717, 'changing consumer in': 172674, 'age of reiwa': 37873, 'of reiwa and': 588903, 'reiwa and covid': 708313, 'covid 19 tuesday': 213987, '19 tuesday april': 11596, 'tuesday april 14': 935121, 'april 14 2020': 83412, '14 2020 00': 3390, '2020 00 00': 14078, '00 00 pm': 8, '00 pm dallas': 440, 'pm dallas cdt': 661890, 'recording of': 705134, 'my webinar': 550540, 'on channel': 599874, 'channel thanks': 172935, 'to prof': 912229, 'prof from': 682348, 'his contribution': 397311, 'recording of my': 705135, 'of my webinar': 586830, 'my webinar on': 550541, 'webinar on right': 975078, 'on right and': 603194, 'right and is': 721756, 'and is on': 65422, 'is on channel': 450461, 'on channel thanks': 599877, 'channel thanks to': 172936, 'thanks to prof': 842255, 'to prof from': 912230, 'prof from for': 682349, 'from for his': 335529, 'for his contribution': 322300, 'video seen': 956884, 'seen by': 746977, 'by many': 153158, 'people possible': 649155, 'possible nh': 665719, 'this brave': 886607, 'brave woman': 138244, 'woman cannot': 1003431, 'and something': 71991, 'something need': 784971, 'done about': 254754, 'it urgently': 461986, 'please help get': 660068, 'help get this': 389802, 'get this video': 348416, 'this video seen': 890986, 'video seen by': 956885, 'seen by many': 746978, 'by many people': 153164, 'many people possible': 514528, 'people possible nh': 649157, 'possible nh staff': 665720, 'nh staff like': 562096, 'staff like this': 792620, 'like this brave': 491472, 'this brave woman': 886608, 'brave woman cannot': 138245, 'woman cannot get': 1003432, 'cannot get the': 161908, 'need and something': 554436, 'and something need': 71993, 'something need to': 784972, 'be done about': 114549, 'done about it': 254755, 'about it urgently': 25602, 'covid legislation': 214186, 'legislation in': 485974, 'proposed covid legislation': 684528, 'covid legislation in': 214187, 'meadia': 524069, 'fuckthemedia': 340079, 'fucknews': 340070, 'virus didn': 958122, 'didn send': 241194, 'send running': 749939, 'the meadia': 860337, 'meadia did': 524070, 'did never': 240701, 'medium fuckthemedia': 527114, 'fuckthemedia fucknews': 340080, 'fucknews fuckcovid19': 340071, 'fuckcovid19 vancouver': 339720, 'vancouver british': 952328, 'british columbia': 140500, 'the virus didn': 870822, 'virus didn send': 958123, 'didn send running': 241195, 'send running to': 749940, 'supermarket the meadia': 823229, 'the meadia did': 860338, 'meadia did never': 524071, 'did never forget': 240702, 'never forget that': 558005, 'forget that fuck': 329291, 'that fuck the': 843966, 'fuck the medium': 339660, 'the medium fuckthemedia': 860422, 'medium fuckthemedia fucknews': 527115, 'fuckthemedia fucknews fuckcovid19': 340081, 'fucknews fuckcovid19 vancouver': 340072, 'fuckcovid19 vancouver british': 339721, 'vancouver british columbia': 952329, 'quick question': 694349, 'isolate if': 454871, 're homeless': 698828, 'homeless answer': 402731, 'answer you': 78150, 'also can': 48005, 'usual place': 950996, 'free meal': 331967, 'meal social': 524277, 'social support': 779984, 'support etc': 826480, 'etc because': 282438, 're closing': 698431, 'offering limited': 595175, 'limited service': 492713, 'service suck': 752877, 'suck to': 816937, 'homeless at': 402736, 'time suck': 897777, 'suck really': 816920, 'quick question how': 694351, 'question how do': 693616, 'do you self': 250676, 'self isolate if': 747679, 'isolate if you': 454874, 'you re homeless': 1020648, 're homeless answer': 698829, 'homeless answer you': 402732, 'answer you can': 78151, 'you can you': 1017838, 'can you also': 160275, 'you also can': 1016944, 'also can go': 48007, 'to the usual': 917165, 'the usual place': 870590, 'usual place for': 950997, 'place for free': 657441, 'for free meal': 321720, 'free meal social': 331970, 'meal social support': 524278, 'social support etc': 779985, 'support etc because': 826481, 'etc because they': 282440, 'they re closing': 883011, 're closing or': 698433, 'closing or offering': 183714, 'or offering limited': 616356, 'offering limited service': 595178, 'limited service suck': 492714, 'service suck to': 752878, 'suck to be': 816938, 'to be homeless': 901312, 'be homeless at': 115287, 'homeless at any': 402737, 'at any time': 98031, 'any time suck': 79979, 'time suck really': 897778, 'suck really hard': 816921, 'really hard now': 702260, 'freakin': 331529, 'coronatimes': 205309, 'spreadjoy': 791104, 'worker dress': 1006806, 'up super': 946091, 'super hero': 818516, 'hero it': 394025, 'make life': 510082, 'life more': 488883, 'more fun': 539322, 'fun and': 341126, 'honest they': 403083, 'they freakin': 882146, 'freakin are': 331530, 'of hero': 584594, 'now coronatimes': 574460, 'coronatimes spreadjoy': 205310, 'let have grocery': 486770, 'store worker dress': 811485, 'worker dress up': 1006807, 'dress up super': 258687, 'up super hero': 946092, 'super hero it': 818517, 'hero it ll': 394026, 'it ll make': 459428, 'll make life': 496895, 'make life more': 510085, 'life more fun': 488885, 'more fun and': 539324, 'fun and to': 341131, 'and to be': 74153, 'to be honest': 901313, 'be honest they': 115297, 'honest they freakin': 403085, 'they freakin are': 882147, 'freakin are bunch': 331531, 'bunch of hero': 142628, 'of hero right': 584596, 'right now coronatimes': 722048, 'now coronatimes spreadjoy': 574461, '16mar20': 4269, '16mar20 russia': 4270, 'russia consumer': 728451, 'watchdog reported': 968639, 'high arctic': 394932, 'arctic where': 84079, 'where man': 985005, 'who traveled': 989819, 'traveled to': 930611, 'to iran': 908503, 'iran ha': 444685, 'and 101': 57353, '101 are': 2219, 'are observed': 88632, '16mar20 russia consumer': 4271, 'russia consumer watchdog': 728453, 'consumer watchdog reported': 199486, 'watchdog reported case': 968640, 'reported case in': 712475, 'the high arctic': 857316, 'high arctic where': 394933, 'arctic where man': 84080, 'where man who': 985007, 'man who traveled': 512340, 'who traveled to': 989821, 'traveled to iran': 930612, 'to iran ha': 908504, 'iran ha covid': 444686, '19 and 101': 4977, 'and 101 are': 57354, '101 are observed': 2220, 'best online': 127808, 'from tokyo': 338087, 'tokyo and': 923484, 'and japan': 65644, 'japan tip': 464764, 'tip japan': 898830, 'japan stayhome': 464760, 'stayhomestaysafe stayhomesavelives': 798528, 'stayhomesavelives stayathomeandstaysafe': 798451, 'best online store': 127810, 'online store to': 609478, 'buy thing from': 149353, 'thing from tokyo': 884350, 'from tokyo and': 338088, 'tokyo and japan': 923485, 'and japan tip': 65646, 'japan tip japan': 464765, 'tip japan stayhome': 898831, 'japan stayhome stayathome': 464761, 'stayhome stayathome stayhomestaysafe': 798138, 'stayathome stayhomestaysafe stayhomesavelives': 797656, 'stayhomestaysafe stayhomesavelives stayathomeandstaysafe': 798529, 'emergency mo': 272809, 'mo since': 534870, '19 tracked': 11531, 'tracked case': 928244, 'country over': 210949, 'over this': 630812, 'flu is': 311425, 'killing 400': 474652, 'citizen each': 178889, 'each week': 264327, 'our sanity': 624676, 'the emergency mo': 854230, 'emergency mo since': 272810, 'mo since covid': 534871, 'covid 19 tracked': 213972, '19 tracked case': 11533, 'tracked case 7038': 928245, 'our country over': 622600, 'country over this': 210950, 'over this seasonal': 630817, 'seasonal flu is': 743467, 'flu is killing': 311426, 'is killing 400': 449200, 'killing 400 citizen': 474653, '400 citizen each': 18726, 'citizen each week': 178890, 'each week who': 264333, 'stole our sanity': 804278, 'reasor': 703160, 'head up': 385849, 'during your': 263429, 'run at': 727572, 'at reasor': 100261, 'reasor the': 703161, 'asking all': 95935, 'wear one': 974434, 'head up you': 385858, 'up you ll': 946726, 'wear mask during': 974384, 'mask during your': 518599, 'during your next': 263434, 'your next grocery': 1025001, 'next grocery run': 561390, 'grocery run at': 364914, 'run at reasor': 727575, 'at reasor the': 100262, 'reasor the grocery': 703162, 'store is asking': 808467, 'is asking all': 445823, 'asking all employee': 95937, 'all employee and': 42678, 'and customer to': 60870, 'customer to wear': 222986, 'to wear one': 918437, 'wear one to': 974437, 'one to prevent': 607282, 'profitting': 683143, 'breaking call': 138923, 'or profitting': 616724, 'profitting on': 683146, 'vaccine during': 951689, 'pandemic rationing': 636290, 'rationing due': 697808, 'breaking call for': 138924, 'call for no': 155879, 'patent or profitting': 643996, 'or profitting on': 616725, 'profitting on drug': 683147, 'and vaccine during': 74830, 'vaccine during pandemic': 951690, 'during pandemic rationing': 262888, 'pandemic rationing due': 636292, 'rationing due to': 697809, 'to high price': 907737, 'prolong the pandemic': 683617, 'good folk': 357045, 'folk have': 312173, 'at never': 99871, 'seen before': 746966, 'before low': 122926, 'is recommended': 451349, 'recommended are': 704773, 'at 70': 97736, '70 to': 21846, 'the good folk': 856434, 'good folk have': 357047, 'folk have at': 312174, 'have at never': 379378, 'at never seen': 99872, 'never seen before': 558173, 'seen before low': 746968, 'before low low': 122927, 'low low price': 505394, 'low price is': 505521, 'price is recommended': 674883, 'is recommended are': 451350, 'recommended are selling': 704774, 'selling at 70': 749161, 'at 70 to': 97737, '70 to cash': 21847, 'angela': 76325, 'angela merkel': 76330, 'merkel spotted': 529174, 'spotted buying': 790185, 'shop amid': 759830, 'coronavirus chaos': 205641, 'chaos angela': 172995, 'merkel ha': 529159, 'been spotted': 122018, 'angela merkel spotted': 76339, 'merkel spotted buying': 529175, 'spotted buying toilet': 790186, 'roll and wine': 725192, 'and wine in': 75718, 'wine in local': 995827, 'in local shop': 424826, 'local shop amid': 498391, 'shop amid coronavirus': 759831, 'amid coronavirus chaos': 52416, 'coronavirus chaos angela': 205642, 'chaos angela merkel': 172996, 'angela merkel ha': 76335, 'merkel ha been': 529160, 'ha been spotted': 369930, 'been spotted at': 122019, 'spotted at local': 790182, 'local supermarket during': 498519, 'vanquish': 952442, 'darkness': 225999, 'unites': 942311, 'candle': 161313, 'diya': 248782, '9minutes': 23993, 'lightacandle': 489624, 'hopemed': 403913, 'to vanquish': 918116, 'vanquish the': 952443, 'the darkness': 852838, 'darkness this': 226011, 'this sunday': 890422, 'sunday the': 818277, 'nation unites': 552363, 'unites for': 942312, 'for minute': 323461, 'minute light': 533796, 'light candle': 489517, 'candle or': 161321, 'or diya': 615007, 'diya and': 248783, 'show your': 767298, 'your strength': 1026009, 'strength in': 813225, 'in fighting': 422876, '19 ratnadeep': 9961, 'ratnadeep supermarket': 697890, 'supermarket 9minutes': 818755, '9minutes lightacandle': 23994, 'lightacandle flattenthecurve': 489625, 'flattenthecurve hopemed': 310168, 'hopemed togetherness': 403914, 'togetherness india': 921079, 'we re spreading': 972971, 're spreading the': 699566, 'spreading the light': 791055, 'the light to': 859359, 'light to vanquish': 489614, 'to vanquish the': 918117, 'vanquish the darkness': 952444, 'the darkness this': 852840, 'darkness this sunday': 226012, 'this sunday the': 890423, 'sunday the nation': 818278, 'the nation unites': 861273, 'nation unites for': 552364, 'unites for minute': 942313, 'for minute light': 323463, 'minute light candle': 533797, 'light candle or': 489518, 'candle or diya': 161322, 'or diya and': 615008, 'diya and show': 248784, 'and show your': 71619, 'show your strength': 767305, 'your strength in': 1026010, 'strength in fighting': 813226, 'in fighting covid': 422877, 'covid 19 ratnadeep': 213655, '19 ratnadeep supermarket': 9962, 'ratnadeep supermarket 9minutes': 697891, 'supermarket 9minutes lightacandle': 818756, '9minutes lightacandle flattenthecurve': 23995, 'lightacandle flattenthecurve hopemed': 489626, 'flattenthecurve hopemed togetherness': 310169, 'hopemed togetherness india': 403915, 'hurray': 411465, 'kinda suck': 475074, 'suck work': 816949, 'am constantly': 49977, 'shit fucking': 759101, 'fucking hurray': 339908, 'hurray for': 411466, 'me guess': 522844, 'kinda suck work': 475076, 'suck work at': 816950, 'store and am': 806192, 'and am constantly': 58009, 'am constantly exposed': 49978, 'exposed to this': 292910, 'to this covid': 917414, '19 shit fucking': 10461, 'shit fucking hurray': 759102, 'fucking hurray for': 339909, 'hurray for me': 411467, 'for me guess': 323315, 'lifebuoy': 489264, 'jai': 464251, 'hind': 396832, 'hul reduces': 410358, 'of lifebuoy': 585842, 'lifebuoy sanitizers': 489270, 'sanitizers liquid': 736335, 'liquid handwash': 494095, 'handwash floor': 376766, 'floor cleaner': 310783, 'cleaner by': 180759, '15 pledge': 3824, '100 cr': 1873, 'cr to': 214672, 'fight appreciate': 304662, 'appreciate thank': 82749, 'thank news': 841613, 'when india': 983594, 'india need': 434531, 'most now': 542533, 'now other': 575485, 'other fmcg': 620227, 'fmcg co': 311717, 'co must': 184890, 'act jai': 29672, 'jai hind': 464252, 'hul reduces price': 410359, 'reduces price of': 706244, 'price of lifebuoy': 675489, 'of lifebuoy sanitizers': 585843, 'lifebuoy sanitizers liquid': 489271, 'sanitizers liquid handwash': 736336, 'liquid handwash floor': 494096, 'handwash floor cleaner': 376767, 'floor cleaner by': 310784, 'cleaner by 15': 180760, 'by 15 pledge': 151548, '15 pledge 100': 3825, 'pledge 100 cr': 660837, '100 cr to': 1874, 'cr to fight': 214673, 'to fight appreciate': 905778, 'fight appreciate thank': 304663, 'appreciate thank news': 82750, 'thank news to': 841614, 'news to listen': 560896, 'listen to our': 494745, 'to our demand': 911169, 'our demand when': 622733, 'demand when india': 236479, 'when india need': 983595, 'india need it': 434533, 'it most now': 459686, 'most now other': 542534, 'now other fmcg': 575486, 'other fmcg co': 620228, 'fmcg co must': 311720, 'co must act': 184891, 'must act jai': 546453, 'act jai hind': 29673, 'eurozone': 283632, 'ing bank': 438276, 'bank largest': 109966, 'largest monthly': 479979, 'monthly drop': 538167, 'in eurozone': 422662, 'eurozone consumer': 283633, 'confidence ever': 193857, 'ever in': 285361, 'march eurozone': 515353, 'confidence dropped': 193848, 'dropped from': 260568, 'march providing': 515445, 'providing glimpse': 687012, 'ing bank largest': 438277, 'bank largest monthly': 109967, 'largest monthly drop': 479981, 'monthly drop in': 538168, 'drop in eurozone': 260244, 'in eurozone consumer': 422663, 'eurozone consumer confidence': 283634, 'consumer confidence ever': 196895, 'confidence ever in': 193858, 'ever in march': 285364, 'in march eurozone': 425099, 'march eurozone consumer': 515354, 'consumer confidence dropped': 196892, 'confidence dropped from': 193850, 'dropped from to': 260570, 'to 11 in': 899450, '11 in march': 2540, 'in march providing': 425114, 'march providing glimpse': 515446, 'providing glimpse of': 687013, 'of the economic': 590972, 'clap': 179954, 'posties': 666629, 'binmen': 131108, 'sweeper': 830189, 'clapforall': 179980, 'maybe people': 521771, 'should clap': 765830, 'clap for': 179957, 'for bus': 319818, 'driver delivery': 259503, 'driver posties': 259709, 'posties binmen': 666632, 'binmen supermarket': 131109, 'worker road': 1007706, 'road sweeper': 724516, 'sweeper shop': 830192, 'the copper': 851728, 'copper on': 203434, 'the beat': 849403, 'beat too': 118577, 'too every': 924714, 'bit essential': 131562, 'keeping nation': 472489, 'nation alive': 552109, 'alive clapforall': 41809, 'maybe people should': 521774, 'people should clap': 649441, 'should clap for': 765831, 'clap for bus': 179958, 'for bus driver': 319819, 'bus driver delivery': 143018, 'driver delivery driver': 259504, 'delivery driver posties': 233933, 'driver posties binmen': 259710, 'posties binmen supermarket': 666633, 'binmen supermarket worker': 131110, 'supermarket worker road': 824079, 'worker road sweeper': 1007707, 'road sweeper shop': 724518, 'sweeper shop worker': 830193, 'shop worker the': 761094, 'worker the copper': 1007922, 'the copper on': 851729, 'copper on the': 203435, 'on the beat': 603984, 'the beat too': 849404, 'beat too every': 118578, 'too every bit': 924715, 'every bit essential': 285689, 'bit essential to': 131563, 'essential to keeping': 281702, 'to keeping nation': 908887, 'keeping nation alive': 472490, 'nation alive clapforall': 552110, 'where line': 984981, 'are long': 87867, 'long some': 501646, 'some shelf': 783839, 'and patience': 68768, 'patience is': 644106, 'supply authority': 824823, 'receiving wave': 703812, 'country where line': 211218, 'where line are': 984982, 'line are long': 492967, 'are long some': 87874, 'long some shelf': 501647, 'some shelf are': 783840, 'empty and patience': 274772, 'and patience is': 68769, 'patience is in': 644107, 'is in short': 448814, 'short supply authority': 764703, 'supply authority are': 824824, 'are receiving wave': 89505, 'receiving wave of': 703813, 'wave of report': 969380, 'honor the': 403253, 'responder of': 715499, '11 19': 2446, 'can honor the': 158695, 'honor the grocery': 403254, 'we did the': 971295, 'did the first': 240847, 'first responder of': 308956, 'responder of 11': 715500, 'of 11 19': 579331, 'bhagwantumhesadhbudhide': 129327, 'coronaindia': 204983, 'coronainindia': 204992, 'are knowingly': 87696, 'knowingly spreading': 477163, 'virus remember': 958679, 'also human': 48384, 'human you': 410664, 'pay high': 644929, 'price bhagwantumhesadhbudhide': 672922, 'bhagwantumhesadhbudhide corona': 129328, 'corona coronaindia': 203878, 'coronaindia coronainindia': 204984, 'heard that many': 388140, 'that many are': 845023, 'many are knowingly': 513767, 'are knowingly spreading': 87697, 'knowingly spreading the': 477164, 'the virus remember': 870883, 'virus remember you': 958680, 'you are also': 1017054, 'are also human': 84460, 'also human you': 48386, 'human you ll': 410665, 'to pay high': 911534, 'pay high price': 644930, 'high price bhagwantumhesadhbudhide': 395236, 'price bhagwantumhesadhbudhide corona': 672923, 'bhagwantumhesadhbudhide corona coronaindia': 129329, 'corona coronaindia coronainindia': 203879, 'and cancel': 59489, 'cancel over': 160876, 'over 80': 629930, '80 train': 22641, 'train including': 929261, 'including 23': 431846, '23 central': 15382, 'central railway': 169418, 'railway 29': 695689, '29 south': 16501, 'south central': 786704, 'railway 10': 695687, '10 western': 1754, 'western railway': 980636, 'railway south': 695713, 'south eastern': 786718, 'eastern railway': 265595, 'railway and': 695691, 'railway at': 695695, 'at amid': 97956, 'by 50 from': 151665, '50 from 10': 19698, 'from 10 and': 334163, '10 and cancel': 1313, 'and cancel over': 59491, 'cancel over 80': 160877, 'over 80 train': 629933, '80 train including': 22642, 'train including 23': 929262, 'including 23 central': 431847, '23 central railway': 15383, 'central railway 29': 169420, 'railway 29 south': 695690, '29 south central': 16502, 'south central railway': 786707, 'central railway 10': 169419, 'railway 10 western': 695688, '10 western railway': 1755, 'western railway south': 980637, 'railway south eastern': 695714, 'south eastern railway': 786719, 'eastern railway and': 265596, 'railway and northern': 695692, 'and northern railway': 67699, 'northern railway at': 567777, 'railway at amid': 695696, 'at amid the': 97958, 'amid the fear': 52693, 'fear of more': 301250, 'hungrier': 411217, 'is alcohol': 445442, 'alcohol the': 41136, 'thing actually': 884104, 'actually left': 30872, 'that also': 842600, 'also sold': 48888, 'out can': 625822, 'actually buy': 30748, 'buy any': 148346, 'item sold': 463651, 'out cant': 625834, 'delivery until': 234707, 'until 14': 943638, 'day time': 228552, 'time either': 896604, 'we suddenly': 973440, 'suddenly hungrier': 817106, 'hungrier nation': 411218, 'nation people': 552288, 'eating more': 266254, 'that cure': 843413, 'cure madness': 220771, 'madness coronacrisis': 508172, 'is alcohol the': 445443, 'alcohol the only': 41139, 'only thing actually': 611300, 'thing actually left': 884105, 'actually left in': 30873, 'left in stock': 485517, 'in stock at': 428283, 'at supermarket or': 100756, 'supermarket or is': 821816, 'is that also': 452629, 'that also sold': 842606, 'also sold out': 48889, 'sold out can': 781728, 'out can actually': 625823, 'can actually buy': 157362, 'actually buy any': 30749, 'buy any food': 148347, 'any food all': 79231, 'food all item': 313086, 'all item sold': 43284, 'item sold out': 463652, 'sold out cant': 781729, 'out cant get': 625835, 'cant get delivery': 162297, 'get delivery until': 346871, 'delivery until 14': 234708, 'until 14 day': 943639, '14 day time': 3462, 'day time either': 228553, 'time either we': 896605, 'either we suddenly': 270414, 'we suddenly hungrier': 973441, 'suddenly hungrier nation': 817107, 'hungrier nation people': 411219, 'nation people eating': 552289, 'people eating more': 647766, 'eating more is': 266255, 'more is that': 539624, 'is that cure': 452638, 'that cure madness': 843414, 'cure madness coronacrisis': 220772, 'which videoconferencing': 986433, 'videoconferencing software': 956987, 'is winning': 454001, 'winning the': 996084, 'the race': 865082, 'race in': 695188, 'the mind': 860632, 'mind of': 532699, 'which videoconferencing software': 986434, 'videoconferencing software is': 956988, 'software is winning': 781537, 'is winning the': 454002, 'winning the race': 996089, 'the race in': 865083, 'race in the': 695190, 'in the mind': 429365, 'the mind of': 860635, 'mind of the': 532704, 'the consumer in': 851549, 'of the epidemic': 590990, 'president also': 670753, 'also needed': 48556, 'to direct': 904320, 'direct the': 243392, 'community not': 190005, 'of especially': 583154, 'especially essential': 280472, 'item required': 463609, 'required be': 713347, 'in safeguarding': 427619, 'safeguarding transmission': 730242, 'imagine packet': 416763, 'of facemasks': 583363, 'facemasks 150k': 295119, '150k now': 3964, 'now packet': 575501, 'chloroquine 100k': 177583, 'the president also': 864252, 'president also needed': 670754, 'also needed to': 48557, 'needed to direct': 556532, 'to direct the': 904322, 'direct the business': 243393, 'business community not': 143554, 'community not take': 190006, 'not take advantage': 571897, 'the situation to': 867280, 'situation to hike': 772537, 'price of especially': 675444, 'of especially essential': 583156, 'especially essential item': 280473, 'essential item required': 281226, 'item required be': 463610, 'required be used': 713348, 'be used in': 117917, 'used in safeguarding': 949943, 'in safeguarding transmission': 427620, 'safeguarding transmission of': 730243, '19 imagine packet': 7681, 'imagine packet of': 416764, 'packet of facemasks': 633705, 'of facemasks 150k': 583364, 'facemasks 150k now': 295120, '150k now packet': 3965, 'now packet of': 575502, 'packet of chloroquine': 633703, 'of chloroquine 100k': 581386, 'loosened': 503212, 'shopper wearing': 761812, 'gear returned': 344980, 'wuhan the': 1013518, 'city loosened': 179248, 'loosened related': 503215, 'related restriction': 708538, 'shopper wearing protective': 761813, 'wearing protective gear': 974769, 'protective gear returned': 685760, 'gear returned to': 344981, 'returned to supermarket': 719981, 'supermarket in wuhan': 821004, 'in wuhan the': 431006, 'wuhan the city': 1013519, 'the city loosened': 850945, 'city loosened related': 179250, 'loosened related restriction': 503216, 'toiletpanicpanic': 921665, 'maybe those': 521853, 'who buy': 988356, 'could try': 209793, 'instead how': 440208, 'own toilet': 632274, 'paper coronacrisis': 640049, 'coronacrisis toiletpaperapocalypse': 204837, 'toiletpaperapocalypse toiletpanicpanic': 922927, 'maybe those people': 521855, 'people who buy': 650269, 'who buy all': 988357, 'all the tp': 44949, 'the tp at': 869838, 'supermarket could try': 819830, 'could try this': 209795, 'try this instead': 934593, 'this instead how': 888139, 'instead how to': 440209, 'your own toilet': 1025166, 'own toilet paper': 632275, 'toilet paper coronacrisis': 921240, 'paper coronacrisis toiletpaperapocalypse': 640050, 'coronacrisis toiletpaperapocalypse toiletpanicpanic': 204838, 'meet alan': 527406, 'alan supermarket': 40662, 'like him': 490431, 'him are': 396547, 'stocked without': 803472, 'there wouldn': 879379, 'fridge during': 333387, 'meet alan supermarket': 527407, 'alan supermarket staff': 40663, 'supermarket staff like': 822862, 'staff like him': 792617, 'like him are': 490432, 'him are working': 396548, 'clock to keep': 182415, 'keep the shelf': 472070, 'the shelf stocked': 866882, 'shelf stocked without': 757590, 'stocked without them': 803473, 'without them there': 1002994, 'them there wouldn': 876408, 'there wouldn be': 879380, 'wouldn be any': 1012437, 'be any food': 113648, 'any food in': 79237, 'food in your': 314984, 'your fridge during': 1023962, 'fridge during the': 333389, 'my pharmacy': 549748, 'so crowded': 776819, 'crowded in': 219320, 'life like': 488846, 'all what': 45439, 'distancing stayhomechallenge': 247505, 'stayhomechallenge quarantinelife': 798273, 'never seen my': 558176, 'seen my pharmacy': 747147, 'my pharmacy and': 549749, 'store so crowded': 810218, 'so crowded in': 776820, 'crowded in my': 219321, 'my life like': 549025, 'life like all': 488847, 'like all what': 489748, 'all what happened': 45440, 'happened to social': 377281, 'social distancing stayhomechallenge': 779728, 'distancing stayhomechallenge quarantinelife': 247506, 'rwanda so': 728749, 're stuck': 699626, 'society to': 781334, 'spreading cannot': 790940, 'believe you': 126425, 'offering discount': 595075, 'discount kindly': 244488, 'kindly slash': 475167, 'slash your': 773605, 'please this': 660675, 'not profit': 571108, 'profit making': 682799, 'making event': 511050, 'event for': 284981, 'rwanda so we': 728750, 'we re stuck': 972977, 're stuck at': 699627, 'home to help': 402323, 'help our society': 390238, 'our society to': 624834, 'society to stop': 781335, 'stop spreading cannot': 805056, 'spreading cannot believe': 790941, 'cannot believe you': 161677, 'believe you re': 126428, 're not offering': 699107, 'not offering discount': 570730, 'offering discount kindly': 595078, 'discount kindly slash': 244489, 'kindly slash your': 475168, 'slash your price': 773606, 'your price please': 1025412, 'price please this': 675888, 'please this is': 660677, 'is not profit': 450161, 'not profit making': 571110, 'profit making event': 682802, 'making event for': 511051, 'event for you': 284986, 'nephron': 557423, 'you drug': 1018369, 'drug healthcare': 260970, 'healthcare sarscov2': 387268, 'sarscov2 medicine': 736848, 'medicine nephron': 526845, 'nephron southcarolina': 557424, 'thank you drug': 841719, 'you drug healthcare': 1018370, 'drug healthcare sarscov2': 260971, 'healthcare sarscov2 medicine': 387269, 'sarscov2 medicine nephron': 736849, 'medicine nephron southcarolina': 526846, 'makoya': 511520, 'mian': 530208, 'chol': 177856, 'recommending': 704812, 'despised': 238652, 'jieng': 465466, 'ssot': 791672, 'so makoya': 777632, 'makoya mian': 511521, 'mian chol': 530209, 'chol is': 177857, 'is recommending': 451354, 'recommending the': 704817, 'sanitizer capable': 734636, 'of killing': 585637, 'killing virus': 474726, 'hand went': 375974, 'what ha': 981531, 'been despised': 120961, 'despised by': 238653, 'by jieng': 152960, 'jieng all': 465467, 'along next': 47009, 'time never': 897254, 'never discourage': 557956, 'discourage me': 244621, 'me from': 522779, 'taking makoya': 833432, 'makoya ssot': 511523, 'so makoya mian': 777633, 'makoya mian chol': 511522, 'mian chol is': 530210, 'chol is what': 177858, 'what the world': 982375, 'world is recommending': 1009716, 'is recommending the': 451356, 'recommending the only': 704818, 'the only sanitizer': 862337, 'only sanitizer capable': 611084, 'sanitizer capable of': 734637, 'capable of killing': 162483, 'of killing virus': 585639, 'killing virus covid': 474727, '19 in our': 7773, 'in our hand': 426300, 'our hand went': 623354, 'hand went to': 375975, 'to buy what': 902336, 'buy what ha': 149453, 'what ha been': 981532, 'ha been despised': 369775, 'been despised by': 120962, 'despised by jieng': 238654, 'by jieng all': 152961, 'jieng all along': 465468, 'all along next': 41991, 'along next time': 47010, 'next time never': 561605, 'time never discourage': 897255, 'never discourage me': 557957, 'discourage me from': 244622, 'me from taking': 522790, 'from taking makoya': 337543, 'taking makoya ssot': 833433, 'ei': 270151, 'some reliable': 783720, 'managing your': 512919, 'epidemic includes': 279391, 'includes link': 431772, 'link explaining': 493826, 'explaining the': 292188, 'rule regarding': 727333, 'regarding ei': 707205, 'ei health': 270158, 'health coverage': 386315, 'coverage thank': 212381, 'for sharing': 325523, 'sharing widely': 755625, 'some reliable information': 783721, 'reliable information on': 709210, 'information on managing': 437918, 'on managing your': 601988, 'managing your finance': 512920, 'the epidemic includes': 854439, 'epidemic includes link': 279392, 'includes link explaining': 431773, 'link explaining the': 493827, 'explaining the new': 292190, 'new rule regarding': 559527, 'rule regarding ei': 727334, 'regarding ei health': 707206, 'ei health coverage': 270159, 'health coverage thank': 386316, 'coverage thank you': 212382, 'you for sharing': 1018668, 'for sharing widely': 325533, 'pmmodi': 662057, 'pmoindia': 662072, 'honorable pm': 403267, 'pm sir': 661982, 'sir with': 771680, 'current scenario': 221352, 'scenario regarding': 741283, '19 sir': 10559, 'sir our': 771619, 'our company': 622495, 'ha developed': 370367, 'developed online': 239725, 'to realtime': 912870, 'realtime shopping': 702771, 'shopping solution': 763940, 'solution involving': 782048, 'involving local': 444404, 'be only': 116234, 'only solution': 611163, 'to current': 903824, 'crisis well': 218364, 'for future': 321823, 'future market': 342383, 'market pmmodi': 516866, 'pmmodi pmoindia': 662060, 'pmoindia onlineshopping': 662073, 'onlineshopping ad': 609881, 'honorable pm sir': 403270, 'pm sir with': 661985, 'sir with current': 771681, 'with current scenario': 997888, 'current scenario regarding': 221353, 'scenario regarding covid': 741284, 'covid 19 sir': 213808, '19 sir our': 10560, 'sir our company': 771620, 'our company ha': 622498, 'company ha developed': 190708, 'ha developed online': 370372, 'developed online to': 239726, 'online to realtime': 609596, 'to realtime shopping': 912871, 'realtime shopping solution': 702772, 'shopping solution involving': 763942, 'solution involving local': 782049, 'involving local business': 444405, 'local business which': 497782, 'business which will': 144661, 'will be only': 992590, 'be only solution': 116236, 'only solution to': 611164, 'solution to current': 782095, 'to current crisis': 903825, 'current crisis well': 221163, 'crisis well for': 218365, 'well for future': 978247, 'for future market': 321826, 'future market pmmodi': 342385, 'market pmmodi pmoindia': 516867, 'pmmodi pmoindia onlineshopping': 662061, 'pmoindia onlineshopping ad': 662074, 'amsterdam': 54935, 'from amsterdam': 334471, 'amsterdam ikea': 54936, 'news from amsterdam': 560451, 'from amsterdam ikea': 334472, 'amsterdam ikea close': 54937, 'need hazard': 554960, 'pay right': 645090, 'with healthcare': 998750, 'society will': 781363, 'literally collapse': 494971, 'collapse without': 186079, 'somehow it': 784323, 'worth minimum': 1011399, 'wage fight': 963860, 'and strike': 72573, 'strike for': 813739, '30 hour': 17072, 'paid benefit': 633983, 'and sick': 71636, 'store worker need': 811546, 'worker need hazard': 1007423, 'need hazard pay': 554961, 'hazard pay right': 384573, 'pay right now': 645091, 'they are on': 881347, 'front line with': 338623, 'line with healthcare': 493578, 'with healthcare and': 998751, 'healthcare and society': 387033, 'and society will': 71925, 'society will literally': 781365, 'will literally collapse': 994028, 'literally collapse without': 494972, 'collapse without them': 186081, 'without them but': 1002991, 'them but somehow': 875499, 'but somehow it': 147114, 'somehow it worth': 784324, 'it worth minimum': 462569, 'worth minimum wage': 1011400, 'minimum wage fight': 533230, 'wage fight and': 963861, 'fight and strike': 304657, 'and strike for': 72574, 'strike for 30': 813740, 'for 30 hour': 318801, '30 hour of': 17074, 'hour of paid': 405803, 'of paid benefit': 587663, 'paid benefit and': 633984, 'benefit and sick': 126921, 'and sick leave': 71638, 'txlege': 937466, 'of email': 583020, 'my inbox': 548836, 'inbox trying': 431261, 'scam me': 740246, 'me into': 522989, 'into buying': 442440, 'buying item': 150612, 'novel cyber': 573771, 'criminal never': 216857, 'take break': 831994, 'break they': 138810, 'they switch': 883516, 'switch tactic': 830508, 'alert here': 41446, 'texas ag': 839735, 'ag txlege': 36848, 'have seen an': 382418, 'increase in the': 432873, 'in the number': 429408, 'number of email': 576940, 'of email in': 583022, 'email in my': 272209, 'in my inbox': 425589, 'my inbox trying': 548838, 'inbox trying to': 431262, 'trying to scam': 934865, 'to scam me': 913864, 'scam me into': 740247, 'me into buying': 522991, 'into buying item': 442441, 'buying item in': 150614, 'item in response': 463352, 'the novel cyber': 861911, 'novel cyber criminal': 573772, 'cyber criminal never': 223927, 'criminal never take': 216858, 'never take break': 558213, 'take break they': 831999, 'break they switch': 138811, 'they switch tactic': 883517, 'switch tactic please': 830509, 'tactic please stay': 831712, 'please stay alert': 660543, 'stay alert here': 796756, 'alert here is': 41447, 'here is good': 393227, 'is good info': 448145, 'from the texas': 337897, 'the texas ag': 869338, 'texas ag txlege': 839736, 'ny 18': 577829, '18 to': 4593, 'to 49': 899732, '49 year': 19409, 'old make': 598338, 'all case': 42308, 'state price': 795869, 'of surgical': 590523, 'mask triple': 519448, 'triple due': 932245, 'demand over': 235998, 'over supply': 630665, 'supply capitalism': 824886, 'ny 18 to': 577830, '18 to 49': 4594, 'to 49 year': 899733, '49 year old': 19410, 'year old make': 1014846, 'old make up': 598339, 'make up more': 510687, 'up more than': 945407, 'than half of': 840719, 'half of all': 374217, 'of all case': 579930, 'all case in': 42311, 'the state price': 867804, 'state price of': 795871, 'price of surgical': 675580, 'of surgical mask': 590524, 'surgical mask triple': 828371, 'mask triple due': 519449, 'triple due to': 932246, 'to demand over': 904151, 'demand over supply': 235999, 'over supply capitalism': 630666, 'supply capitalism at': 824887, 'flew': 310337, 'aren screening': 92511, 'screening at': 742759, 'the airport': 848504, 'airport my': 40110, 'brother just': 141077, 'just flew': 468732, 'flew back': 310338, 'from nz': 336623, 'nz through': 578209, 'through la': 894548, 'la and': 478125, 'and absolutely': 57565, 'absolutely nothing': 27411, 'nothing he': 573035, 'he thankfully': 385508, 'thankfully is': 841951, 'quarantine right': 692496, 'going straight': 355471, 'just wondering why': 470333, 'wondering why we': 1004212, 'why we aren': 991517, 'we aren screening': 970774, 'aren screening at': 92512, 'screening at the': 742760, 'at the airport': 100873, 'the airport my': 848509, 'airport my brother': 40111, 'my brother just': 547561, 'brother just flew': 141078, 'just flew back': 468733, 'flew back from': 310339, 'back from nz': 107012, 'from nz through': 336624, 'nz through la': 578210, 'through la and': 894549, 'la and absolutely': 478126, 'and absolutely nothing': 57567, 'absolutely nothing he': 27412, 'nothing he thankfully': 573037, 'he thankfully is': 385509, 'thankfully is going': 841952, 'going to quarantine': 355682, 'to quarantine right': 912647, 'quarantine right away': 692497, 'right away but': 721786, 'away but some': 105800, 'some people are': 783504, 'are going straight': 86899, 'going straight to': 355472, 'straight to the': 812245, 'homeschoolbandandtunes': 402926, 'governorandrewcuomo': 361032, 'funniesttweets': 341691, 'funniest': 341686, 'the with': 871635, 'with humor': 998912, 'humor diff': 410862, 'diff size': 241796, 'size style': 772803, 'style color': 815598, 'available homeschoolbandandtunes': 104423, 'homeschoolbandandtunes governorandrewcuomo': 402927, 'governorandrewcuomo toiletpaper': 361033, 'toiletpaperpanic humor': 923219, 'humor funniesttweets': 410874, 'funniesttweets funniest': 341692, 'fight the with': 304910, 'the with humor': 871638, 'with humor diff': 998913, 'humor diff size': 410863, 'diff size style': 241797, 'size style color': 772804, 'style color available': 815599, 'color available homeschoolbandandtunes': 186728, 'available homeschoolbandandtunes governorandrewcuomo': 104424, 'homeschoolbandandtunes governorandrewcuomo toiletpaper': 402928, 'governorandrewcuomo toiletpaper toiletpaperpanic': 361034, 'toiletpaper toiletpaperpanic humor': 922696, 'toiletpaperpanic humor funniesttweets': 923220, 'humor funniesttweets funniest': 410875, 'ttxs': 935005, 'modelling': 535334, 'anticipatory': 78500, 'regional grocery': 707508, 'store started': 810344, 'started watching': 794900, 'watching for': 968739, 'second week': 743868, 'january when': 464695, 'started popping': 794809, 'china an': 176474, 'issue heb': 455784, 'heb responded': 388683, 'responded with': 715368, 'with ttxs': 1001856, 'ttxs transmission': 935006, 'transmission modelling': 929746, 'modelling and': 535335, 'and anticipatory': 58189, 'anticipatory policy': 78501, 'change ahead': 171891, 'most government': 542353, 'regional grocery store': 707509, 'grocery store started': 365798, 'store started watching': 810348, 'started watching for': 794901, 'watching for the': 968740, 'for the the': 326726, 'the the second': 869399, 'the second week': 866597, 'second week in': 743869, 'week in january': 976374, 'in january when': 424366, 'january when it': 464696, 'when it started': 983649, 'it started popping': 461225, 'started popping up': 794810, 'popping up in': 664521, 'up in china': 945150, 'in china an': 421387, 'china an issue': 176475, 'an issue heb': 56481, 'issue heb responded': 455785, 'heb responded with': 388684, 'responded with ttxs': 715370, 'with ttxs transmission': 1001857, 'ttxs transmission modelling': 935007, 'transmission modelling and': 929747, 'modelling and anticipatory': 535336, 'and anticipatory policy': 58190, 'anticipatory policy change': 78502, 'policy change ahead': 663364, 'change ahead of': 171892, 'ahead of most': 39188, 'of most government': 586674, 'snakepark': 776062, 'doornkop': 255833, 'the resident': 865577, 'of snakepark': 589795, 'snakepark doornkop': 776063, 'doornkop are': 255834, 'are queueing': 89387, 'queueing at': 694166, 'without following': 1002648, 'following necessary': 312798, 'precaution this': 669378, 'currently happening': 221553, 'might get': 530987, 'get mass': 347530, 'mass infection': 519797, 'an informal': 56321, 'informal settlement': 437691, 'settlement no': 753718, 'the resident of': 865579, 'resident of snakepark': 714345, 'of snakepark doornkop': 589796, 'snakepark doornkop are': 776064, 'doornkop are queueing': 255835, 'are queueing at': 89388, 'queueing at local': 694167, 'local supermarket without': 498618, 'supermarket without following': 823951, 'without following necessary': 1002649, 'following necessary precaution': 312799, 'necessary precaution this': 554047, 'precaution this is': 669379, 'this is currently': 888225, 'is currently happening': 446993, 'currently happening outside': 221554, 'supermarket we might': 823748, 'we might get': 972371, 'might get mass': 530989, 'get mass infection': 347531, 'mass infection in': 519798, 'infection in an': 436771, 'in an informal': 420313, 'an informal settlement': 56322, 'informal settlement no': 437692, 'settlement no one': 753719, 'wearing mask or': 974705, 'ensured': 278141, 'disgusted they': 245375, 'now trying': 576229, 'an error': 55804, 'error but': 280224, 'but bet': 145291, 'changed price': 172534, 'if hadn': 414191, 'hadn exposed': 373849, 'exposed them': 292881, 'may just': 521304, 'have ensured': 380475, 'ensured that': 278144, 'only pharmacy': 610968, 'disgusted they now': 245376, 'they now trying': 882805, 'now trying to': 576230, 'trying to say': 934864, 'say it wa': 738863, 'wa an error': 961530, 'an error but': 55805, 'error but bet': 280225, 'but bet they': 145293, 'bet they wouldn': 128119, 'wouldn have changed': 1012475, 'have changed price': 379941, 'changed price if': 172535, 'price if hadn': 674615, 'if hadn exposed': 414192, 'hadn exposed them': 373850, 'exposed them they': 292882, 'them they may': 876419, 'they may just': 882664, 'may just have': 521305, 'just have ensured': 468933, 'have ensured that': 380477, 'ensured that they': 278147, 'they re the': 883142, 're the only': 699698, 'the only pharmacy': 862329, 'only pharmacy to': 610969, 'pharmacy to go': 654517, 'of business in': 580958, 'business in this': 143907, 'gogglebox': 354933, 'gilbey': 350106, 'gogglebox george': 354934, 'george gilbey': 346007, 'gilbey reveals': 350107, 'reveals he': 720320, 'he working': 385688, 'he join': 385157, 'gogglebox george gilbey': 354935, 'george gilbey reveals': 346008, 'gilbey reveals he': 350108, 'reveals he working': 720322, 'he working in': 385689, 'supermarket he join': 820725, 'he join the': 385159, 'seriously my': 751671, 'of regular': 588888, 'regular sugar': 707875, 'sugar and': 817422, 'and flour': 62983, 'flour apparently': 311072, 'gonna fight': 356523, 'with baked': 997361, 'baked good': 108769, 'seriously my grocery': 751672, 'store wa out': 811118, 'out of regular': 626818, 'of regular sugar': 588892, 'regular sugar and': 707876, 'sugar and flour': 817423, 'and flour apparently': 62985, 'flour apparently we': 311073, 'we are gonna': 970579, 'are gonna fight': 86916, 'gonna fight with': 356524, 'fight with baked': 304950, 'with baked good': 997362, 'is hit': 448499, 'nursing assistant': 577598, 'assistant grocery': 96780, 'worker garbage': 1007009, 'fed and': 301777, 'and supplied': 72763, 'supplied take': 824468, 'economy is hit': 268005, 'is hit by': 448500, 'seeing the real': 746505, 'real hero of': 701203, 'doctor nursing assistant': 251041, 'nursing assistant grocery': 577600, 'assistant grocery store': 96781, 'ups worker garbage': 947784, 'worker garbage collector': 1007010, 'garbage collector people': 343523, 'healthy fed and': 387606, 'fed and supplied': 301782, 'and supplied take': 72765, 'supplied take care': 824469, 'care of them': 164119, 'revamping': 720229, 'another big': 77514, 'retail announcement': 717843, 'announcement in': 77163, 'pandemic release': 636322, 'release this': 709000, 'this official': 889204, 'official statement': 595936, 'statement regarding': 796211, 'closure while': 184065, 'while revamping': 987220, 'revamping it': 720230, 'presence so': 670562, 'enjoy their': 277193, 'their favorite': 873293, 'favorite selection': 300550, 'selection bathandbodyworks': 747518, 'another big retail': 77515, 'big retail announcement': 129961, 'retail announcement in': 717844, 'announcement in the': 77165, 'the pandemic release': 863075, 'pandemic release this': 636323, 'release this official': 709001, 'this official statement': 889205, 'official statement regarding': 595940, 'statement regarding store': 796212, 'regarding store closure': 707269, 'store closure while': 807114, 'closure while revamping': 184066, 'while revamping it': 987221, 'revamping it online': 720231, 'it online presence': 460085, 'online presence so': 608790, 'presence so customer': 670563, 'so customer can': 776824, 'customer can continue': 222224, 'continue to enjoy': 201186, 'to enjoy their': 905133, 'enjoy their favorite': 277196, 'their favorite selection': 873295, 'favorite selection bathandbodyworks': 300551, 'all practice': 44009, 'very simple': 955546, 'simple free': 770022, 'through easyfundraising': 894436, 'easyfundraising we': 265825, 'receive donation': 703465, 'do visit': 250442, 'we all practice': 970353, 'all practice socialdistancing': 44011, 'practice socialdistancing more': 668661, 'shopping will take': 764418, 'will take place': 995077, 'take place online': 832505, 'place online very': 657624, 'online very simple': 609671, 'very simple free': 955547, 'simple free way': 770023, 'is to shop': 453240, 'to shop through': 914495, 'shop through easyfundraising': 760934, 'through easyfundraising we': 894438, 'easyfundraising we will': 265826, 'we will receive': 973896, 'will receive donation': 994591, 'receive donation from': 703467, 'donation from the': 254617, 'from the retailer': 337858, 'the retailer if': 865741, 'you do visit': 1018277, 'mistake': 534462, 'may get': 521201, 'get lot': 347501, 'lot harder': 504058, 'harder one': 378177, 'biggest mistake': 130275, 'mistake supermarket': 534478, 'made early': 507720, 'on wa': 605080, 'not allowing': 568151, 'allowing employee': 46280, 'glove the': 352945, 'they wanted': 883719, 'buying food may': 150321, 'food may get': 315417, 'may get lot': 521205, 'get lot harder': 347502, 'lot harder one': 504059, 'harder one of': 378178, 'of the biggest': 590820, 'the biggest mistake': 849664, 'biggest mistake supermarket': 130277, 'mistake supermarket made': 534479, 'supermarket made early': 821420, 'made early on': 507721, 'early on wa': 264667, 'on wa not': 605081, 'wa not allowing': 962757, 'not allowing employee': 568153, 'allowing employee to': 46281, 'employee to wear': 274340, 'and glove the': 63739, 'glove the way': 352946, 'way they wanted': 969965, 'they wanted to': 883724, 'iwaya': 464062, 'slum': 774662, 'our door': 622799, 'door covid': 255558, 'to iwaya': 908637, 'iwaya slum': 464063, 'slum you': 774669, 'too can': 924639, 'the lagos': 858917, 'lagos food': 478927, 'bank meet': 110001, 'donating below': 254437, 'below if': 126669, 'part our': 642400, 'food relief': 316156, 'relief intervention': 709369, 'intervention and': 442176, 'and pr': 69295, 'our door to': 622800, 'to door covid': 904666, 'door covid 19': 255559, '19 emergency relief': 6763, 'emergency relief package': 272917, 'relief package to': 709428, 'package to iwaya': 633431, 'to iwaya slum': 908638, 'iwaya slum you': 464064, 'slum you too': 774670, 'you too can': 1021882, 'too can help': 924640, 'help the lagos': 390660, 'the lagos food': 858918, 'lagos food bank': 478928, 'food bank meet': 313599, 'bank meet the': 110004, '19 crisis by': 6222, 'crisis by donating': 217170, 'by donating below': 152401, 'donating below if': 254438, 'below if you': 126670, 'wish to be': 996834, 'be part our': 116359, 'part our food': 642401, 'our food relief': 623124, 'food relief intervention': 316160, 'relief intervention and': 709370, 'intervention and pr': 442177, 'chatted': 173988, 'today chatted': 919366, 'chatted with': 173992, 'folk and': 312081, 'and almost': 57925, 'almost everyone': 46626, 'wa afraid': 961450, 'afraid but': 34974, 'but very': 147686, 'very friendly': 955175, 'even kinda': 284273, 'kinda casual': 475039, 'casual if': 166795, 'family when': 298370, 'thing blow': 884192, 'over really': 630560, 'this feeling': 887533, 'feeling of': 303033, 'of cooperation': 581869, 'cooperation amp': 203155, 'amp empathy': 53710, 'empathy outside': 273359, 'store today chatted': 810837, 'today chatted with': 919367, 'chatted with so': 173993, 'so many folk': 777660, 'many folk and': 514076, 'folk and almost': 312082, 'and almost everyone': 57928, 'almost everyone wa': 46629, 'everyone wa afraid': 287533, 'wa afraid but': 961451, 'afraid but very': 34976, 'but very friendly': 147688, 'very friendly and': 955176, 'friendly and even': 333941, 'and even kinda': 62340, 'even kinda casual': 284274, 'kinda casual if': 475040, 'casual if we': 166796, 'we were all': 973780, 'were all family': 979281, 'all family when': 42756, 'family when the': 298371, 'when the thing': 984206, 'the thing blow': 869452, 'thing blow over': 884193, 'blow over really': 133343, 'over really going': 630561, 'really going to': 702230, 'going to miss': 355655, 'miss this feeling': 534206, 'this feeling of': 887535, 'feeling of cooperation': 303034, 'of cooperation amp': 581870, 'cooperation amp empathy': 203156, 'amp empathy outside': 53711, 'monies': 537262, 'looted': 503240, 'post nigeria': 666220, 'nigeria will': 562824, 'tested to': 839380, 'how sustainable': 408772, 'sustainable we': 829810, 'are dwindling': 86034, 'dwindling oil': 263694, 'price monies': 675256, 'monies being': 537263, 'being spent': 125842, 'spent for': 789124, 'more expense': 539173, 'expense whether': 291213, 'whether used': 985605, 'used or': 949986, 'or looted': 616010, 'looted on': 503245, 'what footing': 981464, 'footing are': 318551, 'with when': 1002082, 'post nigeria will': 666221, 'nigeria will be': 562825, 'will be tested': 992719, 'be tested to': 117565, 'tested to see': 839382, 'see how sustainable': 745250, 'how sustainable we': 408773, 'sustainable we are': 829811, 'we are dwindling': 970536, 'are dwindling oil': 86036, 'dwindling oil price': 263695, 'oil price monies': 597194, 'price monies being': 675257, 'monies being spent': 537264, 'being spent for': 125843, 'spent for the': 789125, 'pandemic and more': 634884, 'and more expense': 67168, 'more expense whether': 539174, 'expense whether used': 291214, 'whether used or': 985606, 'used or looted': 949987, 'or looted on': 616011, 'looted on what': 503246, 'on what footing': 605221, 'what footing are': 981465, 'footing are we': 318552, 'going to begin': 355537, 'begin with when': 123605, 'with when is': 1002083, 'when is all': 983612, 'someone telling': 784680, 'me story': 523556, 'story earlier': 811957, 'earlier about': 264416, 'about home': 25407, 'home carer': 400879, 'carer they': 164560, 'employ in': 273443, 'edinburgh having': 268570, 'trolley stolen': 932473, 'from behind': 334664, 'behind their': 124730, 'their back': 872543, 'for client': 320125, 'client in': 182051, 'supermarket some': 822771, 'folk really': 312242, 'really have': 702268, 'someone telling me': 784681, 'telling me story': 837228, 'me story earlier': 523558, 'story earlier about': 811958, 'earlier about home': 264417, 'about home carer': 25408, 'home carer they': 400880, 'carer they employ': 164561, 'they employ in': 882037, 'employ in edinburgh': 273444, 'in edinburgh having': 422497, 'edinburgh having their': 268571, 'having their trolley': 384327, 'their trolley stolen': 875036, 'trolley stolen from': 932474, 'stolen from behind': 804289, 'from behind their': 334670, 'behind their back': 124731, 'their back while': 872544, 'back while shopping': 107466, 'while shopping for': 987265, 'shopping for client': 762663, 'for client in': 320128, 'client in supermarket': 182052, 'in supermarket some': 428673, 'supermarket some folk': 822773, 'some folk really': 782850, 'folk really have': 312243, 'really have no': 702270, 'intensifies': 441106, 'scarsdale': 741117, 'largo': 480042, '1st related': 12784, 'related employee': 708432, 'employee death': 273757, 'death at': 229978, 'chain lead': 170884, 'closure increasing': 183919, 'increasing anxiety': 433552, 'anxiety among': 78647, 'among grocery': 53008, 'pandemic intensifies': 635744, 'intensifies trader': 441111, 'joe scarsdale': 466438, 'scarsdale ny': 741122, 'ny giant': 577866, 'giant store': 349867, 'store largo': 808668, 'largo md': 480047, 'md walmart': 522294, 'walmart chicago': 965296, '1st related employee': 12785, 'related employee death': 708433, 'employee death at': 273758, 'death at major': 229980, 'supermarket chain lead': 819618, 'chain lead to': 170885, 'lead to store': 483390, 'to store closure': 915611, 'store closure increasing': 807096, 'closure increasing anxiety': 183920, 'increasing anxiety among': 433553, 'anxiety among grocery': 78648, 'among grocery worker': 53010, 'worker pandemic intensifies': 1007541, 'pandemic intensifies trader': 635747, 'intensifies trader joe': 441112, 'trader joe scarsdale': 928719, 'joe scarsdale ny': 466439, 'scarsdale ny giant': 741123, 'ny giant store': 577867, 'giant store largo': 349869, 'store largo md': 808669, 'largo md walmart': 480049, 'md walmart chicago': 522295, 'walmart chicago area': 965297, 'even person': 284464, 'on isolation': 601639, 'stuff and': 815003, 'and expose': 62539, 'this crowd': 887123, 'cannot simply': 162096, 'simply order': 770251, 'online high': 608371, 'even person who': 284465, 'person who might': 652732, 'might be on': 530920, 'be on isolation': 116200, 'on isolation because': 601640, 'isolation because of': 455215, '19 ha to': 7397, 'go to these': 354372, 'to these supermarket': 917355, 'these supermarket to': 880777, 'buy the stuff': 149309, 'the stuff and': 868324, 'stuff and expose': 815005, 'and expose themselves': 62542, 'themselves to this': 876916, 'to this crowd': 917417, 'this crowd just': 887125, 'crowd just because': 219193, 'because they cannot': 119692, 'they cannot simply': 881715, 'cannot simply order': 162097, 'simply order online': 770252, 'order online high': 618470, 'online high risk': 608372, 'lingo': 493723, 'with travel': 1001838, 'travel agent': 930237, 'agent adviser': 38144, 'adviser thanks': 33667, 'to centre': 902569, 'centre and': 169479, 'the insider': 858315, 'insider lingo': 439476, 'lingo they': 493724, 'they shared': 883333, 'shared might': 755428, 'help ton': 390803, 'people whose': 650364, 'whose travel': 990682, 'adviser are': 33659, 'are overwhelmed': 88934, 'overwhelmed 18': 631711, '18 19': 4487, 'dealing with travel': 229699, 'with travel agent': 1001840, 'travel agent adviser': 930238, 'agent adviser thanks': 38146, 'adviser thanks to': 33668, 'thanks to centre': 842212, 'to centre and': 902570, 'centre and the': 169483, 'and the insider': 73429, 'the insider lingo': 858317, 'insider lingo they': 439477, 'lingo they shared': 493725, 'they shared might': 883335, 'shared might help': 755429, 'might help ton': 531037, 'help ton of': 390804, 'ton of people': 924279, 'of people whose': 588025, 'people whose travel': 650370, 'whose travel agent': 990683, 'agent adviser are': 38145, 'adviser are overwhelmed': 33660, 'are overwhelmed 18': 88935, 'overwhelmed 18 19': 631712, 'empathizes': 273339, 'periodically': 651944, 'egift': 270060, 'we empathizes': 971440, 'empathizes those': 273340, '19 periodically': 9653, 'periodically we': 651947, 'to adjust': 900103, 'adjust fee': 32282, 'fee in': 302183, 'same level': 733141, 'service customer': 752267, 'customer expect': 222349, 'offer variety': 594867, 'no fee': 564206, 'fee egift': 302161, 'egift card': 270061, 'card that': 163664, 'or re': 616784, 'we empathizes those': 971441, 'empathizes those impacted': 273341, 'covid 19 periodically': 213570, '19 periodically we': 9654, 'periodically we need': 651948, 'need to adjust': 555855, 'to adjust fee': 900104, 'adjust fee in': 32283, 'fee in order': 302185, 'maintain the same': 509064, 'the same level': 866252, 'same level of': 733142, 'level of service': 487660, 'of service customer': 589531, 'service customer expect': 752268, 'customer expect from': 222350, 'expect from we': 290647, 'from we offer': 338306, 'we offer variety': 972629, 'offer variety of': 594868, 'variety of no': 952567, 'of no fee': 587038, 'no fee egift': 564208, 'fee egift card': 302162, 'egift card that': 270062, 'card that can': 163665, 'used for online': 949908, 'shopping or re': 763553, 'smash': 775553, 'depending': 237375, 'price reached': 676088, 'reached 24': 700025, '24 per': 15673, 'barrel these': 111293, 'these tension': 880791, 'tension of': 837989, 'will smash': 994875, 'smash economy': 775556, 'country depending': 210577, 'depending on': 237376, 'oil an': 596605, 'essential support': 281635, 'their economy': 873099, 'economy iraq': 267983, 'iraq iran': 444769, 'iran kurdistan': 444693, 'kurdistan saudiarabia': 477961, 'russia golf': 728484, 'golf corona': 356117, 'corona market': 204055, 'oil price reached': 597228, 'price reached 24': 676089, 'reached 24 per': 700026, '24 per barrel': 15674, 'per barrel these': 650711, 'barrel these tension': 111294, 'these tension of': 880792, 'tension of will': 837990, 'of will smash': 593172, 'will smash economy': 994876, 'smash economy of': 775557, 'economy of country': 268111, 'of country depending': 582030, 'country depending on': 210578, 'depending on oil': 237379, 'on oil an': 602487, 'oil an essential': 596607, 'an essential support': 55837, 'essential support to': 281636, 'support to their': 826954, 'to their economy': 917230, 'their economy iraq': 873101, 'economy iraq iran': 267984, 'iraq iran kurdistan': 444770, 'iran kurdistan saudiarabia': 444694, 'kurdistan saudiarabia russia': 477962, 'saudiarabia russia golf': 737360, 'russia golf corona': 728485, 'golf corona market': 356118, 'it entertainment': 457831, 'entertainment going': 278565, 'had week': 373789, 'two shelf': 937205, 'buy then': 149335, 'last worst': 480714, 'it entertainment going': 457832, 'entertainment going through': 278566, 'going through the': 355508, 'through the store': 894767, 'store and seeing': 806342, 'and seeing people': 71163, 'seeing people panic': 746409, 'panic buying stuff': 637913, 'buying stuff that': 151112, 'stuff that had': 815195, 'that had week': 844158, 'had week or': 373791, 'or two shelf': 617571, 'two shelf life': 937206, 'shelf life if': 757281, 'life if you': 488744, 'going to panic': 355665, 'panic buy then': 637536, 'buy then get': 149336, 'then get stuff': 877197, 'get stuff that': 348141, 'stuff that will': 815200, 'that will last': 847589, 'will last worst': 993957, 'last worst case': 480715, 'worst case at': 1011154, 'case at the': 165648, 'end of this': 275920, 'of this you': 592077, 'can donate it': 158139, 'transmitting': 929806, 'crud': 219494, 'government not': 360382, 'not transmitting': 572255, 'transmitting benefit': 929807, 'of fall': 583386, 'in crud': 421921, 'crud oil': 219495, 'mean not': 524571, 'not big': 568569, 'big slash': 130004, 'slash but': 773555, 'but atleast': 145249, 'atleast bring': 101880, 'down like': 256917, 'like petrol': 490994, 'at 60': 97706, '60 per': 20986, 'litre crudeoil': 495141, 'crudeoil petrolprice': 219644, 'why is government': 991106, 'is government not': 448170, 'government not transmitting': 360385, 'not transmitting benefit': 572256, 'transmitting benefit of': 929808, 'benefit of fall': 127042, 'of fall in': 583388, 'fall in crud': 296942, 'in crud oil': 421922, 'crud oil price': 219496, 'price mean not': 675213, 'mean not big': 524572, 'not big slash': 568571, 'big slash but': 130005, 'slash but atleast': 773556, 'but atleast bring': 145250, 'atleast bring it': 101881, 'bring it down': 140011, 'it down like': 457692, 'down like petrol': 256919, 'like petrol price': 490995, 'petrol price at': 653759, 'price at 60': 672790, 'at 60 per': 97708, '60 per litre': 20987, 'per litre crudeoil': 650921, 'litre crudeoil petrolprice': 495142, 'oriented stimulus': 619531, 'stimulus now': 801570, '19 afterwards': 4862, 'afterwards when': 36753, 'confidence return': 193944, 'return package': 719879, 'package stimulus': 633408, 'will temporarily': 995104, 'temporarily reduce': 837526, 'reduce sale': 705924, 'time for consumer': 896699, 'for consumer oriented': 320276, 'consumer oriented stimulus': 198298, 'oriented stimulus now': 619532, 'stimulus now is': 801571, 'time to focus': 897988, 'focus on small': 311897, 'small business hit': 774862, 'hard by covid': 377886, 'covid 19 afterwards': 212595, '19 afterwards when': 4864, 'afterwards when consumer': 36754, 'when consumer confidence': 983278, 'consumer confidence return': 196917, 'confidence return package': 193945, 'return package stimulus': 719880, 'package stimulus package': 633409, 'stimulus package that': 801592, 'that will temporarily': 847615, 'will temporarily reduce': 995106, 'temporarily reduce sale': 837528, 'reduce sale tax': 705925, 'is rolling': 451570, 'rolling out': 725679, 'more new': 539836, 'pandemic expands': 635403, 'expands and': 290521, 'le access': 482829, 'at is rolling': 99309, 'is rolling out': 451571, 'rolling out more': 725681, 'out more new': 626574, 'more new measure': 539837, 'new measure the': 559098, 'measure the covid': 525365, '19 pandemic expands': 9321, 'pandemic expands and': 635404, 'expands and that': 290522, 'and that mean': 73202, 'that mean le': 845113, 'mean le access': 524520, 'le access to': 482830, 'access to it': 28250, 'to it retail': 908610, 'it retail shop': 460747, 'endured': 276317, 'persian': 652252, 'protester': 685943, 'this animation': 886362, 'animation about': 76726, 'the iranian': 858444, 'people endured': 647793, 'endured during': 276318, 'the passing': 863333, 'passing persian': 643394, 'persian year': 652253, 'and heartbreaking': 64417, 'heartbreaking from': 388377, 'from flooding': 335488, 'flooding to': 310762, 'rising gas': 723226, 'of protester': 588567, 'protester to': 685948, 'the plane': 863796, 'plane being': 658378, 'being shot': 125778, 'shot down': 765421, 'this animation about': 886363, 'animation about what': 76727, 'what the iranian': 982327, 'the iranian people': 858446, 'iranian people endured': 444733, 'people endured during': 647794, 'endured during the': 276319, 'during the passing': 263171, 'the passing persian': 863335, 'passing persian year': 643395, 'persian year is': 652254, 'year is well': 1014673, 'is well done': 453843, 'well done and': 978175, 'done and heartbreaking': 254773, 'and heartbreaking from': 64418, 'heartbreaking from flooding': 388379, 'from flooding to': 335489, 'flooding to rising': 310763, 'to rising gas': 913587, 'rising gas price': 723227, 'gas price to': 344040, 'price to the': 677052, 'to the death': 916628, 'death of protester': 230144, 'of protester to': 588568, 'protester to the': 685949, 'to the plane': 916957, 'the plane being': 863797, 'plane being shot': 658379, 'being shot down': 125779, 'shot down and': 765422, 'down and then': 256520, 'reunited': 720136, 'tony': 924547, 'stark': 794152, 'endgame': 276153, 'nhscovidheroes': 562211, 'fortheworld': 329808, 'hope family': 403467, 'are reunited': 89671, 'reunited hope': 720137, 'back sort': 107283, 'normal version': 567391, 'planet ha': 658406, 'been restored': 121844, 'restored if': 717061, 'there ever': 878368, 'ever wa': 285582, 'wa such': 963345, 'such thing': 816811, 'thing tony': 884917, 'tony stark': 924552, 'stark avenger': 794153, 'avenger endgame': 104762, 'endgame bekindtoeachother': 276154, 'bekindtoeachother nhscovidheroes': 126125, 'nhscovidheroes fortheworld': 562216, 'fortheworld stophoarding': 329809, 'hope family are': 403468, 'family are reunited': 297629, 'are reunited hope': 89672, 'reunited hope we': 720138, 'hope we get': 403766, 'get it back': 347395, 'it back sort': 456673, 'back sort of': 107284, 'sort of like': 786127, 'of like normal': 585855, 'like normal version': 490873, 'normal version of': 567392, 'version of the': 954920, 'of the planet': 591340, 'the planet ha': 863802, 'planet ha been': 658407, 'ha been restored': 369901, 'been restored if': 121845, 'restored if there': 717062, 'if there ever': 415067, 'there ever wa': 878369, 'ever wa such': 285584, 'wa such thing': 963350, 'such thing tony': 816814, 'thing tony stark': 884918, 'tony stark avenger': 924553, 'stark avenger endgame': 794154, 'avenger endgame bekindtoeachother': 104763, 'endgame bekindtoeachother nhscovidheroes': 276155, 'bekindtoeachother nhscovidheroes fortheworld': 126126, 'nhscovidheroes fortheworld stophoarding': 562217, 'uk intensive': 938477, 'nurse cry': 577258, 'cry at': 219853, 'shelf coronavirus': 756966, 'panic pile': 638417, 'pile up': 656515, 'up purchase': 945867, 'uk intensive care': 938478, 'intensive care nurse': 441134, 'care nurse cry': 164082, 'nurse cry at': 577260, 'cry at empty': 219854, 'at empty supermarket': 98539, 'supermarket shelf coronavirus': 822451, 'shelf coronavirus panic': 756967, 'coronavirus panic pile': 206524, 'panic pile up': 638418, 'pile up purchase': 656517, 'cyberscout': 223984, 'schoolchildren': 742000, 'datasecurity': 226560, 'cyberscout consumer': 223985, 'alert five': 41404, 'five tip': 309674, 'protect schoolchildren': 684941, 'schoolchildren from': 742001, 'from cyber': 335088, 'cyber threat': 223946, 'threat during': 893658, 'quarantine cybersecurity': 692122, 'cybersecurity cyberthreats': 223994, 'cyberthreats datasecurity': 224015, 'datasecurity phishing': 226562, 'phishing infosec': 654823, 'infosec cybercrime': 438154, 'cybercrime technews': 223962, 'cyberscout consumer alert': 223986, 'consumer alert five': 196142, 'alert five tip': 41405, 'five tip to': 309676, 'to protect schoolchildren': 912329, 'protect schoolchildren from': 684942, 'schoolchildren from cyber': 742002, 'from cyber threat': 335089, 'cyber threat during': 223947, 'threat during covid': 893659, '19 quarantine cybersecurity': 9906, 'quarantine cybersecurity cyberthreats': 692123, 'cybersecurity cyberthreats datasecurity': 223995, 'cyberthreats datasecurity phishing': 224016, 'datasecurity phishing infosec': 226563, 'phishing infosec cybercrime': 654824, 'infosec cybercrime technews': 438155, 'anubis': 78626, 'little online': 495504, 'quarantine gonna': 692224, 'gonna put': 356597, 'put anubis': 690511, 'anubis in': 78627, 'doing little online': 252513, 'little online shopping': 495505, 'shopping here in': 762885, 'here in china': 393143, 'in china in': 421407, 'china in quarantine': 176730, 'in quarantine gonna': 427181, 'quarantine gonna put': 692225, 'gonna put anubis': 356598, 'put anubis in': 690512, 'anubis in this': 78628, 'bushcraft': 143140, 'outbreak show': 628625, 'show housing': 766969, 'market 19': 515892, 'corona prepper': 204113, 'prepper survival': 670387, 'survival bushcraft': 829021, 'bushcraft rt': 143141, 'rt follow': 726762, 'rental price during': 711264, 'price during coronavirus': 673616, 'coronavirus outbreak show': 206409, 'outbreak show housing': 628626, 'show housing market': 766970, 'housing market 19': 407096, 'market 19 corona': 515894, '19 corona prepper': 6053, 'corona prepper survival': 204114, 'prepper survival bushcraft': 670388, 'survival bushcraft rt': 829022, 'bushcraft rt follow': 143142, 'howtospendyourstimulus': 409565, 'some basic': 782382, 'basic research': 112041, 'perception of': 651234, 'of telehealth': 590645, 'telehealth service': 836760, 'service many': 752578, 'minute survey': 533846, 'survey consider': 828842, 'helping learn': 391378, 'matter to': 520640, 'you howtospendyourstimulus': 1019264, 'we re doing': 972857, 're doing some': 698546, 'doing some basic': 252669, 'some basic research': 782385, 'basic research on': 112042, 'research on consumer': 713797, 'consumer perception of': 198351, 'perception of telehealth': 651238, 'of telehealth service': 590646, 'telehealth service many': 836763, 'service many people': 752580, 'people have taken': 648203, 'taken the time': 833076, 'time to fill': 897986, 'to fill out': 905845, 'out the minute': 627392, 'the minute survey': 860675, 'minute survey consider': 533847, 'survey consider helping': 828843, 'consider helping learn': 195018, 'helping learn more': 391379, 'about what matter': 26891, 'what matter to': 981857, 'matter to you': 520641, 'to you howtospendyourstimulus': 918902, 'extraordinary': 293732, 'backwards': 107615, 'truly extraordinary': 933301, 'extraordinary if': 293737, 'not rewarded': 571375, 'rewarded after': 720805, 'some sort': 783903, 'of compensation': 581618, 'compensation like': 191568, 'like bonus': 489923, 'bonus or': 134388, 'or pay': 616523, 'raise then': 695962, 'going backwards': 355049, 'backwards covid': 107616, 'store the people': 810613, 'who work are': 990030, 'work are truly': 1004836, 'are truly extraordinary': 91216, 'truly extraordinary if': 933302, 'extraordinary if they': 293738, 're not rewarded': 699117, 'not rewarded after': 571376, 'rewarded after all': 720806, 'all this with': 45150, 'this with some': 891464, 'with some sort': 1000866, 'some sort of': 783904, 'sort of compensation': 786120, 'of compensation like': 581619, 'compensation like bonus': 191569, 'like bonus or': 489924, 'bonus or pay': 134389, 'or pay raise': 616526, 'pay raise then': 645071, 'raise then think': 695963, 'then think we': 877665, 're going backwards': 698748, 'going backwards covid': 355050, 'backwards covid 19': 107617, 'businesstravel': 144799, 'corona effect': 203927, 'effect italy': 269026, 'worst compared': 1011159, 'other world': 621226, 'offering an': 595013, 'all person': 43947, 'access high': 28145, 'quality service': 691847, 'service at': 752154, 'at economical': 98518, 'economical price': 267374, 'price businesstravel': 672969, 'businesstravel price': 144800, 'price italy': 674931, 'corona effect italy': 203928, 'effect italy the': 269027, 'italy the worst': 462946, 'the worst compared': 872045, 'worst compared to': 1011160, 'the other world': 862565, 'other world people': 621227, 'world people are': 1009887, 'people are stuck': 647095, 'are stuck in': 90599, 'stuck in their': 814601, 'their home we': 873580, 'are offering an': 88655, 'offering an opportunity': 595014, 'opportunity for all': 613605, 'for all person': 319160, 'all person to': 43949, 'person to access': 652652, 'to access high': 899955, 'access high quality': 28146, 'high quality service': 395320, 'quality service at': 691848, 'service at economical': 752155, 'at economical price': 98519, 'economical price businesstravel': 267375, 'price businesstravel price': 672970, 'businesstravel price italy': 144801, 'upi': 947577, 'to transfer': 917705, 'do payment': 249964, 'payment using': 645773, 'using upi': 950785, 'upi if': 947578, 'not possible': 571052, 'possible then': 665818, 'then wash': 877716, 'after taking': 36264, 'taking cash': 833301, 'due to transfer': 262002, 'to transfer of': 917707, 'transfer of cash': 929520, 'of cash can': 581181, 'cash can spread': 166195, 'can spread so': 159710, 'spread so do': 790798, 'so do payment': 776885, 'do payment using': 249965, 'payment using upi': 645774, 'using upi if': 950786, 'upi if possible': 947579, 'if possible and': 414662, 'possible and if': 665571, 'and if it': 64937, 'if it not': 414325, 'it not possible': 459911, 'not possible then': 571057, 'possible then wash': 665819, 'then wash hand': 877717, 'hand after taking': 374733, 'after taking cash': 36265, 'taking cash or': 833302, 'cash or use': 166295, 'appropriate': 83024, 'trump re': 933780, 're oil': 699171, 'industry never': 436003, 'would see': 1012222, 'so low': 777599, 'low help': 505314, 'consumer but': 196684, 'but hurt': 145982, 'hurt great': 411578, 'great industry': 362752, 'some medium': 783274, 'medium ground': 527122, 'ground very': 366555, 'very harmful': 955217, 'harmful for': 378442, 'for russia': 325274, 'get involved': 347382, 'involved at': 444340, 'at appropriate': 98036, 'appropriate time': 83058, 'pres trump re': 670455, 'trump re oil': 933782, 're oil industry': 699172, 'oil industry never': 596890, 'industry never thought': 436004, 'thought would see': 893329, 'would see price': 1012224, 'see price so': 745605, 'price so low': 676508, 'so low help': 777604, 'low help consumer': 505315, 'help consumer but': 389516, 'consumer but hurt': 196686, 'but hurt great': 145983, 'hurt great industry': 411579, 'great industry and': 362753, 'industry and trying': 435651, 'find some medium': 307229, 'some medium ground': 783275, 'medium ground very': 527123, 'ground very harmful': 366556, 'very harmful for': 955218, 'harmful for russia': 378444, 'for russia to': 325280, 'russia to get': 728589, 'to get involved': 906516, 'get involved at': 347383, 'involved at appropriate': 444341, 'at appropriate time': 98037, 'appropriate time trump': 83059, 'time trump oil': 898141, '24 quarantine': 15677, 'quarantine isolated': 692308, 'isolated stayhome': 455028, 'stayhome 14days': 797928, 'online shopping are': 609035, 'shopping are open': 762064, 'are open 24': 88782, 'open 24 quarantine': 612010, '24 quarantine isolated': 15678, 'quarantine isolated stayhome': 692309, 'isolated stayhome 14days': 455029, 'climate dealing': 182215, 'uncertainty across': 939641, 'country some': 211066, 'reach their': 699991, 'with the business': 1001220, 'the business climate': 850161, 'business climate dealing': 143531, 'climate dealing with': 182216, 'dealing with uncertainty': 229700, 'with uncertainty across': 1001890, 'uncertainty across the': 939642, 'the country some': 852157, 'country some local': 211067, 'some local business': 783209, 'business are finding': 143367, 'way to reach': 970077, 'to reach their': 912809, 'reach their consumer': 699992, 'their consumer base': 872852, 'shop normal': 760488, 'normal give': 567161, 'replenish after': 711636, 'buying make': 150694, 'time easier': 896598, 'everyone stoppanicbuying': 287426, 'shop normal give': 760489, 'normal give the': 567162, 'give the supermarket': 350754, 'supermarket the chance': 823211, 'chance to replenish': 171814, 'to replenish after': 913254, 'replenish after all': 711637, 'after all the': 35334, 'panic buying make': 637804, 'buying make these': 150695, 'make these difficult': 510620, 'difficult time easier': 242283, 'time easier for': 896599, 'easier for everyone': 265144, 'for everyone stoppanicbuying': 321239, 'postponing': 666857, 'bureau today': 142813, 'is postponing': 450967, 'postponing some': 666862, 'some data': 782659, 'data collection': 226178, 'collection from': 186433, 'financial industry': 306456, 'allow company': 45932, 'protection bureau today': 685371, 'bureau today announced': 142814, 'today announced that': 919239, 'it is postponing': 459041, 'is postponing some': 450968, 'postponing some data': 666863, 'some data collection': 782661, 'data collection from': 226180, 'collection from the': 186434, 'from the financial': 337698, 'the financial industry': 855218, 'financial industry to': 306458, 'industry to allow': 436165, 'to allow company': 900327, 'allow company to': 45933, 'company to focus': 191227, 'on consumer who': 600084, 'consumer who have': 199521, 'by the economic': 154314, 'the economic slowdown': 853918, 'economic slowdown in': 267306, 'faves': 300451, 'my faves': 548263, 'faves full': 300452, 'full collection': 340531, 'collection online': 186451, 'online please': 608768, 'retweet soap': 720078, 'soap washyourhands': 779152, 'washyourhands supportsmallbusiness': 967927, 'please consider shopping': 659821, 'consider shopping from': 195102, 'shopping from one': 762757, 'from one of': 336685, 'of my faves': 586764, 'my faves full': 548264, 'faves full collection': 300453, 'full collection online': 340532, 'collection online please': 186452, 'online please retweet': 608770, 'please retweet soap': 660413, 'retweet soap washyourhands': 720079, 'soap washyourhands supportsmallbusiness': 779153, 'lota': 504421, 'save toilet': 737690, 'paper how': 640294, 'use lota': 949351, 'lota complete': 504422, 'complete guide': 192098, 'guide full': 368327, 'full link': 340662, 'link toiletpaper': 493953, 'toiletpaper toiletpaperchallenge': 922643, 'toiletpaperchallenge toilet': 922978, 'save toilet paper': 737691, 'toilet paper how': 921310, 'paper how to': 640299, 'how to use': 409105, 'to use lota': 918044, 'use lota complete': 949352, 'lota complete guide': 504423, 'complete guide full': 192099, 'guide full link': 368328, 'full link toiletpaper': 340663, 'link toiletpaper toiletpaperchallenge': 493954, 'toiletpaper toiletpaperchallenge toilet': 922645, 'killer': 474624, 'stealing someone': 799254, 'someone share': 784647, 'you unnecessarily': 1021976, 'unnecessarily store': 942877, 'poor they': 664305, 'they buy': 881586, 'food daily': 314077, 'daily if': 224634, 'empty how': 274914, 'how would': 409259, 'would they': 1012326, 'they survive': 883512, 'survive do': 829149, 'be killer': 115605, 'killer please': 474640, 'please responsible': 660403, 'pakistan epidemic': 634447, 'stealing someone share': 799255, 'someone share if': 784648, 'if you unnecessarily': 415547, 'you unnecessarily store': 1021977, 'unnecessarily store food': 942878, 'store food in': 807769, 'your home think': 1024380, 'home think about': 402281, 'the poor they': 863992, 'poor they buy': 664306, 'they buy food': 881589, 'buy food daily': 148639, 'food daily if': 314078, 'daily if the': 224635, 'the market are': 860087, 'market are empty': 516018, 'are empty how': 86151, 'empty how would': 274916, 'how would they': 409263, 'would they survive': 1012328, 'they survive do': 883513, 'survive do not': 829150, 'not be killer': 568408, 'be killer please': 115606, 'killer please responsible': 474641, 'please responsible citizen': 660404, 'responsible citizen of': 716015, 'of pakistan epidemic': 587673, 'pinto': 656859, 'with pinto': 1000219, 'pinto bean': 656860, 'bean and': 118287, 'and lettuce': 66119, 'lettuce hoarder': 487455, 'know what can': 476943, 'can do with': 158127, 'do with pinto': 250566, 'with pinto bean': 1000220, 'pinto bean and': 656861, 'bean and lettuce': 118288, 'and lettuce hoarder': 66120, 'to real': 912845, 'predict 20': 669548, 'job cannot': 465723, 'over savetheeconomy': 630601, 'do to real': 250400, 'to real estate': 912846, 'estate price predict': 282182, 'price predict 20': 675974, 'predict 20 30': 669549, '20 30 drop': 12899, 'in price and': 426949, 'price and if': 672437, 'your job cannot': 1024526, 'job cannot pay': 465725, 'to sell it': 914155, 'sell it over': 748771, 'it over savetheeconomy': 460210, 'reckoning': 704579, 'ahmed': 39248, 'mukhaini': 545613, 'our gulf': 623328, 'gulf insight': 368642, 'insight no': 439598, 'out covid': 625916, 'price time': 676950, 'of reckoning': 588832, 'reckoning for': 704582, 'for oman': 324059, 'oman by': 598826, 'by ahmed': 151777, 'ahmed ali': 39251, 'ali al': 41691, 'al mukhaini': 40593, 'our gulf insight': 623329, 'gulf insight no': 368643, 'insight no 19': 439599, 'no 19 is': 563560, '19 is out': 8021, 'is out covid': 450658, 'out covid 19': 625917, '19 and plummeting': 5086, 'oil price time': 597292, 'price time of': 676951, 'time of reckoning': 897357, 'of reckoning for': 588833, 'reckoning for oman': 704583, 'for oman by': 324060, 'oman by ahmed': 598827, 'by ahmed ali': 151778, 'ahmed ali al': 39252, 'ali al mukhaini': 41692, 'downturn oil': 257806, 'plummet due': 661270, 'arabia is bracing': 83897, 'an economic downturn': 55580, 'economic downturn oil': 267078, 'downturn oil price': 257807, 'oil price plummet': 597214, 'price plummet due': 675901, 'plummet due to': 661271, 'shalelaw': 754511, 'hotlink': 405280, 'deepens': 231949, 'widening': 991799, 'shalelaw hotlink': 754512, 'hotlink oil': 405283, 'oil collapse': 596676, 'collapse deepens': 185989, 'deepens on': 231950, 'on widening': 605320, 'widening virus': 991807, 'virus measure': 958499, 'measure oilandgas': 525273, 'oilandgas price': 597555, 'price market': 675171, 'market demand': 516279, 'demand trade': 236414, 'trade impact': 928506, 'shalelaw hotlink oil': 754513, 'hotlink oil collapse': 405284, 'oil collapse deepens': 596678, 'collapse deepens on': 185990, 'deepens on widening': 231951, 'on widening virus': 605321, 'widening virus measure': 991808, 'virus measure oilandgas': 958500, 'measure oilandgas price': 525274, 'oilandgas price market': 597556, 'price market demand': 675172, 'market demand trade': 516282, 'demand trade impact': 236415, 'walmart after': 965268, 'after chicago': 35462, 'employee began': 273675, 'suing walmart after': 817740, 'walmart after chicago': 965269, 'after chicago area': 35463, 'after several employee': 36176, 'several employee began': 753836, 'employee began showing': 273676, 'purrell': 690192, 'overhyping': 631258, 'manner': 513291, 'if purrell': 414704, 'purrell is': 690193, 'say indeed': 738798, 'indeed is': 433994, 'is challenge': 446451, 'challenge but': 171416, 'but overhyping': 146737, 'overhyping it': 631259, 'in misleading': 425369, 'misleading manner': 534102, 'manner would': 513311, 'do bad': 249110, 'bad than': 108024, 'than good': 840703, 'the myth': 861176, 'myth in': 551050, 'thread are': 893520, 'really in': 702334, 'air since': 39788, 'case diagnosed': 165714, 'don worry if': 254082, 'worry if purrell': 1010728, 'if purrell is': 414705, 'purrell is sold': 690195, 'sold out at': 781725, 'out at your': 625754, 'your supermarket say': 1026059, 'supermarket say indeed': 822326, 'say indeed is': 738799, 'indeed is challenge': 433995, 'is challenge but': 446452, 'challenge but overhyping': 171418, 'but overhyping it': 146738, 'overhyping it in': 631260, 'it in misleading': 458736, 'in misleading manner': 425370, 'misleading manner would': 534103, 'manner would do': 513312, 'would do bad': 1011764, 'do bad than': 249111, 'bad than good': 108025, 'than good the': 840704, 'good the myth': 357829, 'the myth in': 861178, 'myth in the': 551051, 'in the thread': 429607, 'the thread are': 869506, 'thread are really': 893521, 'are really in': 89479, 'really in air': 702335, 'in air since': 420124, 'air since the': 39789, 'since the first': 770881, 'first case diagnosed': 308560, 'treatment fda': 931068, 'fda cornavirusoutbreak': 300847, 'and treatment fda': 74437, 'treatment fda cornavirusoutbreak': 931069, 'anxiety inducing': 78728, 'inducing event': 435496, 'is now an': 450259, 'now an anxiety': 574016, 'an anxiety inducing': 55342, 'anxiety inducing event': 78729, 'priti': 678768, 'roadblock': 724550, 'protectthenhs': 685850, 'priti patel': 678769, 'patel end': 643967, 'end police': 275939, 'police threat': 663247, 'of tougher': 592343, 'tougher lockdown': 926892, 'lockdown measure': 499648, 'measure such': 525350, 'such roadblock': 816727, 'roadblock and': 724553, 'trolley check': 932389, 'check stayhomesavelives': 174628, 'stayhomesavelives protectthenhs': 798432, 'protectthenhs inthistogether': 685851, 'inthistogether 19': 442310, 'priti patel end': 678771, 'patel end police': 643968, 'end police threat': 275940, 'police threat of': 663248, 'threat of tougher': 893704, 'of tougher lockdown': 592344, 'tougher lockdown measure': 926893, 'lockdown measure such': 499655, 'measure such roadblock': 525351, 'such roadblock and': 816728, 'roadblock and supermarket': 724554, 'and supermarket trolley': 72747, 'supermarket trolley check': 823562, 'trolley check stayhomesavelives': 932390, 'check stayhomesavelives protectthenhs': 174629, 'stayhomesavelives protectthenhs inthistogether': 798433, 'protectthenhs inthistogether 19': 685852, 'trivial': 932321, 'penultimate': 646710, 'whereupon': 985454, 'cordonedbycorona': 203512, 'few said': 304051, 'time thought': 897927, 'wa we': 963670, 'on living': 601885, 'living our': 496436, 'our trivial': 625194, 'trivial life': 932322, 'life until': 489161, 'the penultimate': 863446, 'penultimate moment': 646711, 'our demise': 622735, 'demise whereupon': 236661, 'whereupon we': 985455, 'realize we': 701877, 'we spent': 973351, 'spent our': 789159, 'store buying': 806825, 'paper cordonedbycorona': 640048, 'few said it': 304052, 'wa the end': 963445, 'end time thought': 276002, 'time thought even': 897928, 'thought even if': 893035, 'even if it': 284207, 'it wa we': 462219, 'wa we all': 963671, 'all go on': 42945, 'go on living': 353886, 'on living our': 601888, 'living our trivial': 496438, 'our trivial life': 625195, 'trivial life until': 932323, 'life until the': 489162, 'until the penultimate': 943866, 'the penultimate moment': 863447, 'penultimate moment of': 646712, 'moment of our': 536017, 'of our demise': 587450, 'our demise whereupon': 622737, 'demise whereupon we': 236662, 'whereupon we realize': 985456, 'we realize we': 973016, 'realize we spent': 701880, 'we spent our': 973354, 'spent our last': 789160, 'our last day': 623644, 'last day at': 480178, 'grocery store buying': 365262, 'store buying toilet': 806826, 'toilet paper cordonedbycorona': 921239, 'staring': 794141, 'nocturne': 566111, 'shinmegamitensei': 758636, 'store staring': 810340, 'staring at': 794144, 'paper hoarder': 640272, 'toiletpaper nocturne': 922262, 'nocturne shinmegamitensei': 566112, 'grocery store staring': 365796, 'store staring at': 810341, 'staring at the': 794148, 'at the toilet': 101128, 'toilet paper hoarder': 921306, 'paper hoarder toiletpaper': 640278, 'hoarder toiletpaper nocturne': 399133, 'toiletpaper nocturne shinmegamitensei': 922263, 'lifting': 489498, 'supermarket atm': 819258, 'atm queue': 101952, 'queue following': 693918, 'the lifting': 859352, 'lifting of': 489501, 'of curfew': 582252, 'curfew covid': 220872, '19 sri': 10770, 'sri via': 791605, 'via sl': 956242, 'supermarket atm queue': 819259, 'atm queue following': 101953, 'queue following the': 693919, 'following the lifting': 312891, 'the lifting of': 859353, 'lifting of curfew': 489502, 'of curfew covid': 582253, 'curfew covid 19': 220873, 'covid 19 sri': 213850, '19 sri via': 10771, 'sri via sl': 791606, 'just stopped': 469915, 'stopped by': 805690, 'normal store': 567342, 'saw ve': 738315, 'photo but': 655137, 'yourself it': 1026651, 'it disappointing': 457563, 'disappointing lot': 244140, 'lot ha': 504055, 'just stopped by': 469916, 'stopped by the': 805692, 'supermarket for normal': 820407, 'for normal store': 323917, 'normal store shocked': 567344, 'shocked by what': 759563, 'by what saw': 154721, 'what saw ve': 982122, 'saw ve seen': 738316, 've seen photo': 953544, 'seen photo but': 747194, 'photo but when': 655138, 'but when you': 147830, 'see them for': 745913, 'them for yourself': 875732, 'for yourself it': 328234, 'yourself it disappointing': 1026652, 'it disappointing lot': 457564, 'disappointing lot ha': 244142, 'lot ha changed': 504056, 'ha changed in': 370126, 'changed in week': 172497, 'paidsickleave': 634194, 'for sick': 325613, 'leave kroger': 484854, 'state their': 795994, 'incredible job': 433847, 'job supporting': 466175, 'this health': 887885, 'least kroger': 484528, 'kroger can': 477724, 'is make': 449531, 'have paidsickleave': 381873, 'paidsickleave please': 634197, 'request for sick': 713164, 'for sick leave': 325615, 'sick leave kroger': 768499, 'leave kroger is': 484855, 'kroger is the': 477749, 'united state their': 942246, 'state their worker': 795995, 'their worker do': 875213, 'worker do an': 1006792, 'do an incredible': 249058, 'an incredible job': 56258, 'incredible job supporting': 433848, 'job supporting our': 466176, 'supporting our community': 827168, 'our community despite': 622456, 'community despite this': 189812, 'despite this health': 238915, 'this health crisis': 887886, 'crisis the least': 218179, 'the least kroger': 859252, 'least kroger can': 484529, 'kroger can do': 477725, 'do is make': 249449, 'is make sure': 449532, 'sure their employee': 827720, 'their employee have': 873147, 'employee have paidsickleave': 273923, 'have paidsickleave please': 381874, 'paidsickleave please sign': 634198, 'is trump': 453381, 'trump talking': 933884, 'now press': 575586, 'conference on': 193747, 'about gas': 25292, 'are fucking': 86716, 'fucking dying': 339855, 'hell is trump': 389028, 'is trump talking': 453385, 'trump talking about': 933885, 'talking about right': 833983, 'about right now': 26104, 'right now press': 722121, 'now press conference': 575587, 'press conference on': 671031, 'conference on coronavirus': 193748, 'on coronavirus and': 600119, 'coronavirus and he': 205492, 'and he talking': 64328, 'talking about gas': 833965, 'about gas price': 25293, 'gas price people': 344008, 'price people are': 675846, 'people are fucking': 646984, 'are fucking dying': 86717, 'fucking dying corona': 339856, 'dying corona virus': 263795, 'from ceo': 334815, 'ceo among': 169636, 'among their': 53080, 'their many': 873911, 'change they': 172320, 'providing back': 686948, 'up childcare': 944598, 'employee every': 273825, 'can should': 159611, 'should step': 766499, 'way another': 969465, 'support target': 826851, 'just got letter': 468862, 'got letter from': 358668, 'letter from ceo': 487315, 'from ceo among': 334816, 'ceo among their': 169637, 'among their many': 53081, 'their many change': 873912, 'many change they': 513889, 'change they are': 172321, 'are providing back': 89316, 'providing back up': 686949, 'back up childcare': 107427, 'up childcare for': 944599, 'childcare for all': 176293, 'all of their': 43716, 'their employee every': 873143, 'employee every business': 273826, 'every business that': 285707, 'business that can': 144474, 'that can should': 843122, 'can should step': 159612, 'should step up': 766500, 'up in this': 945188, 'this way another': 891128, 'way another reason': 969466, 'reason to support': 703038, 'to support target': 915974, 'support target consumer': 826852, 'supermarket soo': 822780, 'soo bare': 785565, 'bare apparently': 110863, 'at door': 98479, 'work supermarket soo': 1005783, 'supermarket soo bare': 822781, 'soo bare apparently': 785566, 'bare apparently it': 110864, 'apparently it ha': 81955, 'ha been hell': 369824, 'hell for staff': 389008, 'for staff during': 325850, 'staff during day': 792396, 'during day queue': 262589, 'queue at door': 693885, 'at door at': 98480, 'escalating': 280277, 'powerless': 667827, 'heed': 388750, 'showing the': 767520, 'what socialism': 982210, 'socialism is': 780960, 'like mass': 490726, 'panic escalating': 638072, 'escalating price': 280282, 'price loss': 675102, 'work loss': 1005448, 'of earnings': 582915, 'earnings falling': 264903, 'an absolutely': 55044, 'absolutely powerless': 27431, 'powerless world': 667830, 'no freedom': 564299, 'freedom heed': 332366, 'heed the': 388755, 'the warning': 871091, 'warning this': 967219, '19 is showing': 8048, 'is showing the': 451899, 'showing the world': 767529, 'the world what': 872003, 'world what socialism': 1010159, 'what socialism is': 982211, 'socialism is like': 780961, 'is like mass': 449323, 'like mass panic': 490727, 'mass panic escalating': 519826, 'panic escalating price': 638073, 'escalating price loss': 280283, 'price loss of': 675103, 'loss of work': 503758, 'of work loss': 593256, 'work loss of': 1005449, 'loss of earnings': 503741, 'of earnings falling': 582916, 'earnings falling price': 264904, 'falling price no': 297329, 'price no food': 675343, 'no food an': 564248, 'food an absolutely': 313157, 'an absolutely powerless': 55046, 'absolutely powerless world': 27433, 'powerless world with': 667831, 'world with no': 1010199, 'with no freedom': 999754, 'no freedom heed': 564300, 'freedom heed the': 332367, 'heed the warning': 388756, 'the warning this': 871095, 'warning this is': 967220, 'is just another': 449118, 'another day in': 77567, 'frame': 330937, 'conveying': 202583, 'oye': 632687, 'ekiti': 270425, 'ibadan': 412566, 'avert': 104923, 'inadan': 431193, 'first frame': 308685, 'frame is': 330940, 'is picture': 450871, 'of truck': 592463, 'truck conveying': 932752, 'conveying student': 202584, 'student from': 814690, 'from oye': 336827, 'oye ekiti': 632688, 'ekiti to': 270431, 'to ibadan': 908073, 'ibadan and': 412567, 'and lagos': 65933, 'lagos respectively': 478945, 'respectively for': 715168, 'to avert': 900860, 'avert covid': 104924, 'second frame': 743721, 'the hiked': 857369, 'of bus': 580938, 'to inadan': 908236, 'inadan which': 431194, 'which on': 986190, 'on norm': 602427, 'norm is': 567047, 'is 1500': 445162, '1500 lot': 3940, 'of student': 590320, 'student are': 814646, 'are stranded': 90547, 'in oye': 426400, 'ekiti and': 270426, 'the first frame': 855311, 'first frame is': 308686, 'frame is picture': 330941, 'is picture of': 450872, 'picture of truck': 656174, 'of truck conveying': 592465, 'truck conveying student': 932753, 'conveying student from': 202585, 'student from oye': 814693, 'from oye ekiti': 336828, 'oye ekiti to': 632690, 'ekiti to ibadan': 270432, 'to ibadan and': 908074, 'ibadan and lagos': 412568, 'and lagos respectively': 65934, 'lagos respectively for': 478946, 'respectively for 100': 715169, 'for 100 and': 318625, '100 and we': 1836, 'we are trying': 970745, 'trying to avert': 934768, 'to avert covid': 900861, 'avert covid 19': 104925, '19 the second': 11247, 'the second frame': 866579, 'second frame is': 743722, 'frame is the': 330942, 'is the hiked': 452820, 'the hiked price': 857370, 'price of bus': 675417, 'of bus to': 580940, 'bus to inadan': 143100, 'to inadan which': 908237, 'inadan which on': 431195, 'which on norm': 986191, 'on norm is': 602428, 'norm is 1500': 567048, 'is 1500 lot': 445163, '1500 lot of': 3941, 'lot of student': 504291, 'of student are': 590322, 'student are stranded': 814648, 'are stranded in': 90550, 'stranded in oye': 812358, 'in oye ekiti': 426401, 'oye ekiti and': 632689, 'look right': 502584, 'right dick': 721868, 'dick if': 240465, 'to eventually': 905296, 'my 3m': 547151, '3m diy': 18317, 'mask below': 518477, 'and nitrile': 67595, 'glove ll': 352757, 'be anxious': 113641, 'anxious enough': 78848, 'enough without': 277771, 'what look': 981833, 'like too': 491653, 'gonna look right': 356580, 'look right dick': 502585, 'right dick if': 721869, 'dick if have': 240466, 'have to eventually': 383204, 'to eventually go': 905297, 'eventually go outside': 285156, 'go outside for': 354011, 'outside for the': 629430, 'in month and': 425412, 'month and visit': 537587, 'supermarket in my': 820938, 'in my 3m': 425529, 'my 3m diy': 547152, '3m diy mask': 18318, 'diy mask below': 248753, 'mask below and': 518478, 'below and nitrile': 126591, 'and nitrile glove': 67596, 'nitrile glove ll': 563393, 'glove ll be': 352758, 'll be anxious': 496570, 'be anxious enough': 113642, 'anxious enough without': 78849, 'enough without having': 277772, 'having to worry': 384377, 'about what look': 26890, 'what look like': 981834, 'look like too': 502520, '50am': 20142, 'cheer buddy': 175099, 'buddy just': 141739, 'had lunch': 373272, 'at 50am': 97688, '50am working': 20143, 'shift at': 758243, 'supermarket stacking': 822806, 'stacking shelf': 792038, 'shelf needed': 757326, 'bit during': 131556, 're looking': 699009, 'after yourself': 36621, 'yourself keepsafe': 1026654, 'keepsafe mate': 472670, 'cheer buddy just': 175100, 'buddy just had': 141740, 'just had lunch': 468901, 'had lunch at': 373273, 'lunch at 50am': 506710, 'at 50am working': 97689, '50am working the': 20144, 'working the night': 1008940, 'the night shift': 861808, 'night shift at': 563069, 'shift at supermarket': 758248, 'at supermarket stacking': 100771, 'supermarket stacking shelf': 822807, 'stacking shelf needed': 792042, 'shelf needed to': 757327, 'needed to do': 556533, 'do my bit': 249625, 'my bit during': 547464, 'bit during the': 131558, 'during the hope': 263139, 'the hope you': 857498, 'you re looking': 1020670, 're looking after': 699010, 'looking after yourself': 502788, 'after yourself keepsafe': 36622, 'yourself keepsafe mate': 1026655, 'savagexbunni': 737446, 'veganrecipes': 953897, 'cookinginquarantine': 202954, 'know item': 476552, 'dairy aisle': 224945, 'are scarce': 89840, 'scarce these': 740811, 'for cooking': 320347, 'but try': 147629, 'try give': 934482, 'give some': 350706, 'some vegan': 784157, 'vegan recipe': 953880, 'recipe try': 704511, 'try find': 934476, 'find them': 307310, 'my ig': 548819, 'ig savagexbunni': 415670, 'savagexbunni or': 737447, 'or veganrecipes': 617648, 'veganrecipes worldwide': 953898, 'worldwide coronalockdown': 1010336, 'coronalockdown quarantinelife': 205041, 'quarantinelife supermarket': 693027, 'supermarket cookinginquarantine': 819783, 'know item in': 476554, 'the dairy aisle': 852790, 'dairy aisle are': 224946, 'aisle are scarce': 40210, 'are scarce these': 89843, 'scarce these day': 740812, 'these day for': 879874, 'day for cooking': 227620, 'for cooking at': 320348, 'at home but': 98952, 'home but try': 400852, 'but try give': 147630, 'try give some': 934483, 'give some vegan': 350711, 'some vegan recipe': 784159, 'vegan recipe try': 953881, 'recipe try find': 704512, 'try find them': 934477, 'find them on': 307314, 'them on my': 876092, 'on my ig': 602289, 'my ig savagexbunni': 548820, 'ig savagexbunni or': 415671, 'savagexbunni or veganrecipes': 737448, 'or veganrecipes worldwide': 617649, 'veganrecipes worldwide coronalockdown': 953899, 'worldwide coronalockdown quarantinelife': 1010337, 'coronalockdown quarantinelife supermarket': 205042, 'quarantinelife supermarket cookinginquarantine': 693028, 'letter being': 487288, 'today regarding': 920105, 'supermarket information': 821031, 'the previous': 864314, 'previous tweet': 672008, 'letter being sent': 487289, 'being sent home': 125757, 'sent home today': 750760, 'home today regarding': 402355, 'today regarding covid': 920106, '19 the social': 11249, 'the social supermarket': 867421, 'social supermarket information': 779980, 'supermarket information can': 821032, 'be found in': 114940, 'in the previous': 429470, 'the previous tweet': 864320, 'garri': 343713, 'effurun': 269682, 'regulating': 708028, 'paint rubber': 634301, 'rubber of': 726950, 'of garri': 584042, 'garri wa': 343716, 'for 500': 318870, '500 yesterday': 20073, 'yesterday somewhere': 1015865, 'somewhere at': 785288, 'at effurun': 98522, 'effurun regulating': 269683, 'regulating price': 708029, 'item should': 463642, 'taken seriously': 833058, 'seriously so': 751721, 'day hunger': 227774, 'paint rubber of': 634302, 'rubber of garri': 726951, 'of garri wa': 584044, 'garri wa sold': 343717, 'wa sold for': 963271, 'sold for 500': 781666, 'for 500 yesterday': 318872, '500 yesterday somewhere': 20074, 'yesterday somewhere at': 1015866, 'somewhere at effurun': 785289, 'at effurun regulating': 98523, 'effurun regulating price': 269684, 'regulating price of': 708030, 'food item should': 315230, 'item should be': 463643, 'be taken seriously': 117504, 'taken seriously so': 833061, 'seriously so that': 751724, 'so that at': 778361, 'the day hunger': 852891, 'fake test': 296716, 'test fake': 838989, 'treatment price': 931128, 'gouging people': 359424, 'check there': 174667, 'about also': 24783, 'life they': 489113, 'more isolated': 539625, 'and susceptible': 72902, 'fake test fake': 296719, 'test fake treatment': 838991, 'fake treatment price': 296728, 'treatment price gouging': 931129, 'price gouging people': 674312, 'gouging people after': 359425, 'people after the': 646784, 'after the stimulus': 36359, 'the stimulus check': 867895, 'stimulus check there': 801526, 'check there are': 174668, 'lot of consumer': 504162, 'of consumer concern': 581724, 'consumer concern about': 196865, 'concern about covid': 192890, '19 that you': 11164, 'know about also': 476207, 'about also share': 24784, 'also share this': 48870, 'share this with': 755297, 'with the elderly': 1001281, 'elderly in your': 270718, 'your life they': 1024647, 'life they are': 489114, 'are more isolated': 88115, 'more isolated and': 539626, 'isolated and susceptible': 454973, 'honge': 403214, 'kamiyab': 470748, 'contestalert': 200883, 'hum honge': 410384, 'honge kamiyab': 403215, 'kamiyab india': 470749, 'india wash': 434676, 'frequently with': 332889, 'alcohol sanitizer': 41090, 'sanitizer always': 734352, 'use face': 949202, 'hand glove': 374991, 'glove contestalert': 352642, 'contestalert contest': 200884, 'contest join': 200874, 'hum honge kamiyab': 410385, 'honge kamiyab india': 403216, 'kamiyab india wash': 470750, 'india wash hand': 434677, 'wash hand frequently': 967484, 'hand frequently with': 374962, 'frequently with alcohol': 332890, 'with alcohol sanitizer': 997137, 'alcohol sanitizer always': 41092, 'sanitizer always use': 734353, 'always use face': 49779, 'use face mask': 949203, 'mask hand glove': 518775, 'hand glove contestalert': 374993, 'glove contestalert contest': 352643, 'contestalert contest join': 200886, 'propose': 684492, 'senate democrat': 749696, 'democrat propose': 236737, 'propose 25': 684493, '00 hazard': 243, 'pay plan': 645044, 'the proposal': 864692, 'proposal would': 684488, 'give doctor': 350459, 'clerk up': 181807, 'pay part': 645038, 'the phase': 863668, 'phase four': 654607, 'four relief': 330662, 'senate democrat propose': 749698, 'democrat propose 25': 236738, 'propose 25 00': 684494, '25 00 hazard': 15791, '00 hazard pay': 244, 'hazard pay plan': 384571, 'pay plan for': 645045, 'plan for essential': 658119, 'for essential worker': 321129, 'essential worker the': 281857, 'worker the proposal': 1007935, 'the proposal would': 864695, 'proposal would give': 684489, 'would give doctor': 1011838, 'give doctor nurse': 350460, 'doctor nurse other': 251029, 'nurse other essential': 577445, 'essential worker like': 281840, 'worker like grocery': 1007316, 'store clerk up': 807035, 'clerk up to': 181808, 'up to 25': 946329, 'to 25 00': 899633, '25 00 in': 15792, '00 in hazard': 264, 'hazard pay part': 384570, 'pay part of': 645039, 'of the phase': 591332, 'the phase four': 863669, 'phase four relief': 654609, 'four relief bill': 330663, 'supermarketshuffle': 824232, 'strictlycomeshopping': 813707, 'finally finished': 305990, 'finished doctor': 307896, 'doctor order': 251062, 'order 14': 617979, 'of quarantinelife': 588672, 'quarantinelife so': 693008, 'walk popped': 964865, 'popped into': 664501, 'grocery learned': 364683, 'learned the': 484150, 'the supermarketshuffle': 868927, 'supermarketshuffle strictlycomeshopping': 824233, 'strictlycomeshopping and': 813708, 'and straight': 72530, 'home london': 401551, 'finally finished doctor': 305991, 'finished doctor order': 307897, 'doctor order 14': 251063, 'order 14 day': 617980, '14 day of': 3454, 'day of quarantinelife': 228094, 'of quarantinelife so': 588673, 'quarantinelife so today': 693009, 'so today went': 778554, 'went for walk': 979007, 'for walk popped': 327626, 'walk popped into': 964866, 'popped into the': 664505, 'supermarket for some': 820418, 'some grocery learned': 783003, 'grocery learned the': 364684, 'learned the supermarketshuffle': 484151, 'the supermarketshuffle strictlycomeshopping': 868928, 'supermarketshuffle strictlycomeshopping and': 824234, 'strictlycomeshopping and straight': 813709, 'and straight back': 72531, 'straight back home': 812206, 'back home london': 107062, 'home london uk': 401552, 'nauseating': 553027, 'nauseating this': 553028, 'government fault': 360079, 'fault if': 300404, 'government clearly': 359984, 'clearly said': 181559, 'close then': 182858, 'buying instead': 150556, 'instead they': 440368, 'afraid and': 34967, 'then behave': 877026, 'like selfish': 491153, 'selfish animal': 747999, 'animal panicbuy': 76640, 'nauseating this is': 553029, 'the government fault': 856536, 'government fault if': 360080, 'fault if government': 300405, 'if government clearly': 414172, 'government clearly said': 359985, 'clearly said you': 181560, 'said you will': 731613, 'buy food if': 148653, 'food if we': 314896, 'to close then': 902903, 'close then people': 182859, 'then people would': 877416, 'people would stop': 650547, 'panic buying instead': 637777, 'buying instead they': 150557, 'instead they are': 440369, 'they are afraid': 881192, 'are afraid and': 84261, 'afraid and then': 34970, 'and then behave': 73746, 'then behave like': 877027, 'behave like selfish': 123786, 'like selfish animal': 491154, 'selfish animal panicbuy': 748000, 'pandemicprofiteering': 637130, 'medium focus': 527103, 'on individual': 601558, 'individual taking': 435261, 'sanitizers while': 736446, 'while bank': 986637, 'pressure healthcare': 671170, 'healthcare firm': 387110, 'critical drug': 218542, 'drug supply': 261101, 'supply profit': 825739, 'are fine': 86579, 'fine but': 307610, 'not insane': 570149, 'insane pandemicprofiteering': 439056, 'medium focus on': 527104, 'focus on individual': 311880, 'on individual taking': 601561, 'individual taking advantage': 435262, 'advantage of market': 33013, 'of market for': 586230, 'market for hand': 516412, 'for hand sanitizers': 322109, 'hand sanitizers while': 375732, 'sanitizers while bank': 736447, 'while bank pressure': 986638, 'bank pressure healthcare': 110111, 'pressure healthcare firm': 671172, 'healthcare firm to': 387112, 'price on critical': 675663, 'on critical drug': 600167, 'critical drug supply': 218547, 'drug supply profit': 261103, 'supply profit are': 825740, 'profit are fine': 682664, 'are fine but': 86580, 'fine but not': 307613, 'but not insane': 146540, 'not insane pandemicprofiteering': 570150, 'improved': 419562, 'underwriting': 941001, 'post insurance': 666173, 'insurance world': 440837, 'see improved': 745292, 'improved experience': 419566, 'experience online': 291447, 'online policy': 608771, 'policy shopping': 663494, 'shopping product': 763684, 'product mix': 681411, 'mix and': 534584, 'and underwriting': 74646, 'the post insurance': 864092, 'post insurance world': 666174, 'insurance world will': 440838, 'world will see': 1010192, 'will see improved': 994777, 'see improved experience': 745293, 'improved experience online': 419567, 'experience online policy': 291449, 'online policy shopping': 608772, 'policy shopping product': 663495, 'shopping product mix': 763686, 'product mix and': 681412, 'mix and underwriting': 534586, 'strongly believe': 814221, 'it lot': 459464, 'lot lot': 504094, 'lot le': 504078, 'being published': 125600, 'published right': 688690, 'now stay': 575889, 'country back': 210497, 'back open': 107211, 'panic nh': 638341, 'nh virus': 562158, 'uk school': 938693, 'school food': 741792, 'food money': 315471, 'money struggling': 537041, 'struggling pmqs': 814481, 'pmqs government': 662078, 'government pm': 360472, 'strongly believe it': 814222, 'believe it lot': 126302, 'it lot lot': 459466, 'lot lot lot': 504096, 'lot lot le': 504095, 'lot le than': 504081, 'le than is': 483178, 'than is being': 840791, 'is being published': 446099, 'being published right': 125602, 'published right now': 688691, 'right now stay': 722141, 'now stay safe': 575892, 'safe and let': 729459, 'and let get': 66105, 'let get this': 486738, 'get this country': 348404, 'this country back': 886942, 'country back open': 210498, 'back open and': 107212, 'open and not': 612065, 'and not panic': 67762, 'not panic nh': 570921, 'panic nh virus': 638342, 'nh virus uk': 562159, 'virus uk school': 958957, 'uk school food': 938694, 'school food money': 741793, 'food money struggling': 315472, 'money struggling pmqs': 537043, 'struggling pmqs government': 814482, 'pmqs government pm': 662079, 'hauled': 379009, 'throughout this': 894991, 'thing am': 884111, 'am most': 50227, 'most impressed': 542431, 'no american': 563607, 'american ha': 52013, 'ha hauled': 370834, 'hauled off': 379010, 'and shot': 71584, 'shot someone': 765443, 'someone over': 784597, 'last tin': 480580, 'tin of': 898546, 'of baked': 580519, 'baked bin': 108763, 'shelf this': 757683, 'situation will': 772585, 'last sadly': 480478, 'throughout this pandemic': 894995, 'this pandemic the': 889435, 'pandemic the thing': 636707, 'the thing am': 869449, 'thing am most': 884112, 'am most impressed': 50228, 'most impressed with': 542432, 'impressed with is': 419456, 'with is that': 999050, 'is that so': 452690, 'that so far': 846358, 'far no american': 298864, 'no american ha': 563609, 'american ha hauled': 52014, 'ha hauled off': 370835, 'hauled off and': 379011, 'off and shot': 593646, 'and shot someone': 71586, 'shot someone over': 765444, 'someone over the': 784598, 'the last tin': 859050, 'last tin of': 480581, 'tin of baked': 898549, 'of baked bin': 580521, 'baked bin on': 108764, 'bin on supermarket': 131029, 'supermarket shelf this': 822546, 'shelf this situation': 757686, 'this situation will': 890197, 'situation will not': 772589, 'not last sadly': 570329, 'distribute the': 248012, 'free kit': 331939, 'kit which': 475667, 'include face': 431556, 'and thermometer': 73871, 'it contract': 457313, 'contract worker': 201724, 'will distribute the': 993217, 'distribute the free': 248014, 'the free kit': 855767, 'free kit which': 331940, 'kit which include': 475668, 'which include face': 985954, 'include face mask': 431557, 'sanitizer and thermometer': 734442, 'and thermometer to': 73874, 'thermometer to it': 879549, 'to it contract': 908574, 'it contract worker': 457314, 'contract worker in': 201725, 'disadvantage': 243993, 'ha european': 370517, 'country at': 210492, 'at disadvantage': 98445, 'disadvantage but': 243994, 'is begging': 446044, 'begging spain': 123486, 'spain for': 787294, 'bragging about how': 137561, 'about how he': 25442, 'how he ha': 407979, 'he ha european': 385022, 'ha european country': 370518, 'european country at': 283552, 'country at disadvantage': 210493, 'at disadvantage but': 98446, 'disadvantage but in': 243995, 'but in reality': 146034, 'in reality is': 427300, 'reality is begging': 701750, 'is begging spain': 446046, 'begging spain for': 123487, 'spain for hand': 787295, 'disparity': 246089, 'ukgoverment there': 938960, 'is disparity': 447232, 'disparity between': 246090, 'between what': 128957, 'ask of': 95597, 'public we': 688459, 'from ppl': 336962, 'ppl and': 668158, 'hoarder are': 398984, 'are clearing': 85311, 'clearing shelf': 181469, 'shelf before': 756883, 'chance we': 171826, 'won die': 1003782, 'll die': 496700, 'ukgoverment there is': 938961, 'there is disparity': 878549, 'is disparity between': 447233, 'disparity between what': 246092, 'between what you': 128959, 'what you ask': 982663, 'you ask of': 1017318, 'ask of the': 95598, 'of the self': 591448, 'the self isolating': 866654, 'self isolating and': 747711, 'isolating and the': 455060, 'the public we': 864867, 'public we can': 688460, 'can get online': 158437, 'slot to stay': 774281, 'away from ppl': 105904, 'from ppl and': 336963, 'ppl and hoarder': 668160, 'and hoarder are': 64642, 'hoarder are clearing': 398986, 'are clearing shelf': 85312, 'clearing shelf before': 181471, 'shelf before we': 756885, 'before we get': 123286, 'we get chance': 971606, 'get chance we': 346758, 'chance we won': 171828, 'we won die': 973935, 'won die of': 1003783, 'die of covid': 241419, 'we ll die': 972243, 'll die of': 496703, 'die of starvation': 241428, 'avoidance': 105405, 'hey are': 394324, 'make fortune': 509914, 'from boom': 334707, 'they pay': 882872, 'pay fair': 644860, 'fair uk': 296392, 'uk tax': 938795, 'tax we': 835117, 'that income': 844488, 'for recovery': 325034, 'recovery wouldn': 705428, 'eu tax': 283277, 'tax avoidance': 834933, 'avoidance directive': 105406, 'directive be': 243501, 'be useful': 117929, 'useful right': 950187, 'hey are likely': 394325, 'likely to make': 492164, 'to make fortune': 909665, 'make fortune from': 509915, 'fortune from boom': 329930, 'from boom in': 334708, 'boom in online': 134811, 'due to are': 261705, 'to are you': 900695, 'you going to': 1018883, 'going to ensure': 355588, 'ensure they pay': 278107, 'they pay fair': 882873, 'pay fair uk': 644861, 'fair uk tax': 296393, 'uk tax we': 938796, 'tax we ll': 835118, 'we ll need': 972264, 'll need that': 496911, 'need that income': 555729, 'that income for': 844489, 'income for recovery': 432345, 'for recovery wouldn': 325036, 'recovery wouldn the': 705429, 'wouldn the eu': 1012509, 'the eu tax': 854565, 'eu tax avoidance': 283278, 'tax avoidance directive': 834934, 'avoidance directive be': 105407, 'directive be useful': 243502, 'be useful right': 117932, 'useful right now': 950188, 'rendered': 710941, 'netizens in': 557679, 'in oman': 426106, 'oman were': 598856, 'were rendered': 980052, 'rendered speechless': 710944, 'speechless after': 788416, 'after video': 36486, 'video showing': 956893, 'showing people': 767492, 'what seemed': 982141, 'supermarket went': 823780, 'viral on': 957612, 'netizens in oman': 557680, 'in oman were': 426110, 'oman were rendered': 598857, 'were rendered speechless': 980053, 'rendered speechless after': 710945, 'speechless after video': 788417, 'after video showing': 36488, 'video showing people': 956895, 'showing people panic': 767493, 'buying at what': 149974, 'at what seemed': 101533, 'what seemed to': 982142, 'to be local': 901370, 'be local supermarket': 115788, 'local supermarket went': 498611, 'supermarket went viral': 823782, 'went viral on': 979229, 'viral on social': 957613, 'aap': 24115, 'scholarly': 741664, 'aap publisher': 24116, 'publisher response': 688726, 'response page': 715779, 'page includes': 633857, 'includes numerous': 431784, 'numerous example': 577131, 'of publisher': 588596, 'publisher from': 688724, 'consumer book': 196636, 'book education': 134508, 'education scholarly': 268861, 'scholarly community': 741665, 'community stepping': 190122, 'provide extra': 686281, 'extra support': 293667, 'aap publisher response': 24117, 'publisher response page': 688727, 'response page includes': 715780, 'page includes numerous': 633859, 'includes numerous example': 431785, 'numerous example of': 577132, 'example of publisher': 288945, 'of publisher from': 588597, 'publisher from consumer': 688725, 'from consumer book': 334955, 'consumer book education': 196637, 'book education scholarly': 134509, 'education scholarly community': 268862, 'scholarly community stepping': 741666, 'community stepping up': 190123, 'to provide extra': 912390, 'provide extra support': 686282, 'extra support online': 293668, 'support online resource': 826709, '5kg': 20722, '4800': 19339, 'aruna food': 94679, 'food grain': 314705, 'grain stock': 361799, 'stock kept': 802339, 'crisis 5kg': 216962, '5kg rice': 20735, 'rice not': 721087, 'enough 4800': 277309, '4800 ton': 19342, 'ton rice': 924292, 'than coronavirus': 840460, 'aladi aruna food': 40636, 'aruna food grain': 94680, 'food grain stock': 314711, 'grain stock kept': 361801, 'stock kept is': 802340, 'enormous it should': 277289, 'should be released': 765711, 'of crisis 5kg': 582146, 'crisis 5kg rice': 216963, '5kg rice not': 20736, 'rice not enough': 721088, 'not enough 4800': 569179, 'enough 4800 ton': 277310, '4800 ton rice': 19343, 'ton rice stock': 924294, 'rice stock is': 721148, 'stock is there': 802312, 'is there more': 453018, 'there more people': 878766, 'may die of': 521126, 'die of food': 241423, 'shortage than coronavirus': 765245, 'than coronavirus sars': 840462, 'giver': 351212, 'beautifully': 118732, 'great giver': 362705, 'giver so': 351217, 'so thoughtful': 778516, 'thoughtful just': 893354, 'what needed': 981910, 'needed two': 556558, 'two roll': 937189, 'of wrapped': 593331, 'wrapped beautifully': 1012674, 'beautifully brilliant': 118733, 'brilliant lol': 139872, 'lol life': 500921, 'to have friend': 907242, 'friend who are': 333891, 'who are great': 988148, 'are great giver': 86951, 'great giver so': 362706, 'giver so thoughtful': 351218, 'so thoughtful just': 778517, 'thoughtful just what': 893355, 'just what needed': 470286, 'what needed two': 981916, 'needed two roll': 556559, 'two roll of': 937190, 'roll of wrapped': 725424, 'of wrapped beautifully': 593332, 'wrapped beautifully brilliant': 1012675, 'beautifully brilliant lol': 118734, 'brilliant lol life': 139873, 'lol life during': 500922, 'life during 19': 488616, 'cat milk': 166887, 'milk shortage': 531814, 'shortage reported': 765197, 'in oklahoma': 426095, 'oklahoma price': 598073, 'crisis only': 217823, 'from private': 336979, 'private dairy': 678889, 'cat milk shortage': 166888, 'milk shortage reported': 531815, 'shortage reported in': 765198, 'reported in oklahoma': 712490, 'in oklahoma price': 426097, 'oklahoma price skyrocket': 598074, '19 crisis only': 6293, 'crisis only available': 217824, 'only available from': 610132, 'available from private': 104401, 'from private dairy': 336980, 'tribalism': 931669, 'political tribalism': 663686, 'tribalism impact': 931672, 'political tribalism impact': 663687, 'tribalism impact consumer': 931673, 'impact consumer sentiment': 417611, 'sentiment on covid': 750974, 'circulate': 178658, 'you provided': 1020484, 'provided adequate': 686561, 'adequate guidance': 32168, 'have prepared': 382026, 'prepared free': 670207, 'free user': 332293, 'friendly retail': 333997, 'store hygiene': 808235, 'hygiene guideline': 412100, 'guideline document': 368414, 'document for': 251189, 'download you': 257642, 'are welcome': 91607, 'to circulate': 902761, 'circulate this': 178663, 'have you provided': 383683, 'you provided adequate': 1020485, 'provided adequate guidance': 686563, 'adequate guidance to': 32169, 'guidance to your': 368296, 'to your store': 919032, 'your store staff': 1025990, 'store staff during': 810311, 'coronavirus pandemic we': 206504, 'we have prepared': 971902, 'have prepared free': 382027, 'prepared free user': 670208, 'free user friendly': 332294, 'user friendly retail': 950284, 'friendly retail store': 333998, 'retail store hygiene': 718646, 'store hygiene guideline': 808236, 'hygiene guideline document': 412101, 'guideline document for': 368415, 'document for you': 251191, 'you to download': 1021770, 'to download you': 904693, 'download you are': 257643, 'you are welcome': 1017288, 'are welcome to': 91608, 'welcome to circulate': 977902, 'to circulate this': 902763, 'circulate this with': 178664, 'with your retail': 1002230, 'your retail staff': 1025609, 'all stepped': 44457, 'stepped up': 799782, 'then increase': 877265, 'by roughly': 153835, 'roughly 25': 726272, '25 on': 15927, 'baby supply': 106706, 'supply despicable': 825164, 'see how have': 745233, 'how have all': 407969, 'have all stepped': 379167, 'all stepped up': 44458, 'stepped up to': 799788, 'up to try': 946441, 'and help people': 64463, 'pandemic it give': 635819, 'it give you': 458241, 'give you hope': 350860, 'you hope for': 1019248, 'hope for big': 403479, 'for big business': 319672, 'big business and': 129677, 'business and then': 143338, 'and then increase': 73774, 'then increase the': 877266, 'the price by': 864336, 'price by roughly': 673036, 'by roughly 25': 153836, 'roughly 25 on': 726273, '25 on toilet': 15929, 'roll and baby': 725172, 'and baby supply': 58611, 'baby supply despicable': 106709, 'bastion': 112527, '2good2btrue': 16614, 'cyberstronghold': 224013, 'during here': 262686, 'making your': 511504, 'home bastion': 400764, 'bastion of': 112528, 'of cybersecurity': 582302, 'cybersecurity if': 223997, 'online do': 608116, 'it safely': 460842, 'safely because': 730262, 'be 2good2btrue': 113424, '2good2btrue staysafe': 16615, 'staysafe cyberstronghold': 798797, 'at home during': 98980, 'home during here': 401106, 'during here are': 262687, 'some tip for': 784064, 'tip for making': 898771, 'for making your': 323184, 'making your home': 511506, 'your home bastion': 1024342, 'home bastion of': 400765, 'bastion of cybersecurity': 112529, 'of cybersecurity if': 582303, 'cybersecurity if you': 223998, 'shopping online do': 763422, 'online do it': 608117, 'do it safely': 249509, 'it safely because': 460844, 'safely because it': 730263, 'because it could': 119181, 'could be 2good2btrue': 208835, 'be 2good2btrue staysafe': 113425, '2good2btrue staysafe cyberstronghold': 16616, 'loui': 504509, 'selsey': 749567, 'clapped': 180027, 'to jason': 908654, 'jason jay': 464844, 'jay and': 464884, 'and loui': 66416, 'loui who': 504512, 'who showed': 989621, 'showed john': 767337, 'john one': 466544, 'our executive': 622944, 'director the': 243674, 'way this': 969974, 'morning john': 541329, 'john spent': 466549, 'morning emptying': 541240, 'emptying bin': 275257, 'bin in': 131006, 'in selsey': 427793, 'selsey he': 749568, 'completely impressed': 192306, 'impressed thanks': 419452, 'resident who': 714402, 'who clapped': 988457, 'clapped and': 180030, 'and left': 66079, 'left note': 485570, 'chocolate they': 177705, 'were very': 980327, 'very moved': 955354, 'thanks to jason': 842238, 'to jason jay': 908655, 'jason jay and': 464845, 'jay and loui': 464885, 'and loui who': 66418, 'loui who showed': 504513, 'who showed john': 989622, 'showed john one': 767338, 'john one of': 466545, 'of our executive': 587465, 'our executive director': 622945, 'executive director the': 289888, 'director the way': 243676, 'the way this': 871199, 'way this morning': 969976, 'this morning john': 888978, 'morning john spent': 541330, 'john spent the': 466550, 'spent the morning': 789174, 'the morning emptying': 860911, 'morning emptying bin': 541241, 'emptying bin in': 275258, 'bin in selsey': 131007, 'in selsey he': 427794, 'selsey he wa': 749569, 'he wa completely': 385591, 'wa completely impressed': 961846, 'completely impressed thanks': 192307, 'impressed thanks to': 419453, 'to the resident': 917020, 'the resident who': 865580, 'resident who clapped': 714403, 'who clapped and': 988458, 'clapped and left': 180031, 'and left note': 66083, 'left note and': 485571, 'note and chocolate': 572697, 'and chocolate they': 59872, 'chocolate they were': 177706, 'they were very': 883816, 'were very moved': 980330, 'either almost': 270250, 'or available': 614469, 'free in': 331918, 'britain covid': 140392, 'many item in': 514218, 'the uk are': 870193, 'uk are either': 938187, 'are either almost': 86091, 'either almost impossible': 270251, 'almost impossible to': 46672, 'get in short': 347309, 'short supply or': 764712, 'supply or available': 825681, 'or available at': 614470, 'available at inflated': 104252, 'inflated price what': 437081, 'price what can': 677468, 'you get for': 1018772, 'get for free': 347083, 'for free in': 321718, 'free in britain': 331919, 'in britain covid': 420991, 'britain covid 19': 140393, 'cuppa': 220514, 'oatmilk': 578312, 'mum came': 545885, 'came through': 157061, 'through for': 894471, 'for cuppa': 320482, 'cuppa on': 220519, 'the doorstep': 853598, 'doorstep and': 255837, 'deliver some': 233210, 'some oatmilk': 783375, 'oatmilk to': 578313, 'out socialdistancing': 627212, 'my mum came': 549370, 'mum came through': 545886, 'came through for': 157062, 'through for cuppa': 894472, 'for cuppa on': 320483, 'cuppa on the': 220520, 'on the doorstep': 604075, 'the doorstep and': 853599, 'doorstep and to': 255839, 'and to deliver': 74161, 'to deliver some': 904112, 'deliver some oatmilk': 233211, 'some oatmilk to': 783376, 'oatmilk to me': 578314, 'to me my': 909943, 'me my local': 523193, 'supermarket wa out': 823704, 'wa out socialdistancing': 962881, 'vineyard': 957440, 'wa severely': 963174, 'severely hit': 754085, 'by natural': 153304, 'disaster in': 244214, '2019 which': 14044, 'have impacted': 381022, 'impacted vineyard': 418167, 'vineyard australian': 957441, 'australian will': 103574, 'face another': 294307, 'another hurdle': 77663, 'hurdle the': 411451, 'ha limited': 371145, 'limited access': 492594, 'it biggest': 456873, 'biggest export': 130234, 'export market': 292664, 'wa severely hit': 963175, 'severely hit by': 754086, 'hit by natural': 398182, 'by natural disaster': 153305, 'natural disaster in': 552823, 'disaster in 2019': 244215, 'in 2019 which': 419813, '2019 which have': 14045, 'which have impacted': 985917, 'have impacted vineyard': 381025, 'impacted vineyard australian': 418168, 'vineyard australian will': 957442, 'australian will have': 103575, 'have to face': 383208, 'to face another': 905559, 'face another hurdle': 294309, 'another hurdle the': 77664, 'hurdle the ha': 411452, 'the ha limited': 857001, 'ha limited access': 371146, 'limited access to': 492595, 'to it biggest': 908570, 'it biggest export': 456875, 'biggest export market': 130236, 'leaning': 483897, 'mind if': 532676, 'more asshole': 538656, 'asshole wearing': 96582, 'wearing scrub': 974777, 'scrub in': 742899, 'spread not': 790642, 'not walk': 572426, 'around in': 93342, 'in disease': 422299, 'disease filthy': 245141, 'filthy clothing': 305795, 'clothing leaning': 184264, 'leaning on': 483903, 'surface can': 827991, 'do psa': 250012, 'psa and': 687392, 'losing my mind': 503578, 'my mind if': 549244, 'mind if see': 532677, 'see one more': 745504, 'one more asshole': 606686, 'more asshole wearing': 538657, 'asshole wearing scrub': 96583, 'wearing scrub in': 974778, 'scrub in the': 742901, 'store or in': 809340, 'or in line': 615753, 'line to pick': 493490, 'up food the': 944901, 'food the idea': 317119, 'is to stop': 453251, 'the spread not': 867634, 'spread not walk': 790643, 'not walk around': 572427, 'walk around in': 964743, 'around in disease': 93344, 'in disease filthy': 422300, 'disease filthy clothing': 245142, 'filthy clothing leaning': 305796, 'clothing leaning on': 184265, 'leaning on every': 483904, 'on every surface': 600623, 'every surface can': 286274, 'surface can we': 827992, 'we do psa': 971346, 'do psa and': 250013, 'psa and stop': 687393, 'and stop it': 72477, 'predatory': 669528, 'in addition': 420033, 'addition to': 31729, 'now also': 573986, 'also banning': 47907, 'banning hand': 110631, 'sanitizer surface': 735835, 'surface disinfecting': 828012, 'ad and': 31054, 'commerce listing': 188586, 'listing this': 494886, 'another step': 77867, 'and predatory': 69341, 'predatory behavior': 669531, 'in addition to': 420036, 'addition to mask': 31740, 'to mask we': 909877, 'mask we re': 519513, 're now also': 699136, 'now also banning': 573987, 'also banning hand': 47908, 'banning hand sanitizer': 110632, 'hand sanitizer surface': 375610, 'sanitizer surface disinfecting': 735836, 'surface disinfecting wipe': 828013, 'disinfecting wipe and': 245894, 'wipe and covid': 996186, 'test kit in': 839060, 'kit in ad': 475570, 'in ad and': 420024, 'ad and commerce': 31055, 'and commerce listing': 60133, 'commerce listing this': 188587, 'listing this is': 494887, 'is another step': 445742, 'another step to': 77869, 'inflated price and': 437024, 'price and predatory': 672499, 'and predatory behavior': 69342, 'predatory behavior we': 669532, 'behavior we re': 124295, 'for cleaning': 320109, 'cleaning health': 180960, 'health medical': 386636, 'against some': 37623, 'seller at': 748984, 'or abroad': 614242, 'abroad may': 27162, 'may claim': 521086, 'demand product': 236083, 'don report': 253869, 'report international': 712046, 'to econsumergov': 904936, 'shopping for cleaning': 762662, 'for cleaning health': 320111, 'cleaning health medical': 180961, 'health medical supply': 386638, 'supply to protect': 826024, 'protect against some': 684766, 'against some online': 37624, 'some online seller': 783446, 'online seller at': 608959, 'seller at home': 748985, 'home or abroad': 401733, 'or abroad may': 614243, 'abroad may claim': 27163, 'may claim to': 521087, 'claim to have': 179849, 'to have in': 907258, 'have in demand': 381034, 'in demand product': 422148, 'demand product in': 236085, 'product in stock': 681296, 'in stock when': 428343, 'stock when they': 803183, 'when they don': 984253, 'they don report': 882000, 'don report international': 253870, 'report international scam': 712047, 'international scam to': 441854, 'scam to econsumergov': 740421, 'heaping': 387864, 'breaking is': 138980, 'is heaping': 448368, 'heaping praise': 387865, 'praise on': 668854, 'way most': 969712, 'outbreak healthcare': 628293, 'responder get': 715465, 'get big': 346672, 'breaking is heaping': 138981, 'is heaping praise': 448369, 'heaping praise on': 387866, 'praise on the': 668855, 'the way most': 871166, 'way most american': 969713, 'most american are': 542088, 'american are responding': 51813, 'the outbreak healthcare': 862637, 'outbreak healthcare worker': 628294, 'healthcare worker transit': 387392, 'transit worker grocery': 929659, 'worker and first': 1006294, 'first responder get': 308944, 'responder get big': 715466, 'get big shout': 346674, 'bht': 129396, 'greedy grab': 363520, 'grab delivery': 361473, 'service forced': 752398, 'their obscene': 874079, 'obscene 35': 578508, '35 commission': 17883, 'commission on': 188868, 'now take': 575952, 'take only': 832423, '30 even': 17039, 'surging because': 828405, 'driver make': 259647, 'make le': 510079, 'le money': 483026, 'grab never': 361513, 'never paid': 558140, 'paid the': 634140, 'the promised': 864660, 'promised extra': 683719, 'extra 10': 293422, '10 bht': 1338, 'bht per': 129397, 'per delivery': 650816, 'their driver': 873085, 'greedy grab delivery': 363521, 'grab delivery service': 361474, 'delivery service forced': 234438, 'service forced to': 752399, 'forced to cut': 328625, 'to cut their': 903892, 'cut their obscene': 223584, 'their obscene 35': 874080, 'obscene 35 commission': 578509, '35 commission on': 17884, 'commission on food': 188869, 'food delivery they': 314153, 'delivery they now': 234628, 'they now take': 882804, 'now take only': 575953, 'take only 30': 832424, 'only 30 even': 609999, '30 even though': 17040, 'though the demand': 892908, 'demand is surging': 235743, 'is surging because': 452488, 'surging because of': 828406, 'of the driver': 590965, 'the driver make': 853698, 'driver make le': 259648, 'make le money': 510080, 'le money and': 483027, 'money and grab': 536597, 'and grab never': 63905, 'grab never paid': 361514, 'never paid the': 558141, 'paid the promised': 634143, 'the promised extra': 864662, 'promised extra 10': 683720, 'extra 10 bht': 293423, '10 bht per': 1339, 'bht per delivery': 129398, 'per delivery to': 650817, 'delivery to their': 234674, 'to their driver': 917227, 'diversity': 248558, 'scale of': 739901, 'major role': 509446, 'in helping': 423635, 'country feed': 210646, 'feed itself': 302329, 'itself during': 463926, 'may involve': 521298, 'involve change': 444329, 'change diversity': 172014, 'diversity to': 248563, 'or indeed': 615780, 'indeed maintain': 434000, 'business feel': 143732, 'for regulatory': 325081, 'regulatory technical': 708184, 'the scale of': 866406, 'scale of our': 739903, 'our food industry': 623112, 'food industry mean': 315018, 'industry mean we': 435990, 'mean we have': 524762, 'we have major': 971866, 'have major role': 381426, 'major role in': 509447, 'role in helping': 725094, 'in helping the': 423641, 'helping the country': 391486, 'the country feed': 852078, 'country feed itself': 210647, 'feed itself during': 302330, 'itself during after': 463927, 'during after covid': 262430, '19 this may': 11347, 'this may involve': 888791, 'may involve change': 521299, 'involve change diversity': 444330, 'change diversity to': 172015, 'diversity to meet': 248564, 'meet demand or': 527474, 'demand or indeed': 235986, 'or indeed maintain': 615781, 'indeed maintain business': 434001, 'maintain business feel': 508946, 'business feel free': 143733, 'free to contact': 332238, 'to contact for': 903352, 'contact for regulatory': 200082, 'for regulatory technical': 325082, 'regulatory technical support': 708185, 'technical support during': 836210, '568': 20471, '089': 1141, '238': 15491, 'in belgium': 420783, 'belgium saturday': 126186, 'saturday figure': 737021, 'figure 815': 305182, '815 confirmed': 22788, 'case up': 166088, 'up 568': 944194, '568 in': 20472, 'day 67': 227162, '67 death': 21463, 'death up': 230264, 'up 30': 944149, '30 089': 16924, '089 people': 1142, 'hospital up': 404696, 'up 299': 944147, '299 of': 16528, 'whom 238': 990540, '238 are': 15492, 'care up': 164248, 'up 74': 944205, 'in belgium saturday': 420784, 'belgium saturday figure': 126187, 'saturday figure 815': 737022, 'figure 815 confirmed': 305183, '815 confirmed case': 22789, 'confirmed case up': 194147, 'case up 568': 166089, 'up 568 in': 944195, '568 in day': 20473, 'in day 67': 422004, 'day 67 death': 227163, '67 death up': 21464, 'death up 30': 230265, 'up 30 089': 944150, '30 089 people': 16925, '089 people are': 1143, 'are in hospital': 87397, 'in hospital up': 423821, 'hospital up 299': 404697, 'up 299 of': 944148, '299 of whom': 16529, 'of whom 238': 593146, 'whom 238 are': 990541, '238 are in': 15493, 'are in intensive': 87401, 'intensive care up': 441137, 'care up 74': 164249, 'ftc revealed': 339439, 'revealed that': 720279, '00 complaint': 138, 'scam with': 740483, 'almost 12': 46477, 'million lost': 532228, 'fraud each': 331260, 'person lost': 652525, 'lost an': 503823, '500 the': 20057, 'most common': 542183, 'fraud with': 331376, 'commission ftc revealed': 188835, 'ftc revealed that': 339440, 'revealed that it': 720280, 'it ha received': 458409, '15 00 complaint': 3630, '00 complaint about': 139, 'complaint about coronavirus': 191926, 'about coronavirus related': 25030, 'related scam with': 708565, 'scam with total': 740486, 'with total of': 1001821, 'total of almost': 926211, 'of almost 12': 580010, 'almost 12 million': 46478, '12 million lost': 2886, 'million lost due': 532229, 'due to fraud': 261790, 'to fraud each': 906223, 'fraud each person': 331261, 'each person lost': 264252, 'person lost an': 652526, 'lost an average': 503824, 'average of over': 104882, 'of over 500': 587618, 'over 500 the': 629868, '500 the most': 20058, 'the most common': 860960, 'most common fraud': 542185, 'common fraud with': 189387, 'fraud with online': 331377, 'smp': 775962, 'smp covid': 775963, 'consumer tip': 199294, 'smp covid 19': 775964, '19 consumer tip': 5991, 'balancing': 109013, '19 balancing': 5296, 'balancing consideration': 109014, 'consideration in': 195256, '12 school': 2952, 'closing insurance': 183666, 'covid 19 balancing': 212676, '19 balancing consideration': 5297, 'balancing consideration in': 109015, 'consideration in 12': 195257, 'in 12 school': 419692, '12 school closing': 2953, 'school closing insurance': 741741, 'gibbs48': 349904, 'impotus45': 419427, 'deceive': 230723, 'gibbs48 impotus45': 349905, 'impotus45 also': 419428, 'is smart': 451984, 'smart genius': 775381, 'genius hell': 345784, 'hell he': 389017, 'even said': 284540, 'wa stable': 963295, 'stable genius': 791916, 'genius just': 345788, 'remember liar': 710223, 'liar will': 487977, 'will lie': 993982, 'lie fraudsters': 488357, 'will deceive': 993105, 'deceive however': 230726, 'however assume': 409346, 'least 00': 484322, '00 just': 288, 'gibbs48 impotus45 also': 349906, 'impotus45 also say': 419429, 'also say is': 48828, 'say is smart': 738823, 'is smart genius': 451985, 'smart genius hell': 775382, 'genius hell he': 345785, 'hell he even': 389019, 'he even said': 384932, 'even said he': 284541, 'he wa stable': 385618, 'wa stable genius': 963296, 'stable genius just': 791918, 'genius just remember': 345789, 'just remember liar': 469604, 'remember liar will': 710225, 'liar will lie': 487978, 'will lie fraudsters': 993983, 'lie fraudsters will': 488358, 'fraudsters will deceive': 331442, 'will deceive however': 993106, 'deceive however assume': 230727, 'however assume that': 409347, 'assume that gas': 97016, 'are at least': 84671, 'at least 00': 99437, 'least 00 just': 484323, '00 just one': 290, 'just one more': 469379, 'traumatic': 930213, 'consequence stockmarketcrash2020': 194885, 'stockmarketcrash2020 short': 803699, 'term credit': 838104, 'credit is': 216418, 'up employer': 944788, 'pay worker': 645236, 'buy inventory': 148831, 'inventory pay': 443701, 'pay supplier': 645127, 'supplier bankruptcy': 824504, 'bankruptcy layoff': 110533, 'layoff fall': 482692, 'demand end': 235287, 'consumption traumatic': 199956, 'traumatic damage': 930214, 'damage civil': 225186, 'war dowjones': 966420, 'sp500 united': 787032, 'state trump': 796045, 'trump sick': 933842, 'sick depression': 768413, 'consequence stockmarketcrash2020 short': 194886, 'stockmarketcrash2020 short term': 803700, 'short term credit': 764729, 'term credit is': 838106, 'credit is drying': 216419, 'drying up employer': 261340, 'up employer have': 944789, 'employer have no': 274514, 'money to pay': 537114, 'to pay worker': 911575, 'pay worker buy': 645237, 'worker buy inventory': 1006566, 'buy inventory pay': 148832, 'inventory pay supplier': 443702, 'pay supplier bankruptcy': 645128, 'supplier bankruptcy layoff': 824505, 'bankruptcy layoff fall': 110535, 'layoff fall in': 482693, 'in demand end': 422123, 'demand end of': 235288, 'end of consumption': 275892, 'of consumption traumatic': 581798, 'consumption traumatic damage': 199957, 'traumatic damage civil': 930215, 'damage civil war': 225187, 'civil war dowjones': 179564, 'war dowjones sp500': 966421, 'dowjones sp500 united': 256354, 'sp500 united state': 787033, 'united state trump': 942250, 'state trump sick': 796046, 'trump sick depression': 933843, 'techinally': 836178, 'techinally 1st': 836179, 'quarantine went': 692695, 'the vet': 870714, 'vet aka': 955700, 'aka just': 40493, 'to parking': 911468, 'farm the': 299196, 'for flour': 321533, 'techinally 1st day': 836180, '1st day of': 12731, 'of quarantine went': 588668, 'quarantine went to': 692696, 'to the vet': 917169, 'the vet aka': 870715, 'vet aka just': 955701, 'aka just went': 40494, 'went to parking': 979179, 'to parking lot': 911469, 'parking lot to': 642107, 'lot to the': 504396, 'to the farm': 916699, 'the farm the': 854936, 'farm the grocery': 299197, 'grocery store still': 365808, 'store still on': 810382, 'on the search': 604348, 'search for flour': 743247, 'excluded': 289626, 'pkgs': 657255, 'classifie': 180342, 'with farmer': 998389, 'market closed': 516177, 'closed migrant': 183222, 'migrant restriction': 531220, 'restriction farmer': 717271, 'rancher excluded': 696539, 'excluded from': 289627, 'relief pkgs': 709435, 'pkgs they': 657258, 'need dire': 554678, 'dire support': 243263, 'farmer migrant': 299460, 'migrant farmer': 531208, 'farmer should': 299505, 'get relief': 347914, 'pkgs and': 657256, 'be classifie': 114091, 'with farmer market': 998390, 'farmer market closed': 299445, 'market closed migrant': 516179, 'closed migrant restriction': 183223, 'migrant restriction farmer': 531221, 'restriction farmer rancher': 717272, 'farmer rancher excluded': 299484, 'rancher excluded from': 696540, 'excluded from covid': 289629, '19 relief pkgs': 10086, 'relief pkgs they': 709437, 'pkgs they need': 657259, 'they need dire': 882726, 'need dire support': 554679, 'dire support food': 243264, 'support food production': 826501, 'food production is': 316046, 'production is in': 682089, 'high demand so': 395030, 'demand so farmer': 236242, 'so farmer migrant': 777075, 'farmer migrant farmer': 299461, 'migrant farmer should': 531210, 'farmer should get': 299506, 'should get relief': 766034, 'get relief pkgs': 347915, 'relief pkgs and': 709436, 'pkgs and be': 657257, 'and be classifie': 58747, 'drew': 258713, 'noticed item': 573451, 'paper sanitizers': 640720, 'household cleaning': 406761, 'off grocery': 593872, 'prospect of': 684687, 'order drew': 618176, 'drew closer': 258716, 'to reality': 912857, 'reality buyinghabits': 701706, 'buyinghabits toiletpaper': 151427, 'toiletpaper sanitizer': 922436, 'have noticed item': 381715, 'noticed item like': 573452, 'toilet paper sanitizers': 921431, 'paper sanitizers and': 640721, 'sanitizers and household': 736198, 'and household cleaning': 64782, 'household cleaning product': 406763, 'cleaning product flying': 181030, 'flying off grocery': 311678, 'off grocery store': 593873, 'shelf the prospect': 757656, 'the prospect of': 864698, 'prospect of self': 684694, 'self isolation or': 747789, 'isolation or stay': 455378, 'or stay at': 617207, 'home order drew': 401771, 'order drew closer': 618177, 'drew closer to': 258717, 'closer to reality': 183521, 'to reality buyinghabits': 912859, 'reality buyinghabits toiletpaper': 701707, 'buyinghabits toiletpaper sanitizer': 151428, 'deleted': 232849, 'optic': 613870, 'he probably': 385306, 'probably deleted': 679242, 'deleted it': 232850, 'better optic': 128393, 'optic to': 613871, 'helping those': 391515, 'than spending': 841158, 'spending extra': 788807, 'money purchasing': 536987, 'purchasing stock': 689922, 'but yeah': 147955, 'yeah the': 1014302, 'he probably deleted': 385307, 'probably deleted it': 679243, 'deleted it because': 232851, 'because it better': 119176, 'it better optic': 456863, 'better optic to': 128394, 'optic to focus': 613872, 'focus on helping': 311877, 'on helping those': 601273, 'helping those affected': 391516, 'those affected by': 891777, '19 than spending': 11131, 'than spending extra': 841159, 'spending extra money': 788808, 'extra money purchasing': 293583, 'money purchasing stock': 536988, 'purchasing stock when': 689923, 'stock when the': 803181, 'low but yeah': 505171, 'but yeah the': 147956, 'audit': 102939, 'least grocery': 484492, 'food company': 313988, 'an audit': 55473, 'audit of': 102940, 'stock sell': 802813, 'sell if': 748756, 'if folk': 414118, 'leaving your': 485172, 'this then': 890544, 'industry probably': 436054, 'probably isn': 679298, 'isn your': 454767, 'your calling': 1023112, 'at least grocery': 99501, 'least grocery store': 484493, 'store chain and': 806910, 'chain and food': 170464, 'and food company': 63033, 'food company can': 313989, 'company can do': 190521, 'can do an': 158092, 'do an audit': 249057, 'an audit of': 55474, 'audit of the': 102941, 'the product they': 864597, 'product they stock': 681724, 'they stock sell': 883473, 'stock sell if': 802815, 'sell if folk': 748757, 'if folk are': 414119, 'folk are leaving': 312093, 'are leaving your': 87754, 'leaving your product': 485174, 'your product on': 1025441, 'shelf in time': 757222, 'like this then': 491538, 'this then the': 890546, 'then the food': 877613, 'food industry probably': 315021, 'industry probably isn': 436055, 'probably isn your': 679300, 'isn your calling': 454768, 'you grocery': 1018939, 'employee farmer': 273838, 'farmer trucker': 299550, 'trucker healthcare': 932924, 'essential individual': 281169, 'individual offering': 435231, 'offering your': 595331, 'thank you grocery': 841737, 'you grocery store': 1018941, 'store employee farmer': 807486, 'employee farmer trucker': 273839, 'farmer trucker healthcare': 299551, 'trucker healthcare worker': 932925, 'worker retail employee': 1007691, 'retail employee that': 718077, 'employee that are': 274287, 'are still working': 90501, 'working and all': 1008494, 'other essential individual': 620166, 'essential individual offering': 281170, 'individual offering your': 435232, 'offering your life': 595334, 'your life to': 1024649, 'unwelcome': 944070, 'selecting': 747509, 'extract': 293709, 'desired': 238431, 'is unwelcome': 453561, 'unwelcome when': 944071, 'when man': 983712, 'man hit': 512098, 'hit on': 398352, 'been watching': 122354, 'watching you': 968827, 'you while': 1022294, 'were selecting': 980093, 'selecting vanilla': 747510, 'vanilla extract': 952412, 'extract from': 293710, 'get closer': 346787, 'than foot': 840661, 'press forward': 671051, 'forward with': 330053, 'with conversation': 997781, 'conversation that': 202487, 'never desired': 557943, 'it is unwelcome': 459117, 'is unwelcome when': 453562, 'unwelcome when man': 944072, 'when man hit': 983713, 'man hit on': 512099, 'hit on you': 398357, 'on you in': 605425, 'store during and': 807399, 'during and make': 262455, 'clear that he': 181343, 'that he been': 844253, 'he been watching': 384777, 'been watching you': 122357, 'watching you while': 968829, 'you while you': 1022297, 'while you were': 987597, 'you were selecting': 1022256, 'were selecting vanilla': 980094, 'selecting vanilla extract': 747511, 'vanilla extract from': 952413, 'extract from the': 293711, 'shelf and try': 756773, 'to get closer': 906444, 'get closer than': 346788, 'closer than foot': 183509, 'than foot to': 840663, 'foot to press': 318447, 'to press forward': 912032, 'press forward with': 671052, 'forward with conversation': 330055, 'with conversation that': 997782, 'conversation that wa': 202488, 'that wa never': 847300, 'wa never desired': 962701, 'moab': 534882, 'boarded': 133684, 'steadthread': 799111, 'and shit': 71484, 'getting real': 349218, 'real in': 701221, 'rural ut': 728270, 'ut moab': 951180, 'moab basically': 534883, 'basically boarded': 112116, 'boarded up': 133685, 'told tourist': 923777, 'there yet': 879389, 'any item': 79371, 'tp still': 927953, 'no case': 563765, 'county good': 211390, 'news steadthread': 560821, 'grocery and shit': 364258, 'and shit is': 71485, 'shit is getting': 759142, 'is getting real': 448039, 'getting real in': 349221, 'real in rural': 701223, 'in rural ut': 427579, 'rural ut moab': 728271, 'ut moab basically': 951181, 'moab basically boarded': 534884, 'basically boarded up': 112117, 'boarded up and': 133686, 'up and told': 944384, 'and told tourist': 74262, 'told tourist to': 923778, 'tourist to get': 927044, 'get out we': 347749, 'out we aren': 627792, 'we aren there': 970776, 'aren there yet': 92560, 'there yet but': 879390, 'yet but the': 1016026, 'is limiting purchase': 449372, 'limiting purchase to': 492858, 'purchase to two': 689704, 'to two of': 917866, 'two of any': 937081, 'of any item': 580261, 'any item and': 79372, 'item and out': 463064, 'out of tp': 626866, 'of tp still': 592380, 'tp still no': 927954, 'still no case': 800865, 'no case in': 563766, 'case in our': 165804, 'our county good': 622612, 'county good news': 211391, 'good news steadthread': 357458, 'the anxiety': 848789, 'and depression': 61233, 'depression association': 237633, 'america provides': 51649, 'provides tip': 686902, 'manage anxiety': 512375, 'anxiety while': 78819, 'while practicing': 987163, 'the anxiety and': 848790, 'anxiety and depression': 78650, 'and depression association': 61234, 'depression association of': 237634, 'association of america': 96967, 'of america provides': 580044, 'america provides tip': 51650, 'provides tip to': 686905, 'to manage anxiety': 909788, 'manage anxiety while': 512377, 'anxiety while practicing': 78820, 'while practicing social': 987164, 'much fear': 544881, 'ammo for': 52898, 'for protection': 324826, 'against home': 37498, 'home break': 400813, 'than 98': 840311, '98 of': 23727, 'all who': 45458, 'it recover': 460669, 'recover it': 705184, 'only high': 610601, 'those bad': 891832, 'bad respiratory': 107995, 'respiratory problem': 715250, 'that mostly': 845236, 'mostly in': 542969, 'so much fear': 777774, 'much fear panic': 544883, 'fear panic over': 301286, 'panic over covid': 638386, '19 it to': 8156, 'to the point': 916963, 'point of buying': 662554, 'of buying gun': 581013, 'buying gun ammo': 150425, 'gun ammo for': 368681, 'ammo for protection': 52899, 'for protection against': 324827, 'protection against home': 685293, 'against home break': 37499, 'home break in': 400814, 'break in fighting': 138747, 'in fighting over': 422878, 'fighting over food': 305107, 'over food at': 630219, 'food at store': 313451, 'at store more': 100657, 'store more than': 808989, 'more than 98': 540586, 'than 98 of': 840312, '98 of all': 23728, 'of all who': 579995, 'all who get': 45461, 'who get it': 988773, 'get it recover': 347421, 'it recover it': 460670, 'recover it only': 705185, 'it only high': 460101, 'only high risk': 610602, 'risk to those': 723973, 'to those bad': 917496, 'those bad respiratory': 891833, 'bad respiratory problem': 107996, 'respiratory problem that': 715252, 'problem that mostly': 679703, 'that mostly in': 845238, 'mostly in the': 542970, 'in the elderly': 429163, 'professor spoke': 682590, 'are updating': 91378, 'updating their': 947490, 'their process': 874457, 'process amid': 679876, 'amid store': 52671, 'professor spoke with': 682591, 'spoke with about': 789743, 'with about how': 997084, 'about how are': 25421, 'how are updating': 407419, 'are updating their': 91379, 'updating their process': 947491, 'their process amid': 874458, 'process amid store': 679877, 'amid store closure': 52672, 'be building': 113921, 'building list': 142100, 'are hyper': 87286, 'hyper inflating': 412286, 'pandemic so': 636493, 'we come': 971147, 'side we': 768915, 'fuck out': 339621, 'them coronacrisis': 875556, 'coronacrisis rt': 204735, 'should be building': 765573, 'be building list': 113922, 'building list of': 142101, 'list of shop': 494471, 'of shop and': 589618, 'the like that': 859370, 'like that are': 491312, 'that are hyper': 842761, 'are hyper inflating': 87287, 'hyper inflating their': 412287, 'this pandemic so': 889424, 'pandemic so that': 636497, 'when we come': 984433, 'we come out': 971148, 'come out the': 187476, 'out the other': 627402, 'other side we': 620919, 'side we can': 768916, 'we can avoid': 970910, 'can avoid the': 157560, 'avoid the fuck': 105322, 'the fuck out': 855970, 'fuck out of': 339622, 'out of them': 626852, 'of them coronacrisis': 591730, 'them coronacrisis rt': 875558, 'kallang': 470712, 'ntuc': 576741, 'yoday': 1016473, 'socialdistancingfailz': 780901, 'at kallang': 99354, 'kallang wave': 470713, 'wave ntuc': 969361, 'ntuc fairprice': 576742, 'supermarket yoday': 824183, 'yoday queue': 1016474, 'queue were': 694128, 'about 20': 24661, '20 cart': 12991, 'cart deep': 165283, 'deep all': 231840, 'all senior': 44276, 'senior because': 750227, 'because today': 119743, 'their day': 872977, 'day 20': 227110, '30 minute': 17120, 'clear socialdistancingfailz': 181326, 'the queue at': 865035, 'queue at kallang': 693889, 'at kallang wave': 99355, 'kallang wave ntuc': 470714, 'wave ntuc fairprice': 969362, 'ntuc fairprice supermarket': 576744, 'fairprice supermarket yoday': 296463, 'supermarket yoday queue': 824184, 'yoday queue were': 1016475, 'queue were about': 694129, 'were about 20': 979269, 'about 20 cart': 24662, '20 cart deep': 12992, 'cart deep all': 165284, 'deep all senior': 231841, 'all senior because': 44277, 'senior because today': 750228, 'because today is': 119744, 'today is their': 919726, 'is their day': 452987, 'their day 20': 872978, 'day 20 30': 227111, '20 30 minute': 12901, '30 minute to': 17126, 'minute to clear': 533868, 'to clear socialdistancingfailz': 902833, 'harare': 377808, 'situation right': 772468, 'the harare': 857095, 'harare city': 377811, 'council office': 210017, 'office there': 595566, 'is zero': 454180, 'zero precaution': 1027479, 'situation right now': 772469, 'right now no': 722107, 'now no hand': 575349, 'at the harare': 100972, 'the harare city': 857096, 'harare city council': 377812, 'city council office': 179115, 'council office there': 210018, 'office there is': 595567, 'there is zero': 878658, 'is zero precaution': 454181, '2ply': 16829, 'surgicalmask': 828392, 'announced gazette': 76952, 'india order': 434559, 'order fixing': 618207, 'fixing retail': 309858, 'now 2ply': 573906, '2ply mask': 16832, 'ply surgicalmask': 661784, 'surgicalmask at': 828393, '10 handsanitizer': 1456, 'ml timely': 534728, 'by govt': 152720, 'indian government ha': 434839, 'government ha just': 360156, 'just announced gazette': 468192, 'announced gazette of': 76953, 'of india order': 585113, 'india order fixing': 434560, 'order fixing retail': 618208, 'fixing retail price': 309859, 'price of handsanitizer': 675467, 'of handsanitizer and': 584443, 'handsanitizer and mask': 376477, 'mask now 2ply': 519028, 'now 2ply mask': 573907, '2ply mask at': 16833, 'at ply surgicalmask': 100138, 'ply surgicalmask at': 661785, 'surgicalmask at 10': 828394, 'at 10 handsanitizer': 97404, '10 handsanitizer at': 1457, 'handsanitizer at 100': 376480, '200 ml timely': 13508, 'ml timely action': 534729, 'action by govt': 29982, 'by govt to': 152723, 'govt to prevent': 361316, 'consultation': 195873, 'proposed that': 684549, 'that minister': 845178, 'minister patel': 533435, 'patel after': 643959, 'after consultation': 35492, 'consultation with': 195890, 'with min': 999511, 'min of': 532555, 'health may': 386628, 'may set': 521491, 'set maximum': 753425, 'maximum price': 520831, 'private medical': 678948, 'medical good': 526194, 'service relating': 752760, 'testing prevention': 839614, 'it associated': 456605, 'associated disease': 96921, 'disease during': 245129, 'disaster period': 244231, 'proposed that minister': 684550, 'that minister patel': 845179, 'minister patel after': 533436, 'patel after consultation': 643960, 'after consultation with': 35493, 'consultation with min': 195891, 'with min of': 999512, 'min of health': 532556, 'of health may': 584510, 'health may set': 386629, 'may set maximum': 521492, 'set maximum price': 753426, 'maximum price of': 520833, 'price of private': 675542, 'of private medical': 588448, 'private medical good': 678949, 'medical good and': 526195, 'and service relating': 71313, 'service relating to': 752761, 'relating to testing': 708657, 'to testing prevention': 916406, 'testing prevention and': 839615, 'prevention and treatment': 671843, 'and treatment of': 74440, '19 and and': 4986, 'and and it': 58134, 'and it associated': 65485, 'it associated disease': 456606, 'associated disease during': 96922, 'disease during the': 245130, 'during the national': 263157, 'the national disaster': 861291, 'national disaster period': 552480, 'to small': 914754, 'small office': 775044, 'office minimize': 595489, 'risk with': 724025, 'with mandatory': 999374, 'mandatory mask': 513045, 'mask use': 519464, 'use sanitizing': 949556, 'sanitizing station': 736513, 'station at': 796348, 'every door': 285877, 'door mandatory': 255644, 'mandatory cleaning': 513031, 'crew but': 216684, 'but open': 146701, 'economy soon': 268224, 'soon possible': 785796, 'supermarket but not': 819453, 'but not safe': 146559, 'not safe to': 571421, 'go to small': 354360, 'to small office': 914761, 'small office minimize': 775045, 'office minimize the': 595491, 'minimize the risk': 533130, 'the risk with': 865888, 'risk with mandatory': 724026, 'with mandatory mask': 999375, 'mandatory mask use': 513046, 'mask use sanitizing': 519468, 'use sanitizing station': 949557, 'sanitizing station at': 736514, 'station at every': 796349, 'at every door': 98567, 'every door mandatory': 285878, 'door mandatory cleaning': 255645, 'mandatory cleaning crew': 513032, 'cleaning crew but': 180929, 'crew but open': 216685, 'but open up': 146703, 'open up the': 612638, 'up the economy': 946167, 'the economy soon': 854019, 'economy soon possible': 268225, 'underestimated': 940430, 'invented': 443614, 'crisis toiletpaper': 218262, 'become one': 120089, 'world most': 1009804, 'most underestimated': 542833, 'underestimated cultural': 940431, 'cultural asset': 220268, 'asset this': 96478, 'video clip': 956673, 'clip ha': 182356, 'gone viral': 356439, 'viral when': 957638, 'paper invented': 640343, 'invented and': 443615, 'did people': 240756, 'use before': 949070, 'the crisis toiletpaper': 852466, 'crisis toiletpaper ha': 218263, 'ha become one': 369688, 'become one of': 120091, 'the world most': 871915, 'world most underestimated': 1009809, 'most underestimated cultural': 542834, 'underestimated cultural asset': 940432, 'cultural asset this': 220269, 'asset this video': 96479, 'this video clip': 890977, 'video clip ha': 956674, 'clip ha gone': 182357, 'ha gone viral': 370735, 'gone viral when': 356441, 'viral when wa': 957640, 'when wa toilet': 984409, 'toilet paper invented': 921321, 'paper invented and': 640344, 'invented and what': 443616, 'and what did': 75459, 'what did people': 981317, 'did people use': 240760, 'people use before': 650065, 'use before that': 949071, 'blossom': 133284, 'only white': 611474, 'white wine': 987923, 'wine left': 995832, 'wa blossom': 961723, 'blossom hill': 133287, 'hill blossom': 396462, 'hill this': 396490, 'shit just': 759158, 'got real': 358807, 'the only white': 862357, 'only white wine': 611475, 'white wine left': 987924, 'wine left in': 995833, 'supermarket wa blossom': 823692, 'wa blossom hill': 961724, 'blossom hill blossom': 133288, 'hill blossom hill': 396463, 'blossom hill this': 133290, 'hill this shit': 396491, 'this shit just': 890084, 'shit just got': 759160, 'just got real': 468868, 'thursday to': 895440, 'shopper down': 761484, 'down during': 256708, 'sydney supermarket on': 830715, 'supermarket on thursday': 821737, 'on thursday to': 604681, 'thursday to try': 895441, 'calm shopper down': 156797, 'shopper down during': 761485, 'down during the': 256710, 'the outbreak in': 862647, 'outbreak in australia': 628336, 'cashappfriday': 166392, 'cashtag': 166716, 'away 100': 105757, '00 this': 529, 'this cashappfriday': 886716, 'cashappfriday rt': 166395, 'rt this': 726825, 'your cashtag': 1023163, 'cashtag or': 166719, 'or cashtag': 614682, 'cashtag for': 166717, 'for chance': 320008, 'receive 250': 703433, '250 in': 16018, 'or bitcoin': 614558, 'bitcoin must': 131827, 'be following': 114891, 'to qualify': 912630, 'qualify no': 691733, 'purchase necessary': 689561, 'necessary void': 554139, 'void where': 960028, 'where prohibited': 985135, 'prohibited official': 683428, 'official rule': 595896, 'giving away 100': 351239, 'away 100 00': 105758, '100 00 this': 1798, '00 this cashappfriday': 530, 'this cashappfriday rt': 886717, 'cashappfriday rt this': 166396, 'rt this with': 726830, 'with your cashtag': 1002181, 'your cashtag or': 1023164, 'cashtag or cashtag': 166720, 'or cashtag for': 614683, 'cashtag for chance': 166718, 'for chance to': 320009, 'chance to receive': 171812, 'to receive 250': 912908, 'receive 250 in': 703434, '250 in cash': 16019, 'cash or bitcoin': 166293, 'or bitcoin must': 614559, 'bitcoin must be': 131828, 'must be following': 546505, 'be following to': 114892, 'following to qualify': 312927, 'to qualify no': 912631, 'qualify no purchase': 691734, 'no purchase necessary': 565250, 'purchase necessary void': 689562, 'necessary void where': 554140, 'void where prohibited': 960029, 'where prohibited official': 985136, 'prohibited official rule': 683429, 'telecommute': 836707, 'remotework': 710786, 'will social': 994880, 'distancing accelerate': 246945, 'headquarters socialdistancing': 386035, 'workfromhome telecommute': 1008441, 'telecommute remotework': 836709, 'will social distancing': 994881, 'social distancing accelerate': 779545, 'distancing accelerate trend': 246946, 'home headquarters socialdistancing': 401351, 'headquarters socialdistancing workfromhome': 386036, 'socialdistancing workfromhome telecommute': 780883, 'workfromhome telecommute remotework': 1008442, 'tie up': 895750, 'with courier': 997833, 'courier company': 211801, 'and step': 72344, 'tie up with': 895751, 'up with courier': 946625, 'with courier company': 997834, 'courier company and': 211802, 'company and step': 190392, 'and step up': 72346, 'step up your': 799700, 'up your online': 946744, 'shopping but for': 762245, 'those who cannot': 892618, 'who cannot shop': 988430, 'healthinsurance': 387466, 'politicaleconomy': 663694, 'medicareforall': 526607, 'bullshitjobs': 142522, 'unemployment in': 941224, '20 employer': 13045, 'employer based': 274491, 'based healthinsurance': 111610, 'healthinsurance is': 387471, 'is clearly': 446553, 'clearly failure': 181511, 'failure is': 296275, 'highlighting already': 396008, 'already exposed': 47332, 'exposed crisis': 292842, 'our politicaleconomy': 624383, 'politicaleconomy need': 663695, 'for medicareforall': 323392, 'medicareforall healthcare': 526608, 'healthcare housing': 387143, 'housing consumer': 407064, 'spending bullshitjobs': 788759, 'bullshitjobs etc': 142523, 'unemployment in the': 941227, 'in the may': 429347, 'the may hit': 860316, 'may hit 20': 521274, 'hit 20 employer': 398095, '20 employer based': 13046, 'employer based healthinsurance': 274493, 'based healthinsurance is': 111611, 'healthinsurance is clearly': 387472, 'is clearly failure': 446555, 'clearly failure is': 181512, 'failure is highlighting': 296276, 'is highlighting already': 448460, 'highlighting already exposed': 396009, 'already exposed crisis': 47333, 'exposed crisis of': 292843, 'crisis of our': 217787, 'of our politicaleconomy': 587539, 'our politicaleconomy need': 624384, 'politicaleconomy need for': 663696, 'need for medicareforall': 554854, 'for medicareforall healthcare': 323393, 'medicareforall healthcare housing': 526609, 'healthcare housing consumer': 387144, 'housing consumer spending': 407066, 'consumer spending bullshitjobs': 199046, 'spending bullshitjobs etc': 788760, 'gotta have': 359081, 'have sense': 382464, 'humor during': 410864, 'time flight': 896672, 'flight haha': 310480, 'haha price': 373898, 'gotta have sense': 359082, 'have sense of': 382465, 'of humor during': 584894, 'humor during these': 410867, 'these time flight': 880839, 'time flight haha': 896673, 'flight haha price': 310481, 'farmar': 299221, 'to so': 914799, 'many farmer': 514061, 'many problem': 514594, 'with society': 1000828, 'society because': 781163, 'when farmer': 983409, 'in market': 425138, 'coming le': 188125, 'much wastage': 545429, 'our farmar': 623018, 'due to so': 261956, 'to so many': 914802, 'so many farmer': 777659, 'many farmer are': 514062, 'farmer are suffering': 299296, 'are suffering from': 90629, 'suffering from so': 817312, 'from so many': 337325, 'so many problem': 777692, 'many problem with': 514595, 'problem with society': 679759, 'with society because': 1000829, 'society because when': 781164, 'because when farmer': 119828, 'when farmer are': 983410, 'farmer are coming': 299271, 'are coming in': 85436, 'coming in market': 188095, 'in market the': 425148, 'market the people': 517198, 'people are coming': 646947, 'are coming le': 85439, 'coming le and': 188126, 'le and farmer': 482843, 'and farmer are': 62699, 'farmer are not': 299286, 'not getting their': 569632, 'getting their price': 349370, 'their price and': 874375, 'price and so': 672543, 'and so much': 71847, 'so much wastage': 777824, 'much wastage of': 545430, 'wastage of vegetable': 968059, 'of vegetable in': 592761, 'vegetable in our': 954012, 'our market so': 623869, 'market so please': 517077, 'so please think': 778029, 'think about our': 885094, 'about our farmar': 25889, 'ironic': 444929, 'most ironic': 542457, 'ironic part': 444935, 'go coronacrisis': 353427, 'the most ironic': 861003, 'most ironic part': 542458, 'ironic part of': 444936, 'part of all': 642328, 'of this is': 591995, 'this is that': 888423, 'time low but': 897162, 'low but there': 505164, 'is literally no': 449392, 'literally no where': 495049, 'where to go': 985307, 'to go coronacrisis': 906786, 'generationz': 345676, 'thedumbestgeneration': 872321, 'theevilgeneration': 872331, 'from generation': 335610, 'who eats': 988675, 'eats laundry': 266375, 'laundry detergent': 482106, 'detergent and': 239387, 'funny to': 341804, 'lick ice': 488201, 'cream for': 215546, 'sale generationz': 732242, 'generationz thedumbestgeneration': 345677, 'thedumbestgeneration theevilgeneration': 872322, 'what would you': 982647, 'would you expect': 1012410, 'you expect from': 1018477, 'expect from generation': 290646, 'from generation who': 335611, 'generation who eats': 345649, 'who eats laundry': 988676, 'eats laundry detergent': 266376, 'laundry detergent and': 482107, 'detergent and think': 239389, 'and think it': 73965, 'think it funny': 885331, 'it funny to': 458192, 'funny to lick': 341806, 'to lick ice': 909236, 'lick ice cream': 488202, 'ice cream for': 412652, 'cream for sale': 215548, 'for sale generationz': 325316, 'sale generationz thedumbestgeneration': 732243, 'generationz thedumbestgeneration theevilgeneration': 345678, 'esteemed': 282216, 'ethiopianairlines': 283119, 'inform our': 437662, 'our esteemed': 622928, 'esteemed customer': 282217, 'stopped flight': 805701, 'flight to': 310544, '30 country': 17008, 'covid19 virus': 214396, 'virus ethiopianairlines': 958163, 'like to inform': 491600, 'to inform our': 908386, 'inform our esteemed': 437663, 'our esteemed customer': 622929, 'esteemed customer that': 282218, 'customer that we': 222923, 'we have stopped': 971953, 'have stopped flight': 382786, 'stopped flight to': 805702, 'flight to 30': 310545, 'to 30 country': 899667, '30 country due': 17009, 'due to covid19': 261746, 'to covid19 virus': 903676, 'covid19 virus ethiopianairlines': 214397, 'q3': 691434, 'normalization': 567460, 'allocated': 45874, 'q3 we': 691435, 'some normalization': 783361, 'normalization begin': 567461, 'to fade': 905601, 'fade back': 296056, 'back rent': 107252, 'and loan': 66282, 'loan begin': 497400, 'paid back': 633976, 'back pulling': 107240, 'pulling from': 688933, 'discretionary fund': 244765, 'fund early': 341396, 'and mid': 66991, 'mid career': 530556, 'career worker': 164366, 'worker had': 1007078, 'had allocated': 372823, 'allocated labor': 45879, 'market begin': 516099, 'to rebound': 912899, 'rebound but': 703301, 'but supply': 147226, 'of labor': 585693, 'labor is': 478416, 'is expanded': 447637, 'expanded wage': 290497, 'wage fall': 963857, 'q3 we begin': 691436, 'begin to see': 123591, 'see some normalization': 745717, 'some normalization begin': 783362, 'normalization begin to': 567462, 'begin to fade': 123582, 'to fade back': 905602, 'fade back rent': 296057, 'back rent and': 107253, 'rent and loan': 711036, 'and loan begin': 66283, 'loan begin to': 497401, 'begin to be': 123577, 'to be paid': 901431, 'be paid back': 116332, 'paid back pulling': 633977, 'back pulling from': 107241, 'pulling from the': 688934, 'the consumer discretionary': 851524, 'consumer discretionary fund': 197215, 'discretionary fund early': 244766, 'fund early and': 341397, 'early and mid': 264543, 'and mid career': 66992, 'mid career worker': 530557, 'career worker had': 164367, 'worker had allocated': 1007079, 'had allocated labor': 372824, 'allocated labor market': 45880, 'labor market begin': 478425, 'market begin to': 516100, 'begin to rebound': 123589, 'to rebound but': 912900, 'rebound but supply': 703303, 'but supply of': 147228, 'supply of labor': 825633, 'of labor is': 585694, 'labor is expanded': 478417, 'is expanded wage': 447638, 'expanded wage fall': 290498, 'opening tomorrow': 612938, 'tomorrow those': 924204, 'those store': 892494, 'personnel are': 653083, 'in harm': 423554, 'harm way': 378423, 'way covid': 969532, 'be played': 116437, 'played with': 659294, 'why are at': 990762, 'are at retail': 84679, 'retail store still': 718705, 'store still opening': 810384, 'still opening tomorrow': 800987, 'opening tomorrow those': 612939, 'tomorrow those store': 924205, 'those store personnel': 892496, 'store personnel are': 809517, 'personnel are being': 653084, 'put in harm': 690617, 'in harm way': 423556, 'harm way covid': 378424, 'way covid 19': 969533, 'is not to': 450210, 'to be played': 901442, 'be played with': 116438, 'smashing': 775572, 'bowtie': 136989, 'goingout': 355831, 've reached': 953472, 'this isolation': 888501, 'isolation that': 455450, 'out feel': 626063, 'feel should': 302838, 'be putting': 116645, 'putting on': 691177, 'my sunday': 550261, 'sunday clothes': 818180, 'clothes and': 184139, 'and smashing': 71796, 'smashing bowtie': 775573, 'bowtie because': 136992, 'because bowtie': 118958, 'bowtie are': 136990, 'been cool': 120891, 'cool goingout': 203011, 've reached the': 953473, 'point in this': 662527, 'in this isolation': 429967, 'this isolation that': 888502, 'isolation that going': 455452, 'supermarket is going': 821093, 'is going out': 448098, 'going out feel': 355371, 'out feel should': 626064, 'feel should be': 302839, 'should be putting': 765705, 'be putting on': 116647, 'putting on my': 691178, 'on my sunday': 602322, 'my sunday clothes': 550262, 'sunday clothes and': 818181, 'clothes and smashing': 184140, 'and smashing bowtie': 71797, 'smashing bowtie because': 775574, 'bowtie because bowtie': 136993, 'because bowtie are': 118959, 'bowtie are and': 136991, 'are and always': 84542, 'and always have': 57996, 'always have been': 49609, 'have been cool': 379497, 'been cool goingout': 120892, 'hell make': 389034, 'make toiletpaper': 510663, 'toiletpaper sale': 922431, 'sale hit': 732280, 'hit worldwide': 398515, 'worldwide you': 1010444, 'eat it': 265956, 'it guess': 458364, 'guess 19': 367962, 'is primarily': 451024, 'primarily not': 678045, 'not diarrhea': 569012, 'diarrhea wtf': 240393, 'wtf toiletpaperpanic': 1013330, 'the hell make': 857245, 'hell make toiletpaper': 389035, 'make toiletpaper sale': 510664, 'toiletpaper sale hit': 922432, 'sale hit worldwide': 732283, 'hit worldwide you': 398516, 'worldwide you cannot': 1010445, 'you cannot eat': 1017854, 'cannot eat it': 161769, 'eat it guess': 265963, 'it guess 19': 458365, 'guess 19 is': 367963, '19 is primarily': 8024, 'is primarily not': 451028, 'primarily not diarrhea': 678046, 'not diarrhea wtf': 569013, 'diarrhea wtf toiletpaperpanic': 240394, 'wtf toiletpaperpanic toiletpapercrisis': 1013331, 'eradicated': 280100, 'babawiin': 106547, 'nagasto': 551392, 'noong': 566878, 'other health': 620346, 'health expense': 386415, 'expense suppose': 291209, 'suppose covid': 827304, 'will had': 993589, 'already eradicated': 47318, 'eradicated worldwide': 280103, 'worldwide it': 1010387, 'all sum': 44533, 'sum up': 817878, 'up into': 945215, 'of tax': 590607, 'tax babawiin': 834935, 'babawiin ni': 106548, 'ni govt': 562300, 'govt ang': 361077, 'ang nagasto': 76288, 'nagasto noong': 551393, 'noong covid': 566879, 'covid price': 214209, 'to tax': 916307, 'tax increase': 835014, 'private business': 678867, 'aftermath of free': 36656, 'of free mass': 583919, 'mass testing and': 519880, 'testing and other': 839439, 'and other health': 68337, 'other health expense': 620348, 'health expense suppose': 386416, 'expense suppose covid': 291210, 'suppose covid 19': 827305, '19 will had': 12093, 'will had been': 993590, 'had been already': 372884, 'been already eradicated': 120647, 'already eradicated worldwide': 47319, 'eradicated worldwide it': 280104, 'worldwide it would': 1010389, 'it would all': 462579, 'would all sum': 1011502, 'all sum up': 44534, 'sum up into': 817879, 'up into an': 945216, 'into an increase': 442394, 'increase of tax': 432946, 'of tax babawiin': 590608, 'tax babawiin ni': 834936, 'babawiin ni govt': 106549, 'ni govt ang': 562301, 'govt ang nagasto': 361078, 'ang nagasto noong': 76289, 'nagasto noong covid': 551394, 'noong covid price': 566880, 'covid price of': 214210, 'due to tax': 261988, 'to tax increase': 916308, 'tax increase for': 835015, 'increase for private': 432786, 'for private business': 324749, 'fapri': 298658, 'univ': 942336, 'pfnews': 653933, 'fapri expects': 298661, 'expects covid': 291073, 'cut crop': 223286, 'crop price': 218938, '10 in': 1475, '21 the': 15027, 'agricultural policy': 38897, 'policy research': 663482, 'research institute': 713771, 'institute fapri': 440415, 'fapri at': 298659, 'the univ': 870427, 'univ of': 942339, 'of mo': 586589, 'mo put': 534862, 'together some': 920941, 'some analysis': 782288, 'analysis on': 57071, 'ag sector': 36839, 'sector pfnews': 744297, 'fapri expects covid': 298662, 'expects covid 19': 291074, '19 to cut': 11418, 'to cut crop': 903871, 'cut crop price': 223287, 'crop price to': 218939, 'price to 10': 676953, 'to 10 in': 899426, '10 in 2020': 1476, '2020 21 the': 14108, '21 the food': 15028, 'the food agricultural': 855528, 'food agricultural policy': 313059, 'agricultural policy research': 38901, 'policy research institute': 663483, 'research institute fapri': 713773, 'institute fapri at': 440416, 'fapri at the': 298660, 'at the univ': 101135, 'the univ of': 870428, 'univ of mo': 942341, 'of mo put': 586590, 'mo put together': 534863, 'put together some': 690947, 'together some analysis': 920942, 'some analysis on': 782290, 'analysis on the': 57072, 'on the ag': 603961, 'the ag sector': 848430, 'ag sector pfnews': 36840, 'nginews': 561826, 'withering': 1002293, 'in shape': 427858, 'shape but': 754826, 'easy if': 265714, 'not cooperate': 568879, 'cooperate nginews': 203135, 'nginews survival': 561827, 'survival of': 829066, 'sector said': 744320, 'coronavirus withering': 207094, 'withering wti': 1002294, 'wti price': 1013402, 'the energy sector': 854326, 'energy sector is': 276581, 'sector is doing': 744244, 'is doing what': 447298, 'doing what it': 252845, 'what it can': 981744, 'it can to': 457035, 'keep the bottom': 472026, 'the bottom line': 849909, 'bottom line in': 136411, 'line in shape': 493202, 'in shape but': 427859, 'shape but it': 754827, 'but it not': 146145, 'it not going': 459880, 'to be easy': 901227, 'be easy if': 114630, 'easy if price': 265715, 'if price do': 414685, 'do not cooperate': 249708, 'not cooperate nginews': 568880, 'cooperate nginews survival': 203136, 'nginews survival of': 561828, 'survival of oil': 829067, 'of oil gas': 587182, 'oil gas sector': 596830, 'gas sector said': 344087, 'sector said at': 744321, 'said at risk': 730987, 'risk from coronavirus': 723570, 'from coronavirus withering': 335027, 'coronavirus withering wti': 207095, 'withering wti price': 1002295, 'everyone good': 286948, 'good human': 357191, 'and humble': 64867, 'humble muslim': 410818, 'muslim until': 546444, 'challenge yesterday': 171602, 'yesterday fda': 1015729, 'approved chloroquine': 83143, 'chloroquine the': 177632, 'treatment drug': 931064, 'drug for': 260952, 'price doubled': 673503, 'doubled for': 256110, 'it either': 457777, 'either you': 270417, 'everyone good human': 286950, 'good human and': 357192, 'human and humble': 410407, 'and humble muslim': 64868, 'humble muslim until': 410819, 'muslim until they': 546445, 'until they face': 943889, 'they face the': 882087, 'face the challenge': 294791, 'the challenge yesterday': 850655, 'challenge yesterday fda': 171603, 'yesterday fda approved': 1015730, 'fda approved chloroquine': 300831, 'approved chloroquine the': 83144, 'chloroquine the treatment': 177634, 'the treatment drug': 869943, 'treatment drug for': 931065, 'drug for and': 260953, 'for and today': 319347, 'today it price': 919745, 'it price doubled': 460462, 'price doubled for': 673504, 'doubled for no': 256112, 'for no reason': 323893, 'no reason it': 565291, 'reason it either': 702948, 'it either you': 457781, 'either you buy': 270418, 'buy the drug': 149293, 'the drug for': 853734, 'drug for double': 260954, 'for double price': 320839, 'double price or': 256039, 'price or you': 675797, 'or you don': 617859, 'crisis test': 218136, 'retailer leading': 719232, 'to temporary': 916367, 'closure at': 183854, 'like apple': 489819, 'and nike': 67592, 'the crisis test': 852456, 'crisis test all': 218137, 'test all retailer': 838907, 'all retailer leading': 44192, 'retailer leading to': 719233, 'leading to temporary': 483777, 'to temporary store': 916369, 'store closure at': 807085, 'closure at company': 183855, 'at company like': 98303, 'company like apple': 190842, 'like apple and': 489820, 'apple and nike': 82309, 'microban multi': 530435, 'multi purpose': 545665, 'purpose cleaner': 690106, 'cleaner qt': 180824, 'qt sanitizer': 691616, 'microban multi purpose': 530436, 'multi purpose cleaner': 545666, 'purpose cleaner qt': 690107, 'cleaner qt sanitizer': 180825, 'qt sanitizer disinfectant': 691617, 'foodbanks are': 317810, 'foodbanks are struggling': 317816, 'meet demand during': 527463, 'weaver': 974929, 'to port': 911896, 'port house': 664883, 'house grill': 406333, 'grill and': 363942, 'and weaver': 75362, 'weaver liquor': 974930, 'liquor for': 494168, 'the combined': 851174, 'combined effort': 187124, 'local volunteer': 498680, 'volunteer fire': 960261, 'fire company': 308065, 'with homemade': 998865, 'so awesome': 776570, 'you to port': 1021821, 'to port house': 911897, 'port house grill': 664884, 'house grill and': 406334, 'grill and weaver': 363943, 'and weaver liquor': 75363, 'weaver liquor for': 974931, 'liquor for the': 494169, 'for the combined': 326350, 'the combined effort': 851175, 'combined effort to': 187125, 'effort to provide': 269639, 'to provide our': 912420, 'provide our local': 686418, 'our local volunteer': 623791, 'local volunteer fire': 498681, 'volunteer fire company': 960262, 'fire company and': 308066, 'company and with': 190397, 'and with homemade': 75773, 'with homemade hand': 998866, 'sanitizer so awesome': 735748, 'floridian': 311022, 'no employee': 564108, 'employee wa': 274380, 'glove how': 352723, 'many floridian': 514071, 'floridian must': 311033, 'must suffer': 546931, 'suffer or': 817224, 'or die': 614961, 'die bc': 241301, 'your lack': 1024584, 'for florida': 321528, 'florida voter': 311002, 'store no employee': 809075, 'no employee wa': 564110, 'employee wa wearing': 274383, 'or glove how': 615474, 'glove how many': 352724, 'how many floridian': 408259, 'many floridian must': 514073, 'floridian must suffer': 311035, 'must suffer or': 546933, 'suffer or die': 817225, 'or die bc': 614963, 'die bc of': 241302, 'bc of your': 113271, 'of your lack': 593493, 'your lack of': 1024585, 'lack of concern': 478610, 'concern for florida': 192972, 'for florida voter': 321532, 'colonial': 186707, 'opportunist': 613552, 'boycotthul at': 137378, 'global fmcg': 351942, 'fmcg giant': 311733, 'giant hul': 349801, 'hul ha': 410347, 'it soap': 461141, 'soap upto': 779144, 'upto 10': 947920, '10 just': 1492, 'of rising': 589120, 'demand must': 235909, 'must take': 546937, 'this colonial': 886799, 'colonial opportunist': 186708, 'opportunist thank': 613557, 'you ji': 1019405, 'ji for': 465442, 'raising voice': 696158, 'voice of': 959990, 'boycotthul at the': 137379, 'the global fmcg': 856303, 'global fmcg giant': 351943, 'fmcg giant hul': 311734, 'giant hul ha': 349802, 'hul ha increased': 410349, 'price on it': 675687, 'on it soap': 601686, 'it soap upto': 461143, 'soap upto 10': 779145, 'upto 10 just': 947921, '10 just to': 1494, 'just to take': 470110, 'advantage of rising': 33030, 'of rising demand': 589121, 'rising demand must': 723200, 'demand must take': 235911, 'must take action': 546938, 'action against this': 29939, 'against this colonial': 37696, 'this colonial opportunist': 886800, 'colonial opportunist thank': 186709, 'opportunist thank you': 613558, 'thank you ji': 841759, 'you ji for': 1019406, 'ji for raising': 465443, 'for raising voice': 324955, 'raising voice of': 696159, 'voice of consumer': 959991, 'shopping consumer': 762393, 'yourself from grocery': 1026616, 'from grocery shopping': 335700, 'grocery shopping consumer': 365008, 'shopping consumer report': 762395, 'ke requires': 471237, 'requires all': 713453, 'all liquefied': 43386, 'lpg trader': 506328, 'behave responsibly': 123788, 'responsibly and': 716076, 'exploit consumer': 292334, 'hiking lpg': 396381, 'country dc': 210571, 'ke requires all': 471238, 'requires all liquefied': 713454, 'all liquefied petroleum': 43387, 'gas lpg trader': 343896, 'lpg trader to': 506329, 'trader to behave': 928779, 'to behave responsibly': 901724, 'behave responsibly and': 123790, 'responsibly and not': 716078, 'not to exploit': 572151, 'to exploit consumer': 905492, 'exploit consumer by': 292335, 'consumer by hiking': 196716, 'by hiking lpg': 152808, 'hiking lpg price': 396382, 'lpg price in': 506323, 'wake of corona': 964593, 'corona virus covid': 204297, 'the country dc': 852061, 'decor': 231522, 'is round': 451576, 'small home': 774991, 'and decor': 61027, 'decor shop': 231526, 'online while': 609722, 'while staying': 987314, 'also keep': 48447, 'it updated': 461974, 'more shop': 540377, 'show our': 767082, 'our love': 623813, 'the latest story': 859148, 'latest story on': 481557, 'story on is': 812087, 'on is round': 601634, 'is round up': 451577, 'up of small': 945505, 'of small home': 589787, 'small home and': 774992, 'home and decor': 400630, 'and decor shop': 61028, 'decor shop that': 231527, 'shop that have': 760893, 'that have closed': 844201, 'to but you': 902159, 'can still support': 159797, 'still support online': 801259, 'support online while': 826711, 'online while staying': 609724, 'while staying at': 987315, 'home we ll': 402454, 'we ll also': 972232, 'll also keep': 496548, 'also keep it': 48449, 'keep it updated': 471625, 'it updated with': 461975, 'updated with more': 947466, 'with more shop': 999563, 'more shop to': 540379, 'shop to show': 760955, 'to show our': 914569, 'show our love': 767086, 'be trillion': 117818, 'trillion cover': 931972, 'cover medical': 212253, 'medical debt': 526123, 'debt student': 230569, 'student debt': 814664, 'debt except': 230479, 'for car': 319930, 'to be trillion': 901602, 'be trillion cover': 117819, 'trillion cover medical': 931973, 'cover medical debt': 212254, 'medical debt student': 526127, 'debt student debt': 230570, 'student debt and': 814665, 'debt and consumer': 230416, 'consumer debt except': 197078, 'debt except for': 230480, 'except for car': 289153, 'for car and': 319931, 'car and mortgage': 163000, 'and mortgage relief': 67256, 'deadline': 229210, 'sep': 751057, 'tax filing': 834984, 'filing deadline': 305423, 'deadline extends': 229216, 'extends to': 293267, 'to june': 908711, 'june 1st': 467986, '1st 2020': 12705, 'pay until': 645204, 'until sep': 943824, 'sep 1st': 751058, 'chain working': 171267, 'well and': 978013, 'and fair': 62617, 'maintained so': 509087, 'so buy': 776670, 'buy sensibly': 149160, 'tax filing deadline': 834985, 'filing deadline extends': 305424, 'deadline extends to': 229217, 'extends to june': 293269, 'to june 1st': 908712, 'june 1st 2020': 467987, '1st 2020 will': 12707, '2020 will not': 14725, 'to pay until': 911571, 'pay until sep': 645205, 'until sep 1st': 943825, 'sep 1st 2020': 751059, '1st 2020 on': 12706, '2020 on grocery': 14482, 'supply chain working': 825071, 'chain working well': 171268, 'working well and': 1009039, 'well and fair': 978014, 'and fair price': 62618, 'fair price will': 296375, 'be maintained so': 115877, 'maintained so buy': 509088, 'so buy sensibly': 776671, 'supportindies': 827100, 'indiebookstores': 435064, 'publisher are': 688716, 'finding way': 307570, 'discount online': 244517, 'online promotion': 608813, 'of indie': 585129, 'indie book': 435058, 'book store': 134602, 'store virtual': 811069, 'virtual festival': 957741, 'festival author': 303593, 'author supportindies': 103647, 'supportindies indiebookstores': 827101, 'indiebookstores by': 435065, 'publisher are finding': 688717, 'are finding way': 86578, 'finding way to': 307571, 'help out during': 390249, 'out during covid': 625987, '19 discount online': 6561, 'discount online promotion': 244518, 'online promotion of': 608814, 'promotion of indie': 683872, 'of indie book': 585130, 'indie book store': 435059, 'book store virtual': 134603, 'store virtual festival': 811070, 'virtual festival author': 957742, 'festival author supportindies': 303594, 'author supportindies indiebookstores': 103648, 'supportindies indiebookstores by': 827102, 'indiebookstores by shopping': 435066, 'pressbriefing': 671091, 'pressbriefing would': 671094, 'really happening': 702255, 'in nh': 425861, 'nh hospital': 561978, 'hospital from': 404416, 'from actual': 334389, 'actual doctor': 30641, 'doctor who': 251157, 'keep patient': 471778, 'patient alive': 644125, 'alive not': 41823, 'of matt': 586302, 'matt ve': 520534, 'had covid19': 373000, 'covid19 hancock': 214308, 'pressbriefing would rather': 671095, 'rather have the': 697470, 'have the truth': 383039, 'truth about what': 934381, 'about what is': 26888, 'is really happening': 451301, 'really happening in': 702256, 'happening in nh': 377365, 'in nh hospital': 425862, 'nh hospital from': 561979, 'hospital from actual': 404417, 'from actual doctor': 334390, 'actual doctor who': 30642, 'doctor who are': 251158, 'are fighting to': 86550, 'fighting to keep': 305149, 'to keep patient': 908825, 'keep patient alive': 471779, 'patient alive not': 644126, 'alive not the': 41824, 'not the like': 572011, 'like of matt': 490903, 'of matt ve': 586303, 'matt ve had': 520535, 've had covid19': 953219, 'had covid19 hancock': 373001, 'snapchat': 776128, 'installs': 440060, 'snapchatads': 776137, 'socialmediaads': 781104, 'add snapchat': 31483, 'snapchat to': 776135, 'marketing campaign': 517544, 'campaign in': 157229, 'new stay': 559652, 'home economy': 401124, 'economy snapchat': 268220, 'snapchat is': 776131, 'reporting increase': 712700, 'in installs': 424114, 'installs for': 440063, 'for app': 319463, 'app ad': 81667, 'ad online': 31135, 'shopping learn': 763149, 'more snapchatads': 540409, 'snapchatads snapchat': 776138, 'snapchat smm': 776133, 'smm socialmediaads': 775834, 'is it time': 449067, 'time to add': 897941, 'to add snapchat': 900066, 'add snapchat to': 31484, 'snapchat to your': 776136, 'to your marketing': 919000, 'your marketing campaign': 1024778, 'marketing campaign in': 517545, 'campaign in the': 157230, 'the new stay': 861561, 'new stay at': 559653, 'at home economy': 98983, 'home economy snapchat': 401126, 'economy snapchat is': 268221, 'snapchat is reporting': 776132, 'is reporting increase': 451441, 'reporting increase in': 712701, 'increase in installs': 432841, 'in installs for': 424115, 'installs for app': 440064, 'for app ad': 319464, 'app ad online': 81668, 'ad online shopping': 31136, 'online shopping learn': 609169, 'shopping learn more': 763150, 'learn more snapchatads': 484038, 'more snapchatads snapchat': 540410, 'snapchatads snapchat smm': 776139, 'snapchat smm socialmediaads': 776134, 'mask wa': 519488, 'wa weird': 963684, 'weird seeing': 977782, 'seeing others': 746399, 'others wearing': 621767, 'mask shopping': 519265, 'normal sanitizing': 567300, 'sanitizing everything': 736470, 'before putting': 123028, 'it away': 456650, 'away it': 105952, 'it weird': 462300, 'time quarantinelife': 897543, 'quarantinelife azliving': 692933, 'around the grocery': 93541, 'wearing mask wa': 974723, 'mask wa weird': 519492, 'wa weird seeing': 963685, 'weird seeing others': 977783, 'seeing others wearing': 746400, 'others wearing mask': 621768, 'wearing mask shopping': 974711, 'mask shopping normal': 519266, 'shopping normal sanitizing': 763344, 'normal sanitizing everything': 567301, 'sanitizing everything before': 736471, 'everything before putting': 287709, 'before putting it': 123030, 'putting it away': 691153, 'it away it': 456653, 'away it weird': 105957, 'it weird time': 462304, 'weird time quarantinelife': 977806, 'time quarantinelife azliving': 897544, 'read last': 700393, 'night grocery': 563005, 'stocking and': 803541, 'sanitizing at': 736464, 'opening at': 612801, 'at 7am': 97746, '7am to': 22438, 'allow only': 46018, 'only their': 611284, 'their 65': 872441, '65 customer': 21349, 'one hour': 606433, 'their younger': 875257, 'younger customer': 1022682, 'customer think': 222941, 'read last night': 700394, 'last night grocery': 480376, 'night grocery store': 563006, 'store in houston': 808315, 'houston is stocking': 407207, 'is stocking and': 452339, 'stocking and sanitizing': 803543, 'and sanitizing at': 70911, 'sanitizing at night': 736465, 'at night and': 99881, 'night and opening': 562945, 'and opening at': 68172, 'opening at 7am': 612802, 'at 7am to': 97751, '7am to allow': 22440, 'to allow only': 900350, 'allow only their': 46019, 'only their 65': 611285, 'their 65 customer': 872442, '65 customer in': 21350, 'customer in to': 222512, 'in to shop': 430137, 'shop for what': 760210, 'for what they': 327807, 'they need for': 882734, 'need for one': 554859, 'for one hour': 324085, 'one hour before': 606435, 'hour before opening': 405460, 'before opening the': 122978, 'opening the store': 612912, 'store to their': 810821, 'to their younger': 917282, 'their younger customer': 875258, 'younger customer think': 1022683, 'customer think that': 222943, 'that is great': 844592, 'is great thing': 448209, 'great thing to': 363049, 'idtheft': 413718, 'fpm2020': 330830, 'while adjusting': 986570, 'yourself checking': 1026558, 'out digital': 625956, 'digital shopping': 242646, 'cart more': 165335, 'before follow': 122805, 'these simple': 880695, 'simple tip': 770124, 'with confidence': 997725, 'confidence idtheft': 193891, 'idtheft fpm2020': 413719, 'while adjusting to': 986571, 'adjusting to the': 32372, 'to the evolving': 916686, 'the evolving situation': 854650, 'evolving situation of': 288585, 'situation of covid': 772410, '19 you may': 12270, 'may find yourself': 521194, 'find yourself checking': 307412, 'yourself checking out': 1026559, 'checking out digital': 174839, 'out digital shopping': 625957, 'digital shopping cart': 242648, 'shopping cart more': 762308, 'cart more than': 165336, 'ever before follow': 285223, 'before follow these': 122806, 'follow these simple': 312558, 'these simple tip': 880697, 'simple tip to': 770125, 'tip to shop': 898939, 'online with confidence': 609743, 'with confidence idtheft': 997726, 'confidence idtheft fpm2020': 193892, 'that tesco': 846634, 'own employee': 631963, 'like leyton': 490638, 'line dealing': 493047, '19 limited': 8338, 'limited supply': 492731, 'distributing food': 248074, 'bit help': 131579, 'especially now that': 280564, 'now that tesco': 576019, 'that tesco own': 846635, 'tesco own employee': 838776, 'own employee in': 631964, 'employee in store': 273970, 'in store like': 428426, 'store like leyton': 808729, 'like leyton and': 490639, 'front line dealing': 338566, 'line dealing with': 493048, 'covid 19 limited': 213357, '19 limited supply': 8339, 'limited supply and': 492732, 'supply and distributing': 824711, 'and distributing food': 61520, 'distributing food to': 248078, 'every little bit': 285980, 'little bit help': 495255, 'bit help indeed': 131581, 'hampering': 374620, 'that fill': 843866, 'fill the': 305495, 'weekend hunger': 977354, 'hunger gap': 411121, 'child living': 176135, 'in poverty': 426874, 'poverty say': 667514, 'say panic': 739044, 'been hampering': 121251, 'hampering it': 374621, 'charity that fill': 173694, 'that fill the': 843867, 'fill the weekend': 305504, 'the weekend hunger': 871330, 'weekend hunger gap': 977355, 'hunger gap for': 411122, 'gap for child': 343443, 'for child living': 320055, 'child living in': 176136, 'living in poverty': 496385, 'in poverty say': 426878, 'poverty say panic': 667516, 'say panic buying': 739045, 'amid the global': 52695, 'pandemic ha been': 635531, 'ha been hampering': 369821, 'been hampering it': 121252, 'hampering it work': 374622, 'so incredibly': 777397, 'stupid there': 815474, 'word maybe': 1004522, 'maybe go': 521689, 'and touch': 74296, 'touch every': 926468, 'every piece': 286105, 'not wash': 572452, 'hand if': 375031, 'you end': 1018408, 'the icu': 857819, 'icu with': 412857, 'and pneumonia': 69142, 'pneumonia then': 662101, 'you are just': 1017156, 'just so incredibly': 469824, 'so incredibly stupid': 777399, 'incredibly stupid there': 433932, 'stupid there are': 815475, 'are no other': 88273, 'no other word': 565022, 'other word maybe': 621214, 'word maybe go': 1004523, 'maybe go to': 521690, 'supermarket without glove': 823952, 'without glove and': 1002689, 'glove and without': 352588, 'and without mask': 75795, 'without mask and': 1002769, 'mask and touch': 518381, 'and touch every': 74297, 'touch every piece': 926469, 'every piece of': 286106, 'piece of product': 656344, 'of product and': 588481, 'product and do': 680883, 'do not wash': 249888, 'not wash your': 572454, 'your hand if': 1024195, 'hand if you': 375034, 'if you end': 415428, 'you end up': 1018409, 'in the icu': 429279, 'the icu with': 857821, 'icu with covid': 412858, '19 and pneumonia': 5088, 'and pneumonia then': 69143, 'gone little': 356324, 'little crazy': 495305, 'crazy when': 215483, 'when got': 983484, 'got genuinely': 358581, 'genuinely excited': 345888, 'excited that': 289563, 'that found': 843948, 'found packet': 330332, 'mince in': 532605, 'know the world': 476855, 'ha gone little': 370726, 'gone little crazy': 356325, 'little crazy when': 495308, 'crazy when got': 215484, 'when got genuinely': 983485, 'got genuinely excited': 358582, 'genuinely excited that': 345889, 'excited that found': 289565, 'that found packet': 843949, 'found packet of': 330333, 'packet of mince': 633707, 'of mince in': 586540, 'mince in the': 532606, 'speculation': 788349, 'many lupus': 514252, 'patient take': 644266, 'take hydroxychloroquine': 832210, 'hydroxychloroquine on': 412006, 'basis to': 112281, 'our disease': 622762, 'disease under': 245264, 'control if': 202022, 'work also': 1004732, '19 great': 7279, 'doesn then': 251972, 'then trump': 877695, 'trump speculation': 933859, 'speculation will': 788364, 'in increased': 424013, 'shortage for': 764958, 'who depend': 988562, 'many lupus patient': 514253, 'lupus patient take': 506824, 'patient take hydroxychloroquine': 644267, 'take hydroxychloroquine on': 832211, 'hydroxychloroquine on daily': 412008, 'daily basis to': 224513, 'basis to keep': 112283, 'keep our disease': 471728, 'our disease under': 622763, 'disease under control': 245265, 'under control if': 940046, 'control if it': 202023, 'if it work': 414346, 'it work also': 462501, 'work also for': 1004733, 'also for covid': 48225, 'covid 19 great': 213165, '19 great if': 7280, 'great if it': 362739, 'if it doesn': 414298, 'it doesn then': 457645, 'doesn then trump': 251973, 'then trump speculation': 877697, 'trump speculation will': 933860, 'speculation will result': 788365, 'will result in': 994679, 'result in increased': 717532, 'in increased price': 424014, 'and shortage for': 71569, 'shortage for those': 764966, 'of who depend': 593129, 'who depend on': 988563, 'on it and': 601649, 'and all for': 57864, 'all for no': 42841, 'how time': 408970, 'changed and': 172431, 'price not': 675366, 'sure these': 827730, 'any good': 79282, '19 mind': 8652, 'how time have': 408972, 'have changed and': 379932, 'changed and price': 172434, 'and price not': 69464, 'price not sure': 675370, 'not sure these': 571847, 'sure these are': 827731, 'these are any': 879607, 'are any good': 84577, 'any good for': 79284, 'good for covid': 357075, 'covid 19 mind': 213435, 'punted': 689287, 'leant': 483912, 'macabre': 507322, 'game while': 343289, 'queue who': 694134, 'die first': 241331, 'first punted': 308889, 'punted for': 689288, 'who despite': 988577, 'despite wearing': 238925, 'mask kept': 518893, 'kept touching': 473088, 'touching her': 926682, 'her phone': 392299, 'phone face': 654951, 'and leant': 66032, 'leant on': 483913, 'surface going': 828028, 'going little': 355261, 'little macabre': 495447, 'macabre but': 507323, 'it passed': 460275, 'passed the': 643303, 'time lockdowneffect': 897149, 'lockdowneffect socialdistancing': 500266, 'thought of new': 893146, 'of new game': 586967, 'new game while': 558793, 'game while waiting': 343290, 'while waiting in': 987529, 'supermarket queue who': 822140, 'queue who will': 694135, 'who will die': 989984, 'will die first': 993179, 'die first punted': 241332, 'first punted for': 308890, 'punted for the': 689289, 'for the woman': 326783, 'the woman who': 871670, 'woman who despite': 1003676, 'who despite wearing': 988580, 'despite wearing mask': 238926, 'wearing mask kept': 974699, 'mask kept touching': 518895, 'kept touching her': 473089, 'touching her phone': 926683, 'her phone face': 392301, 'phone face and': 654952, 'face and leant': 294300, 'and leant on': 66033, 'leant on any': 483914, 'on any surface': 599409, 'any surface going': 79931, 'surface going little': 828029, 'going little macabre': 355263, 'little macabre but': 495448, 'macabre but it': 507324, 'but it passed': 146152, 'it passed the': 460276, 'passed the time': 643305, 'the time lockdowneffect': 869603, 'time lockdowneffect socialdistancing': 897150, 'oh good': 596395, 'good so': 357742, 'so price': 778071, 'oh good so': 596396, 'good so price': 357744, 'so price will': 778074, 'price will rise': 677585, 'specialise': 788101, 'vacant': 951568, 'dont let': 255249, 'let your': 487219, 'business be': 143427, 'be target': 117522, 'target if': 834468, 'close temporarily': 182823, 'temporarily due': 837486, 'coronavirus security': 206737, 'security specialise': 744749, 'specialise in': 788102, 'in protecting': 427048, 'protecting vacant': 685243, 'vacant property': 951569, 'property construction': 684259, 'construction site': 195815, 'site we': 772054, 'special discounted': 787895, 'business effected': 143690, 'effected at': 269169, 'very tough': 955620, 'dont let your': 255253, 'let your business': 487221, 'your business be': 1023050, 'business be target': 143430, 'be target if': 117524, 'target if you': 834469, 'to close temporarily': 902898, 'close temporarily due': 182824, 'temporarily due to': 837487, 'to coronavirus security': 903566, 'coronavirus security specialise': 206738, 'security specialise in': 744750, 'specialise in protecting': 788103, 'in protecting vacant': 427050, 'protecting vacant property': 685244, 'vacant property construction': 951570, 'property construction site': 684260, 'construction site we': 195817, 'site we are': 772055, 'are offering special': 88677, 'offering special discounted': 595257, 'special discounted price': 787896, 'discounted price for': 244596, 'all business effected': 42232, 'business effected at': 143691, 'effected at this': 269170, 'at this very': 101265, 'this very tough': 890968, 'very tough time': 955621, 'anetafelix': 76274, 'didn believe': 240988, 'believe is': 126295, 'real or': 701285, 'nigeria here': 562752, 'here proof': 393478, 'proof kindly': 683997, 'kindly wash': 475179, 'hand off': 375116, 'off your': 594440, 'mouth nose': 543536, 'eye and': 293999, 'and maintain': 66522, '19 totallockdown': 11522, 'totallockdown anetafelix': 926289, 'you didn believe': 1018204, 'didn believe is': 240989, 'believe is real': 126296, 'is real or': 451276, 'real or in': 701286, 'or in nigeria': 615756, 'in nigeria here': 425876, 'nigeria here proof': 562753, 'here proof kindly': 393479, 'proof kindly wash': 683998, 'kindly wash your': 475180, 'hand often or': 375123, 'or use sanitizer': 617622, 'use sanitizer keep': 949545, 'sanitizer keep your': 735250, 'your hand off': 1024206, 'hand off your': 375117, 'off your mouth': 594447, 'your mouth nose': 1024901, 'mouth nose and': 543537, 'nose and eye': 567869, 'and eye and': 62571, 'eye and maintain': 294002, 'and maintain distance': 66524, 'maintain distance from': 508957, 'distance from people': 246718, 'from people to': 336893, 'stay safe 19': 797206, 'safe 19 totallockdown': 729404, '19 totallockdown anetafelix': 11523, 'killed with sanitizer': 474622, 'with sanitizer and': 1000566, 'sanitizer and soap': 734434, 'superlative': 818706, 'compassionate': 191500, 'to cell': 902559, 'cell for': 168950, 'the excellent': 854667, 'excellent service': 289110, 'in dealing': 422041, 'my worry': 550654, 'worry ve': 1010791, 'had nothing': 373353, 'but superlative': 147213, 'superlative experience': 818707, 'since joining': 770684, 'joining and': 466965, 'and salute': 70804, 'salute their': 732861, 'their immediate': 873622, 'immediate compassionate': 416978, 'compassionate response': 191502, '19 catastrophe': 5711, 'out to cell': 627627, 'to cell for': 902560, 'cell for the': 168952, 'for the excellent': 326420, 'the excellent service': 854668, 'excellent service in': 289111, 'service in dealing': 752475, 'in dealing with': 422042, 'dealing with my': 229678, 'with my worry': 999660, 'my worry ve': 550655, 'worry ve had': 1010792, 've had nothing': 953231, 'had nothing but': 373354, 'nothing but superlative': 572964, 'but superlative experience': 147214, 'superlative experience with': 818708, 'experience with the': 291546, 'with the company': 1001240, 'the company since': 851351, 'company since joining': 191084, 'since joining and': 770685, 'joining and salute': 466966, 'and salute their': 70805, 'salute their immediate': 732862, 'their immediate compassionate': 873623, 'immediate compassionate response': 416979, 'compassionate response to': 191503, 'covid 19 catastrophe': 212766, 'you allowing': 1016932, 'gauge price': 344547, 'this 64': 886167, 'amazonprime pricegouging': 51246, 'hey how are': 394421, 'are you allowing': 91764, 'you allowing this': 1016935, 'allowing this third': 46359, 'seller to gauge': 749098, 'to gauge price': 906387, 'gauge price like': 344548, 'like this 64': 491462, 'this 64 99': 886168, 'pill amazonprime pricegouging': 656646, 'yourcustomerssaythankyou': 1026410, 'your appreciation': 1022803, 'supermarket yourcustomerssaythankyou': 824211, 'yourcustomerssaythankyou 19': 1026411, '19 keepyourdistance': 8222, 'keepyourdistance stayhomesavelives': 472683, 'show your appreciation': 767299, 'your appreciation to': 1022806, 'appreciation to your': 82902, 'local supermarket yourcustomerssaythankyou': 498624, 'supermarket yourcustomerssaythankyou 19': 824212, 'yourcustomerssaythankyou 19 keepyourdistance': 1026412, '19 keepyourdistance stayhomesavelives': 8223, 'tear now': 835956, 'share be': 754945, 'sick struggling': 768618, 'struggling or': 814470, 'or simply': 617085, 'simply different': 770214, 'for america': 319234, 'america to': 51710, 'best chance': 127624, 'of surviving': 590535, 'surviving the': 829371, 'all support': 44566, 'other pandemic': 620641, 'are in tear': 87447, 'in tear now': 428842, 'tear now at': 835957, 'store please share': 809593, 'please share be': 660481, 'share be kind': 754946, 'kind to those': 475015, 'are sick struggling': 90116, 'sick struggling or': 768619, 'struggling or simply': 814472, 'or simply different': 617087, 'simply different from': 770215, 'different from you': 241956, 'from you for': 338459, 'you for america': 1018625, 'for america to': 319237, 'america to have': 51713, 'the best chance': 849498, 'best chance of': 127626, 'chance of surviving': 171772, 'of surviving the': 590537, 'surviving the coronavirus': 829372, 'pandemic we must': 636944, 'must all support': 546470, 'all support each': 44567, 'each other pandemic': 264206, 'fluidity': 311540, 'fao government': 298650, 'keep trade': 472153, 'trade route': 928568, 'route open': 726467, 'open supplychains': 612531, 'supplychains alive': 826253, 'alive designate': 41810, 'designate agriculture': 238277, 'agriculture labourer': 38995, 'labourer critical': 478540, 'critical staff': 218667, 'staff ensure': 792411, 'of info': 585188, 'price cooperate': 673242, 'cooperate preserve': 203137, 'preserve fluidity': 670698, 'fluidity of': 311541, 'market foodsecurity': 516404, 'fao government must': 298651, 'government must keep': 360370, 'must keep trade': 546747, 'keep trade route': 472154, 'trade route open': 928569, 'route open supplychains': 726468, 'open supplychains alive': 612532, 'supplychains alive designate': 826254, 'alive designate agriculture': 41811, 'designate agriculture labourer': 238278, 'agriculture labourer critical': 38996, 'labourer critical staff': 478541, 'critical staff ensure': 218668, 'staff ensure the': 792412, 'ensure the flow': 278084, 'flow of info': 311253, 'of info on': 585190, 'info on food': 437528, 'food price cooperate': 315928, 'price cooperate preserve': 673243, 'cooperate preserve fluidity': 203138, 'preserve fluidity of': 670699, 'fluidity of global': 311542, 'of global food': 584153, 'global food market': 351946, 'food market foodsecurity': 315396, 'nylag': 578099, 'undocumented': 941022, 'they deliver': 881877, 'deliver our': 233185, 'and care': 59556, 'our kid': 623620, 'kid so': 474109, 'the luxury': 859834, 'luxury of': 506943, 'of practicing': 588344, 'distancing nylag': 247361, 'nylag advocate': 578100, 'for undocumented': 327426, 'undocumented immigrant': 941023, 'immigrant to': 417237, 'receive in': 703498, 'this op': 889273, 'ed via': 268466, 'they deliver our': 881878, 'deliver our food': 233186, 'our food stock': 623132, 'food stock our': 316804, 'store and care': 806214, 'and care for': 59557, 'for our kid': 324265, 'our kid so': 623622, 'kid so the': 474111, 'rest of may': 716197, 'of may have': 586309, 'may have the': 521259, 'have the luxury': 382999, 'the luxury of': 859835, 'luxury of practicing': 506945, 'of practicing social': 588345, 'social distancing nylag': 779672, 'distancing nylag advocate': 247362, 'nylag advocate for': 578101, 'advocate for undocumented': 33838, 'for undocumented immigrant': 327427, 'undocumented immigrant to': 941024, 'immigrant to receive': 417239, 'to receive in': 912922, 'receive in this': 703499, 'in this op': 429989, 'this op ed': 889274, 'op ed via': 611799, 'reveal': 720232, 'puraphy': 689317, 'hempoil': 391719, 'for hemp': 322207, 'hemp oil': 391709, 'oil cbd': 596669, 'cbd product': 168323, 'product booming': 681016, 'booming two': 134904, 'two new': 937074, 'study reveal': 814948, 'reveal these': 720255, 'these retail': 880596, 'retail change': 717949, 'change may': 172178, 'more permanent': 540057, 'permanent for': 652052, 'for much': 323643, 'more go': 539347, 'to puraphy': 912512, 'puraphy cbd': 689318, 'cbd hempoil': 168313, 'hempoil hemp': 391722, 'with online sale': 999904, 'online sale for': 608915, 'sale for hemp': 732230, 'for hemp oil': 322208, 'hemp oil cbd': 391710, 'oil cbd product': 596670, 'cbd product booming': 168324, 'product booming two': 681017, 'booming two new': 134905, 'two new study': 937077, 'new study reveal': 559685, 'study reveal these': 814949, 'reveal these retail': 720256, 'these retail change': 880597, 'retail change may': 717950, 'change may be': 172179, 'be more permanent': 115987, 'more permanent for': 540059, 'permanent for much': 652053, 'for much more': 323646, 'much more go': 545107, 'more go to': 539348, 'go to puraphy': 354344, 'to puraphy cbd': 912513, 'puraphy cbd hempoil': 689319, 'cbd hempoil hemp': 168315, 'still exists': 800501, 'exists and': 290353, 'and bernie': 58901, 'bernie dropped': 127374, 'dropped out': 260616, 'out fuck': 626202, 'fuck it': 339596, '19 still exists': 10847, 'still exists and': 800502, 'exists and bernie': 290354, 'and bernie dropped': 58902, 'bernie dropped out': 127375, 'dropped out fuck': 260617, 'out fuck it': 626203, 'fuck it shopping': 339601, 'it shopping online': 461029, 'pay my': 645005, 'bill credit': 130545, 'what if do': 981627, 'if do not': 414053, 'do not pay': 249798, 'not pay my': 570979, 'pay my bill': 645006, 'my bill credit': 547451, 'bill credit and': 130546, 'credit and my': 216309, 'and my credit': 67361, 'my credit report': 547857, 'product money': 681414, 'money price': 536979, 'stop price': 804932, 'gouging 33': 359230, '33 attorney': 17748, 'general tell': 345485, 'tell others': 837043, 'product money price': 681415, 'money price 19': 536980, 'price 19 stop': 672118, '19 stop price': 10868, 'stop price gouging': 804933, 'price gouging 33': 674251, 'gouging 33 attorney': 359231, '33 attorney general': 17749, 'attorney general tell': 102658, 'general tell others': 345488, 'deliverydriver': 234789, 'hatfield': 378964, 'hertfordshire': 394256, 'ocado shuts': 578915, 'until saturday': 943820, 'saturday due': 737017, 'to simply': 914657, 'simply staggering': 770288, 'staggering amount': 793254, 'traffic ocado': 929120, 'ocado ecommerce': 578890, 'ecommerce corona': 266743, 'corona delivery': 203916, 'delivery retail': 234396, 'supermarket supplyanddemand': 823056, 'supplyanddemand deliverydriver': 826153, 'deliverydriver hatfield': 234790, 'hatfield hertfordshire': 378965, 'ocado shuts down': 578916, 'shuts down until': 768188, 'down until saturday': 257415, 'until saturday due': 943821, 'saturday due to': 737018, 'due to simply': 261952, 'to simply staggering': 914660, 'simply staggering amount': 770289, 'staggering amount of': 793255, 'of traffic ocado': 592412, 'traffic ocado ecommerce': 929121, 'ocado ecommerce corona': 578891, 'ecommerce corona delivery': 266744, 'corona delivery retail': 203917, 'delivery retail supermarket': 234397, 'retail supermarket supplyanddemand': 718752, 'supermarket supplyanddemand deliverydriver': 823057, 'supplyanddemand deliverydriver hatfield': 826154, 'deliverydriver hatfield hertfordshire': 234791, 'transnsformed': 929811, 'commerce business': 188524, 'business ha': 143807, 'ha greatly': 370768, 'greatly transnsformed': 363330, 'transnsformed the': 929812, 'covid19 avoid': 214268, 'avoid mall': 105185, 'center visit': 169312, 'visit today': 959422, 'shop agri': 759810, 'agri product': 38844, 'product online': 681476, 'online 19': 607753, 'the commerce business': 851218, 'commerce business ha': 188525, 'business ha greatly': 143809, 'ha greatly transnsformed': 370769, 'greatly transnsformed the': 363331, 'transnsformed the fight': 929813, 'fight against covid19': 304616, 'against covid19 avoid': 37405, 'covid19 avoid mall': 214269, 'avoid mall and': 105186, 'mall and shopping': 511741, 'and shopping center': 71538, 'shopping center visit': 762347, 'center visit today': 169313, 'visit today at': 959423, 'today at shop': 919284, 'at shop agri': 100508, 'shop agri product': 759811, 'agri product online': 38845, 'product online 19': 681477, 'understood': 940926, 'boss are': 135733, 'are understood': 91302, 'understood to': 940933, 'in negotiation': 425791, 'the stormont': 868167, 'stormont executive': 811871, 'executive to': 289945, 'aside bespoke': 95401, 'bespoke online': 127552, 'group during': 366678, 'supermarket boss are': 819397, 'boss are understood': 135736, 'are understood to': 91303, 'understood to have': 940934, 'to have been': 907208, 'been in negotiation': 121357, 'in negotiation with': 425792, 'negotiation with the': 556965, 'with the stormont': 1001500, 'the stormont executive': 868168, 'stormont executive to': 811872, 'executive to set': 289947, 'set aside bespoke': 753345, 'aside bespoke online': 95402, 'bespoke online delivery': 127553, 'slot for at': 774176, 'risk group during': 723590, 'group during the': 366679, 'becki': 119898, 'batter': 112732, 'piece today': 656373, 'today from': 919555, 'market intel': 516602, 'intel team': 440974, 'on lesson': 601823, 'lesson we': 486518, 'experience becki': 291323, 'becki batter': 119899, 'fascinating piece today': 299764, 'piece today from': 656374, 'today from market': 919559, 'from market intel': 336362, 'market intel team': 516603, 'intel team on': 440975, 'team on lesson': 835749, 'on lesson we': 601824, 'lesson we can': 486519, 'we can take': 971029, 'take from experience': 832140, 'from experience becki': 335358, 'experience becki batter': 291324, 'loading': 497325, 'ha fast': 370603, 'tracked change': 928246, 'our planning': 624359, 'planning law': 658555, 'supermarket distribution': 819971, 'distribution center': 248120, 'and loading': 66279, 'loading dock': 497333, 'dock can': 250775, 'can operate': 159151, 'operate 24': 612972, '24 these': 15694, 'these change': 879737, 'change allow': 171899, 'to relax': 913130, 'relax truck': 708836, 'truck delivery': 932754, 'delivery curfew': 233840, 'curfew meaning': 220901, 'product can': 681039, 'can reach': 159378, 'reach our': 699962, 'supermarket faster': 820277, 'our government ha': 623270, 'government ha fast': 360152, 'ha fast tracked': 370604, 'fast tracked change': 300066, 'tracked change to': 928247, 'to our planning': 911232, 'our planning law': 624360, 'planning law so': 658556, 'law so that': 482401, 'so that supermarket': 778395, 'that supermarket distribution': 846568, 'supermarket distribution center': 819972, 'distribution center and': 248121, 'center and loading': 169156, 'and loading dock': 66281, 'loading dock can': 497334, 'dock can operate': 250776, 'can operate 24': 159152, 'operate 24 these': 612973, '24 these change': 15695, 'these change allow': 879738, 'change allow to': 171900, 'allow to relax': 46103, 'to relax truck': 913133, 'relax truck delivery': 708837, 'truck delivery curfew': 932755, 'delivery curfew meaning': 233841, 'curfew meaning more': 220902, 'meaning more product': 524822, 'more product can': 540148, 'product can reach': 681044, 'can reach our': 159380, 'reach our supermarket': 699963, 'our supermarket faster': 625016, 'foodstores': 318152, 'hvac': 411864, 'store small': 810206, 'family operated': 298126, 'operated foodstores': 613042, 'foodstores chain': 318153, 'chain franchise': 170721, 'franchise throughout': 331075, 'throughout nyc': 894950, 'nyc clean': 577971, 'and disinfect': 61435, 'your property': 1025460, 'property and': 684234, 'and hvac': 64891, 'hvac system': 411869, 'system we': 831366, 'are stronger': 90577, 'grocery store small': 365777, 'store small family': 810208, 'small family operated': 774945, 'family operated foodstores': 298127, 'operated foodstores chain': 613043, 'foodstores chain franchise': 318154, 'chain franchise throughout': 170722, 'franchise throughout nyc': 331076, 'throughout nyc clean': 894951, 'nyc clean and': 577972, 'clean and disinfect': 180456, 'and disinfect your': 61438, 'disinfect your property': 245591, 'your property and': 1025461, 'property and hvac': 684236, 'and hvac system': 64892, 'hvac system we': 411870, 'system we are': 831367, 'we are stronger': 970726, 'are stronger than': 90578, 'remember those': 710358, 'essential front': 281073, 'the thank': 869357, 'them call': 875518, 'them hero': 875851, 'demand your': 236538, 'your politician': 1025353, 'politician start': 663743, 'start instituting': 794349, 'instituting living': 440446, 'wage legislation': 963918, 'legislation for': 485968, 'them well': 876595, 'remember those who': 710362, 'store are essential': 806474, 'are essential front': 86249, 'essential front line': 281074, 'line worker during': 493602, 'during the thank': 263206, 'the thank them': 869358, 'thank them call': 841658, 'them call them': 875520, 'call them hero': 156148, 'them hero and': 875852, 'hero and demand': 393928, 'and demand your': 61183, 'demand your politician': 236539, 'your politician start': 1025354, 'politician start instituting': 663744, 'start instituting living': 794350, 'instituting living wage': 440447, 'living wage legislation': 496479, 'wage legislation for': 963919, 'legislation for them': 485969, 'for them well': 326929, 'mcdonalds': 522158, 'r30': 695085, 'ubereats': 937836, 'bigmacza': 130362, 'nothing beat': 572945, 'beat classic': 118512, 'classic food': 180329, 'on wheel': 605255, 'wheel you': 983062, 'the mcdonalds': 860326, 'mcdonalds big': 522159, 'big mac': 129859, 'mac meal': 507319, 'just r30': 469541, 'r30 when': 695086, 'order via': 618737, 'the ubereats': 870177, 'ubereats app': 937837, 'app promotional': 81750, 'promotional code': 683882, 'code bigmacza': 185342, 'bigmacza term': 130364, 'nothing beat classic': 572946, 'beat classic food': 118513, 'classic food on': 180330, 'food on wheel': 315610, 'on wheel you': 605260, 'wheel you can': 983063, 'can now get': 159061, 'now get the': 574775, 'get the mcdonalds': 348264, 'the mcdonalds big': 860327, 'mcdonalds big mac': 522160, 'big mac meal': 129862, 'mac meal for': 507320, 'meal for just': 524154, 'for just r30': 322796, 'just r30 when': 469542, 'r30 when you': 695087, 'when you order': 984586, 'you order via': 1020238, 'order via the': 618740, 'via the ubereats': 956311, 'the ubereats app': 870178, 'ubereats app promotional': 937839, 'app promotional code': 81751, 'promotional code bigmacza': 683883, 'code bigmacza term': 185344, 'bigmacza term and': 130365, 'reigned': 708209, 'across all': 29225, 'all actor': 41943, 'actor of': 30583, 'society including': 781248, 'including politician': 432112, 'both party': 136004, 'party denial': 642990, 'denial reigned': 236945, 'reigned huge': 708210, 'huge mistake': 410098, 'mistake not': 534470, 'providing supermarket': 687103, 'worker safeguard': 1007723, 'safeguard grocery': 730196, 'across all actor': 29226, 'all actor of': 41944, 'actor of society': 30584, 'of society including': 589873, 'society including politician': 781249, 'including politician of': 432113, 'politician of both': 663730, 'of both party': 580796, 'both party denial': 136005, 'party denial reigned': 642991, 'denial reigned huge': 236946, 'reigned huge mistake': 708211, 'huge mistake not': 410099, 'mistake not providing': 534471, 'not providing supermarket': 571164, 'providing supermarket worker': 687104, 'supermarket worker safeguard': 824080, 'worker safeguard grocery': 1007724, 'safeguard grocery worker': 730197, 'die of the': 241431, 'of the washington': 591602, 'leger': 485947, 'lg2': 487897, 'unveiling': 944022, 'leger in': 485948, 'with lg2': 999205, 'lg2 is': 487898, 'is unveiling': 453559, 'unveiling study': 944025, 'study focused': 814885, 'the behaviour': 849445, 'behaviour mainly': 124469, 'mainly online': 508885, 'online of': 608601, 'of canadian': 581091, 'canadian consumer': 160655, 'consumer discover': 197211, 'discover the': 244665, 'leger in partnership': 485949, 'partnership with lg2': 642953, 'with lg2 is': 999206, 'lg2 is unveiling': 487899, 'is unveiling study': 453560, 'unveiling study focused': 944026, 'study focused on': 814886, 'focused on how': 311959, 'how the crisis': 408812, 'crisis is impacting': 217576, 'impacting the behaviour': 418262, 'the behaviour mainly': 849447, 'behaviour mainly online': 124470, 'mainly online of': 508886, 'online of canadian': 608602, 'of canadian consumer': 581092, 'canadian consumer discover': 160658, 'consumer discover the': 197212, 'discover the post': 244667, 'the post crisis': 864085, 'post crisis consumer': 666082, '19 supermarket sweep': 10959, 'money selling': 537010, 'selling baby': 749175, 'milk medicine': 531727, 'medicine toilet': 526913, 'an entrepreneur': 55780, 'entrepreneur you': 278963, 're an': 698280, 'an arsehole': 55411, 'arsehole 19': 94082, 'you are making': 1017169, 'are making money': 87994, 'making money selling': 511231, 'money selling baby': 537011, 'selling baby milk': 749176, 'baby milk medicine': 106664, 'milk medicine toilet': 531729, 'medicine toilet roll': 526914, 'roll or food': 725441, 'or food at': 615338, 'food at ridiculously': 313449, 'inflated price you': 437086, 'price you are': 677689, 'are not an': 88322, 'not an entrepreneur': 568194, 'an entrepreneur you': 55783, 'entrepreneur you re': 278965, 'you re an': 1020568, 're an arsehole': 698282, 'an arsehole 19': 55412, 'globe food': 352458, 'and sustainability': 72914, 'sustainability is': 829771, 'is increasingly': 448868, 'increasingly on': 433791, 'people mind': 648772, 'mind lawmaker': 532684, 'lawmaker issue': 482492, 'are frequently': 86680, 'frequently low': 332859, 'on staple': 603635, '19 virus spread': 11835, 'virus spread across': 958782, 'spread across the': 790393, 'and the globe': 73396, 'the globe food': 856353, 'globe food security': 352459, 'security and sustainability': 744542, 'and sustainability is': 72915, 'sustainability is increasingly': 829772, 'is increasingly on': 448873, 'increasingly on people': 433792, 'on people mind': 602743, 'people mind lawmaker': 648774, 'mind lawmaker issue': 532685, 'lawmaker issue stay': 482493, 'home order and': 401764, 'order and grocery': 618026, 'store are frequently': 806478, 'are frequently low': 86682, 'frequently low on': 332860, 'low on staple': 505464, 'bumbling': 142550, 'string': 813788, 'bernie wa': 127392, 'wa born': 961735, 'born for': 135557, 'moment he': 535951, 'beat bumbling': 118510, 'bumbling fool': 142551, 'is unable': 453420, 'to string': 915676, 'string sentence': 813795, 'sentence together': 750874, 'together like': 920851, 'like biden': 489904, 'biden in': 129534, 'the primary': 864450, 'primary but': 678065, 'real solution': 701366, 'solution on': 782062, 'every communist': 285743, 'communist in': 189673, 'russia did': 728462, 'bernie wa born': 127393, 'wa born for': 961736, 'born for this': 135558, 'this moment he': 888871, 'moment he can': 535952, 'he can beat': 384812, 'can beat bumbling': 157718, 'beat bumbling fool': 118511, 'bumbling fool who': 142552, 'fool who is': 318309, 'who is unable': 989124, 'is unable to': 453421, 'unable to string': 939349, 'to string sentence': 915677, 'string sentence together': 813796, 'sentence together like': 750875, 'together like biden': 920852, 'like biden in': 489905, 'biden in the': 129535, 'in the primary': 429473, 'the primary but': 864451, 'primary but ha': 678066, 'but ha real': 145838, 'ha real solution': 371641, 'real solution on': 701367, 'solution on empty': 782063, 'shelf like every': 757284, 'like every communist': 490183, 'every communist in': 285744, 'communist in russia': 189674, 'in russia did': 427588, 'un we': 939306, 'enough of': 277540, 'world reserve': 1009929, 'must commit': 546595, 'not stockpiling': 571748, 'stockpiling or': 804038, 'or banning': 614499, 'banning export': 110626, 'export or': 292682, 'will threaten': 995199, 'world poorest': 1009900, 'poorest community': 664363, 'to the un': 917152, 'the un we': 870332, 'un we have': 939307, 'have enough of': 380458, 'enough of the': 277545, 'the world reserve': 871948, 'world reserve and': 1009930, 'reserve and we': 714035, 'we must commit': 972407, 'must commit to': 546596, 'to not stockpiling': 910711, 'not stockpiling or': 571749, 'stockpiling or banning': 804039, 'or banning export': 614500, 'banning export or': 110627, 'export or we': 292683, 'we will threaten': 973917, 'will threaten the': 995200, 'threaten the world': 893762, 'the world poorest': 871941, 'world poorest community': 1009901, 'dallas co': 225118, 'co also': 184802, 'also starting': 48902, 'starting neighbor': 794980, 'neighbor helping': 557033, 'helping neighbor': 391398, 'neighbor virtual': 557081, 'drive with': 259261, 'facing furlough': 295477, 'furlough and': 341878, 'layoff the': 482712, 'more that': 540710, 'already increased': 47479, 'increased to': 433514, 'dallas co also': 225119, 'co also starting': 184803, 'also starting neighbor': 48903, 'starting neighbor helping': 794981, 'neighbor helping neighbor': 557034, 'helping neighbor virtual': 391399, 'neighbor virtual food': 557082, 'food drive with': 314293, 'drive with with': 259263, 'with with thousand': 1002112, 'of people facing': 587912, 'people facing furlough': 647859, 'facing furlough and': 295478, 'furlough and layoff': 341880, 'and layoff the': 66004, 'layoff the more': 482713, 'the more that': 860897, 'more that demand': 540711, 'that demand is': 843493, 'demand is going': 235727, 'to increase and': 908268, 'increase and it': 432677, 'and it already': 65481, 'it already increased': 456414, 'already increased to': 47480, 'increased to an': 433516, 'to an all': 900439, 'the exhausted': 854685, 'her car': 391913, 'car left': 163165, 'left me': 485547, 'others she': 621636, 'hour almost': 405377, 'almost 48': 46513, 'hour went': 406083, 'to asda': 900740, 'asda for': 94915, 'shelf had': 757137, 'been stripped': 122065, 'stripped these': 813890, 'piling coronacrisis': 656577, 'video of the': 956836, 'of the exhausted': 591001, 'the exhausted nurse': 854686, 'exhausted nurse cry': 290163, 'nurse cry in': 577262, 'cry in her': 219878, 'in her car': 423653, 'her car left': 391918, 'car left me': 163166, 'left me in': 485549, 'me in tear': 522976, 'in tear for': 428840, 'tear for her': 835943, 'for her and': 322212, 'her and all': 391843, 'all the others': 44853, 'the others she': 862572, 'others she had': 621637, 'she had been': 756092, 'had been working': 372918, 'been working in': 122397, 'working in critical': 1008709, 'in critical care': 421907, 'critical care for': 218524, 'care for hour': 163947, 'for hour almost': 322387, 'hour almost 48': 405378, 'almost 48 hour': 46514, '48 hour went': 19316, 'hour went to': 406084, 'went to asda': 979140, 'to asda for': 900741, 'asda for basic': 94917, 'for basic food': 319584, 'basic food the': 111896, 'food the shelf': 317130, 'the shelf had': 866843, 'shelf had been': 757138, 'had been stripped': 372911, 'been stripped these': 122070, 'stripped these are': 813891, 'are the consequence': 90811, 'the consequence of': 851464, 'consequence of stock': 194877, 'stock piling coronacrisis': 802655, '16pm': 4278, 'bourgeois': 136904, 'inconvenienced': 432601, 'ea': 263973, 'it 16pm': 456177, '16pm so': 4279, 'so buckle': 776656, 'buckle up': 141699, 'for horde': 322360, 'of bourgeois': 580808, 'bourgeois arsehole': 136905, 'arsehole mildly': 94093, 'mildly inconvenienced': 531363, 'inconvenienced by': 432602, 'to complain': 903128, 'their mid': 873963, 'mid century': 530558, 'century furniture': 169616, 'furniture dog': 341953, 'dog child': 252061, 'child high': 176106, 'high speed': 395415, 'speed internet': 788444, 'internet multiple': 441968, 'multiple streaming': 545799, 'streaming service': 812845, 'service online': 752653, 'shopping uber': 764279, 'uber ea': 937807, 'it 16pm so': 456178, '16pm so buckle': 4280, 'so buckle up': 776657, 'buckle up it': 141700, 'up it is': 945241, 'is now time': 450347, 'time for horde': 896715, 'for horde of': 322361, 'horde of bourgeois': 403998, 'of bourgeois arsehole': 580809, 'bourgeois arsehole mildly': 136906, 'arsehole mildly inconvenienced': 94094, 'mildly inconvenienced by': 531364, 'inconvenienced by to': 432603, 'by to complain': 154553, 'to complain about': 903129, 'complain about being': 191843, 'about being stuck': 24870, 'being stuck inside': 125875, 'stuck inside all': 814608, 'inside all day': 439213, 'all day with': 42533, 'day with their': 228785, 'with their mid': 1001585, 'their mid century': 873964, 'mid century furniture': 530559, 'century furniture dog': 169617, 'furniture dog child': 341954, 'dog child high': 252062, 'child high speed': 176107, 'high speed internet': 395417, 'speed internet multiple': 788445, 'internet multiple streaming': 441969, 'multiple streaming service': 545800, 'streaming service online': 812846, 'service online shopping': 752655, 'online shopping uber': 609321, 'shopping uber ea': 764280, 'commission will': 188919, 'have hotline': 380982, 'hotline where': 405267, 'where customer': 984807, 'being hiked': 125246, 'hiked by': 396304, 'by retailer': 153798, 'retailer company': 719091, 'company found': 190679, 'found on': 330312, 'wrong side': 1013100, 'of law': 585733, 'law will': 482452, 'face penalty': 294701, 'the consumer commission': 851511, 'consumer commission will': 196823, 'commission will have': 188921, 'will have hotline': 993640, 'have hotline where': 380983, 'hotline where customer': 405268, 'where customer can': 984808, 'customer can report': 222228, 'report any price': 711806, 'any price which': 79684, 'which are being': 985671, 'are being hiked': 84871, 'being hiked by': 125247, 'hiked by retailer': 396306, 'by retailer company': 153799, 'retailer company found': 719092, 'company found on': 190680, 'found on the': 330315, 'on the wrong': 604462, 'the wrong side': 872111, 'wrong side of': 1013101, 'side of law': 768849, 'of law will': 585737, 'law will face': 482453, 'will face penalty': 993393, 'radar': 695378, 'and anxiety': 58197, 'anxiety surrounding': 78798, 'are popping': 89144, 'national radar': 552596, 'radar to': 695385, 'fear and anxiety': 301023, 'and anxiety surrounding': 58206, 'anxiety surrounding the': 78799, 'coronavirus here quick': 206072, '19 that are': 11149, 'that are popping': 842798, 'are popping up': 89145, 'popping up on': 664523, 'the national radar': 861305, 'national radar to': 552597, 'radar to learn': 695386, 'recurring': 705519, 'dontwanttostarve': 255412, 'just cancelled': 468432, 'brother recurring': 141095, 'recurring food': 705520, 'is blind': 446203, 'blind he': 132691, 'have assistance': 379368, 'distancing please': 247401, 'help vulnerable': 390850, 'customer dontwanttostarve': 222310, 'you just cancelled': 1019415, 'just cancelled my': 468433, 'cancelled my brother': 161138, 'my brother recurring': 547564, 'brother recurring food': 141096, 'recurring food delivery': 705521, 'food delivery slot': 314145, 'delivery slot he': 234525, 'slot he is': 774207, 'he is blind': 385115, 'is blind he': 446204, 'blind he cannot': 132692, 'he cannot have': 384824, 'cannot have assistance': 161948, 'have assistance in': 379369, 'assistance in the': 96708, 'social distancing please': 779688, 'distancing please help': 247402, 'please help vulnerable': 660090, 'help vulnerable customer': 390851, 'vulnerable customer dontwanttostarve': 960923, 'diligently': 242875, 'afbf': 33968, 'americanfarmbureau': 52341, 'agriculture is': 38991, 'working diligently': 1008588, 'diligently to': 242880, 'the stability': 867676, 'stability of': 791820, 'supply concern': 825095, 'item news': 463471, 'news agriculture': 560203, 'agriculture usa': 39043, 'usa afbf': 948575, 'afbf americanfarmbureau': 33969, 'agriculture is working': 38992, 'is working diligently': 454034, 'working diligently to': 1008589, 'diligently to maintain': 242881, 'maintain the stability': 509065, 'the stability of': 867677, 'stability of our': 791822, 'food supply concern': 316942, 'supply concern over': 825096, 'concern over covid': 193048, 'lead to increased': 483354, 'to increased consumer': 908311, 'increased consumer purchase': 433252, 'consumer purchase of': 198617, 'purchase of grocery': 689580, 'other item news': 620447, 'item news agriculture': 463472, 'news agriculture usa': 560204, 'agriculture usa afbf': 39044, 'usa afbf americanfarmbureau': 948576, 'good surged': 357807, 'surged with': 828317, 'continued spread': 201341, 'and household good': 64785, 'household good surged': 406822, 'good surged with': 357808, 'surged with the': 828318, 'with the continued': 1001245, 'the continued spread': 851673, 'continued spread of': 201342, 'vodaf': 959919, 'received text': 703687, 'text that': 839946, 're increasing': 698895, 'increasing my': 433639, 'monthly plan': 538187, 'uk inflation': 938475, 'inflation rate': 437221, 'rate are': 697158, 'you seriously': 1021127, 'seriously raising': 751707, 'raising your': 696162, 'lockdown when': 500128, 'so reliant': 778120, 'on phone': 602788, 'touch vodaf': 926571, 'just received text': 469579, 'received text that': 703689, 'text that you': 839948, 'you re increasing': 1020654, 're increasing my': 698896, 'increasing my monthly': 433640, 'my monthly plan': 549305, 'monthly plan by': 538188, 'plan by in': 658085, 'by in line': 152883, 'line with the': 493588, 'with the uk': 1001525, 'the uk inflation': 870238, 'uk inflation rate': 938476, 'inflation rate are': 437222, 'rate are you': 697162, 'are you seriously': 91853, 'you seriously raising': 1021128, 'seriously raising your': 751708, 'raising your price': 696164, 'coronavirus lockdown when': 206256, 'lockdown when people': 500130, 'people are so': 647079, 'are so reliant': 90215, 'so reliant on': 778121, 'reliant on phone': 709259, 'on phone to': 602791, 'phone to keep': 655041, 'in touch vodaf': 430233, 'aberdeen': 24321, 'aberdeen charity': 24324, 'charity triple': 173709, 'triple food': 932247, 'food pack': 315728, 'pack production': 633139, 'production due': 682022, 'to surging': 916006, 'aberdeen charity triple': 24325, 'charity triple food': 173710, 'triple food pack': 932248, 'food pack production': 315729, 'pack production due': 633140, 'production due to': 682023, 'due to surging': 261986, 'to surging demand': 916007, 'pianist': 655555, 'barcelona': 110834, 'balcony': 109021, 'saxophonist': 738358, 'neighboring': 557168, 'pianist from': 655556, 'from barcelona': 334634, 'barcelona went': 110843, 'his balcony': 397223, 'balcony during': 109022, 'play song': 659215, 'song for': 785491, 'neighborhood saxophonist': 557147, 'saxophonist from': 738359, 'the neighboring': 861435, 'neighboring building': 557169, 'building saw': 142137, 'saw what': 738319, 'and joined': 65679, 'joined him': 466934, 'pianist from barcelona': 655557, 'from barcelona went': 334635, 'barcelona went to': 110844, 'went to his': 979160, 'to his balcony': 907807, 'his balcony during': 397224, 'balcony during quarantine': 109023, 'during quarantine to': 262947, 'quarantine to play': 692638, 'to play song': 911800, 'play song for': 659216, 'song for the': 785493, 'for the neighborhood': 326579, 'the neighborhood saxophonist': 861433, 'neighborhood saxophonist from': 557148, 'saxophonist from the': 738360, 'from the neighboring': 337802, 'the neighboring building': 861436, 'neighboring building saw': 557170, 'building saw what': 142138, 'saw what wa': 738320, 'what wa happening': 982513, 'wa happening and': 962273, 'happening and joined': 377317, 'and joined him': 65680, 'joined him and': 466935, 'him and it': 396540, 'hey there': 394520, 'anyone being': 80199, 'being extra': 125128, 'extra cautious': 293477, 'cautious with': 168240, 'they bring': 881582, 'bring home': 139985, 'article ha': 94342, 'tip because': 898722, 'because remember': 119516, 'remember lot': 710226, 'people touched': 649994, 'touched that': 926640, 'that head': 844275, 'of broccoli': 580904, 'broccoli before': 140796, 'you brought': 1017532, 'hey there is': 394521, 'there is anyone': 878526, 'is anyone being': 445763, 'anyone being extra': 80200, 'being extra cautious': 125129, 'extra cautious with': 293479, 'cautious with the': 168241, 'food they bring': 317164, 'they bring home': 881583, 'bring home from': 139986, 'store this article': 810695, 'this article ha': 886417, 'article ha some': 94344, 'great tip because': 363064, 'tip because remember': 898723, 'because remember lot': 119517, 'remember lot of': 710227, 'of people touched': 588009, 'people touched that': 649996, 'touched that head': 926642, 'that head of': 844276, 'head of broccoli': 385765, 'of broccoli before': 580905, 'broccoli before you': 140797, 'before you brought': 123316, 'you brought it': 1017533, 'brought it home': 141172, 'it home via': 458618, 'day when': 228718, 'just drive': 468652, 'need without': 556233, 'without needing': 1002799, 'mask ya': 519602, 'ya me': 1014019, 'too miss': 924906, 'miss those': 534211, 'those day': 891915, 'day quarantinelife': 228264, 'remember the day': 710304, 'the day when': 852924, 'day when it': 228723, 'it wa so': 462194, 'wa so easy': 963257, 'so easy to': 776933, 'easy to just': 265785, 'to just drive': 908723, 'just drive to': 468653, 'grocery store get': 365426, 'store get what': 807923, 'you need without': 1020059, 'need without needing': 556234, 'without needing to': 1002800, 'needing to wear': 556639, 'wear glove mask': 974342, 'glove mask ya': 352789, 'mask ya me': 519603, 'ya me too': 1014020, 'me too miss': 523824, 'too miss those': 924907, 'miss those day': 534212, 'those day quarantinelife': 891917, 'dropping so': 260725, 'low see': 505596, 'huge increase': 410070, 'increase happening': 432804, 'happening when': 377426, 'over but': 630040, 'could keep': 209362, 'it low': 459471, 'low if': 505326, 'everyone kept': 287144, 'wasn big': 967964, 'would make': 1012019, 'life easier': 488619, 'easier when': 265170, 'price dropping so': 673607, 'dropping so low': 260726, 'so low see': 777609, 'low see huge': 505597, 'see huge increase': 745264, 'huge increase happening': 410071, 'increase happening when': 432805, 'happening when all': 377427, 'when all of': 983131, 'is over but': 450689, 'over but we': 630043, 'we could keep': 971210, 'could keep it': 209363, 'keep it low': 471615, 'it low if': 459474, 'low if everyone': 505327, 'if everyone kept': 414093, 'everyone kept working': 287145, 'kept working at': 473099, 'home if it': 401397, 'it wasn big': 462254, 'wasn big deal': 967965, 'big deal for': 129739, 'deal for them': 229404, 'for them or': 326913, 'them or the': 876116, 'or the company': 617370, 'the company it': 851334, 'company it would': 190822, 'it would make': 462600, 'would make life': 1012024, 'make life easier': 510083, 'life easier when': 488623, 'easier when all': 265171, 'of this stuff': 592045, 'stuff is over': 815104, 'powell': 667547, 'price suffer': 676697, 'suffer severe': 817229, 'severe sell': 754054, 'off hit': 593904, 'market if': 516536, 'if ever': 414081, 'ever there': 285541, 'wa blood': 961719, 'blood in': 133122, 'street gold': 812982, 'mining trade': 533299, 'trade investment': 928515, 'market powell': 516872, 'powell profit': 667548, 'profit money': 682813, 'money oil': 536924, 'oil putin': 597384, 'putin trump': 691062, 'trump stock': 933871, 'china italy': 176771, 'gold price suffer': 355975, 'price suffer severe': 676698, 'suffer severe sell': 817230, 'severe sell off': 754055, 'sell off hit': 748816, 'off hit the': 593905, 'the market if': 860121, 'market if ever': 516537, 'if ever there': 414084, 'ever there wa': 285543, 'there wa blood': 879233, 'wa blood in': 961720, 'blood in the': 133123, 'the street gold': 868230, 'street gold silver': 812983, 'silver mining trade': 769836, 'mining trade investment': 533300, 'trade investment speculator': 928516, 'speculator market powell': 788375, 'market powell profit': 516873, 'powell profit money': 667549, 'profit money oil': 682814, 'money oil putin': 536925, 'oil putin trump': 597385, 'putin trump stock': 691063, 'trump stock china': 933872, 'stock china italy': 801984, 'have my': 381540, 'my student': 550244, 'debt wiped': 230609, 'point would': 662722, 'be perfectly': 116392, 'perfectly content': 651386, 'content if': 200809, 'every healthcare': 285923, 'store debt': 807276, 'debt were': 230597, 'were completely': 979463, 'completely wiped': 192378, 'they owe': 882856, 'owe this': 631826, 'government nothing': 360386, 'much would love': 545484, 'love to have': 504847, 'to have my': 907280, 'have my student': 381548, 'my student debt': 550245, 'student debt wiped': 814669, 'debt wiped out': 230611, 'wiped out at': 996467, 'out at this': 625751, 'this point would': 889648, 'point would be': 662723, 'would be perfectly': 1011630, 'be perfectly content': 116393, 'perfectly content if': 651387, 'content if every': 200810, 'if every healthcare': 414086, 'every healthcare grocery': 285924, 'grocery store debt': 365323, 'store debt were': 807277, 'debt were completely': 230598, 'were completely wiped': 979464, 'completely wiped out': 192379, 'wiped out they': 996476, 'out they owe': 627550, 'they owe this': 882857, 'owe this government': 631827, 'this government nothing': 887740, 'government nothing else': 360387, 'class from': 180192, 'dutch stock': 263518, 'pile for': 656496, 'food nah': 315501, 'nah stock': 551416, 'roll nah': 725391, 'for weed': 327686, 'weed absolutely': 975754, 'absolutely it': 27379, 'will fight': 993429, 'fight off': 304812, 'off queue': 594097, 'for cannabis': 319915, 'cannabis before': 161382, 'class from the': 180193, 'from the dutch': 337676, 'the dutch stock': 853798, 'dutch stock pile': 263519, 'stock pile for': 802630, 'pile for food': 656497, 'for food nah': 321607, 'food nah stock': 315502, 'nah stock pile': 551417, 'pile for toilet': 656498, 'toilet roll nah': 921586, 'roll nah stock': 725392, 'pile for weed': 656499, 'for weed absolutely': 327687, 'weed absolutely it': 975755, 'absolutely it what': 27380, 'it what will': 462328, 'what will fight': 982597, 'will fight off': 993433, 'fight off queue': 304815, 'off queue for': 594098, 'queue for cannabis': 693923, 'for cannabis before': 319916, 'cannabis before lockdown': 161383, 'mishandling': 534039, 'meanwhile the': 525036, 'your mishandling': 1024845, 'mishandling of': 534040, 'higher gas': 395601, 'price nice': 675336, 'nice move': 562437, 'move idiot': 543661, 'meanwhile the people': 525042, 'people who lost': 650316, 'who lost their': 989239, 'their job due': 873711, 'due to your': 262038, 'to your mishandling': 919002, 'your mishandling of': 1024846, 'mishandling of covid': 534041, '19 will now': 12105, 'now be forced': 574198, 'forced to pay': 328644, 'pay higher gas': 644933, 'higher gas price': 395602, 'gas price nice': 344000, 'price nice move': 675338, 'nice move idiot': 562438, 'if walk': 415244, 'through fart': 894457, 'fart in': 299727, 'be concerned': 114174, 'if walk through': 415245, 'walk through fart': 964893, 'through fart in': 894458, 'fart in the': 299728, 'grocery store should': 365772, 'store should be': 810158, 'should be concerned': 765589, 'here the detail': 393646, 'the detail on': 853208, 'protect customer especially': 684810, 'customer especially vulnerable': 222345, 'pamdemic': 634646, 'null': 576789, 'china made': 176812, 'the trade': 869853, 'trade agreement': 928402, 'agreement they': 38797, 'they put': 882947, 'put if': 690608, 'if pamdemic': 414591, 'pamdemic happens': 634647, 'happens trade': 377518, 'agreement is': 38776, 'is null': 450365, 'null void': 576792, 'void china': 960017, 'control american': 201959, 'china made this': 176814, 'made this virus': 508026, 'this virus covid': 891003, '19 and in': 5047, 'in the trade': 429621, 'the trade agreement': 869854, 'trade agreement they': 928404, 'agreement they put': 38798, 'they put if': 882950, 'put if pamdemic': 690609, 'if pamdemic happens': 414592, 'pamdemic happens trade': 634648, 'happens trade agreement': 377519, 'trade agreement is': 928403, 'agreement is null': 38777, 'is null void': 450366, 'null void china': 576793, 'void china is': 960018, 'china is now': 176757, 'is now buying': 450267, 'now buying all': 574307, 'the stock at': 867906, 'stock at low': 801881, 'at low price': 99633, 'low price to': 505543, 'price to control': 676979, 'to control american': 903441, 'control american company': 201960, 'mandms': 513095, 'candybar': 161355, 'iphonepic': 444589, 'sawtelle': 738349, 'you gotta': 1018911, 'gotta pick': 359090, 'pick priority': 655678, 'priority beer': 678522, 'beer section': 122504, 'section next': 744019, 'next mandms': 561439, 'mandms candybar': 513096, 'candybar supermarket': 161356, 'supermarket iphonepic': 821062, 'iphonepic sawtelle': 444590, 'sawtelle los': 738350, 'when shopping in': 984023, 'shopping in preparation': 762984, 'preparation for the': 670036, 'world you gotta': 1010216, 'you gotta pick': 1018916, 'gotta pick priority': 359091, 'pick priority beer': 655679, 'priority beer section': 678523, 'beer section next': 122505, 'section next mandms': 744020, 'next mandms candybar': 561440, 'mandms candybar supermarket': 513097, 'candybar supermarket iphonepic': 161357, 'supermarket iphonepic sawtelle': 821063, 'iphonepic sawtelle los': 444591, 'sawtelle los angeles': 738351, 'moscow my': 541999, 'wa installed': 962414, 'installed potus': 440031, 'potus his': 667286, 'his covid': 397325, '19 performance': 9638, 'performance the': 651468, 'shelf ha': 757132, 'ha cold': 370189, 'war feel': 966429, 'feel if': 302671, 'putin behind': 691012, 'in moscow my': 425464, 'moscow my song': 542000, 'since trump wa': 770951, 'trump wa installed': 933956, 'wa installed potus': 962415, 'installed potus his': 440032, 'potus his covid': 667287, 'his covid 19': 397326, 'covid 19 performance': 213568, '19 performance the': 9639, 'performance the empty': 651469, 'the empty street': 854290, 'supermarket shelf ha': 822478, 'shelf ha cold': 757134, 'ha cold war': 370191, 'cold war feel': 185803, 'war feel if': 966430, 'feel if putin': 302673, 'if putin behind': 414709, 'putin behind this': 691013, 'behind this we': 124742, 'this we have': 891149, 'vancouver table': 952350, 'table put': 831494, 'put between': 690533, 'cashier station': 166618, 'station and': 796330, 'force minimum': 328450, 'minimum distance': 533184, 'distance apart': 246648, 'apart reaction': 81325, 'downtown vancouver table': 257765, 'vancouver table put': 952351, 'table put between': 831495, 'put between the': 690534, 'between the cashier': 128925, 'the cashier station': 850497, 'cashier station and': 166619, 'station and the': 796341, 'and the customer': 73310, 'the customer to': 852736, 'customer to force': 222963, 'to force minimum': 906170, 'force minimum distance': 328451, 'minimum distance apart': 533185, 'distance apart reaction': 246650, 'apart reaction to': 81326, 'contrast': 201839, 'goodbadugly': 357988, 'quiet sydney': 694701, 'sydney commute': 830693, 'commute today': 190272, 'today enough': 919479, 'enough room': 277600, 'isolate no': 454898, 'one coughing': 606111, 'no on': 564908, 'on touching': 604820, 'touching anything': 926663, 'anything with': 80945, 'in contrast': 421756, 'contrast to': 201848, 'to stabbings': 915109, 'stabbings beating': 791777, 'beating in': 118620, 'supermarket tourist': 823527, 'tourist raiding': 927038, 'raiding country': 695654, 'country town': 211188, 'town goodbadugly': 927468, 'quiet sydney commute': 694702, 'sydney commute today': 830694, 'commute today enough': 190273, 'today enough room': 919480, 'enough room to': 277603, 'room to isolate': 725980, 'to isolate no': 908541, 'isolate no one': 454900, 'no one coughing': 564926, 'one coughing no': 606113, 'coughing no on': 208710, 'no on touching': 564911, 'on touching anything': 604821, 'touching anything with': 926664, 'anything with their': 80947, 'their hand this': 873485, 'hand this in': 375846, 'this in contrast': 888041, 'in contrast to': 421757, 'contrast to stabbings': 201849, 'to stabbings beating': 915110, 'stabbings beating in': 791778, 'beating in supermarket': 118621, 'in supermarket the': 428687, 'supermarket the emergence': 823220, 'emergence of supermarket': 272576, 'of supermarket tourist': 590452, 'supermarket tourist raiding': 823529, 'tourist raiding country': 927039, 'raiding country town': 695655, 'country town goodbadugly': 211190, 'chemist have': 175429, 'have solution': 382618, 'chemist have solution': 175430, 'gsma': 367546, 'the gsma': 856889, 'gsma we': 367547, 'provide recommendation': 686446, 'operator during': 613356, 'our privacy': 624468, 'privacy guideline': 678814, 'guideline relating': 368463, 'government request': 360533, 'for access': 318993, 'data during': 226199, 'at the gsma': 100969, 'the gsma we': 856890, 'gsma we are': 367548, 'hard to provide': 378081, 'to provide recommendation': 912427, 'provide recommendation for': 686447, 'recommendation for mobile': 704747, 'mobile operator during': 535006, 'operator during here': 613357, 'here are our': 392750, 'are our privacy': 88869, 'our privacy guideline': 624469, 'privacy guideline relating': 678815, 'guideline relating to': 368464, 'relating to government': 708654, 'to government request': 906938, 'government request for': 360534, 'request for access': 713157, 'for access to': 318995, 'access to mobile': 28257, 'to mobile data': 910208, 'mobile data during': 534958, 'data during this': 226200, 'help may': 390056, 'may soon': 521513, 'way for': 969576, 'economy sent': 268207, 'sent reeling': 750801, 'reeling by': 706443, 'senate have': 749708, 'to roughly': 913637, 'roughly trillion': 726296, 'trillion rescue': 932000, 'largest in': 479965, 'in american': 420245, 'american history': 52034, 'history report': 398050, 'help may soon': 390057, 'may soon be': 521514, 'soon be on': 785642, 'the way for': 871151, 'way for an': 969580, 'for an american': 319274, 'an american economy': 55285, 'american economy sent': 51936, 'economy sent reeling': 268208, 'sent reeling by': 750802, 'reeling by the': 706444, 'by the the': 154458, 'the the white': 869408, 'white house and': 987844, 'house and the': 406185, 'and the senate': 73574, 'the senate have': 866704, 'senate have agreed': 749709, 'agreed to roughly': 38747, 'to roughly trillion': 913638, 'roughly trillion rescue': 726297, 'trillion rescue package': 932001, 'package the largest': 633422, 'the largest in': 858967, 'largest in american': 479966, 'in american history': 420248, 'american history report': 52035, 'deglobalization': 232534, 'second covid': 743684, 'accelerate deglobalization': 27840, 'deglobalization when': 232535, 'not every': 569292, 'every country': 285764, 'doe what': 251669, 'doe best': 251351, 'but want': 147720, 'produce everything': 680259, 'everything itself': 287896, 'itself the': 463957, 'good rise': 357671, 'second covid 19': 743685, 'will accelerate deglobalization': 992179, 'accelerate deglobalization when': 27841, 'deglobalization when not': 232536, 'when not every': 983782, 'not every country': 569294, 'every country doe': 285765, 'country doe what': 210585, 'doe what it': 251670, 'what it doe': 981748, 'it doe best': 457610, 'doe best but': 251352, 'best but want': 127608, 'but want to': 147722, 'want to produce': 966087, 'to produce everything': 912192, 'produce everything itself': 680260, 'everything itself the': 287897, 'itself the price': 463958, 'of good rise': 584233, 'falloff': 297366, 'staub': 796725, '19 spur': 10766, 'spur falloff': 791328, 'falloff in': 297367, 'expectation covid': 290809, '19 past': 9583, 'past shock': 643604, 'shock vanloon': 759537, 'vanloon staub': 952435, 'covid 19 spur': 213849, '19 spur falloff': 10767, 'spur falloff in': 791329, 'falloff in consumer': 297368, 'in consumer expectation': 421694, 'consumer expectation covid': 197394, 'expectation covid 19': 290810, 'covid 19 past': 213556, '19 past shock': 9584, 'past shock vanloon': 643605, 'shock vanloon staub': 759538, 'theater': 872242, 'moreso': 541074, 'premiering': 669912, '2020 03': 14080, '03 23': 862, '23 theater': 15436, 'theater in': 872254, 'era have': 280047, 'lost leverage': 503882, 'leverage with': 487795, 'with film': 998434, 'film studio': 305706, 'studio so': 814838, 'so studio': 778291, 'studio like': 814836, 'like disney': 490122, 'disney and': 246029, 'and universal': 74679, 'universal experimenting': 942360, 'with direct': 998045, 'consumer release': 198684, 'release universal': 709005, 'universal moreso': 942365, 'moreso premiering': 541077, 'premiering troll': 669913, 'troll world': 932347, 'world tour': 1010106, 'tour in': 926925, 'in theater': 429703, 'theater on': 872263, 'apr 10': 83355, 'and simultaneously': 71683, 'simultaneously offering': 770384, 'offering it': 595169, 'it 20': 456188, '20 home': 13090, 'home rental': 401967, '2020 03 23': 14082, '03 23 theater': 863, '23 theater in': 15437, 'theater in covid': 872256, '19 era have': 6819, 'era have lost': 280048, 'have lost leverage': 381381, 'lost leverage with': 503883, 'leverage with film': 487796, 'with film studio': 998435, 'film studio so': 305707, 'studio so studio': 814839, 'so studio like': 778292, 'studio like disney': 814837, 'like disney and': 490124, 'disney and universal': 246030, 'and universal experimenting': 74680, 'universal experimenting with': 942361, 'experimenting with direct': 291754, 'with direct to': 998048, 'to consumer release': 903327, 'consumer release universal': 198685, 'release universal moreso': 709006, 'universal moreso premiering': 942366, 'moreso premiering troll': 541078, 'premiering troll world': 669914, 'troll world tour': 932348, 'world tour in': 1010108, 'tour in theater': 926926, 'in theater on': 429704, 'theater on apr': 872264, 'on apr 10': 599425, 'apr 10 and': 83356, '10 and simultaneously': 1316, 'and simultaneously offering': 71684, 'simultaneously offering it': 770385, 'offering it 20': 595170, 'it 20 home': 456189, '20 home rental': 13092, 'not agree': 568090, 'his policy': 397713, 'policy but': 663354, 'they certainly': 881737, 'certainly agree': 170133, 'his stance': 397816, 'stance on': 793473, 'were limited': 979844, 'product only': 681490, 'only 10': 609961, '10 allowed': 1299, 'they may not': 882666, 'may not agree': 521369, 'not agree with': 568092, 'agree with all': 38676, 'with all his': 997151, 'all his policy': 43125, 'his policy but': 397714, 'policy but they': 663357, 'but they certainly': 147497, 'they certainly agree': 881738, 'certainly agree with': 170134, 'agree with his': 38677, 'with his stance': 998845, 'his stance on': 397817, 'stance on covid': 793474, 'supermarket today people': 823460, 'today people were': 920035, 'people were limited': 650212, 'were limited to': 979845, 'limited to of': 492774, 'same product only': 733254, 'product only 10': 681491, 'only 10 allowed': 609963, '10 allowed in': 1300, 'restriction sparking': 717378, 'sparking run': 787605, 'weekend preparing': 977392, 'what could': 981264, 'more retail': 540254, 'store restriction': 809860, 'in coming': 421584, '19 restriction sparking': 10182, 'restriction sparking run': 717379, 'sparking run on': 787606, 'run on cannabis': 727733, 'this weekend preparing': 891318, 'weekend preparing for': 977393, 'preparing for what': 670343, 'for what could': 327796, 'what could be': 981265, 'be more retail': 115993, 'more retail store': 540255, 'retail store restriction': 718697, 'store restriction in': 809862, 'restriction in coming': 717290, 'in coming day': 421586, 'cosgrove': 207778, 'uproar': 947724, 'lo': 497230, 'cosgrove uproar': 207779, 'uproar over': 947725, 'over here': 630278, 'in kurdistan': 424547, 'kurdistan regarding': 477957, 'regarding one': 707234, 'one funeral': 606334, 'funeral which': 341673, 'which took': 986404, 'took place': 925318, 'place couple': 657398, 'ago 40': 38315, '40 plus': 18645, 'plus people': 661654, 'now positive': 575570, 'positive because': 665263, 'one event': 606248, 'event meaning': 285021, 'meaning million': 524818, 'under complete': 940031, 'complete lockdown': 192112, 'lockdown even': 499346, 'even lo': 284305, 'cosgrove uproar over': 207780, 'uproar over here': 947726, 'over here in': 630284, 'here in kurdistan': 393155, 'in kurdistan regarding': 424548, 'kurdistan regarding one': 477958, 'regarding one funeral': 707235, 'one funeral which': 606335, 'funeral which took': 341674, 'which took place': 986405, 'took place couple': 925320, 'place couple of': 657399, 'of week ago': 592994, 'week ago 40': 975832, 'ago 40 plus': 38316, '40 plus people': 18646, 'plus people are': 661655, 'are now positive': 88586, 'now positive because': 575571, 'positive because of': 665264, 'because of that': 119412, 'of that one': 590733, 'that one event': 845494, 'one event meaning': 606249, 'event meaning million': 285022, 'meaning million of': 524819, 'are now under': 88612, 'now under complete': 576248, 'under complete lockdown': 940033, 'complete lockdown even': 192113, 'lockdown even lo': 499347, '24h': 15750, 'big 24h': 129609, '24h supermarket': 15755, 'supermarket nearby': 821579, 'nearby now': 553672, 'hour also': 405379, 'ha max': 371245, 'max number': 520762, 'any given': 79275, 'given time': 351179, 'time estimating': 896626, 'wa about': 961406, 'about an': 24789, 'hour long': 405746, 'long toronto': 501796, 'toronto city': 925930, 'million ha': 532176, 'ha 42': 369412, '42 non': 18905, 'non nursing': 566442, 'death so': 230194, 'the big 24h': 849594, 'big 24h supermarket': 129610, '24h supermarket nearby': 15756, 'supermarket nearby now': 821581, 'nearby now ha': 553673, 'now ha limited': 574844, 'ha limited hour': 371148, 'limited hour also': 492645, 'hour also ha': 405380, 'also ha max': 48310, 'ha max number': 371246, 'max number of': 520763, 'people allowed inside': 646810, 'allowed inside the': 46178, 'inside the store': 439420, 'store at any': 806579, 'at any given': 98021, 'any given time': 79279, 'given time estimating': 351181, 'time estimating the': 896627, 'estimating the line': 282318, 'the line in': 859409, 'store wa about': 811096, 'wa about an': 961408, 'about an hour': 24791, 'an hour long': 56091, 'hour long toronto': 405749, 'long toronto city': 501797, 'toronto city of': 925931, 'city of million': 179287, 'of million ha': 586533, 'million ha 42': 532177, 'ha 42 non': 369413, '42 non nursing': 18906, 'non nursing home': 566443, 'nursing home covid': 577614, '19 death so': 6454, 'death so far': 230195, 'over 84': 629936, '84 900': 22871, 'with diagnosed': 998021, 'diagnosed case': 240223, 'case have': 165761, 'have recovered': 382220, 'recovered look': 705237, 'positive in': 665352, 'corona 44': 203788, '44 in': 19006, 'my state': 550191, 'positive with': 665490, 'with 800': 997062, '800 pending': 22714, 'pending case': 646473, 'everything here': 287836, 'here medical': 393342, 'food lack': 315271, 'over 84 900': 629937, '84 900 people': 22872, '900 people with': 23391, 'people with diagnosed': 650441, 'with diagnosed case': 998022, 'diagnosed case have': 240224, 'case have recovered': 165765, 'have recovered look': 382223, 'recovered look at': 705238, 'at the positive': 101057, 'the positive in': 864061, 'positive in this': 665356, 'in this corona': 429919, 'this corona 44': 886863, 'corona 44 in': 203789, '44 in my': 19007, 'in my state': 425631, 'my state are': 550192, 'state are positive': 795389, 'are positive with': 89151, 'positive with 800': 665491, 'with 800 pending': 997064, '800 pending case': 22715, 'pending case we': 646474, 'case we have': 166095, 'we have shortage': 971938, 'have shortage of': 382526, 'shortage of everything': 765110, 'of everything here': 583272, 'everything here medical': 287838, 'here medical and': 393343, 'medical and food': 526045, 'and food lack': 63065, 'food lack of': 315272, 'lack of test': 478662, 'malamjumat': 511541, 'sondurum': 785472, 'gntm': 353228, 'shopeeth': 761134, 'onto hope': 611664, 'for cure': 320487, 'cure let': 220766, 'been affecting': 120627, 'affecting you': 34588, 'comment malamjumat': 188430, 'malamjumat sondurum': 511542, 'sondurum gntm': 785473, 'gntm coronacrisis': 353229, 'coronacrisis online': 204682, 'shopping shoplocal': 763868, 'shoplocal shopeeth': 761226, 'shopeeth coronacrisis': 761135, 'hold onto hope': 399986, 'onto hope for': 611665, 'hope for cure': 403480, 'for cure let': 320488, 'cure let know': 220768, 'let know how': 486858, 'know how ha': 476440, 'how ha been': 407943, 'ha been affecting': 369712, 'been affecting you': 120629, 'affecting you in': 34592, 'the comment malamjumat': 851213, 'comment malamjumat sondurum': 188431, 'malamjumat sondurum gntm': 511543, 'sondurum gntm coronacrisis': 785474, 'gntm coronacrisis online': 353231, 'coronacrisis online shop': 204683, 'online shop shopping': 608987, 'shop shopping shoplocal': 760779, 'shopping shoplocal shopeeth': 763869, 'shoplocal shopeeth coronacrisis': 761227, 'for speaking': 325804, 'speaking tell': 787768, 'are creating': 85616, 'panic leaving': 638266, 'vulnerable older': 961059, 'hunger instead': 411133, 'you for speaking': 1018671, 'for speaking tell': 325806, 'speaking tell people': 787769, 'tell people to': 837050, 'supply and do': 824712, 'and do their': 61564, 'do their regular': 250280, 'their regular shopping': 874546, 'regular shopping they': 707867, 'shopping they are': 764117, 'they are creating': 881239, 'are creating shortage': 85620, 'and panic leaving': 68658, 'panic leaving the': 638267, 'leaving the most': 485153, 'most vulnerable older': 542887, 'vulnerable older people': 961060, 'older people dying': 598645, 'people dying of': 647752, 'of hunger instead': 584909, 'hunger instead of': 411134, 'instead of dying': 440257, 'of dying of': 582895, 'kiev': 474280, 'in kiev': 424500, 'kiev hey': 474281, 'hey we': 394535, 'at would': 101639, 'worker worker': 1008285, 'can fill': 158305, 'form here': 329513, 'in kiev hey': 424501, 'kiev hey we': 474282, 'hey we at': 394536, 'we at would': 970802, 'at would love': 101641, 'love to talk': 504856, 'talk to you': 833897, 'and your worker': 76102, 'your worker worker': 1026386, 'worker worker can': 1008286, 'worker can fill': 1006586, 'can fill out': 158306, 'out this form': 627568, 'this form here': 887602, 'serve so': 751940, 'be checkout': 114079, 'checkout operator': 174969, 'operator in': 613369, 'with self serve': 1000624, 'self serve so': 747902, 'serve so popular': 751942, 'would be checkout': 1011567, 'be checkout operator': 114080, 'checkout operator in': 174971, 'operator in supermarket': 613373, 'everyo': 286665, 'point did': 662461, 'miss there': 534200, 'be problem': 116547, 'chain if': 170791, 'buy none': 149006, 'will matter': 994104, 'matter we': 520647, 'in uklockdown': 430402, 'uklockdown soon': 939009, 'soon anyway': 785625, 'anyway upside': 81050, 'upside to': 947866, 'least there': 484655, 'there ll': 878718, 'enough left': 277505, 'for everyo': 321192, 'what point did': 982038, 'point did miss': 662462, 'did miss there': 240687, 'miss there will': 534201, 'will be problem': 992618, 'be problem with': 116549, 'problem with the': 679765, 'supply chain if': 824974, 'chain if people': 170792, 'continue to panic': 201227, 'panic buy none': 637510, 'buy none of': 149007, 'none of which': 566603, 'of which will': 593113, 'which will matter': 986497, 'will matter we': 994105, 'matter we ll': 520649, 'all be in': 42133, 'be in uklockdown': 115446, 'in uklockdown soon': 430403, 'uklockdown soon anyway': 939010, 'soon anyway upside': 785626, 'anyway upside to': 81051, 'upside to that': 947868, 'to that is': 916452, 'that is at': 844557, 'at least there': 99554, 'least there ll': 484656, 'there ll be': 878720, 'll be enough': 496583, 'be enough left': 114687, 'enough left for': 277506, 'left for everyo': 485463, 'thriller': 894193, 'f2f': 294180, 'assc': 96337, 'mean this': 524720, 'whole thing': 990352, 'like scene': 491141, 'scene straight': 741358, 'of horror': 584759, 'movie ok': 544038, 'ok maybe': 597834, 'maybe thriller': 521856, 'thriller movie': 894194, 'movie either': 544003, 'it cause': 457074, 'cause some': 167737, 'of anxiety': 580241, 'anxiety had': 78718, 'had f2f': 373095, 'f2f communication': 294181, 'communication good': 189595, 'good assc': 356783, 'assc today': 96338, 'all place': 43962, 'we talked': 973498, 'talked across': 833935, 'across car': 29289, 'mean this is': 524722, 'this is crazy': 888220, 'is crazy this': 446901, 'crazy this whole': 215446, 'this whole thing': 891389, 'whole thing it': 990357, 'thing it like': 884497, 'it like scene': 459372, 'like scene straight': 491142, 'scene straight out': 741359, 'out of horror': 626755, 'of horror movie': 584760, 'horror movie ok': 404203, 'movie ok maybe': 544039, 'ok maybe thriller': 597836, 'maybe thriller movie': 521857, 'thriller movie either': 894195, 'movie either way': 544004, 'either way it': 270407, 'way it cause': 969672, 'it cause some': 457076, 'cause some form': 167738, 'form of anxiety': 329527, 'of anxiety had': 580244, 'anxiety had f2f': 78719, 'had f2f communication': 373096, 'f2f communication good': 294182, 'communication good assc': 189596, 'good assc today': 356784, 'assc today at': 96339, 'store of all': 809145, 'of all place': 579969, 'all place we': 43966, 'place we talked': 657818, 'we talked across': 973500, 'talked across car': 833936, 'marching': 515552, 'mete': 529676, 'shithole': 759322, 'iso': 454793, 'day8oflockdown': 228886, 'safe football': 729673, 'football song': 318512, 'song you': 785527, 'will walk': 995310, 'alone marching': 46884, 'marching on': 515555, 'on two': 604933, 'two mete': 937043, 'mete apart': 529677, 'apart that': 81350, 'that place': 845748, 'place wa': 657798, 'wa shithole': 963188, 'shithole glad': 759325, 'glad stayed': 351514, 'stayed home': 797862, 'home oh': 401709, 'oh when': 596485, 'the saint': 866169, 'saint go': 731816, 'so so': 778230, 'so iso': 777450, 'iso isolation': 454796, 'isolation stayhomesavelives': 455444, 'stayhomesavelives day8oflockdown': 798368, '19 safe football': 10285, 'safe football song': 729674, 'football song you': 318513, 'song you will': 785528, 'you will walk': 1022361, 'will walk alone': 995311, 'walk alone marching': 964732, 'alone marching on': 46885, 'marching on two': 515556, 'on two mete': 604936, 'two mete apart': 937044, 'mete apart that': 529678, 'apart that place': 81351, 'that place wa': 845750, 'place wa shithole': 657801, 'wa shithole glad': 963189, 'shithole glad stayed': 759326, 'glad stayed home': 351515, 'stayed home oh': 797863, 'home oh when': 401710, 'oh when the': 596486, 'when the saint': 984193, 'the saint go': 866170, 'saint go shopping': 731817, 'go shopping online': 354123, 'shopping online so': 763484, 'online so so': 609394, 'so so so': 778237, 'so so iso': 778235, 'so iso isolation': 777451, 'iso isolation stayhomesavelives': 454797, 'isolation stayhomesavelives day8oflockdown': 455445, 'people isolating': 648531, 'isolating from': 455100, 'cannot book': 161682, 'delivery because': 233743, 'slot have': 774203, 'son are': 785351, 'vulnerable people isolating': 961096, 'people isolating from': 648532, 'isolating from covid': 455101, '19 cannot book': 5640, 'cannot book food': 161683, 'food delivery because': 314110, 'delivery because all': 233744, 'because all the': 118919, 'the delivery slot': 853075, 'delivery slot have': 234524, 'slot have been': 774204, 'been taken by': 122128, 'taken by others': 832973, 'by others who': 153474, 'who can get': 988384, 'out to go': 627648, 'go shopping my': 354120, 'shopping my husband': 763311, 'husband and and': 411671, 'and and our': 58137, 'and our son': 68519, 'our son are': 624844, 'son are in': 785352, 'in the vulnerable': 429651, 'the vulnerable group': 870983, 'vulnerable group and': 960981, 'group and cannot': 366602, 'really annoying': 701972, 'annoying related': 77369, 'related thing': 708586, 'thing couple': 884255, 'couple at': 211564, 'person need': 652543, 'need big': 554540, 'big shopping': 129989, 'cart to': 165399, 'of couple': 582037, 'two cart': 936820, 'cart so': 165380, 'shopping together': 764217, 'together that': 920970, 'that absolutely': 842477, 'absolutely fine': 27360, 'list of really': 494466, 'of really annoying': 588803, 'really annoying related': 701973, 'annoying related thing': 77370, 'related thing couple': 708587, 'thing couple at': 884256, 'couple at grocery': 211565, 'store there the': 810651, 'there the rule': 879152, 'the rule that': 866053, 'rule that person': 727371, 'that person need': 845721, 'person need big': 652544, 'need big shopping': 554541, 'big shopping cart': 129990, 'shopping cart to': 762319, 'cart to enter': 165400, 'enter the store': 278318, 'the store there': 868120, 'lot of couple': 504165, 'of couple who': 582039, 'couple who take': 211718, 'who take two': 989733, 'take two cart': 832760, 'two cart so': 936822, 'cart so that': 165381, 'can do their': 158122, 'their shopping together': 874725, 'shopping together that': 764219, 'together that absolutely': 920971, 'that absolutely fine': 842478, 'tauler': 834908, 'llp': 497137, 'ionic': 444450, 'herbal': 392579, 'eucalyptus': 283304, 'hocked': 399797, 'robert tauler': 724713, 'tauler of': 834909, 'of tauler': 590605, 'tauler smith': 834911, 'smith llp': 775800, 'llp told': 497138, 'told we': 923785, 'explosion in': 292557, 'in colloidal': 421554, 'silver ionic': 769810, 'ionic silver': 444451, 'silver herbal': 769806, 'herbal tea': 392584, 'tea even': 835350, 'even essential': 284045, 'oil like': 596925, 'like eucalyptus': 490178, 'eucalyptus all': 283305, 'all hocked': 43134, 'hocked treatment': 399798, 'treatment or': 931115, 'their claim': 872787, 'robert tauler of': 724714, 'tauler of tauler': 834910, 'of tauler smith': 590606, 'tauler smith llp': 834912, 'smith llp told': 775801, 'llp told we': 497139, 'told we ve': 923787, 've seen an': 953524, 'seen an explosion': 746930, 'an explosion in': 55976, 'explosion in colloidal': 292559, 'in colloidal silver': 421555, 'colloidal silver ionic': 186668, 'silver ionic silver': 769811, 'ionic silver herbal': 444452, 'silver herbal tea': 769807, 'herbal tea even': 392585, 'tea even essential': 835351, 'even essential oil': 284046, 'essential oil like': 281349, 'oil like eucalyptus': 596926, 'like eucalyptus all': 490179, 'eucalyptus all hocked': 283306, 'all hocked treatment': 43135, 'hocked treatment or': 399799, 'treatment or cure': 931116, 'or cure there': 614872, 'cure there is': 220826, 'is no evidence': 449925, 'no evidence to': 564148, 'evidence to support': 288401, 'support their claim': 826895, 'futuristic': 342560, 'irrelevant': 445007, 'now being': 574238, 'being futuristic': 125177, 'futuristic with': 342561, 'shopping nobody': 763338, 'nobody will': 566083, 'will ever': 993342, 'need mall': 555191, 'mall the': 511837, 'been game': 121194, 'changer this': 172627, 'proven that': 686178, 'so renting': 778126, 'renting premise': 711320, 'premise is': 669929, 'is irrelevant': 448983, 'irrelevant office': 445011, 'you re now': 1020684, 're now being': 699137, 'now being futuristic': 574241, 'being futuristic with': 125178, 'futuristic with lot': 342562, 'online shopping nobody': 609197, 'shopping nobody will': 763339, 'nobody will ever': 566085, 'will ever need': 993347, 'ever need mall': 285428, 'need mall the': 555192, 'mall the covid': 511838, 'ha been game': 369813, 'been game changer': 121195, 'game changer this': 343152, 'changer this lockdown': 172628, 'this lockdown ha': 888688, 'lockdown ha proven': 499452, 'ha proven that': 371566, 'proven that people': 686179, 'people can work': 647419, 'can work at': 160242, 'at home so': 99111, 'home so renting': 402085, 'so renting premise': 778127, 'renting premise is': 711321, 'premise is irrelevant': 669930, 'is irrelevant office': 448984, 'hinge': 396887, 'estate will': 282202, 'vary by': 952667, 'by sector': 153905, 'the magnitude': 859886, 'will hinge': 993743, 'hinge on': 396888, 'economic shutdown': 267280, 'shutdown this': 768108, 'shoot at': 759731, 'real estate will': 701167, 'estate will vary': 282203, 'will vary by': 995295, 'vary by sector': 952669, 'by sector and': 153906, 'sector and market': 744087, 'and market and': 66702, 'and the magnitude': 73466, 'the magnitude of': 859887, 'magnitude of the': 508451, 'of the effect': 590974, 'effect will hinge': 269163, 'will hinge on': 993744, 'hinge on the': 396890, 'on the length': 604208, 'length of the': 486321, 'the economic shutdown': 853915, 'economic shutdown this': 267288, 'shutdown this is': 768109, 'time to invest': 898005, 'invest in real': 443763, 'in real estate': 427292, 'estate price are': 282173, 'likely to shoot': 492176, 'to shoot at': 914439, 'shoot at the': 759732, 'end of covid': 275894, 'need congratulation': 554629, 'deserve lot': 238075, 'that help people': 844301, 'people get what': 648063, 'they need congratulation': 882724, 'need congratulation to': 554630, 'congratulation to the': 194451, 'the store worker': 868150, 'worker who deserve': 1008203, 'who deserve lot': 988568, 'deserve lot of': 238076, 'lot of credit': 504168, 'hazemat': 384606, 'fullmoon': 341004, 'mask hazemat': 518790, 'hazemat suit': 384607, 'glove protect': 352877, 'worker hospital': 1007138, 'hospital worker': 404729, 'worker driver': 1006810, 'worker store': 1007835, 'clerk how': 181716, 'about everyday': 25194, 'everyday citizen': 286544, 'citizen america': 178825, 'america fullmoon': 51531, 'fullmoon stayhome': 341007, 'stayhome shutitdown': 798109, 'the mask hazemat': 860216, 'mask hazemat suit': 518791, 'hazemat suit glove': 384608, 'suit glove protect': 817766, 'glove protect our': 352878, 'our grocery worker': 623311, 'grocery worker hospital': 366177, 'worker hospital worker': 1007140, 'hospital worker driver': 404733, 'worker driver postal': 1006811, 'driver postal worker': 259708, 'postal worker store': 666481, 'worker store clerk': 1007836, 'store clerk how': 807013, 'clerk how about': 181717, 'how about everyday': 407279, 'about everyday citizen': 25195, 'everyday citizen america': 286545, 'citizen america fullmoon': 178826, 'america fullmoon stayhome': 51532, 'fullmoon stayhome shutitdown': 341008, 'rona': 725776, 'pandemicin5words': 637118, 'strongertogether': 814197, 'sometimes we': 785249, 'help weareinthistogether': 390871, 'weareinthistogether rona': 974549, 'rona pandemic': 725792, 'pandemic pandemicin5words': 636147, 'pandemicin5words strongertogether': 637119, 'strongertogether toiletpaper': 814200, 'sometimes we all': 785250, 'all need help': 43597, 'need help weareinthistogether': 554999, 'help weareinthistogether rona': 390873, 'weareinthistogether rona pandemic': 974550, 'rona pandemic pandemicin5words': 725793, 'pandemic pandemicin5words strongertogether': 636148, 'pandemicin5words strongertogether toiletpaper': 637120, 'store yep': 811657, 'yep this': 1015348, 'really happened': 702253, 'happened toiletpaperpanic': 377286, 'toiletpaperpanic toiletpaperpanic': 923291, 'toiletpaperpanic grocery': 923211, 'customer strict': 222884, 'limit ration': 492470, 'ration virus': 697747, 'toiletpaperemergency toiletpapershortage': 923142, 'toiletpapershortage mom': 923319, 'mom mother': 535776, 'grocery store yep': 365977, 'store yep this': 811658, 'yep this really': 1015350, 'this really happened': 889824, 'really happened toiletpaperpanic': 702254, 'happened toiletpaperpanic toiletpaperpanic': 377287, 'toiletpaperpanic toiletpaperpanic grocery': 923292, 'toiletpaperpanic grocery store': 923212, 'store customer strict': 807249, 'customer strict limit': 222885, 'strict limit ration': 813632, 'limit ration virus': 492471, 'ration virus sick': 697748, 'sanitizing pandemic toiletpaper': 736491, 'pandemic toiletpaper toiletpaperemergency': 636819, 'toiletpaper toiletpaperemergency toiletpapershortage': 922677, 'toiletpaperemergency toiletpapershortage mom': 923143, 'toiletpapershortage mom mother': 923320, 'oc': 578873, 'influence is': 437309, 'is powerful': 450971, 'powerful and': 667769, 'love when': 504869, 'when celebrity': 983243, 'celebrity use': 168907, 'use theirs': 949702, 'theirs for': 875269, 'good put': 357602, 'up money': 945394, 'money she': 537012, 'she earned': 756013, 'earned from': 264824, 'from cbs': 334812, 'cbs so': 168376, 'the oc': 862023, 'oc distillery': 578874, 'distillery she': 247808, 'is co': 446627, 'of could': 582012, 'could pivot': 209501, 'pivot from': 657083, 'making alcohol': 510942, 'influence is powerful': 437310, 'is powerful and': 450972, 'powerful and love': 667770, 'and love when': 66427, 'love when celebrity': 504870, 'when celebrity use': 983244, 'celebrity use theirs': 168908, 'use theirs for': 949703, 'theirs for good': 875270, 'for good put': 321940, 'good put up': 357603, 'put up money': 690965, 'up money she': 945397, 'money she earned': 537013, 'she earned from': 756014, 'earned from cbs': 264825, 'from cbs so': 334814, 'cbs so the': 168377, 'so the oc': 778433, 'the oc distillery': 862024, 'oc distillery she': 578875, 'distillery she is': 247809, 'she is co': 756147, 'is co owner': 446628, 'owner of could': 632509, 'of could pivot': 582014, 'could pivot from': 209502, 'pivot from making': 657084, 'from making alcohol': 336309, 'making alcohol to': 510944, 'alcohol to hand': 41149, 'sanitizer during the': 734802, 'bellends': 126505, 'start you': 794659, 'butcher buy': 148039, 'local none': 498210, 'that queuing': 845930, 'queuing round': 694229, 'park rubbish': 641976, 'rubbish like': 726991, 'like bunch': 489939, 'of bellends': 580669, 'bellends buylocal': 126506, 'buylocal stayhomesavelives': 151434, 'stayhomesavelives easterweekend': 798375, 'start you mean': 794660, 'you mean to': 1019827, 'mean to go': 524735, 'to go on': 906831, 'go on all': 353876, 'on all from': 599228, 'all from the': 42877, 'from the local': 337778, 'the local butcher': 859537, 'local butcher buy': 497794, 'butcher buy local': 148040, 'buy local none': 148915, 'local none of': 498211, 'none of that': 566595, 'of that queuing': 590739, 'that queuing round': 845931, 'queuing round the': 694230, 'the supermarket car': 868507, 'car park rubbish': 163233, 'park rubbish like': 641977, 'rubbish like bunch': 726992, 'like bunch of': 489940, 'bunch of bellends': 142618, 'of bellends buylocal': 580670, 'bellends buylocal stayhomesavelives': 126507, 'buylocal stayhomesavelives easterweekend': 151435, 'runny': 728154, 'wa paranoid': 962909, 'paranoid the': 641454, 'entire time': 278757, 'time thinking': 897915, 'thinking that': 885994, 'would think': 1012329, 'wa sick': 963225, 'sick because': 768389, 'had runny': 373468, 'runny nose': 728155, 'nose fear': 567889, 'showing allergy': 767411, 'allergy that': 45793, 'that always': 842607, 'always make': 49659, 'make him': 509976, 'him run': 396703, 'run hahaha': 727661, 'hahaha allergy': 373908, 'went shopping at': 979106, 'shopping at grocery': 762100, 'store with empty': 811374, 'shelf and wa': 756774, 'and wa paranoid': 75094, 'wa paranoid the': 962910, 'paranoid the entire': 641455, 'the entire time': 854370, 'entire time thinking': 278761, 'time thinking that': 897917, 'thinking that someone': 886000, 'that someone would': 846408, 'someone would think': 784804, 'would think wa': 1012333, 'think wa sick': 885749, 'wa sick because': 963226, 'sick because had': 768390, 'because had runny': 119093, 'had runny nose': 373469, 'runny nose fear': 728156, 'nose fear of': 567890, 'fear of showing': 301259, 'of showing allergy': 589697, 'showing allergy that': 767412, 'allergy that always': 45794, 'that always make': 842610, 'always make him': 49660, 'make him run': 509978, 'him run hahaha': 396704, 'run hahaha allergy': 727662, 'busier': 143166, 'buy few': 148619, 'wa fine': 962127, 'fine no': 307663, 'no raised': 565267, 'raised tension': 696041, 'tension no': 837987, 'shortage much': 765076, 'much busier': 544772, 'busier than': 143169, 'but nothing': 146587, 'be alarmed': 113538, 'alarmed about': 40688, 'safe sensible': 729929, 'and reasonable': 70021, 'reasonable while': 703141, 'we wait': 973733, 'to buy few': 902229, 'buy few thing': 148623, 'thing and it': 884125, 'it wa fine': 462111, 'wa fine no': 962129, 'fine no panic': 307666, 'panic no raised': 638345, 'no raised tension': 565268, 'raised tension no': 696042, 'tension no shortage': 837988, 'no shortage much': 565496, 'shortage much busier': 765077, 'much busier than': 544773, 'busier than normal': 143171, 'than normal for': 840945, 'normal for sure': 567155, 'for sure but': 326072, 'sure but nothing': 827512, 'but nothing to': 146592, 'nothing to be': 573187, 'to be alarmed': 901098, 'be alarmed about': 113539, 'alarmed about we': 40689, 'can all stay': 157436, 'stay safe sensible': 797273, 'safe sensible and': 729930, 'sensible and reasonable': 750634, 'and reasonable while': 70025, 'reasonable while we': 703142, 'while we wait': 987558, 'we wait out': 973736, 'telling over': 837246, '70 employee': 21760, 'home on': 401711, 'on unpaid': 604977, 'survive gross': 829179, 'gross if': 366435, 'can too': 160023, 'sainsburys telling over': 731794, 'telling over 70': 837247, 'over 70 employee': 629907, '70 employee to': 21761, 'employee to stay': 274335, 'stay home on': 796987, 'home on unpaid': 401718, 'on unpaid leave': 604978, 'day to survive': 228589, 'to survive gross': 916032, 'survive gross if': 829180, 'gross if homebargains': 366436, 'it you can': 462639, 'you can too': 1017815, 'can too supermarket': 160024, 'too supermarket convid19uk': 925096, 'sablaka': 729003, 'vinita': 957450, 'in friend': 423122, 'friend sablaka': 333783, 'sablaka rm': 729004, 'rm vinita': 724256, 'puzzle join in': 691328, 'join in friend': 466747, 'in friend sablaka': 423123, 'friend sablaka rm': 333784, 'sablaka rm vinita': 729005, 'admittedly': 32634, 'admittedly it': 32635, 'great worker': 363120, 'being supported': 125890, 'supported but': 827039, 'but seems': 146994, 'seems unfair': 746889, 'unfair that': 941440, 'on higher': 601301, 'higher wage': 395792, 'wage will': 963994, 'more while': 540970, 'working than': 1008931, 'than those': 841322, 'those nh': 892250, 'cashier delivery': 166507, 'worker keeping': 1007279, 'admittedly it great': 32636, 'it great worker': 458342, 'great worker are': 363121, 'are being supported': 84930, 'being supported but': 125891, 'supported but seems': 827040, 'but seems unfair': 146996, 'seems unfair that': 746890, 'unfair that those': 941442, 'that those on': 847014, 'those on higher': 892286, 'on higher wage': 601304, 'higher wage will': 395795, 'wage will be': 963996, 'will be paid': 992597, 'paid more while': 634091, 'more while not': 540971, 'while not working': 987087, 'not working than': 572553, 'working than those': 1008932, 'than those nh': 841323, 'those nh staff': 892251, 'nh staff supermarket': 562103, 'staff supermarket cashier': 792901, 'supermarket cashier delivery': 819554, 'cashier delivery driver': 166508, 'all the key': 44803, 'the key worker': 858767, 'key worker keeping': 473493, 'worker keeping the': 1007283, 'keeping the country': 472574, 'the country going': 852087, 'the homeless': 857462, 'homeless people': 402768, 'cannot work': 162233, 'home undocumented': 402392, 'undocumented refugee': 941031, 'refugee low': 706849, 'food let': 315298, 'alone stock': 46911, 'many people that': 514536, 'that are more': 842779, 'are more vulnerable': 88127, '19 virus the': 11838, 'virus the homeless': 958886, 'the homeless people': 857471, 'homeless people who': 402775, 'who cannot work': 988432, 'cannot work from': 162234, 'from home undocumented': 335923, 'home undocumented refugee': 402393, 'undocumented refugee low': 941032, 'refugee low income': 706850, 'income people who': 432435, 'who cannot afford': 988418, 'cannot afford food': 161600, 'afford food let': 34695, 'food let alone': 315299, 'let alone stock': 486584, 'alone stock up': 46912, 'stock up and': 803057, 'up and so': 944373, 'so many others': 777687, 'tampa': 834118, 'birthday gift': 131431, 'gift dropped': 349964, 'by dear': 152304, 'dear friend': 229791, 'friend will': 333911, 'forever grateful': 329119, 'grateful can': 362247, 'the pack': 862836, 'pack thankful': 633159, 'thankful toiletpaper': 841933, 'toiletpaper birthday': 921814, 'birthday tampa': 131454, 'tampa florida': 834123, 'birthday gift dropped': 131432, 'gift dropped off': 349965, 'dropped off by': 260606, 'off by dear': 593708, 'by dear friend': 152305, 'dear friend will': 229792, 'friend will be': 333913, 'be forever grateful': 114921, 'forever grateful can': 329120, 'grateful can get': 362248, 'can get the': 158458, 'get the rest': 348290, 'of the pack': 591313, 'the pack thankful': 862839, 'pack thankful toiletpaper': 633160, 'thankful toiletpaper birthday': 841934, 'toiletpaper birthday tampa': 921815, 'birthday tampa florida': 131455, '635': 21288, 'far arrested': 298709, 'arrested 635': 93799, '635 individual': 21291, 'individual for': 435183, 'hoarding profiteering': 399488, 'or manipulation': 616058, 'supply amid': 824684, 'crisis gripping': 217425, 'authority have so': 103740, 'have so far': 382598, 'so far arrested': 777012, 'far arrested 635': 298710, 'arrested 635 individual': 93800, '635 individual for': 21292, 'individual for hoarding': 435184, 'for hoarding profiteering': 322326, 'hoarding profiteering and': 399489, 'profiteering and or': 683001, 'and or manipulation': 68219, 'or manipulation of': 616059, 'manipulation of price': 513232, 'of basic good': 580569, 'basic good and': 111907, 'good and medical': 356736, 'medical supply amid': 526425, 'supply amid the': 824687, '19 crisis gripping': 6254, 'crisis gripping the': 217426, 'gripping the country': 364061, 'counterfeiter': 210313, 'of counterfeiter': 582023, 'counterfeiter the': 210320, 'with law': 999185, 'enforcement to': 276792, 'warn about': 966920, 'prevent criminal': 671609, 'criminal from': 216838, 'from exploiting': 335369, 'exploiting the': 292450, 'fda are': 300836, 'are monitoring': 88101, 'monitoring to': 537384, 'halt fraudulent': 374437, 'product sale': 681588, 'beware of counterfeiter': 129075, 'of counterfeiter the': 582024, 'counterfeiter the is': 210321, 'the is working': 858547, 'working with law': 1009059, 'with law enforcement': 999186, 'law enforcement to': 482278, 'enforcement to warn': 276793, 'to warn about': 918338, 'warn about how': 966922, 'be prepared to': 116521, 'prepared to prevent': 670257, 'to prevent criminal': 912053, 'prevent criminal from': 671610, 'criminal from exploiting': 216839, 'from exploiting the': 335370, 'exploiting the pandemic': 292457, 'pandemic and fda': 634877, 'and fda are': 62730, 'fda are monitoring': 300837, 'are monitoring to': 88104, 'monitoring to halt': 537385, 'to halt fraudulent': 907101, 'halt fraudulent product': 374438, 'fraudulent product sale': 331469, 'ig1': 415678, 'bare shop': 110951, 'who been': 988303, 'been fined': 121150, 'in ig1': 423971, 'bare shop who': 110952, 'shop who been': 761041, 'who been fined': 988304, 'been fined for': 121151, 'fined for increasing': 307745, 'for increasing price': 322534, 'increasing price during': 433670, '19 outbreak are': 9084, 'outbreak are in': 628026, 'are in ig1': 87400, '265': 16220, 'bats99': 112719, 'supp': 824407, '265 bats99': 16223, 'bats99 13': 112720, '13 we': 3279, 'help due': 389602, 'our place': 624349, 'place is': 657522, 'is lockdown': 449420, 'lockdown now': 499700, 'family safe': 298198, 'off course': 593746, 'course want': 211954, 'and supp': 72759, '265 bats99 13': 16224, 'bats99 13 we': 112722, '13 we need': 3280, 'need help due': 554979, 'help due to': 389603, '19 our place': 9058, 'our place is': 624351, 'place is lockdown': 657526, 'is lockdown now': 449422, 'lockdown now want': 499705, 'now want my': 576322, 'want my family': 965858, 'my family safe': 548220, 'family safe and': 298199, 'safe and off': 729464, 'and off course': 67964, 'off course want': 593747, 'course want to': 211955, 'food and supp': 313351, 'mondelez is': 536529, 'hiring 00': 397052, '00 employee': 185, 'help maintain': 390026, 'maintain supply': 509052, 'chain amid': 170446, 'amid surging': 52677, 'for packaged': 324351, 'mondelez is hiring': 536530, 'is hiring 00': 448480, 'hiring 00 employee': 397053, '00 employee to': 189, 'employee to help': 274328, 'to help maintain': 907554, 'help maintain supply': 390028, 'maintain supply chain': 509053, 'supply chain amid': 824901, 'chain amid surging': 170448, 'amid surging demand': 52678, 'demand for packaged': 235469, 'for packaged good': 324353, 'packaged good because': 633488, 'continues we': 201516, 'should ration': 766366, 'ration the': 697736, 'grocery you': 366200, 'also solve': 48892, 'of obesity': 587140, 'greed at': 363366, 'think if this': 885295, 'if this panic': 415165, 'buying continues we': 150141, 'continues we should': 201517, 'we should ration': 973288, 'should ration the': 766367, 'ration the grocery': 697739, 'the grocery you': 856836, 'grocery you actually': 366201, 'you actually need': 1016812, 'actually need this': 30907, 'need this will': 555828, 'this will also': 891404, 'will also solve': 992268, 'also solve the': 48893, 'the problem of': 864521, 'problem of obesity': 679628, 'of obesity and': 587141, 'obesity and greed': 578369, 'and greed at': 63942, 'greed at the': 363367, 'tp be': 927759, 'like toiletpaper': 491645, 'toiletpaper coronacrisis': 921883, 'people buying all': 647340, 'the tp be': 869839, 'tp be like': 927760, 'be like toiletpaper': 115751, 'like toiletpaper coronacrisis': 491646, 'cndns': 184738, 'dairy processor': 225024, 'processor and': 680057, 'feed canadian': 302290, 'canadian while': 160771, 'while they': 987433, 'they respond': 883209, 'unforeseen fluctuation': 941544, 'fluctuation in': 311518, 'including donating': 431941, 'donating milk': 254474, 'milk product': 531792, 'foodbanks to': 317851, 'support cndns': 826419, 'cndns in': 184739, 'dairy processor and': 225025, 'processor and farmer': 680058, 'farmer are doing': 299274, 'can to feed': 160007, 'to feed canadian': 905719, 'feed canadian while': 302291, 'canadian while they': 160772, 'while they respond': 987442, 'they respond to': 883210, 'to the unforeseen': 917157, 'the unforeseen fluctuation': 870394, 'unforeseen fluctuation in': 941545, 'fluctuation in the': 311522, 'in the demand': 429128, 'demand for milk': 235455, 'for milk in': 323429, 'milk in grocery': 531697, 'store including donating': 808418, 'including donating milk': 431942, 'donating milk product': 254475, 'milk product to': 531794, 'product to foodbanks': 681746, 'to foodbanks to': 906116, 'foodbanks to support': 317852, 'to support cndns': 915914, 'support cndns in': 826420, 'cndns in need': 184740, 'need during 19': 554717, 'meeting india': 527716, 'india being': 434320, 'oil but': 596658, 'but due': 145627, 'demand saudi': 236169, 'saudi in': 737273, 'in turn': 430335, 'turn keep': 935699, 'keep pumping': 471836, 'pumping oil': 689128, 'oil into': 596896, 'incredible 11': 433811, 'opec is having': 611904, 'having an online': 383974, 'an online meeting': 56621, 'online meeting india': 608536, 'meeting india being': 527717, 'india being the': 434321, 'being the largest': 125930, 'the largest consumer': 858960, 'largest consumer of': 479937, 'consumer of oil': 198246, 'of oil but': 587179, 'oil but due': 596659, 'but due to': 145628, 'pandemic ha reduced': 635562, 'ha reduced their': 371687, 'reduced their demand': 706188, 'their demand saudi': 873001, 'demand saudi in': 236171, 'saudi in turn': 737274, 'in turn keep': 430338, 'turn keep pumping': 935700, 'keep pumping oil': 471837, 'pumping oil into': 689129, 'oil into the': 596897, 'into the market': 443148, 'the market and': 860086, 'market and oil': 515977, 'fell to an': 303245, 'to an incredible': 900462, 'an incredible 11': 56254, 'incredible 11 per': 433812, 'cerealismyeverything': 169951, 'all fun': 42897, 'fun game': 341167, 'game when': 343284, 'when folk': 983431, 'folk panicked': 312232, 'panicked and': 639245, 'started hoarding': 794748, 'hoarding but': 399232, 'life cereal': 488551, 'cereal and': 169915, 'nothing shelf': 573154, 'empty what': 275234, 'this need': 889099, 'fixed immediately': 309794, 'immediately cerealismyeverything': 417069, 'it wa all': 462060, 'wa all fun': 961465, 'all fun game': 42898, 'fun game when': 341168, 'game when folk': 343285, 'when folk panicked': 983433, 'folk panicked and': 312233, 'panicked and started': 639247, 'and started hoarding': 72257, 'started hoarding but': 794749, 'hoarding but went': 399235, 'buy some life': 149209, 'some life cereal': 783195, 'life cereal and': 488552, 'cereal and there': 169916, 'wa nothing shelf': 962787, 'nothing shelf empty': 573155, 'shelf empty what': 757043, 'empty what am': 275235, 'what am supposed': 981022, 'to do now': 904534, 'do now this': 249914, 'now this need': 576133, 'this need to': 889101, 'be fixed immediately': 114876, 'fixed immediately cerealismyeverything': 309795, 'wanna feel': 965629, 'like teenager': 491302, 'teenager again': 836531, 'again hang': 37012, 'hang around': 376927, 'around outside': 93443, 'ask someone': 95617, 'you alcohol': 1016859, 'alcohol because': 40940, 'you aren': 1017297, 'inside quaratinelife': 439368, 'wanna feel like': 965630, 'feel like teenager': 302750, 'like teenager again': 491303, 'teenager again hang': 836532, 'again hang around': 37013, 'hang around outside': 376928, 'around outside grocery': 93444, 'store ask someone': 806547, 'ask someone to': 95620, 'someone to buy': 784698, 'to buy you': 902342, 'buy you alcohol': 149487, 'you alcohol because': 1016861, 'alcohol because you': 40941, 'because you aren': 119860, 'you aren allowed': 1017299, 'aren allowed inside': 92312, 'allowed inside quaratinelife': 46175, 'be fucking': 114972, 'serious if': 751405, 'if toilet': 415183, 'paper price': 640610, 'price didn': 673435, 'didn go': 241074, 'up well': 946555, 'fucking know': 339927, 'why forgot': 991002, 'so ll': 777568, 'make one': 510264, 'one up': 607326, 'but ink': 146056, 'ink cartridge': 438738, 'cartridge for': 165545, 'example cost': 288880, 'cost like': 208002, 'make but': 509758, 'but sell': 147002, 'for like': 322978, 'like 50': 489704, '50 so': 19852, 'why toilet': 991484, 'paper isn': 640369, 'to be fucking': 901270, 'be fucking serious': 114973, 'fucking serious if': 339994, 'serious if toilet': 751406, 'if toilet paper': 415184, 'toilet paper price': 921400, 'paper price didn': 640611, 'price didn go': 673436, 'didn go up': 241080, 'go up well': 354446, 'up well do': 946556, 'well do not': 978170, 'not fucking know': 569548, 'fucking know why': 339928, 'know why forgot': 477048, 'why forgot the': 991003, 'forgot the price': 329412, 'the price so': 864416, 'price so ll': 676507, 'so ll make': 777570, 'll make one': 496897, 'make one up': 510270, 'one up but': 607327, 'up but ink': 944524, 'but ink cartridge': 146057, 'ink cartridge for': 438740, 'cartridge for example': 165546, 'for example cost': 321274, 'example cost like': 288882, 'cost like to': 208003, 'like to make': 491607, 'to make but': 909633, 'make but sell': 509759, 'but sell for': 147003, 'sell for like': 748732, 'for like 50': 322979, 'like 50 so': 489706, '50 so do': 19853, 'so do not': 776884, 'know why toilet': 477061, 'why toilet paper': 991485, 'toilet paper isn': 921325, 'paper isn the': 640371, 'isn the same': 454715, 'discount supermarket': 244543, 'supermarket aldi': 818860, 'donating almost': 254430, 'almost half': 46661, 'million surplus': 532361, 'surplus easter': 828479, 'discount supermarket aldi': 244544, 'supermarket aldi is': 818861, 'aldi is donating': 41276, 'is donating almost': 447314, 'donating almost half': 254431, 'almost half million': 46662, 'half million surplus': 374205, 'million surplus easter': 532362, 'surplus easter egg': 828480, 'easter egg to': 265426, 'egg to charity': 270009, 'to charity and': 902650, 'charity and food': 173560, 'and food bank': 63031, 'privateer': 679002, 'predator': 669521, 'analytica': 57202, 'intimate': 442327, 'dna privateer': 248989, 'privateer are': 679003, 'are predator': 89183, 'predator think': 669526, 'think cambridge': 885177, 'cambridge analytica': 156939, 'analytica but': 57203, 'your intimate': 1024508, 'intimate personal': 442328, 'data not': 226310, 'just your': 470382, 'social graph': 779795, 'graph and': 362142, 'data we': 226486, 'need guardrail': 554940, 'guardrail on': 367924, 'any testing': 79949, 'testing website': 839685, 'website or': 975378, 'or database': 614887, 'database also': 226512, 'dna privateer are': 248990, 'privateer are predator': 679004, 'are predator think': 89184, 'predator think cambridge': 669527, 'think cambridge analytica': 885178, 'cambridge analytica but': 156940, 'analytica but with': 57204, 'but with your': 147904, 'with your intimate': 1002208, 'your intimate personal': 1024509, 'intimate personal data': 442329, 'personal data not': 652818, 'data not just': 226311, 'not just your': 570266, 'just your social': 470385, 'your social graph': 1025854, 'social graph and': 779796, 'graph and consumer': 362143, 'and consumer data': 60369, 'consumer data we': 197064, 'data we need': 226487, 'we need guardrail': 972492, 'need guardrail on': 554941, 'guardrail on any': 367925, 'on any testing': 599410, 'any testing website': 79950, 'testing website or': 839686, 'website or database': 975381, 'or database also': 614888, 'supply are': 824777, 'under strain': 940267, 'strain during': 812274, 'calm is': 156753, 'shortage buy': 764864, 'support safe': 826797, 'safe food': 729666, 'help cf': 389486, 'food system and': 317042, 'system and food': 831096, 'food supply are': 316933, 'supply are under': 824797, 'are under strain': 91288, 'under strain during': 940270, 'strain during the': 812275, 'pandemic situation we': 636480, 'situation we call': 772567, 'we call for': 970883, 'call for calm': 155857, 'for calm is': 319886, 'calm is there': 156754, 'is there enough': 453009, 'there enough for': 878356, 'for everyone there': 321243, 'no shortage buy': 565490, 'shortage buy local': 764865, 'buy local to': 148918, 'local to support': 498652, 'to support safe': 915965, 'support safe food': 826798, 'safe food supply': 729670, 'supply we also': 826075, 'we also need': 970401, 'also need your': 48555, 'your help cf': 1024297, 'all point': 43987, 'finger of': 307807, 'of blame': 580734, 'blame at': 132241, 'own government': 632022, 'outbreak remember': 628581, 'remember chinaliedpeopledied': 710174, 'before we all': 123283, 'we all point': 970352, 'all point the': 43988, 'the finger of': 855245, 'finger of blame': 307808, 'of blame at': 580735, 'blame at our': 132242, 'at our own': 100026, 'our own government': 624205, 'own government for': 632024, 'government for the': 360102, 'for the outbreak': 326602, 'the outbreak remember': 862688, 'outbreak remember chinaliedpeopledied': 628582, 'war dealt': 966409, 'dealt blow': 229711, 'blow to': 133354, 'to copper': 903516, 'copper price': 203436, 'price then': 676874, 'hit supply': 398416, 'demand mining': 235872, 'first the china': 309057, 'trade war dealt': 928606, 'war dealt blow': 966410, 'dealt blow to': 229712, 'blow to copper': 133356, 'to copper price': 903517, 'copper price then': 203444, 'price then the': 676877, 'then the hit': 877616, 'the hit supply': 857396, 'hit supply and': 398417, 'and demand mining': 61162, 'heather': 388521, 'mallick': 511866, 'death may': 230124, 'may increase': 521290, 'increase day': 432728, 'the terror': 869306, 'terror lie': 838594, 'lie the': 488380, 'true terror': 933180, 'terror is': 838592, 'is mass': 449592, 'mass death': 519753, 'could become': 208948, 'become reality': 120113, 'reality if': 701743, 'don tackle': 253947, 'tackle climate': 831562, 'change heather': 172075, 'heather mallick': 388522, 'mallick writes': 511867, '19 death may': 6447, 'death may increase': 230125, 'may increase day': 521292, 'increase day by': 432729, 'by day but': 152300, 'day but that': 227410, 'but that not': 147293, 'that not where': 845406, 'not where the': 572495, 'where the terror': 985253, 'the terror lie': 869307, 'terror lie the': 838595, 'lie the true': 488384, 'the true terror': 870056, 'true terror is': 933181, 'terror is mass': 838593, 'is mass death': 449593, 'mass death and': 519754, 'death and that': 229968, 'and that could': 73186, 'that could become': 843340, 'could become reality': 208954, 'become reality if': 120115, 'reality if we': 701744, 'we don tackle': 971396, 'don tackle climate': 253948, 'tackle climate change': 831563, 'climate change heather': 182195, 'change heather mallick': 172076, 'heather mallick writes': 388523, 'about imposing': 25507, 'imposing temporary': 419339, 'temporary 30': 837572, '30 gal': 17058, 'gal gas': 342903, 'gas tax': 344144, 'tax right': 835087, 'help fund': 389785, 'benefit gas': 126997, 'went so': 979115, 'fast most': 300006, 'american wouldn': 52328, 'wouldn feel': 1012462, 'what about imposing': 980978, 'about imposing temporary': 25508, 'imposing temporary 30': 419340, 'temporary 30 gal': 837573, '30 gal gas': 17059, 'gal gas tax': 342904, 'gas tax right': 344148, 'tax right now': 835088, 'now to help': 576169, 'to help fund': 907526, 'help fund covid': 389786, '19 benefit gas': 5373, 'benefit gas price': 126998, 'gas price went': 344050, 'price went so': 677436, 'went so low': 979116, 'so low so': 777610, 'low so fast': 505626, 'so fast most': 777078, 'fast most american': 300007, 'most american wouldn': 542094, 'american wouldn feel': 52329, 'wouldn feel it': 1012463, 'qataren': 691508, 'qataren limit': 691509, 'supermarket hypermarket': 820821, 'hypermarket and': 412324, 'grocery especially': 364494, 'during wed': 263398, 'wed thu': 975553, 'thu and': 895274, 'and fri': 63307, 'fri shop': 333159, 'shop like': 760403, 'like family': 490218, 'family food': 297805, 'food center': 313898, 'center lulu': 169251, 'lulu hypermarket': 506645, 'hypermarket are': 412326, 'fully packed': 341072, 'packed please': 633637, 'please take': 660627, 'this suggestion': 890411, 'qataren limit the': 691510, 'limit the amount': 492506, 'of people that': 587999, 'that can enter': 843104, 'can enter supermarket': 158238, 'enter supermarket hypermarket': 278301, 'supermarket hypermarket and': 820822, 'hypermarket and grocery': 412325, 'and grocery especially': 63983, 'grocery especially during': 364495, 'especially during wed': 280469, 'during wed thu': 263399, 'wed thu and': 975554, 'thu and fri': 895275, 'and fri shop': 63308, 'fri shop like': 333160, 'shop like family': 760405, 'like family food': 490219, 'family food center': 297806, 'food center lulu': 313899, 'center lulu hypermarket': 169252, 'lulu hypermarket are': 506646, 'hypermarket are fully': 412327, 'are fully packed': 86748, 'fully packed please': 341073, 'packed please take': 633638, 'please take this': 660641, 'take this suggestion': 832717, 'store re': 809743, 'ups on': 947758, 'on ground': 601194, 'when the grocery': 984157, 'grocery store re': 365702, 'store re ups': 809744, 're ups on': 699755, 'ups on ground': 947759, 'on ground beef': 601195, 'gear paid': 344969, 'paid aid': 633959, 'aid ccp': 39363, 'ccp chin': 168450, 'defective gear paid': 232081, 'gear paid aid': 344970, 'paid aid ccp': 633960, 'aid ccp chin': 39364, 'occupant': 578995, 'ok getting': 597805, 'another supply': 77889, 'run head': 727663, 'to walmart': 918311, 'walmart then': 965435, 'then our': 877393, 'then ll': 877315, 'll buy': 496666, 'big stuff': 130025, 'from sam': 337150, 'club like': 184453, 'like egg': 490158, 'egg can': 269812, 'eat see': 266045, 'everything need': 287925, 'my occupant': 549538, 'occupant today': 578996, 'today staysafestayhome': 920218, 'ok getting ready': 597806, 'getting ready for': 349216, 'ready for another': 700856, 'for another supply': 319377, 'another supply run': 77890, 'supply run head': 825783, 'run head to': 727664, 'head to walmart': 385836, 'to walmart then': 918314, 'walmart then our': 965436, 'then our local': 877395, 'our local grocery': 623775, 'store then ll': 810640, 'then ll buy': 877316, 'll buy the': 496670, 'buy the big': 149285, 'the big stuff': 849625, 'big stuff from': 130026, 'stuff from sam': 815077, 'from sam club': 337151, 'sam club like': 732917, 'club like egg': 184454, 'like egg and': 490159, 'egg and egg': 269763, 'and egg can': 61975, 'egg can eat': 269813, 'can eat see': 158199, 'eat see if': 266046, 'see if can': 745274, 'if can get': 413925, 'get everything need': 346967, 'everything need for': 287926, 'need for of': 554857, 'for of my': 324020, 'of my occupant': 586797, 'my occupant today': 549539, 'occupant today staysafestayhome': 578997, 'coronavirus fueled': 205968, 'fueled panic': 340332, 'buying cleared': 150115, 'cleared the': 181436, 'market via': 517295, 'via network': 956097, 'coronavirus fueled panic': 205969, 'fueled panic buying': 340333, 'panic buying cleared': 637678, 'buying cleared the': 150116, 'cleared the shelf': 181437, 'egg what next': 270031, 'next for egg': 561368, 'egg market via': 269913, 'market via network': 517297, 'kenttonight': 472835, 'kentsays': 472831, 'kenttonight poll': 472836, 'poll supermarket': 663860, 'ha restricted': 371745, 'restricted online': 717156, '80 item': 22591, 'item per': 463558, 'per shopper': 651017, 'shopper they': 761746, 'they hope': 882441, 'will protect': 994493, 'think let': 885369, 'thought kentsays': 893109, 'kenttonight poll supermarket': 472837, 'poll supermarket ha': 663861, 'supermarket ha restricted': 820646, 'ha restricted online': 371746, 'restricted online order': 717157, 'online order to': 608701, 'order to 80': 618658, 'to 80 item': 899850, '80 item per': 22592, 'item per shopper': 463562, 'per shopper they': 651018, 'shopper they hope': 761747, 'they hope this': 882443, 'this will protect': 891436, 'will protect people': 994496, 'protect people and': 684921, 'people and supply': 646885, 'and supply during': 72784, 'pandemic but what': 635062, 'but what do': 147784, 'you think let': 1021665, 'think let know': 885370, 'let know your': 486865, 'know your thought': 477101, 'your thought kentsays': 1026147, 'auspost': 103106, 'an overseas': 56751, 'overseas based': 631463, 'during iso': 262728, 'iso auspost': 454794, 'auspost is': 103107, 'delivering but': 233474, 'some mail': 783247, 'mail is': 508625, 'is impacted': 448686, 'by flight': 152599, 'flight restriction': 310532, 'wondering if you': 1004183, 'you order online': 1020234, 'order online from': 618469, 'online from an': 608268, 'from an overseas': 334496, 'an overseas based': 56752, 'overseas based business': 631464, 'based business if': 111523, 'if you will': 415561, 'will get it': 993508, 'get it during': 347405, 'it during iso': 457722, 'during iso auspost': 262729, 'iso auspost is': 454795, 'auspost is delivering': 103108, 'is delivering but': 447101, 'delivering but some': 233475, 'but some mail': 147101, 'some mail is': 783248, 'mail is impacted': 508626, 'is impacted by': 448688, 'impacted by flight': 418080, 'by flight restriction': 152600, 'shoplocalraleigh': 761247, 'raleigh': 696233, 'great local': 362811, 'retail online': 718345, 'from link': 336226, 'our bio': 622211, 'bio flattenthecurve': 131138, 'flattenthecurve shoplocalraleigh': 310199, 'shoplocalraleigh supportsmallbusiness': 761248, 'supportsmallbusiness raleigh': 827286, 'raleigh north': 696234, 'another great local': 77645, 'great local retail': 362813, 'local retail online': 498347, 'retail online shopping': 718347, 'online shopping list': 609174, 'shopping list from': 763187, 'list from link': 494334, 'from link is': 336228, 'in our bio': 426264, 'our bio flattenthecurve': 622212, 'bio flattenthecurve shoplocalraleigh': 131139, 'flattenthecurve shoplocalraleigh supportsmallbusiness': 310200, 'shoplocalraleigh supportsmallbusiness raleigh': 761249, 'supportsmallbusiness raleigh north': 827287, 'raleigh north carolina': 696235, 'peta': 653485, 'unacceptable where': 939376, 'where peta': 985113, 'peta hand': 653486, 'like vaccine': 491710, 'vaccine everyone': 951694, 'effective vaccination': 269322, 'is unacceptable where': 453427, 'unacceptable where peta': 939377, 'where peta hand': 985114, 'peta hand sanitizer': 653487, 'is like vaccine': 449339, 'like vaccine everyone': 491711, 'vaccine everyone must': 951695, 'everyone must have': 287195, 'must have access': 546692, 'to it in': 908587, 'it in order': 458739, 'in order for': 426214, 'order for it': 618231, 'it to be': 461707, 'be an effective': 113600, 'an effective vaccination': 55617, 'stomach': 804313, 'am also': 49870, 'also absolutely': 47807, 'absolutely sick': 27448, 'my stomach': 550209, 'stomach about': 804314, 'owner said': 632558, 'am also absolutely': 49871, 'also absolutely sick': 47808, 'absolutely sick to': 27449, 'sick to my': 768643, 'to my stomach': 910438, 'my stomach about': 550210, 'stomach about the': 804315, 'about the loss': 26441, 'loss of the': 503754, 'store owner said': 809439, 'burglary': 142848, 'ukbidscv19': 938927, 'watching national': 968766, 'national news': 552570, 'news coverage': 560347, 'coverage am': 212331, 'now aware': 574165, 'of fraudsters': 583897, 'fraudsters going': 331417, 'door offering': 255671, 'offering counterfeit': 595045, 'counterfeit cleaning': 210298, 'cleaning chemical': 180910, 'chemical to': 175390, 'prevent contamination': 671603, 'contamination this': 200735, 'risk is': 723639, 'that victim': 847244, 'victim have': 956476, 'is distracting': 447244, 'distracting burglary': 247897, 'burglary if': 142851, 'any problem': 79687, 'problem please': 679652, 'call 99': 155738, '99 ukbidscv19': 23908, 'watching national news': 968767, 'national news coverage': 552572, 'news coverage am': 560348, 'coverage am now': 212332, 'am now aware': 50262, 'now aware of': 574166, 'aware of fraudsters': 105633, 'of fraudsters going': 583898, 'fraudsters going door': 331418, 'to door offering': 904669, 'door offering counterfeit': 255672, 'offering counterfeit cleaning': 595046, 'counterfeit cleaning chemical': 210299, 'cleaning chemical to': 180911, 'chemical to prevent': 175391, 'to prevent contamination': 912051, 'prevent contamination this': 671604, 'contamination this is': 200736, 'this is scam': 888390, 'is scam the': 451668, 'scam the risk': 740407, 'the risk is': 865876, 'risk is that': 723644, 'is that victim': 452703, 'that victim have': 847245, 'victim have to': 956477, 'high price or': 395267, 'price or that': 675793, 'or that there': 617362, 'there is distracting': 878550, 'is distracting burglary': 447245, 'distracting burglary if': 247898, 'burglary if there': 142852, 'are any problem': 84579, 'any problem please': 79689, 'problem please call': 679653, 'please call 99': 659750, 'call 99 ukbidscv19': 155739, 'buyer leave': 149677, 'vulnerable without': 961262, 'coronavirus uk panic': 206986, 'uk panic buyer': 938608, 'panic buyer leave': 637585, 'buyer leave the': 149678, 'leave the vulnerable': 484980, 'the vulnerable without': 871006, 'vulnerable without food': 961263, 'without food 19': 1002651, 'food 19 corona': 313010, 'idiom': 413435, 'hamsterk': 374666, 'ufe': 937937, '19 hysteria': 7641, 'hysteria learned': 412459, 'learned new': 484132, 'new german': 558799, 'german idiom': 346228, 'idiom hamsterk': 413436, 'hamsterk ufe': 374667, 'ufe it': 937938, 'it literally': 459408, 'literally mean': 495040, 'mean hamster': 524469, 'hamster shopping': 374648, 'it actually': 456260, 'actually mean': 30884, 'mean panic': 524604, 'hoarding because': 399210, 'because real': 119511, 'real hamster': 701189, 'hamster are': 374638, 'are known': 87698, 'covid 19 hysteria': 213240, '19 hysteria learned': 7645, 'hysteria learned new': 412460, 'learned new german': 484133, 'new german idiom': 558800, 'german idiom hamsterk': 346229, 'idiom hamsterk ufe': 413437, 'hamsterk ufe it': 374668, 'ufe it literally': 937939, 'it literally mean': 459410, 'literally mean hamster': 495041, 'mean hamster shopping': 524471, 'hamster shopping it': 374649, 'shopping it actually': 763094, 'it actually mean': 456262, 'actually mean panic': 30885, 'mean panic buying': 524605, 'and hoarding because': 64650, 'hoarding because real': 399212, 'because real hamster': 119513, 'real hamster are': 701190, 'hamster are known': 374639, 'are known for': 87700, 'known for hoarding': 477216, 'for hoarding food': 322322, 'whole support': 990350, 'business via': 144617, 'via ordering': 956141, 'online however': 608381, 'however you': 409532, 'putting yourself': 691297, 'ordering outside': 619001, 'get the whole': 348312, 'the whole support': 871511, 'whole support local': 990351, 'local business via': 497780, 'business via ordering': 144618, 'via ordering food': 956142, 'ordering food online': 618970, 'food online however': 315623, 'online however you': 608382, 'however you re': 409534, 'you re putting': 1020717, 're putting yourself': 699339, 'putting yourself at': 691298, 'yourself at risk': 1026539, 'risk just by': 723655, 'just by ordering': 468399, 'by ordering outside': 153459, 'ordering outside food': 619002, 'blackmonday': 132201, 'hyperpoland': 412370, 'after blackmonday': 35421, 'blackmonday march': 132202, 'market plummeted': 516858, 'plummeted result': 661350, 'about hyperpoland': 25493, 'hyperpoland is': 412371, 'worth supporting': 1011438, 'our innovative': 623554, 'innovative transportation': 438936, 'transportation technology': 930039, 'technology now': 836340, 'now yeah': 576495, 'after blackmonday march': 35422, 'blackmonday march stock': 132204, 'march stock market': 515478, 'stock market plummeted': 802421, 'market plummeted result': 516859, 'plummeted result of': 661351, 'result of concern': 717583, 'of concern about': 581638, 'about the and': 26338, 'the and falling': 848699, 'price what about': 677465, 'what about hyperpoland': 980977, 'about hyperpoland is': 25494, 'hyperpoland is it': 412372, 'it worth supporting': 462573, 'worth supporting the': 1011439, 'supporting the development': 827207, 'development of our': 239832, 'of our innovative': 587490, 'our innovative transportation': 623555, 'innovative transportation technology': 438937, 'transportation technology now': 930040, 'technology now yeah': 836341, 'from because': 334652, 'because trader': 119749, 'joe it': 466423, 'it reflects': 460679, 'reflects the': 706687, 'hoard it': 398817, 'love this photo': 504832, 'this photo from': 889558, 'photo from because': 655168, 'from because trader': 334653, 'because trader joe': 119750, 'trader joe it': 928716, 'joe it reflects': 466424, 'it reflects the': 460680, 'reflects the fact': 706688, 'fact that there': 295813, 'of food available': 583651, 'food available and': 313470, 'available and people': 104228, 'and people do': 68859, 'to hoard it': 907872, 'coronvirusireland': 207160, 'many hotel': 514148, 'restaurant or': 716614, 'close may': 182716, 'or stock': 617229, 'not keep': 570272, 'keep is': 471602, 'there anyway': 878040, 'anyway they': 81044, 'could put': 209545, 'use rather': 949512, 'than have': 840728, 'to discard': 904345, 'discard it': 244320, 'thought coronvirusireland': 893009, 'many hotel restaurant': 514149, 'hotel restaurant or': 405188, 'restaurant or other': 716616, 'or other place': 616442, 'place that have': 657712, 'that have had': 844210, 'to close may': 902886, 'close may have': 182718, 'may have food': 521236, 'food or stock': 315670, 'or stock that': 617233, 'stock that will': 802925, 'will not keep': 994237, 'not keep is': 570273, 'keep is there': 471603, 'is there anyway': 453000, 'there anyway they': 878041, 'anyway they could': 81046, 'they could put': 881834, 'could put it': 209546, 'put it to': 690649, 'it to good': 461719, 'good use rather': 357927, 'use rather than': 949513, 'rather than have': 697527, 'than have to': 840731, 'have to discard': 383194, 'to discard it': 904347, 'discard it just': 244321, 'it just thought': 459251, 'just thought coronvirusireland': 470061, 'group distance': 366670, 'distance against': 246625, 'enough driver': 277365, 'deliver online': 233183, 'no friend': 564309, 'friend or': 333741, 'or relative': 616838, 'relative my': 708732, 'my position': 549815, 'position all': 665157, 'same group': 733094, 'how can someone': 407518, 'can someone in': 159672, 'someone in high': 784514, 'risk group distance': 723589, 'group distance against': 366671, 'distance against 19': 246626, 'against 19 when': 37308, '19 when not': 12023, 'when not enough': 983781, 'not enough driver': 569180, 'enough driver to': 277366, 'to deliver online': 904109, 'deliver online shopping': 233184, 'shopping ha no': 762829, 'ha no friend': 371340, 'no friend or': 564310, 'friend or relative': 333746, 'or relative my': 616839, 'relative my position': 708733, 'my position all': 549816, 'position all here': 665158, 'all here are': 43100, 'here are in': 392743, 'are in same': 87431, 'in same group': 427676, 'neptune': 557425, 'laidlaw': 479045, 'interesting quote': 441598, 'quote by': 694983, 'by neptune': 153316, 'neptune chairman': 557426, 'chairman sam': 171351, 'sam laidlaw': 732924, 'laidlaw our': 479046, 'our sector': 624696, 'sector deal': 744156, 'twin challenge': 936567, 'and lower': 66449, 'price sustainability': 676737, 'sustainability ha': 829769, 'very interesting quote': 955276, 'interesting quote by': 441599, 'quote by neptune': 694984, 'by neptune chairman': 153317, 'neptune chairman sam': 557427, 'chairman sam laidlaw': 171352, 'sam laidlaw our': 732925, 'laidlaw our sector': 479047, 'our sector deal': 624697, 'sector deal with': 744157, 'with the twin': 1001523, 'the twin challenge': 870130, 'twin challenge posed': 936569, 'pandemic and lower': 634883, 'and lower commodity': 66450, 'commodity price sustainability': 189290, 'price sustainability ha': 676738, 'sustainability ha never': 829770, 'oklahoman': 598090, 'administer': 32435, 'general hunter': 345356, 'hunter said': 411395, 'said oklahoman': 731279, 'oklahoman need': 598091, 'high alert': 394913, 'alert for': 41413, 'scam artist': 740054, 'artist trying': 94626, 'or administer': 614263, 'administer home': 32436, 'attorney general hunter': 102642, 'general hunter said': 345358, 'hunter said oklahoman': 411396, 'said oklahoman need': 731280, 'oklahoman need to': 598092, 'be on high': 116197, 'on high alert': 601295, 'high alert for': 394914, 'alert for scam': 41422, 'for scam artist': 325362, 'scam artist trying': 740058, 'artist trying to': 94627, 'trying to sell': 934869, 'to sell or': 914166, 'sell or administer': 748832, 'or administer home': 614264, 'administer home testing': 32437, 'kit for covid': 475542, 'paper security': 640733, 'now top': 576213, 'feel like supermarket': 302747, 'like supermarket toilet': 491273, 'toilet paper security': 921437, 'paper security is': 640734, 'security is now': 744658, 'is now top': 450350, 'now top priority': 576214, 'top priority for': 925680, 'shrtage': 767722, '2nd time': 16805, 'or meat': 616098, 'meat at': 525491, 'hell there': 389071, 'food shrtage': 316624, 'shrtage is': 767723, '2nd time in': 16806, 'in week could': 430749, 'week could not': 976118, 'not get bread': 569579, 'bread or meat': 138554, 'or meat at': 616099, 'meat at grocery': 525492, 'at grocery what': 98818, 'grocery what the': 366130, 'the hell there': 857249, 'hell there no': 389073, 'no food shrtage': 564271, 'food shrtage is': 316625, 'shrtage is there': 767724, 'fibre2fashion': 304406, 'steeply': 799417, 'fibre2fashion say': 304407, 'say demand': 738558, 'ha steeply': 372058, 'steeply declined': 799418, 'in fashion': 422798, 'fashion retail': 299838, 'retail with': 718863, 'consumer showing': 198985, 'showing limited': 767476, 'limited or': 492690, 'no buying': 563747, 'buying activity': 149857, 'activity which': 30534, 'on raw': 603080, 'raw material': 697969, 'material price': 520406, 'the cancellation': 850331, 'cancellation of': 161036, 'order store': 618601, 'potential labour': 667097, 'labour unemployment': 478529, 'fibre2fashion say demand': 304408, 'say demand ha': 738560, 'demand ha steeply': 235618, 'ha steeply declined': 372059, 'steeply declined in': 799419, 'declined in fashion': 231431, 'in fashion retail': 422799, 'fashion retail with': 299840, 'retail with consumer': 718864, 'with consumer showing': 997768, 'consumer showing limited': 198986, 'showing limited or': 767477, 'limited or no': 492692, 'or no buying': 616257, 'no buying activity': 563748, 'buying activity which': 149858, 'activity which ha': 30535, 'which ha led': 985890, 'led to an': 485271, 'to an impact': 900459, 'impact on raw': 417882, 'on raw material': 603081, 'raw material price': 697979, 'material price the': 520410, 'price the cancellation': 676823, 'the cancellation of': 850333, 'cancellation of order': 161041, 'of order store': 587339, 'order store closure': 618602, 'closure and potential': 183842, 'and potential labour': 69259, 'potential labour unemployment': 667098, 'furnace': 341939, 'resuming': 717763, 'utilization': 951348, 'dampen': 225489, 'mar 13': 514968, '13 blast': 3191, 'blast furnace': 132412, 'furnace operation': 341940, 'operation are': 613138, 'are resuming': 89659, 'resuming and': 717766, 'capacity utilization': 162602, 'utilization rate': 951349, 'rate ha': 697240, 'ha reached': 371633, 'reached 75': 700027, '75 will': 22169, 'this boost': 886595, 'boost iron': 134972, 'ore sale': 619124, 'sale or': 732431, 'or dampen': 614885, 'dampen steel': 225498, 'on mar 13': 602001, 'mar 13 blast': 514969, '13 blast furnace': 3192, 'blast furnace operation': 132413, 'furnace operation are': 341941, 'operation are resuming': 613143, 'are resuming and': 89660, 'resuming and capacity': 717767, 'and capacity utilization': 59536, 'capacity utilization rate': 162603, 'utilization rate ha': 951350, 'rate ha reached': 697241, 'ha reached 75': 371634, 'reached 75 will': 700028, '75 will this': 22170, 'will this boost': 995192, 'this boost iron': 886596, 'boost iron ore': 134973, 'iron ore sale': 444922, 'ore sale or': 619125, 'sale or dampen': 732432, 'or dampen steel': 614886, 'dampen steel price': 225499, 'notallheroeswearcapes': 572658, 'that minimum': 845176, 'wage grocery': 963883, 'worker were': 1008161, 'were signing': 980127, 'signing up': 769654, 'apocalypse and': 81507, 'save all': 737464, 'starvation notallheroeswearcapes': 795175, 'knew that minimum': 476074, 'that minimum wage': 845177, 'minimum wage grocery': 533233, 'wage grocery store': 963884, 'store worker were': 811620, 'worker were signing': 1008170, 'were signing up': 980128, 'signing up to': 769655, 'work through the': 1005866, 'through the apocalypse': 894718, 'the apocalypse and': 848803, 'apocalypse and save': 81509, 'and save all': 70948, 'save all from': 737465, 'all from starvation': 42875, 'from starvation notallheroeswearcapes': 337410, 'dirkvandenbroek': 243707, 'vakkenvuller': 951865, 'naar': 551334, 'huis': 410330, 'gestuurd': 346447, 'om': 598805, 'dragen': 258170, 'mondkapje': 536531, 'jongen': 467265, 'wilde': 992103, 'hij': 396178, 'puur': 691305, 'uit': 938131, 'veiligheid': 954303, 'eigen': 270174, 'gezondheid': 349492, 'niet': 562669, 'spel': 788512, 'zetten': 1027525, 'triest': 931859, 'dirkvandenbroek vakkenvuller': 243708, 'vakkenvuller naar': 951866, 'naar huis': 551335, 'huis gestuurd': 410331, 'gestuurd om': 346448, 'om dragen': 598806, 'dragen mondkapje': 258171, 'mondkapje jongen': 536532, 'jongen wilde': 467266, 'wilde dat': 992104, 'dat hij': 226092, 'hij puur': 396179, 'puur uit': 691306, 'uit veiligheid': 938132, 'veiligheid en': 954304, 'en om': 275394, 'om zijn': 598808, 'zijn eigen': 1027557, 'eigen gezondheid': 270175, 'gezondheid niet': 349493, 'niet op': 562672, 'op het': 611806, 'het spel': 394297, 'spel te': 788513, 'te zetten': 835326, 'zetten triest': 1027526, 'triest 19': 931860, 'dirkvandenbroek vakkenvuller naar': 243709, 'vakkenvuller naar huis': 951867, 'naar huis gestuurd': 551336, 'huis gestuurd om': 410332, 'gestuurd om dragen': 346449, 'om dragen mondkapje': 598807, 'dragen mondkapje jongen': 258172, 'mondkapje jongen wilde': 536533, 'jongen wilde dat': 467267, 'wilde dat hij': 992105, 'dat hij puur': 226093, 'hij puur uit': 396180, 'puur uit veiligheid': 691307, 'uit veiligheid en': 938133, 'veiligheid en om': 954305, 'en om zijn': 275395, 'om zijn eigen': 598809, 'zijn eigen gezondheid': 1027558, 'eigen gezondheid niet': 270176, 'gezondheid niet op': 349494, 'niet op het': 562673, 'op het spel': 611807, 'het spel te': 394298, 'spel te zetten': 788514, 'te zetten triest': 835327, 'zetten triest 19': 1027527, 'sukuk': 817837, 'no announcement': 563618, 'announcement have': 77159, 'or institution': 615809, 'to declare': 904003, 'declare pandemic': 231200, 'but given': 145794, 'rising budget': 723172, 'budget deficit': 141773, 'some gcc': 782941, 'gcc country': 344818, 'country amid': 210426, 'amid weaker': 52756, 'weaker oil': 974111, 'and slowing': 71756, 'slowing economy': 774539, 'economy due': 267819, 'crisis sukuk': 218115, 'sukuk activity': 817838, 'activity is': 30450, 'third quarter': 886098, 'no announcement have': 563619, 'announcement have been': 77160, 'have been made': 379604, 'been made by': 121508, 'made by government': 507669, 'by government or': 152714, 'government or institution': 360427, 'or institution to': 615810, 'institution to declare': 440476, 'to declare pandemic': 904009, 'declare pandemic but': 231201, 'pandemic but given': 635044, 'but given the': 145795, 'given the rising': 351151, 'the rising budget': 865866, 'rising budget deficit': 723173, 'budget deficit of': 141776, 'deficit of some': 232253, 'of some gcc': 589897, 'some gcc country': 782942, 'gcc country amid': 344819, 'country amid weaker': 210428, 'amid weaker oil': 52757, 'weaker oil price': 974112, 'price and slowing': 672540, 'and slowing economy': 71758, 'slowing economy due': 774540, 'economy due to': 267820, '19 crisis sukuk': 6330, 'crisis sukuk activity': 218116, 'sukuk activity is': 817840, 'activity is expected': 30451, 'to increase in': 908284, 'in the third': 429603, 'the third quarter': 869480, 'curtailed': 221785, 'nephew': 557415, 'it criminal': 457406, 'criminal that': 216884, 'she still': 756357, 've curtailed': 953023, 'curtailed store': 221788, 'store hr': 808229, 'hr to': 409669, '11 am': 2485, 'am pm': 50311, 'pm but': 661870, 'essential place': 281394, 'note my': 572755, 'my nephew': 549448, 'nephew is': 557418, 'fine though': 307706, 'though he': 892821, 'he need': 385243, 'inhaler no': 438439, 'no covid': 563920, 'sister work in': 771805, 'retail and find': 717819, 'and find it': 62887, 'find it criminal': 306986, 'it criminal that': 457410, 'criminal that she': 216885, 'that she still': 846243, 'she still ha': 756358, 'still ha to': 800621, 'work they ve': 1005845, 'they ve curtailed': 883643, 've curtailed store': 953024, 'curtailed store hr': 221789, 'store hr to': 808231, 'hr to be': 409670, 'be from 11': 114965, 'from 11 am': 334174, '11 am pm': 2486, 'am pm but': 50313, 'pm but it': 661871, 'it not an': 459858, 'not an essential': 568195, 'an essential place': 55828, 'essential place on': 281395, 'place on more': 657617, 'on more positive': 602211, 'more positive note': 540100, 'positive note my': 665382, 'note my nephew': 572756, 'my nephew is': 549449, 'nephew is fine': 557420, 'is fine though': 447816, 'fine though he': 307707, 'though he need': 892822, 'he need an': 385244, 'need an inhaler': 554407, 'an inhaler no': 56335, 'inhaler no covid': 438440, 'no covid 19': 563921, 'won run': 1003893, 'paper during': 640112, 'how you won': 409293, 'you won run': 1022403, 'won run out': 1003894, 'toilet paper during': 921263, 'proliferation': 683606, 'before in': 122863, 'in previous': 426938, 'previous epidemic': 671971, 'and pandemic': 68638, 'fear racism': 301300, 'racism panic': 695290, 'medicine conspiracy': 526752, 'theory the': 877866, 'the proliferation': 864653, 'proliferation of': 683607, 'of quack': 588638, 'quack cure': 691634, 'everything we re': 288095, 'seeing in the': 746338, 'outbreak ha been': 628264, 'ha been seen': 369913, 'been seen before': 121897, 'seen before in': 746967, 'before in previous': 122866, 'in previous epidemic': 426939, 'previous epidemic and': 671973, 'epidemic and pandemic': 279337, 'and pandemic the': 68640, 'pandemic the rise': 636698, 'rise of fear': 722947, 'of fear racism': 583460, 'fear racism panic': 301301, 'racism panic buying': 695291, 'food and medicine': 313283, 'and medicine conspiracy': 66904, 'medicine conspiracy theory': 526753, 'conspiracy theory the': 195585, 'theory the proliferation': 877867, 'the proliferation of': 864654, 'proliferation of quack': 683608, 'of quack cure': 588639, 'workingthefrontlines': 1009138, 'country need': 210917, 'to band': 901025, 'band together': 109360, 'tip grocery': 898809, 'worker massive': 1007358, 'money workingthefrontlines': 537189, 'workingthefrontlines stayhomechallenge': 1009139, 'stayhomechallenge stayhome': 798283, 'stayhome quarantinelife': 798078, 'quarantinelife grocerystores': 692953, 'this country need': 886962, 'country need to': 210919, 'need to band': 555866, 'to band together': 901026, 'band together and': 109361, 'together and tip': 920707, 'and tip grocery': 74133, 'tip grocery store': 898810, 'store worker massive': 811542, 'worker massive amount': 1007359, 'amount of money': 53237, 'of money workingthefrontlines': 586623, 'money workingthefrontlines stayhomechallenge': 537190, 'workingthefrontlines stayhomechallenge stayhome': 1009140, 'stayhomechallenge stayhome quarantinelife': 798284, 'stayhome quarantinelife grocerystores': 798079, 'help do': 389593, 'help do your': 389597, 'your part to': 1025216, 'ornatejewels': 619651, 'jewellery': 465378, 'sanitizer bad': 734543, 'your jewelry': 1024519, 'jewelry if': 465391, 'here video': 393770, 'hygiene and': 412046, 'safe without': 730156, 'without damaging': 1002576, 'damaging your': 225281, 'jewelry ornatejewels': 465397, 'ornatejewels jewellery': 619652, 'jewellery sanitizer': 465381, 'hygiene staysafe': 412173, 'staysafe damage': 798800, 'damage pandemic': 225211, 'pandemic lockdown21': 635906, 'lockdown21 inthistogether': 500210, 'hand sanitizer bad': 375319, 'sanitizer bad for': 734544, 'bad for your': 107868, 'for your jewelry': 328169, 'your jewelry if': 1024520, 'jewelry if so': 465392, 'if so here': 414826, 'so here video': 777301, 'here video on': 393771, 'video on what': 956849, 'on what you': 605250, 'can do right': 158116, 'to practice good': 911955, 'practice good hygiene': 668574, 'good hygiene and': 357195, 'hygiene and stay': 412051, 'stay safe without': 797301, 'safe without damaging': 730157, 'without damaging your': 1002578, 'damaging your jewelry': 225282, 'your jewelry ornatejewels': 1024521, 'jewelry ornatejewels jewellery': 465398, 'ornatejewels jewellery sanitizer': 619653, 'jewellery sanitizer hygiene': 465382, 'sanitizer hygiene staysafe': 735110, 'hygiene staysafe damage': 412174, 'staysafe damage pandemic': 798801, 'damage pandemic lockdown21': 225212, 'pandemic lockdown21 inthistogether': 635907, 'savoury': 738012, 'try our': 934533, 'our savoury': 624678, 'savoury slice': 738013, 'slice base': 773861, 'base but': 111438, 'but mix': 146401, 'mix amp': 534582, 'amp match': 54117, 'match any': 520283, 'any fresh': 79250, 'fresh frozen': 332992, 'frozen veggie': 339031, 'veggie you': 954230, 'find time': 307338, 'tough but': 926801, 'creative in': 216144, 'our pantry': 624246, 'pantry during': 639564, 'struggling to find': 814503, 'find food at': 306903, 'the supermarket why': 868907, 'supermarket why not': 823871, 'why not try': 991238, 'not try our': 572293, 'try our savoury': 934539, 'our savoury slice': 624679, 'savoury slice base': 738014, 'slice base but': 773862, 'base but mix': 111439, 'but mix amp': 146402, 'mix amp match': 534583, 'amp match any': 54118, 'match any fresh': 520284, 'any fresh frozen': 79252, 'fresh frozen veggie': 332993, 'frozen veggie you': 339033, 'veggie you can': 954231, 'can find time': 158342, 'find time are': 307339, 'are tough but': 91168, 'tough but that': 926802, 'can be creative': 157605, 'be creative in': 114288, 'creative in our': 216146, 'in our pantry': 426327, 'our pantry during': 624248, 'pantry during 19': 639565, 'are ill': 87301, 'ill struggling': 416174, 'just different': 468595, 'other back': 619864, 'back pandemic': 107221, 'who are ill': 988157, 'are ill struggling': 87303, 'ill struggling or': 416175, 'struggling or just': 814471, 'or just different': 615878, 'just different than': 468597, 'different than you': 242089, 'than you in': 841491, 'you in order': 1019311, 'order for america': 618223, 'pandemic we all': 636930, 'to have each': 907235, 'each other back': 264157, 'other back pandemic': 619866, 'notion': 573580, 'scammer already': 740521, 'already exploiting': 47330, 'exploiting notion': 292435, 'notion of': 573581, 'government relief': 360528, 'payment via': 645777, 'scammer already exploiting': 740522, 'already exploiting notion': 47331, 'exploiting notion of': 292436, 'notion of government': 573582, 'of government relief': 584277, 'government relief payment': 360530, 'relief payment via': 709431, 'up wear': 946550, 'mask wash': 519500, 'frequently but': 332847, 'important pls': 418926, 'pls stay': 661180, '19 socialdistancingnow': 10683, 'prayer go up': 669064, 'go up wear': 354445, 'up wear your': 946551, 'your mask wash': 1024791, 'mask wash your': 519501, 'hand with hand': 376008, 'hand sanitizer frequently': 375413, 'sanitizer frequently but': 734938, 'frequently but most': 332848, 'but most important': 146415, 'most important pls': 542410, 'important pls stay': 418927, 'pls stay at': 661181, 'home 19 socialdistancingnow': 400536, 'worker seem': 1007753, 'be hoping': 115300, 'this bullshit': 886622, 'store worker seem': 811579, 'worker seem to': 1007754, 'to be hoping': 901314, 'be hoping for': 115301, 'hoping for covid': 403923, '19 so they': 10654, 'have to deal': 383189, 'deal with all': 229533, 'all this bullshit': 45095, 'texas response': 839816, 'law is': 482317, 'more regulation': 540207, 'regulation but': 708061, 'rather more': 697484, 'more freedom': 539285, 'freedom restaurant': 332383, 'now deliver': 574505, 'deliver alcohol': 233083, 'home along': 400592, 'governor waived': 361022, 'waived the': 964545, 'the regulation': 865450, 'regulation today': 708125, 'today big': 919317, 'big idea': 129827, 'to relieve': 913144, 'relieve demand': 709526, 'for bar': 319578, 'bar and': 110667, 'texas response to': 839817, 'to the law': 916838, 'the law is': 859186, 'law is not': 482321, 'is not more': 450133, 'not more regulation': 570600, 'more regulation but': 540208, 'regulation but rather': 708062, 'but rather more': 146886, 'rather more freedom': 697485, 'more freedom restaurant': 539286, 'freedom restaurant can': 332384, 'restaurant can now': 716356, 'can now deliver': 159059, 'now deliver alcohol': 574506, 'deliver alcohol to': 233084, 'alcohol to home': 41151, 'to home along': 907924, 'home along with': 400593, 'along with food': 47054, 'with food the': 998511, 'food the governor': 317116, 'the governor waived': 856649, 'governor waived the': 361023, 'waived the regulation': 964546, 'the regulation today': 865453, 'regulation today big': 708126, 'today big idea': 919318, 'big idea to': 129828, 'idea to relieve': 413206, 'to relieve demand': 913145, 'relieve demand for': 709527, 'demand for bar': 235382, 'for bar and': 319579, 'bar and restaurant': 110671, 'and restaurant in': 70383, 'restaurant in texas': 716526, 'hyperbolic': 412298, 'stockist': 803634, 'the hyperbolic': 857791, 'hyperbolic hysteria': 412299, 'hysteria is': 412452, 'exactly right': 288747, 'right this': 722321, 'grocery stockist': 365161, 'stockist are': 803635, 'crisis wouldn': 218452, 'if laid': 414367, 'employee could': 273737, 'be hired': 115260, 'hired to': 397048, 'the hyperbolic hysteria': 857792, 'hyperbolic hysteria is': 412300, 'hysteria is exactly': 412453, 'is exactly right': 447624, 'exactly right this': 288748, 'right this time': 722322, 'this time grocery': 890641, 'time grocery stockist': 896867, 'grocery stockist are': 365162, 'stockist are unsung': 803637, 'this crisis wouldn': 887113, 'crisis wouldn it': 218453, 'great if laid': 362740, 'if laid off': 414368, 'laid off service': 479031, 'off service employee': 594142, 'service employee could': 752326, 'employee could be': 273738, 'could be hired': 208879, 'be hired to': 115261, 'hired to help': 397049, 'to help stock': 907636, 'help stock the': 390581, 'stock the store': 802943, 'umkc': 939236, 'kc': 471190, 'with shelter': 1000673, 'place order': 657631, 'order our': 618495, 'struggling if': 814452, 'entrepreneur the': 278957, 'the umkc': 870325, 'umkc innovation': 939237, 'innovation center': 438857, 'center ha': 169220, 'ha hotline': 370886, 'hotline survey': 405261, 'survey and': 828810, 're consumer': 698454, 'consumer here': 197749, 'business strong': 144429, 'strong kc': 814061, 'kc economy': 471191, 'economy going': 267901, 'with shelter in': 1000674, 'in place order': 426754, 'place order our': 657642, 'order our small': 618497, 'small business are': 774838, 'business are struggling': 143390, 'are struggling if': 90588, 'struggling if you': 814453, 're an entrepreneur': 698286, 'an entrepreneur the': 55782, 'entrepreneur the umkc': 278958, 'the umkc innovation': 870326, 'umkc innovation center': 939238, 'innovation center ha': 438858, 'center ha hotline': 169222, 'ha hotline survey': 370887, 'hotline survey and': 405262, 'survey and resource': 828814, 'and resource to': 70328, 'you re consumer': 1020594, 're consumer here': 698457, 'consumer here how': 197750, 'how to keep': 409036, 'keep our small': 471750, 'small business strong': 774895, 'business strong kc': 144430, 'strong kc economy': 814062, 'kc economy going': 471192, 'essentialgoods': 281891, 'sat outside': 736909, 'it ridiculous': 460770, 'ridiculous what': 721638, 'people class': 647471, 'class essential': 180180, 'shopping so': 763922, 'far seen': 298916, 'seen garden': 747028, 'garden seat': 343619, 'seat stand': 743518, 'stand light': 793543, 'light tv': 489617, 'item stayhomesavelives': 463659, 'stayhomesavelives essentialgoods': 798380, 'sat outside supermarket': 736911, 'outside supermarket and': 629565, 'and it ridiculous': 65579, 'it ridiculous what': 460774, 'ridiculous what people': 721640, 'what people class': 982009, 'people class essential': 647472, 'class essential shopping': 180181, 'essential shopping so': 281557, 'shopping so far': 763925, 'so far seen': 777057, 'far seen garden': 298917, 'seen garden seat': 747029, 'garden seat stand': 343620, 'seat stand light': 743519, 'stand light tv': 793544, 'light tv and': 489618, 'tv and other': 936086, 'other item stayhomesavelives': 620450, 'item stayhomesavelives essentialgoods': 463660, 'cowboy': 214474, 'looking like': 502949, 'like cross': 490077, 'cross between': 218986, 'between gang': 128785, 'gang member': 343405, 'member and': 528004, 'and cowboy': 60668, 'cowboy from': 214475, 'old west': 598529, 'west then': 980542, 'that half': 844161, 'how your': 409294, 'store looking like': 808829, 'looking like cross': 502955, 'like cross between': 490078, 'cross between gang': 218987, 'between gang member': 128786, 'gang member and': 343406, 'member and cowboy': 528007, 'and cowboy from': 60669, 'cowboy from the': 214476, 'from the old': 337813, 'the old west': 862146, 'old west then': 598530, 'west then had': 980543, 'had to wait': 373739, 'to wait in': 918265, 'store only to': 809248, 'only to find': 611360, 'find that half': 307268, 'that half the': 844163, 'half the stuff': 374278, 'the stuff wa': 868335, 'stuff wa looking': 815239, 'looking for they': 502910, 'for they were': 326990, 'they were sold': 883803, 'out of so': 626829, 'of so how': 589809, 'so how your': 777346, 'how your day': 409300, 'your day going': 1023467, 'youcantseeme': 1022518, 'new easter': 558659, 'basket idea': 112352, 'idea this': 413192, 'year quarantinelife': 1014919, 'quarantinelife quarantine': 692987, 'quarantine youcantseeme': 692721, 'youcantseeme toiletpaper': 1022519, 'toiletpapercrisis toiletpaperchallenge': 923094, 'toiletpaperchallenge toiletpaperapocalypse': 922984, 'new easter basket': 558660, 'easter basket idea': 265389, 'basket idea this': 112353, 'idea this year': 413195, 'this year quarantinelife': 891589, 'year quarantinelife quarantine': 1014920, 'quarantinelife quarantine youcantseeme': 692991, 'quarantine youcantseeme toiletpaper': 692722, 'youcantseeme toiletpaper toiletpapercrisis': 1022520, 'toiletpaper toiletpapercrisis toiletpaperchallenge': 922669, 'toiletpapercrisis toiletpaperchallenge toiletpaperapocalypse': 923095, 'condone': 193627, 'not condone': 568824, 'condone people': 193630, 'people profiteering': 649194, 'profiteering but': 683014, 'people paying': 649086, 'paying such': 645488, 'such stupid': 816777, 'be ripped': 116894, 'do not condone': 249703, 'not condone people': 568826, 'condone people profiteering': 193631, 'people profiteering but': 649195, 'profiteering but why': 683015, 'but why are': 147857, 'are people paying': 89045, 'people paying such': 649087, 'paying such stupid': 645489, 'such stupid price': 816778, 'stupid price if': 815445, 'not pay you': 570984, 'pay you cannot': 645246, 'you cannot be': 1017846, 'cannot be ripped': 161645, 'be ripped off': 116895, 'whr': 990701, 'override': 631435, 'twitterchat': 936747, 'publicrelations': 688615, 'my 4th': 547161, '4th one': 19531, 'there list': 878710, 'of exceptional': 583284, 'exceptional scenario': 289301, 'scenario whr': 741297, 'whr ur': 990702, 'ur company': 947990, 'company override': 190948, 'override the': 631438, 'the brand': 849937, 'communication guideline': 189597, 'guideline what': 368502, 'these scenario': 880634, 'scenario husain': 741259, 'ray twitterchat': 698035, 'twitterchat publicrelations': 936748, 'here my 4th': 393360, 'my 4th one': 547162, '4th one is': 19532, 'one is there': 606529, 'is there list': 453016, 'there list of': 878712, 'list of exceptional': 494431, 'of exceptional scenario': 583286, 'exceptional scenario whr': 289302, 'scenario whr ur': 741298, 'whr ur company': 990703, 'ur company override': 947991, 'company override the': 190949, 'override the brand': 631440, 'the brand communication': 849938, 'brand communication guideline': 137803, 'communication guideline what': 189598, 'guideline what are': 368503, 'what are these': 981069, 'are these scenario': 90979, 'these scenario husain': 880635, 'scenario husain ray': 741260, 'husain ray twitterchat': 411663, 'ray twitterchat publicrelations': 698036, 'greenstimulus': 363763, 'action today': 30180, 'today demand': 919435, 'demand greenstimulus': 235586, 'greenstimulus for': 363764, 'to healthy': 907392, 'take action today': 831904, 'action today demand': 30181, 'today demand greenstimulus': 919436, 'demand greenstimulus for': 235587, 'greenstimulus for the': 363765, 'right to healthy': 722342, 'to healthy food': 907394, 'healthy food during': 387629, 'the 19 epidemic': 847916, '19 epidemic and': 6802, 'epidemic and beyond': 279334, 'defcon': 232033, 'grew': 363846, 'flushing': 311583, 'septic': 751165, 'biohazardous': 131222, 'receptacle': 704182, 'defcon we': 232034, 'last packet': 480436, 'toiletpaper paper': 922314, 'towel thankfully': 927383, 'thankfully grew': 841948, 'grew up': 363861, 'in venezuela': 430550, 'venezuela not': 954451, 'not flushing': 569457, 'flushing used': 311594, 'used toilet': 950106, 'paper septic': 640743, 'septic tank': 751168, 'tank could': 834199, 'keeping potentially': 472525, 'potentially biohazardous': 667190, 'biohazardous receptacle': 131223, 'receptacle of': 704183, 'of used': 592706, 'used tp': 950114, 'tp next': 927874, 'toilet stayhome': 921627, 'defcon we are': 232035, 'we are down': 970534, 'are down to': 85983, 'down to our': 257375, 'to our last': 911199, 'our last packet': 623646, 'last packet of': 480437, 'packet of toiletpaper': 633714, 'of toiletpaper paper': 592275, 'toiletpaper paper towel': 922319, 'paper towel thankfully': 641014, 'towel thankfully grew': 927384, 'thankfully grew up': 841949, 'grew up in': 363862, 'up in venezuela': 945192, 'in venezuela not': 430551, 'venezuela not flushing': 954452, 'not flushing used': 569458, 'flushing used toilet': 311595, 'used toilet paper': 950107, 'toilet paper septic': 921442, 'paper septic tank': 640744, 'septic tank could': 751169, 'tank could not': 834200, 'could not take': 209461, 'not take it': 571902, 'take it keeping': 832248, 'it keeping potentially': 459269, 'keeping potentially biohazardous': 472526, 'potentially biohazardous receptacle': 667191, 'biohazardous receptacle of': 131224, 'receptacle of used': 704184, 'of used tp': 592707, 'used tp next': 950115, 'tp next to': 927875, 'to the toilet': 917134, 'the toilet stayhome': 869713, 'appalachian': 81811, 'appalachian college': 81812, 'college of': 186633, 'pharmacy produce': 654427, 'sanitizer need': 735398, 'need community': 554616, 'community partner': 190032, 'appalachian college of': 81813, 'college of pharmacy': 186634, 'of pharmacy produce': 588090, 'pharmacy produce hand': 654428, 'hand sanitizer need': 375499, 'sanitizer need community': 735399, 'need community partner': 554617, 'better time': 128555, 'lockdown on': 499730, 'demand tv': 236422, 'tv social': 936194, 'medium skype': 527284, 'skype facetime': 773259, 'facetime etc': 295213, 'etc food': 282538, 'delivery etc': 233977, 'come week': 187660, 'week into': 976402, 'our lockdown': 623797, 'lockdown it': 499566, 'fine just': 307655, 'never been better': 557888, 'been better time': 120741, 'better time to': 128556, 'under lockdown on': 940151, 'lockdown on demand': 499731, 'on demand tv': 600291, 'demand tv social': 236423, 'tv social medium': 936195, 'social medium skype': 779882, 'medium skype facetime': 527285, 'skype facetime etc': 773260, 'facetime etc food': 295214, 'etc food delivery': 282539, 'food delivery etc': 314123, 'delivery etc this': 233979, 'etc this come': 282822, 'this come week': 886808, 'come week into': 187661, 'week into our': 976404, 'into our lockdown': 442820, 'our lockdown it': 623798, 'lockdown it fine': 499568, 'it fine just': 458009, 'fine just stay': 307656, 'just stay at': 469885, 'at home coronacrisis': 98960, 'kicked': 473804, 'video asian': 956621, 'asian woman': 95377, 'woman kicked': 1003543, 'kicked out': 473816, 'in ghana': 423300, 'ghana for': 349566, 'for refusing': 325067, 'video asian woman': 956622, 'asian woman kicked': 95378, 'woman kicked out': 1003544, 'kicked out of': 473818, 'supermarket in ghana': 820904, 'in ghana for': 423301, 'ghana for refusing': 349567, 'for refusing to': 325069, 'now control': 574441, 'control how': 202019, 'spain now control': 787330, 'now control how': 574442, 'control how many': 202021, 'people can enter': 647389, 'can enter grocery': 158236, 'store at one': 806589, 'at one time': 99973, 'some cabbage': 782466, 'carolina not': 164848, 'see post': 745592, 'about amazing': 24785, 'go get some': 353614, 'get some cabbage': 348045, 'some cabbage and': 782467, 'how can grocery': 407501, 'store in north': 808354, 'in north carolina': 425942, 'north carolina not': 567635, 'carolina not have': 164849, 'better see post': 128457, 'see post about': 745593, 'post about amazing': 665974, 'about amazing meal': 24786, 'end soon': 275958, 'soon my': 785774, 'account is': 28707, 'gonna suffer': 356627, 'suffer from': 817205, 'from balance': 334627, 'balance with': 109000, 'shopping ve': 764309, '19 doesn end': 6611, 'doesn end soon': 251767, 'end soon my': 275961, 'soon my bank': 785775, 'bank account is': 109553, 'account is gonna': 28708, 'is gonna suffer': 448134, 'gonna suffer from': 356628, 'suffer from balance': 817206, 'from balance with': 334628, 'balance with all': 109001, 'all the quarantine': 44877, 'the quarantine online': 864970, 'online shopping ve': 609328, 'shopping ve been': 764310, 've been doing': 952879, 'test my': 839094, 'girlfriend ha': 350312, 'literally every': 494980, 'every symptom': 286277, 'symptom ha': 830850, 'been around': 120675, 'from out': 336807, 'been refused': 121803, 'refused test': 707063, 'she hasn': 756111, 'hasn traveled': 378796, 'traveled out': 930603, 'state this': 796001, 'ridiculous and': 721514, 'and dangerous': 60942, 'dangerous work': 225803, 'are the covid': 90814, '19 test my': 11078, 'test my girlfriend': 839096, 'my girlfriend ha': 548503, 'girlfriend ha literally': 350313, 'ha literally every': 371163, 'literally every symptom': 494985, 'every symptom ha': 286278, 'symptom ha been': 830851, 'ha been around': 369721, 'been around people': 120679, 'around people from': 93453, 'people from out': 647999, 'from out of': 336808, 'out of state': 626838, 'of state and': 590064, 'ha been refused': 369894, 'been refused test': 121804, 'refused test because': 707064, 'test because she': 838940, 'because she hasn': 119548, 'she hasn traveled': 756113, 'hasn traveled out': 378797, 'traveled out of': 930604, 'of state this': 590073, 'state this is': 796003, 'this is ridiculous': 888384, 'is ridiculous and': 451515, 'ridiculous and dangerous': 721515, 'and dangerous work': 60945, 'dangerous work at': 225804, 'store and cannot': 806213, 'cannot get tested': 161907, 'to stopping': 915596, 'stopping this': 805835, 'this insanity': 888126, 'of reselling': 588966, 'reselling much': 713994, 'needed product': 556466, 'price chinesevirus': 673132, 'happened to stopping': 377283, 'to stopping this': 915599, 'stopping this insanity': 805836, 'this insanity of': 888128, 'insanity of reselling': 439106, 'of reselling much': 588967, 'reselling much needed': 713995, 'much needed product': 545163, 'needed product for': 556469, 'product for inflated': 681200, 'inflated price chinesevirus': 437032, 'tho authority': 891673, 'authority advised': 103680, 'advised against': 33615, 'against crowding': 37409, 'crowding people': 219404, 'people flooded': 647933, 'flooded supermarket': 310734, 'amp bakery': 53426, 'bakery price': 108873, 'increased bit': 433214, 'bit yet': 131734, 'yet they': 1016269, 'still arent': 800210, 'arent taking': 92630, 'seriously or': 751687, 'or taking': 617330, 'taking enough': 833344, 'enough preventive': 277577, 'measure despite': 525177, 'despite finding': 238741, 'finding case': 307444, 'even tho authority': 284693, 'tho authority advised': 891674, 'authority advised against': 103681, 'advised against crowding': 33616, 'against crowding people': 37410, 'crowding people flooded': 219405, 'people flooded supermarket': 647934, 'flooded supermarket amp': 310735, 'supermarket amp bakery': 818908, 'amp bakery price': 53427, 'bakery price increased': 108874, 'price increased bit': 674798, 'increased bit yet': 433215, 'bit yet they': 131735, 'yet they still': 1016278, 'they still arent': 883459, 'still arent taking': 800211, 'arent taking this': 92631, 'this seriously or': 890042, 'seriously or taking': 751688, 'or taking enough': 617331, 'taking enough preventive': 833345, 'enough preventive measure': 277578, 'preventive measure despite': 671921, 'measure despite finding': 525178, 'despite finding case': 238742, 'finding case in': 307445, 'breaking confirmed': 138933, 'case pas': 165950, 'pas 200': 643075, '200 00': 13437, 'died eu': 241539, 'eu country': 283217, 'begun turning': 123742, 'turning away': 935907, 'away traveller': 106082, 'traveller from': 930672, 'from outside': 336809, 'the bloc': 849767, 'bloc share': 132760, 'asia stimulus': 95227, 'package fail': 633270, 'reassure market': 703192, 'breaking confirmed case': 138934, 'confirmed case pas': 194144, 'case pas 200': 165951, 'pas 200 00': 643076, '200 00 more': 13441, '00 more than': 347, 'have died eu': 380266, 'died eu country': 241540, 'eu country have': 283220, 'country have begun': 210735, 'have begun turning': 379761, 'begun turning away': 123743, 'turning away traveller': 935908, 'away traveller from': 106083, 'traveller from outside': 930673, 'from outside the': 336811, 'outside the bloc': 629586, 'the bloc share': 849768, 'bloc share price': 132761, 'share price fall': 755171, 'price fall in': 673786, 'fall in europe': 296948, 'and asia stimulus': 58423, 'asia stimulus package': 95228, 'stimulus package fail': 801580, 'package fail to': 633271, 'fail to reassure': 296112, 'to reassure market': 912891, 'andrex': 76211, '9pcs': 24001, 'contained': 200516, 'benefitting from': 127180, 'on scarce': 603333, 'scarce product': 740805, 'like andrex': 489794, 'andrex 9pcs': 76212, '9pcs bog': 24002, 'roll imagine': 725338, 'imagine their': 416806, 'their profit': 874485, 'profit recently': 682847, 'recently now': 704125, 'now 75': 573914, '75 boycott': 22119, 'boycott tesco': 137340, 'tesco now': 838760, 'now after': 573949, 'is contained': 446804, 'benefitting from by': 127181, 'from by inflating': 334785, 'by inflating price': 152921, 'inflating price on': 437121, 'price on scarce': 675714, 'on scarce product': 603334, 'scarce product like': 740806, 'product like andrex': 681358, 'like andrex 9pcs': 489795, 'andrex 9pcs bog': 76213, '9pcs bog roll': 24003, 'bog roll imagine': 133954, 'roll imagine their': 725339, 'imagine their profit': 416807, 'their profit recently': 874490, 'profit recently now': 682848, 'recently now 75': 704126, 'now 75 boycott': 573915, '75 boycott tesco': 22120, 'boycott tesco now': 137341, 'tesco now after': 838761, 'now after is': 573953, 'after is contained': 35829, 'covin18': 214430, 'restaurant strategy': 716719, 'strategy during': 812639, 'outbreak think': 628744, 'google food': 358146, 'restaurant covin18': 716406, 'restaurant strategy during': 716720, 'strategy during coronavirus': 812640, 'coronavirus outbreak think': 206416, 'outbreak think with': 628745, 'with google food': 998648, 'google food restaurant': 358147, 'food restaurant covin18': 316193, 'yest': 1015630, '197': 12413, '4577': 19181, 'evacuee': 283699, 'waf': 963782, 'carting': 165477, 'amp update': 54764, 'update total': 947275, 'total case': 926139, 'case 15': 165579, '15 53': 3658, '53 arrest': 20291, 'arrest yest': 93793, 'yest 18': 1015631, '18 curfew': 4526, 'curfew 33': 220856, '33 social': 17769, 'gathering lockdown': 344483, 'lockdown 197': 499093, '197 evacuation': 12414, 'evacuation centre': 283693, 'centre with': 169566, 'with 4577': 997022, '4577 evacuee': 19182, 'evacuee around': 283700, 'around fiji': 93281, 'fiji waf': 305292, 'waf carting': 963783, 'carting water': 165478, 'to affected': 900150, 'affected area': 34289, 'area fruit': 92020, 'fruit amp': 339053, 'amp veggie': 54776, 'veggie price': 954205, '25 covid': 15856, '19 curfew': 6388, 'curfew still': 220932, 'amp update total': 54765, 'update total case': 947276, 'total case 15': 926140, 'case 15 53': 165580, '15 53 arrest': 3659, '53 arrest yest': 20292, 'arrest yest 18': 93794, 'yest 18 curfew': 1015632, '18 curfew 33': 4527, 'curfew 33 social': 220857, '33 social gathering': 17770, 'social gathering lockdown': 779793, 'gathering lockdown 197': 344484, 'lockdown 197 evacuation': 499094, '197 evacuation centre': 12415, 'evacuation centre with': 283694, 'centre with 4577': 169567, 'with 4577 evacuee': 997023, '4577 evacuee around': 19183, 'evacuee around fiji': 283701, 'around fiji waf': 93282, 'fiji waf carting': 305293, 'waf carting water': 963784, 'carting water to': 165479, 'water to affected': 969214, 'to affected area': 900151, 'affected area fruit': 34291, 'area fruit amp': 92021, 'fruit amp veggie': 339056, 'amp veggie price': 54778, 'veggie price by': 954207, 'by 25 covid': 151606, '25 covid 19': 15857, 'covid 19 curfew': 212899, '19 curfew still': 6391, 'curfew still in': 220933, 'still in place': 800744, 'comfortfood': 187898, 'they meant': 882672, 'meant by': 524879, 'by comfort': 152153, 'comfort food': 187834, 'demand selfisolation': 236185, 'selfisolation comfortfood': 748441, 'comfortfood toronto': 187899, 'this what they': 891349, 'what they meant': 982408, 'they meant by': 882673, 'meant by comfort': 524880, 'by comfort food': 152154, 'comfort food is': 187838, 'food is in': 315132, 'high demand selfisolation': 395029, 'demand selfisolation comfortfood': 236186, 'selfisolation comfortfood toronto': 748442, 'sketchlife': 772909, 'pencil': 646459, 'sketchwork': 772913, 'sketchart': 772899, 'charcoaldrawing': 173175, 'graphite': 362178, 'sketchaday': 772896, 'sketchoftheday': 772912, 'drawing on': 258520, 'mask sketchlife': 519276, 'sketchlife drawing': 772910, 'drawing pencil': 258522, 'pencil sketchwork': 646460, 'sketchwork sketchart': 772914, 'sketchart sketch': 772900, 'sketch charcoaldrawing': 772875, 'charcoaldrawing graphite': 173176, 'graphite sketchbook': 362183, 'sketchbook sketchaday': 772903, 'sketchaday mask': 772897, 'sanitizer handwashing': 735044, 'handwashing lockdown': 376845, 'stayhome sketchoftheday': 798110, 'drawing on covid': 258521, 'pandemic the man': 636688, 'the man with': 859987, 'man with the': 512357, 'with the mask': 1001383, 'the mask sketchlife': 860227, 'mask sketchlife drawing': 519277, 'sketchlife drawing pencil': 772911, 'drawing pencil sketchwork': 258523, 'pencil sketchwork sketchart': 646461, 'sketchwork sketchart sketch': 772915, 'sketchart sketch charcoaldrawing': 772901, 'sketch charcoaldrawing graphite': 772876, 'charcoaldrawing graphite sketchbook': 173177, 'graphite sketchbook sketchaday': 362184, 'sketchbook sketchaday mask': 772904, 'sketchaday mask sanitizer': 772898, 'mask sanitizer handwashing': 519223, 'sanitizer handwashing lockdown': 735046, 'handwashing lockdown stayhome': 376846, 'lockdown stayhome sketchoftheday': 499956, 'notifies': 573553, '19 government': 7260, 'government notifies': 360388, 'notifies price': 573554, 'sanitizers under': 736432, 'under essential': 940073, 'commodity act': 189111, 'covid 19 government': 213157, '19 government notifies': 7262, 'government notifies price': 360389, 'notifies price of': 573555, 'hand sanitizers under': 375727, 'sanitizers under essential': 736433, 'under essential commodity': 940075, 'essential commodity act': 280909, 'work via': 1005970, '19 work via': 12174, 'dlx': 248861, 'tunaweza': 935391, 'uchumi': 937883, 'hasa': 378683, 'utalii': 951214, 'dlx with': 248862, 'these falling': 879994, 'price je': 674943, 'je tunaweza': 464944, 'tunaweza survive': 935392, 'survive expense': 829162, 'expense due': 291186, 'month covid': 537662, 'will hurt': 993763, 'hurt uchumi': 411624, 'uchumi hasa': 937884, 'hasa utalii': 378684, 'dlx with these': 248863, 'with these falling': 1001638, 'these falling oil': 879995, 'oil price je': 597174, 'price je tunaweza': 674944, 'je tunaweza survive': 464945, 'tunaweza survive expense': 935393, 'survive expense due': 829163, 'expense due to': 291187, 'to the fact': 916690, 'fact that next': 295805, 'that next month': 845337, 'next month covid': 561452, 'month covid 19': 537663, '19 will hurt': 12095, 'will hurt uchumi': 993767, 'hurt uchumi hasa': 411625, 'uchumi hasa utalii': 937885, 'the bcg': 849368, 'bcg on': 113335, 'from the bcg': 337613, 'the bcg on': 849369, 'bcg on consumer': 113336, 'on consumer reaction': 600070, 'reaction to covid': 700215, 'sir retail': 771640, 'worker facing': 1006898, 'facing lot': 295532, 'challenge reach': 171538, 'reach da': 699904, 'da store': 224242, 'day neither': 228011, 'neither supporting': 557347, 'supporting nor': 827158, 'nor taking': 566980, 'taking strong': 833582, 'strong call': 813990, 'shop why': 761047, 'we ar': 970460, 'odisha sir retail': 579250, 'sir retail shop': 771641, 'retail shop worker': 718557, 'shop worker facing': 761085, 'worker facing lot': 1006899, 'facing lot of': 295533, 'lot of challenge': 504153, 'of challenge reach': 581263, 'challenge reach da': 171539, 'reach da store': 699905, 'da store every': 224243, 'every day neither': 285831, 'day neither supporting': 228013, 'neither supporting nor': 557348, 'supporting nor taking': 827159, 'nor taking strong': 566981, 'taking strong call': 833583, 'strong call to': 813991, 'call to close': 156168, 'the retail shop': 865729, 'retail shop why': 718555, 'shop why we': 761048, 'why we do': 991521, 'have family we': 380585, 'family we ar': 298359, 'wnycosh': 1003302, 'worker wnycosh': 1008273, 'wnycosh guide': 1003303, 'for cashier': 319951, 'establishment during': 282054, 'help protect grocery': 390370, 'protect grocery worker': 684851, 'grocery worker wnycosh': 366197, 'worker wnycosh guide': 1008274, 'wnycosh guide for': 1003304, 'guide for cashier': 368322, 'for cashier in': 319953, 'in retail establishment': 427453, 'retail establishment during': 718097, 'establishment during the': 282055, 'bridgend': 139633, 'staff in': 792544, 'in bridgend': 420970, 'bridgend and': 139634, 'uk it': 938489, 'this from': 887625, 'from even': 335313, 'even bigger': 283891, 'bigger company': 130151, 'news for staff': 560442, 'for staff in': 325852, 'staff in bridgend': 792547, 'in bridgend and': 420971, 'bridgend and across': 139635, 'the uk it': 870240, 'uk it would': 938492, 'be good to': 115077, 'to see more': 914044, 'of this from': 591976, 'this from even': 887627, 'from even bigger': 335314, 'even bigger company': 283892, 'bigger company that': 130152, 'company that can': 191162, 'that can afford': 843092, '1950': 12372, 'crock': 218837, 'low the': 505667, 'the 1950': 847942, '1950 if': 12384, 'not paying': 570985, 'paying 25': 645372, '25 cent': 15852, 'gallon doe': 342994, 'not sound': 571658, 'like crock': 490073, 'crock that': 218838, 'what trump': 982491, 'his address': 397180, 'address today': 32061, 'oil price low': 597183, 'price low the': 675121, 'low the 1950': 505668, 'the 1950 if': 847945, '1950 if they': 12385, 'they re that': 883141, 're that low': 699685, 'that low why': 844967, 'low why are': 505747, 'we not paying': 972603, 'not paying 25': 570986, 'paying 25 cent': 645373, '25 cent gallon': 15853, 'cent gallon doe': 169061, 'gallon doe that': 342995, 'doe that not': 251598, 'that not sound': 845398, 'not sound like': 571660, 'sound like crock': 786298, 'like crock that': 490074, 'crock that what': 218839, 'that what trump': 847473, 'what trump said': 982493, 'trump said in': 933803, 'said in his': 731136, 'in his address': 423713, 'his address today': 397181, 'rohit': 725046, 'pawar': 644678, 'you mla': 1019873, 'mla rohit': 534744, 'rohit pawar': 725047, 'pawar and': 644679, 'thank you mla': 841778, 'you mla rohit': 1019874, 'mla rohit pawar': 534745, 'rohit pawar and': 725048, 'pawar and baramati': 644680, 'replicate': 711695, 'fixlethalloopholes': 309876, 'banishthebeastusa': 109531, 'womenofthesentry': 1003720, 'is extremely': 447676, 'extremely difficult': 293867, 'to replicate': 913262, 'replicate what': 711697, 'wa successful': 963343, 'successful in': 816245, 'in flattening': 422930, 'curve am': 221824, 'am writing': 50580, 'writing this': 1012924, 'of 2nd': 579553, 'wave fixlethalloopholes': 969346, 'fixlethalloopholes banishthebeastusa': 309877, 'banishthebeastusa womenofthesentry': 109532, 'womenofthesentry 19': 1003721, 'sanitizer is extremely': 735187, 'is extremely difficult': 447677, 'extremely difficult to': 293869, 'difficult to find': 242335, 'find the people': 307299, 'need to replicate': 556043, 'to replicate what': 913263, 'replicate what wa': 711698, 'what wa successful': 982523, 'wa successful in': 963344, 'successful in flattening': 816246, 'in flattening the': 422931, 'the curve am': 852682, 'curve am writing': 221825, 'am writing this': 50581, 'writing this to': 1012926, 'this to help': 890737, 'reduce the possibility': 705972, 'possibility of 2nd': 665540, 'of 2nd wave': 579555, '2nd wave fixlethalloopholes': 16811, 'wave fixlethalloopholes banishthebeastusa': 969347, 'fixlethalloopholes banishthebeastusa womenofthesentry': 309878, 'banishthebeastusa womenofthesentry 19': 109533, 'chick': 175711, 'despite how': 238758, 'serious the': 751487, 'headline sound': 386011, 'sound the': 786338, 'baby chick': 106583, 'chick video': 175721, 'video in': 956782, 'pretty cute': 671386, 'despite how serious': 238759, 'how serious the': 408646, 'serious the headline': 751488, 'the headline sound': 857173, 'headline sound the': 386012, 'sound the baby': 786339, 'the baby chick': 849133, 'baby chick video': 106584, 'chick video in': 175722, 'video in this': 956786, 'in this story': 430018, 'this story is': 890364, 'story is pretty': 812023, 'is pretty cute': 451009, 'my 76': 547178, '76 year': 22248, 'mother in': 543119, 'living alone': 496315, 'and self': 71178, 'week close': 976090, 'close elderly': 182625, 'elderly relative': 270866, 'relative went': 708752, 'went online': 979076, 'for both': 319733, 'so booked': 776633, 'booked could': 134659, 'be delivered': 114394, 'delivered for': 233324, 'recommended to': 704803, 'advance craziness': 32893, 'my 76 year': 547179, '76 year old': 22249, 'old mother in': 598374, 'mother in london': 543121, 'in london is': 424884, 'london is living': 501101, 'is living alone': 449409, 'living alone and': 496316, 'alone and self': 46818, 'and self isolating': 71184, 'isolating for 12': 455093, '12 week close': 2981, 'week close elderly': 976091, 'close elderly relative': 182626, 'elderly relative went': 270869, 'relative went online': 708753, 'went online to': 979079, 'online to do': 609584, 'to do grocery': 904512, 'do grocery delivery': 249357, 'grocery delivery for': 364442, 'delivery for both': 234019, 'for both of': 319738, 'both of so': 135986, 'of so booked': 589805, 'so booked could': 776634, 'booked could not': 134660, 'not be delivered': 568369, 'be delivered for': 114397, 'delivered for week': 233325, 'for week due': 327701, 'increased demand it': 433278, 'demand it is': 235755, 'it is recommended': 459057, 'is recommended to': 451353, 'recommended to order': 704805, 'to order week': 911090, 'order week in': 618762, 'week in advance': 976361, 'in advance craziness': 420051, 'however even': 409366, 'even this': 284690, 'this production': 889734, 'shock caused': 759434, 'however even this': 409367, 'even this production': 284691, 'this production cut': 889735, 'production cut will': 682003, 'cut will not': 223631, 'offset the demand': 596116, 'the demand shock': 853109, 'demand shock caused': 236198, 'shock caused by': 759435, 'caused by and': 167828, 'by and oil': 151844, 'could fall in': 209168, 'freiburg': 332676, 'sharing picture': 755571, 'picture from': 656121, 'in freiburg': 423111, 'freiburg germany': 332677, 'germany only': 346333, 'one customer': 606139, 'is allowed': 445480, 'allowed at': 46134, 'the belt': 849459, 'belt at': 126793, 'time nobody': 897276, 'come close': 187258, 'to german': 906396, 'german when': 346256, 'when following': 983434, 'rule are': 727198, 'sharing picture from': 755572, 'picture from supermarket': 656124, 'from supermarket here': 337486, 'here in freiburg': 393149, 'in freiburg germany': 423112, 'freiburg germany only': 332678, 'germany only one': 346334, 'only one customer': 610868, 'one customer is': 606140, 'customer is allowed': 222535, 'is allowed at': 445482, 'allowed at the': 46135, 'at the belt': 100887, 'the belt at': 849460, 'belt at time': 126795, 'at time nobody': 101299, 'time nobody come': 897277, 'nobody come close': 565993, 'come close to': 187259, 'close to german': 182897, 'to german when': 906397, 'german when following': 346257, 'when following the': 983435, 'following the rule': 312905, 'the rule are': 866040, 'rule are concerned': 727201, 'piecemakers': 656390, 'quilting': 694738, '19 culinary': 6379, 'culinary staff': 220227, 'open cafe': 612141, 'cafe but': 155098, 'can serve': 159576, 'serve meal': 751913, 'meal to': 524286, 'to md': 909910, 'md worker': 522298, 'worker piecemakers': 1007576, 'piecemakers quilting': 656391, 'quilting club': 694739, 'club can': 184419, 'meet but': 527425, 'pantry staff': 639666, 'can socially': 159661, 'socially interact': 781066, 'interact but': 441195, 'thru demand': 895178, 'demand 700': 234896, 'proud of member': 686034, 'of member and': 586429, 'member and staff': 528020, 'and staff during': 72193, 'covid 19 culinary': 212896, '19 culinary staff': 6380, 'culinary staff can': 220228, 'staff can open': 792296, 'can open cafe': 159146, 'open cafe but': 612142, 'cafe but can': 155099, 'but can serve': 145362, 'can serve meal': 159577, 'serve meal to': 751914, 'meal to md': 524291, 'to md worker': 909911, 'md worker piecemakers': 522299, 'worker piecemakers quilting': 1007577, 'piecemakers quilting club': 656392, 'quilting club can': 694740, 'club can meet': 184420, 'can meet but': 158987, 'meet but can': 527426, 'but can make': 145356, 'can make mask': 158935, 'make mask food': 510119, 'mask food pantry': 518661, 'food pantry staff': 315797, 'pantry staff can': 639667, 'staff can socially': 792297, 'can socially interact': 159662, 'socially interact but': 781067, 'interact but can': 441196, 'but can provide': 145360, 'can provide food': 159331, 'provide food to': 686315, 'food to drive': 317244, 'to drive thru': 904748, 'drive thru demand': 259194, 'thru demand 700': 895179, 'online rant': 608845, 'rant about': 696840, 'elderly pregnant': 270862, 'healthy have': 387657, 'it their': 461591, 'leave others': 484887, 'nothing shame': 573153, 'haven had an': 383820, 'had an online': 372843, 'an online rant': 56628, 'online rant about': 608846, 'rant about this': 696841, 'about this whole': 26674, 'whole thing but': 990355, 'thing but my': 884209, 'but my heart': 146433, 'my heart go': 548653, 'the elderly pregnant': 854140, 'elderly pregnant woman': 270863, 'pregnant woman who': 669849, 'woman who cannot': 1003674, 'need the young': 555761, 'the young and': 872203, 'young and healthy': 1022565, 'and healthy have': 64392, 'healthy have made': 387658, 'have made it': 381411, 'made it their': 507808, 'it their mission': 461594, 'their mission to': 873984, 'mission to empty': 534379, 'shelf and leave': 756739, 'and leave others': 66057, 'leave others with': 484888, 'others with nothing': 621804, 'with nothing shame': 999824, 'shutoff': 768161, 'of phone': 588101, 'message concerning': 529286, 'concerning home': 193243, '19 assistance': 5234, 'in applying': 420454, 'applying for': 82634, 'check and': 174363, 'utility being': 951260, 'being shutoff': 125789, 'shutoff don': 768162, 'don become': 253378, 'become victim': 120183, 'victim rv': 956516, 'beware of phone': 129092, 'of phone call': 588102, 'phone call email': 654924, 'call email and': 155841, 'text message concerning': 839906, 'message concerning home': 529287, 'concerning home testing': 193244, 'home testing for': 402205, 'testing for covid': 839495, 'covid 19 assistance': 212659, '19 assistance in': 5235, 'assistance in applying': 96706, 'in applying for': 420455, 'applying for government': 82636, 'for government relief': 321962, 'government relief check': 360529, 'relief check and': 709301, 'check and utility': 174367, 'and utility being': 74807, 'utility being shutoff': 951261, 'being shutoff don': 125790, 'shutoff don become': 768163, 'don become victim': 253382, 'become victim rv': 120184, 'the absolutely': 848259, 'have item': 381160, 'the absolutely must': 848260, 'absolutely must have': 27389, 'must have item': 546700, 'have item in': 381161, 'item in and': 463340, 'paper isle': 640366, 'isle at': 454348, 'at coronapocolypse': 98336, 'toilet paper isle': 921324, 'paper isle at': 640367, 'isle at the': 454349, 'work at coronapocolypse': 1004865, 'at coronapocolypse panicshopping': 98337, 'yearly': 1015135, 'resonable': 714661, 'bestiptv': 128032, 'iptvdeals': 444638, 'hotmovies': 405289, 'iptvlinks': 444641, '18movies': 4686, 'have amazing': 379229, 'amazing cheap': 50659, 'cheap deal': 174090, 'the going': 856409, 'you trial': 1021924, 'trial monthly': 931648, 'monthly yearly': 538221, 'yearly and': 1015136, 'and resonable': 70316, 'resonable price': 714662, 'price subscription': 676686, 'subscription just': 815895, 'just dm': 468608, 'dm bestiptv': 248881, 'bestiptv iptv': 128033, 'iptv service': 444634, 'service iptv': 752508, 'iptv iptvdeals': 444630, 'iptvdeals cheap': 444639, 'cheap iptv': 174130, 'iptv football': 444628, 'football hd': 318491, 'hd movie': 384688, 'movie adult': 543984, 'adult cinema': 32812, 'cinema hotmovies': 178539, 'hotmovies iptv': 405292, 'iptv iptvlinks': 444632, 'iptvlinks 18movies': 444642, 'we have amazing': 971755, 'have amazing cheap': 379231, 'amazing cheap deal': 50660, 'cheap deal for': 174091, 'deal for the': 229403, 'for the going': 326461, 'the going on': 856410, 'going on to': 355340, 'on to help': 604739, 'help you trial': 391006, 'you trial monthly': 1021925, 'trial monthly yearly': 931649, 'monthly yearly and': 538222, 'yearly and resonable': 1015137, 'and resonable price': 70317, 'resonable price subscription': 714663, 'price subscription just': 676687, 'subscription just dm': 815896, 'just dm bestiptv': 468611, 'dm bestiptv iptv': 248882, 'bestiptv iptv service': 128034, 'iptv service iptv': 444635, 'service iptv iptvdeals': 752509, 'iptv iptvdeals cheap': 444631, 'iptvdeals cheap iptv': 444640, 'cheap iptv football': 174131, 'iptv football hd': 444629, 'football hd movie': 318493, 'hd movie adult': 384689, 'movie adult cinema': 543985, 'adult cinema hotmovies': 32813, 'cinema hotmovies iptv': 178541, 'hotmovies iptv iptvlinks': 405293, 'iptv iptvlinks 18movies': 444633, 'belgian': 126161, 'belgian retail': 126166, 'brussels died': 141385, 'their sleep': 874739, 'sleep after': 773745, 'after contracting': 35501, 'belgian retail chain': 126167, 'retail chain ha': 717939, 'chain ha confirmed': 170747, 'confirmed that one': 194199, 'of their supermarket': 591706, 'their supermarket employee': 874901, 'employee in brussels': 273957, 'in brussels died': 421010, 'brussels died in': 141386, 'died in their': 241575, 'in their sleep': 429778, 'their sleep after': 874740, 'sleep after contracting': 773746, 'after contracting the': 35504, 'contracting the new': 201790, 'new coronavirus covid': 558546, 'solicitor': 781892, 'for will': 327879, 'will ha': 993585, 'past month': 643568, 'fear sparked': 301337, 'sparked people': 787586, 'into getting': 442585, 'their affair': 872477, 'affair in': 34055, 'order eg': 618189, 'eg solicitor': 269723, 'solicitor at': 781895, 'receiving 00': 703742, '00 request': 465, 'request per': 713186, 'week up': 977145, 'from just': 336161, 'just 700': 468120, '700 before': 21876, 'demand for will': 235517, 'for will ha': 327881, 'will ha soared': 993586, 'ha soared in': 371982, 'the past month': 863359, 'past month after': 643569, 'month after fear': 537527, 'after fear sparked': 35654, 'fear sparked people': 301338, 'sparked people into': 787587, 'people into getting': 648498, 'into getting their': 442587, 'getting their affair': 349364, 'their affair in': 872478, 'affair in order': 34056, 'in order eg': 426213, 'order eg solicitor': 618190, 'eg solicitor at': 269724, 'solicitor at are': 781896, 'now receiving 00': 575654, 'receiving 00 request': 703744, '00 request per': 466, 'request per week': 713187, 'per week up': 651077, 'week up from': 977146, 'up from just': 944987, 'from just 700': 336163, 'just 700 before': 468121, '700 before the': 21877, 'before the outbreak': 123179, 'tar': 834406, 'secured': 744480, 'greenlight': 363757, 'over 45': 629850, '45 tar': 19135, 'tar sand': 834409, 'sand project': 733663, 'already secured': 47630, 'secured greenlight': 744485, 'greenlight could': 363758, 'in limbo': 424733, 'limbo oil': 492249, 'company face': 190643, 'face plunging': 294708, 'plunging price': 661544, 'over 45 tar': 629852, '45 tar sand': 19136, 'tar sand project': 834411, 'sand project that': 733665, 'project that have': 683541, 'that have already': 844194, 'have already secured': 379200, 'already secured greenlight': 47631, 'secured greenlight could': 744486, 'greenlight could be': 363759, 'could be in': 208885, 'be in limbo': 115413, 'in limbo oil': 424734, 'limbo oil company': 492250, 'oil company face': 596691, 'company face plunging': 190644, 'face plunging price': 294709, 'laughlin': 481831, 'edmontonians': 268719, 'yegcc': 1015183, 'yeg': 1015178, 'laughlin say': 481832, 'fixing not': 309849, 'yet necessary': 1016157, 'necessary edmontonians': 553977, 'edmontonians and': 268720, 'business work': 144715, 'together yegcc': 921052, 'yegcc yeg': 1015184, 'laughlin say price': 481834, 'say price fixing': 739076, 'price fixing not': 673891, 'fixing not yet': 309850, 'not yet necessary': 572600, 'yet necessary edmontonians': 1016158, 'necessary edmontonians and': 553978, 'edmontonians and business': 268721, 'and business work': 59308, 'business work together': 144716, 'work together yegcc': 1005921, 'together yegcc yeg': 921053, 'mirza': 533951, 'schoolfee': 742029, 'hv': 411857, 'fulf': 340389, 'mirza parent': 533954, 'parent demand': 641614, 'waive off': 964520, 'off schoolfee': 594122, 'schoolfee due': 742030, 'pandemic govt': 635507, 'work business': 1004952, 'we hv': 972052, 'hv very': 411862, 'to fulf': 906296, 'mirza parent demand': 533955, 'parent demand to': 641615, 'demand to waive': 236407, 'to waive off': 918283, 'waive off schoolfee': 964521, 'off schoolfee due': 594123, 'schoolfee due to': 742031, 'to corona pandemic': 903529, 'corona pandemic govt': 204093, 'pandemic govt have': 635508, 'govt have stop': 361153, 'have stop to': 382782, 'stop to do': 805216, 'to do our': 904539, 'our work business': 625397, 'work business we': 1004953, 'business we hv': 144637, 'we hv very': 972053, 'hv very little': 411863, 'very little to': 955327, 'little to fulf': 495621, 'price jumped': 674960, 'jumped on': 467939, 'tuesday at': 935126, 'at 29': 97569, '29 82': 16462, '82 barrel': 22805, 'barrel amid': 111192, 'amid hope': 52504, 'of reaching': 588770, 'reaching production': 700110, 'deal between': 229354, 'nation saudi': 552303, 'arabia russia': 83918, 'and america': 58060, 'america read': 51653, 'read full': 700345, 'here oilpricewar': 393405, 'oilpricewar crudeoil': 597705, 'crudeoil commodity': 219632, 'oil price jumped': 597176, 'price jumped on': 674963, 'jumped on tuesday': 467942, 'on tuesday at': 604878, 'tuesday at 29': 935127, 'at 29 82': 97570, '29 82 barrel': 16463, '82 barrel amid': 22806, 'barrel amid hope': 111193, 'amid hope of': 52505, 'hope of reaching': 403575, 'of reaching production': 588771, 'reaching production cut': 700111, 'production cut deal': 681991, 'cut deal between': 223291, 'deal between the': 229356, 'between the world': 128938, 'world biggest oil': 1009367, 'biggest oil producing': 130283, 'producing nation saudi': 680793, 'nation saudi arabia': 552304, 'saudi arabia russia': 737209, 'arabia russia and': 83919, 'russia and america': 728424, 'and america read': 58063, 'america read full': 51654, 'read full report': 700347, 'full report here': 340853, 'report here oilpricewar': 712014, 'here oilpricewar crudeoil': 393406, 'oilpricewar crudeoil commodity': 597706, '12m': 3109, 'report 12m': 711770, '12m in': 3110, 'scam loss': 740236, 'loss since': 503780, 'january the': 464680, 'consumer report 12m': 198695, 'report 12m in': 711771, '12m in covid': 3111, '19 scam loss': 10346, 'scam loss since': 740237, 'loss since january': 503781, 'since january the': 770680, 'january the federal': 464682, 'hostage': 404905, 'crazy is': 215338, 'is mobilizing': 449675, 'and bail': 58657, 'out industry': 626414, 'taking consumer': 833313, 'consumer hostage': 197772, 'hostage while': 404910, 'is crazy is': 446896, 'crazy is mobilizing': 215339, 'is mobilizing to': 449676, 'mobilizing to support': 535114, 'to support and': 915905, 'support and bail': 826353, 'and bail out': 58658, 'bail out industry': 108589, 'out industry in': 626416, 'industry in need': 435903, 'in need and': 425726, 'need and is': 554427, 'and is taking': 65432, 'is taking consumer': 452536, 'taking consumer hostage': 833314, 'consumer hostage while': 197774, 'hostage while we': 404911, 'while we want': 987559, 'want to protect': 966091, 'protect our loved': 684899, 'will farmland': 993412, 'will farmland price': 993413, 'farmland price fall': 299670, 'you temporarily': 1021546, 'temporarily lost': 837508, 'job check': 465736, 'out amazon': 625613, 'amazon they': 51151, 'hiring to': 397140, 'handle surge': 376263, 'related buying': 708383, 'if you temporarily': 415537, 'you temporarily lost': 1021547, 'temporarily lost your': 837509, 'your job check': 1024527, 'job check out': 465737, 'check out amazon': 174534, 'out amazon they': 625615, 'amazon they are': 51152, 'are hiring to': 87186, 'hiring to handle': 397141, 'to handle surge': 907133, 'handle surge of': 376264, 'surge of coronavirus': 828227, 'of coronavirus related': 581959, 'coronavirus related buying': 206631, 'antitrust': 78572, 'imposes': 419323, 'nelson': 557370, 'price pharmacy': 675866, 'pharmacy antitrust': 654230, 'antitrust lawsuit': 78579, 'lawsuit in': 482534, 'zealand appears': 1027270, 'appears likely': 82188, 'postponed the': 666830, 'country imposes': 210769, 'imposes tough': 419328, 'tough new': 926819, 'emergency the': 273016, 'the nelson': 861444, 'nelson based': 557371, 'based pharmacy': 111713, 'pharmacy ha': 654330, 'been accused': 120600, 'fixing by': 309842, 'commerce commission': 188533, 'commission competition': 188799, 'price pharmacy antitrust': 675867, 'pharmacy antitrust lawsuit': 654231, 'antitrust lawsuit in': 78580, 'lawsuit in new': 482535, 'new zealand appears': 559978, 'zealand appears likely': 1027271, 'appears likely to': 82189, 'to be postponed': 901448, 'be postponed the': 116490, 'postponed the country': 666831, 'the country imposes': 852098, 'country imposes tough': 210770, 'imposes tough new': 419329, 'tough new restriction': 926820, 'new restriction in': 559484, 'restriction in response': 717296, '19 emergency the': 6765, 'emergency the nelson': 273018, 'the nelson based': 861445, 'nelson based pharmacy': 557372, 'based pharmacy ha': 111714, 'pharmacy ha been': 654331, 'ha been accused': 369705, 'been accused of': 120601, 'of price fixing': 588399, 'price fixing by': 673889, 'fixing by the': 309843, 'by the commerce': 154289, 'the commerce commission': 851220, 'commerce commission competition': 188534, 'avid': 104967, 'amateur': 50612, 'thisexplanation': 891633, 'an avid': 55498, 'avid amateur': 104968, 'amateur baker': 50613, 'baker ve': 108826, 'been confused': 120871, 'confused to': 194354, 'flour in': 311122, 'thanks and': 842016, 'for thisexplanation': 327092, 'thisexplanation panicbuyinguk': 891634, 'an avid amateur': 55499, 'avid amateur baker': 104969, 'amateur baker ve': 50614, 'baker ve been': 108827, 've been confused': 952875, 'been confused to': 120872, 'confused to why': 194355, 'to why there': 918595, 'why there still': 991445, 'there still no': 879100, 'still no flour': 800868, 'no flour in': 564238, 'flour in the': 311124, 'supermarket thanks and': 823172, 'thanks and for': 842018, 'and for thisexplanation': 63164, 'for thisexplanation panicbuyinguk': 327093, 'mum want': 545969, 'her tomorrow': 392478, 'tomorrow don': 924068, 'why she': 991330, 'she bothering': 755898, 'bothering there': 136147, 'there gonna': 878435, 'be nothing': 116127, 'shelf nofood': 757341, 'nofood 19': 566134, 'my mum want': 549389, 'mum want me': 545970, 'food shopping with': 316547, 'shopping with her': 764434, 'with her tomorrow': 998783, 'her tomorrow don': 392479, 'tomorrow don know': 924070, 'know why she': 477056, 'why she bothering': 991331, 'she bothering there': 755899, 'bothering there gonna': 136148, 'there gonna be': 878436, 'gonna be nothing': 356478, 'be nothing on': 116130, 'the shelf nofood': 866860, 'shelf nofood 19': 757342, 'flag': 309937, 'rollercoaster': 725653, 'sixflags': 772729, 'beatcorona': 118591, 'austintx': 103198, 'if heb': 414224, 'heb had': 388677, 'had fast': 373105, 'fast pas': 300011, 'pas like': 643121, 'like six': 491196, 'six flag': 772630, 'flag would': 309953, 'would totally': 1012338, 'totally buy': 926305, 'buy one': 149036, 'so don': 776903, 'this dang': 887155, 'dang line': 225622, 'line man': 493250, 'man this': 512273, 'is rollercoaster': 451568, 'rollercoaster see': 725659, 'did there': 240862, 'there sixflags': 879056, 'sixflags 19': 772730, '19 beatcorona': 5324, 'beatcorona austintx': 118592, 'austintx austin': 103199, 'austin texas': 103189, 'texas heb': 839785, 'heb toiletpaper': 388689, 'if heb had': 414225, 'heb had fast': 388678, 'had fast pas': 373106, 'fast pas like': 300012, 'pas like six': 643122, 'like six flag': 491198, 'six flag would': 772631, 'flag would totally': 309954, 'would totally buy': 1012339, 'totally buy one': 926306, 'buy one just': 149038, 'one just so': 606548, 'just so don': 469820, 'so don have': 776908, 'have to stand': 383305, 'stand in this': 793536, 'in this dang': 429929, 'this dang line': 887156, 'dang line man': 225623, 'line man this': 493251, 'man this whole': 512274, 'whole thing is': 990356, 'thing is rollercoaster': 884481, 'is rollercoaster see': 451569, 'rollercoaster see what': 725660, 'see what did': 746028, 'what did there': 981318, 'did there sixflags': 240863, 'there sixflags 19': 879057, 'sixflags 19 beatcorona': 772731, '19 beatcorona austintx': 5325, 'beatcorona austintx austin': 118593, 'austintx austin texas': 103200, 'austin texas heb': 103190, 'texas heb toiletpaper': 839786, 'carlos': 164750, 'torelli': 925893, 'psychological': 687515, 'you miss': 1019866, 'miss professor': 534181, 'professor carlos': 682539, 'carlos torelli': 164755, 'torelli webinar': 925896, 'on hear': 601263, 'hear him': 387929, 'him discus': 396580, 'discus how': 244858, 'how global': 407916, 'global crisis': 351835, 'crisis impact': 217519, 'the psychological': 864753, 'psychological response': 687526, 'consider how': 195021, 'how organization': 408446, 'organization can': 619356, 'can overcome': 159185, 'overcome and': 631120, 'address consumer': 31957, 'did you miss': 240939, 'you miss professor': 1019868, 'miss professor carlos': 534182, 'professor carlos torelli': 682540, 'carlos torelli webinar': 164757, 'torelli webinar on': 925898, 'webinar on hear': 975072, 'on hear him': 601264, 'hear him discus': 387930, 'him discus how': 396581, 'discus how global': 244863, 'how global crisis': 407917, 'global crisis impact': 351838, 'crisis impact the': 217523, 'impact the psychological': 418002, 'the psychological response': 864756, 'psychological response of': 687527, 'response of consumer': 715766, 'of consumer in': 581745, 'consumer in global': 197821, 'in global market': 423334, 'global market and': 352021, 'market and consider': 515956, 'and consider how': 60313, 'consider how organization': 195022, 'how organization can': 408448, 'organization can overcome': 619357, 'can overcome and': 159186, 'overcome and address': 631121, 'and address consumer': 57686, 'address consumer concern': 31958, 'consumer concern and': 196867, 'concern and need': 192917, 'alerted': 41557, 'affair alerted': 33990, 'alerted new': 41560, 'jersey resident': 465225, 'vigilant of': 957250, 'fraud fueled': 331276, 'consumer affair alerted': 196075, 'affair alerted new': 33991, 'alerted new jersey': 41561, 'new jersey resident': 558980, 'jersey resident to': 465226, 'resident to remain': 714383, 'remain vigilant of': 709911, 'vigilant of consumer': 957251, 'of consumer fraud': 581742, 'consumer fraud fueled': 197536, 'fraud fueled by': 331277, 'fueled by the': 340323, 'backwardshat': 107622, 'oakley': 578269, 'woof': 1004338, 'alameda': 40649, 'survived the': 829331, 'or pt': 616735, 'pt paper': 687607, 'towel survivor': 927381, 'survivor anxiety': 829384, 'anxiety backwardshat': 78671, 'backwardshat oakley': 107623, 'oakley woof': 578270, 'woof alameda': 1004339, 'alameda safeway': 40650, 'grocery safeway': 364926, 'survived the grocery': 829333, 'store no tp': 809091, 'tp or pt': 927897, 'or pt paper': 616736, 'pt paper towel': 687608, 'paper towel survivor': 641013, 'towel survivor anxiety': 927382, 'survivor anxiety backwardshat': 829385, 'anxiety backwardshat oakley': 78672, 'backwardshat oakley woof': 107624, 'oakley woof alameda': 578271, 'woof alameda safeway': 1004340, 'alameda safeway grocery': 40651, 'safeway grocery safeway': 730842, 'specification': 788296, 'moisturizing': 535615, 'handmade': 376412, 'sanitizer follows': 734882, 'follows cdc': 312950, 'cdc specification': 168624, 'specification made': 788300, 'with isopropyl': 999054, 'alcohol soothing': 41114, 'soothing organic': 785955, 'organic aloe': 619210, 'vera gel': 954730, 'gel glycerin': 345125, 'glycerin for': 353158, 'extra moisturizing': 293576, 'moisturizing property': 535622, 'vitamin handmade': 959782, 'handmade handsanitizer': 376415, 'hand sanitizer follows': 375408, 'sanitizer follows cdc': 734883, 'follows cdc specification': 312951, 'cdc specification made': 168625, 'specification made with': 788301, 'made with isopropyl': 508067, 'with isopropyl alcohol': 999055, 'isopropyl alcohol soothing': 455562, 'alcohol soothing organic': 41115, 'soothing organic aloe': 785956, 'organic aloe vera': 619211, 'aloe vera gel': 46792, 'vera gel glycerin': 954732, 'gel glycerin for': 345126, 'glycerin for extra': 353159, 'for extra moisturizing': 321345, 'extra moisturizing property': 293577, 'moisturizing property and': 535623, 'property and vitamin': 684238, 'and vitamin handmade': 75009, 'vitamin handmade handsanitizer': 959783, 'trump saying': 933827, 'saying right': 739671, 'now coronavirus': 574462, 'coronavirus press': 206582, 'conference and': 193719, 'about gasoline': 25294, 'is trump saying': 453384, 'trump saying right': 933828, 'saying right now': 739672, 'right now coronavirus': 722049, 'now coronavirus press': 574463, 'coronavirus press conference': 206583, 'press conference and': 671027, 'conference and he': 193720, 'talking about gasoline': 833966, 'about gasoline price': 25295, 'gasoline price people': 344266, 'jeffbezos': 465024, 'company doing': 190601, 'amazon jeffbezos': 51018, 'jeffbezos swedish': 465025, 'swedish ikea': 830085, 'store find': 807725, 'find 50': 306757, '00 forgotten': 218, 'forgotten face': 329435, 'mask give': 518718, 'hospital via': 404700, 'are our company': 88857, 'our company doing': 622497, 'company doing this': 190604, 'doing this amazon': 252757, 'this amazon jeffbezos': 886307, 'amazon jeffbezos swedish': 51019, 'jeffbezos swedish ikea': 465026, 'swedish ikea store': 830086, 'ikea store find': 416056, 'store find 50': 807726, 'find 50 00': 306758, '50 00 forgotten': 19574, '00 forgotten face': 219, 'forgotten face mask': 329436, 'face mask give': 294542, 'mask give them': 518719, 'give them to': 350776, 'them to local': 876488, 'local hospital via': 498093, 'responsibly during': 716091, 'collect item': 186294, 'or sell': 616998, 'sell good': 748743, 'price abusing': 672202, 'abusing other': 27715, 'customer or': 222653, 'service personnel': 752694, 'personnel make': 653134, 'not practice': 571067, 'hygiene when': 412194, 'public more': 688170, 'the nt': 861947, 'shop responsibly during': 760711, 'responsibly during the': 716093, 'during the it': 263147, 'the it is': 858586, 'is not okay': 450142, 'not okay to': 570742, 'okay to collect': 598022, 'to collect item': 902969, 'collect item or': 186296, 'item or sell': 463535, 'or sell good': 617000, 'sell good at': 748744, 'good at exorbitant': 356789, 'exorbitant price abusing': 290400, 'price abusing other': 672203, 'abusing other customer': 27716, 'other customer or': 620062, 'customer or service': 222655, 'or service personnel': 617022, 'service personnel make': 752695, 'personnel make sure': 653135, 'sure you do': 827856, 'do not practice': 249803, 'not practice good': 571068, 'good hygiene when': 357203, 'hygiene when you': 412195, 'are in public': 87426, 'in public more': 427091, 'public more about': 688171, 'in the nt': 429407, 'briton warned': 140659, 'warned coronavirus': 966999, 'is nowhere': 450361, 'nowhere near': 576569, 'near end': 553492, 'case set': 166007, 'rise for': 722859, 'week latest': 976471, 'briton warned coronavirus': 140660, 'warned coronavirus lockdown': 967000, 'coronavirus lockdown is': 206247, 'lockdown is nowhere': 499550, 'is nowhere near': 450362, 'nowhere near end': 576570, 'near end with': 553493, 'end with case': 276080, 'with case set': 997560, 'case set to': 166008, 'set to rise': 753533, 'to rise for': 913567, 'rise for week': 722863, 'for week latest': 327724, 'week latest update': 976472, 'payload': 645532, 'while queuing': 987195, 'and down': 61694, 'down an': 256484, 'at two': 101374, 'two metre': 937047, 'apart take': 81347, 'therefore increase': 879441, 'of someone': 589914, 'someone receiving': 784622, 'receiving payload': 703795, 'payload shopping': 645533, 'shopping logic': 763210, 'logic uk': 500668, 'uk nh': 938569, 'but while queuing': 147847, 'while queuing up': 987198, 'queuing up to': 694245, 'up to go': 946382, 'go up and': 354420, 'up and down': 944320, 'and down an': 61696, 'down an aisle': 256485, 'aisle at two': 40217, 'at two metre': 101377, 'two metre apart': 937048, 'metre apart take': 529828, 'apart take more': 81348, 'take more time': 832342, 'more time and': 540765, 'time and therefore': 896301, 'and therefore increase': 73866, 'therefore increase the': 879442, 'increase the likelihood': 433107, 'likelihood of someone': 491934, 'of someone receiving': 589922, 'someone receiving payload': 784623, 'receiving payload shopping': 703796, 'payload shopping logic': 645534, 'shopping logic uk': 763211, 'logic uk nh': 500669, 'uk nh supermarket': 938571, 'anecdotal': 76255, 'there proven': 878967, 'proven treatment': 686184, 'or treat': 617524, '19 dr': 6649, 'dr anthony': 257956, 'anthony fauci': 78239, 'fauci there': 300381, 'not proven': 571136, 'proven and': 686148, 'the underlying': 870354, 'underlying word': 940496, 'word proven': 1004561, 'or prevention': 616687, 'prevention there': 671893, 'some anecdotal': 782297, 'anecdotal information': 76260, 'information that': 437994, 'these may': 880281, 'may possibly': 521432, 'possibly have': 665927, 'some benefit': 782401, 'is there proven': 453025, 'there proven treatment': 878968, 'proven treatment to': 686186, 'treatment to prevent': 931157, 'prevent or treat': 671683, 'or treat covid': 617525, 'covid 19 dr': 212984, '19 dr anthony': 6650, 'dr anthony fauci': 257957, 'anthony fauci there': 78241, 'fauci there is': 300382, 'is not proven': 450163, 'not proven and': 571137, 'proven and that': 686149, 'that the underlying': 846857, 'the underlying word': 870358, 'underlying word proven': 940497, 'word proven treatment': 1004562, 'proven treatment or': 686185, 'treatment or prevention': 931118, 'or prevention there': 616688, 'prevention there some': 671894, 'there some anecdotal': 879069, 'some anecdotal information': 782298, 'anecdotal information that': 76261, 'information that one': 437998, 'that one or': 845501, 'or two of': 617567, 'two of these': 937092, 'of these may': 591839, 'these may possibly': 880282, 'may possibly have': 521433, 'possibly have some': 665928, 'have some benefit': 382621, 'afternoon myself': 36697, 'and large': 65946, 'large amount': 479589, 'people walked': 650123, 'walked straight': 964977, 'out including': 626409, 'including many': 432047, 'anything come': 80709, 're better': 698365, 'absolutely nothing to': 27415, 'nothing to buy': 573188, 'to buy in': 902248, 'buy in the': 148821, 'this afternoon myself': 886233, 'afternoon myself and': 36698, 'myself and large': 550819, 'and large amount': 65947, 'large amount of': 479590, 'of people walked': 588018, 'people walked straight': 650124, 'walked straight out': 964978, 'straight out including': 812224, 'out including many': 626410, 'including many elderly': 432048, 'elderly people unable': 270839, 'to get anything': 906412, 'get anything come': 346587, 'anything come on': 80710, 'come on uk': 187451, 'on uk we': 604950, 'uk we re': 938871, 'we re better': 972835, 're better than': 698366, 'than this this': 841320, 'this this ha': 890576, 'meatfree': 525812, 'dairyfree': 225064, 'go meatfree': 353835, 'meatfree and': 525813, 'and dairyfree': 60932, 'dairyfree forever': 225065, 'destroy the market': 239036, 'market and go': 515969, 'and go meatfree': 63778, 'go meatfree and': 353836, 'meatfree and dairyfree': 525814, 'and dairyfree forever': 60933, 'ripoffbritain': 722694, 'anyone noticed': 80437, 'noticed in': 573445, 'uk that': 938801, 'that tescos': 846636, 'tescos unlike': 838880, 'unlike all': 942689, 'other multiple': 620554, 'multiple have': 545752, 'on tissue': 604718, 'tissue kitchen': 899168, 'kitchen paper': 475738, 'paper toilet': 640939, 'were charging': 979429, 'charging for': 173477, 'for roll': 325251, 'of kitchen': 585656, 'paper yesterday': 641120, 'yesterday heron': 1015766, 'heron wa': 394222, 'wa for': 962154, 'roll ripoffbritain': 725490, 'ha anyone noticed': 369587, 'anyone noticed in': 80438, 'noticed in uk': 573446, 'in uk that': 430399, 'uk that tescos': 938802, 'that tescos unlike': 846637, 'tescos unlike all': 838881, 'unlike all the': 942690, 'the other multiple': 862541, 'other multiple have': 620555, 'multiple have hiked': 545753, 'have hiked price': 380950, 'hiked price on': 396334, 'price on tissue': 675729, 'on tissue kitchen': 604720, 'tissue kitchen paper': 899169, 'kitchen paper toilet': 475740, 'paper toilet roll': 640942, 'and other stuff': 68417, 'other stuff in': 621003, 'stuff in short': 815099, 'short supply they': 764715, 'supply they were': 825984, 'they were charging': 883758, 'were charging for': 979430, 'charging for roll': 173480, 'for roll of': 325252, 'roll of kitchen': 725413, 'of kitchen paper': 585658, 'kitchen paper yesterday': 475742, 'paper yesterday heron': 641121, 'yesterday heron wa': 1015767, 'heron wa for': 394223, 'wa for roll': 962159, 'for roll ripoffbritain': 325253, 'wreaks': 1012699, 'than 37': 840234, '37 million': 18077, 'american or': 52112, 'or about': 614238, 'people struggled': 649673, 'table in': 831476, '2018 that': 13898, 'that number': 845427, 'number could': 576854, 'soon double': 785695, 'outbreak wreaks': 628840, 'wreaks havoc': 1012700, 'country another': 210451, 'another strong': 77877, 'strong piece': 814083, 'more than 37': 540563, 'than 37 million': 840236, '37 million american': 18078, 'million american or': 532056, 'american or about': 52113, 'or about in': 614241, 'about in people': 25512, 'in people struggled': 426601, 'people struggled to': 649674, 'struggled to put': 814414, 'the table in': 869109, 'table in 2018': 831477, 'in 2018 that': 419792, '2018 that number': 13899, 'that number could': 845428, 'number could soon': 576856, 'could soon double': 209690, 'soon double the': 785696, 'double the outbreak': 256070, 'the outbreak wreaks': 862729, 'outbreak wreaks havoc': 628841, 'wreaks havoc on': 1012702, 'havoc on worker': 384435, 'on worker around': 605370, 'around the country': 93532, 'the country another': 852047, 'country another strong': 210452, 'another strong piece': 77878, 'strong piece by': 814084, 'piece by 19': 656279, 'argh': 92655, 'brewed': 139415, 'granule': 362116, 'mug': 545564, 'caffeine': 155153, 'argh brewed': 92656, 'brewed the': 139416, 'good coffee': 356894, 'coffee this': 185548, 'counter couple': 210201, 'couple spoon': 211676, 'spoon of': 789869, 'of instant': 585228, 'instant granule': 440093, 'granule in': 362117, 'my mug': 549361, 'mug today': 545577, 'it caffeine': 456985, 'caffeine how': 155154, 'your morning': 1024879, 'morning going': 541268, 'going one': 355349, 'more day': 538960, 'argh brewed the': 92657, 'brewed the good': 139417, 'the good coffee': 856430, 'good coffee this': 356895, 'coffee this morning': 185549, 'morning and left': 541160, 'and left it': 66080, 'left it on': 485532, 'on the counter': 604046, 'the counter couple': 852023, 'counter couple spoon': 210202, 'couple spoon of': 211677, 'spoon of instant': 789870, 'of instant granule': 585229, 'instant granule in': 440094, 'granule in my': 362118, 'in my mug': 425603, 'my mug today': 549362, 'mug today at': 545578, 'today at least': 919275, 'least it caffeine': 484523, 'it caffeine how': 456986, 'caffeine how your': 155155, 'how your morning': 409305, 'your morning going': 1024880, 'morning going one': 541269, 'going one more': 355350, 'one more day': 606687, 'more day until': 538963, 'until the weekend': 943877, 'the weekend we': 871340, 'weekend we got': 977442, 'we got this': 971679, 'unitelive': 942303, 'steward': 799993, 'sixth most': 772743, 'most read': 542674, 'read story': 700557, 'on unitelive': 604967, 'unitelive in': 942304, '2020 hero': 14362, 'supermarket lorry': 821402, 'driver unite': 259821, 'unite shop': 942129, 'shop steward': 760838, 'steward john': 799996, 'john evans': 466524, 'evans on': 283759, 'on delivering': 600259, 'sixth most read': 772744, 'most read story': 542675, 'read story on': 700558, 'story on unitelive': 812090, 'on unitelive in': 604968, 'unitelive in 2020': 942305, 'in 2020 hero': 419837, '2020 hero the': 14363, 'hero the supermarket': 394120, 'the supermarket lorry': 868685, 'supermarket lorry driver': 821403, 'lorry driver unite': 503344, 'driver unite shop': 259822, 'unite shop steward': 942130, 'shop steward john': 760839, 'steward john evans': 799997, 'john evans on': 466525, 'evans on delivering': 283760, 'on delivering food': 600260, 'delivering food during': 233493, 'avg': 104939, 'sq': 791423, '182': 4635, '388': 18161, '622': 21244, 'home value': 402418, 'value trend': 952227, 'for gilbert': 321885, 'gilbert arizona': 350102, 'arizona avg': 92826, 'avg per': 104946, 'per sq': 651023, 'sq ft': 791428, 'ft 182': 339321, '182 64': 4636, '64 avg': 21310, 'avg home': 104942, 'price 388': 672150, '388 622': 18162, '622 covid': 21245, 'buying home': 150496, 'of seller': 589490, 'seller listing': 749041, 'listing ha': 494851, 'dropped so': 260629, 'so housing': 777332, 'housing inventory': 407086, 'inventory remains': 443705, 'remains very': 710081, 'low home': 505318, 'strong so': 814113, 'home value trend': 402419, 'value trend for': 952228, 'trend for gilbert': 931338, 'for gilbert arizona': 321886, 'gilbert arizona avg': 350103, 'arizona avg per': 92827, 'avg per sq': 104947, 'per sq ft': 651024, 'sq ft 182': 791430, 'ft 182 64': 339322, '182 64 avg': 4637, '64 avg home': 21311, 'avg home price': 104943, 'home price 388': 401890, 'price 388 622': 672151, '388 622 covid': 18163, '622 covid 19': 21246, 'impact the number': 417999, 'of people buying': 587881, 'people buying home': 647346, 'buying home ha': 150497, 'home ha dropped': 401325, 'ha dropped but': 370459, 'dropped but the': 260547, 'but the number': 147370, 'number of seller': 576990, 'of seller listing': 589492, 'seller listing ha': 749042, 'listing ha also': 494852, 'ha also dropped': 369522, 'also dropped so': 48138, 'dropped so housing': 260630, 'so housing inventory': 777333, 'housing inventory remains': 407089, 'inventory remains very': 443706, 'remains very low': 710082, 'very low home': 955339, 'low home price': 505319, 'price remain strong': 676169, 'remain strong so': 709872, 'strong so far': 814114, 'driver medical': 259655, 'professional restaurant': 682484, 'worker healthcare': 1007108, 'truck driver medical': 932788, 'driver medical professional': 259656, 'medical professional restaurant': 526334, 'professional restaurant worker': 682486, 'restaurant worker healthcare': 716820, 'worker healthcare worker': 1007113, 'worker and everyone': 1006291, 'to keep safe': 908840, 'keep safe right': 471888, 'right now please': 722120, 'now please stay': 575553, 'lube': 506416, 'jk': 465546, 'if use': 415226, 'sanitizer lube': 735317, 'lube can': 506417, 'for booty': 319725, 'booty call': 135140, 'call rona': 156098, 'rona jk': 725784, 'if use sanitizer': 415227, 'use sanitizer lube': 949546, 'sanitizer lube can': 735318, 'lube can you': 506418, 'can you still': 160338, 'you still go': 1021402, 'out for booty': 626102, 'for booty call': 319726, 'booty call rona': 135141, 'call rona jk': 156099, 'stuffed': 815273, 'plush': 661728, 'teddy': 836430, 'pillow': 656711, 'cashappfriday online': 166393, 'for stuffed': 325955, 'stuffed animal': 815274, 'animal plush': 76642, 'plush toy': 661737, 'toy from': 927680, 'from great': 335691, 'great selection': 362981, 'of stuffed': 590336, 'animal teddy': 76665, 'teddy bear': 836431, 'bear plush': 118417, 'plush figure': 661731, 'figure plush': 305226, 'plush pillow': 661733, 'pillow plush': 656722, 'plush puppet': 661735, 'puppet more': 689302, 'at everyday': 98573, 'everyday 10': 286514, '10 via': 1748, 'cashappfriday online shopping': 166394, 'shopping for stuffed': 762713, 'for stuffed animal': 325956, 'stuffed animal plush': 815279, 'animal plush toy': 76644, 'plush toy from': 661738, 'toy from great': 927681, 'from great selection': 335692, 'great selection of': 362983, 'selection of stuffed': 747527, 'of stuffed animal': 590337, 'stuffed animal teddy': 815281, 'animal teddy bear': 76666, 'teddy bear plush': 836432, 'bear plush figure': 118418, 'plush figure plush': 661732, 'figure plush pillow': 305227, 'plush pillow plush': 661734, 'pillow plush puppet': 656723, 'plush puppet more': 661736, 'puppet more at': 689303, 'more at everyday': 538662, 'at everyday 10': 98574, 'everyday 10 via': 286515, 'run supermarket': 727813, 'other shopping': 620904, 'shopping facility': 762625, 'facility here': 295342, 'of er': 583148, 'er kenya': 280014, 'kenya guideline': 472905, 'do you run': 250673, 'you run supermarket': 1020960, 'run supermarket or': 727816, 'or other shopping': 616448, 'other shopping facility': 620905, 'shopping facility here': 762627, 'facility here how': 295344, 'can help stop': 158658, 'spread of er': 790667, 'of er kenya': 583149, 'er kenya guideline': 280015, 'gotta go': 359078, 'go stock': 354166, 'on roy': 603227, 'roy covid': 726603, '19 pet': 9666, 'so leaving': 777532, 'house pray': 406461, 'gotta go stock': 359079, 'go stock up': 354167, 'up on roy': 945614, 'on roy covid': 603228, 'roy covid 19': 726604, 'covid 19 pet': 213575, '19 pet food': 9667, 'pet food so': 653398, 'food so leaving': 316657, 'so leaving the': 777533, 'the house pray': 857626, 'house pray for': 406462, 'pray for me': 669002, 'candid': 161283, 'very candid': 955035, 'candid conversation': 161286, 'an la': 56501, 'la based': 478127, 'based er': 111567, 'er doctor': 280007, 'doctor on': 251051, 'listen to my': 494744, 'to my very': 910447, 'my very candid': 550493, 'very candid conversation': 955036, 'candid conversation with': 161287, 'conversation with an': 202498, 'with an la': 997221, 'an la based': 56502, 'la based er': 478128, 'based er doctor': 111568, 'er doctor on': 280008, 'doctor on the': 251052, 'texas is': 839792, 'considering cutting': 195369, 'output for': 629267, 'in nearly': 425712, 'nearly 50': 553780, 'year oil': 1014802, 'plunged amid': 661481, 'texas is considering': 839793, 'is considering cutting': 446756, 'considering cutting it': 195370, 'cutting it oil': 223739, 'it oil output': 460010, 'oil output for': 596999, 'output for the': 629268, 'time in nearly': 897004, 'in nearly 50': 425713, 'nearly 50 year': 553782, '50 year oil': 19918, 'year oil market': 1014803, 'oil market price': 596950, 'market price have': 516889, 'price have plunged': 674446, 'have plunged amid': 381984, 'plunged amid the': 661482, 'amid the and': 52681, 'the and saudi': 848720, '19 help': 7496, 'ordering takeout': 619032, 'delivery shopping': 234493, 'shopping local': 763200, 'local online': 498229, 'purchase gift': 689471, 'later use': 481160, 'use tag': 949625, 'thru service': 895220, 'business are some': 143388, 'of the hardest': 591092, 'the hardest hit': 857110, 'covid 19 help': 213199, '19 help support': 7500, 'help support them': 390619, 'support them by': 826906, 'them by ordering': 875514, 'by ordering takeout': 153460, 'ordering takeout delivery': 619033, 'takeout delivery shopping': 833154, 'delivery shopping local': 234494, 'shopping local online': 763203, 'local online purchase': 498231, 'online purchase gift': 608824, 'purchase gift card': 689472, 'gift card for': 349942, 'card for later': 163522, 'for later use': 322898, 'later use tag': 481161, 'use tag your': 949627, 'tag your business': 831777, 'your business in': 1023062, 'the comment and': 851208, 'comment and if': 188384, 're offering curbside': 699157, 'offering curbside delivery': 595054, 'curbside delivery or': 220620, 'delivery or drive': 234282, 'drive thru service': 259204, 'line financial': 493087, 'front line financial': 338573, 'line financial post': 493088, 'breach': 138358, 'maralago': 515030, 'sabotage': 729006, 'nk': 563490, 'retribution': 719779, 'xijingping': 1013844, 'soleimani': 781857, 'cluster': 184582, 'yes chinese': 1015404, 'chinese attempt': 177197, 'to breach': 901994, 'breach maralago': 138359, 'maralago chinese': 515031, 'chinese sabotage': 177344, 'sabotage of': 729009, 'of nk': 587032, 'nk initiative': 563491, 'initiative trade': 438664, 'war retribution': 966521, 'retribution for': 719780, 'for loss': 323108, 'face by': 294344, 'by xijingping': 154773, 'xijingping takeout': 1013845, 'takeout of': 833171, 'of ally': 580006, 'ally soleimani': 46437, 'soleimani around': 781858, 'iran cluster': 444681, 'cluster if': 184589, 'if usa': 415224, 'usa not': 948704, 'not consumer': 568844, 'consumer addicted': 196029, 'addicted we': 31631, 'yes chinese attempt': 1015405, 'chinese attempt to': 177198, 'attempt to breach': 102238, 'to breach maralago': 901995, 'breach maralago chinese': 138360, 'maralago chinese sabotage': 515032, 'chinese sabotage of': 177345, 'sabotage of nk': 729010, 'of nk initiative': 587033, 'nk initiative trade': 563492, 'initiative trade war': 438665, 'trade war retribution': 928612, 'war retribution for': 966522, 'retribution for loss': 719781, 'for loss of': 323110, 'loss of face': 503743, 'of face by': 583357, 'face by xijingping': 294345, 'by xijingping takeout': 154774, 'xijingping takeout of': 1013846, 'takeout of ally': 833172, 'of ally soleimani': 580007, 'ally soleimani around': 46438, 'soleimani around time': 781859, 'around time of': 93590, 'time of iran': 897343, 'of iran cluster': 585295, 'iran cluster if': 444682, 'cluster if usa': 184590, 'if usa not': 415225, 'usa not consumer': 948706, 'not consumer addicted': 568845, 'consumer addicted we': 196030, 'addicted we would': 31632, 'report prevent': 712189, 'while doing': 986761, 'doing laundry': 252508, 'consumer report prevent': 198720, 'report prevent the': 712190, '19 while doing': 12047, 'while doing laundry': 986763, 'petri': 653651, 'dish': 245493, 'hazardpay': 384598, 'need corona': 554642, 'virus woman': 959055, 'woman told': 1003641, 'me store': 523554, 'are like': 87786, 'like big': 489908, 'big petri': 129910, 'petri dish': 653652, 'dish truth': 245510, 'truth lockdownnow': 934402, 'lockdownnow groceryworkers': 500332, 'groceryworkers hazardpay': 366402, 'worker need corona': 1007422, 'need corona virus': 554643, 'corona virus woman': 204378, 'virus woman told': 959057, 'woman told me': 1003643, 'told me store': 923620, 'me store are': 523555, 'store are like': 806494, 'are like big': 87787, 'like big petri': 489910, 'big petri dish': 129911, 'petri dish truth': 653655, 'dish truth lockdownnow': 245511, 'truth lockdownnow groceryworkers': 934403, 'lockdownnow groceryworkers hazardpay': 500333, 'cnbctv18market': 184732, 'delaying': 232822, 'cnbctv18market oil': 184733, 'drop after': 260109, 'opec announced': 611845, 'wa delaying': 961935, 'delaying it': 232829, 'it meeting': 459591, 'meeting initially': 527720, 'initially scheduled': 438577, 'scheduled for': 741488, 'for monday': 323488, 'cnbctv18market oil price': 184734, 'price drop after': 673556, 'drop after opec': 260110, 'after opec announced': 35989, 'opec announced it': 611846, 'announced it wa': 76973, 'it wa delaying': 462099, 'wa delaying it': 961936, 'delaying it meeting': 232830, 'it meeting initially': 459592, 'meeting initially scheduled': 527721, 'initially scheduled for': 438578, 'scheduled for monday': 741492, '10th emergency': 2388, 'texas supreme': 839834, 'court certain': 211980, 'collection limited': 186446, '10th emergency order': 2389, 'emergency order of': 272835, 'order of the': 618448, 'outbreak by the': 628077, 'by the texas': 154457, 'the texas supreme': 869345, 'texas supreme court': 839835, 'supreme court certain': 827433, 'court certain consumer': 211981, 'certain consumer debt': 169984, 'consumer debt collection': 197076, 'debt collection limited': 230447, 'bahn': 108559, 'all get': 42909, 'head together': 385841, 'together on': 920886, 'get corporation': 346820, 'like bahn': 489857, 'bahn to': 108560, 'issue appropriate': 455675, 'appropriate refund': 83045, 'refund to': 706964, 'consumer affected': 196107, 'crisis refusing': 217954, 'refusing refund': 707083, 'service not': 752622, 'not rendered': 571306, 'rendered and': 710942, 'and prohibited': 69613, 'let all get': 486557, 'all get our': 42914, 'get our head': 347727, 'our head together': 623364, 'head together on': 385844, 'together on consumer': 920887, 'protection in time': 685488, 'crisis and get': 217023, 'and get corporation': 63565, 'get corporation like': 346821, 'corporation like bahn': 207439, 'like bahn to': 489858, 'bahn to issue': 108561, 'to issue appropriate': 908552, 'issue appropriate refund': 455676, 'appropriate refund to': 83046, 'refund to consumer': 706965, 'to consumer affected': 903264, 'consumer affected by': 196108, '19 crisis refusing': 6310, 'crisis refusing refund': 217955, 'refusing refund for': 707084, 'refund for service': 706913, 'for service not': 325498, 'service not rendered': 752625, 'not rendered and': 571307, 'rendered and prohibited': 710943, 'official can': 595770, 'can reduce': 159409, 'because peop': 119464, 'peop won': 646718, 'won stop': 1003909, 'official can reduce': 595771, 'can reduce price': 159413, 'reduce price because': 705895, 'price because peop': 672865, 'because peop won': 119465, 'peop won stop': 646719, 'won stop going': 1003911, 'going out can': 355363, 'out can stop': 625826, 'can stop taking': 159824, 'stop taking advantage': 805096, 'lansing': 479513, 'msusocialscience': 544589, 'student need': 814738, 'resource available': 714719, 'we compiled': 971154, 'compiled list': 191823, 'of campus': 581064, 'campus and': 157325, 'and greater': 63937, 'greater lansing': 363196, 'lansing area': 479514, 'area resource': 92176, 'student on': 814745, 'will update': 995273, 'update this': 947262, 'develops msusocialscience': 239863, 'our student need': 624985, 'student need to': 814739, 'to know the': 908996, 'know the resource': 476845, 'the resource available': 865592, 'resource available to': 714721, 'available to them': 104664, 'to them in': 917301, 'them in real': 875912, 'real time we': 701421, 'time we compiled': 898218, 'we compiled list': 971155, 'compiled list of': 191824, 'list of campus': 494416, 'of campus and': 581065, 'campus and greater': 157326, 'and greater lansing': 63938, 'greater lansing area': 363197, 'lansing area resource': 479515, 'area resource for': 92177, 'resource for our': 714785, 'for our student': 324297, 'our student on': 624986, 'student on our': 814746, 'our website will': 625357, 'website will update': 975486, 'will update this': 995276, 'update this list': 947263, 'this list the': 888662, 'list the covid': 494554, '19 situation develops': 10572, 'situation develops msusocialscience': 772240, 'it heartbreaking': 458520, 'heartbreaking to': 388424, 'how due': 407765, 'nurse left': 577403, 'left her': 485492, 'her 48': 391817, 'bare these': 110970, 'we rely': 973063, 'of think': 591923, 'think panicbuying': 885483, 'it heartbreaking to': 458522, 'heartbreaking to see': 388425, 'see how due': 745226, 'how due to': 407766, 'to the selfish': 917047, 'the selfish panic': 866669, 'selfish panic of': 748190, 'panic of shopper': 638355, 'of shopper this': 589653, 'shopper this nurse': 761751, 'this nurse left': 889195, 'nurse left her': 577404, 'left her 48': 485493, 'her 48 hour': 391818, 'hour shift and': 405911, 'shift and wa': 758239, 'and wa unable': 75105, 'buy food because': 148634, 'food because the': 313713, 'because the shelf': 119646, 'been stripped bare': 122067, 'stripped bare these': 813853, 'bare these are': 110971, 'people we rely': 650159, 'we rely on': 973064, 'on to take': 604766, 'care of think': 164121, 'of think panicbuying': 591926, 'out trying': 627735, 'trying find': 934705, 'find cow': 306865, 'cow to': 214460, 'to milk': 910127, 'milk instead': 531707, 'of risking': 589127, 'risking catching': 724058, '19 queuing': 9937, 'could be out': 208901, 'be out trying': 116293, 'out trying find': 627736, 'trying find cow': 934706, 'find cow to': 306866, 'cow to milk': 214461, 'to milk instead': 910129, 'milk instead of': 531708, 'instead of risking': 440314, 'of risking catching': 589128, 'risking catching covid': 724060, 'covid 19 queuing': 213645, '19 queuing in': 9938, 'queuing in supermarket': 694219, 'orr': 619675, 'test please': 839124, 'please supermarket': 660608, 'tested every': 839296, 'day every': 227575, 'every shift': 286164, 'shift orr': 758377, 'orr this': 619678, 'the test please': 869317, 'test please supermarket': 839125, 'please supermarket employee': 660609, 'supermarket employee need': 820128, 'be tested every': 117556, 'tested every day': 839297, 'every day every': 285805, 'day every shift': 227577, 'every shift orr': 286166, 'shift orr this': 758378, 'orr this is': 619679, 'nuisance': 576779, 'loudly': 504499, 'never felt': 557991, 'like rushing': 491112, 'rushing stranger': 728386, 'stranger with': 812506, 'with blow': 997433, 'blow much': 133319, 'did about': 240537, 'ago when': 38543, 'this nuisance': 889187, 'nuisance wa': 576784, 'wa laughing': 962509, 'laughing loudly': 481816, 'loudly about': 504500, 'he so': 385452, 'happy there': 377691, 'how shebi': 408662, 'shebi christian': 756499, 'christian are': 178109, 'always praying': 49688, 'praying and': 669110, 'll finally': 496762, 'finally see': 306090, 'no god': 564359, 'never felt like': 557993, 'felt like rushing': 303412, 'like rushing stranger': 491113, 'rushing stranger with': 728387, 'stranger with blow': 812507, 'with blow much': 997434, 'blow much did': 133320, 'much did about': 544827, 'did about 15': 240538, 'about 15 minute': 24649, '15 minute ago': 3774, 'minute ago when': 533721, 'ago when went': 38549, 'when went to': 984490, 'supermarket and this': 819085, 'and this nuisance': 74003, 'this nuisance wa': 889188, 'nuisance wa laughing': 576785, 'wa laughing loudly': 962510, 'laughing loudly about': 481817, 'loudly about how': 504501, 'how he so': 407982, 'he so happy': 385453, 'so happy there': 777245, 'happy there covid': 377692, '19 how shebi': 7608, 'how shebi christian': 408663, 'shebi christian are': 756500, 'christian are always': 178110, 'are always praying': 84506, 'always praying and': 49689, 'praying and now': 669111, 'and now they': 67867, 'they ll finally': 882596, 'll finally see': 496763, 'finally see there': 306092, 'see there no': 745927, 'there no god': 878811, 'auspoi': 103069, 'worse after': 1010852, 'pm said': 661968, 'said stophoarding': 731375, 'stophoarding almost': 805348, 'shelf containing': 756954, 'containing food': 200583, 'food stripped': 316874, 'bare panicshopping': 110937, 'panicshopping auspoi': 639416, 'auspoi panic': 103070, 'and if anything': 64932, 'if anything it': 413863, 'anything it worse': 80807, 'it worse after': 462545, 'worse after the': 1010854, 'after the pm': 36346, 'the pm said': 863880, 'pm said stophoarding': 661970, 'said stophoarding almost': 731376, 'stophoarding almost every': 805349, 'almost every shelf': 46625, 'every shelf containing': 286160, 'shelf containing food': 756955, 'containing food stripped': 200584, 'food stripped bare': 316875, 'stripped bare panicshopping': 813850, 'bare panicshopping auspoi': 110938, 'panicshopping auspoi panic': 639417, 'ruined abuse': 727123, 'abuse supermarket': 27659, 'staff because': 792254, 'not received': 571252, 'do hope': 249407, 'feel stupid': 302866, 'christmas ruined abuse': 178197, 'ruined abuse supermarket': 727124, 'abuse supermarket staff': 27660, 'supermarket staff because': 822818, 'staff because they': 792257, 'because they had': 119704, 'they had not': 882252, 'had not received': 373351, 'not received certain': 571254, 'in the delivery': 429127, 'delivery of their': 234238, 'of their purchase': 591693, 'their purchase do': 874512, 'purchase do hope': 689426, 'do hope those': 249410, 'people feel stupid': 647895, 'feel stupid now': 302867, 'stupid now 19': 815428, 'crisiscommunications': 218471, 'another healthcare': 77653, 'marketing matter': 517646, 'matter blog': 520547, 'post hospital': 666157, 'decision hospital': 231038, 'hospital crisiscommunications': 404364, 'crisiscommunications strategy': 218472, 'strategy publicrelations': 812697, 'publicrelations future': 688616, 'another healthcare marketing': 77654, 'healthcare marketing matter': 387175, 'marketing matter blog': 517647, 'matter blog post': 520548, 'blog post hospital': 132989, 'post hospital covid': 666158, 'consumer decision hospital': 197100, 'decision hospital crisiscommunications': 231039, 'hospital crisiscommunications strategy': 404365, 'crisiscommunications strategy publicrelations': 218473, 'strategy publicrelations future': 812698, 'fekking': 303129, 'creeping': 216623, 'supermarketbands': 824216, 'priceincrease': 677880, 'understand and': 940592, 'job the': 466188, 'it greatly': 458346, 'greatly appreciated': 363310, 'appreciated too': 82845, 'too but': 924628, 'but whats': 147809, 'whats with': 982851, 'the fekking': 855106, 'fekking price': 303130, 'increase people': 432978, 'people struggle': 649670, 'struggle price': 814366, 'price creeping': 673341, 'creeping up': 216624, 'and up': 74724, 'up supermarketbands': 946099, 'supermarketbands priceincrease': 824217, 'priceincrease eastersunday': 677881, 'understand and get': 940595, 'and get the': 63604, 'get the wonderful': 348314, 'the wonderful job': 871677, 'wonderful job the': 1004093, 'job the supermarket': 466192, 'and it greatly': 65534, 'it greatly appreciated': 458347, 'greatly appreciated too': 363311, 'appreciated too but': 82846, 'too but whats': 924633, 'but whats with': 147810, 'whats with the': 982852, 'with the fekking': 1001303, 'the fekking price': 855107, 'fekking price increase': 303131, 'price increase people': 674781, 'increase people struggle': 432980, 'people struggle price': 649671, 'struggle price creeping': 814367, 'price creeping up': 673342, 'creeping up and': 216625, 'up and up': 944385, 'and up supermarketbands': 74729, 'up supermarketbands priceincrease': 946100, 'supermarketbands priceincrease eastersunday': 824218, 'avery': 104935, 'infection possible': 436815, 'possible sir': 665778, 'sir ray': 771632, 'ray avery': 698019, '19 infection possible': 7857, 'infection possible sir': 436816, 'possible sir ray': 665779, 'sir ray avery': 771633, 'roll me': 725385, 'just stocked': 469902, 'on stamp': 603629, 'stamp in': 793423, 'case can': 165675, 'toilet roll me': 921585, 'roll me ve': 725386, 'me ve just': 523875, 've just stocked': 953312, 'just stocked up': 469903, 'up on stamp': 945620, 'on stamp in': 603630, 'stamp in case': 793424, 'in case can': 421256, 'case can get': 165676, 'to the post': 916969, 'the post office': 864094, 'do like': 249564, 'do like covid': 249565, 'khushabu': 473748, 'khushabu we': 473749, 'we request': 973090, 'khushabu we can': 473750, 'safe we request': 730119, 'we request to': 973093, 'request to pm': 713218, 'heatmap': 388536, 'grocer fail': 364124, 'demand pandemic': 236010, 'spread heatmap': 790563, 'heatmap column': 388537, 'grocer fail to': 364125, 'fail to keep': 296108, 'with demand pandemic': 997985, 'demand pandemic spread': 236011, 'pandemic spread heatmap': 636527, 'spread heatmap column': 790564, 'heatmap column food': 388538, 'column food economy': 186901, 'jsc': 467567, '13th': 3361, 'bad because': 107777, 'because placed': 119487, 'placed jsc': 657895, 'jsc order': 467568, 'the 13th': 847886, '13th without': 3370, 'thinking at': 885881, '19 thought': 11366, 'thought shopping': 893213, 'online would': 609764, 'okay but': 597960, 'happening okay': 377388, 'okay with': 598035, 'with waiting': 1002010, 'waiting because': 964298, 'because understand': 119760, 'understand since': 940710, 'since thing': 770935, 'thing end': 884307, 'end still': 275967, 'item lol': 463435, 'feel so bad': 302854, 'so bad because': 776577, 'bad because placed': 107778, 'because placed jsc': 119488, 'placed jsc order': 657896, 'jsc order on': 467569, 'order on the': 618459, 'on the 13th': 603949, 'the 13th without': 847889, '13th without thinking': 3371, 'without thinking at': 1003001, 'thinking at all': 885882, 'at all because': 97873, 'all because covid': 42150, 'covid 19 thought': 213945, '19 thought shopping': 11369, 'thought shopping online': 893214, 'shopping online would': 763512, 'online would be': 609765, 'would be okay': 1011625, 'be okay but': 116179, 'okay but now': 597964, 'but now what': 146618, 'now what is': 576381, 'is happening okay': 448284, 'happening okay with': 377389, 'okay with waiting': 598037, 'with waiting because': 1002011, 'waiting because understand': 964299, 'because understand since': 119761, 'understand since thing': 940711, 'since thing end': 770937, 'thing end still': 884308, 'end still want': 275968, 'still want the': 801386, 'want the item': 965959, 'the item lol': 858608, 'semantics': 749590, 'kor': 477443, 're into': 698913, 'into something': 443003, 'something there': 785088, 'there what': 879335, 'what journalist': 981780, 'journalist call': 467427, 'call report': 156092, 'the intel': 858337, 'intel community': 440965, 'community call': 189772, 'call reporting': 156094, 'reporting semantics': 712752, 'semantics wa': 749591, 'with dod': 998101, 'dod held': 251258, 'held top': 388943, 'top secret': 925713, 'secret clearance': 743914, 'clearance and': 181393, 'have read': 382169, 'read lot': 700406, 'of dia': 582575, 'dia reporting': 240150, 'reporting gi': 712692, 'gi in': 349715, 'and kor': 65899, 'you re into': 1020657, 're into something': 698914, 'into something there': 443004, 'something there what': 785090, 'there what journalist': 879336, 'what journalist call': 981781, 'journalist call report': 467428, 'call report the': 156093, 'report the intel': 712341, 'the intel community': 858338, 'intel community call': 440966, 'community call reporting': 189773, 'call reporting semantics': 156095, 'reporting semantics wa': 712753, 'semantics wa consumer': 749592, 'wa consumer with': 961871, 'consumer with dod': 199560, 'with dod held': 998102, 'dod held top': 251259, 'held top secret': 388944, 'top secret clearance': 925714, 'secret clearance and': 743915, 'clearance and have': 181394, 'and have read': 64269, 'have read lot': 382171, 'read lot of': 700408, 'lot of dia': 504173, 'of dia reporting': 582576, 'dia reporting gi': 240151, 'reporting gi in': 712693, 'gi in italy': 349716, 'in italy and': 424290, 'italy and kor': 462763, 'nalgonda': 551567, 'ranga': 696681, 'garu': 343726, 'donthikevegetableprices': 255358, 'sp good': 787011, 'job nalgonda': 466018, 'nalgonda sp': 551568, 'sp ranga': 787015, 'ranga garu': 696682, 'garu warning': 343729, 'warning trader': 967230, 'trader and': 928644, 'ensure price': 278007, 'not hiked': 569970, 'hiked up': 396351, 'all district': 42582, 'district sp': 248386, 'sp and': 787007, 'police across': 662886, 'across nation': 29402, 'same donthikevegetableprices': 733046, 'donthikevegetableprices association': 255359, 'sp good job': 787012, 'good job nalgonda': 357296, 'job nalgonda sp': 466019, 'nalgonda sp ranga': 551569, 'sp ranga garu': 787016, 'ranga garu warning': 696683, 'garu warning trader': 343730, 'warning trader and': 967231, 'trader and others': 928650, 'others to ensure': 621726, 'to ensure price': 905180, 'ensure price of': 278009, 'of vegetable are': 592759, 'vegetable are not': 953936, 'are not hiked': 88389, 'not hiked up': 569973, 'hiked up all': 396352, 'up all district': 944253, 'all district sp': 42583, 'district sp and': 248387, 'sp and police': 787008, 'and police across': 69156, 'police across nation': 662887, 'across nation must': 29404, 'nation must do': 552259, 'must do the': 546633, 'the same donthikevegetableprices': 866219, 'same donthikevegetableprices association': 733047, 'grubhub': 367512, 'city our': 179315, 'business wa': 144627, 'wa affected': 961446, 'affected more': 34396, 'area due': 91992, 'that market': 845041, 'market grubhub': 516476, 'grubhub official': 367516, 'statement monday': 796191, 'york city our': 1016593, 'city our consumer': 179316, 'our consumer business': 622526, 'consumer business wa': 196683, 'business wa affected': 144628, 'wa affected more': 961447, 'affected more than': 34397, 'more than in': 540634, 'than in other': 840779, 'in other metro': 426245, 'other metro area': 620542, 'metro area due': 529899, 'area due to': 91993, '19 impact in': 7699, 'impact in that': 417709, 'in that market': 428924, 'that market grubhub': 845043, 'market grubhub official': 516477, 'grubhub official said': 367517, 'official said in': 595900, 'in statement monday': 428251, 'food worth': 317685, 'worth 35': 1011326, '00 deliberately': 164, 'deliberately coughed': 232955, 'food worth 35': 317686, 'worth 35 00': 1011327, '35 00 deliberately': 17863, '00 deliberately coughed': 165, 'deliberately coughed on': 232956, 'on in supermarket': 601535, 'york don': 1016607, 'new york don': 559926, 'york don panic': 1016608, 'coronacrisis there': 204816, 'to boycott': 901967, 'boycott shop': 137337, 'shop which': 761033, 'which increase': 985961, 'price extortionately': 673746, 'extortionately because': 293410, 'coronacrisis there is': 204817, 'is need to': 449857, 'need to boycott': 555871, 'to boycott shop': 901969, 'boycott shop which': 137339, 'shop which increase': 761035, 'which increase price': 985962, 'increase price extortionately': 433002, 'price extortionately because': 673748, 'extortionately because of': 293411, 'because of shortage': 119401, 'keda': 471255, 'ceramic': 169904, 'sunda': 818143, 'cedi': 168741, 'ghc': 349622, 'keda ceramic': 471256, 'ceramic ghana': 169905, 'ghana and': 349556, 'and sunda': 72684, 'sunda international': 818144, 'international dealer': 441782, 'dealer in': 229607, 'in fast': 422800, 'good have': 357164, 'donated five': 254335, 'five hundred': 309622, 'hundred thousand': 411030, 'thousand ghana': 893396, 'ghana cedi': 349558, 'cedi ghc': 168742, 'ghc 500': 349623, 'keda ceramic ghana': 471257, 'ceramic ghana and': 169906, 'ghana and sunda': 349557, 'and sunda international': 72685, 'sunda international dealer': 818145, 'international dealer in': 441783, 'dealer in fast': 229609, 'in fast moving': 422801, 'consumer good have': 197619, 'good have donated': 357166, 'have donated five': 380318, 'donated five hundred': 254336, 'five hundred thousand': 309623, 'hundred thousand ghana': 411031, 'thousand ghana cedi': 893397, 'ghana cedi ghc': 349559, 'cedi ghc 500': 168743, 'down many': 256941, 'worried who': 1010604, 'become exposed': 119988, 'it daily': 457461, 'daily with': 224897, 'coronacrisis iowa': 204638, 'iowa fight': 444489, 'it down many': 457693, 'down many people': 256942, 'are worried who': 91738, 'worried who work': 1010605, 'retail who can': 718853, 'who can become': 988373, 'can become exposed': 157732, 'become exposed to': 119989, 'exposed to it': 292897, 'to it daily': 908576, 'it daily with': 457462, 'daily with thousand': 224899, 'people in our': 648410, 'our store coronacrisis': 624943, 'store coronacrisis iowa': 807179, 'coronacrisis iowa fight': 204639, 'iowa fight for': 444490, 'fight for health': 304739, 'but essential': 145662, 'personnel restricted': 653152, 'etc pay': 282696, 'pay employed': 644841, 'employed their': 273497, 'quarantine sooner': 692556, 'done sooner': 255021, 'sooner thing': 785928, 'quarantine everyone but': 692182, 'everyone but essential': 286747, 'but essential personnel': 145663, 'essential personnel restricted': 281388, 'personnel restricted to': 653153, 'restricted to home': 717167, 'to home unless': 907940, 'facility etc pay': 295329, 'etc pay employed': 282697, 'pay employed their': 644842, 'employed their average': 273498, 'under quarantine sooner': 940220, 'quarantine sooner this': 692557, 'is done sooner': 447324, 'done sooner thing': 255022, 'sooner thing return': 785929, 'lrw': 506342, 'pov': 667467, 'assembled': 96344, 'chief research': 175963, 'research officer': 713794, 'officer at': 595639, 'at lrw': 99645, 'lrw client': 506343, 'client have': 182047, 'asking me': 96022, 'my pov': 549824, 'pov on': 667468, 'handle their': 376279, 'their brand': 872640, 'brand tracking': 138057, 'tracking mrx': 928345, 'mrx during': 544475, 'we assembled': 970794, 'assembled data': 96345, 'and advice': 57724, 'chief research officer': 175964, 'research officer at': 713795, 'officer at lrw': 595642, 'at lrw client': 99646, 'lrw client have': 506344, 'client have been': 182048, 'have been asking': 379470, 'been asking me': 120699, 'asking me for': 96023, 'me for my': 522755, 'for my pov': 323742, 'my pov on': 549825, 'pov on how': 667469, 'how to handle': 409028, 'to handle their': 907135, 'handle their brand': 376280, 'their brand tracking': 872641, 'brand tracking mrx': 138058, 'tracking mrx during': 928346, 'mrx during the': 544476, 'the pandemic so': 863099, 'pandemic so we': 636498, 'so we assembled': 778658, 'we assembled data': 970795, 'assembled data and': 96346, 'data and advice': 226117, 'and advice in': 57730, 'advice in this': 33408, 'love in': 504705, '19 went': 11986, 'bought you': 136785, 'love in time': 504707, 'covid 19 went': 214058, '19 went to': 11987, 'supermarket and bought': 818944, 'and bought you': 59116, 'bought you few': 136786, 'you few thing': 1018551, 'enraging': 277820, 'seriously cannot': 751559, 'believe how': 126274, 'how fucking': 407894, 'quit twitter': 694817, 'twitter it': 936677, 'it too': 461788, 'too enraging': 924713, 'seriously cannot believe': 751560, 'cannot believe how': 161668, 'believe how fucking': 126275, 'how fucking stupid': 407897, 'fucking stupid and': 340019, 'stupid and selfish': 815340, 'and selfish people': 71197, 'selfish people are': 748205, 'have to quit': 383272, 'to quit twitter': 912696, 'quit twitter it': 694818, 'twitter it too': 936679, 'it too enraging': 461790, 'panchetta': 634715, 'goosebump': 358234, 'lost power': 503907, 'power last': 667636, 'hour usda': 406060, 'usda recommends': 948965, 'recommends throwing': 704846, 'the panchetta': 862882, 'panchetta dairy': 634716, 'fridge it': 333411, 'it stayed': 461237, 'stayed cool': 797860, 'cool it': 203020, 'the goosebump': 856458, 'goosebump choose': 358235, 'own ending': 631966, 'ending scenario': 276200, 'scenario stay': 741289, 'poisoning or': 662811, 'lost power last': 503908, 'power last night': 667637, 'last night for': 480372, 'night for 10': 562994, 'for 10 hour': 318614, '10 hour usda': 1471, 'hour usda recommends': 406061, 'usda recommends throwing': 948966, 'recommends throwing out': 704847, 'throwing out the': 895104, 'out the panchetta': 627403, 'the panchetta dairy': 862883, 'panchetta dairy and': 634717, 'dairy and egg': 224952, 'and egg in': 61976, 'egg in my': 269893, 'my fridge it': 548415, 'fridge it stayed': 333412, 'it stayed cool': 461238, 'stayed cool it': 797861, 'cool it one': 203021, 'of the goosebump': 591069, 'the goosebump choose': 856459, 'goosebump choose your': 358236, 'choose your own': 177930, 'your own ending': 1025134, 'own ending scenario': 631967, 'ending scenario stay': 276201, 'scenario stay home': 741290, 'home and maybe': 400662, 'and maybe get': 66812, 'maybe get food': 521685, 'get food poisoning': 347060, 'food poisoning or': 315881, 'poisoning or go': 662812, 'store at some': 806592, 'some point and': 783581, 'point and get': 662415, 'kinda company': 475041, 'care much': 164068, 'much about': 544687, 'it clientele': 457178, 'clientele reduce': 182151, 'data bundle': 226150, 'bundle if': 142650, 'so wish': 778787, 'wish that': 996814, 'customer stay': 222874, 'home amp': 400600, 'amp aren': 53408, 'aren infected': 92441, 'kinda company that': 475042, 'company that don': 191167, 'that don care': 843597, 'don care much': 253424, 'care much about': 164069, 'much about it': 544690, 'about it clientele': 25571, 'it clientele reduce': 457179, 'clientele reduce the': 182152, 'reduce the price': 705973, 'for data bundle': 320547, 'data bundle if': 226151, 'bundle if you': 142651, 'if you so': 415521, 'you so wish': 1021290, 'so wish that': 778788, 'wish that your': 996819, 'your customer stay': 1023425, 'customer stay home': 222875, 'stay home amp': 796937, 'home amp aren': 400601, 'amp aren infected': 53409, 'aren infected with': 92442, 'socialism fearing': 780958, 'fearing covid': 301477, 'from leader': 336202, 'leader quarantined': 483517, 'quarantined at': 692825, 'home shortage': 402063, 'good shopping': 357734, 'at designated': 98426, 'designated time': 238311, 'time healthcare': 896905, 'ill public': 416171, 'gathering limit': 344478, '10 hospital': 1462, 'demand gov': 235579, 'gov pay': 359657, 'to earner': 904840, 'socialism fearing covid': 780959, 'fearing covid 19': 301478, '19 piece of': 9683, 'piece of information': 656337, 'of information from': 585193, 'information from leader': 437842, 'from leader quarantined': 336203, 'leader quarantined at': 483518, 'quarantined at home': 692827, 'at home shortage': 99106, 'home shortage of': 402064, 'food and good': 313244, 'and good shopping': 63835, 'good shopping at': 357735, 'shopping at designated': 762092, 'at designated time': 98429, 'designated time healthcare': 238312, 'time healthcare for': 896906, 'healthcare for the': 387124, 'for the ill': 326491, 'the ill public': 857873, 'ill public gathering': 416172, 'public gathering limit': 688031, 'gathering limit of': 344480, 'limit of 10': 492392, 'of 10 hospital': 579308, '10 hospital bed': 1463, 'hospital bed and': 404324, 'bed and medical': 120382, 'medical supply in': 526448, 'supply in demand': 825397, 'in demand gov': 422127, 'demand gov pay': 235580, 'gov pay to': 359658, 'pay to earner': 645183, 'lockdownaustralia': 500218, 'forget toiletpaper': 329341, 'toiletpaper the': 922589, 've stocked': 953603, 'is tea': 452583, 'tea just': 835366, 'without my': 1002795, 'my morning': 549313, 'morning cuppa': 541233, 'cuppa lockdown': 220517, 'lockdown lockdownaustralia': 499610, 'lockdownaustralia stayathomesavelives': 500223, 'stayathomesavelives stayathome': 797805, 'stayathome selfisolation': 797605, 'forget toiletpaper the': 329344, 'toiletpaper the only': 922591, 'only thing ve': 611322, 'thing ve stocked': 884945, 've stocked up': 953604, 'up on is': 945583, 'on is tea': 601636, 'is tea just': 452584, 'tea just can': 835367, 'just can live': 468430, 'can live without': 158899, 'live without my': 496125, 'without my morning': 1002798, 'my morning cuppa': 549314, 'morning cuppa lockdown': 541234, 'cuppa lockdown lockdownaustralia': 220518, 'lockdown lockdownaustralia stayathomesavelives': 499611, 'lockdownaustralia stayathomesavelives stayathome': 500224, 'stayathomesavelives stayathome selfisolation': 797806, 'socio': 781379, 'implosion': 418602, 'hastened': 378834, 'shiite': 758581, 'kurdish': 477953, 'sunni': 818387, 'independence': 434067, 'are socio': 90243, 'socio economic': 781380, 'economic implosion': 267145, 'implosion hastened': 418603, 'hastened by': 378835, 'the decline': 853004, 'price terrorism': 676771, 'terrorism amp': 838598, 'amp shiite': 54484, 'shiite militia': 758582, 'militia kurdish': 531525, 'kurdish amp': 477954, 'amp arab': 53402, 'arab sunni': 83840, 'sunni independence': 818388, 'independence prompted': 434076, 'above iran': 27077, 'iran war': 444717, 'on iraqi': 601625, 'iraqi territory': 444799, 'territory covid': 838556, 'new addition': 558320, 'long list': 501512, 'of existential': 583306, 'existential issue': 290284, 'issue facing': 455744, 'facing iraq': 295509, 'these are socio': 879635, 'are socio economic': 90244, 'socio economic implosion': 781382, 'economic implosion hastened': 267146, 'implosion hastened by': 418604, 'hastened by the': 378836, 'by the decline': 154304, 'the decline in': 853006, 'oil price terrorism': 597284, 'price terrorism amp': 676772, 'terrorism amp shiite': 838599, 'amp shiite militia': 54485, 'shiite militia kurdish': 758583, 'militia kurdish amp': 531526, 'kurdish amp arab': 477955, 'amp arab sunni': 53403, 'arab sunni independence': 83841, 'sunni independence prompted': 818389, 'independence prompted by': 434077, 'prompted by the': 683929, 'by the above': 154257, 'the above iran': 848247, 'above iran war': 27078, 'iran war on': 444718, 'war on iraqi': 966504, 'on iraqi territory': 601626, 'iraqi territory covid': 444800, 'territory covid 19': 838557, '19 new addition': 8768, 'new addition to': 558321, 'addition to the': 31752, 'to the long': 916857, 'the long list': 859680, 'long list of': 501513, 'list of existential': 494432, 'of existential issue': 583307, 'existential issue facing': 290285, 'issue facing iraq': 455745, 'pudding': 688803, 'coronavirus food': 205932, 'parcel demand': 641486, 'we fed': 971530, 'fed twice': 301917, 'twice many': 936530, 'people last': 648607, 'did during': 240594, 'support now': 826680, 'product this': 681726, 'week custard': 976128, 'custard jam': 221948, 'jam amp': 464350, 'spread rice': 790773, 'rice pudding': 721117, 'pudding tinned': 688807, 'tinned fruit': 898619, 'coronavirus food parcel': 205936, 'food parcel demand': 315813, 'parcel demand due': 641487, 'pandemic we fed': 636940, 'we fed twice': 971531, 'fed twice many': 301918, 'twice many people': 936531, 'many people last': 514515, 'people last week': 648608, 'last week we': 480691, 'week we did': 977189, 'we did during': 971291, 'did during the': 240595, 'during the same': 263184, 'last year we': 480744, 'year we need': 1015087, 'your support now': 1026089, 'support now more': 826681, 'ever and will': 285196, 'and will run': 75691, 'of these product': 591856, 'these product this': 880563, 'product this week': 681729, 'this week custard': 891205, 'week custard jam': 976129, 'custard jam amp': 221949, 'jam amp spread': 464351, 'amp spread rice': 54546, 'spread rice pudding': 790774, 'rice pudding tinned': 721118, 'pudding tinned fruit': 688808, 'creepy': 216630, 'embraced': 272497, 'portland': 665033, 'pdx': 645955, 'made mask': 507826, 'responsibly walked': 716121, 'walked to': 964983, 'on along': 599262, 'with pair': 1000066, 'of sunglass': 590398, 'sunglass sure': 818380, 'sure looked': 827611, 'looked creepy': 502718, 'creepy but': 216631, 'but embraced': 145643, 'embraced it': 272498, 'because portland': 119491, 'portland socialdistancing': 665040, 'socialdistancing pdx': 780595, 'made mask so': 507829, 'mask so can': 519281, 'so can go': 776711, 'can go grocery': 158497, 'grocery shopping responsibly': 365073, 'shopping responsibly walked': 763744, 'responsibly walked to': 716122, 'walked to the': 964985, 'store with it': 811384, 'with it on': 999078, 'it on along': 460028, 'on along with': 599263, 'along with pair': 47072, 'with pair of': 1000067, 'pair of sunglass': 634339, 'of sunglass sure': 590400, 'sunglass sure looked': 818381, 'sure looked creepy': 827612, 'looked creepy but': 502719, 'creepy but embraced': 216632, 'but embraced it': 145644, 'embraced it because': 272499, 'it because portland': 456757, 'because portland socialdistancing': 119492, 'portland socialdistancing pdx': 665041, 'argentinian': 92652, 'ginning': 350212, 'he describes': 384869, 'describes the': 237966, 'the harvest': 857134, 'harvest in': 378621, 'different province': 242037, 'province how': 687176, 'the argentinian': 848887, 'argentinian government': 92653, 'affect harvesting': 34154, 'harvesting ginning': 378652, 'ginning and': 350213, 'and marketing': 66719, 'course where': 211959, 'where price': 985130, 'go you': 354535, 'can view': 160118, 'view it': 957105, 'he describes the': 384870, 'describes the status': 237967, 'status of the': 796688, 'of the harvest': 591093, 'the harvest in': 857135, 'harvest in different': 378622, 'in different province': 422255, 'different province how': 242038, 'province how the': 687177, 'how the argentinian': 408802, 'the argentinian government': 848888, 'argentinian government is': 92654, 'government is responding': 360273, '19 how the': 7609, 'crisis will affect': 218403, 'will affect harvesting': 992213, 'affect harvesting ginning': 34155, 'harvesting ginning and': 378653, 'ginning and marketing': 350214, 'and marketing and': 66721, 'marketing and of': 517522, 'of course where': 582079, 'course where price': 211960, 'where price are': 985131, 'likely to go': 492157, 'to go you': 906890, 'go you can': 354536, 'you can view': 1017824, 'can view it': 160119, 'view it here': 957106, 'igd': 415698, 'for igd': 322474, 'igd resource': 415699, 'resource find': 714769, 're engaging': 698612, 'with industry': 998989, 'and read': 69976, 'read news': 700473, 'good sector': 357701, 'sector on': 744284, 'is developing': 447157, 'developing follow': 239782, 'more regular': 540205, 'regular content': 707756, 'the link for': 859439, 'link for igd': 493833, 'for igd resource': 322475, 'igd resource find': 415700, 'resource find out': 714770, 'out how we': 626340, 'how we re': 409186, 'we re engaging': 972864, 're engaging with': 698613, 'engaging with industry': 276925, 'with industry and': 998990, 'industry and read': 435647, 'and read news': 69980, 'read news from': 700474, 'news from the': 560460, 'and consumer good': 60386, 'consumer good sector': 197637, 'good sector on': 357704, 'sector on how': 744285, 'how the situation': 408876, 'situation is developing': 772344, 'is developing follow': 447159, 'developing follow for': 239783, 'for more regular': 323593, 'more regular content': 540206, 'starbucks move': 794099, 'go only': 353918, 'crisis starbucks move': 218080, 'starbucks move to': 794100, 'move to to': 543769, 'to to go': 917591, 'to go only': 906833, 'hi why': 394772, 'still offer': 800918, 'offer such': 594814, 'such cheap': 816388, '100 usd': 2109, 'usd on': 948925, 'cruise that': 219711, 'could potentially': 209522, 'potentially lock': 667224, 'lock people': 499077, 'into miserable': 442759, 'miserable quarantine': 533987, 'quarantine did': 692144, 'not learn': 570337, 'your lesson': 1024612, 'lesson already': 486465, 'hi why do': 394773, 'you still offer': 1021407, 'still offer such': 800921, 'offer such cheap': 594815, 'such cheap price': 816389, 'cheap price 100': 174171, 'price 100 usd': 672102, '100 usd on': 2110, 'usd on cruise': 948926, 'on cruise that': 600178, 'cruise that could': 219712, 'that could potentially': 843360, 'could potentially lock': 209525, 'potentially lock people': 667225, 'lock people into': 499078, 'people into miserable': 648503, 'into miserable quarantine': 442760, 'miserable quarantine did': 533988, 'quarantine did you': 692145, 'did you not': 240940, 'you not learn': 1020124, 'not learn your': 570339, 'learn your lesson': 484100, 'your lesson already': 1024613, 'regoing': 707693, 'shame he': 754602, 'didn say': 241185, 'say if': 738781, 'you regoing': 1020890, 'regoing to': 707694, 'are restricted': 89651, 'to would': 918854, 'job easier': 465811, 'easier coronacrisis': 265137, 'shame he didn': 754603, 'he didn say': 384884, 'didn say if': 241187, 'say if you': 738788, 'if you regoing': 415508, 'you regoing to': 1020891, 'regoing to supermarket': 707695, 'to supermarket item': 915806, 'supermarket item are': 821188, 'item are restricted': 463104, 'are restricted to': 89654, 'restricted to would': 717172, 'to would make': 918856, 'would make my': 1012025, 'make my job': 510223, 'my job easier': 548912, 'job easier coronacrisis': 465812, 'foaming': 311815, 'of liquid': 585874, 'liquid hand': 494091, 'soap foaming': 779001, 'foaming hand': 311816, 'soap didn': 778979, 'didn people': 241159, 'people wash': 650142, '19 madness': 8506, 'empty of liquid': 274983, 'of liquid hand': 585875, 'liquid hand soap': 494093, 'hand soap foaming': 375771, 'soap foaming hand': 779002, 'foaming hand soap': 311818, 'soap and bar': 778906, 'bar soap didn': 110768, 'soap didn people': 778980, 'didn people wash': 241161, 'people wash their': 650143, 'their hand before': 873472, 'covid 19 madness': 213388, 'correction supermarket': 207572, 'shelf aren': 756835, 'aren cleared': 92358, 'cleared across': 181405, 'world plenty': 1009896, 'italy for': 462830, 'for eg': 320965, 'eg co': 269699, 'co ppl': 184950, 'ppl aren': 668178, 'aren panic': 92471, 'country most': 210899, 'correction supermarket shelf': 207573, 'supermarket shelf aren': 822429, 'shelf aren cleared': 756836, 'aren cleared across': 92359, 'cleared across the': 181406, 'the world plenty': 871939, 'world plenty of': 1009897, 'of food on': 583740, 'on shelf in': 603404, 'shelf in italy': 757201, 'in italy for': 424301, 'italy for eg': 462831, 'for eg co': 320966, 'eg co ppl': 269700, 'co ppl aren': 184951, 'ppl aren panic': 668179, 'aren panic buying': 92472, 'buying in the': 150547, 'the country most': 852118, 'country most affected': 210900, 'celebrating': 168827, 'easter to': 265515, 'all celebrating': 42328, 'celebrating today': 168844, 'happy easter to': 377610, 'easter to all': 265516, 'to all celebrating': 900234, 'all celebrating today': 42329, 'just served': 469768, 'served lady': 751996, 'lady she': 478824, 'glove face': 352674, 'had sanitiser': 373476, 'her served': 392355, 'served her': 751989, 'she paid': 756258, 'paid me': 634076, 'with cash': 997561, 'cash people': 166303, 'understand it': 940666, 'boat protect': 133726, 'others melbourne': 621533, 'just served lady': 469769, 'served lady she': 751997, 'lady she wa': 478825, 'she wa wearing': 756435, 'wearing glove face': 974631, 'glove face mask': 352675, 'mask and had': 518332, 'and had sanitiser': 64104, 'had sanitiser with': 373477, 'sanitiser with her': 734052, 'with her served': 998778, 'her served her': 392356, 'served her and': 751990, 'her and she': 391853, 'and she paid': 71424, 'she paid me': 756259, 'paid me with': 634077, 'me with cash': 523989, 'with cash people': 997564, 'cash people have': 166304, 'have to understand': 383329, 'to understand it': 917905, 'understand it we': 940669, 'it we are': 462274, 'same boat protect': 732983, 'boat protect yourself': 133727, 'yourself and protect': 1026526, 'and protect others': 69658, 'protect others melbourne': 684883, 'anyone comment': 80240, 'comment on': 188436, 'on whether': 605272, 'whether special': 985566, 'hour which': 406093, 'vulnerable elderly': 960943, 'people together': 649972, 'place nh': 657589, 'is terribly': 452612, 'terribly good': 838466, 'can anyone comment': 157509, 'anyone comment on': 80241, 'comment on whether': 188443, 'on whether special': 605275, 'whether special supermarket': 985567, 'special supermarket opening': 788063, 'opening hour which': 612863, 'hour which put': 406094, 'which put the': 986253, 'put the most': 690864, 'most vulnerable elderly': 542877, 'vulnerable elderly people': 960948, 'elderly people together': 270838, 'people together in': 649973, 'together in the': 920836, 'same place nh': 733231, 'place nh staff': 657590, 'nh staff who': 562112, 'staff who have': 793087, 'have been working': 379745, 'been working with': 122404, 'working with covid': 1009055, '19 patient is': 9590, 'patient is terribly': 644193, 'is terribly good': 452614, 'terribly good idea': 838467, 'fuelprice': 340364, 'tell all': 836902, 'that petrol': 845731, 'are touching': 91161, 'touching per': 926708, 'uk fuelprice': 938396, 'just to tell': 470111, 'to tell all': 916333, 'tell all of': 836903, 'you that petrol': 1021575, 'that petrol diesel': 845732, 'diesel price are': 241674, 'price are touching': 672756, 'are touching per': 91163, 'touching per litre': 926709, 'litre in the': 495164, 'the uk fuelprice': 870222, 'gazettement': 344771, 'read some': 700548, 'supermarket increased': 821019, 'much 10': 544664, '10 ahead': 1297, 'the gazettement': 856188, 'gazettement of': 344772, 'price rule': 676279, 'rule under': 727394, 'act related': 29757, 'read some supermarket': 700550, 'some supermarket increased': 784008, 'supermarket increased food': 821020, 'increased food price': 433322, 'food price by': 315926, 'price by much': 673027, 'by much 10': 153261, 'much 10 ahead': 544665, '10 ahead of': 1298, 'of the gazettement': 591057, 'the gazettement of': 856189, 'gazettement of price': 344773, 'of price rule': 588415, 'price rule under': 676280, 'rule under the': 727395, 'under the disaster': 940303, 'management act related': 512526, 'act related to': 29758, 'main question': 508804, 'wasted it': 968243, 'like panicked': 490964, 'panicked food': 639268, 'buying people': 150894, 'buying canned': 150090, 'canned and': 161493, 're even': 698630, 'even buying': 283924, 'my main question': 549192, 'main question is': 508805, 'is how much': 448588, 'much food is': 544906, 'food is going': 315125, 'to be wasted': 901631, 'be wasted it': 118060, 'wasted it not': 968244, 'not like panicked': 570398, 'like panicked food': 490965, 'panicked food buying': 639269, 'food buying people': 313854, 'buying people are': 150895, 'people are just': 647007, 'are just buying': 87620, 'just buying canned': 468391, 'buying canned and': 150091, 'canned and shelf': 161495, 'and shelf stable': 71447, 'stable food they': 791909, 'food they re': 317175, 'they re even': 883026, 're even buying': 698632, 'even buying all': 283925, 'business after': 143250, 'after coronacrisis': 35505, 'coronacrisis digital': 204587, 'digital becomes': 242514, 'becomes core': 120213, 'core strategy': 203527, 'strategy made': 812675, 'china no': 176846, 'only source': 611173, 'source remote': 786539, 'work becomes': 1004925, 'becomes part': 120245, 'of strategy': 590290, 'strategy direct': 812637, 'consumer online': 198265, 'shopping becomes': 762180, 'becomes norm': 120241, 'norm strategy': 567057, 'strategy marketing': 812677, 'marketing business': 517538, 'business online': 144140, 'online digital': 608103, 'future of business': 342389, 'of business after': 580943, 'business after coronacrisis': 143252, 'after coronacrisis digital': 35506, 'coronacrisis digital becomes': 204588, 'digital becomes core': 242515, 'becomes core strategy': 120214, 'core strategy made': 203528, 'strategy made in': 812676, 'in china no': 421418, 'china no longer': 176847, 'longer the only': 502085, 'the only source': 862343, 'only source remote': 611175, 'source remote work': 786540, 'remote work becomes': 710740, 'work becomes part': 1004926, 'becomes part of': 120246, 'part of strategy': 642383, 'of strategy direct': 590292, 'strategy direct to': 812638, 'to consumer online': 903319, 'consumer online shopping': 198268, 'online shopping becomes': 609048, 'shopping becomes norm': 762181, 'becomes norm strategy': 120242, 'norm strategy marketing': 567058, 'strategy marketing business': 812678, 'marketing business online': 517539, 'business online digital': 144141, 'utah': 951184, 'utah food': 951190, 'pantry and': 639516, 'kitchen are': 475696, 'utah food pantry': 951191, 'food pantry and': 315766, 'pantry and kitchen': 639522, 'and kitchen are': 65865, 'kitchen are experiencing': 475697, 'experiencing high demand': 291657, 'high demand due': 395004, 'crisis change': 217207, 'consumer eating': 197278, 'eating behavior': 266179, 'will the covid': 995133, '19 crisis change': 6224, 'crisis change consumer': 217208, 'change consumer eating': 171984, 'consumer eating behavior': 197279, 'she is an': 756144, 'is an idiot': 445665, 'pandemic over': 636137, 'over half': 630268, 'half 58': 374134, '58 agreed': 20519, 'more pandemic': 539977, 'hope not': 403553, 'the consumer trend': 851615, 'consumer trend during': 199372, 'trend during this': 931328, 'this pandemic over': 889412, 'pandemic over half': 636138, 'over half 58': 630269, 'half 58 agreed': 374135, '58 agreed that': 20520, 'agreed that we': 38728, 'will see more': 994785, 'see more pandemic': 745434, 'more pandemic like': 539978, 'pandemic like this': 635889, 'future we hope': 342515, 'we hope not': 972032, 'bottled': 136365, 'real life': 701249, 'life photo': 488967, 'get bottled': 346699, 'bottled water': 136370, 'water stayhome': 969165, 'real life photo': 701253, 'life photo of': 488968, 'of me going': 586329, 'to get bottled': 906426, 'get bottled water': 346700, 'bottled water stayhome': 136375, 'closetheschoolsnow': 183561, 'coronacrisis australian': 204519, 'australian are': 103435, 'seriously could': 751571, 'me space': 523520, 'supermarket mixed': 821525, 'mixed messaging': 534634, 'messaging to': 529524, 'blame closetheschoolsnow': 132248, 'coronacrisis australian are': 204520, 'australian are not': 103436, 'this seriously could': 890039, 'seriously could not': 751572, 'not get people': 569603, 'get people to': 347806, 'people to give': 649904, 'give me space': 350583, 'me space at': 523521, 'space at local': 787059, 'local supermarket mixed': 498556, 'supermarket mixed messaging': 821526, 'mixed messaging to': 534636, 'messaging to blame': 529525, 'to blame closetheschoolsnow': 901843, 'limiting my': 492833, 'week like': 976484, 'go longer': 353809, 'between shop': 128891, 'restock my': 716882, 'fruit weekly': 339196, 'weekly friend': 977497, 'mine who': 532943, 'supermarket told': 823492, 'she cry': 755971, 'work eve': 1005107, 'limiting my grocery': 492834, 'grocery shopping to': 365095, 'shopping to once': 764185, 'per week like': 651069, 'week like to': 976485, 'like to go': 491593, 'to go longer': 906821, 'go longer in': 353810, 'longer in between': 501997, 'in between shop': 420809, 'between shop but': 128892, 'shop but need': 759999, 'need to restock': 556047, 'to restock my': 913405, 'restock my fresh': 716884, 'my fresh fruit': 548411, 'fresh fruit weekly': 333003, 'fruit weekly friend': 339197, 'weekly friend of': 977498, 'of mine who': 586562, 'mine who work': 532945, 'in supermarket told': 428697, 'supermarket told me': 823494, 'told me she': 923616, 'me she cry': 523443, 'she cry at': 755972, 'cry at work': 219855, 'at work eve': 101600, 'brockless': 140808, 'timberdine': 896171, 'worcester': 1004435, 'harvey amp': 378665, 'amp brockless': 53472, 'brockless now': 140809, 'now selling': 575768, 'struggle seen': 814374, 'selling dairy': 749212, 'product cheese': 681053, 'cheese amp': 175159, 'amp deli': 53619, 'deli item': 232930, 'price avoid': 672827, 'crowd come': 219141, 'see for': 745127, 'yourself 26': 1026498, 'the timberdine': 869567, 'timberdine pub': 896172, 'pub worcester': 687811, 'harvey amp brockless': 378666, 'amp brockless now': 53473, 'brockless now selling': 140810, 'now selling to': 575775, 'selling to the': 749507, 'to the community': 916575, 'community in light': 189915, '19 situation and': 10568, 'situation and the': 772187, 'and the struggle': 73599, 'the struggle seen': 868306, 'struggle seen at': 814375, 'seen at the': 746959, 're now selling': 699146, 'now selling dairy': 575769, 'selling dairy product': 749213, 'dairy product cheese': 225027, 'product cheese amp': 681054, 'cheese amp deli': 175160, 'amp deli item': 53620, 'deli item at': 232931, 'item at reduced': 463133, 'reduced price avoid': 706144, 'price avoid the': 672828, 'avoid the crowd': 105320, 'the crowd come': 852521, 'crowd come and': 219142, 'and see for': 71134, 'see for yourself': 745131, 'for yourself 26': 328230, 'yourself 26 the': 1026499, '26 the timberdine': 16194, 'the timberdine pub': 869568, 'timberdine pub worcester': 896173, 'icky': 412777, 'amiright': 52851, 'idiotinchief': 413657, 'food naturally': 315509, 'naturally the': 552926, 'need according': 554360, 'to republican': 913306, 'republican is': 713041, 'more icky': 539465, 'icky brown': 412778, 'brown people': 141254, 'people picking': 649112, 'picking fruit': 655853, 'vegetable mean': 954033, 'mean who': 524773, 'food amiright': 313121, 'amiright gop': 52852, 'gop idiotinchief': 358255, 'idiotinchief racism': 413658, 'since we have': 770979, 'have people panic': 381913, 'hoarding food naturally': 399308, 'food naturally the': 315510, 'naturally the last': 552927, 'last thing we': 480550, 'thing we need': 884966, 'we need according': 972461, 'need according to': 554361, 'according to republican': 28583, 'to republican is': 913307, 'republican is more': 713042, 'is more icky': 449710, 'more icky brown': 539466, 'icky brown people': 412779, 'brown people picking': 141255, 'people picking fruit': 649113, 'picking fruit and': 655854, 'and vegetable mean': 74890, 'vegetable mean who': 954034, 'mean who need': 524774, 'who need more': 989320, 'need more food': 555257, 'more food amiright': 539236, 'food amiright gop': 313122, 'amiright gop idiotinchief': 52853, 'gop idiotinchief racism': 358256, 'distancing thing': 247546, 'great can': 362563, 'supermarket this social': 823320, 'social distancing thing': 779742, 'distancing thing is': 247547, 'thing is great': 884469, 'is great can': 448192, 'great can we': 362564, 'we keep it': 972131, 'keep it after': 471605, 'it after all': 456297, 'portacabin': 664932, 'up portacabin': 945785, 'portacabin supermarket': 664933, 'park panicbuyinguk': 641967, 'can you set': 160330, 'you set up': 1021132, 'set up portacabin': 753572, 'up portacabin supermarket': 945786, 'portacabin supermarket for': 664934, 'supermarket for frontline': 820397, 'for frontline staff': 321780, 'frontline staff in': 338826, 'staff in the': 792559, 'car park panicbuyinguk': 163231, 'mob': 534911, 'con yes': 192816, 'yes much': 1015488, 'much gratitude': 544955, 'gratitude for': 362369, 'staff also': 792102, 'also all': 47830, 'chain clerk': 170595, 'clerk working': 181831, 'with irrational': 999040, 'irrational mob': 444986, 'mob leave': 534914, 'tp people': 927903, 'con yes much': 192817, 'yes much gratitude': 1015489, 'much gratitude for': 544957, 'gratitude for our': 362371, 'for our healthcare': 324256, 'our healthcare staff': 623390, 'healthcare staff also': 387286, 'staff also all': 792103, 'also all the': 47832, 'the grocery supply': 856829, 'supply chain clerk': 824930, 'chain clerk working': 170596, 'clerk working the': 181832, 'working the store': 1008942, 'store with irrational': 811383, 'with irrational mob': 999041, 'irrational mob leave': 444987, 'mob leave some': 534915, 'leave some tp': 484936, 'some tp people': 784104, 'contentsquare': 200867, 'provide understanding': 686525, 'understanding during': 940874, 'monitoring the': 537377, 'behavior contentsquare': 123984, 'to provide understanding': 912444, 'provide understanding during': 686526, 'understanding during this': 940875, 'uncertain time we': 939630, 'we are monitoring': 970631, 'are monitoring the': 88103, 'monitoring the impact': 537380, 'of on online': 587222, 'on online consumer': 602517, 'online consumer behavior': 608042, 'consumer behavior contentsquare': 196459, 'tractor': 928391, 'trailer': 929212, 'police find': 662995, 'find stolen': 307251, 'stolen tractor': 804304, 'tractor trailer': 928392, 'trailer full': 929213, 'police find stolen': 662996, 'find stolen tractor': 307253, 'stolen tractor trailer': 804305, 'tractor trailer full': 928393, 'trailer full of': 929214, 'full of toilet': 340762, 'fortnum': 329875, 'mason': 519714, 'is deepening': 447068, 'deepening fortnum': 231945, 'fortnum and': 329876, 'and mason': 66774, 'mason put': 519719, 'put 700': 690492, '700 worker': 21909, 'on furlough': 601059, 'fellow department': 303281, 'store company': 807124, 'company debenhams': 190583, 'debenhams call': 230353, 'in administrator': 420044, 'administrator for': 32532, 'help read': 390410, 'about both': 24889, 'both story': 136057, 'story here': 812000, 'crisis on the': 217818, 'high street is': 395431, 'street is deepening': 813009, 'is deepening fortnum': 447069, 'deepening fortnum and': 231946, 'fortnum and mason': 329877, 'and mason put': 66775, 'mason put 700': 519720, 'put 700 worker': 690493, '700 worker on': 21910, 'worker on furlough': 1007488, 'on furlough and': 601060, 'furlough and fellow': 341879, 'and fellow department': 62792, 'fellow department store': 303282, 'department store company': 237270, 'store company debenhams': 807126, 'company debenhams call': 190584, 'debenhams call in': 230354, 'call in administrator': 155938, 'in administrator for': 420045, 'administrator for help': 32533, 'for help read': 322187, 'help read more': 390411, 'more about both': 538497, 'about both story': 24890, 'both story here': 136058, 've friend': 953147, 'is worried': 454059, 'worried they': 1010591, 'be laid': 115652, 'of underlying': 592613, 'condition due': 193444, 'work part': 1005596, 'local op': 498236, 'op supermarket': 611816, 'ha asthma': 369640, 'and diabetes': 61301, 'diabetes what': 240191, 'what her': 981597, 'her right': 392333, 'right over': 722213, 'can she': 159590, 've friend who': 953148, 'who is worried': 989131, 'is worried they': 454061, 'worried they will': 1010593, 'will be laid': 992531, 'be laid off': 115653, 'laid off because': 479013, 'because of underlying': 119421, 'of underlying health': 592614, 'health condition due': 386291, 'condition due to': 193445, '19 work part': 12171, 'work part time': 1005597, 'part time at': 642444, 'time at local': 896349, 'at local op': 99607, 'local op supermarket': 498237, 'op supermarket and': 611817, 'supermarket and ha': 818994, 'and ha asthma': 64063, 'ha asthma and': 369641, 'asthma and diabetes': 97180, 'and diabetes what': 61303, 'diabetes what her': 240192, 'what her right': 981598, 'her right over': 392334, 'right over this': 722215, 'over this and': 630814, 'this and what': 886358, 'and what can': 75453, 'what can she': 981178, 'can she do': 159591, 'auburn': 102814, 'about seriously': 26165, 'seriously losing': 751665, 'losing the': 503591, 'the plot': 863850, 'plot these': 661090, 'clown are': 184357, 'queuing for': 694208, 'western suburb': 980638, 'suburb of': 816123, 'of auburn': 580441, 'talk about seriously': 833754, 'about seriously losing': 26166, 'seriously losing the': 751666, 'losing the plot': 503593, 'the plot these': 863851, 'plot these clown': 661091, 'these clown are': 879769, 'clown are queuing': 184358, 'are queuing for': 89391, 'queuing for at': 694209, 'for at in': 319517, 'the western suburb': 871406, 'western suburb of': 980639, 'suburb of auburn': 816124, 'scary stuff': 741189, 'stuff israeli': 815111, 'israeli grocery': 455613, 'stock there': 802957, 'produce is': 680322, 'is old': 450453, 'and chinese': 59859, 'chinese food': 177261, 'stuff are': 815015, 'find but': 306839, 'not starving': 571699, 'starving god': 795252, 'god help': 354735, 'scary stuff israeli': 741190, 'stuff israeli grocery': 815112, 'israeli grocery store': 455614, 'store are low': 806498, 'low on stock': 505465, 'on stock there': 603677, 'stock there no': 802960, 'there no fresh': 878810, 'no fresh fish': 564302, 'fish and the': 309292, 'and the produce': 73529, 'the produce is': 864570, 'produce is old': 680325, 'is old and': 450455, 'old and chinese': 598134, 'and chinese food': 59860, 'chinese food stuff': 177264, 'food stuff are': 316885, 'stuff are hard': 815016, 'are hard to': 87017, 'to find but': 905887, 'find but not': 306840, 'but not starving': 146564, 'not starving god': 571700, 'starving god help': 795253, 'god help the': 354738, 'throat': 894230, 'cleared my': 181417, 'my throat': 550363, 'throat in': 894241, 'day swear': 228447, 'swear when': 830044, 'when turned': 984356, 'turned around': 935826, 'other patron': 620649, 'patron were': 644426, 'were like': 979842, 'cleared my throat': 181418, 'my throat in': 550366, 'throat in the': 894243, 'other day swear': 620082, 'day swear when': 228448, 'swear when turned': 830045, 'when turned around': 984357, 'turned around other': 935828, 'around other patron': 93436, 'other patron were': 620650, 'patron were like': 644427, 'incarcerated': 431319, 'dade': 224431, 'rigorous': 722489, 'breaking incarcerated': 138968, 'incarcerated people': 431322, 'miami dade': 530167, 'dade county': 224432, 'county sue': 211497, 'sue over': 817162, 'over condition': 630100, 'metro west': 529951, 'west jail': 980512, 'jail demanding': 464262, 'demanding more': 236602, 'more rigorous': 540266, 'rigorous disease': 722490, 'disease prevention': 245214, 'prevention measure': 671871, 'immediate release': 417020, 'of medically': 586401, 'medically vulnerable': 526541, 'vulnerable individual': 961022, 'individual their': 435263, 'continued detention': 201311, 'detention is': 239377, 'is grave': 448183, 'grave risk': 362430, 'breaking incarcerated people': 138969, 'incarcerated people in': 431323, 'people in miami': 648396, 'in miami dade': 425277, 'miami dade county': 530168, 'dade county sue': 224433, 'county sue over': 211498, 'sue over condition': 817163, 'over condition in': 630101, 'condition in the': 193471, 'in the metro': 429357, 'the metro west': 860553, 'metro west jail': 529952, 'west jail demanding': 980513, 'jail demanding more': 464263, 'demanding more rigorous': 236603, 'more rigorous disease': 540267, 'rigorous disease prevention': 722491, 'disease prevention measure': 245215, 'prevention measure and': 671872, 'measure and the': 525105, 'and the immediate': 73415, 'the immediate release': 857907, 'immediate release of': 417021, 'release of medically': 708984, 'of medically vulnerable': 586402, 'medically vulnerable individual': 526542, 'vulnerable individual their': 961023, 'individual their continued': 435264, 'their continued detention': 872873, 'continued detention is': 201312, 'detention is grave': 239378, 'is grave risk': 448184, 'grave risk to': 362431, 'risk to their': 723972, 'to their life': 917248, 'month try': 538089, 'try year': 934690, 'year coronamemes': 1014488, 'month try year': 538090, 'try year coronamemes': 934691, 'year coronamemes toiletpaper': 1014489, 'could the': 209756, 'sudden travel': 817053, 'travel downturn': 930340, 'downturn equal': 257798, 'equal surge': 279608, 'in unit': 430439, 'unit available': 942044, 'for traditional': 327308, 'traditional rental': 929013, 'rental potentially': 711256, 'potentially lower': 667226, 'lower rental': 505981, 'could the sudden': 209759, 'the sudden travel': 868392, 'sudden travel downturn': 817054, 'travel downturn equal': 930342, 'downturn equal surge': 257799, 'equal surge in': 279609, 'surge in unit': 828213, 'in unit available': 430440, 'unit available for': 942045, 'available for traditional': 104387, 'for traditional rental': 327309, 'traditional rental potentially': 929014, 'rental potentially lower': 711257, 'potentially lower rental': 667228, 'lower rental price': 505982, 'rental price 19': 711260, 'azerbaijani': 106398, 'smuggle': 775984, 'married': 517998, 'azerbaijan': 106397, 'azerbaijani authority': 106399, 'have arrested': 379353, 'arrested five': 93836, 'five people': 309650, 'who allegedly': 988045, 'allegedly tried': 45715, 'to smuggle': 914779, 'smuggle mask': 775987, 'mask into': 518857, 'into china': 442457, 'price one': 675742, 'the accused': 848291, 'accused supplier': 28962, 'is married': 449587, 'married to': 518005, 'the former': 855713, 'former director': 329629, 'major pharmaceutical': 509417, 'in azerbaijan': 420652, 'azerbaijani authority have': 106401, 'authority have arrested': 103736, 'have arrested five': 379354, 'arrested five people': 93837, 'five people who': 309652, 'people who allegedly': 650258, 'who allegedly tried': 988047, 'allegedly tried to': 45716, 'tried to smuggle': 931851, 'to smuggle mask': 914781, 'smuggle mask into': 775988, 'mask into china': 518858, 'into china to': 442458, 'china to sell': 177003, 'to sell them': 914180, 'sell them at': 748905, 'them at inflated': 875443, 'inflated price one': 437059, 'price one of': 675744, 'of the accused': 590776, 'the accused supplier': 848292, 'accused supplier is': 28963, 'supplier is married': 824563, 'is married to': 449588, 'married to the': 518007, 'to the former': 916724, 'the former director': 855714, 'former director of': 329631, 'director of major': 243652, 'of major pharmaceutical': 586114, 'major pharmaceutical company': 509418, 'pharmaceutical company in': 654067, 'company in azerbaijan': 190757, '48oz': 19367, 'lysol lot': 507180, 'lot disinfectant': 504032, 'sanitizer clean': 734657, 'clean fresh': 180538, 'fresh 48oz': 332904, '48oz kill': 19368, 'virus spray': 958779, 'spray cleaner': 790281, 'lysol lot disinfectant': 507182, 'lot disinfectant sanitizer': 504033, 'disinfectant sanitizer clean': 245747, 'sanitizer clean fresh': 734658, 'clean fresh 48oz': 180539, 'fresh 48oz kill': 332905, '48oz kill virus': 19370, 'kill virus spray': 474546, 'virus spray cleaner': 958780, '45uk': 19212, 'kate 45uk': 471014, 'amok': 52975, 'murder': 546151, 'teenager run': 836550, 'run amok': 727552, 'amok coughing': 52976, 'and spewing': 72101, 'spewing spit': 789193, 'to possibly': 911903, 'possibly spread': 665955, 'and murder': 67328, 'murder people': 546157, 'underlying condition': 940468, 'condition sue': 193528, 'sue the': 817166, 'crap out': 214903, 'their parent': 874245, 'teenager run amok': 836551, 'run amok coughing': 727553, 'amok coughing and': 52977, 'coughing and spewing': 208666, 'and spewing spit': 72102, 'spewing spit on': 789194, 'spit on fruit': 789561, 'on fruit and': 601036, 'and vegetable produce': 74894, 'vegetable produce in': 954080, 'store to possibly': 810796, 'to possibly spread': 911904, 'possibly spread and': 665956, 'spread and murder': 790416, 'and murder people': 67329, 'murder people with': 546158, 'with underlying condition': 1001896, 'underlying condition sue': 940471, 'condition sue the': 193529, 'sue the crap': 817167, 'the crap out': 852272, 'crap out of': 214904, 'of their parent': 591687, 'stayathome chicago': 797452, 'chicago newyork': 175686, 'newyork newyorkcity': 561196, 'newyorkcity america': 561207, 'worker are hero': 1006394, 'are hero stayathome': 87137, 'hero stayathome chicago': 394094, 'stayathome chicago newyork': 797453, 'chicago newyork newyorkcity': 175687, 'newyork newyorkcity america': 561197, 'stayhomestaysafeugadi': 798544, 'make panic': 510300, 'buying spread': 151070, 'spread awareness': 790441, 'awareness among': 105682, 'among your': 53116, 'family contribute': 297723, 'contribute your': 201890, 'support against': 826332, 'by social': 154060, 'staying indoor': 798649, 'indoor at': 435346, 'sharing some': 755581, 'food india': 315000, 'die starving': 241457, 'starving stayhomestaysafeugadi': 795266, 'not make panic': 570502, 'make panic buying': 510301, 'panic buying spread': 637896, 'buying spread awareness': 151071, 'spread awareness among': 790442, 'awareness among your': 105683, 'among your friend': 53117, 'and family contribute': 62655, 'family contribute your': 297724, 'contribute your support': 201891, 'your support against': 1026078, 'support against covid': 826333, '19 by social': 5575, 'by social distancing': 154061, 'distancing and staying': 246998, 'and staying indoor': 72322, 'staying indoor at': 798650, 'indoor at home': 435347, 'home try to': 402375, 'try to help': 934632, 'to help poor': 907590, 'help poor people': 390338, 'poor people on': 664256, 'people on street': 648972, 'on street by': 603714, 'street by sharing': 812935, 'by sharing some': 153971, 'sharing some food': 755582, 'some food india': 782862, 'food india should': 315001, 'india should not': 434609, 'should not die': 766238, 'not die starving': 569025, 'die starving stayhomestaysafeugadi': 241458, 'eco': 266652, 'access your': 28309, 'your consumption': 1023330, 'consumption when': 199961, 'the extra': 854760, 'extra hope': 293546, 'actually consume': 30766, 'consume what': 195954, 'what luxury': 981844, 'luxury item': 506938, 'need perspective': 555432, 'perspective rethink': 653229, 'rethink eco': 719644, 'now is time': 575087, 'time to access': 897938, 'to access your': 899964, 'access your consumption': 28310, 'your consumption when': 1023331, 'consumption when you': 199962, 'option to go': 614123, 'and do supermarket': 61561, 'do supermarket shop': 250194, 'supermarket shop for': 822586, 'shop for everything': 760186, 'for everything the': 321258, 'everything the extra': 288039, 'the extra hope': 854762, 'extra hope you': 293547, 'hope you think': 403810, 'you think about': 1021641, 'about what you': 26906, 'what you actually': 982658, 'you actually consume': 1016807, 'actually consume what': 30767, 'consume what you': 195955, 'what you waste': 982699, 'you waste and': 1022181, 'waste and what': 968079, 'and what luxury': 75475, 'what luxury item': 981845, 'luxury item you': 506940, 'item you do': 463866, 'not really need': 571241, 'really need perspective': 702440, 'need perspective rethink': 555433, 'perspective rethink eco': 653230, 'molina': 535662, 'partnered': 642918, 'alleviate supply': 45819, 'shortage caused': 764877, 'the molina': 860732, 'molina healthcare': 535663, 'healthcare of': 387195, 'of michigan': 586471, 'michigan partnered': 530357, 'partnered with': 642919, 'with motor': 999577, 'motor city': 543330, 'city gas': 179158, 'donate nearly': 254204, 'nearly 25': 553772, 'hospital including': 404476, 'including amp': 431874, 'amp we': 54816, 'our healthcareheroes': 623393, 'to help alleviate': 907447, 'help alleviate supply': 389332, 'alleviate supply shortage': 45820, 'supply shortage caused': 825831, 'shortage caused by': 764878, 'by the molina': 154378, 'the molina healthcare': 860733, 'molina healthcare of': 535664, 'healthcare of michigan': 387196, 'of michigan partnered': 586474, 'michigan partnered with': 530358, 'partnered with motor': 642923, 'with motor city': 999578, 'motor city gas': 543331, 'city gas to': 179159, 'gas to donate': 344157, 'to donate nearly': 904652, 'donate nearly 25': 254205, 'nearly 25 gallon': 553773, '25 gallon of': 15874, 'gallon of hand': 343042, 'sanitizer to local': 735933, 'local hospital including': 498089, 'hospital including amp': 404477, 'including amp we': 431875, 'amp we thank': 54822, 'we thank our': 973513, 'thank our healthcareheroes': 841619, 'brain for': 137592, 'her please': 392306, 'please 19': 659628, 'stop hoarding and': 804724, 'hoarding and use': 399194, 'and use your': 74788, 'your brain for': 1023011, 'brain for your': 137593, 'for your own': 328186, 'your own good': 1025140, 'own good if': 632021, 'good if you': 357235, 'do it for': 249477, 'it for her': 458079, 'for her please': 322227, 'her please 19': 392307, 'nancychokeswhilepeoplegobroke': 551798, 'not strategic': 571773, 'strategic reserve': 812560, 'reserve supply': 714100, 'toiletpaper nancychokeswhilepeoplegobroke': 922254, 'is there not': 453020, 'there not strategic': 878863, 'not strategic reserve': 571774, 'strategic reserve supply': 812562, 'reserve supply of': 714101, 'supply of toiletpaper': 825655, 'of toiletpaper nancychokeswhilepeoplegobroke': 592273, 'obstructing': 578717, 'by obstructing': 153387, 'obstructing the': 578720, '19 throughout': 11389, 'idiot trump': 413622, 'trying keep': 934713, 'infection death': 436741, 'death low': 230120, 'so he': 777269, 'keep manipulating': 471647, 'stock markt': 802461, 'markt price': 517944, 'guy didn': 368976, 'didn count': 241027, 'the resolve': 865587, 'resolve of': 714636, 'of ny': 587120, 'ny governor': 577870, 'by obstructing the': 153389, 'obstructing the testing': 578721, 'the testing of': 869332, 'testing of covid': 839582, 'covid 19 throughout': 213952, '19 throughout the': 11390, 'the country the': 852162, 'country the idiot': 211126, 'the idiot trump': 857849, 'idiot trump is': 413623, 'trump is trying': 933659, 'is trying keep': 453395, 'trying keep the': 934714, 'keep the number': 472058, 'number of covid': 576934, '19 infection death': 7849, 'infection death low': 436742, 'death low so': 230121, 'low so he': 505627, 'so he can': 777270, 'he can keep': 384816, 'can keep manipulating': 158809, 'keep manipulating the': 471648, 'manipulating the stock': 513225, 'the stock markt': 867916, 'stock markt price': 802462, 'markt price the': 517945, 'price the guy': 676837, 'the guy didn': 856958, 'guy didn count': 368977, 'didn count on': 241028, 'count on the': 210147, 'on the resolve': 604333, 'the resolve of': 865588, 'resolve of ny': 714637, 'of ny governor': 587121, 'were and': 979328, 'living like': 496409, 'sudden they': 817051, 'they wanna': 883702, 'wanna buy': 965619, 'buy hoard': 148789, 'hoard cleaning': 398769, 'supply hand': 825344, 'paper cuz': 640078, 'cuz of': 223810, 'there were and': 879310, 'were and are': 979329, 'and are people': 58340, 'are people living': 89039, 'people living like': 648686, 'living like this': 496410, 'like this for': 491491, 'this for long': 887592, 'long time and': 501764, 'time and now': 896284, 'all of sudden': 43711, 'of sudden they': 590376, 'sudden they wanna': 817052, 'they wanna buy': 883703, 'wanna buy hoard': 965620, 'buy hoard cleaning': 148790, 'hoard cleaning supply': 398770, 'cleaning supply hand': 181078, 'supply hand sanitizer': 825345, 'toilet paper cuz': 921249, 'paper cuz of': 640079, 'cuz of the': 223812, 'see meme': 745415, 'meme of': 528344, 'of fat': 583443, 'fat guy': 300206, 'how good': 407924, 'good look': 357342, 'look kingdom': 502452, 'kingdom without': 475353, 'without realizing': 1002874, 'realizing it': 701932, 'received lot': 703639, 'of attention': 580434, 'attention trying': 102501, 'the immunocompromised': 857921, 'immunocompromised in': 417464, 'if any of': 413830, 'of you see': 593420, 'you see meme': 1021049, 'see meme of': 745416, 'meme of fat': 528345, 'of fat guy': 583445, 'fat guy in': 300207, 'guy in gas': 369034, 'in gas mask': 423222, 'gas mask in': 343903, 'in supermarket please': 428649, 'supermarket please share': 822020, 'please share it': 660487, 'it with me': 462477, 'with me want': 999458, 'see how good': 745232, 'how good look': 407925, 'good look kingdom': 357344, 'look kingdom without': 502453, 'kingdom without realizing': 475354, 'without realizing it': 1002875, 'realizing it received': 701933, 'it received lot': 460663, 'received lot of': 703640, 'lot of attention': 504141, 'of attention trying': 580435, 'attention trying to': 102502, 'trying to protect': 934846, 'protect the immunocompromised': 684973, 'the immunocompromised in': 857922, 'immunocompromised in my': 417465, 'in my family': 425574, 'scale is': 739893, 'is different': 447166, 'anything we': 80932, 'before said': 123049, 'said judith': 731182, 'judith smith': 467694, 'smith meyer': 775802, 'meyer foodbank': 530033, 'foodbank sbc': 317794, 'sbc marketing': 739801, 'marketing communication': 517553, 'communication manager': 189609, 'manager thank': 512803, 'community understand': 190190, 'understand our': 940690, 'our effort': 622856, 'the scale is': 866404, 'scale is different': 739894, 'is different than': 447169, 'different than anything': 242085, 'than anything we': 840362, 'anything we ve': 80935, 'we ve ever': 973661, 'ever seen before': 285485, 'seen before said': 746970, 'before said judith': 123051, 'said judith smith': 731183, 'judith smith meyer': 467695, 'smith meyer foodbank': 775803, 'meyer foodbank sbc': 530034, 'foodbank sbc marketing': 317795, 'sbc marketing communication': 739802, 'marketing communication manager': 517554, 'communication manager thank': 189611, 'manager thank you': 512804, 'helping the community': 391485, 'the community understand': 851303, 'community understand our': 190191, 'understand our effort': 940691, 'the could': 851999, 'cause house': 167601, 'to plunge': 911834, 'plunge by': 661418, 'much 80': 544682, '80 in': 22588, 'some spring': 783927, 'spring month': 791226, 'month last': 537814, 'year ha': 1014599, 'ha predicted': 371530, 'predicted the': 669620, 'website found': 975281, 'that buyer': 843069, 'buyer demand': 149624, 'demand dropped': 235262, 'dropped by': 260548, 'by 40': 151647, 'to march': 909837, '22 read': 15241, 'read analysis': 700276, 'the could cause': 852002, 'could cause house': 208999, 'cause house sale': 167602, 'house sale to': 406546, 'sale to plunge': 732590, 'to plunge by': 911835, 'plunge by much': 661422, 'by much 80': 153265, 'much 80 in': 544684, '80 in some': 22589, 'in some spring': 428103, 'some spring month': 783928, 'spring month last': 791227, 'month last year': 537815, 'last year ha': 480724, 'year ha predicted': 1014602, 'ha predicted the': 371531, 'predicted the website': 669622, 'the website found': 871277, 'website found that': 975282, 'found that buyer': 330395, 'that buyer demand': 843070, 'buyer demand dropped': 149625, 'demand dropped by': 235263, 'dropped by 40': 260550, 'by 40 in': 151648, 'the week to': 871317, 'week to march': 977088, 'to march 22': 909839, 'march 22 read': 515184, '22 read analysis': 15242, 'read analysis here': 700278, 'shielding': 758194, 'vulnerable ha': 960991, 'is shielding': 451846, 'shielding been': 758197, 'been offered': 121590, 'offered delivery': 594915, 'slot from': 774195, 'any major': 79442, 'tesco morrison': 838743, 'morrison asda': 541704, 'asda waitrose': 95001, 'waitrose sainsbury': 964478, 'vulnerable ha anyone': 960992, 'ha anyone who': 369593, 'who is shielding': 989112, 'is shielding been': 451847, 'shielding been offered': 758198, 'been offered delivery': 121591, 'offered delivery slot': 594916, 'delivery slot from': 234522, 'slot from any': 774196, 'from any major': 334550, 'any major supermarket': 79444, 'major supermarket tesco': 509500, 'supermarket tesco morrison': 823151, 'tesco morrison asda': 838744, 'morrison asda waitrose': 541706, 'asda waitrose sainsbury': 95003, 'of tragic': 592415, 'tragic grocery': 929194, 'wearing disposable': 974610, 'disposable glove': 246244, 'mask google': 518764, 'die of tragic': 241433, 'of tragic grocery': 592416, 'tragic grocery worker': 929195, 'grocery worker should': 366188, 'worker should be': 1007772, 'should be wearing': 765770, 'be wearing disposable': 118074, 'wearing disposable glove': 974611, 'disposable glove mask': 246246, 'glove mask google': 352774, 'united are': 942150, 'donating 50': 254423, 'manchester united are': 512962, 'united are donating': 942151, 'are donating 50': 85946, 'donating 50 00': 254424, 'response to growing': 715848, 'to growing demand': 907045, '21kidsandcounting': 15133, 'channel4': 172958, 'watching 21kidsandcounting': 968693, '21kidsandcounting on': 15134, 'showing there': 767537, 'there weekly': 879299, 'shop wonder': 761077, 'like for': 490269, 'with lockdown': 999289, 'buying lockdown': 150670, 'lockdown channel4': 499235, 'watching 21kidsandcounting on': 968694, '21kidsandcounting on and': 15135, 'on and showing': 599371, 'and showing there': 71627, 'showing there weekly': 767538, 'there weekly food': 879300, 'food shop wonder': 316502, 'shop wonder what': 761078, 'wonder what it': 1004010, 'it like for': 459361, 'like for them': 490274, 'for them during': 326898, 'pandemic with lockdown': 637030, 'with lockdown and': 999290, 'lockdown and all': 499133, 'panic buying lockdown': 637797, 'buying lockdown channel4': 150671, 'coronavirus when': 207063, 'yourself from coronavirus': 1026609, 'from coronavirus when': 335026, 'coronavirus when grocery': 207065, 'he not': 385255, 'man who want': 512344, 'want to save': 966108, 'save the the': 737669, 'the the that': 869402, 'the that is': 869366, 'that is he': 844598, 'is he not': 448349, 'he not very': 385259, 'abnormal': 24589, 'bfp': 129305, 'charge abnormal': 173186, 'abnormal price': 24592, 'medicine good': 526792, 'service kenyan': 752543, 'health cabinet': 386212, 'cabinet secretary': 154996, 'secretary on': 743966, 'in tackling': 428795, 'tackling join': 831648, 'our bfp': 622199, 'bfp live': 129306, 'live event': 495798, 'event on': 285039, 'on thu': 604658, 'thu 19': 895272, 'time to charge': 897962, 'to charge abnormal': 902634, 'charge abnormal price': 173187, 'abnormal price for': 24595, 'price for medicine': 674002, 'for medicine good': 323396, 'medicine good and': 526793, 'and service kenyan': 71306, 'service kenyan health': 752544, 'kenyan health cabinet': 472971, 'health cabinet secretary': 386213, 'cabinet secretary on': 154997, 'secretary on the': 743967, 'on the role': 604339, 'role of business': 725122, 'business in tackling': 143903, 'in tackling join': 428797, 'tackling join our': 831649, 'join our bfp': 466809, 'our bfp live': 622200, 'bfp live event': 129307, 'live event on': 495802, 'event on thu': 285041, 'on thu 19': 604659, 'thu 19 march': 895273, 'azure': 106437, 'striker': 813772, 'gunvolt': 368809, 'ongoing business': 607599, 'business restriction': 144326, 'restriction and': 717202, 'closure related': 184011, 'shutdown the': 768105, 'retail version': 718835, 'of azure': 580491, 'azure striker': 106438, 'striker gunvolt': 813773, 'gunvolt striker': 368810, 'striker pack': 813775, 'for ps4': 324845, 'ps4 will': 687378, 'delayed we': 232818, 'one stay': 607091, 'the ongoing business': 862239, 'ongoing business restriction': 607600, 'business restriction and': 144327, 'restriction and store': 717211, 'and store closure': 72503, 'store closure related': 807103, 'closure related to': 184012, '19 shutdown the': 10530, 'shutdown the physical': 768106, 'the physical retail': 863711, 'physical retail version': 655449, 'retail version of': 718836, 'version of azure': 954913, 'of azure striker': 580492, 'azure striker gunvolt': 106439, 'striker gunvolt striker': 813774, 'gunvolt striker pack': 368811, 'striker pack for': 813776, 'pack for ps4': 633048, 'for ps4 will': 324846, 'ps4 will be': 687379, 'will be delayed': 992422, 'be delayed we': 114387, 'delayed we appreciate': 232819, 'we appreciate your': 970459, 'appreciate your support': 82806, 'your support and': 1026079, 'support and hope': 826360, 'and hope you': 64722, 'hope you and': 403789, 'and your loved': 76082, 'loved one stay': 504923, 'one stay safe': 607093, 'your not': 1025038, 'not glutenfree': 569667, 'glutenfree leave': 353139, 'food alone': 313100, 'alone panic': 46898, 'if your not': 415599, 'your not glutenfree': 1025040, 'not glutenfree leave': 569668, 'glutenfree leave that': 353140, 'leave that food': 484957, 'that food alone': 843900, 'food alone panic': 313101, 'alone panic shopper': 46899, 'cullinane': 220235, 'buying fueled': 150397, 'not hampering': 569770, 'hampering operation': 374623, 'the east': 853842, 'east texas': 265345, 'texas food': 839767, 'bank because': 109677, 'it buy': 456968, 'from cooperative': 334998, 'cooperative and': 203168, 'manufacturer ceo': 513438, 'ceo dennis': 169682, 'dennis cullinane': 237040, 'cullinane said': 220236, 'panic buying fueled': 637747, 'buying fueled by': 150398, 'pandemic is not': 635785, 'is not hampering': 450100, 'not hampering operation': 569771, 'hampering operation of': 374624, 'operation of the': 613237, 'of the east': 590969, 'the east texas': 853846, 'east texas food': 265346, 'texas food bank': 839768, 'food bank because': 313527, 'bank because it': 109678, 'because it buy': 119177, 'it buy food': 456969, 'buy food from': 148648, 'food from cooperative': 314600, 'from cooperative and': 334999, 'cooperative and manufacturer': 203169, 'and manufacturer ceo': 66653, 'manufacturer ceo dennis': 513439, 'ceo dennis cullinane': 169683, 'dennis cullinane said': 237041, 'caricature': 164686, 'southeast': 786830, 'fortlauderdale': 329826, 'westpalmbeach': 980710, 'delraybeachcaricatureartist': 234819, 'sterling': 799891, 'giftcaricatures': 350051, '561': 20467, '501': 20118, '8528': 22952, 'the caricature': 850427, 'caricature entertainment': 164687, 'entertainment in': 278575, 'in southeast': 428140, 'southeast florida': 786835, 'florida including': 310951, 'including miami': 432058, 'miami fortlauderdale': 530178, 'fortlauderdale westpalmbeach': 329827, 'westpalmbeach by': 980711, 'by delraybeachcaricatureartist': 152324, 'delraybeachcaricatureartist jeff': 234820, 'jeff sterling': 465017, 'sterling giftcaricatures': 799899, 'giftcaricatures available': 350052, 'your photo': 1025298, 'photo info': 655180, 'price call': 673047, 'call jeff': 155964, 'jeff 561': 464997, '561 501': 20468, '501 8528': 20119, 'after the caricature': 36291, 'the caricature entertainment': 850428, 'caricature entertainment in': 164689, 'entertainment in southeast': 278576, 'in southeast florida': 428142, 'southeast florida including': 786836, 'florida including miami': 310952, 'including miami fortlauderdale': 432059, 'miami fortlauderdale westpalmbeach': 530179, 'fortlauderdale westpalmbeach by': 329828, 'westpalmbeach by delraybeachcaricatureartist': 980712, 'by delraybeachcaricatureartist jeff': 152325, 'delraybeachcaricatureartist jeff sterling': 234821, 'jeff sterling giftcaricatures': 465019, 'sterling giftcaricatures available': 799900, 'giftcaricatures available from': 350053, 'available from your': 104402, 'from your photo': 338491, 'your photo info': 1025300, 'photo info and': 655181, 'info and price': 437417, 'and price call': 69441, 'price call jeff': 673048, 'call jeff 561': 155965, 'jeff 561 501': 464998, '561 501 8528': 20469, 'foodland': 317992, 'kamaainas': 470729, '19 senior': 10408, 'senior shopping': 750405, 'hour foodland': 405593, 'foodland farm': 317993, 'farm slap': 299179, 'slap in': 773538, 'face kamaainas': 294491, 'covid 19 senior': 213765, '19 senior shopping': 10409, 'senior shopping hour': 750407, 'shopping hour foodland': 762919, 'hour foodland farm': 405594, 'foodland farm slap': 317994, 'farm slap in': 299180, 'slap in the': 773539, 'the face kamaainas': 854804, 'just lock': 469182, 'down also': 256473, 'limit our': 492435, 'online week': 609705, 'shopping unless': 764287, 'elderly needy': 270765, 'needy or': 556688, 'or key': 615903, 'worker uk': 1008068, 'proven it': 686167, 'can follow': 158362, 'follow instruction': 312431, 'instruction both': 440541, 'just lock down': 469183, 'lock down also': 499022, 'down also limit': 256474, 'also limit our': 48480, 'limit our food': 492437, 'our food shop': 623130, 'food shop to': 316496, 'shop to online': 760950, 'to online week': 910957, 'online week and': 609706, 'week and no': 975926, 'and no in': 67619, 'no in store': 564484, 'store shopping unless': 810140, 'shopping unless you': 764288, 'you are elderly': 1017113, 'are elderly needy': 86104, 'elderly needy or': 270766, 'needy or key': 556689, 'or key worker': 615904, 'key worker uk': 473525, 'worker uk ha': 1008069, 'uk ha proven': 938435, 'ha proven it': 371563, 'proven it can': 686168, 'it can follow': 457016, 'can follow instruction': 158363, 'follow instruction both': 312432, 'instruction both in': 440542, 'both in social': 135939, 'distancing and in': 246974, 'and in panic': 65062, 'ukweli': 939074, 'mambo': 511935, 'rais': 695800, 'tujipange': 935256, 'ukweliwamambo': 939077, 'ukweli wa': 939075, 'wa mambo': 962610, 'mambo rais': 511936, 'rais uhuru': 695803, 'uhuru please': 938108, 'please set': 660470, 'set money': 753427, 'money aside': 536613, 'aside for': 95407, 'cure research': 220799, 'research it': 713780, 'possible ethiopia': 665640, 'ethiopia is': 283107, 'already beating': 47215, 'this tujipange': 890878, 'tujipange please': 935257, 'watch and': 968359, 'and retweet': 70477, 'retweet ukweliwamambo': 720094, 'ukweli wa mambo': 939076, 'wa mambo rais': 962611, 'mambo rais uhuru': 511937, 'rais uhuru please': 695804, 'uhuru please set': 938109, 'please set money': 660472, 'set money aside': 753428, 'money aside for': 536614, 'aside for coronavirus': 95409, 'for coronavirus cure': 320381, 'coronavirus cure research': 205788, 'cure research it': 220800, 'research it is': 713781, 'is possible ethiopia': 450948, 'possible ethiopia is': 665641, 'ethiopia is already': 283108, 'is already beating': 445512, 'already beating in': 47217, 'beating in this': 118622, 'in this tujipange': 430034, 'this tujipange please': 890879, 'tujipange please watch': 935258, 'please watch and': 660754, 'watch and retweet': 968360, 'and retweet ukweliwamambo': 70480, 'pix': 657139, 'pix supermarket': 657142, 'supermarket long': 821383, 'line melbourne': 493263, 'pix supermarket long': 657143, 'supermarket long line': 821384, 'long line melbourne': 501498, 'd19': 224162, 'play catch': 659122, 'catch during': 166995, 'epidemic covi': 279358, 'covi d19': 212537, 'd19 quarantine': 224182, 'quarantine comedy': 692087, 'comedy sanitizer': 187776, 'staysafe dallas': 798798, 'dallas arlington': 225116, 'you are scared': 1017224, 'are scared to': 89855, 'scared to play': 741027, 'to play catch': 911787, 'play catch during': 659123, 'catch during the': 166996, 'coronavirus epidemic covi': 205879, 'epidemic covi d19': 279359, 'covi d19 quarantine': 212541, 'd19 quarantine comedy': 224183, 'quarantine comedy sanitizer': 692088, 'comedy sanitizer stayhome': 187777, 'sanitizer stayhome staysafe': 735802, 'stayhome staysafe dallas': 798164, 'staysafe dallas arlington': 798799, 'chit': 177559, 'distancing no': 247350, 'one stand': 607080, 'stand close': 793506, 'the atm': 849014, 'atm machine': 101943, 'machine no': 507393, 'is standing': 452220, 'people chit': 647460, 'chit chatting': 177562, 'chatting everyone': 174011, 'good behavior': 356823, 'behavior good': 124045, 'good malaysian': 357365, 'malaysian hope': 511661, 'this remains': 889864, 'remains stayhome': 710061, 'stayhome fightcovid19': 798002, 'love this social': 504834, 'social distancing no': 779670, 'distancing no one': 247354, 'no one stand': 564963, 'one stand close': 607081, 'stand close to': 793508, 'at the atm': 100879, 'the atm machine': 849015, 'atm machine no': 101945, 'machine no one': 507394, 'one is standing': 606522, 'is standing in': 452223, 'standing in front': 793774, 'of the freezer': 591043, 'the freezer at': 855781, 'freezer at the': 332588, 'supermarket in group': 820906, 'in group of': 423454, 'of people chit': 587885, 'people chit chatting': 647461, 'chit chatting everyone': 177563, 'chatting everyone is': 174012, 'is in good': 448775, 'in good behavior': 423364, 'good behavior good': 356824, 'behavior good malaysian': 124046, 'good malaysian hope': 357366, 'malaysian hope this': 511662, 'hope this remains': 403725, 'this remains stayhome': 889865, 'remains stayhome fightcovid19': 710062, 'gig': 350062, 'use advice': 949014, 'advice if': 33403, 'had travel': 373755, 'or gig': 615452, 'gig cancelled': 350063, 'cancelled because': 161089, 'news you can': 560977, 'can use advice': 160086, 'use advice if': 949015, 'advice if you': 33404, 'you ve had': 1022044, 've had travel': 953240, 'had travel or': 373756, 'travel or gig': 930454, 'or gig cancelled': 615453, 'gig cancelled because': 350064, 'cancelled because the': 161091, 'because the virus': 119657, 'tangled': 834167, 'rapunzel': 697069, 'the film': 855185, 'film tangled': 305708, 'tangled the': 834173, 'the evil': 854632, 'evil step': 288458, 'step mother': 799588, 'mother keep': 543133, 'keep rapunzel': 471842, 'rapunzel locked': 697070, 'locked in': 500487, 'in tower': 430243, 'tower under': 927418, 'quarantine google': 692226, 'kingdom in': 475331, 'in tangled': 428816, 'tangled tangled': 834170, 'tangled quarantine': 834168, 'quarantine quarentinelife': 692481, 'quarentinelife staysafestayhome': 693207, 'stayathome stophoarding': 797671, 'know how in': 476442, 'how in the': 408049, 'in the film': 429199, 'the film tangled': 855188, 'film tangled the': 305709, 'tangled the evil': 834174, 'the evil step': 854635, 'evil step mother': 288459, 'step mother keep': 799589, 'mother keep rapunzel': 543134, 'keep rapunzel locked': 471843, 'rapunzel locked in': 697071, 'locked in tower': 500490, 'in tower under': 430245, 'tower under quarantine': 927419, 'under quarantine google': 940218, 'quarantine google the': 692227, 'google the name': 358194, 'of the kingdom': 591167, 'the kingdom in': 858825, 'kingdom in tangled': 475332, 'in tangled tangled': 428817, 'tangled tangled quarantine': 834171, 'tangled quarantine quarentinelife': 834169, 'quarantine quarentinelife staysafestayhome': 692482, 'quarentinelife staysafestayhome stayathome': 693208, 'staysafestayhome stayathome stophoarding': 799021, 'hometown finish': 402986, 'finish work': 307878, 'and head': 64336, 'when people in': 983862, 'my hometown finish': 548700, 'hometown finish work': 402987, 'finish work and': 307879, 'work and head': 1004779, 'and head to': 64339, 'head to the': 385833, 'withholding': 1002304, 'criminally': 216907, 'supposedly': 827382, 'by withholding': 154758, 'withholding crucial': 1002305, 'crucial information': 219457, 'week china': 976086, 'world at': 1009331, 'risk no': 723708, 'other nation': 620556, 'nation ha': 552200, 'been so': 121987, 'so criminally': 776817, 'criminally irresponsible': 216908, 'irresponsible while': 445092, 'while handling': 986900, 'handling pandemic': 376383, 'the supposedly': 868987, 'supposedly low': 827383, 'by withholding crucial': 154759, 'withholding crucial information': 1002306, 'crucial information for': 219458, 'information for week': 437832, 'for week china': 327698, 'week china ha': 976087, 'china ha put': 176696, 'ha put the': 371604, 'put the world': 690873, 'the world at': 871816, 'world at risk': 1009332, 'at risk no': 100378, 'risk no other': 723710, 'no other nation': 565016, 'other nation ha': 620558, 'nation ha been': 552201, 'ha been so': 369927, 'been so criminally': 121989, 'so criminally irresponsible': 776818, 'criminally irresponsible while': 216910, 'irresponsible while handling': 445093, 'while handling pandemic': 986901, 'handling pandemic the': 376384, 'pandemic the world': 636713, 'world is paying': 1009713, 'is paying high': 450823, 'paying high price': 645426, 'for the supposedly': 326714, 'the supposedly low': 868988, 'supposedly low price': 827384, 'low price of': 505528, 'price of chinese': 675422, 'cnp': 184788, 'payment demand': 645594, 'demand way': 236455, 'up amid': 944278, 'the cnp': 851099, 'cnp report': 184789, 'report ecommerce': 711913, 'ecommerce fraud': 266774, 'fraud payment': 331320, 'payment risk': 645719, 'risk behavior': 723408, 'behavior consumer': 123979, 'consumer digitalpayment': 197204, 'digital payment demand': 242620, 'payment demand way': 645595, 'demand way up': 236456, 'way up amid': 970141, 'up amid pandemic': 944281, 'amid pandemic the': 52578, 'pandemic the cnp': 636668, 'the cnp report': 851100, 'cnp report ecommerce': 184790, 'report ecommerce fraud': 711914, 'ecommerce fraud payment': 266775, 'fraud payment risk': 331321, 'payment risk behavior': 645720, 'risk behavior consumer': 723409, 'behavior consumer digitalpayment': 123981, 'kingston': 475365, 'chatham': 173982, 'brantford': 138185, 'team new': 835735, 'in kingston': 424516, 'kingston west': 475370, 'west and': 980450, 'and oshawa': 68275, 'oshawa we': 619712, 'only accept': 610031, 'accept credit': 27950, 'credit or': 216444, 'or debit': 614900, 'debit at': 230369, 'our point': 624376, 'sale kingston': 732329, 'kingston east': 475366, 'east chatham': 265298, 'chatham and': 173983, 'and brantford': 59153, 'brantford are': 138186, 'notice stay': 573357, 'stay smart': 797318, 'smart vapefam': 775446, '19 update from': 11663, 'update from our': 946984, 'from our team': 336804, 'our team new': 625106, 'team new store': 835736, 'new store hour': 559667, 'hour in kingston': 405688, 'in kingston west': 424517, 'kingston west and': 475371, 'west and oshawa': 980451, 'and oshawa we': 68276, 'oshawa we will': 619713, 'we will only': 973887, 'will only accept': 994324, 'only accept credit': 610032, 'accept credit or': 27952, 'credit or debit': 216445, 'or debit at': 614901, 'debit at our': 230370, 'at our point': 100029, 'our point of': 624377, 'of sale kingston': 589246, 'sale kingston east': 732330, 'kingston east chatham': 475367, 'east chatham and': 265299, 'chatham and brantford': 173984, 'and brantford are': 59154, 'brantford are closed': 138187, 'are closed until': 85374, 'further notice stay': 342114, 'notice stay safe': 573358, 'and stay smart': 72303, 'stay smart vapefam': 797319, 'teletown': 836837, 'at et': 98551, 'information teletown': 437992, 'teletown hall': 836838, 'hall government': 374332, 'government official': 360407, 'provide resource': 686454, 'today at et': 919273, 'at et ftc': 98552, 'et ftc to': 282360, 'ftc to join': 339459, 'to join aarp': 908673, 'live information teletown': 495899, 'information teletown hall': 437993, 'teletown hall government': 836839, 'hall government official': 374333, 'government official will': 360415, 'question about how': 693501, 'scam and provide': 740014, 'and provide resource': 69697, 'provide resource for': 686455, 'onus': 611700, 'stuff on': 815159, 'the onus': 862366, 'onus is': 611701, 'what otc': 981973, 'otc thing': 619779, 'because there load': 119671, 'there load of': 878725, 'load of stuff': 497284, 'of stuff on': 590333, 'stuff on supermarket': 815163, 'supermarket shelf that': 822541, 'shelf that will': 757644, 'not help with': 569933, 'help with covid': 390905, '19 the onus': 11225, 'the onus is': 862367, 'onus is on': 611702, 'is on to': 450488, 'on to know': 604743, 'know what otc': 476970, 'what otc thing': 981974, 'otc thing work': 619780, 'thing work and': 885015, 'work and what': 1004823, 'and what don': 75463, 'educate your': 268774, 'damn kid': 225382, 'be leaving': 115687, 'leaving their': 485158, 'house anyway': 406192, 'educate your damn': 268775, 'your damn kid': 1023453, 'damn kid and': 225383, 'kid and by': 473851, 'and by the': 59383, 'way they should': 969963, 'they should not': 883376, 'not be leaving': 568411, 'be leaving their': 115689, 'leaving their house': 485162, 'their house anyway': 873603, 'during be': 262471, 'supermarket during be': 820046, 'during be like': 262472, '5ofusathome': 20797, 'toiletpaper 5ofusathome': 921689, '5ofusathome emptyshelves': 20798, 'at our toiletpaper': 100037, 'our toiletpaper 5ofusathome': 625158, 'toiletpaper 5ofusathome emptyshelves': 921690, '402': 18802, 'namibia': 551740, 'coronavirus in': 206114, 'africa latest': 35106, 'latest march': 481427, 'march 23': 515185, '23 covid': 15384, 'africa soar': 35135, 'soar to': 779273, 'to 402': 899720, '402 nigeria': 18805, 'nigeria zimbabwe': 562827, 'zimbabwe record': 1027592, 'record their': 705068, 'their first': 873328, 'first coronavirus': 308595, 'death south': 230206, 'africa based': 35052, 'based mtn': 111654, 'home namibia': 401645, 'namibia move': 551741, 'move ahead': 543599, 'ahead with': 39221, 'with preparation': 1000290, '2020 summer': 14620, 'summer olympics': 817992, 'coronavirus in africa': 206115, 'in africa latest': 420088, 'africa latest march': 35107, 'latest march 23': 481428, 'march 23 covid': 515188, '23 covid 19': 15385, 'case in south': 165810, 'in south africa': 428126, 'south africa soar': 786661, 'africa soar to': 35136, 'soar to 402': 779274, 'to 402 nigeria': 899721, '402 nigeria zimbabwe': 18806, 'nigeria zimbabwe record': 562828, 'zimbabwe record their': 1027593, 'record their first': 705069, 'their first coronavirus': 873329, 'first coronavirus death': 308598, 'coronavirus death south': 205799, 'death south africa': 230207, 'south africa based': 786648, 'africa based mtn': 35053, 'based mtn cut': 111655, 'data price to': 226364, 'help people work': 390314, 'people work from': 650507, 'from home namibia': 335884, 'home namibia move': 401646, 'namibia move ahead': 551742, 'move ahead with': 543601, 'ahead with preparation': 39223, 'with preparation for': 1000291, 'the 2020 summer': 848025, '2020 summer olympics': 14621, 'naomi': 551826, 'broady': 140790, 'tennis': 837964, 'british naomi': 140544, 'naomi broady': 551827, 'broady considered': 140791, 'considered supermarket': 195333, 'income from': 432348, 'from tennis': 337563, 'tennis during': 837965, 'british naomi broady': 140545, 'naomi broady considered': 551828, 'broady considered supermarket': 140792, 'considered supermarket work': 195334, 'supermarket work due': 823972, 'due to no': 261876, 'to no income': 910624, 'no income from': 564493, 'income from tennis': 432350, 'from tennis during': 337564, 'tennis during pandemic': 837966, 'unfit': 941493, 'trump claim': 933479, 'claim low': 179763, 'big tax': 130047, 'cut this': 223590, 'this man': 888751, 'but passion': 146752, 'passion for': 643417, 'for business': 319821, 'business he': 143833, 'now say': 575727, 'he feel': 384953, 'feel bad': 302575, 'his country': 397319, 'country saudi': 211027, 'arabia this': 83944, 'is unfit': 453490, 'unfit corona': 941494, 'trump claim low': 933480, 'claim low gas': 179764, 'price are like': 672692, 'like big tax': 489911, 'big tax cut': 130048, 'tax cut this': 834958, 'cut this man': 223591, 'this man ha': 888754, 'man ha nothing': 512079, 'ha nothing but': 371382, 'nothing but passion': 572961, 'but passion for': 146753, 'passion for business': 643418, 'for business he': 319833, 'business he now': 143835, 'he now say': 385265, 'now say he': 575728, 'say he feel': 738730, 'he feel bad': 384954, 'feel bad for': 302576, 'bad for russia': 107866, 'for russia and': 325275, 'russia and for': 728427, 'and for his': 63142, 'for his country': 322301, 'his country saudi': 397321, 'country saudi arabia': 211028, 'saudi arabia this': 737219, 'arabia this man': 83945, 'this man is': 888755, 'man is unfit': 512126, 'is unfit corona': 453491, 'unfit corona virus': 941495, 'conducting': 193687, '19 around': 5215, 'around most': 93403, 'life have': 488720, 'become virtual': 120185, 'virtual am': 957714, 'am conducting': 49973, 'conducting survey': 193696, 'like few': 490232, 'minute of': 533812, 'of yours': 593539, 'yours to': 1026477, 'short form': 764620, 'covid 19 around': 212651, '19 around most': 5216, 'around most of': 93404, 'our life have': 623725, 'life have become': 488721, 'have become virtual': 379451, 'become virtual am': 120186, 'virtual am conducting': 957715, 'am conducting survey': 49974, 'conducting survey on': 193697, 'survey on online': 828918, 'shopping in india': 762973, 'india and would': 434299, 'would like few': 1011994, 'like few minute': 490233, 'few minute of': 303916, 'minute of yours': 533816, 'of yours to': 593540, 'yours to fill': 1026478, 'to fill in': 905844, 'fill in this': 305470, 'in this short': 430013, 'this short form': 890115, 'disinfection': 245904, 'maid': 508536, '69': 21516, '702': 21935, '2706': 16331, 'supersirvientas': 824321, 'on disinfection': 600343, 'disinfection and': 245905, 'cleaning cleaning': 180916, 'cleaning in': 180968, 'in lasvegas': 424607, 'lasvegas all': 480807, 'supply necessary': 825576, 'from only': 336697, 'hour maid': 405754, 'maid 69': 508537, '69 do': 21523, 'than hour': 840755, 'hour call': 405478, 'information 702': 437695, '702 800': 21940, '800 2706': 22660, '2706 supersirvientas': 16332, 'lowest price on': 506213, 'price on disinfection': 675667, 'on disinfection and': 600344, 'disinfection and cleaning': 245906, 'and cleaning cleaning': 59946, 'cleaning cleaning in': 180917, 'cleaning in lasvegas': 180969, 'in lasvegas all': 424608, 'lasvegas all the': 480808, 'all the supply': 44936, 'the supply necessary': 868953, 'supply necessary to': 825577, 'necessary to end': 554116, 'to end the': 905086, 'end the from': 275973, 'the from only': 855833, 'from only hour': 336698, 'only hour maid': 610615, 'hour maid 69': 405755, 'maid 69 do': 508538, '69 do you': 21524, 'you need more': 1020016, 'more than hour': 540630, 'than hour call': 840756, 'hour call for': 405479, 'more information 702': 539573, 'information 702 800': 437696, '702 800 2706': 21941, '800 2706 supersirvientas': 22661, 'anglo': 76436, 'saxon': 738355, 'shocked me': 759575, 'thread wa': 893616, 'learn that': 484063, 'korea doesn': 477465, 'doesn even': 251770, 'have lockdown': 381361, 'still take': 801264, 'more seriously': 540362, 'seriously than': 751745, 'than anglo': 840340, 'anglo saxon': 76441, 'saxon government': 738356, 'government during': 360051, 'france we': 331052, 'we probably': 972751, 'all caught': 42320, 'what shocked me': 982171, 'shocked me in': 759576, 'me in this': 522980, 'in this thread': 430025, 'this thread wa': 890593, 'thread wa to': 893617, 'wa to learn': 963521, 'to learn that': 909137, 'learn that south': 484064, 'that south korea': 846422, 'south korea doesn': 786739, 'korea doesn even': 477466, 'doesn even have': 251773, 'even have lockdown': 284169, 'have lockdown but': 381362, 'but still take': 147181, 'still take the': 801267, 'take the crisis': 832642, 'the crisis more': 852411, 'crisis more seriously': 217730, 'more seriously than': 540365, 'seriously than anglo': 751746, 'than anglo saxon': 840342, 'anglo saxon government': 76442, 'saxon government during': 738357, 'government during this': 360052, 'this time in': 890652, 'time in france': 896990, 'in france we': 423090, 'france we probably': 331053, 'we probably all': 972752, 'probably all caught': 679199, 'all caught covid': 42321, 'dawnbilbrough': 227060, 'p7ft9ham7i': 632825, 'nurse urge': 577530, 'urge public': 948214, 'nh dawnbilbrough': 561932, 'dawnbilbrough nhsheroes': 227061, 'nhsheroes stockmarket': 562239, 'stockmarket socialdistanacing': 803670, 'socialdistanacing p7ft9ham7i': 780085, 'p7ft9ham7i via': 632826, 'tearful nurse urge': 835989, 'nurse urge public': 577532, 'urge public to': 948215, 'buying food after': 150299, 'food after 48': 313037, 'hour shift nh': 405918, 'shift nh dawnbilbrough': 758364, 'nh dawnbilbrough nhsheroes': 561933, 'dawnbilbrough nhsheroes stockmarket': 227062, 'nhsheroes stockmarket socialdistanacing': 562240, 'stockmarket socialdistanacing p7ft9ham7i': 803671, 'socialdistanacing p7ft9ham7i via': 780086, 'minishops': 533317, 'mpesa': 544312, 'whatsup': 982933, 'uhurumustgo': 938114, 'yvonne': 1027135, 'alai': 40641, 'mbagathi': 522048, 'sale system': 732558, 'system po': 831290, 'po software': 662136, 'software for': 781529, 'shop hotel': 760292, 'hotel chemist': 405130, 'chemist minishops': 175433, 'minishops supermarket': 533318, 'with inventory': 999030, 'stock control': 802017, 'control real': 202120, 'time mpesa': 897231, 'mpesa 15': 544313, '00 whatsup': 595, 'whatsup uhurumustgo': 982934, 'uhurumustgo yvonne': 938115, 'yvonne robert': 1027138, 'robert alai': 724696, 'alai mbagathi': 40642, 'mbagathi mutahi': 522049, 'of sale system': 589248, 'sale system po': 732559, 'system po software': 831291, 'po software for': 662137, 'software for shop': 781530, 'for shop hotel': 325564, 'shop hotel chemist': 760293, 'hotel chemist minishops': 405131, 'chemist minishops supermarket': 175434, 'minishops supermarket with': 533319, 'supermarket with inventory': 823927, 'with inventory stock': 999032, 'inventory stock control': 443714, 'stock control real': 802019, 'control real time': 202121, 'real time mpesa': 701411, 'time mpesa 15': 897232, 'mpesa 15 00': 544314, '15 00 whatsup': 3636, '00 whatsup uhurumustgo': 596, 'whatsup uhurumustgo yvonne': 982935, 'uhurumustgo yvonne robert': 938116, 'yvonne robert alai': 1027139, 'robert alai mbagathi': 724697, 'alai mbagathi mutahi': 40643, 'mbagathi mutahi kagwe': 522050, 'hat': 378840, 'other khan': 620462, 'khan ha': 473708, 'his hometown': 397514, 'hometown by': 402982, 'them hat': 875818, 'hat off': 378850, 'off khan': 593942, 'khan 19': 473702, 'read all': 700264, 'story at': 811911, 'ever we need': 285592, 'to support each': 915923, 'each other khan': 264189, 'other khan ha': 620463, 'khan ha been': 473709, 'ha been supporting': 369944, 'supporting people in': 827176, 'people in his': 648381, 'in his hometown': 423729, 'his hometown by': 397515, 'hometown by shopping': 402983, 'online for them': 608242, 'for them hat': 326902, 'them hat off': 875819, 'hat off khan': 378851, 'off khan 19': 593943, 'khan 19 read': 473703, '19 read all': 9972, 'read all the': 700266, 'all the story': 44928, 'the story at': 868171, 'knn': 476131, 'knn report': 476132, 'knn report on': 476133, 'report on toiletpaper': 712155, 'on toiletpaper shortage': 604793, 'never expected': 557979, 'never expected to': 557980, 'expected to wait': 291011, 'another reminder': 77798, 'reminder that': 710585, 'another reminder that': 77799, 'reminder that are': 710587, 'that are the': 842827, 'shelved': 758046, 'yesterday my': 1015809, 'friend wa': 333872, 'empty shelved': 275118, 'shelved grocery': 758047, 'she met': 756222, 'met young': 529608, 'tear because': 835936, 'he could': 384853, 'find formula': 306916, 'formula for': 329705, 'his baby': 397218, 'the necessity': 861383, 'necessity hoarder': 554223, 'hoarder had': 399037, 'had bought': 372932, 'all people': 43937, 'hoarding enough': 399278, 'enough is': 277492, 'enough coronacrisis': 277356, 'yesterday my friend': 1015810, 'my friend wa': 548456, 'friend wa at': 333873, 'wa at the': 961608, 'at the empty': 100934, 'the empty shelved': 854289, 'empty shelved grocery': 275119, 'shelved grocery store': 758048, 'store where she': 811262, 'where she met': 985168, 'she met young': 756223, 'met young man': 529609, 'young man who': 1022620, 'man who wa': 512343, 'who wa in': 989909, 'in tear because': 428837, 'tear because he': 835937, 'because he could': 119113, 'he could not': 384860, 'not find formula': 569423, 'find formula for': 306918, 'formula for his': 329706, 'for his baby': 322295, 'his baby the': 397219, 'baby the necessity': 106713, 'the necessity hoarder': 861384, 'necessity hoarder had': 554224, 'hoarder had bought': 399038, 'had bought it': 372934, 'bought it all': 136609, 'it all people': 456368, 'all people stop': 43942, 'stop hoarding enough': 804726, 'hoarding enough is': 399279, 'enough is enough': 277494, 'is enough coronacrisis': 447510, 'identify rapid': 413364, 'rapid change': 696900, 'behind why': 124753, 'more complicated': 538847, 'complicated will': 192470, '19 have': 7444, 'easy to identify': 265783, 'to identify rapid': 908088, 'identify rapid change': 413365, 'rapid change in': 696901, 'in consumer shopping': 421720, 'shopping behavior but': 762198, 'behavior but the': 123946, 'but the psychology': 147389, 'psychology behind why': 687552, 'behind why they': 124754, 'why they buy': 991451, 'they buy is': 881590, 'buy is bit': 148835, 'is bit more': 446190, 'bit more complicated': 131619, 'more complicated will': 538848, 'complicated will the': 192471, 'will the fear': 995139, 'and anxiety brought': 58199, 'covid 19 have': 213189, '19 have lasting': 7449, 'touristy': 927048, 'belongs': 126522, 'surrendered': 828689, 'most touristy': 542822, 'touristy country': 927049, 'most infected': 542447, 'it belongs': 456838, 'belongs to': 126523, 'eu but': 283205, 'ha surrendered': 372127, 'surrendered to': 828690, 'fate hopefully': 300264, 'hopefully german': 403853, 'german dutch': 346225, 'dutch etc': 263501, 'future and': 342251, 'beach to': 118243, 'get drunk': 346915, 'drunk consumer': 261217, 'the most touristy': 861049, 'most touristy country': 542823, 'touristy country in': 927050, 'world for the': 1009565, 'time in many': 896998, 'in many year': 425066, 'many year is': 514905, 'year is one': 1014670, 'the most infected': 861001, 'most infected with': 542448, '19 it belongs': 8125, 'it belongs to': 456839, 'belongs to the': 126527, 'to the eu': 916681, 'the eu but': 854554, 'eu but ha': 283206, 'but ha surrendered': 145841, 'ha surrendered to': 372128, 'surrendered to it': 828691, 'to it fate': 908578, 'it fate hopefully': 457962, 'fate hopefully german': 300265, 'hopefully german dutch': 403854, 'german dutch etc': 346226, 'dutch etc will': 263502, 'etc will stay': 282895, 'will stay at': 994959, 'the future and': 856066, 'future and not': 342253, 'and not come': 67725, 'the beach to': 849391, 'beach to get': 118244, 'to get drunk': 906465, 'get drunk consumer': 346916, 'drunk consumer commission': 261218, 'folsom': 312978, 'cupcakedecorating': 220512, 'guy do': 368980, 'please my': 660235, 'sister spotted': 771787, 'spotted these': 790213, 'in folsom': 422959, 'folsom stayathome': 312981, 'saferathome alonetogether': 730402, 'alonetogether toiletpaper': 46964, 'toiletpaper cupcakedecorating': 921904, 'cupcakedecorating cupcake': 220513, 'can you guy': 160307, 'you guy do': 1018957, 'guy do this': 368982, 'do this at': 250341, 'this at all': 886447, 'at all your': 97924, 'your store please': 1025985, 'store please my': 809589, 'please my sister': 660236, 'my sister spotted': 550117, 'sister spotted these': 771788, 'spotted these in': 790214, 'these in folsom': 880156, 'in folsom stayathome': 422961, 'folsom stayathome saferathome': 312982, 'stayathome saferathome alonetogether': 797600, 'saferathome alonetogether toiletpaper': 730403, 'alonetogether toiletpaper cupcakedecorating': 46965, 'toiletpaper cupcakedecorating cupcake': 921905, 'wireless': 996565, 'best solution': 127905, 'this wireless': 891450, 'wireless service': 996579, 'provider have': 686730, 'their retail': 874582, 'faced with the': 295050, 'with the threat': 1001517, 'threat of the': 893703, 'pandemic in the': 635709, 'the the best': 869372, 'the best solution': 849552, 'best solution for': 127906, 'solution for everyone': 782025, 'for everyone is': 321217, 'everyone is to': 287119, 'is to stay': 453249, 'stay home in': 796975, 'home in line': 401417, 'line with this': 493589, 'with this wireless': 1001739, 'this wireless service': 891452, 'wireless service provider': 996580, 'service provider have': 752727, 'provider have announced': 686731, 'they will temporarily': 883896, 'will temporarily close': 995105, 'temporarily close their': 837455, 'close their retail': 182854, 'their retail store': 874584, 'retail store to': 718716, 'battered': 112741, 'president said': 670893, 'he would': 385693, 'would impose': 1011944, 'impose tariff': 419270, 'tariff on': 834609, 'oil import': 596863, 'sector if': 744223, 'if necessary': 414443, 'necessary showing': 554076, 'showing support': 767507, 'industry battered': 435682, 'battered by': 112742, 'by rock': 153833, 'president said that': 670897, 'said that he': 731401, 'that he would': 844274, 'he would impose': 385697, 'would impose tariff': 1011945, 'impose tariff on': 419271, 'tariff on oil': 834613, 'on oil import': 602491, 'oil import to': 596865, 'import to protect': 418681, 'protect the energy': 684970, 'energy sector if': 276580, 'sector if necessary': 744224, 'if necessary showing': 414448, 'necessary showing support': 554077, 'showing support for': 767508, 'the industry battered': 858164, 'industry battered by': 435683, 'battered by rock': 112745, 'by rock bottom': 153834, 'bottom price amid': 136433, 'is reassuring': 451335, 'reassuring article': 703227, 'one finding': 606293, 'finding is': 307489, 'true you': 933230, 'stockpile there': 803804, 'isn food': 454509, 'or paper': 616496, 'shortage food': 764955, 'food commonsense': 313981, 'commonsense store': 189507, 'are restocking': 89645, 'restocking so': 717021, 'so should': 778204, 'up abc': 944212, 'news via': 560936, 'this is reassuring': 888376, 'is reassuring article': 451336, 'reassuring article and': 703228, 'article and one': 94254, 'and one finding': 68087, 'one finding is': 606294, 'finding is true': 307490, 'is true you': 453375, 'true you don': 933231, 'have to stockpile': 383310, 'to stockpile there': 915483, 'stockpile there isn': 803805, 'there isn food': 878666, 'isn food or': 454510, 'food or paper': 315667, 'or paper shortage': 616498, 'paper shortage food': 640773, 'shortage food commonsense': 764956, 'food commonsense store': 313982, 'commonsense store are': 189508, 'store are restocking': 806516, 'are restocking so': 89649, 'restocking so should': 717023, 'so should you': 778206, 'should you stock': 766682, 'stock up abc': 803049, 'up abc news': 944213, 'abc news via': 24267, 'cheap offer': 174152, 'offer will': 594889, 'you essay': 1018437, 'essay monthly': 280709, 'monthly annual': 538158, 'annual and': 77383, 'just send': 469756, 'send private': 749937, 'message bestiptv': 529274, 'hotmovies cheap': 405290, 'cheap instant': 174128, 'instant setup': 440117, 'amazing cheap offer': 50661, 'cheap offer will': 174153, 'offer will help': 594890, 'will help you': 993739, 'help you essay': 390968, 'you essay monthly': 1018438, 'essay monthly annual': 280710, 'monthly annual and': 538159, 'annual and reasonable': 77384, 'and reasonable price': 70022, 'reasonable price subscription': 703129, 'subscription just send': 815897, 'just send private': 469761, 'send private message': 749938, 'private message bestiptv': 678952, 'message bestiptv iptv': 529275, 'cinema hotmovies cheap': 178540, 'hotmovies cheap instant': 405291, 'cheap instant setup': 174129, 'sanctioned': 733646, 'revelation': 720359, 'onu': 611695, 'been financially': 121146, 'financially sanctioned': 306682, 'sanctioned and': 733647, 'and want': 75165, 'an obligation': 56536, 'to submit': 915712, 'submit to': 815801, 'to revelation': 913488, 'revelation 13': 720360, '13 17': 3161, '17 and': 4334, 'devil in': 239959, 'lift economic': 489438, 'sanction onu': 733634, 'onu peace': 611696, 'all country that': 42478, 'country that have': 211115, 'have been financially': 379540, 'been financially sanctioned': 121149, 'financially sanctioned and': 306683, 'sanctioned and want': 733648, 'and want to': 75167, 'medicine and food': 526714, 'and food to': 63101, 'food to deal': 317243, 'virus have an': 958263, 'have an obligation': 379263, 'an obligation to': 56538, 'obligation to submit': 578468, 'to submit to': 915714, 'submit to revelation': 815802, 'to revelation 13': 913489, 'revelation 13 17': 720361, '13 17 and': 3162, '17 and obey': 4336, 'and obey the': 67922, 'obey the devil': 578388, 'the devil in': 853231, 'devil in order': 239962, 'order for the': 618246, 'for the to': 326734, 'the to lift': 869684, 'to lift economic': 909261, 'lift economic sanction': 489439, 'economic sanction onu': 267264, 'sanction onu peace': 733635, 'delivery could': 233830, 'could take': 209744, 'take six': 832585, 'six week': 772715, 'uk supermarket delivery': 938761, 'supermarket delivery could': 819918, 'delivery could take': 233832, 'could take six': 209752, 'take six week': 832586, 'six week 19': 772716, 'week 19 corona': 975795, 'discriminate': 244786, 'handshake': 376722, 'fwaa': 342574, 'real racist': 701331, 'racist trump': 695330, 'trump dear': 933505, 'dear america': 229739, 'america how': 51554, 'get here': 347220, 'here 19': 392645, 'isn racist': 454635, 'racist disease': 695312, 'disease it': 245166, 'of doesn': 582761, 'doesn discriminate': 251750, 'discriminate meanwhile': 244796, 'meanwhile uganda': 525048, 'uganda is': 937974, 'still free': 800544, 'from wash': 338295, 'hand stock': 375803, 'avoid handshake': 105139, 'handshake don': 376727, 'don sneeze': 253916, 'sneeze fwaa': 776239, 'when is real': 983619, 'is real racist': 451278, 'real racist trump': 701332, 'racist trump dear': 695331, 'trump dear america': 933506, 'dear america how': 229740, 'america how did': 51555, 'how did you': 407692, 'did you get': 240928, 'you get here': 1018776, 'get here 19': 347221, 'here 19 isn': 392649, '19 isn racist': 8094, 'isn racist disease': 454636, 'racist disease it': 695313, 'disease it for': 245168, 'it for all': 458069, 'all of doesn': 43686, 'of doesn discriminate': 582762, 'doesn discriminate meanwhile': 251753, 'discriminate meanwhile uganda': 244797, 'meanwhile uganda is': 525049, 'uganda is still': 937975, 'is still free': 452278, 'still free from': 800545, 'free from wash': 331865, 'from wash your': 338296, 'your hand stock': 1024227, 'hand stock up': 375804, 'up food avoid': 944877, 'food avoid handshake': 313485, 'avoid handshake don': 105141, 'handshake don sneeze': 376728, 'don sneeze fwaa': 253917, 'cohabitants': 185584, 'magic': 508380, 'magichour': 508402, 'beatboredom': 118589, 'shopping prevents': 763672, 'prevents boredom': 671930, 'boredom in': 135408, 'follow keep': 312437, 'and cohabitants': 60055, 'cohabitants entertained': 185585, 'entertained magic': 278530, 'magic magichour': 508385, 'magichour beatboredom': 508403, 'beatboredom shoplocal': 118590, 'online shopping prevents': 609232, 'shopping prevents boredom': 763673, 'prevents boredom in': 671931, 'boredom in the': 135409, 'week to follow': 977079, 'to follow keep': 906052, 'follow keep your': 312438, 'your kid and': 1024550, 'kid and cohabitants': 473852, 'and cohabitants entertained': 60056, 'cohabitants entertained magic': 185586, 'entertained magic magichour': 278531, 'magic magichour beatboredom': 508386, 'magichour beatboredom shoplocal': 508404, 'familiar': 297526, 'bavis': 112898, 'day familiar': 227593, 'familiar place': 297533, 'place the': 657719, 'look very': 502654, 'different bavis': 241907, 'bavis ha': 112899, 'these day familiar': 879871, 'day familiar place': 227594, 'familiar place the': 297534, 'place the grocery': 657723, 'store look very': 808823, 'look very different': 502655, 'very different bavis': 955109, 'different bavis ha': 241908, 'bavis ha this': 112900, 'ha this guide': 372260, 'guide for staying': 368324, 'for staying safe': 325891, 'staying safe on': 798695, 'safe on your': 729850, 'on your next': 605484, 'daily news': 224721, 'news grocery': 560485, 'store exec': 807674, 'exec please': 289829, 'shopping opinion': 763525, 'daily news grocery': 224722, 'news grocery store': 560487, 'grocery store exec': 365384, 'store exec please': 807675, 'exec please stop': 289830, 'stop panic shopping': 804887, 'panic shopping opinion': 638581, 'these policy': 880498, 'policy have': 663419, 'delayed necessary': 232790, 'debt they': 230577, 'also appear': 47864, 'delayed effective': 232780, 'etc just these': 282634, 'just these policy': 470029, 'these policy have': 880499, 'policy have delayed': 663420, 'have delayed necessary': 380221, 'delayed necessary response': 232791, 'consumer debt they': 197090, 'debt they also': 230578, 'they also appear': 881141, 'also appear to': 47865, 'have delayed effective': 380220, 'delayed effective containment': 232781, 'to because': 901663, 'paper stophoarding': 640840, 'stophoarding quaratinelife': 805451, 'out to because': 627624, 'to because we': 901667, 'because we need': 119812, 'we need toilet': 972563, 'toilet paper stophoarding': 921473, 'paper stophoarding quaratinelife': 640841, '144': 3576, '1425': 3567, 'nielsen on': 562651, 'behaviour hand': 124439, 'sanitizer sale': 735676, 'sale jump': 732322, 'jump 53': 467842, '53 in': 20297, 'feb jump': 301648, 'jump 144': 467834, '144 upto': 3577, 'upto mid': 947932, 'march jump': 515403, 'jump 1425': 467832, '1425 in': 3568, 'online channel': 608002, 'channel in': 172890, 'march feb': 515359, 'feb also': 301631, 'huge jump': 410077, 'in branded': 420948, 'branded and': 138090, 'and processed': 69539, 'processed packaged': 679998, 'packaged snack': 633504, 'snack soft': 776031, 'drink and': 258797, 'and biscuit': 58982, 'nielsen on consumer': 562652, 'consumer behaviour hand': 196575, 'behaviour hand sanitizer': 124440, 'hand sanitizer sale': 375575, 'sanitizer sale jump': 735677, 'sale jump 53': 732324, 'jump 53 in': 467843, '53 in feb': 20298, 'in feb jump': 422828, 'feb jump 144': 301649, 'jump 144 upto': 467835, '144 upto mid': 3578, 'upto mid march': 947933, 'mid march jump': 530575, 'march jump 1425': 515404, 'jump 1425 in': 467833, '1425 in online': 3569, 'in online channel': 426161, 'online channel in': 608003, 'channel in march': 172892, 'in march feb': 425101, 'march feb also': 515360, 'feb also huge': 301632, 'also huge jump': 48381, 'huge jump in': 410078, 'jump in branded': 467861, 'in branded and': 420949, 'branded and processed': 138091, 'and processed packaged': 69541, 'processed packaged snack': 679999, 'packaged snack soft': 633505, 'snack soft drink': 776032, 'soft drink and': 781468, 'drink and biscuit': 258798, 'xijinping': 1013847, 'whats up': 982849, 'china xijinping': 177080, 'xijinping now': 1013852, 'now wearing': 576363, 'mask again': 518278, 'again food': 36990, 'whats up with': 982850, 'up with china': 946622, 'with china xijinping': 997635, 'china xijinping now': 177081, 'xijinping now wearing': 1013853, 'now wearing mask': 576364, 'wearing mask again': 974679, 'mask again food': 518279, 'again food panic': 36991, 'ammex': 52886, 'buy glove': 148737, 'spread because': 790450, 'of lockout': 585969, 'lockout on': 500532, 'on ammex': 599303, 'ammex non': 52887, 'non sterile': 566500, 'sterile glove': 799843, 'glove need': 352800, 'fix this': 309757, 'die plea': 241443, 'refusing to help': 707093, 'store can buy': 806850, 'can buy glove': 157823, 'buy glove to': 148738, 'glove to help': 352971, 'the spread because': 867617, 'spread because of': 790451, 'because of lockout': 119367, 'of lockout on': 585970, 'lockout on ammex': 500533, 'on ammex non': 599304, 'ammex non sterile': 52888, 'non sterile glove': 566501, 'sterile glove need': 799844, 'glove need to': 352801, 'to fix this': 905994, 'fix this or': 309761, 'this or people': 889286, 'or people will': 616543, 'will die plea': 993188, 'boff': 133939, 'saddos': 729311, 'day boff': 227381, 'boff therefore': 133940, 'therefore joined': 879447, 'joined the': 466952, 'the saddos': 866124, 'saddos st': 729312, 'st 30': 791679, 'tesco panic': 838778, 'panic panicbuying': 638396, 'panicbuying food': 638942, 'basic uk': 112091, 'uk tesco': 938797, 'the time day': 869584, 'time day boff': 896536, 'day boff therefore': 227382, 'boff therefore joined': 133941, 'therefore joined the': 879448, 'joined the saddos': 466956, 'the saddos st': 866125, 'saddos st 30': 729313, 'st 30 am': 791680, '30 am in': 16955, 'am in the': 50143, 'the queue for': 865039, 'queue for tesco': 693931, 'for tesco panic': 326219, 'tesco panic panicbuying': 838779, 'panic panicbuying food': 638397, 'panicbuying food basic': 638943, 'food basic uk': 313685, 'basic uk tesco': 112092, 'uk tesco extra': 938798, 'distinct': 247860, 'ignorance and': 415742, 'even state': 284605, 'controlled rationing': 202251, 'rationing of': 697849, 'supermarket product': 822070, 'product distinct': 681124, 'distinct possibility': 247864, 'possibility lockdownuknow': 665537, 'the ignorance and': 857861, 'ignorance and selfishness': 415745, 'selfishness of some': 748370, 'of some people': 589902, 'some people is': 783522, 'people is making': 648520, 'is making an': 449536, 'making an enforced': 510955, 'enforced lockdown and': 276712, 'lockdown and even': 499140, 'and even state': 62345, 'even state controlled': 284606, 'state controlled rationing': 795486, 'controlled rationing of': 202252, 'rationing of some': 697852, 'of some supermarket': 589911, 'some supermarket product': 784009, 'supermarket product distinct': 822073, 'product distinct possibility': 681125, 'distinct possibility lockdownuknow': 247865, 'possibility lockdownuknow 19': 665538, 'fraudalert': 331380, 'adminstration': 32539, 'fraudalert urgent': 331384, 'urgent advice': 948315, 'drug adminstration': 260858, 'adminstration fda': 32540, 'fraudalert urgent advice': 331385, 'urgent advice to': 948316, 'advice to consumer': 33528, 'to consumer from': 903302, 'consumer from the': 197562, 'and drug adminstration': 61777, 'drug adminstration fda': 260859, 'adminstration fda beware': 32541, 'reshape': 714180, 'closing in': 183656, 'week mark': 976506, 'mark since': 515822, 'since president': 770792, 'trump announced': 933413, 'announced state': 77040, 'emergency due': 272675, 'already sign': 47662, 'may reshape': 521457, 'reshape the': 714189, 'consumer landscape': 197989, 'landscape forever': 479400, 'are closing in': 85393, 'closing in on': 183658, 'on the two': 604416, 'the two week': 870160, 'two week mark': 937339, 'week mark since': 976507, 'mark since president': 515823, 'since president trump': 770793, 'president trump announced': 670932, 'trump announced state': 933414, 'announced state of': 77041, 'state of national': 795812, 'of national emergency': 586863, 'national emergency due': 552489, 'emergency due to': 272676, 'pandemic here in': 635622, 'the and there': 848726, 'there are already': 878062, 'are already sign': 84424, 'already sign that': 47663, 'sign that this': 769226, 'this may reshape': 888795, 'may reshape the': 521458, 'reshape the consumer': 714190, 'the consumer landscape': 851556, 'consumer landscape forever': 197991, 'kitted': 475821, 'trust no': 934293, 'others if': 621466, 'be fully': 114980, 'fully kitted': 341061, 'kitted with': 475822, 'with facemask': 998356, 'facemask surgical': 295108, 'surgical medical': 828377, 'in anyone': 420442, 'anyone saying': 80508, 'saying coronavirus': 739577, 'nigeria operation': 562779, 'operation kill': 613223, 'kill corona': 474370, 'trust no one': 934294, 'no one stay': 564964, 'one stay home': 607092, 'home to protect': 402336, 'and others if': 68448, 'others if you': 621467, 'go out please': 353976, 'out please be': 627051, 'please be fully': 659703, 'be fully kitted': 114981, 'fully kitted with': 341062, 'kitted with facemask': 475823, 'with facemask surgical': 998358, 'facemask surgical medical': 295109, 'surgical medical glove': 828378, 'medical glove and': 526189, 'glove and sanitizer': 352578, 'and sanitizer do': 70867, 'not believe in': 568555, 'believe in anyone': 126283, 'in anyone saying': 420443, 'anyone saying coronavirus': 80509, 'saying coronavirus is': 739578, 'coronavirus is not': 206168, 'not in nigeria': 570101, 'in nigeria operation': 425880, 'nigeria operation kill': 562780, 'operation kill corona': 613224, 'wa left': 962518, 'all that wa': 44649, 'that wa left': 847295, 'wa left in': 962522, 'dairy aisle at': 224947, 'ethanol price': 283000, 'hit low': 398306, 'and crude': 60768, 'price lead': 675028, 'to historic': 907827, 'historic crash': 397945, 'in ethanol': 422610, 'ethanol price hit': 283002, 'price hit low': 674559, 'hit low and': 398307, 'low and crude': 505123, 'and crude price': 60770, 'crude price lead': 219593, 'price lead to': 675029, 'lead to historic': 483350, 'to historic crash': 907828, 'historic crash in': 397946, 'crash in ethanol': 214992, 'exploiting coronavirus': 292418, 'are exploiting coronavirus': 86365, 'exploiting coronavirus panic': 292419, 'stampeding': 793451, 'metrouk': 529966, 'indiavscorona': 434960, 'the stampeding': 867719, 'stampeding video': 793452, 'for grabbing': 321976, 'grabbing toilet': 361594, 'me talk': 523580, 'talk some': 833846, 'some sense': 783825, 'sense into': 750535, 'into you': 443310, 'you lot': 1019720, 'lot please': 504346, 'please embrace': 659958, 'embrace the': 272489, 'indian style': 434887, 'style use': 815635, 'use water': 949793, 'water instead': 969036, 'instead metrouk': 440222, 'metrouk guardian': 529967, 'guardian bbcnews': 367890, 'bbcnews workingfromhome': 113143, 'workingfromhome hygiene': 1009098, 'hygiene indiavscorona': 412109, 'at the stampeding': 101105, 'the stampeding video': 867720, 'stampeding video for': 793453, 'video for grabbing': 956730, 'for grabbing toilet': 321977, 'grabbing toilet paper': 361595, 'paper supermarket let': 640849, 'supermarket let me': 821296, 'let me talk': 486914, 'me talk some': 523581, 'talk some sense': 833847, 'some sense into': 783826, 'sense into you': 750536, 'into you lot': 443312, 'you lot please': 1019724, 'lot please embrace': 504347, 'please embrace the': 659959, 'embrace the indian': 272491, 'the indian style': 858127, 'indian style use': 434888, 'style use water': 815636, 'use water instead': 949794, 'water instead metrouk': 969037, 'instead metrouk guardian': 440223, 'metrouk guardian bbcnews': 529968, 'guardian bbcnews workingfromhome': 367891, 'bbcnews workingfromhome hygiene': 113144, 'workingfromhome hygiene indiavscorona': 1009099, 'being stoppanicbuying': 125856, 'stoppanicbuying australia': 805547, 'selfishness of the': 748371, 'the human being': 857712, 'human being stoppanicbuying': 410444, 'being stoppanicbuying australia': 125857, 'how going': 407921, 'an anxious': 55343, 'anxious experience': 78850, 'experience now': 291429, 'everything sold': 288003, 'out sometimes': 627225, 'sometimes long': 785217, 'you forget': 1018691, 'forget what': 329347, 'you came': 1017607, 'for anxiety': 319391, 'crazy how going': 215321, 'how going to': 407923, 'store is such': 808536, 'such an anxious': 816321, 'an anxious experience': 55345, 'anxious experience now': 78851, 'experience now you': 291432, 'now you do': 576505, 'to get close': 906443, 'to other people': 911117, 'other people they': 620689, 'people they do': 649818, 'to you everything': 918899, 'you everything sold': 1018472, 'everything sold out': 288004, 'sold out sometimes': 781749, 'out sometimes long': 627226, 'sometimes long line': 785218, 'long line you': 501511, 'line you forget': 493620, 'you forget what': 1018693, 'forget what you': 329348, 'what you came': 982666, 'you came in': 1017608, 'store for anxiety': 807787, 'rightfully': 722447, 'store rant': 809739, 'rant store': 696855, 'are rightfully': 89697, 'rightfully limiting': 722450, 'time grateful': 896857, 'asshole terrified': 96568, 'themselves grow': 876820, 'grow the': 367070, 'hell up': 389082, 'up rant': 945884, 'rant over': 696851, 'grocery store rant': 365700, 'store rant store': 809740, 'rant store are': 696856, 'store are rightfully': 806517, 'are rightfully limiting': 89699, 'rightfully limiting the': 722451, 'one time grateful': 607255, 'time grateful just': 896858, 'needy asshole terrified': 556672, 'asshole terrified of': 96569, 'over themselves grow': 630805, 'themselves grow the': 876821, 'grow the hell': 367073, 'the hell up': 857252, 'hell up rant': 389083, 'up rant over': 945885, 'rant over stayhomesavelives': 696852, 'presenter': 670666, 'sup': 818460, 'great that': 363036, 'you offer': 1020180, 'reason and': 702865, 'and convenience': 60523, 'convenience we': 202370, 'truly grateful': 933305, 'choosing saint': 177938, 'saint to': 731825, 'your presenter': 1025384, 'presenter and': 670667, 'giving him': 351311, 'the invaluable': 858412, 'invaluable opportunity': 443587, 'grow thank': 367066, 'you sup': 1021472, 'it great that': 458339, 'great that you': 363039, 'that you offer': 847735, 'you offer online': 1020182, 'pandemic for safety': 635451, 'safety reason and': 730711, 'reason and convenience': 702867, 'and convenience we': 60526, 'convenience we are': 202371, 'are truly grateful': 91217, 'truly grateful to': 933307, 'grateful to you': 362333, 'you for choosing': 1018629, 'for choosing saint': 320075, 'choosing saint to': 177939, 'saint to be': 731826, 'to be your': 901644, 'be your presenter': 118178, 'your presenter and': 1025385, 'presenter and giving': 670668, 'and giving him': 63678, 'giving him the': 351313, 'him the invaluable': 396732, 'the invaluable opportunity': 858413, 'invaluable opportunity to': 443588, 'opportunity to grow': 613706, 'to grow thank': 907039, 'grow thank you': 367067, 'thank you sup': 841820, '5ft10': 20650, 'curly': 221000, 'pride': 678013, 'appearance': 82132, 'yesterday there': 1015889, 'wa man': 962612, 'man there': 512271, 'there about': 877953, 'about 55': 24730, '55 5ft10': 20358, '5ft10 average': 20651, 'average build': 104813, 'build and': 141949, 'with curly': 997882, 'curly steel': 221001, 'steel grey': 799330, 'grey hair': 363876, 'hair his': 373988, 'his clothes': 397290, 'clothes that': 184214, 'lot longer': 504092, '19 since': 10555, 'since he': 770643, 'he last': 385180, 'last took': 480591, 'took any': 925208, 'any actual': 78900, 'actual pride': 30692, 'pride in': 678018, 'his appearance': 397199, 'appearance that': 82137, 'wa clean': 961818, 'supermarket yesterday there': 824175, 'yesterday there wa': 1015890, 'there wa man': 879249, 'wa man there': 962613, 'man there about': 512272, 'there about 55': 877954, 'about 55 5ft10': 24731, '55 5ft10 average': 20359, '5ft10 average build': 20652, 'average build and': 104814, 'build and with': 141950, 'and with curly': 75764, 'with curly steel': 997883, 'curly steel grey': 221002, 'steel grey hair': 799331, 'grey hair his': 363877, 'hair his clothes': 373989, 'his clothes that': 397291, 'clothes that said': 184216, 'that said it': 846100, 'said it had': 731155, 'it had been': 458427, 'had been lot': 372899, 'been lot longer': 121492, 'lot longer than': 504093, 'longer than just': 502071, 'than just covid': 840813, 'covid 19 since': 213807, '19 since he': 10556, 'since he last': 770645, 'he last took': 385181, 'last took any': 480592, 'took any actual': 925209, 'any actual pride': 78901, 'actual pride in': 30693, 'pride in his': 678019, 'in his appearance': 423714, 'his appearance that': 397200, 'appearance that said': 82138, 'that said he': 846099, 'he wa clean': 385590, 'truckload': 933001, 'negate': 556722, 'grocery big': 364320, 'offer truckload': 594859, 'truckload or': 933002, 'or parking': 616506, 'lot sale': 504356, 'paper bottled': 639953, 'water this': 969207, 'would negate': 1012053, 'negate unloading': 556725, 'unloading stocking': 942813, 'stocking inside': 803569, 'inside of': 439331, 'store relieve': 809793, 'relieve long': 709530, 'long customer': 501383, 'customer line': 222579, 'line grocery': 493141, 'time for grocery': 896713, 'for grocery big': 322025, 'grocery big box': 364321, 'box store to': 137171, 'to offer truckload': 910856, 'offer truckload or': 594860, 'truckload or parking': 933003, 'or parking lot': 616507, 'parking lot sale': 642102, 'lot sale of': 504357, 'sale of toilet': 732409, 'toilet paper bottled': 921208, 'paper bottled water': 639954, 'bottled water this': 136379, 'water this would': 969210, 'this would negate': 891541, 'would negate unloading': 1012054, 'negate unloading stocking': 556726, 'unloading stocking inside': 942814, 'stocking inside of': 803570, 'inside of store': 439336, 'of store relieve': 590264, 'store relieve long': 809794, 'relieve long customer': 709531, 'long customer line': 501384, 'customer line outside': 222580, 'line outside of': 493349, 'outside of store': 629514, 'of store line': 590255, 'store line grocery': 808750, 'paired': 634348, 'we paired': 972685, 'paired our': 634349, 'client work': 182142, 'with expected': 998331, 'expected consumer': 290883, 'behavior to': 124253, 'of beauty': 580599, 'beauty beauty': 118745, 'beauty consumerbehavior': 118756, 'we paired our': 972686, 'paired our client': 634350, 'our client work': 622405, 'client work with': 182143, 'work with expected': 1006031, 'with expected consumer': 998332, 'expected consumer behavior': 290884, 'consumer behavior to': 196528, 'behavior to bring': 124254, 'bring you an': 140121, 'you an update': 1016972, 'affecting the business': 34557, 'the business of': 850177, 'business of beauty': 144117, 'of beauty beauty': 580600, 'beauty beauty consumerbehavior': 118746, 'rake': 696207, 'been successfully': 122093, 'successfully treating': 816279, 'patient using': 644288, 'of cocktail': 581498, 'cocktail of': 185242, 'drug easily': 260942, 'easily available': 265189, 'and affordable': 57743, 'affordable the': 34904, 'this administration': 886205, 'administration pharmaceutical': 32493, 'pharmaceutical will': 654096, 'will rake': 994555, 'rake in': 696208, 'in billion': 420833, 'billion by': 130785, 'india ha been': 434438, 'ha been successfully': 369942, 'been successfully treating': 122094, 'successfully treating covid': 816280, '19 patient using': 9597, 'patient using this': 644289, 'using this part': 950753, 'this part of': 889482, 'part of cocktail': 642337, 'of cocktail of': 581499, 'cocktail of drug': 185243, 'of drug easily': 582845, 'drug easily available': 260943, 'easily available and': 265190, 'available and affordable': 104221, 'and affordable the': 57748, 'affordable the big': 34905, 'big concern is': 129710, 'concern is this': 193008, 'is this administration': 453070, 'this administration pharmaceutical': 886207, 'administration pharmaceutical will': 32494, 'pharmaceutical will rake': 654097, 'will rake in': 994556, 'rake in billion': 696209, 'in billion by': 420834, 'billion by raising': 130788, 'by raising price': 153713, 'raising price in': 696116, 'price in am': 674656, 'objectionable': 578434, 'barrie': 111332, 'is objectionable': 450377, 'objectionable ve': 578435, 'seen glove': 747037, 'glove after': 352536, 'after glove': 35714, 'glove dropped': 352660, 'dropped in': 260575, 'lot pollution': 504348, 'pollution aside': 663897, 'aside put': 95427, 'your dirty': 1023516, 'dirty covid': 243738, '19 glove': 7225, 'glove safely': 352891, 'safely in': 730285, 'waste why': 968216, 'should others': 766300, 'others pick': 621582, 'you fear': 1018521, 'fear what': 301427, 'what on': 981959, 'grip people': 364030, 'people barrie': 647213, 'this is objectionable': 888338, 'is objectionable ve': 450378, 'objectionable ve seen': 578436, 've seen glove': 953530, 'seen glove after': 747038, 'glove after glove': 352538, 'after glove dropped': 35715, 'glove dropped in': 352661, 'dropped in grocery': 260578, 'parking lot pollution': 642101, 'lot pollution aside': 504349, 'pollution aside put': 663898, 'aside put your': 95428, 'put your dirty': 690988, 'your dirty covid': 1023517, 'dirty covid 19': 243739, 'covid 19 glove': 213148, '19 glove safely': 7227, 'glove safely in': 352892, 'safely in the': 730286, 'in the waste': 429662, 'the waste why': 871117, 'waste why should': 968217, 'why should others': 991340, 'should others pick': 766301, 'others pick them': 621583, 'them up if': 876569, 'if you fear': 415436, 'you fear what': 1018522, 'fear what on': 301429, 'what on them': 981963, 'on them get': 604535, 'them get grip': 875772, 'get grip people': 347156, 'grip people barrie': 364031, 'stop listen': 804813, 'listen think': 494724, 'must stop listen': 546922, 'stop listen think': 804814, '3145169861': 17627, 'hussle': 411809, '3145169861 first': 17628, 'first bank': 308526, 'bank sir': 110191, 'sir due': 771555, 'virus no': 958528, 'to hussle': 908067, 'hussle help': 411810, 'with anything': 997288, '3145169861 first bank': 17629, 'first bank sir': 308527, 'bank sir due': 110192, 'sir due to': 771556, '19 virus no': 11821, 'virus no way': 958530, 'no way to': 565872, 'way to hussle': 970039, 'to hussle help': 908068, 'hussle help me': 411811, 'help me and': 390062, 'my family with': 548236, 'family with anything': 298384, 'with anything to': 997290, 'anything to stock': 80918, 'globe are': 352444, 'seeing unprecedented': 746533, 'million lose': 532224, 'lose job': 503443, 'the globe are': 856347, 'globe are seeing': 352446, 'are seeing unprecedented': 89920, 'seeing unprecedented demand': 746534, 'demand million lose': 235870, 'million lose job': 532225, 'lose job and': 503444, 'using glove': 950499, 'glove however': 352725, 'however they': 409493, 'aren changing': 92356, 'changing glove': 172713, 'or using': 617627, 'sanitizer between': 734568, 'between customer': 128757, 'customer so': 222856, 'sick person': 768586, 'front me': 338632, 'me coughed': 522610, 'his milk': 397608, 'cashier just': 166557, 'that germ': 843993, 'on ll': 601889, 'll bet': 496650, 'bet le': 128079, 'le then': 483197, 'then of': 877368, 'people wipe': 650425, 'down their': 257314, 'purchase once': 689595, 'once home': 605652, 'cashier are using': 166476, 'are using glove': 91420, 'using glove however': 950500, 'glove however they': 352726, 'however they aren': 409495, 'they aren changing': 881473, 'aren changing glove': 92357, 'changing glove or': 172714, 'glove or using': 352850, 'or using hand': 617628, 'hand sanitizer between': 375325, 'sanitizer between customer': 734569, 'between customer so': 128760, 'customer so sick': 222860, 'so sick person': 778214, 'sick person in': 768588, 'in front me': 423132, 'front me coughed': 338633, 'me coughed on': 522611, 'coughed on his': 208627, 'on his milk': 601324, 'his milk and': 397609, 'milk and the': 531568, 'and the cashier': 73272, 'the cashier just': 850489, 'cashier just passed': 166558, 'passed that germ': 643301, 'that germ on': 843994, 'germ on ll': 346138, 'on ll bet': 601890, 'll bet le': 496652, 'bet le then': 128080, 'le then of': 483199, 'then of people': 877370, 'of people wipe': 588027, 'people wipe down': 650426, 'wipe down their': 996241, 'down their purchase': 257318, 'their purchase once': 874515, 'purchase once home': 689596, 'stephenschork': 799753, 'telegraphed': 836737, 'br': 137469, 'stephenschork what': 799754, 'wa telegraphed': 963407, 'telegraphed the': 836738, 'the spark': 867539, 'spark policy': 787548, 'policy failure': 663401, 'failure from': 296269, 'from obama': 336625, 'obama trump': 578335, 'fed are': 301784, 'to br': 901972, 'br blamed': 137470, 'stephenschork what happening': 799755, 'what happening in': 981554, 'the market what': 860176, 'market what happening': 517336, 'what happening with': 981561, 'happening with oil': 377442, 'with oil price': 999861, 'oil price wa': 597312, 'price wa telegraphed': 677339, 'wa telegraphed the': 963408, 'telegraphed the is': 836739, 'the is just': 858503, 'just the spark': 470013, 'the spark policy': 867540, 'spark policy failure': 787549, 'policy failure from': 663402, 'failure from obama': 296270, 'from obama trump': 336626, 'obama trump the': 578336, 'trump the fed': 933915, 'the fed are': 855054, 'fed are to': 301785, 'are to br': 91109, 'to br blamed': 901973, 'devote': 239994, 'it community': 457232, 'hour amid': 405381, 'amid number': 52548, 'giant will': 349891, 'now devote': 574519, 'devote an': 239995, 'from 7am': 334337, '7am on': 22428, 'and thursday': 74104, 'worker 7news': 1006190, 'set to expand': 753514, 'expand it community': 290457, 'it community shopping': 457234, 'community shopping hour': 190094, 'shopping hour amid': 762909, 'hour amid number': 405383, 'amid number of': 52549, 'number of social': 576993, 'distancing measure the': 247326, 'measure the supermarket': 525371, 'supermarket giant will': 820518, 'giant will now': 349892, 'will now devote': 994297, 'now devote an': 574520, 'devote an hour': 239996, 'hour from 7am': 405631, 'from 7am on': 334338, '7am on tuesday': 22429, 'on tuesday and': 604876, 'tuesday and thursday': 935118, 'and thursday for': 74106, 'thursday for emergency': 895371, 'service and healthcare': 752090, 'healthcare worker 7news': 387341, 'expect some': 290726, 'some kind': 783173, 'on weapon': 605150, 'weapon well': 974266, 'if 19': 413761, 'doesn hit': 251840, 'hit them': 398456, 'them gun': 875807, 'gun probably': 368715, 'probably will': 679419, 'increasing in the': 433628, 'united state due': 942214, 'the food shortage': 855603, 'people expect some': 647842, 'expect some kind': 290727, 'some kind of': 783174, 'is why they': 453979, 'up on weapon': 945643, 'on weapon well': 605152, 'weapon well what': 974267, 'well what if': 978743, 'what if 19': 981620, 'if 19 doesn': 413762, '19 doesn hit': 6613, 'doesn hit them': 251841, 'hit them gun': 398457, 'them gun probably': 875808, 'gun probably will': 368716, 'subjective': 815764, 'term necessary': 838207, 'necessary is': 554007, 'very subjective': 955599, 'subjective to': 815765, 'necessary mean': 554027, 'mean buying': 524382, 'mean driving': 524406, 'driving across': 259890, 'across state': 29460, 'state line': 795741, 'for chick': 320046, 'chick fil': 175716, 'the term necessary': 869295, 'term necessary is': 838208, 'necessary is very': 554008, 'is very subjective': 453700, 'very subjective to': 955600, 'subjective to some': 815766, 'to some necessary': 914882, 'some necessary mean': 783341, 'necessary mean buying': 554028, 'mean buying all': 524383, 'buying all of': 149878, 'the but to': 850204, 'but to some': 147590, 'necessary mean driving': 554029, 'mean driving across': 524407, 'driving across state': 259891, 'across state line': 29461, 'state line for': 795742, 'line for chick': 493098, 'for chick fil': 320047, 'krone': 477791, 'the norwegian': 861886, 'norwegian krone': 567849, 'krone drop': 477794, 'and uncertainty': 74605, 'the norwegian krone': 861887, 'norwegian krone drop': 567850, 'krone drop to': 477795, 'drop to record': 260429, 'record low on': 705017, 'low on the': 505467, 'back of collapsing': 107168, 'price and uncertainty': 672572, '19 cov': 6171, 'across supermarket 19': 29464, 'supermarket 19 19': 818734, '19 19 cov': 4710, 'tabled': 831513, 'edm': 268685, '318': 17640, 'yesterday tabled': 1015873, 'tabled an': 831514, 'early day': 264573, 'day motion': 227992, 'motion edm': 543260, 'edm 318': 268686, '318 and': 17641, 'and wrote': 75945, 'the secretary': 866607, 'secretary of': 743964, 'department for': 237194, 'business energy': 143697, 'and industrial': 65172, 'industrial strategy': 435574, 'address price': 32013, 'yesterday tabled an': 1015874, 'tabled an early': 831515, 'an early day': 55541, 'early day motion': 264575, 'day motion edm': 227993, 'motion edm 318': 543261, 'edm 318 and': 268687, '318 and wrote': 17642, 'and wrote to': 75947, 'wrote to the': 1013228, 'to the secretary': 917045, 'the secretary of': 866608, 'secretary of state': 743965, 'of state for': 590066, 'state for the': 795591, 'for the department': 326381, 'the department for': 853141, 'department for business': 237195, 'for business energy': 319831, 'business energy and': 143698, 'energy and industrial': 276389, 'and industrial strategy': 65174, 'industrial strategy to': 435576, 'strategy to take': 812735, 'action to address': 30162, 'to address price': 900092, 'address price hike': 32014, 'supermarket true': 823578, 'true enough': 933075, 'product let': 681353, 'me make': 523134, 'this clear': 886782, 'clear if': 181259, 'bought trolley': 136768, 'trolley load': 932440, 'get flu': 347024, 'flu bug': 311385, 'bug you': 141906, 'are fuckin': 86713, 'fuckin virus': 339791, 'but unlike': 147661, 'll never': 496913, 'be cure': 114311, 'your type': 1026238, 'wa in supermarket': 962385, 'in supermarket true': 428700, 'supermarket true enough': 823579, 'true enough the': 933076, 'enough the shelf': 277671, 'were empty of': 979571, 'empty of specific': 274984, 'specific product let': 788241, 'product let me': 681354, 'let me make': 486903, 'me make this': 523135, 'make this clear': 510634, 'this clear if': 886783, 'clear if you': 181261, 'if you bought': 415401, 'you bought trolley': 1017511, 'bought trolley load': 136769, 'trolley load of': 932441, 'load of toilet': 497287, 'paper in case': 640316, 'case you get': 166124, 'you get flu': 1018770, 'get flu bug': 347025, 'flu bug you': 311386, 'bug you are': 141907, 'you are fuckin': 1017131, 'are fuckin virus': 86715, 'fuckin virus but': 339792, 'virus but unlike': 958017, 'but unlike covid': 147662, '19 there ll': 11287, 'there ll never': 878721, 'll never be': 496915, 'never be cure': 557876, 'be cure for': 114312, 'cure for your': 220750, 'for your type': 328222, 'imagine waking': 416818, 'is restored': 451478, 'restored covid': 717059, 'can finally': 158308, 'finally go': 306022, 'shining and': 758620, 'the bird': 849724, 'are singing': 90139, 'singing and': 771209, 'all happy': 43038, 'imagine waking up': 416819, 'waking up tomorrow': 964670, 'up tomorrow and': 946466, 'tomorrow and everything': 924023, 'everything is restored': 287883, 'is restored covid': 451479, 'restored covid 19': 717060, 'no more and': 564796, 'more and we': 538622, 'we can finally': 970949, 'can finally go': 158310, 'finally go out': 306023, 'out and there': 625701, 'there is food': 878560, 'is food and': 447863, 'and drink and': 61725, 'drink and every': 258799, 'and every supermarket': 62383, 'every supermarket is': 286256, 'supermarket is full': 821091, 'full of product': 340750, 'product and the': 680915, 'and the sun': 73603, 'is shining and': 451856, 'shining and the': 758621, 'and the bird': 73260, 'the bird are': 849725, 'bird are singing': 131326, 'are singing and': 90140, 'singing and we': 771211, 're all happy': 698221, 'empty at': 274791, 'store except': 807667, 'for cake': 319872, 'cake mix': 155247, 'mix so': 534610, 'all the shelf': 44905, 'are empty at': 86140, 'empty at our': 274793, 'grocery store except': 365382, 'store except for': 807668, 'except for cake': 289152, 'for cake mix': 319873, 'cake mix so': 155249, 'mix so we': 534611, 'we are fine': 970565, 'say city': 738508, 'of los': 586017, 'angeles will': 76393, 'receive 00': 703428, 'say city of': 738509, 'city of los': 179285, 'of los angeles': 586018, 'los angeles will': 503374, 'angeles will receive': 76395, 'will receive 00': 994589, 'receive 00 mask': 703429, '00 mask for': 319, 'mask for grocery': 518676, 'worker and 10': 1006268, 'and 10 00': 57342, 'mask for first': 518674, 'iremedy': 444861, 'iremedy is': 444864, 'selling corona': 749200, 'virus safety': 958708, 'these iremedy': 880181, 'iremedy coupon': 444862, 'coupon can': 211751, 'you further': 1018743, 'further 10': 341985, 'purchase read': 689643, 'more website': 540958, 'website health': 975294, 'health stayhome': 386874, 'iremedy is selling': 444865, 'is selling corona': 451752, 'selling corona virus': 749201, 'corona virus safety': 204347, 'virus safety equipment': 958709, 'safety equipment for': 730521, 'equipment for your': 279729, 'for your home': 328164, 'your home health': 1024357, 'home health at': 401354, 'health at wholesale': 386178, 'wholesale price with': 990485, 'price with these': 677626, 'with these iremedy': 1001642, 'these iremedy coupon': 880182, 'iremedy coupon can': 444863, 'coupon can get': 211752, 'can get you': 158473, 'get you further': 348674, 'you further 10': 1018744, 'further 10 off': 341986, '10 off on': 1579, 'on your purchase': 605495, 'your purchase read': 1025481, 'purchase read more': 689644, 'read more website': 700457, 'more website health': 540959, 'website health stayhome': 975295, 'alum': 49407, 'endowment': 276274, 'hey alum': 394319, 'alum campus': 49408, 'off without': 594401, 'pay or': 645024, 'benefit sign': 127081, 'petition to': 653636, 'president to': 670922, 'our massive': 623873, 'massive endowment': 520024, 'endowment cover': 276275, 'cover basic': 212197, 'who took': 989802, 'took care': 925220, 'hey alum campus': 394320, 'alum campus food': 49409, 'service worker have': 753098, 'laid off without': 479034, 'off without pay': 594403, 'without pay or': 1002829, 'pay or health': 645025, 'or health benefit': 615608, 'health benefit sign': 386193, 'benefit sign the': 127082, 'the petition to': 863617, 'petition to the': 653641, 'the president to': 864271, 'president to demand': 670923, 'to demand our': 904150, 'demand our massive': 235992, 'our massive endowment': 623874, 'massive endowment cover': 520025, 'endowment cover basic': 276276, 'cover basic need': 212198, 'basic need for': 112011, 'for the folk': 326441, 'the folk who': 855487, 'folk who took': 312303, 'who took care': 989803, 'took care of': 925221, 'reasearch': 702848, 'we desperately': 971279, 'need vaccine': 556154, 'for bigpharma': 319677, 'bigpharma that': 130374, 'mean raise': 524623, 'private profit': 678967, 'profit please': 682844, 'petition demanding': 653600, 'demanding that': 236614, 'that public': 845901, 'public reasearch': 688263, 'reasearch money': 702849, 'go with': 354508, 'condition that': 193531, 'cheap enough': 174098, 'we desperately need': 971280, 'desperately need vaccine': 238575, 'need vaccine for': 556155, 'vaccine for bigpharma': 951701, 'for bigpharma that': 319678, 'bigpharma that mean': 130375, 'that mean raise': 845118, 'mean raise price': 524624, 'price for private': 674029, 'for private profit': 324754, 'private profit please': 678968, 'profit please sign': 682845, 'this petition demanding': 889542, 'petition demanding that': 653601, 'demanding that public': 236616, 'that public reasearch': 845903, 'public reasearch money': 688264, 'reasearch money go': 702850, 'money go with': 536786, 'go with the': 354512, 'with the condition': 1001241, 'the condition that': 851434, 'condition that any': 193532, 'that any vaccine': 842680, 'any vaccine is': 80008, 'vaccine is cheap': 951724, 'is cheap enough': 446495, 'cheap enough for': 174099, 'informationagainstcovid': 438055, 'high nutrition': 395185, 'nutrition diet': 577714, 'diet given': 241727, 'consumer mindset': 198135, 'mindset to': 532858, 'follow healthy': 312407, 'healthy lifestyle': 387679, 'lifestyle particularly': 489374, 'particularly in': 642697, 'these testing': 880803, 'more health': 539397, 'health lifestyle': 386613, 'lifestyle pandemic': 489372, 'pandemic informationagainstcovid': 635735, 'there is an': 878522, 'is an increased': 445670, 'an increased demand': 56241, 'demand for high': 235439, 'for high nutrition': 322257, 'high nutrition diet': 395186, 'nutrition diet given': 577715, 'diet given the': 241728, 'given the consumer': 351131, 'the consumer mindset': 851561, 'consumer mindset to': 198138, 'mindset to follow': 532859, 'to follow healthy': 906049, 'follow healthy lifestyle': 312408, 'healthy lifestyle particularly': 387681, 'lifestyle particularly in': 489375, 'particularly in these': 642703, 'in these testing': 429864, 'these testing time': 880804, 'testing time of': 839670, 'the pandemic learn': 863014, 'learn more health': 484029, 'more health lifestyle': 539398, 'health lifestyle pandemic': 386614, 'lifestyle pandemic informationagainstcovid': 489373, 'into profiteering': 442898, 'crisis look': 217679, 'look no': 502540, 'further than': 342179, 'chain not': 170947, 'not passing': 570973, 'on 20p': 599060, '20p of': 14923, 'of wholesale': 593142, 'wholesale fall': 990441, 'fall since': 297059, 'christmas read': 178194, 'fact at': 295683, 'say he will': 738740, 'he will look': 385671, 'will look into': 994041, 'look into profiteering': 502433, 'into profiteering during': 442899, 'profiteering during the': 683027, 'the crisis look': 852404, 'crisis look no': 217681, 'look no further': 502541, 'no further than': 564331, 'further than the': 342181, 'than the fuel': 841238, 'supply chain not': 824998, 'chain not passing': 170949, 'not passing on': 570974, 'passing on 20p': 643385, 'on 20p of': 599061, '20p of wholesale': 14924, 'of wholesale fall': 593143, 'wholesale fall since': 990442, 'fall since christmas': 297060, 'since christmas read': 770541, 'christmas read the': 178195, 'read the fact': 700572, 'the fact at': 854817, 'think all': 885128, 'extra supermarket': 293661, 'and click': 59978, 'collect from': 186277, 'avoid further': 105115, 'further contamination': 342014, 'contamination to': 200737, 'and smaller': 71785, 'smaller local': 775281, 'essential long': 281292, 'life food': 488657, 'food lockdown': 315337, 'think all the': 885130, 'all the extra': 44739, 'the extra supermarket': 854770, 'extra supermarket need': 293662, 'need to close': 555888, 'close and only': 182534, 'and only have': 68139, 'only have delivery': 610576, 'have delivery and': 380227, 'delivery and click': 233657, 'and click and': 59979, 'and collect from': 60082, 'collect from those': 186280, 'from those store': 338033, 'those store to': 892497, 'store to avoid': 810756, 'to avoid further': 900900, 'avoid further contamination': 105116, 'further contamination to': 342015, 'contamination to those': 200738, 'to those self': 917518, 'isolating and smaller': 455059, 'and smaller local': 71787, 'smaller local store': 775283, 'local store to': 498484, 'store to stock': 810816, 'stock up with': 803134, 'up with essential': 946635, 'with essential long': 998256, 'essential long life': 281293, 'long life food': 501487, 'life food lockdown': 488658, 'food lockdown supermarket': 315338, 'how ecommerce': 407782, 'ecommerce change': 266730, 'and privacy': 69517, 'privacy regulation': 678829, 'regulation with': 708133, 'crucial for': 219446, 'any business': 78987, 'video review': 956878, 'review the': 720589, 'main legal': 508769, 'legal challenge': 485851, 'how ecommerce change': 407784, 'ecommerce change with': 266731, 'change with new': 172406, 'with new consumer': 999700, 'new consumer and': 558515, 'consumer and privacy': 196237, 'and privacy regulation': 69520, 'privacy regulation with': 678830, 'regulation with the': 708134, 'with the emergency': 1001283, 'the emergency the': 854236, 'emergency the commerce': 273017, 'the commerce channel': 851219, 'commerce channel is': 188531, 'channel is crucial': 172896, 'is crucial for': 446957, 'crucial for any': 219447, 'for any business': 319396, 'any business and': 78988, 'business and in': 143312, 'and in this': 65076, 'in this video': 430041, 'this video review': 890985, 'video review the': 956879, 'review the main': 720593, 'the main legal': 859904, 'main legal challenge': 508770, 'deglobalisation': 232531, 'coun': 209950, 'deglobalisation of': 232532, 'investment yet': 444088, 'yet greater': 1016086, 'greater direct': 363170, 'consumer influence': 197863, 'influence of': 437313, 'of big': 580696, 'big tech': 130049, 'tech across': 836026, 'world fast': 1009542, 'tracked by': 928242, '19 ie': 7653, 'ie the': 413744, 'both world': 136100, 'world lower': 1009771, 'lower share': 505995, 'new data': 558591, 'data black': 226147, 'black gold': 132065, 'gold for': 355892, 'for developing': 320687, 'developing coun': 239770, 'deglobalisation of trade': 232533, 'trade and investment': 928409, 'and investment yet': 65367, 'investment yet greater': 444089, 'yet greater direct': 1016087, 'greater direct to': 363171, 'to consumer influence': 903312, 'consumer influence of': 197864, 'influence of big': 437314, 'of big tech': 580704, 'big tech across': 130050, 'tech across the': 836027, 'the world fast': 871868, 'world fast tracked': 1009543, 'fast tracked by': 300065, 'tracked by covid': 928243, 'covid 19 ie': 213243, '19 ie the': 7654, 'ie the worst': 413745, 'worst of both': 1011230, 'of both world': 580799, 'both world lower': 136101, 'world lower share': 1009772, 'lower share of': 505996, 'share of trade': 755123, 'and the new': 73492, 'the new data': 861490, 'new data black': 558592, 'data black gold': 226148, 'black gold for': 132066, 'gold for developing': 355893, 'for developing coun': 320688, 'saying about': 739550, 'own experience': 631972, 'experience marketresearch': 291418, 'marketresearch socialmedia': 517865, 'time it critical': 897077, 'it critical for': 457413, 'critical for you': 218565, 'you to listen': 1021799, 'are saying about': 89820, 'saying about their': 739553, 'about their own': 26589, 'their own experience': 874172, 'own experience marketresearch': 631973, 'experience marketresearch socialmedia': 291419, 'marketresearch socialmedia branding': 517866, 'argued': 92701, 'unusual': 943983, 'we argued': 970778, 'argued yesterday': 92706, 'yesterday that': 1015881, 'not financial': 569412, 'rather consumer': 697442, 'business crisis': 143598, 'requires very': 713508, 'very unusual': 955638, 'unusual policy': 943991, 'policy measure': 663447, 'we argued yesterday': 970779, 'argued yesterday that': 92707, 'yesterday that the': 1015882, 'crisis is not': 217581, 'is not financial': 450081, 'not financial crisis': 569413, 'financial crisis but': 306369, 'crisis but rather': 217154, 'but rather consumer': 146884, 'rather consumer and': 697443, 'small business crisis': 774851, 'business crisis that': 143599, 'crisis that requires': 218155, 'that requires very': 846012, 'requires very unusual': 713509, 'very unusual policy': 955639, 'unusual policy measure': 943992, 'hoarding all': 399166, 'found the guy': 330410, 'guy who been': 369225, 'who been hoarding': 988306, 'been hoarding all': 121302, 'hoarding all the': 399168, 'yo': 1016418, '27 yo': 16320, 'yo grocery': 1016431, 'worker died': 1006779, 'in mom': 425391, 'mom arm': 535685, 'arm please': 92911, 'please young': 660788, 'people covid': 647569, 'covid doe': 214151, 'doe impact': 251418, 'impact you': 418055, '27 yo grocery': 16321, 'yo grocery store': 1016432, 'store worker died': 811481, 'worker died in': 1006782, 'died in mom': 241572, 'in mom arm': 425392, 'mom arm please': 535686, 'arm please young': 92912, 'please young people': 660789, 'young people covid': 1022641, 'people covid doe': 647571, 'covid doe impact': 214152, 'doe impact you': 251420, 'impact you 19': 418056, 'please also': 659646, 'and village': 74963, 'village business': 957336, 'business caf': 143481, 'pub too': 687791, 'many offering': 514408, 'and takeaway': 72984, 'takeaway stayhomesavelives': 832908, 'current supermarket opening': 221389, 'opening hour and': 612846, 'hour and please': 405410, 'and please also': 69104, 'please also support': 659651, 'also support local': 48937, 'support local and': 826618, 'local and village': 497684, 'and village business': 74964, 'village business caf': 957337, 'business caf and': 143482, 'caf and pub': 155083, 'and pub too': 69735, 'pub too with': 687792, 'too with many': 925170, 'with many offering': 999386, 'many offering delivery': 514409, 'offering delivery and': 595068, 'delivery and takeaway': 233681, 'and takeaway stayhomesavelives': 72987, 'quest': 693482, 'why quest': 991311, 'quest for': 693483, 'production remains': 682199, 'remains pipe': 710053, 'high financial': 395080, 'financial annual': 306325, 'annual loss': 77409, 'recent drop': 703885, 'why quest for': 991312, 'quest for commercial': 693484, 'commercial production remains': 188724, 'production remains pipe': 682200, 'remains pipe dream': 710054, 'dream high financial': 258597, 'high financial annual': 395081, 'financial annual loss': 306326, 'annual loss of': 77410, 'of billion by': 580709, 'billion by oil': 130787, 'by oil plc': 153411, 'and recent drop': 70039, 'recent drop of': 703887, 'drop of oil': 260322, 'price and making': 672463, 'making it worse': 511155, 'hyperlink': 412315, 'several involving': 753869, 'involving false': 444398, 'false email': 297425, 'message have': 529333, 'have recently': 382207, 'recently been': 704054, 'reported any': 712457, 'any email': 79178, 'post with': 666411, 'with subject': 1001031, 'subject line': 815735, 'line attachment': 492998, 'attachment or': 102069, 'or hyperlink': 615702, 'hyperlink should': 412316, 'be treated': 117803, 'with caution': 997574, 'caution for': 168165, 'several involving false': 753870, 'involving false email': 444399, 'false email or': 297426, 'or text message': 617353, 'text message have': 839908, 'message have recently': 529335, 'have recently been': 382209, 'recently been reported': 704055, 'been reported any': 121828, 'reported any email': 712458, 'any email or': 79179, 'email or social': 272261, 'medium post with': 527237, 'post with subject': 666413, 'with subject line': 1001032, 'subject line attachment': 815736, 'line attachment or': 492999, 'attachment or hyperlink': 102071, 'or hyperlink should': 615703, 'hyperlink should be': 412317, 'should be treated': 765755, 'be treated with': 117809, 'treated with caution': 930978, 'with caution for': 997575, 'caution for more': 168166, 'translates': 929708, 'mom call': 535701, 'call going': 155915, 'shopping want': 764339, 'this translates': 890844, 'translates to': 929709, 'going online': 355351, 'to facetime': 905584, 'mom call going': 535702, 'call going shopping': 155916, 'going shopping want': 355457, 'shopping want to': 764340, 'want to come': 966013, 'to come in': 903034, '19 this translates': 11353, 'this translates to': 890845, 'translates to going': 929710, 'to going online': 906901, 'going online shopping': 355352, 'online shopping want': 609335, 'want to facetime': 966033, 'p1': 632798, 'biotech': 131273, 'wago': 964022, 'cycc': 224018, 'myeloid': 550711, 'leukemia': 487467, 'cyclacel': 224021, 'p1 most': 632801, 'this biotech': 886561, 'biotech releasing': 131284, 'releasing pr': 709125, 'pr for': 668429, 'boost up': 135030, 'up stock': 946069, 'being wago': 126043, 'wago why': 964023, 'cannot cycc': 161744, 'cycc do': 224019, 'same chronic': 732998, 'chronic myeloid': 178237, 'myeloid leukemia': 550712, 'leukemia on': 487468, 'which company': 985756, 'company test': 191157, 'test elder': 838983, 'elder folk': 270530, 'folk cyclacel': 312136, 'cyclacel market': 224022, 'market team': 517162, 'team do': 835623, 'some magic': 783244, 'p1 most of': 632802, 'most of this': 542564, 'of this biotech': 591943, 'this biotech releasing': 886562, 'biotech releasing pr': 131285, 'releasing pr for': 709126, 'pr for the': 668430, 'for the just': 326515, 'the just to': 858721, 'just to boost': 470084, 'to boost up': 901933, 'boost up stock': 135031, 'up stock price': 946071, 'stock price and': 802703, 'price and being': 672368, 'and being wago': 58874, 'being wago why': 126044, 'wago why cannot': 964024, 'why cannot cycc': 990870, 'cannot cycc do': 161745, 'cycc do the': 224020, 'the same chronic': 866207, 'same chronic myeloid': 732999, 'chronic myeloid leukemia': 178238, 'myeloid leukemia on': 550713, 'leukemia on covid': 487469, '19 and which': 5137, 'and which company': 75556, 'which company test': 985757, 'company test elder': 191158, 'test elder folk': 838984, 'elder folk cyclacel': 270531, 'folk cyclacel market': 312137, 'cyclacel market team': 224023, 'market team do': 517163, 'team do some': 835624, 'do some magic': 250125, 'supermarket cat': 819577, 'cat socialdistancing': 166895, 'socialdistancing always': 780202, 'always keep': 49638, 'keep metre': 471662, 'apart in': 81288, 'supermarket cat socialdistancing': 819578, 'cat socialdistancing always': 166896, 'socialdistancing always keep': 780203, 'always keep metre': 49640, 'keep metre apart': 471663, 'metre apart in': 529824, 'apart in the': 81292, 'nov': 573693, 'are lower': 87940, 'lower paid': 505935, 'paid service': 634118, 'janitor cleaning': 464537, 'cleaning people': 181011, 'stock people': 802615, 'etc trump': 282844, 'gop do': 358245, 'are worth': 91746, 'worth 15': 1011320, 'hr minimum': 409642, 'wage vote': 963984, 'vote trump': 960518, 'trump gop': 933581, 'gop out': 358265, 'in nov': 425972, 'reminder that many': 710592, 'the people keeping': 863483, 'people keeping the': 648588, 'country going right': 210695, 'right now are': 722027, 'now are lower': 574097, 'are lower paid': 87942, 'lower paid service': 505939, 'paid service worker': 634119, 'service worker janitor': 753099, 'worker janitor cleaning': 1007256, 'janitor cleaning people': 464538, 'cleaning people supermarket': 181013, 'people supermarket clerk': 649698, 'supermarket clerk and': 819712, 'clerk and stock': 181644, 'and stock people': 72412, 'stock people etc': 802616, 'people etc trump': 647821, 'etc trump and': 282845, 'the gop do': 856462, 'gop do not': 358246, 'think they are': 885678, 'they are worth': 881466, 'are worth 15': 91747, 'worth 15 hr': 1011323, '15 hr minimum': 3736, 'hr minimum wage': 409644, 'minimum wage vote': 533249, 'wage vote trump': 963985, 'vote trump gop': 960519, 'trump gop out': 933582, 'gop out in': 358266, 'out in nov': 626388, 'of expect': 583312, 'be spending': 117324, 'home which': 402488, 'phone but': 654915, 'person calling': 652343, 'calling is': 156581, 'offering something': 595252, 'something too': 785116, 'too good': 924764, 'be true': 117824, 'true treatment': 933196, 'even cure': 283988, 'consumer expert': 197419, 'say hang': 738721, 'many of expect': 514372, 'of expect to': 583313, 'expect to be': 290765, 'to be spending': 901557, 'be spending more': 117325, 'more time at': 540766, 'at home which': 99170, 'home which mean': 402489, 'which mean we': 986150, 'mean we may': 524763, 'we may have': 972352, 'may have more': 521250, 'have more time': 381507, 'more time to': 540776, 'time to answer': 897945, 'to answer the': 900588, 'answer the phone': 78114, 'the phone but': 863687, 'phone but if': 654916, 'but if the': 145998, 'if the person': 415016, 'the person calling': 863580, 'person calling is': 652344, 'calling is offering': 156582, 'is offering something': 450426, 'offering something too': 595253, 'something too good': 785117, 'too good to': 924766, 'good to be': 357871, 'to be true': 901603, 'be true treatment': 117826, 'true treatment or': 933197, 'treatment or even': 931117, 'or even cure': 615194, 'even cure to': 283989, 'cure to the': 220836, 'the consumer expert': 851533, 'consumer expert say': 197423, 'expert say hang': 291952, 'say hang up': 738722, 'admiration': 32559, 'singlehandedly': 771432, 'piss': 656941, 'much admiration': 544696, 'admiration and': 32560, 'and respect': 70329, 'respect have': 715011, 're almost': 698249, 'almost singlehandedly': 46738, 'singlehandedly keeping': 771433, 'assume they': 97025, 're paid': 699233, 'paid piss': 634109, 'piss all': 656942, 'effort genuinely': 269518, 'genuinely am': 345874, 'you how much': 1019260, 'how much admiration': 408338, 'much admiration and': 544697, 'admiration and respect': 32561, 'and respect have': 70332, 'respect have for': 715012, 'have for supermarket': 380684, 'they re almost': 882992, 're almost singlehandedly': 698252, 'almost singlehandedly keeping': 46739, 'singlehandedly keeping going': 771434, 'keeping going right': 472432, 'now and assume': 574027, 'and assume they': 58467, 'assume they re': 97027, 'they re paid': 883090, 're paid piss': 699234, 'paid piss all': 634110, 'piss all for': 656943, 'all for their': 42849, 'their effort genuinely': 873107, 'effort genuinely am': 269519, 'genuinely am so': 345875, 'am so thankful': 50414, 'supermarket while': 823843, 'please deliver': 659874, 'deliver with': 233267, 'with carrier': 997550, 'carrier bag': 164955, 'distancing tesco': 247526, 'supermarket while we': 823848, 'we are self': 970702, 'isolating and online': 455058, 'online shopping please': 609227, 'shopping please deliver': 763642, 'please deliver with': 659875, 'deliver with carrier': 233268, 'with carrier bag': 997551, 'carrier bag to': 164958, 'bag to keep': 108427, 'keep with social': 472213, 'social distancing tesco': 779736, 'distancing tesco asda': 247527, 'much going': 544951, 'around about': 93173, 'told people': 923654, 'asthma need': 97199, 'isolate for': 454854, 'this correct': 886908, 'correct 22': 207497, '22 and': 15181, 'so constantly': 776784, 'constantly around': 195646, 'people cant': 647440, 'isolate but': 454831, 'also do': 48109, 'put myself': 690703, 'ok so with': 597891, 'so with so': 778794, 'with so much': 1000787, 'so much going': 777778, 'much going around': 544952, 'going around about': 355023, 'around about covid': 93174, 'been told people': 122239, 'told people with': 923656, 'people with asthma': 650433, 'with asthma need': 997328, 'asthma need to': 97200, 'self isolate for': 747674, 'isolate for 12': 454855, '12 week is': 2984, 'week is this': 976430, 'is this correct': 453079, 'this correct 22': 886909, 'correct 22 and': 207498, '22 and work': 15182, 'and work in': 75855, 'in supermarket so': 428670, 'supermarket so constantly': 822728, 'so constantly around': 776785, 'constantly around people': 195647, 'around people cant': 93452, 'people cant afford': 647441, 'afford to self': 34806, 'self isolate but': 747667, 'isolate but also': 454832, 'but also do': 145107, 'also do not': 48111, 'want to put': 966095, 'to put myself': 912597, 'put myself and': 690704, 'myself and others': 550825, 'djavad': 248813, 'salehi': 732665, 'isfahani': 454207, 'considers': 195444, 'come at': 187224, 'worst possible': 1011250, 'possible time': 665834, 'for iran': 322653, 'iran with': 444721, 'down 25': 256397, '25 percent': 15946, 'percent this': 651187, 'and sanction': 70816, 'sanction seriously': 733638, 'seriously damaging': 751578, 'damaging the': 225277, 'economy djavad': 267807, 'djavad salehi': 248814, 'salehi isfahani': 732666, 'isfahani considers': 454208, 'considers the': 195454, 'the lasting': 859058, 'on iran': 601617, 'iran politics': 444699, '19 outbreak come': 9101, 'outbreak come at': 628117, 'come at the': 187227, 'the worst possible': 872070, 'worst possible time': 1011251, 'possible time for': 665836, 'time for iran': 896718, 'for iran with': 322654, 'iran with oil': 444722, 'oil price down': 597108, 'price down 25': 673513, 'down 25 percent': 256398, '25 percent this': 15947, 'percent this month': 651188, 'month and sanction': 537580, 'and sanction seriously': 70817, 'sanction seriously damaging': 733639, 'seriously damaging the': 751579, 'damaging the country': 225278, 'country economy djavad': 210601, 'economy djavad salehi': 267808, 'djavad salehi isfahani': 248815, 'salehi isfahani considers': 732667, 'isfahani considers the': 454209, 'considers the lasting': 195458, 'the lasting effect': 859059, 'crisis on iran': 217813, 'on iran politics': 601618, 'assessed': 96367, 'platts assessed': 659088, 'assessed chicago': 96368, '99 per': 23877, 'gallon lowest': 343034, 'lowest ever': 506160, 'ever value': 285575, 'value demand': 952110, 'spglobal platts assessed': 789198, 'platts assessed chicago': 659089, 'assessed chicago argo': 96369, 'at 99 per': 97819, '99 per gallon': 23880, 'per gallon lowest': 650852, 'gallon lowest ever': 343035, 'lowest ever value': 506161, 'ever value demand': 285576, 'value demand fear': 952111, 'but worried': 147933, 'safety there': 730752, 'simple thing': 770117, 'do before': 249121, 'after shopping': 36204, 'the learn': 859242, 'need to head': 555958, 'to head to': 907362, 'store but worried': 806818, 'but worried about': 147934, 'worried about your': 1010534, 'about your safety': 27012, 'your safety there': 1025666, 'safety there are': 730753, 'are few simple': 86536, 'few simple thing': 304066, 'simple thing you': 770123, 'can do before': 158095, 'do before during': 249122, 'and after shopping': 57756, 'after shopping to': 36207, 'shopping to help': 764178, 'help protect yourself': 390382, 'from the learn': 337769, 'the learn more': 859243, 'learn more at': 484017, 'windsor': 995749, 'essex': 281972, '5fm': 20644, '91': 23426, '9fm': 23981, 'in windsor': 430921, 'windsor essex': 995750, 'essex have': 281977, 'do thing': 250325, '22 tune': 15254, 'tune to': 935424, 'to 97': 899880, '97 5fm': 23677, '5fm or': 20645, 'or 91': 614228, '91 9fm': 23429, '9fm or': 23982, 'or stream': 617249, 'stream live': 812780, 'bank in windsor': 109932, 'in windsor essex': 430922, 'windsor essex have': 995751, 'essex have had': 281978, 'had to change': 373674, 'to change the': 902617, 'they do thing': 881977, 'do thing because': 250326, 'thing because of': 884185, '19 demand ha': 6484, 'demand ha changed': 235603, 'ha changed and': 370117, 'changed and so': 172435, 'and so ha': 71842, 'so ha the': 777227, 'ha the way': 372232, 'way they give': 969956, 'they give out': 882195, 'give out food': 350634, 'out food we': 626093, 'food we ll': 317531, 'll hear more': 496841, 'hear more at': 387958, 'more at 22': 538659, 'at 22 tune': 97532, '22 tune to': 15255, 'tune to 97': 935425, 'to 97 5fm': 899881, '97 5fm or': 23678, '5fm or 91': 20646, 'or 91 9fm': 614229, '91 9fm or': 23430, '9fm or stream': 23983, 'or stream live': 617250, 'stream live here': 812782, 'thai consumer': 840077, 'confidence at': 193830, 'at 21': 97523, 'low due': 505253, '19 worry': 12206, 'thai consumer confidence': 840078, 'consumer confidence at': 196886, 'confidence at 21': 193831, 'at 21 year': 97524, '21 year low': 15040, 'year low due': 1014717, 'low due to': 505254, 'covid 19 worry': 214092, 'unverified': 944038, 'fear breed': 301065, 'breed fraud': 139266, 'and false': 62646, 'false report': 297449, 'report passing': 712165, 'on unverified': 604985, 'unverified email': 944039, 'email only': 272252, 'only cause': 610229, 'more confusion': 538858, 'confusion please': 194394, 'check fact': 174427, 'fact amp': 295672, 'amp rely': 54381, 'rely only': 709660, 'official source': 595932, 'source here': 786490, 'fear breed fraud': 301066, 'breed fraud and': 139267, 'fraud and false': 331231, 'and false report': 62647, 'false report passing': 297450, 'report passing on': 712166, 'passing on unverified': 643388, 'on unverified email': 604986, 'unverified email only': 944040, 'email only cause': 272253, 'only cause more': 610230, 'cause more confusion': 167658, 'more confusion please': 538860, 'confusion please check': 194395, 'please check fact': 659772, 'check fact amp': 174428, 'fact amp rely': 295673, 'amp rely only': 54382, 'rely only on': 709661, 'only on official': 610860, 'on official source': 602485, 'official source here': 595933, 'source here the': 786492, 'here the latest': 393656, 'the latest from': 859106, 'latest from the': 481360, 'from the on': 337814, 'pa14': 632904, 'notthatguy': 573643, 'demcast': 236625, 'know guy': 476399, 'guy voted': 369191, 'voted against': 960546, 'against lowering': 37539, 'lowering drug': 506101, 'the aca': 848276, 'aca denying': 27756, 'denying affordable': 237147, 'affordable healthcare': 34848, 'and access': 57582, 'to affordable': 900166, 'affordable medicine': 34857, 'medicine to': 526907, 'the pa14': 862832, 'pa14 we': 632907, 'need rep': 555517, 'rep who': 711431, 'for notthatguy': 323946, 'notthatguy demcast': 573644, 'you know guy': 1019497, 'know guy voted': 476400, 'guy voted against': 369192, 'voted against lowering': 960548, 'against lowering drug': 37540, 'lowering drug price': 506102, 'drug price and': 261035, 'and the aca': 73234, 'the aca denying': 848277, 'aca denying affordable': 27757, 'denying affordable healthcare': 237148, 'affordable healthcare and': 34849, 'healthcare and access': 387024, 'and access to': 57585, 'access to affordable': 28214, 'to affordable medicine': 900167, 'affordable medicine to': 34858, 'medicine to thousand': 526911, 'to thousand in': 917537, 'thousand in the': 893403, 'in the pa14': 429430, 'the pa14 we': 862833, 'pa14 we need': 632908, 'we need rep': 972535, 'need rep who': 555518, 'rep who will': 711433, 'who will look': 989992, 'will look out': 994043, 'out for notthatguy': 626144, 'for notthatguy demcast': 323947, 'mathaithai': 520483, 'mathaithai panic': 520484, 'stupid so': 815462, 'is wasting': 453776, 'wasting precious': 968323, 'precious covid': 669466, 'kit if': 475567, 'mathaithai panic buying': 520485, 'buying of tinned': 150800, 'paper is selfish': 640361, 'is selfish and': 451741, 'selfish and stupid': 747996, 'and stupid so': 72625, 'stupid so is': 815463, 'so is wasting': 777447, 'is wasting precious': 453777, 'wasting precious covid': 968324, 'precious covid 19': 669467, 'test kit if': 839059, 'kit if you': 475568, 'if you don': 415424, 'correct thing': 207530, 'do at': 249102, 'the correct thing': 851970, 'correct thing to': 207532, 'to do at': 904483, 'do at the': 249105, 'cologne': 186683, 'scented': 741402, 'restroom': 717430, 'wash my': 967521, 'sanitizer stop': 735821, 'stop putting': 804948, 'putting perfume': 691201, 'perfume in': 651524, 'every product': 286124, 'product over': 681509, 'are allergic': 84373, 'to cologne': 902976, 'cologne perfume': 186689, 'perfume and': 651513, 'and scented': 71062, 'scented product': 741405, 'cannot wash': 162215, 'wash our': 967526, 'public restroom': 688273, 'restroom at': 717431, 'restaurant etc': 716449, 'me to wash': 523798, 'to wash my': 918349, 'wash my hand': 967523, 'my hand and': 548601, 'hand and use': 374784, 'and use sanitizer': 74782, 'use sanitizer stop': 949549, 'sanitizer stop putting': 735822, 'stop putting perfume': 804950, 'putting perfume in': 691202, 'perfume in every': 651525, 'in every product': 422687, 'every product over': 286125, 'product over 10': 681510, 'over 10 million': 629757, '10 million american': 1524, 'million american are': 532052, 'american are allergic': 51795, 'are allergic to': 84374, 'allergic to cologne': 45760, 'to cologne perfume': 902977, 'cologne perfume and': 186690, 'perfume and scented': 651514, 'and scented product': 71063, 'scented product we': 741406, 'product we cannot': 681818, 'we cannot wash': 971090, 'cannot wash our': 162216, 'wash our hand': 967528, 'our hand or': 623350, 'use sanitizer in': 949543, 'sanitizer in public': 735153, 'in public restroom': 427096, 'public restroom at': 688274, 'restroom at work': 717433, 'at work restaurant': 101612, 'work restaurant etc': 1005662, 'salem': 732669, 'socialdistancing2020': 780895, 'fightclub': 304971, 'crazy in': 215331, 'in ohio': 426074, 'ohio corona': 596534, 'toiletpaper charmin': 921854, 'charmin apocalypse': 173793, 'apocalypse salem': 81562, 'salem isolation': 732674, 'isolation socialdistancing2020': 455440, 'socialdistancing2020 socialdistance': 780896, 'socialdistance cdc': 780142, 'cdc fightclub': 168559, 'fightclub honor': 304972, 'honor 2020': 403237, 'thing are getting': 884152, 'are getting crazy': 86798, 'getting crazy in': 348918, 'crazy in ohio': 215332, 'in ohio corona': 426077, 'ohio corona coronamemes': 596535, 'corona coronamemes toiletpaper': 203884, 'coronamemes toiletpaper charmin': 205074, 'toiletpaper charmin apocalypse': 921855, 'charmin apocalypse salem': 173794, 'apocalypse salem isolation': 81563, 'salem isolation socialdistancing2020': 732675, 'isolation socialdistancing2020 socialdistance': 455441, 'socialdistancing2020 socialdistance cdc': 780897, 'socialdistance cdc fightclub': 780143, 'cdc fightclub honor': 168560, 'fightclub honor 2020': 304973, 'rise find': 722852, '19 scam are': 10335, 'the rise find': 865852, 'rise find out': 722853, 'out what they': 627815, 'to avoid them': 900948, 'tracker of': 928288, 'tracker of retail': 928289, 'retail store closed': 718624, 'store closed due': 807060, 'footballer': 318524, 'thought seeing': 893203, 'of footballer': 583851, 'footballer and': 318527, 'other sport': 620950, 'sport professional': 789968, 'professional aren': 682409, 'aren working': 92592, 'mo wonder': 534878, 've volunteered': 953654, 'volunteered for': 960382, 'supermarket stacker': 822804, 'stacker or': 792022, 'just thought seeing': 470067, 'thought seeing lot': 893204, 'lot of footballer': 504193, 'of footballer and': 583852, 'footballer and other': 318529, 'and other sport': 68411, 'other sport professional': 620951, 'sport professional aren': 789969, 'professional aren working': 682410, 'aren working at': 92594, 'at the mo': 101025, 'the mo wonder': 860706, 'mo wonder if': 534879, 'wonder if they': 1003978, 'they ve volunteered': 883690, 've volunteered for': 953655, 'volunteered for supermarket': 960383, 'for supermarket stacker': 326025, 'supermarket stacker or': 822805, 'stacker or delivery': 792023, 'gloved': 353058, 'all masked': 43465, 'masked and': 519614, 'and gloved': 63752, 'gloved for': 353059, 'for visit': 327584, 'for peak': 324431, 'peak week': 646117, 'week did': 976154, 'not notice': 570700, 'notice my': 573310, 'my shirt': 550038, 'shirt wa': 759027, 'on inside': 601578, 'inside out': 439353, 'out till': 627611, 'till got': 896027, 'all masked and': 43466, 'masked and gloved': 519615, 'and gloved for': 63753, 'gloved for visit': 353060, 'for visit to': 327585, 'up for peak': 944954, 'for peak week': 324432, 'peak week did': 646118, 'week did not': 976155, 'did not notice': 240724, 'not notice my': 570701, 'notice my shirt': 573311, 'my shirt wa': 550039, 'shirt wa on': 759028, 'wa on inside': 962826, 'on inside out': 601579, 'inside out till': 439356, 'out till got': 627612, 'till got back': 896028, 'do feel': 249294, 'like carrying': 489968, 'carrying out': 165202, 'out dangerous': 625928, 'dangerous mission': 225757, 'mission in': 534361, 'post apocalyptic': 665998, 'apocalyptic dystopia': 81592, 'dystopia 19': 263940, 'supermarket to do': 823368, 'do some shopping': 250132, 'some shopping why': 783866, 'shopping why do': 764407, 'why do feel': 990929, 'do feel like': 249295, 'feel like carrying': 302701, 'like carrying out': 489969, 'carrying out dangerous': 165204, 'out dangerous mission': 625929, 'dangerous mission in': 225758, 'mission in post': 534362, 'in post apocalyptic': 426858, 'post apocalyptic dystopia': 665999, 'apocalyptic dystopia 19': 81593, '2020 bureau': 14201, 'bureau of': 142795, 'labor statistic': 478450, 'pandemic on the': 636094, 'the consumer price': 851576, 'index data for': 434179, 'data for march': 226217, 'march 2020 bureau': 515150, '2020 bureau of': 14202, 'bureau of labor': 142798, 'of labor statistic': 585695, 'fucking hoarding': 339895, 'stop fucking hoarding': 804674, 'caroffer': 164811, 'caroffer brings': 164812, 'brings powerful': 140266, 'powerful new': 667789, 'consumer acquisition': 196006, 'acquisition tool': 29197, 'market enhanced': 516334, 'enhanced caroffer': 277087, 'caroffer platform': 164814, 'platform help': 658976, 'help dealer': 389573, 'dealer generate': 229603, 'generate instant': 345559, 'instant traffic': 440118, 'caroffer brings powerful': 164813, 'brings powerful new': 140267, 'powerful new consumer': 667790, 'new consumer acquisition': 558514, 'consumer acquisition tool': 196007, 'acquisition tool to': 29198, 'tool to market': 925451, 'to market enhanced': 909852, 'market enhanced caroffer': 516335, 'enhanced caroffer platform': 277088, 'caroffer platform help': 164815, 'platform help dealer': 658977, 'help dealer generate': 389574, 'dealer generate instant': 229604, 'generate instant traffic': 345560, 'instant traffic and': 440119, 'traffic and sale': 929048, 'and sale during': 70791, 'sale during covid': 732181, 'elderly lady': 270731, 'only went': 611459, 'ending up': 276212, 'up dying': 944762, 'all elderly': 42665, 'people self': 649391, 'self quarantined': 747874, 'quarantined and': 692816, 'had their': 373631, 'delivered this': 233415, 'group visiting': 366957, 'visiting isn': 959530, 'isn working': 454758, 'so the news': 778431, 'news in my': 560533, 'area is that': 92086, 'is that an': 452631, 'an elderly lady': 55636, 'elderly lady who': 270737, 'lady who only': 478870, 'who only went': 989382, 'only went shopping': 611461, 'went shopping once': 979109, 'shopping once week': 763394, 'once week ending': 605790, 'week ending up': 976189, 'ending up dying': 276213, 'up dying of': 944764, 'dying of think': 263852, 'of think it': 591924, 'think it time': 885355, 'it time all': 461691, 'time all elderly': 896224, 'all elderly people': 42666, 'elderly people self': 270832, 'people self quarantined': 649393, 'self quarantined and': 747875, 'quarantined and had': 692817, 'and had their': 64107, 'had their grocery': 373633, 'grocery delivered this': 364429, 'delivered this supermarket': 233418, 'this supermarket group': 890428, 'supermarket group visiting': 820599, 'group visiting isn': 366958, 'visiting isn working': 959531, 'outintheworld': 628995, 'ellendegeneres': 271551, 'jimmyfallon': 465514, 'kellyclarksonshow': 472730, 'prospertx': 684733, 'dfw': 240065, 'metroplex': 529962, 'ashley coronavirus': 95106, 'coronavirus parody': 206532, 'parody outintheworld': 642194, 'outintheworld toiletpaper': 628996, 'toiletpaper ellendegeneres': 921952, 'ellendegeneres jimmyfallon': 271552, 'jimmyfallon kellyclarksonshow': 465515, 'kellyclarksonshow prospertx': 472731, 'prospertx dfw': 684734, 'dfw metroplex': 240066, 'ashley coronavirus parody': 95107, 'coronavirus parody outintheworld': 206533, 'parody outintheworld toiletpaper': 642195, 'outintheworld toiletpaper ellendegeneres': 628997, 'toiletpaper ellendegeneres jimmyfallon': 921953, 'ellendegeneres jimmyfallon kellyclarksonshow': 271553, 'jimmyfallon kellyclarksonshow prospertx': 465516, 'kellyclarksonshow prospertx dfw': 472732, 'prospertx dfw metroplex': 684735, 'stampede': 793442, 'truedat': 933232, 'missouri woman': 534448, 'woman give': 1003491, 'birth in': 131400, 'in walmart': 430667, 'walmart toiletpaper': 965447, 'aisle customer': 40234, 'customer cheer': 222243, 'cheer her': 175110, 'doctor say': 251091, 'say his': 738759, 'his timing': 397861, 'timing wa': 898526, 'wa perfect': 962924, 'perfect because': 651276, 'wa between': 961694, 'between stampede': 128901, 'stampede trending': 793448, 'trending trending': 931577, 'trending truedat': 931580, 'truedat socialdistancing': 933233, 'missouri woman give': 534449, 'woman give birth': 1003492, 'give birth in': 350414, 'birth in walmart': 131402, 'in walmart toiletpaper': 430670, 'walmart toiletpaper aisle': 965448, 'toiletpaper aisle customer': 921700, 'aisle customer cheer': 40235, 'customer cheer her': 222244, 'cheer her on': 175111, 'her on doctor': 392246, 'on doctor say': 600370, 'doctor say his': 251093, 'say his timing': 738762, 'his timing wa': 397862, 'timing wa perfect': 898527, 'wa perfect because': 962925, 'perfect because it': 651277, 'it wa between': 462077, 'wa between stampede': 961695, 'between stampede trending': 128902, 'stampede trending trending': 793450, 'trending trending truedat': 931579, 'trending truedat socialdistancing': 931581, 'agriculture land': 38997, 'land reform': 479292, 'reform and': 706709, 'and rural': 70653, 'rural development': 728237, 'development thoko': 239848, 'didiza say': 240966, 'buying ahead': 149873, 'the 21': 848033, 'day lock': 227920, 'of agriculture land': 579848, 'agriculture land reform': 38998, 'land reform and': 479293, 'reform and rural': 706710, 'and rural development': 70655, 'rural development thoko': 728238, 'development thoko didiza': 239849, 'thoko didiza say': 891706, 'didiza say the': 240967, 'say the country': 739272, 'food supply no': 316972, 'supply no need': 825592, 'panic buying ahead': 637636, 'buying ahead of': 149874, 'of the 21': 590767, 'the 21 day': 848034, '21 day lock': 14990, 'day lock down': 227921, 'woodford': 1004294, 'gvt': 369270, 'stophoard': 805341, 'photo in': 655178, 'in waitrose': 430646, 'waitrose south': 964481, 'south woodford': 786792, 'woodford all': 1004295, 'one please': 606888, 'please press': 660329, 'press gvt': 671053, 'gvt serious': 369273, 'action is': 30051, 'now exhausted': 574640, 'exhausted staff': 290169, 'staff old': 792712, 'man and': 511988, 'poor old': 664241, 'man starving': 512248, 'starving heartbroken': 795256, 'heartbroken stophoard': 388434, 'this photo in': 889559, 'photo in waitrose': 655179, 'in waitrose south': 430648, 'waitrose south woodford': 964482, 'south woodford all': 786793, 'woodford all shelf': 1004296, 'all shelf like': 44308, 'shelf like this': 757286, 'this one please': 889248, 'one please press': 606889, 'please press gvt': 660331, 'press gvt serious': 671054, 'gvt serious action': 369274, 'serious action is': 751332, 'action is needed': 30053, 'is needed now': 449864, 'needed now exhausted': 556448, 'now exhausted staff': 574641, 'exhausted staff old': 290170, 'staff old man': 792713, 'old man and': 598342, 'man and poor': 511991, 'and poor old': 69192, 'poor old man': 664242, 'old man starving': 598351, 'man starving heartbroken': 512249, 'starving heartbroken stophoard': 795257, 'an army': 55403, '900 00': 23358, '00 woman': 602, 'the without': 871646, 'an army of': 55405, 'army of 900': 93019, 'of 900 00': 579683, '900 00 woman': 23361, '00 woman is': 603, 'woman is fighting': 1003533, 'is fighting the': 447794, 'fighting the without': 305136, 'the without mask': 871647, 'without mask or': 1002777, 'mask or hand': 519070, 'hand sanitizer via': 375643, 'coronatamilnadu': 205286, 'shopping cardboard': 762290, 'cardboard could': 163717, 'could bring': 208971, 'bring right': 140060, 'home coronaupdate': 400942, 'coronaupdate coronatamilnadu': 205329, 'still doing online': 800449, 'online shopping cardboard': 609064, 'shopping cardboard could': 762291, 'cardboard could bring': 163718, 'could bring right': 208972, 'bring right into': 140061, 'right into your': 721968, 'your home coronaupdate': 1024345, 'home coronaupdate coronatamilnadu': 400943, 'poitin': 662821, 'distillery pivot': 247789, 'from poitin': 336944, 'poitin to': 662822, 'distillery pivot from': 247790, 'pivot from poitin': 657085, 'from poitin to': 336945, 'poitin to hand': 662823, 'to hand sanitizers': 907121, 'sanitizers in response': 736319, 'your turn to': 1026229, 'turn to go': 935781, 'theindiansun': 872408, 'market volatility': 517301, 'volatility drop': 960071, 'in equity': 422590, 'equity price': 279961, 'to result': 913438, 'the contraction': 851690, 'contraction of': 201802, 'australia retail': 103366, 'retail saving': 718518, 'saving investment': 737895, 'investment market': 444030, '2020 predicts': 14523, 'predicts globaldata': 669685, 'globaldata theindiansun': 352310, 'rise in the': 722911, 'the market volatility': 860173, 'market volatility drop': 517302, 'volatility drop in': 960072, 'drop in equity': 260242, 'in equity price': 422592, 'equity price due': 279963, 'to outbreak is': 911266, 'outbreak is set': 628380, 'set to result': 753532, 'to result in': 913439, 'in the contraction': 429096, 'the contraction of': 851691, 'contraction of australia': 201803, 'of australia retail': 580455, 'australia retail saving': 103367, 'retail saving investment': 718519, 'saving investment market': 737896, 'investment market in': 444031, 'market in 2020': 516547, 'in 2020 predicts': 419852, '2020 predicts globaldata': 14524, 'predicts globaldata theindiansun': 669686, 'is box': 446250, 'box full': 137070, 'mom just': 535764, 'ordered swear': 618904, 'god toiletpaper': 354820, 'this is box': 888195, 'is box full': 446251, 'box full of': 137071, 'paper my mom': 640480, 'my mom just': 549277, 'mom just ordered': 535767, 'just ordered swear': 469406, 'ordered swear to': 618905, 'to god toiletpaper': 906896, 'stopitplease': 805535, 'gmtv': 353215, 'gmb': 353192, 'be saying': 117003, 'saying this': 739735, 'this loudly': 888717, 'loudly when': 504505, 'hoarding stop': 399544, 'please coronacrisis': 659857, 'coronacrisis stopitplease': 204792, 'stopitplease stophoarding': 805536, 'stophoarding gmtv': 805402, 'gmtv gmb': 353216, 'of the nurse': 591283, 'the nurse who': 861988, 'nurse who could': 577545, 'who could not': 988509, 'not get food': 569588, 'get food in': 347046, 'supermarket we should': 823753, 'we should all': 973253, 'should all be': 765486, 'all be saying': 42142, 'be saying this': 117005, 'saying this loudly': 739738, 'this loudly when': 888718, 'loudly when we': 504506, 'we see people': 973166, 'people hoarding stop': 648278, 'hoarding stop it': 399545, 'stop it please': 804790, 'it please coronacrisis': 460356, 'please coronacrisis stopitplease': 659858, 'coronacrisis stopitplease stophoarding': 204793, 'stopitplease stophoarding gmtv': 805537, 'stophoarding gmtv gmb': 805403, 'improperly': 419511, 'so pissed': 778010, 'pissed seeing': 656980, 'when healthcare': 983555, 'them also': 875355, 'even preventing': 284491, 'preventing you': 671830, 'anything when': 80938, 'when used': 984371, 'used improperly': 949936, 'just get so': 468804, 'get so pissed': 348029, 'so pissed seeing': 778012, 'pissed seeing people': 656981, 'seeing people wear': 746414, 'people wear mask': 650169, 'store when healthcare': 811241, 'when healthcare worker': 983556, 'healthcare worker need': 387368, 'worker need them': 1007429, 'need them also': 555770, 'them also it': 875357, 'also it not': 48441, 'it not even': 459874, 'not even preventing': 569271, 'even preventing you': 284492, 'preventing you from': 671831, 'you from anything': 1018708, 'from anything when': 334561, 'anything when used': 80939, 'when used improperly': 984372, 'logistic': 500690, 'tatter': 834853, 'about 25': 24680, '25 30': 15813, 'order had': 618280, 'cancelled overseas': 161157, 'term seek': 838287, 'price domestic': 673486, 'domestic manufacturing': 253204, 'manufacturing unit': 513683, 'unit are': 942038, 'shut and': 767783, 'and logistic': 66330, 'logistic chain': 500693, 'in tatter': 428826, 'tatter even': 834854, 'though port': 892875, 'port are': 664874, 'are somewhat': 90305, 'somewhat functioning': 785260, 'about 25 30': 24682, '25 30 of': 15814, '30 of order': 17144, 'of order had': 587336, 'order had been': 618281, 'had been cancelled': 372887, 'been cancelled overseas': 120793, 'cancelled overseas buyer': 161158, 'contract term seek': 201705, 'term seek cut': 838288, 'product price domestic': 681540, 'price domestic manufacturing': 673487, 'domestic manufacturing unit': 253205, 'manufacturing unit are': 513684, 'unit are shut': 942040, 'are shut and': 90089, 'shut and logistic': 767784, 'and logistic chain': 66331, 'logistic chain in': 500695, 'chain in tatter': 170816, 'in tatter even': 428827, 'tatter even though': 834855, 'even though port': 284713, 'though port are': 892876, 'port are somewhat': 664875, 'are somewhat functioning': 90306, 'perfumed': 651544, 'sparkle': 787609, 'sparklesanitizer': 787612, 'the al': 848538, 'al halal': 40569, 'halal perfumed': 374113, 'perfumed sparkle': 651549, 'sparkle sanitizer': 787610, 'spray 100ml': 790252, '100ml perfume': 2202, 'perfume from': 651521, 'comfort and': 187818, 'from join': 336156, 'maintain hygienic': 508981, 'hygienic environment': 412214, 'environment with': 279178, 'this fragrance': 887603, 'fragrance sparklesanitizer': 330927, 'sparklesanitizer sanitizer': 787613, 'sanitizer tuesday': 735977, 'get the al': 348220, 'the al halal': 848540, 'al halal perfumed': 40570, 'halal perfumed sparkle': 374114, 'perfumed sparkle sanitizer': 651550, 'sparkle sanitizer spray': 787611, 'sanitizer spray 100ml': 735777, 'spray 100ml perfume': 790253, '100ml perfume from': 2203, 'perfume from the': 651522, 'the comfort and': 851187, 'comfort and safety': 187820, 'your home from': 1024355, 'home from join': 401266, 'from join the': 336158, 'the fight to': 855169, 'fight to maintain': 304925, 'to maintain hygienic': 909577, 'maintain hygienic environment': 508982, 'hygienic environment with': 412215, 'environment with this': 279179, 'with this fragrance': 1001698, 'this fragrance sparklesanitizer': 887604, 'fragrance sparklesanitizer sanitizer': 330928, 'sparklesanitizer sanitizer tuesday': 787614, 'negotiating': 556935, 'seen gas': 747030, 'low since': 505604, 'industry because': 435684, 'it negotiating': 459764, 'negotiating with': 556946, 'now 1950': 573898, '1950 12': 12373, '12 cent': 2836, 'gallon 2020': 342963, '2020 84': 14119, '84 gallon': 22873, 'trump said we': 933810, 'said we haven': 731568, 'we haven seen': 971995, 'haven seen gas': 383883, 'seen gas price': 747032, 'gas price this': 344036, 'this low since': 888727, 'low since the': 505611, 'since the 50': 770860, 'the 50 and': 848136, '50 and we': 19612, 'need to bail': 555864, 'oil industry because': 596882, 'industry because of': 435685, 'because of it': 119362, 'of it negotiating': 585421, 'it negotiating with': 459765, 'negotiating with them': 556947, 'with them now': 1001617, 'them now 1950': 876060, 'now 1950 12': 573899, '1950 12 cent': 12374, '12 cent gallon': 2837, 'cent gallon 2020': 169059, 'gallon 2020 84': 342964, '2020 84 gallon': 14120, 'wa more': 962647, 'more prepared': 540122, 'fight than': 304881, 'store wa more': 811117, 'wa more prepared': 962649, 'more prepared to': 540125, 'prepared to fight': 670252, 'to fight than': 905812, 'fight than the': 304882, 'than the federal': 841235, 'consumer also': 196173, 'face liquidity': 294502, 'liquidity problem': 494150, 'see their': 745899, 'their eu': 873181, 'eu right': 283264, 'right reduced': 722247, 'reduced because': 706031, 'full reaction': 340838, 'reaction here': 700197, 'spot on consumer': 790085, 'on consumer consumer': 600036, 'consumer consumer also': 196949, 'consumer also face': 196174, 'also face liquidity': 48188, 'face liquidity problem': 294503, 'liquidity problem and': 494151, 'problem and should': 679456, 'and should not': 71594, 'should not see': 766262, 'not see their': 571488, 'see their eu': 745903, 'their eu right': 873182, 'eu right reduced': 283265, 'right reduced because': 722248, 'reduced because of': 706032, '19 full reaction': 7163, 'full reaction here': 340839, 'sask': 736874, 'spirited': 789526, 'watch some': 968528, 'some sask': 783801, 'sask distillery': 736875, 'distillery are': 247731, 'putting together': 691264, 'together spirited': 920947, 'spirited effort': 789529, 'in combating': 421578, 'combating the': 187075, 'novel via': 573823, 'via read': 956195, 'watch some sask': 968530, 'some sask distillery': 783802, 'sask distillery are': 736876, 'distillery are putting': 247733, 'are putting together': 89365, 'putting together spirited': 691270, 'together spirited effort': 920948, 'spirited effort in': 789530, 'effort in combating': 269531, 'in combating the': 421581, 'combating the novel': 187077, 'the novel via': 861926, 'novel via read': 573824, 'via read more': 956196, 'wit': 996896, 'itv watching': 464015, 'watching wit': 968823, 'wit cleaning': 996901, 'cleaning out': 181001, 'store stophoarding': 810410, 'london panicbuyinguk': 501150, 'itv watching wit': 464016, 'watching wit cleaning': 968824, 'wit cleaning out': 996902, 'cleaning out our': 181004, 'out our store': 626994, 'our store stophoarding': 624955, 'store stophoarding london': 810411, 'stophoarding london panicbuyinguk': 805426, 'kccaatwork': 471193, 'aceng': 28994, 'distancing even': 247132, 'essential example': 281019, 'from denmark': 335132, 'denmark supermarket': 237027, 'supermarket lessen': 821291, 'lessen chance': 486435, 'infection from': 436758, 'from kccaatwork': 336167, 'kccaatwork aceng': 471194, 'social distancing even': 779603, 'distancing even we': 247133, 'even we buy': 284770, 'we buy food': 970876, 'and essential example': 62251, 'essential example to': 281020, 'example to learn': 288990, 'learn from denmark': 483962, 'from denmark supermarket': 335133, 'denmark supermarket lessen': 237028, 'supermarket lessen chance': 821292, 'lessen chance of': 486436, 'chance of infection': 171758, 'of infection from': 585162, 'infection from kccaatwork': 436759, 'from kccaatwork aceng': 336168, 'teampete': 835877, 'teampeteforever': 835880, 'rulesoftheroad': 727441, 'discipline': 244357, 'excellence': 289063, 'store rest': 809838, 'assured ll': 97115, 'glove we': 353015, 'cannot take': 162160, 'any risk': 79764, 'risk during': 723503, 'pandemic teampete': 636626, 'teampete teampeteforever': 835878, 'teampeteforever rulesoftheroad': 835881, 'rulesoftheroad respect': 727442, 'respect teamwork': 715054, 'teamwork responsibility': 835905, 'responsibility discipline': 715938, 'discipline excellence': 244358, 'grocery store rest': 365717, 'store rest assured': 809839, 'rest assured ll': 716150, 'assured ll be': 97116, 'll be wearing': 496646, 'be wearing glove': 118076, 'wearing glove we': 974645, 'glove we cannot': 353017, 'we cannot take': 971085, 'cannot take any': 162161, 'take any risk': 831949, 'any risk during': 79765, 'risk during the': 723505, 'the pandemic teampete': 863118, 'pandemic teampete teampeteforever': 636627, 'teampete teampeteforever rulesoftheroad': 835879, 'teampeteforever rulesoftheroad respect': 835882, 'rulesoftheroad respect teamwork': 727443, 'respect teamwork responsibility': 715055, 'teamwork responsibility discipline': 835906, 'responsibility discipline excellence': 715939, 'fmcg firm': 311728, 'firm reduce': 308408, 'reduce hand': 705850, 'price per': 675857, 'per govt': 650872, 'govt order': 361233, 'fmcg firm reduce': 311730, 'firm reduce hand': 308409, 'reduce hand sanitizer': 705852, 'sanitizer price per': 735585, 'price per govt': 675859, 'per govt order': 650873, 'fractionalshares': 330870, 'checkitout': 174865, 'optionstrading': 614160, '1am': 12578, 'mondaymorning': 536441, 'mondaymotivaton': 536479, 'mondaymood': 536429, 'shopping fractionalshares': 762740, 'fractionalshares your': 330873, 'your free': 1023949, 'free stock': 332196, 'you checkitout': 1017942, 'checkitout taking': 174866, 'drop low': 260295, 'price stockmarket': 676668, 'stockmarket stock': 803673, 'stock optionstrading': 802578, 'optionstrading app': 614161, 'app 1am': 81665, '1am mondaymorning': 12579, 'mondaymorning mondaymotivaton': 536447, 'mondaymotivaton mondaymood': 536481, 'mondaymood quarantine': 536435, 'going shopping fractionalshares': 355449, 'shopping fractionalshares your': 762741, 'fractionalshares your free': 330874, 'your free stock': 1023954, 'free stock is': 332197, 'stock is waiting': 802315, 'is waiting for': 453732, 'for you checkitout': 328045, 'you checkitout taking': 1017943, 'checkitout taking advantage': 174867, 'of the drop': 590966, 'the drop low': 853710, 'drop low price': 260297, 'low price stockmarket': 505539, 'price stockmarket stock': 676669, 'stockmarket stock optionstrading': 803674, 'stock optionstrading app': 802579, 'optionstrading app 1am': 614162, 'app 1am mondaymorning': 81666, '1am mondaymorning mondaymotivaton': 12580, 'mondaymorning mondaymotivaton mondaymood': 536448, 'mondaymotivaton mondaymood quarantine': 536483, 'governor lee': 360936, 'say tn': 739380, 'tn ha': 899386, 'hurt that': 411610, 'he caution': 384829, 'caution against': 168155, 'purchase live': 689539, 'governor lee say': 360937, 'lee say tn': 485328, 'say tn ha': 739381, 'tn ha strong': 899388, 'hoarding hurt that': 399372, 'hurt that he': 411611, 'that he caution': 844254, 'he caution against': 384830, 'caution against hoarding': 168156, 'and panic purchase': 68661, 'panic purchase live': 638447, 'purchase live on': 689540, 'live on right': 495963, 'novacyt': 573713, 'ncyt': 553374, 'novacyt ncyt': 573714, 'ncyt demand': 553375, 'private testing': 678993, 'kit is': 475583, 'skyrocketing with': 773458, 'price also': 672290, 'also rising': 48800, 'rapidly one': 696996, 'one supplier': 607145, 'supplier increased': 824558, 'it test': 461469, 'test by': 838948, 'cent over': 169102, 'weekend private': 977394, 'private lab': 678930, 'lab struggle': 478285, 'novacyt ncyt demand': 573715, 'ncyt demand for': 553376, 'demand for private': 235480, 'for private testing': 324756, 'private testing kit': 678994, 'testing kit is': 839542, 'kit is skyrocketing': 475584, 'is skyrocketing with': 451959, 'skyrocketing with price': 773459, 'with price also': 1000298, 'price also rising': 672295, 'also rising rapidly': 48801, 'rising rapidly one': 723280, 'rapidly one supplier': 696997, 'one supplier increased': 607146, 'supplier increased the': 824559, 'increased the cost': 433491, 'cost of it': 208050, 'of it test': 585453, 'it test by': 461470, 'test by 25': 838949, 'by 25 per': 151609, '25 per cent': 15944, 'per cent over': 650757, 'cent over the': 169103, 'over the weekend': 630784, 'the weekend private': 871334, 'weekend private lab': 977395, 'private lab struggle': 678931, 'lab struggle to': 478286, 'struggle to cope': 814385, 'profited': 682936, 'disinformation': 245942, 'trump tell': 933899, 'tell whether': 837134, 'whether or': 985543, '19 existed': 6884, 'existed prior': 290263, 'truth will': 934418, 'out eventually': 626025, 'eventually every': 285152, 'every government': 285917, 'official whom': 595975, 'whom profited': 990568, 'profited from': 682939, 'low stock': 505643, 'to disinformation': 904406, 'come on trump': 187450, 'on trump tell': 604865, 'trump tell whether': 933901, 'tell whether or': 837135, 'whether or not': 985545, 'covid 19 existed': 213055, '19 existed prior': 6885, 'existed prior to': 290264, 'prior to this': 678382, 'to this year': 917484, 'year we know': 1015086, 'know it been': 476519, 'it been around': 456791, 'been around for': 120678, 'around for several': 93295, 'several year the': 753978, 'year the truth': 1015003, 'the truth will': 870095, 'truth will come': 934419, 'will come out': 992970, 'come out eventually': 187465, 'out eventually every': 626026, 'eventually every government': 285153, 'every government official': 285918, 'government official whom': 360414, 'official whom profited': 595976, 'whom profited from': 990569, 'profited from low': 682940, 'from low stock': 336287, 'low stock price': 505645, 'stock price due': 802712, 'due to disinformation': 261763, 'almost going': 46650, 'to finish': 905964, 'finish please': 307861, 'please rescue': 660393, 'rescue from': 713616, 'here before': 392812, 'one get': 606340, 'infected this': 436649, 'reached phase': 700054, 'phase of': 654624, 'stock is almost': 802303, 'is almost going': 445500, 'almost going to': 46651, 'going to finish': 355602, 'to finish please': 905967, 'finish please rescue': 307862, 'please rescue from': 660394, 'rescue from here': 713617, 'from here before': 335775, 'here before any': 392813, 'before any one': 122639, 'any one get': 79554, 'one get infected': 606341, 'get infected this': 347333, 'infected this country': 436650, 'country ha reached': 210722, 'ha reached phase': 371636, 'reached phase of': 700055, 'phase of covid': 654628, 'purse': 690199, 'usually shopping': 951155, 'for designer': 320665, 'designer purse': 238388, 'purse or': 690207, 'or fashion': 615274, 'fashion item': 299822, 'online after': 607782, 'work now': 1005504, 'now hunting': 574961, 'usually shopping for': 951156, 'shopping for designer': 762671, 'for designer purse': 320667, 'designer purse or': 238389, 'purse or fashion': 690208, 'or fashion item': 615275, 'fashion item online': 299823, 'item online after': 463516, 'online after work': 607785, 'after work now': 36568, 'work now hunting': 1005505, 'now hunting for': 574962, 'paper this is': 640905, 'is what it': 453882, 'what it come': 981745, 'come to in': 187577, 'to in this': 908235, 'in this quarantine': 430003, 'chiang': 175617, 'mai': 508531, 'chiang mai': 175618, 'mai resident': 508534, 'resident scramble': 714358, 'supply official': 825658, 'official say': 595908, 'panic thailand': 638665, 'chiang mai resident': 175619, 'mai resident scramble': 508535, 'resident scramble to': 714359, 'scramble to buy': 742543, 'buy food supply': 148676, 'food supply official': 316975, 'supply official say': 825659, 'official say no': 595911, 'say no need': 738983, 'to panic thailand': 911429, 'coronavirus how': 206096, 'avoid scammer': 105264, 'scammer during': 740566, 'outbreak 19': 627936, 'coronavirus how to': 206099, 'to avoid scammer': 900936, 'avoid scammer during': 105265, 'scammer during the': 740567, '19 outbreak 19': 9072, 'outbreak 19 corona': 627937, 'threadbare': 893622, 'feeling went': 303108, 'were threadbare': 980258, 'threadbare from': 893623, 'the numpties': 861974, 'numpties panic': 577150, 'only confirmed': 610262, 'control these': 202183, 'ppl have': 668243, 'no respect': 565340, 'other ppl': 620746, 'know the feeling': 476823, 'the feeling went': 855104, 'feeling went to': 303109, 'my supermarket today': 550283, 'today and the': 919228, 'shelf were threadbare': 757776, 'were threadbare from': 980259, 'threadbare from the': 893624, 'from the numpties': 337810, 'the numpties panic': 861975, 'numpties panic buying': 577151, 'are only confirmed': 88763, 'only confirmed case': 610263, '19 in my': 7768, 'my local area': 549096, 'local area and': 497691, 'area and it': 91938, 'and it way': 65599, 'it way out': 462271, 'of control these': 581849, 'control these ppl': 202184, 'these ppl have': 880511, 'ppl have no': 668245, 'have no respect': 381652, 'no respect for': 565341, 'respect for other': 714995, 'for other ppl': 324175, 'pint': 656847, 'max asked': 520741, 'after cancelled': 35454, 'cancelled our': 161151, 'our order': 624170, 'order last': 618358, 'last minute': 480318, 'minute told': 533880, 'told him': 923572, 'him we': 396768, 'bought what': 136778, 'we needed': 972571, 'needed until': 556562, 'until today': 943908, 'today now': 919951, 'left pregnant': 485609, 'isolate we': 454937, 'few egg': 303813, 'egg half': 269879, 'half pint': 374250, 'pint milk': 656852, 'rice left': 721075, 'left essential': 485456, 'max asked why': 520742, 'asked why we': 95912, 'why we are': 991516, 'we are going': 970578, 'supermarket after cancelled': 818800, 'after cancelled our': 35455, 'cancelled our order': 161153, 'our order last': 624172, 'order last minute': 618359, 'last minute told': 480321, 'minute told him': 533881, 'told him we': 923577, 'him we only': 396769, 'we only bought': 972647, 'only bought what': 610190, 'bought what we': 136780, 'what we needed': 982559, 'we needed until': 972580, 'needed until today': 556563, 'until today now': 943909, 'today now have': 919953, 'now have no': 574878, 'food left pregnant': 315294, 'left pregnant woman': 485610, 'pregnant woman are': 669845, 'woman are now': 1003409, 'are now told': 88610, 'now told to': 576203, 'to isolate we': 908546, 'isolate we have': 454938, 'we have few': 971815, 'have few egg': 380608, 'few egg half': 303814, 'egg half pint': 269880, 'half pint milk': 374251, 'pint milk rice': 656853, 'milk rice left': 531805, 'rice left essential': 721076, 'pop into': 664429, 'your mother': 1024891, 'mother the': 543176, 'virus this': 958907, 'day lt': 227950, 'pop into store': 664430, 'into store and': 443015, 'store and give': 806248, 'give your mother': 350887, 'your mother the': 1024894, 'mother the corona': 543177, 'corona virus this': 204365, 'virus this mother': 958911, 'this mother day': 889048, 'mother day lt': 543083, 'lai': 478998, 'mohammed': 535565, 'lacasadepapel4': 478582, 'pandemic most': 635986, 'of depend': 582534, 'internet for': 441943, 'am pleading': 50307, 'reduced by': 706035, 'by telecommunication': 154225, 'nigeria please': 562785, 'retweet till': 720088, 'till lai': 896045, 'lai mohammed': 478999, 'mohammed and': 535566, 'help see': 390497, 'this lacasadepapel4': 888582, 'with respect to': 1000483, 'respect to the': 715085, '19 pandemic most': 9399, 'pandemic most of': 635987, 'most of depend': 542545, 'of depend on': 582535, 'depend on the': 237326, 'the internet for': 858384, 'internet for lot': 441944, 'of thing am': 591890, 'thing am pleading': 884113, 'am pleading for': 50308, 'pleading for data': 659583, 'for data price': 320550, 'to be reduced': 901491, 'be reduced by': 116736, 'reduced by telecommunication': 706037, 'by telecommunication company': 154226, 'telecommunication company in': 836704, 'company in nigeria': 190766, 'in nigeria please': 425882, 'nigeria please retweet': 562786, 'please retweet till': 660415, 'retweet till lai': 720089, 'till lai mohammed': 896046, 'lai mohammed and': 479000, 'mohammed and people': 535567, 'and people who': 68891, 'people who can': 650270, 'who can help': 988390, 'can help see': 158654, 'help see this': 390499, 'see this lacasadepapel4': 745949, 'yahoo': 1014046, 'diversifying': 248550, 'back2back': 107495, 'even yahoo': 284839, 'yahoo boy': 1014048, 'boy are': 137241, 'are diversifying': 85872, 'diversifying client': 248551, 'dying like': 263843, 'like hit': 490437, 'hit track': 398486, 'track back2back': 928167, 'back2back saw': 107498, 'saw one': 738194, 'one posting': 606910, 'posting nose': 666667, 'nose mask': 567896, 'sale dm': 732164, 'price stayhomesavelives': 676636, 'even yahoo boy': 284840, 'yahoo boy are': 1014049, 'boy are diversifying': 137242, 'are diversifying client': 85873, 'diversifying client are': 248552, 'client are dying': 182005, 'are dying like': 86049, 'dying like hit': 263844, 'like hit track': 490438, 'hit track back2back': 398487, 'track back2back saw': 928168, 'back2back saw one': 107499, 'saw one posting': 738196, 'one posting nose': 606911, 'posting nose mask': 666668, 'nose mask for': 567898, 'for sale dm': 325313, 'sale dm for': 732165, 'dm for price': 248893, 'for price stayhomesavelives': 324729, '363': 18042, 'gmt': 353204, 'mitrade': 534567, 'pc': 645866, 'bloomberg': 133255, 'latest pm': 481492, 'pm struggle': 661997, 'the noon': 861850, 'price 29': 672143, '29 38': 16458, '38 363': 18124, '363 watch': 18043, 'at 12': 97449, '12 30pm': 2797, '30pm gmt': 17508, 'gmt 11': 353207, '11 on': 2568, 'on mitrade': 602139, 'mitrade pc': 534568, 'pc bloomberg': 645873, 'latest pm struggle': 481493, 'pm struggle to': 661998, 'struggle to recover': 814393, 'to recover from': 912987, 'from the noon': 337808, 'the noon price': 861851, 'noon price 29': 566857, 'price 29 38': 672144, '29 38 363': 16459, '38 363 watch': 18125, '363 watch out': 18044, 'out for 19': 626095, 'for 19 price': 318711, '19 price at': 9804, 'price at 12': 672783, 'at 12 30pm': 97451, '12 30pm gmt': 2799, '30pm gmt 11': 17509, 'gmt 11 on': 353208, '11 on mitrade': 2569, 'on mitrade pc': 602140, 'mitrade pc bloomberg': 534569, 'illinois governor': 416286, 'pritzker order': 678777, 'order stay': 618595, 'home starting': 402115, 'starting saturday': 794992, 'saturday until': 737072, '2020 chicago': 14222, 'chicago coronacrisis': 175661, 'stophoarding stayathomechallenge': 805471, 'stayathomechallenge socialdistanacing': 797749, 'illinois governor pritzker': 416287, 'governor pritzker order': 360973, 'pritzker order stay': 678778, 'order stay at': 618596, 'at home starting': 99116, 'home starting saturday': 402116, 'starting saturday until': 794993, 'saturday until april': 737073, 'until april 2020': 943692, 'april 2020 chicago': 83460, '2020 chicago coronacrisis': 14223, 'chicago coronacrisis staysafestayhome': 175662, 'coronacrisis staysafestayhome stayathome': 204782, 'stayathome stophoarding stayathomechallenge': 797673, 'stophoarding stayathomechallenge socialdistanacing': 805472, 'feeking': 302538, 'feeking selfish': 302539, 'buying panicshopping': 150881, 'feeking selfish panic': 302540, 'panic buying panicshopping': 637842, 'buying panicshopping uk': 150882, 'ingested': 438309, 'phosphate': 655102, 'alert warning': 41537, 'people away': 647204, 'buying product': 150927, 'cure the': 220819, 'warning followed': 967120, 'followed the': 312611, 'an arizona': 55395, 'arizona man': 92841, 'who ingested': 989036, 'ingested chloroquine': 438310, 'chloroquine phosphate': 177610, 'phosphate intended': 655108, 'fda ha issued': 300868, 'ha issued consumer': 371003, 'consumer alert warning': 196162, 'alert warning people': 41539, 'warning people away': 967180, 'people away from': 647206, 'away from buying': 105865, 'from buying product': 334780, 'buying product that': 150929, 'prevent treat or': 671754, 'treat or cure': 930857, 'or cure the': 614871, 'cure the warning': 220824, 'the warning followed': 871093, 'warning followed the': 967121, 'followed the death': 312612, 'death of an': 230140, 'of an arizona': 580103, 'an arizona man': 55396, 'arizona man who': 92842, 'man who ingested': 512335, 'who ingested chloroquine': 989037, 'ingested chloroquine phosphate': 438311, 'chloroquine phosphate intended': 177613, 'phosphate intended for': 655109, 'intended for fish': 441052, 'q22': 691433, 'francisco mayor': 331119, 'mayor london': 521970, 'london breed': 501038, 'breed is': 139268, 'announce lockdown': 76847, 'lockdown that': 500001, 'last until': 480608, 'midnight tuesday': 530763, 'anything other': 80853, 'than doctor': 840507, 'shopping q22': 763703, 'san francisco mayor': 733545, 'francisco mayor london': 331120, 'mayor london breed': 521971, 'london breed is': 501039, 'breed is set': 139269, 'set to announce': 753501, 'to announce lockdown': 900549, 'announce lockdown that': 76848, 'lockdown that will': 500003, 'will last until': 993955, 'last until april': 480609, 'until april people': 943699, 'april people will': 83656, 'allowed to leave': 46236, 'their home after': 873556, 'after midnight tuesday': 35932, 'midnight tuesday for': 530764, 'for anything other': 319462, 'anything other than': 80854, 'other than doctor': 621062, 'than doctor visit': 840508, 'or grocery shopping': 615526, 'grocery shopping q22': 365071, 'automatic': 103971, 'peeler': 646261, '0715783634': 1033, 'homedecor': 402665, 'kitchendecor': 475782, 'glammyhomekenya': 351561, 'automatic fruit': 103974, 'fruit potato': 339126, 'potato peeler': 666965, 'peeler make': 646262, 'via 0715783634': 955770, '0715783634 remember': 1034, 'family household': 297898, 'household homedecor': 406833, 'homedecor kitchendecor': 402666, 'kitchendecor glammyhomekenya': 475783, 'automatic fruit potato': 103975, 'fruit potato peeler': 339127, 'potato peeler make': 666966, 'peeler make your': 646263, 'make your order': 510766, 'your order via': 1025109, 'order via 0715783634': 618738, 'via 0715783634 remember': 955771, '0715783634 remember to': 1035, 'remember to keep': 710373, 'keep safe during': 471876, 'safe during this': 729616, '19 outbreak online': 9162, 'shopping is great': 763047, 'is great idea': 448197, 'great idea for': 362727, 'your family household': 1023787, 'family household homedecor': 297899, 'household homedecor kitchendecor': 406834, 'homedecor kitchendecor glammyhomekenya': 402667, 'little strange': 495588, 'strange to': 812435, 'see line': 745359, 'line marking': 493254, 'marking so': 517913, 'keep foot': 471517, 'done much': 254941, 'much appreciated': 544720, 'appreciated socialdistancing': 82836, 'socialdistancing mondaythoughts': 780532, 'little strange to': 495589, 'strange to see': 812436, 'to see line': 914034, 'see line marking': 745360, 'line marking so': 493255, 'marking so people': 517914, 'so people keep': 778000, 'people keep foot': 648572, 'keep foot apart': 471518, 'foot apart in': 318345, 'apart in line': 81289, 'store well done': 811205, 'well done much': 978192, 'done much appreciated': 254942, 'much appreciated socialdistancing': 544725, 'appreciated socialdistancing mondaythoughts': 82837, 'zev': 1027528, 'with zev': 1002250, 'zev we': 1027529, 'we solved': 973340, 'solved the': 782186, 'of french': 583937, 'french consumer': 332721, 'the booked': 849844, 'booked accommodation': 134655, 'accommodation in': 28451, 'poland web': 662866, 'together with zev': 921047, 'with zev we': 1002251, 'zev we solved': 1027530, 'we solved the': 973341, 'solved the problem': 782188, 'problem of french': 679626, 'of french consumer': 583938, 'french consumer who': 332723, 'consumer who could': 199518, 'could not use': 209465, 'not use the': 572361, 'use the booked': 949654, 'the booked accommodation': 849845, 'booked accommodation in': 134656, 'accommodation in poland': 28453, 'in poland web': 426819, 'business central': 143511, 'central to': 169433, 'and effort': 61966, 'effort have': 269524, 'have posted': 382003, 'posted 00s': 666509, 'job listing': 465957, 'listing online': 494871, 'but which': 147842, 'hiring from': 397100, 'nurse run': 577470, 'run down': 727605, 'new listing': 559042, 'listing find': 494844, 'full here': 340629, 'business central to': 143512, 'central to the': 169434, 'to the and': 916492, 'the and effort': 848693, 'and effort have': 61969, 'effort have posted': 269526, 'have posted 00s': 382004, 'posted 00s of': 666510, '00s of job': 710, 'of job listing': 585534, 'job listing online': 465958, 'listing online but': 494872, 'online but which': 607972, 'but which sector': 147844, 'sector are hiring': 744099, 'are hiring from': 87182, 'hiring from delivery': 397101, 'from delivery driver': 335125, 'delivery driver to': 233947, 'driver to nurse': 259805, 'to nurse run': 910758, 'nurse run down': 577471, 'run down the': 727607, 'down the new': 257288, 'the new listing': 861526, 'new listing find': 559044, 'listing find the': 494845, 'find the table': 307304, 'table in full': 831478, 'in full here': 423165, 'trumpedupvirus': 934036, 'government trumpedupvirus': 360748, 'trust the grocery': 934319, 'grocery store more': 365575, 'than the government': 841242, 'the government trumpedupvirus': 856615, 'recession sharply': 704354, 'sharply lower': 755751, 'pemex due': 646397, 'to falling': 905645, 'economy contract': 267781, 'contract in': 201667, 'storm of potential': 811827, 'potential recession sharply': 667127, 'recession sharply lower': 704355, 'sharply lower revenue': 755754, 'producer pemex due': 680687, 'pemex due to': 646398, 'due to falling': 261784, 'to falling crude': 905646, 'falling crude price': 297227, 'price and drop': 672400, 'and drop in': 61760, 'drop in tourism': 260280, 'the economy contract': 853953, 'economy contract in': 267782, 'minus': 533683, 'been social': 122000, 'son for': 785375, 'day minus': 227980, 'minus the': 533690, 'the 37': 848095, '37 min': 18080, 'min went': 532592, 'which cried': 985794, 'cried standing': 216757, 'standing over': 793801, 'my sink': 550100, 'sink my': 771476, 'son ha': 785379, 'food allergy': 313092, 'allergy woman': 45799, 'last loaf': 480292, 'brand of': 137940, 'bread he': 138484, 'he eats': 384923, 'eats gave': 266373, 'gave it': 344629, 'have been social': 379687, 'been social distancing': 122001, 'distancing my son': 247347, 'my son for': 550155, 'son for day': 785376, 'for day minus': 320576, 'day minus the': 227981, 'minus the 37': 533691, 'the 37 min': 848096, '37 min went': 18081, 'min went to': 532593, 'store after which': 806086, 'after which cried': 36533, 'which cried standing': 985795, 'cried standing over': 216758, 'standing over my': 793802, 'over my sink': 630425, 'my sink my': 550101, 'sink my son': 771477, 'my son ha': 550156, 'son ha food': 785381, 'ha food allergy': 370645, 'food allergy woman': 313097, 'allergy woman who': 45800, 'woman who took': 1003686, 'who took the': 989804, 'took the last': 925341, 'the last loaf': 859020, 'last loaf of': 480293, 'loaf of the': 497369, 'of the brand': 590829, 'the brand of': 849941, 'brand of bread': 137941, 'of bread he': 580841, 'bread he eats': 138485, 'he eats gave': 384924, 'eats gave it': 266374, 'gave it to': 344631, 'it to me': 461732, 'to me when': 909969, 'me when asked': 523936, '6randonl': 21668, '219': 15084, '9739': 23710, '6randonl well': 21669, 'assistance customer': 96679, '800 219': 22654, '219 9739': 15085, '9739 to': 23711, 'with qualified': 1000372, 'specialist about': 788113, 'business loan': 144008, '6randonl well fargo': 21670, '19 if they': 7664, 'they need assistance': 882718, 'need assistance customer': 554484, 'assistance customer can': 96680, 'customer can call': 222222, 'can call 800': 157851, 'call 800 219': 155721, '800 219 9739': 22655, '219 9739 to': 15086, '9739 to speak': 23712, 'to speak with': 914966, 'speak with qualified': 787731, 'with qualified specialist': 1000373, 'qualified specialist about': 691707, 'specialist about the': 788115, 'about the option': 26467, 'option available for': 613995, 'available for their': 104385, 'their consumer small': 872865, 'small business loan': 774872, 'pertaining': 653275, 'favorite meme': 300530, 'meme pertaining': 528351, 'pertaining to': 653276, 'the pas': 863325, 'through your': 894919, 'room retweet': 725960, 'retweet it': 720057, 'it let': 459334, 'some fun': 782928, 'add your favorite': 31535, 'your favorite meme': 1023829, 'favorite meme pertaining': 300531, 'meme pertaining to': 528352, 'pertaining to the': 653280, 'to the pas': 916946, 'the pas it': 863327, 'pas it through': 643116, 'it through your': 461682, 'through your room': 894926, 'your room retweet': 1025650, 'room retweet it': 725961, 'retweet it let': 720058, 'it let have': 459335, 'let have some': 486775, 'have some fun': 382628, 'trumpcrash': 934029, 'trumptheworstpresidentever': 934171, 'cpacpatientzero': 214569, 'doe realize': 251559, 'realize how': 701840, 'by trade': 154581, 'trade with': 928617, 'china we': 177050, 'longer make': 502017, 'make anything': 509714, 'anything trumpcrash': 80923, 'trumpcrash trumpplague': 934033, 'trumpplague trumptheworstpresidentever': 934125, 'trumptheworstpresidentever cpacpatientzero': 934172, 'doe realize how': 251560, 'realize how much': 701842, 'much of our': 545195, 'driven economy is': 259315, 'driven by trade': 259289, 'by trade with': 154582, 'trade with china': 928619, 'with china we': 997634, 'china we no': 177053, 'no longer make': 564654, 'longer make anything': 502018, 'make anything trumpcrash': 509717, 'anything trumpcrash trumpplague': 80924, 'trumpcrash trumpplague trumptheworstpresidentever': 934034, 'trumpplague trumptheworstpresidentever cpacpatientzero': 934126, 'template': 837416, 'sharon': 755659, 'graham': 361745, 'twin effect': 936575, 'amp financial': 53797, 'loss due': 503662, 'to living': 909360, 'living cost': 496333, 'cost data': 207906, 'data bite': 226145, 'sized bargaining': 772821, 'bargaining draft': 111078, 'draft template': 258143, 'template lockdown': 837417, 'lockdown agreement': 499107, 'agreement amp': 38766, 'amp employer': 53717, 'employer must': 274527, 'take responsibility': 832540, 'responsibility say': 715975, 'say sharon': 739123, 'sharon graham': 755660, 'graham work': 361755, 'work voice': 1005971, 'voice pay': 959996, 'pay monthly': 644997, 'worker face the': 1006897, 'face the twin': 294802, 'the twin effect': 870132, 'twin effect of': 936576, 'effect of rising': 269059, 'of rising price': 589122, 'rising price amp': 723263, 'price amp financial': 672334, 'amp financial loss': 53798, 'financial loss due': 306488, 'loss due to': 503663, 'due to living': 261849, 'to living cost': 909362, 'living cost data': 496334, 'cost data bite': 207907, 'data bite sized': 226146, 'bite sized bargaining': 131874, 'sized bargaining draft': 772822, 'bargaining draft template': 111079, 'draft template lockdown': 258144, 'template lockdown agreement': 837418, 'lockdown agreement amp': 499108, 'agreement amp employer': 38767, 'amp employer must': 53718, 'employer must take': 274528, 'must take responsibility': 546945, 'take responsibility say': 832542, 'responsibility say sharon': 715976, 'say sharon graham': 739124, 'sharon graham work': 755661, 'graham work voice': 361756, 'work voice pay': 1005972, 'voice pay monthly': 959997, 'outing': 628985, 'not casual': 568710, 'casual outing': 166797, 'outing leave': 628988, 'way possible': 969821, 'possible when': 665876, 'are adult': 84237, 'adult and': 32791, 'and kid': 65830, 'kid together': 474147, 'be adult': 113497, 'get commonsense': 346793, 'commonsense trending': 189509, 'trending for': 931536, 'the grocery is': 856814, 'grocery is open': 364641, 'is open in': 450569, 'open in case': 612320, 'in case we': 421281, 'case we need': 166097, 'we need food': 972484, 'need food not': 554801, 'food not casual': 315561, 'not casual outing': 568711, 'casual outing leave': 166798, 'outing leave your': 628989, 'leave your kid': 485055, 'home if any': 401395, 'if any way': 413836, 'any way possible': 80037, 'way possible when': 969824, 'possible when there': 665877, 'when there are': 984223, 'there are adult': 878061, 'are adult and': 84238, 'adult and kid': 32795, 'and kid together': 65836, 'kid together that': 474148, 'together that should': 920972, 'should be adult': 765545, 'be adult in': 113498, 'and people at': 68853, 'people at home': 647173, 'at home let': 99031, 'home let get': 401522, 'let get commonsense': 486730, 'get commonsense trending': 346794, 'commonsense trending for': 189510, 'trending for real': 931539, 'is worth': 454080, 'hopefully if': 403857, 'if nothing': 414518, 'public might': 688164, 'might wish': 531171, 'future that': 342468, 'this is worth': 888473, 'is worth reading': 454087, 'reading hopefully if': 700777, 'hopefully if nothing': 403858, 'if nothing else': 414520, 'nothing else the': 572997, 'else the public': 271911, 'the public might': 864831, 'public might wish': 688165, 'might wish to': 531172, 'wish to consider': 996835, 'the future that': 856091, 'future that is': 342470, 'that is of': 844629, 'is of course': 450399, 'course if shop': 211878, 'if shop like': 414794, 'shop like survive': 760408, 'poetsandrhymers': 662389, 'telling not': 837238, 'pharmacy poetsandrhymers': 654422, 'they re telling': 883140, 're telling not': 699672, 'telling not to': 837239, 'the pharmacy poetsandrhymers': 863661, 'bravo': 138291, 'coralsprings': 203485, 'jamm': 464429, 'governor what': 361024, 'people congregating': 647524, 'congregating at': 194467, 'at super': 100689, 'is apparent': 445782, 'apparent the': 81896, 'no protocol': 565236, 'protocol just': 685990, 'visited bravo': 959460, 'bravo supermarket': 138300, 'in coralsprings': 421786, 'coralsprings fl': 203486, 'fl and': 309903, 'wa jamm': 962442, 'governor what is': 361025, 'what is being': 981679, 'being done to': 125076, 'done to limit': 255072, 'of people congregating': 587890, 'people congregating at': 647525, 'congregating at super': 194468, 'at super market': 100691, 'super market and': 818541, 'market and spreading': 515992, 'and spreading the': 72158, 'spreading the covid': 791052, 'it is apparent': 458876, 'is apparent the': 445783, 'apparent the supermarket': 81897, 'the supermarket chain': 868513, 'chain have no': 170765, 'have no protocol': 381650, 'no protocol just': 565237, 'protocol just visited': 685991, 'just visited bravo': 470185, 'visited bravo supermarket': 959461, 'bravo supermarket in': 138301, 'supermarket in coralsprings': 820883, 'in coralsprings fl': 421787, 'coralsprings fl and': 203487, 'fl and it': 309904, 'it wa jamm': 462135, 'washing the': 967728, 'gel doesn': 345105, 'matter neither': 520602, 'neither porridge': 557339, 'porridge 19': 664850, 'no hand washing': 564399, 'hand washing the': 375960, 'washing the hand': 967729, 'the hand gel': 857057, 'hand gel doesn': 374976, 'gel doesn matter': 345106, 'doesn matter neither': 251883, 'matter neither porridge': 520603, 'neither porridge 19': 557340, 'porridge 19 stophoarding': 664851, '19 stophoarding panicbuy': 10873, 'truthabtchina': 934420, 'chinese supermarket': 177358, 'city via': 179441, 'via truthabtchina': 956339, 'chinese supermarket in': 177359, 'york city via': 1016596, 'city via truthabtchina': 179443, '09032144592': 1167, 'osibanjothesaver': 619717, 'asuustrike': 97277, 'we grow': 971691, 'grow and': 367007, 'deliver fresh': 233137, 'veggie around': 954168, 'around nigeria': 93416, 'nigeria do': 562732, 'start retailing': 794467, 'retailing in': 719476, 'small quantity': 775077, 'quantity or': 691945, 'for consumption': 320306, 'consumption at': 199839, 'price dm': 673467, 'or call': 614633, 'call 09032144592': 155687, '09032144592 today': 1168, 'today osibanjothesaver': 920000, 'osibanjothesaver asuustrike': 619718, 'we grow and': 971692, 'grow and deliver': 367008, 'and deliver fresh': 61079, 'deliver fresh fruit': 233138, 'fruit and veggie': 339067, 'and veggie around': 74902, 'veggie around nigeria': 954169, 'around nigeria do': 93417, 'nigeria do you': 562733, 'want to start': 966127, 'to start retailing': 915219, 'start retailing in': 794468, 'retailing in small': 719477, 'in small quantity': 428021, 'small quantity or': 775078, 'quantity or need': 691947, 'or need for': 616227, 'need for consumption': 554832, 'for consumption at': 320307, 'consumption at affordable': 199840, 'affordable price dm': 34876, 'price dm or': 673469, 'dm or call': 248913, 'or call 09032144592': 614634, 'call 09032144592 today': 155688, '09032144592 today osibanjothesaver': 1169, 'today osibanjothesaver asuustrike': 920001, 'coronacake': 204454, 'tpocolypse': 928084, 'want some': 965923, 'some coronacake': 782604, 'coronacake toiletpaper': 204455, 'toiletpaper tpocolypse': 922760, 'tpocolypse poo': 928085, 'poo cake': 663993, 'cake toiletpapercrisis': 155260, 'who want some': 989927, 'want some coronacake': 965924, 'some coronacake toiletpaper': 782605, 'coronacake toiletpaper tpocolypse': 204456, 'toiletpaper tpocolypse poo': 922761, 'tpocolypse poo cake': 928086, 'poo cake toiletpapercrisis': 663994, 'milkman': 531930, 'update worried': 947330, 'supermarket fear': 820282, 'fear not': 301214, 'your friendly': 1023979, 'friendly neighborhood': 333971, 'neighborhood milkman': 557138, 'milkman is': 531937, 'deliver report': 233201, 'update worried about': 947331, 'worried about going': 1010492, 'the supermarket fear': 868587, 'supermarket fear not': 820284, 'fear not because': 301215, 'not because your': 568496, 'because your friendly': 119885, 'your friendly neighborhood': 1023980, 'friendly neighborhood milkman': 333972, 'neighborhood milkman is': 557139, 'milkman is ready': 531938, 'ready to deliver': 700952, 'to deliver report': 904111, 'ancestor': 57302, 'stillnooatmilk': 801460, 'how my': 408390, 'my ancestor': 547260, 'ancestor felt': 57303, 'they returned': 883217, 'the tribe': 869978, 'tribe after': 931675, 'after successful': 36258, 'successful hunt': 816241, 'hunt toiletpaper': 411374, 'toiletpaper egg': 921949, 'egg bleach': 269796, 'bleach purell': 132515, 'purell stillnooatmilk': 690033, 'stillnooatmilk king': 801461, 'king mountain': 475281, 'mountain california': 543416, 'now know exactly': 575168, 'know exactly how': 476372, 'exactly how my': 288736, 'how my ancestor': 408391, 'my ancestor felt': 547261, 'ancestor felt when': 57304, 'felt when they': 303482, 'when they returned': 984280, 'they returned to': 883218, 'returned to the': 719982, 'to the tribe': 917141, 'the tribe after': 869979, 'tribe after successful': 931676, 'after successful hunt': 36259, 'successful hunt toiletpaper': 816242, 'hunt toiletpaper egg': 411375, 'toiletpaper egg bleach': 921950, 'egg bleach purell': 269797, 'bleach purell stillnooatmilk': 132516, 'purell stillnooatmilk king': 690034, 'stillnooatmilk king mountain': 801462, 'king mountain california': 475282, 'romania': 725729, 'consistently': 195496, 'ranked': 696787, 'coronavirus romania': 206685, 'romania consistently': 725730, 'consistently ranked': 195503, 'ranked the': 696790, 'eu worst': 283294, 'worst according': 1011138, 'the euro': 854573, 'euro health': 283359, 'consumer index': 197845, 'index find': 434191, 'find itself': 307016, 'itself unable': 463962, 'coronavirus romania consistently': 206686, 'romania consistently ranked': 725731, 'consistently ranked the': 195504, 'ranked the eu': 696791, 'the eu worst': 854570, 'eu worst according': 283295, 'worst according to': 1011139, 'to the euro': 916682, 'the euro health': 854576, 'euro health consumer': 283360, 'health consumer index': 386302, 'consumer index find': 197846, 'index find itself': 434192, 'find itself unable': 307018, 'itself unable to': 463963, 'unable to cope': 939326, 'believe didn': 126258, 'didn buy': 240992, 'store visited': 811084, 'visited in': 959482, 'dream yo': 258639, 'yo is': 1016435, 'sign will': 769261, 'soon mondaymotivation': 785771, 'can believe didn': 157736, 'believe didn buy': 126259, 'didn buy any': 240994, 'buy any thing': 148354, 'any thing from': 79958, 'thing from that': 884348, 'from that grocery': 337577, 'grocery store visited': 365918, 'store visited in': 811086, 'visited in my': 959485, 'in my dream': 425566, 'my dream yo': 548038, 'dream yo is': 258640, 'yo is this': 1016436, 'this sign will': 890149, 'sign will be': 769262, 'over soon mondaymotivation': 630635, 'best and': 127577, 'most comprehensive': 542197, 'comprehensive covid': 192632, 'center ve': 169310, 'seen from': 747024, 'the best and': 849487, 'best and most': 127578, 'and most comprehensive': 67264, 'most comprehensive covid': 542198, 'comprehensive covid 19': 192633, '19 resource center': 10130, 'resource center ve': 714739, 'center ve seen': 169311, 've seen from': 953528, 'seen from consumer': 747027, 'tighter': 895864, 'ha managed': 371228, 'maintain food': 508965, 'supply despite': 825165, 'despite more': 238787, 'severe outbreak': 754042, 'much tighter': 545382, 'tighter lockdown': 895870, 'italy ha managed': 462840, 'ha managed to': 371229, 'managed to maintain': 512506, 'to maintain food': 909572, 'maintain food supply': 508966, 'food supply despite': 316947, 'supply despite more': 825166, 'despite more severe': 238788, 'more severe outbreak': 540369, 'severe outbreak of': 754043, '19 and much': 5065, 'and much tighter': 67310, 'much tighter lockdown': 545383, 'now make': 575269, 'me nervous': 523212, 'nervous not': 557474, 'because nervous': 119272, 'nervous about': 557446, 'because too': 119745, 'much stupidity': 545335, 'stupidity in': 815534, 'one place': 606875, 'place make': 657566, 'me really': 523376, 'really angry': 701970, 'supermarket now make': 821669, 'now make me': 575272, 'make me nervous': 510136, 'me nervous not': 523213, 'nervous not because': 557475, 'not because nervous': 568491, 'because nervous about': 119273, 'nervous about but': 557447, 'about but because': 24907, 'but because too': 145276, 'because too much': 119747, 'too much stupidity': 924946, 'much stupidity in': 545336, 'stupidity in one': 815535, 'in one place': 426153, 'one place make': 606878, 'place make me': 657567, 'make me really': 510141, 'me really angry': 523377, 'harrogate': 378522, 'done harrogate': 254866, 'harrogate best': 378523, 'best approach': 127582, 'approach to': 82979, 'to socialdistancing': 914829, 'socialdistancing that': 780788, 'that ve': 847229, 'supermarket thank': 823168, 'well done harrogate': 978185, 'done harrogate best': 254867, 'harrogate best approach': 378524, 'best approach to': 127585, 'approach to socialdistancing': 82992, 'to socialdistancing that': 914835, 'socialdistancing that ve': 780789, 'that ve seen': 847234, 've seen in': 953533, 'seen in supermarket': 747084, 'in supermarket thank': 428685, 'supermarket thank you': 823170, 'country top': 211183, 'top company': 925548, 'business warning': 144632, 'warning of': 967157, 'lower consumer': 505815, 'and continued': 60494, 'continued operational': 201329, 'operational disruption': 613308, 'disruption in': 246488, 'the country top': 852173, 'country top company': 211184, 'top company are': 925549, 'company are beginning': 190413, 'beginning to ass': 123663, '19 outbreak on': 9160, 'outbreak on their': 628499, 'on their business': 604471, 'their business warning': 872694, 'business warning of': 144633, 'warning of lower': 967158, 'of lower consumer': 586051, 'lower consumer demand': 505816, 'consumer demand and': 197115, 'demand and continued': 234954, 'and continued operational': 60496, 'continued operational disruption': 201330, 'operational disruption in': 613309, 'disruption in the': 246493, 'is thus': 453151, 'thus forcing': 895511, 'forcing capital': 328699, 'capital to': 162693, 'life making': 488863, 'making work': 511494, 'work such': 1005775, 'healthcare social': 387279, 'care food': 163936, 'distribution we': 248255, 'this focus': 887563, 'focus remains': 311915, 'remains even': 710007, 'the health crisis': 857180, 'health crisis is': 386339, 'crisis is thus': 217593, 'is thus forcing': 453152, 'thus forcing capital': 895512, 'forcing capital to': 328700, 'capital to focus': 162694, 'focus on life': 311883, 'on life and': 601833, 'life and life': 488483, 'and life making': 66140, 'life making work': 488865, 'making work such': 511496, 'work such healthcare': 1005776, 'such healthcare social': 816545, 'healthcare social care': 387280, 'social care food': 779452, 'care food production': 163937, 'and distribution we': 61532, 'distribution we demand': 248256, 'we demand that': 971271, 'demand that this': 236340, 'that this focus': 846992, 'this focus remains': 887564, 'focus remains even': 311916, 'remains even when': 710008, 'even when the': 284786, 'tiresome': 899098, 'hoarding narrative': 399434, 'narrative is': 551945, 'getting little': 349093, 'little tiresome': 495617, 'tiresome not': 899099, 'not buying': 568659, 'buying lot': 150684, 'because jerk': 119213, 'jerk buying': 465143, 'because avoiding': 118944, 'avoiding multiple': 105469, 'multiple trip': 545805, 'few mouth': 303952, 'the hoarding narrative': 857415, 'hoarding narrative is': 399435, 'narrative is getting': 551946, 'is getting little': 448030, 'getting little tiresome': 349096, 'little tiresome not': 495618, 'tiresome not buying': 899100, 'not buying lot': 568660, 'buying lot of': 150685, 'of food because': 583657, 'food because jerk': 313707, 'because jerk buying': 119214, 'jerk buying lot': 465144, 'food because avoiding': 313702, 'because avoiding multiple': 118945, 'avoiding multiple trip': 105470, 'multiple trip to': 545806, 'store and have': 806256, 'and have few': 64244, 'have few mouth': 380614, 'few mouth to': 303953, 'behavior an': 123874, 'retailer it': 719224, 'shift did': 758275, 'some research': 783730, 'research to': 713865, 'valuable insight': 952031, 'we all know': 970337, 'all know that': 43333, 'know that this': 476796, 'that this pandemic': 846999, 'pandemic is changing': 635762, 'is changing consumer': 446467, 'consumer behavior an': 196438, 'behavior an online': 123875, 'an online retailer': 56629, 'online retailer it': 608882, 'retailer it is': 719226, 'it is important': 458983, 'is important to': 448735, 'to understand and': 917898, 'understand and adapt': 940593, 'and adapt to': 57663, 'adapt to the': 31289, 'the shift did': 866930, 'shift did some': 758276, 'did some research': 240816, 'some research to': 783732, 'research to share': 713868, 'share valuable insight': 755325, 'schoolclosures': 742009, 'prek': 669859, 'homeschool': 402919, 'freeresources': 332490, 'up parent': 945748, 'parent stockup': 641735, 'stockup on': 804186, 'on education': 600522, 'education book': 268812, 'book amid': 134463, 'amid schoolclosures': 52644, 'schoolclosures forbes': 742010, 'forbes via': 328298, 'via prek': 956181, 'prek homeschool': 669860, 'homeschool wellness': 402924, 'wellness mondaymotivation': 978850, 'mondaymotivation health': 536459, 'health mondaymorning': 386649, 'mondaymorning kid': 536443, 'kid school': 474100, 'school ed': 741776, 'ed homebound': 268451, 'homebound nj': 402621, 'nj freeresources': 563432, 'freeresources mondaythoughts': 332491, 'mondaythoughts uk': 536513, 'uk china': 938244, 'stock up parent': 803108, 'up parent stockup': 945749, 'parent stockup on': 641736, 'stockup on education': 804188, 'on education book': 600523, 'education book amid': 268813, 'book amid schoolclosures': 134464, 'amid schoolclosures forbes': 52645, 'schoolclosures forbes via': 742011, 'forbes via prek': 328299, 'via prek homeschool': 956182, 'prek homeschool wellness': 669861, 'homeschool wellness mondaymotivation': 402925, 'wellness mondaymotivation health': 978851, 'mondaymotivation health mondaymorning': 536461, 'health mondaymorning kid': 386650, 'mondaymorning kid school': 536444, 'kid school ed': 474101, 'school ed homebound': 741777, 'ed homebound nj': 268452, 'homebound nj freeresources': 402622, 'nj freeresources mondaythoughts': 563433, 'freeresources mondaythoughts uk': 332492, 'mondaythoughts uk china': 536514, 'supermarket complaining': 819752, 'complaining that': 191904, 'empty they': 275194, 'they unpack': 883609, 'unpack their': 943008, 'their 22': 872430, '22 bar': 15187, 'soap trying': 779140, 'that maybe': 845094, 'problem panickbuying': 679646, 'parent just returned': 641665, 'the supermarket complaining': 868525, 'supermarket complaining that': 819753, 'complaining that the': 191908, 'that the shelf': 846831, 'are empty they': 86172, 'empty they unpack': 275195, 'they unpack their': 883610, 'unpack their 22': 943009, 'their 22 bar': 872431, '22 bar of': 15188, 'bar of soap': 110738, 'of soap trying': 589830, 'soap trying to': 779141, 'trying to explain': 934801, 'to explain to': 905478, 'to them that': 917316, 'them that maybe': 876380, 'that maybe they': 845097, 'maybe they are': 521844, 'the problem panickbuying': 864522, 'biodiesel': 131194, 'pandemic put': 636260, 'put downward': 690561, 'downward pressure': 257832, 'on vegetable': 605029, 'vegetable oil': 954051, 'and crudeoil': 60771, 'price diesel': 673438, 'and biodiesel': 58975, 'biodiesel demand': 131195, 'pandemic put downward': 636261, 'put downward pressure': 690562, 'downward pressure on': 257834, 'pressure on vegetable': 671220, 'on vegetable oil': 605030, 'vegetable oil and': 954052, 'oil and crudeoil': 596613, 'and crudeoil price': 60772, 'crudeoil price diesel': 219650, 'price diesel and': 673439, 'diesel and biodiesel': 241645, 'and biodiesel demand': 58976, 'snag': 776045, 'local wal': 498684, 'mart wa': 518067, 'except hand': 289185, 'to snag': 914782, 'snag some': 776048, 'some clorox': 782550, 'look like the': 502515, 'like the panic': 491390, 'panic buy is': 637493, 'buy is over': 148839, 'is over my': 450715, 'over my local': 630423, 'my local wal': 549149, 'local wal mart': 498685, 'wal mart wa': 964680, 'mart wa well': 518068, 'well stocked with': 978612, 'stocked with everything': 803461, 'with everything except': 998301, 'everything except hand': 287783, 'except hand sanitizer': 289186, 'hand sanitizer even': 375388, 'sanitizer even managed': 734835, 'managed to snag': 512511, 'to snag some': 914783, 'snag some clorox': 776049, 'some clorox wipe': 782551, 'vistek': 959618, 'notice to': 573382, 'community effective': 189829, 'effective saturday': 269301, 'saturday march': 737039, '00 vistek': 588, 'vistek will': 959619, 'all retail': 44181, 'canada until': 160593, 'monday april': 536251, '2020 click': 14227, 'full announcement': 340481, 'important notice to': 418905, 'notice to protect': 573385, 'protect our employee': 684892, 'our employee and': 622888, 'employee and our': 273578, 'and our community': 68481, 'our community effective': 622459, 'community effective saturday': 189830, 'effective saturday march': 269302, 'saturday march 21': 737040, '21 2020 at': 14954, '2020 at 00': 14155, 'at 00 vistek': 97356, '00 vistek will': 589, 'vistek will close': 959620, 'close all retail': 182506, 'all retail store': 44187, 'retail store across': 718601, 'store across canada': 806062, 'across canada until': 29288, 'canada until monday': 160595, 'until monday april': 943780, 'monday april 2020': 536252, 'april 2020 click': 83461, '2020 click the': 14228, 'link to read': 493940, 'read our full': 700509, 'our full announcement': 623212, 'week recap': 976799, 'recap continued': 703377, 'continued covid': 201306, 'related volatility': 708632, 'market oil': 516787, 'price sink': 676422, 'sink in': 771471, 'this week recap': 891257, 'week recap continued': 976800, 'recap continued covid': 703378, 'continued covid 19': 201307, '19 related volatility': 10070, 'related volatility in': 708633, 'volatility in the': 960084, 'the market oil': 860137, 'market oil and': 516788, 'oil and energy': 596614, 'energy price sink': 276547, 'price sink in': 676423, 'sink in reaction': 771474, 'pasta soup': 643813, 'and rice': 70500, 'gone the': 356381, 'one across': 605857, 'way please': 969817, 'hoarding thing': 399603, '95 of the': 23602, 'of the pasta': 591325, 'the pasta soup': 863379, 'pasta soup and': 643814, 'soup and rice': 786370, 'and rice at': 70502, 'rice at my': 721010, 'supermarket is gone': 821094, 'is gone the': 448122, 'gone the one': 356383, 'the one across': 862188, 'one across the': 605858, 'across the street': 29525, 'the street is': 868234, 'street is the': 813013, 'is the same': 452933, 'the same way': 866319, 'same way please': 733407, 'way please please': 969818, 'please please stop': 660315, 'stop hoarding thing': 804747, 'hoarding thing need': 399604, 'aisle gt': 40262, 'gt why': 367647, 'why hope': 991074, 'hope online': 403582, 'shopping return': 763762, 'return for': 719840, 'regular consumer': 707754, 'the au': 849037, 'spread in supermarket': 790581, 'in supermarket aisle': 428556, 'supermarket aisle gt': 818835, 'aisle gt gt': 40263, 'gt gt why': 367604, 'gt why hope': 367648, 'why hope online': 991075, 'hope online shopping': 403583, 'online shopping return': 609250, 'shopping return for': 763763, 'return for regular': 719843, 'for regular consumer': 325071, 'regular consumer in': 707755, 'in the au': 428995, 'switzerland remains': 830608, 'stocked resident': 803380, 'calm during': 156730, 'pandemic news': 636029, 'supermarket in switzerland': 820987, 'in switzerland remains': 428771, 'switzerland remains fully': 830609, 'fully stocked resident': 341099, 'stocked resident stay': 803381, 'resident stay calm': 714367, 'stay calm during': 796808, 'calm during coronavirus': 156731, 'coronavirus pandemic news': 206476, 'buy vegetable': 149420, 'vegetable from': 953985, 'supermarket literally': 821346, 'literally shocked': 495078, 'shocked no': 759579, 'mask nothing': 519025, 'nothing people': 573136, 'coming usual': 188269, 'they suffer': 883499, 'suffer they': 817238, 'they blame': 881562, 'blame government': 132262, 'mask bjp': 518483, '19 just went': 8213, 'to buy vegetable': 902331, 'buy vegetable from': 149422, 'vegetable from supermarket': 953986, 'from supermarket literally': 337492, 'supermarket literally shocked': 821348, 'literally shocked no': 495079, 'shocked no mask': 759580, 'no mask nothing': 564711, 'mask nothing people': 519026, 'nothing people are': 573137, 'are coming usual': 85445, 'coming usual when': 188270, 'usual when they': 951066, 'when they suffer': 984284, 'they suffer they': 883500, 'suffer they blame': 817239, 'they blame government': 881563, 'blame government wa': 132264, 'government wa the': 360778, 'one with mask': 607487, 'with mask bjp': 999405, 'the undervalued': 870365, 'undervalued hero': 940955, 'crisis need': 217745, 'support owen': 826745, 'owen jones': 631838, 'jones opinion': 467255, 'the undervalued hero': 870366, 'undervalued hero of': 940956, 'the crisis need': 852412, 'crisis need our': 217746, 'need our thanks': 555404, 'our thanks and': 625123, 'thanks and our': 842020, 'and our support': 68522, 'our support owen': 625046, 'support owen jones': 826746, 'owen jones opinion': 631839, 'jones opinion the': 467256, 'opinion the guardian': 613504, 'committal': 189025, 'still afford': 800168, 'afford home': 34704, 'support themselves': 826911, 'moment this': 536072, 'this non': 889153, 'non committal': 566311, 'committal approach': 189026, 'approach is': 82959, 'just causing': 468449, 'panic 19uk': 637243, '19uk howtokeeppeoplehome': 12559, 'know that the': 476792, 'government is going': 360254, 'help to ensure': 390772, 'ensure they can': 278103, 'they can still': 881680, 'can still afford': 159760, 'still afford home': 800169, 'afford home and': 34705, 'home and food': 400642, 'food and to': 313363, 'to support themselves': 915978, 'support themselves at': 826912, 'themselves at the': 876774, 'the moment this': 860784, 'moment this non': 536073, 'this non committal': 889154, 'non committal approach': 566312, 'committal approach is': 189027, 'approach is just': 82960, 'is just causing': 449123, 'just causing more': 468450, 'more panic 19uk': 539982, 'panic 19uk howtokeeppeoplehome': 637244, 'maestro': 508250, 'cherished': 175527, 'ethyl': 283132, 'ghana maestro': 349578, 'maestro merchant': 508251, 'merchant ghana': 529017, 'ghana wish': 349594, 'announce to': 76892, 'it cherished': 457128, 'cherished client': 175528, 'client that': 182103, 'be providing': 116599, 'providing 200ml': 686919, '200ml hand': 13740, 'sanitizer containing': 734691, 'containing 70': 200576, '70 ethyl': 21764, 'ethyl alcohol': 283133, 'your package': 1025171, 'free yes': 332347, 'yes free': 1015439, 'to help contain': 907481, 'help contain the': 389533, 'contain the covid': 200496, 'spread in ghana': 790572, 'in ghana maestro': 423304, 'ghana maestro merchant': 349579, 'maestro merchant ghana': 508252, 'merchant ghana wish': 529018, 'ghana wish to': 349595, 'wish to announce': 996833, 'to announce to': 900561, 'announce to it': 76893, 'to it cherished': 908572, 'it cherished client': 457129, 'cherished client that': 175529, 'client that we': 182104, 'that we would': 847407, 'we would be': 973967, 'would be providing': 1011636, 'be providing 200ml': 116600, 'providing 200ml hand': 686920, '200ml hand sanitizer': 13742, 'hand sanitizer containing': 375353, 'sanitizer containing 70': 734692, 'containing 70 ethyl': 200577, '70 ethyl alcohol': 21765, 'ethyl alcohol in': 283136, 'alcohol in each': 41028, 'in each of': 422439, 'each of your': 264140, 'of your package': 593507, 'your package for': 1025174, 'package for free': 633276, 'for free yes': 321739, 'free yes free': 332348, 'yes free of': 1015440, 'pleasehelp': 660813, 'quarantinecompanions': 692805, 'dogsarelove': 252215, 'doglovers': 252205, 'helpthedogs': 391630, 'bdrr': 113402, 'big way': 130098, 'way right': 969846, 'now pandemic': 575508, 'quarantine pleasehelp': 692437, 'pleasehelp help': 660814, 'help quarantinecompanions': 390397, 'quarantinecompanions dogsarelove': 692806, 'dogsarelove doglovers': 252216, 'doglovers toiletpaper': 252206, 'toiletpaper handsanitizer': 922050, 'handsanitizer facemasks': 376527, 'facemasks helpthedogs': 295144, 'helpthedogs bdrr': 391631, 'help in big': 389892, 'in big way': 420832, 'big way right': 130101, 'way right now': 969847, 'right now pandemic': 722116, 'now pandemic quarantine': 575510, 'pandemic quarantine pleasehelp': 636269, 'quarantine pleasehelp help': 692438, 'pleasehelp help quarantinecompanions': 660815, 'help quarantinecompanions dogsarelove': 390398, 'quarantinecompanions dogsarelove doglovers': 692807, 'dogsarelove doglovers toiletpaper': 252217, 'doglovers toiletpaper handsanitizer': 252207, 'toiletpaper handsanitizer facemasks': 922052, 'handsanitizer facemasks helpthedogs': 376528, 'facemasks helpthedogs bdrr': 295145, 'dented': 237087, 'to bear': 901647, 'bear higher': 118400, 'higher due': 395584, 'delay in': 232702, 'in delivery': 422091, 'and volatility': 75016, 'that followed': 843897, 'of ha': 584398, 'severely dented': 754081, 'dented the': 237088, 'had to bear': 373665, 'to bear higher': 901649, 'bear higher due': 118401, 'higher due to': 395585, 'to delay in': 904083, 'delay in delivery': 232703, 'in delivery of': 422092, 'delivery of new': 234230, 'of new and': 586951, 'new and volatility': 558347, 'and volatility in': 75017, 'volatility in price': 960081, 'in price that': 426982, 'price that followed': 676801, 'that followed by': 843898, 'followed by the': 312600, 'by the onset': 154398, 'onset of ha': 611547, 'of ha severely': 584402, 'ha severely dented': 371880, 'severely dented the': 754082, 'dented the what': 237089, 'the what in': 871417, 'what in store': 981658, 'in store for': 428414, 'store for company': 807793, 'accomodate': 28473, 'in add': 420031, 'add store': 31493, 'dmv working': 248973, 'to accomodate': 899974, 'accomodate senior': 28474, 'folk with': 312309, 'system during': 831149, '19 mayhem': 8587, 'mayhem full': 521909, 'just in add': 469027, 'in add store': 420032, 'add store to': 31494, 'store to the': 810820, 'the growing list': 856882, 'the dmv working': 853442, 'dmv working to': 248974, 'working to accomodate': 1008979, 'to accomodate senior': 899975, 'accomodate senior citizen': 28475, 'citizen and folk': 178833, 'and folk with': 63008, 'folk with compromised': 312310, 'immune system during': 417337, 'system during covid': 831150, 'covid 19 mayhem': 213412, '19 mayhem full': 8588, 'mayhem full list': 521910, 'full list here': 340666, 'pc19': 645896, 'washhands': 967635, 'you hoarding': 1019234, 'hoarding here': 399358, 'toiletpaper pc19': 922335, 'pc19 toiletpaperchallenge': 645897, 'toiletpaperchallenge toiletpaperpanic': 922992, 'toiletpaperapocalypse handsanitiser': 922904, 'handsanitiser washhands': 376457, 'of you in': 593395, 'you in need': 1019309, 'need and those': 554441, 'and those of': 74033, 'of you hoarding': 593392, 'you hoarding here': 1019236, 'hoarding here an': 399359, 'here an interesting': 392693, 'take on toiletpaper': 832411, 'on toiletpaper pc19': 604791, 'toiletpaper pc19 toiletpaperchallenge': 922336, 'pc19 toiletpaperchallenge toiletpaperpanic': 645898, 'toiletpaperchallenge toiletpaperpanic toiletpaperapocalypse': 922993, 'toiletpaperpanic toiletpaperapocalypse handsanitiser': 923271, 'toiletpaperapocalypse handsanitiser washhands': 922905, 'av': 104090, 'providing week': 687137, 'leave only': 484883, 'who test': 989738, 'placed under': 657921, 'under mandatory': 940161, 'mandatory quarantine': 513050, 'quarantine this': 692625, 'is insufficient': 448944, 'insufficient to': 440612, 'public especially': 687974, 'little testing': 495603, 'testing av': 839456, 'instead of paid': 440296, 'leave is providing': 484842, 'is providing week': 451126, 'providing week paid': 687139, 'week paid leave': 976720, 'paid leave only': 634060, 'leave only to': 484884, 'only to people': 611364, 'people who test': 650347, 'who test positive': 989739, '19 or are': 9015, 'or are placed': 614413, 'are placed under': 89097, 'placed under mandatory': 657922, 'under mandatory quarantine': 940162, 'mandatory quarantine this': 513054, 'quarantine this is': 692627, 'this is insufficient': 888294, 'is insufficient to': 448945, 'insufficient to protect': 440614, 'staff and the': 792166, 'the public especially': 864804, 'public especially with': 687976, 'especially with little': 280671, 'with little testing': 999265, 'little testing av': 495604, 'stimulated': 801490, 'granted just': 362077, 'to casually': 902489, 'casually take': 166806, 'take walk': 832780, 'item again': 463035, 'again when': 37267, 'when an': 983145, 'introvert is': 443522, 'is severely': 451816, 'severely under': 754117, 'under stimulated': 940262, 'stimulated you': 801491, 'never take for': 558214, 'take for granted': 832131, 'for granted just': 321995, 'granted just being': 362078, 'just being able': 468326, 'able to casually': 24458, 'to casually take': 902490, 'casually take walk': 166807, 'take walk or': 832783, 'walk or go': 964847, 'for few item': 321455, 'few item again': 303886, 'item again when': 463036, 'again when an': 37268, 'when an introvert': 983148, 'an introvert is': 56435, 'introvert is severely': 443523, 'is severely under': 451817, 'severely under stimulated': 754118, 'under stimulated you': 940263, 'stimulated you know': 801492, 'know it bad': 476518, 'other bogus': 619898, 'bogus cure': 134018, '00 consumer': 143, 'beware of scammer': 129095, 'of scammer trying': 589376, 'sell fake vaccine': 748714, 'fake vaccine and': 296732, 'vaccine and other': 951654, 'and other bogus': 68287, 'other bogus cure': 619899, 'bogus cure for': 134019, 'the new the': 861567, 'new the ftc': 559743, 'ftc ha received': 339408, 'than 00 consumer': 840134, '00 consumer complaint': 146, 'unexpectedly': 941395, 'krasselt': 477649, 'something ve': 785124, 'found unexpectedly': 330460, 'unexpectedly calming': 941396, 'calming is': 156851, 'is cramer': 446874, 'cramer krasselt': 214835, 'krasselt covid': 477650, '19 emerging': 6767, 'emerging trend': 273143, 'behavior blog': 123932, 'blog this': 133032, 'week trend': 977120, 'trend speak': 931451, 'daily emotion': 224594, 'something ve found': 785126, 've found unexpectedly': 953146, 'found unexpectedly calming': 330461, 'unexpectedly calming is': 941397, 'calming is cramer': 156852, 'is cramer krasselt': 446875, 'cramer krasselt covid': 214836, 'krasselt covid 19': 477651, 'covid 19 emerging': 213017, '19 emerging trend': 6768, 'emerging trend and': 273144, 'trend and behavior': 931266, 'and behavior blog': 58835, 'behavior blog this': 123933, 'blog this week': 133033, 'this week trend': 891285, 'week trend speak': 977121, 'trend speak to': 931452, 'speak to my': 787715, 'to my daily': 910388, 'my daily emotion': 547908, 'ramin': 696414, 'toloui': 923897, 'best brief': 127603, 'brief economic': 139670, 'economic policy': 267203, 'policy piece': 663467, 'piece ve': 656375, 'far on': 298873, 'from ramin': 337035, 'ramin toloui': 696415, 'the best brief': 849494, 'best brief economic': 127604, 'brief economic policy': 139671, 'economic policy piece': 267204, 'policy piece ve': 663468, 'piece ve seen': 656376, 'seen so far': 747238, 'so far on': 777046, 'far on how': 298874, '19 come from': 5889, 'come from ramin': 187311, 'from ramin toloui': 337036, 'after pennsylvania': 36028, 'pennsylvania closed': 646559, 'closed all': 182962, 'it liquor': 459406, 'reopen them': 711368, 'them retail': 876220, 'after pennsylvania closed': 36029, 'pennsylvania closed all': 646560, 'closed all it': 182964, 'all it liquor': 43271, 'it liquor store': 459407, 'liquor store is': 494206, 'store is urging': 808544, 'is urging the': 453609, 'urging the governor': 948453, 'the governor to': 856648, 'governor to reopen': 361012, 'to reopen them': 913243, 'reopen them retail': 711369, 'train price': 929273, 'slashed and': 773610, 'an honesty': 56064, 'honesty policy': 403166, 'policy wild': 663540, 'train price slashed': 929274, 'price slashed and': 676460, 'slashed and an': 773611, 'and an honesty': 58114, 'an honesty policy': 56065, 'honesty policy wild': 403167, 'primeminister': 678182, 'getwellboris': 349479, 'prayforboris': 669093, 'doasyouretold': 250725, 'my favourite': 548284, 'favourite picture': 300605, 'you primeminister': 1020430, 'primeminister wishing': 678183, 'wishing you': 996881, 'you speedy': 1021316, 'speedy recovery': 788501, 'recovery borisjohnson': 705301, 'borisjohnson getwellboris': 135525, 'getwellboris prayforboris': 349480, 'prayforboris stayhomesavelives': 669094, 'stayhomesavelives doasyouretold': 798369, 'got to be': 358951, 'be my favourite': 116037, 'my favourite picture': 548288, 'favourite picture of': 300606, 'picture of you': 656177, 'of you primeminister': 593413, 'you primeminister wishing': 1020431, 'primeminister wishing you': 678184, 'wishing you speedy': 996883, 'you speedy recovery': 1021317, 'speedy recovery borisjohnson': 788502, 'recovery borisjohnson getwellboris': 705302, 'borisjohnson getwellboris prayforboris': 135526, 'getwellboris prayforboris stayhomesavelives': 349481, 'prayforboris stayhomesavelives doasyouretold': 669095, 'sir government': 771570, 'of odisha': 587149, 'odisha ha': 579236, 'ha declare': 370322, 'declare to': 231212, 'serve 24': 751860, 'hour electric': 405569, 'electric to': 271127, 'difficulty during': 242377, 'during summer': 263066, 'summer and': 817953, 'also covid': 48076, 'luck down': 506446, 'down but': 256579, 'we complain': 971156, 'complain nearest': 191862, 'nearest structure': 553723, 'structure they': 814314, 'complain to': 191869, 'the electric': 854173, 'electric board': 271101, 'respected sir government': 715112, 'sir government of': 771571, 'government of odisha': 360400, 'of odisha ha': 587150, 'odisha ha declare': 579237, 'ha declare to': 370323, 'declare to serve': 231213, 'to serve 24': 914256, 'serve 24 hour': 751861, '24 hour electric': 15616, 'hour electric to': 405570, 'electric to the': 271128, 'the consumer but': 851503, 'consumer but we': 196689, 'are facing difficulty': 86410, 'facing difficulty during': 295446, 'difficulty during summer': 242378, 'during summer and': 263067, 'summer and also': 817954, 'and also covid': 57945, 'also covid 19': 48077, 'period of luck': 651846, 'of luck down': 586066, 'luck down but': 506447, 'down but when': 256586, 'when we complain': 984434, 'we complain nearest': 971158, 'complain nearest structure': 191863, 'nearest structure they': 553724, 'structure they are': 814315, 'they are talking': 881428, 'talking to complain': 834041, 'to complain to': 903131, 'complain to the': 191871, 'to the electric': 916669, 'the electric board': 854174, 'your piano': 1025304, 'piano in': 655565, 'to ongoing': 910927, 'ongoing concern': 607605, 'concern related': 193072, 'the piano': 863713, 'piano technician': 655569, 'technician guild': 836227, 'guild ha': 368522, 'ha produced': 371542, 'produced the': 680536, 'following advisory': 312668, 'advisory hope': 33764, 'you learn': 1019567, 'how to disinfect': 409009, 'disinfect your piano': 245590, 'your piano in': 1025305, 'piano in response': 655566, 'response to ongoing': 715874, 'to ongoing concern': 910928, 'ongoing concern related': 607608, 'concern related to': 193073, '19 outbreak the': 9197, 'outbreak the piano': 628719, 'the piano technician': 863714, 'piano technician guild': 655570, 'technician guild ha': 836228, 'guild ha produced': 368524, 'ha produced the': 371545, 'produced the following': 680537, 'the following advisory': 855493, 'following advisory hope': 312669, 'advisory hope this': 33765, 'will be useful': 992755, 'be useful to': 117934, 'useful to you': 950203, 'to you learn': 918906, 'you learn more': 1019568, 'crunch': 219740, 'deploying': 237468, 'bmtc': 133558, 'surya': 829411, 'in residential': 427408, 'residential area': 714420, 'of bangalore': 580533, 'bangalore during': 109457, 'of access': 579731, 'access not': 28163, 'supply crunch': 825126, 'crunch logistics': 219747, 'logistics can': 500730, 'solved by': 782174, 'by deploying': 152339, 'deploying some': 237473, 'some idle': 783077, 'idle bmtc': 413676, 'bmtc capacity': 133559, 'capacity travelling': 162596, 'travelling vegetable': 930698, 'vegetable stall': 954093, 'stall surya': 793381, 'veggie price are': 954206, 'high in residential': 395132, 'in residential area': 427409, 'residential area of': 714421, 'area of bangalore': 92129, 'of bangalore during': 580534, 'bangalore during lockdown': 109458, 'lack of access': 478603, 'of access not': 579733, 'access not supply': 28164, 'not supply crunch': 571815, 'supply crunch logistics': 825128, 'crunch logistics can': 219748, 'logistics can be': 500731, 'can be solved': 157686, 'be solved by': 117292, 'solved by deploying': 782176, 'by deploying some': 152340, 'deploying some idle': 237474, 'some idle bmtc': 783078, 'idle bmtc capacity': 413677, 'bmtc capacity travelling': 133560, 'capacity travelling vegetable': 162597, 'travelling vegetable stall': 930699, 'vegetable stall surya': 954094, 'tub': 935018, 'with 10': 996920, '10 pint': 1636, 'pint of': 656854, 'milk tub': 531887, 'tub of': 935019, 'of butter': 580997, 'cheese how': 175197, 'how dairy': 407659, 'dairy 19': 224944, 'just saw guy': 469686, 'saw guy in': 738127, 'supermarket with 10': 823907, 'with 10 pint': 996925, '10 pint of': 1637, 'pint of milk': 656856, 'of milk tub': 586522, 'milk tub of': 531888, 'tub of butter': 935020, 'of butter and': 580998, 'butter and pack': 148127, 'pack of cheese': 633093, 'of cheese how': 581309, 'cheese how dairy': 175198, 'how dairy 19': 407660, 'expect in': 290662, 'such crisis': 816425, 'world went': 1010154, 'went through': 979127, 'through cuz': 894408, 'amp government': 53874, 'government that': 360671, 'that provided': 845889, 'provided decent': 686592, 'decent shelter': 230801, 'shelter and': 757896, 'we ask': 970780, 'in return': 427479, 'return go': 719846, 'your country': 1023357, 'country syria': 211097, 'what did you': 981320, 'did you expect': 240926, 'you expect in': 1018478, 'expect in such': 290663, 'in such crisis': 428522, 'such crisis and': 816426, 'crisis and panic': 217039, 'and panic the': 68665, 'panic the whole': 638687, 'whole world went': 990388, 'world went through': 1010155, 'went through cuz': 979128, 'through cuz of': 894409, 'the pandemic covid': 862939, 'should be grateful': 765637, 'grateful to the': 362328, 'the people amp': 863452, 'people amp government': 646834, 'amp government that': 53875, 'government that provided': 360675, 'that provided decent': 845890, 'provided decent shelter': 686593, 'decent shelter and': 230802, 'shelter and food': 757898, 'food to you': 317304, 'to you now': 918911, 'you now we': 1020161, 'now we ask': 576335, 'we ask you': 970784, 'ask you one': 95678, 'you one thing': 1020202, 'one thing in': 607222, 'thing in return': 884439, 'in return go': 427480, 'return go back': 719847, 'back to your': 107414, 'to your country': 918967, 'your country syria': 1023359, 'undelivered': 939940, 'scam undelivered': 740441, 'undelivered good': 939941, 'good fake': 357029, 'charity fake': 173615, 'text phishing': 839929, 'phishing fake': 654821, 'email with': 272366, 'with logo': 999299, 'logo of': 500832, 'world health': 1009631, 'health organization': 386721, 'organization say': 619414, 'say ftc': 738658, 'ftc alert': 339372, 'alert with': 41551, 'with advice': 997104, 'new scam undelivered': 559549, 'scam undelivered good': 740442, 'undelivered good fake': 939942, 'good fake charity': 357030, 'fake charity fake': 296577, 'charity fake email': 173616, 'email text phishing': 272324, 'text phishing fake': 839930, 'phishing fake email': 654822, 'fake email with': 296620, 'email with logo': 272368, 'with logo of': 999300, 'logo of the': 500833, 'the world health': 871887, 'world health organization': 1009634, 'health organization say': 386725, 'organization say ftc': 619415, 'say ftc alert': 738659, 'ftc alert with': 339374, 'alert with advice': 41552, 'with advice on': 997106, 'advice on what': 33461, 'mister': 534480, 'evening mister': 284883, 'mister only': 534481, 'essential crop': 280952, 'crop however': 218926, 'time fighting': 896653, 'avoid speculation': 105285, 'speculation thank': 788362, 'good evening mister': 357014, 'evening mister only': 284884, 'mister only for': 534482, 'only for essential': 610467, 'for essential crop': 321098, 'essential crop however': 280953, 'crop however in': 218927, 'however in this': 409395, 'in this particular': 429993, 'this particular time': 889491, 'particular time fighting': 642645, 'time fighting the': 896654, 'fighting the spread': 305132, 'we have decided': 971793, 'decided to control': 230908, 'of basic food': 580568, 'food item to': 315238, 'item to avoid': 463740, 'to avoid speculation': 900940, 'avoid speculation thank': 105286, 'speculation thank you': 788363, 'today medium': 919872, 'medium briefing': 527026, 'briefing saferathome': 139735, 'saferathome order': 730406, 'warning election': 967114, 'election news': 271048, 'watch today medium': 968591, 'today medium briefing': 919873, 'medium briefing saferathome': 527027, 'briefing saferathome order': 139736, 'saferathome order consumer': 730407, 'order consumer warning': 618147, 'consumer warning election': 199477, 'warning election news': 967115, 'cessation': 170256, 'sesame': 753255, 'paraguayan': 641334, 'the cessation': 850622, 'cessation of': 170257, 'of sesame': 589537, 'sesame sale': 753256, 'in paraguayan': 426500, 'paraguayan lower': 641335, 'the cessation of': 850623, 'cessation of sesame': 170258, 'of sesame sale': 589538, 'sesame sale in': 753257, 'sale in paraguayan': 732302, 'in paraguayan lower': 426501, 'paraguayan lower price': 641336, 'fuckn': 340067, 'catp': 167319, 'corona19': 204411, 'them shop': 876277, 'shop further': 760231, 'further away': 342001, 'it fuckn': 458172, 'fuckn disgrace': 340068, 'disgrace these': 245315, 'out totally': 627729, 'totally listening': 926366, 'to catp': 902524, 'catp all': 167320, 'long since': 501632, 'since corona19': 770548, 'person who abuse': 652717, 'who abuse the': 988014, 'abuse the supermarket': 27667, 'the supermarket employee': 868570, 'banned from that': 110576, 'from that store': 337579, 'that store for': 846514, 'store for month': 807820, 'for month make': 323527, 'month make them': 537848, 'make them shop': 510614, 'them shop further': 876278, 'shop further away': 760232, 'further away it': 342003, 'away it fuckn': 105955, 'it fuckn disgrace': 458173, 'fuckn disgrace these': 340069, 'disgrace these worker': 245316, 'worker are stressed': 1006429, 'stressed out totally': 813456, 'out totally listening': 627730, 'totally listening to': 926367, 'listening to catp': 494805, 'to catp all': 902525, 'catp all day': 167321, 'day long since': 227939, 'long since corona19': 501633, 'amazon currently': 50907, 'currently unavailable': 221700, 'unavailable we': 939468, 'when or': 983813, 'this item': 888534, 'stock checked': 801979, 'checked dozen': 174747, 'dozen food': 257878, 'item chat': 463178, 'chat said': 173951, 'said trying': 731537, 'stock amazon': 801788, 'amazon action': 50833, 'customer community': 222259, 'employee affected': 273524, 'amazon currently unavailable': 50908, 'currently unavailable we': 221702, 'unavailable we do': 939469, 'not know when': 570308, 'know when or': 477002, 'when or if': 983814, 'or if this': 615722, 'if this item': 415160, 'this item will': 888535, 'be back in': 113784, 'in stock checked': 428292, 'stock checked dozen': 801980, 'checked dozen food': 174748, 'dozen food item': 257879, 'food item chat': 315198, 'item chat said': 463179, 'chat said trying': 173952, 'said trying to': 731538, 'trying to re': 934851, 'to re stock': 912781, 're stock amazon': 699607, 'stock amazon action': 801789, 'amazon action to': 50834, 'action to help': 30169, 'help customer community': 389556, 'customer community and': 222260, 'community and employee': 189715, 'and employee affected': 62057, 'employee affected by': 273525, 'adobeexpcloud': 32659, 'adobeexpcloud some': 32662, 'behavior have': 124056, 'by 800': 151711, 'from 80': 334341, 'top 100': 925516, '100 retailer': 2064, 'adobeexpcloud some online': 32663, 'shopping behavior have': 762203, 'behavior have surged': 124060, 'have surged by': 382871, 'surged by 800': 828298, 'by 800 in': 151712, '800 in the': 22708, 'the last few': 859009, 'last few week': 480214, 'few week here': 304148, 'week here are': 976326, 'are the trend': 90922, 'the trend and': 869961, 'trend and takeaway': 931273, 'and takeaway from': 72986, 'takeaway from 80': 832865, 'from 80 of': 334343, 'of the top': 591550, 'the top 100': 869771, 'top 100 retailer': 925520, 'ham': 374526, 'stubbornly': 814570, 'wallpaper': 965242, 'paste': 643863, 'my go': 548519, 'half year': 374301, 'year they': 1015011, 'have leftover': 381303, 'leftover bread': 485772, 'egg etc': 269854, 'etc have': 282579, 'have vision': 383510, 'vision of': 959153, 'of hungry': 584923, 'hungry ham': 411258, 'ham still': 374535, 'still stubbornly': 801246, 'stubbornly refusing': 814571, 'there eating': 878350, 'eating wallpaper': 266333, 'wallpaper paste': 965245, 'paste and': 643864, 'family pet': 298157, 'because brexit': 118962, 'brexit mean': 139513, 'mean brexit': 524376, 'brexit 19': 139485, 'the polish supermarket': 863946, 'polish supermarket ha': 663589, 'supermarket ha been': 820619, 'been my go': 121554, 'my go to': 548520, 'go to for': 354308, 'to for and': 906130, 'for and half': 319325, 'and half year': 64129, 'half year they': 374302, 'year they have': 1015013, 'they have leftover': 882338, 'have leftover bread': 381304, 'leftover bread milk': 485773, 'bread milk rice': 138534, 'milk rice pasta': 531806, 'rice pasta egg': 721101, 'pasta egg etc': 643714, 'egg etc have': 269856, 'etc have vision': 282583, 'have vision of': 383511, 'vision of hungry': 959154, 'of hungry ham': 584924, 'hungry ham still': 411259, 'ham still stubbornly': 374536, 'still stubbornly refusing': 801247, 'stubbornly refusing to': 814572, 'refusing to shop': 707100, 'to shop there': 914493, 'shop there eating': 760918, 'there eating wallpaper': 878351, 'eating wallpaper paste': 266334, 'wallpaper paste and': 965246, 'paste and family': 643865, 'and family pet': 62669, 'family pet because': 298158, 'pet because brexit': 653365, 'because brexit mean': 118963, 'brexit mean brexit': 139514, 'mean brexit 19': 524377, 'taker': 833220, 'store any': 806425, 'any taker': 79942, 'grocery store any': 365204, 'store any taker': 806429, 'faithoverfear': 296552, 'loveistheanswer': 504937, 'prayerforapandemic': 669083, 'so kind': 777510, 'employee folk': 273853, 'folk they': 312270, 'taking on': 833475, 'this fearful': 887524, 'fearful and': 301450, 'and frantic': 63251, 'frantic energy': 331184, 'energy than': 276596, 'than anyone': 840354, 'anyone send': 80523, 'send prayer': 749933, 'prayer of': 669065, 'strength when': 813240, 'love through': 504838, 'checkout grocery': 174924, 'grocery bekind': 364318, 'bekind faithoverfear': 126095, 'faithoverfear loveistheanswer': 296553, 'loveistheanswer prayerforapandemic': 504938, 'be so kind': 117259, 'so kind to': 777511, 'store employee folk': 807490, 'employee folk they': 273854, 'folk they are': 312271, 'are taking on': 90728, 'taking on more': 833478, 'on more of': 602208, 'of this fearful': 591972, 'this fearful and': 887525, 'fearful and frantic': 301451, 'and frantic energy': 63252, 'frantic energy than': 331185, 'energy than anyone': 276597, 'than anyone send': 840356, 'anyone send prayer': 80524, 'send prayer of': 749934, 'prayer of love': 669066, 'love and strength': 504601, 'and strength when': 72548, 'strength when you': 813241, 'when you love': 984578, 'you love through': 1019732, 'love through the': 504839, 'through the checkout': 894723, 'the checkout grocery': 850761, 'checkout grocery bekind': 174925, 'grocery bekind faithoverfear': 364319, 'bekind faithoverfear loveistheanswer': 126096, 'faithoverfear loveistheanswer prayerforapandemic': 296554, 'whatthefuck': 982944, 'dotard': 255950, 'misguided': 534034, 'pleb': 660830, 'whatthefuck is': 982945, 'the dotard': 853604, 'dotard talking': 255951, 'about great': 25323, 'the misguided': 860682, 'misguided pleb': 534037, 'pleb who': 660833, 'who voted': 989894, 'voted for': 960552, 'don they': 253964, 'deserve lower': 238077, 'whatthefuck is the': 982946, 'is the dotard': 452775, 'the dotard talking': 853605, 'dotard talking about': 255952, 'talking about great': 833968, 'about great for': 25325, 'great for the': 362685, 'for the amp': 326300, 'the amp gas': 848660, 'amp gas industry': 53860, 'gas industry what': 343880, 'industry what about': 436229, 'about the misguided': 26452, 'the misguided pleb': 860683, 'misguided pleb who': 534038, 'pleb who voted': 660834, 'who voted for': 989895, 'voted for you': 960555, 'for you don': 328051, 'you don they': 1018331, 'don they deserve': 253965, 'they deserve lower': 881899, 'deserve lower gas': 238078, 'gas price too': 344043, 'price too and': 677084, 'too and about': 924576, 'and about your': 57557, 'about your friend': 26997, 'pricechopper': 677714, 'market32': 517406, 'takingcareofmyparents': 833677, 'when senior': 983990, 'senior have': 750313, 'have senior': 382461, 'get meat': 347546, 'meat because': 525495, 'been stocked': 122041, 'stocked yet': 803480, 'is filled': 447800, 'with 20': 996975, 'this daughter': 887164, 'daughter brings': 226828, 'brings her': 140243, 'her dad': 391977, 'dad some': 224380, 'some pricechopper': 783636, 'pricechopper market32': 677715, 'market32 socialdistancing': 517407, 'socialdistancing takingcareofmyparents': 780781, 'when senior have': 983991, 'senior have senior': 750315, 'have senior hour': 382463, 'senior hour at': 750322, 'store but can': 806784, 'can get meat': 158430, 'get meat because': 347547, 'meat because it': 525496, 'because it ha': 119189, 'not been stocked': 568520, 'been stocked yet': 122043, 'stocked yet and': 803481, 'yet and the': 1015987, 'and the store': 73597, 'store is filled': 808490, 'is filled with': 447801, 'filled with 20': 305573, 'with 20 and': 996976, '20 and 30': 12942, 'and 30 year': 57445, '30 year old': 17274, 'old this daughter': 598500, 'this daughter brings': 887165, 'daughter brings her': 226829, 'brings her dad': 140244, 'her dad some': 391978, 'dad some pricechopper': 224381, 'some pricechopper market32': 783637, 'pricechopper market32 socialdistancing': 677716, 'market32 socialdistancing takingcareofmyparents': 517408, 'guardian united': 367906, 'kingdom ruby': 475344, 'the guardian united': 856914, 'guardian united kingdom': 367907, 'united kingdom ruby': 942188, 'kingdom ruby princess': 475345, '19 central': 5737, 'govt cap': 361091, 'cap price': 162442, 'sanitizers till': 736418, 'covid 19 central': 212775, '19 central govt': 5738, 'central govt cap': 169394, 'govt cap price': 361092, 'cap price of': 162444, 'and sanitizers till': 70906, 'sanitizers till june': 736419, 'line today': 493498, 'and guy': 64054, 'wa spitting': 963287, 'ground in': 366509, 'line please': 493359, 'word md': 1004524, 'in supermarket line': 428626, 'supermarket line today': 821331, 'line today and': 493499, 'today and guy': 919212, 'and guy wa': 64056, 'guy wa spitting': 369199, 'wa spitting on': 963288, 'spitting on the': 789607, 'the ground in': 856849, 'ground in line': 366511, 'in line please': 424767, 'line please spread': 493360, 'the word md': 871708, 'dro': 260048, 'texas governor': 839775, 'governor tx': 361017, 'tx announced': 937435, 'an interview': 56426, 'interview yesterday': 442270, 'texas government': 839773, 'government plan': 360460, 'to phase': 911696, 'phase in': 654614, 'in reopening': 427392, 'reopening of': 711391, 'can texas': 159935, 'texas successfully': 839829, 'successfully recover': 816271, 'it aftermath': 456300, 'aftermath dro': 36652, 'texas governor tx': 839776, 'governor tx announced': 361018, 'tx announced in': 937436, 'announced in an': 76961, 'in an interview': 420320, 'an interview yesterday': 56430, 'interview yesterday the': 442271, 'yesterday the texas': 1015887, 'the texas government': 869342, 'texas government plan': 839774, 'government plan to': 360463, 'plan to phase': 658306, 'to phase in': 911697, 'phase in reopening': 654615, 'in reopening of': 427393, 'reopening of the': 711393, 'of the texas': 591529, 'texas economy can': 839764, 'economy can texas': 267741, 'can texas successfully': 159936, 'texas successfully recover': 839831, 'successfully recover from': 816272, 'from the effect': 337681, 'effect of and': 269042, 'and it aftermath': 65478, 'it aftermath dro': 456301, 'opec effort': 611878, 'effort the': 269600, 'weekend agreement': 977310, 'too little': 924855, 'little and': 495231, 'avoid breaching': 105012, 'breaching storage': 138373, 'storage capacity': 805954, 'capacity ensuring': 162517, 'ensuring that': 278189, 'force all': 328323, 'all producer': 44058, 'production covid': 681981, 'in work': 430973, 'home low': 401560, 'may become': 521052, 'become the': 120155, 'all of opec': 43705, 'of opec effort': 587286, 'opec effort the': 611879, 'effort the weekend': 269601, 'the weekend agreement': 871324, 'weekend agreement is': 977311, 'agreement is too': 38778, 'is too little': 453281, 'too little and': 924856, 'little and too': 495232, 'and too late': 74272, 'late to avoid': 480926, 'to avoid breaching': 900869, 'avoid breaching storage': 105013, 'breaching storage capacity': 138374, 'storage capacity ensuring': 805956, 'capacity ensuring that': 162518, 'ensuring that low': 278195, 'that low oil': 844965, 'price will force': 677566, 'will force all': 993471, 'force all producer': 328324, 'all producer to': 44059, 'cut production covid': 223503, 'production covid 19': 681982, '19 increase in': 7810, 'increase in work': 432881, 'in work from': 430975, 'from home low': 335876, 'home low oil': 401561, 'oil price may': 597190, 'price may become': 675186, 'may become the': 521055, 'become the new': 120162, 'q4withbq': 691448, 'godrej consumer': 354886, 'product expects': 681172, 'it india': 458780, 'india operation': 434555, 'high teen': 395453, 'teen in': 836498, 'in quarter': 427198, 'quarter ended': 693239, 'ended march': 276132, 'march q4withbq': 515447, 'godrej consumer product': 354892, 'consumer product expects': 198456, 'product expects revenue': 681173, 'from it india': 336121, 'it india operation': 458781, 'india operation to': 434556, 'operation to decline': 613279, 'the high teen': 857325, 'high teen in': 395454, 'teen in quarter': 836499, 'in quarter ended': 427199, 'quarter ended march': 693240, 'ended march q4withbq': 276133, 'cannot cope': 161733, 'huge surge': 410223, 'mass unemployment': 519889, 'unemployment during': 941203, 'city across': 179034, 'food long': 315340, 'are seen': 89923, 'seen via': 747345, 'bank across america': 109564, 'across america are': 29239, 'america are warning': 51470, 'are warning that': 91535, 'warning that they': 967207, 'they cannot cope': 881704, 'cannot cope with': 161734, 'with the huge': 1001338, 'the huge surge': 857706, 'huge surge in': 410224, 'in demand caused': 422114, 'caused by mass': 167849, 'by mass unemployment': 153182, 'mass unemployment during': 519890, 'unemployment during the': 941205, 'during the city': 263098, 'the city across': 850915, 'city across the': 179035, 'for food long': 321604, 'food long line': 315341, 'long line are': 501493, 'line are seen': 492969, 'are seen via': 89927, 'rise after': 722765, 'after president': 36060, 'president donald': 670801, 'he expects': 384941, 'expects saudi': 291103, 'deal soon': 229485, 'end price': 275941, 'war trump': 966580, 'trump to': 933924, 'meet exxon': 527490, 'mobil chevron': 534927, 'chevron on': 175589, 'price rise after': 676229, 'rise after president': 722766, 'after president donald': 36061, 'president donald trump': 670802, 'donald trump said': 254117, 'trump said he': 933802, 'said he expects': 731107, 'he expects saudi': 384943, 'expects saudi arabia': 291104, 'arabia russia to': 83923, 'russia to reach': 728590, 'to reach deal': 912795, 'reach deal soon': 699909, 'deal soon to': 229486, 'soon to end': 785864, 'to end price': 905083, 'end price war': 275944, 'price war trump': 677381, 'war trump to': 966581, 'trump to meet': 933926, 'to meet exxon': 910024, 'meet exxon mobil': 527491, 'exxon mobil chevron': 293973, 'mobil chevron on': 534928, 'chevron on friday': 175590, 'iloveqatar': 416487, 'dohanews': 252238, 'hypermarket one': 412346, 'leading retailer': 483734, 'in qatar': 427158, 'qatar ha': 691491, 'it ring': 460784, 'ring road': 722531, 'road branch': 724427, 'branch for': 137676, 'sanitizing qatar': 736500, 'doha iloveqatar': 252235, 'iloveqatar qatarnews': 416488, 'qatarnews dohanews': 691518, 'dohanews read': 252239, 'lulu hypermarket one': 506648, 'hypermarket one of': 412347, 'of the leading': 591181, 'the leading retailer': 859234, 'leading retailer in': 483735, 'retailer in qatar': 719203, 'in qatar ha': 427159, 'qatar ha closed': 691492, 'closed it ring': 183200, 'it ring road': 460785, 'ring road branch': 722532, 'road branch for': 724428, 'branch for cleaning': 137677, 'for cleaning and': 320110, 'and sanitizing qatar': 70912, 'sanitizing qatar doha': 736501, 'qatar doha iloveqatar': 691485, 'doha iloveqatar qatarnews': 252236, 'iloveqatar qatarnews dohanews': 416489, 'qatarnews dohanews read': 691519, 'dohanews read more': 252240, 'california isn': 155526, 'isn just': 454574, 'keeping hair': 472437, 'hair and': 373953, 'and beard': 58781, 'beard looking': 118437, 'good anymore': 356759, 'anymore their': 80154, 'to producing': 912217, 'ha allowed': 369490, 'allowed them': 46222, 'hire back': 397003, 'back worker': 107482, 'worker furloughed': 1007005, 'furloughed during': 341919, 'southern california isn': 786853, 'california isn just': 155527, 'isn just about': 454575, 'just about keeping': 468134, 'about keeping hair': 25616, 'keeping hair and': 472438, 'hair and beard': 373954, 'and beard looking': 58782, 'beard looking good': 118438, 'looking good anymore': 502925, 'good anymore their': 356760, 'anymore their shift': 80155, 'their shift to': 874695, 'shift to producing': 758444, 'to producing hand': 912218, 'sanitizer ha allowed': 735011, 'ha allowed them': 369494, 'allowed them to': 46223, 'them to hire': 876479, 'to hire back': 907794, 'hire back worker': 397004, 'back worker furloughed': 107483, 'worker furloughed during': 1007006, 'furloughed during the': 341920, 'fourth': 330713, 'food however': 314868, 'however panic': 409438, 'buying will': 151366, 'will strain': 995005, 'so calm': 776694, 'fuck down': 339550, 'considerate of': 195219, 'that fourth': 843951, 'fourth pack': 330720, 're hoarding': 698816, 'africa is not': 35091, 'of food however': 583714, 'food however panic': 314869, 'however panic buying': 409439, 'panic buying will': 637967, 'buying will strain': 151371, 'will strain the': 995006, 'strain the supply': 812302, 'chain so calm': 171118, 'so calm the': 776695, 'calm the fuck': 156811, 'the fuck down': 855963, 'fuck down and': 339551, 'down and be': 256488, 'and be considerate': 58748, 'be considerate of': 114197, 'considerate of the': 195222, 'the family that': 854905, 'family that will': 298295, 'that will need': 847594, 'will need that': 994150, 'need that fourth': 555725, 'that fourth pack': 843952, 'fourth pack of': 330721, 'pack of bog': 633090, 'bog roll you': 133966, 'roll you re': 725613, 'you re hoarding': 1020646, 'housebound': 406719, 'noah': 565955, 'printable': 678306, 'spending our': 788940, 'our day': 622702, 'day housebound': 227764, 'housebound due': 406726, 'pandemic at': 634959, 'point you': 662724, 'and noah': 67655, 'noah want': 565956, 'have printable': 382044, 'printable list': 678307, 'are spending our': 90326, 'spending our day': 788941, 'our day housebound': 622703, 'day housebound due': 227765, 'housebound due to': 406727, '19 pandemic at': 9269, 'pandemic at some': 634962, 'some point you': 783595, 'point you ll': 662726, 'store and noah': 806306, 'and noah want': 67656, 'noah want to': 565957, 'you have printable': 1019096, 'have printable list': 382045, 'printable list of': 678308, 'list of what': 494490, 'of what to': 593065, 'what to get': 982456, 'chiswick': 177556, 'stretch': 813554, 'in chiswick': 421457, 'chiswick london': 177557, 'london are': 501021, 'that stretch': 846525, 'stretch down': 813555, 'aisle panic': 40341, 'over continues': 630107, 'continues latest': 201413, 'food shopper in': 316505, 'shopper in chiswick': 761558, 'in chiswick london': 421458, 'chiswick london are': 177558, 'london are forced': 501026, 'forced to wait': 328667, 'wait in long': 964142, 'long queue that': 501587, 'queue that stretch': 694081, 'that stretch down': 846526, 'stretch down the': 813556, 'the supermarket aisle': 868449, 'supermarket aisle panic': 818841, 'aisle panic buying': 40342, 'buying over continues': 150856, 'over continues latest': 630108, 'continues latest on': 201414, 'latest on here': 481474, 'cedar': 168738, 'chrest': 178042, 'allentown': 45752, 'notch': 572673, 'spotless': 790157, 'splash': 789633, 'lehighvalley': 486093, 'on cedar': 599853, 'cedar chrest': 168739, 'chrest in': 178043, 'in allentown': 420189, 'allentown is': 45753, 'is top': 453290, 'top notch': 925626, 'notch the': 572676, 'lady doing': 478753, 'doing coffee': 252330, 'coffee have': 185489, 'have everything': 380500, 'everything spotless': 288005, 'spotless and': 790158, 'register gave': 707571, 'me splash': 523526, 'splash of': 789634, 'sanitizer lehighvalley': 735279, 'lehighvalley safetyfirst': 486094, 'today ha been': 919596, 'been my first': 121553, 'first day out': 308617, 'day out in': 228178, 'this new world': 889127, 'new world and': 559900, 'world and all': 1009276, 'and all can': 57857, 'say is on': 738821, 'is on cedar': 450460, 'on cedar chrest': 599854, 'cedar chrest in': 168740, 'chrest in allentown': 178044, 'in allentown is': 420190, 'allentown is top': 45754, 'is top notch': 453291, 'top notch the': 925627, 'notch the lady': 572677, 'the lady doing': 858908, 'lady doing coffee': 478754, 'doing coffee have': 252331, 'coffee have everything': 185490, 'have everything spotless': 380502, 'everything spotless and': 288006, 'spotless and the': 790159, 'and the lady': 73442, 'the register gave': 865441, 'register gave me': 707572, 'gave me splash': 344646, 'me splash of': 523527, 'splash of hand': 789635, 'hand sanitizer lehighvalley': 375470, 'sanitizer lehighvalley safetyfirst': 735280, 'you worried': 1022440, 'during since': 263019, 've failed': 953108, 'failed at': 296125, 'at getting': 98751, 'getting grocery': 349010, 'are you worried': 91883, 'you worried about': 1022441, 'supermarket during since': 820058, 'during since you': 263020, 'since you ve': 771018, 'you ve failed': 1022039, 've failed at': 953109, 'failed at getting': 296128, 'at getting grocery': 98752, 'getting grocery delivery': 349011, 'mygovindia': 550727, 'keep at': 471321, 'the bay': 849357, 'bay mygovindia': 112950, 'mygovindia wash': 550728, 'soap frequently': 779011, 'frequently do': 332849, 'any cost': 79073, 'cost stay': 208118, 'movie or': 544042, 'something productive': 785018, 'productive do': 682292, 'online take': 609516, 'disease seriously': 245224, 'seriously but': 751550, 'to keep at': 908753, 'keep at the': 471324, 'at the bay': 100883, 'the bay mygovindia': 849360, 'bay mygovindia wash': 112951, 'mygovindia wash your': 550729, 'with soap frequently': 1000798, 'soap frequently do': 779013, 'frequently do not': 332850, 'your face at': 1023741, 'face at any': 294321, 'at any cost': 98020, 'any cost stay': 79075, 'cost stay at': 208119, 'home and watch': 400711, 'and watch movie': 75222, 'watch movie or': 968479, 'movie or do': 544043, 'or do something': 615020, 'do something productive': 250151, 'something productive do': 785019, 'productive do not': 682293, 'not order food': 570851, 'food online take': 315625, 'online take this': 609518, 'take this disease': 832709, 'this disease seriously': 887254, 'disease seriously but': 245225, 'seriously but do': 751551, 'freaky': 331564, 'insan': 439021, 'artmeme': 94638, 'my freaky': 548404, 'freaky sanitizer': 331567, 'sanitizer ve': 736004, 've insan': 953280, 'insan artmeme': 439022, 'where is my': 984950, 'is my freaky': 449795, 'my freaky sanitizer': 548405, 'freaky sanitizer ve': 331568, 'sanitizer ve insan': 736005, 've insan artmeme': 953281, 'home improvement': 401405, 'improvement and': 419575, 'and hardware': 64196, 'keeping steady': 472562, 'steady pace': 799131, 'pace of': 632948, 'home improvement and': 401406, 'improvement and hardware': 419576, 'and hardware store': 64197, 'hardware store are': 378321, 'store are keeping': 806491, 'are keeping steady': 87665, 'keeping steady pace': 472563, 'steady pace of': 799132, 'pace of business': 632949, 'of business during': 580951, 'supplychainmanagement': 826249, 'manufacturingcapability': 513688, 'scm': 742287, 'sport company': 789913, 'fashion house': 299813, 'are shifting': 90035, 'their factory': 873235, 'factory production': 295983, 'production toward': 682257, 'toward medical': 927139, 'coronavirus supplychainmanagement': 206850, 'supplychainmanagement manufacturingcapability': 826250, 'manufacturingcapability scm': 513689, 'sport company and': 789914, 'company and fashion': 190380, 'and fashion house': 62707, 'fashion house are': 299814, 'house are shifting': 406198, 'are shifting their': 90038, 'shifting their factory': 758561, 'their factory production': 873237, 'factory production toward': 295984, 'production toward medical': 682258, 'toward medical supply': 927140, 'supply and hand': 824722, 'sanitizer for the': 734925, 'for the battle': 326315, 'battle against the': 112778, 'against the coronavirus': 37649, 'the coronavirus supplychainmanagement': 851920, 'coronavirus supplychainmanagement manufacturingcapability': 206851, 'supplychainmanagement manufacturingcapability scm': 826251, 'for sorting': 325799, 'sorting out': 786186, 'on vulnerable': 605075, 'list couldn': 494299, 'couldn get': 209883, 'usual supermarket': 951030, 'supermarket one': 821750, 'customer now': 222627, 'now isolation': 575098, 'isolation grateful': 455281, 'hat off to': 378852, 'off to for': 594321, 'to for sorting': 906156, 'for sorting out': 325800, 'sorting out delivery': 786188, 'out delivery for': 625945, 'delivery for people': 234030, 'for people on': 324456, 'people on vulnerable': 648978, 'on vulnerable list': 605076, 'vulnerable list couldn': 961032, 'list couldn get': 494300, 'couldn get my': 209888, 'my usual supermarket': 550482, 'usual supermarket one': 951031, 'supermarket one so': 821756, 'one so customer': 607062, 'so customer now': 776826, 'customer now isolation': 222629, 'now isolation grateful': 575100, 'at 2002': 97503, '2002 are': 13567, 'we back': 970803, 'back almost': 106839, 'almost 20': 46489, 'year because': 1014426, 'price are already': 672631, 'are already at': 84398, 'already at 2002': 47198, 'at 2002 are': 97505, '2002 are we': 13568, 'are we back': 91559, 'we back almost': 970804, 'back almost 20': 106840, 'almost 20 year': 46490, '20 year because': 13417, 'year because of': 1014427, 'pandemic profiteer': 636244, 'profiteer run': 682974, 'run up': 727855, '19 miami': 8643, 'miami herald': 530184, 'herald it': 392551, 'almost if': 46666, 'market care': 516148, 'profit above': 682641, 'above all': 27042, 'all else': 42669, 'and won': 75817, 'won magically': 1003872, 'magically regulate': 508400, 'regulate itself': 707982, 'pandemic profiteer run': 636245, 'profiteer run up': 682975, 'run up price': 727856, 'on mask for': 602044, 'mask for covid': 518671, 'covid 19 miami': 213431, '19 miami herald': 8644, 'miami herald it': 530186, 'herald it almost': 392552, 'it almost if': 456402, 'almost if the': 46669, 'if the free': 414975, 'the free market': 855768, 'free market care': 331950, 'market care about': 516149, 'care about profit': 163801, 'about profit above': 26008, 'profit above all': 682642, 'above all else': 27043, 'all else and': 42670, 'else and won': 271627, 'and won magically': 75820, 'won magically regulate': 1003873, 'magically regulate itself': 508401, 'wirh': 996584, 'rs500': 726704, 'shd': 755834, 'sir respect': 771638, 'respect pm': 715040, 'pm concern': 661882, 'concern poor': 193057, 'poor but': 664132, 'but once': 146661, 'outbreak than': 628689, 'it while': 462350, 'while keeping': 986984, 'keeping poor': 472523, 'poor in': 664198, 'mind go': 532668, 'for lock': 323060, 'down wirh': 257482, 'wirh these': 996585, 'step no': 799596, 'no utility': 565823, 'utility bill': 951262, 'month le': 537820, 'than rs500': 841100, 'rs500 reduce': 726705, 'reduce oil': 705874, 'price every': 673718, 'every one': 286046, 'one shd': 607009, 'shd feed': 755835, 'feed poor': 302360, 'sir respect pm': 771639, 'respect pm concern': 715041, 'pm concern poor': 661883, 'concern poor but': 193058, 'poor but once': 664133, 'but once this': 146663, 'once this outbreak': 605754, 'this outbreak than': 889330, 'outbreak than it': 628690, 'than it will': 840803, 'will not able': 994184, 'able to control': 24466, 'to control it': 903447, 'control it while': 202046, 'it while keeping': 462351, 'while keeping poor': 986991, 'keeping poor in': 472524, 'poor in mind': 664200, 'in mind go': 425340, 'mind go for': 532669, 'go for lock': 353562, 'for lock down': 323061, 'lock down wirh': 499062, 'down wirh these': 257483, 'wirh these step': 996586, 'these step no': 880725, 'step no utility': 799597, 'no utility bill': 565824, 'utility bill for': 951264, 'bill for next': 130575, 'for next month': 323852, 'next month le': 561456, 'month le than': 537821, 'le than rs500': 483186, 'than rs500 reduce': 841101, 'rs500 reduce oil': 726706, 'reduce oil price': 705875, 'oil price every': 597121, 'price every one': 673720, 'every one shd': 286052, 'one shd feed': 607010, 'shd feed poor': 755836, 'creditworthiness': 216602, 'dinged': 242999, 'credit score': 216501, 'score are': 742348, 'an indication': 56273, 'indication of': 435023, 'your creditworthiness': 1023383, 'creditworthiness in': 216605, 'not during': 569122, 'during global': 262658, 'like 19': 489683, 'be dinged': 114464, 'dinged for': 243000, 'issue caused': 455704, 'natural or': 552850, 'or declared': 614915, 'declared disaster': 231226, 'credit score are': 216503, 'score are supposed': 742349, 'be an indication': 113611, 'an indication of': 56274, 'indication of your': 435025, 'of your creditworthiness': 593456, 'your creditworthiness in': 1023384, 'creditworthiness in normal': 216606, 'normal time not': 567369, 'time not during': 897289, 'not during global': 569123, 'during global health': 262661, 'crisis like 19': 217658, 'like 19 consumer': 489685, '19 consumer should': 5986, 'not be dinged': 568372, 'be dinged for': 114465, 'dinged for issue': 243001, 'for issue caused': 322685, 'issue caused by': 455705, 'caused by natural': 167851, 'by natural or': 153306, 'natural or declared': 552851, 'or declared disaster': 614916, 'iaconelli': 412525, 'authored': 103655, 'govern': 359762, 'michael iaconelli': 530246, 'iaconelli authored': 412526, 'authored new': 103656, 'jersey consumer': 465192, 'law govern': 482297, 'govern covid': 359765, 'retail seller': 718538, 'seller beware': 748988, 'beware part': 129099, 'firm ongoing': 308400, '19 task': 11037, 'force resource': 328493, 'center read': 169292, 'michael iaconelli authored': 530247, 'iaconelli authored new': 412527, 'authored new jersey': 103657, 'new jersey consumer': 558966, 'jersey consumer protection': 465194, 'protection law govern': 685510, 'law govern covid': 482298, 'govern covid 19': 359766, '19 retail seller': 10205, 'retail seller beware': 718539, 'seller beware part': 748989, 'beware part of': 129100, 'of the firm': 591029, 'the firm ongoing': 855271, 'firm ongoing covid': 308401, 'covid 19 task': 213911, '19 task force': 11038, 'task force resource': 834697, 'force resource center': 328494, 'resource center read': 714738, 'still to': 801315, 'frontlines working': 338931, 'pandemic now': 636058, 'have plea': 381952, 'both city': 135879, 'state leader': 795729, 'leader 19': 483407, 'still to come': 801317, 'to come on': 903040, 'come on grocery': 187434, 'store worker say': 811578, 'they are also': 881200, 'are also on': 84469, 'also on the': 48616, 'the frontlines working': 855905, 'frontlines working through': 338932, 'working through this': 1008969, 'this pandemic now': 889408, 'pandemic now they': 636061, 'they have plea': 882363, 'have plea to': 381953, 'plea to both': 659563, 'to both city': 901952, 'both city and': 135880, 'city and state': 179052, 'and state leader': 72277, 'state leader 19': 795730, 'medium enterprise': 527088, 'enterprise have': 278454, 'high share': 395402, '47 of': 19261, 'and medium enterprise': 66923, 'medium enterprise have': 527089, 'enterprise have high': 278456, 'have high share': 380944, 'high share of': 395403, 'share of job': 755119, 'losing business due': 503543, 'due to they': 261996, 'to they employ': 917360, 'employ 47 of': 273433, '47 of worker': 19263, 'of worker but': 593276, '60 of total': 20969, 'of total job': 592330, 'lost here our': 503859, 'here our analysis': 393428, 'prototype': 686007, 'are urgently': 91389, 'urgently working': 948408, 'on prototype': 602985, 'prototype for': 686008, 'cashier safety': 166598, 'safety hygiene': 730571, 'hygiene screen': 412164, 'screen which': 742739, 'ready today': 700989, 'today interested': 919710, 'interested party': 441476, 'party please': 643024, 'please email': 659951, 'email sale': 272285, 'we are urgently': 970750, 'are urgently working': 91391, 'urgently working on': 948409, 'working on prototype': 1008813, 'on prototype for': 602986, 'prototype for supermarket': 686009, 'for supermarket cashier': 326002, 'supermarket cashier safety': 819568, 'cashier safety hygiene': 166599, 'safety hygiene screen': 730572, 'hygiene screen which': 412165, 'screen which will': 742740, 'will be ready': 992634, 'be ready today': 116699, 'ready today interested': 700990, 'today interested party': 919711, 'interested party please': 441477, 'party please email': 643025, 'please email sale': 659956, 'email sale com': 272287, 'handful': 376101, 'obv': 578772, '1st limited': 12758, 'limited grocery': 492638, 'experience tonight': 291519, 'tonight amid': 924356, 'wa actually': 961430, 'actually very': 31006, 'very pleasant': 955412, 'pleasant everyone': 659606, 'everyone practiced': 287295, 'only let': 610720, 'let handful': 486765, 'handful together': 376106, 'together lady': 920846, 'lady cleaned': 478749, 'cleaned the': 180724, 'cart before': 165272, 'before handing': 122836, 'handing it': 376127, 'over everyone': 630198, 'wa obv': 962793, 'obv nervous': 578773, 'nervous but': 557463, 'but nice': 146476, 'had my 1st': 373317, 'my 1st limited': 547135, '1st limited grocery': 12759, 'limited grocery store': 492639, 'grocery store shopping': 365768, 'shopping experience tonight': 762621, 'experience tonight amid': 291520, 'tonight amid the': 924357, 'the outbreak it': 862652, 'outbreak it wa': 628394, 'it wa actually': 462057, 'wa actually very': 961431, 'actually very pleasant': 31007, 'very pleasant everyone': 955413, 'pleasant everyone practiced': 659607, 'everyone practiced social': 287296, 'distancing they only': 247544, 'they only let': 882827, 'only let handful': 610722, 'let handful together': 486766, 'handful together lady': 376107, 'together lady cleaned': 920847, 'lady cleaned the': 478750, 'cleaned the cart': 180725, 'the cart before': 850443, 'cart before handing': 165273, 'before handing it': 122837, 'handing it over': 376128, 'it over everyone': 460207, 'over everyone wa': 630199, 'everyone wa obv': 287539, 'wa obv nervous': 962794, 'obv nervous but': 578774, 'nervous but nice': 557465, 'consider them': 195150, 'very brave': 955022, 'brave people': 138226, 'not hero': 569952, 'utmost respect': 951392, 'more grocery store': 539375, 'worker are getting': 1006391, 'are getting covid': 86797, '19 and dying': 5016, 'and dying from': 61829, 'dying from it': 263823, 'from it consider': 336109, 'it consider them': 457272, 'consider them very': 195152, 'them very brave': 876578, 'very brave people': 955023, 'brave people if': 138228, 'people if not': 648316, 'if not hero': 414500, 'not hero they': 569953, 'this pandemic they': 889438, 'pandemic they deserve': 636734, 'deserve our utmost': 238095, 'our utmost respect': 625249, 'paper section': 640731, 'where work': 985363, 'work coronapocolypse': 1005006, 'toilet paper section': 921436, 'paper section of': 640732, 'store where work': 811266, 'where work coronapocolypse': 985365, 'work coronapocolypse panicshopping': 1005007, 'bet after': 128060, 'will tax': 995093, 'will blame': 992836, 'blame it': 132269, 'of wage': 592879, 'wage for': 963862, 'everyone justsaying': 287133, 'bet after all': 128061, 'all this is': 45114, 'is over our': 450718, 'over our food': 630467, 'our food price': 623120, 'food price will': 315985, 'and so will': 71857, 'so will tax': 778777, 'will tax and': 995094, 'tax and they': 834931, 'they will blame': 883830, 'will blame it': 992837, 'blame it on': 132271, 'it on people': 460053, 'on people panic': 602746, 'buying and that': 149937, 'and that they': 73213, 'had to pay': 373709, 'pay out for': 645031, 'out for loss': 626136, 'loss of wage': 503757, 'of wage for': 592881, 'wage for everyone': 963864, 'for everyone justsaying': 321218, 'nowheretogo': 576581, 'poll are': 663826, 'price good': 674224, 'or bad': 614475, 'america right': 51667, 'now click': 574389, 'vote gasprices': 960486, 'gasprices nowheretogo': 344301, 'poll are low': 663827, 'are low gas': 87927, 'gas price good': 343974, 'price good or': 674225, 'good or bad': 357524, 'or bad for': 614477, 'bad for america': 107859, 'for america right': 319236, 'america right now': 51668, 'right now click': 722041, 'now click the': 574390, 'link to vote': 493951, 'to vote gasprices': 918240, 'vote gasprices nowheretogo': 960487, 'pjs': 657242, 'robe': 724692, 'official number': 595857, 'is anywhere': 445775, 'anywhere near': 81132, 'near accurate': 553460, 'accurate you': 28914, 're wrong': 699849, 'wrong dead': 1013022, 'dead wrong': 229191, 'wrong just': 1013055, 'in pjs': 426716, 'pjs and': 657243, 'and robe': 70583, 'robe with': 724693, 'with flushed': 998469, 'flushed face': 311581, 'strong cough': 814001, 'cough just': 208497, 'need regular': 555505, 'regular rx': 707854, 'rx that': 728798, 'get every': 346962, 'think the official': 885642, 'the official number': 862096, 'official number of': 595858, '19 case is': 5685, 'case is anywhere': 165827, 'is anywhere near': 445776, 'anywhere near accurate': 81133, 'near accurate you': 553461, 'accurate you re': 28915, 'you re wrong': 1020802, 're wrong dead': 699850, 'wrong dead wrong': 1013023, 'dead wrong just': 229192, 'wrong just saw': 1013056, 'saw guy at': 738124, 'store in pjs': 808372, 'in pjs and': 426717, 'pjs and robe': 657244, 'and robe with': 70584, 'robe with flushed': 724694, 'with flushed face': 998470, 'flushed face and': 311582, 'face and strong': 294302, 'and strong cough': 72588, 'strong cough just': 814002, 'cough just need': 208498, 'just need regular': 469307, 'need regular rx': 555507, 'regular rx that': 707855, 'rx that get': 728799, 'that get every': 843997, 'get every month': 346963, 'mortgage to': 541968, 'of disaster': 582651, 'disaster emergency': 244201, 'the buckscounty': 850074, 'protection department': 685394, 'second mortgage to': 743767, 'mortgage to afford': 541969, 'to afford hand': 900159, 'middle of disaster': 530677, 'of disaster emergency': 582653, 'disaster emergency is': 244202, 'illegal call the': 416207, 'call the buckscounty': 156126, 'the buckscounty consumer': 850075, 'consumer protection department': 198521, 'script': 742849, 'slumping': 774724, 'ripping the': 722722, 'the script': 866539, 'script the': 742854, 'virus coupled': 958095, 'with slumping': 1000762, 'slumping oil': 774729, 'seen industry': 747092, 'industry player': 436044, 'player tear': 659337, 'tear up': 835976, 'cut cost': 223279, 'ripping the script': 722724, 'the script the': 866540, 'script the deadly': 742855, 'the deadly covid': 852946, '19 virus coupled': 11794, 'virus coupled with': 958096, 'coupled with slumping': 211740, 'with slumping oil': 1000763, 'slumping oil price': 774731, 'oil price ha': 597155, 'price ha seen': 674391, 'ha seen industry': 371830, 'seen industry player': 747093, 'industry player tear': 436045, 'player tear up': 659338, 'tear up their': 835977, 'up their business': 946232, 'their business plan': 872685, 'business plan for': 144225, 'plan for the': 658127, 'the year they': 872172, 'year they cut': 1015012, 'they cut cost': 881862, 'italy on': 462880, 'the panicbuying': 863236, 'panicbuying in': 638970, 'uk to': 938824, 'to shame': 914329, 'shame please': 754635, 'please calm': 659757, 'down people': 257083, 'really making': 702404, 'difficult down': 242209, 'two pint': 937150, 'few bit': 303724, 'bit in': 131584, 'freezer convid19uk': 332597, 'convid19uk panicbuyinguk': 202622, 'just seen supermarket': 469742, 'seen supermarket in': 747261, 'in italy on': 424310, 'italy on the': 462882, 'news and they': 560240, 'and they put': 73928, 'they put the': 882957, 'put the panicbuying': 690865, 'the panicbuying in': 863238, 'panicbuying in the': 638972, 'the uk to': 870294, 'uk to shame': 938828, 'to shame please': 914331, 'shame please please': 754636, 'please please calm': 660298, 'please calm down': 659758, 'calm down people': 156724, 'down people you': 257088, 'people you are': 650568, 'are really making': 89481, 'really making it': 702405, 'making it difficult': 511138, 'it difficult down': 457551, 'difficult down to': 242210, 'down to two': 257384, 'to two pint': 917870, 'two pint of': 937151, 'of milk no': 586516, 'milk no bread': 531741, 'no bread and': 563725, 'bread and few': 138396, 'and few bit': 62813, 'few bit in': 303726, 'bit in the': 131587, 'in the freezer': 429217, 'the freezer convid19uk': 855782, 'freezer convid19uk panicbuyinguk': 332598, 'reason this': 703010, 'ppe hand': 667965, 'paper anything': 639878, 'anything really': 80869, 'no reason this': 565298, 'reason this country': 703012, 'this country should': 886971, 'country should be': 211046, 'be in shortage': 115430, 'in shortage of': 427917, 'of ppe hand': 588317, 'ppe hand sanitizer': 667966, 'toilet paper anything': 921191, 'paper anything really': 639879, 'job doesn': 465795, 'allow it': 45987, 'it monitor': 459654, 'service area': 752149, 'that area': 842845, 'and assist': 58453, 'assist customer': 96622, 'customer when': 223060, 'when needed': 983763, 'needed my': 556438, 'my biggest': 547447, 'biggest fear': 130242, '19 without': 12150, 'without knowing': 1002748, 'knowing it': 477124, 'love to practice': 504852, 'distancing but my': 247060, 'but my job': 146434, 'my job doesn': 548908, 'job doesn allow': 465796, 'doesn allow it': 251695, 'allow it monitor': 45990, 'it monitor the': 459656, 'monitor the self': 537323, 'the self service': 866657, 'self service area': 747904, 'service area in': 752150, 'area in retail': 92071, 'store and to': 806382, 'and to do': 74166, 'do this must': 250359, 'this must stay': 889070, 'stay in that': 797064, 'in that area': 428911, 'that area and': 842846, 'area and assist': 91931, 'and assist customer': 58454, 'assist customer when': 96623, 'customer when needed': 223061, 'when needed my': 983766, 'needed my biggest': 556439, 'my biggest fear': 547448, 'biggest fear is': 130243, 'fear is contracting': 301174, 'is contracting covid': 446819, 'covid 19 without': 214082, '19 without knowing': 12151, 'without knowing it': 1002749, 'knowing it and': 477125, 'screwing': 742835, 'screwing the': 742840, 'little guy': 495380, 'guy for': 368993, 'profit get': 682743, 'nice and': 562335, 'high maga': 395166, 'maga kag': 508280, 'kag gasprices': 470612, 'gasprices depression': 344286, 'screwing the little': 742841, 'the little guy': 859487, 'little guy for': 495381, 'guy for corporate': 368994, 'for corporate profit': 320405, 'corporate profit get': 207325, 'profit get them': 682744, 'get them gas': 348361, 'price nice and': 675337, 'nice and high': 562340, 'and high maga': 64555, 'high maga kag': 395167, 'maga kag gasprices': 508281, 'kag gasprices depression': 470613, 'motorhome': 543346, 'pei': 646340, 'today took': 920383, 'took advantage': 925202, 'these gas': 880049, 'filled up': 305565, 'our motorhome': 623949, 'motorhome ve': 543347, 'given so': 351108, 'many dirty': 513997, 'life that': 489093, 'energy that': 276598, 'helped pei': 391090, 'pei have': 646341, 'day keep': 227868, 'good work': 357975, 'work pei': 1005600, 'today took advantage': 920384, 'took advantage of': 925203, 'advantage of these': 33036, 'of these gas': 591825, 'these gas price': 880050, 'gas price and': 343929, 'price and filled': 672415, 'and filled up': 62849, 'filled up our': 305567, 'up our motorhome': 945704, 'our motorhome ve': 623950, 'motorhome ve never': 543348, 've never been': 953381, 'never been given': 557894, 'been given so': 121213, 'given so many': 351109, 'so many dirty': 777650, 'many dirty look': 513998, 'dirty look in': 243761, 'look in my': 502418, 'my life that': 549041, 'life that the': 489098, 'that the kind': 846758, 'kind of energy': 474891, 'of energy that': 583111, 'energy that ha': 276599, 'that ha helped': 844119, 'ha helped pei': 370856, 'helped pei have': 391091, 'pei have no': 646342, 'have no new': 381640, 'no new covid': 564865, 'few day keep': 303781, 'day keep up': 227870, 'keep up the': 472179, 'up the good': 946175, 'the good work': 856455, 'good work pei': 357979, 'psa shortage': 687432, 'item occur': 463482, 'occur due': 579014, 'to individual': 908337, 'individual hoarding': 435195, 'hoarding by': 399237, 'by panicked': 153523, 'panicked consumer': 639265, 'be respectful': 116827, 'respectful and': 715123, 'and considerate': 60317, 'only purchase': 611035, 'purchase what': 689723, 'we allow': 970382, 'allow ourselves': 46025, 'ourselves to': 625495, 'exercise restraint': 290094, 'restraint then': 717089, 'plenty to': 661004, 'psa shortage of': 687433, 'and item occur': 65629, 'item occur due': 463483, 'occur due to': 579015, 'due to individual': 261827, 'to individual hoarding': 908340, 'individual hoarding by': 435196, 'hoarding by panicked': 399239, 'by panicked consumer': 153525, 'panicked consumer please': 639266, 'consumer please be': 198374, 'please be respectful': 659711, 'be respectful and': 116828, 'respectful and considerate': 715124, 'and considerate of': 60318, 'considerate of your': 195225, 'of your community': 593452, 'your community and': 1023268, 'community and only': 189720, 'and only purchase': 68148, 'only purchase what': 611036, 'purchase what you': 689725, 'you need if': 1020004, 'need if we': 555035, 'if we allow': 415264, 'we allow ourselves': 970384, 'allow ourselves to': 46026, 'ourselves to exercise': 625497, 'to exercise restraint': 905418, 'exercise restraint then': 290095, 'restraint then there': 717090, 'then there will': 877643, 'be plenty to': 116455, 'plenty to do': 661006, 'we recover': 973053, 'from hope': 335938, 'our gratitude': 623296, 'employee cannot': 273710, 'cannot imagine': 161964, 'do without': 250581, 'once we recover': 605782, 'we recover from': 973054, 'recover from hope': 705181, 'from hope we': 335940, 'hope we do': 403765, 'we do more': 971339, 'more to show': 540800, 'show our gratitude': 767084, 'our gratitude to': 623299, 'gratitude to healthcare': 362402, 'healthcare worker truck': 387393, 'and grocery and': 63977, 'grocery and convenience': 364227, 'and convenience store': 60525, 'convenience store employee': 202345, 'store employee cannot': 807467, 'employee cannot imagine': 273711, 'cannot imagine what': 161967, 'imagine what we': 416824, 'what we would': 982571, 'we would do': 973968, 'would do without': 1011773, 'do without them': 250586, 'hottest': 405328, 'human death': 410479, 'death stay': 230214, 'home hell': 401364, 'hell ha': 389013, 'the hottest': 857571, 'hottest disinfectant': 405333, 'human death stay': 410480, 'death stay home': 230215, 'stay home hell': 796972, 'home hell ha': 401365, 'hell ha the': 389014, 'ha the hottest': 372203, 'the hottest disinfectant': 857574, 'spread is': 790582, 'on gasoline': 601072, 'which plummeted': 986222, 'plummeted almost': 661324, 'almost 32': 46503, '32 on': 17688, 'monday read': 536369, 'free full': 331866, 'plunging demand amid': 661527, 'the spread is': 867631, 'spread is weighing': 790587, 'heavily on gasoline': 388594, 'on gasoline price': 601073, 'gasoline price which': 344270, 'price which plummeted': 677514, 'which plummeted almost': 986223, 'plummeted almost 32': 661325, 'almost 32 on': 46504, '32 on monday': 17689, 'on monday read': 602182, 'monday read the': 536370, 'read the free': 700575, 'the free full': 855765, 'free full story': 331867, 'full story here': 340900, 'inbox via': 431263, 'via non': 956116, 'worker must': 1007400, 'activity like': 30469, 'must practice': 546809, 'distancing stayhome': 247503, 'stayhome flattenthecurve': 798003, 'inbox via non': 431264, 'via non essential': 956117, 'essential worker must': 281843, 'worker must stay': 1007405, 'must stay home': 546905, 'stay home except': 796961, 'essential activity like': 280755, 'activity like going': 30470, 'store when you': 811253, 're not at': 699077, 'home you must': 402585, 'you must practice': 1019925, 'must practice social': 546811, 'social distancing stayhome': 779727, 'distancing stayhome flattenthecurve': 247504, 'anywhere regarding': 81145, 'the justsayin': 858724, 'facebook or anywhere': 294979, 'or anywhere regarding': 614389, 'anywhere regarding the': 81146, 'regarding the justsayin': 707292, 'pakistan biggest': 634428, 'is acting': 445319, 'acting responsibly': 29899, 'responsibly by': 716087, 'pakistan biggest online': 634429, 'shopping platform is': 763634, 'platform is acting': 658989, 'is acting responsibly': 445320, 'acting responsibly by': 29901, 'responsibly by following': 716088, 'following the who': 312911, 'the who guideline': 871471, 'who guideline for': 988826, 'guideline for covid': 368424, '19 in delivering': 7738, 'thorn': 891734, 'deliberately hiking': 232967, 'situation there': 772512, 'is special': 452147, 'special corner': 787872, 'corner for': 203640, 'hell with': 389093, 'sharp thorn': 755711, 'that are deliberately': 842738, 'are deliberately hiking': 85749, 'deliberately hiking their': 232969, 'their price due': 874392, '19 situation there': 10596, 'situation there is': 772513, 'there is special': 878631, 'is special corner': 452148, 'special corner for': 787873, 'corner for in': 203641, 'for in hell': 322509, 'in hell with': 423632, 'hell with sharp': 389096, 'with sharp thorn': 1000667, 'lauder': 481694, 'est lauder': 281994, 'lauder is': 481697, 'is reopening': 451428, 'reopening one': 711394, 'it factory': 457926, 'factory to': 296006, 'shortage during': 764921, 'pandemic wfh': 636966, 'wfh socialdistancing': 980858, 'est lauder is': 281996, 'lauder is reopening': 481698, 'is reopening one': 451429, 'reopening one of': 711395, 'of it factory': 585391, 'it factory to': 457929, 'factory to help': 296007, 'with the shortage': 1001478, 'the shortage during': 867092, 'shortage during the': 764923, 'the pandemic wfh': 863152, 'pandemic wfh socialdistancing': 636967, 'walkin': 965003, 'at shopper': 100513, 'shopper drug': 761486, 'drug mart': 261002, 'mart if': 518049, 'if forced': 414123, 'cashier shift': 166606, 'shift during': 758279, 'the covid19': 852242, 'pharmacy can': 654265, 'open will': 612672, 'be walkin': 118035, 'walkin my': 965004, 'as up': 94823, 'my bos': 547503, 'bos and': 135647, 'and telling': 73101, 'telling him': 837203, 'him am': 396529, 'not coming': 568800, 'be paying': 116379, 'paying me': 645439, 'saying work at': 739767, 'work at shopper': 1004897, 'at shopper drug': 100514, 'shopper drug mart': 761487, 'drug mart if': 261004, 'mart if forced': 518051, 'if forced to': 414124, 'to come work': 903057, 'come work cashier': 187699, 'work cashier shift': 1004982, 'cashier shift during': 166607, 'shift during the': 758281, 'during the covid19': 263107, 'the covid19 pandemic': 852245, 'covid19 pandemic just': 214342, 'pandemic just so': 635848, 'just so the': 469826, 'so the pharmacy': 778435, 'the pharmacy can': 863652, 'pharmacy can be': 654266, 'be open will': 116257, 'open will be': 612673, 'will be walkin': 992765, 'be walkin my': 118036, 'walkin my as': 965005, 'my as up': 547332, 'as up my': 94825, 'up my bos': 945421, 'my bos and': 547504, 'bos and telling': 135649, 'and telling him': 73103, 'telling him am': 837204, 'him am not': 396530, 'am not coming': 50244, 'not coming into': 568801, 'coming into work': 188114, 'into work for': 443304, 'work for two': 1005177, 'two week that': 937367, 'week that he': 976977, 'that he will': 844273, 'he will be': 385664, 'will be paying': 992602, 'be paying me': 116381, 'paying me for': 645440, 'me for it': 522750, 'embargo': 272420, 'construction material': 195805, 'have risen': 382329, 'risen to': 723125, 'percent supplier': 651183, 'supplier report': 824601, 'report shortage': 712249, 'china due': 176622, 'the embargo': 854211, 'embargo the': 272421, 'is attributed': 445887, 'to kenya': 908893, 'kenya over': 472933, 'over reliance': 630577, 'chinese building': 177201, 'building and': 142044, 'and construction': 60337, 'construction material price': 195806, 'material price have': 520408, 'price have risen': 674452, 'have risen to': 382339, 'risen to 10': 723126, '10 percent supplier': 1630, 'percent supplier report': 651184, 'supplier report shortage': 824602, 'report shortage of': 712250, 'of supply from': 590480, 'supply from china': 825287, 'from china due': 334857, 'china due to': 176623, 'to the embargo': 916670, 'the embargo the': 854212, 'embargo the shortage': 272422, 'the shortage is': 867095, 'shortage is attributed': 765034, 'is attributed to': 445888, 'attributed to kenya': 102747, 'to kenya over': 908894, 'kenya over reliance': 472934, 'over reliance on': 630578, 'reliance on chinese': 709238, 'on chinese building': 599913, 'chinese building and': 177202, 'building and construction': 142045, 'and construction material': 60338, 'fakenewsmedia': 296769, 'the fakenewsmedia': 854863, 'fakenewsmedia claim': 296772, 'we hearing': 972008, 'clerk dropping': 181690, 'dropping like': 260703, 'fly the': 311631, 'literally of': 495057, 'maybe place': 521777, 'place anyone': 657329, 'to am': 900389, 'am wrong': 50582, 'the is bad': 858482, 'is bad the': 445974, 'bad the fakenewsmedia': 108032, 'the fakenewsmedia claim': 854864, 'fakenewsmedia claim it': 296773, 'claim it is': 179755, 'it is why': 459132, 'is why aren': 453958, 'why aren we': 990807, 'aren we hearing': 92585, 'we hearing about': 972009, 'hearing about grocery': 388186, 'about grocery clerk': 25329, 'grocery clerk dropping': 364380, 'clerk dropping like': 181691, 'dropping like fly': 260704, 'like fly the': 490255, 'fly the store': 311633, 'store is literally': 808503, 'is literally of': 449394, 'literally of maybe': 495058, 'of maybe place': 586313, 'maybe place anyone': 521778, 'place anyone is': 657330, 'anyone is allowed': 80387, 'is allowed to': 445485, 'go to am': 354271, 'to am wrong': 900391, 'tiger': 895796, 'tiger brand': 895797, 'brand expects': 137840, 'expects consumer': 291069, 'struggle after': 814324, 'tiger brand expects': 895798, 'brand expects consumer': 137841, 'expects consumer to': 291070, 'consumer to struggle': 199327, 'to struggle after': 915686, 'struggle after the': 814326, 'manchester hospitality': 512946, 'hospitality sector': 404797, 'absolutely full': 27365, 'of complete': 581629, 'complete legend': 192104, 'legend who': 485943, 'everyone fed': 286904, 'fed through': 301908, '19 extra': 6913, 'extra big': 293456, 'including me': 432051, 'me calling': 522556, 'calling panic': 156622, 'buyer twat': 149788, 'twat amp': 936253, 'amp calling': 53485, 'calling fucking': 156564, 'fucking legend': 339929, 'manchester hospitality sector': 512947, 'hospitality sector is': 404798, 'sector is absolutely': 744241, 'is absolutely full': 445295, 'absolutely full of': 27366, 'full of complete': 340707, 'of complete legend': 581631, 'complete legend who': 192105, 'legend who are': 485944, 'are keeping everyone': 87651, 'keeping everyone fed': 472415, 'everyone fed through': 286906, 'fed through covid': 301909, 'covid 19 extra': 213065, '19 extra big': 6914, 'extra big thanks': 293457, 'big thanks for': 130060, 'thanks for including': 842064, 'for including me': 322519, 'including me calling': 432052, 'me calling panic': 522557, 'calling panic buyer': 156623, 'panic buyer twat': 637612, 'buyer twat amp': 149789, 'twat amp calling': 936254, 'amp calling fucking': 53486, 'calling fucking legend': 156565, 'good piece': 357558, 'behaviour thanks': 124530, 'good piece in': 357560, 'piece in on': 656313, 'on the lasting': 604204, 'effect of on': 269055, 'consumer behaviour thanks': 196601, 'behaviour thanks for': 124531, 'thanks for sharing': 842075, 'business supplying': 144445, 'supplying essential': 826277, 'medicine item': 526824, 'any part': 79628, 'global panic': 352114, 'panic should': 638600, 'fined or': 307759, 'or jailed': 615857, 'jailed or': 464303, 'both action': 135834, 'action required': 30122, 'required greed': 713370, 'greed should': 363438, 'punished government': 689235, 'government act': 359817, 'any business supplying': 78991, 'business supplying essential': 144446, 'supplying essential food': 826278, 'and medicine item': 66910, 'medicine item in': 526825, 'item in any': 463341, 'in any part': 420432, 'any part of': 79629, 'supply chain who': 825062, 'chain who ha': 171233, 'who ha decided': 988838, 'decided to inflate': 230921, 'this global panic': 887709, 'global panic should': 352118, 'panic should be': 638601, 'should be fined': 765623, 'be fined or': 114861, 'fined or jailed': 307760, 'or jailed or': 615858, 'jailed or both': 464304, 'or both action': 614572, 'both action required': 135835, 'action required greed': 30123, 'required greed should': 713371, 'greed should be': 363439, 'should be punished': 765703, 'be punished government': 116624, 'punished government act': 689236, 'government act now': 359818, 'food public': 316076, 'mask 3ply': 518269, 'mask shall': 519257, 'price prevailing': 675983, 'prevailing on': 671555, 'day month': 227982, 'month prior': 537967, '13 or': 3247, 'not over': 570870, '10 piece': 1632, 'piece whichever': 656383, 'whichever is': 986539, 'lower that': 506019, 'mask 2ply': 518259, '2ply shall': 16834, 'over piece': 630505, 'piece coronacrisis': 656288, 'affair food public': 34038, 'food public distribution': 316077, 'of mask 3ply': 586256, 'mask 3ply surgical': 518271, '3ply surgical mask': 18396, 'surgical mask shall': 828367, 'mask shall not': 519258, 'than the price': 841264, 'the price prevailing': 864397, 'price prevailing on': 675984, 'prevailing on the': 671557, 'on the day': 604056, 'the day month': 852897, 'day month prior': 227983, 'month prior to': 537968, 'prior to 13': 678367, 'to 13 or': 899486, '13 or not': 3248, 'or not over': 616309, 'not over 10': 570871, 'over 10 piece': 629759, '10 piece whichever': 1635, 'piece whichever is': 656384, 'whichever is lower': 986540, 'is lower that': 449483, 'lower that of': 506020, 'that of mask': 845447, 'of mask 2ply': 586255, 'mask 2ply shall': 518262, '2ply shall not': 16835, 'not be over': 568428, 'be over piece': 116301, 'over piece coronacrisis': 630506, 'out what item': 627806, 'buy even during': 148582, 'even during global': 284025, 'during global virus': 262663, 'dismisses': 246018, 'trump dismisses': 933519, 'dismisses question': 246021, 'when reporter': 983935, 'reporter can': 712605, 'can name': 159025, 'name price': 551671, 'trump dismisses question': 933520, 'dismisses question on': 246022, 'question on oil': 693678, 'oil price when': 597320, 'price when reporter': 677489, 'when reporter can': 983936, 'reporter can name': 712606, 'can name price': 159026, 'name price via': 551672, 'bump': 142558, 'authorian': 103658, 'the be': 849372, 'the bump': 850114, 'bump key': 142572, 'allow democratic': 45945, 'democratic transition': 236774, 'transition in': 929670, 'those country': 891895, 'country ruled': 211022, 'oil based': 596641, 'based authorian': 111516, 'authorian regime': 103659, 'regime interesting': 707357, 'interesting analysis': 441500, 'analysis by': 57024, 'by oilpricewar': 153413, 'oilpricewar oilprice': 597712, 'will the be': 995129, 'the be the': 849373, 'be the bump': 117600, 'the bump key': 850115, 'bump key to': 142573, 'key to allow': 473430, 'to allow democratic': 900330, 'allow democratic transition': 45946, 'democratic transition in': 236775, 'transition in those': 929671, 'in those country': 430051, 'those country ruled': 891896, 'country ruled by': 211023, 'ruled by oil': 727427, 'by oil based': 153409, 'oil based authorian': 596642, 'based authorian regime': 111517, 'authorian regime interesting': 103660, 'regime interesting analysis': 707358, 'interesting analysis by': 441501, 'analysis by oilpricewar': 57027, 'by oilpricewar oilprice': 153414, 'own super': 632246, 'super angel': 818467, 'angel who': 76323, 'who dropped': 988666, 'off bag': 593675, 'working full': 1008659, 'full day': 340553, 'at busy': 98173, 'hero wear': 394157, 'to my own': 910427, 'my own super': 549659, 'own super angel': 632247, 'super angel who': 818469, 'angel who dropped': 76324, 'who dropped off': 988667, 'dropped off bag': 260605, 'off bag of': 593676, 'bag of essential': 108351, 'essential supply after': 281618, 'supply after working': 824664, 'after working full': 36582, 'working full day': 1008660, 'full day at': 340554, 'day at busy': 227328, 'at busy supermarket': 98175, 'busy supermarket not': 144977, 'supermarket not all': 821639, 'not all hero': 568111, 'all hero wear': 43113, 'hero wear cape': 394158, 'are scottish': 89866, 'scottish supermarket': 742487, 'supermarket doing': 819991, 'doing amid': 252276, 'what are scottish': 981064, 'are scottish supermarket': 89867, 'scottish supermarket doing': 742488, 'supermarket doing amid': 819993, 'etimeslifestyle': 283148, 'coronavirus prevention': 206584, 'prevention make': 671869, 'home using': 402415, 'using these': 950743, 'these three': 880829, 'three ingredient': 893961, 'ingredient etimeslifestyle': 438359, 'coronavirus prevention make': 206585, 'prevention make hand': 671870, 'at home using': 99158, 'home using these': 402417, 'using these three': 950745, 'these three ingredient': 880830, 'three ingredient etimeslifestyle': 893962, 'incomplete': 432549, 'incomplete mall': 432550, 'mall low': 511800, 'may grip': 521221, 'grip realestate': 364033, 'realestate sector': 701526, 'sector amid': 744072, 'incomplete mall low': 432551, 'mall low consumer': 511801, 'spending trend that': 789030, 'trend that may': 931464, 'that may grip': 845078, 'may grip realestate': 521222, 'grip realestate sector': 364034, 'realestate sector amid': 701527, 'stophoarding brings': 805362, 'brings ration': 140268, 'and id': 64921, 'id card': 412937, 'vulnerable so': 961169, 'identify them': 413372, 'them priority': 876180, 'priority that': 678673, 'this madness': 888735, 'stophoarding brings ration': 805363, 'brings ration card': 140269, 'ration card and': 697653, 'card and id': 163453, 'and id card': 64922, 'id card for': 412938, 'card for the': 163525, 'for the vulnerable': 326767, 'the vulnerable so': 870995, 'vulnerable so supermarket': 961170, 'so supermarket can': 778306, 'supermarket can identify': 819505, 'can identify them': 158707, 'identify them priority': 413373, 'them priority that': 876183, 'priority that would': 678674, 'would stop this': 1012287, 'stop this madness': 805193, 'embracing new': 272510, 'new behavior': 558387, 'and habit': 64090, 'habit here': 372628, 'marketer marketing': 517468, 'pandemic consumer are': 635186, 'consumer are embracing': 196291, 'are embracing new': 86115, 'embracing new behavior': 272511, 'new behavior and': 558388, 'behavior and habit': 123889, 'and habit here': 64091, 'habit here are': 372629, 'here are consumer': 392735, 'for marketer marketing': 323259, 'notsick': 573635, 'ifucan': 415658, 'giveaway': 350898, 'notsick stay': 573636, 'of crowd': 582220, 'crowd including': 219177, 'grocery ifucan': 364607, 'ifucan giveaway': 415659, 'giveaway some': 350912, 'tp soap': 927943, 'soap it': 779049, 'one le': 606579, 'le waiting': 483230, 'waiting hour': 964348, 'crowded grocery': 219314, 'store see': 810016, 'see stopping': 745749, 'stopping coworker': 805800, 'coworker neighbor': 214485, 'neighbor etc': 557005, 'etc from': 282553, 'getting coron': 348911, 'notsick stay out': 573637, 'out of crowd': 626712, 'of crowd including': 582221, 'crowd including the': 219178, 'including the grocery': 432185, 'the grocery ifucan': 856812, 'grocery ifucan giveaway': 364608, 'ifucan giveaway some': 415660, 'giveaway some of': 350913, 'of your hand': 593479, 'sanitizer tp soap': 735972, 'tp soap it': 927944, 'soap it can': 779050, 'can mean one': 158983, 'mean one le': 524592, 'one le waiting': 606582, 'le waiting hour': 483231, 'waiting hour in': 964349, 'hour in crowded': 405686, 'in crowded grocery': 421916, 'crowded grocery store': 219315, 'grocery store see': 365753, 'store see stopping': 810019, 'see stopping coworker': 745750, 'stopping coworker neighbor': 805801, 'coworker neighbor etc': 214486, 'neighbor etc from': 557006, 'etc from getting': 282554, 'from getting coron': 335625, 'slash oil': 773574, 'production on': 682162, 'sunday aiming': 818161, 'to bolster': 901881, 'bolster price': 134143, 'that collapsed': 843253, 'collapsed when': 186120, 'when global': 983468, 'demand cratered': 235186, 'cratered amid': 215148, 'agreed to slash': 38749, 'to slash oil': 914719, 'slash oil production': 773575, 'oil production on': 597372, 'production on sunday': 682166, 'on sunday aiming': 603751, 'sunday aiming to': 818162, 'aiming to bolster': 39582, 'to bolster price': 901883, 'bolster price that': 134144, 'price that collapsed': 676796, 'that collapsed when': 843254, 'collapsed when global': 186121, 'when global demand': 983470, 'global demand cratered': 351861, 'demand cratered amid': 235187, 'cratered amid the': 215149, 'been far': 121132, 'far reaching': 298893, 'reaching and': 700075, 'help where': 390882, 'can if': 158708, 'have staff': 382710, 'staff workfromhome': 793110, 'workfromhome using': 1008443, 'personal device': 652828, 'device trend': 239940, 'trend micro': 931391, 'micro is': 530422, 'giving your': 351460, 'staff free': 792472, 'free month': 331985, 'month consumer': 537652, 'internet security': 442015, 'product trend': 681781, 'micro maximum': 530424, 'maximum security': 520838, '19 have been': 7445, 'have been far': 379537, 'been far reaching': 121133, 'far reaching and': 298895, 'reaching and we': 700076, 'to help where': 907666, 'help where we': 390883, 'where we can': 985338, 'we can if': 970966, 'can if you': 158710, 'you have staff': 1019117, 'have staff workfromhome': 382713, 'staff workfromhome using': 793111, 'workfromhome using their': 1008444, 'using their personal': 950730, 'their personal device': 874279, 'personal device trend': 652829, 'device trend micro': 239941, 'trend micro is': 931392, 'micro is giving': 530423, 'is giving your': 448067, 'giving your staff': 351462, 'your staff free': 1025909, 'staff free month': 792473, 'free month consumer': 331986, 'month consumer internet': 537653, 'consumer internet security': 197915, 'internet security product': 442016, 'security product trend': 744721, 'product trend micro': 681782, 'trend micro maximum': 931393, 'micro maximum security': 530425, 'andchanged': 76128, 'checkin': 174805, 'how great': 407929, 'great the': 363040, 'are got': 86928, 'some milk': 783289, 'milk andchanged': 531570, 'andchanged lightbulb': 76129, 'lightbulb ffs': 489628, 'ffs only': 304316, 'only yesterday': 611505, 'yesterday they': 1015891, 'they checkin': 881752, 'checkin supermarket': 174806, 'know how great': 476439, 'how great the': 407930, 'great the police': 363041, 'police are got': 662917, 'are got some': 86929, 'got some milk': 358851, 'some milk andchanged': 783290, 'milk andchanged lightbulb': 531571, 'andchanged lightbulb ffs': 76130, 'lightbulb ffs only': 489629, 'ffs only yesterday': 304317, 'only yesterday they': 611506, 'yesterday they checkin': 1015893, 'they checkin supermarket': 881753, 'checkin supermarket trolley': 174807, 'reading how': 700778, 'behaving during': 123828, 'pandemic building': 635033, 'building bunker': 142060, 'bunker that': 142688, 'that filter': 843868, 'filter covid': 305756, '19 renting': 10104, 'renting property': 711322, 'property at': 684243, 'buying test': 151143, 'for hundred': 322449, 'pound is': 667380, 'sick but': 768395, 'but mostly': 146419, 'mostly sad': 543007, 'sad for': 729170, 'reading how the': 700779, 'how the rich': 408870, 'rich are behaving': 721192, 'are behaving during': 84817, 'behaving during this': 123829, 'this pandemic building': 889374, 'pandemic building bunker': 635034, 'building bunker that': 142061, 'bunker that filter': 142689, 'that filter covid': 843869, 'filter covid 19': 305757, 'covid 19 renting': 213690, '19 renting property': 10105, 'renting property at': 711323, 'property at inflated': 684244, 'price and buying': 672374, 'and buying test': 59371, 'buying test for': 151144, 'test for hundred': 839002, 'for hundred of': 322450, 'hundred of pound': 411007, 'of pound is': 588295, 'pound is making': 667381, 'me feel sick': 522719, 'feel sick but': 302841, 'sick but mostly': 768397, 'but mostly sad': 146420, 'mostly sad for': 543008, 'sad for them': 729171, 'he right': 385353, 'right mostly': 721997, 'mostly there': 543023, 'chain it': 170863, 'this every': 887459, 'who piling': 989422, 'piling into': 656605, 'into that': 443087, 'is risking': 451559, 'catching anyway': 167070, 'anyway socialdistancingnow': 81036, 'socialdistancingnow flattenthecurve': 780903, 'he right mostly': 385354, 'right mostly there': 721998, 'mostly there no': 543024, 'there no problem': 878833, 'supply chain it': 824982, 'chain it people': 170866, 'it people panic': 460298, 'buying that are': 151150, 'that are causing': 842727, 'are causing this': 85210, 'causing this every': 168130, 'this every single': 887465, 'single one who': 771352, 'one who piling': 607457, 'who piling into': 989423, 'piling into that': 656606, 'into that store': 443090, 'that store is': 846515, 'store is risking': 808525, 'is risking catching': 451560, 'risking catching anyway': 724059, 'catching anyway socialdistancingnow': 167071, 'anyway socialdistancingnow flattenthecurve': 81037, 'every company': 285745, 'company corporation': 190569, 'corporation factory': 207418, 'factory and': 295917, 'immediately focus': 417093, 'fight they': 304911, 'ppes now': 668129, 'then manufacturing': 877329, 'manufacturing more': 513630, 'more plus': 540087, 'plus ventilator': 661710, 'sanitizer then': 735873, 'every company corporation': 285746, 'company corporation factory': 190570, 'corporation factory and': 207419, 'factory and store': 295922, 'and store in': 72508, 'store in this': 808402, 'need to immediately': 555967, 'to immediately focus': 908139, 'immediately focus on': 417094, 'on the fight': 604118, 'the fight they': 855168, 'fight they should': 304912, 'be donating their': 114546, 'donating their stock': 254513, 'their stock of': 874833, 'stock of mask': 802529, 'mask and ppes': 518358, 'and ppes now': 69288, 'ppes now and': 668130, 'now and then': 574062, 'and then manufacturing': 73780, 'then manufacturing more': 877330, 'manufacturing more plus': 513631, 'more plus ventilator': 540089, 'plus ventilator and': 661711, 'ventilator and sanitizer': 954529, 'and sanitizer then': 70888, 'sanitizer then on': 735875, 'then on to': 877378, 'on to food': 604735, 'to food for': 906079, 'for the coming': 326351, 'are bulk': 85080, 'stock excessively': 802101, 'excessively there': 289433, 'supply per': 825711, 'per the': 651035, 'ministry most': 533536, 'importantly remember': 419139, 'keep older': 471697, 'older adult': 598561, 'when bulk': 983211, 'all the shopper': 44907, 'the shopper who': 867055, 'who are bulk': 988111, 'are bulk buying': 85081, 'bulk buying no': 142282, 'buying no need': 150758, 'and stock excessively': 72405, 'stock excessively there': 802102, 'excessively there is': 289434, 'and supply per': 72808, 'supply per the': 825712, 'per the ministry': 651042, 'the ministry most': 860662, 'ministry most importantly': 533537, 'most importantly remember': 542423, 'importantly remember to': 419140, 'to keep older': 908817, 'keep older adult': 471698, 'older adult in': 598566, 'adult in your': 32831, 'your thought when': 1026150, 'thought when bulk': 893312, 'when bulk buying': 983212, 'consumer sector': 198881, 'drive job': 259086, 'worse day': 1010912, 'day are': 227311, 'are ahead': 84279, 'from consumer sector': 334972, 'consumer sector will': 198886, 'sector will drive': 744402, 'will drive job': 993257, 'drive job loss': 259087, 'job loss in': 465976, 'loss in march': 503705, 'to pandemic but': 911366, 'pandemic but worse': 635063, 'but worse day': 147937, 'worse day are': 1010914, 'day are ahead': 227312, 'jefferson': 465029, 'tom jefferson': 923920, 'jefferson covid': 465034, 'supermarket wisdom': 823903, 'wisdom latest': 996656, 'tom jefferson covid': 923922, 'jefferson covid 19': 465035, '19 supermarket wisdom': 10962, 'supermarket wisdom latest': 823904, 'francisco area': 331096, 'area start': 92195, 'start 1st': 794184, '1st full': 12744, 'home curfew': 400973, 'curfew today': 220940, 'pharmacy gas': 654321, 'station or': 796477, 'bank essential': 109805, 'essential govt': 281104, 'govt service': 361272, 'service open': 752659, 'open restaurant': 612480, 'restaurant take': 716729, 'million people in': 532311, 'people in san': 648425, 'san francisco area': 733534, 'francisco area start': 331097, 'area start 1st': 92196, 'start 1st full': 794185, '1st full day': 12745, 'full day of': 340556, 'day of week': 228116, 'of week in': 593001, 'week in home': 976372, 'in home curfew': 423780, 'home curfew today': 400974, 'curfew today can': 220941, 'today can only': 919360, 'only leave house': 610708, 'leave house to': 484831, 'store pharmacy gas': 809541, 'pharmacy gas station': 654322, 'gas station or': 344123, 'station or bank': 796480, 'or bank essential': 614491, 'bank essential govt': 109806, 'essential govt service': 281105, 'govt service open': 361274, 'service open restaurant': 752660, 'open restaurant take': 612485, 'restaurant take out': 716731, 'take out delivery': 832443, 'out delivery available': 625944, 'buying you': 151404, 'life no': 488907, 'one told': 607296, 'just regular': 469594, 'regular soap': 707871, 'people stop panic': 649653, 'panic buying you': 637977, 'buying you do': 151406, 'on food like': 600881, 'food like you': 315318, 'like you will': 491886, 'see the sun': 745888, 'sun for the': 818067, 'rest of your': 716214, 'of your life': 593495, 'your life no': 1024641, 'life no one': 488909, 'no one told': 564972, 'one told to': 607297, 'told to stock': 923768, 'paper no one': 640499, 'up on hand': 945574, 'sanitizer just regular': 735242, 'just regular soap': 469596, 'regular soap work': 707872, 'commended': 188372, 'really impressed': 702331, 'impressed by': 419446, 'by response': 153787, '19 allowing': 4911, 'allowing the': 46342, 'elderly protected': 270864, 'protected shopping': 685149, 'and priority': 69510, 'priority on': 678615, 'line delivery': 493049, 'be commended': 114158, 'really impressed by': 702332, 'impressed by response': 419448, 'by response to': 153788, 'covid 19 allowing': 212611, '19 allowing the': 4913, 'allowing the elderly': 46343, 'the elderly protected': 854141, 'elderly protected shopping': 270865, 'protected shopping time': 685150, 'shopping time and': 764141, 'time and priority': 896290, 'and priority on': 69512, 'priority on line': 678617, 'on line delivery': 601857, 'line delivery slot': 493050, 'slot is to': 774224, 'to be commended': 901173, 'restuarant': 717451, 'blding': 132460, 'sanitiation': 733881, 'inspiration': 439795, 'you doctor': 1018285, 'doctor hospital': 250954, 'staff medic': 792645, 'medic grocery': 525995, 'store restuarant': 809863, 'restuarant blding': 717452, 'blding amp': 132461, 'amp warehouse': 54799, 'warehouse staff': 966771, 'farmer sanitiation': 299497, 'sanitiation construction': 733882, 'construction amp': 195782, 'amp transportation': 54736, 'transportation worker': 930055, 'worker ty': 1008064, 'ty for': 937480, 'this daily': 887149, 'daily inspiration': 224647, 'thank you doctor': 841717, 'you doctor hospital': 1018286, 'doctor hospital staff': 250957, 'hospital staff medic': 404640, 'staff medic grocery': 792646, 'medic grocery store': 525996, 'grocery store restuarant': 365723, 'store restuarant blding': 809864, 'restuarant blding amp': 717453, 'blding amp warehouse': 132462, 'amp warehouse staff': 54801, 'warehouse staff delivery': 966772, 'driver farmer sanitiation': 259554, 'farmer sanitiation construction': 299498, 'sanitiation construction amp': 733883, 'construction amp transportation': 195783, 'amp transportation worker': 54737, 'transportation worker ty': 930056, 'worker ty for': 1008065, 'ty for this': 937482, 'for this daily': 327022, 'this daily inspiration': 887151, 'cycleways': 224074, 'fairer': 296411, 'cycleways and': 224075, 'and pedestrian': 68827, 'pedestrian route': 646215, 'route make': 726463, 'make transport': 510667, 'transport more': 929908, 'and fairer': 62619, 'fairer they': 296414, 'are immune': 87314, 'and quite': 69887, 'quite resilient': 694907, 'resilient to': 714541, 'to extreme': 905547, 'extreme weather': 293845, 'virus they': 958899, 'don discriminate': 253464, 'discriminate by': 244790, 'by income': 152891, 'income gender': 432353, 'gender or': 345259, 'or race': 616773, 'cycleways and pedestrian': 224076, 'and pedestrian route': 68828, 'pedestrian route make': 646216, 'route make transport': 726464, 'make transport more': 510668, 'transport more resilient': 929909, 'more resilient and': 540232, 'resilient and fairer': 714516, 'and fairer they': 62620, 'fairer they are': 296415, 'they are immune': 881301, 'are immune to': 87316, 'immune to oil': 417367, 'price and quite': 672514, 'and quite resilient': 69888, 'quite resilient to': 694908, 'resilient to extreme': 714543, 'to extreme weather': 905549, 'extreme weather and': 293846, 'weather and virus': 974848, 'and virus they': 74979, 'virus they don': 958901, 'they don discriminate': 881989, 'don discriminate by': 253465, 'discriminate by income': 244791, 'by income gender': 152892, 'income gender or': 432354, 'gender or race': 345260, 'report their': 712350, 'first related': 308912, 'death this': 230232, 'intensifies across': 441107, 'country report': 210999, 'chain are beginning': 170495, 'beginning to report': 123673, 'to report their': 913290, 'report their first': 712352, 'their first related': 873330, 'first related employee': 308913, 'employee death this': 273760, 'death this ha': 230233, 'this ha led': 887806, 'led to store': 485301, 'closure and increasing': 183837, 'and increasing anxiety': 65122, 'grocery worker the': 366191, 'worker the pandemic': 1007933, 'the pandemic intensifies': 863002, 'pandemic intensifies across': 635745, 'intensifies across the': 441108, 'the country report': 852141, 'niniolafantasyvideo': 563310, 'sibling': 768329, 'niniolafantasyvideo stock': 563311, 'my my': 549397, 'my sibling': 550080, 'sibling am': 768330, 'scared if': 740973, 'cannot tell': 162167, 'that hustle': 844404, 'hustle to': 411830, 'table for': 831468, 'niniolafantasyvideo stock up': 563312, 'up food my': 944891, 'food my my': 315497, 'my my sibling': 549398, 'my sibling am': 550081, 'sibling am scared': 768331, 'am scared if': 50363, 'scared if have': 740974, 'have the covid': 382972, '19 and cannot': 4997, 'and cannot tell': 59525, 'cannot tell them': 162169, 'them that hustle': 876377, 'that hustle to': 844405, 'hustle to put': 411831, 'the table for': 869107, 'table for them': 831471, 'coronavirus star': 206813, 'star slammed': 794062, 'slammed for': 773503, 'for insensitive': 322595, 'insensitive supermarket': 439197, 'supermarket photo': 821983, 'photo shoot': 655240, '19 coronavirus star': 6128, 'coronavirus star slammed': 206814, 'star slammed for': 794063, 'slammed for insensitive': 773504, 'for insensitive supermarket': 322596, 'insensitive supermarket photo': 439198, 'supermarket photo shoot': 821984, '850': 22939, 'eighth': 270213, 'parent in': 641653, 'south lyon': 786763, 'lyon are': 507142, 'finally receiving': 306080, 'receiving refund': 703798, 'refund after': 706861, 'they paid': 882863, 'paid 850': 633953, '850 for': 22940, 'their eighth': 873116, 'eighth grade': 270214, 'grade student': 361664, 'student to': 814789, 'take trip': 832753, 'trip that': 932171, 'wa later': 962506, 'later canceled': 481037, 'parent in south': 641656, 'in south lyon': 428133, 'south lyon are': 786764, 'lyon are finally': 507143, 'are finally receiving': 86566, 'finally receiving refund': 306081, 'receiving refund after': 703799, 'refund after they': 706862, 'after they paid': 36390, 'they paid 850': 882864, 'paid 850 for': 633954, '850 for their': 22941, 'for their eighth': 326820, 'their eighth grade': 873117, 'eighth grade student': 270215, 'grade student to': 361665, 'student to take': 814792, 'to take trip': 916253, 'take trip that': 832754, 'trip that wa': 932172, 'that wa later': 847293, 'wa later canceled': 962507, 'ravenous': 697933, 'but sadly': 146951, 'sadly business': 729326, 'increase our': 432967, 'our pollution': 624388, 'pollution problem': 663912, 'problem once': 679636, 'the ravenous': 865185, 'ravenous consumer': 697934, 'consumer recovers': 198654, 'recovers climatechange': 705275, 'climatechange sustainability': 182243, 'sustainability environment': 829759, 'lining in our': 493741, 'in our current': 426279, 'our current crisis': 622641, 'current crisis but': 221154, 'crisis but sadly': 217155, 'but sadly business': 146952, 'sadly business will': 729327, 'business will increase': 144684, 'will increase our': 993822, 'increase our pollution': 432968, 'our pollution problem': 624389, 'pollution problem once': 663913, 'problem once the': 679637, 'once the ravenous': 605731, 'the ravenous consumer': 865186, 'ravenous consumer recovers': 697935, 'consumer recovers climatechange': 198655, 'recovers climatechange sustainability': 705276, 'climatechange sustainability environment': 182244, 'cautioning': 168197, 'place did': 657406, 'did see': 240797, 'see with': 746084, 'any semblance': 79780, 'crowd wa': 219282, 'supermarket itself': 821194, 'itself no': 463945, 'mask still': 519310, 'still but': 800309, 'people anxious': 646895, 'anxious to': 78874, 'stay more': 797129, 'than 1m': 840185, 'apart notice': 81308, 'that effect': 843674, 'and cautioning': 59649, 'cautioning against': 168198, 'against putting': 37597, 'putting cash': 691096, 'new cafe': 558438, 'cafe now': 155120, 'now takeaway': 575954, 'only place did': 610979, 'place did see': 657407, 'did see with': 240798, 'see with any': 746085, 'with any semblance': 997280, 'any semblance of': 79781, 'semblance of crowd': 749599, 'of crowd wa': 582223, 'crowd wa the': 219283, 'wa the supermarket': 963472, 'the supermarket itself': 868654, 'supermarket itself no': 821195, 'itself no mask': 463946, 'no mask still': 564713, 'mask still but': 519311, 'still but people': 800310, 'but people anxious': 146762, 'people anxious to': 646896, 'anxious to stay': 78875, 'to stay more': 915300, 'stay more than': 797130, 'more than 1m': 540551, 'than 1m apart': 840187, '1m apart notice': 12650, 'apart notice to': 81309, 'notice to that': 573386, 'to that effect': 916450, 'that effect and': 843675, 'effect and cautioning': 268966, 'and cautioning against': 59650, 'cautioning against putting': 168199, 'against putting cash': 37598, 'putting cash in': 691097, 'cash in your': 166259, 'in your mouth': 431106, 'your mouth and': 1024896, 'mouth and the': 543487, 'the new cafe': 861478, 'new cafe now': 558439, 'cafe now takeaway': 155121, 'now takeaway only': 575956, 'cairandale': 155199, 'and run': 70632, 'my foot': 548393, 'foot atm': 318353, 'atm with': 101972, 'constant shelf': 195627, 'shelf stocking': 757598, 'stocking probably': 803586, 'probably going': 679268, 'from always': 334449, 'always seeing': 49737, 'seeing public': 746434, 'public member': 688162, 'member so': 528191, 'll cover': 496691, 'cover my': 212259, 'my wage': 550520, 'quarantine cairandale': 692072, 'supermarket and run': 819052, 'and run off': 70635, 'run off my': 727729, 'off my foot': 593982, 'my foot atm': 548394, 'foot atm with': 318354, 'atm with all': 101973, 'the constant shelf': 851477, 'constant shelf stocking': 195628, 'shelf stocking probably': 757599, 'stocking probably going': 803587, 'probably going to': 679269, '19 from always': 7115, 'from always seeing': 334450, 'always seeing public': 49738, 'seeing public member': 746435, 'public member so': 688163, 'member so it': 528192, 'so it ll': 777470, 'it ll cover': 459422, 'll cover my': 496693, 'cover my wage': 212261, 'my wage for': 550521, 'wage for week': 963868, 'week when have': 977221, 'have to quarantine': 383270, 'to quarantine cairandale': 912638, 'legacy': 485825, 'disruptors': 246559, 'luxuryconnect': 506983, 'luxurycruxx': 506985, 'legacy brand': 485826, 'brand retailer': 137995, 'consumer disruptors': 197223, 'disruptors develop': 246560, 'develop unique': 239665, 'unique combination': 941974, 'of tech': 590622, 'tech and': 836034, 'and traditional': 74351, 'traditional customer': 928993, 'support concerned': 826431, 'concerned bride': 193188, 'bride during': 139606, 'crisis luxury': 217689, 'luxury luxuryconnect': 506941, 'luxuryconnect luxurycruxx': 506984, 'legacy brand retailer': 485827, 'brand retailer and': 137996, 'retailer and direct': 718961, 'to consumer disruptors': 903290, 'consumer disruptors develop': 197224, 'disruptors develop unique': 246561, 'develop unique combination': 239666, 'unique combination of': 941975, 'combination of tech': 187108, 'of tech and': 590623, 'tech and traditional': 836038, 'and traditional customer': 74352, 'traditional customer service': 928994, 'customer service to': 222836, 'service to support': 752994, 'to support concerned': 915917, 'support concerned bride': 826432, 'concerned bride during': 193189, 'bride during the': 139607, '19 crisis luxury': 6279, 'crisis luxury luxuryconnect': 217690, 'luxury luxuryconnect luxurycruxx': 506942, 'become business': 119942, 'business for': 143749, 'for chemist': 320043, 'chemist early': 175423, 'early action': 264537, 'required they': 713389, 'so poor': 778041, '19 ha become': 7327, 'ha become business': 369672, 'become business for': 119943, 'business for chemist': 143750, 'for chemist early': 320045, 'chemist early action': 175424, 'early action is': 264539, 'action is required': 30055, 'is required they': 451452, 'required they are': 713390, 'are selling mask': 89964, 'sanitizers at high': 736225, 'high price so': 395275, 'price so poor': 676514, 'so poor people': 778044, 'poor people cannot': 664250, 'readily': 700714, 'travelinn': 930664, 'not readily': 571220, 'readily available': 700715, 'alcohol cover': 40978, 'all surface': 44574, 'and rub': 70610, 'rub them': 726921, 'together until': 921017, 'they feel': 882100, 'feel dry': 302609, 'dry staysafe': 261301, 'staysafe tip': 798938, 'tip travelinn': 898946, 'are not readily': 88452, 'not readily available': 571221, 'readily available use': 700721, 'available use hand': 104681, '60 alcohol cover': 20890, 'alcohol cover all': 40979, 'cover all surface': 212187, 'all surface of': 44575, 'surface of your': 828056, 'hand and rub': 374770, 'and rub them': 70613, 'rub them together': 726922, 'them together until': 876539, 'together until they': 921018, 'until they feel': 943891, 'they feel dry': 882102, 'feel dry staysafe': 302610, 'dry staysafe tip': 261302, 'staysafe tip travelinn': 798939, 'for summer': 325988, 'summer clothes': 817963, 'clothes when': 184231, 'sight is': 769038, 'most optimistic': 542584, 'optimistic ve': 613940, 'shopping for summer': 762714, 'for summer clothes': 325989, 'summer clothes when': 817964, 'clothes when covid': 184232, 'ha no end': 371339, 'in sight is': 427943, 'sight is the': 769039, 'the most optimistic': 861011, 'most optimistic ve': 542585, 'optimistic ve ever': 613941, 've ever been': 953091, 'clove': 184345, 'keyfoods': 473538, 'barry': 111382, 'why if': 991082, 'here fighting': 392973, 'fighting this': 305139, 'war against': 966338, 'against why': 37747, 'isn protective': 454633, 'protective barrier': 685711, 'barrier between': 111353, 'between cashier': 128747, 'the publix': 864881, 'publix supermarket': 688780, 'carolina neither': 164846, 'neither of': 557335, 'them wear': 876590, 'mask some': 519291, 'without clove': 1002544, 'clove in': 184346, 'the meantime': 860356, 'meantime keyfoods': 524925, 'keyfoods ha': 473539, 'ha barry': 369662, 'barry the': 111385, 'worker wear': 1008152, 'not know why': 570311, 'know why if': 477049, 'why if we': 991085, 're all here': 698222, 'all here fighting': 43102, 'here fighting this': 392974, 'fighting this war': 305143, 'this war against': 891101, 'war against why': 966345, 'against why there': 37748, 'why there isn': 991442, 'there isn protective': 878672, 'isn protective barrier': 454634, 'protective barrier between': 685713, 'barrier between cashier': 111354, 'between cashier and': 128748, 'cashier and customer': 166455, 'and customer at': 60836, 'customer at the': 222146, 'at the publix': 101068, 'the publix supermarket': 864882, 'publix supermarket in': 688782, 'supermarket in north': 820947, 'north carolina neither': 567634, 'carolina neither of': 164847, 'neither of them': 557336, 'of them wear': 591770, 'them wear mask': 876592, 'wear mask some': 974401, 'mask some even': 519293, 'some even without': 782772, 'even without clove': 284810, 'without clove in': 1002545, 'clove in the': 184347, 'in the meantime': 429350, 'the meantime keyfoods': 860360, 'meantime keyfoods ha': 524926, 'keyfoods ha barry': 473540, 'ha barry the': 369663, 'barry the worker': 111386, 'the worker wear': 871770, 'worker wear mask': 1008154, 'pleasantly': 659620, 'abusive': 27725, 'supportworkers': 827293, 'tuesdaymotivation': 935210, 'staff pleasantly': 792756, 'pleasantly restocking': 659621, 'restocking the': 717026, 'customer being': 222187, 'being abusive': 124811, 'abusive to': 27732, 'staff please': 792758, 'please notify': 660250, 'notify their': 573561, 'their manager': 873905, 'manager supportworkers': 512794, 'supportworkers tuesdaymotivation': 827294, 'supermarket staff pleasantly': 822876, 'staff pleasantly restocking': 792757, 'pleasantly restocking the': 659622, 'restocking the shelf': 717028, 'the shelf if': 866848, 'shelf if you': 757180, 'you see customer': 1021030, 'see customer being': 745024, 'customer being abusive': 222188, 'being abusive to': 124812, 'abusive to the': 27733, 'the staff please': 867695, 'staff please notify': 792762, 'please notify their': 660251, 'notify their manager': 573562, 'their manager supportworkers': 873906, 'manager supportworkers tuesdaymotivation': 512795, 'swpp2nyu': 830641, 'crisis deserving': 217288, 'deserving of': 238196, 'of hazard': 584490, 'safe working': 730158, 'working condition': 1008574, 'condition swpp2nyu': 193530, 'are hero in': 87131, 'this crisis deserving': 887032, 'crisis deserving of': 217289, 'deserving of hazard': 238197, 'of hazard pay': 584491, 'pay and safe': 644738, 'and safe working': 70724, 'safe working condition': 730159, 'working condition swpp2nyu': 1008578, 'essence': 280725, 'retrogress': 719796, 'comatose': 186971, 'education we': 268880, 'must fix': 546657, 'fix healthcare': 309727, 'healthcare we': 387328, 'fix transportation': 309762, 'transportation in': 930012, 'in essence': 422597, 'essence we': 280732, 'fix nigeria': 309735, 'nigeria our': 562781, 'to retrogress': 913472, 'retrogress the': 719797, 'ha harshly': 370830, 'harshly reminded': 378580, 'reminded about': 710521, 'the comatose': 851166, 'comatose state': 186972, 'system dwindling': 831152, 'would expose': 1011808, 'education we must': 268881, 'we must fix': 972414, 'must fix healthcare': 546658, 'fix healthcare we': 309728, 'healthcare we must': 387329, 'must fix transportation': 546661, 'fix transportation in': 309763, 'transportation in essence': 930013, 'in essence we': 422600, 'essence we must': 280733, 'must fix nigeria': 546659, 'fix nigeria our': 309736, 'nigeria our country': 562782, 'our country continues': 622584, 'country continues to': 210559, 'continues to retrogress': 201491, 'to retrogress the': 913473, 'retrogress the covid': 719798, 'pandemic ha harshly': 635548, 'ha harshly reminded': 370831, 'harshly reminded about': 378581, 'reminded about the': 710522, 'about the comatose': 26352, 'the comatose state': 851167, 'comatose state of': 186973, 'of our healthcare': 587484, 'our healthcare system': 623391, 'healthcare system dwindling': 387307, 'system dwindling oil': 831153, 'oil price would': 597327, 'price would expose': 677660, 'would expose the': 1011809, 'fall cent': 296878, 'cent tonight': 169129, 'tonight putting': 924482, '10 liter': 1502, 'in metro': 425261, 'metro van': 529949, 'van the': 952310, 'in 17': 419704, '17 year': 4401, 'home the': 402223, 'price fall cent': 673780, 'fall cent tonight': 296879, 'cent tonight putting': 169130, 'tonight putting the': 924483, 'putting the price': 691233, 'the price at': 864332, 'price at 10': 672782, 'at 10 liter': 97405, '10 liter in': 1503, 'liter in metro': 494926, 'in metro van': 425266, 'metro van the': 529950, 'van the lowest': 952311, 'the lowest in': 859811, 'lowest in 17': 506171, 'in 17 year': 419705, '17 year due': 4406, 'to lower demand': 909494, 'lower demand from': 505835, 'from people staying': 336890, 'at home the': 99138, 'home the energy': 402230, 'energy sector will': 276584, 'sector will suffer': 744409, 'gawked': 344706, 'week see': 976844, 'traffic store': 929140, 'store busy': 806778, 'busy usual': 145006, 'usual still': 951028, 'available like': 104478, 'like tp': 491656, 'tp hardly': 927830, 'store wore': 811435, 'wore mask': 1004664, 'wa gawked': 962195, 'gawked laughed': 344707, 'laughed at': 481793, 'this northern': 889169, 'northern california': 567748, 'california where': 155605, 'where number': 985063, 'number are': 576826, 'getting better': 348867, 'driving to grocery': 260019, 'store every week': 807656, 'every week see': 286367, 'week see the': 976846, 'see the same': 745882, 'same amount of': 732963, 'of traffic store': 592413, 'traffic store busy': 929141, 'store busy usual': 806779, 'busy usual still': 145007, 'usual still no': 951029, 'still no paper': 800875, 'no paper product': 565059, 'paper product available': 640623, 'product available like': 680993, 'available like tp': 104479, 'like tp hardly': 491657, 'tp hardly any': 927831, 'any socialdistancing in': 79829, 'socialdistancing in store': 780447, 'in store wore': 428475, 'store wore mask': 811436, 'wore mask wa': 1004670, 'mask wa gawked': 519490, 'wa gawked laughed': 962196, 'gawked laughed at': 344708, 'laughed at this': 481795, 'at this northern': 101245, 'this northern california': 889170, 'northern california where': 567749, 'california where number': 155606, 'where number are': 985064, 'number are getting': 576829, 'are getting better': 86794, 'greater cincinnati': 363157, 'cincinnati are': 178516, 'grocery how': 364601, 'is packed': 450770, 'delivered could': 233311, 'could make': 209399, 'difference in': 241847, 'in containing': 421741, 'containing covid': 200581, 'people in greater': 648378, 'in greater cincinnati': 423416, 'greater cincinnati are': 363158, 'cincinnati are in': 178517, 'are in desperate': 87376, 'desperate need of': 238540, 'need of free': 555330, 'of free grocery': 583915, 'free grocery how': 331882, 'grocery how that': 364602, 'how that food': 408791, 'food is packed': 315142, 'is packed and': 450771, 'packed and delivered': 633587, 'and delivered could': 61094, 'delivered could make': 233312, 'could make big': 209401, 'big difference in': 129758, 'difference in containing': 241848, 'in containing covid': 421742, 'containing covid 19': 200582, 'this chart': 886749, 'the expected': 854708, 'expected surge': 290948, 'shopping market': 763246, 'market even': 516346, '19 pande': 9241, 'pande tech': 634736, 'this chart show': 886751, 'chart show the': 173851, 'show the expected': 767207, 'the expected surge': 854710, 'expected surge in': 290949, 'surge in the': 828212, 'the online grocery': 862271, 'grocery shopping market': 365052, 'shopping market even': 763247, 'market even if': 516347, 'covid 19 pande': 213547, '19 pande tech': 9242, 'rodriguez': 725008, 'pedro rodriguez': 646237, 'rodriguez is': 725009, 'american relying': 52159, 'pantry after': 639510, 'after losing': 35892, 'losing his': 503552, 'his job': 397553, 'country reporting': 211002, 'reporting an': 712671, 'unprecedented spike': 943189, 'demand are': 235019, 'sustain their': 829743, 'their inventory': 873680, 'pedro rodriguez is': 646238, 'rodriguez is among': 725010, 'among the million': 53066, 'of american relying': 580071, 'american relying on': 52160, 'relying on food': 709674, 'food pantry after': 315765, 'pantry after losing': 639511, 'after losing his': 35893, 'losing his job': 503553, 'his job due': 397554, '19 pandemic food': 9331, 'pandemic food pantry': 635438, 'pantry across the': 639509, 'the country reporting': 852142, 'country reporting an': 211003, 'reporting an unprecedented': 712672, 'an unprecedented spike': 56894, 'unprecedented spike in': 943190, 'in demand are': 422106, 'demand are struggling': 235024, 'struggling to sustain': 814521, 'to sustain their': 916076, 'sustain their inventory': 829744, 'kismenti': 475442, 'coz': 214530, 'meet one': 527538, 'at dive': 98463, 'dive kismenti': 248497, 'kismenti am': 475443, 'sure she': 827664, 'wa due': 962046, 'due in': 261660, 'few even': 303824, 'even had': 284149, 'assist her': 96630, 'her ha': 392084, 'ha ha': 370783, 'ha she': 371890, 'she told': 756389, 'me sending': 523435, 'sending the': 750096, 'the hubby': 857691, 'hubby he': 409871, 'would spend': 1012258, 'more tim': 540761, 'tim at': 896148, 'the alcohol': 848557, 'alcohol corner': 40974, 'corner and': 203635, 'if give': 414151, 'give him': 350518, 'him list': 396651, 'list something': 494538, 'something would': 785149, 'would miss': 1012037, 'miss told': 534213, 'her coz': 391972, 'coz of': 214546, 'meet one at': 527539, 'one at dive': 605965, 'at dive kismenti': 98464, 'dive kismenti am': 248498, 'kismenti am sure': 475444, 'am sure she': 50461, 'sure she wa': 827667, 'she wa due': 756412, 'wa due in': 962047, 'due in few': 261662, 'in few even': 422862, 'few even had': 303825, 'even had to': 284152, 'had to assist': 373662, 'to assist her': 900781, 'assist her ha': 96631, 'her ha ha': 392085, 'ha ha she': 370784, 'ha she told': 371891, 'she told me': 756392, 'told me sending': 923615, 'me sending the': 523436, 'sending the hubby': 750097, 'the hubby he': 857692, 'hubby he would': 409872, 'he would spend': 385700, 'would spend more': 1012259, 'spend more tim': 788643, 'more tim at': 540762, 'tim at the': 896149, 'at the alcohol': 100875, 'the alcohol corner': 848560, 'alcohol corner and': 40975, 'corner and even': 203636, 'and even if': 62338, 'even if give': 284204, 'if give him': 414152, 'give him list': 350520, 'him list something': 396652, 'list something would': 494539, 'something would miss': 785150, 'would miss told': 1012039, 'miss told her': 534214, 'told her coz': 923565, 'her coz of': 391973, 'coz of covid': 214547, 'garcia': 343555, 'katalonski': 471010, 'biha': 130389, 'jak': 464314, 'thegame': 872370, 'openborders': 612695, 'mijatovic': 531263, 'hr garcia': 409625, 'garcia katalonski': 343556, 'katalonski biha': 471011, 'biha vu': 130390, 'vu jak': 960782, 'jak thegame': 464315, 'thegame openborders': 872371, 'openborders mijatovic': 612696, 'hr garcia katalonski': 409626, 'garcia katalonski biha': 343557, 'katalonski biha vu': 471012, 'biha vu jak': 130391, 'vu jak thegame': 960783, 'jak thegame openborders': 464316, 'thegame openborders mijatovic': 872372, 'consumer begin': 196425, 'to anticipate': 900596, 'anticipate recession': 78435, 'curtail spending': 221779, 'spending online': 788938, 'shopping see': 763824, 'uptick mckinsey': 947913, 'french consumer begin': 332722, 'consumer begin to': 196426, 'begin to anticipate': 123576, 'to anticipate recession': 900598, 'anticipate recession and': 78436, 'recession and curtail': 704203, 'and curtail spending': 60820, 'curtail spending online': 221780, 'spending online shopping': 788939, 'online shopping see': 609263, 'shopping see an': 763825, 'see an uptick': 744901, 'an uptick mckinsey': 56950, 'okay the': 598016, 'who say': 989563, 'me oh': 523254, 'oh but': 596369, 'working still': 1008920, 'still yes': 801446, 'aren in': 92438, 'public like': 688143, 'supermarket god': 820534, 'people ve': 650086, 'with who': 1002094, 'okay the next': 598017, 'next person who': 561509, 'person who say': 652736, 'who say to': 989569, 'say to me': 739391, 'to me oh': 909945, 'me oh but': 523255, 'oh but so': 596371, 'but so and': 147072, 'so and so': 776509, 'so are working': 776546, 'are working still': 91718, 'working still yes': 1008921, 'still yes but': 801447, 'yes but they': 1015398, 'but they aren': 147492, 'they aren in': 881479, 'aren in the': 92440, 'the public like': 864828, 'public like retail': 688145, 'like retail worker': 491086, 'retail worker work': 718909, 'in supermarket god': 428608, 'supermarket god know': 820535, 'know how many': 476448, 'many people ve': 514544, 'people ve come': 650088, 've come in': 953000, 'contact with who': 200299, 'with who may': 1002095, 'who may have': 989272, 'may have covid': 521234, 'isolation if': 455304, 'is okay': 450449, 'supermarket fastest': 820278, 'fastest delivery': 300142, 'week unless': 977141, 'unless great': 942609, 'great effort': 362648, 'effort are': 269475, 'made to': 508029, 'improve this': 419550, 'self isolation if': 747777, 'isolation if you': 455306, 'you have symptom': 1019125, 'have symptom of': 382893, 'symptom of this': 830890, 'virus is okay': 958394, 'is okay but': 450450, 'okay but try': 597967, 'but try to': 147631, 'try to shop': 934664, 'shop online at': 760562, 'online at all': 607882, 'at all major': 97894, 'all major supermarket': 43436, 'major supermarket fastest': 509489, 'supermarket fastest delivery': 820279, 'fastest delivery is': 300143, 'delivery is week': 234147, 'is week unless': 453825, 'week unless great': 977142, 'unless great effort': 942610, 'great effort are': 362649, 'effort are made': 269477, 'are made to': 87960, 'made to improve': 508034, 'to improve this': 908209, 'improve this people': 419551, 'this people infected': 889505, 'virus will be': 959040, 'forced to go': 328634, 'surfacing': 828100, 'scammer looking': 740589, 'situation covid': 772229, 'stimulus scam': 801614, 'are surfacing': 90671, 'surfacing the': 828103, 'commission is': 188846, 'the alert': 848565, 'alert never': 41464, 'never disclose': 557954, 'disclose personal': 244377, 'aware of scammer': 105641, 'of scammer looking': 589373, 'scammer looking to': 740590, 'current situation covid': 221360, 'situation covid 19': 772230, '19 stimulus scam': 10854, 'stimulus scam are': 801615, 'scam are surfacing': 740045, 'are surfacing the': 90672, 'surfacing the federal': 828104, 'trade commission is': 928449, 'commission is warning': 188852, 'warning consumer to': 967110, 'consumer to be': 199308, 'on the alert': 603966, 'the alert never': 848568, 'alert never disclose': 41465, 'never disclose personal': 557955, 'disclose personal information': 244378, 'personal information or': 652897, 'information or account': 437934, 'despite real': 238832, 'being stable': 125852, 'stable in': 791923, 'march housing': 515385, 'market activity': 515912, 'on track': 604828, 'track for': 928187, 'for decline': 320609, 'decline this': 231409, 'this summer': 890416, 'summer significantly': 818011, 'significantly fewer': 769573, 'home change': 400891, 'change hand': 172069, 'hand due': 374907, 'pandemic however': 635661, 'however market': 409416, 'condition could': 193436, 'could improve': 209325, 'improve in': 419527, 'last quarter': 480463, 'despite real estate': 238833, 'estate price being': 282174, 'price being stable': 672900, 'being stable in': 125853, 'stable in march': 791925, 'in march housing': 425106, 'march housing market': 515386, 'housing market activity': 407097, 'market activity is': 515914, 'activity is on': 30455, 'is on track': 450490, 'on track for': 604829, 'track for decline': 928189, 'for decline this': 320610, 'decline this summer': 231410, 'this summer significantly': 890420, 'summer significantly fewer': 818012, 'significantly fewer home': 769574, 'fewer home change': 304215, 'home change hand': 400892, 'change hand due': 172070, 'hand due to': 374908, '19 pandemic however': 9353, 'pandemic however market': 635662, 'however market condition': 409417, 'market condition could': 516206, 'condition could improve': 193437, 'could improve in': 209326, 'improve in the': 419528, 'the last quarter': 859035, 'last quarter of': 480464, '13 03': 3154, '2020 or': 14489, 'than piece': 841029, 'piece 19': 656256, 'to 13 03': 899483, '13 03 2020': 3155, '03 2020 or': 859, '2020 or not': 14490, 'or not more': 616305, 'than 10 piece': 840153, 'lower and that': 505798, 'more than piece': 540661, 'than piece 19': 841030, 'after almost': 35346, 'almost two': 46757, 'going absolutely': 354993, 'absolutely nowhere': 27417, 'nowhere we': 576577, 'food fruit': 314626, 'veggie some': 954212, 'some older': 783432, 'people their': 649799, 'their behaviour': 872585, 'behaviour what': 124559, 'distancing do': 247105, 'understand already': 940588, 'had such': 373576, 'such stressful': 816773, 'stressful day': 813488, 'day socialdistancing': 228374, 'after almost two': 35347, 'almost two week': 46760, 'week of going': 976616, 'of going absolutely': 584187, 'going absolutely nowhere': 354995, 'absolutely nowhere we': 27418, 'nowhere we had': 576578, 'on food fruit': 600866, 'food fruit and': 314627, 'and veggie some': 74907, 'veggie some older': 954213, 'some older people': 783433, 'older people their': 598662, 'people their behaviour': 649800, 'their behaviour what': 872589, 'behaviour what part': 124560, 'part of social': 642379, 'social distancing do': 779592, 'distancing do you': 247108, 'you not understand': 1020134, 'not understand already': 572317, 'understand already had': 940589, 'already had such': 47399, 'had such stressful': 373577, 'such stressful day': 816774, 'stressful day socialdistancing': 813490, 'what more': 981880, 'show society': 767138, 'society how': 781239, 'valuable and': 952014, 'and integral': 65310, 'integral some': 440942, 'some underrated': 784132, 'underrated field': 940552, 'field of': 304495, 'like especially': 490173, 'especially grocery': 280496, 'what more interesting': 981883, 'more interesting to': 539614, 'interesting to me': 441635, 'to me is': 909937, 'me is how': 522998, 'how to show': 409083, 'to show society': 914572, 'show society how': 767139, 'society how valuable': 781240, 'how valuable and': 409132, 'valuable and integral': 952015, 'and integral some': 65311, 'integral some underrated': 440943, 'some underrated field': 784133, 'underrated field of': 940553, 'field of work': 304496, 'of work are': 593240, 'work are like': 1004831, 'are like especially': 87788, 'like especially grocery': 490174, 'especially grocery store': 280497, 'droplet': 260464, 'linger': 493687, 'transmittable': 929792, 'wa getting': 962201, 'impression lately': 419463, 'lately that': 480987, 'the droplet': 853713, 'droplet might': 260477, 'might linger': 531067, 'linger airborne': 493688, 'airborne long': 39846, 'term giving': 838157, 'giving the': 351410, 'potential that': 667148, 'that anybody': 842681, 'anybody could': 80066, 'just walking': 470213, 'store apparently': 806444, 'apparently not': 81972, 'not transmittable': 572251, 'transmittable by': 929793, 'talking either': 834013, 'either and': 270252, 'only cough': 610275, 'wa getting the': 962203, 'getting the impression': 349349, 'the impression lately': 857993, 'impression lately that': 419464, 'lately that the': 480988, 'that the droplet': 846710, 'the droplet might': 853715, 'droplet might linger': 260478, 'might linger airborne': 531068, 'linger airborne long': 493689, 'airborne long term': 39847, 'long term giving': 501687, 'term giving the': 838158, 'giving the potential': 351413, 'the potential that': 864129, 'potential that anybody': 667149, 'that anybody could': 842682, 'anybody could get': 80067, 'could get it': 209202, 'get it just': 347412, 'it just walking': 459255, 'just walking through': 470215, 'walking through grocery': 965112, 'grocery store apparently': 365211, 'store apparently not': 806446, 'apparently not transmittable': 81976, 'not transmittable by': 572252, 'transmittable by just': 929794, 'by just talking': 152977, 'just talking either': 469956, 'talking either and': 834014, 'either and only': 270253, 'and only cough': 68133, 'only cough sneeze': 610276, 'socializing': 781031, 'dusting': 263473, 'tranny': 929415, 'readiness': 700723, 'backtobasics': 107594, 'fast forward': 299982, 'forward few': 329981, 'week bet': 976008, 'bet it': 128073, 'before long': 122921, 'internet will': 442054, 'will crash': 993062, 'crash everyone': 214972, 'and socializing': 71915, 'socializing online': 781032, 'online dusting': 608146, 'dusting off': 263474, 'my old': 549556, 'old tranny': 598511, 'tranny radio': 929416, 'radio that': 695462, 'in readiness': 427284, 'readiness just': 700726, 'case backtobasics': 165653, 'fast forward few': 299983, 'forward few week': 329982, 'few week bet': 304138, 'week bet it': 976009, 'bet it will': 128075, 'not be long': 568416, 'be long before': 115807, 'long before long': 501349, 'before long the': 122922, 'long the internet': 501728, 'the internet will': 858396, 'internet will crash': 442055, 'will crash everyone': 993063, 'crash everyone working': 214973, 'from home shopping': 335903, 'home shopping and': 402059, 'shopping and socializing': 762024, 'and socializing online': 71916, 'socializing online dusting': 781033, 'online dusting off': 608147, 'dusting off my': 263475, 'off my old': 593985, 'my old tranny': 549561, 'old tranny radio': 598512, 'tranny radio that': 929417, 'radio that is': 695463, 'that is in': 844608, 'is in readiness': 448806, 'in readiness just': 427285, 'readiness just in': 700727, 'in case backtobasics': 421255, 'correspondent': 207635, 'helping avoid': 391279, 'avoid wide': 105395, 'wide scale': 991751, 'scale panic': 739908, 'our correspondent': 622572, 'correspondent take': 207643, 'look inside': 502425, 'inside one': 439341, 'one distribution': 606198, 'centre in': 169508, 'fight to overcome': 304926, 'overcome the pandemic': 631133, 'pandemic the food': 636679, 'food industry is': 315016, 'industry is crucial': 435928, 'is crucial in': 446958, 'crucial in helping': 219451, 'in helping avoid': 423638, 'helping avoid wide': 391280, 'avoid wide scale': 105397, 'wide scale panic': 991752, 'scale panic our': 739909, 'panic our correspondent': 638378, 'our correspondent take': 622573, 'correspondent take look': 207644, 'take look inside': 832293, 'look inside one': 502427, 'inside one distribution': 439342, 'one distribution centre': 606199, 'distribution centre in': 248131, 'edmonton': 268704, 'bookstore': 134781, 'the quebec': 865002, 'quebec salad': 693347, 'salad chain': 731914, 'chain turning': 171205, 'store toronto': 810918, 'toronto spirit': 925991, 'spirit distiller': 789461, 'distiller making': 247712, 'an edmonton': 55604, 'edmonton bookstore': 268709, 'bookstore starting': 134786, 'starting delivery': 794950, 'delivery all': 233635, 'out amid': 625619, 'amid my': 52539, 'meet the quebec': 527607, 'the quebec salad': 865004, 'quebec salad chain': 693348, 'salad chain turning': 731915, 'chain turning into': 171206, 'turning into grocery': 935927, 'grocery store toronto': 365879, 'store toronto spirit': 810919, 'toronto spirit distiller': 925992, 'spirit distiller making': 789462, 'distiller making hand': 247713, 'sanitizer and an': 734381, 'and an edmonton': 58109, 'an edmonton bookstore': 55605, 'edmonton bookstore starting': 268710, 'bookstore starting delivery': 134787, 'starting delivery all': 794951, 'delivery all to': 233638, 'all to help': 45240, 'help out amid': 390243, 'out amid my': 625622, 'amid my story': 52540, 'hide in': 394834, 'month like': 537828, 'europe when': 283526, '19 came': 5595, 'to tanzania': 916294, 'food and hide': 313251, 'and hide in': 64548, 'hide in our': 394835, 'our home for': 623448, 'home for month': 401239, 'for month like': 323526, 'month like they': 537829, 'like they do': 491450, 'they do in': 881964, 'do in europe': 249426, 'in europe when': 422657, 'europe when covid': 283527, 'covid 19 came': 212751, '19 came to': 5599, 'came to tanzania': 157071, 'forging': 329364, '19 black': 5400, 'is forging': 447909, 'forging store': 329365, 'creating artificial': 215979, 'artificial shortage': 94532, 'and hiking': 64579, 'item pity': 463569, 'pity india': 657054, 'even during covid': 284023, 'covid 19 black': 212710, '19 black market': 5401, 'black market is': 132090, 'market is forging': 516627, 'is forging store': 447910, 'forging store are': 329366, 'store are creating': 806469, 'are creating artificial': 85617, 'creating artificial shortage': 215980, 'artificial shortage and': 94533, 'shortage and hiking': 764817, 'and hiking price': 64580, 'essential item pity': 281223, 'item pity india': 463570, 'pity india and': 657055, 'india and it': 434298, 'and it people': 65568, 'these must': 880329, 'must still': 546915, 'be income': 115455, 'income tax': 432468, 'tax price': 835066, '19 deal': 6438, 'these must still': 880330, 'must still be': 546916, 'still be income': 800257, 'be income tax': 115456, 'income tax price': 432470, 'tax price what': 835067, 'what about covid': 980964, 'covid 19 deal': 212917, 'action fraud': 30023, 'fraud have': 331284, 'seen number': 747157, 'circulating relating': 178690, 'includes online': 431786, 'shopping scam': 763804, 'and criminal': 60750, 'criminal using': 216887, 'using government': 950501, 'government branding': 359945, 'keep yourselves': 472299, 'one safe': 606983, 'safe here': 729753, 'action fraud have': 30024, 'fraud have seen': 331285, 'have seen number': 382436, 'seen number of': 747158, 'number of scam': 576989, 'of scam circulating': 589358, 'scam circulating relating': 740115, 'circulating relating to': 178691, '19 this includes': 11345, 'this includes online': 888075, 'includes online shopping': 431787, 'online shopping scam': 609259, 'shopping scam and': 763806, 'scam and criminal': 739995, 'and criminal using': 60753, 'criminal using government': 216888, 'using government branding': 950502, 'government branding to': 359946, 'branding to try': 138141, 'try to trick': 934674, 'trick people find': 931703, 'people find out': 647921, 'to keep yourselves': 908884, 'keep yourselves and': 472300, 'loved one safe': 504920, 'one safe here': 606985, 'parent went': 641769, 'grab some': 361529, 'lady offered': 478797, 'offered my': 594948, 'dad couple': 224313, 'couple mask': 211620, 'it heartfelt': 458523, 'heartfelt gesture': 388447, 'gesture but': 346431, 'sad elderly': 729168, 'elderly looking': 270742, 'looking out': 502983, 'elderly bc': 270609, 'bc they': 113298, 'my parent went': 549705, 'parent went to': 641770, 'went to grab': 979156, 'to grab some': 906969, 'grab some essential': 361531, 'some essential item': 782761, 'item at the': 463136, 'store when an': 811235, 'when an elderly': 983147, 'elderly lady offered': 270734, 'lady offered my': 478798, 'offered my dad': 594949, 'my dad couple': 547886, 'dad couple mask': 224314, 'couple mask it': 211621, 'mask it heartfelt': 518879, 'it heartfelt gesture': 458524, 'heartfelt gesture but': 388448, 'gesture but also': 346432, 'but also very': 145152, 'also very sad': 49064, 'very sad elderly': 955485, 'sad elderly looking': 729169, 'elderly looking out': 270743, 'looking out for': 502984, 'out for the': 626165, 'the elderly bc': 854112, 'elderly bc they': 270610, 'bc they are': 113299, 'they are most': 881337, 'susceptible to stayathome': 829446, 'incidental': 431447, 'screenshot': 742777, 'gristle': 364063, 'animal body': 76560, 'body unleashed': 133907, 'unleashed this': 942587, 'pandemic decrease': 635288, 'decrease that': 231607, 'one by': 606033, 'going vegan': 355801, 'vegan it': 953866, 'many incidental': 514175, 'incidental benefit': 431448, 'of ending': 583102, 'ending human': 276177, 'human animal': 410412, 'animal violence': 76675, 'violence screenshot': 957555, 'screenshot from': 742778, 'from gristle': 335695, 'gristle from': 364064, 'from factory': 335385, 'factory farm': 295944, 'farm to': 299201, 'for animal body': 319357, 'animal body unleashed': 76561, 'body unleashed this': 133908, 'unleashed this pandemic': 942588, 'this pandemic decrease': 889382, 'pandemic decrease that': 635289, 'decrease that demand': 231608, 'that demand to': 843497, 'demand to help': 236398, 'prevent the next': 671733, 'the next one': 861683, 'next one by': 561483, 'one by going': 606036, 'by going vegan': 152704, 'going vegan it': 355802, 'vegan it one': 953867, 'of the many': 591219, 'the many incidental': 860044, 'many incidental benefit': 514176, 'incidental benefit of': 431449, 'benefit of ending': 127041, 'of ending human': 583103, 'ending human animal': 276178, 'human animal violence': 410413, 'animal violence screenshot': 76676, 'violence screenshot from': 957556, 'screenshot from gristle': 742779, 'from gristle from': 335696, 'gristle from factory': 364065, 'from factory farm': 335386, 'factory farm to': 295945, 'farm to food': 299203, 'to food safety': 906092, 'arwady': 94694, 'dear dr': 229776, 'dr arwady': 257960, 'arwady what': 94695, 'insure the': 440859, 'the disabled': 853329, 'disabled population': 243952, 'population during': 664674, 'be meal': 115917, 'meal delivery': 524128, 'cannot or': 162019, 'dear dr arwady': 229777, 'dr arwady what': 257961, 'arwady what measure': 94696, 'what measure have': 981865, 'measure have been': 525214, 'by the city': 154283, 'the city to': 850962, 'city to insure': 179427, 'to insure the': 908441, 'insure the disabled': 440860, 'the disabled population': 853333, 'disabled population during': 243953, 'population during the': 664675, 'the pandemic will': 863158, 'pandemic will there': 637016, 'there be meal': 878215, 'be meal delivery': 115918, 'meal delivery for': 524130, 'disability who cannot': 243864, 'who cannot or': 988426, 'cannot or do': 162020, 'or do not': 615016, 'access to shopping': 28278, 'clapping': 180034, 'well clapping': 978105, 'clapping for': 180039, 'for carers': 319936, 'carers we': 164630, 'also clap': 48026, 'for police': 324603, 'police supermarket': 663220, 'staff firefighter': 792454, 'firefighter anyone': 308197, 'that isolated': 844685, 'isolated properly': 455018, 'properly like': 684184, 'like grown': 490352, 'grown up': 367298, 'up clapforcarers': 944603, 'clapforkeyworkers 19': 179994, '19 thankfulthursday': 11139, 'well clapping for': 978106, 'clapping for carers': 180041, 'for carers we': 319938, 'carers we should': 164631, 'should also clap': 765501, 'also clap for': 48027, 'clap for police': 179960, 'for police supermarket': 324605, 'police supermarket staff': 663223, 'supermarket staff firefighter': 822846, 'staff firefighter anyone': 792455, 'firefighter anyone that': 308198, 'anyone that isolated': 80557, 'that isolated properly': 844686, 'isolated properly like': 455019, 'properly like grown': 684185, 'like grown up': 490353, 'grown up clapforcarers': 367299, 'up clapforcarers clapforkeyworkers': 944604, 'clapforcarers clapforkeyworkers 19': 179986, 'clapforkeyworkers 19 thankfulthursday': 179995, 'ranking': 696792, 'asexuals': 95010, 'homeschoolers': 402929, 'butterfly': 148177, 'prostitute': 684736, 'power ranking': 667669, 'ranking up': 696799, 'up asexuals': 944412, 'asexuals homeschoolers': 95011, 'homeschoolers supermarket': 402930, 'owner down': 632443, 'down food': 256763, 'employee social': 274222, 'social butterfly': 779449, 'butterfly prostitute': 148178, 'power ranking up': 667670, 'ranking up asexuals': 696800, 'up asexuals homeschoolers': 944413, 'asexuals homeschoolers supermarket': 95012, 'homeschoolers supermarket owner': 402931, 'supermarket owner down': 821874, 'owner down food': 632444, 'down food service': 256764, 'service employee social': 752329, 'employee social butterfly': 274223, 'social butterfly prostitute': 779450, 'pastor': 643881, 'for so': 325692, 'many during': 514018, 'this friend': 887621, 'family pastor': 298149, 'pastor and': 643882, 'and church': 59885, 'church leader': 178382, 'leader heath': 483472, 'heath care': 388510, 'worker government': 1007051, 'worker restaurant': 1007686, 'more let': 539673, 'part be': 642234, 'careful be': 164383, 'responsible don': 716020, 'infected don': 436564, 'don infect': 253651, 'praying for so': 669118, 'for so many': 325697, 'so many during': 777654, 'many during this': 514020, 'during this friend': 263286, 'this friend family': 887622, 'friend family pastor': 333600, 'family pastor and': 298150, 'pastor and church': 643883, 'and church leader': 59886, 'church leader heath': 178383, 'leader heath care': 483473, 'heath care worker': 388511, 'care worker government': 164290, 'worker government official': 1007053, 'government official grocery': 360411, 'store worker restaurant': 811572, 'worker restaurant worker': 1007688, 'restaurant worker so': 716825, 'worker so many': 1007790, 'many more let': 514306, 'more let do': 539674, 'our part be': 624258, 'part be careful': 642235, 'be careful be': 113981, 'careful be responsible': 164384, 'be responsible don': 116835, 'responsible don get': 716021, 'don get infected': 253538, 'get infected don': 347329, 'infected don infect': 436565, 'don infect others': 253653, 'estate how': 282129, 'affecting house': 34521, 'your area': 1022816, 'area my': 92114, 'my system': 550301, 'picture price': 656189, 'when new': 983769, 'quarantine and social': 692022, 'distancing but what': 247062, 'mean for real': 524451, 'for real estate': 324991, 'real estate how': 701149, 'estate how is': 282130, '19 affecting house': 4847, 'affecting house price': 34522, 'in your area': 431055, 'your area my': 1022822, 'area my system': 92116, 'my system will': 550302, 'system will send': 831385, 'will send you': 994813, 'send you an': 749982, 'you an email': 1016965, 'an email with': 55662, 'email with all': 272367, 'all the picture': 44863, 'the picture price': 863729, 'picture price when': 656190, 'price when new': 677485, 'holster': 400492, 'trumperzombieapocalypse': 934041, 'idiot in': 413527, 'charge online': 173302, 'for holster': 322337, 'holster already': 400493, 'already ordered': 47544, 'the ammo': 848645, 'ammo trumperzombieapocalypse': 52924, 'to the idiot': 916793, 'the idiot in': 857842, 'idiot in charge': 413528, 'in charge online': 421343, 'charge online shopping': 173303, 'shopping for holster': 762683, 'for holster already': 322338, 'holster already ordered': 400494, 'already ordered the': 47545, 'ordered the ammo': 618911, 'the ammo trumperzombieapocalypse': 848646, 'virus get': 958229, 'best mask': 127762, 'mask you': 519604, 'find no': 307095, 'doubt hmu': 256198, 'hmu for': 398718, 'don let the': 253694, 'let the covid': 487121, '19 virus get': 11801, 'virus get to': 958230, 'get to you': 348503, 'to you buy': 918893, 'buy the best': 149284, 'the best mask': 849524, 'best mask you': 127763, 'mask you ll': 519608, 'll find no': 496770, 'find no doubt': 307096, 'no doubt hmu': 564049, 'doubt hmu for': 256199, 'hmu for price': 398720, 'not stopping': 571768, 'stopping from': 805812, 'killing it': 474688, 'people shop': 649422, 'online 24': 607755, 'is not stopping': 450192, 'not stopping from': 571770, 'stopping from making': 805813, 'from making money': 336312, 'making money online': 511229, 'money online our': 536947, 'online our store': 608722, 'our store are': 624940, 'store are killing': 806492, 'are killing it': 87685, 'killing it people': 474692, 'it people shop': 460299, 'people shop online': 649427, 'shop online 24': 760559, 'capitalizing': 162842, 'opposed': 613761, 'is capitalizing': 446377, 'capitalizing on': 162843, 'making stay': 511362, 'open opposed': 612421, 'opposed to': 613766, 'to closing': 902912, 'closing for': 183639, 'safety lockdowncanada': 730613, 'work is capitalizing': 1005367, 'is capitalizing on': 446378, 'capitalizing on the': 162845, 'on the demand': 604061, 'for packaged food': 324352, 'food and making': 313278, 'and making stay': 66597, 'making stay open': 511363, 'stay open opposed': 797159, 'open opposed to': 612422, 'opposed to closing': 613768, 'to closing for': 902913, 'closing for all': 183640, 'all our health': 43810, 'our health and': 623368, 'and safety lockdowncanada': 70750, 'been turning': 122277, 'butcher or': 148059, 'or baker': 614486, 'baker more': 108812, 'usual because': 950893, 'supply those': 825989, 'those bare': 891836, 'have represented': 382275, 'represented lifeline': 712933, 'lifeline at': 489296, 'you been turning': 1017430, 'been turning to': 122278, 'turning to your': 935981, 'your local butcher': 1024685, 'local butcher or': 497797, 'butcher or baker': 148060, 'or baker more': 614487, 'baker more than': 108813, 'more than usual': 540694, 'than usual because': 841389, 'usual because of': 950894, 'the rush on': 866086, 'rush on supply': 728320, 'on supply those': 603835, 'supply those bare': 825990, 'those bare supermarket': 891837, 'shelf have represented': 757145, 'have represented lifeline': 382276, 'represented lifeline at': 712934, 'lifeline at least': 489297, 'least in the': 484519, 'short term for': 764737, 'term for small': 838151, 'shipper': 758812, 'shipper are': 758813, 'are flying': 86608, 'into uncharted': 443265, 'pandemic upends': 636883, 'upends delivery': 947511, 'delivery pattern': 234303, 'pattern with': 644527, 'demand mitigating': 235873, 'mitigating slumping': 534554, 'slumping global': 774727, 'economy exacerbated': 267851, 'exacerbated by': 288662, 'by border': 151978, 'and travel': 74400, 'travel control': 930326, 'control supplychain': 202155, 'supplychain shipping': 826228, 'shipping logistics': 758866, 'shipper are flying': 758814, 'are flying into': 86610, 'flying into uncharted': 311676, 'into uncharted territory': 443266, 'territory the covid': 838581, '19 pandemic upends': 9514, 'pandemic upends delivery': 636884, 'upends delivery pattern': 947512, 'delivery pattern with': 234304, 'pattern with consumer': 644528, 'with consumer demand': 997752, 'consumer demand mitigating': 197147, 'demand mitigating slumping': 235874, 'mitigating slumping global': 534555, 'slumping global economy': 774728, 'global economy exacerbated': 351896, 'economy exacerbated by': 267852, 'exacerbated by border': 288664, 'by border closure': 151979, 'border closure and': 135231, 'closure and travel': 183846, 'and travel control': 74407, 'travel control supplychain': 930327, 'control supplychain shipping': 202156, 'supplychain shipping logistics': 826229, 'bochenek': 133768, 'contributor': 201946, 'blog think': 133030, 'produced steven': 680534, 'steven bochenek': 799971, 'bochenek our': 133769, 'senior contributor': 750266, 'contributor put': 201951, 'put this': 690910, 'together onlineshopping': 920888, 'ecommerce will': 266896, 'will day': 993098, 'day 66': 227160, '66 finally': 21418, 'finally confirm': 305959, 'shopping tipping': 764161, 'proud of this': 686040, 'of this blog': 591945, 'this blog think': 886580, 'blog think the': 133031, 'think the best': 885623, 'the best we': 849564, 'best we have': 127992, 'we have produced': 971906, 'have produced steven': 382059, 'produced steven bochenek': 680535, 'steven bochenek our': 799972, 'bochenek our senior': 133770, 'our senior contributor': 624715, 'senior contributor put': 750267, 'contributor put this': 201952, 'put this together': 690914, 'this together onlineshopping': 890774, 'together onlineshopping ecommerce': 920889, 'onlineshopping ecommerce will': 609898, 'ecommerce will day': 266898, 'will day 66': 993099, 'day 66 finally': 227161, '66 finally confirm': 21419, 'finally confirm the': 305960, 'confirm the online': 194109, 'online shopping tipping': 609312, 'shopping tipping point': 764162, 'force applauds': 328331, 'applauds baltimore': 82282, 'baltimore mayor': 109129, 'mayor for': 521951, 'together health': 920820, 'city watch': 179448, 'task force applauds': 834679, 'force applauds baltimore': 328332, 'applauds baltimore mayor': 82283, 'baltimore mayor for': 109130, 'mayor for pulling': 521952, 'for pulling together': 324859, 'pulling together health': 688951, 'together health resource': 920821, 'health resource to': 386798, 'resource to lower': 714909, 'lower the spread': 506028, 'the city watch': 850964, 'city watch live': 179449, 'cup': 220439, 'thing learned': 884524, 'order it': 618342, 'prime it': 678119, 'think cup': 885200, 'cup noodle': 220450, 'noodle pasta': 566812, 'pasta etc': 643715, 'healthy aisle': 387509, 'probably fully': 679263, 'thing learned today': 884525, 'learned today if': 484157, 'can order it': 159172, 'order it on': 618345, 'it on amazon': 460029, 'on amazon prime': 599285, 'amazon prime it': 51077, 'prime it probably': 678120, 'it probably not': 460490, 'probably not available': 679333, 'not available at': 568297, 'available at your': 104266, 'store think cup': 810686, 'think cup noodle': 885201, 'cup noodle pasta': 220451, 'noodle pasta etc': 566813, 'pasta etc the': 643716, 'etc the healthy': 282797, 'the healthy aisle': 857204, 'healthy aisle is': 387510, 'aisle is probably': 40286, 'is probably fully': 451043, 'probably fully stocked': 679264, 'causing online': 168076, 'shopping trouble': 764270, 'trouble try': 932651, 'try many': 934511, 'food still': 316769, 'and website': 75368, 'website working': 975496, 'no delay': 563979, 'delay also': 232666, 'each friend': 264080, 'friend that': 333823, 'that sign': 846313, 'up using': 946513, 'above link': 27081, 'link they': 493917, 'll send': 497002, 'parcel full': 641503, 'causing online shopping': 168078, 'online shopping trouble': 609320, 'shopping trouble try': 764271, 'trouble try many': 932652, 'try many food': 934512, 'many food still': 514081, 'food still available': 316770, 'still available and': 800221, 'available and website': 104232, 'and website working': 75372, 'website working with': 975497, 'working with no': 1009064, 'with no delay': 999746, 'no delay also': 563980, 'delay also for': 232667, 'also for each': 48226, 'for each friend': 320902, 'each friend that': 264081, 'friend that sign': 333827, 'that sign up': 846315, 'sign up using': 769259, 'up using the': 946514, 'using the above': 950686, 'the above link': 848248, 'above link they': 27082, 'link they ll': 493918, 'they ll send': 882609, 'll send food': 497003, 'send food parcel': 749859, 'food parcel full': 315817, 'parcel full of': 641504, 'full of essential': 340720, 'of essential to': 583191, 'essential to food': 281697, 'bank in your': 109933, 'stimulate': 801475, 'country agreed': 210414, 'agreed today': 38753, 'to stimulate': 915416, 'stimulate sharp': 801484, 'major oil producing': 509403, 'producing country agreed': 680750, 'country agreed today': 210417, 'agreed today to': 38754, 'today to cut': 920352, 'production to stimulate': 682253, 'to stimulate sharp': 915419, 'stimulate sharp drop': 801485, 'gaither': 342890, 'country gaither': 210678, 'gaither said': 342893, 'said everybody': 731058, 'the country gaither': 852085, 'country gaither said': 210679, 'gaither said everybody': 342894, 'said everybody is': 731059, 'people seem': 649379, 'buying certain': 150106, 'is timely': 453167, 'timely reminder': 898487, 'reminder for': 710551, 'folk to': 312277, 'vigilant on': 957252, 'leave good': 484801, 'on show': 603453, 'show in': 767006, 'car good': 163110, 'good advice': 356689, 'advice at': 33324, 'current situation where': 221376, 'situation where people': 772579, 'where people seem': 985109, 'people seem to': 649380, 'to be panic': 901434, 'panic buying certain': 637676, 'buying certain item': 150107, 'certain item it': 170040, 'item it is': 463399, 'it is timely': 459105, 'is timely reminder': 453168, 'timely reminder for': 898488, 'reminder for folk': 710554, 'for folk to': 321541, 'folk to be': 312278, 'be vigilant on': 118003, 'vigilant on supermarket': 957253, 'car park and': 163211, 'park and not': 641862, 'to leave good': 909151, 'leave good on': 484802, 'good on show': 357501, 'on show in': 603455, 'show in your': 767009, 'your car good': 1023133, 'car good advice': 163111, 'good advice at': 356691, 'advice at any': 33325, 'any time but': 79970, 'time but please': 896422, 'but please be': 146794, 'night doing': 562982, 'bit re': 131683, 're start': 699573, '10pm finish': 2374, 'finish at': 307847, '8am when': 23169, 'home asleep': 400741, 'asleep back': 96187, 'it again': 456302, 'that night': 845351, 'night no': 563037, 'for reading': 324983, 'reading or': 700793, 'or writing': 617853, 'writing currently': 1012897, 'break 2am': 138666, '2am once': 16549, 'once ha': 605646, 'gone back': 356215, 'out at supermarket': 625748, 'at supermarket stocking': 100773, 'supermarket stocking shelf': 822974, 'stocking shelf on': 803593, 'shelf on night': 757377, 'on night doing': 602409, 'night doing my': 562983, 'doing my bit': 252541, 'my bit re': 547466, 'bit re start': 131684, 're start at': 699574, 'start at 10pm': 794209, 'at 10pm finish': 97431, '10pm finish at': 2375, 'finish at 8am': 307848, 'at 8am when': 97788, '8am when get': 23170, 'when get home': 983458, 'get home asleep': 347239, 'home asleep back': 400742, 'asleep back on': 96188, 'back on it': 107190, 'on it again': 601648, 'it again that': 456312, 'again that night': 37203, 'that night no': 845352, 'night no time': 563039, 'no time for': 565726, 'time for reading': 896749, 'for reading or': 324984, 'reading or writing': 700794, 'or writing currently': 617854, 'writing currently on': 1012898, 'currently on break': 221608, 'on break 2am': 599693, 'break 2am once': 138667, '2am once ha': 16550, 'once ha gone': 605647, 'ha gone back': 370720, 'gone back to': 356216, 'to normal life': 910651, 'bread baking': 138421, 'baking here': 108908, 'just the bread': 469995, 'the bread baking': 849959, 'bread baking here': 138422, 'baking here are': 108909, 'sir it': 771586, 'it request': 460720, 'the administration': 848354, 'administration to': 32507, 'no excessive': 564159, 'excessive crowding': 289386, 'the spreading': 867647, 'no black': 563702, 'sir it request': 771588, 'it request to': 460722, 'to the administration': 916480, 'the administration to': 848359, 'administration to see': 32509, 'is no excessive': 449927, 'no excessive crowding': 564160, 'excessive crowding in': 289387, 'crowding in the': 219396, 'the public place': 864847, 'public place it': 688231, 'place it can': 657531, 'it can lead': 457024, 'lead to the': 483393, 'to the spreading': 917086, 'the spreading of': 867650, 'spreading of the': 791013, 'the virus covid': 870819, '19 there should': 11290, 'should be no': 765677, 'be no black': 116090, 'no black marketing': 563703, 'black marketing or': 132100, 'marketing or hoarding': 517672, 'hoarding of essential': 399450, 'essential item it': 281209, 'item it can': 463397, 'this trump': 890867, 'trump supporter': 933877, 'supporter bought': 827082, 'bought her': 136592, 'it toilet': 461777, 'this trump supporter': 890868, 'trump supporter bought': 933878, 'supporter bought her': 827084, 'bought her local': 136593, 'her local store': 392173, 'local store out': 498471, 'store out of': 809402, 'of it toilet': 585459, 'it toilet paper': 461778, 'doesn your': 252007, 'mombasa have': 535861, 'sanitizers for': 736277, 'your client': 1023235, 'client the': 182105, 'way customer': 969535, 'customer cashier': 222239, 'cashier keep': 166560, 'on exchanging': 600661, 'exchanging cash': 289504, 'cash note': 166282, 'note with': 572857, 'current fight': 221198, 'why doesn your': 990961, 'doesn your supermarket': 252008, 'your supermarket in': 1026047, 'supermarket in mombasa': 820937, 'in mombasa have': 425395, 'mombasa have hand': 535862, 'have hand sanitizers': 380890, 'hand sanitizers for': 375692, 'sanitizers for your': 736279, 'for your client': 328130, 'your client the': 1023238, 'client the way': 182109, 'the way customer': 871147, 'way customer cashier': 969537, 'customer cashier keep': 222240, 'cashier keep on': 166561, 'keep on exchanging': 471700, 'on exchanging cash': 600662, 'exchanging cash note': 289505, 'cash note with': 166283, 'note with no': 572858, 'with no sanitizer': 999787, 'no sanitizer is': 565411, 'sanitizer is recipe': 735205, 'is recipe for': 451345, 'for disaster in': 320739, 'disaster in the': 244218, 'the current fight': 852633, 'current fight against': 221199, 'subscriber': 815861, 'daera': 224445, 'farmgate': 299595, 'subscriber only': 815870, 'only daera': 610307, 'daera official': 224446, 'begun planning': 123719, 'planning emergency': 658540, 'for ni': 323869, 'ni farmer': 562298, 'of farmgate': 583431, 'farmgate price': 299596, 'price collapsing': 673177, 'collapsing due': 186135, 'to ni': 910595, 'subscriber only daera': 815871, 'only daera official': 610308, 'daera official have': 224447, 'official have begun': 595834, 'have begun planning': 379756, 'begun planning emergency': 123720, 'planning emergency support': 658541, 'emergency support for': 273008, 'support for ni': 826518, 'for ni farmer': 323870, 'ni farmer in': 562299, 'event of farmgate': 285035, 'of farmgate price': 583432, 'farmgate price collapsing': 299597, 'price collapsing due': 673178, 'collapsing due to': 186136, 'due to ni': 261875, 'new trading': 559777, 'week opened': 976694, 'opened with': 612780, 'with gain': 998596, 'many asian': 513796, 'stock covid': 802029, 'case decline': 165712, 'decline new': 231380, 'york also': 1016570, 'also recorded': 48764, 'recorded it': 705109, 'first decline': 308625, 'in daily': 421959, 'daily coronavirus': 224563, 'death however': 230068, 'however globally': 409377, 'globally reported': 352394, 'case hit': 165773, 'hit million': 398326, 'million opec': 532301, 'meeting delayed': 527692, 'delayed oil': 232797, 'price plunged': 675935, 'welcome to new': 977906, 'to new trading': 910578, 'new trading week': 559778, 'trading week the': 928956, 'week the week': 977011, 'the week opened': 871308, 'week opened with': 976696, 'opened with gain': 612781, 'with gain for': 998597, 'gain for many': 342771, 'for many asian': 323208, 'many asian stock': 513797, 'asian stock covid': 95343, 'stock covid 19': 802030, '19 case decline': 5675, 'case decline new': 165713, 'decline new york': 231381, 'new york also': 559917, 'york also recorded': 1016571, 'also recorded it': 48765, 'recorded it first': 705111, 'it first decline': 458026, 'first decline in': 308626, 'decline in daily': 231347, 'in daily coronavirus': 421961, 'daily coronavirus death': 224564, 'coronavirus death however': 205796, 'death however globally': 230069, 'however globally reported': 409378, 'globally reported case': 352395, 'reported case hit': 712474, 'case hit million': 165774, 'hit million opec': 398327, 'million opec meeting': 532302, 'opec meeting delayed': 611911, 'meeting delayed oil': 527693, 'delayed oil price': 232798, 'oil price plunged': 597218, 'francisco line': 331113, 'doesn open': 251907, 'open until': 612624, 'until 12pm': 943634, '12pm eastern': 3126, 'eastern this': 265599, 'of shelterinplace': 589589, 'shelterinplace and': 757985, 'don stand': 253927, 'stand closer': 793509, 'apart california': 81239, 'california sanfrancisco': 155566, 'san francisco line': 733542, 'francisco line to': 331114, 'get in to': 347315, 'in to grocery': 430112, 'store doesn open': 807350, 'doesn open until': 251910, 'open until 12pm': 612625, 'until 12pm eastern': 943635, '12pm eastern this': 3127, 'eastern this is': 265600, 'this is day': 888227, 'is day one': 447039, 'one of shelterinplace': 606762, 'of shelterinplace and': 589590, 'shelterinplace and don': 757986, 'and don stand': 61639, 'don stand closer': 253928, 'stand closer than': 793510, 'than foot apart': 840662, 'foot apart california': 318341, 'apart california sanfrancisco': 81240, 'touchless': 926762, 'grocery expert': 364512, 'they share': 883330, 'practice procedure': 668633, 'procedure and': 679800, 'protecting their': 685232, 'customer employee': 222328, 'and vendor': 74909, 'vendor from': 954367, 'contracting or': 201776, 'or spreading': 617188, 'spreading supermarket': 791046, 'supermarket touchless': 823522, 'join grocery expert': 466725, 'grocery expert from': 364513, 'from and they': 334525, 'and they share': 73937, 'they share their': 883332, 'share their best': 755261, 'their best practice': 872601, 'best practice procedure': 127847, 'practice procedure and': 668634, 'procedure and policy': 679803, 'policy for protecting': 663412, 'for protecting their': 324823, 'protecting their customer': 685234, 'their customer employee': 872949, 'customer employee and': 222329, 'employee and vendor': 273595, 'and vendor from': 74912, 'vendor from contracting': 954368, 'from contracting or': 334991, 'contracting or spreading': 201777, 'or spreading supermarket': 617189, 'spreading supermarket touchless': 791047, 'china panic': 176870, 'leaked china panic': 483861, 'china panic buying': 176871, 'buying food have': 150314, 'brewbird': 139409, 'freshly': 333130, 'announcement we': 77225, 'we operate': 972658, 'operate at': 612978, 'at brewbird': 98163, 'brewbird the': 139410, 'the caf': 850262, 'caf is': 155086, 'now completely': 574425, 'completely closed': 192239, 'closed however': 183164, 'however we': 409514, 'now turned': 576235, 'into social': 442993, 'now provide': 575609, 'provide weekly': 686538, 'weekly freshly': 977495, 'freshly food': 333135, 'client within': 182140, 'within for': 1002361, 'announcement we have': 77226, 'we have made': 971864, 'have made some': 381417, 'made some change': 507956, 'change to how': 172349, 'to how we': 908031, 'how we operate': 409184, 'we operate at': 972659, 'operate at brewbird': 612980, 'at brewbird the': 98164, 'brewbird the caf': 139411, 'the caf is': 850263, 'caf is now': 155087, 'is now completely': 450273, 'now completely closed': 574426, 'completely closed however': 192240, 'closed however we': 183166, 'however we have': 409516, 'have now turned': 381740, 'now turned into': 576237, 'turned into social': 935852, 'into social supermarket': 442995, 'social supermarket that': 779982, 'supermarket that will': 823205, 'that will now': 847596, 'will now provide': 994301, 'now provide weekly': 575610, 'provide weekly freshly': 686539, 'weekly freshly food': 977496, 'freshly food to': 333136, 'food to our': 317278, 'to our client': 911161, 'our client within': 622404, 'client within for': 182141, 'within for more': 1002362, 'from crude': 335061, 'gas index': 343874, 'index tank': 434249, 'tank at': 834191, 'at unprecedented': 101410, 'unprecedented pace': 943178, 'pace effort': 632923, 'pandemic grind': 635510, 'grind global': 363989, 'global commerce': 351781, 'commerce into': 188578, 'into low': 442726, 'low gear': 505302, 'from crude price': 335062, 'crude price oil': 219594, 'price oil and': 675625, 'and gas index': 63477, 'gas index tank': 343875, 'index tank at': 434250, 'tank at unprecedented': 834192, 'at unprecedented pace': 101411, 'unprecedented pace effort': 943179, 'pace effort to': 632924, 'effort to mitigate': 269634, 'mitigate the pandemic': 534543, 'the pandemic grind': 862976, 'pandemic grind global': 635511, 'grind global commerce': 363990, 'global commerce into': 351783, 'commerce into low': 188579, 'into low gear': 442727, 'baylegal': 113002, 'repossession': 712796, 'baylegal join': 113003, 'join 15': 466656, '15 organization': 3799, 'organization in': 619388, 'for statewide': 325881, 'statewide moratorium': 796271, 'collection during': 186423, 'emergency family': 272693, 'family income': 297931, 'income is': 432385, 'the interest': 858347, 'interest of': 441378, 'health collection': 386272, 'collection and': 186398, 'and repossession': 70276, 'repossession should': 712800, 'baylegal join 15': 113004, 'join 15 organization': 466657, '15 organization in': 3800, 'organization in calling': 619389, 'calling for statewide': 156560, 'for statewide moratorium': 325882, 'statewide moratorium on': 796272, 'moratorium on consumer': 538443, 'on consumer debt': 600039, 'debt collection during': 230441, 'collection during the': 186424, '19 emergency family': 6755, 'emergency family income': 272694, 'family income is': 297932, 'income is on': 432389, 'is on hold': 450469, 'hold for many': 399928, 'many in the': 514173, 'in the interest': 429290, 'the interest of': 858349, 'interest of public': 441381, 'of public health': 588589, 'public health collection': 688062, 'health collection and': 386273, 'collection and repossession': 186401, 'and repossession should': 70278, 'repossession should be': 712801, 'should be well': 765771, 'communicate': 189540, 'parent how': 641648, 'to communicate': 903090, 'communicate with': 189555, 'anxious child': 78844, 'child or': 176167, 'or teen': 617339, 'teen about': 836469, 'parent how to': 641649, 'how to communicate': 408995, 'to communicate with': 903093, 'communicate with an': 189556, 'with an anxious': 997204, 'an anxious child': 55344, 'anxious child or': 78845, 'child or teen': 176168, 'or teen about': 617340, 'latamadvisor': 480828, 'dialogue': 240299, 'the latamadvisor': 859061, 'latamadvisor ha': 480829, 'ha covered': 370253, 'covered 19': 212398, 'region health': 707422, 'care system': 164224, 'system metal': 831245, 'the tourism': 869826, 'and ecuador': 61932, 'ecuador economy': 268432, 'come stay': 187513, 'stay updated': 797377, 'our with': 625390, 'with dialogue': 998023, 'dialogue new': 240304, 'the latamadvisor ha': 859062, 'latamadvisor ha covered': 480830, 'ha covered 19': 370254, 'covered 19 effect': 212399, 'on the region': 604328, 'the region health': 865431, 'region health care': 707423, 'health care system': 386253, 'care system metal': 164226, 'system metal price': 831246, 'metal price the': 529652, 'price the tourism': 676863, 'the tourism industry': 869827, 'tourism industry and': 926990, 'industry and ecuador': 435635, 'and ecuador economy': 61933, 'ecuador economy and': 268433, 'economy and there': 267657, 'are more to': 88124, 'to come stay': 903047, 'come stay updated': 187514, 'stay updated on': 797378, 'updated on our': 947409, 'on our with': 602645, 'our with dialogue': 625391, 'with dialogue new': 998024, 'dialogue new webpage': 240305, '19 level': 8318, 'update thank': 947239, 'worker nurse': 1007464, 'pharmacist aged': 654105, 'farmer truck': 299548, 'driver warehouse': 259837, 'covid 19 level': 213351, '19 level of': 8319, 'level of government': 487641, 'of government update': 584280, 'government update thank': 360763, 'update thank you': 947240, 'thousand of grocery': 893445, 'store worker nurse': 811549, 'worker nurse doctor': 1007465, 'doctor healthcare worker': 250953, 'healthcare worker pharmacist': 387372, 'worker pharmacist aged': 1007564, 'pharmacist aged care': 654106, 'aged care worker': 37951, 'care worker farmer': 164286, 'worker farmer truck': 1006909, 'farmer truck driver': 299549, 'truck driver warehouse': 932803, 'driver warehouse worker': 259838, 'warehouse worker food': 966819, 'worker food processing': 1006960, 'processing worker and': 680049, '01 letting': 722, 'letting hang': 487408, 'hang your': 376951, 'shame not': 754616, 'helping student': 391478, 'student out': 814750, 'most student': 542777, 'student who': 814803, 'on seasonal': 603345, 'seasonal work': 743479, 'you extortionate': 1018500, 'your accommodation': 1022732, '01 letting hang': 723, 'letting hang your': 487409, 'hang your head': 376952, 'in shame not': 427854, 'shame not helping': 754617, 'not helping student': 569943, 'helping student out': 391479, 'student out in': 814751, 'in this difficult': 429932, 'they need it': 882746, 'the most student': 861041, 'most student who': 542780, 'student who depend': 814804, 'depend on seasonal': 237323, 'on seasonal work': 603346, 'seasonal work to': 743480, 'work to pay': 1005897, 'to pay you': 911576, 'pay you extortionate': 645248, 'you extortionate price': 1018501, 'price for your': 674081, 'for your accommodation': 328114, 'lifeguard': 489280, 'nourished': 573674, 'let start': 487070, 'start gratitude': 794318, 'gratitude thread': 362393, 'thread here': 893557, 'provider lifeguard': 686751, 'lifeguard grocery': 489281, 'will start': 994938, 'start thank': 794547, 'and nourished': 67815, 'nourished 19': 573675, 'let start gratitude': 487071, 'start gratitude thread': 794319, 'gratitude thread here': 362394, 'thread here for': 893558, 'here for people': 393008, 'from home health': 335868, 'care provider lifeguard': 164176, 'provider lifeguard grocery': 686752, 'lifeguard grocery store': 489282, 'many others will': 514463, 'others will start': 621802, 'will start thank': 994946, 'start thank you': 794548, 'all you are': 45531, 'healthy and nourished': 387527, 'and nourished 19': 67816, 'someone ask': 784370, 'ask trump': 95656, 'trump why': 933978, 'help north': 390145, 'north korea': 567659, 'korea but': 477459, 'empty did': 274852, 'the warehouse': 871079, 'down can': 256614, 'they not': 882785, 'not manufacture': 570527, 'manufacture product': 513387, 'someone ask trump': 784371, 'ask trump why': 95657, 'trump why we': 933981, 'why we re': 991528, 'we re willing': 973000, 'to help north': 907570, 'help north korea': 390146, 'north korea but': 567660, 'korea but we': 477460, 'but we can': 147740, 'can help our': 158643, 'help our own': 390235, 'our own and': 624198, 'own and grocery': 631881, 'are empty did': 86146, 'empty did the': 274853, 'did the warehouse': 240859, 'the warehouse shut': 871084, 'warehouse shut down': 966764, 'shut down can': 767812, 'down can they': 256616, 'can they not': 159977, 'they not manufacture': 882789, 'not manufacture product': 570528, 'note please': 572780, 'selfish dick': 748074, 'dick coronacrisis': 240458, 'coronacrisis if': 204632, 'not key': 570279, 'going the': 355481, 'take note please': 832379, 'note please and': 572781, 'please and stop': 659661, 'being selfish dick': 125738, 'selfish dick coronacrisis': 748075, 'dick coronacrisis if': 240459, 'coronacrisis if your': 204633, 'your not key': 1025042, 'not key worker': 570280, 'key worker or': 473504, 'worker or going': 1007506, 'or going the': 615498, 'going the supermarket': 355484, 'supermarket then stay': 823270, 'then stay at': 877568, 'is van': 453654, 'van driver': 952297, 'driver for': 259566, 'for asda': 319499, 'important that': 419007, 'after elderly': 35615, 'who is van': 989126, 'is van driver': 453655, 'van driver for': 952299, 'driver for asda': 259567, 'for asda and': 319500, 'asda and he': 94903, 'and he say': 64324, 'he say that': 385399, 'say that supermarket': 739251, 'that supermarket are': 846560, 'and supply it': 72797, 'supply it is': 825473, 'is very important': 453678, 'very important that': 955254, 'important that everyone': 419008, 'who is looking': 989089, 'is looking after': 449443, 'looking after elderly': 502776, 'after elderly people': 35616, 'elderly people to': 270837, 'fairweather': 296475, 'brewing': 139472, 'ontario craft': 611587, 'craft beer': 214760, 'beer option': 122495, '19 updated': 11694, 'updated still': 947437, 'shipping but': 758830, 'but retail': 146935, 'closed brewery': 183019, 'brewery stopping': 139458, 'stopping all': 805792, 'all operation': 43762, 'operation until': 613288, 'notice fairweather': 573272, 'fairweather brewing': 296476, 'brewing via': 139481, 'ontario craft beer': 611588, 'craft beer option': 214763, 'beer option during': 122496, 'option during covid': 614019, 'covid 19 updated': 214006, '19 updated still': 11695, 'updated still shipping': 947438, 'still shipping but': 801177, 'shipping but retail': 758832, 'but retail store': 146936, 'store closed brewery': 807058, 'closed brewery stopping': 183020, 'brewery stopping all': 139459, 'stopping all operation': 805793, 'all operation until': 43763, 'operation until further': 613289, 'further notice fairweather': 342100, 'notice fairweather brewing': 573273, 'fairweather brewing via': 296477, 'beg everyone': 123358, 'this shocking': 890100, 'shocking video': 759634, 'how easy': 407777, 'easy it': 265721, 'this demonstrates': 887208, 'how cough': 407620, 'supermarket think': 823301, 'about time': 26693, 'everyone thank': 287456, 'beg everyone to': 123359, 'everyone to watch': 287510, 'to watch this': 918393, 'watch this shocking': 968577, 'this shocking video': 890101, 'shocking video of': 759636, 'video of how': 956827, 'of how easy': 584823, 'how easy it': 407780, 'easy it is': 265723, 'is to spread': 453247, 'to spread this': 915080, 'spread this demonstrates': 790835, 'this demonstrates how': 887209, 'demonstrates how cough': 236854, 'how cough can': 407621, 'in supermarket think': 428691, 'supermarket think it': 823306, 'think it about': 885318, 'it about time': 456240, 'about time you': 26702, 'time you put': 898412, 'you put that': 1020509, 'put that mask': 690847, 'that mask on': 845058, 'mask on while': 519058, 'on while doing': 605285, 'while doing your': 986767, 'doing your shopping': 252890, 'your shopping please': 1025789, 'shopping please retweet': 763649, 'retweet to everyone': 720091, 'to everyone thank': 905354, 'everyone thank you': 287457, 'chain woe': 171251, 'woe due': 1003329, 'health sector': 386835, 'sector crisis': 744152, 'crisis inadequate': 217543, 'inadequate drug': 431202, 'industry shortage': 436111, 'shortage sad': 765203, 'sad economy': 729167, 'supply chain woe': 825067, 'chain woe due': 171252, 'woe due to': 1003330, 'due to these': 261995, 'to these covid': 917337, '19 health sector': 7484, 'health sector crisis': 386836, 'sector crisis inadequate': 744153, 'crisis inadequate drug': 217544, 'inadequate drug and': 431203, 'drug and consumer': 260870, 'consumer industry shortage': 197858, 'industry shortage sad': 436112, 'shortage sad economy': 765204, 'gerbil': 346073, 'wrapping': 1012682, 'mtrs': 544650, 'why yes': 991582, 'all needed': 43611, 'needed piece': 556460, 'paper suppose': 640855, 'suppose it': 827308, 'for lining': 322991, 'lining gerbil': 493738, 'gerbil or': 346074, 'or hamster': 615551, 'hamster cage': 374642, 'cage wrapping': 155178, 'wrapping broken': 1012683, 'broken glass': 140893, 'glass diy': 351608, 'diy use': 248780, 'use using': 949787, 'list when': 494591, 'when standing': 984069, 'the mtrs': 861123, 'mtrs apart': 544651, 'apart because': 81232, 'because know': 119217, 'why yes we': 991583, 'yes we all': 1015593, 'we all needed': 970346, 'all needed piece': 43612, 'needed piece of': 556461, 'of paper suppose': 587761, 'paper suppose it': 640856, 'suppose it could': 827309, 'used for lining': 949906, 'for lining gerbil': 322992, 'lining gerbil or': 493739, 'gerbil or hamster': 346075, 'or hamster cage': 615552, 'hamster cage wrapping': 374643, 'cage wrapping broken': 155179, 'wrapping broken glass': 1012684, 'broken glass diy': 140894, 'glass diy use': 351609, 'diy use using': 248781, 'use using the': 949788, 'using the back': 950689, 'back for shopping': 106994, 'for shopping list': 325588, 'shopping list when': 763197, 'list when standing': 494592, 'when standing in': 984070, 'in the mtrs': 429378, 'the mtrs apart': 861124, 'mtrs apart because': 544652, 'apart because know': 81233, 'because know all': 119218, 'know all about': 476236, 'the fca': 854995, 'fca ha': 300725, 'ha released': 371702, 'released it': 709054, 'business priority': 144259, 'the fca ha': 854997, 'fca ha released': 300726, 'ha released it': 371706, 'released it business': 709055, 'it business priority': 456940, 'business priority for': 144260, 'priority for dealing': 678569, '2103252168': 15054, 'uba': 937794, 'ngwoke': 561856, 'ifeanyi': 415628, 'retrenched': 719773, 'commenting': 188498, '2103252168 uba': 15055, 'uba ngwoke': 937795, 'ngwoke stephen': 561857, 'stephen ifeanyi': 799733, 'ifeanyi please': 415629, 'please sir': 660522, 'sir need': 771610, 'family result': 298186, 'pandemic worker': 637043, 'were retrenched': 980064, 'retrenched and': 719774, 'among this': 53092, 'my 3rd': 547153, 'of commenting': 581546, 'commenting hope': 188501, '2103252168 uba ngwoke': 15056, 'uba ngwoke stephen': 937796, 'ngwoke stephen ifeanyi': 561858, 'stephen ifeanyi please': 799734, 'ifeanyi please sir': 415630, 'please sir need': 660525, 'sir need the': 771612, 'need the money': 555752, 'my family result': 548219, 'family result of': 298187, 'result of this': 717618, '19 pandemic worker': 9527, 'pandemic worker in': 637044, 'worker in our': 1007192, 'in our company': 426272, 'our company were': 622500, 'company were retrenched': 191299, 'were retrenched and': 980065, 'retrenched and wa': 719775, 'and wa among': 75079, 'wa among this': 961521, 'among this is': 53093, 'is my 3rd': 449777, 'my 3rd day': 547154, '3rd day of': 18424, 'day of commenting': 228060, 'of commenting hope': 581547, 'family during the': 297758, 'winsight': 996109, 'demand winsight': 236506, 'winsight grocery': 996110, 'grocery business': 364324, 'meet demand winsight': 527479, 'demand winsight grocery': 236507, 'winsight grocery business': 996111, 'neighbor get': 557020, 'your neighbor get': 1024954, 'neighbor get it': 557022, 'automobile': 104026, 'fuel consumption': 340142, 'consumption caused': 199850, 'and exacerbated': 62446, 'by feud': 152574, 'feud between': 303638, 'largest producer': 480004, 'limited option': 492688, 'for north': 323918, 'american oil': 52106, 'company oil': 190926, 'oil commodity': 596679, 'commodity trading': 189332, 'trading opec': 928903, 'opec consumer': 611850, 'consumer automobile': 196363, 'automobile gasoline': 104029, 'drop in fuel': 260248, 'in fuel consumption': 423150, 'fuel consumption caused': 340144, 'consumption caused by': 199851, 'pandemic and exacerbated': 634874, 'and exacerbated by': 62447, 'exacerbated by feud': 288666, 'by feud between': 152575, 'feud between the': 303639, 'world largest producer': 1009746, 'largest producer ha': 480005, 'producer ha limited': 680630, 'ha limited option': 371150, 'limited option for': 492689, 'option for north': 614035, 'for north american': 323919, 'north american oil': 567614, 'american oil company': 52107, 'oil company oil': 596693, 'company oil commodity': 190927, 'oil commodity trading': 596682, 'commodity trading opec': 189333, 'trading opec consumer': 928904, 'opec consumer automobile': 611851, 'consumer automobile gasoline': 196364, 'jon': 467224, 'closing jon': 183680, 'jon disruption': 467225, 'school closing jon': 741743, 'closing jon disruption': 183681, 'jon disruption lack': 467226, 'macys is': 507510, 'macys is temporarily': 507511, 'is temporarily closing': 452599, 'temporarily closing store': 837482, 'closing store nationwide': 183762, '9420': 23562, 'sw': 829893, 'confirmed one': 194176, 'worker tested': 1007899, 'employee worked': 274462, 'located at': 498803, 'at 9420': 97810, '9420 sw': 23563, 'sw 56': 829894, '56 street': 20456, 'supermarket ha confirmed': 820622, 'ha confirmed one': 370227, 'confirmed one of': 194177, 'of it worker': 585468, 'it worker tested': 462523, 'worker tested positive': 1007901, 'the the employee': 869380, 'the employee worked': 854273, 'employee worked at': 274463, 'worked at the': 1006103, 'the store located': 868050, 'store located at': 808789, 'located at 9420': 498804, 'at 9420 sw': 97811, '9420 sw 56': 23564, 'sw 56 street': 829895, '56 street in': 20457, 'street in miami': 812998, 'store saw': 809995, 'sanitisers amp': 734055, 'amp mask': 54114, 'mask explained': 518626, 'explained to': 292169, 'her about': 391825, 'and mum': 67322, 'mum etc': 545891, 'these she': 880666, 'well mate': 978386, 'mate but': 520337, 'work here': 1005249, 'here can': 392850, 'on filling': 600784, 'shelf now': 757350, 'grocery store saw': 365747, 'store saw woman': 810001, 'woman with trolley': 1003701, 'with trolley full': 1001851, 'full of hand': 340728, 'of hand sanitisers': 584432, 'hand sanitisers amp': 375258, 'sanitisers amp mask': 734056, 'amp mask explained': 54115, 'mask explained to': 518627, 'explained to her': 292170, 'to her about': 907688, 'her about the': 391826, 'about the elderly': 26385, 'elderly and mum': 270581, 'and mum etc': 67323, 'mum etc who': 545892, 'etc who need': 282885, 'who need these': 989328, 'need these she': 555798, 'these she said': 880667, 'she said that': 756313, 'said that all': 731393, 'that all good': 842548, 'good and well': 356756, 'and well mate': 75407, 'well mate but': 978387, 'mate but work': 520338, 'but work here': 147925, 'work here can': 1005253, 'here can carry': 392851, 'can carry on': 157873, 'carry on filling': 165121, 'on filling the': 600785, 'the shelf now': 866861, 'tutorial': 936050, 'shopifycrowd': 761162, 'close your': 182945, 'of restriction': 589035, 'restriction consider': 717242, 'consider selling': 195090, 'selling your': 749538, 'delivering locally': 233521, 'locally it': 498759, 'take le': 832261, 'basic store': 112062, 'store our': 809397, 'our tutorial': 625214, 'tutorial explains': 936057, 'ecommerce shopifycrowd': 266865, 'to close your': 902907, 'close your retail': 182947, 'retail store because': 718616, 'because of restriction': 119397, 'of restriction consider': 589038, 'restriction consider selling': 717243, 'consider selling your': 195091, 'selling your product': 749539, 'your product online': 1025442, 'product online through': 681487, 'online through and': 609566, 'through and delivering': 894325, 'and delivering locally': 61102, 'delivering locally it': 233522, 'locally it can': 498760, 'it can take': 457033, 'can take le': 159899, 'take le than': 832262, 'le than an': 483163, 'than an hour': 840338, 'hour to set': 406035, 'to set up': 914296, 'set up basic': 753546, 'up basic store': 944457, 'basic store our': 112063, 'store our tutorial': 809400, 'our tutorial explains': 625215, 'tutorial explains how': 936058, 'explains how ecommerce': 292214, 'how ecommerce shopifycrowd': 407785, 'nightingale': 563156, 'tee': 836446, 'mooted': 538359, 'middlehaven': 530701, 'teesside': 836586, 'military personnel': 531483, 'personnel have': 653115, 'build new': 141992, 'new hospital': 558892, 'london nh': 501137, 'nh nightingale': 562018, 'nightingale due': 563159, 'week tee': 976961, 'tee valley': 836462, 'valley mayor': 951975, 'ha mooted': 371285, 'mooted that': 538360, 'in middlehaven': 425303, 'middlehaven could': 530702, 'for teesside': 326172, 'military personnel have': 531485, 'personnel have been': 653116, 'been working 15': 122394, 'working 15 hour': 1008461, '15 hour shift': 3729, 'hour shift to': 405923, 'shift to help': 758435, 'to help build': 907467, 'help build new': 389442, 'build new hospital': 141993, 'new hospital in': 558893, 'hospital in london': 404469, 'in london nh': 424889, 'london nh nightingale': 501138, 'nh nightingale due': 562019, 'nightingale due to': 563160, 'due to open': 261888, 'open this week': 612575, 'this week tee': 891275, 'week tee valley': 976962, 'tee valley mayor': 836463, 'valley mayor ha': 951976, 'mayor ha mooted': 521962, 'ha mooted that': 371286, 'mooted that the': 538361, 'that the empty': 846717, 'the empty supermarket': 854291, 'empty supermarket in': 275161, 'supermarket in middlehaven': 820935, 'in middlehaven could': 425304, 'middlehaven could be': 530703, 'could be one': 208900, 'one for teesside': 606307, 'thisisnotadrill': 891645, 'are living': 87844, 'through unimaginable': 894881, 'unimaginable time': 941814, 'is matter': 449600, 'death go': 230055, 'you thisisnotadrill': 1021709, 'thisisnotadrill coronacrisis': 891646, 'coronacrisisuk lockdown': 204890, 're not key': 699102, 'key worker we': 473526, 'we are living': 970614, 'are living through': 87847, 'living through unimaginable': 496464, 'through unimaginable time': 894882, 'unimaginable time but': 941815, 'time but it': 896420, 'it is matter': 459009, 'is matter of': 449601, 'matter of life': 520609, 'of life and': 585815, 'life and death': 488474, 'and death go': 60986, 'death go to': 230057, 'to work for': 918721, 'work for you': 1005183, 'for you you': 328104, 'you you stay': 1022487, 'you stay at': 1021369, 'home for me': 401236, 'for me please': 323332, 'me please and': 523338, 'please and thank': 659662, 'and thank you': 73161, 'thank you thisisnotadrill': 841830, 'you thisisnotadrill coronacrisis': 1021710, 'thisisnotadrill coronacrisis coronacrisisuk': 891647, 'coronacrisis coronacrisisuk lockdown': 204569, 'pearlessence': 646171, 'this brand': 886604, 'brand pearlessence': 137962, 'pearlessence well': 646172, 'well they': 978678, 're ripping': 699399, 'ripping people': 722720, 'off during': 593786, 'pandemic charging': 635124, 'charging 99': 173451, 'for 16': 318681, '16 oz': 4153, 'oz bottle': 632725, 'sanitizer while': 736084, 'while sam': 987233, 'club ha': 184441, 'ha 67': 369416, '67 oz': 21465, 'bottle for': 136220, 'for 98': 318957, '98 pricegouging': 23729, 'pricegouging pricegougers': 677839, 'pricegougers handsanitizer': 677770, 'handsanitizer maga': 376576, 'anyone know this': 80404, 'know this brand': 476888, 'this brand pearlessence': 886606, 'brand pearlessence well': 137963, 'pearlessence well they': 646173, 'well they re': 978683, 'they re ripping': 883113, 're ripping people': 699400, 'ripping people off': 722721, 'people off during': 648936, 'off during the': 593789, 'coronavirus pandemic charging': 206445, 'pandemic charging 99': 635125, 'charging 99 for': 173452, '99 for 16': 23819, 'for 16 oz': 318683, '16 oz bottle': 4154, 'oz bottle of': 632729, 'hand sanitizer while': 375663, 'sanitizer while sam': 736086, 'while sam club': 987234, 'sam club ha': 732916, 'club ha 67': 184442, 'ha 67 oz': 369417, '67 oz bottle': 21466, 'oz bottle for': 632728, 'bottle for 98': 136221, 'for 98 pricegouging': 318958, '98 pricegouging pricegougers': 23730, 'pricegouging pricegougers handsanitizer': 677840, 'pricegougers handsanitizer maga': 677771, 'foto': 330113, 'nella': 557364, 'storia': 811757, 'filum': 305809, 'ordinata': 619103, 'che': 174066, 'ci': 178441, 'reso': 714619, 'cinesi': 178570, 'la foto': 478163, 'foto nella': 330117, 'nella storia': 557365, 'storia la': 811758, 'la filum': 478161, 'filum ordinata': 305810, 'ordinata che': 619104, 'che ci': 174067, 'ci ha': 178442, 'ha reso': 371738, 'reso un': 714620, 'un po': 939293, 'po cinesi': 662126, 'la foto nella': 478164, 'foto nella storia': 330118, 'nella storia la': 557366, 'storia la filum': 811759, 'la filum ordinata': 478162, 'filum ordinata che': 305811, 'ordinata che ci': 619105, 'che ci ha': 174068, 'ci ha reso': 178443, 'ha reso un': 371739, 'reso un po': 714621, 'un po cinesi': 939294, 'it shocking': 461021, 'shocking most': 759607, 'nh can': 561910, 'at normal': 99909, 'then are': 876997, 'this after': 886226, 'after stockpilers': 36247, 'stockpilers take': 803891, 'what sort': 982225, 'of community': 581598, 'saw this photo': 738296, 'this photo on': 889564, 'photo on facebook': 655225, 'facebook and it': 294890, 'and it shocking': 65582, 'it shocking most': 461022, 'shocking most of': 759608, 'most of who': 542568, 'of who work': 593137, 'who work for': 990034, 'work for the': 1005174, 'the nh can': 861729, 'nh can shop': 561911, 'can shop at': 159600, 'shop at normal': 759951, 'at normal time': 99912, 'normal time and': 567367, 'time and then': 896300, 'and then are': 73742, 'then are left': 876998, 'with this after': 1001674, 'this after stockpilers': 886227, 'after stockpilers take': 36248, 'stockpilers take it': 803892, 'it all what': 456387, 'all what sort': 45441, 'what sort of': 982226, 'sort of community': 786119, 'of community is': 581599, 'community is this': 189938, 'shitpost': 759342, 'poker': 662843, 'biganimetiddies': 130119, 'ponrhub': 663980, 'wanking': 965607, 'hai waiting': 373932, 'waiting room': 964380, 'room is': 725929, 'come shitpost': 187505, 'shitpost with': 759343, 'me poker': 523347, 'poker biganimetiddies': 662844, 'biganimetiddies ponrhub': 130120, 'ponrhub toiletpaper': 663981, 'toiletpaper wanking': 922813, 'hai waiting room': 373933, 'waiting room is': 964382, 'room is open': 725930, 'is open come': 450564, 'open come shitpost': 612160, 'come shitpost with': 187506, 'shitpost with me': 759344, 'with me poker': 999449, 'me poker biganimetiddies': 523348, 'poker biganimetiddies ponrhub': 662845, 'biganimetiddies ponrhub toiletpaper': 130121, 'ponrhub toiletpaper wanking': 663982, 'halloween': 374389, 'we celebrate': 971115, 'celebrate halloween': 168791, 'halloween early': 374396, 'early this': 264714, 'year need': 1014759, 'throw toiletpaper': 895059, 'like now': 490886, 'can we celebrate': 160164, 'we celebrate halloween': 971117, 'celebrate halloween early': 168792, 'halloween early this': 374397, 'early this year': 264717, 'this year need': 891583, 'year need some': 1014760, 'need some kid': 555594, 'some kid to': 783172, 'kid to throw': 474144, 'to throw toiletpaper': 917567, 'throw toiletpaper at': 895060, 'toiletpaper at my': 921765, 'at my house': 99817, 'my house like': 548735, 'house like now': 406397, 'soo all': 785561, 'warning about': 967065, 'virus except': 958172, 'mask unless': 519460, 'sick no': 768524, 'essential avoid': 280811, 'home flatten': 401195, 'curve don': 221851, 'soo all will': 785562, 'will listen to': 994026, 'to the warning': 917177, 'the warning about': 871092, 'warning about the': 967072, 'the virus except': 870831, 'virus except for': 958173, 'except for social': 289168, 'distancing no need': 247353, 'need for mask': 554851, 'for mask unless': 323281, 'mask unless you': 519461, 'unless you re': 942674, 're sick no': 699519, 'sick no hoarding': 768525, 'no hoarding of': 564431, 'food or essential': 315653, 'or essential avoid': 615180, 'essential avoid crowd': 280812, 'crowd stay home': 219258, 'stay home flatten': 796962, 'home flatten the': 401196, 'the curve don': 852691, 'curve don panic': 221852, 'don panic shop': 253812, 'checkout guy': 174926, 'doing he': 252440, 'said terrible': 731385, 'terrible should': 838430, 'have even': 380484, 'even asked': 283842, 'stupid of': 815431, 'people supporting': 649699, 'supporting during': 827126, 'shelterinplace healthcare': 758000, 'healthcare restaurant': 387265, 'restaurant fire': 716468, 'fire police': 308107, 'police etc': 662988, 'etc thank': 282789, 'asked the checkout': 95838, 'the checkout guy': 850762, 'checkout guy at': 174927, 'grocery store how': 365474, 'store how he': 808222, 'how he wa': 407985, 'he wa doing': 385595, 'wa doing he': 962003, 'doing he said': 252441, 'he said terrible': 385375, 'said terrible should': 731386, 'terrible should not': 838431, 'not have even': 569828, 'have even asked': 380485, 'even asked that': 283843, 'asked that wa': 95832, 'that wa stupid': 847313, 'wa stupid of': 963342, 'stupid of me': 815432, 'of me thinking': 586346, 'me thinking of': 523705, 'thinking of all': 885950, 'of all those': 579987, 'all those people': 45175, 'those people supporting': 892328, 'people supporting during': 649700, 'supporting during the': 827127, 'the shelterinplace healthcare': 866916, 'shelterinplace healthcare restaurant': 758001, 'healthcare restaurant fire': 387266, 'restaurant fire police': 716469, 'fire police etc': 308108, 'police etc thank': 662989, 'etc thank you': 282790, 'redistribution': 705742, 'redistribute': 705732, 'tonne': 924533, 'food redistribution': 316141, 'redistribution organisation': 705745, 'organisation across': 619248, 'across england': 29318, 'england will': 277044, 'from 25': 334249, 'help cut': 389564, 'cut foodwaste': 223340, 'foodwaste and': 318247, 'and redistribute': 70087, 'redistribute up': 705735, 'to 14': 899491, '14 00': 3373, '00 tonne': 561, 'tonne of': 924541, 'of surplus': 590527, 'surplus stock': 828498, 'stock during': 802068, 'food redistribution organisation': 316142, 'redistribution organisation across': 705746, 'organisation across england': 619249, 'across england will': 29321, 'england will benefit': 277045, 'benefit from 25': 126976, 'from 25 million': 334251, '25 million of': 15911, 'million of government': 532268, 'of government funding': 584272, 'government funding to': 360116, 'funding to help': 341624, 'to help cut': 907487, 'help cut foodwaste': 389568, 'cut foodwaste and': 223341, 'foodwaste and redistribute': 318249, 'and redistribute up': 70089, 'redistribute up to': 705736, 'up to 14': 946321, 'to 14 00': 899492, '14 00 tonne': 3376, '00 tonne of': 563, 'tonne of surplus': 924543, 'of surplus stock': 590529, 'surplus stock during': 828500, 'stock during the': 802069, 'jacobreesmogg': 464223, 'abortion': 24607, 'religious': 709573, 'jacobreesmogg buying': 464224, 'buying company': 150127, 'company at': 190475, 'price profiting': 676011, 'people misery': 648775, 'misery his': 534008, 'his selling': 397783, 'selling of': 749362, 'of abortion': 579705, 'abortion pill': 24610, 'pill in': 656662, '2017 while': 13863, 'while expressing': 986820, 'expressing his': 293086, 'his religious': 397747, 'religious anti': 709574, 'anti abortion': 78262, 'abortion position': 24612, 'national television': 552631, 'television is': 836855, 'is hypocrisy': 448650, 'hypocrisy at': 412397, 'level borisjohnson': 487524, 'borisjohnson fire': 135520, 'fire him': 308088, 'him now': 396672, 'jacobreesmogg buying company': 464225, 'buying company at': 150128, 'company at cut': 190476, 'at cut price': 98396, 'cut price profiting': 223496, 'price profiting from': 676012, 'profiting from covid': 683121, '19 and people': 5082, 'and people misery': 68873, 'people misery his': 648776, 'misery his selling': 534009, 'his selling of': 397784, 'selling of abortion': 749363, 'of abortion pill': 579706, 'abortion pill in': 24611, 'pill in 2017': 656663, 'in 2017 while': 419781, '2017 while expressing': 13864, 'while expressing his': 986821, 'expressing his religious': 293087, 'his religious anti': 397748, 'religious anti abortion': 709575, 'anti abortion position': 78264, 'abortion position on': 24613, 'position on national': 665189, 'on national television': 602338, 'national television is': 552632, 'television is hypocrisy': 836856, 'is hypocrisy at': 448651, 'hypocrisy at the': 412399, 'the highest level': 857342, 'highest level borisjohnson': 395832, 'level borisjohnson fire': 487525, 'borisjohnson fire him': 135521, 'fire him now': 308089, 'about removing': 26077, 'removing money': 710907, 'money from': 536762, 'your credit': 1023378, 'credit union': 216544, 'union you': 941952, 'thinking about removing': 885854, 'about removing money': 26079, 'removing money from': 710908, 'money from your': 536775, 'from your credit': 338473, 'your credit union': 1023382, 'credit union you': 216548, 'union you may': 941953, 'you may want': 1019816, 'may want to': 521602, 'want to think': 966145, 'utilizing': 951369, 'main way': 508848, 'is by': 446333, 'by contact': 152199, 'contact minimize': 200148, 'minimize these': 533136, 'these by': 879711, 'by utilizing': 154655, 'utilizing mobile': 951370, 'essential delivered': 280961, 'your doorstep': 1023583, 'doorstep go': 255849, 'go cashless': 353406, 'cashless here': 166691, 'of the main': 591211, 'the main way': 859918, 'main way covid': 508849, '19 spread is': 10746, 'spread is by': 790583, 'is by contact': 446334, 'by contact minimize': 152200, 'contact minimize these': 200149, 'minimize these by': 533137, 'these by utilizing': 879713, 'by utilizing mobile': 154656, 'utilizing mobile money': 951371, 'mobile money online': 534996, 'money online payment': 536948, 'online payment and': 608737, 'payment and shopping': 645546, 'and shopping with': 71557, 'shopping with you': 764448, 'with you get': 1002151, 'you get all': 1018757, 'get all your': 346525, 'all your essential': 45563, 'your essential delivered': 1023687, 'essential delivered right': 280962, 'delivered right at': 233386, 'at your doorstep': 101674, 'your doorstep go': 1023587, 'doorstep go cashless': 255850, 'go cashless here': 353407, 'grocery join': 364669, 'wuhan grocery join': 1013490, 'soon need': 785776, 'provide quarterly': 686443, 'quarterly result': 693285, 'result even': 717503, 'we explore': 971511, 'explore how': 292483, 'should treat': 766601, 'treat same': 930880, 'same store': 733304, 'or comp': 614775, 'comp result': 190312, 'these circumstance': 879756, 'store will soon': 811346, 'will soon need': 994898, 'soon need to': 785777, 'need to provide': 556020, 'to provide quarterly': 912425, 'provide quarterly result': 686444, 'quarterly result even': 693286, 'result even if': 717504, 'even if their': 284218, 'if their store': 415058, 'their store are': 874847, 'are closed due': 85339, 'to we explore': 918403, 'we explore how': 971512, 'explore how you': 292484, 'how you should': 409288, 'you should treat': 1021226, 'should treat same': 766602, 'treat same store': 930881, 'same store or': 733305, 'store or comp': 809320, 'or comp result': 614776, 'comp result in': 190313, 'result in these': 717553, 'in these circumstance': 429831, 'can brand': 157786, 'brand expect': 137838, 'be optimistic': 116265, 'optimistic about': 613926, 'future latest': 342375, 'latest study': 481559, 'study of': 814932, 'attitude suggests': 102584, 'suggests spending': 817705, 'habit will': 372712, 'month following': 537720, 'crisis based': 217111, 'can brand expect': 157787, 'brand expect to': 137839, 'to be optimistic': 901424, 'be optimistic about': 116266, 'optimistic about the': 613928, 'about the future': 26402, 'the future latest': 856081, 'future latest study': 342376, 'latest study of': 481560, 'study of consumer': 814934, 'of consumer attitude': 581709, 'consumer attitude suggests': 196349, 'attitude suggests spending': 102585, 'suggests spending habit': 817706, 'spending habit will': 788841, 'habit will increase': 372714, 'will increase in': 993814, 'the month following': 860845, 'month following the': 537722, '19 crisis based': 6219, 'crisis based on': 217112, 'based on data': 111675, 'on data from': 600216, 'data from chinese': 226227, 'from chinese consumer': 334876, 'libya': 488085, 'price 100ml': 672104, '100ml in': 2200, 'in diff': 422248, 'diff country': 241790, 'for saudi': 325348, 'saudi arab': 737177, 'arab 10': 83818, '10 iran': 1485, 'iran 15': 444664, '15 iraq': 3746, 'iraq 25': 444746, '25 libya': 15900, 'libya 28': 488086, '28 pakistan': 16402, 'pakistan 32': 634416, '32 hindustan': 17672, 'hindustan 300': 396867, '300 modi': 17331, 'ji just': 465450, 'why rt': 991323, 'rt coz': 726753, 'coz nobody': 214544, 'hand sanitizers price': 375715, 'sanitizers price 100ml': 736371, 'price 100ml in': 672105, '100ml in diff': 2201, 'in diff country': 422249, 'diff country for': 241791, 'country for saudi': 210669, 'for saudi arab': 325349, 'saudi arab 10': 737178, 'arab 10 iran': 83819, '10 iran 15': 1486, 'iran 15 iraq': 444665, '15 iraq 25': 3747, 'iraq 25 libya': 444747, '25 libya 28': 15901, 'libya 28 pakistan': 488087, '28 pakistan 32': 16403, 'pakistan 32 hindustan': 634417, '32 hindustan 300': 17673, 'hindustan 300 modi': 396868, '300 modi ji': 17332, 'modi ji just': 535467, 'ji just tell': 465451, 'just tell me': 469965, 'tell me why': 837033, 'me why rt': 523976, 'why rt coz': 991324, 'rt coz nobody': 726754, 'coz nobody will': 214545, 'nobody will tell': 566087, 'will tell you': 995103, 'tell you this': 837155, 'determine': 239427, 'scammer out': 740610, 'your information': 1024481, 'information be': 437759, 'of call': 581051, 'commission bingo': 188795, 'bingo scam': 131101, 'scam chart': 740107, 'chart click': 173824, 'and determine': 61291, 'determine if': 239433, 'the call': 850283, 'receive is': 703500, 'are scammer out': 89834, 'scammer out there': 740611, 'there that are': 879138, 'that are using': 842841, 'using the fear': 950699, '19 to steal': 11461, 'steal your information': 799217, 'your information be': 1024482, 'information be aware': 437760, 'aware of call': 105627, 'of call with': 581055, 'call with the': 156236, 'with the federal': 1001302, 'trade commission bingo': 928442, 'commission bingo scam': 188796, 'bingo scam chart': 131103, 'scam chart click': 740108, 'chart click here': 173825, 'more and determine': 538611, 'and determine if': 61292, 'determine if the': 239435, 'if the call': 414953, 'the call you': 850288, 'call you receive': 156253, 'you receive is': 1020852, 'receive is scam': 703501, 'is scam or': 451666, 'scam or not': 740279, 'cavalier': 168253, 'stepup': 799825, 'reality at': 701702, 'at cavalier': 98209, 'cavalier some': 168254, 'some staff': 783929, 'home physicaldistancing': 401857, 'physicaldistancing on': 655491, 'floor working': 310864, 'new project': 559366, 'project building': 683476, 'building part': 142127, 'part for': 642273, 'dispenser stepup': 246150, 'stepup yqg': 799826, 'yqg doing': 1026991, 'assist crisis': 96621, 'day in new': 227802, 'in new reality': 425826, 'new reality at': 559395, 'reality at cavalier': 701703, 'at cavalier some': 98210, 'cavalier some staff': 168255, 'some staff working': 783934, 'staff working at': 793113, 'at home physicaldistancing': 99082, 'home physicaldistancing on': 401858, 'physicaldistancing on our': 655492, 'on our shop': 602627, 'our shop floor': 624750, 'shop floor working': 760176, 'floor working on': 310865, 'working on new': 1008811, 'on new project': 602380, 'new project building': 559367, 'project building part': 683477, 'building part for': 142128, 'part for hand': 642275, 'sanitizer dispenser stepup': 734768, 'dispenser stepup yqg': 246151, 'stepup yqg doing': 799827, 'yqg doing what': 1026992, 'doing what we': 252851, 'can to assist': 160003, 'to assist crisis': 900778, 'spectacularly': 788323, 'churchill': 178418, 'spectacularly embarrassing': 788324, 'embarrassing you': 272456, 'you fat': 1018519, 'fat churchill': 300202, 'churchill tribute': 178421, 'tribute act': 931681, 'act so': 29766, 'so out': 777972, 'your depth': 1023489, 'depth step': 237772, 'step aside': 799498, 'aside and': 95396, 'let someone': 487057, 'someone more': 784571, 'more capable': 538768, 'capable in': 162477, 'in londonlockdown': 424907, 'londonlockdown lockdownuk': 501259, 'spectacularly embarrassing you': 788325, 'embarrassing you fat': 272457, 'you fat churchill': 1018520, 'fat churchill tribute': 300203, 'churchill tribute act': 178422, 'tribute act so': 931682, 'act so out': 29768, 'so out of': 777973, 'of your depth': 593462, 'your depth step': 1023490, 'depth step aside': 237773, 'step aside and': 799499, 'aside and let': 95398, 'and let someone': 66113, 'let someone more': 487058, 'someone more capable': 784572, 'more capable in': 538769, 'capable in londonlockdown': 162478, 'in londonlockdown lockdownuk': 424908, 'part1': 642502, 'part1 go': 642503, 'ohio right': 596553, 'luck keeping': 506460, 'keeping other': 472496, 'distance some': 246832, 'some customer': 782645, 'and invade': 65352, 'invade your': 443563, 'your space': 1025876, 'space socialdistancing': 787164, 'socialdistancing socialdistance': 780700, 'part1 go to': 642504, 'store in ohio': 808359, 'in ohio right': 426080, 'ohio right now': 596554, 'right now good': 722070, 'now good luck': 574807, 'good luck keeping': 357356, 'luck keeping other': 506461, 'keeping other customer': 472497, 'other customer at': 620056, 'customer at distance': 222143, 'at distance some': 98458, 'distance some customer': 246833, 'some customer just': 782649, 'customer just do': 222555, 'not care and': 568692, 'care and invade': 163841, 'and invade your': 65353, 'invade your space': 443564, 'your space socialdistancing': 1025878, 'space socialdistancing socialdistance': 787165, 'dalby': 225102, 'labelled': 478385, 'the dalby': 852797, 'dalby chamber': 225103, 'commerce ha': 188565, 'ha labelled': 371087, 'labelled the': 478390, 'the stripping': 868291, 'shelf un': 757725, 'un australian': 939270, 'australian report': 103537, 'on 7news': 599118, '7news at': 22494, '6pm 7news': 21649, 'the dalby chamber': 852798, 'dalby chamber of': 225104, 'of commerce ha': 581551, 'commerce ha labelled': 188568, 'ha labelled the': 371088, 'labelled the stripping': 478391, 'the stripping of': 868292, 'stripping of supermarket': 813908, 'of supermarket shelf': 590443, 'supermarket shelf un': 822555, 'shelf un australian': 757726, 'un australian report': 939271, 'australian report on': 103538, 'report on 7news': 712138, 'on 7news at': 599119, '7news at 6pm': 22495, 'at 6pm 7news': 97733, 'scandal': 740712, 'take 18': 831868, '18 month': 4556, 'create vaccine': 215766, 'home kenya': 401494, 'kenya is': 472914, 'struggling for': 814446, 'cannot stand': 162118, 'stand 9ja': 793482, '9ja scandal': 23989, 'scandal give': 740713, 'give relief': 350676, 'people drive': 647725, 'drive feel': 259053, 'will take 18': 995059, 'take 18 month': 831869, '18 month to': 4561, 'month to create': 538079, 'to create vaccine': 903727, 'create vaccine for': 215767, 'vaccine for covid': 951702, '19 virus how': 11808, 'virus how long': 958301, 'long will we': 501857, 'will we stay': 995336, 'at home kenya': 99025, 'home kenya is': 401496, 'kenya is already': 472915, 'is already struggling': 445539, 'already struggling for': 47694, 'struggling for food': 814447, 'food do something': 314252, 'do something you': 250159, 'something you cannot': 785158, 'you cannot stand': 1017881, 'cannot stand 9ja': 162119, 'stand 9ja scandal': 793483, '9ja scandal give': 23990, 'scandal give relief': 740715, 'give relief to': 350677, 'relief to make': 709479, 'to make people': 909716, 'make people drive': 510315, 'people drive feel': 647726, 'drive feel good': 259054, 'feel good and': 302644, 'good and price': 356745, 'price for good': 673970, 'sweepstakes': 830211, 'supermarket sweepstakes': 823120, 'sweepstakes for': 830212, 'win 500': 995531, 'out our supermarket': 626996, 'our supermarket sweepstakes': 625030, 'supermarket sweepstakes for': 823121, 'sweepstakes for chance': 830213, 'chance to win': 171823, 'to win 500': 918608, 'day17oflockdown': 228861, 'lockdownmzansi': 500324, 'food though': 317204, 'though lockdown': 892850, 'lockdown day17oflockdown': 499304, 'day17oflockdown lockdownmzansi': 228862, 'basic food though': 111897, 'food though lockdown': 317205, 'though lockdown day17oflockdown': 892851, 'lockdown day17oflockdown lockdownmzansi': 499305, 'pterodactyl': 687630, 'been near': 121557, 'near supermarket': 553587, 'any stuff': 79876, 'stuff or': 815164, 'have pterodactyl': 382101, 'pterodactyl had': 687631, 'haven been near': 383756, 'been near supermarket': 121558, 'near supermarket in': 553590, 'supermarket in week': 821000, 'in week is': 430755, 'week is there': 976429, 'there any stuff': 878026, 'any stuff or': 79877, 'stuff or have': 815166, 'or have pterodactyl': 615586, 'have pterodactyl had': 382102, 'pterodactyl had it': 687632, 'not had': 569764, 'had any': 372850, 'any sign': 79812, 'of grateful': 584306, 'for implementing': 322491, 'implementing change': 418503, 'worker also': 1006234, 'thankful have': 841916, 'job my': 466014, 'grateful that ve': 362314, 'that ve not': 847233, 've not had': 953399, 'not had any': 569765, 'had any sign': 372856, 'any sign of': 79813, 'sign of grateful': 769162, 'of grateful to': 584307, 'grateful to my': 362323, 'store chain for': 806917, 'chain for implementing': 170715, 'for implementing change': 322492, 'implementing change in': 418504, 'store to protect': 810803, 'protect the public': 684983, 'the public it': 864824, 'public it worker': 688131, 'it worker also': 462516, 'worker also thankful': 1006237, 'also thankful have': 48965, 'thankful have job': 841917, 'have job my': 381173, 'job my prayer': 466016, 'those who ve': 892692, 'who ve lost': 989882, 'lost their life': 503926, 'coronauk': 205321, 'break isolation': 138755, 'or metre': 616135, 'distance rule': 246810, 'rule instant': 727276, 'instant manslaughter': 440099, 'manslaughter charge': 513342, 'charge want': 173340, 'shopping book': 762232, 'book an': 134465, 'slot with': 774298, 'with maximum': 999430, 'store unless': 811001, 'unless medical': 942629, 'which prevent': 986232, 'law house': 482308, 'arrest with': 93791, 'year sentence': 1014941, 'sentence for': 750861, 'out coronauk': 625896, 'break isolation or': 138756, 'isolation or metre': 455375, 'or metre distance': 616136, 'metre distance rule': 529841, 'distance rule instant': 246811, 'rule instant manslaughter': 727277, 'instant manslaughter charge': 440100, 'manslaughter charge want': 513343, 'charge want to': 173341, 'go shopping book': 354108, 'shopping book an': 762233, 'book an online': 134467, 'an online slot': 56635, 'online slot with': 609381, 'slot with maximum': 774299, 'with maximum of': 999431, 'maximum of hour': 520826, 'of hour in': 584783, 'hour in store': 405694, 'in store unless': 428471, 'store unless medical': 811003, 'unless medical issue': 942630, 'medical issue which': 526229, 'issue which prevent': 456005, 'which prevent this': 986233, 'prevent this break': 671745, 'this break the': 886613, 'break the law': 138808, 'the law house': 859185, 'law house arrest': 482309, 'house arrest with': 406204, 'arrest with year': 93792, 'with year sentence': 1002136, 'year sentence for': 1014942, 'sentence for going': 750863, 'for going out': 321917, 'going out coronauk': 355366, 'superficial': 818654, 'reconsider': 704876, 'consumerinsight': 199694, 'for truly': 327363, 'truly essential': 933298, 'falling demand': 297232, 'more superficial': 540496, 'superficial consumerist': 818655, 'consumerist good': 199722, 'good need': 357432, 'want cue': 965757, 'cue to': 220207, 'to reconsider': 912965, 'reconsider our': 704883, 'need interesting': 555059, 'interesting piece': 441587, 'from yelp': 338441, 'yelp consumerinsight': 1015284, 'consumerinsight consumerbehaviour': 199695, 'consumerbehaviour business': 199629, 'rise in demand': 722879, 'demand for truly': 235512, 'for truly essential': 327364, 'truly essential good': 933299, 'essential good and': 281083, 'good and falling': 356731, 'and falling demand': 62639, 'falling demand for': 297235, 'for more superficial': 323596, 'more superficial consumerist': 540497, 'superficial consumerist good': 818656, 'consumerist good need': 199723, 'good need want': 357433, 'need want cue': 556172, 'want cue to': 965759, 'cue to reconsider': 220209, 'to reconsider our': 912968, 'reconsider our consumer': 704884, 'our consumer choice': 622529, 'consumer choice and': 196793, 'choice and need': 177732, 'and need interesting': 67473, 'need interesting piece': 555060, 'interesting piece of': 441589, 'piece of data': 656333, 'of data from': 582355, 'data from yelp': 226242, 'from yelp consumerinsight': 338442, 'yelp consumerinsight consumerbehaviour': 1015285, 'consumerinsight consumerbehaviour business': 199696, 'still busy': 800304, 'people some': 649506, 'are pretending': 89205, 'scammer are still': 740544, 'are still busy': 90400, 'still busy trying': 800308, 'of people some': 587986, 'people some are': 649507, 'some are pretending': 782325, 'are pretending to': 89206, 'from the social': 337880, 'administration and trying': 32452, 'get your social': 348736, 'number or your': 577031, 'or your money': 617886, 'cafecreme': 155139, 'chocolatedrink': 177709, 'kuka': 477901, 'navimumbai': 553143, 'increasing demand': 433578, 'sanitizer what': 736062, 'your move': 1024906, 'safe cafecreme': 729538, 'cafecreme chocolatedrink': 155140, 'chocolatedrink kuka': 177710, 'kuka navimumbai': 477902, 'navimumbai foodie': 553144, 'foodie cafe': 317946, 'cafe handsanitizer': 155110, 'handsanitizer stayhomestaysafe': 376650, 'with the increasing': 1001346, 'the increasing demand': 858083, 'increasing demand for': 433582, 'demand for hand': 235438, 'hand sanitizer what': 375657, 'sanitizer what your': 736066, 'what your move': 982714, 'your move to': 1024907, 'move to keep': 543757, 'one safe cafecreme': 606984, 'safe cafecreme chocolatedrink': 729539, 'cafecreme chocolatedrink kuka': 155141, 'chocolatedrink kuka navimumbai': 177711, 'kuka navimumbai foodie': 477903, 'navimumbai foodie cafe': 553145, 'foodie cafe handsanitizer': 317947, 'cafe handsanitizer stayhomestaysafe': 155111, 'woven': 1012530, 'offering protective': 595217, 'protective facemasks': 685747, 'and apron': 58284, 'apron at': 83744, 'at trade': 101353, 'trade price': 928553, 'all during': 42643, 'crisis all': 216989, 'all protective': 44077, 'gear is': 344961, 'is made': 449503, 'made from': 507752, 'from non': 336592, 'non woven': 566529, 'woven pp': 1012533, 'pp in': 667869, 'in clean': 421498, 'clean sterile': 180638, 'sterile environment': 799841, 'environment so': 279152, 'be assured': 113715, 'assured it': 97113, 'is hygienic': 448648, 'safe full': 729703, 'detail at': 239160, 'at ppe': 100167, 'we re offering': 972926, 're offering protective': 699164, 'offering protective facemasks': 595218, 'protective facemasks and': 685748, 'facemasks and apron': 295126, 'and apron at': 58285, 'apron at trade': 83745, 'at trade price': 101354, 'trade price for': 928555, 'for all during': 319119, 'all during the': 42645, '19 crisis all': 6210, 'crisis all protective': 216990, 'all protective gear': 44078, 'protective gear is': 685757, 'gear is made': 344962, 'is made from': 449505, 'made from non': 507755, 'from non woven': 336595, 'non woven pp': 566531, 'woven pp in': 1012534, 'pp in clean': 667870, 'in clean sterile': 421501, 'clean sterile environment': 180639, 'sterile environment so': 799842, 'environment so you': 279153, 'can be assured': 157584, 'be assured it': 113717, 'assured it is': 97114, 'it is hygienic': 458979, 'is hygienic and': 448649, 'hygienic and safe': 412209, 'and safe full': 70712, 'safe full detail': 729704, 'full detail at': 340558, 'detail at ppe': 239163, 'ha sign': 371937, 'sign due': 769110, 'to limited': 909311, 'limited quantity': 492703, 'quantity all': 691906, 'all poultry': 44002, 'poultry is': 667328, 'to per': 911650, 'customer pandemic': 222673, 'pandemic corvid19': 635238, 'supermarket ha sign': 820649, 'ha sign due': 371938, 'sign due to': 769111, 'due to limited': 261848, 'to limited quantity': 909312, 'limited quantity all': 492704, 'quantity all poultry': 691907, 'all poultry is': 44003, 'poultry is limited': 667329, 'limited to per': 492777, 'to per customer': 911652, 'per customer pandemic': 650780, 'customer pandemic corvid19': 222674, '19 anybody': 5167, 'anybody happy': 80086, 'happy right': 377668, '19 anybody happy': 5168, 'anybody happy right': 80087, 'happy right now': 377669, 'mahdi': 508499, 'the birth': 849729, 'birth of': 131403, 'of imam': 584985, 'imam mahdi': 416864, 'mahdi the': 508500, 'world where': 1010167, 'where capitalism': 984773, 'taken toll': 833112, 'toll to': 923888, 'been hiked': 121289, 'hiked we': 396358, 'must in': 546724, 'it the birth': 461516, 'the birth of': 849730, 'birth of imam': 131404, 'of imam mahdi': 584986, 'imam mahdi the': 416865, 'mahdi the in': 508501, 'the in world': 858024, 'in world where': 430989, 'world where capitalism': 1010168, 'where capitalism ha': 984774, 'capitalism ha taken': 162759, 'ha taken toll': 372155, 'taken toll to': 833114, 'toll to the': 923889, 'extent that price': 293337, 'that price for': 845824, 'medical supply have': 526446, 'have been hiked': 379571, 'been hiked we': 121292, 'hiked we must': 396359, 'we must in': 972421, 'must in the': 546725, 'in the name': 429382, 'name of and': 551659, 'of and fight': 580153, '1h30': 12609, 'occasional': 578946, 'an it': 56487, 'it colleague': 457198, 'colleague decided': 186208, 'work despite': 1005041, 'despite symptom': 238864, 'symptom he': 830856, 'spent 1h30': 789082, '1h30 close': 12610, 'with occasional': 999843, 'occasional coughing': 578947, 'coughing moved': 208703, 'moved back': 543793, 'back away': 106897, 'from him': 335803, 'him used': 396761, 'used hand': 949928, 'my computer': 547778, 'computer he': 192737, 'touched he': 926617, 'didn respect': 241179, 'respect socialdistancing': 715048, 'socialdistancing he': 780415, 'he tested': 385505, 'positive and': 665253, 'and exposed': 62544, 'exposed me': 292860, 'an it colleague': 56488, 'it colleague decided': 457199, 'colleague decided to': 186209, 'decided to come': 230907, 'to work despite': 918707, 'work despite symptom': 1005043, 'despite symptom he': 238866, 'symptom he spent': 830857, 'he spent 1h30': 385461, 'spent 1h30 close': 789083, '1h30 close to': 12611, 'to me with': 909971, 'me with occasional': 523996, 'with occasional coughing': 999844, 'occasional coughing moved': 578948, 'coughing moved back': 208704, 'moved back away': 543794, 'back away from': 106898, 'away from him': 105889, 'from him used': 335808, 'him used hand': 396762, 'used hand sanitizer': 949929, 'sanitizer on my': 735459, 'on my computer': 602273, 'my computer he': 547779, 'computer he touched': 192738, 'he touched he': 385544, 'touched he didn': 926618, 'he didn respect': 384883, 'didn respect socialdistancing': 241180, 'respect socialdistancing he': 715049, 'socialdistancing he tested': 780416, 'he tested positive': 385507, 'tested positive and': 839344, 'positive and exposed': 665255, 'and exposed me': 62546, 'nap': 551831, 'meat dept': 525541, 'dept during': 237732, 'widespread panic': 991855, 'so exhausted': 776993, 'exhausted please': 290167, 'just let': 469132, 'me nap': 523201, 'nap panicbuying': 551832, 'panicbuying hoarder': 638961, 'hoarder sheeple': 399101, 'day of working': 228118, 'of working in': 593299, 'store meat dept': 808937, 'meat dept during': 525542, 'dept during the': 237733, 'during the widespread': 263218, 'the widespread panic': 871547, 'widespread panic shopping': 991858, 'panic shopping so': 638586, 'shopping so exhausted': 763924, 'so exhausted please': 776994, 'exhausted please just': 290168, 'please just let': 660142, 'just let me': 469134, 'let me nap': 486904, 'me nap panicbuying': 523202, 'nap panicbuying hoarder': 551833, 'panicbuying hoarder sheeple': 638962, 'klang': 475874, 'shopping store': 763989, 'in klang': 424524, 'klang valley': 475875, 'valley that': 951988, 'doorstep during': 255846, 'grocery shopping store': 365086, 'shopping store in': 763991, 'store in klang': 808328, 'in klang valley': 424525, 'klang valley that': 475877, 'valley that deliver': 951989, 'that deliver to': 843482, 'deliver to your': 233256, 'to your doorstep': 918973, 'your doorstep during': 1023586, 'doorstep during the': 255848, 'but other': 146711, 'business operation': 144150, 'operation remain': 613244, 'remain see': 709853, 'will ship': 994838, 'is closed but': 446572, 'closed but other': 183027, 'but other business': 146712, 'other business operation': 619916, 'business operation remain': 144152, 'operation remain see': 613246, 'remain see you': 709854, 'see you can': 746102, 'order online or': 618476, 'by phone and': 153574, 'phone and we': 654889, 'we will ship': 973908, 'guessed': 368110, 'theofficenbc': 877824, 'angelamartin': 76345, 'this episode': 887404, 'episode aired': 279511, 'aired 25': 39888, '25 13': 15800, 'ever guessed': 285334, 'guessed that': 368111, 'that angela': 842663, 'angela martin': 76328, 'martin wa': 518111, 'wa prepper': 962983, 'prepper theofficenbc': 670390, 'theofficenbc toiletpaper': 877825, 'quarantine life': 692337, 'life hoarding': 488733, 'hoarding tp': 399630, 'tp prepper': 927906, 'prepper angelamartin': 670380, 'this episode aired': 887405, 'episode aired 25': 279512, 'aired 25 13': 39889, '25 13 who': 15801, '13 who would': 3283, 'would have ever': 1011874, 'have ever guessed': 380491, 'ever guessed that': 285335, 'guessed that angela': 368112, 'that angela martin': 842664, 'angela martin wa': 76329, 'martin wa prepper': 518112, 'wa prepper theofficenbc': 962984, 'prepper theofficenbc toiletpaper': 670391, 'theofficenbc toiletpaper quarantine': 877826, 'toiletpaper quarantine life': 922373, 'quarantine life hoarding': 692338, 'life hoarding tp': 488734, 'hoarding tp prepper': 399631, 'tp prepper angelamartin': 927907, 'now hiring': 574930, 'hiring community': 397080, 'community look': 189969, 'outbreak two': 628770, 'two supermarket': 937247, 'reacting by': 700167, 'adding more': 31680, 'now hiring community': 574932, 'hiring community look': 397081, 'community look to': 189970, 'look to their': 502642, 'to their grocery': 917235, 'their grocery store': 873452, 'store for food': 807805, 'the outbreak two': 862716, 'outbreak two supermarket': 628771, 'two supermarket chain': 937248, 'chain are reacting': 170511, 'are reacting by': 89450, 'reacting by adding': 700168, 'by adding more': 151752, 'adding more worker': 31681, 'slight': 773926, 'well discovered': 978160, 'discovered slight': 244693, 'slight issue': 773929, 'store those': 810710, 'aren practicing': 92482, 'practicing the': 668754, 'the 6ft': 848178, '6ft guideline': 21608, 'guideline will': 368508, 'give single': 350702, 'single fuck': 771301, 'fuck socialdistancing': 339640, 'socialdistancing 19': 780181, '19 sixfeetapart': 10603, 'well discovered slight': 978161, 'discovered slight issue': 244694, 'slight issue with': 773930, 'issue with social': 456021, 'grocery store those': 365859, 'store those who': 810713, 'those who aren': 892613, 'who aren practicing': 988269, 'aren practicing the': 92484, 'practicing the 6ft': 668755, 'the 6ft guideline': 848179, '6ft guideline will': 21609, 'guideline will cut': 368509, 'will cut in': 993085, 'cut in line': 223379, 'in line and': 424743, 'line and not': 492950, 'and not give': 67741, 'not give single': 569645, 'give single fuck': 350703, 'single fuck socialdistancing': 771302, 'fuck socialdistancing 19': 339641, 'socialdistancing 19 sixfeetapart': 780182, 'indefensible': 434021, 'an indefensible': 56265, 'indefensible supermarket': 434024, 'no employer': 564111, 'employer doe': 274504, 'not prioritize': 571092, 'prioritize the': 678450, 'excuse more': 289762, 'worker die': 1006775, 'die employee': 241325, 'employee call': 273698, 'better protection': 128434, 'the boston': 849889, 'boston globe': 135795, 'globe wholefoods': 352490, 'it is an': 458874, 'is an indefensible': 445673, 'an indefensible supermarket': 56266, 'indefensible supermarket and': 434025, 'supermarket and no': 819023, 'and no employer': 67612, 'no employer doe': 564112, 'employer doe not': 274505, 'doe not prioritize': 251518, 'not prioritize the': 571093, 'prioritize the health': 678453, 'health of it': 386684, 'of it staff': 585445, 'it staff there': 461214, 'staff there is': 792959, 'no excuse more': 564164, 'excuse more supermarket': 289764, 'supermarket worker die': 824011, 'worker die employee': 1006776, 'die employee call': 241326, 'employee call for': 273699, 'for better protection': 319660, 'better protection the': 128437, 'protection the boston': 685645, 'the boston globe': 849892, 'boston globe wholefoods': 135796, 'worldhappinessday': 1010237, 'turning their': 935957, 'into warehouse': 443281, 'warehouse if': 966730, 'not build': 568631, 'build wall': 142017, 'wall build': 965154, 'build bigger': 141953, 'bigger table': 130171, 'table stophoarding': 831500, 'stophoarding worldhappinessday': 805518, 'living in uncertain': 496398, 'uncertain time and': 939612, 'time and people': 896288, 'are turning their': 91229, 'turning their home': 935958, 'their home into': 873566, 'home into warehouse': 401446, 'into warehouse if': 443282, 'warehouse if you': 966731, 'you ve got': 1022043, 'got more than': 358714, 'you need please': 1020031, 'need please share': 555442, 'share with others': 755357, 'with others do': 999968, 'do not build': 249686, 'not build wall': 568632, 'build wall build': 142018, 'wall build bigger': 965155, 'build bigger table': 141954, 'bigger table stophoarding': 130172, 'table stophoarding worldhappinessday': 831501, 'know any': 476261, 'any senior': 79782, 'senior please': 750384, 'send this': 749970, 'them had': 875811, 'wait 45': 964064, 'minute just': 533783, 'they shouldn': 883388, 'shouldn have': 766734, 'you know any': 1019484, 'know any senior': 476264, 'any senior please': 79783, 'senior please send': 750385, 'please send this': 660467, 'send this to': 749971, 'this to them': 890745, 'to them had': 917297, 'them had to': 875813, 'to wait 45': 918256, 'wait 45 minute': 964065, '45 minute just': 19117, 'minute just to': 533784, 'store they shouldn': 810678, 'they shouldn have': 883391, 'shouldn have to': 766735, 'combating covid': 187064, '19 14': 4704, 'merchant in': 529021, 'in dubai': 422401, 'dubai fined': 261472, 'combating covid 19': 187065, 'covid 19 14': 212552, '19 14 merchant': 4705, '14 merchant in': 3497, 'merchant in dubai': 529023, 'in dubai fined': 422403, 'dubai fined for': 261473, 'fined for hiking': 307744, 'fajita': 296558, 'fucking mind': 339945, 'mind blowing': 532628, 'blowing that': 133382, 'be risking': 116897, 'get fajita': 346986, 'fajita sauce': 296561, 'sauce at': 737142, 'it fucking mind': 458169, 'fucking mind blowing': 339946, 'mind blowing that': 532630, 'blowing that you': 133383, 'that you you': 847756, 'you you might': 1022484, 'might be risking': 530927, 'be risking your': 116898, 'risking your life': 724102, 'life to go': 489134, 'to go get': 906801, 'go get fajita': 353605, 'get fajita sauce': 346987, 'fajita sauce at': 296562, 'sauce at the': 737143, 'grocery store 19': 365166, 'store 19 stayathome': 806025, 'just sent': 469764, 'sent my': 750783, 'husband to': 411770, 'war 19': 966333, 'just sent my': 469767, 'sent my husband': 750785, 'my husband to': 548796, 'husband to the': 411772, 'grocery store like': 365525, 'store like he': 808726, 'like he wa': 490401, 'he wa going': 385601, 'to war 19': 918327, 'peg': 646323, 'jihad': 465472, 'azour': 106426, 'dollar peg': 253050, 'peg in': 646324, 'gulf have': 368640, 'have proven': 382093, 'proven effective': 686158, 'effective even': 269247, 'region now': 707440, 'price say': 676299, 'say jihad': 738869, 'jihad azour': 465473, 'azour imf': 106427, 'imf director': 416895, 'director for': 243617, 'dollar peg in': 253051, 'peg in the': 646325, 'in the gulf': 429249, 'the gulf have': 856941, 'gulf have proven': 368641, 'have proven effective': 382094, 'proven effective even': 686160, 'effective even the': 269248, 'even the region': 284665, 'the region now': 865434, 'region now face': 707441, 'now face the': 574655, 'face the outbreak': 294798, 'the outbreak and': 862590, 'and the crash': 73306, 'oil price say': 597244, 'price say jihad': 676300, 'say jihad azour': 738870, 'jihad azour imf': 465474, 'azour imf director': 106428, 'imf director for': 416896, 'director for the': 243619, 'for the middle': 326562, 'dollar stimulus': 253081, 'injected dollar': 438687, 'dollar uspoli': 253110, 'for the dollar': 326393, 'the dollar stimulus': 853523, 'dollar stimulus to': 253082, 'the injected dollar': 858292, 'injected dollar uspoli': 438688, 'dollar uspoli cdnpoli': 253111, 'grinding': 363993, 'price growth': 674366, 'growth grinding': 367387, 'grinding to': 363996, 'rose last': 726078, 'outbreak warning': 628784, 'warning market': 967147, 'is grinding': 448222, 'halt the': 374460, 'lockdown stop': 499966, 'stop buyer': 804523, 'buyer seller': 149741, 'seller from': 749025, 'from viewing': 338239, 'viewing property': 957207, 'property via': 684368, 'house price growth': 406486, 'price growth grinding': 674367, 'growth grinding to': 367388, 'grinding to halt': 363997, 'to halt price': 907105, 'halt price rose': 374453, 'price rose last': 676270, 'rose last month': 726079, 'last month before': 480329, 'month before the': 537617, 'coronavirus outbreak warning': 206419, 'outbreak warning market': 628785, 'warning market activity': 967148, 'activity is grinding': 30452, 'is grinding to': 448223, 'to halt the': 907107, 'halt the lockdown': 374462, 'the lockdown stop': 859633, 'lockdown stop buyer': 499968, 'stop buyer seller': 804525, 'buyer seller from': 149742, 'seller from viewing': 749027, 'from viewing property': 338240, 'viewing property via': 957208, 'awful covid': 106223, 'lockdown watch': 500116, 'watch video': 968601, 'of resident': 588974, 'resident cry': 714277, 'skyrocket via': 773341, 'awful covid 19': 106224, '19 lockdown watch': 8437, 'lockdown watch video': 500117, 'watch video of': 968603, 'video of resident': 956832, 'of resident cry': 588975, 'resident cry for': 714278, 'cry for help': 219865, 'for help food': 322176, 'help food price': 389744, 'food price skyrocket': 315972, 'price skyrocket via': 676441, 'beautyandthebeast': 118822, 'belle': 126501, 'westwing': 980723, 'disneyclassic': 246050, 'west wing': 980552, 'wing virus': 995995, 'virus toiletpaper': 958935, 'toiletpaper beast': 921790, 'beast beautyandthebeast': 118483, 'beautyandthebeast belle': 118823, 'belle westwing': 126502, 'westwing stockpile': 980724, 'stockpile disney': 803735, 'disney disneyclassic': 246037, 'disneyclassic quarantine': 246051, 'quarantine los': 692357, 'angeles california': 76367, 'just don go': 468631, 'don go into': 253567, 'into the west': 443187, 'the west wing': 871401, 'west wing virus': 980553, 'wing virus toiletpaper': 995996, 'virus toiletpaper beast': 958936, 'toiletpaper beast beautyandthebeast': 921791, 'beast beautyandthebeast belle': 118484, 'beautyandthebeast belle westwing': 118824, 'belle westwing stockpile': 126503, 'westwing stockpile disney': 980725, 'stockpile disney disneyclassic': 803736, 'disney disneyclassic quarantine': 246038, 'disneyclassic quarantine los': 246052, 'quarantine los angeles': 692358, 'los angeles california': 503361, 'one woman': 607493, 'woman pleads': 1003581, 'take covid': 832039, 'seriously one': 751685, 'one man': 606637, 'man say': 512219, 'should require': 766410, 'require supermarket': 713330, 'and trash': 74395, 'trash bin': 930140, 'bin outside': 131031, 'discard glove': 244317, 'one woman pleads': 607495, 'woman pleads for': 1003582, 'pleads for resident': 659596, 'resident to take': 714390, 'to take covid': 916169, 'take covid 19': 832040, '19 seriously one': 10422, 'seriously one man': 751686, 'one man say': 606639, 'man say city': 512220, 'say city should': 738510, 'city should require': 179355, 'should require supermarket': 766411, 'require supermarket worker': 713332, 'worker to wear': 1008026, 'wear glove and': 974333, 'glove and trash': 352584, 'and trash bin': 74396, 'trash bin outside': 930141, 'bin outside to': 131032, 'outside to discard': 629616, 'to discard glove': 904346, 'we share': 973224, 'your concern': 1023303, 'concern with': 193138, 'store management': 808865, 'management read': 512621, 'step we': 799701, 'taking to': 833629, 'here thank': 393631, 'you very': 1022076, 'much and': 544709, 'safe ep': 729629, 'we share your': 973230, 'share your concern': 755372, 'your concern with': 1023305, 'concern with local': 193140, 'with local store': 999285, 'local store management': 498468, 'store management read': 808869, 'management read more': 512622, 'about the step': 26528, 'the step we': 867880, 'step we re': 799703, 're taking to': 699659, 'taking to protect': 833637, 'protect our staff': 684903, 'and customer here': 60848, 'customer here thank': 222466, 'here thank you': 393632, 'thank you very': 841839, 'you very much': 1022077, 'very much and': 955356, 'much and stay': 544711, 'stay safe ep': 797231, 'am legend': 50177, 'legend day': 485928, 'day four': 227646, 'four this': 330681, 'our currency': 622638, 'currency now': 221047, 'am legend day': 50178, 'legend day four': 485929, 'day four this': 227647, 'four this is': 330682, 'is our currency': 450617, 'our currency now': 622639, 'touchpoints': 926768, 'informed while': 438139, 'work out': 1005578, 'home supply': 402176, 'chain challenge': 170588, 'challenge store': 171562, 'closure ecommerce': 183880, 'ecommerce spike': 266871, 'spike and': 789262, 'distancing find': 247148, 'how retailer': 408591, 'this podcast': 889625, 'podcast from': 662278, 'retail touchpoints': 718799, 'stay informed while': 797091, 'informed while you': 438140, 'while you work': 987598, 'you work out': 1022421, 'work out at': 1005579, 'out at home': 625744, 'at home supply': 99128, 'home supply chain': 402177, 'supply chain challenge': 824927, 'chain challenge store': 170590, 'challenge store closure': 171563, 'store closure ecommerce': 807090, 'closure ecommerce spike': 183881, 'ecommerce spike and': 266872, 'spike and social': 789263, 'social distancing find': 779610, 'distancing find out': 247150, 'out how retailer': 626333, 'how retailer in': 408593, 'in the are': 428983, 'the are coping': 848860, 'are coping with': 85568, 'coping with in': 203400, 'with in this': 998968, 'in this podcast': 429999, 'this podcast from': 889626, 'podcast from retail': 662279, 'from retail touchpoints': 337103, 'qell': 691541, 'rear': 702832, 'posterior': 666618, 'frail': 330929, 'onl': 607748, 'qell will': 691542, 'alright no': 47783, 'doubt about': 256181, 'about that': 26317, 'be shoved': 117165, 'shoved on': 766827, 'on her': 601277, 'her rear': 392323, 'rear posterior': 702835, 'posterior while': 666619, 'while buying': 986664, 'buying loo': 150675, 'roll by': 725232, 'idiot but': 413473, 'of frail': 583889, 'frail old': 330932, 'people sick': 649465, 'sick are': 768379, 'to idiot': 908095, 'idiot supermarket': 413605, 'supermarket greed': 820565, 'greed unable': 363446, 'good onl': 357511, 'qell will be': 691543, 'be alright no': 113575, 'alright no doubt': 47784, 'no doubt about': 564046, 'doubt about that': 256184, 'about that she': 26323, 'that she will': 846246, 'she will not': 756469, 'not be shoved': 568454, 'be shoved on': 117166, 'shoved on her': 766828, 'on her rear': 601283, 'her rear posterior': 392324, 'rear posterior while': 702836, 'posterior while buying': 666620, 'while buying loo': 986667, 'buying loo roll': 150676, 'loo roll by': 502171, 'roll by some': 725234, 'by some idiot': 154075, 'some idiot but': 783070, 'idiot but plenty': 413474, 'plenty of frail': 660950, 'of frail old': 583890, 'frail old people': 330933, 'old people sick': 598419, 'people sick are': 649466, 'sick are now': 768380, 'are now thanks': 88605, 'thanks to idiot': 842236, 'to idiot supermarket': 908096, 'idiot supermarket greed': 413606, 'supermarket greed unable': 820566, 'greed unable to': 363447, 'to buy any': 902179, 'buy any good': 148348, 'any good onl': 79285, 'strensall': 813281, '40p': 18848, '90p': 23423, 'your express': 1023724, 'on strensall': 603719, 'strensall york': 813282, 'york profiteering': 1016651, 'now 40p': 573908, '40p each': 18849, 'each no': 264127, 'deal 90p': 229330, '90p for': 23424, 'for box': 319754, 'of candy': 581099, 'candy stick': 161347, 'stick yet': 800076, 'yet main': 1016142, 'main store': 508822, 'is 40p': 445210, 'why is your': 991131, 'is your express': 454143, 'your express store': 1023725, 'express store on': 293065, 'store on strensall': 809206, 'on strensall york': 603720, 'strensall york profiteering': 813283, 'york profiteering on': 1016652, 'profiteering on price': 683079, 'on price all': 602904, 'price all for': 672269, 'all for 00': 42831, 'for 00 now': 318602, '00 now 40p': 376, 'now 40p each': 573909, '40p each no': 18850, 'each no longer': 264128, 'longer in the': 502000, 'in the deal': 429125, 'the deal 90p': 852956, 'deal 90p for': 229331, '90p for box': 23425, 'for box of': 319755, 'box of candy': 137113, 'of candy stick': 581100, 'candy stick yet': 161348, 'stick yet main': 800077, 'yet main store': 1016143, 'main store is': 508823, 'store is 40p': 808459, 'is 40p each': 445211, 'unsure': 943577, 'stonely': 804355, 'an automotive': 55489, 'automotive retailer': 104049, 'is unsure': 453554, 'unsure about': 943578, 'and regulation': 70167, 'on distance': 600347, 'distance selling': 246817, 'selling have': 749289, 'have listen': 381337, 'my interview': 548879, 'right expert': 721892, 'expert peter': 291914, 'peter stonely': 653535, 'stonely of': 804356, 'of available': 580475, 'on blog': 599655, 'blog page': 132978, 'page stayhomesavelives': 633894, 're an automotive': 698284, 'an automotive retailer': 55490, 'automotive retailer that': 104050, 'retailer that is': 719359, 'that is unsure': 844672, 'is unsure about': 453555, 'unsure about the': 943579, 'about the rule': 26506, 'rule and regulation': 727191, 'and regulation on': 70169, 'regulation on distance': 708085, 'on distance selling': 600348, 'distance selling have': 246818, 'selling have listen': 749290, 'have listen to': 381338, 'to my interview': 910410, 'my interview with': 548882, 'interview with consumer': 442262, 'with consumer right': 997767, 'consumer right expert': 198813, 'right expert peter': 721894, 'expert peter stonely': 291915, 'peter stonely of': 653536, 'stonely of available': 804357, 'of available now': 580477, 'available now on': 104520, 'now on blog': 575418, 'on blog page': 599656, 'blog page stayhomesavelives': 132979, 'generationgame': 345673, 'contestant': 200887, 'conveyor': 202586, 'whencoronavirusisover': 984646, 'panicshop': 639404, 'wherestheprizes': 985450, 'checkout feel': 174916, 'like generationgame': 490304, 'generationgame contestant': 345674, 'contestant trying': 200894, 'the conveyor': 851710, 'conveyor belt': 202587, 'belt to': 126805, 'ensure people': 278003, 'buy too': 149388, 'could compete': 209036, 'compete whencoronavirusisover': 191601, 'whencoronavirusisover panicshop': 984647, 'panicshop wherestheprizes': 639405, 'working on supermarket': 1008824, 'on supermarket checkout': 603783, 'supermarket checkout feel': 819664, 'checkout feel like': 174917, 'feel like generationgame': 302713, 'like generationgame contestant': 490305, 'generationgame contestant trying': 345675, 'contestant trying to': 200895, 'to remember everything': 913184, 'remember everything on': 710190, 'on the conveyor': 604038, 'the conveyor belt': 851711, 'conveyor belt to': 202590, 'belt to ensure': 126806, 'to ensure people': 905179, 'ensure people do': 278004, 'not buy too': 568656, 'buy too much': 149389, 'too much of': 924936, 'much of one': 545194, 'of one thing': 587244, 'one thing could': 607217, 'thing could compete': 884253, 'could compete whencoronavirusisover': 209038, 'compete whencoronavirusisover panicshop': 191602, 'whencoronavirusisover panicshop wherestheprizes': 984648, 'lehman': 486095, 'appl': 82243, '08': 1068, 'intc': 440935, 'msft': 544509, 'jnj': 465567, '2008 lehman': 13678, 'lehman covid': 486096, '19 20': 4720, '20 blue': 12970, 'blue chip': 133437, 'chip stock': 177532, 'price highest': 674521, 'highest price': 395844, 'right before': 721805, 'before lehman': 122906, 'lehman issue': 486098, 'issue lowest': 455841, 'right after': 721735, 'after lehman': 35862, 'issue appl': 455673, 'appl 61': 82244, '61 08': 21178, '08 30': 1072, '30 now': 17135, 'now pg': 575536, 'pg 69': 653940, '69 21': 21517, '21 intc': 15010, 'intc 91': 440936, '91 37': 23427, '37 msft': 18082, 'msft 60': 544510, '60 29': 20863, '29 jnj': 16480, 'jnj 36': 465568, '36 23': 17994, '2008 lehman covid': 13679, 'lehman covid 19': 486097, 'covid 19 20': 212554, '19 20 blue': 4721, '20 blue chip': 12971, 'blue chip stock': 133438, 'chip stock price': 177533, 'stock price highest': 802724, 'price highest price': 674522, 'highest price right': 395847, 'price right before': 676222, 'right before lehman': 721808, 'before lehman issue': 122907, 'lehman issue lowest': 486100, 'issue lowest price': 455842, 'lowest price right': 506215, 'price right after': 676221, 'right after lehman': 721738, 'after lehman issue': 35863, 'lehman issue appl': 486099, 'issue appl 61': 455674, 'appl 61 08': 82245, '61 08 30': 21179, '08 30 now': 1074, '30 now pg': 17136, 'now pg 69': 575537, 'pg 69 21': 653941, '69 21 intc': 21518, '21 intc 91': 15011, 'intc 91 37': 440937, '91 37 msft': 23428, '37 msft 60': 18083, 'msft 60 29': 544511, '60 29 jnj': 20864, '29 jnj 36': 16481, 'jnj 36 23': 465569, 'actionable': 30212, 'healthandsafety': 387001, 'audit provide': 102942, 'provide you': 686553, 'with critical': 997858, 'critical store': 218671, 'store insight': 808437, 'insight you': 439666, 'into actionable': 442375, 'actionable data': 30213, 'example employee': 288889, 'customer health': 222451, 'concern retail': 193080, 'retail healthandsafety': 718179, 'audit provide you': 102943, 'provide you with': 686556, 'you with critical': 1022378, 'with critical store': 997859, 'critical store insight': 218672, 'store insight you': 808438, 'insight you can': 439667, 'you can turn': 1017819, 'turn into actionable': 935686, 'into actionable data': 442376, 'actionable data for': 30214, 'data for example': 226214, 'for example employee': 321277, 'example employee and': 288890, 'and customer health': 60846, 'customer health and': 222452, 'and safety concern': 70741, 'safety concern retail': 730504, 'concern retail healthandsafety': 193081, 'mainin': 508866, 'burland': 142876, 'being made': 125407, 'made between': 507651, 'saudi to': 737310, 'to mainin': 909558, 'mainin oil': 508867, 'by burland': 152018, 'burland oil': 142877, 'oil wti': 597527, 'wti commodity': 1013385, 'effort are being': 269476, 'are being made': 84884, 'being made between': 125409, 'made between and': 507652, 'between and saudi': 128720, 'and saudi to': 70940, 'saudi to mainin': 737311, 'to mainin oil': 909559, 'mainin oil price': 508868, 'oil price by': 597070, 'price by burland': 673017, 'by burland oil': 152019, 'burland oil wti': 142878, 'oil wti commodity': 597528, 'sanitizer over': 735516, 'over booze': 630026, 'booze to': 135184, 'fight shortage': 304867, 'brewery are making': 139435, 'hand sanitizer over': 375524, 'sanitizer over booze': 735517, 'over booze to': 630027, 'booze to help': 135185, 'help fight shortage': 389715, 'fight shortage due': 304868, 'clever': 181860, 'jamie': 464421, 'keepcookingcarryon': 472329, 'show she': 767122, 'she help': 756117, 'nation with': 552392, 'easy recipe': 265753, 'recipe cooking': 704449, 'cooking tip': 202922, 'and clever': 59976, 'clever trick': 181874, 'trick while': 931718, 'home jamie': 401479, 'jamie keep': 464422, 'keep cooking': 471424, 'going start': 355467, 'start monday': 794392, '30 keepcookingcarryon': 17091, 'join on her': 466796, 'on her new': 601282, 'her new show': 392229, 'new show she': 559599, 'show she help': 767123, 'she help the': 756118, 'the nation with': 861277, 'nation with easy': 552394, 'with easy recipe': 998171, 'easy recipe cooking': 265754, 'recipe cooking tip': 704450, 'cooking tip and': 202923, 'tip and clever': 898702, 'and clever trick': 59977, 'clever trick while': 181875, 'trick while many': 931719, 'many of stay': 514387, 'of stay home': 590089, 'stay home jamie': 796978, 'home jamie keep': 401480, 'jamie keep cooking': 464423, 'keep cooking and': 471425, 'cooking and keep': 202845, 'and keep going': 65761, 'keep going start': 471550, 'going start monday': 355468, 'start monday at': 794393, 'monday at 30': 536256, 'at 30 keepcookingcarryon': 97592, 'online window': 609734, 'shopping cause': 762331, 'me stressed': 523562, 'and broke': 59220, 'online window shopping': 609735, 'window shopping cause': 995712, 'shopping cause covid': 762332, 'ha me stressed': 371257, 'me stressed and': 523563, 'stressed and broke': 813437, 'stophoarding me': 805428, 'me trying': 523839, 'get pasta': 347792, 'stophoarding me trying': 805429, 'me trying to': 523840, 'to get pasta': 906558, 'get pasta and': 347793, 'pasta and rice': 643685, 'on historic': 601331, 'historic output': 397968, 'price hammered': 674400, 'war sending': 966536, 'sending crude': 750016, 'price soaring': 676537, 'soaring on': 779335, 'monday oil': 536353, 'country agreed on': 210415, 'agreed on historic': 38717, 'on historic output': 601332, 'historic output cut': 397969, 'output cut to': 629259, 'cut to prop': 223608, 'up price hammered': 945818, 'price hammered by': 674401, 'price war sending': 677373, 'war sending crude': 966537, 'sending crude price': 750017, 'crude price soaring': 219598, 'price soaring on': 676540, 'soaring on monday': 779337, 'on monday oil': 602178, 'flig': 310414, 'this big': 886554, 'big crisis': 129721, 'crisis time': 218239, 'when everyone': 983397, 'everyone chasing': 286775, 'chasing for': 173910, 'life due': 488613, 'taking benefit': 833281, 'benefit for': 126964, 'their welfare': 875182, 'welfare but': 977944, 'is policy': 450925, 'policy they': 663518, 'must refund': 546843, 'refund customer': 706892, 'customer money': 222605, 'money if': 536821, 'if flig': 414117, 'in this big': 429910, 'this big crisis': 886555, 'big crisis time': 129722, 'crisis time when': 218240, 'time when everyone': 898284, 'when everyone chasing': 983399, 'everyone chasing for': 286776, 'chasing for life': 173911, 'for life due': 322967, 'life due to': 488614, 'are taking benefit': 90715, 'taking benefit for': 833282, 'benefit for their': 126972, 'for their welfare': 326884, 'their welfare but': 875183, 'welfare but this': 977945, 'this is policy': 888359, 'is policy they': 450926, 'policy they must': 663519, 'they must refund': 882707, 'must refund customer': 546844, 'refund customer money': 706893, 'customer money if': 222606, 'money if flig': 536822, 'chopped coronavirus': 177964, 'coronavirus grocery': 206004, 'shopping edition': 762560, 'edition chopped': 268606, 'chopped coronavirus grocery': 177965, 'coronavirus grocery store': 206007, 'store shopping edition': 810133, 'shopping edition chopped': 762561, '19 need to': 8758, 'go can stop': 353405, 'can stop shopping': 159823, 'coronaquarantinechronicles': 205262, '80sbaby': 22763, 'considerable': 195183, 'coronaquarantinechronicles my': 205263, 'an adventure': 55152, 'adventure luckily': 33104, 'luckily for': 506498, 'my 80sbaby': 547195, '80sbaby training': 22764, 'training ha': 929340, 'me considerable': 522590, 'considerable advantage': 195184, 'advantage to': 33070, 'socialdistancing thing': 780805, 'coronaquarantinechronicles my travel': 205264, 'my travel to': 550428, 'travel to the': 930541, 'store today wa': 810877, 'today wa an': 920443, 'wa an adventure': 961526, 'an adventure luckily': 55153, 'adventure luckily for': 33105, 'luckily for me': 506499, 'for me my': 323326, 'me my 80sbaby': 523185, 'my 80sbaby training': 547196, '80sbaby training ha': 22765, 'training ha given': 929341, 'given me considerable': 351049, 'me considerable advantage': 522591, 'considerable advantage to': 195185, 'advantage to this': 33073, 'to this socialdistancing': 917461, 'this socialdistancing thing': 890233, 'reiterates': 708301, 'combatting': 187081, 'employing': 274566, 'government reiterates': 360523, 'reiterates it': 708304, 'it commitment': 457225, 'to combatting': 903014, 'combatting by': 187082, 'by employing': 152476, 'employing all': 274569, 'all possible': 43995, 'possible mean': 665711, 'to safeguard': 913701, 'safeguard the': 730213, 'it population': 460383, 'population it': 664711, 'also call': 47995, 'necessary measure': 554030, 'federal government reiterates': 302001, 'government reiterates it': 360524, 'reiterates it commitment': 708305, 'it commitment to': 457226, 'commitment to combatting': 189004, 'to combatting by': 903015, 'combatting by employing': 187083, 'by employing all': 152477, 'employing all possible': 274570, 'all possible mean': 43996, 'possible mean to': 665712, 'mean to safeguard': 524742, 'to safeguard the': 913706, 'safeguard the health': 730216, 'of it population': 585432, 'it population it': 460384, 'population it also': 664712, 'it also call': 456422, 'also call on': 47996, 'public to adopt': 688371, 'to adopt the': 900129, 'adopt the necessary': 32679, 'the necessary measure': 861374, 'necessary measure to': 554031, 'measure to protect': 525402, 'themselves from getting': 876811, 'from getting the': 335636, 'getting the disease': 349344, 'pacific': 632976, 'seegene': 746190, 'tripled': 932276, 'celtrion': 168993, 'chugai': 178304, 'csl': 220050, 'ffm': 304268, 'developed asia': 239684, 'asia pacific': 95209, 'pacific biotech': 632977, 'biotech stock': 131286, 'have gained': 380750, 'gained on': 342850, 'on average': 599510, 'average this': 104902, 'year those': 1015024, 'emerging asia': 273097, 'pacific rose': 632989, 'rose and': 726052, 'other region': 620817, 'region lost': 707434, 'lost at': 503827, 'least covid': 484428, 'kit maker': 475590, 'maker seegene': 510866, 'seegene tripled': 746191, 'tripled in': 932283, 'in 1m': 419732, '1m celtrion': 12653, 'celtrion chugai': 168994, 'chugai csl': 178305, 'csl target': 220051, 'target price': 834495, 'price raised': 676062, 'raised now': 696016, 'on bloomberg': 599657, 'bloomberg ffm': 133258, 'ffm go': 304269, 'developed asia pacific': 239685, 'asia pacific biotech': 95210, 'pacific biotech stock': 632978, 'biotech stock have': 131287, 'stock have gained': 802225, 'have gained on': 380751, 'gained on average': 342851, 'on average this': 599516, 'average this year': 104903, 'this year those': 891600, 'year those in': 1015025, 'those in emerging': 892093, 'in emerging asia': 422548, 'emerging asia pacific': 273098, 'asia pacific rose': 95212, 'pacific rose and': 632991, 'rose and those': 726053, 'and those in': 74027, 'those in other': 892099, 'in other region': 426249, 'other region lost': 620818, 'region lost at': 707435, 'lost at least': 503828, 'at least covid': 99478, 'least covid 19': 484429, 'test kit maker': 839063, 'kit maker seegene': 475591, 'maker seegene tripled': 510867, 'seegene tripled in': 746192, 'tripled in 1m': 932284, 'in 1m celtrion': 419733, '1m celtrion chugai': 12654, 'celtrion chugai csl': 168995, 'chugai csl target': 178306, 'csl target price': 220052, 'target price raised': 834496, 'price raised now': 676063, 'raised now on': 696017, 'now on bloomberg': 575419, 'on bloomberg ffm': 599658, 'bloomberg ffm go': 133259, 'nopanic': 566887, 'asking why': 96108, 'why japan': 991153, 'off so': 594165, 'so lightly': 777551, 'lightly honestly': 489657, 'it combination': 457202, 'of reason': 588809, 'reason but': 702879, 'moment thing': 536070, 'very calm': 955032, 'calm went': 156821, 'morning nopanic': 541376, 'nopanic 19': 566888, 'people are asking': 646928, 'are asking why': 84650, 'asking why japan': 96109, 'why japan is': 991154, 'japan is getting': 464746, 'is getting off': 448033, 'getting off so': 349151, 'off so lightly': 594166, 'so lightly honestly': 777552, 'lightly honestly don': 489658, 'don know it': 253667, 'know it combination': 476522, 'it combination of': 457203, 'combination of reason': 187105, 'of reason but': 588810, 'reason but at': 702880, 'but at the': 145245, 'the moment thing': 860783, 'moment thing are': 536071, 'thing are very': 884167, 'are very calm': 91456, 'very calm went': 955034, 'calm went to': 156822, 'this morning nopanic': 888990, 'morning nopanic 19': 541377, '3500': 17936, 'because qatar': 119507, 'qatar are': 691479, 'by extortionate': 152528, 'extortionate amount': 293385, 'amount for': 53180, 'example nz': 288921, 'nz to': 578211, 'uk usual': 938855, 'price 900': 672181, '900 covid': 23372, 'price 3500': 672149, 'you can because': 1017629, 'can because qatar': 157727, 'because qatar are': 119508, 'qatar are hiking': 691480, 'hiking price by': 396393, 'price by extortionate': 673021, 'by extortionate amount': 152529, 'extortionate amount for': 293386, 'amount for example': 53181, 'for example nz': 321286, 'example nz to': 288922, 'nz to uk': 578212, 'to uk usual': 917882, 'uk usual price': 938856, 'usual price 900': 951001, 'price 900 covid': 672182, '900 covid 19': 23373, '19 special price': 10723, 'special price 3500': 788025, 'redeem': 705658, 'uk there': 938808, 'be load': 115785, 'of wasted': 592926, 'food soon': 316697, 'soon wouldn': 785905, 'wa campaign': 961783, 'remind people': 710500, 'bank exist': 109812, 'exist so': 290245, 'could redeem': 209579, 'redeem themselves': 705659, 'and donate': 61645, 'donate coronacrisis': 254169, 'to the crazy': 916610, 'the crazy panic': 852299, 'the uk there': 870290, 'uk there will': 938811, 'will be load': 992541, 'be load of': 115786, 'load of wasted': 497289, 'of wasted food': 592927, 'wasted food soon': 968236, 'food soon wouldn': 316699, 'soon wouldn it': 785906, 'great if there': 362742, 'there wa campaign': 879234, 'wa campaign to': 961784, 'campaign to remind': 157266, 'to remind people': 913203, 'remind people that': 710502, 'people that food': 649762, 'that food bank': 843903, 'food bank exist': 313561, 'bank exist so': 109813, 'exist so people': 290246, 'people could redeem': 647563, 'could redeem themselves': 209580, 'redeem themselves and': 705660, 'themselves and donate': 876750, 'and donate coronacrisis': 61646, 'user likely': 950298, 'their alcohol': 872485, 'alcohol consumption': 40965, 'consumption during': 199864, 'home new': 401655, 'research indicates': 713767, 'that social': 846366, 'user are': 950263, 'medium user likely': 527346, 'user likely to': 950299, 'increase their alcohol': 433119, 'their alcohol consumption': 872486, 'alcohol consumption during': 40966, 'consumption during covid': 199865, '19 stay at': 10796, 'at home new': 99056, 'home new consumer': 401656, 'new consumer research': 558529, 'consumer research indicates': 198755, 'research indicates that': 713768, 'indicates that social': 434994, 'that social medium': 846369, 'medium user are': 527345, 'user are likely': 950265, 'consumption during order': 199866, 'during order in': 262842, 'die many': 241398, 'employee fear': 273842, 'post socialdistancing': 666319, 'more grocery worker': 539377, 'grocery worker die': 366169, 'worker die many': 1006777, 'die many supermarket': 241400, 'many supermarket employee': 514759, 'supermarket employee fear': 820122, 'employee fear showing': 273843, 'showing up during': 767550, 'up during pandemic': 944758, 'pandemic the washington': 636711, 'washington post socialdistancing': 967793, '007 it': 652, 'migrant labourer': 531217, 'labourer are': 478536, '007 it very': 653, 'farmer are panic': 299288, 'are panic and': 88958, 'with migrant labourer': 999501, 'migrant labourer are': 531218, 'labourer are not': 478537, 'can leave': 158857, 'sanitizer this': 735889, 'this diy': 887260, 'sanitizer gift': 734979, 'gift idea': 349989, 'easy make': 265730, 'make at': 509720, 'home version': 402423, 'version that': 954925, 'friend via': 333867, 'can leave home': 158858, 'leave home with': 484826, 'with the hand': 1001325, 'hand sanitizer this': 375623, 'sanitizer this diy': 735890, 'this diy hand': 887261, 'hand sanitizer gift': 375418, 'sanitizer gift idea': 734980, 'gift idea is': 349991, 'idea is an': 413097, 'is an easy': 445647, 'an easy make': 55565, 'easy make at': 265731, 'make at home': 509721, 'at home version': 99160, 'home version that': 402424, 'version that you': 954926, 'can give to': 158483, 'give to family': 350790, 'family and friend': 297588, 'and friend via': 63336, 'had ha': 373157, 'been detained': 120964, 'detained on': 239314, 'on terrorism': 603909, 'terrorism charge': 838602, 'charge ugh': 173326, 'ugh 19': 938019, 'he had ha': 385050, 'had ha been': 373158, 'ha been detained': 369777, 'been detained on': 120965, 'detained on terrorism': 239315, 'on terrorism charge': 603910, 'terrorism charge ugh': 838603, 'charge ugh 19': 173327, 'polarizers': 662873, 'for display': 320761, 'display panel': 246198, 'are expected': 86323, 'quarter due': 693237, 'to upstream': 917985, 'upstream supply': 947890, 'such printed': 816698, 'printed circuit': 678312, 'circuit board': 178632, 'board and': 133615, 'and polarizers': 69153, 'polarizers due': 662874, 'of novel': 587089, 'novel industry': 573792, 'industry insider': 435913, 'insider said': 439480, 'said 19': 730944, 'price for display': 673951, 'for display panel': 320762, 'display panel are': 246199, 'panel are expected': 637164, 'are expected to': 86325, 'expected to rise': 290997, 'to rise in': 913568, 'first quarter due': 308893, 'quarter due to': 693238, 'due to upstream': 262013, 'to upstream supply': 917986, 'upstream supply shortage': 947891, 'supply shortage of': 825835, 'shortage of product': 765132, 'product such printed': 681660, 'such printed circuit': 816699, 'printed circuit board': 678313, 'circuit board and': 178633, 'board and polarizers': 133616, 'and polarizers due': 69154, 'polarizers due to': 662875, 'outbreak of novel': 628483, 'of novel industry': 587091, 'novel industry insider': 573793, 'industry insider said': 435914, 'insider said 19': 439481, 'rod': 724996, 'sims': 770337, 'rational': 697751, 'justifiable': 470451, 'surprising rod': 828634, 'rod sims': 724997, 'sims doesn': 770338, 'understand basic': 940599, 'basic economics': 111866, 'economics profitability': 267479, 'profitability driven': 682908, 'by margin': 153168, 'margin and': 515605, 'and turnover': 74533, 'turnover with': 936019, 'with covid19': 997841, 'covid19 causing': 214285, 'home turnover': 402378, 'turnover will': 936016, 'decrease so': 231603, 'is both': 446239, 'both rational': 136022, 'rational and': 697752, 'and justifiable': 65734, 'justifiable for': 470452, 'to seek': 914106, 'maintain profitability': 509016, 'profitability by': 682906, 'by increasing': 152896, 'increasing margin': 433634, 'surprising rod sims': 828635, 'rod sims doesn': 724998, 'sims doesn understand': 770339, 'doesn understand basic': 251985, 'understand basic economics': 940600, 'basic economics profitability': 111867, 'economics profitability driven': 267480, 'profitability driven by': 682909, 'driven by margin': 259281, 'by margin and': 153169, 'margin and turnover': 515607, 'and turnover with': 74534, 'turnover with covid19': 936020, 'with covid19 causing': 997842, 'covid19 causing people': 214286, 'causing people work': 168085, 'from home turnover': 335920, 'home turnover will': 402379, 'turnover will decrease': 936018, 'will decrease so': 993121, 'decrease so it': 231604, 'it is both': 458890, 'is both rational': 446243, 'both rational and': 136023, 'rational and justifiable': 697753, 'and justifiable for': 65735, 'justifiable for business': 470453, 'for business to': 319846, 'business to seek': 144555, 'to seek to': 914111, 'seek to maintain': 746613, 'to maintain profitability': 909588, 'maintain profitability by': 509017, 'profitability by increasing': 682907, 'by increasing margin': 152899, 'groundbreaking': 366562, 'march 9th': 515253, '9th stock': 24026, 'collapsed result': 186111, 'our groundbreaking': 623314, 'groundbreaking transportation': 366565, 'now yes': 576497, 'blackmonday march 9th': 132203, 'march 9th stock': 515254, '9th stock market': 24027, 'stock market have': 802402, 'market have collapsed': 516499, 'have collapsed result': 380014, 'collapsed result of': 186112, 'concern about and': 192887, 'about and crashing': 24798, 'of our groundbreaking': 587482, 'our groundbreaking transportation': 623316, 'groundbreaking transportation technology': 366566, 'technology now yes': 836342, 'glastonbury': 351644, 'queus': 694248, 'firends': 308255, 'music festival': 546305, 'festival may': 303605, 'cancelled but': 161094, 'that glastonbury': 844014, 'glastonbury fix': 351645, 'fix join': 309733, 'join million': 466784, 'online queus': 608841, 'queus for': 694249, 'release new': 708974, 'delivery date': 233847, 'share excited': 754988, 'excited message': 289553, 'message with': 529485, 'with firends': 998445, 'firends and': 308256, 'music festival may': 546307, 'festival may have': 303606, 'been cancelled but': 120785, 'cancelled but you': 161096, 'still get that': 800557, 'get that glastonbury': 348209, 'that glastonbury fix': 844015, 'glastonbury fix join': 351646, 'fix join million': 309734, 'join million of': 466785, 'million of others': 532282, 'others in online': 621476, 'in online queus': 426172, 'online queus for': 608842, 'queus for supermarket': 694250, 'for supermarket to': 326030, 'supermarket to release': 823407, 'to release new': 913139, 'release new shopping': 708975, 'new shopping delivery': 559588, 'shopping delivery date': 762458, 'delivery date and': 233848, 'date and share': 226591, 'and share excited': 71387, 'share excited message': 754989, 'excited message with': 289554, 'message with firends': 529486, 'with firends and': 998446, 'firends and family': 308257, 'and family when': 62677, 'family when you': 298372, 'you get one': 1018786, 'incense': 431357, 'pokeball': 662833, 'pokemongo': 662839, 'moreballsplease': 541038, 'great you': 363124, 'guy gave': 368998, 'gave lot': 344634, 'of incense': 585057, 'incense for': 431358, 'for coin': 320146, 'coin but': 185627, 'we suppose': 973460, 'if pokeball': 414655, 'pokeball price': 662834, 'so high': 777305, 'inside pokemongo': 439360, 'pokemongo moreballsplease': 662840, 'it great you': 458343, 'great you guy': 363125, 'you guy gave': 1018961, 'guy gave lot': 368999, 'gave lot of': 344635, 'lot of incense': 504211, 'of incense for': 585058, 'incense for coin': 431359, 'for coin but': 320147, 'coin but how': 185628, 'but how are': 145967, 'are we suppose': 91594, 'we suppose to': 973461, 'suppose to keep': 827328, 'keep up if': 472172, 'up if pokeball': 945135, 'if pokeball price': 414656, 'pokeball price are': 662835, 'price are so': 672739, 'are so high': 90204, 'so high and': 777306, 'high and you': 394929, 'and you want': 76056, 'stay inside pokemongo': 797105, 'inside pokemongo moreballsplease': 439361, 'trendies': 931523, 'megachurch': 527825, 'supermarket mean': 821489, 'mean being': 524366, 'being vulnerable': 126041, 'to crowd': 903766, '50 to': 19888, 'to 200': 899585, 'people trendies': 650007, 'trendies going': 931524, 'to costco': 903603, 'costco and': 208193, 'and sam': 70807, 'club place': 184469, 'to multiply': 910350, 'multiply that': 545834, '19 megachurch': 8623, 'megachurch zombie': 527826, 'zombie shopping': 1027721, 're allowed': 698244, 'care if': 164013, 'the supermarket mean': 868699, 'supermarket mean being': 821490, 'mean being vulnerable': 524367, 'being vulnerable to': 126042, 'vulnerable to crowd': 961218, 'to crowd of': 903767, 'crowd of over': 219220, 'of over 50': 587617, 'over 50 to': 629859, '50 to 200': 19889, 'to 200 people': 899587, '200 people trendies': 13528, 'people trendies going': 650008, 'trendies going to': 931525, 'going to costco': 355561, 'to costco and': 903604, 'costco and sam': 208196, 'and sam club': 70808, 'sam club place': 732919, 'club place is': 184470, 'place is going': 657524, 'going to multiply': 355657, 'to multiply that': 910351, 'multiply that by': 545835, 'that by lot': 843076, 'by lot more': 153100, 'lot more this': 504118, 'more this is': 540737, 'this is covid': 888219, 'covid 19 megachurch': 213424, '19 megachurch zombie': 8624, 'megachurch zombie shopping': 527827, 'zombie shopping panic': 1027722, 'shopping panic they': 763591, 'they re allowed': 882991, 're allowed to': 698246, 'allowed to shop': 46247, 'to shop do': 914455, 'shop do not': 760100, 'not care if': 568696, 'care if you': 164017, 'if you die': 415421, 'refiner': 706580, 'osp': 619728, 'refiner call': 706583, 'slash osp': 773576, 'osp of': 619729, 'it amid': 456459, 'amid ample': 52384, 'ample supply': 54888, 'refiner call on': 706584, 'on to slash': 604761, 'to slash osp': 914720, 'slash osp of': 773577, 'osp of it': 619730, 'of it amid': 585363, 'it amid ample': 456460, 'amid ample supply': 52385, 'ample supply and': 54889, 'supply and lower': 824734, 'and lower demand': 66452, 'lower demand due': 505833, 'how dubai': 407763, 'dubai supermarket': 261488, 'distancing see': 247461, 'more picture': 540074, 'at how dubai': 99214, 'how dubai supermarket': 407764, 'dubai supermarket is': 261489, 'supermarket is dealing': 821081, 'dealing with social': 229691, 'social distancing see': 779710, 'distancing see more': 247462, 'see more picture': 745436, 'more picture here': 540075, 'castelvolturno': 166770, 'their turn': 875050, 'while protective': 987184, 'are taken': 90703, 'taken against': 832934, 'new in': 558916, 'in castelvolturno': 421290, 'castelvolturno italy': 166771, 'italy 2020': 462753, 'people wait for': 650105, 'wait for their': 964124, 'for their turn': 326878, 'their turn to': 875052, 'turn to enter': 935780, 'enter supermarket while': 278306, 'supermarket while protective': 823847, 'while protective measure': 987185, 'protective measure are': 685791, 'measure are taken': 525128, 'are taken against': 90704, 'taken against the': 832935, 'the new in': 861520, 'new in castelvolturno': 558917, 'in castelvolturno italy': 421291, 'castelvolturno italy 2020': 166772, 'nonconventional': 566538, 'hey all': 394312, 'wanna share': 965672, 'share my': 755104, 'my nonconventional': 549502, 'nonconventional experience': 566539, '19 22': 4731, '22 100': 15153, '100 vegan': 2111, 'vegan mostly': 953873, 'mostly alkaline': 542934, 'alkaline started': 41875, 'started showing': 794834, 'of sickness': 589713, 'sickness about': 768743, 'ago amp': 38327, 'amp today': 54719, 'today tested': 920251, 'idea where': 413242, 'where contracted': 984791, 'contracted it': 201744, 'guess grocery': 367978, 'hey all just': 394314, 'all just wanna': 43301, 'just wanna share': 470220, 'wanna share my': 965673, 'share my nonconventional': 755106, 'my nonconventional experience': 549503, 'nonconventional experience with': 566540, 'experience with covid': 291542, 'covid 19 22': 212557, '19 22 100': 4732, '22 100 vegan': 15154, '100 vegan mostly': 2112, 'vegan mostly alkaline': 953874, 'mostly alkaline started': 542935, 'alkaline started showing': 41876, 'started showing symptom': 794835, 'symptom of sickness': 830887, 'of sickness about': 589714, 'sickness about week': 768744, 'about week ago': 26867, 'week ago amp': 975835, 'ago amp today': 38328, 'amp today tested': 54720, 'today tested positive': 920252, '19 have no': 7450, 'no idea where': 564473, 'idea where contracted': 413243, 'where contracted it': 984792, 'contracted it my': 201745, 'it my guess': 459716, 'my guess grocery': 548589, 'guess grocery store': 367979, 'utahns': 951205, 'governor asked': 360871, 'asked am': 95715, 'am asking': 49904, 'asking utahns': 96102, 'utahns to': 951206, 'show their': 767225, 'their support': 874923, 'by wearing': 154709, 'wearing personal': 974757, 'personal protective': 652943, 'mask whenever': 519546, 'whenever they': 984680, 'enter retail': 278285, 'will you wear': 995401, 'mask in store': 518836, 'store the governor': 810602, 'the governor asked': 856637, 'governor asked am': 360872, 'asked am asking': 95716, 'am asking utahns': 49906, 'asking utahns to': 96103, 'utahns to show': 951207, 'to show their': 914578, 'show their support': 767229, 'their support by': 874924, 'support by wearing': 826402, 'by wearing personal': 154711, 'wearing personal protective': 974758, 'personal protective mask': 652945, 'protective mask whenever': 685787, 'mask whenever they': 519547, 'whenever they enter': 984681, 'they enter retail': 882049, 'enter retail store': 278286, 'emarketer impact': 272402, 'emarketer impact of': 272403, 'hyvee': 412505, 'obtaining': 578752, 'hyvee always': 412506, 'always thanks': 49768, 'thanks it': 842120, 'it shopper': 461023, 'shopping hyvee': 762939, 'hyvee sunday': 412512, 'sunday march': 818232, 'blue spring': 133469, 'spring missouri': 791224, 'missouri however': 534432, '19 develops': 6527, 'develops will': 239869, 'will shopper': 994848, 'shopper begin': 761428, 'delivery form': 234039, 'of obtaining': 587145, 'obtaining their': 578761, 'their every': 873183, 'day need': 228010, 'hyvee always thanks': 412507, 'always thanks it': 49769, 'thanks it shopper': 842121, 'it shopper for': 461024, 'shopper for shopping': 761517, 'for shopping hyvee': 325584, 'shopping hyvee sunday': 762940, 'hyvee sunday march': 412513, 'sunday march 15': 818233, '15 2020 in': 3649, '2020 in blue': 14389, 'in blue spring': 420884, 'blue spring missouri': 133470, 'spring missouri however': 791225, 'missouri however covid': 534433, 'covid 19 develops': 212946, '19 develops will': 6528, 'develops will shopper': 239870, 'will shopper begin': 994849, 'shopper begin to': 761429, 'advantage of online': 33018, 'of online and': 587250, 'online and delivery': 607810, 'and delivery form': 61116, 'delivery form of': 234040, 'form of obtaining': 329541, 'of obtaining their': 587146, 'obtaining their every': 578762, 'their every day': 873184, 'every day need': 285830, 'imperative': 418335, 'uprising': 947721, 'coordinator': 203228, '866': 22995, '446': 19046, '9055': 23413, 'following link': 312778, 'is information': 448918, 'is imperative': 448716, 'imperative with': 418342, 'the uprising': 870509, 'uprising of': 947722, 'fake covid': 296596, '19 medical': 8615, 'medical product': 526317, 'product new': 681436, 'yorkers can': 1016702, 'complaint coordinator': 191959, 'coordinator at': 203229, 'at 866': 97770, '866 446': 22998, '446 9055': 19047, '9055 toll': 23414, 'toll free': 923841, 'the following link': 855514, 'following link is': 312779, 'link is information': 493867, 'is information on': 448920, 'on how consumer': 601389, 'how consumer can': 407593, 'can report fraudulent': 159449, 'report fraudulent product': 711963, 'fraudulent product this': 331471, 'product this is': 681728, 'this is imperative': 888288, 'is imperative with': 448718, 'imperative with the': 418343, 'with the uprising': 1001533, 'the uprising of': 870510, 'uprising of fake': 947723, 'of fake covid': 583381, 'fake covid 19': 296597, 'covid 19 medical': 213422, '19 medical product': 8617, 'medical product new': 526321, 'product new yorkers': 681437, 'new yorkers can': 559965, 'yorkers can contact': 1016703, 'can contact the': 157970, 'contact the consumer': 200221, 'the consumer complaint': 851513, 'consumer complaint coordinator': 196850, 'complaint coordinator at': 191960, 'coordinator at 866': 203230, 'at 866 446': 97772, '866 446 9055': 22999, '446 9055 toll': 19048, '9055 toll free': 23415, 'tp in': 927850, 'can rather': 159372, 'rather try': 697573, 'those people buying': 892317, 'the tp in': 869842, 'tp in the': 927852, 'supermarket can rather': 819510, 'can rather try': 159373, 'rather try this': 697574, 'try this how': 934592, 'this how to': 887974, 'coronacrisis toiletpaperapocalypse toiletpaperpanic': 204839, 'aunt': 102994, 'even bothering': 283908, 'bothering with': 136151, 'when hear': 983557, 'law with': 482454, 'with dozen': 998130, 'dozen co': 257864, 'morbidity is': 538468, 'around shopping': 93477, 'like crazy': 490066, 'crazy and': 215242, 'my aunt': 547349, 'aunt who': 103010, 'who two': 989844, 'ago wa': 38530, 'hospital with': 404721, 'also off': 48593, 'starting to wonder': 795047, 'wonder why we': 1004047, 'we re even': 972866, 're even bothering': 698631, 'even bothering with': 283909, 'bothering with this': 136152, 'with this lockdown': 1001709, 'this lockdown when': 888696, 'lockdown when hear': 500129, 'when hear that': 983560, 'hear that my': 387992, 'that my mother': 845271, 'my mother in': 549333, 'mother in law': 543120, 'in law with': 424640, 'law with dozen': 482455, 'with dozen co': 998131, 'dozen co morbidity': 257865, 'co morbidity is': 184886, 'morbidity is running': 538469, 'running around shopping': 727916, 'around shopping like': 93478, 'shopping like crazy': 763163, 'like crazy and': 490067, 'crazy and my': 215245, 'and my aunt': 67352, 'my aunt who': 547356, 'aunt who two': 103011, 'who two day': 989845, 'two day ago': 936861, 'day ago wa': 227213, 'ago wa in': 38532, 'wa in hospital': 962370, 'in hospital with': 423824, 'hospital with covid': 404722, 'is also off': 445570, 'also off to': 48594, 'interviewing': 442295, 'been interviewing': 121403, 'interviewing owner': 442300, 'chain there': 171178, 'nation well': 552374, 'done grocery': 254862, 'interview is': 442217, 'short in': 764625, 'in calm': 421167, 'america ha been': 51541, 'ha been interviewing': 369837, 'been interviewing owner': 121404, 'interviewing owner of': 442301, 'owner of grocery': 632514, 'store chain there': 806937, 'chain there is': 171179, 'food for our': 314562, 'our nation well': 623987, 'nation well done': 552375, 'well done grocery': 978183, 'done grocery store': 254863, 'grocery store good': 365436, 'store good interview': 807951, 'good interview is': 357276, 'interview is not': 442218, 'is not running': 450177, 'not running short': 571411, 'running short in': 728062, 'short in calm': 764626, 'in calm down': 421168, 'calm down we': 156727, 'down we will': 257453, 'u6ptbqeqdr': 937724, 'our buying': 622298, 'buying team': 151137, 'team checked': 835609, 'checked toilet': 174778, 'paper stock': 640831, 'toiletpapercrisis http': 923030, 'co u6ptbqeqdr': 184990, 'short our buying': 764669, 'our buying team': 622299, 'buying team checked': 151138, 'team checked toilet': 835610, 'checked toilet paper': 174779, 'toilet paper stock': 921470, 'paper stock online': 640833, 'online and posted': 607844, 'and posted this': 69241, 'posted this list': 666581, 'found it for': 330261, 'it for sale': 458090, 'for sale panicbuying': 325323, 'panicbuying toiletpapercrisis http': 639098, 'toiletpapercrisis http co': 923031, 'http co u6ptbqeqdr': 409774, 'coronacrisis why': 204863, 'many good': 514098, 'scarce in': 740790, 'supermarket appearing': 819133, 'appearing in': 82167, 'at vastly': 101429, 'vastly inflated': 952719, 'how sick': 408682, 'some small': 783891, 'small shopkeeper': 775118, 'shopkeeper to': 761198, 'crisis way': 218336, 'of making': 586124, 'coronacrisis why are': 204864, 'why are so': 990786, 'so many good': 777663, 'many good that': 514101, 'good that are': 357818, 'that are scarce': 842811, 'are scarce in': 89841, 'scarce in the': 740792, 'the supermarket appearing': 868465, 'supermarket appearing in': 819134, 'appearing in corner': 82169, 'shop at vastly': 759963, 'at vastly inflated': 101430, 'vastly inflated price': 952720, 'inflated price how': 437046, 'price how sick': 674594, 'how sick of': 408683, 'sick of some': 768541, 'of some small': 589908, 'some small shopkeeper': 783893, 'small shopkeeper to': 775119, 'shopkeeper to use': 761200, 'to use this': 918075, 'use this crisis': 949723, 'this crisis way': 887107, 'crisis way of': 218337, 'way of making': 969762, 'of making money': 586125, 'in gasoline': 423225, 'sheltering in': 757974, 'causing ethanol': 168031, 'ethanol plant': 282996, 'shutdown at': 767999, 'at facility': 98609, 'facility across': 295290, 'decline in gasoline': 231356, 'in gasoline price': 423226, 'gasoline price and': 344252, 'price and people': 672494, 'and people sheltering': 68877, 'people sheltering in': 649417, 'sheltering in place': 757975, 'in place are': 426722, 'place are causing': 657335, 'are causing ethanol': 85204, 'causing ethanol plant': 168032, 'ethanol plant to': 282998, 'plant to shutdown': 658720, 'to shutdown at': 914618, 'shutdown at facility': 768000, 'at facility across': 98610, 'facility across the': 295292, 'blogalert': 133051, 'price blogalert': 672935, 'oil price blogalert': 597062, 'wildfire': 992119, 'definite': 232299, 'catastrophe in': 166935, 'past such': 643610, 'such hurricane': 816561, 'and wildfire': 75652, 'wildfire have': 992120, 'had definite': 373019, 'definite impact': 232302, 'insurance price': 440796, 'price story': 676680, 'to insurance': 908435, 'catastrophe in the': 166936, 'the past such': 863363, 'past such hurricane': 643611, 'such hurricane and': 816562, 'hurricane and wildfire': 411471, 'and wildfire have': 75653, 'wildfire have had': 992121, 'have had definite': 380861, 'had definite impact': 373020, 'definite impact on': 232303, 'impact on insurance': 417861, 'on insurance price': 601595, 'insurance price story': 440798, 'price story take': 676681, 'at what could': 101522, 'what could do': 981266, 'could do to': 209104, 'do to insurance': 250390, 'to insurance price': 908436, 'current topic': 221403, 'topic of': 925807, 'of event': 583228, 'event covid': 284967, '19 tiger': 11395, 'tiger king': 895801, 'king gas': 475263, 'price non': 675355, 'essential essential': 281008, 'essential learning': 281273, 'learning social': 484233, 'distancing bernie': 247041, 'current topic of': 221404, 'topic of event': 925808, 'of event covid': 583230, 'event covid 19': 284968, 'covid 19 tiger': 213955, '19 tiger king': 11396, 'tiger king gas': 895802, 'king gas price': 475264, 'gas price non': 344002, 'price non essential': 675356, 'non essential essential': 566338, 'essential essential learning': 281010, 'essential learning social': 281274, 'learning social distancing': 484234, 'social distancing bernie': 779569, 'distancing bernie sander': 247042, 'trucker attempt': 932906, 'growing challenge': 367134, 'on highway': 601305, 'at loading': 99595, 'dock they': 250787, 'they seek': 883297, 'keep supplychains': 471997, 'supplychains running': 826265, 'surging driven': 828422, 'driven demand': 259304, 'consumer staple': 199113, 'staple and': 793896, 'equipment learn': 279774, 'trucker attempt to': 932907, 'attempt to navigate': 102252, 'navigate growing challenge': 553067, 'growing challenge on': 367135, 'challenge on highway': 171523, 'on highway and': 601306, 'highway and at': 396146, 'and at loading': 58479, 'at loading dock': 99596, 'loading dock they': 497336, 'dock they seek': 250788, 'they seek to': 883298, 'seek to keep': 746612, 'to keep supplychains': 908860, 'keep supplychains running': 471998, 'supplychains running to': 826266, 'running to meet': 728116, 'meet surging driven': 527587, 'surging driven demand': 828423, 'driven demand for': 259305, 'demand for consumer': 235395, 'for consumer staple': 320292, 'consumer staple and': 199115, 'staple and medical': 793901, 'medical equipment learn': 526156, 'equipment learn more': 279775, 'russia leading': 728508, 'leading oil': 483719, 'arabia agreed': 83851, 'in price due': 426962, 'price war with': 677384, 'war with russia': 966603, 'with russia leading': 1000532, 'russia leading oil': 728509, 'leading oil producing': 483721, 'producing country saudi': 680755, 'saudi arabia agreed': 737183, 'arabia agreed to': 83852, 'agreed to reduce': 38745, 'to reduce oil': 913029, 'reduce oil production': 705876, 'torros': 926038, 'seen this': 747313, 'this consolidation': 886839, 'consolidation occur': 195553, 'occur on': 579025, 'the vendor': 870681, 'vendor side': 954406, 'the consolidation': 851471, 'consolidation wa': 195557, 'wa slowly': 963240, 'slowly occurring': 774613, 'occurring even': 579063, 'do torros': 250420, 'torros by': 926039, 'by chop': 152120, 'chop and': 177950, 'consumer taste': 199222, 'taste now': 834785, 'now trend': 576225, 'towards chain': 927172, 'chain food': 170704, 'you ve already': 1022023, 'already seen this': 47641, 'seen this consolidation': 747316, 'this consolidation occur': 886840, 'consolidation occur on': 195554, 'occur on the': 579026, 'on the vendor': 604428, 'the vendor side': 870683, 'vendor side but': 954407, 'side but the': 768785, 'but the consolidation': 147322, 'the consolidation wa': 851472, 'consolidation wa slowly': 195558, 'wa slowly occurring': 963241, 'slowly occurring even': 774614, 'occurring even before': 579064, '19 the purchase': 11237, 'purchase of do': 689578, 'of do torros': 582747, 'do torros by': 250421, 'torros by chop': 926040, 'by chop and': 152121, 'chop and consumer': 177951, 'and consumer taste': 60434, 'consumer taste now': 199224, 'taste now trend': 834786, 'now trend towards': 576226, 'trend towards chain': 931484, 'towards chain food': 927173, 'chain food this': 170706, 'queued to': 694159, 'shop man': 760442, 'man walked': 512299, 'walked out': 964963, 'out carrying': 625836, 'carrying some': 165213, 'some strawberry': 783968, 'strawberry and': 812765, 'some cream': 782633, 'cream seriously': 215577, 'seriously he': 751622, 'countless health': 210375, 'worker over': 1007528, 'having freaking': 384075, 'freaking pudding': 331553, 'pudding lockdown': 688804, 'lockdown socialdistancing': 499932, 'queued to go': 694161, 'get our weekly': 347731, 'our weekly shop': 625368, 'weekly shop man': 977550, 'shop man walked': 760443, 'man walked out': 512300, 'walked out carrying': 964964, 'out carrying some': 625837, 'carrying some strawberry': 165214, 'some strawberry and': 783969, 'strawberry and some': 812766, 'and some cream': 71956, 'some cream seriously': 782634, 'cream seriously he': 215578, 'seriously he put': 751623, 'he put the': 385317, 'put the life': 690862, 'life of the': 488927, 'the people working': 863523, 'people working there': 650521, 'working there and': 1008948, 'there and countless': 877998, 'and countless health': 60638, 'countless health care': 210376, 'care worker over': 164297, 'worker over having': 1007530, 'over having freaking': 630275, 'having freaking pudding': 384076, 'freaking pudding lockdown': 331554, 'pudding lockdown socialdistancing': 688805, 'naira': 551480, '145': 3579, 'nigeria govt': 562748, 'plummet liter': 661288, 'liter will': 494935, 'will cost': 993041, 'cost 125': 207818, '125 naira': 3072, 'naira 34': 551481, '34 29': 17797, '29 down': 16474, 'from 145': 334194, '145 naira': 3582, 'nigeria govt to': 562749, 'govt to cut': 361310, 'oil price global': 597147, 'price global crude': 674194, 'global crude oil': 351845, 'price plummet liter': 675906, 'plummet liter will': 661289, 'liter will cost': 494936, 'will cost 125': 993043, 'cost 125 naira': 207819, '125 naira 34': 3073, 'naira 34 29': 551482, '34 29 down': 17798, '29 down from': 16475, 'down from 145': 256786, 'from 145 naira': 334195, 'russia putin': 728546, 'putin proposed': 691040, 'proposed stripping': 684547, 'stripping pharmacy': 813910, 'pharmacy licence': 654370, 'licence for': 488107, 'raising mask': 696094, 'coronacrisis chinesewuhanvirus': 204547, 'chinesewuhanvirus stayhome': 177485, 'russia putin proposed': 728547, 'putin proposed stripping': 691041, 'proposed stripping pharmacy': 684548, 'stripping pharmacy licence': 813911, 'pharmacy licence for': 654371, 'licence for raising': 488108, 'for raising mask': 324950, 'raising mask price': 696095, 'mask price coronacrisis': 519142, 'price coronacrisis chinesewuhanvirus': 673250, 'coronacrisis chinesewuhanvirus stayhome': 204549, 'backing': 107556, 'shelf visited': 757735, 'visited supermarket': 959499, 'not scrap': 571460, 'scrap of': 742586, 'meat pasta': 525686, 'pasta rice': 643793, 'rice potato': 721109, 'potato and': 666899, 'veg only': 953771, 'thing plentiful': 884693, 'plentiful wa': 660902, 'wa crap': 961889, 'crap when': 214918, 'stop kicking': 804803, 'kicking uk': 473831, 'uk farmer': 938349, 'start backing': 794216, 'day of panic': 228088, 'panic and another': 637293, 'and another day': 58162, 'supermarket shelf visited': 822559, 'shelf visited supermarket': 757736, 'visited supermarket not': 959501, 'supermarket not scrap': 821648, 'not scrap of': 571461, 'scrap of fresh': 742587, 'of fresh meat': 583946, 'fresh meat pasta': 333031, 'meat pasta rice': 525687, 'pasta rice potato': 643797, 'rice potato and': 721110, 'potato and veg': 666902, 'and veg only': 74864, 'veg only thing': 953772, 'only thing plentiful': 611312, 'thing plentiful wa': 884694, 'plentiful wa crap': 660903, 'wa crap when': 961890, 'crap when are': 214919, 'when are people': 983168, 'are people going': 89032, 'to stop kicking': 915543, 'stop kicking uk': 804804, 'kicking uk farmer': 473832, 'uk farmer and': 938351, 'farmer and start': 299265, 'and start backing': 72237, 'pippa': 656922, 'hi everyone': 394635, 'everyone hope': 287020, 'all having': 43067, 'having great': 384095, 'great sunday': 363019, 'sunday all': 818163, 'the mum': 861139, 'mum are': 545875, 'getting some': 349294, 'some special': 783913, 'special treat': 788086, 'treat queued': 930876, 'hour this': 405997, 'provision at': 687252, 'supermarket meanwhile': 821491, 'meanwhile our': 525018, 'our beautiful': 622170, 'beautiful pippa': 118708, 'pippa wa': 656925, 'on self': 603359, 'isolation she': 455423, 'she think': 756381, 'it right': 460775, 'doesn like': 251870, 'hi everyone hope': 394637, 'everyone hope you': 287023, 'are all having': 84313, 'all having great': 43068, 'having great sunday': 384096, 'great sunday all': 363020, 'sunday all the': 818164, 'all the mum': 44833, 'the mum are': 861140, 'mum are getting': 545876, 'are getting some': 86825, 'getting some special': 349297, 'some special treat': 783915, 'special treat queued': 788087, 'treat queued for': 930877, 'queued for hour': 694153, 'for hour this': 322402, 'hour this morning': 405999, 'this morning to': 889033, 'morning to get': 541513, 'get some provision': 348071, 'some provision at': 783669, 'provision at the': 687253, 'the supermarket meanwhile': 868700, 'supermarket meanwhile our': 821493, 'meanwhile our beautiful': 525019, 'our beautiful pippa': 622173, 'beautiful pippa wa': 118709, 'pippa wa working': 656926, 'wa working on': 963733, 'working on self': 1008817, 'on self isolation': 603360, 'self isolation she': 747797, 'isolation she think': 455424, 'she think it': 756382, 'think it right': 885350, 'it right but': 460777, 'right but doesn': 721828, 'but doesn like': 145577, 'doesn like it': 251871, 'pleasure': 660822, 'here advice': 392660, 'for pleasure': 324585, 'pleasure but': 660823, 'but carry': 145394, 'office panic': 595509, 'food somebody': 316691, 'somebody making': 784272, 'you think of': 1021671, 'the massive panic': 860270, 'massive panic over': 520064, 'over the here': 630729, 'the here advice': 857286, 'here advice to': 392661, 'advice to stop': 33538, 'going out for': 355372, 'out for pleasure': 626152, 'for pleasure but': 324586, 'pleasure but carry': 660824, 'but carry on': 145395, 'on working in': 605376, 'the office panic': 862078, 'office panic buying': 595510, 'buying for food': 150353, 'for food somebody': 321633, 'food somebody making': 316692, 'somebody making money': 784273, 'making money from': 511225, 'money from this': 536773, 'tofu': 920644, 'being vegan': 126025, 'vegan during': 953855, 'of tofu': 592243, 'tofu in': 920648, 'that tofu': 847072, 'tofu is': 920650, 'terrible substitute': 838438, 'substitute for': 816085, 'best thing about': 127926, 'thing about being': 884083, 'about being vegan': 24872, 'being vegan during': 126026, 'vegan during the': 953856, 'outbreak is that': 628384, 'is that there': 452696, 'shortage of tofu': 765140, 'of tofu in': 592245, 'tofu in the': 920649, 'supermarket the worst': 823259, 'worst thing is': 1011283, 'is that tofu': 452700, 'that tofu is': 847073, 'tofu is terrible': 920652, 'is terrible substitute': 452609, 'terrible substitute for': 838439, 'substitute for toilet': 816087, 'servsafe': 753250, 'experien': 291300, 'upcoming servsafe': 946809, 'servsafe class': 753251, 'class offered': 180226, 'worker through': 1007984, 'through county': 894392, 'county family': 211379, 'consumer science': 198873, 'science agent': 742077, 'agent have': 38171, 'been postponed': 121682, 'coronavirus situation': 206774, 'situation since': 772484, 'since servsafe': 770820, 'servsafe training': 753253, 'training is': 929344, 'on learning': 601812, 'learning experien': 484203, 'upcoming servsafe class': 946810, 'servsafe class offered': 753252, 'class offered to': 180227, 'offered to food': 594977, 'to food service': 906095, 'service worker through': 753111, 'worker through county': 1007985, 'through county family': 894393, 'county family and': 211380, 'family and consumer': 297583, 'and consumer science': 60426, 'consumer science agent': 198874, 'science agent have': 742078, 'agent have been': 38172, 'have been postponed': 379637, 'been postponed for': 121683, 'postponed for the': 666812, 'eight week due': 270205, '19 coronavirus situation': 6127, 'coronavirus situation since': 206775, 'situation since servsafe': 772486, 'since servsafe training': 770821, 'servsafe training is': 753254, 'training is hand': 929346, 'is hand on': 448262, 'hand on learning': 375136, 'on learning experien': 601813, 'agewell': 38204, 'food increase': 314996, 'increase during': 432750, 'crisis agewell': 216985, 'agewell service': 38205, 'west michigan': 980519, 'michigan launch': 530353, 'launch curbside': 481884, 'curbside meal': 220630, 'meal pick': 524240, 'for food increase': 321596, 'food increase during': 314997, 'increase during covid': 432752, '19 crisis agewell': 6209, 'crisis agewell service': 216986, 'agewell service of': 38207, 'service of west': 752636, 'of west michigan': 593034, 'west michigan launch': 980521, 'michigan launch curbside': 530354, 'launch curbside meal': 481885, 'curbside meal pick': 220632, 'meal pick ups': 524241, 'cspi': 220054, 'good cspi': 356929, 'cspi release': 220055, 'release consumer': 708929, 'guide to': 368357, 'restaurant sick': 716703, 'policy during': 663386, 'not good cspi': 569719, 'good cspi release': 356930, 'cspi release consumer': 220056, 'release consumer guide': 708930, 'consumer guide to': 197672, 'guide to restaurant': 368368, 'to restaurant sick': 913393, 'restaurant sick leave': 716704, 'leave policy during': 484905, 'policy during covid': 663387, 'cookie': 202830, '570': 20491, 'research from': 713729, 'spending spike': 788990, 'stockpiling amid': 803903, 'pandemic frozen': 635478, 'pizza purchase': 657196, 'up 117': 944114, '117 and': 2680, 'and frozen': 63361, 'frozen cookie': 338963, 'cookie dough': 202833, 'dough sale': 256272, 'risen 570': 723087, 'new research from': 559462, 'research from and': 713731, 'from and show': 334523, 'and show consumer': 71608, 'show consumer spending': 766901, 'consumer spending spike': 199093, 'spending spike due': 788991, 'to stockpiling amid': 915487, 'stockpiling amid the': 803905, '19 pandemic frozen': 9334, 'pandemic frozen pizza': 635479, 'frozen pizza purchase': 339007, 'pizza purchase are': 657197, 'purchase are up': 689358, 'are up 117': 91350, 'up 117 and': 944115, '117 and frozen': 2681, 'and frozen cookie': 63362, 'frozen cookie dough': 338964, 'cookie dough sale': 202834, 'dough sale have': 256273, 'sale have risen': 732270, 'have risen 570': 382331, 'total global': 926170, 'cut could': 223284, 'could come': 209030, 'day around': 227321, '20 of': 13199, 'supply kuwait': 825485, 'kuwait oil': 477992, 'minister said': 533450, 'total global oil': 926171, 'supply cut could': 825134, 'cut could come': 223285, 'could come to': 209035, 'come to 20': 187552, 'to 20 million': 899576, '20 million barrel': 13161, 'per day around': 650795, 'day around 20': 227322, 'around 20 of': 93125, '20 of global': 13200, 'global supply kuwait': 352236, 'supply kuwait oil': 825486, 'kuwait oil minister': 477993, 'oil minister said': 596957, 'much toiletpaper': 545398, 'pretty much toiletpaper': 671465, 'much toiletpaper toiletpaperapocalypse': 545403, 'till rationing': 896081, 'rationing get': 697816, 'get introduced': 347379, 'are can': 85152, 'clearly profiting': 181545, 'long till rationing': 501760, 'till rationing get': 896082, 'rationing get introduced': 697817, 'get introduced the': 347380, 'introduced the state': 443460, 'the shop there': 867032, 'shop there are': 760916, 'there are can': 878075, 'are can only': 85153, 'only go on': 610519, 'go on so': 353893, 'on so long': 603523, 'are clearly profiting': 85319, 'clearly profiting from': 181546, 'profiting from buying': 683118, 'selling it on': 749315, 'on at inflated': 599498, 'rool': 725866, 'toilet rool': 921621, 'rool crime': 725867, 'crime quarantinelife': 216799, 'quarantinelife ireland': 692962, 'ireland china': 444817, 'china europe': 176645, 'europe aljazeera': 283390, 'aljazeera wuhanvirus': 41871, 'wuhanvirus africa': 1013564, 'africa kenya': 35098, 'kenya lockdown': 472925, 'lockdown cnn': 499246, 'cnn bbcnews': 184747, 'bbcnews uk': 113139, 'uk skynews': 938718, 'skynews staysafe': 773252, 'staysafe socialdistancing': 798880, 'socialdistancing toiletpaper': 780822, 'toilet rool crime': 921622, 'rool crime quarantinelife': 725868, 'crime quarantinelife ireland': 216800, 'quarantinelife ireland china': 692963, 'ireland china europe': 444818, 'china europe aljazeera': 176646, 'europe aljazeera wuhanvirus': 283391, 'aljazeera wuhanvirus africa': 41872, 'wuhanvirus africa kenya': 1013565, 'africa kenya lockdown': 35100, 'kenya lockdown cnn': 472926, 'lockdown cnn bbcnews': 499247, 'cnn bbcnews uk': 184748, 'bbcnews uk skynews': 113140, 'uk skynews staysafe': 938719, 'skynews staysafe socialdistancing': 773253, 'staysafe socialdistancing toiletpaper': 798885, 'kenneth': 472785, 'copeland': 203363, 'yes evangelicals': 1015425, 'evangelicals kenneth': 283747, 'kenneth still': 472788, 'want your': 966184, 'so borrow': 776638, 'borrow it': 135602, 'it put': 460564, 'card or': 163602, 'get loan': 347493, 'loan televangelist': 497538, 'televangelist kenneth': 836845, 'kenneth copeland': 472786, 'copeland tell': 203364, 'tell viewer': 837124, 'viewer that': 957193, 'they lose': 882630, 'job co': 465745, 'co of': 184896, 'must continue': 546606, 'continue giving': 201042, 'giving to': 351436, 'yes evangelicals kenneth': 1015426, 'evangelicals kenneth still': 283748, 'kenneth still want': 472789, 'still want your': 801388, 'want your money': 966187, 'your money so': 1024871, 'money so borrow': 537022, 'so borrow it': 776639, 'borrow it put': 135603, 'it put it': 460567, 'put it on': 690648, 'it on credit': 460036, 'on credit card': 600160, 'credit card or': 216345, 'card or get': 163604, 'or get loan': 615430, 'get loan televangelist': 347495, 'loan televangelist kenneth': 497539, 'televangelist kenneth copeland': 836846, 'kenneth copeland tell': 472787, 'copeland tell viewer': 203365, 'tell viewer that': 837125, 'viewer that even': 957194, 'even if they': 284220, 'if they lose': 415117, 'they lose their': 882631, 'their job co': 873708, 'job co of': 465746, 'co of the': 184902, 'coronavirus outbreak they': 206415, 'outbreak they must': 628739, 'they must continue': 882702, 'must continue giving': 546607, 'continue giving to': 201043, 'giving to the': 351437, 'to the church': 916559, 'walmartonline': 965486, 'shoponline': 761266, 'storepickup': 811748, 'outofstock': 629200, 'onlinesafetyathome': 609864, 'hey why': 394546, 'is everything': 447591, 'sold online': 781718, 'online now': 608588, 'guy have': 369017, 'it backwards': 456680, 'backwards walmart': 107618, 'walmart walmartonline': 965460, 'walmartonline shoponline': 965487, 'shoponline toiletpaper': 761281, 'toiletpaper storepickup': 922554, 'storepickup shopfromhome': 811749, 'shopfromhome workfromhome': 761149, 'workfromhome outofstock': 1008422, 'outofstock onlinesafetyathome': 629201, 'hey why is': 394549, 'why is everything': 991102, 'is everything that': 447596, 'everything that use': 288032, 'that use to': 847214, 'use to be': 949752, 'to be sold': 901553, 'be sold online': 117286, 'sold online now': 781720, 'online now in': 608592, 'now in store': 575014, 'in store only': 428436, 'store only think': 809247, 'only think you': 611329, 'think you guy': 885811, 'you guy have': 1018964, 'guy have it': 369018, 'have it backwards': 381143, 'it backwards walmart': 456681, 'backwards walmart walmartonline': 107619, 'walmart walmartonline shoponline': 965461, 'walmartonline shoponline toiletpaper': 965488, 'shoponline toiletpaper storepickup': 761282, 'toiletpaper storepickup shopfromhome': 922555, 'storepickup shopfromhome workfromhome': 811750, 'shopfromhome workfromhome outofstock': 761150, 'workfromhome outofstock onlinesafetyathome': 1008423, 'you rush': 1020964, 'amp drive': 53678, 'commodity please': 189252, 'it week': 462293, 'week since': 976873, 'since bar': 770516, 'bar tender': 110774, 'tender sport': 837910, 'sport music': 789952, 'music event': 546301, 'event steward': 285075, 'steward betting': 799994, 'betting shop': 128642, 'staff school': 792832, 'school van': 741966, 'etc suddenly': 282772, 'suddenly became': 817070, 'became unemployed': 118894, 'unemployed they': 941142, 'too need': 924961, '19 you rush': 12277, 'you rush to': 1020966, 'rush to stock': 728349, 'stock food amp': 802122, 'food amp drive': 313131, 'amp drive up': 53679, 'of other essential': 587362, 'other essential commodity': 620155, 'essential commodity please': 280928, 'commodity please remember': 189253, 'please remember it': 660369, 'remember it week': 710219, 'it week since': 462295, 'week since bar': 976875, 'since bar tender': 770517, 'bar tender sport': 110776, 'tender sport music': 837911, 'sport music event': 789953, 'music event steward': 546302, 'event steward betting': 285076, 'steward betting shop': 799995, 'betting shop staff': 128643, 'shop staff school': 760829, 'staff school van': 792833, 'school van driver': 741967, 'van driver etc': 952298, 'driver etc suddenly': 259534, 'etc suddenly became': 282773, 'suddenly became unemployed': 817071, 'became unemployed they': 118895, 'unemployed they too': 941143, 'they too need': 883576, 'too need food': 924962, 'need food for': 554796, 'for their family': 326826, 'empty highway': 274911, 'highway low': 396156, 'it besafe': 456848, 'empty highway low': 274912, 'highway low gas': 396157, 'gas price no': 344001, 'price no line': 675345, 'no line at': 564606, 'line at store': 492990, 'at store could': 100652, 'store could get': 807197, 'could get used': 209209, 'used to it': 950064, 'to it besafe': 908568, 'enabling': 275470, 'shameonsherwin': 754736, 'defy shelter': 232503, 'order across': 618003, 'country enabling': 210613, 'enabling community': 275473, 'country shameonsherwin': 211042, 'and their retail': 73714, 'forced to defy': 328627, 'to defy shelter': 904076, 'defy shelter in': 232504, 'place order across': 657632, 'order across the': 618004, 'the country enabling': 852071, 'country enabling community': 210614, 'enabling community spread': 275474, 'the country shameonsherwin': 852152, 'falling saudi': 297333, 'russia postpone': 728540, 'postpone meeting': 666767, 'meeting to': 527778, 'discus production': 244901, 'global oversupply': 352065, 'oversupply in': 631595, 'of falling': 583389, 'price are falling': 672665, 'are falling saudi': 86471, 'falling saudi arabia': 297334, 'and russia postpone': 70678, 'russia postpone meeting': 728541, 'postpone meeting to': 666768, 'meeting to discus': 527780, 'to discus production': 904382, 'discus production cut': 244902, 'production cut to': 682002, 'cut to curb': 223596, 'to curb global': 903800, 'curb global oversupply': 220558, 'global oversupply in': 352066, 'oversupply in the': 631597, 'face of falling': 294653, 'of falling demand': 583390, 'falling demand due': 297234, 'refund wa': 706984, 'approved month': 83176, 'ago so': 38465, 'company blaming': 190496, 'blaming coronavirus': 132326, 'in processing': 427009, 'processing refund': 680038, 'this consumer refund': 886844, 'consumer refund wa': 198665, 'refund wa approved': 706985, 'wa approved month': 961567, 'approved month ago': 83177, 'month ago so': 537541, 'ago so why': 38467, 'is the company': 452753, 'the company blaming': 851315, 'company blaming coronavirus': 190497, 'blaming coronavirus for': 132327, 'coronavirus for the': 205944, 'for the delay': 326375, 'the delay in': 853047, 'delay in processing': 232708, 'in processing refund': 427011, 'fine line': 307657, 'between precaution': 128864, 'there is fine': 878559, 'is fine line': 447815, 'fine line between': 307658, 'line between precaution': 493013, 'between precaution and': 128865, 'precaution and panic': 669276, '2015': 13806, 'while will': 987564, 'cause commodity': 167523, 'fall mining': 296987, 'mining company': 533268, 'resilient since': 714535, 'last crash': 480170, 'in 2015': 419771, '2015 16': 13807, 'said that while': 731421, 'that while will': 847519, 'while will cause': 987565, 'will cause commodity': 992887, 'cause commodity price': 167524, 'commodity price to': 189292, 'to fall mining': 905636, 'fall mining company': 296988, 'mining company have': 533272, 'company have become': 190730, 'become more resilient': 120062, 'more resilient since': 540235, 'resilient since the': 714536, 'since the last': 770892, 'the last crash': 859006, 'last crash in': 480171, 'crash in 2015': 214988, 'in 2015 16': 419772, 'worker catch': 1006615, '19 who': 12060, 'they sue': 883497, 'sue they': 817171, 'being thrown': 125956, 'thrown to': 895152, 'the wolf': 871656, 'when supermarket worker': 984098, 'supermarket worker catch': 824002, 'worker catch covid': 1006616, 'covid 19 who': 214072, '19 who do': 12061, 'who do they': 988622, 'do they sue': 250319, 'they sue they': 883498, 'sue they are': 817172, 'are being thrown': 84936, 'being thrown to': 125958, 'thrown to the': 895153, 'to the wolf': 917195, 'buildingautomation': 142163, 'skillset': 773022, 'niagara4': 562317, 'easyio': 265827, 'homeschool isn': 402922, 'kid grow': 473972, 'your buildingautomation': 1023034, 'buildingautomation system': 142164, 'system skillset': 831315, 'skillset while': 773023, 'price niagara4': 675334, 'niagara4 hvac': 562318, 'hvac easyio': 411867, 'easyio discounted': 265828, 'discounted pricing': 244607, 'pricing is': 677942, 'homeschool isn just': 402923, 'isn just for': 454578, 'just for kid': 468750, 'for kid grow': 322842, 'kid grow your': 473973, 'grow your buildingautomation': 367088, 'your buildingautomation system': 1023035, 'buildingautomation system skillset': 142165, 'system skillset while': 831316, 'skillset while social': 773024, 'distancing at reduced': 247021, 'reduced price niagara4': 706152, 'price niagara4 hvac': 675335, 'niagara4 hvac easyio': 562319, 'hvac easyio discounted': 411868, 'easyio discounted pricing': 265829, 'discounted pricing is': 244608, 'pricing is available': 677943, 'is available during': 445915, 'available during the': 104334, 'pandemic to help': 636780, 'help support our': 390615, 'our customer learn': 622668, 'pandemiclife': 637122, 'today weird': 920492, 'time man': 897185, 'man pandemiclife': 512181, 'pandemiclife socialdistancing': 637123, 'socialdistancing newnormal': 780552, 'newnormal shopping': 560146, 'shopping hannaford': 762862, 'the line waiting': 859424, 'get in the': 347311, 'store today weird': 810879, 'today weird time': 920493, 'weird time man': 977805, 'time man pandemiclife': 897186, 'man pandemiclife socialdistancing': 512182, 'pandemiclife socialdistancing newnormal': 637124, 'socialdistancing newnormal shopping': 780554, 'newnormal shopping hannaford': 560147, 'shopping hannaford supermarket': 762863, 'crook': 218864, 'president ha': 670823, 'warned crook': 967001, 'crook who': 218880, 'sanitizers saying': 736387, 'will cancel': 992874, 'cancel their': 160891, 'licence have': 488109, 'have sent': 382466, 'sent spy': 750809, 'spy in': 791401, 'if find': 414115, 'find anybody': 306804, 'anybody hiking': 80091, 'hiking the': 396415, 'their license': 873813, 'president ha warned': 670826, 'ha warned crook': 372453, 'warned crook who': 967002, 'crook who are': 218881, 'food and sanitizers': 313328, 'and sanitizers saying': 70904, 'sanitizers saying he': 736388, 'saying he will': 739603, 'he will cancel': 385665, 'will cancel their': 992877, 'cancel their licence': 160893, 'their licence have': 873811, 'licence have sent': 488110, 'have sent spy': 382469, 'sent spy in': 750810, 'spy in the': 791402, 'market if find': 516538, 'if find anybody': 414116, 'find anybody hiking': 306805, 'anybody hiking the': 80092, 'hiking the price': 396417, 'food will cancel': 317618, 'cancel their license': 160894, 'brentoil': 139363, 'tradingstrategy': 928976, 'this commodity': 886812, 'commodity or': 189246, 'other commodity': 619964, 'commodity on': 189240, 'indian stock': 434884, 'exchange stockmarket': 289481, 'stockmarket crude': 803652, 'crude brentoil': 219511, 'brentoil market': 139369, 'market stock': 517122, 'stock tradingstrategy': 803029, 'tradingstrategy commodity': 928977, 'commodity oilpricewar': 189238, 'question on is': 693676, 'on is there': 601638, 'there any way': 878028, 'any way to': 80039, 'way to buy': 969993, 'to buy and': 902177, 'buy and sell': 148332, 'and sell this': 71220, 'sell this commodity': 748915, 'this commodity or': 886814, 'commodity or other': 189247, 'or other commodity': 616427, 'other commodity on': 619965, 'commodity on the': 189241, 'on the indian': 604179, 'the indian stock': 858126, 'indian stock exchange': 434885, 'stock exchange stockmarket': 802106, 'exchange stockmarket crude': 289482, 'stockmarket crude brentoil': 803653, 'crude brentoil market': 219512, 'brentoil market stock': 139370, 'market stock tradingstrategy': 517124, 'stock tradingstrategy commodity': 803030, 'tradingstrategy commodity oilpricewar': 928978, 'commodity oilpricewar oilprice': 189239, 'oilpricewar oilprice oil': 597713, 'something which': 785141, 'which deeply': 985800, 'deeply concerned': 231985, 'about india': 25524, 'india actually': 434277, 'actually ha': 30820, 'feed it': 302325, 'hunger is something': 411139, 'is something which': 452116, 'something which deeply': 785142, 'which deeply concerned': 985801, 'deeply concerned about': 231986, 'concerned about india': 193162, 'about india actually': 25525, 'india actually ha': 434278, 'actually ha enough': 30821, 'to feed it': 905724, 'feed it entire': 302326, 'rideau': 721473, 'cottage': 208395, 'know ll': 476574, 'll regret': 496970, 'regret it': 707701, 'the easy': 853857, 'easy way': 265797, 'out kim': 626475, 'kim said': 474765, 'said want': 731559, 'myself looking': 550904, 'back meanwhile': 107143, 'meanwhile at': 524951, 'at rideau': 100313, 'rideau cottage': 721474, 'cottage trudeau': 208398, 'trudeau self': 933021, 'isolation enters': 455263, 'enters day': 278479, 'day 24': 227127, 'know ll regret': 476576, 'll regret it': 496971, 'regret it if': 707702, 'it if take': 458676, 'if take the': 414914, 'take the easy': 832644, 'the easy way': 853858, 'easy way out': 265799, 'way out kim': 969794, 'out kim said': 626476, 'kim said want': 474766, 'said want to': 731560, 'to be proud': 901466, 'proud of myself': 686036, 'of myself looking': 586838, 'myself looking back': 550905, 'looking back meanwhile': 502835, 'back meanwhile at': 107144, 'meanwhile at rideau': 524953, 'at rideau cottage': 100314, 'rideau cottage trudeau': 721475, 'cottage trudeau self': 208399, 'trudeau self isolation': 933022, 'self isolation enters': 747768, 'isolation enters day': 455264, 'enters day 24': 278480, '10ft': 2320, 'an sneeze': 56801, 'sneeze droplet': 776236, 'droplet with': 260493, 'travel 10ft': 930229, '10ft almost': 2321, 'almost supermarket': 46742, 'when an sneeze': 983149, 'an sneeze droplet': 56802, 'sneeze droplet with': 776238, 'droplet with travel': 260494, 'with travel 10ft': 1001839, 'travel 10ft almost': 930230, '10ft almost supermarket': 2322, 'almost supermarket aisle': 46743, 'atk': 101811, '526': 20270, '3648': 18045, 'concern atk': 192931, 'atk consumer': 101812, 'staff activity': 792079, 'online only': 608625, 'at specialist': 100605, 'at need': 99867, 'via email': 955950, 'email phone': 272272, 'phone skype': 655017, 'skype zoom': 773272, 'zoom or': 1027816, 'or variety': 617642, 'online option': 608642, 'option call': 614006, '800 526': 22672, '526 3648': 20271, '3648 or': 18046, '19 concern atk': 5915, 'concern atk consumer': 192932, 'atk consumer service': 101813, 'consumer service and': 198939, 'service and staff': 752110, 'and staff activity': 72189, 'staff activity will': 792080, 'activity will be': 30537, 'will be online': 992589, 'be online only': 116231, 'online only at': 608626, 'only at specialist': 610128, 'at specialist are': 100606, 'available to talk': 104660, 'talk with you': 833926, 'with you about': 1002141, 'you about your': 1016776, 'about your at': 26989, 'your at need': 1022868, 'at need via': 99869, 'need via email': 556159, 'via email phone': 955952, 'email phone skype': 272273, 'phone skype zoom': 655018, 'skype zoom or': 773273, 'zoom or variety': 1027817, 'or variety of': 617643, 'variety of other': 952568, 'of other online': 587367, 'other online option': 620610, 'online option call': 608644, 'option call 800': 614007, 'call 800 526': 155723, '800 526 3648': 22673, '526 3648 or': 20272, '3648 or online': 18047, 'obsessively': 578696, 'mckinsey finding': 522197, 'behavior changed': 123969, 'changed during': 172467, 'pandemic beyond': 635006, 'obvious decreased': 578785, 'decreased spend': 231644, 'on travel': 604845, 'travel petrol': 930464, 'petrol obsessively': 653750, 'obsessively watching': 578697, 'buying up': 151286, 'up big': 944495, 'big on': 129890, 'mckinsey finding on': 522198, 'finding on consumer': 307518, 'on consumer sentiment': 600077, 'consumer sentiment and': 198903, 'sentiment and behavior': 750893, 'and behavior changed': 58838, 'behavior changed during': 123970, 'changed during the': 172468, 'the pandemic beyond': 862919, 'pandemic beyond the': 635007, 'beyond the obvious': 129245, 'the obvious decreased': 862019, 'obvious decreased spend': 578786, 'decreased spend on': 231645, 'spend on travel': 788663, 'on travel petrol': 604847, 'travel petrol obsessively': 930465, 'petrol obsessively watching': 653751, 'obsessively watching the': 578698, 'watching the news': 968801, 'the news we': 861636, 'news we re': 560957, 'we re buying': 972837, 're buying up': 698403, 'buying up big': 151289, 'up big on': 944496, 'big on home': 129891, 'on home entertainment': 601352, 'cineworld': 178571, 'ashworth': 95142, 'cineworld close': 178572, 'all branch': 42214, 'branch uk': 137701, 'unchanged in': 939786, 'march say': 515465, 'say halifax': 738717, 'halifax european': 374317, 'market climb': 516173, 'climb optimism': 182267, 'optimism grows': 613905, 'grows the': 367328, 'is slowing': 451973, 'slowing follow': 774545, 'today key': 919772, 'key business': 473233, 'business news': 144094, 'via ashworth': 955800, 'ashworth and': 95143, 'live blog': 495749, 'cineworld close all': 178573, 'close all branch': 182499, 'all branch uk': 42216, 'branch uk house': 137702, 'house price unchanged': 406508, 'price unchanged in': 677173, 'unchanged in march': 939787, 'in march say': 425118, 'march say halifax': 515466, 'say halifax european': 738718, 'halifax european market': 374318, 'european market climb': 283590, 'market climb optimism': 516174, 'climb optimism grows': 182268, 'optimism grows the': 613906, 'grows the is': 367329, 'the is slowing': 858530, 'is slowing follow': 451977, 'slowing follow all': 774546, 'follow all of': 312346, 'all of today': 43723, 'of today key': 592236, 'today key business': 919773, 'key business news': 473234, 'business news via': 144097, 'news via ashworth': 560937, 'via ashworth and': 955801, 'ashworth and our': 95144, 'and our live': 68502, 'our live blog': 623757, 'reinforcing': 708257, 'buy mask': 148938, 'mask followed': 518656, 'followed what': 312625, 'authority say': 103778, 'say didn': 738572, 'didn stockpile': 241215, 'stockpile unnecessary': 803813, 'unnecessary food': 942909, 'panic mode': 638314, 'mode instead': 535179, 'of reinforcing': 588900, 'reinforcing the': 708263, 'system no': 831257, 'no worry': 565936, 'worry positive': 1010764, 'positive thinking': 665465, 'thinking do': 885895, 'get bored': 346692, 'bored doing': 135342, 'what love': 981838, 'didn buy mask': 240998, 'buy mask followed': 148942, 'mask followed what': 518657, 'followed what the': 312626, 'what the authority': 982294, 'the authority say': 849075, 'authority say didn': 103779, 'say didn buy': 738573, 'didn buy hand': 240996, 'sanitizer with soap': 736141, 'with soap didn': 1000794, 'soap didn stockpile': 778982, 'didn stockpile unnecessary': 241216, 'stockpile unnecessary food': 803814, 'unnecessary food item': 942910, 'food item not': 315219, 'item not in': 463479, 'not in panic': 570102, 'in panic mode': 426480, 'panic mode instead': 638318, 'mode instead of': 535181, 'instead of reinforcing': 440313, 'of reinforcing the': 588901, 'reinforcing the immune': 708264, 'immune system no': 417345, 'system no worry': 831258, 'no worry positive': 565939, 'worry positive thinking': 1010765, 'positive thinking do': 665466, 'thinking do not': 885896, 'not get bored': 569578, 'get bored doing': 346693, 'bored doing what': 135343, 'doing what love': 252846, 'what love to': 981839, 'love to do': 504845, 'judging': 467663, 'intends': 441070, 'flatulence': 310226, 'judging by': 467664, 'the barren': 849285, 'barren bean': 111308, 'bean shelf': 118361, 'public intends': 688112, 'intends to': 441071, 'with flatulence': 998455, 'judging by the': 467665, 'by the barren': 154267, 'the barren bean': 849286, 'barren bean shelf': 111309, 'bean shelf in': 118362, 'supermarket the british': 823210, 'british public intends': 140579, 'public intends to': 688113, 'intends to defeat': 441072, '19 with flatulence': 12130, 'authorises': 103669, 'acc authorises': 27798, 'authorises supermarket': 103670, 'supermarket trading': 823530, 'trading rule': 928913, 'ensure grocery': 277956, 'crisis itwire': 217616, 'acc authorises supermarket': 27799, 'authorises supermarket trading': 103671, 'supermarket trading rule': 823532, 'trading rule change': 928914, 'rule change to': 727225, 'change to ensure': 172345, 'to ensure grocery': 905164, 'ensure grocery supply': 277958, 'grocery supply during': 366010, 'supply during covid': 825193, '19 crisis itwire': 6269, 'crisis itwire acc': 217617, 'itwire acc authorises': 464031, 'crisis itwire datagovernance': 217618, 'sweep is': 830130, 'is british': 446274, 'british tv': 140616, 'tv game': 936116, 'game show': 343244, 'show and': 766861, 'not documentary': 569080, 'one would like': 607513, 'like to remind': 491617, 'remind you that': 710517, 'you that supermarket': 1021577, 'that supermarket sweep': 846577, 'supermarket sweep is': 823095, 'sweep is british': 830131, 'is british tv': 446276, 'british tv game': 140617, 'tv game show': 936117, 'game show and': 343245, 'show and not': 766866, 'and not documentary': 67728, 'gosport': 358352, 'fc': 300713, 'localfootball': 498730, 'nonleague': 566650, 'portsmouth': 665062, 'gosport borough': 358353, 'borough fc': 135584, 'fc link': 300718, 'link up': 493955, 'with second': 1000605, 'second supermarket': 743822, 'help deliver': 389577, 'parcel during': 641492, 'crisis localfootball': 217672, 'localfootball nonleague': 498731, 'nonleague portsmouth': 566651, 'portsmouth news': 665063, 'gosport borough fc': 358354, 'borough fc link': 135585, 'fc link up': 300719, 'link up with': 493957, 'up with second': 946679, 'with second supermarket': 1000607, 'second supermarket to': 743823, 'supermarket to help': 823378, 'to help deliver': 907489, 'help deliver food': 389579, 'deliver food parcel': 233125, 'food parcel during': 315815, 'parcel during covid': 641493, '19 crisis localfootball': 6277, 'crisis localfootball nonleague': 217673, 'localfootball nonleague portsmouth': 498732, 'nonleague portsmouth news': 566652, '10p': 2366, 'petrolprice set': 653859, 'be slashed': 117210, 'slashed at': 773612, 'at historic': 98922, 'historic level': 397958, 'with 10p': 996934, '10p discounted': 2367, 'discounted per': 244590, 'petrolprice set to': 653860, 'set to be': 753502, 'to be slashed': 901545, 'be slashed at': 117211, 'slashed at historic': 773613, 'at historic level': 98923, 'historic level due': 397959, 'to with 10p': 918640, 'with 10p discounted': 996935, '10p discounted per': 2368, 'discounted per litre': 244591, 'lockdownzim': 500458, 'icymi filling': 412875, 'filling station': 305618, 'station hike': 796421, 'domestic gas': 253194, 'rise following': 722854, 'day lockdownzim': 227927, 'icymi filling station': 412876, 'filling station hike': 305622, 'station hike price': 796422, 'hike price for': 396259, 'for domestic gas': 320812, 'domestic gas the': 253195, 'gas the demand': 344151, 'the demand rise': 853108, 'demand rise following': 236155, 'rise following the': 722855, 'following the 21': 312871, '21 day lockdownzim': 14992, 'boxing': 137219, 'awkward': 106272, 'companion': 190324, 'highlight clip': 395905, 'clip from': 182354, 'week episode': 976192, 'the boxing': 849926, 'boxing rant': 137232, 'rant podcast': 696853, 'podcast thing': 662318, 'thing just': 884503, 'got awkward': 358424, 'awkward coronavirus': 106275, 'coronavirus companion': 205664, 'companion tale': 190329, 'pandemic pandemonium': 636150, 'pandemonium quarantinelife': 637141, 'quarantinelife video': 693041, 'video audio': 956627, 'audio only': 102932, 'highlight clip from': 395906, 'clip from this': 182355, 'from this week': 338017, 'this week episode': 891212, 'week episode of': 976193, 'episode of the': 279544, 'of the boxing': 590828, 'the boxing rant': 849927, 'boxing rant podcast': 137233, 'rant podcast thing': 696854, 'podcast thing just': 662319, 'thing just got': 884505, 'just got awkward': 468849, 'got awkward coronavirus': 358425, 'awkward coronavirus companion': 106276, 'coronavirus companion tale': 205666, 'companion tale from': 190330, 'the pandemic pandemonium': 863049, 'pandemic pandemonium quarantinelife': 636151, 'pandemonium quarantinelife video': 637142, 'quarantinelife video audio': 693042, 'video audio only': 956628, 'weep': 977607, 'weep for': 977608, 'weep for the': 977610, 'weighed': 977670, 'building loyalty': 142108, 'loyalty in': 506293, 'crisis can': 217181, 'make or': 510275, 'or break': 614583, 'break brand': 138688, 'consumer weighed': 199496, 'weighed in': 977671, 'top factor': 925573, 'that made': 844972, 'made them': 508006, 'them trust': 876554, 'trust brand': 934248, 'top response': 925709, 'response were': 715921, 'were focused': 979646, 'on treating': 604851, 'treating customer': 930989, 'employee well': 274400, 'building loyalty in': 142109, 'loyalty in time': 506294, 'of crisis can': 582151, 'crisis can make': 217182, 'can make or': 158943, 'make or break': 510276, 'or break brand': 614584, 'break brand consumer': 138689, 'brand consumer weighed': 137810, 'consumer weighed in': 199497, 'weighed in on': 977672, 'the top factor': 869778, 'top factor that': 925574, 'factor that made': 295905, 'that made them': 844978, 'made them trust': 508008, 'them trust brand': 876555, 'trust brand during': 934249, 'brand during crisis': 137827, 'and the top': 73621, 'the top response': 869794, 'top response were': 925710, 'response were focused': 715922, 'were focused on': 979647, 'focused on treating': 311968, 'on treating customer': 604852, 'treating customer employee': 930991, 'customer employee well': 222331, 'relates': 708641, 'store safety': 809952, 'tip it': 898828, 'it relates': 460689, 'relates to': 708642, 'grocery store safety': 365738, 'store safety tip': 809954, 'safety tip it': 730767, 'tip it relates': 898829, 'it relates to': 460690, 'tear after': 835918, 'shift when': 758465, 'she find': 756033, 'find empty': 306885, 'shelf coronacrisisuk': 756963, 'coronacrisisuk coronacrisisuk': 204883, 'nurse in tear': 577383, 'in tear after': 428835, 'tear after 48': 835919, 'hour shift when': 405927, 'shift when she': 758466, 'when she find': 983996, 'she find empty': 756034, 'find empty supermarket': 306887, 'supermarket shelf coronacrisisuk': 822450, 'shelf coronacrisisuk coronacrisisuk': 756964, 'coronacrisisuk coronacrisisuk 19': 204884, 'socialdistanacing will': 780123, 'uk ever': 938337, 'ever be': 285210, 'panicbuyinguk socialdistanacing will': 639170, 'socialdistanacing will the': 780124, 'will the uk': 995159, 'the uk ever': 870214, 'uk ever be': 938338, 'ever be the': 285212, 'stabilizes': 791874, 'other custom': 620052, 'custom non': 221991, 'non gear': 566402, 'gear item': 344965, 'item well': 463803, 'well dm': 978166, 'all shipping': 44312, 'shipping will': 758946, 'postponed until': 666836, 'until after': 943669, 'situation stabilizes': 772491, 'stabilizes here': 791877, 'in mexico': 425267, 'mexico all': 529989, 'listed in': 494623, 'in dollar': 422346, 'dollar photo': 253055, 'photo for': 655163, 'display purpose': 246202, 'purpose only': 690147, 'only exact': 610406, 'exact item': 288692, 'item pictured': 463567, 'pictured have': 656228, 'already been': 47220, 'been sold': 122002, 'make other custom': 510283, 'other custom non': 620053, 'custom non gear': 221992, 'non gear item': 566403, 'gear item well': 344966, 'item well dm': 463804, 'well dm to': 978167, 'dm to order': 248936, 'to order all': 911061, 'order all shipping': 618012, 'all shipping will': 44313, 'shipping will be': 758947, 'be postponed until': 116492, 'postponed until after': 666838, 'until after the': 943673, '19 situation stabilizes': 10594, 'situation stabilizes here': 772492, 'stabilizes here in': 791878, 'here in mexico': 393161, 'in mexico all': 425268, 'mexico all price': 529990, 'all price listed': 44037, 'price listed in': 675067, 'listed in dollar': 494625, 'in dollar photo': 422347, 'dollar photo for': 253056, 'photo for display': 655164, 'for display purpose': 320764, 'display purpose only': 246203, 'purpose only exact': 690148, 'only exact item': 610407, 'exact item pictured': 288693, 'item pictured have': 463568, 'pictured have already': 656229, 'have already been': 379184, 'already been sold': 47224, 'santizer': 736637, 'santizers': 736640, 'govt of': 361225, 'india release': 434592, 'release an': 708918, 'hand santizer': 375741, 'santizer and': 736638, 'hand santizers': 375743, 'santizers at': 736641, 'prevent indiafightscorona': 671654, 'govt of india': 361229, 'of india in': 585107, 'of india release': 585115, 'india release an': 434593, 'release an order': 708919, 'an order fixing': 56697, 'of hand santizer': 584435, 'hand santizer and': 375742, 'santizer and mask': 736639, 'and mask 2ply': 66739, 'mask 2ply mask': 518261, '10 hand santizers': 1455, 'hand santizers at': 375744, 'santizers at 100': 736642, 'to prevent indiafightscorona': 912071, 'ambo': 51313, 'journos': 467495, 'skeleton': 772853, 'police doctor': 662982, 'nurse ambo': 577184, 'ambo teacher': 51314, 'teacher journos': 835477, 'journos amp': 467496, 'amp add': 53353, 'add supermarket': 31495, 'manager would': 512836, 'would still': 1012270, 'amp their': 54672, 'their kid': 873753, 'kid would': 474186, 'school with': 741989, 'with skeleton': 1000753, 'skeleton staff': 772858, 'staff supervising': 792909, 'supervising that': 824382, 'uk model': 938550, 'model amp': 535226, 'could replicate': 209590, 'replicate it': 711696, 'essential worker police': 281847, 'worker police doctor': 1007599, 'police doctor nurse': 662983, 'doctor nurse ambo': 250996, 'nurse ambo teacher': 577185, 'ambo teacher journos': 51315, 'teacher journos amp': 835478, 'journos amp add': 467497, 'amp add supermarket': 53354, 'add supermarket manager': 31496, 'supermarket manager would': 821457, 'manager would still': 512837, 'would still go': 1012272, 'to work amp': 918684, 'work amp their': 1004753, 'amp their kid': 54674, 'their kid would': 873764, 'kid would still': 474187, 'to school with': 913904, 'school with skeleton': 741991, 'with skeleton staff': 1000755, 'skeleton staff supervising': 772859, 'staff supervising that': 792910, 'supervising that the': 824383, 'that the uk': 846856, 'the uk model': 870250, 'uk model amp': 938551, 'model amp think': 535227, 'amp think we': 54693, 'think we could': 885764, 'we could replicate': 971216, 'could replicate it': 209591, 'visited service': 959497, 'service centre': 752219, 'centre found': 169496, 'of apple': 580314, 'open even': 612214, 'had read': 373445, 'notification from': 573533, 'from apple': 334571, 'apple that': 82373, 'that till': 847036, 'till 27': 895977, '27 march': 16289, '2020 all': 14131, 'be remain': 116774, 'remain closed': 709718, 'not apple': 568230, 'store cook': 807171, 'just visited service': 470188, 'visited service centre': 959498, 'service centre found': 752220, 'centre found the': 169497, 'found the one': 330413, 'the one of': 862208, 'one of apple': 606735, 'of apple store': 580317, 'apple store is': 82368, 'is open even': 450565, 'open even had': 612215, 'even had read': 284150, 'had read the': 373447, 'read the notification': 700585, 'the notification from': 861903, 'notification from apple': 573535, 'from apple that': 334572, 'apple that till': 82374, 'that till 27': 847037, 'till 27 march': 895978, '27 march 2020': 16290, 'march 2020 all': 515147, '2020 all the': 14133, 'all the retail': 44889, 'will be remain': 992642, 'be remain closed': 116775, 'remain closed it': 709722, 'closed it not': 183198, 'it not apple': 459859, 'not apple store': 568231, 'apple store cook': 82366, 'store loses': 808832, 'loses estimated': 503519, 'estimated 35k': 282278, '35k in': 17976, 'woman twisted': 1003644, 'prank co': 668930, 'owner say': 632562, 'say pandemic': 739041, 'pandemic stayhome': 636540, 'grocery store loses': 365544, 'store loses estimated': 808834, 'loses estimated 35k': 503520, 'estimated 35k in': 282279, '35k in food': 17977, 'after woman twisted': 36562, 'woman twisted coronavirus': 1003645, 'coronavirus prank co': 206571, 'prank co owner': 668931, 'co owner say': 184937, 'owner say pandemic': 632565, 'say pandemic stayhome': 739043, 'usfda': 950346, 'pvt lab': 691354, 'lab with': 478314, 'with usfda': 1001936, 'usfda approved': 950347, 'approved kit': 83166, 'kit can': 475519, 'can start': 159725, 'pvt lab with': 691355, 'lab with usfda': 478315, 'with usfda approved': 1001937, 'usfda approved kit': 950348, 'approved kit can': 83167, 'kit can start': 475520, 'can start testing': 159730, 'start testing for': 794544, '19 price capped': 9805, 'californiashutdown': 155664, 'californiaquarantine': 155660, 'that on': 845483, 'the completely': 851393, 'higher for': 395596, 'stuff now': 815152, 'now californiashutdown': 574319, 'californiashutdown californiaquarantine': 155665, 'californiaquarantine coronacrisis': 155661, 'coronacrisis today': 204833, 'tp bread': 927771, 'bread flower': 138465, 'flower meat': 311309, 'meat cheese': 525516, 'cheese pasta': 175209, 'else notice that': 271811, 'notice that on': 573365, 'that on top': 845487, 'of the completely': 590880, 'the completely empty': 851394, 'completely empty shelf': 192281, 'the store some': 868109, 'store some price': 810263, 'are higher for': 87157, 'higher for basic': 395597, 'basic food and': 111881, 'other stuff now': 621007, 'stuff now californiashutdown': 815153, 'now californiashutdown californiaquarantine': 574320, 'californiashutdown californiaquarantine coronacrisis': 155666, 'californiaquarantine coronacrisis today': 155662, 'coronacrisis today no': 204834, 'today no tp': 919937, 'no tp bread': 565787, 'tp bread flower': 927772, 'bread flower meat': 138466, 'flower meat cheese': 311310, 'meat cheese pasta': 525517, 'cheese pasta rice': 175210, 'amplifying': 54908, 'incurred': 433959, 'amplifying opinion': 54909, 'opinion like': 613475, 'dangerous practice': 225765, 'practice there': 668678, 'been additional': 120610, 'additional cost': 31796, 'cost incurred': 207981, 'incurred to': 433960, 'social assistance': 779439, 'assistance due': 96681, 'pandemic unless': 636868, 'they chose': 881754, 'chose to': 178023, 'on extra': 600687, 'advice of': 33443, 'canadian official': 160718, 'amplifying opinion like': 54910, 'opinion like this': 613476, 'this is dangerous': 888226, 'is dangerous practice': 447029, 'dangerous practice there': 225766, 'practice there have': 668679, 'there have not': 878468, 'not been additional': 568503, 'been additional cost': 120611, 'additional cost incurred': 31798, 'cost incurred to': 207982, 'incurred to those': 433961, 'to those on': 917514, 'those on social': 892289, 'on social assistance': 603534, 'social assistance due': 779440, 'assistance due to': 96682, 'to this pandemic': 917450, 'this pandemic unless': 889444, 'pandemic unless they': 636869, 'unless they chose': 942647, 'they chose to': 881755, 'chose to stock': 178027, 'up on extra': 945557, 'on extra supply': 600690, 'extra supply against': 293664, 'supply against the': 824668, 'against the advice': 37640, 'the advice of': 848385, 'advice of canadian': 33444, 'of canadian official': 581093, 'encouragement': 275677, 'encouraging kid': 275722, 'to draw': 904713, 'draw picture': 258479, 'and write': 75943, 'write note': 1012778, 'of encouragement': 583100, 'encouragement with': 275684, 'it campaign': 457004, 'and are encouraging': 58310, 'are encouraging kid': 86196, 'encouraging kid to': 275723, 'kid to draw': 474136, 'to draw picture': 904714, 'draw picture and': 258480, 'picture and write': 656109, 'and write note': 75944, 'write note of': 1012779, 'note of encouragement': 572768, 'of encouragement with': 583101, 'encouragement with it': 275685, 'with it campaign': 999063, '946': 23565, 'astate': 97172, 'littlerock': 495683, 'tuesdayvibes': 935237, 'didn find': 241061, 'any lysol': 79438, 'lysol today': 507198, 'today but': 919332, 'but re': 146889, 're up': 699750, 'toiletpaper need': 922255, 'by walmart': 154687, 'walmart we': 965462, 'have 946': 379105, '946 case': 23566, 'the astate': 848991, 'astate stayathome': 97173, 'stayathome littlerock': 797518, 'littlerock surrounding': 495684, 'surrounding city': 828740, 'necessary tuesdayvibes': 554138, 'didn find any': 241062, 'find any lysol': 306796, 'any lysol today': 79439, 'lysol today but': 507199, 'today but re': 919337, 'but re up': 146890, 're up on': 699751, 'on the the': 604402, 'the the toiletpaper': 869404, 'the toiletpaper need': 869729, 'toiletpaper need to': 922256, 'go by walmart': 353400, 'by walmart we': 154688, 'walmart we have': 965463, 'we have 946': 971744, 'have 946 case': 379106, '946 case of': 23567, 'in the astate': 428991, 'the astate stayathome': 848992, 'astate stayathome littlerock': 97174, 'stayathome littlerock surrounding': 797519, 'littlerock surrounding city': 495685, 'surrounding city in': 828741, 'city in out': 179202, 'in out if': 426357, 'out if necessary': 626360, 'if necessary tuesdayvibes': 414449, 'othe': 619788, 'nutter': 577776, 'camper': 157305, 'about independence': 25520, 'independence flower': 434072, 'flower we': 311340, 'still co': 800376, 'co operate': 184919, 'operate with': 613029, 'with othe': 999944, 'othe country': 619789, 'of nutter': 587118, 'nutter taking': 577783, 'taking caravan': 833295, 'caravan camper': 163375, 'camper van': 157306, 'the stick': 867881, 'stick up': 800070, 'up north': 945468, 'north potentially': 567673, 'potentially spreading': 667245, 'also taking': 48949, 'not about independence': 568015, 'about independence flower': 25521, 'independence flower we': 434073, 'flower we can': 311341, 'can still co': 159768, 'still co operate': 800377, 'co operate with': 184921, 'operate with othe': 613030, 'with othe country': 999945, 'othe country it': 619790, 'country it about': 210829, 'about the amount': 26337, 'amount of nutter': 53240, 'of nutter taking': 587119, 'nutter taking caravan': 577784, 'taking caravan camper': 833296, 'caravan camper van': 163376, 'camper van to': 157307, 'van to the': 952315, 'to the stick': 917096, 'the stick up': 867883, 'stick up north': 800071, 'up north potentially': 945471, 'north potentially spreading': 567674, 'potentially spreading covid': 667246, '19 also taking': 4932, 'also taking food': 48951, 'great united': 363086, 'history at': 398006, 'practice lol': 668606, 'lol 19': 500861, 'the great united': 856738, 'great united state': 363087, 'united state could': 942211, 'state could see': 795495, 'could see the': 209642, 'see the lowest': 745857, 'in history at': 423748, 'history at time': 398007, 'we are supposed': 970730, 'supposed to practice': 827370, 'to practice lol': 911957, 'practice lol 19': 668607, 'foster': 330098, 'edt': 268737, 'liu': 495693, 'guanguan': 367690, 'cnsphoto': 184791, 'wearing mark': 974675, 'mark shop': 515820, 'in foster': 423059, 'foster city': 330101, 'city san': 179347, 'francisco bay': 331098, 'area the': 92223, '2020 there': 14649, 'were 605': 979260, '605 confirmed': 21134, 'and 22': 57416, '22 died': 15205, '00 edt': 181, 'edt on': 268738, 'march photo': 515437, 'photo by': 655139, 'by liu': 153060, 'liu guanguan': 495694, 'guanguan cnsphoto': 367691, 'woman wearing mark': 1003663, 'wearing mark shop': 974676, 'mark shop at': 515821, 'shop at supermarket': 759958, 'supermarket in foster': 820900, 'in foster city': 423060, 'foster city san': 330102, 'city san francisco': 179348, 'san francisco bay': 733535, 'francisco bay area': 331099, 'bay area the': 112919, 'area the march': 92226, 'the march 2020': 860062, 'march 2020 there': 515165, '2020 there were': 14650, 'there were 605': 879307, 'were 605 confirmed': 979261, '605 confirmed case': 21135, 'the and 22': 848679, 'and 22 died': 57418, '22 died of': 15206, 'died of 20': 241584, 'of 20 00': 579446, '20 00 edt': 12855, '00 edt on': 182, 'edt on march': 268739, 'on march photo': 602028, 'march photo by': 515438, 'photo by liu': 655142, 'by liu guanguan': 153061, 'liu guanguan cnsphoto': 495695, 'delivered collected': 233309, 'collected prescription': 186372, 'prescription small': 670538, 'small shopping': 775120, 'shopping item': 763108, 'all payment': 43932, 'made online': 507890, '19 please share': 9727, 'please share if': 660485, 'you know is': 1019504, 'know is in': 476508, 'is in self': 448811, 'self isolation but': 747760, 'isolation but need': 455224, 'but need anything': 146453, 'need anything delivered': 554454, 'anything delivered collected': 80725, 'delivered collected prescription': 233310, 'collected prescription small': 186373, 'prescription small shopping': 670539, 'small shopping item': 775121, 'shopping item we': 763110, 'item we can': 463799, 'can help we': 158670, 'help we can': 390861, 'we can leave': 970972, 'can leave the': 158860, 'leave the item': 484971, 'the item at': 858603, 'item at your': 463140, 'at your door': 101673, 'your door and': 1023569, 'door and all': 255503, 'and all payment': 57883, 'all payment can': 43933, 'payment can be': 645574, 'can be made': 157641, 'be made online': 115867, 'like little': 490651, 'little contagion': 495298, 'contagion to': 200424, 'stimulate surge': 801486, 'nothing like little': 573097, 'like little contagion': 490653, 'little contagion to': 495299, 'contagion to stimulate': 200425, 'to stimulate surge': 915420, 'stimulate surge in': 801487, 'in consumer activity': 421681, 'cop say': 203280, 'will arrest': 992305, 'arrest teen': 93781, 'teen who': 836516, 'and coughing': 60607, 'disturbing coronavirus': 248407, 'prank on': 668936, 'medium kid': 527163, 'cop say they': 203282, 'say they will': 739356, 'they will arrest': 883828, 'will arrest teen': 992306, 'arrest teen who': 93782, 'teen who are': 836517, 'who are going': 988147, 'are going into': 86890, 'going into grocery': 355235, 'store and coughing': 806220, 'and coughing on': 60608, 'on produce in': 602942, 'produce in disturbing': 680314, 'in disturbing coronavirus': 422322, 'disturbing coronavirus prank': 248408, 'coronavirus prank on': 206572, 'prank on social': 668937, 'social medium kid': 779863, 'don protect': 253835, 'protect food': 684834, 'worker you': 1008308, 'find real': 307198, 'real shortage': 701361, 'shortage soon': 765218, 'demand all': 234917, 'pay suffer': 645125, 'suffer no': 817222, 'no penalty': 565090, 'penalty for': 646441, 'for related': 325083, 'related illness': 708457, 'not member': 570567, 'union join': 941901, 'join organise': 466804, 'organise and': 619301, 'and send': 71246, 'send clear': 749827, 'clear message': 181285, 'to employer': 905025, 'employer you': 274561, 'be abused': 113456, 'you don protect': 1018326, 'don protect food': 253836, 'protect food worker': 684836, 'food worker you': 317682, 'worker you may': 1008313, 'may find real': 521191, 'find real shortage': 307199, 'real shortage soon': 701363, 'shortage soon we': 765219, 'soon we demand': 785893, 'we demand all': 971266, 'demand all food': 234918, 'all food worker': 42827, 'food worker get': 317673, 'worker get full': 1007023, 'full pay suffer': 340802, 'pay suffer no': 645126, 'suffer no penalty': 817223, 'no penalty for': 565091, 'penalty for related': 646442, 'for related illness': 325084, 'related illness if': 708458, 'illness if you': 416372, 'are not member': 88415, 'not member of': 570568, 'of the union': 591571, 'the union join': 870407, 'union join organise': 941902, 'join organise and': 466805, 'organise and send': 619302, 'and send clear': 71248, 'send clear message': 749828, 'clear message to': 181286, 'message to employer': 529449, 'to employer you': 905026, 'employer you will': 274562, 'not be abused': 568349, 'making so': 511349, 'so bloody': 776627, 'bloody angry': 133169, 'there absolutely': 877956, 'bloody need': 133217, 'for goodness': 321947, 'goodness sake': 358059, 'sake just': 731860, 'just bloody': 468340, 'bloody stop': 133239, 'is just making': 449137, 'just making so': 469221, 'making so bloody': 511350, 'so bloody angry': 776628, 'bloody angry at': 133170, 'angry at the': 76463, 'moment there absolutely': 536066, 'there absolutely no': 877957, 'absolutely no bloody': 27398, 'no bloody need': 563705, 'bloody need to': 133218, 'buy at all': 148377, 'at all for': 97882, 'all for goodness': 42837, 'for goodness sake': 321948, 'goodness sake just': 358063, 'sake just bloody': 731861, 'just bloody stop': 468342, 'bloody stop it': 133240, 'andy': 76239, 'andy soon': 76250, 'soon supermarket': 785834, 'be placed': 116421, 'placed at': 657874, '19 whilst': 12056, 'whilst other': 987665, 'closing to': 183794, 'and themselves': 73733, 'spread do': 790511, 'do shop': 250072, 'to refuse': 913093, 'work based': 1004918, 'andy soon supermarket': 76251, 'soon supermarket worker': 785835, 'supermarket worker will': 824124, 'will be placed': 992608, 'be placed at': 116422, 'placed at greater': 657875, 'greater risk of': 363231, 'covid 19 whilst': 214071, '19 whilst other': 12058, 'whilst other business': 987666, 'other business are': 619910, 'are closing to': 85402, 'closing to protect': 183797, 'public and themselves': 687857, 'and themselves to': 73735, 'themselves to limit': 876913, 'the spread do': 867625, 'spread do shop': 790513, 'do shop worker': 250073, 'worker have the': 1007093, 'right to refuse': 722351, 'to refuse to': 913094, 'refuse to work': 707047, 'to work based': 918693, 'work based on': 1004919, 'kanban': 470775, 'little law': 495433, 'law queue': 482372, 'long kanban': 501472, 'kanban metric': 470776, 'little law queue': 495434, 'law queue to': 482373, 'enter supermarket is': 278302, 'supermarket is too': 821132, 'is too long': 453282, 'too long kanban': 924864, 'long kanban metric': 501473, 'taiwan': 831834, 'anonymous': 77447, 'google join': 358168, 'join other': 466806, 'other private': 620757, 'private organisation': 678956, 'organisation sharing': 619275, 'sharing consumer': 755514, 'consumer behavioral': 196544, 'behavioral data': 124332, 'health authority': 386181, 'authority worldwide': 103816, 'worldwide china': 1010333, 'china taiwan': 176964, 'taiwan and': 831835, 'korea use': 477509, 'use le': 949331, 'le anonymous': 482850, 'anonymous data': 77454, 'the contact': 851641, 'contact of': 200158, 'lockdown ukgoverment': 500089, 'google join other': 358169, 'join other private': 466807, 'other private organisation': 620758, 'private organisation sharing': 678957, 'organisation sharing consumer': 619276, 'sharing consumer behavioral': 755515, 'consumer behavioral data': 196546, 'behavioral data to': 124333, 'data to health': 226461, 'to health authority': 907369, 'health authority worldwide': 386183, 'authority worldwide china': 103817, 'worldwide china taiwan': 1010334, 'china taiwan and': 176965, 'taiwan and south': 831836, 'south korea use': 786753, 'korea use le': 477510, 'use le anonymous': 949332, 'le anonymous data': 482851, 'anonymous data to': 77455, 'data to track': 226469, 'track the contact': 928226, 'the contact of': 851643, 'contact of people': 200159, 'of people tested': 587998, 'people tested positive': 649740, 'for coronavirus lockdown': 320384, 'coronavirus lockdown ukgoverment': 206255, 'hood': 403312, 'commissary': 188775, 'forthood': 329810, 'usarmy': 948875, 'iicorpscovid19': 415993, 'texasstrong': 839859, 'fort hood': 329772, 'hood commissary': 403313, 'commissary responds': 188780, 'demand forthood': 235527, 'forthood usarmy': 329811, 'usarmy iicorpscovid19': 948876, 'iicorpscovid19 food': 415994, 'shortage texasstrong': 765243, 'fort hood commissary': 329773, 'hood commissary responds': 403314, 'commissary responds to': 188781, 'responds to increased': 715599, 'increased demand forthood': 433273, 'demand forthood usarmy': 235528, 'forthood usarmy iicorpscovid19': 329812, 'usarmy iicorpscovid19 food': 948877, 'iicorpscovid19 food shortage': 415995, 'food shortage texasstrong': 316608, 'collectively': 186522, 'in essential': 422601, 'essential industry': 281171, 'industry collectively': 435735, 'collectively globally': 186531, 'globally will': 352420, 'win this': 995591, 'year probably': 1014915, 'possible but': 665590, 'whatever good': 982754, 'good night': 357467, 'night stayhome': 563084, 'it now those': 459966, 'now those in': 576139, 'healthcare system and': 387306, 'system and all': 831093, 'and all worker': 57906, 'all worker in': 45502, 'worker in essential': 1007168, 'in essential industry': 422605, 'essential industry collectively': 281172, 'industry collectively globally': 435736, 'collectively globally will': 186532, 'globally will win': 352422, 'will win this': 995352, 'win this year': 995594, 'this year probably': 891587, 'year probably not': 1014916, 'probably not possible': 679340, 'not possible but': 571054, 'possible but whatever': 665595, 'but whatever good': 147808, 'whatever good night': 982755, 'good night stayhome': 357471, 'foodservice people': 318104, 'providing really': 687083, 'really valuable': 702688, 'valuable consumer': 952019, 'industry data': 435763, 'data related': 226379, 'foodservice people is': 318105, 'people is providing': 648524, 'is providing really': 451122, 'providing really valuable': 687084, 'really valuable consumer': 702689, 'valuable consumer and': 952020, 'and industry data': 65177, 'industry data related': 435764, 'data related to': 226381, 'related to on': 708611, 'to on their': 910900, 'on their website': 604522, 'neoliberalism': 557395, 'meritocracy': 529140, 'stereotype': 799832, 'selfish neoliberalism': 748181, 'neoliberalism cause': 557397, 'cause brawl': 167503, 'aisle across': 40185, 'america during': 51497, 'what make': 981846, 'me tick': 523730, 'tick toiletpaperapocalypse': 895578, 'toiletpaperapocalypse meritocracy': 922909, 'meritocracy toiletpaperpanic': 529141, 'toiletpaperpanic stereotype': 923250, 'selfish neoliberalism cause': 748182, 'neoliberalism cause brawl': 557398, 'cause brawl in': 167504, 'brawl in toiletpaper': 138315, 'in toiletpaper aisle': 430176, 'toiletpaper aisle across': 921698, 'aisle across america': 40186, 'across america during': 29242, 'america during the': 51499, 'the read what': 865202, 'read what make': 700653, 'what make me': 981848, 'make me tick': 510149, 'me tick toiletpaperapocalypse': 523731, 'tick toiletpaperapocalypse meritocracy': 895579, 'toiletpaperapocalypse meritocracy toiletpaperpanic': 922910, 'meritocracy toiletpaperpanic stereotype': 529142, 'whilst queue': 987674, 'queue your': 694144, 'beauty treatment': 118814, 'treatment get': 931082, 'your hair': 1024152, 'hair done': 373975, 'done do': 254818, 'your group': 1024141, 'group personal': 366837, 'personal training': 652983, 'training amp': 929324, 'amp hoard': 53948, 'hoard please': 398852, 'please spare': 660528, 'our selfless': 624709, 'selfless medical': 748531, 'whilst queue your': 987675, 'queue your beauty': 694145, 'your beauty treatment': 1022926, 'beauty treatment get': 118815, 'treatment get your': 931083, 'get your hair': 348708, 'your hair done': 1024153, 'hair done do': 373976, 'done do your': 254821, 'do your group': 250703, 'your group personal': 1024142, 'group personal training': 366838, 'personal training amp': 652984, 'training amp hoard': 929325, 'amp hoard please': 53949, 'hoard please spare': 398853, 'please spare thought': 660529, 'for our selfless': 324288, 'our selfless medical': 624710, 'selfless medical staff': 748532, 'medical staff during': 526391, 'staff during this': 792399, 'lav': 482174, 'aggarwal': 38212, 'icmr': 412794, 'lav aggarwal': 482175, 'aggarwal joint': 38213, 'joint secretary': 467024, 'secretary union': 743974, 'union health': 941890, 'health ministry': 386644, 'ministry the': 533572, 'the icmr': 857817, 'icmr indian': 412797, 'indian council': 434809, 'medical research': 526363, 'research ha': 713745, 'ha strongly': 372090, 'strongly appealed': 814218, 'to private': 912154, 'laboratory to': 478483, 'offer covid': 594560, '19 diagnosis': 6534, 'diagnosis free': 240254, 'lav aggarwal joint': 482176, 'aggarwal joint secretary': 38214, 'joint secretary union': 467025, 'secretary union health': 743975, 'union health ministry': 941892, 'health ministry the': 386647, 'ministry the icmr': 533573, 'the icmr indian': 857818, 'icmr indian council': 412798, 'indian council of': 434810, 'council of medical': 210014, 'of medical research': 586398, 'medical research ha': 526364, 'research ha strongly': 713751, 'ha strongly appealed': 372091, 'strongly appealed to': 814220, 'appealed to private': 82094, 'to private laboratory': 912156, 'private laboratory to': 678938, 'laboratory to offer': 478484, 'to offer covid': 910828, 'offer covid 19': 594561, 'covid 19 diagnosis': 212950, '19 diagnosis free': 6536, 'diagnosis free of': 240255, 'you spare': 1021314, 'spare few': 787475, 'few grocery': 303850, 'north west': 567688, 'west foodbank': 980497, 'foodbank when': 317803, 'are next': 88225, 'next in': 561409, 'supply running': 825791, 'since outbreak': 770781, 'can you spare': 160334, 'you spare few': 1021315, 'spare few grocery': 787476, 'few grocery to': 303852, 'grocery to donate': 366050, 'donate to the': 254269, 'to the north': 916905, 'the north west': 861877, 'north west foodbank': 567690, 'west foodbank when': 980498, 'foodbank when you': 317804, 'you are next': 1017176, 'are next in': 88226, 'next in the': 561412, 'the supermarket essential': 868576, 'supermarket essential supply': 820203, 'essential supply running': 281628, 'supply running low': 825792, 'running low since': 728003, 'low since outbreak': 505610, 'when inhuman': 983596, 'inhuman profiteering': 438482, 'profiteering is': 683057, 'pakistan making': 634472, 'mask rare': 519176, 'rare commodity': 697079, 'commodity indian': 189200, 'indian fmcg': 434834, 'slash the': 773599, 'when inhuman profiteering': 983597, 'inhuman profiteering is': 438483, 'profiteering is skyrocketing': 683059, 'skyrocketing in pakistan': 773434, 'in pakistan making': 426442, 'pakistan making hand': 634473, 'making hand sanitizers': 511104, 'face mask rare': 294580, 'mask rare commodity': 519177, 'rare commodity indian': 697080, 'commodity indian fmcg': 189201, 'indian fmcg company': 434835, 'company slash the': 191088, 'slash the price': 773600, 'drawer': 258494, 'squeaky': 791522, 'house until': 406647, 'until came': 943706, 'my drawer': 548034, 'drawer got': 258497, 'of welcome': 593017, 'welcome pack': 977891, 'pack when': 633193, 'when visited': 984387, '2018 and': 13870, 'keeping my': 472483, 'hand squeaky': 375791, 'squeaky clean': 791525, 'clean in': 180567, 'ireland thanks': 444852, 'thanks 19': 842003, 'wa running low': 963124, 'low on hand': 505460, 'sanitizer in the': 735159, 'the house until': 857647, 'house until came': 406648, 'until came across': 943707, 'across this in': 29540, 'this in one': 888049, 'of my drawer': 586758, 'my drawer got': 548035, 'drawer got this': 258498, 'got this part': 358942, 'part of welcome': 642392, 'of welcome pack': 593018, 'welcome pack when': 977892, 'pack when visited': 633194, 'when visited in': 984388, 'visited in 2018': 959483, 'in 2018 and': 419783, '2018 and now': 13872, 'and now it': 67849, 'now it keeping': 575121, 'it keeping my': 459268, 'keeping my hand': 472486, 'my hand squeaky': 548615, 'hand squeaky clean': 375792, 'squeaky clean in': 791526, 'clean in ireland': 180569, 'in ireland thanks': 424161, 'ireland thanks 19': 444853, 'enroll': 277835, 'qualifying': 691739, 'the circumstance': 850897, 'circumstance associated': 178710, '19 covered': 6174, 'covered ca': 212402, 'ca is': 154886, 'expanding it': 290504, 'it special': 461189, 'special enrollment': 787907, 'enrollment period': 277851, 'period any': 651715, 'any eligible': 79174, 'eligible consumer': 271413, 'can enroll': 158229, 'enroll in': 277838, 'in health': 423601, 'coverage without': 212390, 'without experiencing': 1002622, 'experiencing qualifying': 291694, 'qualifying life': 691740, 'life event': 488631, 'event or': 285044, 'other special': 620942, 'special circumstance': 787868, 'circumstance policy': 178740, 'effect until': 269152, 'until june': 943755, 'to the circumstance': 916560, 'the circumstance associated': 850898, 'circumstance associated with': 178711, 'associated with covid': 96934, 'covid 19 covered': 212877, '19 covered ca': 6175, 'covered ca is': 212403, 'ca is expanding': 154888, 'is expanding it': 447641, 'expanding it special': 290509, 'it special enrollment': 461190, 'special enrollment period': 787908, 'enrollment period any': 277852, 'period any eligible': 651716, 'any eligible consumer': 79175, 'eligible consumer can': 271414, 'consumer can enroll': 196723, 'can enroll in': 158231, 'enroll in health': 277839, 'in health coverage': 423603, 'health coverage without': 386317, 'coverage without experiencing': 212391, 'without experiencing qualifying': 1002623, 'experiencing qualifying life': 291695, 'qualifying life event': 691741, 'life event or': 488632, 'event or other': 285046, 'or other special': 616449, 'other special circumstance': 620943, 'special circumstance policy': 787869, 'circumstance policy will': 178741, 'be in effect': 115401, 'in effect until': 422510, 'effect until june': 269153, 'until june 30': 943757, 'disgusted now': 245371, 'wa mistake': 962639, 'mistake but': 534464, 'they bet': 881556, 'exposed they': 292885, 'simply made': 770240, 'made sure': 507974, 'disgusted now they': 245372, 'now they try': 576117, 'try to say': 934661, 'it wa mistake': 462149, 'wa mistake but': 962640, 'mistake but they': 534465, 'but they bet': 147494, 'they bet they': 881557, 'have changed the': 379945, 'changed the price': 172569, 'the price if': 864366, 'price if they': 674621, 'if they hadn': 415114, 'they hadn been': 882271, 'hadn been exposed': 373843, 'been exposed they': 121117, 'exposed they may': 292886, 'may have simply': 521256, 'have simply made': 382560, 'simply made sure': 770241, 'made sure they': 507977, 'sure they are': 827735, 'pharmacy to close': 654514, 'to close in': 902879, 'close in this': 182676, 'toughest': 926897, 'this ad': 886194, 'ad romance': 31149, 'romance seems': 725724, 'be rife': 116885, 'rife even': 721692, 'this toughest': 890828, 'toughest of': 926902, 'saw this ad': 738287, 'this ad romance': 886195, 'ad romance seems': 31150, 'romance seems to': 725725, 'to be rife': 901510, 'be rife even': 116886, 'rife even in': 721693, 'even in this': 284250, 'in this toughest': 430029, 'this toughest of': 890829, 'toughest of time': 926903, 'authorised': 103664, 'probably already': 679202, 'already aware': 47204, 'aware we': 105669, 'not authorised': 568286, 'authorised to': 103667, 'allow client': 45928, 'client into': 182053, 'our nursery': 624107, 'nursery currently': 577568, 'currently due': 221521, 'are however': 87254, 'however still': 409458, 'still offering': 800922, 'of plant': 588153, 'plant with': 658726, 'to certain': 902576, 'certain area': 169972, 'and discounted': 61411, 'discounted delivery': 244580, 'are probably already': 89237, 'probably already aware': 679203, 'already aware we': 47205, 'aware we are': 105670, 'are not authorised': 88327, 'not authorised to': 568287, 'authorised to allow': 103668, 'to allow client': 900326, 'allow client into': 45929, 'client into our': 182054, 'into our nursery': 442824, 'our nursery currently': 624108, 'nursery currently due': 577569, 'currently due to': 221522, 'we are however': 970594, 'are however still': 87256, 'however still offering': 409460, 'still offering delivery': 800923, 'offering delivery of': 595069, 'delivery of plant': 234235, 'of plant with': 588154, 'plant with free': 658727, 'free delivery to': 331760, 'delivery to certain': 234653, 'to certain area': 902577, 'certain area and': 169973, 'area and discounted': 91936, 'and discounted delivery': 61412, 'discounted delivery price': 244581, 'adhere': 32207, 'to adhere': 900101, 'adhere to': 32208, 'distancing requirement': 247423, 'requirement consumer': 713425, 'to commerce': 903067, 'commerce for': 188553, 'item here': 463328, 'order to adhere': 618662, 'to adhere to': 900102, 'adhere to the': 32215, '19 social distancing': 10666, 'social distancing requirement': 779699, 'distancing requirement consumer': 247424, 'requirement consumer are': 713426, 'consumer are turning': 196321, 'turning to commerce': 935962, 'to commerce for': 903069, 'commerce for essential': 188554, 'for essential item': 321109, 'essential item here': 281204, 'item here what': 463329, 'they re stocking': 883134, 're stocking up': 699617, 'separately': 751095, 'performed': 651478, '24th': 15777, 'be possible': 116474, 'component separately': 192558, 'separately and': 751096, 'this service': 890049, 'service performed': 752692, 'performed at': 651479, 'store especially': 807613, 'especially since': 280593, 'since non': 770765, 'in ontario': 426180, 'ontario after': 611579, 'after march': 35907, 'march 24th': 515198, 'obviously with all': 578869, '19 quarantine it': 9912, 'quarantine it would': 692320, 'not be possible': 568435, 'be possible to': 116478, 'possible to order': 665847, 'to order the': 911086, 'order the component': 618626, 'the component separately': 851408, 'component separately and': 192559, 'separately and have': 751097, 'and have this': 64288, 'have this service': 383107, 'this service performed': 890054, 'service performed at': 752693, 'performed at local': 651480, 'local store especially': 498461, 'store especially since': 807616, 'especially since non': 280596, 'since non essential': 770766, 'non essential retail': 566353, 'essential retail business': 281463, 'retail business are': 717902, 'business are to': 143395, 'are to be': 91107, 'to be closed': 901171, 'be closed in': 114129, 'closed in ontario': 183178, 'in ontario after': 426181, 'ontario after march': 611580, 'after march 24th': 35908, 'beaumont': 118652, 'kfdm': 473630, 'rocio': 724885, 'fe': 300983, 'madison bar': 508130, 'bar restaurant': 110750, 'in beaumont': 420742, 'beaumont pivot': 118653, 'pandemic kfdm': 635859, 'kfdm rocio': 473631, 'rocio de': 724886, 'de la': 229079, 'la fe': 478159, 'fe report': 300986, 'report how': 712020, 'is managing': 449566, 'his door': 397371, 'door open': 255682, 'madison bar restaurant': 508131, 'bar restaurant in': 110756, 'restaurant in beaumont': 716518, 'in beaumont pivot': 420743, 'beaumont pivot to': 118654, 'pivot to become': 657103, 'to become more': 901677, 'more like grocery': 539692, '19 pandemic kfdm': 9376, 'pandemic kfdm rocio': 635860, 'kfdm rocio de': 473632, 'rocio de la': 724887, 'de la fe': 229081, 'la fe report': 478160, 'fe report how': 300987, 'report how the': 712022, 'how the owner': 408860, 'the owner is': 862809, 'owner is managing': 632482, 'is managing to': 449569, 'managing to keep': 512912, 'keep his door': 471582, 'his door open': 397372, 'door open to': 255685, 'open to serve': 612601, 'to serve the': 914272, 'serve the public': 751948, 'dcra': 228999, 'permit': 652145, 'oconnor': 579125, 'and regulatory': 70171, 'regulatory affair': 708160, 'affair dcra': 34022, 'dcra close': 229000, 'person permit': 652580, 'permit and': 652148, 'and license': 66129, 'license in': 488140, 'by oconnor': 153390, 'consumer and regulatory': 196240, 'and regulatory affair': 70172, 'regulatory affair dcra': 708161, 'affair dcra close': 34023, 'dcra close in': 229001, 'close in person': 182672, 'in person permit': 426638, 'person permit and': 652581, 'permit and license': 652149, 'and license in': 66130, 'license in response': 488142, '19 by oconnor': 5568, 'essentialbusiness': 281881, 'zinccafeandmarket': 1027614, 'hospitalityindustry': 404820, 'turned our': 935863, 'retail department': 718031, 'department into': 237211, 'into beautiful': 442426, 'beautiful grocery': 118687, 'here daily': 392911, 'daily 8am': 224483, '8am 6pm': 23120, '6pm and': 21652, 'zero line': 1027470, 'line grocerystore': 493144, 'grocerystore essentialbusiness': 366300, 'essentialbusiness zinccafeandmarket': 281883, 'zinccafeandmarket supportsmallbusiness': 1027615, 'supportsmallbusiness hospitalityindustry': 827284, 'hospitalityindustry restaurant': 404821, 'restaurant cafe': 716345, 'we have turned': 971973, 'have turned our': 383429, 'turned our retail': 935864, 'our retail department': 624632, 'retail department into': 718032, 'department into beautiful': 237212, 'into beautiful grocery': 442427, 'beautiful grocery store': 118688, 'are here daily': 87117, 'here daily 8am': 392912, 'daily 8am 6pm': 224484, '8am 6pm and': 23121, '6pm and yes': 21653, 'and yes there': 75973, 'are zero line': 91903, 'zero line grocerystore': 1027471, 'line grocerystore essentialbusiness': 493145, 'grocerystore essentialbusiness zinccafeandmarket': 366301, 'essentialbusiness zinccafeandmarket supportsmallbusiness': 281884, 'zinccafeandmarket supportsmallbusiness hospitalityindustry': 1027616, 'supportsmallbusiness hospitalityindustry restaurant': 827285, 'hospitalityindustry restaurant cafe': 404822, 'offering grocery': 595133, 'during how': 262703, 'how fuckin': 407892, 'fuckin stupid': 339787, 'stupid we': 815492, 'being directed': 125052, 'directed to': 243419, 'drop this': 260415, 'service now': 752626, 'now smh': 575843, 'smh walmart': 775690, 'not offering grocery': 570732, 'offering grocery pick': 595134, 'pick up during': 655717, 'up during how': 944755, 'during how fuckin': 262705, 'how fuckin stupid': 407893, 'fuckin stupid we': 339788, 'stupid we are': 815493, 'are now being': 88529, 'now being directed': 574240, 'being directed to': 125053, 'directed to online': 243420, 'shopping or curbside': 763539, 'or curbside pickup': 614865, 'pickup but you': 655947, 'but you drop': 147984, 'you drop this': 1018368, 'drop this service': 260416, 'this service now': 890053, 'service now smh': 752628, 'now smh walmart': 575844, 'taking extra': 833354, 'precaution within': 669406, 'within our': 1002403, 'includes picking': 431800, 'or dropping': 615078, 'dropping off': 260706, 'off pet': 594068, 'pet online': 653427, 'shopping find': 762641, 'our facebook': 622979, '19 our team': 9065, 'our team is': 625105, 'team is taking': 835706, 'is taking extra': 452543, 'taking extra precaution': 833356, 'extra precaution within': 293615, 'precaution within our': 669407, 'within our shop': 1002406, 'our shop that': 624755, 'shop that includes': 760895, 'that includes picking': 844480, 'includes picking up': 431801, 'picking up or': 655880, 'up or dropping': 945679, 'or dropping off': 615079, 'dropping off pet': 260709, 'off pet online': 594069, 'pet online shopping': 653428, 'shopping or in': 763545, 'or in store': 615761, 'store shopping find': 810135, 'shopping find all': 762642, 'find all the': 306763, 'all the detail': 44717, 'detail on our': 239229, 'on our facebook': 602596, 'our facebook page': 622981, 'beasley': 118472, 'italianfood': 462742, 'christmas arrived': 178154, 'arrived early': 93955, 'the beasley': 849395, 'beasley household': 118473, 'household italianfood': 406859, 'italianfood delivery': 462743, 'amazing supermarket': 50788, 'in barcelona': 420701, 'barcelona lockdown2020': 110839, 'lockdown2020 spain': 500198, 'christmas arrived early': 178155, 'arrived early in': 93956, 'in the beasley': 429016, 'the beasley household': 849396, 'beasley household italianfood': 118474, 'household italianfood delivery': 406860, 'italianfood delivery from': 462744, 'delivery from an': 234044, 'from an amazing': 334477, 'an amazing supermarket': 55271, 'amazing supermarket in': 50789, 'supermarket in barcelona': 820865, 'in barcelona lockdown2020': 420703, 'barcelona lockdown2020 spain': 110840, 'broadway': 140786, '3kg': 18287, 'central typically': 169435, 'typically busy': 937649, 'evening broadway': 284863, 'broadway shopping': 140788, 'shopping centre': 762348, 'centre sydney': 169543, 'sydney no': 830703, 'food bought': 313768, 'bought two': 136772, 'two whole': 937381, 'whole chicken': 990161, 'in craze': 421853, 'craze of': 215201, 'buying 3kg': 149844, '3kg bag': 18288, 'potato which': 667001, 'wa revolution': 963101, 'in itself': 424326, 'out to central': 627628, 'to central typically': 902568, 'central typically busy': 169436, 'typically busy supermarket': 937650, 'busy supermarket this': 144979, 'this evening broadway': 887435, 'evening broadway shopping': 284864, 'broadway shopping centre': 140789, 'shopping centre sydney': 762355, 'centre sydney no': 169544, 'sydney no toilet': 830704, 'paper but plenty': 639972, 'of food bought': 583659, 'food bought two': 313771, 'bought two whole': 136774, 'two whole chicken': 937382, 'whole chicken in': 990162, 'chicken in craze': 175798, 'in craze of': 421854, 'craze of panic': 215202, 'panic buying 3kg': 637626, 'buying 3kg bag': 149845, '3kg bag of': 18289, 'bag of potato': 108362, 'of potato which': 588276, 'potato which wa': 667002, 'which wa revolution': 986450, 'wa revolution in': 963102, 'revolution in itself': 720749, 'offprem': 596075, 'research about': 713647, 'about cx': 25064, 'cx in': 223911, 'restaurant during': 716436, 'do most': 249608, 'most consumer': 542201, 'consumer prefer': 198404, 'restaurant order': 716617, 'order hint': 618298, 'hint most': 396911, 'most prefer': 542652, 'prefer drivethru': 669735, 'drivethru online': 259874, 'ordering delivery': 618954, 'delivery offprem': 234246, 'offprem qsr': 596077, 'new research about': 559459, 'research about cx': 713648, 'about cx in': 25065, 'cx in restaurant': 223912, 'in restaurant during': 427432, 'restaurant during how': 716437, 'during how do': 262704, 'how do most': 407720, 'do most consumer': 249609, 'most consumer prefer': 542203, 'consumer prefer to': 198405, 'prefer to get': 669755, 'get their restaurant': 348342, 'their restaurant order': 874581, 'restaurant order hint': 716618, 'order hint most': 618299, 'hint most prefer': 396912, 'most prefer drivethru': 542653, 'prefer drivethru online': 669736, 'drivethru online ordering': 259875, 'online ordering delivery': 608708, 'ordering delivery offprem': 618955, 'delivery offprem qsr': 234248, 'cbnnigeria': 168356, 'story no': 812051, 'fee charged': 302150, 'charged on': 173407, 'loan application': 497392, 'application cbnnigeria': 82441, 'cbnnigeria the': 168357, 'guardian nigeria': 367899, 'news nigeria': 560635, 'nigeria and': 562712, 'news see': 560776, 'top story no': 925730, 'story no fee': 812052, 'no fee charged': 564207, 'fee charged on': 302151, 'charged on covid': 173408, '19 loan application': 8353, 'loan application cbnnigeria': 497393, 'application cbnnigeria the': 82442, 'cbnnigeria the guardian': 168358, 'the guardian nigeria': 856910, 'guardian nigeria news': 367900, 'nigeria news nigeria': 562774, 'news nigeria and': 560636, 'nigeria and world': 562714, 'and world news': 75903, 'world news see': 1009832, 'news see more': 560778, 'chickenshortage': 175893, 'zero fresh': 1027452, 'at 10am': 97422, '10am on': 2296, 'thursday look': 895393, 'getting worse': 349449, 'worse chickenshortage': 1010905, 'zero fresh food': 1027453, 'fresh food in': 332969, 'food in packed': 314957, 'packed supermarket at': 633643, 'supermarket at 10am': 819227, 'at 10am on': 97426, '10am on thursday': 2298, 'on thursday look': 604672, 'thursday look like': 895394, 'look like it': 502488, 'like it getting': 490535, 'it getting worse': 458237, 'getting worse chickenshortage': 349453, 'sears': 743346, 'former sears': 329661, 'sears executive': 743350, 'executive say': 289933, 'will deal': 993100, 'death blow': 229986, 'the struggling': 868308, 'struggling department': 814431, 'turn the': 935767, 'former sears executive': 329663, 'sears executive say': 743351, 'executive say the': 289934, 'say the pandemic': 739298, 'pandemic will deal': 637005, 'will deal the': 993102, 'deal the death': 229500, 'the death blow': 852968, 'death blow to': 229987, 'blow to the': 133360, 'to the struggling': 917104, 'the struggling department': 868309, 'struggling department store': 814432, 'department store chain': 237269, 'way to turn': 970117, 'to turn the': 917849, 'turn the tide': 935769, 'kers': 473145, 'taxman': 835187, 'those kers': 892151, 'kers hiking': 473146, 'hiking and': 396365, 'and charging': 59751, 'time just': 897094, 'the taxman': 869181, 'taxman clean': 835190, 'clean you': 180690, 'out tax': 627296, 'tax taxman': 835101, 'taxman 21dayslockdown': 835188, '21dayslockdown socialdistancing': 15126, 'socialdistancingnow social': 780908, 'for those kers': 327120, 'those kers hiking': 892152, 'kers hiking and': 473147, 'hiking and charging': 396366, 'and charging extortionate': 59752, 'extortionate price during': 293391, 'tough time just': 926857, 'time just hope': 897097, 'just hope the': 468985, 'hope the taxman': 403689, 'the taxman clean': 869182, 'taxman clean you': 835191, 'clean you out': 180691, 'you out tax': 1020262, 'out tax taxman': 627297, 'tax taxman 21dayslockdown': 835102, 'taxman 21dayslockdown socialdistancing': 835189, '21dayslockdown socialdistancing socialdistancingnow': 15127, 'socialdistancing socialdistancingnow social': 780705, 'perimeter': 651687, 'what information': 981662, 'about do': 25116, 'supermarket perimeter': 821961, 'perimeter report': 651690, 'report please': 712174, 'tell in': 836989, 'the reply': 865525, 'reply or': 711747, 'or send': 617006, 'send direct': 749841, 'direct message': 243355, 'what information about': 981663, 'information about do': 437705, 'about do you': 25117, 'to see supermarket': 914076, 'see supermarket perimeter': 745769, 'supermarket perimeter report': 821962, 'perimeter report please': 651691, 'report please tell': 712175, 'please tell in': 660647, 'tell in the': 836990, 'in the reply': 429510, 'the reply or': 865527, 'reply or send': 711748, 'or send direct': 617007, 'send direct message': 749842, 'nvz': 577799, 'unfeasible': 941484, 'suckler': 816971, 'herd': 392602, 'welsh': 978883, 'dairy beef': 224958, 'and lamb': 65937, 'lamb price': 479163, 'fallen dramatically': 297145, 'dramatically due': 258339, 'our minister': 623922, 'minister announcing': 533331, 'announcing in': 77315, 'her coronavirus': 391964, 'crisis declaration': 217278, 'declaration nvz': 231159, 'nvz and': 577800, 'her intention': 392145, 'intention to': 441152, 'it unfeasible': 461927, 'unfeasible for': 941485, 'have suckler': 382838, 'suckler herd': 816972, 'herd of': 392615, '20 welsh': 13407, 'welsh black': 978884, 'black hold': 132070, 'dairy beef and': 224959, 'beef and lamb': 120478, 'and lamb price': 65938, 'lamb price have': 479165, 'price have fallen': 674427, 'have fallen dramatically': 380567, 'fallen dramatically due': 297146, 'dramatically due to': 258340, '19 so what': 10657, 'so what is': 778721, 'what is our': 981717, 'is our minister': 450631, 'our minister announcing': 623924, 'minister announcing in': 533332, 'announcing in her': 77316, 'in her coronavirus': 423655, 'her coronavirus crisis': 391965, 'coronavirus crisis declaration': 205747, 'crisis declaration nvz': 217279, 'declaration nvz and': 231160, 'nvz and her': 577801, 'and her intention': 64514, 'her intention to': 392146, 'intention to make': 441153, 'make it unfeasible': 510064, 'it unfeasible for': 461928, 'unfeasible for me': 941486, 'me to have': 523757, 'to have suckler': 907318, 'have suckler herd': 382839, 'suckler herd of': 816973, 'herd of 20': 392616, 'of 20 welsh': 579452, '20 welsh black': 13408, 'welsh black hold': 978885, 'this thoughtful': 890586, 'thoughtful generous': 893350, 'please tweet': 660695, 'tweet your': 936429, 'your gofundme': 1024069, 'gofundme detail': 354920, 'detail some': 239251, 'some can': 782470, 'all contribute': 42444, 'contribute stayhomesavelives': 201874, 'well done for': 978179, 'done for this': 254844, 'for this thoughtful': 327076, 'this thoughtful generous': 890587, 'thoughtful generous and': 893351, 'generous and much': 345717, 'and much needed': 67308, 'much needed food': 545150, 'needed food delivery': 556353, 'service to vulnerable': 752997, 'vulnerable people please': 961104, 'people please tweet': 649139, 'please tweet your': 660697, 'tweet your gofundme': 936430, 'your gofundme detail': 1024070, 'gofundme detail some': 354921, 'detail some can': 239252, 'some can all': 782471, 'can all contribute': 157420, 'all contribute stayhomesavelives': 42445, 'auchan': 102817, 'chain auchan': 170533, 'auchan france': 102820, 'france give': 330998, 'give 00': 350351, '00 bonus': 86, 'it 65': 456218, '65 00': 21332, 'thank their': 841652, 'their dedication': 872988, 'dedication against': 231770, 'french supermarket chain': 332757, 'supermarket chain auchan': 819596, 'chain auchan france': 170534, 'auchan france give': 102821, 'france give 00': 330999, 'give 00 bonus': 350352, '00 bonus to': 87, 'bonus to each': 134410, 'to each of': 904826, 'each of it': 264135, 'of it 65': 585359, 'it 65 00': 456219, '65 00 employee': 21333, 'employee to thank': 274336, 'to thank their': 916435, 'thank their dedication': 841653, 'their dedication against': 872989, 'dedication against corona': 231771, 'uk stayathome': 938735, 'stayathome shopping': 797609, 'supermarket all': 818864, 'all slot': 44362, 'taken till': 833090, 'till 06': 895970, '06 04': 981, '04 what': 926, 'uk stayathome shopping': 938736, 'stayathome shopping there': 797611, 'shopping there is': 764106, 'way to order': 970062, 'order online delivery': 618466, 'delivery in any': 234112, 'in any major': 420429, 'major supermarket all': 509482, 'supermarket all slot': 818874, 'all slot are': 44363, 'slot are taken': 774121, 'are taken till': 90708, 'taken till 06': 833091, 'till 06 04': 895971, '06 04 what': 983, '04 what am': 927, 'invite': 444268, 'understandable': 940839, 'from email': 335265, 'email we': 272362, 'have sale': 382387, 'sale flyer': 732224, 'flyer for': 311648, 'of 29': 579547, '29 2020': 16453, '2020 2020': 14103, 'we invite': 972085, 'invite you': 444271, 'shop mb': 760453, 'mb for': 522029, 'our everyday': 622936, 'everyday low': 286596, 'price totally': 677099, 'totally understandable': 926406, 'understandable if': 940842, 'plain smart': 658021, 'smart thanks': 775435, 'letting know': 487420, 'work bewell': 1004944, 'from email we': 335268, 'email we will': 272364, 'not have sale': 569866, 'have sale flyer': 382388, 'sale flyer for': 732225, 'flyer for the': 311649, 'week of 29': 976603, 'of 29 2020': 579548, '29 2020 2020': 16454, '2020 2020 we': 14104, '2020 we invite': 14702, 'we invite you': 972086, 'invite you to': 444272, 'to shop mb': 914471, 'shop mb for': 760454, 'mb for all': 522030, 'of our everyday': 587464, 'our everyday low': 622938, 'everyday low price': 286597, 'low price totally': 505544, 'price totally understandable': 677100, 'totally understandable if': 926407, 'understandable if not': 940843, 'if not just': 414501, 'not just plain': 570243, 'just plain smart': 469454, 'plain smart thanks': 658022, 'smart thanks for': 775436, 'thanks for letting': 842065, 'for letting know': 322950, 'letting know keep': 487421, 'know keep up': 476559, 'good work bewell': 357977, 'the lab': 858880, 'lab hopefully': 478266, 'hopefully these': 403888, 'useful wereallinthistogether': 950209, 'out the lab': 627382, 'the lab hopefully': 858881, 'lab hopefully these': 478267, 'hopefully these will': 403889, 'these will be': 880973, 'be useful wereallinthistogether': 117936, 'subsistence': 816027, 'miner': 532953, 'subsistence miner': 816030, 'miner lose': 532962, 'lose out': 503463, 'out crush': 625918, 'crush local': 219776, 'local gold': 498016, 'subsistence miner lose': 816031, 'miner lose out': 532963, 'lose out crush': 503464, 'out crush local': 625919, 'crush local gold': 219777, 'local gold price': 498017, 'walk drive': 964768, 'leave online': 484881, 'aren physically': 92476, 'physically able': 655505, 'house whether': 406676, 'whether that': 985572, 'an existing': 55950, 'condition or': 193502, 'or due': 615091, 'coronavirus self': 206741, 'isolation panicbuying': 455383, 'think that if': 885593, 'to walk drive': 918300, 'walk drive to': 964769, 'the shop please': 867023, 'shop please do': 760669, 'please do and': 659891, 'do and leave': 249070, 'and leave online': 66056, 'leave online shopping': 484882, 'shopping for those': 762720, 'who aren physically': 988267, 'aren physically able': 92477, 'physically able to': 655506, 'able to leave': 24500, 'the house whether': 857650, 'house whether that': 406677, 'whether that an': 985573, 'that an existing': 842645, 'an existing condition': 55951, 'existing condition or': 290298, 'condition or due': 193503, 'or due to': 615092, 'the coronavirus self': 851909, 'coronavirus self isolation': 206742, 'self isolation panicbuying': 747790, 'isolation panicbuying supermarket': 455384, 'question give': 693597, 'have question give': 382133, 'question give call': 693598, 'call today due': 156198, 'lastroll': 480798, 'shitjustgotreal': 759335, 'me roll': 523401, 'toiletpaper lastroll': 922174, 'lastroll shitjustgotreal': 480799, 'is anyone willing': 445770, 'willing to sell': 995476, 'sell me roll': 748792, 'me roll of': 523402, 'paper toiletpaper lastroll': 640948, 'toiletpaper lastroll shitjustgotreal': 922175, 'scripture': 742865, 'support needed': 826666, 'needed on': 556452, '19 attack': 5261, 'attack other': 102138, 'than making': 840864, 'family being': 297653, 'home not': 401669, 'cnn tv': 184781, 'tv announcement': 936088, 'announcement free': 77149, '19 declaration': 6462, 'declaration moving': 231157, 'moving from': 544150, 'from place': 336929, 'inevitable due': 436378, 'of dd': 582394, 'dd supply': 229013, 'supply bible': 824853, 'bible scripture': 129434, 'scripture act': 742866, 'act 36': 29578, 'support needed on': 826667, 'needed on covid': 556453, 'covid 19 attack': 212663, '19 attack other': 5262, 'attack other than': 102139, 'other than making': 621072, 'than making huge': 840865, 'making huge stock': 511120, 'stock of more': 802533, 'of more of': 586646, 'more of food': 539873, 'of food staff': 583783, 'staff for our': 792465, 'for our family': 324238, 'our family being': 622993, 'family being at': 297654, 'at home not': 99060, 'home not wait': 401675, 'not wait cnn': 572422, 'wait cnn tv': 964093, 'cnn tv announcement': 184782, 'tv announcement free': 936089, 'announcement free from': 77150, 'covid 19 declaration': 212921, '19 declaration moving': 6463, 'declaration moving from': 231158, 'moving from place': 544151, 'from place to': 336931, 'place to place': 657762, 'to place is': 911751, 'place is inevitable': 657525, 'is inevitable due': 448894, 'inevitable due to': 436379, 'the law of': 859188, 'law of dd': 482352, 'of dd supply': 582395, 'dd supply bible': 229014, 'supply bible scripture': 824854, 'bible scripture act': 129435, 'scripture act 36': 742867, 'browsing in': 141300, 'over going': 630250, 'going family': 355136, 'we gon': 971660, 'gon learn': 356179, 'hard way': 378099, 'way socialdistancing': 969882, 'browsing in the': 141301, 'is over going': 450701, 'over going family': 630251, 'going family to': 355137, 'over we gon': 630898, 'we gon learn': 971661, 'gon learn the': 356180, 'learn the hard': 484071, 'the hard way': 857104, 'hard way socialdistancing': 378101, 'is stranger': 452363, 'stranger than': 812490, 'than fiction': 840646, 'fiction calculator': 304419, 'calculator thing': 155352, 'weird 19': 977735, 'truth is stranger': 934397, 'is stranger than': 452364, 'stranger than fiction': 812492, 'than fiction calculator': 840647, 'fiction calculator thing': 304420, 'calculator thing are': 155353, 'are getting weird': 86834, 'getting weird 19': 349437, 'heathen': 388518, 'ruin': 727103, 'wa fully': 962185, 'stocked on': 803360, 'everything with': 288113, 'big crowd': 129723, 'crowd and': 219116, 'quick checkout': 694297, 'checkout not': 174961, 'you heathen': 1019189, 'heathen which': 388519, 'one because': 605986, 'will exploit': 993379, 'exploit it': 292341, 'and ruin': 70622, 'ruin it': 727112, 'went to local': 979170, 'to local grocery': 909377, 'today that wa': 920274, 'that wa fully': 847282, 'wa fully stocked': 962186, 'fully stocked on': 341095, 'stocked on everything': 803361, 'on everything with': 600652, 'everything with no': 288114, 'with no big': 999735, 'no big crowd': 563697, 'big crowd and': 129724, 'crowd and quick': 219118, 'and quick checkout': 69879, 'quick checkout not': 694298, 'checkout not telling': 174962, 'telling you heathen': 837296, 'you heathen which': 1019190, 'heathen which one': 388520, 'which one because': 986195, 'one because you': 605987, 'because you will': 119882, 'you will exploit': 1022332, 'will exploit it': 993380, 'exploit it and': 292342, 'it and ruin': 456512, 'and ruin it': 70623, 'ruin it for': 727113, 'parked': 642034, 'quite the': 694925, 'greedy shit': 363602, 'shit are': 759061, 'all parked': 43917, 'parked up': 642045, 'park grabbing': 641917, 'grabbing food': 361583, 'probably don': 679252, 'panicbuying greed': 638952, 'found out why': 330330, 'out why the': 627849, 'why the road': 991432, 'road are quite': 724414, 'are quite the': 89410, 'quite the greedy': 694927, 'the greedy shit': 856770, 'greedy shit are': 363603, 'shit are all': 759062, 'are all parked': 84335, 'all parked up': 43918, 'parked up in': 642047, 'up in supermarket': 945183, 'car park grabbing': 163222, 'park grabbing food': 641918, 'grabbing food they': 361585, 'food they probably': 317174, 'they probably don': 882914, 'probably don need': 679255, 'don need panicbuying': 253766, 'need panicbuying greed': 555412, 'quickly headed': 694539, 'headed for': 385898, 'for dystopian': 320893, 'shit hasn': 759125, 'fan yet': 298548, 'yet wild': 1016330, 'wild time': 992087, 'time ahead': 896219, 'show we are': 767268, 'we are quickly': 970678, 'are quickly headed': 89399, 'quickly headed for': 694540, 'headed for dystopian': 385899, 'for dystopian nightmare': 320894, 'nightmare amp the': 563171, 'amp the shit': 54667, 'the shit hasn': 866953, 'shit hasn even': 759126, 'hasn even come': 378743, 'even come close': 283962, 'to the fan': 916696, 'the fan yet': 854918, 'fan yet wild': 298549, 'yet wild time': 1016331, 'wild time ahead': 992088, 'hollywood costume': 400449, 'costume designer': 208369, 'designer fight': 238378, 'fight back': 304668, 'back against': 106830, 'coronavirus by': 205590, 'by stitching': 154120, 'stitching facemasks': 801710, 'facemasks hollywood': 295146, 'costume design': 208367, 'design facemask': 238232, 'facemask mask': 295088, 'mask stayathome': 519304, 'stayathome workfromhome': 797708, 'workfromhome staysafe': 1008439, 'safetyfirst business': 730796, 'hollywood costume designer': 400451, 'costume designer fight': 208370, 'designer fight back': 238379, 'fight back against': 304669, 'back against coronavirus': 106832, 'against coronavirus by': 37386, 'coronavirus by stitching': 205595, 'by stitching facemasks': 154121, 'stitching facemasks hollywood': 801711, 'facemasks hollywood costume': 295147, 'hollywood costume design': 400450, 'costume design facemask': 208368, 'design facemask mask': 238233, 'facemask mask stayathome': 295089, 'mask stayathome workfromhome': 519307, 'stayathome workfromhome staysafe': 797710, 'workfromhome staysafe safetyfirst': 1008440, 'staysafe safetyfirst business': 798872, 'redirected': 705717, 'zealand beef': 1027272, 'rise export': 722844, 'previously destined': 672033, 'destined for': 238993, 'being redirected': 125651, 'redirected to': 705720, 'canada monthly': 160497, 'monthly sale': 538198, '48 thank': 19331, 'you cptpp': 1018122, 'falling falling': 297256, 'packer are': 633676, 'are profitable': 89262, 'new zealand beef': 559979, 'zealand beef export': 1027273, 'export to the': 292722, 'to the united': 917158, 'united state and': 942203, 'state and canada': 795357, 'canada are on': 160367, 'the rise export': 865851, 'rise export previously': 722845, 'export previously destined': 292687, 'previously destined for': 672034, 'destined for china': 238994, 'for china are': 320066, 'are being redirected': 84906, 'being redirected to': 125652, 'redirected to canada': 705721, 'to canada monthly': 902412, 'canada monthly sale': 160498, 'monthly sale up': 538200, 'up 48 thank': 944181, '48 thank you': 19332, 'thank you cptpp': 841715, 'you cptpp our': 1018123, 'our market are': 623863, 'market are falling': 516019, 'are falling falling': 86464, 'falling falling falling': 297257, 'falling falling price': 297258, 'falling price arbitrage': 297317, 'zealand packer are': 1027300, 'packer are profitable': 633677, 'sept': 751146, 'we partnered': 972693, 'with office': 999852, 'general of': 345416, 'of iowa': 585290, 'iowa to': 444511, 'act the': 29786, 'act offer': 29727, 'some student': 783976, 'student borrower': 814655, 'borrower and': 135612, 'and suspends': 72912, 'suspends payment': 829673, 'on federal': 600768, 'federal student': 302065, 'loan until': 497548, 'until sept': 943826, 'sept 30': 751149, 'we partnered with': 972694, 'partnered with office': 642924, 'with office of': 999853, 'office of the': 595502, 'of the attorney': 590807, 'attorney general of': 102653, 'general of iowa': 345418, 'of iowa to': 585291, 'iowa to spread': 444512, 'the word about': 871697, 'word about the': 1004443, 'care act the': 163822, 'act the care': 29787, 'care act offer': 163818, 'act offer relief': 29728, 'offer relief to': 594766, 'relief to some': 709481, 'to some student': 914890, 'some student borrower': 783977, 'student borrower and': 814656, 'borrower and suspends': 135613, 'and suspends payment': 72913, 'suspends payment on': 829674, 'payment on federal': 645689, 'on federal student': 600771, 'federal student loan': 302066, 'student loan until': 814731, 'loan until sept': 497549, 'until sept 30': 943827, 'continent': 200928, 'exported': 292734, 'in early': 422444, 'early 2020': 264530, '2020 china': 14224, 'china run': 176921, 'run china': 727599, 'china connected': 176576, 'connected company': 194645, 'company had': 190721, 'had employee': 373069, 'employee buy': 273693, 'buy ton': 149385, 'ton ton': 924301, 'in multiple': 425504, 'multiple continent': 545739, 'continent often': 200931, 'often cleaning': 596174, 'out stock': 627256, 'stock these': 802963, 'these were': 880955, 'were shipped': 980106, 'shipped to': 758810, 'china exported': 176647, 'exported the': 292739, 'in early 2020': 422446, 'early 2020 china': 264531, '2020 china run': 14226, 'china run china': 176922, 'run china connected': 727600, 'china connected company': 176577, 'connected company had': 194646, 'company had employee': 190722, 'had employee buy': 373070, 'employee buy ton': 273694, 'buy ton ton': 149387, 'ton ton of': 924302, 'ton of ppe': 924282, 'of ppe sanitizer': 588323, 'ppe sanitizer in': 668045, 'sanitizer in multiple': 735147, 'in multiple continent': 425505, 'multiple continent often': 545740, 'continent often cleaning': 200932, 'often cleaning out': 596175, 'cleaning out stock': 181006, 'out stock these': 627257, 'stock these were': 802964, 'these were shipped': 880957, 'were shipped to': 980107, 'shipped to china': 758811, 'to china china': 902723, 'china china exported': 176563, 'china exported the': 176648, 'exported the co': 292740, 'hayfever': 384528, 'our april': 622102, 'april issue': 83623, 'here featuring': 392967, 'featuring celebrating': 301584, 'celebrating 10': 168828, 'uk our': 938596, 'retail panel': 718374, 'panel share': 637196, 'effect ha': 269008, 'ha on': 371430, 'business addressing': 143235, 'addressing in': 32094, 'store hayfever': 808113, 'hayfever season': 384529, 'season arrives': 743378, 'arrives latest': 93995, 'news amp': 560220, 'amp retail': 54404, 'trend read': 931425, 'our april issue': 622103, 'april issue is': 83624, 'issue is here': 455816, 'is here featuring': 448421, 'here featuring celebrating': 392968, 'featuring celebrating 10': 301585, 'celebrating 10 year': 168829, '10 year of': 1773, 'year of uk': 1014798, 'of uk our': 592575, 'uk our retail': 938597, 'our retail panel': 624637, 'retail panel share': 718375, 'panel share the': 637197, 'share the effect': 755245, 'the effect ha': 854064, 'effect ha on': 269009, 'ha on business': 371431, 'on business addressing': 599735, 'business addressing in': 143236, 'addressing in store': 32095, 'in store hayfever': 428419, 'store hayfever season': 808114, 'hayfever season arrives': 384530, 'season arrives latest': 743379, 'arrives latest news': 93996, 'latest news amp': 481450, 'news amp retail': 560222, 'amp retail trend': 54406, 'retail trend read': 718818, 'trend read here': 931426, 'survived pandemic': 829323, 'stayhome toiletpaper': 798211, 'toiletpaper lockdown': 922193, 'lockdown virus': 500111, 'virus healthcareheroes': 958274, 'healthcareheroes selfquarantine': 387422, 'selfquarantine selfisolating': 748571, 'survived pandemic stayhome': 829324, 'pandemic stayhome toiletpaper': 636543, 'stayhome toiletpaper lockdown': 798212, 'toiletpaper lockdown virus': 922198, 'lockdown virus healthcareheroes': 500112, 'virus healthcareheroes selfquarantine': 958275, 'healthcareheroes selfquarantine selfisolating': 387423, 'versatility': 954889, 'shelie': 757867, 'miller': 532035, 'alternate title': 49192, 'title the': 899295, 'one where': 607425, 'sport writer': 789991, 'writer talk': 1012812, 'to sustainability': 916080, 'sustainability expert': 829760, 'expert about': 291759, '19 versatility': 11747, 'versatility my': 954890, 'morning with': 541547, 'with michigan': 999490, 'michigan professor': 530360, 'professor shelie': 682588, 'shelie miller': 757868, 'miller on': 532040, 'on panic': 602688, 'alternate title the': 49193, 'title the one': 899296, 'the one where': 862232, 'one where the': 607426, 'where the sport': 985249, 'the sport writer': 867595, 'sport writer talk': 789992, 'writer talk to': 1012813, 'talk to sustainability': 833892, 'to sustainability expert': 916081, 'sustainability expert about': 829761, 'expert about the': 291761, 'about the supply': 26534, 'chain during covid': 170666, 'covid 19 versatility': 214022, '19 versatility my': 11748, 'versatility my morning': 954891, 'my morning with': 549316, 'morning with michigan': 541550, 'with michigan professor': 999491, 'michigan professor shelie': 530361, 'professor shelie miller': 682589, 'shelie miller on': 757869, 'miller on panic': 532041, 'on panic buying': 602689, 'buying and food': 149906, 'vulnerablehour': 961274, 'doe vulnerable': 251660, 'vulnerable supermarket': 961187, 'hour include': 405697, 'include all': 431511, 'all group': 43014, 'group listed': 366758, 'government website': 360790, 'website being': 975221, 'risk can': 723443, 'time if': 896960, 'am pregnant': 50317, 'pregnant my': 669833, 'seriously struggling': 751737, 'distancing vulnerablehour': 247598, 'vulnerablehour supermarket': 961275, 'supermarket pregnant': 822050, 'doe vulnerable supermarket': 251661, 'vulnerable supermarket hour': 961188, 'supermarket hour include': 820801, 'hour include all': 405698, 'include all group': 431513, 'all group listed': 43015, 'group listed on': 366759, 'listed on the': 494635, 'on the government': 604147, 'the government website': 856624, 'government website being': 360791, 'website being at': 975222, 'being at higher': 124876, 'higher risk can': 395725, 'risk can come': 723444, 'can come at': 157930, 'come at this': 187228, 'this time if': 890650, 'time if am': 896961, 'if am pregnant': 413805, 'am pregnant my': 50318, 'pregnant my husband': 669834, 'husband is seriously': 411727, 'is seriously struggling': 451803, 'seriously struggling to': 751738, 'get food while': 347078, 'food while social': 317598, 'social distancing vulnerablehour': 779757, 'distancing vulnerablehour supermarket': 247599, 'vulnerablehour supermarket pregnant': 961276, '20 using': 13401, 'using soap': 950654, 'attack scam': 102146, 'scam stayprivate': 740373, 'aware of with': 105648, 'of with coronavirus': 593205, 'with coronavirus cough': 997799, 'sneeze into tissue': 776253, 'into tissue wash': 443238, 'for 20 using': 318733, '20 using soap': 13402, 'using soap and': 950655, 'phishing attack scam': 654803, 'attack scam stayprivate': 102147, 'scam stayprivate phishing': 740374, 'after hoarding': 35795, 'hoarding medical': 399426, 'foreign factory': 328975, 'ccp ha': 168458, 'begun distributing': 123701, 'distributing mask': 248087, 'equipment one': 279795, 'which large': 986095, 'large part': 479736, 'part is': 642306, 'and calling': 59429, 'help china': 389487, 'after hoarding medical': 35796, 'hoarding medical supply': 399427, 'and foreign factory': 63194, 'foreign factory and': 328976, 'factory and blocking': 295918, 'and blocking their': 59020, 'their export the': 873211, 'export the ccp': 292714, 'the ccp ha': 850558, 'ccp ha begun': 168459, 'ha begun distributing': 369994, 'begun distributing mask': 123702, 'distributing mask and': 248088, 'medical equipment one': 526159, 'equipment one of': 279796, 'one of which': 606772, 'of which large': 593107, 'which large part': 986096, 'large part is': 479737, 'part is defective': 642307, 'charging money and': 173504, 'money and calling': 536593, 'and calling it': 59432, 'calling it help': 156588, 'it help china': 458537, 'haven panic': 383865, 'bought anything': 136505, 'anything only': 80846, 'only made': 610744, 'made small': 507952, 'small refill': 775084, 'refill shop': 706553, 'shop we': 761018, 'we took': 973555, 'took all': 925204, 'and took': 74275, 'took inventory': 925260, 'month eat': 537699, 'eat what': 266105, 'you already': 1016936, 'haven panic bought': 383866, 'panic bought anything': 637415, 'bought anything only': 136506, 'anything only made': 80847, 'only made small': 610746, 'made small refill': 507953, 'small refill shop': 775085, 'refill shop we': 706554, 'shop we took': 761020, 'we took all': 973556, 'took all the': 925205, 'the food out': 855582, 'food out of': 315710, 'of the cupboard': 590916, 'and freezer and': 63286, 'freezer and took': 332582, 'and took inventory': 74276, 'took inventory we': 925261, 'inventory we will': 443726, 'will not need': 994249, 'do grocery store': 249360, 'store for about': 807785, 'for about month': 318981, 'about month eat': 25746, 'month eat what': 537700, 'eat what you': 266107, 'what you already': 982659, 'you already have': 1016940, 'sakshi': 731898, 'upla': 947583, 'sakshi upla': 731899, 'upla government': 947584, 'government concerned': 359986, 'concerned authority': 193186, 'responded check': 715349, 'this fmcg': 887561, 'sakshi upla government': 731900, 'upla government concerned': 947585, 'government concerned authority': 359987, 'concerned authority have': 193187, 'authority have responded': 103739, 'have responded check': 382294, 'responded check this': 715350, 'check this fmcg': 174675, 'this fmcg company': 887562, 'seinfeld': 747417, 'elaine wa': 270482, 'wa decade': 961920, 'decade ahead': 230665, 'her time': 392452, 'time seinfeld': 897634, 'seinfeld toiletpaper': 747418, 'elaine wa decade': 270483, 'wa decade ahead': 961921, 'decade ahead of': 230666, 'ahead of her': 39182, 'of her time': 584586, 'her time seinfeld': 392455, 'time seinfeld toiletpaper': 897635, 'city wrong': 179471, 'wrong time': 1013129, 'get job': 347447, 'money plus': 536974, 'plus it': 661627, 'for tescos': 326222, 'tescos but': 838872, 'but scared': 146976, 'scared asf': 740947, 'asf of': 95014, 'so pray': 778061, 'just got job': 468861, 'got job at': 358657, 'at the biggest': 100891, 'biggest supermarket in': 130333, 'the city wrong': 850969, 'city wrong time': 179472, 'wrong time to': 1013130, 'to get job': 906519, 'get job but': 347449, 'job but need': 465711, 'but need the': 146458, 'the money plus': 860820, 'money plus it': 536975, 'plus it support': 661630, 'it support for': 461381, 'support for tescos': 826524, 'for tescos but': 326223, 'tescos but scared': 838873, 'but scared asf': 146977, 'scared asf of': 740948, 'asf of catching': 95015, 'of catching the': 581210, 'catching the coronavirus': 167114, 'coronavirus so pray': 206780, 'so pray for': 778062, 'buy also': 148300, 'also stock': 48908, 'food panicbuy': 315756, 'panic buy also': 637463, 'buy also stock': 148301, 'also stock up': 48909, 'on food panicbuy': 600895, 'concluded': 193308, 'chinese concluded': 177220, 'concluded most': 193309, 'most case': 542160, 'case so': 166017, 'so their': 778446, 'their data': 872974, 'more reliable': 540220, 'reliable in': 709205, 'state people': 795854, 'stockpiling weapon': 804117, 'weapon to': 974264, 'the civil': 850970, 'is broken': 446279, 'broken by': 140886, 'by lack': 153009, 'the probability': 864501, 'probability show': 679188, 'panic about covid': 637254, '19 the chinese': 11173, 'the chinese concluded': 850848, 'chinese concluded most': 177221, 'concluded most case': 193310, 'most case so': 542164, 'case so their': 166018, 'so their data': 778447, 'their data is': 872976, 'data is more': 226288, 'is more reliable': 449722, 'more reliable in': 540221, 'reliable in the': 709207, 'united state people': 942235, 'state people are': 795855, 'people are stockpiling': 647092, 'are stockpiling weapon': 90531, 'stockpiling weapon to': 804118, 'weapon to survive': 974265, 'survive the civil': 829242, 'the civil war': 850971, 'civil war if': 179565, 'war if it': 966462, 'it is broken': 458892, 'is broken by': 446280, 'broken by lack': 140887, 'by lack of': 153010, 'basic necessity the': 112004, 'necessity the probability': 554271, 'the probability show': 864503, 'seriously bad': 751542, 'least people': 484598, 'joe giant': 466412, 'this is seriously': 888393, 'is seriously bad': 451796, 'seriously bad news': 751544, 'news for all': 560423, 'all of grocery': 43691, 'of grocery worker': 584365, 'at least people': 99535, 'least people who': 484599, 'trader joe giant': 928712, 'joe giant have': 466414, '30am and': 17406, 'daily fresh': 224622, 'pressure but': 671138, 'but coping': 145460, 'coping no': 203383, 'milk produce': 531786, 'produce which': 680485, 'all supplied': 44559, 'and sourced': 72022, 'sourced locally': 786598, 'locally team': 498783, 'team work': 835835, 'work delivered': 1005036, '30am and the': 17407, 'and the daily': 73312, 'the daily fresh': 852779, 'daily fresh food': 224623, 'fresh food are': 332960, 'food are here': 313409, 'here the fresh': 393650, 'the fresh food': 855801, 'fresh food supply': 332979, 'chain is under': 170850, 'is under pressure': 453465, 'under pressure but': 940201, 'pressure but coping': 671139, 'but coping no': 145461, 'coping no need': 203384, 'panic buy bread': 637471, 'buy bread milk': 148445, 'bread milk produce': 138533, 'milk produce which': 531787, 'produce which is': 680486, 'which is all': 985979, 'is all supplied': 445465, 'all supplied and': 44560, 'supplied and sourced': 824448, 'and sourced locally': 72023, 'sourced locally team': 786599, 'locally team work': 498784, 'team work delivered': 835836, 'nighttime': 563201, 'deluxe covid': 234843, '19 apparel': 5174, 'apparel set': 81878, 'set suitable': 753479, 'or nighttime': 616250, 'nighttime wear': 563203, 'wear get': 974328, 'get yours': 348747, 'yours now': 1026470, 'now while': 576404, 'they last': 882537, 'last very': 480617, 'supply located': 825517, 'located next': 498819, 'tp section': 927931, 'your favourite': 1023836, 'favourite grocery': 300595, 'store act': 806069, 'deluxe covid 19': 234844, 'covid 19 apparel': 212641, '19 apparel set': 5175, 'apparel set suitable': 81879, 'set suitable for': 753480, 'suitable for day': 817813, 'for day and': 320564, 'day and or': 227275, 'and or nighttime': 68221, 'or nighttime wear': 616251, 'nighttime wear get': 563204, 'wear get yours': 974329, 'get yours now': 348749, 'yours now while': 1026474, 'now while they': 576405, 'while they last': 987439, 'they last very': 882538, 'last very limited': 480618, 'very limited supply': 955314, 'limited supply located': 492736, 'supply located next': 825518, 'located next to': 498820, 'to the tp': 917137, 'the tp section': 869844, 'tp section at': 927932, 'section at your': 744002, 'at your favourite': 101677, 'your favourite grocery': 1023837, 'favourite grocery store': 300596, 'grocery store act': 365175, 'store act now': 806071, 'donor': 255155, 'gop senator': 358278, 'senator kept': 749765, 'kept coronavirus': 473032, 'coronavirus info': 206141, 'info secret': 437576, 'secret for': 743918, 'but shared': 147019, 'shared it': 755419, 'with wealthy': 1002049, 'wealthy donor': 974197, 'donor so': 255166, 'off security': 594130, 'security at': 744549, 'gop senator kept': 358280, 'senator kept coronavirus': 749766, 'kept coronavirus info': 473033, 'coronavirus info secret': 206142, 'info secret for': 437577, 'secret for week': 743919, 'for week but': 327694, 'week but shared': 976040, 'but shared it': 147020, 'shared it with': 755420, 'it with wealthy': 462484, 'with wealthy donor': 1002050, 'wealthy donor so': 974198, 'donor so they': 255167, 'so they could': 778467, 'they could sell': 881838, 'could sell off': 209648, 'sell off security': 748817, 'off security at': 594131, 'security at high': 744551, 'store shop': 810116, 'needy and': 556668, 'you fuck': 1018728, 'off sick': 594161, 'sick myself': 768522, 'are bastard': 84788, 'the store shop': 868102, 'store shop supermarket': 810121, 'people who raise': 650331, 'raise price and': 695906, 'price and make': 672462, 'and make profit': 66572, 'make profit from': 510363, 'from the needy': 337800, 'the needy and': 861410, 'needy and sick': 556669, 'and sick people': 71639, 'sick people is': 768578, 'people is this': 648526, 'is this for': 453087, 'this for you': 887599, 'for you fuck': 328058, 'you fuck off': 1018729, 'fuck off sick': 339616, 'off sick myself': 594162, 'sick myself and': 768523, 'myself and people': 550826, 'and people and': 68850, 'people and company': 646851, 'and company like': 60192, 'company like you': 190848, 'you are bastard': 1017071, 'groceryretail': 366236, 'up morale': 945399, 'morale in': 538420, 'staff do': 792377, 'job best': 465697, 'can groceryretail': 158536, 'groceryretail supermarket': 366237, 'employee are the': 273630, 'you can keep': 1017709, 'can keep up': 158819, 'keep up morale': 472175, 'up morale in': 945400, 'morale in your': 538421, 'in your store': 431126, 'your store and': 1025959, 'store and help': 806258, 'help your staff': 391027, 'your staff do': 1025907, 'staff do their': 792380, 'do their job': 250277, 'their job best': 873702, 'job best they': 465698, 'they can groceryretail': 881634, 'can groceryretail supermarket': 158537, 'prospective': 684704, 'state reporting': 795891, 'reporting their': 712771, 'death we': 230268, 'including bus': 431893, 'driver prospective': 259715, 'prospective pay': 684707, 'thing keeping': 884513, 'keeping them': 472599, 'sound and': 786262, 'another 19': 77472, 'with supermarket chain': 1001050, 'the state reporting': 867806, 'state reporting their': 795892, 'reporting their first': 712772, 'coronavirus death we': 205802, 'death we ve': 230270, 'got to do': 358953, 'protect our key': 684898, 'key worker including': 473491, 'worker including bus': 1007220, 'including bus driver': 431894, 'bus driver prospective': 143026, 'driver prospective pay': 259716, 'prospective pay rise': 684708, 'pay rise is': 645094, 'rise is one': 722923, 'is one thing': 450512, 'one thing keeping': 607226, 'thing keeping them': 884514, 'keeping them safe': 472600, 'them safe and': 876236, 'safe and sound': 729483, 'and sound and': 72017, 'sound and protecting': 786263, 'and protecting their': 69673, 'protecting their family': 685235, 'their family is': 873257, 'family is another': 297945, 'is another 19': 445728, '63': 21262, 'intenders': 441067, 'desirable': 238409, 'very insightful': 955266, 'insightful study': 439682, 'and activity': 57642, 'activity 63': 30358, '63 of': 21266, 'of intenders': 585242, 'intenders still': 441068, 'still plan': 801042, 'purchase and': 689345, 'and 24': 57419, '24 are': 15563, 'sure home': 827565, 'home service': 402040, 'up drop': 944743, 'become highly': 120023, 'highly desirable': 396056, 'desirable worth': 238412, 'worth look': 1011392, 'look you': 502688, 'adapt your': 31293, 'your wa': 1026296, 'very insightful study': 955267, 'insightful study on': 439683, 'study on the': 814941, 'sentiment and activity': 750892, 'and activity 63': 57643, 'activity 63 of': 30359, '63 of intenders': 21267, 'of intenders still': 585243, 'intenders still plan': 441069, 'still plan to': 801043, 'plan to purchase': 658310, 'to purchase and': 912517, 'purchase and 24': 689346, 'and 24 are': 57421, '24 are not': 15564, 'are not sure': 88480, 'not sure home': 571837, 'sure home service': 827566, 'home service and': 402041, 'service and pick': 752103, 'pick up drop': 655716, 'up drop off': 944744, 'drop off have': 260333, 'off have become': 593887, 'have become highly': 379437, 'become highly desirable': 120024, 'highly desirable worth': 396057, 'desirable worth look': 238413, 'worth look you': 1011394, 'look you plan': 502689, 'you plan and': 1020343, 'plan and adapt': 658057, 'and adapt your': 57664, 'adapt your wa': 31295, 'husband come': 411697, 'idea when': 413236, 'get stock': 348118, 'warehouse they': 966785, 'should put': 766356, 'put some': 690826, 'it aside': 456601, 'about feeding': 25224, 'feeding their': 302487, 'my husband come': 548778, 'husband come up': 411698, 'up with good': 946643, 'with good idea': 998641, 'good idea when': 357226, 'idea when the': 413238, 'the supermarket get': 868606, 'supermarket get stock': 820491, 'get stock in': 348121, 'stock in from': 802264, 'in from the': 423128, 'from the warehouse': 337918, 'the warehouse they': 871085, 'warehouse they should': 966786, 'they should put': 883379, 'should put some': 766357, 'put some of': 690828, 'of it aside': 585366, 'it aside for': 456602, 'aside for all': 95408, 'nh worker so': 562194, 'worry about feeding': 1010635, 'about feeding their': 25225, 'feeding their family': 302488, 'people doesn': 647686, 'mean holiday': 524481, 'with people doesn': 1000143, 'people doesn mean': 647687, 'doesn mean holiday': 251886, 'mean holiday in': 524482, '1920': 12327, '1920 prohibition': 12330, 'prohibition worker': 683445, 'worker wave': 1008133, 'wave from': 969348, 'of tower': 592349, 'tower of': 927412, 'of confiscated': 581664, 'confiscated alcohol': 194251, '1920 prohibition worker': 12331, 'prohibition worker wave': 683446, 'worker wave from': 1008134, 'wave from the': 969350, 'from the top': 337904, 'top of tower': 925645, 'of tower of': 592350, 'tower of confiscated': 927413, 'of confiscated alcohol': 581665, 'this pls': 889622, 'pls support': 661188, 'other key': 620456, 'out pls': 627055, 'pls remember': 661167, 'practice we': 668698, 'be apart': 113658, 'together happy': 920818, 'happy everyone': 377612, 'this pls support': 889623, 'pls support our': 661189, 'support our nh': 826737, 'our nh worker': 624071, 'nh worker supermarket': 562195, 'supermarket worker cleaner': 824003, 'worker cleaner delivery': 1006648, 'cleaner delivery people': 180771, 'delivery people and': 234309, 'all other key': 43783, 'other key worker': 620461, 'key worker by': 473473, 'worker by staying': 1006572, 'staying home and': 798599, 'home and if': 400649, 'do go out': 249342, 'go out pls': 353977, 'out pls remember': 627056, 'pls remember to': 661168, 'to practice we': 911967, 'practice we may': 668699, 'may be apart': 520948, 'be apart but': 113659, 'apart but we': 81236, 're in it': 698870, 'in it together': 424278, 'it together happy': 461773, 'together happy everyone': 920819, 'electro': 271249, 'published new': 688669, 'blog entry': 132919, 'entry strategy': 279016, 'consumer electro': 197325, 'published new blog': 688670, 'new blog entry': 558404, 'blog entry strategy': 132920, 'entry strategy analytics': 279017, 'automotive consumer electro': 104041, 'haha sofa': 373899, 'sofa king': 781444, 'king true': 475312, 'true hoarder': 933105, 'hoarder corona': 399003, 'haha sofa king': 373900, 'sofa king true': 781445, 'king true hoarder': 475313, 'true hoarder corona': 933106, 'hoarder corona toiletpaper': 399004, 'corona toiletpaper shortage': 204253, 'inauguration': 431243, 'ceremony': 169960, 'store kind': 808652, 'at trump': 101367, 'trump inauguration': 933624, 'inauguration ceremony': 431244, 'ceremony empty': 169961, 'empty 19': 274734, 'the shelf at': 866825, 'grocery store kind': 365504, 'store kind of': 808653, 'kind of look': 474917, 'of look like': 586008, 'like the crowd': 491362, 'crowd at trump': 219132, 'at trump inauguration': 101369, 'trump inauguration ceremony': 933625, 'inauguration ceremony empty': 431245, 'ceremony empty 19': 169962, 'healthybody': 387830, 'healthyfood': 387838, 'share fantastic': 754995, 'fantastic list': 298596, 'food recommended': 316139, 'recommended by': 704777, 'by dietitian': 152355, 'dietitian to': 241785, 'for nourishment': 323950, 'nourishment ease': 573684, 'ease flavor': 265082, 'flavor and': 310236, 'health healthybody': 386493, 'healthybody healthyfood': 387832, 'share fantastic list': 754996, 'fantastic list of': 298597, 'of food recommended': 583760, 'food recommended by': 316140, 'recommended by dietitian': 704778, 'by dietitian to': 152356, 'dietitian to have': 241786, 'hand to stock': 375875, 'and pantry for': 68684, 'pantry for nourishment': 639587, 'for nourishment ease': 323951, 'nourishment ease flavor': 573685, 'ease flavor and': 265083, 'flavor and health': 310237, 'and health healthybody': 64356, 'health healthybody healthyfood': 386495, 'shorter': 765350, 'draw you': 258489, 'in tp': 430256, 'like gold': 490323, 'gold in': 355906, 'metro store': 529942, 'of shorter': 589686, 'shorter hour': 765353, 'they know how': 882526, 'how to draw': 409012, 'to draw you': 904716, 'draw you in': 258490, 'you in tp': 1019325, 'in tp is': 430257, 'tp is like': 927858, 'is like gold': 449318, 'like gold in': 490326, 'gold in metro': 355907, 'in metro store': 425265, 'metro store wa': 529944, 'store wa closed': 811105, 'wa closed because': 961827, 'because of shorter': 119402, 'of shorter hour': 589687, 'shorter hour during': 765354, 'hour during outbreak': 405555, 'nestum': 557531, 'ceralac': 169901, 'nestum ceralac': 557532, 'ceralac production': 169902, 'is delayed': 447092, 'delayed due': 232778, '19 dont': 6637, 'be surprise': 117478, 'surprise if': 828529, 'find one': 307111, 'nestum ceralac production': 557533, 'ceralac production is': 169903, 'production is delayed': 682086, 'is delayed due': 447093, 'delayed due to': 232779, 'covid 19 dont': 212979, '19 dont be': 6638, 'dont be surprise': 255190, 'be surprise if': 117479, 'surprise if you': 828530, 'can find one': 158330, 'find one in': 307113, 'anxiety caused': 78678, 'buying behavior but': 150012, 'buy is little': 148838, 'little more complicated': 495461, 'and anxiety caused': 58200, 'anxiety caused by': 78679, 'peoplehelpingpeople': 650608, 'for from': 321773, 'and peoplehelpingpeople': 68895, 'peoplehelpingpeople creditunions': 650609, 'surrounding the learn': 828773, 'the learn what': 859244, 'learn what to': 484094, 'look for from': 502360, 'for from and': 321774, 'from and peoplehelpingpeople': 334521, 'and peoplehelpingpeople creditunions': 68896, 'ageguide': 37968, 'ageguide ha': 37969, 'together resource': 920917, 'adult including': 32832, 'including special': 432158, 'ageguide ha put': 37970, 'put together resource': 690946, 'together resource page': 920918, 'page for older': 633850, 'for older adult': 324050, 'older adult including': 598567, 'adult including special': 32833, 'including special shopping': 432160, 'hour for older': 405611, 'older adult and': 598562, 'adult and activity': 32793, 'and activity to': 57646, 'activity to do': 30515, 'do online to': 249938, 'online to stay': 609598, 'to stay connected': 915280, 'connected during this': 194651, 'el your': 270469, 'in sand': 427685, 'sand all': 733659, 'all tin': 45232, 'tin stuff': 898559, 'stuff gone': 815080, 'gone flour': 356275, 'flour gone': 311107, 'gone noodle': 356337, 'noodle gone': 566800, 'gone wipe': 356448, 'wipe gone': 996276, 'gone disinfect': 356252, 'disinfect gone': 245546, 'gone milk': 356333, 'milk powder': 531772, 'powder gone': 667535, 'el your head': 270470, 'head in sand': 385751, 'in sand all': 427686, 'sand all tin': 733660, 'all tin stuff': 45233, 'tin stuff gone': 898560, 'stuff gone flour': 815081, 'gone flour gone': 356276, 'flour gone noodle': 311108, 'gone noodle gone': 356338, 'noodle gone wipe': 566801, 'gone wipe gone': 356449, 'wipe gone disinfect': 996277, 'gone disinfect gone': 356253, 'disinfect gone milk': 245547, 'gone milk powder': 356334, 'milk powder gone': 531775, 'closure online': 183984, 'just some': 469829, 'closure online grocery': 183985, 'shopping and elderly': 761979, 'and elderly only': 61990, 'shopping hour are': 762912, 'hour are just': 405431, 'are just some': 87639, 'just some of': 469832, 'of the way': 591606, 'way that business': 969919, 'that business are': 843055, 'business are trying': 143396, 'trying to prevent': 934843, 'refuted': 707106, '19 refuted': 10034, 'refuted rejuvi': 707107, 'regulatory woe': 708188, 'woe for': 1003331, 'covid 19 refuted': 213678, '19 refuted rejuvi': 10035, 'refuted rejuvi marketer': 707108, 'more regulatory woe': 540211, 'regulatory woe for': 708189, 'woe for herbalife': 1003332, 'something is': 784949, 'wrong here': 1013040, 'ha hard': 370828, 'time keeping': 897102, 'keeping milk': 472479, 'stock farmer': 802112, 'farmer battered': 299308, 'food glut': 314673, 'glut covid': 353099, '19 shift': 10453, 'shift how': 758311, 'how america': 407353, 'america eats': 51503, 'eats zero': 266396, 'something is wrong': 784954, 'is wrong here': 454100, 'wrong here my': 1013041, 'here my local': 393364, 'store ha hard': 808009, 'ha hard time': 370829, 'hard time keeping': 378038, 'time keeping milk': 897103, 'keeping milk in': 472480, 'milk in stock': 531702, 'in stock farmer': 428300, 'stock farmer battered': 802113, 'farmer battered by': 299309, 'battered by food': 112744, 'by food glut': 152615, 'food glut covid': 314674, 'glut covid 19': 353100, 'covid 19 shift': 213782, '19 shift how': 10454, 'shift how america': 758312, 'how america eats': 407354, 'america eats zero': 51504, 'eats zero hedge': 266397, 'wicked': 991670, 'the wicked': 871532, 'wicked truth': 991682, 'stimulate demand': 801479, 'so legitimately': 777534, 'legitimately high': 486064, 'high ha': 395106, 'it course': 457377, 'course but': 211846, 'can ease': 158177, 'ease financial': 265080, 'financial burden': 306342, 'and biz': 58990, 'biz many': 131943, 'the wicked truth': 871533, 'wicked truth is': 991683, 'truth is that': 934398, 'way to stimulate': 970103, 'to stimulate demand': 915418, 'stimulate demand from': 801480, 'demand from consumer': 235533, 'from consumer with': 334977, 'consumer with the': 199567, 'with the fear': 1001301, 'fear of so': 301260, 'of so legitimately': 589810, 'so legitimately high': 777535, 'legitimately high ha': 486065, 'high ha to': 395107, 'ha to run': 372316, 'to run it': 913662, 'run it course': 727690, 'it course but': 457378, 'course but can': 211848, 'but can ease': 145347, 'can ease financial': 158178, 'ease financial burden': 265081, 'financial burden on': 306343, 'burden on consumer': 142751, 'consumer and biz': 196198, 'and biz many': 58991, 'biz many way': 131944, 'coronatuerkiye': 205318, 'n95masks': 551259, 'retweet regular': 720074, 'price coronapandemic': 673256, 'coronapandemic stayathome': 205151, 'stayathome health': 797497, 'health coronatuerkiye': 386312, 'coronatuerkiye socialdistancing': 205319, 'socialdistancing n95masks': 780543, 'n95masks wuhanvirus': 551274, 'wuhanvirus health': 1013576, 'health spotify': 386863, 'spotify netflix': 790149, 'on stock in': 603674, 'stock in retweet': 802273, 'in retweet regular': 427484, 'retweet regular price': 720075, 'regular price coronapandemic': 707838, 'price coronapandemic stayathome': 673257, 'coronapandemic stayathome health': 205152, 'stayathome health coronatuerkiye': 797498, 'health coronatuerkiye socialdistancing': 386313, 'coronatuerkiye socialdistancing n95masks': 205320, 'socialdistancing n95masks wuhanvirus': 780544, 'n95masks wuhanvirus health': 551275, 'wuhanvirus health spotify': 1013577, 'health spotify netflix': 386864, 'enabled': 275446, 'rider': 721476, 'platinum': 659071, 'see service': 745661, 'still enabled': 800483, 'enabled insurance': 275449, 'insurance protection': 440802, 'for rider': 325230, 'rider but': 721482, 'for driver': 320855, 'driver like': 259638, 'car food': 163083, 'gold and': 355850, 'and platinum': 69084, 'platinum status': 659080, 'status driver': 796675, 'driver only': 259677, 'ride low': 721448, 'let see service': 487036, 'see service are': 745662, 'service are still': 752144, 'are still enabled': 90420, 'still enabled insurance': 800484, 'enabled insurance protection': 275450, 'insurance protection for': 440803, 'protection for covid': 685439, '19 for rider': 7076, 'for rider but': 325231, 'rider but nothing': 721483, 'but nothing for': 146591, 'nothing for driver': 573011, 'for driver like': 320858, 'driver like me': 259639, 'like me in': 490746, 'me in car': 522957, 'in car food': 421234, 'car food delivery': 163084, 'delivery for gold': 234023, 'for gold and': 321920, 'gold and platinum': 355853, 'and platinum status': 69085, 'platinum status driver': 659081, 'status driver only': 796676, 'driver only what': 259678, 'what is it': 981702, 'it not only': 459905, 'only is the': 610660, 'is the demand': 452767, 'for ride low': 325229, 'ride low but': 721449, 'manchester online': 512952, 'shopping business': 762240, 'the hut': 857777, 'hut group': 411848, 'announced 10': 76901, 'million donation': 532134, '19 including': 7801, 'including 5m': 431856, '5m package': 20769, 'aid product': 39441, 'service directly': 752290, 'directly into': 243561, 'into manchester': 442739, 'manchester that': 512954, 'the manchester': 860005, 'manchester way': 512966, 'way thank': 969910, 'manchester online shopping': 512953, 'online shopping business': 609057, 'shopping business the': 762242, 'business the hut': 144501, 'the hut group': 857778, 'hut group ha': 411849, 'group ha announced': 366709, 'ha announced 10': 369555, 'announced 10 million': 76902, '10 million donation': 1526, 'million donation to': 532135, 'covid 19 including': 213255, '19 including 5m': 7803, 'including 5m package': 431857, '5m package of': 20770, 'package of aid': 633338, 'of aid product': 579855, 'aid product and': 39442, 'product and service': 680908, 'and service directly': 71299, 'service directly into': 752291, 'directly into manchester': 243562, 'into manchester that': 442740, 'manchester that the': 512955, 'that the manchester': 846769, 'the manchester way': 860007, 'manchester way thank': 512967, 'way thank you': 969912, 'what my': 981892, 'daughter sent': 226904, 'birthday this': 131456, 'year remember': 1014928, 'to always': 900386, 'always find': 49555, 'the humour': 857739, 'humour in': 410946, 'life toiletpaper': 489143, 'is what my': 453887, 'what my daughter': 981895, 'my daughter sent': 547936, 'daughter sent me': 226905, 'sent me from': 750772, 'me from china': 522781, 'china for my': 176666, 'for my birthday': 323678, 'my birthday this': 547461, 'birthday this year': 131457, 'this year remember': 891590, 'year remember to': 1014929, 'remember to always': 710365, 'to always find': 900387, 'always find the': 49558, 'find the humour': 307289, 'the humour in': 857740, 'humour in life': 410947, 'in life toiletpaper': 424712, 'trump just': 933666, 'shelf fact': 757064, 'check here': 174458, 'are picture': 89083, 'picture my': 656154, 'husband took': 411773, 'took today': 925367, 'in virginia': 430596, 'virginia he': 957671, 'he couldn': 384863, 'couldn find': 209874, 'find paper': 307168, 'towel or': 927359, 'bread there': 138610, 'definitely empty': 232330, 'president trump just': 670940, 'trump just said': 933670, 'just said we': 469673, 'said we don': 731565, 'don have empty': 253595, 'empty shelf fact': 275063, 'shelf fact check': 757065, 'fact check here': 295692, 'check here are': 174459, 'here are picture': 392753, 'are picture my': 89084, 'picture my husband': 656155, 'my husband took': 548797, 'husband took today': 411774, 'took today in': 925368, 'today in virginia': 919700, 'in virginia he': 430599, 'virginia he couldn': 957672, 'he couldn find': 384864, 'couldn find paper': 209877, 'find paper towel': 307169, 'paper towel or': 641005, 'towel or bread': 927360, 'or bread there': 614581, 'bread there are': 138611, 'there are definitely': 878090, 'are definitely empty': 85734, 'definitely empty shelf': 232331, 'empty shelf across': 275042, 'ncov': 553338, 'is handsanitizers': 448271, 'handsanitizers logo': 376699, 'logo design': 500826, 'design if': 238237, 'me logo': 523105, 'logo alcohol': 500820, 'alcohol antibacterial': 40912, 'antibacterial cream': 78353, 'cream hand': 215551, 'sanitizer bernie': 734566, 'bernie health': 127380, 'health leaf': 386606, 'leaf liquid': 483802, 'liquid medical': 494101, 'medical ncov': 526265, 'ncov plus': 553341, 'plus protection': 661665, 'protection safe': 685599, 'safe soap': 729945, 'toilet wash': 921655, 'this is handsanitizers': 888273, 'is handsanitizers logo': 448272, 'handsanitizers logo design': 376700, 'logo design if': 500828, 'design if you': 238238, 'like it and': 490522, 'it and get': 456491, 'get one for': 347701, 'one for you': 606310, 'for you contact': 328048, 'you contact me': 1018030, 'contact me logo': 200141, 'me logo alcohol': 523106, 'logo alcohol antibacterial': 500821, 'alcohol antibacterial cream': 40913, 'antibacterial cream hand': 78354, 'cream hand sanitizer': 215552, 'hand sanitizer bernie': 375324, 'sanitizer bernie health': 734567, 'bernie health leaf': 127381, 'health leaf liquid': 386607, 'leaf liquid medical': 483803, 'liquid medical ncov': 494102, 'medical ncov plus': 526266, 'ncov plus protection': 553342, 'plus protection safe': 661666, 'protection safe soap': 685600, 'safe soap toilet': 729946, 'soap toilet wash': 779134, 'lolol': 500991, 'nation is': 552230, 'is basically': 446004, 'basically to': 112174, 'so fuck': 777130, 'doing fine': 252403, 'fine lolol': 307659, 'lolol getting': 500992, 'getting case': 348894, 'of before': 580627, 'so the nation': 778430, 'the nation is': 861245, 'nation is going': 552231, 'into lockdown and': 442710, 'lockdown and the': 499154, 'the only time': 862350, 'only time you': 611350, 'out is basically': 626435, 'is basically to': 446006, 'basically to shop': 112175, 'to shop so': 914488, 'shop so fuck': 760804, 'so fuck the': 777131, 'fuck the grocery': 339657, 'store is doing': 808487, 'is doing fine': 447273, 'doing fine lolol': 252405, 'fine lolol getting': 307660, 'lolol getting case': 500993, 'getting case of': 348895, 'case of before': 165892, 'of before any': 580628, 'before any of': 122638, 'charleston': 173746, 'doomsayer': 255462, 'charleston sc': 173747, 'sc is': 739847, 'seriously neither': 751677, 'neither doomsayer': 557317, 'doomsayer nor': 255463, 'nor an': 566936, 'an alarmist': 55222, 'alarmist but': 40714, 'but quick': 146877, 'wa alarming': 961458, 'charleston sc is': 173748, 'sc is not': 739849, 'is not taking': 450199, 'taking the threat': 833597, 'threat of covid': 893691, '19 seriously neither': 10421, 'seriously neither doomsayer': 751678, 'neither doomsayer nor': 557318, 'doomsayer nor an': 255464, 'nor an alarmist': 566937, 'an alarmist but': 55223, 'alarmist but quick': 40715, 'but quick trip': 146878, 'trip to my': 932199, 'supermarket wa alarming': 823687, 'sewer': 754159, 'roll causing': 725247, 'causing blocked': 167991, 'blocked sewer': 132867, 'why is panic': 991116, 'is panic buying': 450788, 'buying of toilet': 150802, 'toilet roll causing': 921560, 'roll causing blocked': 725248, 'causing blocked sewer': 167992, 'walter': 965516, 'walter white': 965517, 'white or': 987881, 'just cautious': 468451, 'cautious dude': 168220, 'dude outside': 261603, 'in montreal': 425430, 'walter white or': 965518, 'white or just': 987882, 'or just cautious': 615877, 'just cautious dude': 468452, 'cautious dude outside': 168221, 'dude outside my': 261604, 'outside my grocery': 629490, 'store in montreal': 808344, 'amz': 54996, 'amazonseller': 51252, 'onlinecommerce': 609800, 'etail': 282375, 'survey from': 828870, 'from amz': 334473, 'amz show': 54999, 'many seller': 514678, 'but believe': 145286, 'term this': 838322, 'could drive': 209113, 'drive more': 259099, 'online amazonseller': 607795, 'amazonseller ecommerce': 51253, 'ecommerce onlinecommerce': 266818, 'onlinecommerce etail': 609801, 'etail onlineshopping': 282376, 'new survey from': 559710, 'survey from amz': 828871, 'from amz show': 334475, 'amz show that': 55000, 'show that many': 767189, 'that many seller': 845030, 'many seller are': 514679, 'seller are concerned': 748975, 'about the short': 26521, 'term but believe': 838079, 'but believe that': 145288, 'believe that in': 126340, 'long term this': 501717, 'term this crisis': 838323, 'this crisis could': 887030, 'crisis could drive': 217264, 'could drive more': 209115, 'drive more people': 259101, 'people to shop': 649941, 'shop online amazonseller': 760560, 'online amazonseller ecommerce': 607796, 'amazonseller ecommerce onlinecommerce': 51254, 'ecommerce onlinecommerce etail': 266819, 'onlinecommerce etail onlineshopping': 609802, 'chain consumer': 170614, 'and way': 75269, 'working that': 1008935, 'were underway': 980306, 'underway long': 940970, 'now accelerate': 573931, 'accelerate ai': 27827, 'ai can': 39303, 'company adapt': 190351, 'adapt and': 31244, 'and succeed': 72646, 'in global supply': 423342, 'supply chain consumer': 824937, 'chain consumer sentiment': 170617, 'sentiment and way': 750900, 'and way of': 75270, 'way of working': 969773, 'of working that': 593302, 'working that were': 1008936, 'that were underway': 847450, 'were underway long': 980307, 'underway long before': 940971, 'will now accelerate': 994292, 'now accelerate ai': 573932, 'accelerate ai can': 27828, 'ai can help': 39305, 'can help company': 158611, 'help company adapt': 389503, 'company adapt and': 190352, 'adapt and succeed': 31250, 'jsbankfightscorona': 467566, 'this tough': 890826, 'pandemic bank': 634965, 'bank took': 110267, 'the initiative': 858285, 'initiative to': 438659, 'by introducing': 152935, 'introducing policy': 443504, 'with simpler': 1000742, 'simpler term': 770149, 'payment so': 645728, 'every consumer': 285750, 'consumer would': 199574, 'would benefit': 1011681, 'it jsbankfightscorona': 459210, 'during this tough': 263328, 'this tough time': 890827, 'tough time of': 926858, '19 pandemic bank': 9270, 'pandemic bank took': 634966, 'bank took the': 110268, 'took the initiative': 925340, 'the initiative to': 858289, 'initiative to help': 438660, 'help consumer by': 389517, 'consumer by introducing': 196717, 'by introducing policy': 152936, 'introducing policy with': 443505, 'policy with simpler': 663546, 'with simpler term': 1000743, 'simpler term and': 770150, 'condition of payment': 193499, 'of payment so': 587844, 'payment so that': 645729, 'so that every': 778369, 'that every consumer': 843751, 'every consumer would': 285756, 'consumer would benefit': 199575, 'would benefit from': 1011682, 'from it jsbankfightscorona': 336123, 'vulnerable hour': 960999, 'website higher': 975301, 'hour pregnant': 405872, 'woman my': 1003558, 'get any': 346569, 'whilst social': 987685, 'distance vulnerablehour': 246877, 'doe the supermarket': 251623, 'the supermarket vulnerable': 868887, 'supermarket vulnerable hour': 823683, 'vulnerable hour include': 961000, 'on the gov': 604146, 'the gov website': 856495, 'gov website higher': 359735, 'website higher risk': 975302, 'risk can go': 723445, 'go to this': 354374, 'to this hour': 917427, 'this hour pregnant': 887959, 'hour pregnant woman': 405873, 'pregnant woman my': 669847, 'woman my husband': 1003560, 'to get any': 906411, 'get any food': 346573, 'all whilst social': 45457, 'whilst social distance': 987686, 'social distance vulnerablehour': 779530, 'distance vulnerablehour supermarket': 246878, 'resumed': 717758, 'seventh': 753781, 'fiascorona': 304372, 'material import': 520387, 'not resumed': 571361, 'resumed soon': 717761, 'the medicine': 860408, 'medicine would': 526929, 'would shoot': 1012237, 'the seventh': 866747, 'seventh part': 753782, 'our series': 624722, 'series fiascorona': 751248, 'fiascorona about': 304373, 'the pharma': 863633, 'pharma industry': 654041, 'if the raw': 415022, 'the raw material': 865189, 'raw material import': 697975, 'material import from': 520389, 'import from china': 418635, 'from china is': 334862, 'china is not': 176756, 'is not resumed': 450174, 'not resumed soon': 571362, 'resumed soon enough': 717762, 'soon enough the': 785700, 'enough the price': 277670, 'of the medicine': 591233, 'the medicine would': 860412, 'medicine would shoot': 526930, 'would shoot up': 1012238, 'shoot up in': 759752, 'up in few': 945152, 'in few day': 422861, 'few day read': 303789, 'day read in': 228270, 'in the seventh': 429538, 'the seventh part': 866748, 'seventh part of': 753783, 'of our series': 587559, 'our series fiascorona': 624723, 'series fiascorona about': 751249, 'fiascorona about the': 304374, 'on the pharma': 604281, 'the pharma industry': 863635, 'store promotes': 809681, 'promotes online': 683830, 'shopping curbside': 762422, 'pickup amid': 655920, 'distancing order': 247383, 'pet store promotes': 653459, 'store promotes online': 809682, 'promotes online shopping': 683831, 'online shopping curbside': 609083, 'shopping curbside pickup': 762424, 'curbside pickup amid': 220644, 'pickup amid covid': 655921, 'social distancing order': 779680, 'deprive': 237691, 'day go': 227672, 'go panic': 354031, 'hoarding at': 399202, 'supermarket deprive': 819948, 'deprive vulnerable': 237694, 'need go': 554912, 'go spend': 354156, 'spend the': 788681, 'the afternoon': 848423, 'afternoon down': 36683, 'beach pretend': 118231, 'pretend like': 671315, 'like doesn': 490131, 'doesn exist': 251782, 'exist ignore': 290235, 'ignore socialdistancing': 415839, 'socialdistancing selfisolation': 780669, 'selfisolation advice': 748432, 'advice risk': 33484, 'the day go': 852882, 'day go panic': 227674, 'go panic buying': 354033, 'buying hoarding at': 150488, 'hoarding at the': 399203, 'the supermarket deprive': 868551, 'supermarket deprive vulnerable': 819949, 'deprive vulnerable people': 237695, 'of the essential': 590993, 'the essential they': 854523, 'essential they need': 281676, 'they need go': 882737, 'need go spend': 554913, 'go spend the': 354157, 'spend the afternoon': 788682, 'the afternoon down': 848426, 'afternoon down the': 36684, 'down the beach': 257266, 'the beach pretend': 849389, 'beach pretend like': 118232, 'pretend like doesn': 671316, 'like doesn exist': 490132, 'doesn exist ignore': 251784, 'exist ignore socialdistancing': 290236, 'ignore socialdistancing selfisolation': 415841, 'socialdistancing selfisolation advice': 780670, 'selfisolation advice risk': 748433, 'advice risk catching': 33485, 'risk catching it': 723450, 'can government': 158525, 'prevent pandemic': 671691, 'pandemic driven': 635337, 'driven price': 259343, 'gouging hand': 359334, 'offered at': 594906, 'what can government': 981174, 'can government do': 158526, 'government do to': 360032, 'do to prevent': 250397, 'to prevent pandemic': 912079, 'prevent pandemic driven': 671692, 'pandemic driven price': 635338, 'driven price gouging': 259344, 'price gouging hand': 674283, 'gouging hand sanitizer': 359335, 'sanitizer glove mask': 734990, 'other medical equipment': 620522, 'medical equipment are': 526147, 'equipment are in': 279690, 'high demand and': 394990, 'demand and in': 234974, 'and in some': 65069, 'some case are': 782483, 'being offered at': 125477, 'offered at high': 594908, 'been loyal': 121500, 'loyal to': 506281, 'paying back': 645390, 'to drastically': 904711, 'drastically increase': 258441, 'their benefit': 872592, 'benefit we': 127132, 'all boycott': 42212, 'we have all': 971751, 'all been loyal': 42162, 'been loyal to': 121501, 'loyal to our': 506282, 'store and pharmacy': 806319, 'and pharmacy for': 68970, 'pharmacy for year': 654318, 'for year and': 327995, 'year and they': 1014406, 'they are paying': 881357, 'are paying back': 89008, 'paying back by': 645391, 'back by taking': 106923, 'by taking advantage': 154203, 'situation to drastically': 772530, 'to drastically increase': 904712, 'drastically increase their': 258444, 'price for their': 674061, 'for their benefit': 326803, 'their benefit we': 872593, 'benefit we should': 127135, 'should all boycott': 765487, 'all boycott these': 42213, 'boycott these place': 137352, 'these place when': 880491, 'place when this': 657830, 'must get': 546679, 'get american': 346530, 'american back': 51830, 'work asap': 1004853, 'asap so': 94875, 'food bill': 313752, 'bill total': 130708, 'total shutdown': 926244, 'answer panic': 78089, 'more scary': 540326, 'scary than': 741192, 'than if': 840768, 'not endless': 569170, 'endless job': 276232, 'countless business': 210371, 'business close': 143533, 'close earnings': 182623, 'earnings drop': 264897, 'drop jobless': 260287, 'claim pop': 179784, 'pop isolation': 664438, 'we must get': 972417, 'must get american': 546680, 'get american back': 346531, 'american back to': 51831, 'to work asap': 918689, 'work asap so': 1004854, 'asap so they': 94876, 'money for food': 536748, 'for food bill': 321561, 'food bill total': 313753, 'bill total shutdown': 130710, 'total shutdown is': 926246, 'shutdown is not': 768050, 'the answer panic': 848771, 'answer panic is': 78090, 'panic is more': 638218, 'is more scary': 449724, 'more scary than': 540327, 'scary than if': 741194, 'than if not': 840769, 'if not endless': 414495, 'not endless job': 569171, 'endless job loss': 276233, 'loss and countless': 503633, 'and countless business': 60637, 'countless business close': 210372, 'business close earnings': 143534, 'close earnings drop': 182624, 'earnings drop jobless': 264898, 'drop jobless claim': 260288, 'jobless claim pop': 466335, 'claim pop isolation': 179785, 'pop isolation can': 664439, 'isolation can also': 455230, 'also be dangerous': 47918, 'scammy': 740676, 'and scammy': 71043, 'scammy company': 740677, 'from related': 337065, 'related fear': 708436, 'fear listen': 301188, 'some example': 782776, 'scammer and scammy': 740524, 'and scammy company': 71044, 'scammy company are': 740678, 'robocalls to profit': 724776, 'profit from related': 682739, 'from related fear': 337067, 'related fear listen': 708437, 'fear listen to': 301189, 'listen to some': 494751, 'to some example': 914874, 'everyone buy': 286753, 'responsibly then': 716117, 'then supermarket': 877583, 'shelf look': 757297, 'pic taken': 655627, 'taken this': 833081, 'local huge': 498098, 'huge respect': 410172, 'everyone involved': 287058, 'to cc': 902546, 'when everyone buy': 983398, 'everyone buy responsibly': 286755, 'buy responsibly then': 149127, 'responsibly then supermarket': 716118, 'then supermarket shelf': 877584, 'supermarket shelf look': 822494, 'shelf look like': 757299, 'look like this': 502518, 'like this pic': 491515, 'this pic taken': 889574, 'pic taken this': 655628, 'taken this morning': 833082, 'morning at my': 541182, 'my local huge': 549121, 'local huge respect': 498099, 'huge respect for': 410173, 'respect for everyone': 714990, 'for everyone involved': 321216, 'everyone involved in': 287059, 'involved in getting': 444351, 'in getting food': 423296, 'food to cc': 317238, 'well wore': 978765, 'wore my': 1004673, 'over town': 630858, 'town so': 927551, 'saw so': 738242, 'and adult': 57708, 'adult smiling': 32852, 'smiling today': 775780, 'today even': 919491, 'not ideal': 570041, 'ideal easter': 413264, 'easter socialdistancing': 265498, 'well wore my': 978766, 'wore my mask': 1004676, 'my mask and': 549207, 'and all over': 57882, 'all over town': 43884, 'over town so': 630859, 'town so happy': 927552, 'happy that we': 377690, 'that we saw': 847391, 'we saw so': 973139, 'saw so many': 738243, 'so many child': 777644, 'many child and': 513896, 'child and adult': 175994, 'and adult smiling': 57712, 'adult smiling today': 32853, 'smiling today even': 775781, 'today even though': 919492, 'though it not': 892842, 'it not ideal': 459886, 'not ideal easter': 570042, 'ideal easter socialdistancing': 413265, 'supermarket security': 822354, 'security staff': 744755, 'are loving': 87913, 'loving the': 505065, 'power right': 667673, 'now uklockdownnow': 576243, 'supermarket security staff': 822358, 'security staff all': 744756, 'staff all over': 792098, 'over the uk': 630782, 'uk are loving': 938192, 'are loving the': 87915, 'loving the power': 505066, 'the power right': 864155, 'power right now': 667674, 'right now uklockdownnow': 722167, 'ventillation': 954647, 'yes have': 1015454, 'have why': 383591, 'fda under': 300941, 'guidance of': 368258, 'of doctor': 582750, 'doctor changing': 250870, 'changing the': 172807, 'consumer ventillation': 199444, 'ventillation device': 954648, 'device to': 239938, 'hospital which': 404717, 'is consistent': 446767, 'medical journal': 526234, 'journal if': 467390, 'yes have why': 1015455, 'have why is': 383592, 'is the fda': 452796, 'the fda under': 855027, 'fda under the': 300942, 'under the guidance': 940311, 'the guidance of': 856923, 'guidance of doctor': 368260, 'of doctor changing': 582751, 'doctor changing the': 250871, 'changing the regulation': 172813, 'the regulation to': 865452, 'regulation to allow': 708121, 'allow for consumer': 45963, 'for consumer ventillation': 320302, 'consumer ventillation device': 199445, 'ventillation device to': 954649, 'device to be': 239939, 'used for treatment': 949913, 'for treatment of': 327340, '19 in hospital': 7752, 'in hospital which': 423823, 'hospital which is': 404718, 'which is consistent': 985995, 'is consistent with': 446768, 'consistent with medical': 195494, 'with medical journal': 999470, 'medical journal if': 526235, 'era gain': 280041, 'gain from': 342773, 'price fall to': 673801, 'fall to 30': 297090, 'to 30 covid': 899668, '19 era gain': 6818, 'era gain from': 280042, 'gain from oil': 342776, 'from oil production': 336649, 'oil production cut': 597365, 'worker coming': 1006671, 'coming home': 188072, 'literally every single': 494983, 'retail worker coming': 718877, 'worker coming home': 1006673, 'coming home from': 188078, 'from work during': 338407, 'work during the': 1005071, 'during the freak': 263131, 'minister giving': 533373, 'giving speech': 351395, 'speech at': 788386, 'situation reassures': 772457, 'reassures we': 703222, 'supply general': 825309, 'public panic': 688212, 'prime minister giving': 678136, 'minister giving speech': 533374, 'giving speech at': 351396, 'speech at 4pm': 788387, 'at 4pm today': 97673, '4pm today regarding': 19511, 'today regarding the': 920107, '19 situation reassures': 10588, 'situation reassures we': 772458, 'reassures we have': 703223, 'we have adequate': 971748, 'have adequate food': 379129, 'adequate food supply': 32165, 'food supply general': 316955, 'supply general public': 825310, 'general public panic': 345458, 'public panic buy': 688213, 'at all supermarket': 97908, 'kddr': 471213, 'burgum': 142856, 'kddr am': 471214, 'am news': 50233, 'news gov': 560477, 'gov burgum': 359546, 'burgum say': 142857, 'say covid': 738543, 'in nd': 425697, 'nd gas': 553382, 'drop and': 260122, 'and flooding': 62976, 'flooding begin': 310746, 'begin in': 123528, 'kddr am news': 471215, 'am news gov': 50234, 'news gov burgum': 560478, 'gov burgum say': 359547, 'burgum say covid': 142858, 'say covid 19': 738544, '19 restriction could': 10175, 'restriction could last': 717251, 'could last longer': 209372, 'last longer in': 480303, 'longer in nd': 501998, 'in nd gas': 425698, 'nd gas price': 553383, 'gas price continue': 343945, 'continue to drop': 201183, 'to drop and': 904764, 'drop and flooding': 260125, 'and flooding begin': 62977, 'flooding begin in': 310747, 'begin in nd': 123529, 'nlp': 563513, 'killerrobot': 474647, 'bot': 135817, 'cobot': 185169, 'humanoid': 410799, 'robot are': 724786, 'are cleaning': 85295, 'cleaning grocery': 180955, 'floor during': 310790, 'outbreak forbes': 628228, 'forbes pandemic': 328290, 'retail ai': 717798, 'ai robot': 39333, 'robot robotics': 724806, 'robotics ml': 724819, 'ml dl': 534715, 'dl nlp': 248856, 'nlp killerrobot': 563514, 'killerrobot bot': 474648, 'bot cobot': 135818, 'cobot humanoid': 185170, 'humanoid tech': 410800, 'tech technews': 836159, 'technews rt': 836189, 'robot are cleaning': 724787, 'are cleaning grocery': 85296, 'cleaning grocery store': 180956, 'grocery store floor': 365402, 'store floor during': 807746, 'floor during the': 310791, 'the outbreak forbes': 862626, 'outbreak forbes pandemic': 628229, 'forbes pandemic retail': 328291, 'pandemic retail ai': 636357, 'retail ai robot': 717799, 'ai robot robotics': 39335, 'robot robotics ml': 724807, 'robotics ml dl': 724820, 'ml dl nlp': 534716, 'dl nlp killerrobot': 248857, 'nlp killerrobot bot': 563515, 'killerrobot bot cobot': 474649, 'bot cobot humanoid': 135819, 'cobot humanoid tech': 185171, 'humanoid tech technews': 410801, 'tech technews rt': 836160, 'r118': 695060, '786': 22350, '0147': 764, 'mhc': 530113, 'pretoria': 671348, 'oe': 579269, 'food kit': 315269, 'kit r118': 475616, 'r118 whatsapp': 695061, 'whatsapp the': 982912, 'department directly': 237190, 'directly 27': 243520, '27 10': 16254, '10 786': 1286, '786 0147': 22351, '0147 follow': 765, 'on instagram': 601586, 'instagram mhc': 439968, 'mhc metro': 530114, 'metro pretoria': 529932, 'pretoria noodle': 671349, 'pasta food': 643720, 'food emergency': 314351, 'emergency southafrica': 272984, 'southafrica beef': 786797, 'beef oe': 120528, 'oe until': 579270, 'until stock': 943836, 'emergency food kit': 272704, 'food kit r118': 315270, 'kit r118 whatsapp': 475617, 'r118 whatsapp the': 695062, 'whatsapp the department': 982913, 'the department directly': 853140, 'department directly 27': 237191, 'directly 27 10': 243521, '27 10 786': 16255, '10 786 0147': 1287, '786 0147 follow': 22352, '0147 follow on': 766, 'follow on instagram': 312477, 'on instagram mhc': 601588, 'instagram mhc metro': 439969, 'mhc metro pretoria': 530115, 'metro pretoria noodle': 529933, 'pretoria noodle pasta': 671350, 'noodle pasta food': 566814, 'pasta food emergency': 643721, 'food emergency southafrica': 314352, 'emergency southafrica beef': 272985, 'southafrica beef oe': 786798, 'beef oe until': 120529, 'oe until stock': 579271, 'until stock last': 943837, 'healthtips': 387487, 'acesupermarket': 28995, 'aceeatery': 28982, 'acelounge': 28989, 'acefamily': 28986, 'oyo': 632694, 'ogbomoso': 596319, 'osogbo': 619725, 'ileife': 416084, 'ijebuode': 416005, 'abeokuta': 24317, 'tip take': 898910, 'necessary preventive': 554050, 'healthy staysafe': 387776, 'staysafe healthtips': 798820, 'healthtips shopping': 387490, 'shopping eatery': 762553, 'eatery lounge': 266158, 'lounge acesupermarket': 504558, 'acesupermarket aceeatery': 28996, 'aceeatery acelounge': 28983, 'acelounge acefamily': 28990, 'acefamily ibadan': 28987, 'ibadan oyo': 412569, 'oyo ogbomoso': 632699, 'ogbomoso ilorin': 596320, 'ilorin osogbo': 416480, 'osogbo ileife': 619726, 'ileife ijebuode': 416085, 'ijebuode abeokuta': 416006, 'virus safety tip': 958710, 'safety tip take': 730770, 'tip take all': 898911, 'all the necessary': 44837, 'the necessary preventive': 861376, 'necessary preventive measure': 554051, 'preventive measure stay': 671924, 'safe stay healthy': 729971, 'stay healthy staysafe': 796922, 'healthy staysafe healthtips': 387777, 'staysafe healthtips shopping': 798822, 'healthtips shopping eatery': 387491, 'shopping eatery lounge': 762554, 'eatery lounge acesupermarket': 266159, 'lounge acesupermarket aceeatery': 504559, 'acesupermarket aceeatery acelounge': 28997, 'aceeatery acelounge acefamily': 28984, 'acelounge acefamily ibadan': 28991, 'acefamily ibadan oyo': 28988, 'ibadan oyo ogbomoso': 412570, 'oyo ogbomoso ilorin': 632700, 'ogbomoso ilorin osogbo': 596321, 'ilorin osogbo ileife': 416481, 'osogbo ileife ijebuode': 619727, 'ileife ijebuode abeokuta': 416086, 'but somebody': 147110, 'somebody who': 784286, 'who at': 988280, 'try taking': 934579, 'taking bus': 833289, 'is me': 449604, 'me risking': 523399, 'risking exposure': 724069, 'that but somebody': 843065, 'but somebody who': 147111, 'somebody who at': 784287, 'who at risk': 988282, 'me cannot just': 522566, 'cannot just keep': 161980, 'just keep going': 469091, 'keep going out': 471549, 'or try taking': 617547, 'try taking bus': 934580, 'taking bus to': 833290, 'house is me': 406375, 'is me risking': 449608, 'me risking exposure': 523400, 'ever since': 285503, 'those retail': 892396, 'store entrance': 807604, 'entrance sanitizers': 278895, 'sanitizers act': 736183, 'act if': 29653, 'ever since covid': 285504, '19 those retail': 11360, 'those retail store': 892398, 'retail store entrance': 718636, 'store entrance sanitizers': 807607, 'entrance sanitizers act': 278896, 'sanitizers act if': 736184, 'act if they': 29654, 'they work the': 883925, 'work the most': 1005813, 'most important job': 542403, 'important job in': 418859, 'sponge': 789806, 'ha cleared': 370161, 'supermarket bet': 819365, 'buy sponge': 149229, 'sponge warning': 789809, 'warning only': 967170, 'only watch': 611435, 'watch if': 968445, 'have strong': 382815, 'strong stomach': 814124, 'the uk ha': 870229, 'uk ha cleared': 938430, 'ha cleared out': 370163, 'cleared out toilet': 181430, 'paper from every': 640196, 'from every supermarket': 335328, 'every supermarket bet': 286242, 'supermarket bet they': 819366, 'bet they can': 128114, 'can still buy': 159765, 'still buy sponge': 800318, 'buy sponge warning': 149230, 'sponge warning only': 789810, 'warning only watch': 967171, 'only watch if': 611436, 'watch if you': 968446, 'you have strong': 1019122, 'have strong stomach': 382816, 'santiser': 736628, 'retailvscorona': 719579, 're asked': 698306, 'hand santiser': 375738, 'santiser when': 736632, 'when entering': 983376, 'entering store': 278415, 'only protecting': 611026, 'protecting you': 685249, 'you but': 1017549, 'come for': 187292, 'when tell': 984112, 'pack your': 633200, 'own bag': 631891, 'bag retailvscorona': 108398, 'retailvscorona retail': 719581, 'you re asked': 1020571, 're asked to': 698307, 'asked to use': 95880, 'use hand santiser': 949256, 'hand santiser when': 375740, 'santiser when entering': 736633, 'when entering store': 983377, 'entering store just': 278416, 'store just do': 808615, 'just do it': 468613, 'it it not': 459178, 'not only protecting': 570820, 'only protecting you': 611027, 'protecting you but': 685250, 'you but also': 1017550, 'also the employee': 48970, 'the employee that': 854269, 'employee that work': 274293, 'that work there': 847656, 'work there also': 1005825, 'there also do': 877970, 'not come for': 568795, 'come for me': 187293, 'for me when': 323348, 'me when tell': 523944, 'when tell you': 984114, 'have to pack': 383258, 'to pack your': 911349, 'pack your own': 633201, 'your own bag': 1025126, 'own bag retailvscorona': 631893, 'bag retailvscorona retail': 108399, 'shopper lining': 761596, 'outside local': 629472, 'up supply': 946101, 'look at shopper': 502293, 'at shopper lining': 100515, 'shopper lining up': 761597, 'lining up outside': 493768, 'up outside local': 945717, 'outside local grocery': 629473, 'store while waiting': 811291, 'waiting to pick': 964409, 'pick up supply': 655764, 'up supply due': 946104, 'there we': 879289, 'from increasing': 336037, 'hi there we': 394756, 'there we strongly': 879293, 'item from increasing': 463285, 'from increasing in': 336038, 'we quarantined': 972799, 'are we quarantined': 91585, 'we quarantined and': 972800, 'quarantined and should': 692818, 'and should stock': 71596, 'like coronavid19': 490050, 'coronavid19 social': 205391, 'supermarket like coronavid19': 821314, 'like coronavid19 social': 490051, 'coronavid19 social distancing': 205392, 'scheduling': 741531, 'about scheduling': 26150, 'scheduling grocery': 741536, 'grocery time': 366044, 'advance with': 32920, 'minute grace': 533769, 'period this': 651905, 'not eliminate': 569158, 'eliminate queuing': 271456, 'queuing but': 694201, 'could set': 209657, 'set better': 753354, 'better expectation': 128282, 'store traffic': 810930, 'traffic flow': 929093, 'flow and': 311224, 'wait time': 964217, 'time shopping': 897655, 'think about scheduling': 885100, 'about scheduling grocery': 26151, 'scheduling grocery time': 741537, 'grocery time in': 366046, 'time in advance': 896978, 'in advance with': 420063, 'advance with 15': 32921, 'with 15 minute': 996952, '15 minute grace': 3775, 'minute grace period': 533770, 'grace period this': 361611, 'period this will': 651907, 'will not eliminate': 994214, 'not eliminate queuing': 569159, 'eliminate queuing but': 271457, 'queuing but could': 694202, 'but could set': 145471, 'could set better': 209658, 'set better expectation': 753355, 'better expectation for': 128283, 'expectation for in': 290821, 'in store traffic': 428469, 'store traffic flow': 810935, 'traffic flow and': 929094, 'flow and customer': 311225, 'and customer wait': 60875, 'customer wait time': 223029, 'wait time shopping': 964221, 'derivative': 237865, 'enhance': 277075, 'second derivative': 743697, 'derivative challenge': 237866, 'europe but': 283410, 'but maybe': 146374, 'maybe in': 521715, 'in slow': 428000, 'slow motion': 774373, 'motion oil': 543268, 'price depression': 673428, 'depression and': 237625, 'and contagion': 60471, 'contagion of': 200418, 'africa will': 35155, 'will enhance': 993317, 'enhance pressure': 277078, 'pressure migration': 671184, 'second derivative challenge': 743698, 'derivative challenge for': 237867, 'challenge for europe': 171463, 'for europe but': 321144, 'europe but maybe': 283411, 'but maybe in': 146376, 'maybe in slow': 521717, 'in slow motion': 428001, 'slow motion oil': 774374, 'motion oil commodity': 543269, 'oil commodity price': 596680, 'commodity price depression': 189265, 'price depression and': 673429, 'depression and contagion': 237627, 'and contagion of': 60472, 'contagion of in': 200419, 'of in africa': 585019, 'in africa will': 420092, 'africa will enhance': 35157, 'will enhance pressure': 993318, 'enhance pressure migration': 277079, 'dad gp': 224332, 'gp ha': 361408, 'this system': 890468, 'anyone entering': 80303, 'entering face': 278400, 'tissue we': 899238, 'in separate': 427807, 'separate room': 751082, 'and interacting': 65317, 'interacting remotely': 441222, 'remotely eating': 710768, 'eating time': 266320, 'are staggered': 90345, 'staggered bathroom': 793242, 'bathroom are': 112631, 'are deep': 85721, 'deep cleaned': 231854, 'cleaned after': 180704, 'after every': 35631, 'every use': 286352, 'arrived at my': 93946, 'at my parent': 99827, 'and my dad': 67362, 'my dad gp': 547892, 'dad gp ha': 224333, 'gp ha set': 361409, 'set up this': 753582, 'up this system': 946284, 'this system for': 890469, 'system for anyone': 831168, 'for anyone entering': 319436, 'anyone entering face': 80304, 'entering face mask': 278401, 'sanitizer and tissue': 734445, 'and tissue we': 74146, 'tissue we re': 899239, 'all in separate': 43203, 'in separate room': 427808, 'separate room and': 751083, 'room and interacting': 725876, 'and interacting remotely': 65318, 'interacting remotely eating': 441223, 'remotely eating time': 710769, 'eating time are': 266321, 'time are staggered': 896332, 'are staggered bathroom': 90346, 'staggered bathroom are': 793243, 'bathroom are deep': 112632, 'are deep cleaned': 85722, 'deep cleaned after': 231855, 'cleaned after every': 180705, 'after every use': 35634, 'every use 19': 286353, 'how manufacturing': 408237, 'manufacturing is': 513618, 'is pivoting': 450877, 'switching from': 830558, 'making car': 510981, 'car whiskey': 163345, 'whiskey cosmetic': 987767, 'cosmetic to': 207796, 'producing medical': 680782, 'international battle': 441756, 'against via': 37722, 'via cx': 955905, 'cx healthcare': 223910, 'how manufacturing is': 408238, 'manufacturing is pivoting': 513619, 'is pivoting to': 450878, 'pivoting to fight': 657134, 'to fight it': 905796, 'fight it switching': 304789, 'it switching from': 461414, 'switching from making': 830559, 'from making car': 336310, 'making car whiskey': 510982, 'car whiskey cosmetic': 163346, 'whiskey cosmetic to': 987768, 'cosmetic to producing': 207797, 'to producing medical': 912219, 'producing medical supply': 680783, 'medical supply hand': 526445, 'sanitizer mask in': 735355, 'in the international': 429292, 'the international battle': 858362, 'international battle against': 441757, 'battle against via': 112779, 'against via cx': 37723, 'via cx healthcare': 955906, 'schmitt': 741625, 'ag schmitt': 36837, 'schmitt and': 741626, 'announced partnership': 77012, 'monitor and': 537274, 'and combat': 60103, 'combat price': 187028, 'gouging amazon': 359238, 'provide market': 686381, 'analytics and': 57208, 'the missouri': 860692, 'missouri ag': 534418, 'in going': 423357, 'going after': 354996, 'after third': 36396, 'seller who': 749114, 'who spike': 989652, 'spike price': 789324, 'ag schmitt and': 36838, 'schmitt and today': 741627, 'and today announced': 74221, 'today announced partnership': 919238, 'announced partnership to': 77013, 'partnership to monitor': 642943, 'to monitor and': 910229, 'monitor and combat': 537275, 'and combat price': 60105, 'combat price gouging': 187029, 'price gouging amazon': 674255, 'gouging amazon will': 359239, 'amazon will provide': 51204, 'will provide market': 994516, 'provide market analytics': 686382, 'market analytics and': 515947, 'analytics and assist': 57209, 'and assist the': 58456, 'assist the missouri': 96643, 'the missouri ag': 860693, 'missouri ag office': 534419, 'ag office in': 36823, 'office in going': 595449, 'in going after': 423358, 'going after third': 355000, 'after third party': 36397, 'party seller who': 643036, 'seller who spike': 749117, 'who spike price': 989653, 'could drop': 209117, 'low 99': 505099, 'gallon because': 342981, 'demand perfect': 236024, 'storm caused': 811790, 'price in some': 674733, 'of the could': 590900, 'the could drop': 852003, 'could drop low': 209119, 'drop low 99': 260296, 'low 99 cent': 505101, 'per gallon because': 650840, 'gallon because of': 342982, 'because of supply': 119411, 'and demand perfect': 61165, 'demand perfect storm': 236025, 'perfect storm caused': 651343, 'storm caused by': 811791, 'inanimate': 431231, 'micron': 530473, 'smog': 775851, 'aimless': 39586, 'an inanimate': 56223, 'inanimate thing': 431232, 'of few': 583492, 'few micron': 303909, 'micron wa': 530474, 'stop air': 804434, 'air sea': 39782, 'sea and': 743078, 'and rail': 69903, 'rail transport': 695684, 'transport factory': 929882, 'factory pollution': 295978, 'pollution smog': 663916, 'smog and': 775852, 'and changed': 59730, 'changed your': 172613, 'your aimless': 1022761, 'aimless consumer': 39587, 'consumer single': 198995, 'single life': 771323, 'you only': 1020210, 'to bed': 901689, 'and eat': 61872, 'eat for': 265918, 'something else': 784897, 'else sarscov2': 271864, 'an inanimate thing': 56224, 'inanimate thing about': 431233, 'thing about the': 884095, 'about the size': 26523, 'size of few': 772787, 'of few micron': 583493, 'few micron wa': 303910, 'micron wa able': 530475, 'able to stop': 24553, 'to stop air': 915497, 'stop air sea': 804435, 'air sea and': 39783, 'sea and rail': 743080, 'and rail transport': 69905, 'rail transport factory': 695685, 'transport factory pollution': 929883, 'factory pollution smog': 295979, 'pollution smog and': 663917, 'smog and changed': 775853, 'and changed your': 59731, 'changed your aimless': 172614, 'your aimless consumer': 1022762, 'aimless consumer single': 39588, 'consumer single life': 198996, 'single life in': 771324, 'life in which': 488774, 'which you only': 986534, 'you only went': 1020215, 'only went to': 611463, 'went to home': 979161, 'to home to': 907939, 'home to bed': 402308, 'to bed and': 901691, 'bed and eat': 120379, 'and eat for': 61874, 'eat for something': 265919, 'for something else': 325788, 'something else sarscov2': 784900, 'khqa': 473745, 'tri': 931609, 'amtrak': 54942, 'on khqa': 601762, 'khqa news': 473746, '10 the': 1697, 'in adam': 420026, 'adam county': 31214, 'county gas': 211384, 'the tri': 869973, 'tri state': 931612, 'state continue': 795481, 'fall amtrak': 296824, 'amtrak reduces': 54943, 'reduces service': 706251, 'west central': 980477, 'central il': 169399, 'il and': 416068, 'and 172': 57381, '172 put': 4433, 'put meal': 690684, 'meal on': 524223, 'wheel for': 983036, 'for student': 325948, 'student watch': 814798, 'tonight on khqa': 924464, 'on khqa news': 601763, 'khqa news at': 473747, 'news at 10': 560252, 'at 10 the': 97410, '10 the latest': 1699, 'latest on the': 481478, 'on the first': 604121, 'first case of': 308562, 'of in adam': 585017, 'in adam county': 420027, 'adam county gas': 31215, 'county gas price': 211385, 'in the tri': 429629, 'the tri state': 869975, 'tri state continue': 931613, 'state continue to': 795482, 'to fall amtrak': 905621, 'fall amtrak reduces': 296825, 'amtrak reduces service': 54944, 'reduces service in': 706252, 'service in west': 752484, 'in west central': 430800, 'west central il': 980479, 'central il and': 169400, 'il and 172': 416069, 'and 172 put': 57382, '172 put meal': 4434, 'put meal on': 690685, 'meal on wheel': 524225, 'on wheel for': 605257, 'wheel for student': 983037, 'for student watch': 325950, 'student watch now': 814799, 'caused an': 167818, 'certain part': 170067, 'industry but': 435705, 'the spike': 867577, 'spike by': 789271, 'ha caused an': 370075, 'caused an increase': 167819, 'in demand on': 422144, 'demand on certain': 235963, 'on certain part': 599862, 'certain part of': 170068, 'the industry but': 858165, 'industry but what': 435708, 'but what on': 147795, 'what on the': 981962, 'of the spike': 591482, 'the spike by': 867578, 'cellophane': 168971, 'preparers': 670301, 'repel': 711549, 'the cellophane': 850585, 'cellophane type': 168972, 'type glove': 937526, 'glove that': 352942, 'that restaurant': 846019, 'restaurant meal': 716571, 'meal preparers': 524254, 'preparers where': 670302, 'where repel': 985144, 'repel covid': 711550, 'just thinking': 470045, 'thinking when': 886030, 'store perhaps': 809503, 'perhaps might': 651615, 'protect myself': 684873, 'myself by': 550842, 'those they': 892547, 'would the cellophane': 1012318, 'the cellophane type': 850586, 'cellophane type glove': 168973, 'type glove that': 937527, 'glove that restaurant': 352944, 'that restaurant meal': 846022, 'restaurant meal preparers': 716573, 'meal preparers where': 524255, 'preparers where repel': 670303, 'where repel covid': 985145, 'repel covid 19': 711551, '19 just thinking': 8210, 'just thinking when': 470049, 'thinking when have': 886031, 'grocery store perhaps': 365649, 'store perhaps might': 809505, 'perhaps might be': 651616, 'able to protect': 24524, 'to protect myself': 912317, 'protect myself by': 684874, 'myself by wearing': 550843, 'by wearing those': 154712, 'wearing those they': 974814, 'those they re': 892550, 're really cheap': 699357, 'with single': 1000746, 'parent or': 641700, 'family do': 297743, 'buy like': 148897, 'else by': 271650, 'those family': 891991, 'family coronacrisis': 297725, 'family with single': 298391, 'with single parent': 1000748, 'single parent or': 771368, 'parent or poor': 641701, 'or poor family': 616637, 'poor family do': 664169, 'family do not': 297744, 'money to panic': 537113, 'panic buy like': 637499, 'buy like everyone': 148898, 'like everyone else': 490189, 'everyone else by': 286848, 'else by the': 271651, 'the time they': 869622, 'food there no': 317152, 'no food you': 564282, 'food you must': 317717, 'you must do': 1019915, 'must do something': 546632, 'do something to': 250156, 'something to help': 785103, 'help those family': 390744, 'those family coronacrisis': 891992, 'wilko': 992171, 'ebay allowing': 266419, 'allowing reselling': 46325, 'reselling of': 713998, 'item cleared': 463182, 'price wilko': 677548, 'wilko supermarket': 992172, 'supermarket ebay': 820084, 'ebay allowing reselling': 266421, 'allowing reselling of': 46326, 'reselling of item': 713999, 'of item cleared': 585479, 'item cleared out': 463183, 'of supermarket at': 590411, 'supermarket at inflated': 819240, 'inflated price wilko': 437085, 'price wilko supermarket': 677549, 'wilko supermarket ebay': 992173, 'firstworldproblems': 309234, 'howtoshop': 409562, 'lifesaver': 489326, 'entry quiz': 279012, 'quiz do': 694954, 'mean firstworldproblems': 524428, 'firstworldproblems supermarket': 309236, 'socialdistancing howtoshop': 780433, 'howtoshop lifesaver': 409563, 'lifesaver staysafe': 489329, 'supermarket entry quiz': 820184, 'entry quiz do': 279013, 'quiz do you': 694955, 'know what this': 476982, 'this mean firstworldproblems': 888806, 'mean firstworldproblems supermarket': 524429, 'firstworldproblems supermarket socialdistancing': 309237, 'supermarket socialdistancing howtoshop': 822755, 'socialdistancing howtoshop lifesaver': 780434, 'howtoshop lifesaver staysafe': 409564, 'texan should': 839724, 'should feel': 765985, 'safe ordering': 729869, 'takeout or': 833176, 'store fda': 807701, 'fda on': 300892, 'safely run': 730303, 'run essential': 727626, 'essential errand': 281005, 'texan should feel': 839725, 'should feel safe': 765987, 'feel safe ordering': 302829, 'safe ordering takeout': 729870, 'ordering takeout or': 619037, 'takeout or delivery': 833177, 'or delivery it': 614938, 'delivery it great': 234153, 'it great way': 458341, 'business and lower': 143319, 'lower demand on': 505837, 'demand on grocery': 235968, 'grocery store fda': 365390, 'store fda on': 807702, 'fda on food': 300893, 'on food safety': 600902, 'food safety and': 316264, 'safety and on': 730457, 'and on how': 68060, 'to safely run': 913720, 'safely run essential': 730305, 'run essential errand': 727627, 'deploy': 237442, 'portable': 664912, 'measurement': 525450, 'should deploy': 765915, 'deploy portable': 237451, 'portable temperature': 664924, 'temperature measurement': 837379, 'measurement to': 525454, 'during rush': 262985, 'rush panic': 728326, 'shopping spree': 763951, 'all supermarket should': 44552, 'supermarket should deploy': 822677, 'should deploy portable': 765916, 'deploy portable temperature': 237452, 'portable temperature measurement': 664925, 'temperature measurement to': 837380, 'measurement to prevent': 525455, '19 during rush': 6674, 'during rush panic': 262986, 'rush panic shopping': 728327, 'panic shopping spree': 638587, 'nyaope': 577944, 'morena': 541054, 'boloka': 134137, 'haba': 372525, 'nyaope is': 577945, 'also problem': 48689, 'problem wish': 679746, 'wish user': 996842, 'user would': 950330, 'buying like': 150649, 'like those': 491556, 'do on': 249922, 'and alcohol': 57830, 'alcohol wish': 41192, 'that user': 847219, 'user get': 950288, 'support out': 826742, 'coming 21': 187981, 'clean for': 180532, 'clean morena': 180583, 'morena boloka': 541055, 'boloka set': 134138, 'set haba': 753387, 'haba sa': 372526, 'sa hero': 728896, 'nyaope is also': 577946, 'is also problem': 445574, 'also problem wish': 48690, 'problem wish user': 679747, 'wish user would': 996843, 'user would not': 950332, 'not have money': 569852, 'have money to': 381491, 'money to do': 537094, 'do panic buying': 249960, 'panic buying like': 637793, 'buying like those': 150653, 'like those who': 491559, 'those who do': 892629, 'who do on': 988619, 'do on food': 249924, 'food and alcohol': 313170, 'and alcohol wish': 57836, 'alcohol wish that': 41193, 'wish that user': 996818, 'that user get': 847220, 'user get support': 950289, 'get support out': 348164, 'support out of': 826744, 'out of drug': 626722, 'of drug for': 582847, 'drug for the': 260956, 'the coming 21': 851192, 'coming 21 day': 187982, '21 day and': 14984, 'day and stay': 227281, 'and stay clean': 72290, 'stay clean for': 796832, 'clean for clean': 180533, 'for clean morena': 320107, 'clean morena boloka': 180584, 'morena boloka set': 541056, 'boloka set haba': 134139, 'set haba sa': 753388, 'haba sa hero': 372527, 'sa hero 19': 728897, 'powerfulpatientpartner': 667815, 'up beauty': 944469, 'beauty time': 118810, 'to beast': 901650, 'beast 2020': 118476, '2020 pace': 14497, 'pace powerfulpatientpartner': 632958, 'powerfulpatientpartner campaign': 667816, 'campaign for': 157220, 'for woman': 327905, 'woman commitment': 1003445, 'and caregiving': 59565, 'caregiving in': 164525, 'heard and': 388062, 'and valued': 74842, 'wake up beauty': 964619, 'up beauty time': 944470, 'beauty time to': 118811, 'time to beast': 897952, 'to beast 2020': 901651, 'beast 2020 pace': 118477, '2020 pace powerfulpatientpartner': 14498, 'pace powerfulpatientpartner campaign': 632959, 'powerfulpatientpartner campaign for': 667817, 'campaign for woman': 157222, 'for woman commitment': 327907, 'woman commitment to': 1003446, 'commitment to yourself': 189011, 'to yourself your': 919041, 'yourself your healthcare': 1026772, 'your healthcare and': 1024281, 'healthcare and caregiving': 387025, 'and caregiving in': 59566, 'caregiving in the': 164526, 'in the system': 429591, 'the system we': 869099, 'system we will': 831369, 'will be heard': 992492, 'be heard and': 115179, 'heard and valued': 388063, 'realised': 701622, 'lockwood': 500547, 'italian have': 462701, 'have realised': 382180, 'realised there': 701633, 'panic supply': 638657, 'have kept': 381214, 'kept flowing': 473036, 'flowing and': 311346, 'stocked say': 803384, 'say sky': 739144, 'sky sally': 773225, 'sally lockwood': 732751, 'lockwood in': 500548, 'italian have realised': 462702, 'have realised there': 382181, 'realised there no': 701634, 'to panic supply': 911428, 'panic supply chain': 638658, 'chain have kept': 170762, 'have kept flowing': 381215, 'kept flowing and': 473037, 'flowing and supermarket': 311347, 'shelf are well': 756833, 'are well stocked': 91613, 'well stocked say': 978605, 'stocked say sky': 803385, 'say sky sally': 739145, 'sky sally lockwood': 773226, 'sally lockwood in': 732752, 'lockwood in rome': 500549, '27th': 16359, 'thanksforthelove': 842291, 'timeforadrink': 898448, 'go much': 353844, 'of anywhere': 580298, 'so got': 777193, 'got dressed': 358530, 'dressed for': 258695, 'store lol': 808808, 'lol happy': 500908, 'happy 27th': 377572, '27th birthday': 16362, 'birthday to': 131458, 'me may': 523146, 'may 27': 520880, '27 be': 16266, 'be just': 115583, 'just good': 468841, 'not better': 568567, 'me than': 523592, '26 thanksforthelove': 16190, 'thanksforthelove timeforadrink': 842292, 'well can go': 978092, 'can go much': 158503, 'go much of': 353846, 'much of anywhere': 545184, 'of anywhere because': 580299, 'anywhere because of': 81092, 'of this whole': 592071, 'this whole covid': 891377, '19 stuff so': 10921, 'stuff so got': 815187, 'so got dressed': 777194, 'got dressed for': 358531, 'dressed for the': 258696, 'grocery store lol': 365538, 'store lol happy': 808810, 'lol happy 27th': 500909, 'happy 27th birthday': 377573, '27th birthday to': 16363, 'birthday to me': 131459, 'to me may': 909941, 'me may 27': 523147, 'may 27 be': 520881, '27 be just': 16267, 'be just good': 115585, 'just good if': 468842, 'good if not': 357231, 'if not better': 414488, 'not better to': 568568, 'better to me': 128567, 'to me than': 909956, 'me than 26': 523593, 'than 26 thanksforthelove': 840215, '26 thanksforthelove timeforadrink': 16191, 'complains': 191917, 'what crap': 981280, 'crap and': 214879, 'selfish can': 748046, 'get watching': 348600, 'watching terrified': 968791, 'terrified oldie': 838499, 'oldie cry': 598713, 'cry and': 219846, 'too scared': 925042, 'supermarket down': 820017, 'here put': 393490, 'in star': 428230, 'star hotel': 794044, 'send anyone': 749817, 'who complains': 988480, 'complains to': 191920, 'to christmas': 902749, 'christmas island': 178183, 'island then': 454316, 'what crap and': 981281, 'crap and how': 214881, 'and how selfish': 64834, 'how selfish can': 408637, 'selfish can you': 748047, 'you get watching': 1018808, 'get watching terrified': 348601, 'watching terrified oldie': 968792, 'terrified oldie cry': 838500, 'oldie cry and': 598714, 'cry and too': 219848, 'and too scared': 74274, 'too scared to': 925043, 'scared to go': 741025, 'the supermarket down': 868561, 'supermarket down here': 820018, 'down here put': 256831, 'here put them': 393491, 'put them up': 690894, 'them up in': 876570, 'up in star': 945180, 'in star hotel': 428231, 'star hotel and': 794045, 'hotel and send': 405109, 'and send anyone': 71247, 'send anyone who': 749818, 'anyone who complains': 80615, 'who complains to': 988481, 'complains to christmas': 191921, 'to christmas island': 902750, 'christmas island then': 178184, 'island then they': 454317, 'ou': 621931, 'ou can': 621932, 'water often': 969080, 'often you': 596313, 'second every': 743711, 'ou can help': 621933, 'spread of by': 790656, 'of by washing': 581031, 'and water often': 75246, 'water often you': 969081, 'often you should': 596316, '20 second every': 13329, 'second every time': 743712, 'every time or': 286313, 'qualitative': 691748, 'cro': 218810, 'userresearch': 950339, 'read up': 700643, 'improve your': 419554, 'your commerce': 1023258, 'commerce site': 188632, 'site using': 772047, 'using qualitative': 950614, 'qualitative and': 691749, 'and quantitative': 69853, 'quantitative user': 691900, 'user research': 950315, 'research during': 713705, 'by oh': 153406, 'it cro': 457416, 'cro ux': 218815, 'ux userresearch': 951509, 'userresearch ecommerce': 950340, 'read up on': 700644, 'up on how': 945579, 'how to improve': 409031, 'to improve your': 908210, 'improve your commerce': 419556, 'your commerce site': 1023259, 'commerce site using': 188635, 'site using qualitative': 772048, 'using qualitative and': 950615, 'qualitative and quantitative': 691750, 'and quantitative user': 69854, 'quantitative user research': 691901, 'user research during': 950316, 'research during the': 713707, 'coronavirus crisis by': 205741, 'crisis by oh': 217175, 'by oh and': 153407, 'oh and in': 596355, 'and in it': 65056, 'in it cro': 424236, 'it cro ux': 457417, 'cro ux userresearch': 218816, 'ux userresearch ecommerce': 951510, 'way massive': 969701, 'massive statewide': 520123, 'statewide hotline': 796267, 'provide assistance': 686230, 'emergency call': 272617, 'united way massive': 942265, 'way massive statewide': 969702, 'massive statewide hotline': 520124, 'statewide hotline will': 796268, 'will provide assistance': 994508, 'provide assistance to': 686231, 'to consumer during': 903293, 'health emergency call': 386395, 'emergency call for': 272618, 'call for information': 155875, 'disrespectful': 246357, 'to hell': 907430, 'hell hotel': 389020, 'restaurant pub': 716649, 'pub fast': 687706, 'outlet and': 629023, 'cannot allow': 161624, 'allow covid': 45937, 'face disaster': 294395, 'disaster it': 244221, 'so disrespectful': 776875, 'disrespectful to': 246360, 'demand such': 236286, 'such nonsense': 816652, 'please tell them': 660651, 'them to go': 876475, 'go to hell': 354317, 'to hell hotel': 907431, 'hell hotel restaurant': 389021, 'hotel restaurant pub': 405189, 'restaurant pub fast': 716651, 'pub fast food': 687707, 'food outlet and': 315715, 'outlet and many': 629024, 'many other business': 514425, 'business are closed': 143359, 'are closed we': 85375, 'closed we cannot': 183428, 'we cannot allow': 971048, 'cannot allow covid': 161625, 'allow covid 19': 45938, '19 to spread': 11460, 'spread and face': 790408, 'and face disaster': 62583, 'face disaster it': 294396, 'disaster it so': 244222, 'it so disrespectful': 461104, 'so disrespectful to': 776876, 'disrespectful to demand': 246361, 'to demand such': 904159, 'demand such nonsense': 236287, 'stealth': 799268, 'strait': 812338, 'ph ph': 653980, 'ph and': 653967, 'news today': 560897, 'are oil': 88695, 'philippine raising': 654739, 'price fraud': 674092, 'greed have': 363382, 'have combined': 380023, 'make stealth': 510492, 'stealth move': 799271, 'move because': 543619, 'because government': 119083, 'dire strait': 243261, 'ph ph and': 653981, 'ph and the': 653968, 'and the latest': 73445, 'latest news today': 481460, 'news today so': 560899, 'today so why': 920196, 'why are oil': 990778, 'are oil company': 88696, 'oil company in': 596692, 'the philippine raising': 863673, 'philippine raising price': 654740, 'raising price fraud': 696113, 'price fraud and': 674093, 'fraud and greed': 331232, 'and greed have': 63946, 'greed have combined': 363383, 'have combined to': 380024, 'combined to make': 187134, 'to make stealth': 909745, 'make stealth move': 510493, 'stealth move because': 799272, 'move because government': 543620, 'because government agency': 119084, 'government agency are': 359843, 'agency are in': 37984, 'in dire strait': 422275, 'oman commercial': 598831, 'complex to': 192419, 'down except': 256745, 'except food': 289148, 'catering shop': 167267, 'shop clinic': 760040, 'optical shop': 613881, '19 all store': 4903, 'store in oman': 808361, 'in oman commercial': 426108, 'oman commercial complex': 598832, 'commercial complex to': 188685, 'complex to close': 192420, 'close down except': 182613, 'down except food': 256746, 'except food and': 289149, 'consumer catering shop': 196746, 'catering shop clinic': 167268, 'shop clinic pharmacy': 760041, 'and optical shop': 68200, 'dol': 252909, 'dying where': 263883, 'where dol': 984842, 'dol more': 252912, 'food leader': 315283, 'leader on': 483505, 'what must': 981890, 'worker are dying': 1006382, 'are dying where': 86058, 'dying where dol': 263884, 'where dol more': 984843, 'dol more from': 252913, 'more from and': 539297, 'from and food': 334513, 'and food leader': 63066, 'food leader on': 315284, 'leader on what': 483508, 'on what must': 605232, 'what must be': 981891, 'must be done': 546501, 'americorps': 52351, 'thread because': 893522, 'because angry': 118934, 'angry an': 76455, 'an at': 55461, 'old white': 598535, 'white man': 987870, 'who tried': 989828, 'tried shaming': 931816, 'shaming me': 754750, 'then hit': 877243, 'cart throughout': 165397, 'taken three': 833086, 'work where': 1006001, 'where an': 984728, 'an americorps': 55289, 'americorps member': 52352, 'member doing': 528060, 'doing case': 252326, 'case management': 165861, 'thread because angry': 893523, 'because angry an': 118935, 'angry an at': 76456, 'an at the': 55464, 'at the old': 101038, 'the old white': 862147, 'old white man': 598536, 'white man who': 987872, 'man who tried': 512341, 'who tried shaming': 989830, 'tried shaming me': 931817, 'shaming me out': 754751, 'and then hit': 73770, 'then hit me': 877245, 'hit me with': 398323, 'me with cart': 523988, 'with cart throughout': 997556, 'cart throughout the': 165398, 'throughout the covid': 894968, 'crisis have taken': 217463, 'have taken three': 382919, 'taken three day': 833087, 'three day off': 893913, 'day off from': 228126, 'off from work': 593854, 'from work where': 338419, 'work where an': 1006003, 'where an americorps': 984729, 'an americorps member': 55290, 'americorps member doing': 52353, 'member doing case': 528061, 'doing case management': 252327, 'promoter': 683816, 'discretionary stock': 244781, 'stock airline': 801772, 'airline are': 39923, 'go bankrupt': 353359, 'bankrupt after': 110485, 'event promoter': 285055, 'promoter may': 683819, 'also file': 48203, 'file for': 305348, 'for chapter': 320019, 'chapter eleven': 173133, 'avoid any consumer': 105004, 'any consumer discretionary': 79054, 'consumer discretionary stock': 197219, 'discretionary stock airline': 244782, 'stock airline are': 801773, 'airline are about': 39924, 'to go bankrupt': 906774, 'go bankrupt after': 353360, 'bankrupt after that': 110486, 'after that restaurant': 36278, 'that restaurant and': 846020, 'restaurant and event': 716285, 'and event promoter': 62361, 'event promoter may': 285056, 'promoter may also': 683820, 'may also file': 520916, 'also file for': 48204, 'file for chapter': 305350, 'for chapter eleven': 320020, 'awful to': 106246, 'hear nurse': 387963, 'tear of': 835958, 'of exhaustion': 583303, 'exhaustion on': 290195, 'on tonight': 604797, 'because after': 118910, 'after massive': 35911, 'shift there': 758425, 'supermarket surely': 823071, 'surely food': 827908, 'kept back': 473021, 'of fund': 584009, 'fund dig': 341384, 'dig deep': 242427, 'deep stockpilers': 231926, 'awful to hear': 106247, 'to hear nurse': 907412, 'hear nurse in': 387965, 'in tear of': 428843, 'tear of exhaustion': 835959, 'of exhaustion on': 583304, 'exhaustion on tonight': 290196, 'on tonight because': 604798, 'tonight because after': 924378, 'because after massive': 118911, 'after massive shift': 35913, 'massive shift there': 520104, 'shift there wa': 758426, 'wa no food': 962722, 'the supermarket surely': 868837, 'supermarket surely food': 823072, 'surely food should': 827909, 'food should be': 316618, 'should be kept': 765653, 'be kept back': 115595, 'kept back for': 473022, 'back for worker': 106998, 'for worker in': 327938, 'worker in this': 1007207, 'this crisis can': 887025, 'crisis can we': 217184, 'can we donate': 160170, 'we donate to': 971400, 'donate to some': 254268, 'to some sort': 914889, 'sort of fund': 786123, 'of fund dig': 584011, 'fund dig deep': 341385, 'dig deep stockpilers': 242429, 'bareshelves': 111045, 'today staple': 920209, 'egg rice': 269972, 'rice tuna': 721160, 'tuna fish': 935380, 'fish bread': 309295, 'milk gone': 531691, 'gone oh': 356346, 'oh yeah': 596496, 'yeah no': 1014278, 'no ground': 564383, 'ground turkey': 366550, 'turkey no': 935563, 'chicken accept': 175731, 'accept big': 27944, 'big bag': 129631, 'leg quarter': 485819, 'quarter pandemic': 693260, 'pandemic coronacrisis': 635222, 'coronacrisis bareshelves': 204521, 'store today staple': 810867, 'today staple like': 920210, 'staple like milk': 793971, 'like milk egg': 490779, 'milk egg rice': 531660, 'egg rice tuna': 269974, 'rice tuna fish': 721161, 'tuna fish bread': 935381, 'fish bread milk': 309296, 'bread milk gone': 138528, 'milk gone oh': 531692, 'gone oh yeah': 356347, 'oh yeah no': 596498, 'yeah no ground': 1014279, 'no ground turkey': 564384, 'ground turkey no': 366552, 'turkey no chicken': 935564, 'no chicken accept': 563795, 'chicken accept big': 175732, 'accept big bag': 27945, 'big bag of': 129632, 'bag of the': 108370, 'of the leg': 591184, 'the leg quarter': 859273, 'leg quarter pandemic': 485820, 'quarter pandemic coronacrisis': 693261, 'pandemic coronacrisis bareshelves': 635223, 'jet': 465330, 'spicejet': 789224, 'doe spice': 251581, 'spice jet': 789205, 'jet refuse': 465347, 'refund money': 706927, 'customer due': 222313, '19 spice': 10734, 'jet requires': 465349, 'requires me': 713478, 'travel by': 930303, 'transport spicejet': 929944, 'spicejet will': 789228, 'issue spice': 455929, 'jet force': 465335, 'force me': 328442, 'to knock': 908966, 'door of': 255662, 'consumer court': 197003, 'how doe spice': 407747, 'doe spice jet': 251582, 'spice jet refuse': 789210, 'jet refuse to': 465348, 'refuse to refund': 707039, 'to refund money': 913087, 'refund money to': 706928, 'money to customer': 537091, 'to customer due': 903849, 'customer due to': 222314, 'covid 19 spice': 213845, '19 spice jet': 10735, 'spice jet requires': 789211, 'jet requires me': 465350, 'requires me to': 713479, 'me to travel': 523793, 'to travel by': 917726, 'travel by public': 930304, 'by public transport': 153687, 'public transport spicejet': 688417, 'transport spicejet will': 929945, 'spicejet will be': 789229, 'will be responsible': 992649, 'be responsible for': 116837, 'responsible for any': 716029, 'for any health': 319406, 'any health issue': 79308, 'health issue spice': 386578, 'issue spice jet': 455930, 'spice jet force': 789207, 'jet force me': 465336, 'force me to': 328443, 'me to knock': 523761, 'to knock on': 908968, 'the door of': 853578, 'door of the': 255667, 'the consumer court': 851518, 'waterloo': 969289, 'gravenhurst': 362434, 'muskoka': 546406, 'provider in': 686740, 'in called': 421160, 'called to': 156470, 'say someone': 739157, 'from waterloo': 338301, 'waterloo with': 969292, 'with positive': 1000258, 'of stopped': 590230, 'at gravenhurst': 98792, 'gravenhurst grocery': 362435, 'before self': 123059, 'in muskoka': 425521, 'muskoka the': 546408, 'the audio': 849045, 'audio ha': 102925, 'changed 19': 172424, 'just in healthcare': 469036, 'in healthcare provider': 423609, 'healthcare provider in': 387251, 'provider in called': 686741, 'in called to': 421161, 'called to say': 156474, 'to say someone': 913838, 'say someone from': 739158, 'someone from waterloo': 784475, 'from waterloo with': 338302, 'waterloo with positive': 969293, 'with positive case': 1000259, 'case of stopped': 165928, 'of stopped at': 590231, 'stopped at gravenhurst': 805685, 'at gravenhurst grocery': 98793, 'gravenhurst grocery store': 362436, 'store before self': 806704, 'before self isolating': 123060, 'self isolating in': 747729, 'isolating in muskoka': 455113, 'in muskoka the': 425522, 'muskoka the audio': 546409, 'the audio ha': 849046, 'audio ha been': 102926, 'ha been changed': 369745, 'been changed 19': 120814, 'reinvesting': 708280, 'global impact': 351982, 'behaviour plus': 124494, 'plus why': 661721, 'why b2b': 990827, 'b2b marketer': 106464, 'are reinvesting': 89546, 'reinvesting in': 708281, 'global impact of': 351984, '19 consumer behaviour': 5958, 'consumer behaviour plus': 196592, 'behaviour plus why': 124495, 'plus why b2b': 661722, 'why b2b marketer': 990828, 'b2b marketer are': 106465, 'marketer are reinvesting': 517453, 'are reinvesting in': 89547, 'reinvesting in digital': 708282, 'windham': 995650, 'ethan': 282954, 'ostroff': 619751, 'troutmanpepper': 932693, 'mark windham': 515842, 'windham and': 995651, 'and ethan': 62289, 'ethan ostroff': 282957, 'ostroff highlight': 619752, 'the explanation': 854735, 'explanation that': 292280, 'cfpb offered': 170357, 'offered in': 594934, 'their guide': 873459, 'coronavirus mortgage': 206292, 'option troutmanpepper': 614134, 'mark windham and': 515843, 'windham and ethan': 995652, 'and ethan ostroff': 62290, 'ethan ostroff highlight': 282958, 'ostroff highlight of': 619753, 'highlight of the': 395940, 'of the explanation': 591004, 'the explanation that': 854736, 'explanation that the': 292281, 'that the cfpb': 846677, 'the cfpb offered': 850627, 'cfpb offered in': 170358, 'offered in their': 594935, 'in their guide': 429746, 'their guide to': 873460, 'guide to coronavirus': 368363, 'to coronavirus mortgage': 903559, 'coronavirus mortgage relief': 206293, 'mortgage relief option': 541950, 'relief option troutmanpepper': 709411, 'supplychainchallenge': 826248, 'new bathroom': 558379, 'bathroom accessory': 112627, 'accessory toiletpaper': 28382, 'toiletpaper supplychainchallenge': 922568, 'my new bathroom': 549454, 'new bathroom accessory': 558380, 'bathroom accessory toiletpaper': 112628, 'accessory toiletpaper supplychainchallenge': 28383, 'scary shocking': 741179, 'shocking simulation': 759620, 'this is scary': 888391, 'is scary shocking': 451680, 'scary shocking simulation': 741180, 'shocking simulation show': 759621, 'to recruit': 912995, 'recruit new': 705466, 'new temporary': 559730, 'temporary staff': 837697, 'giant are looking': 349748, 'looking to recruit': 503042, 'to recruit new': 912998, 'recruit new temporary': 705468, 'new temporary staff': 559732, 'temporary staff to': 837698, 'staff to help': 792990, 'help keep up': 389977, 'owe gratitude': 631811, 'gratitude across': 362354, 'their incredible': 873648, 'incredible sacrifice': 433863, 'sacrifice during': 729081, 'also owe': 48637, 'their sacrifice': 874607, 'sacrifice many': 729094, 'many earn': 514021, 'earn minimum': 264797, 'wage thank': 963961, 'them tip': 876446, 'checkout when': 175054, 'we owe gratitude': 972677, 'owe gratitude across': 631812, 'gratitude across the': 362355, 'board for their': 133633, 'for their incredible': 326841, 'their incredible sacrifice': 873650, 'incredible sacrifice during': 433864, 'sacrifice during but': 729082, 'during but we': 262487, 'but we also': 147736, 'we also owe': 970403, 'also owe gratitude': 48638, 'owe gratitude to': 631813, 'gratitude to grocery': 362400, 'worker for their': 1006974, 'for their sacrifice': 326867, 'their sacrifice many': 874608, 'sacrifice many earn': 729095, 'many earn minimum': 514022, 'earn minimum wage': 264798, 'minimum wage thank': 533244, 'wage thank them': 963962, 'thank them tip': 841664, 'them tip at': 876447, 'tip at the': 898716, 'at the checkout': 100910, 'the checkout when': 850780, 'checkout when you': 175055, 'you buy your': 1017591, 'buy your essential': 149495, 'home cover': 400962, 'and nose': 67702, 'nose when': 567938, 'when coughing': 983295, 'and sneezing': 71829, 'sneezing do': 776310, 'surface wash': 828087, 'sanitizer eat': 734804, 'eat well': 266098, 'well sleep': 978559, 'sleep well': 773804, 'of doing': 582766, 'online spread': 609416, 'this tweet': 890885, 'tweet and': 936340, 'at home cover': 98963, 'home cover your': 400964, 'cover your mouth': 212326, 'mouth and nose': 543486, 'and nose when': 67705, 'nose when coughing': 567939, 'when coughing and': 983296, 'coughing and sneezing': 208665, 'and sneezing do': 71832, 'sneezing do not': 776311, 'touch the surface': 926553, 'the surface wash': 868999, 'surface wash your': 828089, 'with soap or': 1000803, 'hand sanitizer eat': 375383, 'sanitizer eat well': 734805, 'eat well sleep': 266103, 'well sleep well': 978560, 'sleep well come': 773806, 'well come up': 978112, 'up with new': 946666, 'with new way': 999714, 'way of doing': 969749, 'of doing business': 582767, 'doing business online': 252322, 'business online spread': 144143, 'online spread this': 609417, 'spread this tweet': 790838, 'this tweet and': 890887, 'tweet and stop': 936343, 'sincerely': 771034, 'counselor': 210085, 'over sincerely': 630614, 'sincerely hope': 771045, 'start understanding': 794613, 'understanding who': 940899, 'who essential': 988706, 're your': 699852, 'your cook': 1023338, 'cook grocery': 202751, 'employee parent': 274106, 'parent teacher': 641739, 'teacher doctor': 835450, 'nurse counselor': 577254, 'counselor and': 210086, 'others never': 621541, 'never again': 557850, 'again should': 37160, 'we define': 971252, 'define who': 232278, 'all over sincerely': 43877, 'over sincerely hope': 630615, 'sincerely hope we': 771046, 'hope we start': 403769, 'we start understanding': 973380, 'start understanding who': 794614, 'understanding who essential': 940900, 'who essential worker': 988707, 'worker are they': 1006434, 'are they re': 91019, 'they re your': 883155, 're your cook': 699853, 'your cook grocery': 1023339, 'cook grocery store': 202752, 'store employee parent': 807520, 'employee parent teacher': 274107, 'parent teacher doctor': 641740, 'teacher doctor nurse': 835451, 'doctor nurse counselor': 251007, 'nurse counselor and': 577255, 'counselor and countless': 210087, 'countless others never': 210389, 'others never again': 621542, 'never again should': 557853, 'again should we': 37161, 'should we define': 766644, 'we define who': 971253, 'define who is': 232279, 'who is essential': 989071, 'on singapore': 603475, 'singapore private': 771145, 'private home': 678915, 'q1 2020': 691397, 'of on singapore': 587225, 'on singapore private': 603476, 'singapore private home': 771146, 'private home price': 678916, 'home price down': 401898, 'down in q1': 256866, 'in q1 2020': 427150, 'surveyed': 828991, 'consumer perspective': 198360, 'perspective ai': 653179, 'ai surveyed': 39343, 'surveyed over': 829007, 'over 00': 629747, 'impacted spending': 418153, 'habit brand': 372576, 'brand loyalty': 137892, 'loyalty and': 506287, 'better understand the': 128587, 'understand the consumer': 940751, 'the consumer perspective': 851572, 'consumer perspective ai': 198361, 'perspective ai surveyed': 653180, 'ai surveyed over': 39344, 'surveyed over 00': 829008, 'over 00 consumer': 629750, '00 consumer to': 148, 'consumer to uncover': 199333, 'uncover how ha': 939906, 'how ha impacted': 407950, 'ha impacted spending': 370919, 'impacted spending habit': 418154, 'spending habit brand': 788834, 'habit brand loyalty': 372577, 'brand loyalty and': 137893, 'loyalty and direct': 506288, 'to consumer service': 903332, 'indecent': 433974, 'regretted': 707714, 'pleaded guilty': 659577, 'guilty to': 368572, 'to indecent': 908319, 'indecent behavior': 433975, 'after filming': 35665, 'filming himself': 305736, 'himself deliberately': 396801, 'deliberately coughing': 232957, 'in christchurch': 421461, 'christchurch new': 178101, 'zealand raymond': 1027306, 'coombs 38': 203083, '38 said': 18140, 'wa drunk': 962042, 'drunk and': 261215, 'it joke': 459203, 'but regretted': 146913, 'regretted it': 707715, 'it he': 458504, 'man ha pleaded': 512080, 'ha pleaded guilty': 371501, 'pleaded guilty to': 659578, 'guilty to indecent': 368573, 'to indecent behavior': 908320, 'indecent behavior after': 433976, 'behavior after filming': 123860, 'after filming himself': 35666, 'filming himself deliberately': 305737, 'himself deliberately coughing': 396802, 'deliberately coughing on': 232959, 'coughing on other': 208719, 'on other people': 602559, 'supermarket in christchurch': 820878, 'in christchurch new': 421462, 'christchurch new zealand': 178102, 'new zealand raymond': 559995, 'zealand raymond coombs': 1027307, 'raymond coombs 38': 698042, 'coombs 38 said': 203084, '38 said he': 18141, 'he wa drunk': 385596, 'wa drunk and': 962043, 'drunk and did': 261216, 'and did it': 61316, 'did it joke': 240663, 'it joke but': 459204, 'joke but regretted': 467063, 'but regretted it': 146914, 'regretted it he': 707716, 'it he tested': 458507, 'he tested negative': 385506, 'negative for covid': 556778, 'avoid fraudsters': 105113, 'fraudsters during': 331412, 'to avoid fraudsters': 900899, 'avoid fraudsters during': 105114, 'fraudsters during covid': 331413, '990': 23927, 'get hero': 347222, 'hero pay': 394067, 'pay very': 645215, 'sad safeway': 729221, 'safeway at': 730832, 'king edward': 475258, 'edward mall': 268921, 'mall 990': 511729, '990 king': 23928, 'edward ave': 268915, 'ave fresh': 104740, 'fresh co': 332939, 'no road': 565378, 'and williams': 75706, 'why they should': 991460, 'they should all': 883352, 'should all get': 765488, 'all get hero': 42913, 'get hero pay': 347223, 'hero pay very': 394068, 'pay very sad': 645216, 'very sad safeway': 955491, 'sad safeway at': 729222, 'safeway at king': 730833, 'at king edward': 99382, 'king edward mall': 475260, 'edward mall 990': 268922, 'mall 990 king': 511730, '990 king edward': 23929, 'king edward ave': 475259, 'edward ave fresh': 268916, 'ave fresh co': 104741, 'fresh co store': 332940, 'co store at': 184963, 'store at no': 806586, 'at no road': 99896, 'no road and': 565379, 'road and williams': 724404, 'dmme': 248959, 'out extremely': 626049, 'extremely thankful': 293929, 'order hand': 618282, 'disinfectant non': 245715, 'non toxic': 566514, 'toxic and': 927636, 'and plant': 69069, 'based stayhomesavelives': 111750, 'stayhomesavelives handsanitizer': 798389, 'handsanitizer disinfectant': 376509, 'disinfectant dmme': 245647, 'dmme dm': 248960, 'dm healthyathome': 248894, 'store are sold': 806524, 'sold out extremely': 781733, 'out extremely thankful': 626050, 'extremely thankful to': 293931, 'able to order': 24514, 'to order hand': 911072, 'order hand sanitizer': 618283, 'sanitizer and disinfectant': 734399, 'and disinfectant non': 61449, 'disinfectant non toxic': 245716, 'non toxic and': 566515, 'toxic and plant': 927637, 'and plant based': 69070, 'plant based stayhomesavelives': 658626, 'based stayhomesavelives handsanitizer': 111751, 'stayhomesavelives handsanitizer disinfectant': 798390, 'handsanitizer disinfectant dmme': 376510, 'disinfectant dmme dm': 245648, 'dmme dm healthyathome': 248961, 'thinking the': 886004, 'the head': 857161, 'visiting chinese': 959516, 'chinese red': 177335, 'red cross': 705571, 'cross delegation': 219001, 'delegation helping': 232839, 'helping italy': 391365, 'italy respond': 462901, 'don know what': 253674, 're thinking the': 699708, 'thinking the head': 886005, 'the head of': 857166, 'head of visiting': 385776, 'of visiting chinese': 592837, 'visiting chinese red': 959517, 'chinese red cross': 177336, 'red cross delegation': 705572, 'cross delegation helping': 219002, 'delegation helping italy': 232840, 'helping italy respond': 391366, 'italy respond to': 462902, 'coronavirus crisis say': 205766, 'crisis say the': 218004, 'country is not': 210812, 'is not doing': 450065, 'not doing enough': 569085, 'enough to contain': 277693, 'contain the virus': 200503, 'public power': 688242, 'power utility': 667728, 'utility lower': 951298, 'lower power': 505944, 'power price': 667661, 'florida public power': 310970, 'public power utility': 688243, 'power utility lower': 667729, 'utility lower power': 951299, 'lower power price': 505945, 'power price during': 667663, 'than cure': 840479, 'beat wash': 118581, 'soap wear': 779169, 'clean cloth': 180498, 'cloth to': 184114, 'mouth if': 543521, 'place try': 657784, 'one meter': 606654, 'from stranger': 337452, 'stranger eat': 812465, 'eat homemade': 265940, 'homemade food': 402829, 'food much': 315486, 'possible let': 665701, 'better than cure': 128517, 'than cure let': 840481, 'cure let beat': 220767, 'let beat wash': 486626, 'beat wash hand': 118582, 'frequently with soap': 332891, 'with soap wear': 1000810, 'soap wear mask': 779170, 'mask or use': 519080, 'or use clean': 617614, 'use clean cloth': 949110, 'clean cloth to': 180499, 'cloth to cover': 184115, 'your mouth if': 1024898, 'mouth if you': 543522, 'are in crowded': 87371, 'in crowded place': 421918, 'crowded place try': 219340, 'place try to': 657785, 'to make one': 909708, 'make one meter': 510269, 'one meter distance': 606655, 'meter distance from': 529708, 'distance from stranger': 246719, 'from stranger eat': 337453, 'stranger eat homemade': 812466, 'eat homemade food': 265941, 'homemade food much': 402831, 'food much possible': 315487, 'much possible let': 545243, 'possible let not': 665702, 'me spending': 523522, 'my money': 549294, 'money like': 536871, 'idiot shopping': 413585, 'like stealing': 491233, 'stealing like': 799240, 'me spending all': 523523, 'spending all my': 788725, 'all my money': 43565, 'my money like': 549298, 'money like an': 536872, 'like an idiot': 489772, 'an idiot shopping': 56151, 'idiot shopping online': 413586, 'online to look': 609590, 'to look like': 909439, 'look like stealing': 502511, 'like stealing like': 491234, 'stealing like crazy': 799241, 'like crazy so': 490070, 'crazy so no': 215420, 'so no one': 777888, 'one can see': 606049, 'can see it': 159541, 'see it during': 745328, 'it during quarantine': 457723, 'nugget': 576776, 'fucknuggets': 340073, 'stop be': 804475, 'be say': 117001, 'say whore': 739491, 'whore nugget': 990605, 'nugget stoppanicbuying': 576777, 'stoppanicbuying idiot': 805578, 'idiot sainsburys': 413580, 'sainsburys fucknuggets': 731760, 'stop be say': 804476, 'be say whore': 117002, 'say whore nugget': 739492, 'whore nugget stoppanicbuying': 990606, 'nugget stoppanicbuying idiot': 576778, 'stoppanicbuying idiot sainsburys': 805579, 'idiot sainsburys fucknuggets': 413581, 'burnt': 142931, 'in iran': 424144, 'iran prisoner': 444700, 'prisoner were': 678763, 'were released': 980048, 'released in': 709049, 'italy prisoner': 462893, 'prisoner created': 678755, 'created nuisance': 215861, 'nuisance even': 576782, 'even burnt': 283914, 'burnt prison': 142934, 'prison cell': 678709, 'cell after': 168938, 'of suspect': 590542, 'suspect of': 829479, 'prison whereas': 678741, 'india prisoner': 434574, 'prisoner are': 678752, 'making face': 511058, 'mask selling': 519249, 'price bharat': 672924, 'in iran prisoner': 424146, 'iran prisoner were': 444702, 'prisoner were released': 678764, 'were released in': 980049, 'released in view': 709053, 'view of in': 957128, 'of in italy': 585029, 'in italy prisoner': 424313, 'italy prisoner created': 462894, 'prisoner created nuisance': 678756, 'created nuisance even': 215863, 'nuisance even burnt': 576783, 'even burnt prison': 283915, 'burnt prison cell': 142935, 'prison cell after': 678710, 'cell after the': 168940, 'after the news': 36336, 'the news of': 861622, 'news of suspect': 560651, 'of suspect of': 590543, 'suspect of in': 829480, 'in the prison': 429475, 'the prison whereas': 864480, 'prison whereas in': 678742, 'whereas in india': 985427, 'in india prisoner': 424049, 'india prisoner are': 434575, 'prisoner are making': 678754, 'are making face': 87979, 'making face mask': 511060, 'face mask selling': 294587, 'mask selling them': 519250, 'them at extremely': 875437, 'at extremely low': 98606, 'extremely low price': 293906, 'low price bharat': 505503, 'hopeful': 403833, 'housingmarket': 407175, 'whenwillpricesfall': 984703, 'homeprices': 402902, 'luxur': 506902, 'down likely': 256920, 'likely april': 491948, 'april and': 83542, 'may yet': 521621, 'yet buyer': 1016029, 'buyer might': 149685, 'more hopeful': 539446, 'hopeful than': 403836, 'anyone think': 80563, 'think recovery': 885512, 'recovery housingmarket': 705339, 'housingmarket whenwillpricesfall': 407180, 'whenwillpricesfall homeprices': 984704, 'homeprices condo': 402905, 'condo realestate': 193588, 'realestate checkout': 701475, 'checkout this': 175033, 'about luxur': 25682, 'when will house': 984500, 'house price go': 406485, 'go down likely': 353493, 'down likely april': 256921, 'likely april and': 491949, 'april and may': 83544, 'and may yet': 66806, 'may yet buyer': 521623, 'yet buyer might': 1016030, 'buyer might be': 149686, 'be more hopeful': 115979, 'more hopeful than': 539447, 'hopeful than anyone': 403837, 'than anyone think': 840357, 'anyone think recovery': 80565, 'think recovery housingmarket': 885513, 'recovery housingmarket whenwillpricesfall': 705340, 'housingmarket whenwillpricesfall homeprices': 407181, 'whenwillpricesfall homeprices condo': 984705, 'homeprices condo realestate': 402906, 'condo realestate checkout': 193589, 'realestate checkout this': 701476, 'checkout this tweet': 175036, 'this tweet about': 890886, 'tweet about luxur': 936327, 'retweet corona': 720044, 'virus patient': 958618, 'patient coughed': 644155, 'on me': 602064, 'plz retweet corona': 661831, 'retweet corona virus': 720045, 'corona virus patient': 204340, 'virus patient coughed': 958619, 'patient coughed on': 644156, 'coughed on me': 208630, 'on me at': 602066, 'me at supermarket': 522478, 'sama': 732930, 'tingin': 898590, 'sakin': 731888, 'mga': 530086, 'kanina': 470792, 'ang sama': 76294, 'sama ng': 732931, 'ng tingin': 561803, 'tingin sakin': 898591, 'sakin ng': 731889, 'ng mga': 561797, 'mga local': 530089, 'local kanina': 498134, 'kanina sa': 470793, 'sa grocery': 728892, 'even chinese': 283948, 'chinese but': 177206, 'really see': 702560, 'difference coronacrisis': 241829, 'ang sama ng': 76295, 'sama ng tingin': 732932, 'ng tingin sakin': 561804, 'tingin sakin ng': 898592, 'sakin ng mga': 731890, 'ng mga local': 561798, 'mga local kanina': 530090, 'local kanina sa': 498135, 'kanina sa grocery': 470794, 'sa grocery store': 728893, 'store not even': 809102, 'not even chinese': 569239, 'even chinese but': 283949, 'chinese but they': 177207, 'but they don': 147503, 'they don really': 881998, 'don really see': 253854, 'really see the': 702561, 'see the difference': 745826, 'the difference coronacrisis': 853260, 'coronavirius': 205425, 'coronanews': 205088, 'novelcorona': 573827, 'beresponsible': 127290, 'keepcalm': 472304, 'aardwolfkenya': 24140, 'sanitising': 734120, 'let others': 486954, 'the benefit': 849469, 'benefit in': 127007, 'the war': 871063, 'between human': 128803, '19 coronapandemic': 6074, 'coronapandemic coronavirius': 205144, 'coronavirius coronanews': 205426, 'coronanews coronavid19': 205089, 'coronavid19 novelcorona': 205386, 'novelcorona cov': 573828, 'cov d19': 212113, 'd19 staysafe': 224186, 'staysafe stayathome': 798891, 'stayathome beresponsible': 797441, 'beresponsible keepcalm': 127292, 'keepcalm precaution': 472307, 'precaution aardwolfkenya': 669263, 'aardwolfkenya sanitising': 24141, 'sanitizer and let': 734414, 'and let others': 66111, 'let others to': 486956, 'others to know': 621731, 'about the benefit': 26341, 'the benefit in': 849472, 'benefit in the': 127008, 'in the war': 429656, 'the war between': 871066, 'war between human': 966376, 'between human and': 128804, 'human and covid': 410405, 'covid 19 coronapandemic': 212866, '19 coronapandemic coronavirius': 6075, 'coronapandemic coronavirius coronanews': 205145, 'coronavirius coronanews coronavid19': 205427, 'coronanews coronavid19 novelcorona': 205090, 'coronavid19 novelcorona cov': 205387, 'novelcorona cov d19': 573829, 'cov d19 staysafe': 212119, 'd19 staysafe stayathome': 224187, 'staysafe stayathome beresponsible': 798892, 'stayathome beresponsible keepcalm': 797442, 'beresponsible keepcalm precaution': 127293, 'keepcalm precaution aardwolfkenya': 472308, 'precaution aardwolfkenya sanitising': 669264, 'japan consumption': 464722, 'price response': 676196, 'japan consumption and': 464723, 'and price response': 69471, 'price response to': 676198, 'logistical': 500698, 'facing increase': 295499, 'while simultaneously': 987274, 'simultaneously facing': 770380, 'facing logistical': 295526, 'logistical difficulty': 500701, 'difficulty with': 242417, 'around the are': 93522, 'the are facing': 848862, 'are facing increase': 86418, 'facing increase of': 295500, 'increase of demand': 432937, 'of demand while': 582514, 'demand while simultaneously': 236491, 'while simultaneously facing': 987275, 'simultaneously facing logistical': 770381, 'facing logistical difficulty': 295527, 'logistical difficulty with': 500702, 'difficulty with supply': 242418, 'supply and volunteer': 824764, 'case hence': 165769, 'hence their': 391757, 'survive civil': 829139, 'if broken': 413907, 'broken over': 140909, 'over short': 630609, 'basic probability': 112027, '19 chinese concluded': 5798, 'most case hence': 542162, 'case hence their': 165770, 'hence their data': 391758, 'reliable in people': 709206, 'in people are': 426586, 'are stockpiling gun': 90523, 'stockpiling gun to': 803982, 'gun to survive': 368750, 'to survive civil': 916020, 'survive civil war': 829140, 'war if broken': 966461, 'if broken over': 413908, 'broken over short': 140910, 'over short supply': 630610, 'short supply of': 764711, 'food basic probability': 313683, 'basic probability show': 112028, 'sole': 781848, 'discretion': 244752, 'hi since': 394732, '19 escalation': 6829, 'sa there': 728953, 'there been': 878229, 'been no': 121567, 'cost price': 208083, 'or recommended': 616804, 'recommended retail': 704792, 'retail selling': 718540, 'product retail': 681580, 'at sole': 100571, 'sole discretion': 781849, 'discretion of': 244757, 'of retailer': 589061, 'retailer we': 719402, 'control them': 202178, 'them we': 876584, 're following': 698693, 'following guideline': 312746, 'hi since the': 394733, 'covid 19 escalation': 213035, '19 escalation in': 6830, 'escalation in sa': 280289, 'in sa there': 427607, 'sa there been': 728954, 'there been no': 878232, 'been no cost': 121568, 'no cost price': 563907, 'cost price or': 208087, 'price or recommended': 675787, 'or recommended retail': 616805, 'recommended retail selling': 704794, 'retail selling price': 718541, 'selling price increase': 749412, 'price increase on': 674780, 'increase on our': 432953, 'on our product': 602622, 'our product retail': 624483, 'product retail price': 681581, 'are at sole': 84682, 'at sole discretion': 100572, 'sole discretion of': 781850, 'discretion of retailer': 244758, 'of retailer we': 589068, 'retailer we don': 719403, 'we don control': 971378, 'don control them': 253441, 'control them we': 202180, 'them we re': 876589, 'we re following': 972876, 're following guideline': 698695, 'verb': 954740, 'sellive': 749541, 'shoplive': 761216, 'liveshopping': 496253, 'salestool': 732705, 'verb onlineshopping': 954745, 'onlineshopping sellive': 609932, 'sellive shoplive': 749542, 'shoplive online': 761217, 'shopping zm': 764496, 'zm month': 1027657, 'free verb': 332297, 'verb is': 954743, 'is releasing': 451412, 'releasing the': 709127, 'new liveshopping': 559046, 'liveshopping webinar': 496254, 'webinar salestool': 975094, 'salestool early': 732706, 'stayathome initiative': 797508, 'verb onlineshopping sellive': 954746, 'onlineshopping sellive shoplive': 609933, 'sellive shoplive online': 749543, 'shoplive online shopping': 761218, 'online shopping zm': 609359, 'shopping zm month': 764497, 'zm month free': 1027658, 'month free verb': 537739, 'free verb is': 332298, 'verb is releasing': 954744, 'is releasing the': 451413, 'releasing the new': 709128, 'the new liveshopping': 861527, 'new liveshopping webinar': 559047, 'liveshopping webinar salestool': 496255, 'webinar salestool early': 975095, 'salestool early to': 732707, 'early to help': 264731, 'help the stayathome': 390681, 'the stayathome initiative': 867852, '2020 rationed': 14556, 'rationed bag': 697774, 'potato with': 667003, 'his family': 397414, 'gave my': 344651, 'my 75': 547176, '75 year': 22173, 'old father': 598249, 'father package': 300304, 'tp because': 927763, 'any at': 78945, 'today in 2020': 919679, 'in 2020 rationed': 419854, '2020 rationed bag': 14557, 'rationed bag of': 697775, 'of potato with': 588277, 'potato with my': 667004, 'with my son': 999653, 'son and his': 785349, 'and his family': 64595, 'his family and': 397416, 'family and gave': 297589, 'and gave my': 63496, 'gave my 75': 344652, 'my 75 year': 547177, '75 year old': 22174, 'year old father': 1014826, 'old father package': 598251, 'father package of': 300305, 'package of tp': 633350, 'of tp because': 592359, 'tp because he': 927765, 'find any at': 306784, 'any at his': 78946, 'at his grocery': 98915, 'his grocery store': 397482, 'you simply': 1021254, 'simply cannot': 770196, 'sanitizer use': 735992, 'use lemon': 949337, 'lemon that': 486196, 'right wash': 722398, 'with lemon': 999197, 'lemon juice': 486186, 'if you simply': 415520, 'you simply cannot': 1021255, 'simply cannot find': 770199, 'hand sanitizer use': 375638, 'sanitizer use lemon': 735993, 'use lemon that': 949338, 'lemon that right': 486197, 'that right wash': 846054, 'right wash your': 722399, 'hand with lemon': 376011, 'with lemon juice': 999199, 'cope you': 203361, 'somewhere strange': 785309, 'strange parallel': 812408, 'it scary': 460905, 'scary fun': 741148, 'fun guaranteed': 341171, 'guaranteed today': 367754, 'current takeout': 221393, 'takeout craze': 833146, 'to cope you': 903515, 'cope you have': 203362, 'to put that': 912616, 'shit somewhere strange': 759223, 'somewhere strange parallel': 785310, 'strange parallel between': 812409, 'me it scary': 523016, 'it scary fun': 460906, 'scary fun guaranteed': 741149, 'fun guaranteed today': 341172, 'guaranteed today we': 367755, 'today we re': 920480, 'the current takeout': 852669, 'current takeout craze': 221394, 'all remember': 44150, 'to regularly': 913114, 'regularly check': 707909, 'our colleague': 622425, 'colleague amp': 186182, 'amp employee': 53712, 'employee how': 273944, 'you today': 1021863, 'let all remember': 486568, 'all remember to': 44153, 'remember to regularly': 710382, 'to regularly check': 913115, 'regularly check in': 707910, 'in with our': 430947, 'with our colleague': 999982, 'our colleague amp': 622426, 'colleague amp employee': 186183, 'amp employee how': 53714, 'employee how are': 273945, 'are you today': 91872, 'you today 19': 1021864, 'kshs110': 477842, 'fall from': 296919, 'from 66': 334322, '66 to': 21428, '24 why': 15705, 'is fuel': 447965, 'in kenya': 424473, 'kenya still': 472938, 'still at': 800216, 'at kshs110': 99395, 'kshs110 ke': 477843, 'ke we': 471243, 'are watching': 91543, 'watching amid': 968701, 'price fall from': 673785, 'fall from 66': 296920, 'from 66 to': 334323, '66 to 24': 21429, 'to 24 why': 899626, '24 why is': 15706, 'why is fuel': 991104, 'is fuel price': 447966, 'price in kenya': 674702, 'in kenya still': 424481, 'kenya still at': 472939, 'still at kshs110': 800217, 'at kshs110 ke': 99396, 'kshs110 ke we': 477844, 'ke we are': 471244, 'we are watching': 970757, 'are watching amid': 91544, 'watching amid covid': 968702, 'cocoon': 185287, 'musicindustry': 546389, 'from musician': 336494, 'musician left': 546375, 'without source': 1002928, 'income to': 432482, 'empty movie': 274955, 'movie theater': 544074, 'theater and': 872243, 'growing desire': 367171, 'to cocoon': 902939, 'cocoon the': 185292, 'the music': 861146, 'music and': 546290, 'company left': 190836, 'left standing': 485644, 'standing musicindustry': 793788, 'from musician left': 336495, 'musician left without': 546376, 'left without source': 485754, 'without source of': 1002929, 'of income to': 585072, 'income to empty': 432483, 'to empty movie': 905032, 'empty movie theater': 274956, 'movie theater and': 544075, 'theater and growing': 872244, 'and growing desire': 64011, 'growing desire to': 367172, 'desire to cocoon': 238427, 'to cocoon the': 902940, 'cocoon the 19': 185293, 'crisis will have': 218413, 'will have lasting': 993644, 'effect on consumer': 269081, 'and the music': 73484, 'the music and': 861147, 'music and medium': 546291, 'and medium company': 66921, 'medium company left': 527046, 'company left standing': 190838, 'left standing musicindustry': 485645, 'dismiss': 246001, 'misused': 534494, 'inconclusive': 432552, 'of solid': 589883, 'solid evidence': 781912, 'evidence supporting': 288387, 'mask against': 518280, 'to dismiss': 904407, 'dismiss it': 246006, 'gov misused': 359633, 'misused inconclusive': 534495, 'inconclusive evidence': 432553, 'evidence our': 288376, 'consumer capitalist': 196733, 'capitalist economy': 162803, 'economy failed': 267863, 'environment they': 279160, 'they created': 881854, 'lack of solid': 478656, 'of solid evidence': 589884, 'solid evidence supporting': 781913, 'evidence supporting the': 288388, 'supporting the effectiveness': 827209, 'effectiveness of mask': 269392, 'of mask against': 586257, 'mask against the': 518281, 'against the virus': 37684, 'is no reason': 449965, 'no reason to': 565300, 'reason to dismiss': 703024, 'to dismiss it': 904408, 'dismiss it the': 246007, 'it the gov': 461538, 'the gov misused': 856485, 'gov misused inconclusive': 359634, 'misused inconclusive evidence': 534496, 'inconclusive evidence our': 432554, 'evidence our consumer': 288377, 'our consumer capitalist': 622527, 'consumer capitalist economy': 196734, 'capitalist economy failed': 162804, 'economy failed to': 267864, 'failed to meet': 296182, 'meet demand of': 527473, 'demand of the': 235957, 'of the environment': 590989, 'the environment they': 854407, 'environment they created': 279161, 'wa scared': 963146, 'scared about': 740933, 'about doing': 25120, 'this interview': 888147, 'interview wa': 442254, 'wa worried': 963737, 'worried what': 1010600, 'think but': 885171, 'what realised': 982079, 'realised wa': 701637, 'effecting so': 269195, 'our feeling': 623053, 'feeling complete': 302974, 'complete article': 192065, 'wa scared about': 963147, 'scared about doing': 740934, 'about doing this': 25121, 'doing this interview': 252765, 'this interview wa': 888149, 'interview wa worried': 442255, 'wa worried what': 963741, 'worried what people': 1010601, 'what people would': 982021, 'people would think': 650548, 'would think but': 1012331, 'think but do': 885172, 'but do you': 145566, 'know what realised': 476973, 'what realised wa': 982080, 'realised wa it': 701638, 'wa it is': 962433, 'it is effecting': 458944, 'is effecting so': 447448, 'effecting so many': 269196, 'people and we': 646894, 'and we should': 75322, 'we should not': 973282, 'not be ashamed': 568355, 'ashamed of our': 95060, 'of our feeling': 587472, 'our feeling complete': 623054, 'feeling complete article': 302975, 'npd': 576608, 'marshall': 518022, 'cohen': 185590, 'athletic': 101778, 'footwear': 318584, 'upswing': 947900, 'npd marshall': 576609, 'marshall cohen': 518023, 'cohen near': 185591, 'term take': 838307, 'retail spending': 718588, 'spending athletic': 788751, 'athletic footwear': 101781, 'footwear on': 318587, 'an upswing': 56945, 'upswing perhaps': 947901, 'npd marshall cohen': 576610, 'marshall cohen near': 518024, 'cohen near term': 185592, 'near term take': 553605, 'term take on': 838308, 'take on covid': 832402, 'on retail spending': 603180, 'retail spending athletic': 718589, 'spending athletic footwear': 788752, 'athletic footwear on': 101782, 'footwear on an': 318588, 'on an upswing': 599338, 'an upswing perhaps': 56946, 'soap sanitize': 779101, 'sanitize with': 734234, 'face stay': 294771, 'remember to wash': 710391, 'with soap sanitize': 1000805, 'soap sanitize with': 779102, 'sanitize with an': 734235, 'sanitizer and avoid': 734384, 'your face stay': 1023758, 'face stay safe': 294773, 'interpret': 442083, 'the grocerystore': 856838, 'grocerystore how': 366315, 'to interpret': 908457, 'interpret new': 442086, 'advice dr': 33353, 'birx of': 131475, 'the taskforce': 869160, 'taskforce said': 834748, 'you change': 1017915, 'your habit': 1024150, 'habit via': 372707, 'to the grocerystore': 916755, 'the grocerystore how': 856839, 'grocerystore how to': 366316, 'how to interpret': 409033, 'to interpret new': 908459, 'interpret new coronavirus': 442088, 'new coronavirus advice': 558542, 'coronavirus advice dr': 205455, 'advice dr birx': 33354, 'dr birx of': 257972, 'birx of the': 131476, 'of the taskforce': 591522, 'the taskforce said': 869162, 'taskforce said this': 834749, 'said this is': 731497, 'not the moment': 572013, 'moment to be': 536079, 'to be going': 901278, 'store should you': 810175, 'should you change': 766672, 'you change your': 1017916, 'change your habit': 172417, 'your habit via': 1024151, 'mounted': 543435, 'brushed': 141370, 'adhesive': 32241, 'toiletpapers': 923310, 'toiletpapercheap': 922999, 'double toilet': 256079, 'paper holder': 640289, 'holder with': 400084, 'with shelf': 1000670, 'shelf wall': 757742, 'wall mounted': 965164, 'mounted brushed': 543436, 'brushed nickel': 141371, 'nickel self': 562592, 'self adhesive': 747546, 'adhesive toilet': 32242, 'with phone': 1000194, 'phone storage': 655023, 'storage rack': 805983, 'rack toiletpaper': 695355, 'toiletpaper toiletpapers': 922719, 'toiletpapers toiletpaperchallenge': 923311, 'toiletpaperchallenge toiletpapercrisis': 922985, 'toiletpapercrisis toiletpapercheap': 923099, 'toiletpapercheap help': 923000, 'double toilet paper': 256080, 'toilet paper holder': 921309, 'paper holder with': 640290, 'holder with shelf': 400086, 'with shelf wall': 1000672, 'shelf wall mounted': 757743, 'wall mounted brushed': 965165, 'mounted brushed nickel': 543437, 'brushed nickel self': 141372, 'nickel self adhesive': 562593, 'self adhesive toilet': 747547, 'adhesive toilet paper': 32243, 'holder with phone': 400085, 'with phone storage': 1000197, 'phone storage rack': 655024, 'storage rack toiletpaper': 805984, 'rack toiletpaper toiletpapers': 695356, 'toiletpaper toiletpapers toiletpaperchallenge': 922720, 'toiletpapers toiletpaperchallenge toiletpapercrisis': 923312, 'toiletpaperchallenge toiletpapercrisis toiletpapercheap': 922986, 'toiletpapercrisis toiletpapercheap help': 923100, 'help brewery': 389432, 'brewery bar': 139436, 'bottle shop': 136317, 'through 19': 894286, 'did some analysis': 240811, 'some analysis of': 782289, 'analysis of consumer': 57062, 'of consumer research': 581766, 'consumer research to': 198762, 'research to help': 713866, 'to help brewery': 907466, 'help brewery bar': 389433, 'brewery bar and': 139437, 'bar and bottle': 110668, 'and bottle shop': 59094, 'bottle shop through': 136323, 'shop through 19': 760932, 'botanaway': 135820, 'microbial': 530444, 'promptly': 683966, 'hello represent': 389208, 'represent botanaway': 712870, 'botanaway in': 135821, 'in richmond': 427500, 'richmond va': 721373, 'va we': 951549, 'have repurposed': 382277, 'repurposed ourselves': 713097, 'provide anti': 686225, 'anti microbial': 78315, 'microbial hand': 530447, 'please reply': 660380, 'tweet or': 936391, 'or dm': 615009, 'will accommodate': 992184, 'accommodate you': 28440, 'you promptly': 1020463, 'hello represent botanaway': 389209, 'represent botanaway in': 712871, 'botanaway in richmond': 135822, 'in richmond va': 427505, 'richmond va we': 721374, 'va we have': 951550, 'we have repurposed': 971921, 'have repurposed ourselves': 382278, 'repurposed ourselves to': 713098, 'ourselves to provide': 625499, 'to provide anti': 912380, 'provide anti microbial': 686226, 'anti microbial hand': 78317, 'microbial hand sanitizer': 530448, 'sanitizer at wholesale': 734521, 'wholesale price to': 990481, 'price to those': 677057, 'need please reply': 555441, 'please reply to': 660383, 'reply to this': 711755, 'to this tweet': 917472, 'this tweet or': 890888, 'tweet or dm': 936392, 'or dm me': 615011, 'we will accommodate': 973830, 'will accommodate you': 992185, 'accommodate you promptly': 28441, 'intentional': 441156, 'corner intentional': 203651, 'intentional covid': 441157, 'consumer corner intentional': 196979, 'corner intentional covid': 203652, 'intentional covid 19': 441158, 'gouging is illegal': 359362, 'sunshine': 818422, 'sally is': 732749, 'constant the': 195639, 'the sunshine': 868419, 'sunshine still': 818440, 'working bringing': 1008541, 'bringing my': 140179, 'mom grocery': 535736, 'car thank': 163303, 'store superheroes': 810451, 'sally is constant': 732750, 'is constant the': 446774, 'constant the sunshine': 195640, 'the sunshine still': 868423, 'sunshine still working': 818441, 'still working bringing': 801431, 'working bringing my': 1008542, 'bringing my mom': 140180, 'my mom grocery': 549271, 'mom grocery to': 535737, 'to the car': 916543, 'the car thank': 850389, 'car thank you': 163304, 'grocery store superheroes': 365823, 'are learning': 87745, 'learning what': 484256, 'what bidet': 981117, 'bidet are': 129551, 'and apparently': 58249, 'apparently selling': 81998, 'costco would': 208296, 'had bidet': 372922, 'bidet for': 129562, 'for century': 319986, 'century also': 169607, 'also you': 49129, 'can wipe': 160228, 'your butt': 1023090, 'butt with': 148116, 'like napkin': 490835, 'napkin paper': 551859, 'towel etc': 927320, 'etc stophoarding': 282771, 'thanks to american': 842204, 'to american are': 900412, 'american are learning': 51807, 'are learning what': 87749, 'learning what bidet': 484257, 'what bidet are': 981118, 'bidet are and': 129552, 'are and apparently': 84543, 'and apparently selling': 58253, 'apparently selling them': 81999, 'them at costco': 875434, 'at costco would': 98350, 'costco would like': 208297, 'like to point': 491612, 'out that other': 627331, 'that other country': 845561, 'other country have': 620018, 'country have had': 210739, 'have had bidet': 380860, 'had bidet for': 372923, 'bidet for century': 129563, 'for century also': 319988, 'century also you': 169608, 'also you can': 49130, 'you can wipe': 1017835, 'can wipe your': 160231, 'wipe your butt': 996440, 'your butt with': 1023092, 'butt with other': 148117, 'with other thing': 999964, 'other thing like': 621109, 'thing like napkin': 884546, 'like napkin paper': 490836, 'napkin paper towel': 551860, 'paper towel etc': 640991, 'towel etc stophoarding': 927323, 'nevada': 557827, 'casino': 166721, 'nevada is': 557832, 'closed for': 183122, 'the casino': 850505, 'casino are': 166726, 'all closing': 42376, 'economy every': 267848, 'every slot': 286201, 'slot machine': 774235, 'machine must': 507391, 'be turned': 117835, 'turned off': 935860, 'midnight in': 530747, 'every casino': 285717, 'casino gas': 166728, 'activity are': 30379, 'closed nevada': 183236, 'nevada is closed': 557833, 'is closed for': 446577, 'closed for 30': 183123, '30 day the': 17022, 'day the casino': 228483, 'the casino are': 850506, 'casino are all': 166727, 'are all closing': 84293, 'all closing it': 42377, 'closing it our': 183673, 'it our economy': 460165, 'our economy every': 622843, 'economy every slot': 267850, 'every slot machine': 286202, 'slot machine must': 774236, 'machine must be': 507392, 'must be turned': 546555, 'be turned off': 117836, 'turned off at': 935861, 'off at midnight': 593669, 'at midnight in': 99740, 'midnight in every': 530748, 'in every casino': 422672, 'every casino gas': 285718, 'casino gas station': 166729, 'gas station and': 344100, 'station and grocery': 796333, 'grocery store all': 365186, 'store all non': 806136, 'non essential activity': 566329, 'essential activity are': 280754, 'activity are closed': 30381, 'are closed nevada': 85354, 'barmouth': 111122, 'stayaway': 797818, 'notwelcome': 573653, 'from barmouth': 334636, 'barmouth well': 111123, 'wa ridiculous': 963103, 'ridiculous amount': 721510, 'of holiday': 584708, 'holiday maker': 400329, 'maker here': 510831, 'here today': 393735, 'today beach': 919306, 'beach wa': 118249, 'packed so': 633639, 'the town': 869828, 'maker but': 510823, 'no local': 564613, 'local selfish': 498376, 'selfish stayaway': 748266, 'stayaway notwelcome': 797819, 'them to stay': 876514, 'away from barmouth': 105860, 'from barmouth well': 334637, 'barmouth well it': 111124, 'well it wa': 978346, 'it wa ridiculous': 462181, 'wa ridiculous amount': 963104, 'ridiculous amount of': 721512, 'amount of holiday': 53227, 'of holiday maker': 584711, 'holiday maker here': 400331, 'maker here today': 510832, 'here today beach': 393736, 'today beach wa': 919307, 'beach wa packed': 118250, 'wa packed so': 962902, 'packed so wa': 633640, 'so wa the': 778643, 'wa the town': 963474, 'the town and': 869829, 'full of holiday': 340730, 'holiday maker but': 400330, 'maker but no': 510824, 'but no local': 146490, 'no local selfish': 564614, 'local selfish stayaway': 498377, 'selfish stayaway notwelcome': 748267, 'new you': 559972, 'ftc while': 339471, 'home spot': 402109, 'spot the': 790121, 'scam ftc': 740177, 'ftc scam': 339445, 'new you can': 559973, 'can use from': 160093, 'use from the': 949227, 'the ftc while': 855947, 'ftc while you': 339472, 'at home spot': 99115, 'home spot the': 402110, 'spot the scam': 790123, 'the scam ftc': 866414, 'scam ftc scam': 740179, 'staysafe wash': 798946, 'from crowded': 335059, 'area maintain': 92103, 'metre foot': 529845, 'foot distance': 318371, 'between yourself': 128967, 'is coughing': 446858, 'coughing or': 208728, 'or sneezing': 617118, 'sneezing fightcovid19': 776314, 'staysafe wash your': 798947, 'hand with sanitizer': 376015, 'sanitizer and stay': 734438, 'away from crowded': 105872, 'from crowded area': 335060, 'crowded area maintain': 219296, 'area maintain at': 92104, 'least metre foot': 484555, 'metre foot distance': 529846, 'foot distance between': 318372, 'distance between yourself': 246669, 'between yourself and': 128968, 'yourself and anyone': 1026521, 'who is coughing': 989066, 'is coughing or': 446860, 'coughing or sneezing': 208730, 'or sneezing fightcovid19': 617119, 'only opening': 610908, 'measure business': 525143, 'closure online shopping': 183988, 'shopping and senior': 762019, 'and senior only': 71256, 'senior only opening': 750374, 'only opening hour': 610909, 'opening hour are': 612847, 'the measure business': 860369, 'measure business are': 525144, 'business are taking': 143392, 'are taking to': 90738, 'taking to prevent': 833636, 'curated': 220535, 'pandemic many': 635924, 'facing severe': 295586, 'severe personal': 754046, 'personal medical': 652915, 'hardship adhering': 378271, 'our commitment': 622438, 'commitment consumer': 188991, 'consumer first': 197496, 'first advocate': 308485, 'advocate we': 33853, 've curated': 953021, 'curated information': 220538, 'you navigate': 1019952, 'navigate this': 553093, '19 pandemic many': 9387, 'pandemic many people': 635926, 'people are facing': 646969, 'are facing severe': 86430, 'facing severe personal': 295587, 'severe personal medical': 754047, 'personal medical and': 652916, 'medical and financial': 526044, 'and financial hardship': 62871, 'financial hardship adhering': 306428, 'hardship adhering to': 378272, 'adhering to our': 32237, 'to our commitment': 911162, 'our commitment consumer': 622439, 'commitment consumer first': 188992, 'consumer first advocate': 197497, 'first advocate we': 308486, 'advocate we ve': 33854, 'we ve curated': 973650, 've curated information': 953022, 'curated information to': 220539, 'information to help': 438013, 'help you navigate': 390984, 'you navigate this': 1019954, 'navigate this unprecedented': 553097, 'unprecedented time in': 943199, 'time in our': 897005, 'just thanks': 469977, 'thanks putin': 842161, 'raising our': 696100, 'our gas': 623230, 'pandemic pressbriefing': 636230, 'trump just thanks': 933671, 'just thanks putin': 469978, 'thanks putin and': 842162, 'and mb for': 66831, 'mb for raising': 522032, 'for raising our': 324951, 'raising our gas': 696101, 'our gas price': 623231, 'the pandemic pressbriefing': 863063, 'video critical': 956699, 'nurse emotional': 577320, 'emotional please': 273295, 'please to': 660681, 'to after': 900168, 'shift 19': 758213, 'video critical care': 956700, 'care nurse emotional': 164084, 'nurse emotional please': 577321, 'emotional please to': 273296, 'please to after': 660682, 'to after she': 900170, 'unable to find': 939327, 'to find fresh': 905900, 'find fresh food': 306925, 'fresh food after': 332956, 'long shift 19': 501624, 'nigerdeltaunrest': 562702, 'bokoharam': 134082, 'insurgency': 440900, '2016recession': 13846, 'occasioned': 578960, 'unsustainability': 943601, 'first it': 308738, 'wa nigerdeltaunrest': 962710, 'nigerdeltaunrest then': 562703, 'then came': 877052, 'came the': 157057, 'the lingering': 859431, 'lingering bokoharam': 493705, 'bokoharam insurgency': 134083, 'insurgency the': 440901, 'the 2016recession': 848007, '2016recession occasioned': 13847, 'occasioned by': 578961, 'the dip': 853302, 'also came': 48001, 'came now': 157030, 'the unsustainability': 870469, 'unsustainability of': 943602, 'the model': 860720, 'our political': 624381, 'political economy': 663643, 'first it wa': 308740, 'it wa nigerdeltaunrest': 462155, 'wa nigerdeltaunrest then': 962711, 'nigerdeltaunrest then came': 562704, 'then came the': 877055, 'came the lingering': 157058, 'the lingering bokoharam': 859432, 'lingering bokoharam insurgency': 493706, 'bokoharam insurgency the': 134084, 'insurgency the 2016recession': 440902, 'the 2016recession occasioned': 848008, '2016recession occasioned by': 13848, 'occasioned by the': 578963, 'by the dip': 154310, 'the dip in': 853303, 'dip in global': 243191, 'oil price also': 597043, 'price also came': 672291, 'also came now': 48002, 'came now the': 157031, 'now the pandemic': 576057, 'pandemic ha come': 635535, 'ha come to': 370204, 'come to expose': 187569, 'to expose the': 905515, 'expose the unsustainability': 292808, 'the unsustainability of': 870470, 'unsustainability of the': 943603, 'of the model': 591247, 'the model of': 860721, 'of our political': 587538, 'our political economy': 624382, 'gargantuan': 343660, 'immediate present': 417010, 'present brand': 670578, 'brand need': 137923, 'demonstrate they': 236841, 'the gargantuan': 856161, 'gargantuan worldwide': 343661, 'worldwide effort': 1010344, 'face socialmedia': 294761, 'in the immediate': 429282, 'the immediate present': 857906, 'immediate present brand': 417011, 'present brand need': 670579, 'brand need to': 137926, 'need to demonstrate': 555901, 'to demonstrate they': 904169, 'demonstrate they are': 236842, 'on the side': 604363, 'consumer and the': 196251, 'and the gargantuan': 73391, 'the gargantuan worldwide': 856162, 'gargantuan worldwide effort': 343662, 'worldwide effort we': 1010345, 'effort we face': 269666, 'we face socialmedia': 971521, 'face socialmedia via': 294762, 'toco': 919108, 'tococares': 919113, 'toco is': 919109, 'is excited': 447628, 'have 100': 379066, 'working remotely': 1008885, 'remotely so': 710782, 'you toco': 1021861, 'toco offer': 919111, 'offer security': 594779, 'security peace': 744706, 'mind we': 532766, 'our car': 622313, 'car to': 163317, 'pharmacy other': 654408, 'staysafe tococares': 798940, 'toco is excited': 919110, 'is excited to': 447630, 'excited to announce': 289570, 'announce that we': 76882, 'we have 100': 971738, 'have 100 of': 379069, 'of our staff': 587568, 'our staff working': 624885, 'staff working remotely': 793117, 'working remotely so': 1008889, 'remotely so we': 710783, 'to be here': 901302, 'be here for': 115224, 'for you toco': 328095, 'you toco offer': 1021862, 'toco offer security': 919112, 'offer security peace': 594780, 'security peace of': 744707, 'peace of mind': 646009, 'of mind we': 586547, 'mind we need': 532767, 'need our car': 555396, 'our car to': 622318, 'car to get': 163321, 'get to and': 348458, 'and from the': 63352, 'store pharmacy other': 809546, 'pharmacy other essential': 654409, 'other essential service': 620173, 'service staysafe tococares': 752868, 'enoughtogoround': 277789, 'on everybody': 600625, 'everybody let': 286460, 'all pull': 44094, 'pull in': 688861, 'have and': 379272, 'always will': 49803, 'will support': 995032, 'panicbuying enoughtogoround': 638936, 'enoughtogoround stopstockpiling': 277790, 'come on everybody': 187432, 'on everybody let': 600628, 'everybody let all': 286461, 'let all pull': 486567, 'all pull in': 44095, 'pull in the': 688862, 'those that have': 892534, 'that have and': 844195, 'have and always': 379273, 'and always will': 57999, 'always will support': 49805, 'will support in': 995034, 'need panicbuying enoughtogoround': 555411, 'panicbuying enoughtogoround stopstockpiling': 638937, 'enoughtogoround stopstockpiling stoppanicbuying': 277791, 'northgate': 567792, 'tuesdaymorning': 935207, 'breaking great': 138955, 'great news': 362838, 'news northgate': 560637, 'northgate market': 567795, 'in socal': 428040, 'socal is': 779398, 'for 65': 318900, 'disabled folk': 243906, 'folk let': 312207, 'service catch': 752211, 'catch on': 167016, 'on tuesdaymorning': 604895, 'breaking great news': 138956, 'great news northgate': 362843, 'news northgate market': 560638, 'northgate market in': 567796, 'market in socal': 516572, 'in socal is': 428041, 'socal is holding': 779399, 'is holding special': 448521, 'hour for 65': 405596, 'for 65 and': 318901, '65 and disabled': 21335, 'and disabled folk': 61393, 'disabled folk let': 243907, 'folk let hope': 312208, 'let hope this': 486810, 'hope this kind': 403720, 'kind of public': 474930, 'of public service': 588592, 'public service catch': 688302, 'service catch on': 752212, 'catch on tuesdaymorning': 167017, 'weedlovers': 975778, 'masshole': 519951, 'snoopdogg': 776381, 'includes weed': 431828, 'weed but': 975756, 'more smoke': 540407, 'smoke the': 775872, 'more eat': 539096, 'eat looked': 265971, 'last cookie': 480158, 'cookie dinner': 202831, 'dinner in': 243071, 'survival second': 829074, 'second look': 743761, 'wa good': 962235, 'good snack': 357740, 'snack weedlovers': 776037, 'weedlovers masshole': 975779, 'masshole snoopdogg': 519952, 'we re supposed': 972979, 'supposed to stock': 827376, 'and everything we': 62430, 'need that includes': 555728, 'that includes weed': 844483, 'includes weed but': 431829, 'weed but the': 975757, 'but the more': 147366, 'the more smoke': 860892, 'more smoke the': 540408, 'smoke the more': 775873, 'the more eat': 860877, 'more eat looked': 539097, 'eat looked at': 265972, 'at the last': 101000, 'the last cookie': 859004, 'last cookie dinner': 480159, 'cookie dinner in': 202832, 'dinner in week': 243073, 'in week for': 430750, 'week for survival': 976238, 'for survival second': 326093, 'survival second look': 829075, 'second look it': 743762, 'look it wa': 502447, 'it wa good': 462120, 'wa good snack': 962240, 'good snack weedlovers': 357741, 'snack weedlovers masshole': 776038, 'weedlovers masshole snoopdogg': 975780, 'mktg': 534702, 'crisis infographic': 217550, 'infographic by': 437631, 'by mktg': 153232, 'behavior in time': 124087, 'of crisis infographic': 582166, 'crisis infographic by': 217551, 'infographic by mktg': 437632, 'stimulusbill': 801626, 'rookie': 725861, 'search winner': 743305, 'winner past': 996035, 'is shelterinplace': 451844, 'shelterinplace over': 758009, 'over socialdistancing': 630627, 'socialdistancing with': 780878, 'with toiletpaper': 1001803, 'toiletpaper honorable': 922081, 'honorable mention': 403263, 'mention and': 528743, 'and stimulusbill': 72397, 'stimulusbill rookie': 801631, 'rookie of': 725864, 'and the search': 73571, 'the search winner': 866559, 'search winner past': 743306, 'winner past day': 996036, 'past day is': 643520, 'day is shelterinplace': 227840, 'is shelterinplace over': 451845, 'shelterinplace over socialdistancing': 758010, 'over socialdistancing with': 630629, 'socialdistancing with toiletpaper': 780880, 'with toiletpaper honorable': 1001806, 'toiletpaper honorable mention': 922082, 'honorable mention and': 403264, 'mention and stimulusbill': 528744, 'and stimulusbill rookie': 72398, 'stimulusbill rookie of': 801632, 'rookie of the': 725865, 'the month 19': 860843, 'frequently maintain': 332861, 'avoid crowded': 105072, 'place follow': 657434, 'medical practitioner': 526303, 'practitioner advice': 668793, 'soap or alcohol': 779069, 'or alcohol based': 614285, 'based sanitizer frequently': 111738, 'sanitizer frequently maintain': 734940, 'frequently maintain social': 332862, 'distance and avoid': 246632, 'and avoid crowded': 58564, 'avoid crowded place': 105074, 'crowded place follow': 219336, 'place follow health': 657435, 'follow health medical': 312406, 'health medical practitioner': 386637, 'medical practitioner advice': 526304, 'scared son': 741009, 'son of': 785419, 'of current': 582256, 'current 60': 221086, '60 grocery': 20947, 'worker here': 1007118, 'here thanks': 393633, 'great piece': 362885, 'piece where': 656381, 'in demanding': 422171, 'demanding proper': 236608, 'proper protective': 684142, 'scared son of': 741010, 'son of current': 785422, 'of current 60': 582257, 'current 60 grocery': 221087, '60 grocery store': 20948, 'store worker here': 811523, 'worker here thanks': 1007121, 'here thanks for': 393634, 'thanks for this': 842081, 'for this great': 327030, 'this great piece': 887754, 'great piece where': 362891, 'piece where the': 656382, 'hell is in': 389025, 'is in demanding': 448764, 'in demanding proper': 422174, 'demanding proper protective': 236609, 'proper protective gear': 684144, 'gear for employee': 344948, 'beijing': 124781, 'is tech': 452588, 'tech giant': 836097, 'giant alibaba': 349733, 'alibaba largest': 41718, 'in beijing': 420764, 'beijing faring': 124786, 'faring amid': 299064, 'china check': 176554, 'and interview': 65338, 'interview their': 442245, 'how is tech': 408111, 'is tech giant': 452589, 'tech giant alibaba': 836098, 'giant alibaba largest': 349735, 'alibaba largest grocery': 41719, 'chain in beijing': 170800, 'in beijing faring': 420766, 'beijing faring amid': 124787, 'faring amid the': 299065, 'in china check': 421395, 'china check it': 176555, 'it out and': 460173, 'out and interview': 625673, 'and interview their': 65340, 'interview their store': 442246, 'their store manager': 874861, 'husband work': 411793, 'supermarket last': 821266, 'week 900': 975808, 'walked through': 964980, 'through his': 894502, 'his store': 397826, 'him contracting': 396570, 'likely would': 492199, 'him to': 396738, 'isolate so': 454911, 'be protected': 116579, 'protected but': 685124, 'but he': 145897, 'he doesn': 384905, 'choice stay': 177808, 'inside for': 439262, 'you others': 1020244, 'my husband work': 548803, 'husband work in': 411795, 'in supermarket last': 428622, 'supermarket last week': 821270, 'last week 900': 480627, 'week 900 people': 975809, '900 people walked': 23390, 'people walked through': 650125, 'walked through his': 964982, 'through his store': 894503, 'his store the': 397832, 'store the risk': 810619, 'risk of him': 723753, 'of him contracting': 584631, 'him contracting covid': 396571, 'is likely would': 449355, 'likely would love': 492200, 'would love for': 1012011, 'love for him': 504665, 'for him to': 322289, 'him to self': 396749, 'self isolate so': 747688, 'isolate so he': 454912, 'he can be': 384811, 'can be protected': 157668, 'be protected but': 116580, 'protected but he': 685126, 'but he doesn': 145900, 'he doesn have': 384907, 'doesn have choice': 251818, 'have choice stay': 379967, 'choice stay inside': 177809, 'stay inside for': 797098, 'inside for you': 439266, 'for you others': 328078, 'florida food': 310932, 'surge by': 828134, 'by 600': 151693, '600 per': 21103, 'cent daily': 169045, 'daily mail': 224681, 'mail more': 508632, 'florida food bank': 310933, 'bank demand surge': 109764, 'demand surge by': 236302, 'surge by 600': 828135, 'by 600 per': 151695, '600 per cent': 21104, 'per cent daily': 650747, 'cent daily mail': 169046, 'daily mail more': 224683, 'mail more covid': 508633, 'covid 19 news': 213473, 'urn': 948479, 'chinesevirus19': 177460, 'there pattern': 878920, 'in infection': 424088, 'death mobile': 230128, 'mobile distance': 534964, 'distance urn': 246871, 'urn etc': 948480, 'etc china': 282466, 'china hiding': 176712, 'hiding oil': 394875, 'price negative': 675319, 'negative coronaupdate': 556749, 'coronaupdate chinesevirus19': 205327, 'chinesevirus19 china': 177461, 'china stayhomestaysafe': 176953, 'is there pattern': 453022, 'there pattern in': 878921, 'pattern in infection': 644473, 'in infection death': 424090, 'infection death mobile': 436743, 'death mobile distance': 230129, 'mobile distance urn': 534965, 'distance urn etc': 246872, 'urn etc etc': 948481, 'etc etc china': 282518, 'etc china hiding': 282467, 'china hiding oil': 176713, 'hiding oil price': 394876, 'oil price negative': 597199, 'price negative coronaupdate': 675320, 'negative coronaupdate chinesevirus19': 556750, 'coronaupdate chinesevirus19 china': 205328, 'chinesevirus19 china stayhomestaysafe': 177462, 'persona': 652765, 'sea consumer': 743088, 'consumer persona': 198356, 'persona born': 652766, 'born out': 135563, 'of study': 590324, 'sea consumer persona': 743089, 'consumer persona born': 198357, 'persona born out': 652767, 'born out of': 135564, 'out of study': 626843, 'lexington': 487860, 'rush am': 728280, 'am interested': 50152, 'in knowing': 424526, 'what percentage': 982024, 'percentage of': 651208, 'retail essential': 718092, 'country work': 211264, 'this environment': 887394, 'environment traveling': 279164, 'traveling around': 930636, 'around lexington': 93376, 'lexington ky': 487861, 'ky area': 478067, 'only know': 610687, 'few there': 304089, 'are crowd': 85634, 'rush am interested': 728281, 'am interested in': 50153, 'interested in knowing': 441460, 'in knowing what': 424528, 'knowing what percentage': 477149, 'what percentage of': 982025, 'percentage of retail': 651212, 'of retail essential': 589046, 'retail essential employee': 718093, 'essential employee have': 281002, 'employee have tested': 273925, 'our country work': 622607, 'country work in': 211265, 'work in this': 1005351, 'in this environment': 429940, 'this environment traveling': 887396, 'environment traveling around': 279165, 'traveling around lexington': 930637, 'around lexington ky': 93377, 'lexington ky area': 487862, 'ky area and': 478068, 'area and only': 91941, 'and only know': 68140, 'only know of': 610689, 'know of few': 476644, 'of few there': 583495, 'few there are': 304090, 'there are crowd': 878087, 'are crowd in': 85635, 'crushcovid': 219791, 'lagossdginvest': 478966, 'open strictly': 612525, 'strictly for': 813691, 'pharmacy shop': 654453, 'shop stayhomestaysafe': 760834, 'stayhomestaysafe crushcovid': 798508, 'crushcovid stopthespread': 219794, 'stopthespread lagossdginvest': 805907, 'not panic the': 570940, 'panic the market': 638685, 'market is open': 516636, 'is open strictly': 450580, 'open strictly for': 612526, 'strictly for essential': 813692, 'commodity like food': 189209, 'like food store': 490263, 'food store and': 316840, 'and pharmacy shop': 68976, 'pharmacy shop stayhomestaysafe': 654454, 'shop stayhomestaysafe crushcovid': 760835, 'stayhomestaysafe crushcovid stopthespread': 798509, 'crushcovid stopthespread lagossdginvest': 219795, 'for yourselves': 328241, 'yourselves shame': 1026809, 'lady on': 478799, 'before stock': 123102, 'piling for': 656594, 'selfish people hoarding': 748211, 'hoarding food for': 399303, 'food for yourselves': 314590, 'for yourselves shame': 328242, 'yourselves shame on': 1026810, 'on you you': 605446, 'you you will': 1022490, 'this lady on': 888590, 'lady on your': 478802, 'your hand think': 1024230, 'hand think of': 375843, 'of others before': 587385, 'others before stock': 621302, 'before stock piling': 123103, 'stock piling for': 802661, 'piling for yourself': 656596, 'yourself leave some': 1026660, 'pandemicbanter': 637108, 'craigdavid': 214813, '7days': 22464, 'igotthevirusonmonday': 415934, 'thenchilledonsunday': 877806, 'coronavibez': 205367, 'toiletpaperpandemic': 923192, '2020problems': 14750, 'prankstarz': 668962, 'with pandemicbanter': 1000075, 'pandemicbanter isolation': 637109, 'isolation selfquarantine': 455419, 'selfquarantine craigdavid': 748562, 'craigdavid 7days': 214814, '7days quarantine': 22467, 'quarantine igotthevirusonmonday': 692279, 'igotthevirusonmonday thenchilledonsunday': 415935, 'thenchilledonsunday coronavibez': 877807, 'coronavibez toiletpaperpandemic': 205368, 'toiletpaperpandemic toiletpaper': 923193, 'toiletpaper 2020problems': 921683, '2020problems prankstarz': 14751, 'quarantine with pandemicbanter': 692709, 'with pandemicbanter isolation': 1000076, 'pandemicbanter isolation selfquarantine': 637110, 'isolation selfquarantine craigdavid': 455420, 'selfquarantine craigdavid 7days': 748563, 'craigdavid 7days quarantine': 214815, '7days quarantine igotthevirusonmonday': 22468, 'quarantine igotthevirusonmonday thenchilledonsunday': 692280, 'igotthevirusonmonday thenchilledonsunday coronavibez': 415936, 'thenchilledonsunday coronavibez toiletpaperpandemic': 877808, 'coronavibez toiletpaperpandemic toiletpaper': 205369, 'toiletpaperpandemic toiletpaper 2020problems': 923194, 'toiletpaper 2020problems prankstarz': 921684, 'lockedinwithmom': 500514, 'face when': 294846, 'when my': 983746, 'mother asks': 543060, 'asks for': 96134, 'store 15': 806019, 'after ve': 36482, 've ordered': 953423, 'ordered through': 618917, 'their pickup': 874300, 'pickup service': 656009, 'service lockedinwithmom': 752575, 'my face when': 548167, 'face when my': 294848, 'when my mother': 983751, 'my mother asks': 549324, 'mother asks for': 543061, 'asks for something': 96137, 'for something from': 325789, 'something from the': 784916, 'grocery store 15': 365165, 'store 15 minute': 806021, '15 minute after': 3773, 'minute after ve': 533714, 'after ve ordered': 36483, 've ordered through': 953424, 'ordered through their': 618918, 'through their pickup': 894785, 'their pickup service': 874301, 'pickup service lockedinwithmom': 656012, 'and livestock': 66259, 'livestock price': 496279, 'plunge under': 661470, 'under weight': 940381, '19 uncertainty': 11623, 'crop and livestock': 218895, 'and livestock price': 66261, 'livestock price plunge': 496280, 'price plunge under': 675933, 'plunge under weight': 661471, 'under weight of': 940382, 'weight of covid': 977706, 'covid 19 uncertainty': 213995, 'our real': 624544, 'real key': 701241, 'been revealed': 121846, 'revealed tonight': 720285, 'the banker': 849260, 'banker no': 110377, 'the trader': 869859, 'trader no': 928743, 'no our': 565023, 'are nurse': 88624, 'doctor carers': 250866, 'teacher delivery': 835448, 'driver porter': 259703, 'porter those': 664987, 'love how our': 504696, 'how our real': 408463, 'our real key': 624545, 'real key worker': 701242, 'key worker have': 473486, 'have been revealed': 379663, 'been revealed tonight': 121848, 'revealed tonight not': 720286, 'tonight not the': 924461, 'not the banker': 571984, 'the banker no': 849263, 'banker no not': 110378, 'no not the': 564888, 'not the trader': 572037, 'the trader no': 869863, 'trader no our': 928744, 'no our real': 565024, 'worker are nurse': 1006410, 'are nurse doctor': 88625, 'nurse doctor carers': 577287, 'doctor carers supermarket': 250867, 'staff teacher delivery': 792922, 'teacher delivery driver': 835449, 'delivery driver porter': 233931, 'driver porter those': 259704, 'porter those on': 664988, 'line of our': 493307, 'pandemic to you': 636798, 'plattsmetals': 659096, 'plattscommoditynews': 659092, 'plattsmetals plattscommoditynews': 659097, 'plattscommoditynews america': 659093, 'more coal': 538830, 'podcast the': 662315, 'plattsmetals plattscommoditynews america': 659098, 'plattscommoditynews america march': 659095, 'travel more coal': 930431, 'more coal mine': 538831, 'coal mine closure': 185060, 'come podcast the': 187485, 'undeniable': 939943, 'contentmarketing': 200861, 'benchmark data': 126839, 'data how': 226271, 'impacting sale': 418256, 'marketing performance': 517677, 'performance updated': 651472, 'updated weekly': 947458, 'weekly the': 977583, 'is undeniable': 453454, 'undeniable in': 939948, 'of closure': 581472, 'and shifting': 71465, 'behavior business': 123942, 'business across': 143209, 'via contentmarketing': 955878, 'benchmark data how': 126840, 'data how covid': 226272, 'is impacting sale': 448713, 'impacting sale and': 418257, 'sale and marketing': 732043, 'and marketing performance': 66728, 'marketing performance updated': 517678, 'performance updated weekly': 651473, 'updated weekly the': 947460, 'weekly the economic': 977585, '19 is undeniable': 8073, 'is undeniable in': 453455, 'undeniable in the': 939949, 'face of closure': 294648, 'of closure and': 581473, 'closure and shifting': 183844, 'and shifting consumer': 71466, 'shifting consumer behavior': 758518, 'consumer behavior business': 196451, 'behavior business across': 123943, 'business across the': 143213, 'world via contentmarketing': 1010130, 'rwdsu': 728768, 'criticizing': 218790, 'retail wholesale': 718856, 'and department': 61210, 'store union': 810995, 'union rwdsu': 941928, 'rwdsu announced': 728769, 'post criticizing': 666085, 'criticizing the': 218791, 'the poultry': 864139, 'poultry industry': 667324, 'industry delayed': 435767, 'delayed covid': 232774, 'response the': 715812, 'union represents': 941926, 'represents 00': 712957, '00 member': 329, 'the mitchell': 860695, 'mitchell county': 534515, 'county based': 211330, 'based factory': 111573, 'the retail wholesale': 865734, 'retail wholesale and': 718857, 'wholesale and department': 990415, 'and department store': 61211, 'department store union': 237283, 'store union rwdsu': 810997, 'union rwdsu announced': 941929, 'rwdsu announced the': 728770, 'announced the death': 77077, 'the death in': 852971, 'death in post': 230081, 'in post criticizing': 426862, 'post criticizing the': 666086, 'criticizing the poultry': 218792, 'the poultry industry': 864141, 'poultry industry delayed': 667326, 'industry delayed covid': 435768, 'delayed covid 19': 232775, '19 response the': 10164, 'response the union': 715814, 'the union represents': 870410, 'union represents 00': 941927, 'represents 00 member': 712958, '00 member at': 330, 'member at the': 528032, 'at the mitchell': 101024, 'the mitchell county': 860696, 'mitchell county based': 534516, 'county based factory': 211331, 'walkthrough': 965138, 'c5': 154848, 'daylihht': 228906, '7kg': 22480, 'backpack': 107573, 'did supply': 240831, 'run today': 727847, 'today walk': 920459, 'walk all': 964728, 'way from': 969598, 'my condo': 547783, 'condo to': 193592, 'still pretty': 801065, 'pretty far': 671406, 'far walkthrough': 298966, 'walkthrough c5': 965139, 'c5 and': 154851, 'in broad': 420997, 'broad daylihht': 140704, 'daylihht 7kg': 228907, '7kg rice': 22483, 'not included': 570115, 'the pic': 863715, 'pic cuz': 655594, 'cuz it': 223802, 'my backpack': 547378, 'backpack covid': 107576, '19 suck': 10929, 'did supply run': 240832, 'supply run today': 825790, 'run today walk': 727850, 'today walk all': 920460, 'walk all the': 964729, 'the way from': 871154, 'way from my': 969601, 'from my condo': 336503, 'my condo to': 547784, 'condo to the': 193593, 'nearest supermarket still': 553733, 'supermarket still pretty': 822959, 'still pretty far': 801066, 'pretty far walkthrough': 671407, 'far walkthrough c5': 298967, 'walkthrough c5 and': 965140, 'c5 and back': 154852, 'and back in': 58617, 'back in broad': 107082, 'in broad daylihht': 420998, 'broad daylihht 7kg': 140705, 'daylihht 7kg rice': 228908, '7kg rice not': 22484, 'rice not included': 721089, 'not included in': 570117, 'in the pic': 429452, 'the pic cuz': 863717, 'pic cuz it': 655595, 'cuz it in': 223803, 'it in my': 458738, 'in my backpack': 425538, 'my backpack covid': 547379, 'backpack covid 19': 107577, 'covid 19 suck': 213884, 'teamgp': 835868, 'common call': 189363, 'call had': 155921, 'had yesterday': 373811, 'yesterday gp': 1015757, 'gp can': 361402, 'have prescription': 382030, 'prescription for': 670505, 'for paracetamol': 324381, 'paracetamol well': 641278, 'so cannot': 776736, 'some place': 783570, 'place increased': 657518, 'some pharmacy': 783560, 'pharmacy shutting': 654460, 'shutting their': 768294, 'door this': 255744, 'an overstretched': 56756, 'overstretched service': 631562, 'service nh': 752618, 'nh teamgp': 562127, 'most common call': 542184, 'common call had': 189364, 'call had yesterday': 155922, 'had yesterday gp': 373813, 'yesterday gp can': 1015758, 'gp can have': 361403, 'can have prescription': 158582, 'have prescription for': 382031, 'prescription for paracetamol': 670506, 'for paracetamol well': 324385, 'paracetamol well people': 641279, 'well people buying': 978475, 'people buying it': 647348, 'buying it up': 150608, 'up so cannot': 946013, 'so cannot find': 776739, 'cannot find it': 161841, 'find it some': 307007, 'it some place': 461167, 'some place increased': 783573, 'place increased price': 657519, 'increased price so': 433419, 'price so cannot': 676501, 'so cannot afford': 776737, 'afford it some': 34720, 'it some pharmacy': 461166, 'some pharmacy shutting': 783561, 'pharmacy shutting their': 654461, 'shutting their door': 768295, 'their door this': 873077, 'door this add': 255745, 'this add to': 886197, 'add to an': 31515, 'to an overstretched': 900470, 'an overstretched service': 56757, 'overstretched service nh': 631563, 'service nh teamgp': 752619, 'destabilized': 238958, 'disease also': 245079, 'also known': 48459, '19 into': 7914, 'country seems': 211036, 'have destabilized': 380244, 'destabilized our': 238959, 'social norm': 779903, 'norm and': 567030, 'advent of the': 33082, 'coronavirus disease also': 205827, 'disease also known': 245080, 'also known covid': 48461, 'covid 19 into': 213286, '19 into the': 7915, 'into the country': 443110, 'the country seems': 852150, 'country seems to': 211037, 'to have destabilized': 907229, 'have destabilized our': 380245, 'destabilized our social': 238960, 'our social norm': 624812, 'social norm and': 779904, 'norm and behaviour': 567031, 'cashback': 166397, 'cashback hack': 166400, 'hack new': 372744, 'new scheme': 559554, 'scheme could': 741557, 'you knock': 1019473, 'knock thousand': 476166, 'thousand off': 893475, 'off early': 593798, 'early just': 264628, 'cashback hack new': 166401, 'hack new scheme': 372745, 'new scheme could': 559555, 'scheme could help': 741558, 'could help you': 209299, 'help you knock': 390978, 'you knock thousand': 1019475, 'knock thousand off': 476167, 'thousand off your': 893476, 'off your mortgage': 594446, 'mortgage and pay': 541864, 'and pay it': 68799, 'pay it off': 644971, 'it off early': 459985, 'off early just': 593799, 'early just by': 264629, 'just by shopping': 468402, 'the 10': 847852, '10 way': 1751, 'the 10 way': 847858, '10 way covid': 1752, 'changed the american': 172561, 'storing': 811760, 'from obesity': 336627, 'obesity than': 578376, 'from storing': 337450, 'storing all': 811761, 'that crap': 843390, 'crap food': 214891, 'most of you': 542570, 'die from obesity': 241353, 'from obesity than': 336628, 'obesity than from': 578377, '19 from storing': 7138, 'from storing all': 337451, 'storing all that': 811762, 'all that crap': 44634, 'that crap food': 843391, 'confidential': 194017, 'together are': 920710, 'free and': 331638, 'and confidential': 60278, 'confidential advice': 194018, 'to founder': 906210, 'founder ceo': 330527, 'uk smes': 938720, 'smes in': 775647, 'tech consumer': 836067, 'hospitality space': 404803, 'space affected': 787044, 'all together are': 45258, 'together are offering': 920711, 'offering free and': 595112, 'free and confidential': 331644, 'and confidential advice': 60279, 'confidential advice and': 194019, 'advice and support': 33319, 'and support to': 72857, 'support to founder': 826944, 'to founder ceo': 906211, 'founder ceo and': 330528, 'ceo and business': 169641, 'and business owner': 59296, 'business owner of': 144190, 'owner of uk': 632524, 'of uk smes': 592577, 'uk smes in': 938721, 'smes in the': 775648, 'in the tech': 429594, 'the tech consumer': 869222, 'tech consumer retail': 836068, 'consumer retail and': 198793, 'and hospitality space': 64756, 'hospitality space affected': 404804, 'space affected by': 787045, '19 check it': 5783, 'august': 102978, 'america increased': 51564, 'increased last': 433360, 'week fuel': 976263, 'plummeted across': 661322, 'board crude': 133625, 'oil plunged': 597016, 'plunged to': 661505, 'low while': 505743, 'pump are': 689026, 'lowest since': 506223, 'since august': 770512, 'august 2016': 102979, 'case in america': 165785, 'in america increased': 420226, 'america increased last': 51565, 'increased last week': 433361, 'last week fuel': 480648, 'week fuel price': 976264, 'fuel price plummeted': 340245, 'price plummeted across': 675911, 'plummeted across the': 661323, 'the board crude': 849806, 'board crude oil': 133626, 'crude oil plunged': 219565, 'oil plunged to': 597017, 'plunged to 18': 661506, 'year low while': 1014741, 'low while price': 505744, 'while price at': 987169, 'the pump are': 864896, 'pump are now': 689028, 'now the lowest': 576050, 'the lowest since': 859822, 'lowest since august': 506227, 'since august 2016': 770513, 'maybe now': 521760, 'employee too': 274349, 'maybe now will': 521763, 'now will provide': 576432, 'will provide mask': 994517, 'glove to it': 352972, 'to it employee': 908577, 'it employee too': 457808, 'huntsville': 411442, 'huntsville leader': 411443, 'leader encourage': 483447, 'encourage resident': 275623, 'pandemic onlineshopping': 636105, 'ecommerce video': 266888, 'huntsville leader encourage': 411444, 'leader encourage resident': 483448, 'encourage resident to': 275624, 'resident to support': 714389, '19 pandemic onlineshopping': 9417, 'pandemic onlineshopping ecommerce': 636106, 'onlineshopping ecommerce video': 609897, 'key opec': 473355, 'for today': 327239, 'until thursday': 943906, 'thursday after': 895333, 'russia accused': 728412, 'accused each': 28936, 'other of': 620590, 'of sparking': 589965, 'sparking the': 787607, 'war to': 966566, 'oil sector': 597419, 'sector oilprices': 744282, 'key opec meeting': 473356, 'opec meeting scheduled': 611915, 'meeting scheduled for': 527756, 'scheduled for today': 741494, 'for today ha': 327240, 'ha been postponed': 369870, 'been postponed until': 121684, 'postponed until thursday': 666840, 'until thursday after': 943907, 'thursday after saudiarabia': 895334, 'and russia accused': 70659, 'russia accused each': 728413, 'accused each other': 28937, 'each other of': 264200, 'other of sparking': 620592, 'of sparking the': 589966, 'sparking the price': 787608, 'price war to': 677378, 'war to hurt': 966568, 'to hurt the': 908066, 'hurt the oil': 411618, 'the oil sector': 862118, 'oil sector oilprices': 597423, 'selfdistancing': 747942, 'love our': 504751, 'they always': 881158, 'always go': 49577, 'go above': 353244, 'beyond selfdistancing': 129228, 'selfdistancing heb': 747943, 'why love our': 991175, 'love our grocery': 504752, 'store they always': 810663, 'they always go': 881160, 'always go above': 49578, 'go above and': 353245, 'and beyond selfdistancing': 58950, 'beyond selfdistancing heb': 129229, 'think thing': 885690, 'are bleak': 84989, 'bleak here': 132546, 'nz they': 578205, 'shop okay': 760538, 'okay you': 598039, 'buy booze': 148427, 'think thing are': 885691, 'thing are bleak': 884147, 'are bleak here': 84990, 'bleak here in': 132547, 'here in nz': 393172, 'in nz they': 426037, 'nz they re': 578206, 're closing the': 698435, 'closing the bottle': 183769, 'the bottle shop': 849898, 'bottle shop okay': 136320, 'shop okay you': 760539, 'okay you can': 598040, 'still buy booze': 800313, 'buy booze at': 148429, 'ment': 528625, 'socaildistancing': 779392, 'dear please': 229850, 'country into': 210790, 'lockdown people': 499776, 'supermarket open': 821776, '8am and': 23122, 'is shoulder': 451888, 'shoulder to': 766710, 'to shoulder': 914538, 'shoulder thought': 766708, 'we where': 973824, 'where ment': 985027, 'ment to': 528626, 'be socaildistancing': 117269, 'dear please just': 229852, 'please just put': 660143, 'just put the': 469529, 'put the country': 690854, 'the country into': 852101, 'country into lockdown': 210791, 'into lockdown people': 442718, 'lockdown people are': 499777, 'are still not': 90452, 'still not getting': 800895, 'not getting it': 569628, 'getting it supermarket': 349078, 'it supermarket open': 461363, 'supermarket open at': 821778, 'open at 8am': 612097, 'at 8am and': 97780, '8am and everyone': 23125, 'and everyone is': 62402, 'everyone is shoulder': 287109, 'is shoulder to': 451889, 'shoulder to shoulder': 766711, 'to shoulder thought': 914541, 'shoulder thought we': 766709, 'thought we where': 893303, 'we where ment': 973825, 'where ment to': 985028, 'ment to be': 528627, 'to be socaildistancing': 901550, 'should fine': 765993, 'fine company': 307621, 'who inflate': 989034, 'hoarder toiletpapercrisis': 399138, 'there is and': 878523, 'is and they': 445712, 'they should fine': 883365, 'should fine company': 765994, 'fine company who': 307622, 'company who inflate': 191319, 'who inflate price': 989035, 'inflate price and': 436987, 'price and hoarder': 672434, 'and hoarder toiletpapercrisis': 64645, 'onlinebusiness': 609783, 'coming if': 188081, 'only moderate': 610796, 'moderate one': 535353, 'one there': 607208, 'be tremendous': 117810, 'tremendous psychological': 931230, 'psychological impact': 687520, 'end we': 276066, 'to offline': 910865, 'offline online': 596045, 'online will': 609728, 'become basic': 119932, 'necessity business': 554189, 'business onlinebusiness': 144144, 'behavior is coming': 124096, 'is coming if': 446659, 'coming if only': 188082, 'if only moderate': 414552, 'only moderate one': 610797, 'moderate one there': 535354, 'one there will': 607211, 'will be tremendous': 992738, 'be tremendous psychological': 117811, 'tremendous psychological impact': 931231, 'psychological impact on': 687521, 'on people after': 602733, 'people after end': 646781, 'after end we': 35626, 'end we will': 276067, 'will not want': 994284, 'back to offline': 107383, 'to offline online': 910867, 'offline online will': 596046, 'online will become': 609729, 'will become basic': 992791, 'become basic necessity': 119933, 'basic necessity business': 111992, 'necessity business onlinebusiness': 554190, 'minnesota ha': 533606, 'ha classified': 370157, 'personnel allowing': 653074, 'access free': 28134, 'care provided': 164170, 'state amid': 795347, 'minnesota ha classified': 533607, 'ha classified grocery': 370158, 'emergency personnel allowing': 272860, 'personnel allowing them': 653075, 'them to access': 876451, 'to access free': 899953, 'access free child': 28135, 'child care provided': 176041, 'care provided by': 164171, 'the state amid': 867744, 'state amid the': 795348, 'prevent foodwaste': 671625, 'even in time': 284251, 'of crisis they': 582192, 'crisis they cannot': 218212, 'they cannot find': 881706, 'cannot find way': 161854, 'to prevent foodwaste': 912060, 'blaqsbi': 132391, 'ado': 32643, 'mightyoure': 531187, 'if youre': 415614, 'youre quarantined': 1026421, 'home consumer': 400919, 'prepare if': 670100, 'coronavirus there': 206922, 'hoard supply': 398869, 'an extended': 55984, 'extended stay': 293189, 'at blaqsbi': 98138, 'blaqsbi ado': 132392, 'ado mightyoure': 32648, '19 what you': 12008, 'what you might': 982682, 'you might need': 1019854, 'might need if': 531082, 'need if youre': 555037, 'if youre quarantined': 415615, 'youre quarantined at': 1026422, 'at home consumer': 98958, 'home consumer report': 400921, 'report explains how': 711925, 'explains how to': 292218, 'to prepare if': 912003, 'prepare if youre': 670103, 'to coronavirus there': 903569, 'coronavirus there no': 206924, 'to hoard supply': 907879, 'hoard supply for': 398873, 'supply for an': 825259, 'for an extended': 319294, 'an extended stay': 55989, 'extended stay at': 293190, 'stay at blaqsbi': 796768, 'at blaqsbi ado': 98139, 'blaqsbi ado mightyoure': 132393, 'benson': 127248, 'cack': 155047, 'inadequately': 431216, 'miniscule': 533314, 'asthmatic': 97217, 'martin benson': 518092, 'benson suggest': 127249, 'article boris': 94269, 'the cack': 850260, 'cack because': 155048, 'didn inadequately': 241112, 'inadequately prepare': 431217, 'one miniscule': 606667, 'miniscule example': 533315, 'example asthmatic': 288872, 'asthmatic disease': 97222, 'disease exacerbated': 245137, 'by stress': 154138, 'stress if': 813340, 'if sat': 414751, 'sat up': 736914, 'night every': 562991, 'martin benson suggest': 518093, 'benson suggest you': 127250, 'suggest you read': 817558, 'you read the': 1020811, 'read the article': 700569, 'the article boris': 848931, 'article boris johnson': 94270, 'johnson is in': 466605, 'in the cack': 429048, 'the cack because': 850261, 'cack because he': 155049, 'because he didn': 119114, 'he didn inadequately': 384882, 'didn inadequately prepare': 241113, 'inadequately prepare for': 431218, '19 just one': 8206, 'just one miniscule': 469378, 'one miniscule example': 606668, 'miniscule example asthmatic': 533316, 'example asthmatic disease': 288873, 'asthmatic disease exacerbated': 97223, 'disease exacerbated by': 245138, 'exacerbated by stress': 288670, 'by stress if': 154139, 'stress if sat': 813341, 'if sat up': 414752, 'sat up all': 736915, 'up all night': 944255, 'all night every': 43642, 'night every night': 562992, '230': 15444, '1400': 3559, 's9': 728859, 'have crazy': 380151, 'crazy samsung': 215409, 'samsung deal': 733501, 'deal guy': 229420, 'guy get': 369000, 'note 10': 572688, '10 230': 1257, '230 00': 15445, '00 note': 373, 'note 1400': 572690, '1400 s9': 3560, 's9 140': 728860, '140 00': 3550, '00 you': 622, 'price anywhere': 672602, 'we have crazy': 971787, 'have crazy samsung': 380153, 'crazy samsung deal': 215410, 'samsung deal guy': 733502, 'deal guy get': 229421, 'guy get the': 369002, 'get the note': 348274, 'the note 10': 861896, 'note 10 230': 572689, '10 230 00': 1258, '230 00 note': 15446, '00 note 1400': 374, 'note 1400 s9': 572691, '1400 s9 140': 3561, 's9 140 00': 728861, '140 00 you': 3551, '00 you cannot': 623, 'cannot get this': 161911, 'get this price': 348410, 'this price anywhere': 889705, 'price anywhere else': 672603, 'retrospect': 719799, 'in retrospect': 427477, 'retrospect be': 719800, '2020 will in': 14723, 'will in retrospect': 993795, 'in retrospect be': 427478, 'retrospect be known': 719801, 'the year you': 872179, 'year you protect': 1015129, 'you protect your': 1020469, 'protect your own': 685069, 'intended toiletpaper 19': 441064, 'raised all': 695987, 'said nothing': 731267, 'ha raised all': 371625, 'raised all food': 695988, 'all food price': 42819, 'price and am': 672362, 'and am not': 58023, 'sure why the': 827840, 'why the government': 991420, 'government ha said': 360167, 'ha said nothing': 371794, 'costco line': 208251, 'line start': 493424, 'at 55': 97690, '55 coronavirus': 20372, 'coronavirus scare': 206729, 'scare shopper': 740912, 'costco line start': 208252, 'line start at': 493425, 'start at 55': 794213, 'at 55 coronavirus': 97691, '55 coronavirus scare': 20373, 'coronavirus scare shopper': 206732, 'martin disgraceful': 518096, 'disgraceful behaviour': 245324, 'behaviour should': 124519, 'should never': 766226, 'be forgotten': 114926, 'forgotten millionaire': 329448, 'millionaire bos': 532444, 'bos won': 135714, 'won pay': 1003882, 'pay staff': 645115, 'consider working': 195181, 'tesco during': 838695, 'tim martin disgraceful': 896162, 'martin disgraceful behaviour': 518097, 'disgraceful behaviour should': 245325, 'behaviour should never': 124520, 'should never be': 766227, 'never be forgotten': 557878, 'be forgotten millionaire': 114927, 'forgotten millionaire bos': 329449, 'millionaire bos won': 532445, 'bos won pay': 135715, 'won pay staff': 1003883, 'pay staff and': 645116, 'staff and tell': 792165, 'and tell them': 73097, 'them to consider': 876463, 'to consider working': 903243, 'consider working for': 195182, 'working for tesco': 1008647, 'for tesco during': 326218, 'tesco during lockdown': 838697, 'illuminating': 416426, 'rescue how': 713622, 'how tech': 408778, 'researcher are': 713897, 'are illuminating': 87304, 'illuminating the': 416427, 'the rescue how': 865563, 'rescue how tech': 713623, 'how tech and': 408779, 'tech and researcher': 836037, 'and researcher are': 70297, 'researcher are illuminating': 713898, 'are illuminating the': 87305, 'illuminating the spread': 416428, 'spread of via': 790718, 'bettson': 128646, 'stop community': 804578, 'community chef': 189782, 'chef monica': 175267, 'monica bettson': 537250, 'bettson spoke': 128647, 'what our': 981983, 'work look': 1005446, 'the stop community': 867957, 'stop community chef': 804579, 'community chef monica': 189783, 'chef monica bettson': 175268, 'monica bettson spoke': 537251, 'bettson spoke with': 128648, 'the about what': 848241, 'about what our': 26892, 'what our work': 981988, 'our work look': 625399, 'work look like': 1005447, 'bse': 141442, 'nse': 576664, 'gm guy': 353173, 'for stock': 325909, 'market shopping': 517056, 'festival unlimited': 303609, 'unlimited period': 942783, 'period offer': 651861, 'online partner': 608734, 'partner bse': 642789, 'bse and': 141443, 'and nse': 67876, 'nse main': 576665, 'main sponsor': 508818, 'sponsor covid': 789827, 'gm guy get': 353174, 'guy get ready': 369001, 'ready for stock': 700874, 'for stock market': 325911, 'stock market shopping': 802435, 'market shopping festival': 517057, 'shopping festival unlimited': 762635, 'festival unlimited period': 303610, 'unlimited period offer': 942784, 'period offer online': 651862, 'offer online partner': 594725, 'online partner bse': 608735, 'partner bse and': 642790, 'bse and nse': 141444, 'and nse main': 67877, 'nse main sponsor': 576666, 'main sponsor covid': 508819, 'sponsor covid 19': 789828, 'nanking': 551808, 'scorn': 742401, 'invasive': 443601, 'boarding': 133696, 'how nanking': 408396, 'nanking of': 551809, 'people got': 648114, 'got zero': 359045, 'zero covid': 1027429, '19 america': 4953, 'will scorn': 994757, 'scorn at': 742402, 'the strict': 868279, 'strict invasive': 813628, 'invasive process': 443604, 'keep social': 471943, 'even supermarket': 284622, 'and boarding': 59037, 'boarding bus': 133697, 'how nanking of': 408397, 'nanking of million': 551810, 'of million people': 586536, 'million people got': 532309, 'people got zero': 648116, 'got zero covid': 359046, 'zero covid 19': 1027430, 'covid 19 america': 212623, '19 america will': 4955, 'america will scorn': 51748, 'will scorn at': 994758, 'scorn at the': 742403, 'at the strict': 101113, 'the strict invasive': 868281, 'strict invasive process': 813629, 'invasive process to': 443605, 'process to keep': 679977, 'to keep social': 908850, 'keep social distancing': 471945, 'distancing and ordering': 246984, 'and ordering food': 68257, 'ordering food and': 618965, 'food and even': 313223, 'and even supermarket': 62347, 'even supermarket shopping': 284623, 'supermarket shopping and': 822627, 'shopping and boarding': 761966, 'and boarding bus': 59038, 'tota': 926115, 'nigerian government': 562847, 'all school': 44250, 'school no': 741871, 'gathering limited': 344481, 'limited mobility': 492676, 'mobility and': 535075, 'supporting nigerian': 827156, 'nigerian by': 562837, 'by reducing': 153741, 'reducing food': 706288, 'is tota': 453295, 'nigerian government must': 562849, 'government must step': 360374, 'up to prevent': 946416, 'of by closing': 581022, 'by closing all': 152136, 'closing all school': 183579, 'all school no': 44252, 'school no public': 741873, 'no public gathering': 565245, 'public gathering limited': 688032, 'gathering limited mobility': 344482, 'limited mobility and': 492677, 'mobility and supporting': 535076, 'and supporting nigerian': 72863, 'supporting nigerian by': 827157, 'nigerian by reducing': 562838, 'by reducing food': 153742, 'reducing food price': 706289, 'food price so': 315974, 'price so that': 676515, 'they can stock': 881681, 'can stock their': 159808, 'stock their home': 802947, 'their home while': 873581, 'home while this': 402495, 'while this pandemic': 987455, 'pandemic is tota': 635802, 'wife wa': 991990, 'small retail': 775094, 'at wa': 101466, 'with walk': 1002014, 'that disappeared': 843548, 'disappeared due': 244060, 'long do': 501397, 'it currently': 457440, 'currently take': 221688, 'for employment': 321039, 'employment insurance': 274615, 'process application': 679882, 'my wife wa': 550603, 'wife wa laid': 991992, 'laid off yesterday': 479037, 'off yesterday because': 594433, 'yesterday because the': 1015693, 'because the small': 119649, 'the small retail': 867366, 'small retail store': 775095, 'retail store she': 718701, 'store she work': 810053, 'work at wa': 1004909, 'at wa hit': 101467, 'wa hit with': 962313, 'hit with walk': 398514, 'with walk in': 1002015, 'walk in business': 964801, 'in business that': 421081, 'business that disappeared': 144477, 'that disappeared due': 843549, 'disappeared due to': 244061, '19 how long': 7606, 'how long do': 408198, 'long do we': 501399, 'do we think': 250489, 'think it currently': 885325, 'it currently take': 457443, 'currently take for': 221689, 'take for employment': 832128, 'for employment insurance': 321041, 'employment insurance to': 274616, 'insurance to process': 440827, 'to process application': 912172, 'opportunism': 613547, 'well tried': 978711, 'tried various': 931855, 'various source': 952643, 'source today': 786568, 'could report': 209592, 'report fashion': 711930, 'fashion store': 299850, 'store profiteering': 809675, 'selling sanitizer': 749429, 'tissue at': 899130, 'wa interested': 962418, 'interested they': 441488, 'don sell': 253900, 'this normally': 889165, 'normally pure': 567525, 'pure opportunism': 689977, 'opportunism auspol': 613548, 'well tried various': 978712, 'tried various source': 931856, 'various source today': 952644, 'source today to': 786569, 'today to see': 920368, 'see if could': 745275, 'if could report': 414010, 'could report fashion': 209593, 'report fashion store': 711931, 'fashion store profiteering': 299852, 'store profiteering from': 809676, 'profiteering from this': 683048, 'this crisis by': 887024, 'crisis by selling': 217178, 'by selling sanitizer': 153931, 'selling sanitizer and': 749430, 'and tissue at': 74144, 'tissue at high': 899131, 'high price no': 395260, 'price no one': 675347, 'one wa interested': 607346, 'wa interested they': 962419, 'interested they don': 441489, 'they don sell': 882002, 'don sell this': 253902, 'sell this normally': 748916, 'this normally pure': 889166, 'normally pure opportunism': 567526, 'pure opportunism auspol': 689978, 'in no': 425907, 'panic need': 638339, 'need awareness': 554506, 'awareness in': 105696, 'community union': 190194, 'ministry on': 533557, 'on ration': 603077, 'ration food': 697675, 'item amid': 463043, 'just in no': 469042, 'in no need': 425912, 'to panic need': 911412, 'panic need awareness': 638340, 'need awareness in': 554507, 'awareness in community': 105697, 'in community union': 421616, 'community union health': 190195, 'health ministry on': 386646, 'ministry on people': 533558, 'on people stocking': 602751, 'up on ration': 945610, 'on ration food': 603079, 'ration food item': 697679, 'food item amid': 315191, 'item amid scare': 463045, 'stuart': 814555, '1993': 12497, 'whispering': 987798, 'ego': 270063, 'spiritual': 789532, 'stuart wilde': 814556, 'wilde in': 992106, 'his 1993': 397165, '1993 book': 12500, 'book whispering': 134630, 'whispering wind': 987801, 'wind of': 995631, 'first chapter': 308569, 'chapter this': 173139, 're experiencing': 698644, 'experiencing now': 291686, 'old consumer': 598190, 'consumer world': 199568, 'world ego': 1009514, 'ego is': 270068, 'dying this': 263875, 'huge wake': 410258, 'on spiritual': 603605, 'stuart wilde in': 814557, 'wilde in his': 992107, 'in his 1993': 423711, 'his 1993 book': 397166, '1993 book whispering': 12501, 'book whispering wind': 134631, 'whispering wind of': 987802, 'wind of change': 995632, 'of change the': 581272, 'change the first': 172295, 'the first chapter': 855289, 'first chapter this': 308570, 'chapter this is': 173140, 'we re experiencing': 972868, 're experiencing now': 698647, 'experiencing now because': 291687, 'now because of': 574213, '19 the old': 11224, 'the old consumer': 862131, 'old consumer world': 598191, 'consumer world ego': 199569, 'world ego is': 1009515, 'ego is dying': 270069, 'is dying this': 447421, 'dying this is': 263876, 'this is huge': 888285, 'is huge wake': 448621, 'huge wake up': 410259, 'up call on': 944568, 'call on spiritual': 156047, 'sputnik': 791362, 'via covid': 955894, 'good giant': 357121, 'face boycott': 294337, 'boycott call': 137319, 'raising soap': 696134, 'sanitiser price': 734002, 'new delhi': 558618, 'delhi sputnik': 232908, 'sputnik while': 791365, 'the uptick': 870517, 'in coronavirus': 421801, 'case across': 165605, 'to sharp': 914382, 'economy wreaking': 268376, 'via covid 19': 955895, '19 consumer good': 5970, 'consumer good giant': 197618, 'good giant face': 357122, 'giant face boycott': 349771, 'face boycott call': 294338, 'boycott call for': 137320, 'call for raising': 155886, 'for raising soap': 324953, 'raising soap hand': 696135, 'hand sanitiser price': 375242, 'sanitiser price new': 734008, 'price new delhi': 675327, 'new delhi sputnik': 558620, 'delhi sputnik while': 232910, 'sputnik while the': 791366, 'while the uptick': 987422, 'the uptick in': 870518, 'uptick in coronavirus': 947908, 'in coronavirus case': 421803, 'coronavirus case across': 205612, 'case across the': 165607, 'world ha led': 1009612, 'led to sharp': 485297, 'to sharp decline': 914383, 'global economy wreaking': 351910, 'economy wreaking havoc': 268377, 'rachel': 695221, 'clarke': 180112, 'appeal please': 82074, 'share we': 755339, 'at salford': 100454, 'salford royal': 732714, 'royal hospital': 726627, 'hospital to': 404684, 'any spare': 79843, 'spare filter': 787477, 'filter for': 305764, 'the 3m': 848102, '3m 7500': 18299, '7500 respirator': 22191, 'respirator this': 715218, 'could local': 209388, 'local garage': 498006, 'garage or': 343495, 'with spray': 1000924, 'spray paint': 790319, 'paint email': 634281, 'email rachel': 272281, 'rachel clarke': 695222, 'clarke nh': 180115, 'nh uk': 562154, 'uk amanda': 938160, 'amanda harris': 50592, 'harris nh': 378507, 'appeal please share': 82075, 'please share we': 660499, 'share we still': 755340, 'still need help': 800857, 'need help at': 554974, 'help at salford': 389389, 'at salford royal': 100455, 'salford royal hospital': 732715, 'royal hospital to': 726628, 'hospital to see': 404688, 'see if any': 745273, 'if any business': 413827, 'any business in': 78990, 'the area have': 848882, 'area have any': 92041, 'have any spare': 379319, 'any spare filter': 79844, 'spare filter for': 787478, 'filter for the': 305765, 'for the 3m': 326287, 'the 3m 7500': 848103, '3m 7500 respirator': 18300, '7500 respirator this': 22192, 'respirator this could': 715219, 'this could local': 886930, 'could local garage': 209389, 'local garage or': 498007, 'garage or anyone': 343496, 'work with spray': 1006044, 'with spray paint': 1000925, 'spray paint email': 790320, 'paint email rachel': 634282, 'email rachel clarke': 272282, 'rachel clarke nh': 695223, 'clarke nh uk': 180116, 'nh uk amanda': 562155, 'uk amanda harris': 938161, 'amanda harris nh': 50593, 'harris nh uk': 378508, 'chicagolockdown': 175709, 'if nationwide': 414441, 'lockdown happens': 499456, 'happens would': 377537, 'office still': 595555, 'open like': 612362, 'store an': 806185, 'essential need': 281321, 'need thought': 555834, 'thought lockdown': 893122, 'lockdown chicagolockdown': 499239, 'if nationwide lockdown': 414442, 'nationwide lockdown happens': 552742, 'lockdown happens would': 499457, 'happens would the': 377538, 'would the post': 1012323, 'post office still': 666244, 'office still be': 595556, 'still be open': 800261, 'be open like': 116247, 'open like the': 612365, 'grocery store an': 365196, 'store an essential': 806187, 'an essential need': 55827, 'essential need thought': 281323, 'need thought lockdown': 555835, 'thought lockdown chicagolockdown': 893123, 'were retailer': 980062, 'shop wa': 761008, 'wa filled': 962119, 'with crowd': 997862, 'of moron': 586660, 'moron each': 541584, 'each trying': 264312, 'buy 00': 148240, '00 roll': 478, 'paper then': 640886, 'course jack': 211886, 'jack up': 464124, 'what fuck': 981477, 'have problem': 382053, 'if were retailer': 415344, 'were retailer and': 980063, 'retailer and my': 718971, 'and my shop': 67389, 'my shop wa': 550051, 'shop wa filled': 761010, 'wa filled with': 962120, 'filled with crowd': 305576, 'with crowd of': 997863, 'crowd of moron': 219219, 'of moron each': 586661, 'moron each trying': 541585, 'each trying to': 264313, 'to buy 00': 902163, 'buy 00 roll': 148241, '00 roll of': 479, 'toilet paper then': 921486, 'paper then of': 640889, 'then of course': 877369, 'of course jack': 582058, 'course jack up': 211887, 'jack up the': 464127, 'the price and': 864329, 'price and you': 672586, 'and you know': 76029, 'know what fuck': 476950, 'what fuck you': 981478, 'fuck you if': 339702, 'you have problem': 1019097, 'have problem with': 382056, 'problem with that': 679764, 'update countdown': 946918, 'countdown is': 210161, 'is introducing': 448960, 'introducing limit': 443494, 'shelf quickly': 757448, 'quickly enough': 694516, 'enough if': 277480, 'current rate': 221334, 'update countdown is': 946919, 'countdown is introducing': 210162, 'is introducing limit': 448961, 'introducing limit on': 443495, 'limit on some': 492429, 'on some item': 603560, 'some item to': 783154, 'item to stop': 463768, '19 the supermarket': 11253, 'get some product': 348070, 'some product on': 783650, 'product on shelf': 681471, 'on shelf quickly': 603407, 'shelf quickly enough': 757451, 'quickly enough if': 694518, 'enough if people': 277482, 'people continue shopping': 647539, 'continue shopping at': 201128, 'at the current': 100920, 'the current rate': 852656, 'slowdown which': 774478, 'already impacted': 47453, 'impacted score': 418151, 'score of': 742360, 'now resulting': 575696, 'in further': 423191, 'further fall': 342049, 'economic slowdown which': 267312, 'slowdown which ha': 774479, 'which ha already': 985875, 'ha already impacted': 369511, 'already impacted score': 47454, 'impacted score of': 418152, 'score of market': 742362, 'of market and': 586227, 'market and business': 515950, 'country is now': 210813, 'is now resulting': 450328, 'now resulting in': 575697, 'resulting in further': 717706, 'in further fall': 423193, 'further fall in': 342050, 'fall in property': 296963, 'in property price': 427041, '7to': 22532, 'old price': 598433, 'cannot by': 161698, 'by device': 152347, 'device before': 239900, 'reply and': 711735, 'in 7to': 419963, '7to april': 22533, 'april mi': 83637, 'mi sale': 530134, 'we want the': 973749, 'want the old': 965961, 'the old price': 862142, 'old price because': 598434, 'price because we': 672868, 'because we cannot': 119793, 'we cannot by': 971049, 'cannot by device': 161699, 'by device before': 152348, 'device before the': 239901, 'price increase due': 674770, '19 please reply': 9725, 'please reply and': 660381, 'reply and can': 711736, 'and can buy': 59450, 'can buy the': 157839, 'buy the phone': 149303, 'the phone in': 863692, 'phone in 7to': 654964, 'in 7to april': 419964, '7to april mi': 22534, 'april mi sale': 83638, 'recurrence': 705518, 'pandemic expert': 635407, 'expert are': 291781, 'asking heart': 96004, 'and stroke': 72585, 'stroke survivor': 813943, 'survivor to': 829401, 'take extra': 832110, 'reduce their': 705981, 'their risk': 874595, 'of recurrence': 588850, 'current pandemic expert': 221291, 'pandemic expert are': 635408, 'expert are asking': 291782, 'are asking heart': 84639, 'asking heart attack': 96005, 'heart attack and': 388265, 'attack and stroke': 102082, 'and stroke survivor': 72586, 'stroke survivor to': 813944, 'survivor to take': 829402, 'to take extra': 916179, 'take extra precaution': 832113, 'extra precaution to': 293613, 'precaution to reduce': 669388, 'to reduce their': 913046, 'reduce their risk': 705988, 'their risk of': 874597, 'risk of recurrence': 723771, 'convinces': 202675, 'someone convinces': 784412, 'convinces trump': 202676, 'trump that': 933906, 'that drinking': 843623, 'drinking gasoline': 258929, 'gasoline kill': 344243, 'kill all': 474336, 'all covid': 42483, 'body there': 133901, 'high gas': 395099, 'of dead': 582398, 'dead people': 229168, 'if someone convinces': 414850, 'someone convinces trump': 784413, 'convinces trump that': 202677, 'trump that drinking': 933907, 'that drinking gasoline': 843624, 'drinking gasoline kill': 258930, 'gasoline kill all': 344244, 'kill all covid': 474337, 'all covid 19': 42484, 'in the body': 429031, 'the body there': 849827, 'body there gonna': 133902, 'gonna be high': 356471, 'be high gas': 115243, 'high gas price': 395100, 'price and lot': 672460, 'lot of dead': 504171, 'of dead people': 582400, 'the rundown': 866079, 'rundown after': 727876, 'the rundown after': 866080, 'rundown after the': 727877, 'bayarea': 112980, 'bayarea home': 112984, 'price surged': 676731, 'surged before': 828293, 'before struck': 123111, 'struck realestate': 814276, 'housing agent': 407044, 'agent inventory': 38176, 'inventory demand': 443656, 'demand mortgage': 235896, 'mortgage supply': 541962, 'supply multiple': 825572, 'multiple offer': 545770, 'bayarea home price': 112985, 'home price surged': 401920, 'price surged before': 676732, 'surged before struck': 828294, 'before struck realestate': 123112, 'struck realestate housing': 814277, 'realestate housing agent': 701486, 'housing agent inventory': 407045, 'agent inventory demand': 38177, 'inventory demand mortgage': 443658, 'demand mortgage supply': 235897, 'mortgage supply multiple': 541963, 'supply multiple offer': 825573, 'vacillation': 951806, 'incompetence': 432517, 'have royally': 382363, 'royally screwed': 726643, 'screwed this': 742827, 'every step': 286213, 'step of': 799600, 'not later': 570330, 'later is': 481084, 'time utilize': 898175, 'utilize the': 951360, 'make critically': 509807, 'critically needed': 218741, 'needed supply': 556502, 'supply available': 824827, 'sector your': 744421, 'your vacillation': 1026265, 'vacillation and': 951807, 'and incompetence': 65093, 'incompetence are': 432520, 'are literally': 87835, 'literally deadly': 494975, 'god help you': 354740, 'help you have': 390974, 'you have royally': 1019107, 'have royally screwed': 382364, 'royally screwed this': 726644, 'screwed this up': 742828, 'this up every': 890931, 'up every step': 944808, 'every step of': 286214, 'step of the': 799602, 'the way now': 871170, 'way now not': 969734, 'now not later': 575373, 'not later is': 570331, 'later is the': 481085, 'the time utilize': 869629, 'time utilize the': 898176, 'utilize the defense': 951361, 'production act and': 681894, 'act and make': 29596, 'and make critically': 66549, 'make critically needed': 509808, 'critically needed supply': 218743, 'needed supply available': 556504, 'supply available to': 824828, 'available to the': 104662, 'to the health': 916768, 'the health sector': 857188, 'health sector your': 386838, 'sector your vacillation': 744422, 'your vacillation and': 1026266, 'vacillation and incompetence': 951808, 'and incompetence are': 65094, 'incompetence are literally': 432521, 'are literally deadly': 87836, '285': 16438, 'search term': 743290, 'term that': 838311, 'include take': 431634, 'increased 285': 433174, '285 since': 16439, 'march google': 515377, 'google seo': 358191, 'search term that': 743292, 'term that include': 838314, 'that include take': 844469, 'include take out': 431635, 'take out have': 832449, 'out have increased': 626263, 'have increased 285': 381049, 'increased 285 since': 433175, '285 since the': 16440, 'of march google': 586209, 'march google seo': 515378, 'addict': 31623, 'withheld': 1002296, 'withdrawal': 1002261, 'an addict': 55101, 'addict fix': 31624, 'fix being': 309711, 'being withheld': 126065, 'withheld shopper': 1002299, 'through withdrawal': 894912, 'withdrawal how': 1002264, 'will retailer': 994684, 'retailer bring': 719047, 'bring them': 140093, 'them back': 875455, 'back ecommerce': 106971, 'ecommerce onlineshopping': 266824, 'like an addict': 489759, 'an addict fix': 55102, 'addict fix being': 31625, 'fix being withheld': 309712, 'being withheld shopper': 126066, 'withheld shopper are': 1002300, 'shopper are going': 761391, 'going through withdrawal': 355513, 'through withdrawal how': 894913, 'withdrawal how will': 1002265, 'how will retailer': 409237, 'will retailer bring': 994685, 'retailer bring them': 719048, 'bring them back': 140094, 'them back ecommerce': 875456, 'back ecommerce onlineshopping': 106972, 'single employee': 771294, 'employee wore': 274457, 'floridian have': 311029, 'die because': 241303, 'store not single': 809112, 'not single employee': 571596, 'single employee wore': 771295, 'employee wore mask': 274458, 'wore mask or': 1004667, 'many floridian have': 514072, 'floridian have to': 311030, 'have to suffer': 383312, 'to suffer or': 915736, 'or die because': 614964, 'die because of': 241304, 'because of your': 119430, 'zap': 1027232, 'in power': 426882, 'power don': 667595, 'don fear': 253506, 'created it': 215840, 'it mixed': 459647, 'mixed with': 534649, 'with trigger': 1001846, 'trigger cell': 931871, 'cell to': 168969, 'become zap': 120191, 'zap the': 1027233, 'the causing': 850548, 'causing like': 168053, 'like symptom': 491281, 'death lie': 230112, 'lie they': 488385, 'all lie': 43375, 'those in power': 892101, 'in power don': 426885, 'power don fear': 667596, 'don fear the': 253508, 'fear the they': 301384, 'the they created': 869435, 'they created it': 881855, 'created it mixed': 215841, 'it mixed with': 459648, 'mixed with trigger': 534651, 'with trigger cell': 1001847, 'trigger cell to': 931872, 'cell to become': 168970, 'to become zap': 901684, 'become zap the': 120192, 'zap the causing': 1027234, 'the causing like': 850549, 'causing like symptom': 168054, 'like symptom and': 491282, 'symptom and death': 830806, 'and death lie': 60989, 'death lie they': 230113, 'lie they all': 488386, 'they all lie': 881116, 'joule': 467375, 'joule ha': 467376, 'urged the': 948279, 'help worker': 390943, 'joule ha urged': 467377, 'ha urged the': 372419, 'urged the government': 948280, 'government to do': 360711, 'to help worker': 907669, 'help worker in': 390947, 'retail sector the': 718532, 'sector the economic': 744351, 'impact of continues': 417759, 'rebecca': 703256, 'stored': 811717, 'otp': 621898, 'yelpatlanta': 1015296, 'yelpotp': 1015303, 'yelpelite': 1015302, 'rebecca went': 703261, 'out grocery': 626238, 'she wearing': 756456, 'mask made': 518933, 'made out': 507900, 'of bandana': 580531, 'bandana had': 109366, 'had stored': 373565, 'stored away': 811718, 'away that': 106044, 'those mini': 892211, 'mini yelp': 533037, 'yelp hand': 1015288, 'bottle have': 136232, 'have really': 382187, 'really come': 702066, 'handy lately': 376892, 'lately otp': 480985, 'otp yelpatlanta': 621899, 'yelpatlanta yelpotp': 1015297, 'yelpotp yelpelite': 1015304, 'rebecca went out': 703262, 'went out grocery': 979084, 'out grocery shopping': 626240, 'grocery shopping she': 365080, 'shopping she wearing': 763855, 'she wearing mask': 756457, 'wearing mask made': 974700, 'mask made out': 518937, 'made out of': 507901, 'out of bandana': 626682, 'of bandana had': 580532, 'bandana had stored': 109367, 'had stored away': 373566, 'stored away that': 811719, 'away that and': 106045, 'that and those': 842659, 'and those mini': 74030, 'those mini yelp': 892212, 'mini yelp hand': 533038, 'yelp hand sanitizer': 1015289, 'sanitizer bottle have': 734583, 'bottle have really': 136233, 'have really come': 382189, 'really come in': 702068, 'come in handy': 187366, 'in handy lately': 423535, 'handy lately otp': 376893, 'lately otp yelpatlanta': 480986, 'otp yelpatlanta yelpotp': 621900, 'yelpatlanta yelpotp yelpelite': 1015298, 'immediately introduce': 417114, 'introduce everywhere': 443382, 'everywhere supermarket': 288259, 'extra measure': 293572, 'measure shopping': 525332, 'cart mandatory': 165334, 'immediately introduce everywhere': 417115, 'introduce everywhere supermarket': 443383, 'everywhere supermarket take': 288261, 'supermarket take extra': 823125, 'take extra measure': 832112, 'extra measure shopping': 293573, 'measure shopping cart': 525333, 'shopping cart mandatory': 762307, 'nurofen': 577175, 'ibuprofen': 412594, 'bmj': 133555, 'paracetamol only': 641259, 'only stop': 611201, 'buying nurofen': 150778, 'nurofen quit': 577176, 'quit panic': 694803, 'food loo': 315344, 'roll med': 725387, 'med altogether': 525868, 'altogether there': 49390, 'enough but': 277333, 'continue please': 201102, 'stop covid': 804596, '19 ibuprofen': 7648, 'ibuprofen should': 412595, 'managing symptom': 512894, 'symptom say': 830912, 'doctor scientist': 251095, 'scientist the': 742258, 'the bmj': 849803, 'paracetamol only stop': 641260, 'only stop panic': 611203, 'panic buying nurofen': 637824, 'buying nurofen quit': 150779, 'nurofen quit panic': 577177, 'quit panic buying': 694804, 'buying food loo': 150320, 'food loo roll': 315345, 'loo roll med': 502189, 'roll med altogether': 725388, 'med altogether there': 525869, 'altogether there will': 49392, 'will be enough': 992445, 'be enough but': 114684, 'enough but not': 277336, 'but not if': 146539, 'not if people': 570051, 'people continue please': 647538, 'continue please stop': 201103, 'please stop covid': 660575, 'stop covid 19': 804597, 'covid 19 ibuprofen': 213241, '19 ibuprofen should': 7649, 'ibuprofen should not': 412596, 'not be used': 568479, 'used for managing': 949907, 'for managing symptom': 323190, 'managing symptom say': 512895, 'symptom say doctor': 830913, 'say doctor scientist': 738584, 'doctor scientist the': 251097, 'scientist the bmj': 742259, 'advantage see': 33055, 'see of': 745493, 'this many': 888763, 'company share': 191068, 'an advantage see': 55148, 'advantage see of': 33056, 'see of this': 745494, 'of this many': 592004, 'this many company': 888764, 'many company share': 513920, 'company share price': 191071, 'explode': 292290, 'wel': 977856, 'euro2020': 283379, 'transfermarkt': 929545, 'transfer market': 929517, 'market won': 517388, 'won explode': 1003802, 'explode with': 292306, 'for player': 324581, 'player who': 659350, 'do wel': 250499, 'wel at': 977857, 'at euro': 98557, 'euro that': 283373, 'right euro2020': 721886, 'euro2020 transfermarkt': 283380, 'least the transfer': 484652, 'the transfer market': 869899, 'transfer market won': 929518, 'market won explode': 517389, 'won explode with': 1003803, 'explode with high': 292307, 'price for player': 674026, 'for player who': 324582, 'player who do': 659351, 'who do wel': 988626, 'do wel at': 250500, 'wel at euro': 977858, 'at euro that': 98558, 'euro that good': 283374, 'that good thing': 844050, 'good thing right': 357851, 'thing right euro2020': 884721, 'right euro2020 transfermarkt': 721887, 'uk economy': 938316, 'is heading': 448357, 'heading for': 385930, 'is forecast': 447907, 'forecast to': 328873, 'be deeper': 114372, 'deeper than': 231971, '2009 financial': 13708, 'most severe': 542734, 'severe since': 754058, 'since 1900': 770416, '1900 pandemic': 12306, 'seen consumer': 746988, 'demand collapse': 235146, 'collapse many': 186028, 'business forced': 143758, 'or reduce': 616810, 'reduce operation': 705877, 'operation via': 613290, 'uk economy is': 938319, 'economy is heading': 268004, 'is heading for': 448358, 'heading for recession': 385933, 'for recession that': 325017, 'recession that is': 704375, 'that is forecast': 844586, 'is forecast to': 447908, 'forecast to be': 328875, 'to be deeper': 901193, 'be deeper than': 114373, 'deeper than the': 231973, 'than the 2009': 841214, 'the 2009 financial': 847996, '2009 financial crisis': 13709, 'financial crisis one': 306378, 'the most severe': 861034, 'most severe since': 542735, 'severe since 1900': 754059, 'since 1900 pandemic': 770417, '1900 pandemic ha': 12307, 'pandemic ha seen': 635565, 'ha seen consumer': 371823, 'seen consumer demand': 746989, 'consumer demand collapse': 197123, 'demand collapse many': 235148, 'collapse many business': 186029, 'many business forced': 513842, 'business forced to': 143759, 'to close or': 902890, 'close or reduce': 182748, 'or reduce operation': 616811, 'reduce operation via': 705878, 'wait people': 964179, 'be sucking': 117433, 'sucking for': 816965, 'pandemic end': 635378, 'just wait people': 470193, 'wait people are': 964181, 'people are gonna': 646990, 'gonna be sucking': 356482, 'be sucking for': 117434, 'sucking for toilet': 816966, 'sanitizer before this': 734565, 'before this pandemic': 123232, 'this pandemic end': 889385, 'operable': 612967, 'durable': 262343, 'the winning': 871612, 'winning team': 996082, 'team include': 835690, 'include big': 431528, 'big bang': 129633, 'bang boom': 109444, 'boom which': 134828, 'which designed': 985808, 'designed remotely': 238340, 'remotely operable': 710776, 'operable ventilator': 612968, 'ventilator system': 954612, 'system built': 831123, 'built from': 142182, 'consumer durable': 197262, 'durable component': 262346, 'component another': 192545, 'another startup': 77864, 'startup developed': 795098, 'developed uv': 239739, 'uv disinfectant': 951470, 'disinfectant robot': 245738, 'robot that': 724808, 'can autonomously': 157549, 'autonomously disinfect': 104066, 'disinfect surface': 245574, 'surface using': 828084, 'using uv': 950787, 'opinion the winning': 613506, 'the winning team': 871613, 'winning team include': 996083, 'team include big': 835691, 'include big bang': 431529, 'big bang boom': 129634, 'bang boom which': 109445, 'boom which designed': 134829, 'which designed remotely': 985809, 'designed remotely operable': 238341, 'remotely operable ventilator': 710777, 'operable ventilator system': 612969, 'ventilator system built': 954613, 'system built from': 831124, 'built from consumer': 142183, 'from consumer durable': 334959, 'consumer durable component': 197264, 'durable component another': 262347, 'component another startup': 192546, 'another startup developed': 77865, 'startup developed uv': 795099, 'developed uv disinfectant': 239740, 'uv disinfectant robot': 951471, 'disinfectant robot that': 245739, 'robot that can': 724809, 'that can autonomously': 843093, 'can autonomously disinfect': 157550, 'autonomously disinfect surface': 104067, 'disinfect surface using': 245576, 'surface using uv': 828085, 'using uv light': 950788, 'affect how': 34166, 'we interact': 972077, 'future like': 342381, 'saw two': 738309, 'people hugging': 648306, 'hugging and': 410285, 'immediately thought': 417161, 'thought they': 893255, 'scary sad': 741176, 'virus is going': 958375, 'going to affect': 355521, 'to affect how': 900145, 'affect how we': 34168, 'how we interact': 409177, 'we interact with': 972078, 'interact with each': 441206, 'other in the': 620411, 'the future like': 856083, 'future like when': 342382, 'when wa at': 984399, 'store saw two': 810000, 'saw two people': 738312, 'two people hugging': 937136, 'people hugging and': 648307, 'hugging and immediately': 410286, 'and immediately thought': 64999, 'immediately thought they': 417162, 'thought they shouldn': 893257, 'they shouldn be': 883389, 'shouldn be doing': 766724, 'be doing that': 114531, 'doing that scary': 252708, 'that scary sad': 846154, 'coronavirus special': 206793, 'special out': 788012, 'week hand': 976303, 'available here': 104416, 'purell only': 690023, 'only handsanitizer': 610570, 'coronavirus special out': 206794, 'special out of': 788013, 'out of store': 626842, 'of store for': 590251, 'store for week': 807854, 'for week hand': 327712, 'week hand sanitizer': 976304, 'sanitizer is now': 735200, 'now available here': 574157, 'available here better': 104418, 'than purell only': 841061, 'purell only handsanitizer': 690024, 'vernon': 954871, 'oglala': 596330, 'sara': 736709, 'omaha': 598816, 'abourezk': 24621, 'vernon black': 954872, 'black eye': 132050, 'eye oglala': 294068, 'oglala and': 596331, 'and sara': 70921, 'sara anderson': 736710, 'anderson omaha': 76138, 'omaha are': 598817, 'helping slow': 391465, 'time photo': 897484, 'by kevin': 152987, 'kevin abourezk': 473200, 'abourezk abourezk': 24622, 'abourezk with': 24624, 'with story': 1000999, 'vernon black eye': 954873, 'black eye oglala': 132051, 'eye oglala and': 294069, 'oglala and sara': 596332, 'and sara anderson': 70922, 'sara anderson omaha': 736711, 'anderson omaha are': 76139, 'omaha are helping': 598818, 'are helping slow': 87109, 'helping slow the': 391466, 'of the one': 591292, 'the one hand': 862203, 'one hand sanitizer': 606399, 'sanitizer and one': 734423, 'and one roll': 68092, 'paper at time': 639907, 'at time photo': 101306, 'time photo by': 897485, 'photo by kevin': 655141, 'by kevin abourezk': 152988, 'kevin abourezk abourezk': 473201, 'abourezk abourezk with': 24623, 'abourezk with story': 24625, 'with story to': 1001001, 'story to follow': 812140, 'to follow on': 906056, 'if consumer': 413981, 'consumer start': 199121, 'start panicking': 794430, 'conduct bulk': 193635, 'could inflate': 209340, 'inflate food': 436984, 'and interrupt': 65336, 'interrupt availability': 442101, 'food result': 316199, 'result this': 717642, 'make food': 509905, 'food unnecessarily': 317399, 'unnecessarily expensive': 942848, 'expensive in': 291252, 'term dr': 838122, 'dr say': 258097, 'if consumer start': 413985, 'consumer start panicking': 199123, 'start panicking and': 794431, 'panicking and conduct': 639317, 'and conduct bulk': 60270, 'conduct bulk buying': 193636, 'bulk buying this': 142286, 'buying this could': 151219, 'this could inflate': 886926, 'could inflate food': 209341, 'inflate food price': 436985, 'price and interrupt': 672447, 'and interrupt availability': 65337, 'interrupt availability of': 442102, 'of food result': 583763, 'food result this': 316201, 'result this could': 717643, 'this could make': 886931, 'could make food': 209402, 'make food unnecessarily': 509907, 'food unnecessarily expensive': 317400, 'unnecessarily expensive in': 942849, 'expensive in the': 291255, 'short term dr': 764732, 'term dr say': 838123, 'ad have': 31112, 'launched dedicated': 481981, 'dedicated site': 231734, 'site providing': 771993, 'providing advice': 686929, 'advice amp': 33298, 'amp information': 53991, 'issue affected': 455647, 'pandemic up': 636876, 'date advice': 226583, 'employment housing': 274609, 'housing benefit': 407058, 'benefit amp': 126912, 'informed stay': 438123, 'stay protected': 797187, 'ad have launched': 31113, 'have launched dedicated': 381261, 'launched dedicated site': 481983, 'dedicated site providing': 231735, 'site providing advice': 771994, 'providing advice amp': 686930, 'advice amp information': 33300, 'amp information for': 53992, 'information for issue': 437827, 'for issue affected': 322684, 'issue affected by': 455648, 'the pandemic up': 863143, 'pandemic up to': 636877, 'to date advice': 903921, 'date advice is': 226584, 'advice is available': 33414, 'is available for': 445916, 'available for employment': 104367, 'for employment housing': 321040, 'employment housing benefit': 274610, 'housing benefit amp': 407059, 'benefit amp consumer': 126913, 'amp consumer issue': 53568, 'consumer issue stay': 197952, 'issue stay informed': 455937, 'stay informed stay': 797089, 'informed stay protected': 438125, 'wife when': 992000, 'she come': 755943, 'is how going': 448578, 'do my wife': 249634, 'my wife when': 550606, 'wife when she': 992001, 'when she come': 983994, 'she come back': 755944, 'come back from': 187237, 'ehlers': 270144, 'busi': 143162, 'ehlers well': 270145, 'of assistance': 580407, 'with trained': 1001832, 'about option': 25861, 'small busi': 774829, 'ehlers well fargo': 270146, '19 if in': 7658, 'if in need': 414257, 'need of assistance': 555320, 'of assistance customer': 580409, 'speak with trained': 787733, 'with trained specialist': 1001833, 'trained specialist about': 929302, 'specialist about option': 788114, 'about option available': 25862, 'their consumer lending': 872859, 'lending small busi': 486293, 'african are': 35175, 'finding the': 307550, 'issue other': 455882, 'the eve': 854596, 'eve of': 283784, 'of nationwide': 586868, 'south african are': 786669, 'african are finding': 35176, 'are finding the': 86577, 'finding the time': 307553, 'time to worry': 898102, 'worry about issue': 1010643, 'about issue other': 25563, 'issue other than': 455883, 'other than covid': 621061, 'on the eve': 604102, 'the eve of': 854597, 'eve of nationwide': 283786, 'of nationwide lockdown': 586871, 'michigan consumer': 530327, 'index posted': 434230, 'posted biggest': 666518, 'record early': 704955, 'confidence would': 193991, 'been worse': 122405, 'worse were': 1011043, 'were it': 979810, 'not for': 569484, 'rate from': 697228, 'soon peak': 785790, 'peak and': 646046, 'to restart': 913385, 'university of michigan': 942450, 'of michigan consumer': 586472, 'michigan consumer sentiment': 530329, 'consumer sentiment index': 198917, 'sentiment index posted': 750955, 'index posted biggest': 434231, 'posted biggest drop': 666519, 'biggest drop on': 130216, 'drop on record': 260348, 'on record early': 603102, 'record early in': 704956, 'early in april': 264620, 'in april the': 420474, 'april the free': 83700, 'the free fall': 855763, 'free fall in': 331806, 'fall in confidence': 296940, 'in confidence would': 421648, 'confidence would have': 193992, 'have been worse': 379746, 'been worse were': 122406, 'worse were it': 1011044, 'were it not': 979812, 'it not for': 459877, 'not for the': 569498, 'for the expectation': 326421, 'the expectation that': 854706, 'that the infection': 846752, 'the infection and': 858222, 'and death rate': 60990, 'death rate from': 230173, 'rate from covid': 697229, '19 would soon': 12218, 'would soon peak': 1012257, 'soon peak and': 785791, 'peak and allow': 646047, 'and allow the': 57917, 'allow the economy': 46073, 'the economy to': 854028, 'economy to restart': 268294, 'chris': 178045, 'hayes': 384520, 'bother': 136110, 'chris hayes': 178054, 'hayes on': 384525, 'on had': 601219, 'top nurse': 925628, 'field this': 304523, 'evening she': 284894, 'administration lowered': 32487, 'standard for': 793661, 'the nursing': 861989, 'nursing staff': 577627, 'country told': 211181, 'to bother': 901955, 'bother wearing': 136133, 'chris hayes on': 178055, 'hayes on had': 384526, 'on had an': 601220, 'had an interview': 372840, 'an interview with': 56429, 'interview with one': 442265, 'with one of': 999887, 'the top nurse': 869787, 'top nurse in': 925629, 'medical field this': 526179, 'field this evening': 304524, 'this evening she': 887442, 'evening she said': 284895, 'said that today': 731417, 'that today the': 847071, 'today the trump': 920304, 'trump administration lowered': 933381, 'administration lowered the': 32488, 'lowered the standard': 506084, 'the standard for': 867724, 'standard for the': 793662, 'for the nursing': 326593, 'the nursing staff': 861990, 'nursing staff across': 577628, 'the country told': 852172, 'country told them': 211182, 'told them not': 923714, 'them not to': 876056, 'not to bother': 572136, 'to bother wearing': 901957, 'bother wearing mask': 136134, 'mask or to': 519079, 'or to wear': 617483, 'throe': 894255, 'only an': 610085, 'an april': 55379, 'april fool': 83599, 'fool would': 318317, 'would fail': 1011812, 'it death': 457485, 'death throe': 230238, 'only an april': 610086, 'an april fool': 55381, 'april fool would': 83601, 'fool would fail': 318318, 'would fail to': 1011813, 'fail to understand': 296114, 'to understand that': 917911, 'understand that consumer': 940724, 'that consumer culture': 843296, 'culture is in': 220299, 'is in it': 448781, 'in it death': 424237, 'it death throe': 457486, 'farmworkers': 299686, 'our farmworkers': 623028, 'farmworkers are': 299692, 'our farmworkers are': 623029, 'farmworkers are on': 299695, 'crisis and are': 217013, 'are the reason': 90895, 'reason we have': 703052, 'have fresh food': 380719, 'broda': 140811, 'my broda': 547548, 'broda just': 140812, 'hope stock': 403633, 'house co': 406236, 'co the': 184974, 'the nature': 861322, '19 na': 8743, 'na only': 551305, 'only god': 610525, 'god go': 354712, 'my broda just': 547549, 'broda just hope': 140813, 'just hope stock': 468983, 'hope stock enough': 403635, 'stock enough food': 802083, 'for house co': 322405, 'house co the': 406237, 'co the nature': 184975, 'the nature of': 861323, 'nature of this': 552976, 'covid 19 na': 213462, '19 na only': 8744, 'na only god': 551306, 'only god go': 610527, 'god go help': 354713, 'dale': 225105, 'steyn': 800002, 'just decided': 468559, 'that stockpiling': 846504, 'definitely not': 232371, 'not fair': 569352, 'fair on': 296352, 'stuff went': 815248, 'everyone had': 286978, 'paper dale': 640082, 'dale steyn': 225106, 'steyn said': 800003, 'we just decided': 972104, 'just decided that': 468560, 'decided that stockpiling': 230891, 'that stockpiling is': 846505, 'stockpiling is definitely': 803997, 'is definitely not': 447086, 'definitely not the': 232378, 'go it is': 353779, 'is not fair': 450077, 'not fair on': 569354, 'fair on everybody': 296354, 'on everybody who': 600629, 'everybody who need': 286508, 'who need that': 989325, 'need that stuff': 555731, 'that stuff went': 846539, 'stuff went to': 815249, 'other day and': 620073, 'day and everyone': 227261, 'and everyone had': 62399, 'everyone had bought': 286979, 'had bought all': 372933, 'bought all the': 136489, 'toilet paper dale': 921251, 'paper dale steyn': 640083, 'dale steyn said': 225107, 'jyoti10': 470553, 'jyoti10 we': 470554, 'jyoti10 we can': 470555, 'rnr': 724373, 'potential mass': 667104, 'mass spread': 519863, 'spread yesterday': 790897, 'and hypermarket': 64910, 'hypermarket potential': 412352, 'station bus': 796364, 'bus station': 143084, 'and rnr': 70575, 'rnr to': 724374, 'beloved hometown': 126537, 'hometown where': 403001, 'potential mass spread': 667105, 'mass spread yesterday': 519865, 'spread yesterday in': 790898, 'yesterday in grocery': 1015775, 'grocery store supermarket': 365824, 'store supermarket and': 810453, 'supermarket and hypermarket': 819004, 'and hypermarket potential': 64911, 'hypermarket potential for': 412353, 'potential for mass': 667075, 'for mass spread': 323286, 'mass spread in': 519864, 'spread in police': 790580, 'in police station': 426825, 'police station bus': 663212, 'station bus station': 796365, 'bus station and': 143085, 'station and rnr': 796338, 'and rnr to': 70576, 'rnr to our': 724375, 'to our beloved': 911154, 'our beloved hometown': 622182, 'beloved hometown where': 126538, 'hometown where our': 403002, 'where our loved': 985082, 'one are waiting': 605949, 'electron': 271253, 'tw': 936236, 'let assume': 486607, 'assume you': 97036, 'you then': 1021623, 'then ask': 877003, 'treated by': 930939, 'by exact': 152512, 'exact those': 288708, 'product go': 681225, 'go fuck': 353589, 'fuck yourself': 339709, 'yourself you': 1026768, 'the electron': 854186, 'electron used': 271256, 'write this': 1012795, 'this tw': 890884, 'let assume you': 486608, 'assume you get': 97037, 'get the you': 348316, 'the you then': 872200, 'you then ask': 1021624, 'then ask to': 877004, 'ask to be': 95653, 'to be treated': 901601, 'be treated by': 117804, 'treated by exact': 930942, 'by exact those': 152513, 'exact those people': 288709, 'those people the': 892331, 'people the nurse': 649792, 'nurse who cannot': 577544, 'for the product': 326635, 'the product go': 864589, 'product go fuck': 681226, 'go fuck yourself': 353590, 'fuck yourself you': 339711, 'yourself you are': 1026769, 'are not worth': 88500, 'not worth the': 572581, 'worth the electron': 1011445, 'the electron used': 854187, 'electron used to': 271257, 'used to write': 950105, 'to write this': 918866, 'write this tw': 1012796, 'giant place': 349843, 'place 700': 657288, '700 staff': 21900, 'week with': 977259, 'with further': 998588, 'further 500': 341987, '500 job': 20008, 'offer across': 594512, 'supermarket liquor': 821336, 'liquor online': 494181, 'online supply': 609507, 'supermarket giant place': 820510, 'giant place 700': 349844, 'place 700 staff': 657289, '700 staff in': 21901, 'staff in two': 792561, 'two week with': 937375, 'week with further': 977263, 'with further 500': 998589, 'further 500 job': 341988, '500 job on': 20009, 'job on offer': 466050, 'on offer across': 602478, 'offer across supermarket': 594513, 'across supermarket liquor': 29468, 'supermarket liquor online': 821337, 'liquor online supply': 494182, 'online supply chain': 609508, 'chain and bakery': 170456, 'up website': 946552, 'for filing': 321472, 'filing complaint': 305421, 'consumer on': 198258, 'on preventing': 602899, 'preventing scam': 671823, 'scam staysafe': 740375, 'set up website': 753587, 'up website for': 946553, 'website for filing': 975268, 'for filing complaint': 321473, 'filing complaint on': 305422, 'and information for': 65221, 'for consumer on': 320275, 'consumer on preventing': 198261, 'on preventing scam': 602901, 'preventing scam staysafe': 671825, 'onlinestore': 609949, 'artnoisestore': 94644, 'ygk': 1016350, 'concern regarding': 193068, '19 art': 5222, 'art noise': 94174, 'noise ha': 566223, 'quickly developed': 694507, 'developed an': 239678, 'this platform': 889607, 'product schedule': 681601, 'schedule shipment': 741463, 'shipment or': 758775, 'store onlinestore': 809235, 'onlinestore artnoisestore': 609950, 'artnoisestore ygk': 94645, 'to concern regarding': 903170, 'concern regarding covid': 193070, 'covid 19 art': 212654, '19 art noise': 5223, 'art noise ha': 94175, 'noise ha quickly': 566224, 'ha quickly developed': 371617, 'quickly developed an': 694509, 'developed an online': 239680, 'experience with this': 291547, 'with this platform': 1001717, 'this platform you': 889608, 'platform you can': 659066, 'can order and': 159167, 'order and pay': 618033, 'and pay for': 68797, 'pay for product': 644895, 'for product schedule': 324775, 'product schedule shipment': 681602, 'schedule shipment or': 741464, 'shipment or pick': 758777, 'pick up your': 655778, 'up your good': 946737, 'your good at': 1024076, 'good at the': 356803, 'the store onlinestore': 868069, 'store onlinestore artnoisestore': 809236, 'onlinestore artnoisestore ygk': 609951, 'behavior attentive': 123920, 'attentive is': 102517, 'is sharing': 451832, 'sharing data': 755517, 'driven insight': 259322, 'insight tactic': 439640, 'tactic shared': 831713, 'shared our': 755440, 'research here': 713754, 'here part': 393443, 'the support': 868979, 'guidance tech': 368283, 'tech solution': 836146, 'solution are': 781995, 'offering the': 595277, 'commerce industry': 188573, 'this dynamic': 887322, 'dynamic time': 263914, 'continues to impact': 201482, 'to impact consumer': 908149, 'impact consumer behavior': 417606, 'consumer behavior attentive': 196444, 'behavior attentive is': 123921, 'attentive is sharing': 102518, 'is sharing data': 451833, 'sharing data driven': 755518, 'data driven insight': 226196, 'driven insight tactic': 259325, 'insight tactic shared': 439641, 'tactic shared our': 831714, 'shared our research': 755441, 'our research here': 624603, 'research here part': 713755, 'here part of': 393444, 'of the support': 591514, 'the support and': 868980, 'support and guidance': 826359, 'and guidance tech': 64043, 'guidance tech solution': 368284, 'tech solution are': 836147, 'solution are offering': 781996, 'are offering the': 88679, 'offering the commerce': 595279, 'the commerce industry': 851223, 'commerce industry during': 188574, 'industry during this': 435791, 'during this dynamic': 263278, 'this dynamic time': 887324, 'fbcnews': 300691, 'is carrying': 446394, 'an assessment': 55439, 'assessment on': 96399, 'chain fbcnews': 170700, 'fbcnews fijinews': 300692, 'fijinews fiji': 305311, 'fiji more': 305288, 'competition and the': 191668, 'consumer commission is': 196821, 'commission is carrying': 188848, 'is carrying out': 446395, 'carrying out an': 165203, 'out an assessment': 625628, 'an assessment on': 55440, 'assessment on the': 96400, 'on the supply': 604393, 'supply chain fbcnews': 824958, 'chain fbcnews fijinews': 170701, 'fbcnews fijinews fiji': 300693, 'fijinews fiji more': 305314, 'direction someone': 243483, 'someone or': 784592, 'space such': 787167, 'the 2m': 848066, '2m safe': 16706, 'distance is': 246749, 'enough see': 277612, 'this research': 889881, 'research study': 713849, 'study into': 814915, 'into running': 442956, 'running behind': 727935, 'behind someone': 124698, 'thought for while': 893053, 'for while that': 327848, 'while that if': 987368, 'if you walk': 415553, 'you walk in': 1022107, 'same direction someone': 733041, 'direction someone or': 243484, 'someone or you': 784594, 'or you are': 617856, 'are in confined': 87363, 'confined space such': 194048, 'space such supermarket': 787168, 'such supermarket the': 816784, 'supermarket the 2m': 823207, 'the 2m safe': 848069, '2m safe distance': 16707, 'safe distance is': 729589, 'distance is not': 246752, 'not enough see': 569193, 'enough see this': 277614, 'see this research': 745953, 'this research study': 889883, 'research study into': 713850, 'study into running': 814916, 'into running behind': 442957, 'running behind someone': 727936, 'workable': 1006075, 'operating social': 613103, 'distancing might': 247333, 'be worth': 118159, 'worth trying': 1011454, 'trying smaller': 934730, 'shop where': 761029, 'more workable': 541006, 'workable and': 1006076, 'shelf better': 756892, 'better stocked': 128496, 'stocked also': 803251, 'also ex': 48172, 'ex st': 288647, 'st cat': 791687, 'cat but': 166837, 'but long': 146309, 'check if the': 174467, 'if the supermarket': 415036, 'supermarket is operating': 821110, 'is operating social': 450594, 'operating social distancing': 613104, 'social distancing might': 779663, 'distancing might be': 247334, 'might be worth': 530938, 'be worth trying': 118162, 'worth trying smaller': 1011455, 'trying smaller local': 934731, 'smaller local shop': 775282, 'local shop where': 498425, 'shop where social': 761031, 'be more workable': 116001, 'more workable and': 541007, 'workable and shelf': 1006077, 'and shelf better': 71445, 'shelf better stocked': 756893, 'better stocked also': 128497, 'stocked also ex': 803252, 'also ex st': 48173, 'ex st cat': 288648, 'st cat but': 791688, 'cat but long': 166838, 'but long time': 146310, 'long time before': 501766, 'time before you': 896385, 'make myself': 510232, 'myself feel': 550853, 'better co': 128237, 'co im': 184856, 'im skint': 416578, 'skint fook': 773119, 'fook only': 318279, 'only fan': 610423, 'fan covid': 298509, 'edition pending': 268640, 'to stop online': 915549, 'shopping to make': 764182, 'to make myself': 909701, 'make myself feel': 510233, 'myself feel better': 550854, 'feel better co': 302581, 'better co im': 128238, 'co im skint': 184857, 'im skint fook': 416579, 'skint fook only': 773120, 'fook only fan': 318280, 'only fan covid': 610424, 'fan covid 19': 298510, '19 edition pending': 6721, 'drillers': 258774, 'eia': 270169, 'gas production': 344066, 'fall at': 296847, 'the fastest': 854970, 'fastest pace': 300153, 'pace on': 632953, '2021 drillers': 14773, 'drillers cut': 258775, 'pandemic which': 636984, 'sending oil': 750063, 'historic low': 397960, 'production drop': 682020, 'by oott': 153440, 'oott opec': 611779, 'opec eia': 611881, 'natural gas production': 552837, 'gas production in': 344068, 'production in the': 682075, 'state is expected': 795695, 'to fall at': 905623, 'fall at the': 296848, 'at the fastest': 100943, 'the fastest pace': 854972, 'fastest pace on': 300156, 'pace on record': 632954, 'on record in': 603103, 'record in 2021': 704987, 'in 2021 drillers': 419868, '2021 drillers cut': 14774, 'drillers cut spending': 258776, 'cut spending in': 223548, 'spending in response': 788863, 'the pandemic which': 863155, 'pandemic which is': 636986, 'which is sending': 986051, 'is sending oil': 451770, 'sending oil price': 750064, 'price to historic': 677000, 'to historic low': 907831, 'historic low gas': 397961, 'low gas production': 505299, 'gas production drop': 344067, 'production drop by': 682021, 'drop by oott': 260147, 'by oott opec': 153441, 'oott opec eia': 611780, 'clapforourcarers': 180010, 'else risking': 271862, 'our quiet': 624531, 'quiet corner': 694680, 'of london': 585985, 'london so': 501179, 'gratitude clapforcarers': 362362, 'clapforcarers clapforthenhs': 179988, 'clapforthenhs clapforourcarers': 180022, 'clapforourcarers nhsthankyou': 180013, 'clapping for frontline': 180043, 'nh worker carers': 562179, 'staff and everyone': 792138, 'everyone else risking': 286876, 'else risking their': 271863, 'life and health': 488479, 'and health to': 64367, 'health to care': 386917, 'care for others': 163950, 'for others from': 324192, 'others from our': 621422, 'from our quiet': 336795, 'our quiet corner': 624532, 'quiet corner of': 694681, 'corner of london': 203658, 'of london so': 585993, 'london so much': 501181, 'so much gratitude': 777780, 'much gratitude clapforcarers': 544956, 'gratitude clapforcarers clapforthenhs': 362363, 'clapforcarers clapforthenhs clapforourcarers': 179989, 'clapforthenhs clapforourcarers nhsthankyou': 180023, 'curbed': 220593, 'china consumer': 176578, 'rise at': 722787, 'at slower': 100553, 'slower pace': 774508, 'pace over': 632955, 'largely curbed': 479843, 'curbed the': 220601, 'novel disease': 573773, 'disease an': 245081, 'an official': 56567, 'official with': 595979, 'top economic': 925569, 'economic planning': 267199, 'planning agency': 658509, 'agency said': 38067, 'china consumer price': 176581, 'consumer price will': 198430, 'will rise at': 994708, 'rise at slower': 722788, 'at slower pace': 100554, 'slower pace over': 774509, 'pace over the': 632957, 'over the rest': 630759, 'year the country': 1014998, 'country ha largely': 210717, 'ha largely curbed': 371098, 'largely curbed the': 479845, 'curbed the spread': 220602, 'the novel disease': 861912, 'novel disease an': 573774, 'disease an official': 245082, 'an official with': 56572, 'official with the': 595980, 'country top economic': 211185, 'top economic planning': 925570, 'economic planning agency': 267200, 'planning agency said': 658510, 'agency said tuesday': 38068, 'slovakia': 774310, 'friend called': 333541, 'from slovakia': 337315, 'slovakia described': 774313, 'described the': 237954, 'the disgusting': 853379, 'disgusting selfish': 245456, 'over bulk': 630038, 'in slovakia': 427998, 'slovakia are': 774311, 'product culture': 681100, 'culture iq': 220296, 'iq education': 444649, 'friend called me': 333542, 'called me today': 156375, 'me today from': 523803, 'today from slovakia': 919560, 'from slovakia described': 337316, 'slovakia described the': 774314, 'described the disgusting': 237956, 'the disgusting selfish': 853380, 'disgusting selfish panic': 245458, 'selfish panic over': 748191, 'panic over bulk': 638385, 'over bulk buying': 630039, 'bulk buying in': 142278, 'uk and empty': 938168, 'and empty shelf': 62084, 'every store he': 286219, 'store he said': 808120, 'he said that': 385376, 'that all our': 842558, 'our store in': 624946, 'store in slovakia': 808391, 'in slovakia are': 427999, 'slovakia are full': 774312, 'paper and other': 639844, 'and other product': 68388, 'other product culture': 620769, 'product culture iq': 681101, 'culture iq education': 220297, 'guy is': 369047, 'is hilarious': 448472, 'hilarious toiletpapercrisis': 396448, 'toiletpapercrisis stoppanicbuying': 923076, 'stoppanicbuying hoarding': 805576, 'hoarding panicbuying': 399473, 'this guy is': 887790, 'guy is hilarious': 369049, 'is hilarious toiletpapercrisis': 448474, 'hilarious toiletpapercrisis stoppanicbuying': 396449, 'toiletpapercrisis stoppanicbuying hoarding': 923077, 'stoppanicbuying hoarding panicbuying': 805577, 'been declared': 120930, 'declared statewide': 231245, 'statewide due': 796265, 'californian are': 155637, 'from illegal': 336008, 'illegal price': 416234, 'gouging on': 359407, 'on housing': 601377, 'housing gas': 407082, 'gas food': 343851, 'emergency ha been': 272735, 'ha been declared': 369769, 'been declared statewide': 120932, 'declared statewide due': 231246, 'statewide due to': 796266, 'due to californian': 261719, 'to californian are': 902369, 'californian are protected': 155638, 'are protected from': 89294, 'protected from illegal': 685133, 'from illegal price': 336009, 'illegal price gouging': 416235, 'price gouging on': 674307, 'gouging on housing': 359408, 'on housing gas': 601378, 'housing gas food': 407083, 'gas food and': 343852, 'other essential supply': 620180, 'recruiting support': 705498, 'support volunteer': 826971, 'time task': 897802, 'task could': 834670, 'could include': 209331, 'include reaching': 431616, 'reaching out': 700099, 'information dog': 437798, 'dog walking': 252186, 'walking calling': 965036, 'calling lonely': 156597, 'or posting': 616650, 'posting mail': 666662, 'mail sign': 508656, 'are recruiting support': 89520, 'recruiting support volunteer': 705499, 'support volunteer to': 826972, 'unprecedented time task': 943205, 'time task could': 897803, 'task could include': 834671, 'could include reaching': 209333, 'include reaching out': 431617, 'reaching out with': 700104, 'out with information': 627867, 'with information dog': 999007, 'information dog walking': 437799, 'dog walking calling': 252187, 'walking calling lonely': 965037, 'calling lonely people': 156598, 'lonely people picking': 501306, 'people picking up': 649114, 'up shopping or': 945983, 'shopping or posting': 763552, 'or posting mail': 616651, 'posting mail sign': 666663, 'mail sign up': 508657, 'sign up online': 769256, 'shutdownaustralia': 768138, 'describe any': 237925, 'any trip': 79987, 'need me': 555223, 'me ll': 523099, 'll panic': 496939, 'then return': 877482, 'return with': 719948, 'usual half': 950958, 'dozen item': 257884, 'item shutdownaustralia': 463645, 'like to describe': 491582, 'to describe any': 904201, 'describe any trip': 237926, 'any trip to': 79988, 'supermarket if you': 820840, 'you need me': 1020012, 'need me ll': 555224, 'me ll panic': 523102, 'll panic buy': 496940, 'buy then return': 149337, 'then return with': 877483, 'return with the': 719951, 'with the usual': 1001534, 'the usual half': 870587, 'usual half dozen': 950959, 'half dozen item': 374152, 'dozen item shutdownaustralia': 257885, 'stem': 799459, 'exacting': 288715, 'macro': 507467, 'and organization': 68269, 'organization continue': 619358, 'work toward': 1005939, 'toward containing': 927108, 'and stem': 72342, 'stem the': 799466, 'growing humanitarian': 367203, 'humanitarian toll': 410689, 'toll it': 923849, 'is exacting': 447619, 'exacting the': 288720, 'effect at': 268974, 'the macro': 859859, 'macro and': 507470, 'and sector': 71115, 'sector level': 744261, 'level well': 487747, 'well on': 978434, 'on employment': 600546, 'employment are': 274580, 'also beginning': 47945, 'be felt': 114822, 'government and organization': 359869, 'and organization continue': 68270, 'organization continue to': 619359, 'to work toward': 918801, 'work toward containing': 1005940, 'toward containing covid': 927109, '19 and stem': 5112, 'and stem the': 72343, 'stem the growing': 799468, 'the growing humanitarian': 856880, 'growing humanitarian toll': 367204, 'humanitarian toll it': 410690, 'toll it is': 923850, 'it is exacting': 458950, 'is exacting the': 447621, 'exacting the economic': 288721, 'economic effect at': 267084, 'effect at the': 268976, 'at the macro': 101010, 'the macro and': 859860, 'macro and sector': 507471, 'and sector level': 71116, 'sector level well': 744262, 'level well on': 487748, 'well on employment': 978435, 'on employment are': 600547, 'employment are also': 274581, 'are also beginning': 84442, 'also beginning to': 47946, 'beginning to be': 123664, 'to be felt': 901254, 'supposedly we': 827389, 'than italy': 840804, 'italy australian': 462770, 'australian doctor': 103475, 'doctor issue': 250968, 'issue urgent': 455982, 'urgent plea': 948354, 'up coronavirus': 944654, 'supposedly we re': 827390, 're on track': 699186, 'on track to': 604830, 'track to be': 928232, 'to be worse': 901641, 'worse than italy': 1011011, 'than italy australian': 840806, 'italy australian doctor': 462771, 'australian doctor issue': 103477, 'doctor issue urgent': 250969, 'issue urgent plea': 455983, 'urgent plea for': 948355, 'plea for government': 659543, 'for government to': 321964, 'government to ramp': 360730, 'ramp up coronavirus': 696437, 'up coronavirus response': 944656, 'coronavirus response the': 206666, 'response the new': 715813, 'though crisis': 892792, 'crisis bring': 217138, 'bring out': 140039, 'worst stay': 1011266, 'alert and': 41350, 'with doing': 998109, 'so 19': 776449, 'reminder that even': 710588, 'that even though': 843743, 'even though crisis': 284703, 'though crisis bring': 892793, 'crisis bring out': 217139, 'bring out the': 140042, 'out the best': 627353, 'the best in': 849519, 'best in people': 127733, 'in people they': 426602, 'people they also': 649815, 'they also can': 881143, 'also can bring': 48006, 'can bring out': 157799, 'out the worst': 627443, 'the worst stay': 872075, 'worst stay informed': 1011267, 'informed stay alert': 438124, 'stay alert and': 796754, 'alert and check': 41352, 'out the guidance': 627374, 'the guidance for': 856920, 'guidance for help': 368230, 'for help with': 322191, 'help with doing': 390907, 'with doing so': 998110, 'doing so 19': 252652, 'so 19 coronavirus': 776450, '19 coronavirus scam': 6123, 'coronavirus scam what': 206725, 'concern around': 192924, 'the limited': 859392, 'stock local': 802362, 'shop seem': 760742, 'really scary': 702552, 'time coronacrisis': 896513, 'of the concern': 590882, 'the concern around': 851422, 'concern around food': 192927, 'around food and': 93286, 'food and the': 313355, 'and the limited': 73450, 'the limited stock': 859393, 'limited stock local': 492725, 'stock local shop': 802363, 'local shop seem': 498415, 'shop seem to': 760743, 'to have due': 907233, 'buying this is': 151221, 'is really scary': 451315, 'really scary time': 702555, 'scary time coronacrisis': 741205, '10 item': 1487, 'or le': 615941, 'le according': 482831, 'official 10': 595740, 'go 10': 353233, '11 ready': 2584, 'ready or': 700912, 'here come': 392879, 'the must act': 861157, 'must act like': 546454, 'act like the': 29688, 'like the checkout': 491359, 'the checkout at': 850757, 'checkout at grocery': 174887, 'store for 10': 807781, 'for 10 item': 318616, '10 item or': 1488, 'item or le': 463533, 'or le according': 615942, 'le according to': 482832, 'according to government': 28547, 'to government official': 906937, 'government official 10': 360408, 'official 10 or': 595741, '10 or le': 1592, 'or le and': 615943, 'le and you': 482848, 'you get to': 1018801, 'get to pas': 348484, 'to pas go': 911485, 'pas go 10': 643106, 'go 10 11': 353234, '10 11 ready': 1230, '11 ready or': 2585, 'ready or not': 700913, 'or not here': 616300, 'not here come': 569948, 'instacart hiring': 439921, 'hiring spree': 397129, 'spree continues': 791134, 'it face': 457918, 'demand by': 235091, 'by retail': 153794, 'food tech': 317068, 'instacart hiring spree': 439922, 'hiring spree continues': 397130, 'spree continues it': 791135, 'continues it face': 201410, 'it face unprecedented': 457920, 'unprecedented demand by': 943109, 'demand by retail': 235094, 'by retail grocery': 153797, 'retail grocery food': 718156, 'grocery food tech': 364524, 'done small': 255012, 'small country': 774924, 'town supermarket': 927559, 'their people': 874267, 'every town': 286333, 'town in': 927491, 'australia with': 103424, 'well done small': 978199, 'done small country': 255013, 'small country town': 774925, 'country town supermarket': 211193, 'town supermarket look': 927561, 'supermarket look after': 821387, 'look after their': 502226, 'after their people': 36373, 'their people every': 874268, 'people every town': 647830, 'every town in': 286334, 'town in australia': 927493, 'in australia with': 420623, 'australia with supermarket': 103426, 'with supermarket should': 1001064, 'supermarket should do': 822678, 'should do this': 765935, 'blog launch': 132962, 'launch daily': 481887, 'pattern via': 644521, 'via corona': 955883, 'live blog launch': 495752, 'blog launch daily': 132963, 'launch daily measure': 481890, 'travel pattern via': 930463, 'pattern via corona': 644522, 'cheeseplease': 175235, 'cheese availability': 175174, 'availability update': 104193, 'offering lunch': 595185, 'lunch to': 506748, 'go personal': 354040, 'personal online': 652928, 'delivery open': 234267, 'up grocery': 945038, 'delivery 10am': 233610, '10am 30pm': 2278, '30pm monday': 17511, 'friday cheeseplease': 333207, 'cheeseplease 19': 175236, '19 grocerydelivery': 7293, 'cheese availability update': 175175, 'availability update is': 104194, 'update is offering': 947040, 'is offering lunch': 450424, 'offering lunch to': 595186, 'lunch to go': 506749, 'to go personal': 906841, 'go personal online': 354041, 'personal online shopping': 652929, 'shopping for pick': 762705, 'pick up or': 655745, 'up or delivery': 945678, 'or delivery open': 614943, 'delivery open for': 234268, 'open for pick': 612256, 'pick up grocery': 655727, 'up grocery delivery': 945040, 'grocery delivery 10am': 364433, 'delivery 10am 30pm': 233611, '10am 30pm monday': 2279, '30pm monday friday': 17512, 'monday friday cheeseplease': 536290, 'friday cheeseplease 19': 333208, 'cheeseplease 19 grocerydelivery': 175237, 'store actually': 806072, 'tp on': 927888, 'shelf haven': 757149, 'any in': 79343, 'week quarantine': 976778, 'quarantine shelterinplace': 692525, 'toiletpaper meme': 922232, 'my local store': 549142, 'local store actually': 498452, 'store actually had': 806073, 'actually had one': 30824, 'had one package': 373372, 'of tp on': 592375, 'tp on the': 927890, 'the shelf haven': 866845, 'shelf haven seen': 757150, 'haven seen any': 383880, 'seen any in': 746940, 'any in week': 79345, 'in week quarantine': 430762, 'week quarantine shelterinplace': 976781, 'quarantine shelterinplace toiletpaper': 692526, 'shelterinplace toiletpaper meme': 758031, 'koomo': 477431, 'impacted all': 418065, 'all area': 42053, 'behaviour changing': 124385, 'changing our': 172767, 'life massively': 488866, 'massively in': 520179, 'today article': 919252, 'impacted internet': 418129, 'internet search': 442013, 'search and': 743219, 'behaviour koomo': 124462, 'koomo consumerbehaviour': 477432, 'consumerbehaviour seo': 199638, 'coronavirus ha impacted': 206023, 'ha impacted all': 370910, 'impacted all area': 418066, 'all area of': 42056, 'area of consumer': 92130, 'of consumer behaviour': 581713, 'consumer behaviour changing': 196558, 'behaviour changing our': 124386, 'changing our daily': 172768, 'our daily life': 622687, 'daily life massively': 224668, 'life massively in': 488867, 'massively in today': 520180, 'in today article': 430151, 'today article we': 919255, 'article we will': 94498, 'we will discus': 973853, 'will discus how': 993205, 'discus how ha': 244864, 'ha impacted internet': 370915, 'impacted internet search': 418130, 'internet search and': 442014, 'search and change': 743221, 'consumer behaviour koomo': 196583, 'behaviour koomo consumerbehaviour': 124463, 'koomo consumerbehaviour seo': 477433, 'bandkarobazaar': 109420, 'bcos': 113346, 'interfere': 441664, 'nationalise': 552658, 'bandkarobazaar bastard': 109421, 'bastard news': 112485, 'news increase': 560535, 'soap by': 778964, '10 demand': 1394, 'demand increased': 235693, 'increased bcos': 433208, 'bcos of': 113347, 'of chinesevirus': 581381, 'chinesevirus high': 177439, 'time interfere': 897037, 'interfere and': 441665, 'and nationalise': 67434, 'nationalise hul': 552659, 'bandkarobazaar bastard news': 109422, 'bastard news increase': 112486, 'news increase price': 560536, 'price of soap': 675571, 'of soap by': 589821, 'soap by 10': 778965, 'by 10 demand': 151512, '10 demand increased': 1395, 'demand increased bcos': 235694, 'increased bcos of': 433209, 'bcos of chinesevirus': 113348, 'of chinesevirus high': 581382, 'chinesevirus high time': 177440, 'high time interfere': 395478, 'time interfere and': 897038, 'interfere and nationalise': 441666, 'and nationalise hul': 67435, 'facing financial': 295465, 'financial uncertainty': 306627, 'uncertainty at': 939664, 'bureau site': 142811, 'site list': 771975, 'list key': 494388, 'key resource': 473386, 'yourself financially': 1026598, 'financially from': 306674, 'many are facing': 513757, 'are facing financial': 86414, 'facing financial uncertainty': 295468, 'financial uncertainty at': 306628, 'uncertainty at this': 939665, 'this time the': 890699, 'time the consumer': 897846, 'protection bureau site': 685370, 'bureau site list': 142812, 'site list key': 771976, 'list key resource': 494389, 'key resource and': 473387, 'resource and step': 714706, 'and step to': 72345, 'protect yourself financially': 685092, 'yourself financially from': 1026600, 'financially from the': 306675, 'from the impact': 337752, 'toiletpaper yes': 922880, 'yes sh': 1015523, 'sh is': 754293, 'where toiletpaper': 985319, 'toiletpaper can': 921846, 'you toiletpaperpanic': 1021876, 'so much toiletpaper': 777822, 'much toiletpaper yes': 545404, 'toiletpaper yes sh': 922881, 'yes sh is': 1015524, 'sh is going': 754294, 'is going down': 448090, 'going down but': 355115, 'down but not': 256582, 'one where toiletpaper': 607427, 'where toiletpaper can': 985320, 'toiletpaper can help': 921847, 'help you toiletpaperpanic': 391004, 'tumbling': 935338, 'commercialrealestate': 188762, 'houston economy': 407195, 'economy attempt': 267681, 'and tumbling': 74521, 'tumbling crude': 935339, 'price commercialrealestate': 673194, 'commercialrealestate professional': 188763, 'professional in': 682459, 'for minimal': 323450, 'minimal deal': 533050, 'deal making': 229440, 'month cre': 537664, 'houston economy attempt': 407196, 'economy attempt to': 267682, 'attempt to weather': 102266, 'weather the effect': 974901, 'outbreak and tumbling': 628017, 'and tumbling crude': 74522, 'tumbling crude oil': 935340, 'oil price commercialrealestate': 597083, 'price commercialrealestate professional': 673195, 'commercialrealestate professional in': 188764, 'professional in the': 682460, 'the office market': 862074, 'office market are': 595483, 'market are bracing': 516013, 'bracing for minimal': 137504, 'for minimal deal': 323451, 'minimal deal making': 533051, 'deal making in': 229441, 'making in the': 511127, 'coming week and': 188273, 'and month cre': 67128, 'fledged': 310277, 'be super': 117445, 'super productive': 818562, 'productive during': 682294, 'but all': 145079, 'shopping debt': 762442, 'and full': 63402, 'full fledged': 340594, 'fledged alcohol': 310278, 'alcohol problem': 41078, 'problem lockdownaustralia': 679595, 'lockdownaustralia isolation': 500219, 'like to use': 491631, 'use this time': 949734, 'this time to': 890703, 'to be super': 901571, 'be super productive': 117447, 'super productive during': 818563, 'productive during this': 682295, 'pandemic but all': 635038, 'but all have': 145083, 'all have so': 43061, 'far is an': 298819, 'is an online': 445686, 'online shopping debt': 609086, 'shopping debt and': 762443, 'debt and full': 230419, 'and full fledged': 63405, 'full fledged alcohol': 340595, 'fledged alcohol problem': 310279, 'alcohol problem lockdownaustralia': 41079, 'problem lockdownaustralia isolation': 679596, 'the library': 859323, 'library covid': 488065, 'for helpful': 322193, 'helpful link': 391204, 'link while': 493964, 'while dealing': 986739, 'updated to': 947447, 'include list': 431589, 'consumer resource': 198769, 'resource there': 714895, 'are link': 87828, 'scam file': 740160, 'complaint learn': 191988, 'the mortgage': 860928, 'mortgage care': 541876, 'visit the library': 959384, 'the library covid': 859325, 'library covid 19': 488066, 'information page for': 437943, 'page for helpful': 633847, 'for helpful link': 322194, 'helpful link while': 391206, 'link while dealing': 493965, 'while dealing with': 986740, 'pandemic it ha': 635820, 'been updated to': 122303, 'updated to include': 947448, 'to include list': 908248, 'include list of': 431590, 'list of consumer': 494421, 'of consumer resource': 581767, 'consumer resource there': 198776, 'resource there are': 714896, 'there are link': 878119, 'are link to': 87829, 'link to help': 493931, 'help avoid scam': 389402, 'avoid scam file': 105259, 'scam file consumer': 740161, 'consumer complaint learn': 196854, 'complaint learn about': 191989, 'about the mortgage': 26455, 'the mortgage care': 860930, 'mortgage care act': 541877, 'dunzo': 262318, 'sharechat': 755387, 'story too': 812146, 'too on': 924980, 'overall effect': 631010, 'on whole': 605296, 'whole host': 990240, 'host of': 404881, 'business from': 143764, 'from oyo': 336829, 'oyo bounce': 632695, 'bounce dunzo': 136814, 'dunzo sharechat': 262319, 'sharechat to': 755388, 'the several': 866749, 'several consumer': 753811, 'product guy': 681234, 'demand terrible': 236317, 'terrible utilisation': 838452, 'utilisation rate': 951241, 'have story too': 382799, 'story too on': 812147, 'too on the': 924981, 'on the overall': 604272, 'the overall effect': 862767, 'overall effect of': 631011, '19 on whole': 8974, 'on whole host': 605297, 'whole host of': 990241, 'host of business': 404882, 'of business from': 580954, 'business from oyo': 143770, 'from oyo bounce': 336830, 'oyo bounce dunzo': 632696, 'bounce dunzo sharechat': 136815, 'dunzo sharechat to': 262320, 'sharechat to the': 755389, 'to the several': 917050, 'the several consumer': 866750, 'several consumer product': 753812, 'consumer product guy': 198461, 'product guy who': 681235, 'guy who will': 369235, 'who will all': 989980, 'will all be': 992230, 'all be seriously': 42143, 'be seriously impacted': 117098, 'by the drop': 154312, 'drop in demand': 260237, 'in demand terrible': 422156, 'demand terrible utilisation': 236318, 'terrible utilisation rate': 838453, 'strangled': 812514, 'georgia in': 346039, 'in late': 424609, 'tariff strangled': 834622, 'strangled trade': 812515, 'of georgia in': 584091, 'georgia in late': 346040, 'in late 2018': 424610, 'late 2018 hurricane': 480841, 'chinese tariff strangled': 177369, 'tariff strangled trade': 834623, 'strangled trade and': 812516, 'the fresh vegetable': 855804, 'fresh vegetable market': 333103, 'vegetable market before': 954029, 'it get started': 458223, 'hawkins': 384484, '20million': 14914, '19 jennifer': 8184, 'jennifer hawkins': 465102, 'hawkins remains': 384485, 'remains in': 710022, 'in listed': 424794, 'listed 20million': 494608, '20million sydney': 14915, 'sydney mansion': 830697, 'mansion house': 513337, 'covid 19 jennifer': 213306, '19 jennifer hawkins': 8185, 'jennifer hawkins remains': 465103, 'hawkins remains in': 384486, 'remains in listed': 710024, 'in listed 20million': 424795, 'listed 20million sydney': 494609, '20million sydney mansion': 14916, 'sydney mansion house': 830698, 'mansion house price': 513338, 'sharmin': 755656, 'mossavar': 542050, 'rahmani': 695582, 'sachs': 729037, 'investment implication': 444007, 'implication of': 418560, 'the were': 871385, 'were discussed': 979523, 'discussed this': 244973, 'in note': 425969, 'note to': 572831, 'to client': 902838, 'client from': 182035, 'from sharmin': 337235, 'sharmin mossavar': 755657, 'mossavar rahmani': 542051, 'rahmani head': 695583, 'the investment': 858418, 'investment strategy': 444063, 'strategy group': 812651, 'group for': 366696, 'management division': 512562, 'division at': 248663, 'at goldman': 98775, 'goldman sachs': 356094, 'sachs read': 729040, 'the economic and': 853893, 'economic and investment': 266983, 'and investment implication': 65362, 'investment implication of': 444008, 'implication of the': 418565, 'of the were': 591615, 'the were discussed': 871388, 'were discussed this': 979524, 'discussed this week': 244975, 'this week in': 891223, 'week in note': 976378, 'in note to': 425971, 'note to client': 572834, 'to client from': 902840, 'client from sharmin': 182036, 'from sharmin mossavar': 337236, 'sharmin mossavar rahmani': 755658, 'mossavar rahmani head': 542052, 'rahmani head of': 695584, 'head of the': 385775, 'of the investment': 591156, 'the investment strategy': 858421, 'investment strategy group': 444064, 'strategy group for': 812652, 'group for the': 366698, 'consumer and investment': 196218, 'and investment management': 65363, 'investment management division': 444029, 'management division at': 512563, 'division at goldman': 248664, 'at goldman sachs': 98776, 'goldman sachs read': 356096, 'sachs read it': 729041, 'justathought': 470394, 'letsworktogether': 487277, 'delivery why': 234742, 'don the': 253959, 'other retailer': 620846, 'closing offer': 183705, 'offer their': 594830, 'their van': 875118, 'and driver': 61748, 'supermarket justathought': 821234, 'justathought letsworktogether': 470395, 'idea we have': 413226, 'have food company': 380652, 'food company who': 313992, 'company who can': 191316, 'who can meet': 988395, 'can meet the': 158991, 'for online food': 324104, 'food delivery why': 314161, 'delivery why don': 234743, 'why don the': 990967, 'don the other': 253960, 'the other retailer': 862550, 'other retailer closing': 620852, 'retailer closing offer': 719083, 'closing offer their': 183706, 'offer their van': 594832, 'their van and': 875119, 'van and driver': 952289, 'and driver to': 61754, 'driver to supermarket': 259807, 'to supermarket justathought': 915807, 'supermarket justathought letsworktogether': 821235, 'deduction': 231792, 'suggested that': 817585, 'should pay': 766312, 'staff gross': 792505, 'gross salary': 366439, 'salary by': 731957, 'by suspending': 154188, 'suspending all': 829647, 'all statutory': 44438, 'statutory deduction': 796717, 'deduction so': 231793, 'stock home': 802242, 'stuff the': 815201, 'the earlier': 853812, 'better covid': 128250, 'would only': 1012094, 'be curtailed': 114313, 'curtailed by': 221786, 'by drastic': 152421, 'suggested that you': 817587, 'you should pay': 1021211, 'should pay your': 766315, 'pay your staff': 645257, 'your staff gross': 1025910, 'staff gross salary': 792506, 'gross salary by': 366440, 'salary by suspending': 731958, 'by suspending all': 154189, 'suspending all statutory': 829649, 'all statutory deduction': 44439, 'statutory deduction so': 796718, 'deduction so that': 231794, 'will have enough': 993628, 'enough to stock': 277726, 'to stock home': 915439, 'stock home with': 802243, 'home with food': 402522, 'with food stuff': 998509, 'food stuff the': 316898, 'stuff the earlier': 815203, 'the earlier the': 853813, 'earlier the better': 264488, 'the better covid': 849573, 'better covid 19': 128251, '19 would only': 12215, 'would only be': 1012095, 'only be curtailed': 610150, 'be curtailed by': 114314, 'curtailed by drastic': 221787, 'by drastic measure': 152422, 'message get': 529329, 'get from': 347108, 'my manager': 549201, 'manager one': 512769, 'before my': 122952, 'my retail': 549947, 'week quarantinelife': 976783, 'the message get': 860518, 'message get from': 529330, 'get from my': 347111, 'from my manager': 336514, 'my manager one': 549203, 'manager one day': 512770, 'one day before': 606151, 'day before my': 227370, 'before my retail': 122955, 'my retail store': 549949, 'store is about': 808461, 'about to close': 26711, 'for week quarantinelife': 327744, 'it little': 459412, 'little sad': 495550, 'mom walk': 535825, 'excited looking': 289551, 'me screwed': 523425, 'screwed quarantine': 742824, 'it little sad': 459413, 'little sad that': 495551, 'when go shopping': 983477, 'go shopping with': 354138, 'my mom walk': 549286, 'mom walk around': 535826, 'walk around the': 964745, 'get excited looking': 346976, 'excited looking at': 289552, 'at the thing': 101120, 'the thing in': 869456, 'thing in the': 884440, 'quarantine shit ha': 692530, 'shit ha me': 759124, 'ha me screwed': 371255, 'me screwed quarantine': 523426, 'hongkong': 403217, 'ifc': 415622, 'fooling': 318328, 'hongkong supermarket': 403222, 'supermarket city': 819699, 'city super': 179383, 'the ifc': 857856, 'ifc is': 415623, 'is shut': 451901, 'shut for': 767882, 'for deep': 320611, 'cleaning after': 180887, 'positive person': 665409, 'have visited': 383512, 'visited prior': 959493, 'being diagnosed': 125044, 'diagnosed no': 240230, 'no fooling': 564285, 'fooling around': 318329, 'around here': 93319, 'here month': 393348, 'hongkong supermarket city': 403223, 'supermarket city super': 819701, 'city super in': 179384, 'super in the': 818527, 'in the ifc': 429281, 'the ifc is': 857857, 'ifc is shut': 415624, 'is shut for': 451904, 'shut for deep': 767884, 'for deep cleaning': 320612, 'deep cleaning after': 231859, 'cleaning after positive': 180888, 'after positive person': 36056, 'positive person wa': 665412, 'person wa confirmed': 652687, 'wa confirmed to': 961858, 'to have visited': 907333, 'have visited prior': 383514, 'visited prior to': 959494, 'prior to being': 678370, 'to being diagnosed': 901737, 'being diagnosed no': 125045, 'diagnosed no fooling': 240231, 'no fooling around': 564286, 'fooling around here': 318330, 'around here month': 93322, 'here month in': 393349, 'month in and': 537788, 'in and long': 420374, 'coronaalert': 204417, 'srilanka coronaalert': 791608, 'coronaalert oil': 204429, 'session today': 753318, 'future tumbling': 342492, 'tumbling to': 935355, 'to 17': 899523, 'low to': 505689, 'to usd': 918001, 'usd 25': 948899, '25 80': 15823, '80 per': 22617, 'barrel sparked': 111280, 'pandemic lka': 635895, 'lka socialdistancing': 496521, 'srilanka coronaalert oil': 791609, 'coronaalert oil price': 204430, 'third session today': 886103, 'session today with': 753322, 'today with crude': 920551, 'crude future tumbling': 219534, 'future tumbling to': 342493, 'tumbling to 17': 935356, 'to 17 year': 899525, '17 year low': 4409, 'year low to': 1014737, 'low to usd': 505695, 'to usd 25': 918002, 'usd 25 80': 948900, '25 80 per': 15824, '80 per barrel': 22618, 'per barrel sparked': 650708, 'barrel sparked by': 111281, 'sparked by the': 787577, 'by the global': 154336, 'global pandemic lka': 352096, 'pandemic lka socialdistancing': 635896, 'muchmind': 545502, 'reflexive': 706699, 'propitiousness': 684407, 'muchmind reflexive': 545503, 'reflexive interaction': 706700, 'interaction between': 441232, 'between among': 128708, 'people concern': 647516, 'concern desire': 192957, 'desire aversion': 238418, 'aversion power': 104919, 'power spread': 667687, 'correction security': 207568, 'security destructive': 744573, 'destructive potential': 239133, 'potential propitiousness': 667120, 'propitiousness for': 684408, 'for violence': 327567, 'violence threat': 957561, 'threat magnitude': 893675, 'muchmind reflexive interaction': 545504, 'reflexive interaction between': 706701, 'interaction between among': 441233, 'between among people': 128709, 'among people concern': 53048, 'people concern desire': 647518, 'concern desire aversion': 192958, 'desire aversion power': 238419, 'aversion power spread': 104920, 'power spread of': 667688, 'spread of oil': 790691, 'oil price stock': 597276, 'price stock market': 676665, 'market correction security': 516229, 'correction security destructive': 207569, 'security destructive potential': 744574, 'destructive potential propitiousness': 239134, 'potential propitiousness for': 667121, 'propitiousness for violence': 684409, 'for violence threat': 327568, 'violence threat magnitude': 957562, 'braided': 137575, 'inch': 431388, 'joannstores': 465584, 'on taking': 603875, 'consumer store': 199162, 'making alot': 510949, 'greedy on': 363556, 'the shipping': 866946, 'ship one': 758700, 'of braided': 580821, 'braided inch': 137576, 'inch elastic': 431394, 'elastic it': 270495, 'it weighs': 462298, 'weighs few': 977685, 'few ounce': 303970, 'ounce joannstores': 621959, 'joannstores repost': 465585, 'repost 19': 712805, 'everybody is getting': 286449, 'is getting in': 448027, 'in on taking': 426128, 'on taking advantage': 603876, 'the consumer store': 851601, 'consumer store is': 199164, 'store is making': 808504, 'is making alot': 449535, 'making alot of': 510950, 'alot of money': 47131, 'of money right': 586615, 'now but they': 574294, 'are also being': 84443, 'also being greedy': 47953, 'being greedy on': 125200, 'greedy on the': 363557, 'on the shipping': 604358, 'the shipping to': 866947, 'shipping to ship': 758936, 'to ship one': 914429, 'ship one package': 758701, 'package of braided': 633339, 'of braided inch': 580822, 'braided inch elastic': 137577, 'inch elastic it': 431395, 'elastic it weighs': 270496, 'it weighs few': 462299, 'weighs few ounce': 977686, 'few ounce joannstores': 303971, 'ounce joannstores repost': 621960, 'joannstores repost 19': 465586, 'domex': 253260, 'facemasks price': 295159, 'capped lifebuoy': 162878, 'lifebuoy domex': 489268, 'domex get': 253263, 'get cheaper': 346763, 'cheaper prevention': 174262, 'prevention in': 671857, 'in reach': 427276, 'handsanitizer facemasks price': 376529, 'facemasks price capped': 295160, 'price capped lifebuoy': 673076, 'capped lifebuoy domex': 162879, 'lifebuoy domex get': 489269, 'domex get cheaper': 253264, 'get cheaper prevention': 346764, 'cheaper prevention in': 174263, 'prevention in reach': 671858, 'sacred': 729076, 'joined by': 466922, 'by longtime': 153090, 'longtime friend': 502141, 'and occasional': 67950, 'occasional sacred': 578949, 'sacred tension': 729077, 'tension co': 837983, 'co host': 184853, 'host danielle': 404873, 'danielle who': 225836, 'who interview': 989048, 'interview me': 442222, 'me about': 522344, 'being an': 124839, 'in word': 430971, 'word it': 1004506, 'joined by longtime': 466924, 'by longtime friend': 153091, 'longtime friend and': 502142, 'friend and occasional': 333506, 'and occasional sacred': 67951, 'occasional sacred tension': 578950, 'sacred tension co': 729078, 'tension co host': 837984, 'co host danielle': 184854, 'host danielle who': 404874, 'danielle who interview': 225837, 'who interview me': 989049, 'interview me about': 442223, 'me about what': 522351, 'it like being': 459353, 'like being an': 489899, 'being an essential': 124841, 'an essential grocery': 55824, 'pandemic in word': 635712, 'in word it': 430972, 'word it terrifying': 1004507, 'amp shall': 54471, 'shall stay': 754554, 'pm say amp': 661976, 'say amp shall': 738415, 'amp shall stay': 54472, 'shall stay open': 754555, 'stay open but': 797154, 'open but will': 612134, 'but will close': 147873, 'when terrified': 984117, 'day when terrified': 228729, 'when terrified of': 984118, 'terrified of going': 838495, 'generally we': 345547, 'to dealing': 903970, 'side shock': 768878, 'shock like': 759474, 'like drought': 490143, 'drought or': 260771, 'or demand': 614950, 'like recession': 491066, 'at global': 98767, 'global level': 352003, 'level world': 487763, 'programme chief': 683333, 'economist say': 267579, 'it truly': 461870, 'truly truly': 933353, 'truly unprecedented': 933355, 'generally we are': 345548, 'we are used': 970751, 'used to dealing': 950047, 'to dealing with': 903971, 'dealing with supply': 229695, 'with supply side': 1001083, 'supply side shock': 825853, 'side shock like': 768879, 'shock like drought': 759475, 'like drought or': 490144, 'drought or demand': 260772, 'or demand side': 614952, 'demand side shock': 236215, 'shock like recession': 759476, 'like recession but': 491067, 'recession but here': 704230, 'but here it': 145924, 'is both and': 446240, 'both and at': 135847, 'and at global': 58474, 'at global level': 98769, 'global level world': 352005, 'level world food': 487764, 'food programme chief': 316059, 'programme chief economist': 683334, 'chief economist say': 175918, 'economist say this': 267581, 'say this make': 739369, 'make it truly': 510063, 'it truly truly': 461871, 'truly truly unprecedented': 933354, 'themselve': 876733, 'suggestion precaution': 817659, 'precaution the': 669369, 'checkout employee': 174912, 'protect themselve': 685013, 'themselve from': 876734, '19 hope': 7573, 'store boss': 806749, 'boss would': 135760, 'would implemented': 1011942, 'implemented to': 418491, 'employee by': 273695, 'your mandate': 1024771, 'mandate guidance': 513001, 'guidance thanks': 368285, 'thanks alot': 842010, 'alot keep': 47122, 'just suggestion precaution': 469924, 'suggestion precaution the': 817660, 'precaution the checkout': 669370, 'the checkout employee': 850760, 'checkout employee should': 174913, 'employee should use': 274205, 'should use face': 766615, 'glove to protect': 352974, 'to protect themselve': 912339, 'protect themselve from': 685014, 'themselve from covid': 876735, 'covid 19 hope': 213219, '19 hope the': 7575, 'hope the retail': 403686, 'retail store boss': 718619, 'store boss would': 806750, 'boss would implemented': 135761, 'would implemented to': 1011943, 'implemented to their': 418495, 'to their employee': 917231, 'their employee by': 873135, 'employee by your': 273697, 'by your mandate': 154791, 'your mandate guidance': 1024772, 'mandate guidance thanks': 513002, 'guidance thanks alot': 368286, 'thanks alot keep': 842011, 'is busy': 446315, 'busy buying': 144881, 'these western': 880962, 'left right': 485619, 'right with': 722430, 'country market': 210887, 'market crashing': 516255, 'crashing at': 215102, 'over 66': 629898, '66 00': 21413, 'china 80': 176445, '00 corona': 153, 'corona patient': 204101, 'recovered china': 705223, 'world do': 1009487, 'china is busy': 176746, 'is busy buying': 446316, 'busy buying all': 144882, 'buying all these': 149880, 'all these western': 45063, 'these western company': 880963, 'western company left': 980607, 'company left right': 190837, 'left right with': 485620, 'right with all': 722431, 'with all these': 997165, 'all these country': 45028, 'these country market': 879817, 'country market crashing': 210888, 'market crashing at': 516256, 'crashing at very': 215103, 'low price over': 505530, 'price over 66': 675814, 'over 66 00': 629899, '66 00 of': 21414, '00 of china': 380, 'of china 80': 581356, 'china 80 00': 176446, '80 00 corona': 22538, '00 corona patient': 154, 'corona patient have': 204102, 'patient have recovered': 644182, 'have recovered china': 382221, 'recovered china is': 705224, 'china is taking': 176763, 'is taking over': 452557, 'the world do': 871856, 'world do something': 1009489, 'r9': 695112, 'have publisher': 382105, 'publisher and': 688714, 'streaming provider': 812842, 'provider pushing': 686769, 'pushing content': 690402, 'content even': 200802, 'even slashing': 284584, 'slashing price': 773675, 'price given': 674188, 'still holding': 800720, 'holding out': 400141, 'on r9': 603060, 'we have publisher': 971910, 'have publisher and': 382106, 'publisher and streaming': 688715, 'and streaming provider': 72543, 'streaming provider pushing': 812843, 'provider pushing content': 686770, 'pushing content even': 690403, 'content even slashing': 200803, 'even slashing price': 284585, 'slashing price given': 773677, 'price given covid': 674189, '19 and then': 5121, 'and then we': 73821, 'then we have': 877728, 'we have still': 971950, 'have still holding': 382756, 'still holding out': 800721, 'holding out on': 400142, 'out on r9': 626915, 'science amp': 742079, 'amp tech': 54623, 'warn science amp': 966960, 'science amp tech': 742081, 'amp tech news': 54624, 'f4f': 294184, 'likeforlikes': 491919, 'followforfollowback': 312660, 'superman': 818716, 'fight people': 304842, 'toiletpaper life': 922178, 'life follow': 488655, 'follow f4f': 312375, 'f4f likeforlikes': 294185, 'likeforlikes followforfollowback': 491920, 'followforfollowback live': 312661, 'live batman': 495739, 'batman superman': 112704, 'superman uk': 818717, 'trying to fight': 934805, 'to fight people': 905805, 'fight people at': 304843, 'people at supermarket': 647181, 'at supermarket for': 100726, 'supermarket for that': 820422, 'for that toiletpaper': 326274, 'that toiletpaper life': 847079, 'toiletpaper life follow': 922179, 'life follow f4f': 488656, 'follow f4f likeforlikes': 312376, 'f4f likeforlikes followforfollowback': 294186, 'likeforlikes followforfollowback live': 491921, 'followforfollowback live batman': 312662, 'live batman superman': 495740, 'batman superman uk': 112705, 'offender': 594467, 'anyone see': 80510, 'hiked for': 396313, 'the offender': 862061, 'offender to': 594472, 'to trading': 917694, 'if anyone see': 413852, 'anyone see price': 80513, 'see price being': 745598, 'price being hiked': 672894, 'being hiked for': 125248, 'hiked for certain': 396314, 'for certain product': 319998, 'certain product due': 170086, 'due to please': 261904, 'to please report': 911820, 'please report the': 660389, 'report the offender': 712342, 'the offender to': 862062, 'offender to trading': 594473, 'to trading standard': 917695, 'like how': 490455, 'how woolworth': 409254, 'woolworth doesn': 1004411, 'allow refund': 46043, 'common panic': 189424, 'bought item': 136615, 'politely saying': 663624, 'no right': 565367, 'your stupidity': 1026024, 'stupidity stoppanicbuying': 815558, 'like how woolworth': 490459, 'how woolworth doesn': 409256, 'woolworth doesn allow': 1004412, 'doesn allow refund': 251696, 'allow refund on': 46044, 'refund on the': 706936, 'on the most': 604242, 'most common panic': 542187, 'common panic bought': 189425, 'panic bought item': 637423, 'bought item it': 136616, 'item it almost': 463395, 'almost if they': 46670, 'they are politely': 881362, 'are politely saying': 89136, 'politely saying that': 663625, 'saying that you': 739709, 'have no right': 381653, 'no right to': 565369, 'right to make': 722347, 'up for your': 944977, 'for your stupidity': 328216, 'your stupidity stoppanicbuying': 1026025, 'adventuregame': 33116, 'showingmyage': 767564, 'vortex': 960443, 'yes showing': 1015529, 'showing my': 767483, 'age by': 37803, 'but doe': 145569, 'the adventure': 848374, 'adventure game': 33097, '19 adventuregame': 4817, 'adventuregame showingmyage': 33117, 'showingmyage socialdistancing': 767565, 'socialdistancing vortex': 780843, 'vortex side': 960444, 'side step': 768888, 'yes showing my': 1015530, 'showing my age': 767484, 'my age by': 547236, 'age by posting': 37804, 'by posting this': 153628, 'this but doe': 886640, 'but doe anyone': 145570, 'feel like they': 302752, 'in the adventure': 428968, 'the adventure game': 848375, 'adventure game when': 33098, 'game when they': 343286, 'when they enter': 984256, 'they enter supermarket': 882050, 'enter supermarket these': 278305, 'these day 19': 879865, 'day 19 adventuregame': 227108, '19 adventuregame showingmyage': 4818, 'adventuregame showingmyage socialdistancing': 33118, 'showingmyage socialdistancing vortex': 767566, 'socialdistancing vortex side': 780844, 'vortex side step': 960445, 'side step to': 768889, 'step to the': 799671, 'to the right': 917027, 'chunk': 178313, 'disgracefully': 245342, 'mean if': 524489, 'if london': 414391, 'london had': 501084, 'had continued': 372984, 'continued doing': 201313, 'normal weekly': 567403, 'shop of': 760525, 'course certain': 211851, 'item would': 463846, 'would disappear': 1011759, 'disappear we': 244050, 'be managing': 115897, 'managing this': 512903, 'this better': 886552, 'better but': 128217, 'instead huge': 440210, 'huge chunk': 410001, 'chunk of': 178318, 'this city': 886773, 'is behaving': 446051, 'behaving disgracefully': 123826, 'disgracefully stophoarding': 245345, 'mean if london': 524491, 'if london had': 414392, 'london had continued': 501085, 'had continued doing': 372985, 'continued doing it': 201314, 'doing it normal': 252486, 'it normal weekly': 459845, 'normal weekly shop': 567404, 'weekly shop of': 977551, 'shop of course': 760526, 'of course certain': 582048, 'course certain item': 211853, 'certain item would': 170043, 'item would disappear': 463847, 'would disappear we': 1011760, 'disappear we would': 244051, 'would be managing': 1011618, 'be managing this': 115898, 'managing this better': 512904, 'this better but': 886553, 'better but instead': 128221, 'but instead huge': 146066, 'instead huge chunk': 440211, 'huge chunk of': 410002, 'chunk of this': 178319, 'of this city': 591952, 'this city is': 886776, 'city is behaving': 179214, 'is behaving disgracefully': 446052, 'behaving disgracefully stophoarding': 123827, 'disgracefully stophoarding panicbuyinguk': 245346, 'from separating': 337219, 'separating grocery': 751109, 'to treating': 917763, 'treating everyone': 930996, 'in someone': 428110, 'someone own': 784599, 'own household': 632072, 'household if': 406837, 'virus ashley': 957968, 'ashley young': 95122, 'young gave': 1022599, 'gave some': 344657, 'valuable tip': 952056, 'surviving lockdown': 829359, 'from separating grocery': 337220, 'separating grocery in': 751110, 'supermarket to treating': 823422, 'to treating everyone': 917764, 'treating everyone in': 930997, 'everyone in someone': 287049, 'in someone own': 428113, 'someone own household': 784600, 'own household if': 632073, 'household if they': 406838, 'the virus ashley': 870798, 'virus ashley young': 957969, 'ashley young gave': 95123, 'young gave some': 1022600, 'gave some valuable': 344659, 'some valuable tip': 784156, 'valuable tip to': 952057, 'tip to surviving': 898944, 'to surviving lockdown': 916060, 'surviving lockdown due': 829360, 'deplorable': 237434, 'nots': 573628, 'it deplorable': 457522, 'deplorable how': 237435, 'pandemic selling': 636420, 'sanitizers glove': 736291, 'fact is': 295734, 'really is': 702349, 'the have': 857144, 'have nots': 381720, 'nots because': 573629, 'if cannot': 413939, 'afford your': 34824, 'your 10': 1022707, '10 sanitizer': 1666, 'isn it deplorable': 454563, 'it deplorable how': 457523, 'deplorable how people': 237436, 'the pandemic selling': 863089, 'pandemic selling sanitizers': 636421, 'selling sanitizers glove': 749434, 'sanitizers glove and': 736292, 'mask at exorbitant': 518417, 'exorbitant price the': 290421, 'price the fact': 676832, 'the fact is': 854825, 'fact is when': 295740, 'is when it': 453917, '19 there really': 11289, 'there really is': 878986, 'really is no': 702353, 'is no line': 449946, 'no line between': 564607, 'between the have': 128930, 'the have and': 857146, 'have and the': 379276, 'and the have': 73406, 'the have nots': 857150, 'have nots because': 381721, 'nots because if': 573630, 'because if cannot': 119142, 'if cannot afford': 413940, 'cannot afford your': 161621, 'afford your 10': 34825, 'your 10 sanitizer': 1022708, 'espionage': 280679, 'panic for': 638116, 'for espionage': 321088, 'espionage and': 280680, 'commercial gain': 188706, 'gain malicious': 342789, 'phishing sm': 654841, 'phishing ransomware': 654827, 'ransomware vulnerable': 696837, 'discount fraud': 244473, 'are exploiting the': 86369, 'exploiting the panic': 292458, 'the panic for': 863205, 'panic for espionage': 638117, 'for espionage and': 321089, 'espionage and commercial': 280681, 'and commercial gain': 60137, 'commercial gain malicious': 188707, 'gain malicious apps': 342791, 'apps email phishing': 83278, 'email phishing sm': 272271, 'phishing sm phishing': 654842, 'sm phishing ransomware': 774757, 'phishing ransomware vulnerable': 654828, 'ransomware vulnerable software': 696838, 'sanitizer scam discount': 735705, 'scam discount fraud': 740129, 'exacerbates': 288677, 'csas': 220025, 'farmersmarkets': 299592, 'farmer have': 299404, 'only exacerbates': 610404, 'exacerbates it': 288680, 'help by': 389464, 'by getting': 152670, 'their dollar': 873058, 'dollar directly': 252981, 'farmer through': 299529, 'through csas': 894402, 'csas farmersmarkets': 220028, 'farmersmarkets and': 299593, 'read via': 700647, 'farmer have been': 299405, 'been in crisis': 121340, 'in crisis for': 421881, 'crisis for year': 217395, 'year and covid': 1014391, '19 only exacerbates': 8997, 'only exacerbates it': 610405, 'exacerbates it consumer': 288681, 'it consumer can': 457283, 'consumer can help': 196724, 'can help by': 158609, 'help by getting': 389466, 'by getting their': 152676, 'getting their dollar': 349365, 'their dollar directly': 873059, 'dollar directly to': 252982, 'directly to farmer': 243590, 'to farmer through': 905677, 'farmer through csas': 299530, 'through csas farmersmarkets': 894403, 'csas farmersmarkets and': 220029, 'farmersmarkets and shopping': 299594, 'shopping online read': 763472, 'online read via': 608851, 'nakasero': 551547, 'most supermarket': 542787, 'in fair': 422774, 'fair measure': 296350, '19 however': 7614, 'however this': 409500, 'afternoon went': 36727, 'to capital': 902442, 'capital supermarket': 162690, 'at nakasero': 99841, 'nakasero and': 551548, 'will clearly': 992939, 'clearly observe': 181533, 'observe that': 578595, 'lot is': 504069, 'is desired': 447134, 'desired the': 238434, 'basket are': 112300, 'not sanitized': 571426, 'most supermarket have': 542791, 'supermarket have put': 820702, 'have put in': 382112, 'put in fair': 690616, 'in fair measure': 422775, 'fair measure to': 296351, 'curb the 19': 220579, 'the 19 however': 847919, '19 however this': 7620, 'however this afternoon': 409501, 'this afternoon went': 886240, 'afternoon went to': 36728, 'went to capital': 979145, 'to capital supermarket': 902443, 'capital supermarket at': 162691, 'supermarket at nakasero': 819243, 'at nakasero and': 99842, 'nakasero and you': 551549, 'you will clearly': 1022326, 'will clearly observe': 992940, 'clearly observe that': 181534, 'observe that lot': 578596, 'that lot is': 844954, 'lot is desired': 504070, 'is desired the': 447135, 'desired the trolley': 238435, 'the trolley and': 870005, 'trolley and shopping': 932367, 'and shopping basket': 71537, 'shopping basket are': 762160, 'basket are not': 112303, 'are not sanitized': 88460, 're among': 698277, 'those financially': 892003, 'financially impacted': 306678, 'mortgage or': 541932, 'or rent': 616846, 'bureau put': 142805, 'together this': 920979, 'your option': 1025092, 'option are': 613984, 'relief more': 709383, 'you re among': 1020567, 're among those': 698279, 'among those financially': 53097, 'those financially impacted': 892004, 'financially impacted by': 306679, '19 you might': 12271, 'might be concerned': 530883, 'be concerned about': 114175, 'how to pay': 409052, 'to pay your': 911577, 'your mortgage or': 1024885, 'mortgage or rent': 541933, 'or rent the': 616849, 'rent the consumer': 711187, 'protection bureau put': 685368, 'bureau put together': 142806, 'put together this': 690949, 'together this info': 920980, 'this info on': 888103, 'info on what': 437540, 'do what your': 250520, 'what your option': 982718, 'your option are': 1025093, 'option are for': 613986, 'are for relief': 86646, 'for relief more': 325094, 'relief more info': 709384, 'band stay': 109353, 'with share': 1000661, 'your soul': 1025873, 'soul you': 786241, 'alone anymore': 46821, 'anymore kill': 80139, 'band distantimauniti': 109337, 'beast band stay': 118482, 'band stay with': 109355, 'stay with share': 797404, 'with share your': 1000663, 'share your soul': 755379, 'your soul you': 1025875, 'soul you are': 786242, 'are not alone': 88319, 'not alone anymore': 568158, 'alone anymore kill': 46822, 'anymore kill the': 80140, 'beast band distantimauniti': 118479, 'band distantimauniti italy': 109338, 'bypassed': 154825, 'greengrocer': 363744, 'preferring': 669818, 'why social': 991357, 'distancing appears': 247011, 'have bypassed': 379865, 'bypassed my': 154826, 'local greengrocer': 498040, 'greengrocer the': 363748, 'wa rammed': 963038, 'rammed people': 696421, 'people seemed': 649381, 'be oblivious': 116140, 'oblivious so': 578489, 'selfish didn': 748076, 'in preferring': 426923, 'preferring to': 669821, 'to que': 912657, 'hour outside': 405839, 'outside well': 629638, 'well organised': 978448, 'organised supermarket': 619318, 'wondering why social': 1004210, 'why social distancing': 991358, 'social distancing appears': 779557, 'distancing appears to': 247012, 'appears to have': 82217, 'to have bypassed': 907213, 'have bypassed my': 379866, 'bypassed my local': 154827, 'my local greengrocer': 549116, 'local greengrocer the': 498041, 'greengrocer the shop': 363749, 'the shop wa': 867036, 'shop wa rammed': 761012, 'wa rammed people': 963039, 'rammed people seemed': 696422, 'people seemed to': 649382, 'to be oblivious': 901411, 'be oblivious so': 116141, 'oblivious so selfish': 578490, 'so selfish didn': 778172, 'selfish didn go': 748077, 'didn go in': 241076, 'go in preferring': 353715, 'in preferring to': 426924, 'preferring to que': 669822, 'to que for': 912658, 'que for hour': 693315, 'for hour outside': 322398, 'hour outside well': 405841, 'outside well organised': 629639, 'well organised supermarket': 978449, 'organised supermarket socialdistancing': 619319, 'supermarket socialdistancing 19': 822753, 'supermarket hated': 820673, 'hated going': 378949, 'going there': 355485, 'me spends': 523524, 'spends 10': 789067, 'minute arguing': 533734, 'arguing with': 92740, 'cashier about': 166434, 'her fucking': 392067, 'fucking coupon': 339839, 'the supermarket hated': 868623, 'supermarket hated going': 820674, 'hated going there': 378950, 'going there the': 355487, 'there the lady': 879149, 'the lady in': 858910, 'lady in front': 478777, 'of me spends': 586342, 'me spends 10': 523525, 'spends 10 minute': 789068, '10 minute arguing': 1539, 'minute arguing with': 533735, 'arguing with the': 92743, 'with the cashier': 1001224, 'the cashier about': 850479, 'cashier about her': 166435, 'about her fucking': 25374, 'her fucking coupon': 392068, 'wagner': 964019, 'discouraging': 244642, 'playground': 659356, 'kakenews': 470686, 'wagner say': 964020, 'would allow': 1011503, 'health essential': 386407, 'essential trip': 281731, 'trip grocery': 932079, 'store outdoor': 809406, 'outdoor activity': 628886, 'activity walk': 30526, 'run discouraging': 727603, 'discouraging playground': 244643, 'playground equipment': 659361, 'equipment kakenews': 279769, 'wagner say stay': 964021, 'say stay in': 739173, 'stay in order': 797056, 'in order would': 426222, 'order would allow': 618791, 'would allow people': 1011506, 'people to go': 649905, 'out for health': 626128, 'for health essential': 322150, 'health essential trip': 386408, 'essential trip grocery': 281732, 'trip grocery store': 932081, 'grocery store outdoor': 365628, 'store outdoor activity': 809407, 'outdoor activity walk': 628887, 'activity walk or': 30527, 'walk or run': 964851, 'or run discouraging': 616933, 'run discouraging playground': 727604, 'discouraging playground equipment': 244644, 'playground equipment kakenews': 659362, 'wow so': 1012588, 'why australian': 990825, 'australian panic': 103515, 'buying load': 150664, 'tp melbourne': 927872, 'cole distribution': 185857, 'centre is': 169510, 'packed load': 633621, 'load stack': 497297, 'warehouse but': 966699, 'supermarket quickly': 822146, 'enough toiletpapercrisis': 277744, 'wow so why': 1012590, 'so why australian': 778750, 'why australian panic': 990826, 'australian panic buying': 103516, 'panic buying load': 637796, 'buying load of': 150665, 'load of tp': 497288, 'of tp melbourne': 592372, 'tp melbourne cole': 927873, 'melbourne cole distribution': 527932, 'cole distribution centre': 185858, 'distribution centre is': 248132, 'centre is packed': 169512, 'is packed load': 450772, 'packed load stack': 633622, 'load stack of': 497298, 'stack of toilet': 791979, 'in the warehouse': 429657, 'the warehouse but': 871081, 'warehouse but it': 966700, 'it cannot get': 457051, 'cannot get it': 161892, 'get it on': 347418, 'the supermarket quickly': 868767, 'supermarket quickly enough': 822147, 'quickly enough toiletpapercrisis': 694519, 'risinguptothechallenges': 723337, 'store seems': 810023, 'normal still': 567336, 'still let': 800790, 'another appreciate': 77497, 'appreciate those': 82771, 'in grocerystores': 423445, 'grocerystores across': 366360, 'america risinguptothechallenges': 51669, 'risinguptothechallenges usa': 723338, 'usa grocerystore': 948653, 'grocerystore groceryshopping': 366309, 'grocery store seems': 365755, 'store seems to': 810024, 'new normal still': 559173, 'normal still let': 567337, 'still let not': 800791, 'forget to be': 329316, 'kind to one': 475010, 'to one another': 910910, 'one another appreciate': 605914, 'another appreciate those': 77498, 'appreciate those working': 82772, 'those working on': 892749, 'line in grocerystores': 493197, 'in grocerystores across': 423446, 'grocerystores across america': 366361, 'across america risinguptothechallenges': 29251, 'america risinguptothechallenges usa': 51670, 'risinguptothechallenges usa grocerystore': 723339, 'usa grocerystore groceryshopping': 948654, 'it meaning': 459583, 'meaning they': 524842, 'and pas': 68737, 'or low': 616018, 'to mild': 910124, 'mild symptons': 531349, 'symptons and': 830970, 'someone ha covid': 784492, 'not know they': 570304, 'know they ve': 476881, 've got it': 953180, 'got it meaning': 358649, 'it meaning they': 459584, 'meaning they go': 524843, 'supermarket and pas': 819035, 'and pas it': 68740, 'it on or': 460052, 'on or low': 602540, 'or low to': 616021, 'low to mild': 505692, 'to mild symptons': 910125, 'mild symptons and': 531350, 'symptons and they': 830971, 'and they go': 73909, 'work or supermarket': 1005568, 'strap': 812517, 'shopper at': 761407, 'wearing her': 974654, 'her n95': 392219, 'one strap': 607126, 'strap securing': 812520, 'securing it': 744503, 'other hanging': 620342, 'hanging free': 376967, 'mask should': 519270, 'shopper at my': 761411, 'store is wearing': 808545, 'is wearing her': 453813, 'wearing her n95': 974655, 'her n95 with': 392220, 'n95 with one': 551241, 'with one strap': 999890, 'one strap securing': 607127, 'strap securing it': 812521, 'securing it to': 744504, 'it to her': 461723, 'to her face': 907696, 'her face with': 392037, 'face with the': 294865, 'the other hanging': 862535, 'other hanging free': 620343, 'hanging free in': 376968, 'free in front': 331920, 'of the mask': 591225, 'the mask should': 860226, 'mask should tell': 519275, 'should tell her': 766561, 'tester': 839398, 'swab': 829900, 'lockdownkarma': 500304, 'truly hope': 933313, 'coughed over': 208641, 'the illness': 857880, 'illness but': 416347, 'the tester': 869328, 'tester really': 839399, 'really shoved': 702584, 'shoved that': 766829, 'that swab': 846601, 'swab up': 829910, 'there lockdownkarma': 878731, 'truly hope that': 933315, 'hope that when': 403661, 'when the idiot': 984163, 'the idiot who': 857850, 'idiot who coughed': 413638, 'who coughed over': 988501, 'coughed over people': 208642, 'over people on': 630489, 'supermarket wa tested': 823710, 'wa tested for': 963424, '19 not that': 8833, 'not that he': 571971, 'that he ha': 844258, 'he ha the': 385036, 'ha the illness': 372204, 'the illness but': 857881, 'illness but that': 416348, 'but that the': 147299, 'that the tester': 846850, 'the tester really': 869329, 'tester really shoved': 839400, 'really shoved that': 702585, 'shoved that swab': 766830, 'that swab up': 846602, 'swab up there': 829911, 'up there lockdownkarma': 946262, 'supervalu': 824359, 'supervalu on': 824366, 'on commercial': 599979, 'commercial drive': 188698, 'is pricegouging': 451022, 'pricegouging for': 677810, 'toiletpaper take': 922572, 'picture found': 656119, 'facebook going': 294922, 'going over': 355410, 'is overstock': 450763, 'charging ridiculous': 173516, 'price vancouver': 677291, 'supervalu on commercial': 824367, 'on commercial drive': 599980, 'commercial drive is': 188699, 'drive is pricegouging': 259083, 'is pricegouging for': 451023, 'pricegouging for toiletpaper': 677811, 'for toiletpaper take': 327264, 'toiletpaper take look': 922573, 'at this picture': 101248, 'this picture found': 889578, 'picture found this': 656120, 'found this on': 330437, 'this on facebook': 889213, 'on facebook going': 600704, 'facebook going over': 294923, 'going over there': 355412, 'over there to': 630809, 'there to see': 879191, 'see what going': 746031, 'what going on': 981507, 'going on the': 355338, 'store is overstock': 808514, 'is overstock and': 450764, 'overstock and charging': 631549, 'and charging ridiculous': 59753, 'charging ridiculous price': 173517, 'ridiculous price vancouver': 721602, 'extra fee': 293508, 'for excessive': 321306, 'excessive purchasing': 289413, 'people wouldn': 650551, 'wouldn buy': 1012449, 'buy hell': 148779, 'paper stayathome': 640825, 'be an extra': 113603, 'an extra fee': 56012, 'extra fee for': 293509, 'fee for excessive': 302173, 'for excessive purchasing': 321307, 'excessive purchasing at': 289414, 'purchasing at the': 689838, 'the supermarket people': 868747, 'supermarket people wouldn': 821957, 'people wouldn buy': 650553, 'wouldn buy hell': 1012450, 'buy hell of': 148780, 'hell of toilet': 389046, 'toilet paper stayathome': 921466, 'plng': 661071, 'hurot': 411462, 'house precaution': 406463, '19 pls': 9733, 'do wear': 250494, 'house too': 406642, 'too it': 924811, 'will prevent': 994444, 'eating day': 266191, 'day plng': 228228, 'plng hurot': 661072, 'hurot na': 411463, 'na ang': 551282, 'ang food': 76282, 'at house precaution': 99200, 'house precaution for': 406464, 'precaution for covid': 669314, 'covid 19 pls': 213591, '19 pls do': 9734, 'pls do wear': 661127, 'do wear mask': 250495, 'mask at your': 518438, 'at your house': 101681, 'your house too': 1024422, 'house too it': 406643, 'too it will': 924815, 'it will prevent': 462420, 'will prevent you': 994447, 'you from eating': 1018715, 'from eating and': 335251, 'eating and eating': 266174, 'and eating day': 61881, 'eating day plng': 266192, 'day plng hurot': 228229, 'plng hurot na': 661073, 'hurot na ang': 411464, 'na ang food': 551283, 'ang food stock': 76283, 'during grocery': 262670, 'store visit': 811075, 'visit foxnews': 959256, 'foxnews stayhomechallenge': 330813, 'stayathome stayathomesavelives': 797630, 'stayathomesavelives pandemic': 797803, 'stay safe during': 797227, 'safe during grocery': 729612, 'during grocery store': 262671, 'grocery store visit': 365917, 'store visit foxnews': 811076, 'visit foxnews stayhomechallenge': 959257, 'foxnews stayhomechallenge stayhome': 330814, 'stayhomechallenge stayhome stayathome': 798285, 'stayhome stayathome stayathomesavelives': 798136, 'stayathome stayathomesavelives pandemic': 797631, 'formed': 329599, 'acceptance': 28034, 'strip': 813814, 'when contract': 983282, 'contract is': 201674, 'is formed': 447911, 'formed under': 329611, 'under consumer': 940036, 'law there': 482415, 'an offer': 56556, 'an acceptance': 55057, 'acceptance an': 28037, 'an invitation': 56455, 'treat so': 930884, 'doe store': 251591, 'store allow': 806142, 'and strip': 72575, 'strip store': 813830, 'when contract is': 983283, 'contract is formed': 201675, 'is formed under': 447912, 'formed under consumer': 329612, 'under consumer law': 940039, 'consumer law there': 198007, 'law there is': 482416, 'is an offer': 445683, 'an offer and': 56557, 'offer and an': 594522, 'and an acceptance': 58101, 'an acceptance an': 55058, 'acceptance an invitation': 28038, 'an invitation to': 56456, 'invitation to treat': 444267, 'to treat so': 917758, 'treat so why': 930885, 'so why doe': 778755, 'why doe store': 990954, 'doe store allow': 251592, 'store allow consumer': 806143, 'consumer to bulk': 199310, 'bulk buy and': 142251, 'buy and strip': 148336, 'and strip store': 72577, 'strip store shelf': 813831, 'store shelf coronacrisis': 810067, 'testing pickup': 839604, 'only store': 611205, 'to higher': 907739, 'for clickandcollect': 320123, 'clickandcollect service': 181970, 'outbreak st': 628650, 'st news': 791732, 'news supermarket': 560837, 'supermarket ltd': 821414, 'kroger is testing': 477748, 'is testing pickup': 452619, 'testing pickup only': 839605, 'pickup only store': 655997, 'only store in': 611208, 'store in response': 808379, 'response to higher': 715852, 'to higher demand': 907741, 'higher demand for': 395575, 'demand for clickandcollect': 235393, 'for clickandcollect service': 320124, 'clickandcollect service during': 181971, 'the outbreak st': 862697, 'outbreak st news': 628651, 'st news supermarket': 791733, 'news supermarket ltd': 560838, 'neighbourhood sharing': 557282, 'sharing library': 755551, 'library ha': 488069, 'ha added': 369445, 'added food': 31558, 'neighbourhood sharing library': 557283, 'sharing library ha': 755552, 'library ha added': 488070, 'ha added food': 369447, 'added food to': 31559, 'food to it': 317265, 'to it stock': 908616, 'endeavour': 276118, 'item response': 463613, 'will endeavour': 993310, 'endeavour to': 276121, 'value driven': 952112, 'driven product': 259347, 'price product': 676003, 'and sto': 72399, 'price of any': 675407, 'any item response': 79374, 'item response to': 463614, 'virus and we': 957949, 'we will endeavour': 973857, 'will endeavour to': 993311, 'endeavour to continue': 276123, 'continue our delivery': 201088, 'our delivery of': 622726, 'delivery of value': 234240, 'of value driven': 592738, 'value driven product': 952113, 'driven product to': 259348, 'our customer please': 622672, 'customer please send': 222699, 'please send the': 660465, 'send the detail': 749962, 'detail of the': 239224, 'the price product': 864400, 'price product and': 676004, 'product and sto': 680912, 'lyft share': 507055, 'after tough': 36443, 'tough month': 926817, 'following covid': 312709, 'and lyft share': 66492, 'lyft share price': 507056, 'share price start': 755183, 'to rise after': 913550, 'rise after tough': 722767, 'after tough month': 36444, 'tough month following': 926818, 'month following covid': 537721, 'following covid 19': 312710, 'related digital': 708420, 'fraud 22': 331214, 'american targeted': 52240, 'targeted transunion': 834553, 'transunion report': 930079, 'report detail': 711898, 'detail how': 239199, 'impacted online': 418139, 'and fraud': 63253, 'coronavirus related digital': 206632, 'related digital fraud': 708421, 'digital fraud 22': 242573, 'fraud 22 of': 331215, 'of american targeted': 580078, 'american targeted transunion': 52241, 'targeted transunion report': 834554, 'transunion report detail': 930080, 'report detail how': 711899, 'detail how covid': 239201, '19 ha impacted': 7353, 'ha impacted online': 370918, 'impacted online shopping': 418140, 'shopping and fraud': 761986, 'overflowing': 631216, 'uneaten': 941072, 'mouldy': 543385, 'those panic': 892303, 'sight will': 769066, 'be moaning': 115950, 'moaning next': 534903, 'when their': 984216, 'their bin': 872619, 'bin is': 131008, 'is overflowing': 450756, 'overflowing with': 631219, 'with uneaten': 1001900, 'uneaten mouldy': 941073, 'mouldy food': 543386, 'food panicbuyinguk': 315760, 'many of those': 514394, 'of those panic': 592109, 'those panic buying': 892304, 'buying everything in': 150255, 'everything in sight': 287854, 'in sight will': 427950, 'sight will be': 769067, 'will be moaning': 992561, 'be moaning next': 115951, 'moaning next week': 534904, 'next week when': 561706, 'week when their': 977225, 'when their bin': 984217, 'their bin is': 872620, 'bin is overflowing': 131009, 'is overflowing with': 450757, 'overflowing with uneaten': 631220, 'with uneaten mouldy': 1001901, 'uneaten mouldy food': 941074, 'mouldy food panicbuyinguk': 543388, 'market free': 516425, 'free falling': 331813, 'falling what': 297356, 'recession what': 704399, 'got money': 358708, 'market our': 516822, 'latest market': 481429, 'update give': 947001, 'the market free': 860111, 'market free falling': 516426, 'free falling what': 331815, 'falling what doe': 297357, 'mean for recession': 524452, 'for recession what': 325018, 'recession what should': 704401, 've got money': 953187, 'got money in': 358709, 'stock market our': 802418, 'market our latest': 516823, 'our latest market': 623670, 'latest market update': 481430, 'market update give': 517284, 'update give you': 947002, 'you some tip': 1021305, 'hoarderish': 399156, 'spending report': 788970, 'report exactly': 711917, 'how hoarderish': 408007, 'hoarderish are': 399157, 'we collectively': 971139, 'collectively acting': 186523, 'acting panicbuying': 29891, 'wait to see': 964232, 'see this month': 745951, 'this month consumer': 888901, 'month consumer spending': 537656, 'consumer spending report': 199086, 'spending report exactly': 788973, 'report exactly how': 711918, 'exactly how hoarderish': 288734, 'how hoarderish are': 408008, 'hoarderish are we': 399158, 'are we collectively': 91563, 'we collectively acting': 971140, 'collectively acting panicbuying': 186524, 'mondayvibes': 536515, 'mondayblogs': 536426, 'towelchallenge': 927406, 'only currently': 610301, 'currently left': 221578, 'stock so': 802859, 'today mondaymorning': 919886, 'mondaymood mondayvibes': 536432, 'mondayvibes mondayblogs': 536516, 'mondayblogs trend': 536427, 'trend parenting': 931414, 'parenting lockdownnow': 641800, 'lockdownnow towelchallenge': 500347, 'towelchallenge online': 927407, 'only currently left': 610302, 'currently left in': 221579, 'in stock so': 428328, 'stock so do': 802860, 'forget to get': 329322, 'to get yours': 906650, 'get yours today': 348750, 'yours today mondaymorning': 1026487, 'today mondaymorning mondaymotivaton': 919887, 'mondaymotivaton mondaymood mondayvibes': 536482, 'mondaymood mondayvibes mondayblogs': 536433, 'mondayvibes mondayblogs trend': 536517, 'mondayblogs trend parenting': 536428, 'trend parenting lockdownnow': 931415, 'parenting lockdownnow towelchallenge': 641801, 'lockdownnow towelchallenge online': 500348, 'towelchallenge online shopping': 927408, 'fallout panic': 297391, 'selling along': 749149, 'send asset': 749821, 'price sharply': 676360, 'lower during': 505846, 'to the fallout': 916693, 'the fallout panic': 854882, 'fallout panic driven': 297392, 'driven selling along': 259352, 'selling along with': 749150, 'with the uncertainty': 1001526, 'combined to send': 187135, 'to send asset': 914204, 'send asset price': 749822, 'asset price sharply': 96459, 'price sharply lower': 676362, 'sharply lower during': 755753, 'lower during the': 505847, 'during the first': 263130, 'hey fred': 394381, 'fred wa': 331583, 'wa cleaning': 961819, 'cleaning the': 181100, 'room while': 725990, 'this flyer': 887559, 'flyer just': 311652, 'll honour': 496847, 'honour the': 403300, 'hey fred wa': 394382, 'fred wa cleaning': 331584, 'wa cleaning the': 961820, 'cleaning the stock': 181103, 'the stock room': 867923, 'stock room while': 802798, 'room while we': 725991, 'we are closed': 970499, 'are closed for': 85344, 'closed for covid': 183125, '19 and found': 5027, 'and found this': 63233, 'found this flyer': 330432, 'this flyer just': 887560, 'flyer just wondering': 311653, 'if you ll': 415468, 'you ll honour': 1019658, 'll honour the': 496848, 'honour the price': 403301, 'price situation': 676425, 'already changed': 47255, 'commodity price situation': 189288, 'price situation is': 676426, 'situation is already': 772340, 'is already changed': 445514, 'more about scam': 538522, 'sart': 736865, 'the florida': 855432, 'florida state': 310984, 'state agriculture': 795338, 'agriculture response': 39023, 'team sart': 835766, 'sart have': 736866, 'released important': 709047, 'important information': 418838, 'animal shelter': 76653, 'and the florida': 73379, 'the florida state': 855435, 'florida state agriculture': 310985, 'state agriculture response': 795339, 'agriculture response team': 39024, 'response team sart': 715808, 'team sart have': 835767, 'sart have released': 736867, 'have released important': 382251, 'released important information': 709048, 'important information for': 418839, 'information for animal': 437823, 'for animal shelter': 319363, 'animal shelter and': 76654, 'shelter and covid': 757897, 'stripped uk': 813894, 'bare do': 110890, 'hoard stophoarding': 398865, 'selfish panic buyer': 748188, 'have stripped uk': 382814, 'stripped uk supermarket': 813895, 'uk supermarket shelf': 938776, 'shelf bare do': 756865, 'bare do you': 110892, 'right to hoard': 722343, 'to hoard stophoarding': 907878, 'hoard stophoarding coronacrisis': 398866, 're part': 699244, 'restaurant chain and': 716358, 'chain and restaurant': 170475, 'and restaurant large': 70384, 'you re part': 1020699, 're part of': 699245, 'wewillsurvive': 980805, 'store dontbeaspreader': 807372, 'dontbeaspreader wewillsurvive': 255345, 'grocery store dontbeaspreader': 365342, 'store dontbeaspreader wewillsurvive': 807373, 'be conscious': 114189, 'conscious of': 194798, 'fear during': 301104, 'pandemic checkout': 635133, 'checkout these': 175029, 'these helpful': 880113, 'commission you': 188923, 'please be conscious': 659697, 'be conscious of': 114190, 'conscious of scammer': 194799, 'looking to capitalize': 503020, 'capitalize on consumer': 162837, 'on consumer fear': 600049, 'consumer fear during': 197455, 'fear during the': 301106, 'during the on': 263163, 'the on going': 862168, 'on going covid': 601130, '19 pandemic checkout': 9293, 'pandemic checkout these': 635134, 'checkout these helpful': 175030, 'these helpful tip': 880114, 'helpful tip from': 391235, 'trade commission you': 928461, 'commission you can': 188924, 'yourself from becoming': 1026608, 'becoming victim of': 120353, 'irish shopper': 444895, 'shopper set': 761680, 'set supermarket': 753481, 'sale record': 732484, '19 stockpiling': 10860, 'irish shopper set': 444896, 'shopper set supermarket': 761681, 'set supermarket sale': 753482, 'supermarket sale record': 822308, 'sale record in': 732485, 'record in march': 704990, 'covid 19 stockpiling': 213869, 'more protect': 540163, 'clerk from': 181704, 'from potentially': 336957, 'they interact': 882471, 'with 100': 996926, 'people each': 647754, 'please walsh': 660743, 'walsh require': 965511, 'require checkout': 713299, 'checkout clerk': 174898, 'mask provided': 519169, 'by their': 154490, 'their employer': 873162, 'do more protect': 249602, 'more protect grocery': 540164, 'store clerk from': 807008, 'clerk from covid': 181705, '19 and from': 5028, 'and from potentially': 63349, 'from potentially spreading': 336958, 'potentially spreading the': 667247, 'the virus they': 870908, 'virus they interact': 958902, 'they interact with': 882472, 'interact with 100': 441202, 'with 100 of': 996929, '100 of people': 1991, 'of people each': 587901, 'people each day': 647755, 'each day please': 264048, 'day please walsh': 228227, 'please walsh require': 660744, 'walsh require checkout': 965512, 'require checkout clerk': 713300, 'checkout clerk to': 174900, 'clerk to wear': 181798, 'wear mask provided': 974400, 'mask provided by': 519170, 'provided by their': 686580, 'by their employer': 154494, 'switch ha': 830494, 'sanitizer where': 736074, 'are jacked': 87595, 'up double': 944740, 'the switch ha': 869068, 'switch ha become': 830495, 'ha become the': 369700, 'the new hand': 861514, 'hand sanitizer where': 375661, 'sanitizer where the': 736075, 'where the price': 985244, 'price are jacked': 672688, 'are jacked up': 87596, 'jacked up double': 464149, 'illinoisprimary': 416326, 'needfood': 556596, 'vote and': 960464, 'store wish': 811358, 'luck illinoisprimary': 506458, 'illinoisprimary needfood': 416327, 'needfood voteblue2020': 556598, 'go vote and': 354470, 'vote and go': 960466, 'grocery store wish': 365960, 'store wish me': 811359, 'good luck illinoisprimary': 357355, 'luck illinoisprimary needfood': 506459, 'illinoisprimary needfood voteblue2020': 416328, '89': 23094, 'to 89': 899862, '89 cent': 23099, 'cent this': 169122, 'could fall to': 209170, 'fall to 89': 297093, 'to 89 cent': 899863, '89 cent this': 23100, 'cent this weekend': 169123, 'this weekend in': 891310, 'weekend in kentucky': 977358, 'cpg': 214580, 'fastmovingconsumergoods': 300185, 'cpgconnectnews': 214622, 'beverage retailer': 129031, 'canada hit': 160462, 'hard amid': 377857, 'more cpg': 538915, 'cpg retail': 214609, 'visit cpg': 959224, 'cpg consumergoods': 214596, 'consumergoods fmcg': 199680, 'fmcg fastmovingconsumergoods': 311726, 'fastmovingconsumergoods retail': 300186, 'news cpgconnectnews': 560354, 'and beverage retailer': 58932, 'beverage retailer in': 129032, 'retailer in canada': 719199, 'in canada hit': 421190, 'canada hit hard': 160463, 'hit hard amid': 398247, 'hard amid covid': 377858, '19 panic for': 9546, 'panic for more': 638122, 'for more cpg': 323561, 'more cpg retail': 538916, 'cpg retail news': 214611, 'retail news visit': 718332, 'news visit cpg': 560949, 'visit cpg consumergoods': 959225, 'cpg consumergoods fmcg': 214597, 'consumergoods fmcg fastmovingconsumergoods': 199681, 'fmcg fastmovingconsumergoods retail': 311727, 'fastmovingconsumergoods retail news': 300187, 'retail news cpgconnectnews': 718331, 'three billion': 893886, 'people globally': 648075, 'globally living': 352386, 'in lock': 424831, 'unprecedented we': 943217, 'we consider': 971169, 'responding get': 715562, 'get crisis': 346836, 'crisis smart': 218058, 'smart read': 775409, 'with three billion': 1001758, 'three billion people': 893887, 'billion people globally': 130889, 'people globally living': 648076, 'globally living in': 352387, 'living in lock': 496377, 'in lock down': 424832, 'down the impact': 257284, 'the is unprecedented': 858544, 'is unprecedented we': 453543, 'unprecedented we consider': 943219, 'we consider how': 971170, 'consider how this': 195023, 'how this is': 408949, 'this is impacting': 888287, 'brand are responding': 137752, 'are responding get': 89632, 'responding get crisis': 715563, 'get crisis smart': 346837, 'crisis smart read': 218059, 'smart read here': 775410, 'read here to': 700356, 'dh': 240078, 'we wanna': 973739, 'wanna hear': 965646, 'hear your': 388037, 'best covid': 127651, 'joke because': 467060, 'all could': 42469, 'some laughter': 783186, 'laughter right': 481848, 'but remember': 146924, 'the dh': 853238, 'dh during': 240079, 'time by': 896432, 'we wanna hear': 973740, 'wanna hear your': 965647, 'hear your best': 388038, 'your best covid': 1022948, 'best covid 19': 127652, '19 joke because': 8192, 'joke because we': 467061, 'because we all': 119789, 'we all could': 970317, 'all could use': 42471, 'use some laughter': 949600, 'some laughter right': 783187, 'laughter right about': 481849, 'right about now': 721732, 'about now but': 25825, 'now but remember': 574292, 'but remember you': 146930, 'remember you can': 710433, 'can only shop': 159136, 'only shop the': 611119, 'shop the dh': 760902, 'the dh during': 853239, 'dh during this': 240080, 'this time by': 890624, 'time by shopping': 896438, 'online and picking': 607841, 'and picking in': 69015, 'picking in store': 655858, 'pickup and we': 655932, '807': 22748, 'many sector': 514669, 'are benefiting': 84947, 'the practice': 864190, 'distancing up': 247581, 'up 25': 944140, '25 online': 15930, 'shopping up': 764294, 'up 100': 944109, '100 virus': 2117, 'virus protection': 958652, 'protection product': 685581, 'up 807': 944208, 'with the impact': 1001343, 'impact of pandemic': 417791, 'of pandemic many': 587702, 'pandemic many sector': 635927, 'many sector are': 514670, 'sector are benefiting': 744096, 'are benefiting from': 84949, 'benefiting from the': 127169, 'from the practice': 337840, 'the practice of': 864192, 'practice of social': 668619, 'social distancing up': 779751, 'distancing up 25': 247582, 'up 25 online': 944142, '25 online grocery': 15931, 'grocery shopping up': 365101, 'shopping up 100': 764295, 'up 100 virus': 944110, '100 virus protection': 2118, 'virus protection product': 958654, 'protection product up': 685582, 'product up 807': 681793, 'weirdo': 977833, 'hackin': 372775, 'not scared': 571454, 'scared of': 740991, 'but sure': 147235, 'sure hell': 827563, 'hell don': 389004, 'be standing': 117346, 'standing next': 793789, 'some weirdo': 784198, 'weirdo in': 977836, 'store hackin': 808033, 'hackin up': 372776, 'up lung': 945351, 'lung either': 506791, 'not scared of': 571455, 'scared of the': 741002, 'the but sure': 850201, 'but sure hell': 147236, 'sure hell don': 827564, 'hell don want': 389005, 'to be standing': 901560, 'be standing next': 117349, 'standing next to': 793790, 'next to some': 561628, 'to some weirdo': 914896, 'some weirdo in': 784199, 'weirdo in the': 977837, 'grocery store hackin': 365450, 'store hackin up': 808034, 'hackin up lung': 372777, 'up lung either': 945352, 'peloton': 646381, 'brandindex': 138118, 'stationary': 796563, 'bike': 130402, 'socialdistancing many': 780513, 'to peloton': 911598, 'peloton yougov': 646384, 'yougov brandindex': 1022527, 'brandindex data': 138119, 'data find': 226207, 'find of': 307105, 'now considering': 574429, 'popular stationary': 664599, 'stationary bike': 796564, 'bike brand': 130407, 'brand up': 138061, 'from during': 335235, 'american are forced': 51805, 'forced to stay': 328657, 'home and practice': 400677, 'and practice socialdistancing': 69305, 'practice socialdistancing many': 668660, 'socialdistancing many are': 780514, 'many are turning': 513782, 'turning to peloton': 935969, 'to peloton yougov': 911599, 'peloton yougov brandindex': 646385, 'yougov brandindex data': 1022528, 'brandindex data find': 138120, 'data find of': 226208, 'find of american': 307106, 'of american are': 580052, 'american are now': 51810, 'are now considering': 88539, 'now considering the': 574430, 'considering the popular': 195427, 'the popular stationary': 864017, 'popular stationary bike': 664600, 'stationary bike brand': 796565, 'bike brand up': 130408, 'brand up from': 138062, 'up from during': 944985, 'from during the': 335237, 'day of 2020': 228048, 'forage': 328257, 'ransacked': 696806, 'day6 in': 228879, 'in philly': 426688, 'philly today': 654776, 'today ventured': 920427, 'out into': 626428, 'to forage': 906161, 'forage for': 328258, 'necessity grocery': 554217, 'being ransacked': 125632, 'ransacked they': 696823, 'have restriction': 382302, 'certain food': 170012, 'still premium': 801058, 'premium item': 669960, 'item wholefoods': 463826, 'wholefoods is': 990397, 'bad place': 107982, 'shop rn': 760724, 'day6 in philly': 228880, 'in philly today': 426691, 'philly today ventured': 654777, 'today ventured out': 920428, 'ventured out into': 954694, 'out into the': 626431, 'into the city': 443105, 'city to forage': 179425, 'to forage for': 906162, 'forage for necessity': 328259, 'for necessity grocery': 323794, 'necessity grocery store': 554218, 'are still being': 90398, 'still being ransacked': 800279, 'being ransacked they': 125633, 'ransacked they have': 696824, 'they have restriction': 882373, 'have restriction on': 382304, 'restriction on certain': 717339, 'on certain food': 599857, 'certain food now': 170018, 'food now toiletpaper': 315573, 'now toiletpaper is': 576195, 'toiletpaper is still': 922142, 'is still premium': 452305, 'still premium item': 801059, 'premium item wholefoods': 669961, 'item wholefoods is': 463827, 'wholefoods is bad': 990398, 'is bad place': 445970, 'bad place to': 107983, 'place to shop': 657771, 'to shop rn': 914485, 'kait': 470674, 'turbo': 935496, 'mifi': 530851, 'hi kait': 394686, 'kait starting': 470675, 'starting on': 794987, 'march 19th': 515121, '19th to': 12544, 'assist those': 96647, 'with turbo': 1001860, 'turbo hub': 935497, 'hub turbo': 409833, 'turbo stick': 935499, 'stick and': 800023, 'and mifi': 66997, 'mifi device': 530854, 'device an': 239891, '10 gb': 1444, 'gb of': 344788, 'of domestic': 582783, 'domestic usage': 253242, 'hi kait starting': 394687, 'kait starting on': 470676, 'starting on march': 794988, 'on march 19th': 602014, 'march 19th to': 515123, '19th to assist': 12545, 'to assist those': 900785, 'assist those working': 96649, 'those working from': 892746, 'will be providing': 992623, 'be providing our': 116604, 'providing our consumer': 687063, 'business customer with': 143616, 'customer with turbo': 223106, 'with turbo hub': 1001861, 'turbo hub turbo': 935498, 'hub turbo stick': 409834, 'turbo stick and': 935500, 'stick and mifi': 800024, 'and mifi device': 67000, 'mifi device an': 530855, 'device an extra': 239892, 'an extra 10': 56000, 'extra 10 gb': 293424, '10 gb of': 1445, 'gb of domestic': 344789, 'of domestic usage': 582787, 'injured': 438708, 'crazy two': 215473, 'people injured': 648478, 'injured after': 438709, 'after man': 35901, 'man pull': 512195, 'pull out': 688875, 'out gun': 626246, 'downtown grocery': 257747, 'is crazy two': 446903, 'crazy two people': 215474, 'two people injured': 937138, 'people injured after': 648479, 'injured after man': 438710, 'after man pull': 35902, 'man pull out': 512196, 'pull out gun': 688876, 'out gun in': 626247, 'gun in downtown': 368701, 'in downtown grocery': 422377, 'downtown grocery store': 257748, 'britain are': 140377, 'longer bloody': 501940, 'bloody cool': 133185, 'cool nothing': 203024, 'united in': 942172, 'absolutely embarrassing': 27352, 'if you look': 415469, 'supermarket shelf the': 822542, 'shelf the people': 757654, 'of britain are': 580889, 'britain are no': 140378, 'no longer bloody': 564639, 'longer bloody cool': 501941, 'bloody cool nothing': 133186, 'cool nothing united': 203025, 'nothing united in': 573207, 'united in this': 942173, 'in this kingdom': 429969, 'picture absolutely embarrassing': 656101, 'for the family': 326427, 'alamo': 40652, 'instagood': 439943, 'peeweeherman': 646320, 'peeweesbogadventure': 646322, 'toiletpaper or': 922280, 'the alamo': 848543, 'alamo instagood': 40653, 'instagood peeweeherman': 439946, 'peeweeherman peeweesbogadventure': 646321, 'when go out': 983476, 'out to look': 627660, 'for toiletpaper or': 327259, 'toiletpaper or the': 922284, 'or the alamo': 617366, 'the alamo instagood': 848544, 'alamo instagood peeweeherman': 40654, 'instagood peeweeherman peeweesbogadventure': 439947, 'overbuying': 631074, 'stop my': 804842, 'dad ha': 224334, 'ha kidney': 371076, 'kidney failure': 474238, 'failure on': 296288, 'on limited': 601846, 'limited budget': 492608, 'budget and': 141751, 'currently without': 221715, 'food cannot': 313877, 'him what': 396772, 'supermarket overbuying': 821867, 'overbuying just': 631077, 'week heavily': 976323, 'heavily pregnant': 388597, 'pregnant and': 669829, 'eating up': 266328, 'now coronacrisis': 574451, 'buying ha got': 150438, 'ha got to': 370745, 'got to stop': 358971, 'to stop my': 915547, 'stop my dad': 804843, 'my dad ha': 547893, 'dad ha kidney': 224340, 'ha kidney failure': 371077, 'kidney failure on': 474239, 'failure on limited': 296289, 'on limited budget': 601847, 'limited budget and': 492609, 'budget and is': 141753, 'and is currently': 65397, 'is currently without': 447007, 'currently without food': 221716, 'without food cannot': 1002655, 'food cannot get': 313879, 'cannot get food': 161887, 'food to him': 317264, 'to him what': 907779, 'him what will': 396774, 'what will close': 982593, 'close the supermarket': 182849, 'the supermarket overbuying': 868736, 'supermarket overbuying just': 821868, 'overbuying just stop': 631078, 'just stop buying': 469908, 'stop buying for': 804536, 'buying for week': 150362, 'for week heavily': 327716, 'week heavily pregnant': 976324, 'heavily pregnant and': 388598, 'pregnant and eating': 669830, 'and eating up': 61883, 'eating up what': 266330, 'up what have': 946568, 'what have now': 981579, 'have now coronacrisis': 381728, '407': 18820, 'skewed': 772921, '407 new': 18821, 'new confirmed': 558511, 'uk please': 938627, 'infection but': 436723, 'tested so': 839363, 'our statistic': 624907, 'statistic are': 796573, 'are skewed': 90150, 'skewed take': 772922, 'care wash': 164254, 'hand stay': 375793, 'from group': 335706, 'group stop': 366894, 'elderly need': 270762, '407 new confirmed': 18822, 'new confirmed case': 558512, 'confirmed case in': 194141, 'the uk please': 870266, 'uk please remember': 938631, 'please remember that': 660372, 'remember that many': 710283, 'that many many': 845026, 'more people have': 540024, '19 infection but': 7848, 'infection but are': 436724, 'but are self': 145221, 'isolating and not': 455057, 'not being tested': 568552, 'being tested so': 125914, 'tested so our': 839364, 'so our statistic': 777970, 'our statistic are': 624908, 'statistic are skewed': 796574, 'are skewed take': 90151, 'skewed take care': 772923, 'take care wash': 832014, 'care wash hand': 164255, 'wash hand stay': 967497, 'hand stay away': 375794, 'away from group': 105885, 'from group stop': 335708, 'group stop panic': 366895, 'buying the elderly': 151166, 'the elderly need': 854131, 'elderly need food': 270763, 'yet felt': 1016066, 'people prior': 649186, 'to standing': 915172, 'would first': 1011822, 'first be': 308530, 'food coupon': 314043, 'not yet felt': 572598, 'yet felt do': 1016067, 'if people prior': 414627, 'people prior to': 649187, 'prior to standing': 678379, 'to standing in': 915173, 'the supermarket they': 868851, 'supermarket they would': 823298, 'they would first': 883940, 'would first be': 1011823, 'first be standing': 308531, 'be standing in': 117347, 'for food coupon': 321571, 'cbd ha': 168307, 'been touted': 122258, 'touted treatment': 927078, 'for nearly': 323787, 'nearly everything': 553827, 'are claim': 85280, 'for combating': 320161, 'combating our': 187069, 'director urge': 243677, 'to pause': 911502, 'pause before': 644587, 'before buying': 122684, 'buying hear': 150476, 'hear her': 387927, 'her take': 392418, 'cbd ha been': 168308, 'ha been touted': 369962, 'been touted treatment': 122259, 'touted treatment for': 927079, 'treatment for nearly': 931077, 'for nearly everything': 323788, 'nearly everything in': 553828, 'everything in the': 287857, 'past few year': 643543, 'few year now': 304193, 'year now there': 1014768, 'there are claim': 878081, 'are claim about': 85281, 'claim about it': 179684, 'about it use': 25603, 'it use for': 461992, 'use for combating': 949218, 'for combating our': 320162, 'combating our executive': 187070, 'executive director urge': 289889, 'director urge you': 243678, 'you to pause': 1021817, 'to pause before': 911504, 'pause before buying': 644588, 'before buying hear': 122685, 'buying hear her': 150477, 'hear her take': 387928, 'her take in': 392419, 'take in this': 832221, 'in this interview': 429965, 'extrovert': 293956, 'anything more': 80830, 'more anxiety': 538623, 'inducing than': 435501, 'an extrovert': 56033, 'extrovert in': 293957, 'there anything more': 878037, 'anything more anxiety': 80831, 'more anxiety inducing': 538625, 'anxiety inducing than': 78730, 'inducing than having': 435502, 'than having an': 840733, 'having an extrovert': 383972, 'an extrovert in': 56034, 'extrovert in the': 293958, 'the queue in': 865042, 'queue in front': 693957, 'front of you': 338651, 'you for an': 1018626, 'hour wait for': 406072, 'tip ask': 898711, 'covid 19 prevention': 213609, '19 prevention tip': 9801, 'prevention tip ask': 671898, 'tip ask doctor': 898712, 'juggling': 467715, 'townsville': 927632, 'more front': 539312, 'line staff': 493416, 'staff staff': 792880, 'staff reporting': 792795, 'reporting each': 712682, 'with smile': 1000773, 'smile they': 775740, 'are juggling': 87607, 'juggling their': 467718, 'own family': 631985, 'family school': 298209, 'all making': 43441, 'making townsville': 511476, 'townsville city': 927633, 'city team': 179393, 'member serving': 528189, 'serving thank': 753213, 'more front line': 539313, 'front line staff': 338605, 'line staff staff': 493420, 'staff staff reporting': 792881, 'staff reporting each': 792796, 'reporting each day': 712683, 'each day with': 264056, 'day with smile': 228782, 'with smile they': 1000775, 'smile they are': 775741, 'they are juggling': 881317, 'are juggling their': 87609, 'juggling their own': 467719, 'their own family': 874174, 'own family school': 631986, 'family school and': 298210, 'and the change': 73277, 'the change we': 850676, 'change we are': 172383, 'are all making': 84325, 'all making townsville': 43443, 'making townsville city': 511477, 'townsville city team': 927634, 'city team member': 179394, 'team member serving': 835729, 'member serving thank': 528190, 'serving thank you': 753214, '3pm': 18398, 'from 3pm': 334287, '3pm with': 18414, 'latest three': 481578, 'protection taking': 685635, 'nbn network': 553269, 'network cope': 557712, 'more aussie': 538684, 'aussie working': 103150, 'from 3pm with': 334289, '3pm with coronavirus': 18415, 'with coronavirus latest': 997805, 'coronavirus latest three': 206210, 'latest three health': 481579, 'three health care': 893949, 'care worker have': 164292, 'positive to covid': 665471, 'consumer protection taking': 198567, 'protection taking your': 685636, 'taking your call': 833671, 'the nbn network': 861337, 'nbn network cope': 553270, 'network cope with': 557713, 'with more and': 999550, 'and more aussie': 67146, 'more aussie working': 538686, 'aussie working from': 103151, 'office vacancy': 595575, 'vacancy could': 951557, 'hit new': 398340, 'high houston': 395114, 'houston chronicle': 407191, 'chronicle the': 178259, 'the vacancy': 870614, 'vacancy rate': 951565, 'rate for': 697221, 'for houston': 322414, 'office space': 595547, 'space could': 787085, 'could increase': 209334, 'by four': 152639, 'four percentage': 330655, 'point by': 662449, 'year collapsing': 1014473, 'crisis slow': 218051, 'slow leasing': 774371, 'leasing activity': 484313, 'activity cre': 30408, 'cre realestate': 215510, 'houston office vacancy': 407215, 'office vacancy could': 595576, 'vacancy could hit': 951558, 'could hit new': 209305, 'hit new high': 398341, 'new high houston': 558879, 'high houston chronicle': 395115, 'houston chronicle the': 407192, 'chronicle the vacancy': 178261, 'the vacancy rate': 870615, 'vacancy rate for': 951567, 'rate for houston': 697224, 'for houston office': 322415, 'houston office space': 407214, 'office space could': 595548, 'space could increase': 787086, 'could increase by': 209335, 'increase by four': 432705, 'by four percentage': 152640, 'four percentage point': 330656, 'percentage point by': 651220, 'point by the': 662450, 'the year collapsing': 872149, 'year collapsing oil': 1014474, '19 crisis slow': 6323, 'crisis slow leasing': 218052, 'slow leasing activity': 774372, 'leasing activity cre': 484314, 'activity cre realestate': 30409, 'restitution': 716850, 'wbab': 970239, 'store toss': 810920, 'toss 35k': 926083, 'it hope': 458624, 'pay restitution': 645087, 'restitution for': 716853, 'this loss': 888711, 'loss do': 503660, 'arrested rock': 93876, 'rock wbab': 724932, 'grocery store toss': 365880, 'store toss 35k': 810921, 'toss 35k in': 926084, 'on it hope': 601668, 'it hope she': 458625, 'hope she is': 403620, 'she is made': 756157, 'is made to': 449509, 'made to pay': 508038, 'to pay restitution': 911554, 'pay restitution for': 645088, 'restitution for this': 716854, 'for this loss': 327045, 'this loss do': 888712, 'loss do you': 503661, 'you think she': 1021674, 'think she should': 885531, 'she should also': 756342, 'also be arrested': 47916, 'be arrested rock': 113688, 'arrested rock wbab': 93877, 'weathered': 974918, 'how china': 407550, 'company weathered': 191292, 'weathered the': 974919, 'crisis virtual': 218320, 'virtual roundtable': 957784, 'roundtable via': 726405, 'how china consumer': 407551, 'china consumer company': 176579, 'consumer company weathered': 196843, 'company weathered the': 191293, 'weathered the covid': 974920, '19 crisis virtual': 6344, 'crisis virtual roundtable': 218322, 'virtual roundtable via': 957786, 'ikea closing': 416033, 'ikea closing all': 416034, 'all store due': 44493, 'positivetrumpspanic': 665502, 'fridaymotivation': 333343, 'positivethoughts': 665501, 'responder or': 715502, 'employee today': 274344, 'we navigate': 972452, 'navigate please': 553071, 'positive energy': 665304, 'energy flowing': 276458, 'flowing positivetrumpspanic': 311363, 'positivetrumpspanic fridaymotivation': 665503, 'fridaymotivation inspiration': 333345, 'inspiration positivethoughts': 439810, 'first responder or': 308957, 'responder or grocery': 715504, 'store employee today': 807557, 'employee today and': 274345, 'today and every': 919202, 'and every day': 62372, 'day we navigate': 228680, 'we navigate please': 972453, 'navigate please rt': 553072, 'please rt to': 660433, 'rt to keep': 726837, 'keep the positive': 472062, 'the positive energy': 864059, 'positive energy flowing': 665305, 'energy flowing positivetrumpspanic': 276459, 'flowing positivetrumpspanic fridaymotivation': 311364, 'positivetrumpspanic fridaymotivation inspiration': 665504, 'fridaymotivation inspiration positivethoughts': 333346, 'reservation': 714012, 'customer than': 222908, 'my vacation': 550484, 'vacation for': 951584, '2020 wa': 14695, 'wa canceled': 961785, 'canceled due': 160933, 'they offered': 882812, 'cover up': 212310, '100 additional': 1826, 'for changing': 320015, 'the date': 852856, 'date however': 226651, '200 more': 13512, 'than our': 841011, 'our original': 624173, 'original reservation': 619588, 'thought you would': 893339, 'you would take': 1022459, 'would take better': 1012308, 'of your customer': 593458, 'your customer than': 1023427, 'customer than this': 222909, 'than this my': 841317, 'this my vacation': 889075, 'my vacation for': 550485, 'vacation for april': 951585, 'for april 2020': 319476, 'april 2020 wa': 83481, '2020 wa canceled': 14696, 'wa canceled due': 961787, 'canceled due to': 160934, 'and they offered': 73924, 'they offered to': 882814, 'offered to cover': 594976, 'to cover up': 903663, 'cover up to': 212315, 'up to 100': 946317, 'to 100 additional': 899435, '100 additional cost': 1827, 'additional cost for': 31797, 'cost for changing': 207943, 'for changing the': 320018, 'changing the date': 172808, 'the date however': 852858, 'date however the': 226652, 'however the price': 409479, 'price are 200': 672626, 'are 200 more': 84117, '200 more than': 13514, 'more than our': 540658, 'than our original': 841013, 'our original reservation': 624175, 'pityous': 657069, 'watching article': 968709, 'the pityous': 863756, 'pityous state': 657070, 'no likelihood': 564599, 'food feeling': 314455, 'no hope': 564442, 'hope can': 403431, 'just walk': 470203, 'fridge or': 333415, 'supermarket whilst': 823849, 'whilst locked': 987649, 'down my': 256969, 'my problem': 549853, 'are nothing': 88503, 'watching article on': 968710, 'on the pityous': 604284, 'the pityous state': 863757, 'pityous state of': 657071, 'of the poor': 591348, 'the poor in': 863977, 'poor in the': 664201, 'india no food': 434541, 'food no likelihood': 315546, 'no likelihood of': 564600, 'likelihood of food': 491931, 'of food feeling': 583692, 'food feeling of': 314456, 'feeling of no': 303035, 'of no hope': 587040, 'no hope can': 564443, 'hope can just': 403433, 'can just walk': 158801, 'just walk to': 470207, 'walk to my': 964899, 'to my fridge': 910400, 'my fridge or': 548416, 'fridge or drive': 333416, 'or drive to': 615075, 'drive to my': 259224, 'local supermarket whilst': 498615, 'supermarket whilst locked': 823850, 'whilst locked down': 987650, 'locked down my': 500477, 'down my problem': 256973, 'my problem are': 549854, 'problem are nothing': 679465, 'celeste': 168924, 'leatherette': 484718, 'distancing doesn': 247109, 'be drag': 114596, 'drag take': 258164, 'online celeste': 607998, 'celeste leatherette': 168925, 'leatherette counter': 484719, 'counter height': 210221, 'height dining': 388801, 'dining chair': 243014, 'chair set': 171307, 'socialdistancing socialdistancing2020': 780703, 'social distancing doesn': 779593, 'distancing doesn have': 247110, 'to be drag': 901220, 'be drag take': 114597, 'drag take your': 258165, 'take your shopping': 832830, 'shopping online celeste': 763418, 'online celeste leatherette': 607999, 'celeste leatherette counter': 168926, 'leatherette counter height': 484720, 'counter height dining': 210222, 'height dining chair': 388802, 'dining chair set': 243015, 'chair set of': 171308, 'set of socialdistancing': 753445, 'of socialdistancing socialdistancing2020': 589856, 'the affected': 848403, 'affected influencers': 34384, 'influencers and': 437340, 'relationship they': 708704, 'consumer audience': 196354, 'audience provides': 102912, 'provides her': 686860, 'her perspective': 392298, 'how ha the': 407957, 'ha the affected': 372186, 'the affected influencers': 848404, 'affected influencers and': 34385, 'influencers and the': 437341, 'and the relationship': 73546, 'the relationship they': 865467, 'relationship they have': 708705, 'they have with': 882403, 'have with their': 383610, 'with their consumer': 1001562, 'their consumer audience': 872849, 'consumer audience provides': 196356, 'audience provides her': 102913, 'provides her perspective': 686861, 'moodboost': 538297, 'no toiletpaper': 565759, 'go moodboost': 353843, 'no toiletpaper but': 565760, 'toiletpaper but have': 921830, 'to go moodboost': 906826, 'reshaping': 714200, 'pri': 672091, 'rank': 696774, 'big data': 129728, 'is reshaping': 451458, 'reshaping esg': 714207, 'esg the': 280366, 'un pri': 939295, 'pri long': 672092, 'term crisis': 838107, 'crisis plan': 217875, 'plan sustainable': 658233, 'sustainable fund': 829798, 'fund rank': 341483, 'rank high': 696779, 'big data show': 129731, 'data show that': 226413, 'show that covid': 767181, '19 is reshaping': 8036, 'is reshaping esg': 451460, 'reshaping esg the': 714208, 'esg the un': 280367, 'the un pri': 870331, 'un pri long': 939296, 'pri long term': 672093, 'long term crisis': 501679, 'term crisis plan': 838108, 'crisis plan sustainable': 217876, 'plan sustainable fund': 658234, 'sustainable fund rank': 829799, 'fund rank high': 341484, 'another run': 77814, 'singapore just': 771134, 'just this': 470050, 'this lonely': 888700, 'lonely packet': 501302, 'of pork': 588239, 'pork remains': 664823, 'remains do': 709999, 'it nobody': 459837, 'nobody else': 565996, 'else seems': 271872, 'to want': 918323, 'yet another run': 1016000, 'another run on': 77815, 'here in singapore': 393180, 'in singapore just': 427971, 'singapore just this': 771135, 'just this lonely': 470052, 'this lonely packet': 888701, 'lonely packet of': 501303, 'packet of pork': 633710, 'of pork remains': 588242, 'pork remains do': 664824, 'remains do buy': 710000, 'do buy it': 249164, 'buy it nobody': 148858, 'it nobody else': 459838, 'nobody else seems': 565997, 'else seems to': 271873, 'seems to want': 746888, 'to want it': 918324, 'confidence steady': 193952, 'steady in': 799122, 'japan germany': 464733, 'germany and': 346264, 'and france': 63244, 'france day': 330988, 'day change': 227441, 'morning japan': 541327, 'germany france': 346296, 'france economy': 330990, 'consumer confidence steady': 196921, 'confidence steady in': 193953, 'steady in japan': 799123, 'in japan germany': 424372, 'japan germany and': 464734, 'germany and france': 346265, 'and france day': 63245, 'france day to': 330989, 'day to day': 228562, 'to day change': 903953, 'day change of': 227442, 'change of this': 172198, 'of this morning': 592009, 'this morning japan': 888977, 'morning japan germany': 541328, 'japan germany france': 464735, 'germany france economy': 346297, 'after series': 36170, 'employee protest': 274132, 'protest amazon': 685911, 'it rolling': 460801, 'out temperature': 627301, 'temperature check': 837370, 'providing disinfectant': 686969, 'wipe hand': 996286, 'sanitizer standard': 735787, 'standard supply': 793706, 'after series of': 36171, 'series of employee': 751268, 'of employee protest': 583077, 'employee protest amazon': 274133, 'protest amazon said': 685912, 'said it rolling': 731162, 'it rolling out': 460802, 'rolling out temperature': 725682, 'out temperature check': 627302, 'temperature check for': 837371, 'check for worker': 174448, 'for worker and': 327931, 'worker and providing': 1006325, 'and providing disinfectant': 69709, 'providing disinfectant wipe': 686970, 'disinfectant wipe hand': 245812, 'wipe hand sanitizer': 996287, 'hand sanitizer standard': 375596, 'sanitizer standard supply': 735788, 'standard supply and': 793707, 'supply and mask': 824738, 'else so': 271882, 'so embarrassed': 776943, 'embarrassed to': 272440, 'be british': 113910, 'british right': 140587, 'now people': 575526, 'so greedy': 777208, 'embarrassed we': 272442, 'need rationing': 555496, 'rationing now': 697847, 'now lockdownuk': 575245, 'anyone else so': 80291, 'else so embarrassed': 271884, 'so embarrassed to': 776945, 'embarrassed to be': 272441, 'to be british': 901138, 'be british right': 113912, 'british right now': 140588, 'right now people': 722118, 'now people are': 575527, 'are being so': 84924, 'being so greedy': 125817, 'so greedy and': 777209, 'greedy and emptying': 363470, 'and emptying supermarket': 62092, 'supermarket shelf when': 822564, 'shelf when it': 757787, 'when it the': 983652, 'it the elderly': 461529, 'are most at': 88133, 'risk and now': 723375, 'and now have': 67841, 'now have le': 574876, 'have le access': 381272, 'to food so': 906099, 'food so so': 316664, 'so so embarrassed': 778232, 'so embarrassed we': 776946, 'embarrassed we need': 272444, 'we need rationing': 972531, 'need rationing now': 555498, 'rationing now lockdownuk': 697848, 'including food and': 431963, 'and beverage beauty': 58927, 'and health and': 64346, 'health and wellness': 386165, 'and wellness are': 75421, 'important leading': 418863, 'leading expert': 483701, 'in pa': 426404, 'pa have': 632858, 'have issued': 381133, 'issued warning': 456107, 'hoarding during': 399266, 'pandemic buying': 635066, 'store strain': 810418, 'chain amp': 170449, 'amp cause': 53507, 'important leading expert': 418864, 'leading expert in': 483702, 'expert in pa': 291860, 'in pa have': 426406, 'pa have issued': 632859, 'have issued warning': 381136, 'issued warning about': 456108, 'about the danger': 26371, 'danger of food': 225681, 'of food hoarding': 583708, 'food hoarding during': 314826, 'hoarding during the': 399269, '19 pandemic buying': 9279, 'pandemic buying too': 635068, 'too much food': 924921, 'much food at': 544897, 'grocery store strain': 365816, 'store strain the': 810419, 'supply chain amp': 824902, 'chain amp cause': 170450, 'amp cause shortage': 53508, 'cause shortage for': 167729, 'shortage for food': 764961, 'bank amp pantry': 109599, 'visualization': 959642, 'new good': 558815, 'good visualization': 357936, 'visualization for': 959643, 'changing spending': 172800, 'habit in': 372634, 'of check': 581302, 'our article': 622120, 'here well': 393794, 'new good visualization': 558816, 'good visualization for': 357937, 'visualization for changing': 959644, 'for changing spending': 320017, 'changing spending habit': 172801, 'spending habit in': 788836, 'habit in the': 372639, 'age of check': 37862, 'of check out': 581303, 'out our article': 626966, 'our article on': 622121, 'article on it': 94408, 'on it here': 601667, 'it here well': 458576, 'civilwar': 179617, 'credit dry': 216380, 'dry up': 261309, 'employer no': 274529, 'layoff demand': 482684, 'demand fall': 235317, 'fall consumption': 296880, 'consumption end': 199869, 'end traumatic': 276016, 'damage civilwar': 225188, 'civilwar dowjones': 179618, 'sp500 usa': 787034, 'term credit dry': 838105, 'credit dry up': 216381, 'dry up employer': 261311, 'up employer no': 944790, 'employer no money': 274530, 'bankruptcy layoff demand': 110534, 'layoff demand fall': 482685, 'demand fall consumption': 235318, 'fall consumption end': 296881, 'consumption end traumatic': 199870, 'end traumatic damage': 276017, 'traumatic damage civilwar': 930216, 'damage civilwar dowjones': 225189, 'civilwar dowjones sp500': 179619, 'dowjones sp500 usa': 256355, 'sp500 usa trump': 787035, 'usa trump sick': 948780, 'unwillingness': 944083, 'shown is': 767598, 'the unwillingness': 870481, 'unwillingness to': 944084, 'and minimize': 67048, 'contagion going': 200407, 'work doesn': 1005053, 'doesn count': 251740, 'count since': 210150, 'family 19': 297544, 'only thing the': 611318, 'thing the coronavirus': 884830, 'coronavirus ha shown': 206035, 'ha shown is': 371918, 'shown is how': 767599, 'is how selfish': 448596, 'how selfish people': 408638, 'people are all': 646921, 'are all this': 84364, 'this panic and': 889456, 'panic and bulk': 637299, 'and bulk buying': 59252, 'bulk buying the': 142284, 'buying the unwillingness': 151179, 'the unwillingness to': 870482, 'unwillingness to stop': 944085, 'out and minimize': 625678, 'and minimize the': 67049, 'of contagion going': 581810, 'contagion going to': 200408, 'to work doesn': 918710, 'work doesn count': 1005054, 'doesn count since': 251741, 'count since people': 210151, 'since people still': 770784, 'people still need': 649600, 'table for their': 831470, 'their family 19': 873243, 'saddownsomewhere': 729314, 'outchea': 628852, 'folk keep': 312201, 'keep running': 471864, 'running back': 727931, 'and forth': 63214, 'forth to': 329797, 'refrigerator in': 706814, 'house saddownsomewhere': 406538, 'saddownsomewhere got': 729315, 'got all': 358389, 'all acting': 41939, 'acting real': 29894, 'real crazy': 701085, 'crazy outchea': 215376, 'folk keep running': 312202, 'keep running back': 471866, 'running back and': 727932, 'back and forth': 106855, 'and forth to': 63215, 'forth to the': 329798, 'store like they': 808734, 'they re running': 883115, 're running to': 699409, 'to the refrigerator': 917013, 'the refrigerator in': 865410, 'refrigerator in their': 706817, 'in their house': 429749, 'their house saddownsomewhere': 873609, 'house saddownsomewhere got': 406539, 'saddownsomewhere got all': 729316, 'got all acting': 358390, 'all acting real': 41940, 'acting real crazy': 29895, 'real crazy outchea': 701086, 'covid alert': 214119, 'alert pennsylvania': 41483, 'say global': 738680, 'covid alert pennsylvania': 214122, 'alert pennsylvania grocery': 41484, 'owner say global': 632563, 'say global pandemic': 738683, 'global pandemic news': 352098, '362': 18039, 'is losing': 449457, 'mind because': 532623, 'fall down': 296893, 'down stair': 257202, 'stair kill': 793292, 'kill 00': 474318, 'uk seasonal': 938697, 'kill 17': 474320, '17 00': 4295, 'people year': 650557, 'year or': 1014893, 'or 362': 614197, '362 week': 18040, 'uk coronavirus': 938278, 'currently at': 221470, '55 keep': 20385, 'up stoppanicbuying': 946078, 'so everyone is': 776977, 'everyone is losing': 287086, 'is losing their': 449460, 'losing their mind': 503599, 'their mind because': 873974, 'mind because of': 532624, 'because of fall': 119340, 'of fall down': 583387, 'fall down stair': 296894, 'down stair kill': 257203, 'stair kill 00': 793293, 'kill 00 in': 474319, '00 in uk': 272, 'in uk seasonal': 430396, 'uk seasonal flu': 938698, 'flu kill 17': 311431, 'kill 17 00': 474321, '17 00 people': 4299, '00 people year': 425, 'people year or': 650558, 'year or 362': 1014894, 'or 362 week': 614198, '362 week in': 18041, 'the uk coronavirus': 870205, 'uk coronavirus is': 938279, 'coronavirus is currently': 206161, 'is currently at': 446985, 'currently at 55': 221473, 'at 55 keep': 97692, '55 keep your': 20386, 'keep your head': 472269, 'your head up': 1024265, 'head up stoppanicbuying': 385856, 'up stoppanicbuying stopstockpiling': 946079, 'day4': 228875, 'day4 sharing': 228876, 'sharing hope': 755534, 'day4 sharing hope': 228877, 'sharing hope it': 755535, 'hope it make': 403519, 'make you in': 510739, 'you in these': 1019323, 'stop abusing': 804418, 'abusing checkout': 27709, 'operator they': 613406, 'they did': 881914, 'not set': 571537, 'on purchase': 603010, 'purchase your': 689740, 'stupidity did': 815528, 'did that': 240837, 'that stoppanicbuying': 846510, 'please stop abusing': 660566, 'stop abusing checkout': 804421, 'abusing checkout operator': 27710, 'checkout operator they': 174973, 'operator they did': 613407, 'they did not': 881920, 'did not set': 240733, 'not set the': 571540, 'set the limit': 753486, 'the limit on': 859388, 'limit on purchase': 492423, 'on purchase your': 603015, 'purchase your own': 689742, 'your own stupidity': 1025163, 'own stupidity did': 632244, 'stupidity did that': 815529, 'did that stoppanicbuying': 240840, 'capitalise': 162702, 'carnage': 164777, 'really for': 702206, 'this tobacco': 890748, 'tobacco season': 919083, 'season the': 743446, 'induced slowdown': 435491, 'economy may': 268064, 'toll not': 923855, 'mention the': 528794, 'the tiger': 869545, 'tiger that': 895807, 'will capitalise': 992878, 'capitalise on': 162703, 'the carnage': 850429, 'carnage will': 164786, 'be not': 116124, 'while at this': 986628, 'at this really': 101253, 'this really for': 889821, 'really for price': 702207, 'for price this': 324731, 'price this tobacco': 676924, 'this tobacco season': 890749, 'tobacco season the': 919084, 'season the covid': 743447, '19 induced slowdown': 7835, 'induced slowdown in': 435492, 'global economy may': 351903, 'economy may take': 268066, 'may take it': 521558, 'it toll not': 461785, 'toll not to': 923856, 'to mention the': 910094, 'mention the tiger': 528798, 'the tiger that': 869546, 'tiger that will': 895808, 'that will capitalise': 847561, 'will capitalise on': 992879, 'capitalise on it': 162704, 'on it just': 601672, 'it just hope': 459226, 'hope the carnage': 403667, 'the carnage will': 850432, 'carnage will be': 164787, 'will be not': 992576, 'be not that': 116126, 'not that bad': 571965, 'sunflower': 818368, 'nine': 563273, 'tbilisi': 835259, 'changed are': 172437, 'are rice': 89683, 'pasta sunflower': 643818, 'sunflower oil': 818371, 'oil flour': 596799, 'flour sugar': 311164, 'sugar wheat': 817483, 'wheat buckwheat': 982976, 'buckwheat bean': 141705, 'bean milk': 118337, 'powder and': 667531, 'it product': 460497, 'product georgian': 681221, 'georgian pm': 346058, 'pm spokesperson': 661993, 'spokesperson price': 789793, 'for nine': 323881, 'nine product': 563295, 'increase tbilisi': 433094, 'product price which': 681550, 'price which will': 677515, 'which will not': 986499, 'not be changed': 568363, 'be changed are': 114050, 'changed are rice': 172438, 'are rice pasta': 89684, 'rice pasta sunflower': 721105, 'pasta sunflower oil': 643819, 'sunflower oil flour': 818372, 'oil flour sugar': 596800, 'flour sugar wheat': 311167, 'sugar wheat buckwheat': 817484, 'wheat buckwheat bean': 982977, 'buckwheat bean milk': 141706, 'bean milk powder': 118338, 'milk powder and': 531773, 'powder and it': 667532, 'and it product': 65572, 'it product georgian': 460503, 'product georgian pm': 681222, 'georgian pm spokesperson': 346059, 'pm spokesperson price': 661994, 'spokesperson price for': 789794, 'price for nine': 674013, 'for nine product': 323882, 'nine product will': 563296, 'product will not': 681862, 'not increase tbilisi': 570124, 'info should': 437581, 'should government': 766052, 'government be': 359925, 'public reaction': 688260, 'midnight lockdown': 530749, 'lockdown speech': 499944, 'speech ghana': 788396, 'ghana doesn': 349564, 'think so': 885547, 'so mass': 777725, 'mass migration': 519812, 'migration and': 531244, 'and skyrocketing': 71730, 'skyrocketing price': 773447, 'are rocking': 89735, 'info should government': 437582, 'should government be': 766053, 'government be prepared': 359926, 'the public reaction': 864850, 'public reaction to': 688262, 'reaction to midnight': 700218, 'to midnight lockdown': 910120, 'midnight lockdown speech': 530750, 'lockdown speech ghana': 499945, 'speech ghana doesn': 788397, 'ghana doesn seem': 349565, 'seem to think': 746700, 'to think so': 917383, 'think so mass': 885548, 'so mass migration': 777726, 'mass migration and': 519813, 'migration and skyrocketing': 531245, 'and skyrocketing price': 71732, 'skyrocketing price are': 773449, 'price are rocking': 672725, 'are rocking the': 89736, 'rocking the country': 724982, 'escalated': 280262, 'fell on': 303216, 'monday government': 536294, 'government escalated': 360068, 'escalated lockdown': 280266, 'global outbreak': 352060, 'outbreak that': 628696, 'ha slashed': 371966, 'slashed the': 773648, 'demand outlook': 235993, 'oil oott': 596987, 'price fell on': 673852, 'fell on monday': 303218, 'on monday government': 602167, 'monday government escalated': 536295, 'government escalated lockdown': 360069, 'escalated lockdown to': 280267, 'lockdown to curb': 500055, 'the global outbreak': 856315, 'global outbreak that': 352062, 'outbreak that ha': 628697, 'that ha slashed': 844136, 'ha slashed the': 371970, 'slashed the demand': 773649, 'the demand outlook': 853104, 'demand outlook for': 235996, 'outlook for oil': 629155, 'for oil oott': 324039, 'what shopper': 982173, 'fastest growing': 300146, 'declining commerce': 231464, 'commerce category': 188526, 'category since': 167215, 'into complete': 442471, 'complete overdrive': 192129, 'overdrive even': 631186, 'largest retailer': 480012, 'retailer on': 719261, 'planet are': 658395, 'what shopper buying': 982175, 'during the fastest': 263125, 'the fastest growing': 854971, 'fastest growing and': 300148, 'growing and declining': 367122, 'and declining commerce': 61022, 'declining commerce category': 231465, 'commerce category since': 188528, 'category since the': 167216, 'shopping ha been': 762823, 'ha been catapulted': 369742, 'catapulted into complete': 166930, 'into complete overdrive': 442473, 'complete overdrive even': 192130, 'overdrive even the': 631187, 'even the largest': 284660, 'the largest retailer': 858974, 'largest retailer on': 480013, 'retailer on the': 719263, 'the planet are': 863800, 'planet are struggling': 658396, 'florist': 311044, 'flour were': 311185, 'empty everything': 274860, 'everything else': 287765, 'else wa': 271958, 'fine bought': 307608, 'bought something': 136719, 'bakery and': 108834, 'some flower': 782845, 'flower from': 311293, 'the florist': 855437, 'florist do': 311047, 'doing financially': 252402, 'paper or paper': 640555, 'or paper towel': 616499, 'towel the pasta': 927390, 'the pasta egg': 863375, 'pasta egg and': 643712, 'egg and flour': 269765, 'and flour were': 62991, 'flour were almost': 311186, 'almost empty everything': 46605, 'empty everything else': 274861, 'everything else wa': 287778, 'else wa fine': 271959, 'wa fine bought': 962128, 'fine bought something': 307609, 'bought something from': 136720, 'from the bakery': 337607, 'the bakery and': 849200, 'bakery and some': 108836, 'and some flower': 71961, 'some flower from': 782846, 'flower from the': 311294, 'from the florist': 337703, 'the florist do': 855438, 'florist do not': 311048, 'are doing financially': 85898, 'this innovative': 888121, 'innovative pilot': 438928, 'pilot program': 656741, 'program snap': 683295, 'snap household': 776095, 'household can': 406751, 'purchase food': 689448, 'pay using': 645211, 'their ebt': 873097, 'card at': 163463, 'at pickup': 100119, 'pickup among': 655922, 'option this': 614111, 'this reduces': 889845, 'reduces shopping': 706254, 'shopping risk': 763777, 'help fulfill': 389781, 'fulfill consumer': 340401, 'keep florida': 471508, 'florida grown': 310944, 'grown product': 367292, 'product moving': 681421, 'family the': 298296, 'through this innovative': 894823, 'this innovative pilot': 888123, 'innovative pilot program': 438929, 'pilot program snap': 656742, 'program snap household': 683296, 'snap household can': 776096, 'household can purchase': 406753, 'can purchase food': 159342, 'purchase food online': 689451, 'food online and': 315617, 'online and pay': 607836, 'and pay using': 68806, 'pay using their': 645212, 'using their ebt': 950724, 'their ebt card': 873098, 'ebt card at': 266579, 'card at pickup': 163466, 'at pickup among': 100120, 'pickup among other': 655923, 'among other option': 53035, 'other option this': 620620, 'option this reduces': 614113, 'this reduces shopping': 889847, 'reduces shopping risk': 706255, 'shopping risk from': 763778, '19 help fulfill': 7497, 'help fulfill consumer': 389782, 'fulfill consumer demand': 340402, 'demand and keep': 234979, 'and keep florida': 65760, 'keep florida grown': 471509, 'florida grown product': 310946, 'grown product moving': 367293, 'product moving to': 681422, 'moving to family': 544206, 'to family the': 905661, 'family the florida': 298298, 'homo': 403024, 'nosleepgang': 567962, 'zombielife': 1027743, 'teatrees': 836021, 'product cant': 681047, 'cant stop': 162336, 'stop touching': 805232, 'hand no': 375094, 'no homo': 564440, 'homo sanitizer': 403025, 'sanitizer natural': 735393, 'natural clean': 552812, 'disinfectant disinfect': 245643, 'disinfect quarantinelife': 245567, 'quarantine nosleepgang': 692389, 'nosleepgang zombielife': 567963, 'zombielife alcohol': 1027744, 'alcohol orange': 41065, 'orange lemon': 617926, 'lemon teatrees': 486195, 'product cant stop': 681048, 'cant stop touching': 162337, 'stop touching my': 805233, 'touching my hand': 926701, 'my hand no': 548608, 'hand no homo': 375095, 'no homo sanitizer': 564441, 'homo sanitizer natural': 403026, 'sanitizer natural clean': 735394, 'natural clean disinfectant': 552813, 'clean disinfectant disinfect': 180501, 'disinfectant disinfect quarantinelife': 245644, 'disinfect quarantinelife quarantine': 245568, 'quarantinelife quarantine nosleepgang': 692990, 'quarantine nosleepgang zombielife': 692390, 'nosleepgang zombielife alcohol': 567964, 'zombielife alcohol orange': 1027745, 'alcohol orange lemon': 41066, 'orange lemon teatrees': 617927, 'life happens': 488713, 'happens is': 377484, 'providing one': 687058, 'one free': 606320, 'happens pro': 377496, 'pro our': 679122, 'consumer education': 197319, 'education platform': 268855, 'platform for': 658963, 'individual insurance': 435204, 'insurance agent': 440664, 'agent client': 38158, 'your effort': 1023623, 'response to life': 715864, 'to life happens': 909250, 'life happens is': 488714, 'happens is providing': 377485, 'is providing one': 451121, 'providing one free': 687059, 'one free month': 606321, 'free month of': 331987, 'month of life': 537901, 'of life happens': 585824, 'life happens pro': 488715, 'happens pro our': 377497, 'pro our digital': 679123, 'our digital consumer': 622752, 'digital consumer education': 242535, 'consumer education platform': 197322, 'education platform for': 268856, 'platform for individual': 658964, 'for individual insurance': 322551, 'individual insurance agent': 435205, 'insurance agent client': 440665, 'agent client need': 38159, 'client need to': 182074, 'need to hear': 555959, 'to hear from': 907404, 'hear from you': 387926, 'from you now': 338466, 'ever we hope': 285591, 'this help support': 887899, 'support your effort': 827013, 'send emergency': 749850, 'emergency cash': 272623, 'cash payment': 166298, 'payment of': 645683, 'america each': 51501, 'each month': 264121, 'month for': 537725, 'to send emergency': 914209, 'send emergency cash': 749851, 'emergency cash payment': 272624, 'cash payment of': 166300, 'payment of 00': 645684, 'of 00 to': 579296, '00 to every': 541, 'to every person': 905310, 'every person in': 286098, 'person in america': 652473, 'in america each': 420220, 'america each month': 51502, 'each month for': 264122, 'month for the': 537731, 'duration of this': 262371, 'coronavirus robocalls': 206683, 'robocalls prey': 724771, 'prey on': 672069, 'coronavirus robocalls prey': 206684, 'robocalls prey on': 724772, 'prey on consumer': 672070, 'retweetplease': 720118, '2019cov': 14054, 'viruscorona': 959090, 'protection face': 685431, 'in regular': 427355, 'price retweetplease': 676211, 'retweetplease to': 720119, 'help 2019cov': 389286, '2019cov n95masks': 14057, 'n95masks n95': 551264, 'n95 facemask': 551178, 'facemask health': 295081, 'health newspicks': 386669, 'newspicks viruscorona': 561115, 'viruscorona trump': 959097, 'trump wuhan': 933991, 'wuhan healthy': 1013497, 'protection face mask': 685432, 'face mask online': 294571, 'online in regular': 608400, 'in regular price': 427359, 'regular price retweetplease': 707845, 'price retweetplease to': 676212, 'retweetplease to help': 720120, 'to help 2019cov': 907439, 'help 2019cov n95masks': 389288, '2019cov n95masks n95': 14058, 'n95masks n95 facemask': 551265, 'n95 facemask health': 551179, 'facemask health newspicks': 295082, 'health newspicks viruscorona': 386670, 'newspicks viruscorona trump': 561116, 'viruscorona trump wuhan': 959098, 'trump wuhan healthy': 933992, 'my 80': 547192, 'slot either': 774171, 'either can': 270269, 'to prioritise': 912140, 'prioritise delivery': 678386, 'vulnerable self': 961152, 'isolating family': 455088, 'family panicbuying': 298148, 'my 80 year': 547194, 'year old parent': 1014860, 'old parent can': 598404, 'parent can leave': 641598, 'food but can': 313811, 'delivery slot either': 234520, 'slot either can': 774172, 'either can you': 270271, 'can you find': 160300, 'you find way': 1018582, 'way to prioritise': 970069, 'to prioritise delivery': 912141, 'prioritise delivery slot': 678387, 'elderly vulnerable self': 270934, 'vulnerable self isolating': 961153, 'self isolating family': 747722, 'isolating family panicbuying': 455089, 'uber for': 937816, 'business platform': 144229, 'platform designed': 658955, 'designed for': 238335, 'corporate customer': 207256, 'delivery eats': 233973, 'eats product': 266384, '20 country': 13015, 'uber for business': 937817, 'for business platform': 319841, 'business platform designed': 144230, 'platform designed for': 658956, 'designed for corporate': 238336, 'for corporate customer': 320403, 'corporate customer is': 207257, 'customer is expanding': 222537, 'expanding it food': 290506, 'it food delivery': 458053, 'food delivery eats': 314122, 'delivery eats product': 233974, 'eats product to': 266385, 'product to more': 681754, 'than 20 country': 840191, '20 country this': 13016, 'country this year': 211149, 'this year in': 891580, 'year in response': 1014654, 'response to surge': 715885, 'in demand more': 422141, 'demand more employee': 235886, 'more employee work': 539127, 'employee work from': 274460, 'joeledley': 466468, 'cpfc': 214579, 'supermarket joeledley': 821210, 'joeledley cpfc': 466469, 'when you pick': 984590, 'you pick up': 1020330, 'up the last': 946188, 'the supermarket joeledley': 868659, 'supermarket joeledley cpfc': 821211, 'removal': 710796, 'understand cole': 940610, 'cole staff': 185876, 'are scanning': 89836, 'scanning your': 740749, 'grocery why': 366143, 'why exactly': 990988, 'exactly can': 288729, 'they pack': 882860, 'pack them': 633168, 'you their': 1021619, 'haven dropped': 383795, 'dropped due': 260562, 'to removal': 913211, 'removal of': 710801, 'service coronaaustralia': 752256, 'don understand cole': 254004, 'understand cole staff': 940611, 'cole staff are': 185877, 'staff are scanning': 792204, 'are scanning your': 89839, 'scanning your grocery': 740750, 'your grocery why': 1024139, 'grocery why exactly': 366145, 'why exactly can': 990989, 'exactly can they': 288730, 'can they pack': 159978, 'they pack them': 882862, 'pack them in': 633169, 'them in bag': 875894, 'in bag for': 420662, 'bag for you': 108290, 'for you their': 328091, 'you their price': 1021620, 'their price haven': 874401, 'price haven dropped': 674475, 'haven dropped due': 383797, 'dropped due to': 260563, 'due to removal': 261924, 'to removal of': 913212, 'removal of this': 710802, 'of this service': 592034, 'this service coronaaustralia': 890051, 'deepak': 231929, 'parekh': 641555, 'leash': 484307, 'shock say': 759504, 'say bank': 738447, 'bank chairman': 109722, 'chairman deepak': 171332, 'deepak parekh': 231932, 'parekh he': 641556, 'warns price': 967282, 'may fall': 521176, '20 leaving': 13128, 'company bankrupt': 190486, 'bankrupt bank': 110489, 'bank too': 110265, 'too may': 924896, 'on tighter': 604694, 'tighter leash': 895867, 'leash post': 484310, 'may take month': 521560, 'take month for': 832336, 'economy to recover': 268293, 'from the 19': 337582, 'the 19 shock': 847930, '19 shock say': 10471, 'shock say bank': 759505, 'say bank chairman': 738448, 'bank chairman deepak': 109723, 'chairman deepak parekh': 171333, 'deepak parekh he': 231933, 'parekh he warns': 641557, 'he warns price': 385647, 'warns price may': 967283, 'price may fall': 675190, 'may fall by': 521178, 'fall by at': 296869, 'by at least': 151902, 'least 20 leaving': 484339, '20 leaving many': 13129, 'leaving many company': 485103, 'many company bankrupt': 513916, 'company bankrupt bank': 190487, 'bankrupt bank too': 110491, 'bank too may': 110266, 'too may be': 924897, 'be on tighter': 116214, 'on tighter leash': 604695, 'tighter leash post': 895869, 'leash post the': 484311, 'cordantlovespeople': 203498, 'feedbackfriday': 302442, 'say big': 738459, 'amazing cordantlovespeople': 50664, 'cordantlovespeople gratitude': 203499, 'gratitude feedbackfriday': 362368, 'today we love': 920477, 'love to say': 504854, 'to say big': 913807, 'say big thank': 738460, 'the supermarket hero': 868630, 'supermarket hero who': 820749, 'hero who are': 394166, 'are working so': 91717, 'keep our supply': 471756, 'chain running and': 171065, 'running and stock': 727906, 'and stock on': 72411, 'stock on shelf': 802562, 'on shelf you': 603415, 'shelf you all': 757844, 'are amazing cordantlovespeople': 84513, 'amazing cordantlovespeople gratitude': 50665, 'cordantlovespeople gratitude feedbackfriday': 203500, 'profound': 683148, 'having profound': 384235, 'profound impact': 683158, 'on everyday': 600630, 'everyday life': 286586, 've developed': 953044, 'developed set': 239731, 'of tracking': 592391, 'tracking and': 928319, 'and tool': 74280, 'tool that': 925441, 'used by': 949874, 'is having profound': 448334, 'having profound impact': 384238, 'profound impact on': 683159, 'impact on everyday': 417849, 'on everyday life': 600631, 'everyday life at': 286587, 'life at we': 488510, 'at we ve': 101505, 'we ve developed': 973653, 've developed set': 953045, 'developed set of': 239732, 'set of tracking': 753447, 'of tracking and': 592392, 'tracking and tool': 928320, 'and tool that': 74282, 'tool that can': 925442, 'be used by': 117913, 'used by business': 949876, 'by business to': 152029, 'to understand consumer': 917901, 'understand consumer and': 940618, 'consumer and activity': 196197, 'uniqlo': 941964, 'eyeing': 294140, 'of circuit': 581422, 'circuit breaker': 178634, 'breaker semi': 138869, 'semi lockdown': 749612, 'all uniqlo': 45316, 'uniqlo physical': 941965, 'short which': 764790, 'which mom': 986160, 'mom ha': 535738, 'been eyeing': 121123, 'eyeing is': 294143, 'so bought': 776640, 'didn expect': 241055, 'quickly hope': 694543, 'day of circuit': 228059, 'of circuit breaker': 581423, 'circuit breaker semi': 178637, 'breaker semi lockdown': 138870, 'semi lockdown all': 749613, 'lockdown all uniqlo': 499120, 'all uniqlo physical': 45317, 'uniqlo physical store': 941966, 'physical store are': 655463, 'are closed but': 85333, 'closed but their': 183030, 'but their online': 147435, 'is open the': 450581, 'open the short': 612553, 'the short which': 867086, 'short which mom': 764791, 'which mom ha': 986161, 'mom ha been': 535739, 'ha been eyeing': 369806, 'been eyeing is': 121124, 'eyeing is on': 294144, 'is on sale': 450481, 'on sale so': 603274, 'sale so bought': 732532, 'so bought it': 776641, 'bought it didn': 136612, 'it didn expect': 457538, 'didn expect to': 241057, 'expect to start': 290777, 'to start shopping': 915224, 'online so quickly': 609393, 'so quickly hope': 778104, 'quickly hope this': 694544, 'hope this covid': 403716, '19 will end': 12089, 'will end soon': 993307, 'downtime': 257731, 'warwick': 967397, 'sandown': 733709, 'say with': 739496, '19 downtime': 6644, 'downtime am': 257732, 'am back': 49918, 'back doing': 106955, 'doing rating': 252618, 'rating and': 697585, 'price warwick': 677385, 'warwick farm': 967398, 'farm sandown': 299169, 'sandown now': 733710, 'now free': 574741, 'today nsw': 919955, 'glad to say': 351531, 'to say with': 913856, 'say with all': 739497, 'all the covid': 44702, 'covid 19 downtime': 212981, '19 downtime am': 6645, 'downtime am back': 257733, 'am back doing': 49919, 'back doing rating': 106956, 'doing rating and': 252619, 'rating and price': 697586, 'and price warwick': 69486, 'price warwick farm': 677386, 'warwick farm sandown': 967399, 'farm sandown now': 299170, 'sandown now free': 733711, 'now free online': 574743, 'free online today': 332030, 'online today nsw': 609605, 'student resource': 814766, 'resource during': 714759, 'student resource during': 814767, 'resource during covid': 714760, 'slack': 773468, 'cringe': 216919, '100b': 2145, 'writte': 1012947, 'portfolio other': 665001, 'than some': 841151, 'some enterprise': 782753, 'enterprise slack': 278461, 'slack isn': 773471, 'isn zoom': 454771, 'zoom either': 1027799, 'either few': 270298, 'few consumer': 303754, 'some healthtech': 783036, 'healthtech rest': 387478, 'rest seems': 716217, 'be net': 116067, 'net negative': 557557, 'negative in': 556795, 'would cringe': 1011745, 'cringe with': 216920, 'this portfolio': 889666, 'portfolio public': 665007, 'public market': 688156, 'market investor': 516608, 'investor already': 444095, 'the 100b': 847862, '100b fund': 2146, 'fund writte': 341546, 'portfolio other than': 665002, 'other than some': 621081, 'than some enterprise': 841152, 'some enterprise slack': 782754, 'enterprise slack isn': 278462, 'slack isn zoom': 773472, 'isn zoom either': 454772, 'zoom either few': 1027800, 'either few consumer': 270299, 'few consumer and': 303755, 'consumer and some': 196246, 'and some healthtech': 71966, 'some healthtech rest': 783037, 'healthtech rest seems': 387479, 'rest seems to': 716218, 'to be net': 901404, 'be net negative': 116068, 'net negative in': 557558, 'negative in would': 556796, 'in would cringe': 430995, 'would cringe with': 1011746, 'cringe with this': 216921, 'with this portfolio': 1001718, 'this portfolio public': 889667, 'portfolio public market': 665008, 'public market investor': 688158, 'market investor already': 516609, 'investor already have': 444096, 'have the 100b': 382956, 'the 100b fund': 847863, '100b fund writte': 2147, 'march because': 515292, 'coronavirus oil': 206333, 'oil slump': 597435, 'slump un': 774715, 'un stayathomesavelives': 939299, 'food price fall': 315939, 'price fall sharply': 673796, 'in march because': 425084, 'march because of': 515293, 'because of coronavirus': 119324, 'of coronavirus oil': 581951, 'coronavirus oil slump': 206335, 'oil slump un': 597438, 'slump un stayathomesavelives': 774716, 'thankyoudoctors': 842367, 'store attendant': 806603, 'attendant thank': 102383, 'doing be': 252305, 'safe thankyoudoctors': 730014, 'grocery store attendant': 365224, 'store attendant thank': 806608, 'attendant thank you': 102384, 'for everything that': 321257, 'everything that you': 288034, 'are doing be': 85889, 'doing be safe': 252306, 'be safe thankyoudoctors': 116970, 'my exclusive': 548120, 'exclusive investigation': 289676, 'investigation about': 443859, 'about ebay': 25148, 'ebay seller': 266484, 'seller hiking': 749030, 'up baby': 944451, 'to insane': 908406, 'amid ha': 52496, 'prompted uk': 683951, 'publicly respond': 688595, 'respond amp': 715284, 'amp seller': 54458, 'to withdraw': 918647, 'withdraw their': 1002259, 'offer thanks': 594822, 'thanks mum': 842145, 'mum amp': 545868, 'amp others': 54251, 'speaking out': 787766, 'my exclusive investigation': 548121, 'exclusive investigation about': 289677, 'investigation about ebay': 443860, 'about ebay seller': 25149, 'ebay seller hiking': 266485, 'seller hiking up': 749031, 'hiking up baby': 396426, 'up baby milk': 944452, 'baby milk price': 106667, 'milk price to': 531785, 'price to insane': 677005, 'to insane price': 908407, 'insane price amid': 439060, 'price amid ha': 672313, 'amid ha prompted': 52497, 'ha prompted uk': 371558, 'prompted uk to': 683952, 'uk to publicly': 938827, 'to publicly respond': 912481, 'publicly respond amp': 688596, 'respond amp seller': 715285, 'amp seller to': 54459, 'seller to withdraw': 749102, 'to withdraw their': 918648, 'withdraw their offer': 1002260, 'their offer thanks': 874085, 'offer thanks mum': 594823, 'thanks mum amp': 842146, 'mum amp others': 545870, 'amp others for': 54252, 'others for speaking': 621413, 'for speaking out': 325805, 'our appetite': 622090, 'meat ha': 525605, 'change but': 171961, 'change other': 172212, 'other activity': 619799, 'activity that': 30504, 'more forest': 539277, 'forest land': 329081, 'land and': 479254, 'are threat': 91067, 'our survival': 625059, 'survival otherwise': 829070, 'otherwise our': 621857, 'production system': 682217, 'kill sooner': 474495, 'our appetite for': 622091, 'appetite for meat': 82234, 'for meat ha': 323360, 'meat ha to': 525608, 'ha to change': 372291, 'to change but': 902593, 'change but we': 171964, 'to change other': 902612, 'change other activity': 172213, 'other activity that': 619800, 'activity that demand': 30505, 'that demand more': 843495, 'demand more and': 235884, 'and more forest': 67171, 'more forest land': 539278, 'forest land and': 329082, 'land and which': 479255, 'and which are': 75554, 'which are threat': 985699, 'are threat to': 91068, 'threat to our': 893739, 'to our survival': 911247, 'our survival otherwise': 625060, 'survival otherwise our': 829071, 'otherwise our food': 621858, 'our food production': 623122, 'food production system': 316050, 'production system will': 682219, 'system will kill': 831383, 'will kill sooner': 993923, 'kill sooner or': 474496, 'shibley': 758121, 'worthy': 1011475, 'unwilling': 944080, 'shibley and': 758122, 'and point': 69147, 'point worthy': 662720, 'worthy of': 1011478, 'of note': 587086, 'note given': 572732, 'given no': 351061, 'available carers': 104286, 'carers have': 164587, 'doing shopping': 252649, 'client and': 181989, 'been unwilling': 122298, 'unwilling to': 944081, 'around their': 93572, 'their long': 873882, 'long working': 501864, 'shibley and point': 758123, 'and point worthy': 69148, 'point worthy of': 662721, 'worthy of note': 1011479, 'of note given': 587087, 'note given no': 572733, 'given no online': 351062, 'slot available carers': 774133, 'available carers have': 104287, 'carers have been': 164588, 'been doing shopping': 121023, 'doing shopping for': 252650, 'for client and': 320126, 'client and the': 181994, 'the supermarket have': 868624, 'have been unwilling': 379731, 'been unwilling to': 122299, 'unwilling to work': 944082, 'work around their': 1004845, 'around their long': 93575, 'their long working': 873885, 'long working and': 501865, 'working and some': 1008509, 'them are working': 875423, 'are working day': 91691, 'working day week': 1008586, 'dispatch': 246101, 'societyandculture': 781373, 'columbusohio': 186896, 'netflixparty': 557645, 'quoted in': 695015, 'the columbus': 851164, 'columbus dispatch': 186894, 'dispatch talking': 246102, 'socialdistancing societyandculture': 780713, 'societyandculture columbusohio': 781374, 'columbusohio frozen': 186897, 'frozen netflixparty': 338997, 'netflixparty consumerbehavior': 557646, 'quoted in the': 695018, 'in the columbus': 429080, 'the columbus dispatch': 851165, 'columbus dispatch talking': 186895, 'dispatch talking about': 246103, 'talking about consumer': 833960, 'about consumer behavior': 24997, 'covid 19 socialdistancing': 213828, '19 socialdistancing societyandculture': 10678, 'socialdistancing societyandculture columbusohio': 780714, 'societyandculture columbusohio frozen': 781375, 'columbusohio frozen netflixparty': 186898, 'frozen netflixparty consumerbehavior': 338998, 'jihadist': 465475, 'suicide': 817730, 'bemoaning': 126810, 'jihadist part': 465476, 'time village': 898194, 'village idiot': 957350, 'time suicide': 897781, 'suicide cult': 817731, 'cult member': 220257, 'member bemoaning': 528034, 'bemoaning food': 126811, 'panic would': 638804, 'jihadist part time': 465477, 'part time village': 642456, 'time village idiot': 898195, 'village idiot and': 957351, 'idiot and full': 413448, 'and full time': 63406, 'full time suicide': 340947, 'time suicide cult': 897782, 'suicide cult member': 817732, 'cult member bemoaning': 220258, 'member bemoaning food': 528035, 'bemoaning food shortage': 126812, 'food shortage caused': 316563, 'caused by just': 167847, 'by just imagine': 152974, 'just imagine what': 469021, 'imagine what the': 416822, 'what the panic': 982348, 'the panic would': 863231, 'panic would be': 638805, 'tuition': 935250, 'my school': 549999, 'school is': 741835, 'caused lot': 167905, 'family financial': 297794, 'financial trouble': 306621, 'trouble and': 932587, 're sympathetic': 699645, 'sympathetic to': 830782, 'your financial': 1023871, 'financial need': 306522, 'care bc': 163860, 'bc tuition': 113303, 'tuition price': 935253, 'price staying': 676637, 'staying the': 798715, 'my school is': 550001, 'school is like': 741836, 'is like we': 449340, 'like we know': 491775, 'that this covid': 846987, 'ha caused lot': 370086, 'caused lot of': 167906, 'lot of family': 504188, 'of family financial': 583404, 'family financial trouble': 297795, 'financial trouble and': 306622, 'trouble and we': 932588, 'we re sympathetic': 972981, 're sympathetic to': 699646, 'sympathetic to your': 830783, 'to your financial': 918982, 'your financial need': 1023873, 'financial need but': 306523, 'need but we': 554576, 'but we really': 147759, 'we really don': 973023, 'really don care': 702139, 'don care bc': 253420, 'care bc tuition': 163862, 'bc tuition price': 113304, 'tuition price staying': 935254, 'price staying the': 676639, 'staying the same': 798717, 'hope after': 403408, 'these 10': 879562, '10 new': 1555, 'behavior here': 124061, 'stay think': 797349, 'is onto': 450553, 'onto something': 611674, 'something just': 784958, 'hope after the': 403409, 'pandemic are these': 634951, 'are these 10': 90969, 'these 10 new': 879563, '10 new consumer': 1556, 'new consumer behavior': 558517, 'consumer behavior here': 196483, 'behavior here to': 124064, 'to stay think': 915324, 'stay think is': 797350, 'think is onto': 885314, 'is onto something': 450554, 'onto something just': 611675, 'something just remember': 784959, 'confidence and': 193814, 'chain consumer confidence': 170615, 'consumer confidence and': 196885, 'confidence and way': 193828, 'how grocery': 407939, 'employee feel': 273844, 'feel when': 302932, 'truck brings': 932737, 'brings toiletpaper': 140284, 'is how grocery': 448579, 'how grocery store': 407940, 'store employee feel': 807488, 'employee feel when': 273845, 'feel when the': 302934, 'when the truck': 984209, 'the truck brings': 870031, 'truck brings toiletpaper': 932738, 'brings toiletpaper ellendegeneres': 140285, 'expatriate': 290591, 'thorough': 891744, 'the ticket': 869535, 'of expatriate': 583310, 'expatriate include': 290592, 'include thorough': 431651, 'thorough medical': 891747, 'medical assistance': 526054, 'assistance before': 96669, 'the flight': 855403, 'flight well': 310556, 'well covid': 978127, 'of negotiation': 586931, 'negotiation since': 556955, 'have suspended': 382878, 'all flight': 42797, 'flight so': 310535, 'the ticket price': 869538, 'ticket price of': 895654, 'price of expatriate': 675449, 'of expatriate include': 583311, 'expatriate include thorough': 290593, 'include thorough medical': 431652, 'thorough medical assistance': 891748, 'medical assistance before': 526055, 'assistance before during': 96670, 'after the flight': 36316, 'the flight well': 855407, 'flight well covid': 310557, 'well covid 19': 978128, '19 test and': 11068, 'test and week': 838921, 'and week of': 75379, 'week of negotiation': 976631, 'of negotiation since': 586932, 'negotiation since most': 556956, 'since most country': 770749, 'most country have': 542218, 'country have suspended': 210742, 'have suspended all': 382879, 'suspended all flight': 829601, 'all flight so': 42799, 'flight so no': 310536, 'so no do': 777883, 'think the ticket': 885656, 'ticket price are': 895642, 'price are expensive': 672662, 'autonomous': 104060, 'research autonomous': 713681, 'autonomous checkout': 104061, 'checkout brick': 174894, 'retail go': 718146, 'go full': 353593, 'full digital': 340562, 'digital company': 242530, 'company mentioned': 190888, 'new research autonomous': 559460, 'research autonomous checkout': 713682, 'autonomous checkout brick': 104062, 'checkout brick and': 174895, 'mortar retail go': 541828, 'retail go full': 718147, 'go full digital': 353594, 'full digital company': 340563, 'digital company mentioned': 242531, 'hibinate': 394785, 'homealone': 402590, 'sobored': 779382, 'bigbox': 130128, 'an experience': 55966, 'now think': 576122, 'think might': 885395, 'might put': 531107, 'in cardboard': 421240, 'cardboard box': 163713, 'some old': 783429, 'old newspaper': 598390, 'newspaper around': 561082, 'around me': 93392, 'and hibinate': 64542, 'hibinate until': 394786, 'over homealone': 630298, 'homealone sobored': 402591, 'sobored bigbox': 779383, 'back home from': 107059, 'home from supermarket': 401272, 'from supermarket well': 337509, 'supermarket well that': 823779, 'well that wa': 978652, 'that wa an': 847272, 'wa an experience': 961532, 'an experience now': 55967, 'experience now think': 291431, 'now think might': 576123, 'think might put': 885397, 'might put myself': 531108, 'put myself in': 690705, 'myself in cardboard': 550878, 'in cardboard box': 421241, 'cardboard box with': 163716, 'box with some': 137205, 'with some old': 1000856, 'some old newspaper': 783431, 'old newspaper around': 598391, 'newspaper around me': 561083, 'around me and': 93393, 'me and hibinate': 522411, 'and hibinate until': 64543, 'hibinate until this': 394787, 'all over homealone': 43865, 'over homealone sobored': 630299, 'homealone sobored bigbox': 402592, 'coronaus': 205352, 'grocerystore worker': 366340, 'and overwhelmed': 68592, 'overwhelmed 19': 631713, '19 coronaus': 6081, 'grocerystore worker on': 366342, 'frontline of and': 338802, 'of and overwhelmed': 580172, 'and overwhelmed 19': 68593, 'overwhelmed 19 coronaus': 631714, 'funnyshirts': 341831, '2020 apocalypse': 14144, 'apocalypse via': 81573, 'via shirt': 956235, 'shirt funnyshirts': 758987, 'funnyshirts toiletpaper': 341832, 'toiletpaper apocalypse': 921745, 'survived the 2020': 829332, 'the 2020 apocalypse': 848016, '2020 apocalypse via': 14145, 'apocalypse via shirt': 81574, 'via shirt funnyshirts': 956236, 'shirt funnyshirts toiletpaper': 758988, 'funnyshirts toiletpaper apocalypse': 341833, 'whitechapel': 987934, 'east london': 265323, 'empty soon': 275134, 'soon they': 785851, 'full crowd': 340549, 'crowd not': 219211, 'only pose': 610999, 'pose covid': 665091, 'danger but': 225637, 'also alarming': 47828, 'alarming in': 40695, 'safety price': 730692, 'double at': 255978, 'local convenience': 497857, 'and wholesaler': 75612, 'wholesaler sainsbury': 990527, 'sainsbury whitechapel': 731744, 'east london supermarket': 265326, 'london supermarket shelf': 501195, 'shelf empty soon': 757032, 'empty soon they': 275135, 'soon they are': 785852, 'they are full': 881281, 'are full crowd': 86724, 'full crowd not': 340550, 'crowd not only': 219212, 'not only pose': 570817, 'only pose covid': 611000, 'pose covid 19': 665092, '19 danger but': 6419, 'danger but they': 225639, 'are also alarming': 84438, 'also alarming in': 47829, 'alarming in term': 40696, 'of food safety': 583766, 'food safety price': 316273, 'safety price double': 730693, 'price double at': 673499, 'double at local': 255979, 'at local convenience': 99600, 'local convenience store': 497858, 'convenience store and': 202340, 'store and wholesaler': 806402, 'and wholesaler sainsbury': 75614, 'wholesaler sainsbury whitechapel': 990528, '512': 20214, 'toiletpapermath': 923183, 'we managed': 972346, 'get roll': 347938, 'but according': 145051, 'the package': 862840, 'it equal': 457842, 'equal to': 279610, 'to 512': 899760, '512 roll': 20215, 'be all': 113550, 'all set': 44289, 'set toiletpaper': 753540, 'toiletpaper toiletpapermath': 922687, 'toiletpapermath stayhome': 923184, 'we managed to': 972347, 'to get roll': 906579, 'get roll of': 347939, 'paper but according': 639964, 'but according to': 145052, 'to the package': 916936, 'the package it': 862845, 'package it equal': 633316, 'it equal to': 457843, 'equal to 512': 279611, 'to 512 roll': 899761, '512 roll so': 20216, 'roll so we': 725506, 'so we should': 778684, 'should be all': 765549, 'be all set': 113554, 'all set toiletpaper': 44292, 'set toiletpaper toiletpapermath': 753541, 'toiletpaper toiletpapermath stayhome': 922688, 'homework': 403003, 'crowdfunding': 219378, 'wiring': 996587, 'your homework': 1024393, 'homework when': 403008, 'to donation': 904659, 'from charity': 334827, 'charity crowdfunding': 173602, 'crowdfunding site': 219379, 'site don': 771907, 'anyone rush': 80499, 'rush you': 728355, 'you into': 1019366, 'into making': 442735, 'making donation': 511029, 'donation if': 254622, 'someone want': 784742, 'want donation': 965766, 'donation in': 254625, 'cash gift': 166242, 'card wiring': 163702, 'wiring money': 996588, 'money don': 536709, 'don do': 253468, 'avoid scam do': 105256, 'scam do your': 740133, 'do your homework': 250704, 'your homework when': 1024394, 'homework when it': 403009, 'come to donation': 187567, 'to donation from': 904660, 'donation from charity': 254611, 'from charity crowdfunding': 334828, 'charity crowdfunding site': 173603, 'crowdfunding site don': 219380, 'site don let': 771909, 'don let anyone': 253688, 'let anyone rush': 486602, 'anyone rush you': 80500, 'rush you into': 728356, 'you into making': 1019367, 'into making donation': 442737, 'making donation if': 511031, 'donation if someone': 254623, 'if someone want': 414861, 'someone want donation': 784743, 'want donation in': 965767, 'donation in cash': 254626, 'in cash gift': 421286, 'cash gift card': 166243, 'gift card wiring': 349958, 'card wiring money': 163703, 'wiring money don': 996589, 'money don do': 536710, 'don do it': 253469, 'do it more': 249492, 'it more tip': 459677, 'that algeria': 842534, 'algeria could': 41633, 'could face': 209155, 'face economic': 294420, 'collapse result': 186051, 'price brought': 672959, 'expert are warning': 291789, 'warning that algeria': 967203, 'that algeria could': 842535, 'algeria could face': 41634, 'could face economic': 209156, 'face economic and': 294421, 'social collapse result': 779465, 'collapse result of': 186052, 'oil price brought': 597068, 'price brought on': 672960, 'guy well': 369215, 'well know': 978358, 'about yourselves': 27021, 'yourselves listen': 1026793, 'listen we': 494773, 'other by': 619924, 'by considering': 152175, 'considering and': 195357, 'others stay': 621658, 'healthy guy': 387650, 'guy well know': 369216, 'well know lot': 978359, 'buying for their': 150360, 'for their basic': 326801, 'basic need like': 112013, 'need like food': 555156, 'toiletry but please': 923410, 'think about yourselves': 885115, 'about yourselves listen': 27022, 'yourselves listen we': 1026794, 'listen we help': 494774, 'we help each': 972012, 'each other by': 264162, 'other by considering': 619926, 'by considering and': 152176, 'considering and thinking': 195358, 'and thinking for': 73977, 'thinking for the': 885908, 'for the good': 326462, 'the good of': 856444, 'good of others': 357483, 'of others stay': 587401, 'others stay safe': 621660, 'and healthy guy': 64389, 'unconscionable': 939868, 'local supervalu': 498625, 'supervalu going': 824362, 'home cry': 400968, 'cry because': 219856, 'abuse from': 27631, 'from some': 337336, 'it unconscionable': 461913, 'unconscionable these': 939871, 'line keeping': 493220, 'keeping stocked': 472564, 'essential consider': 280935, 'pressure they': 671239, 'under show': 940248, 'show respect': 767111, 'respect if': 715015, 'anything thank': 80891, 'some staff in': 783931, 'staff in my': 792556, 'my local supervalu': 549145, 'local supervalu going': 498626, 'supervalu going home': 824363, 'going home cry': 355199, 'home cry because': 400969, 'cry because of': 219858, 'because of abuse': 119304, 'of abuse from': 579725, 'abuse from some': 27635, 'from some customer': 337338, 'some customer it': 782648, 'customer it unconscionable': 222549, 'it unconscionable these': 461914, 'unconscionable these people': 939872, 'people are at': 646930, 'front line keeping': 338586, 'line keeping stocked': 493222, 'keeping stocked with': 472565, 'stocked with basic': 803460, 'with basic essential': 997374, 'basic essential consider': 111870, 'essential consider the': 280936, 'consider the pressure': 195143, 'the pressure they': 864301, 'pressure they are': 671240, 'they are under': 881444, 'are under show': 91285, 'under show respect': 940249, 'show respect if': 767113, 'respect if anything': 715016, 'if anything thank': 413866, 'anything thank them': 80892, 'everclear': 285613, '190': 12296, 'found himself': 330243, 'himself some': 396814, 'some alcohol': 782277, 'disinfect his': 245548, 'surface it': 828036, 'it everclear': 457868, 'everclear 190': 285614, '190 proof': 12299, 'proof but': 683989, 'hey 95': 394308, '95 ethanol': 23576, 'ethanol is': 282986, 'much higher': 544993, 'the recommended': 865352, 'recommended 60': 704771, 'and cheaper': 59778, 'the inflated': 858231, 'inflated alcohol': 437008, 'this guy just': 887791, 'guy just found': 369061, 'just found himself': 468769, 'found himself some': 330244, 'himself some alcohol': 396815, 'some alcohol to': 782278, 'alcohol to disinfect': 41148, 'to disinfect his': 904398, 'disinfect his hand': 245549, 'and surface it': 72878, 'surface it everclear': 828037, 'it everclear 190': 457869, 'everclear 190 proof': 285615, '190 proof but': 12300, 'proof but hey': 683990, 'but hey 95': 145929, 'hey 95 ethanol': 394309, '95 ethanol is': 23577, 'ethanol is much': 282987, 'is much higher': 449764, 'much higher than': 544996, 'than the recommended': 841267, 'the recommended 60': 865353, 'recommended 60 and': 704772, '60 and cheaper': 20900, 'and cheaper than': 59779, 'cheaper than the': 174281, 'than the inflated': 841249, 'the inflated alcohol': 858232, 'inflated alcohol hand': 437009, 'sanitizer price online': 735584, 'saveournurses': 737802, 'these uk': 880908, 'uk mp': 938556, 'mp putting': 544268, 'shift facing': 758286, 'facing empty': 295458, 'own life': 632087, 'others oh': 621562, 'wait saveournurses': 964186, 'saveournurses ppe': 737803, 'ppe nhsheroes': 668014, 'nhsheroes coronacrisis': 562230, 'all these uk': 45061, 'these uk mp': 880909, 'uk mp putting': 938557, 'mp putting in': 544269, 'putting in 48': 691139, 'hour shift facing': 405913, 'shift facing empty': 758287, 'facing empty supermarket': 295460, 'shelf and risking': 756759, 'their own life': 874185, 'own life to': 632089, 'help others oh': 390212, 'others oh wait': 621563, 'oh wait saveournurses': 596471, 'wait saveournurses ppe': 964187, 'saveournurses ppe nhsheroes': 737804, 'ppe nhsheroes coronacrisis': 668015, 'projected': 683558, 'trend return': 931434, 'return these': 719908, 'to negative': 910522, 'negative return': 556820, 'return currently': 719829, 'currently projected': 221639, 'projected corn': 683559, 'corn yield': 203604, 'yield are': 1016360, 'than projected': 841051, 'projected soybean': 683564, 'soybean yield': 787001, 'yield calling': 1016363, 'calling into': 156577, 'into question': 442918, 'question previously': 693702, 'previously planned': 672051, 'planned shift': 658467, 'in acre': 420004, 'from soybean': 337367, 'soybean to': 786999, 'to corn': 903518, 'corn in': 203568, 'in illinois': 423974, 'given the trend': 351164, 'the trend return': 869966, 'trend return these': 931435, 'return these price': 719909, 'these price will': 880547, 'price will lead': 677573, 'lead to negative': 483369, 'to negative return': 910527, 'negative return currently': 556822, 'return currently projected': 719830, 'currently projected corn': 221640, 'projected corn yield': 683561, 'corn yield are': 203605, 'yield are lower': 1016362, 'are lower than': 87943, 'lower than projected': 506014, 'than projected soybean': 841052, 'projected soybean yield': 683566, 'soybean yield calling': 787002, 'yield calling into': 1016364, 'calling into question': 156578, 'into question previously': 442920, 'question previously planned': 693703, 'previously planned shift': 672053, 'planned shift in': 658468, 'shift in acre': 758316, 'in acre from': 420005, 'acre from soybean': 29206, 'from soybean to': 337368, 'soybean to corn': 787000, 'to corn in': 903519, 'corn in illinois': 203569, 'granting': 362108, 'thorny': 891741, 'gh': 349538, 'allw': 46421, 'west is': 980509, 'is granting': 448177, 'granting load': 362111, 'of stimulus': 590128, 'package or': 633358, 'or aid': 614280, 'their citizen': 872782, 'these thorny': 880825, 'thorny time': 891742, 'time what': 898267, 'what gh': 981496, 'gh her': 349539, 'her leader': 392158, 'leader offering': 483503, 'offering they': 595291, 'even reduce': 284516, 'to allw': 900364, 'allw public': 46422, 'transport operator': 929916, 'operator afford': 613338, 'afford smaller': 34759, 'smaller no': 775284, 'the west is': 871395, 'west is granting': 980511, 'is granting load': 448178, 'granting load of': 362112, 'load of stimulus': 497281, 'of stimulus package': 590130, 'stimulus package or': 801584, 'package or aid': 633359, 'or aid to': 614281, 'aid to their': 39472, 'to their citizen': 917212, 'their citizen in': 872783, 'citizen in these': 178918, 'in these thorny': 429865, 'these thorny time': 880826, 'thorny time what': 891743, 'time what gh': 898271, 'what gh her': 981497, 'gh her leader': 349540, 'her leader offering': 392160, 'leader offering they': 483504, 'offering they cannot': 595292, 'they cannot even': 881705, 'cannot even reduce': 161798, 'even reduce fuel': 284517, 'price to allw': 676963, 'to allw public': 900365, 'allw public transport': 46423, 'public transport operator': 688413, 'transport operator afford': 929917, 'operator afford smaller': 613339, 'afford smaller no': 34760, 'salina': 732716, 'nob': 565958, 'in salina': 427669, 'salina ca': 732717, 'ca yesterday': 154917, 'yesterday evening': 1015721, 'evening some': 284901, 'some picked': 783564, 'picked clean': 655788, 'clean others': 180600, 'others normal': 621550, 'normal pandemic': 567247, 'supermarket nob': 821623, 'nob hill': 565959, 'hill food': 396472, 'store aisle in': 806115, 'aisle in salina': 40277, 'in salina ca': 427670, 'salina ca yesterday': 732718, 'ca yesterday evening': 154918, 'yesterday evening some': 1015724, 'evening some picked': 284902, 'some picked clean': 783565, 'picked clean others': 655789, 'clean others normal': 180601, 'others normal pandemic': 621551, 'normal pandemic supermarket': 567248, 'pandemic supermarket nob': 636599, 'supermarket nob hill': 821624, 'nob hill food': 565960, 'prognosis': 683182, 'accurate prognosis': 28908, 'prognosis made': 683189, 'made feb': 507737, 'feb many': 301652, 'many now': 514356, 'fear will': 301430, 'become global': 120005, 'pandemic commodity': 635175, 'price around': 672774, 'would slump': 1012250, 'slump supply': 774708, 'chain would': 171271, 'would break': 1011690, 'down recovery': 257140, 'recovery could': 705310, 'be slow': 117216, 'slow and': 774320, 'political effect': 663644, 'effect could': 268984, 'be dramatic': 114601, 'accurate prognosis made': 28909, 'prognosis made feb': 683190, 'made feb many': 507738, 'feb many now': 301653, 'many now fear': 514357, 'now fear will': 574674, 'fear will become': 301431, 'will become global': 992795, 'become global pandemic': 120007, 'global pandemic commodity': 352076, 'pandemic commodity price': 635176, 'commodity price around': 189261, 'price around the': 672776, 'world would slump': 1010207, 'would slump supply': 1012251, 'slump supply chain': 774709, 'supply chain would': 825073, 'chain would break': 171273, 'would break down': 1011691, 'break down recovery': 138708, 'down recovery could': 257141, 'recovery could be': 705311, 'could be slow': 208923, 'be slow and': 117217, 'slow and social': 774321, 'and social and': 71879, 'social and political': 779433, 'and political effect': 69174, 'political effect could': 663645, 'effect could be': 268985, 'could be dramatic': 208862, 'agitate': 38290, 'reversed': 720529, 'and agitate': 57780, 'agitate to': 38291, 'this be': 886499, 'be reversed': 116870, 'laid off during': 479018, 'pandemic sign this': 636471, 'petition and agitate': 653585, 'and agitate to': 57781, 'agitate to have': 38292, 'to have this': 907327, 'have this be': 383098, 'this be reversed': 886503, '19 varies': 11731, 'varies by': 952550, 'by age': 151775, 'age income': 37836, 'location via': 498985, 'covid 19 varies': 214017, '19 varies by': 11732, 'varies by age': 952551, 'by age income': 151776, 'age income and': 37837, 'income and location': 432282, 'and location via': 66317, 'redress': 705769, 'holidaymaker affected': 400398, '19 cancellation': 5629, 'cancellation may': 161034, 'get redress': 347902, 'redress the': 705770, 'uk european': 938335, 'european consumer': 283545, 'consumer centre': 196759, 'centre ha': 169498, 'seen surge': 747266, 'in query': 427212, 'query from': 693456, 'from concerned': 334943, 'concerned holidaymaker': 193202, 'holidaymaker looking': 400404, 'their cancelled': 872710, 'cancelled holiday': 161121, 'holiday read': 400352, 'holidaymaker affected by': 400399, 'covid 19 cancellation': 212757, '19 cancellation may': 5630, 'cancellation may get': 161035, 'may get redress': 521208, 'get redress the': 347903, 'redress the uk': 705771, 'the uk european': 870213, 'uk european consumer': 938336, 'european consumer centre': 283547, 'consumer centre ha': 196760, 'centre ha seen': 169499, 'ha seen surge': 371846, 'seen surge in': 747267, 'surge in query': 828204, 'in query from': 427213, 'query from concerned': 693457, 'from concerned holidaymaker': 334945, 'concerned holidaymaker looking': 193203, 'holidaymaker looking for': 400405, 'looking for refund': 502892, 'for refund for': 325060, 'refund for their': 706914, 'for their cancelled': 326807, 'their cancelled holiday': 872711, 'cancelled holiday read': 161124, 'holiday read in': 400353, 'read in full': 700370, 'sag': 730881, 'the slump': 867350, 'that investment': 844533, 'investment will': 444084, 'will contract': 993024, 'contract sharply': 201695, 'sharply this': 755770, 'year especially': 1014549, 'and export': 62524, 'export growth': 292645, 'will sag': 994735, 'combination of the': 187109, 'coronavirus epidemic and': 205878, 'and the slump': 73587, 'the slump in': 867351, 'slump in global': 774694, 'price mean that': 675214, 'mean that investment': 524680, 'that investment will': 844534, 'investment will contract': 444086, 'will contract sharply': 993026, 'contract sharply this': 201696, 'sharply this year': 755771, 'this year especially': 891572, 'year especially in': 1014550, 'in the energy': 429169, 'energy sector and': 276575, 'sector and export': 744082, 'and export growth': 62529, 'export growth will': 292646, 'growth will sag': 367487, 'worker sanitation': 1007731, 'and bodega': 59039, 'bodega worker': 133793, 'time truly': 898136, 'truly appreciate': 933257, 'and dedication': 61037, 'dedication during': 231774, 'time please': 897489, 'all the medical': 44825, 'medical worker sanitation': 526510, 'worker sanitation worker': 1007733, 'sanitation worker supermarket': 733878, 'worker supermarket and': 1007853, 'supermarket and bodega': 818943, 'and bodega worker': 59040, 'bodega worker and': 133794, 'other essential personnel': 620171, 'essential personnel during': 281385, 'personnel during this': 653105, 'this time truly': 890706, 'time truly appreciate': 898137, 'truly appreciate your': 933258, 'appreciate your hard': 82798, 'work and dedication': 1004772, 'and dedication during': 61038, 'dedication during these': 231775, 'difficult time please': 242304, 'time please be': 897490, 'please be safe': 659712, 'our mental': 623908, 'health throughout': 386909, 'throughout difficult': 894935, 'important don': 418785, 'become anxious': 119927, 'situation over': 772434, 'over which': 630924, 'no control': 563894, 'others deal': 621355, 'caring for our': 164716, 'for our mental': 324271, 'our mental health': 623909, 'mental health throughout': 528651, 'health throughout difficult': 386910, 'throughout difficult time': 894936, 'time is so': 897063, 'so important don': 777374, 'important don become': 418786, 'don become anxious': 253379, 'become anxious about': 119928, 'anxious about situation': 78829, 'about situation over': 26204, 'situation over which': 772435, 'over which you': 630925, 'which you have': 986533, 'have no control': 381620, 'no control if': 563897, 'control if people': 202024, 'if people are': 414607, 'buy more than': 148974, 'than they are': 841297, 'they are allowed': 881197, 'supermarket let others': 821297, 'let others deal': 486955, 'others deal with': 621356, 'deal with it': 229556, 'uae shopper': 937774, 'shopper notice': 761627, 'notice hike': 573281, 'in fruit': 423141, 'uae shopper notice': 937775, 'shopper notice hike': 761628, 'notice hike in': 573282, 'hike in fruit': 396219, 'in fruit and': 423142, 'low paid': 505476, 'paid are': 633972, 'pandemic risking': 636368, 'health aide': 386105, 'aide child': 39496, 'cashier many': 166566, 'also at': 47891, 'poverty according': 667476, 'low paid are': 505477, 'paid are on': 633973, 'the pandemic risking': 863083, 'pandemic risking their': 636369, 'their health home': 873518, 'health home health': 386503, 'home health aide': 401353, 'health aide child': 386106, 'aide child care': 39497, 'store cashier many': 806890, 'cashier many of': 166567, 'many of them': 514392, 'them are also': 875414, 'are also at': 84440, 'also at risk': 47892, 'risk of living': 723761, 'in poverty according': 426876, 'poverty according to': 667477, 'eveyone': 288295, 'fiver': 309697, 'eveyone should': 288296, 'should donate': 765939, 'donate fiver': 254177, 'fiver to': 309700, 'social fund': 779788, 'fund of': 341467, 'hospital school': 404600, 'school supermarket': 741937, 'supermarket any': 819124, 'key institution': 473330, 'line right': 493376, 'have wicked': 383593, 'wicked party': 991676, 'party when': 643061, 'eveyone should donate': 288297, 'should donate fiver': 765941, 'donate fiver to': 254178, 'fiver to the': 309701, 'to the social': 917074, 'the social fund': 867413, 'social fund of': 779789, 'fund of their': 341470, 'of their local': 591677, 'their local hospital': 873872, 'local hospital school': 498091, 'hospital school supermarket': 404602, 'school supermarket any': 741938, 'supermarket any of': 819126, 'the many other': 860047, 'many other key': 514432, 'other key institution': 620458, 'key institution or': 473331, 'institution or business': 440470, 'or business on': 614606, 'business on the': 144139, 'front line right': 338599, 'line right now': 493377, 'right now so': 722138, 'now so their': 575852, 'so their staff': 778448, 'their staff can': 874792, 'staff can all': 792292, 'all have wicked': 43065, 'have wicked party': 383594, 'wicked party when': 991677, 'party when this': 643062, 'india changed': 434340, 'changed online': 172520, 'pattern while': 644525, 'delivery took': 234685, 'took massive': 925279, 'massive hit': 520037, 'people preferred': 649176, 'preferred to': 669816, 'minimize their': 533133, 'their exposure': 873212, 'maintain read': 509022, 'onset of in': 611548, 'of in india': 585028, 'in india changed': 424026, 'india changed online': 434341, 'changed online shopping': 172521, 'online shopping pattern': 609219, 'shopping pattern while': 763611, 'pattern while food': 644526, 'while food delivery': 986847, 'food delivery took': 314156, 'delivery took massive': 234686, 'took massive hit': 925280, 'massive hit people': 520039, 'hit people preferred': 398373, 'people preferred to': 649177, 'preferred to buy': 669817, 'buy grocery online': 148755, 'grocery online just': 364781, 'online just to': 608455, 'just to minimize': 470097, 'to minimize their': 910170, 'minimize their exposure': 533134, 'their exposure and': 873213, 'exposure and maintain': 292958, 'and maintain read': 66527, 'maintain read more': 509023, 'emergency store': 272994, 'everyone is closed': 287071, 'closed but we': 183031, 'but we remain': 147760, 'we remain open': 973072, 'remain open because': 709801, 'open because we': 612122, 'we are an': 970477, 'are an emergency': 84534, 'an emergency store': 55690, 'emergency store thank': 272995, 'store thank your': 810538, 'thank your retail': 841855, 'your retail worker': 1025611, 'retail worker pandemic': 718902, 'worker pandemic socialdistancing': 1007542, 'pandemic socialdistancing retail': 636503, 'betty': 128649, 'pie': 656242, 'betty favourite': 128655, 'favourite pie': 300607, 'pie facing': 656247, 'facing these': 295627, 'feel wrong': 302939, 'some odds': 783385, 'odds end': 579209, 'end thrown': 275995, 'thrown together': 895154, 'together can': 920737, 'become long': 120049, 'long standing': 501650, 'standing family': 793765, 'family favourite': 297780, 'betty favourite pie': 128656, 'favourite pie facing': 300608, 'pie facing these': 656248, 'facing these uncertain': 295628, 'uncertain time with': 939632, 'threat of shortage': 893700, 'of shortage in': 589682, 'supermarket it feel': 821167, 'it feel wrong': 457978, 'feel wrong to': 302942, 'wrong to waste': 1013135, 'to waste food': 918368, 'waste food some': 968125, 'food some odds': 316689, 'some odds end': 783386, 'odds end thrown': 579210, 'end thrown together': 275996, 'thrown together can': 895155, 'together can become': 920738, 'can become long': 157733, 'become long standing': 120050, 'long standing family': 501652, 'standing family favourite': 793766, 'number off': 577018, 'off case': 593722, 'of deliberate': 582483, 'deliberate contamination': 232943, 'contamination can': 200706, 'driver will': 259856, 'delivering covid': 233481, '19 along': 4917, 'grocery very': 366101, 'easy thing': 265771, 'do take': 250205, 'precaution with': 669404, 'we have already': 971753, 'have already seen': 379201, 'already seen number': 47638, 'seen number off': 747159, 'number off case': 577019, 'off case of': 593723, 'case of deliberate': 165900, 'of deliberate contamination': 582484, 'deliberate contamination can': 232944, 'contamination can we': 200707, 'can we expect': 160172, 'we expect that': 971500, 'expect that supermarket': 290741, 'that supermarket delivery': 846567, 'delivery driver will': 233957, 'driver will now': 259857, 'now be delivering': 574196, 'be delivering covid': 114404, 'delivering covid 19': 233482, 'covid 19 along': 212613, '19 along with': 4918, 'with the grocery': 1001321, 'the grocery very': 856833, 'grocery very easy': 366102, 'very easy thing': 955136, 'easy thing to': 265772, 'to do take': 904565, 'do take precaution': 250206, 'take precaution with': 832517, 'precaution with what': 669405, 'with what is': 1002069, 'what is delivered': 981687, 'saveourgrowers': 737799, 'growyourown': 367498, 'saveourgrowers government': 737800, 'support garden': 826540, 'garden supply': 343623, 'supply grower': 825338, 'grower business': 367096, 'business slump': 144390, 'to bailout': 901003, 'bailout plus': 108652, 'plus encouragement': 661594, 'encouragement to': 275682, 'out edible': 626001, 'edible stock': 268559, 'from garden': 335595, 'garden growyourown': 343597, 'saveourgrowers government is': 737801, 'government is being': 360245, 'is being called': 446067, 'being called to': 124915, 'called to support': 156476, 'to support garden': 915933, 'support garden supply': 826541, 'garden supply grower': 343625, 'supply grower business': 825339, 'grower business slump': 367097, 'business slump due': 144391, 'due to bailout': 261708, 'to bailout plus': 901004, 'bailout plus encouragement': 108653, 'plus encouragement to': 661595, 'encouragement to hand': 275683, 'hand out edible': 375160, 'out edible stock': 626003, 'edible stock to': 268560, 'stock to boost': 802988, 'to boost food': 901919, 'boost food supply': 134956, 'supply from garden': 825289, 'from garden growyourown': 335597, 'aware scammer': 105654, 'be aware scammer': 113779, 'aware scammer are': 105655, 'concession': 193280, 'continuity': 201580, 'consumer south': 199026, 'is dedicated': 447066, 'the voice': 870942, 'the south': 867504, 'african consumer': 35183, 'corporate south': 207338, 'given various': 351201, 'various concession': 952589, 'concession to': 193283, 'ensure business': 277896, 'business continuity': 143577, 'consumer south africa': 199027, 'south africa this': 786662, 'africa this website': 35148, 'website is dedicated': 975319, 'is dedicated to': 447067, 'dedicated to the': 231750, 'to the voice': 917173, 'the voice of': 870943, 'voice of the': 959993, 'of the south': 591480, 'the south african': 867505, 'south african consumer': 786673, 'african consumer during': 35184, '19 pandemic corporate': 9301, 'pandemic corporate south': 635236, 'corporate south africa': 207339, 'africa ha been': 35081, 'ha been given': 369815, 'been given various': 121214, 'given various concession': 351202, 'various concession to': 952590, 'concession to ensure': 193284, 'to ensure business': 905144, 'ensure business continuity': 277897, 'what legend': 981812, 'legend this': 485938, 'almost 30': 46498, 'his total': 397868, 'total wealth': 926271, 'wealth he': 974166, 'previously donated': 672035, 'donated 100': 254297, 'to america': 900409, 'america food': 51521, 'food fund': 314637, 'fund now': 341465, 'relief and': 709274, 'and square': 72168, 'square stock': 791490, 'rose 12': 726038, 'to 56': 899770, '56 60': 20449, 'share raising': 755195, 'it donation': 457665, 'than 12': 840173, '12 billion': 2825, 'what legend this': 981813, 'legend this is': 485939, 'this is almost': 888170, 'is almost 30': 445494, 'almost 30 of': 46500, '30 of his': 17141, 'of his total': 584668, 'his total wealth': 397869, 'total wealth he': 926272, 'wealth he previously': 974167, 'he previously donated': 385305, 'previously donated 100': 672036, 'donated 100 00': 254298, '00 to america': 538, 'to america food': 900410, 'america food fund': 51523, 'food fund now': 314639, 'fund now billion': 341466, 'now billion for': 574257, 'billion for covid': 130818, '19 relief and': 10076, 'relief and square': 709279, 'and square stock': 72169, 'square stock price': 791491, 'stock price rose': 802748, 'price rose 12': 676262, 'rose 12 to': 726039, '12 to 56': 2966, 'to 56 60': 899771, '56 60 per': 20450, '60 per share': 20988, 'per share raising': 651011, 'share raising the': 755196, 'raising the value': 696147, 'value of it': 952165, 'of it donation': 585386, 'it donation to': 457666, 'donation to more': 254712, 'more than 12': 540546, 'than 12 billion': 840175, 'personality': 653009, 'reality in': 701745, 'which professional': 986243, 'athlete movie': 101770, 'movie actor': 543982, 'actor reality': 30593, 'reality tv': 701810, 'tv personality': 936151, 'personality and': 653010, 'pop singer': 664461, 'singer are': 771180, 'people delivery': 647624, 'stacker and': 792002, 'few are': 303715, 'new superheroes': 559690, 'it new reality': 459793, 'new reality in': 559399, 'reality in which': 701748, 'in which professional': 430864, 'which professional athlete': 986244, 'professional athlete movie': 682425, 'athlete movie actor': 101771, 'movie actor reality': 543983, 'actor reality tv': 30594, 'reality tv personality': 701812, 'tv personality and': 936152, 'personality and pop': 653011, 'and pop singer': 69199, 'pop singer are': 664462, 'singer are not': 771181, 'are not the': 88484, 'important people delivery': 418918, 'people delivery driver': 647625, 'delivery driver grocery': 233914, 'driver grocery shelf': 259589, 'grocery shelf stacker': 364957, 'shelf stacker and': 757553, 'stacker and healthcare': 792004, 'worker to name': 1008014, 'name few are': 551629, 'few are the': 303716, 'the new superheroes': 861564, 'intensely': 441088, 'frenzy namaka': 332786, 'namaka consumer': 551580, 'consumer supermarket': 199175, 'the rain': 865112, 'rain continues': 695735, 'continues intensely': 201406, 'buying frenzy namaka': 150379, 'frenzy namaka consumer': 332787, 'namaka consumer supermarket': 551581, 'consumer supermarket panic': 199176, 'supermarket panic set': 821904, 'set in the': 753406, 'in the rain': 429496, 'the rain continues': 865114, 'rain continues intensely': 695737, 'used2': 950131, 'prioritised4': 678411, 'due2': 262042, 'some1 used2': 784247, 'used2 know': 950132, 'know had': 476407, 'their nh': 874060, 'badge ripped': 108130, 'customer wa': 223021, 'wa punched': 963010, 'punched in': 689178, 'head by': 385726, 'they didnt': 881937, 'didnt see': 241272, 'why fucking': 991004, 'fucking nh': 339958, 'nh should': 562062, 'get prioritised4': 347841, 'prioritised4 grocery': 678412, 'grocery wait': 366111, 'until ve': 943917, 'got covid': 358509, 'there arent': 878192, 'arent enough': 92614, 'enough nurse': 277535, 'nurse doc': 577279, 'doc due2': 250738, 'due2 sickness': 262043, 'some1 used2 know': 784248, 'used2 know had': 950133, 'know had their': 476408, 'had their nh': 373636, 'their nh badge': 874061, 'nh badge ripped': 561899, 'badge ripped off': 108131, 'off by customer': 593707, 'by customer wa': 152284, 'customer wa punched': 223026, 'wa punched in': 963011, 'punched in the': 689179, 'in the back': 429001, 'of the head': 591096, 'the head by': 857162, 'head by another': 385727, 'by another supermarket': 151868, 'another supermarket because': 77884, 'supermarket because they': 819337, 'because they didnt': 119697, 'they didnt see': 881938, 'didnt see why': 241274, 'see why fucking': 746075, 'why fucking nh': 991005, 'fucking nh should': 339959, 'nh should get': 562064, 'should get prioritised4': 766031, 'get prioritised4 grocery': 347842, 'prioritised4 grocery wait': 678413, 'grocery wait until': 366112, 'wait until ve': 964247, 'until ve got': 943918, 've got covid': 953173, 'got covid 19': 358510, '19 and there': 5122, 'and there arent': 73830, 'there arent enough': 878193, 'arent enough nurse': 92615, 'enough nurse doc': 277536, 'nurse doc due2': 577280, 'doc due2 sickness': 250739, 'sympathize': 830788, 'unsold': 943500, 'stelvio': 799455, 'sympathize with': 830789, 'our italian': 623588, 'italian ally': 462679, 'ally affected': 46425, 'when do': 983348, 'drop price': 260370, 'the unsold': 870465, 'unsold stelvio': 943505, 'stelvio news': 799458, 'sympathize with our': 830790, 'with our italian': 1000000, 'our italian ally': 623589, 'italian ally affected': 462680, 'ally affected by': 46426, 'affected by but': 34305, 'by but when': 152033, 'but when do': 147813, 'when do you': 983353, 'you think they': 1021680, 'think they ll': 885683, 'they ll drop': 882595, 'll drop price': 496725, 'drop price to': 260377, 'price to move': 677017, 'to move the': 910320, 'move the unsold': 543739, 'the unsold stelvio': 870466, 'unsold stelvio news': 943507, 'these cleaning': 879765, 'product wet': 681826, 'wet wipe': 980757, 'wipe toilet': 996402, 'wash are': 967437, 'avoid but': 105020, 'still eating': 800471, 'eating junk': 266240, 'healthy stay': 387773, 'clean stay': 180635, 'and positive': 69205, 'positive don': 665298, 'these people buying': 880427, 'all these cleaning': 45025, 'these cleaning product': 879766, 'cleaning product wet': 181041, 'product wet wipe': 681827, 'wet wipe toilet': 980765, 'wipe toilet paper': 996403, 'paper hand wash': 640251, 'hand wash are': 375919, 'wash are trying': 967438, 'trying to be': 934770, 'to be clean': 901166, 'be clean and': 114097, 'clean and trying': 180471, 'to avoid but': 900872, 'avoid but yet': 105022, 'but yet they': 147970, 'yet they are': 1016271, 'are still eating': 90418, 'still eating junk': 800472, 'eating junk food': 266241, 'junk food stay': 468039, 'food stay healthy': 316753, 'stay healthy stay': 796921, 'healthy stay clean': 387774, 'stay clean stay': 796835, 'clean stay calm': 180636, 'stay calm and': 796804, 'calm and positive': 156693, 'and positive don': 69207, 'positive don panic': 665299, 'ftcscambingo': 339475, 'ever spot': 285513, 'with ftcscambingo': 998576, 'than ever spot': 840610, 'ever spot the': 285514, 'the scam with': 866422, 'scam with ftcscambingo': 740484, 'you letting': 1019597, 'whoever posted this': 990109, 'posted this on': 666582, 'appreciate you letting': 82786, 'you letting others': 1019598, 'not bother': 568595, 'bother to': 136127, 'very long': 955329, 'queue inside': 693965, 'and outside': 68549, 'of around': 580369, 'would wait': 1012376, 'wait ho': 964129, 'do not bother': 249683, 'not bother to': 568599, 'bother to grocery': 136129, 'to grocery shop': 907008, 'grocery shop during': 364970, 'shop during covid': 760117, '19 crisis if': 6262, 'crisis if there': 217516, 'an online grocery': 56619, 'grocery shopping there': 365092, 'there is very': 878650, 'is very long': 453681, 'very long queue': 955334, 'long queue inside': 501582, 'queue inside the': 693967, 'inside the supermarket': 439422, 'supermarket and outside': 819033, 'and outside the': 68552, 'supermarket is very': 821135, 'very long line': 955333, 'long line of': 501500, 'line of around': 493292, 'of around 00': 580370, '00 people who': 422, 'who would wait': 990064, 'would wait ho': 1012377, 'that require': 846004, 'require very': 713339, 'policy prescription': 663469, 'crisis that require': 218154, 'that require very': 846007, 'require very unusual': 713340, 'unusual policy prescription': 943993, 'listen you': 494775, 'listen you people': 494777, 'you people you': 1020326, 'people you all': 650567, 'need to wake': 556113, 'wake up you': 964632, 'up you are': 946722, 'you are out': 1017192, 'out of time': 626859, 'hoax you': 399753, 'shop all': 759814, 'want with': 966175, 'with hundred': 998914, 'cannot sit': 162101, 'restaurant calling': 716351, 'hoax you can': 399754, 'you can shop': 1017781, 'can shop all': 159598, 'shop all you': 759816, 'you want with': 1022165, 'want with hundred': 966176, 'with hundred of': 998916, 'store but you': 806820, 'but you cannot': 147979, 'you cannot sit': 1017878, 'cannot sit in': 162102, 'sit in restaurant': 771827, 'in restaurant calling': 427429, 'bilateral': 130456, 'assessing': 96372, 'retaliatory': 719624, 'main point': 508791, 'point here': 662506, 'overall trade': 631040, 'trade data': 928470, 'the bilateral': 849687, 'bilateral trade': 130459, 'data when': 226492, 'when assessing': 983188, 'assessing the': 96377, 'many retaliatory': 514651, 'retaliatory tariff': 719625, 'tariff and': 834591, 'on serious': 603374, 'serious note': 751434, 'had huge': 373193, 'canada lobster': 160487, 'lobster trade': 497653, 'main point here': 508793, 'point here is': 662509, 'here is that': 393252, 'at the overall': 101044, 'the overall trade': 862770, 'overall trade data': 631041, 'trade data not': 928472, 'just the bilateral': 469994, 'the bilateral trade': 849688, 'bilateral trade data': 130460, 'trade data when': 928473, 'data when assessing': 226493, 'when assessing the': 983189, 'assessing the impact': 96378, 'impact of many': 417785, 'of many retaliatory': 586185, 'many retaliatory tariff': 514652, 'retaliatory tariff and': 719626, 'tariff and on': 834592, 'and on serious': 68067, 'on serious note': 603375, 'serious note covid': 751435, 'ha had huge': 370789, 'had huge impact': 373194, 'impact on canada': 417829, 'on canada lobster': 599794, 'canada lobster trade': 160488, 'lobster trade price': 497654, 'trade price are': 928554, 'price are now': 672707, 'sanauto': 733596, 'spraying': 790371, 'coronafighters': 204941, 'sanauto for': 733597, 'for spraying': 325834, 'spraying sanitizer': 790378, 'sanitizer coronafighters': 734696, 'sanauto for spraying': 733598, 'for spraying sanitizer': 325835, 'spraying sanitizer coronafighters': 790379, 'tv9': 936228, 'homeneeds': 402870, 'respected team': 715118, 'team tv9': 835812, 'tv9 requesting': 936229, 'requesting you': 713286, 'of homeneeds': 584730, 'homeneeds very': 402871, 'in bangalore': 420689, 'bangalore the': 109464, 'bangalore were': 109466, 'charging too': 173528, 'much due': 544846, 'it something': 461169, 'do by': 249168, 'of karnataka': 585585, 'karnataka otherwise': 470961, 'otherwise people': 621859, 'respected team tv9': 715119, 'team tv9 requesting': 835813, 'tv9 requesting you': 936230, 'requesting you that': 713288, 'you that the': 1021578, 'price of homeneeds': 675470, 'of homeneeds very': 584731, 'homeneeds very high': 402872, 'very high in': 955230, 'high in bangalore': 395120, 'in bangalore the': 420691, 'bangalore the merchant': 109465, 'the merchant in': 860493, 'merchant in bangalore': 529022, 'in bangalore were': 420692, 'bangalore were charging': 109467, 'were charging too': 979432, 'charging too much': 173529, 'too much due': 924919, 'much due to': 544847, '19 so please': 10649, 'so please make': 778024, 'please make it': 660221, 'make it something': 510056, 'it something to': 461170, 'to do by': 904492, 'do by government': 249169, 'by government of': 152712, 'government of karnataka': 360398, 'of karnataka otherwise': 585586, 'karnataka otherwise people': 470962, 'plunging global': 661535, 'market drove': 516315, 'drove consumer': 260787, 'confidence today': 193967, 'low according': 505104, 'to survey': 916011, 'pandemic and plunging': 634891, 'and plunging global': 69135, 'plunging global financial': 661536, 'financial market drove': 306503, 'market drove consumer': 516316, 'drove consumer confidence': 260788, 'consumer confidence today': 196926, 'confidence today to': 193968, 'today to two': 920374, 'to two year': 917871, 'two year low': 937406, 'year low according': 1014706, 'low according to': 505105, 'according to survey': 28594, 'trump move': 933712, 'slash pay': 773580, 'of guest': 584382, 'guest farmworkers': 368156, 'farmworkers amid': 299687, 'move 1st': 543593, '1st reported': 12788, 'by npr': 153378, 'npr friday': 576620, 'friday is': 333240, 'is cruel': 446967, 'cruel attack': 219668, 'vulnerable worker': 961264, 'worker currently': 1006717, 'currently risking': 221657, 'own health': 632054, 'amp safety': 54427, 'stock grocery': 802209, 'amp put': 54357, 'on american': 599298, 'american table': 52239, 'trump move to': 933713, 'move to slash': 543765, 'to slash pay': 914722, 'slash pay of': 773581, 'pay of guest': 645011, 'of guest farmworkers': 584383, 'guest farmworkers amid': 368157, 'farmworkers amid covid': 299688, 'the move 1st': 861082, 'move 1st reported': 543594, '1st reported by': 12789, 'reported by npr': 712466, 'by npr friday': 153379, 'npr friday is': 576621, 'friday is cruel': 333242, 'is cruel attack': 446969, 'cruel attack on': 219669, 'attack on vulnerable': 102137, 'on vulnerable worker': 605079, 'vulnerable worker currently': 961265, 'worker currently risking': 1006718, 'currently risking their': 221658, 'their own health': 874183, 'own health amp': 632055, 'health amp safety': 386122, 'amp safety to': 54429, 'safety to help': 730774, 'help stock grocery': 390578, 'stock grocery store': 802210, 'store amp put': 806181, 'amp put food': 54358, 'food on american': 315590, 'on american table': 599302, 'an illinois': 56159, 'illinois supermarket': 416311, 'than dozen': 840525, 'dozen people': 257910, 'people must': 648802, 'must quarantine': 546827, 'quarantine after': 691995, 'after customer': 35523, 'coronavirus entered': 205875, 'an illinois supermarket': 56160, 'illinois supermarket is': 416312, 'closed and more': 182988, 'and more than': 67220, 'more than dozen': 540611, 'than dozen people': 840526, 'dozen people must': 257912, 'people must quarantine': 648804, 'must quarantine after': 546828, 'quarantine after customer': 691997, 'after customer with': 35526, 'customer with coronavirus': 223101, 'with coronavirus entered': 997800, 'coronavirus entered the': 205876, 'entered the store': 278378, 'doug': 256242, 'ford': 328756, 'eb': 266406, 'premier doug': 669893, 'doug ford': 256248, 'ford blast': 328765, 'blast eb': 132410, 'eb game': 266407, 'opening to': 612934, 'sell new': 748805, 'premier doug ford': 669894, 'doug ford blast': 256250, 'ford blast eb': 328766, 'blast eb game': 132411, 'eb game for': 266409, 'game for opening': 343174, 'for opening to': 324139, 'opening to sell': 612936, 'to sell new': 914163, 'sell new video': 748806, 'new video game': 559828, 'interest always': 441327, 'always priority': 49697, 'you news': 1020086, 'for cutting': 320521, 'will aid': 992223, 'consumer interest always': 197904, 'interest always priority': 441328, 'always priority for': 49698, 'priority for and': 678568, 'for and thank': 319342, 'thank you news': 841785, 'you news for': 1020087, 'news for cutting': 560431, 'for cutting price': 320522, 'cutting price of': 223764, 'price of these': 675587, 'these essential item': 879973, 'item in these': 463358, 'trying time this': 934756, 'time this will': 897923, 'this will aid': 891402, 'will aid in': 992224, 'shelf remain': 757460, 'remain full': 709748, 'table during': 831464, 'the ontario': 862364, 'ontario government': 611595, 'launching new': 482066, 'new web': 559860, 'web portal': 974956, 'portal connecting': 664942, 'connecting worker': 194688, 'with employer': 998212, 'employer looking': 274522, 'need to ensure': 555920, 'ensure grocery store': 277957, 'store shelf remain': 810093, 'shelf remain full': 757461, 'remain full and': 709749, 'full and family': 340477, 'and family have': 62662, 'family have food': 297879, 'the table during': 869106, 'table during the': 831466, 'outbreak the ontario': 628718, 'the ontario government': 862365, 'ontario government is': 611596, 'government is launching': 360260, 'is launching new': 449242, 'launching new web': 482067, 'new web portal': 559861, 'web portal connecting': 974957, 'portal connecting worker': 664943, 'connecting worker with': 194689, 'worker with employer': 1008259, 'with employer looking': 998213, 'employer looking for': 274523, 'looking for job': 502877, 'if resident': 414734, 'resident ha': 714307, 'been contacted': 120883, 'contacted by': 200318, 'by scammer': 153884, 'scammer they': 740628, 'division online': 248689, 'online on': 608609, 'on form': 600966, 'form specifically': 329559, 'specifically designed': 788273, 'cover covid': 212208, 'gouging at': 359258, 'update if resident': 947027, 'if resident ha': 414735, 'resident ha been': 714308, 'ha been contacted': 369759, 'been contacted by': 120884, 'contacted by scammer': 200321, 'by scammer they': 153885, 'scammer they should': 740629, 'they should file': 883364, 'with the attorney': 1001208, 'protection division online': 685400, 'division online on': 248690, 'online on form': 608611, 'on form specifically': 600967, 'form specifically designed': 329560, 'specifically designed to': 788274, 'designed to cover': 238352, 'to cover covid': 903650, 'cover covid 19': 212209, 'price gouging at': 674259, 'unneeded': 942967, 'something wish': 785145, 'wish hadn': 996769, 'hadn discovered': 373847, 'discovered at': 244683, 'paper delivery': 640084, 'delivery chocolate': 233799, 'chocolate cashew': 177660, 'cashew unneeded': 166419, 'unneeded luxury': 942974, 'here is something': 393250, 'is something wish': 452117, 'something wish hadn': 785146, 'wish hadn discovered': 996770, 'hadn discovered at': 373848, 'discovered at the': 244684, 'waiting for toilet': 964343, 'toilet paper delivery': 921252, 'paper delivery chocolate': 640086, 'delivery chocolate cashew': 233800, 'chocolate cashew unneeded': 177661, 'cashew unneeded luxury': 166420, 'tissue issue': 899166, 'westmidland': 980685, '57': 20474, 'shoplifting': 761213, 'midland': 530728, 'unitedkingdom westmidland': 942275, 'westmidland man': 980686, 'man 57': 511967, '57 wa': 20485, 'wa arrested': 961580, 'arrested in': 93855, 'in england': 422572, 'england after': 276998, 'after deliberately': 35553, 'coughing up': 208760, 'up employee': 944786, 'employee had': 273904, 'had previously': 373423, 'previously accused': 672015, 'accused him': 28940, 'him of': 396674, 'of shoplifting': 589629, 'shoplifting the': 761214, 'west midland': 980522, 'midland police': 530735, 'unitedkingdom westmidland man': 942276, 'westmidland man 57': 980687, 'man 57 wa': 511968, '57 wa arrested': 20486, 'wa arrested in': 961585, 'arrested in england': 93856, 'in england after': 422574, 'england after deliberately': 276999, 'after deliberately coughing': 35554, 'deliberately coughing up': 232960, 'coughing up employee': 208761, 'up employee in': 944787, 'employee in supermarket': 273971, 'supermarket the employee': 823221, 'the employee had': 854259, 'employee had previously': 273909, 'had previously accused': 373424, 'previously accused him': 672016, 'accused him of': 28941, 'him of shoplifting': 396675, 'of shoplifting the': 589630, 'shoplifting the west': 761215, 'the west midland': 871396, 'west midland police': 980525, 'midland police said': 530736, 'they inevitably': 882461, 'inevitably find': 436424, 'first elderly': 308650, 'disabled person': 243946, 'person starving': 652614, 'starving at': 795244, 'home perhaps': 401842, 'sign with': 769263, 'their photo': 874295, 'photo at': 655129, 'supermarket entrance': 820179, 'entrance you': 278915, 'you helped': 1019210, 'helped kill': 391077, 'when they inevitably': 984266, 'they inevitably find': 882462, 'inevitably find the': 436425, 'find the first': 307286, 'the first elderly': 855303, 'first elderly or': 308651, 'or disabled person': 614980, 'disabled person starving': 243949, 'person starving at': 652615, 'starving at home': 795245, 'at home perhaps': 99080, 'home perhaps they': 401844, 'perhaps they could': 651650, 'could put sign': 209547, 'put sign with': 690815, 'sign with their': 769264, 'with their photo': 1001592, 'their photo at': 874296, 'photo at every': 655130, 'every supermarket entrance': 286247, 'supermarket entrance you': 820181, 'entrance you helped': 278916, 'you helped kill': 1019211, 'helped kill me': 391078, 'militarized': 531439, 'venezuela closing': 954439, 'closing pump': 183731, 'pump le': 689063, '19 few': 6977, 'few dozen': 303808, 'dozen will': 257928, 'be militarized': 115936, 'militarized and': 531440, 'operating for': 613071, 'responder food': 715459, 'utility to': 951327, 'venezuela closing pump': 954440, 'closing pump le': 183732, 'pump le demand': 689064, 'le demand amid': 482924, 'demand amid 19': 234928, 'amid 19 few': 52372, '19 few dozen': 6979, 'few dozen will': 303810, 'dozen will be': 257929, 'will be militarized': 992558, 'be militarized and': 115937, 'militarized and operating': 531441, 'and operating for': 68180, 'operating for first': 613072, 'first responder food': 308942, 'responder food and': 715460, 'food and utility': 313377, 'and utility to': 74814, 'utility to fill': 951328, 'bitterly': 131906, 'outrageously': 629344, 'exposed who': 292914, 'complain bitterly': 191852, 'bitterly about': 131907, 'how corrupt': 407616, 'corrupt our': 207665, 'have outrageously': 381852, 'outrageously increased': 629345, 'ourselves safe': 625489, 'pandemic no': 636038, 'wonder our': 1003986, 'are reflection': 89536, 'reflection of': 706665, '19 ha exposed': 7345, 'ha exposed who': 370571, 'exposed who we': 292915, 'who we are': 989938, 'we are people': 970657, 'are people and': 89022, 'people and nation': 646872, 'and nation we': 67425, 'nation we complain': 552370, 'we complain bitterly': 971157, 'complain bitterly about': 191853, 'bitterly about how': 131908, 'about how corrupt': 25428, 'how corrupt our': 407617, 'corrupt our leader': 207666, 'our leader are': 623693, 'leader are and': 483423, 'are and yet': 84556, 'and yet we': 75996, 'yet we have': 1016316, 'we have outrageously': 971890, 'have outrageously increased': 381853, 'outrageously increased the': 629346, 'of essential needed': 583181, 'essential needed to': 281327, 'keep ourselves safe': 471765, 'ourselves safe from': 625490, 'the pandemic no': 863034, 'pandemic no wonder': 636043, 'no wonder our': 565912, 'wonder our leader': 1003987, 'leader are reflection': 483428, 'are reflection of': 89537, 'reflection of our': 706666, 'cunningham': 220347, 'oldglorydistilling': 598704, 'to matt': 909896, 'matt cunningham': 520515, 'cunningham founder': 220348, 'for converting': 320345, 'converting your': 202575, 'your production': 1025448, 'production from': 682051, 'from bourbon': 334717, 'bourbon whiskey': 136902, 'whiskey to': 987783, 'sanitizer everyone': 734837, 'who purchase': 989477, 'purchase oldglorydistilling': 689590, 'oldglorydistilling tshirts': 598705, 'tshirts from': 934936, 'you to matt': 1021805, 'to matt cunningham': 909897, 'matt cunningham founder': 520516, 'cunningham founder of': 220349, 'founder of for': 330550, 'of for converting': 583857, 'for converting your': 320346, 'converting your production': 202576, 'your production from': 1025449, 'production from bourbon': 682053, 'from bourbon whiskey': 334718, 'bourbon whiskey to': 136903, 'whiskey to hand': 987784, 'hand sanitizer everyone': 375389, 'sanitizer everyone who': 734839, 'everyone who purchase': 287599, 'who purchase oldglorydistilling': 989478, 'purchase oldglorydistilling tshirts': 689591, 'oldglorydistilling tshirts from': 598706, 'hesitate': 394269, 'day job': 227858, 'reducing all': 706262, 'hour by': 405474, 'by half': 152742, 'half from': 374173, 'mean will': 524777, 'making half': 511098, 'half my': 374210, 'monthly salary': 538196, 'salary so': 731992, 'opening commission': 612815, 'commission please': 188876, 'below price': 126715, 'popular stuff': 664601, 'not hesitate': 569954, 'hesitate to': 394272, 'email me': 272234, '19 my day': 8725, 'my day job': 547947, 'day job is': 227862, 'job is reducing': 465906, 'is reducing all': 451380, 'reducing all hour': 706263, 'all hour by': 43153, 'hour by half': 405475, 'by half from': 152744, 'half from the': 374174, 'from the 1st': 337585, 'the 1st april': 847969, '1st april that': 12718, 'april that mean': 83695, 'that mean will': 845123, 'mean will only': 524778, 'only be making': 610152, 'be making half': 115888, 'making half my': 511099, 'half my monthly': 374212, 'my monthly salary': 549306, 'monthly salary so': 538197, 'salary so am': 731993, 'am opening commission': 50291, 'opening commission please': 612816, 'commission please see': 188877, 'please see the': 660457, 'see the information': 745846, 'the information below': 858255, 'information below price': 437767, 'below price for': 126717, 'most popular stuff': 542644, 'popular stuff is': 664602, 'stuff is there': 815108, 'is there do': 453006, 'do not hesitate': 249755, 'not hesitate to': 569956, 'hesitate to email': 394276, 'to email me': 905003, 'destroys': 239093, 'egg destroys': 269844, 'destroys demand': 239096, 'break egg destroys': 138716, 'egg destroys demand': 269845, 'destroys demand via': 239097, 'janeeyre': 464505, 'understand socialdistancing': 940714, 'socialdistancing but': 780258, 'milk told': 531881, 'the cast': 850507, 'cast of': 166759, 'of janeeyre': 585508, 'janeeyre 19': 464506, 'when people at': 983856, 'the supermarket don': 868559, 'supermarket don understand': 820002, 'don understand socialdistancing': 254009, 'understand socialdistancing but': 940716, 'socialdistancing but you': 780262, 'to the milk': 916880, 'the milk told': 860612, 'milk told by': 531882, 'told by and': 923536, 'by and the': 151851, 'and the cast': 73273, 'the cast of': 850508, 'cast of janeeyre': 166760, 'of janeeyre 19': 585509, 'janeeyre 19 stayhome': 464507, '6ftplease': 21625, 'run ready': 727789, 'ready 6ftplease': 700837, '6ftplease socialdistancing': 21626, 'store run ready': 809933, 'run ready 6ftplease': 727790, 'ready 6ftplease socialdistancing': 700838, 'selfish there': 748289, 'is selfish there': 451747, 'selfish there is': 748290, 'need for it': 554848, 'into top': 443247, 'top minute': 925617, 'before close': 122692, 'suddenly found': 817096, 'found myself': 330294, 'sweep except': 830123, 'except had': 289183, 'pay at': 644760, 'end quarantinelife': 275945, 'walked into top': 964962, 'into top minute': 443248, 'top minute before': 925618, 'minute before close': 533743, 'before close and': 122693, 'close and suddenly': 182542, 'and suddenly found': 72662, 'suddenly found myself': 817097, 'found myself in': 330297, 'myself in supermarket': 550881, 'supermarket sweep except': 823092, 'sweep except had': 830124, 'except had to': 289184, 'to pay at': 911514, 'pay at the': 644761, 'the end quarantinelife': 854305, 'protect human': 684854, 'human health': 410511, 'amp animal': 53394, 'animal welfare': 76681, 'welfare we': 977977, 'eu to': 283285, 'take urgent': 832773, 'against live': 37537, 'live export': 495806, 'export thank': 292711, 'for continuing': 320325, 'cover live': 212247, 'export after': 292605, 'after exposing': 35638, 'series early': 751244, 'to protect human': 912312, 'protect human health': 684855, 'human health amp': 410512, 'health amp animal': 386118, 'amp animal welfare': 53395, 'animal welfare we': 76682, 'welfare we re': 977978, 're calling on': 698409, 'calling on the': 156616, 'on the eu': 604099, 'the eu to': 854568, 'eu to take': 283287, 'to take urgent': 916257, 'take urgent action': 832774, 'urgent action against': 948311, 'action against live': 29932, 'against live export': 37538, 'live export thank': 495809, 'export thank you': 292712, 'you to amp': 1021748, 'to amp the': 900431, 'amp the for': 54651, 'the for continuing': 855667, 'for continuing to': 320327, 'continuing to cover': 201559, 'to cover live': 903655, 'cover live export': 212248, 'live export after': 495807, 'export after exposing': 292606, 'after exposing the': 35639, 'exposing the trade': 292939, 'the trade in': 869856, 'trade in series': 928510, 'in series early': 427812, 'series early this': 751245, 'great at': 362515, 'original are': 619553, 'of reach': 588766, 'still see': 801148, 'see world': 746089, 'world class': 1009423, 'class art': 180154, 'art without': 94200, 'without price': 1002855, 'online tour': 609621, 'tour of': 926929, 'these museum': 880327, 'museum 10': 546233, 'best virtual': 127980, 'virtual museum': 957762, 'museum and': 546235, 'and art': 58407, 'art gallery': 94158, 'gallery tour': 342948, 'great at home': 362517, 'home activity the': 400556, 'activity the original': 30510, 'the original are': 862483, 'original are out': 619554, 'out of reach': 626817, 'of reach for': 588768, 'reach for now': 699922, 'now but you': 574298, 'can still see': 159791, 'still see world': 801152, 'see world class': 746090, 'world class art': 1009424, 'class art without': 180155, 'art without price': 94201, 'without price with': 1002857, 'price with an': 677605, 'with an online': 997226, 'an online tour': 56640, 'online tour of': 609624, 'tour of these': 926932, 'of these museum': 591842, 'these museum 10': 880328, 'museum 10 of': 546234, 'world best virtual': 1009357, 'best virtual museum': 127981, 'virtual museum and': 957763, 'museum and art': 546236, 'and art gallery': 58408, 'art gallery tour': 94159, 'in really': 427303, 'really crappy': 702082, 'crappy mood': 214938, 'so inconsiderate': 777391, 'me in really': 522974, 'in really crappy': 427305, 'really crappy mood': 702083, 'crappy mood smh': 214939, 'smh people are': 775683, 'are so inconsiderate': 90205, 'so inconsiderate nofood': 777392, 'strategia': 812531, 'epa': 279279, 'microsure': 530521, 'strategia join': 812532, 'with fda': 998397, 'fda registered': 300908, 'registered amp': 707637, 'amp approved': 53398, 'approved label': 83168, 'label hour': 478343, 'hour defense': 405538, 'defense hand': 232133, 'amp epa': 53742, 'epa approved': 279280, 'approved microsure': 83174, 'microsure all': 530522, 'all purpose': 44099, 'purpose disinfectant': 690114, 'in effort': 422511, 'strategia join the': 812533, 'join the war': 466870, 'the war against': 871064, 'war against covid': 966341, '19 with fda': 12129, 'with fda registered': 998399, 'fda registered amp': 300909, 'registered amp approved': 707638, 'amp approved label': 53399, 'approved label hour': 83169, 'label hour defense': 478344, 'hour defense hand': 405539, 'defense hand sanitizer': 232134, 'sanitizer amp epa': 734364, 'amp epa approved': 53743, 'epa approved microsure': 279282, 'approved microsure all': 83175, 'microsure all purpose': 530523, 'all purpose disinfectant': 44101, 'purpose disinfectant in': 690116, 'disinfectant in effort': 245689, 'in effort to': 422512, 'end the spread': 275980, 'horrifying': 404171, 'airfare': 39892, 'roundtrip': 726410, 'vegasshutdown': 953901, 'and kind': 65851, 'of horrifying': 584757, 'horrifying what': 404183, 'to airfare': 900200, 'airfare price': 39897, 'at chart': 98233, 'of roundtrip': 589165, 'roundtrip from': 726411, 'from dc': 335111, 'dc to': 228980, 'to vega': 918132, 'vega amid': 953807, 'the vega': 870665, 'vega strip': 953830, 'strip being': 813815, 'being about': 124805, 'about entirely': 25176, 'entirely shut': 278807, 'down airline': 256453, 'airline vegasshutdown': 40052, 'vegasshutdown vega': 953902, 'vega view': 953838, 'view my': 957116, 'own not': 632114, 'of dod': 582757, 'from it amazing': 336106, 'it amazing and': 456451, 'amazing and kind': 50643, 'and kind of': 65854, 'kind of horrifying': 474905, 'of horrifying what': 584758, 'horrifying what ha': 404184, 'what ha done': 981534, 'ha done to': 370422, 'done to airfare': 255063, 'to airfare price': 900201, 'airfare price this': 39898, 'this is look': 888307, 'is look at': 449439, 'look at chart': 502257, 'at chart of': 98234, 'chart of roundtrip': 173842, 'of roundtrip from': 589166, 'roundtrip from dc': 726412, 'from dc to': 335112, 'dc to vega': 228982, 'to vega amid': 918133, 'vega amid the': 953808, 'amid the vega': 52719, 'the vega strip': 870666, 'vega strip being': 953831, 'strip being about': 813816, 'being about entirely': 124806, 'about entirely shut': 25177, 'entirely shut down': 278808, 'shut down airline': 767798, 'down airline vegasshutdown': 256454, 'airline vegasshutdown vega': 40053, 'vegasshutdown vega view': 953903, 'vega view my': 953839, 'view my own': 957118, 'my own not': 549649, 'own not of': 632115, 'not of dod': 570719, 'rule stay': 727350, 'supermarket chemist': 819678, 'bank protect': 110117, 'simple action': 769979, 'action for': 30018, 'avoid catching': 105027, 'it click': 457172, 'the rule stay': 866051, 'rule stay at': 727351, 'home but if': 400836, 'you do have': 1018254, 'the supermarket chemist': 868516, 'supermarket chemist or': 819682, 'chemist or bank': 175442, 'or bank protect': 614494, 'bank protect yourself': 110118, 'protect yourself with': 685106, 'yourself with these': 1026764, 'with these simple': 1001657, 'these simple action': 880696, 'simple action for': 769980, 'action for more': 30020, 'information on coronavirus': 437909, 'to avoid catching': 900874, 'avoid catching it': 105029, 'catching it click': 167094, 'it click here': 457173, 'american for': 51984, 'safety do': 730512, 'not look': 570456, 'offer from': 594635, 'from russian': 337139, 'russian company': 728620, 'company just': 190827, 'american for your': 51986, 'your own safety': 1025158, 'own safety do': 632178, 'safety do not': 730513, 'do not look': 249779, 'not look at': 570457, 'at these price': 101205, '19 test on': 11079, 'test on offer': 839110, 'on offer from': 602480, 'offer from russian': 594636, 'from russian company': 337140, 'russian company just': 728621, 'company just don': 190828, 'sort out': 786147, 'in mass': 425169, 'mass and': 519734, 'and catch': 59621, '19 rather': 9958, 'than thinking': 841307, 'hard to sort': 378091, 'to sort out': 914925, 'sort out delivery': 786148, 'out delivery of': 625946, 'food so let': 316658, 'supermarket in mass': 820930, 'in mass and': 425170, 'mass and catch': 519735, 'and catch covid': 59623, 'covid 19 rather': 213654, '19 rather than': 9960, 'rather than thinking': 697556, 'askforhelp': 95915, 'offersomehelp': 595336, 'until about': 943667, 'about ten': 26308, 'ago supermarket': 38482, 'delivery really': 234388, 'really wasn': 702707, 'wasn thing': 968033, 'thing so': 884750, 'surprised quite': 828598, 'quite so': 694920, 'in arm': 420498, 'arm much': 92902, 'are askforhelp': 84630, 'askforhelp offersomehelp': 95916, 'offersomehelp stayhomesavelives': 595337, 'up until about': 946497, 'until about ten': 943668, 'about ten year': 26309, 'ten year ago': 837812, 'year ago supermarket': 1014362, 'ago supermarket home': 38483, 'home delivery really': 401040, 'delivery really wasn': 234389, 'really wasn thing': 702708, 'wasn thing so': 968034, 'thing so am': 884751, 'so am surprised': 776496, 'am surprised quite': 50466, 'surprised quite so': 828599, 'quite so many': 694921, 'people are up': 647107, 'are up in': 91365, 'up in arm': 945148, 'in arm much': 420500, 'arm much they': 92903, 'much they are': 545367, 'they are askforhelp': 881205, 'are askforhelp offersomehelp': 84631, 'askforhelp offersomehelp stayhomesavelives': 95917, 'edemame': 268483, 'bad long': 107932, 'you weren': 1022264, 'weren really': 980416, 'really particular': 702479, 'particular about': 642601, 'got im': 358624, 'im now': 416562, 'the proud': 864719, 'proud owner': 686042, 'of edemame': 582972, 'edemame spaghetti': 268484, 'wasn bad long': 967961, 'bad long you': 107933, 'long you weren': 501878, 'you weren really': 1022265, 'weren really particular': 980417, 'really particular about': 702480, 'particular about what': 642602, 'what you got': 982675, 'you got im': 1018900, 'got im now': 358625, 'im now the': 416563, 'now the proud': 576064, 'the proud owner': 864720, 'proud owner of': 686043, 'owner of edemame': 632512, 'of edemame spaghetti': 582973, 'sighting': 769068, 'loch': 499009, 'ness': 557498, 'buying sighting': 151032, 'sighting of': 769069, 'of pasta': 587805, 'pasta on': 643771, 'more rare': 540183, 'rare than': 697102, 'the loch': 859581, 'loch ness': 499010, 'ness monster': 557501, 'monster currently': 537456, 'currently selling': 221669, '50 gram': 19710, 'gram or': 361833, 'or 35': 614193, '35 for': 17889, 'for half': 322096, 'half no': 374213, 'no tick': 565721, 'tick sorry': 895574, 'guy panicbuyinguk': 369106, 'panic buying sighting': 637887, 'buying sighting of': 151033, 'sighting of pasta': 769071, 'of pasta on': 587810, 'pasta on supermarket': 643772, 'shelf is more': 757239, 'is more rare': 449719, 'more rare than': 540184, 'rare than the': 697104, 'than the loch': 841250, 'the loch ness': 859582, 'loch ness monster': 499011, 'ness monster currently': 557502, 'monster currently selling': 537457, 'currently selling it': 221670, 'selling it for': 749313, 'it for 50': 458067, 'for 50 gram': 318864, '50 gram or': 19711, 'gram or 35': 361834, 'or 35 for': 614194, '35 for half': 17890, 'for half no': 322100, 'half no tick': 374214, 'no tick sorry': 565722, 'tick sorry guy': 895575, 'sorry guy panicbuyinguk': 786054, 'helper not': 391132, 'not nurse': 570710, 'am grocery': 50108, 'store myself': 809021, 'been verbally': 122324, 'abused for': 27694, 'store outage': 809404, 'outage if': 627923, 'you continue': 1018032, 'least tip': 484671, 'receive 19': 703430, 'helper not nurse': 391133, 'not nurse or': 570712, 'nurse or doctor': 577441, 'or doctor but': 615023, 'doctor but am': 250858, 'but am grocery': 145161, 'am grocery store': 50109, 'grocery store myself': 365583, 'store myself and': 809022, 'and my colleague': 67358, 'my colleague have': 547732, 'colleague have been': 186211, 'have been verbally': 379736, 'been verbally abused': 122325, 'verbally abused for': 954755, 'abused for much': 27695, 'for much of': 323647, 'much of the': 545198, 'of the last': 591175, 'last week due': 480645, 'due to store': 261977, 'to store outage': 915635, 'store outage if': 809405, 'outage if you': 627924, 'if you continue': 415413, 'you continue to': 1018033, 'continue to do': 201181, 'this at least': 886448, 'at least tip': 99559, 'least tip for': 484672, 'tip for the': 898787, 'for the service': 326677, 'the service you': 866741, 'service you receive': 753127, 'you receive 19': 1020849, 'understand if': 940655, 'entire family': 278672, 'and walk': 75138, 'restaurant holding': 716506, 'holding hand': 400113, 'hand having': 375009, 'panic right': 638493, 'don understand if': 254007, 'understand if you': 940656, 'you are picking': 1017197, 'picking up food': 655878, 'up food to': 944902, 'go you have': 354538, 'have to bring': 383168, 'bring the entire': 140085, 'the entire family': 854355, 'entire family and': 278673, 'family and walk': 297611, 'and walk into': 75139, 'into the restaurant': 443162, 'the restaurant holding': 865652, 'restaurant holding hand': 716507, 'holding hand having': 400114, 'hand having an': 375010, 'having an absolute': 383967, 'an absolute panic': 55040, 'absolute panic right': 27271, 'panic right now': 638494, 'frenetic': 332766, 'this frightening': 887623, 'frightening and': 334053, 'and frenetic': 63294, 'frenetic energy': 332767, 'energy more': 276510, 'else send': 271876, 'love via': 504867, 'via checkout': 955861, 'be so nice': 117262, 'folk they take': 312272, 'they take on': 883523, 'take on this': 832410, 'on this frightening': 604608, 'this frightening and': 887624, 'frightening and frenetic': 334054, 'and frenetic energy': 63295, 'frenetic energy more': 332768, 'energy more than': 276511, 'more than anyone': 540591, 'than anyone else': 840355, 'anyone else send': 80289, 'else send prayer': 271877, 'you love via': 1019733, 'love via checkout': 504868, 'via checkout grocery': 955862, 'la county': 478146, 'county dept': 211361, 'amp business': 53474, 'business affair': 143241, 'affair office': 34079, 'capacity of': 162550, 'it telephone': 461456, 'telephone call': 836802, 'call center': 155813, 'center to': 169303, 'provide the': 686506, 'best service': 127896, 'service possible': 752708, 'possible they': 665824, 'will respond': 994668, 'each online': 264149, 'online request': 608858, 'request within': 713236, 'the la county': 858875, 'la county dept': 478148, 'county dept of': 211362, 'dept of consumer': 237743, 'of consumer amp': 581704, 'consumer amp business': 196186, 'amp business affair': 53475, 'business affair office': 143245, 'affair office of': 34080, 'office of small': 595501, 'small business will': 774905, 'will be increasing': 992514, 'be increasing the': 115467, 'increasing the capacity': 433707, 'the capacity of': 850357, 'capacity of it': 162552, 'of it telephone': 585452, 'it telephone call': 461457, 'telephone call center': 836803, 'call center to': 155818, 'center to provide': 169305, 'to provide the': 912439, 'provide the best': 686508, 'the best service': 849550, 'best service possible': 127897, 'service possible they': 752709, 'possible they will': 665826, 'they will respond': 883880, 'will respond to': 994669, 'respond to each': 715319, 'to each online': 904827, 'each online request': 264150, 'online request within': 608860, 'request within 48': 713237, 'be sending': 117076, 'sending money': 750052, 'money by': 536650, 'by check': 152112, 'or direct': 614974, 'direct deposit': 243309, 'deposit to': 237518, 'detail are': 239156, 'some really': 783694, 'are report that': 89591, 'government may soon': 360351, 'soon be sending': 785647, 'be sending money': 117078, 'sending money by': 750053, 'money by check': 536652, 'by check or': 152113, 'check or direct': 174520, 'or direct deposit': 614975, 'direct deposit to': 243315, 'deposit to each': 237519, 'each of the': 264138, 'of the detail': 590946, 'the detail are': 853204, 'detail are still': 239158, 'still being worked': 800281, 'out but the': 625800, 'but the is': 147349, 'the is sharing': 858527, 'is sharing some': 451834, 'sharing some really': 755584, 'some really important': 783696, 'know now to': 476634, 'now to avoid': 576163, 'babysitter': 106778, 'pizza place': 657193, 'place acted': 657292, 'acted like': 29841, 'be fired': 114864, 'fired if': 308175, 'if teacher': 414918, 'teacher acted': 835419, 'if new': 414471, 'new employee': 558676, 'in accounting': 420002, 'accounting acted': 28821, 'if babysitter': 413891, 'babysitter acted': 106779, 'fired in': 308179, 'november fire': 573852, 'him trumpmeltdown': 396757, 'if the manager': 414998, 'manager of pizza': 512764, 'of pizza place': 588131, 'pizza place acted': 657194, 'place acted like': 657293, 'acted like this': 29843, 'like this they': 491540, 'this they be': 890555, 'they be fired': 881532, 'be fired if': 114866, 'fired if teacher': 308178, 'if teacher acted': 414919, 'teacher acted like': 835420, 'fired if new': 308177, 'if new employee': 414473, 'new employee in': 558677, 'employee in accounting': 273954, 'in accounting acted': 420003, 'accounting acted like': 28822, 'fired if babysitter': 308176, 'if babysitter acted': 413892, 'babysitter acted like': 106780, 'be fired in': 114867, 'fired in november': 308180, 'in november fire': 425978, 'november fire him': 573853, 'fire him trumpmeltdown': 308090, 'geneva': 345748, 'preventive stop': 671927, 'stop in': 804763, 'in geneva': 423262, 'geneva resident': 345749, 'resident come': 714274, 'to clap': 902791, 'clap in': 179962, 'in appreciation': 420458, 'appreciation of': 82883, 'the brave': 849951, 'brave medical': 138224, 'pharmacist supermarket': 654177, 'maintain this': 509071, 'it environment': 457840, 'environment safe': 279143, 'safe township': 730072, 'township healthy': 927615, 'day of preventive': 228092, 'of preventive stop': 588388, 'preventive stop in': 671928, 'stop in geneva': 804765, 'in geneva resident': 423263, 'geneva resident come': 345750, 'resident come out': 714275, 'come out at': 187462, 'out at to': 625752, 'at to clap': 101326, 'to clap in': 902793, 'clap in appreciation': 179963, 'in appreciation of': 420459, 'appreciation of the': 82885, 'of the brave': 590830, 'the brave medical': 849953, 'brave medical worker': 138225, 'medical worker pharmacist': 526508, 'worker pharmacist supermarket': 1007567, 'pharmacist supermarket employee': 654178, 'employee and other': 273576, 'worker who come': 1008199, 'who come out': 988472, 'come out every': 187466, 'out every day': 626029, 'every day to': 285854, 'day to maintain': 228570, 'to maintain this': 909602, 'maintain this city': 509072, 'this city and': 886774, 'city and it': 179047, 'and it environment': 65521, 'it environment safe': 457841, 'environment safe township': 279144, 'safe township healthy': 730073, 'township healthy staysafe': 927616, 'local gas': 498008, 'station drop': 796384, 'price spread': 676582, 'spread positivity': 790757, 'positivity for': 665512, 'local gas station': 498009, 'gas station drop': 344105, 'station drop price': 796385, 'drop price spread': 260376, 'price spread positivity': 676583, 'spread positivity for': 790758, 'positivity for day': 665513, 'healthcare are': 387036, 'home collapsing': 400907, 'collapsing from': 186137, 'from exhaustion': 335345, 'exhaustion waking': 290202, 'shelf refrigerator': 757458, 'refrigerator because': 706803, 'someone helping': 784500, 'ask how': 95559, 'help kindness': 389984, 'friend in healthcare': 333650, 'in healthcare are': 423607, 'healthcare are coming': 387037, 'are coming home': 85435, 'coming home collapsing': 188075, 'home collapsing from': 400908, 'collapsing from exhaustion': 186140, 'from exhaustion waking': 335348, 'exhaustion waking up': 290203, 'up to empty': 946372, 'to empty shelf': 905033, 'empty shelf refrigerator': 275090, 'shelf refrigerator because': 757459, 'refrigerator because they': 706805, 'not have time': 569882, 'know someone helping': 476728, 'someone helping to': 784501, 'to fight this': 905814, 'fight this virus': 304922, 'this virus please': 891020, 'virus please ask': 958637, 'please ask how': 659674, 'ask how you': 95560, 'can help kindness': 158630, 'avengersendgame': 104769, 'in somewhat': 428117, 'somewhat like': 785261, 'stark avengersendgame': 794155, 'avengersendgame bekindtoeachother': 104770, 'it back in': 456669, 'back in somewhat': 107096, 'in somewhat like': 428118, 'somewhat like normal': 785262, 'tony stark avengersendgame': 924554, 'stark avengersendgame bekindtoeachother': 794156, 'avengersendgame bekindtoeachother nhscovidheroes': 104771, 'buying healthy': 150474, 'through crisis': 894396, 'via eating': 955945, 'panic buying healthy': 637759, 'buying healthy food': 150475, 'food to get': 317256, 'get through crisis': 348433, 'through crisis via': 894399, 'crisis via eating': 218313, 'did just': 240671, 'just spend': 469839, 'hour grocery': 405652, 'cannot pick': 162037, 'did just spend': 240672, 'just spend hour': 469841, 'spend hour grocery': 788614, 'hour grocery shopping': 405653, 'shopping online only': 763465, 'online only to': 608635, 'find out cannot': 307136, 'out cannot pick': 625831, 'cannot pick up': 162038, 'up my grocery': 945429, 'my grocery for': 548574, 'grocery for week': 364533, 'retailer and grocery': 718967, 'store are trying': 806532, 'trying to adapt': 934761, 'adapt to covid': 31280, '19 some are': 10692, 'some are staying': 782329, 'are staying open': 90375, 'staying open with': 798681, 'open with reduced': 612682, 'with reduced hour': 1000434, 'many car': 513872, 'offering refund': 595229, 'refund during': 706896, 'and center': 59671, 'economic justice': 267162, 'justice say': 470432, 'say more': 738952, 'more need': 539828, 'consumer via': 199446, 'many car insurance': 513874, 'car insurance company': 163145, 'are offering refund': 88674, 'offering refund during': 595230, 'refund during the': 706898, 'pandemic but and': 635039, 'but and center': 145186, 'and center for': 59672, 'center for economic': 169204, 'for economic justice': 320944, 'economic justice say': 267163, 'justice say more': 470433, 'say more need': 738953, 'more need to': 539829, 'be done to': 114569, 'done to help': 255070, 'help consumer via': 389525, 'untransformed': 943960, 'coining': 185688, 'confiscatory': 194258, 'blackfriday': 132175, 'greedybastards': 363636, 'untransformed sa': 943961, 'sa supermarket': 728946, 'chain retailer': 171057, 'retailer coining': 719085, 'coining it': 185689, 'with confiscatory': 997731, 'confiscatory pricing': 194259, 'pricing practice': 677963, 'practice must': 668610, 'themselves who': 876941, 'need blackfriday': 554550, 'blackfriday anyway': 132176, 'anyway with': 81066, 'with steep': 1000962, 'discount to': 244556, 'to cream': 903694, 'cream it': 215561, 'covid greedybastards': 214165, 'untransformed sa supermarket': 943962, 'sa supermarket chain': 728947, 'supermarket chain retailer': 819631, 'chain retailer coining': 171058, 'retailer coining it': 719086, 'coining it on': 185691, 'back of consumer': 107169, 'of consumer panic': 581756, 'consumer panic caused': 198330, '19 pandemic with': 9526, 'pandemic with confiscatory': 637026, 'with confiscatory pricing': 997732, 'confiscatory pricing practice': 194260, 'pricing practice must': 677965, 'practice must be': 668611, 'must be asking': 546493, 'asking themselves who': 96087, 'themselves who need': 876942, 'who need blackfriday': 989309, 'need blackfriday anyway': 554551, 'blackfriday anyway with': 132177, 'anyway with steep': 81067, 'with steep discount': 1000963, 'steep discount to': 799385, 'discount to cream': 244558, 'to cream it': 903695, 'cream it when': 215562, 'when you got': 984565, 'you got covid': 1018898, 'got covid greedybastards': 358511, 'from oh': 336646, 'oh so': 596449, 'to oh': 910875, 'god you': 354849, 'store real': 809752, 'real fast': 701170, 'fast grocerystore': 299990, 'grocerystore essentialworkers': 366302, 'essentialworkers 19': 281949, 'we went from': 973775, 'went from oh': 979018, 'from oh so': 336647, 'oh so you': 596452, 'so you work': 778856, 'you work at': 1022419, 'store to oh': 810790, 'to oh my': 910876, 'my god you': 548532, 'god you work': 354850, 'grocery store real': 365704, 'store real fast': 809753, 'real fast grocerystore': 701171, 'fast grocerystore essentialworkers': 299991, 'grocerystore essentialworkers 19': 366303, 'essentialworkers 19 quarantine': 281950, '19 quarantine socialdistancing': 9917, 'personalized': 653014, 'harriscounty': 378511, 'constable': 195595, 'inbox gulf': 431255, 'gulf coast': 368632, 'coast distillery': 185101, 'distillery donates': 247748, 'donates large': 254396, 'large personalized': 479740, 'personalized bottle': 653017, 'to harriscounty': 907180, 'harriscounty constable': 378512, 'constable will': 195596, 'refill bottle': 706549, 'for deputy': 320659, 'deputy texas': 237805, 'inbox gulf coast': 431256, 'gulf coast distillery': 368634, 'coast distillery donates': 185102, 'distillery donates large': 247749, 'donates large personalized': 254397, 'large personalized bottle': 479741, 'personalized bottle of': 653018, 'sanitizer to harriscounty': 735927, 'to harriscounty constable': 907181, 'harriscounty constable will': 378513, 'constable will be': 195597, 'be used to': 117925, 'used to refill': 950082, 'to refill bottle': 913061, 'refill bottle for': 706550, 'bottle for deputy': 136222, 'for deputy texas': 320660, 'm8': 507244, 'laser': 480064, 'newburgh': 560029, 'saturdaymotivation': 737102, 'compete with': 191603, 'only location': 610740, 'in ny': 425999, 'ny with': 577931, 'with ml': 999529, 'ml m8': 534720, 'm8 laser': 507245, 'laser but': 480065, 'and best': 58906, 'best package': 127818, 'package call': 633231, 'your appointment': 1022801, 'appointment today': 82697, 'today newburgh': 919922, 'newburgh health': 560030, 'health saturdaymotivation': 386826, 'saturdaymotivation lockdown': 737105, 'hard to compete': 378056, 'to compete with': 903122, 'compete with the': 191605, 'the best not': 849529, 'best not only': 127787, 'only are we': 610116, 'we the only': 973520, 'the only location': 862318, 'only location in': 610741, 'location in ny': 498926, 'in ny with': 426010, 'ny with ml': 577932, 'with ml m8': 999530, 'ml m8 laser': 534721, 'm8 laser but': 507246, 'laser but we': 480066, 'but we offer': 147757, 'price and best': 672370, 'and best package': 58908, 'best package call': 127819, 'package call or': 633232, 'or email today': 615150, 'email today and': 272345, 'today and book': 919195, 'and book your': 59064, 'book your appointment': 134644, 'your appointment today': 1022802, 'appointment today newburgh': 82698, 'today newburgh health': 919923, 'newburgh health saturdaymotivation': 560031, 'health saturdaymotivation lockdown': 386827, 'retail therapy': 718778, 'therapy is': 877923, 'is dead': 447042, 'retail therapy is': 718781, 'therapy is dead': 877924, 'tweaked': 936281, 'causing historic': 168045, 'historic stock': 397974, 'crash the': 215041, 'philippine stock': 654746, 'ha tweaked': 372384, 'tweaked it': 936282, 'it trading': 461837, 'rule to': 727384, 'to temper': 916353, 'temper the': 837355, 'listed company': 494613, '19 pandemic causing': 9288, 'pandemic causing historic': 635113, 'causing historic stock': 168046, 'historic stock market': 397975, 'market crash the': 516251, 'crash the philippine': 215043, 'the philippine stock': 863675, 'philippine stock exchange': 654747, 'exchange ha tweaked': 289453, 'ha tweaked it': 372385, 'tweaked it trading': 936283, 'it trading rule': 461838, 'trading rule to': 928915, 'rule to temper': 727388, 'to temper the': 916354, 'temper the fall': 837356, 'fall of listed': 297002, 'of listed company': 585884, 'confront': 194287, 'the syrian': 869083, 'syrian regime': 831056, 'regime doe': 707349, 'the mean': 860343, 'mean nor': 524569, 'nor most': 566964, 'will to': 995205, 'to confront': 903197, 'confront the': 194293, 'people what': 650238, 'it want': 462233, 'spread within': 790891, 'within to': 1002448, 'population so': 664737, 'international community': 441769, 'community will': 190233, 'will lift': 993986, 'lift sanction': 489454, 'sanction against': 733611, 'the syrian regime': 869085, 'syrian regime doe': 831057, 'regime doe not': 707350, 'have the mean': 383000, 'the mean nor': 860347, 'mean nor most': 524570, 'nor most importantly': 566965, 'importantly the will': 419151, 'the will to': 871584, 'will to confront': 995207, 'to confront the': 903199, 'confront the crisis': 194294, 'crisis and help': 217028, 'and help it': 64454, 'help it people': 389947, 'it people what': 460301, 'people what it': 650239, 'what it want': 981761, 'it want is': 462234, 'want is the': 965829, 'is the virus': 452973, 'to spread within': 915084, 'spread within to': 790892, 'within to population': 1002449, 'to population so': 911895, 'population so that': 664738, 'that the international': 846753, 'the international community': 858364, 'international community will': 441771, 'community will lift': 190234, 'will lift sanction': 993987, 'lift sanction against': 489455, 'sanction against it': 733613, 'real reason': 701333, 'the real reason': 865235, 'real reason you': 701335, 'store for two': 807850, 'sf': 754245, 'my op': 549598, 'ed in': 268453, 'person jail': 652511, 'jail visit': 464287, 'visit banned': 959192, 'banned bc': 110559, '19 phone': 9676, 'call are': 155772, 'way anxious': 969467, 'anxious family': 78852, 'family can': 297681, 'touch incarcerated': 926500, 'incarcerated loved': 431320, 'stop charging': 804567, 'charging high': 173486, 'for phone': 324531, 'call amp': 155754, 'amp make': 54095, 'them free': 875734, 'free sf': 332146, 'sf did': 754248, 'it other': 460158, 'my op ed': 549599, 'op ed in': 611797, 'ed in person': 268454, 'in person jail': 426631, 'person jail visit': 652512, 'jail visit banned': 464288, 'visit banned bc': 959193, 'banned bc of': 110560, 'covid 19 phone': 213578, '19 phone call': 9677, 'phone call are': 654923, 'call are only': 155774, 'are only way': 88779, 'only way anxious': 611438, 'way anxious family': 969468, 'anxious family can': 78853, 'family can stay': 297685, 'can stay in': 159740, 'stay in touch': 797068, 'in touch incarcerated': 430231, 'touch incarcerated loved': 926501, 'incarcerated loved one': 431321, 'loved one we': 504927, 'one we must': 607392, 'must stop charging': 546920, 'stop charging high': 804568, 'charging high price': 173487, 'price for phone': 674024, 'for phone call': 324532, 'phone call amp': 654922, 'call amp make': 155755, 'amp make them': 54096, 'make them free': 510607, 'them free sf': 875742, 'free sf did': 332147, 'sf did it': 754249, 'did it other': 240665, 'it other place': 460159, 'other place can': 620718, 'place can too': 657379, 'skillet': 773016, 'the skillet': 867303, 'skillet world': 773017, 'tour 2009': 926916, '2009 at': 13706, 'definitely carrying': 232319, 'carrying covid': 165173, 'the woman with': 871671, 'woman with the': 1003700, 'with the skillet': 1001480, 'the skillet world': 867304, 'skillet world tour': 773018, 'world tour 2009': 1010107, 'tour 2009 at': 926917, '2009 at the': 13707, 'supermarket is definitely': 821082, 'is definitely carrying': 447083, 'definitely carrying covid': 232320, 'carrying covid 19': 165174, 'not promise': 571115, 'promise they': 683695, 'they the': 883548, 'vulnerable would': 961267, 'delivery every': 233982, 'delivery that': 234616, 'tried say': 931814, 'not delivering': 568986, 'delivering and': 233465, 'store conservative': 807142, 'conservative vulnerable': 194923, 'vulnerable stayathome': 961175, 'did the government': 240849, 'the government not': 856569, 'government not promise': 360384, 'not promise they': 571116, 'promise they the': 683696, 'they the vulnerable': 883550, 'the vulnerable would': 871007, 'vulnerable would have': 961268, 'would have food': 1011875, 'food delivery every': 314124, 'delivery every supermarket': 233983, 'every supermarket food': 286250, 'supermarket food delivery': 820356, 'food delivery that': 314151, 'delivery that have': 234617, 'that have tried': 844243, 'have tried say': 383402, 'tried say they': 931815, 'are not delivering': 88348, 'not delivering and': 568987, 'delivering and are': 233466, 'and are focusing': 58315, 'focusing on store': 312000, 'on store conservative': 603694, 'store conservative vulnerable': 807143, 'conservative vulnerable stayathome': 194924, 'vulnerable stayathome selfisolation': 961176, 'man charged after': 512020, 'claiming he ha': 179904, 'gibb': 349901, 'loblaws report': 497633, 'on gibb': 601090, 'gibb street': 349902, 'in ha': 423496, 'been closed': 120836, 'loblaws report that': 497634, 'report that an': 712313, 'an employee at': 55703, 'employee at it': 273647, 'at it store': 99337, 'it store on': 461295, 'store on gibb': 809193, 'on gibb street': 601091, 'gibb street in': 349903, 'street in ha': 812995, 'in ha tested': 423498, 'the store ha': 868030, 'store ha now': 808014, 'now been closed': 574225, 'hitendra': 398536, 'chaturvedi': 174033, 'if panic': 414593, 'spending which': 789047, 'this economy': 887346, 'economy it': 268022, 'hit member': 398324, 'member hitendra': 528107, 'hitendra chaturvedi': 398537, 'chaturvedi discus': 174034, 'via economy': 955948, 'if panic set': 414596, 'set in and': 753399, 'in and if': 420367, 'you don go': 1018317, 'don go out': 253569, 'go out consumer': 353942, 'out consumer spending': 625883, 'consumer spending which': 199105, 'spending which is': 789049, 'backbone of this': 107507, 'of this economy': 591965, 'this economy it': 887347, 'economy it is': 268024, 'be hit member': 115270, 'hit member hitendra': 398325, 'member hitendra chaturvedi': 528108, 'hitendra chaturvedi discus': 398538, 'chaturvedi discus the': 174035, 'discus the effect': 244915, 'effect of via': 269069, 'of via economy': 592792, 'made few': 507739, 'meet our': 527549, 'customer need': 222614, 'challenging period': 171621, 'period including': 651792, 'including adjustment': 431862, 'the addition': 848342, 'addition of': 31724, 'daily priority': 224751, 'priority shopping': 678643, 'time view': 898192, 'latest live': 481423, 'online here': 608368, 've made few': 953359, 'made few more': 507740, 'few more change': 303945, 'more change to': 538800, 'change to better': 172340, 'better meet our': 128367, 'meet our customer': 527550, 'our customer need': 622669, 'customer need during': 222616, 'during this challenging': 263266, 'this challenging period': 886732, 'challenging period including': 171622, 'period including adjustment': 651793, 'including adjustment to': 431863, 'to our opening': 911225, 'hour and the': 405420, 'and the addition': 73235, 'the addition of': 848343, 'addition of daily': 31725, 'of daily priority': 582318, 'daily priority shopping': 224752, 'priority shopping time': 678647, 'shopping time view': 764148, 'time view our': 898193, 'view our latest': 957145, 'our latest live': 623669, 'latest live update': 481424, 'live update on': 496101, 'on the coronavirus': 604041, 'the coronavirus online': 851884, 'coronavirus online here': 206350, 'online here gt': 608369, 'huffing': 409939, 'haribos': 378362, 'working 48': 1008472, '48 shift': 19325, 'get no': 347666, 'my 19': 547131, 'son huffing': 785388, 'huffing because': 409940, 'because failed': 119056, 'up haribos': 945059, 'haribos from': 378363, 'nh worker in': 562188, 'worker in tear': 1007204, 'tear after working': 835923, 'after working 48': 36578, 'working 48 shift': 1008473, '48 shift and': 19326, 'shift and can': 758233, 'can get no': 158433, 'get no food': 347668, 'no food my': 564263, 'food my 19': 315493, 'my 19 year': 547132, '19 year old': 12244, 'old son huffing': 598475, 'son huffing because': 785389, 'huffing because failed': 409941, 'because failed to': 119057, 'failed to pick': 296184, 'pick up haribos': 655728, 'up haribos from': 945060, 'haribos from the': 378364, 'the supermarket coronacrisis': 868530, 'zero collect': 1027419, 'collect or': 186306, 'for ocado': 324015, 'rate soon': 697373, 'soon sick': 785820, 'essential please': 281399, 'not book': 568585, 'book online': 134577, 'grocery unless': 366089, 'if sick': 414809, 'waitrose have zero': 964453, 'have zero collect': 383726, 'zero collect or': 1027420, 'collect or delivery': 186307, 'same for ocado': 733072, 'for ocado at': 324016, 'this rate soon': 889805, 'rate soon sick': 697374, 'soon sick people': 785821, 'sick people will': 768585, 'leave home to': 484823, 'get essential please': 346951, 'essential please do': 281402, 'do not book': 249682, 'not book online': 568587, 'book online grocery': 134579, 'online grocery unless': 608335, 'grocery unless you': 366090, 'of if sick': 584973, 'if sick people': 414810, 'sick people stay': 768584, 'altruism': 49399, 'vanderbilt': 952393, 'goldsmith': 356106, 'doe altruism': 251326, 'altruism trump': 49402, 'trump self': 933834, 'self interest': 747658, 'first installment': 308733, 'our vanderbilt': 625257, 'vanderbilt business': 952394, 'business faculty': 143728, 'faculty kelly': 296047, 'kelly goldsmith': 472715, 'goldsmith associate': 356107, 'of marketing': 586241, 'marketing offer': 517662, 'offer her': 594652, 'her insight': 392143, 'doe altruism trump': 251327, 'altruism trump self': 49403, 'trump self interest': 933835, 'self interest in': 747659, 'in pandemic in': 426458, 'the first installment': 855318, 'first installment of': 308734, 'installment of our': 440056, 'of our vanderbilt': 587587, 'our vanderbilt business': 625258, 'vanderbilt business faculty': 952395, 'business faculty kelly': 143729, 'faculty kelly goldsmith': 296048, 'kelly goldsmith associate': 472716, 'goldsmith associate professor': 356108, 'professor of marketing': 682579, 'of marketing offer': 586244, 'marketing offer her': 517663, 'offer her insight': 594653, 'her insight on': 392144, 'topahov': 925762, 'hoardingvirus': 399683, 'exponentialgrowth': 292586, 'flatteningthecurve': 310149, 'toiletpaperwars': 923343, 'new topahov': 559771, 'topahov 20': 925763, '20 toilet': 13399, 'paper hoardingvirus': 640287, 'hoardingvirus 2020': 399684, '2020 still': 14614, 'still showing': 801194, 'showing exponentialgrowth': 767444, 'exponentialgrowth flatteningthecurve': 292587, 'flatteningthecurve toiletpaper': 310151, 'toiletpaperpanic toiletpaperwars': 923293, 'toiletpaperwars coronavid19': 923344, 'coronavid19 stayathome': 205393, 'the new topahov': 861569, 'new topahov 20': 559772, 'topahov 20 toilet': 925764, '20 toilet paper': 13400, 'toilet paper hoardingvirus': 921308, 'paper hoardingvirus 2020': 640288, 'hoardingvirus 2020 still': 399685, '2020 still showing': 14615, 'still showing exponentialgrowth': 801195, 'showing exponentialgrowth flatteningthecurve': 767445, 'exponentialgrowth flatteningthecurve toiletpaper': 292588, 'flatteningthecurve toiletpaper toiletpaperapocalypse': 310152, 'toiletpaper toiletpaperapocalypse toiletpapercrisis': 922638, 'toiletpaperapocalypse toiletpapercrisis toiletpaperpanic': 922943, 'toiletpapercrisis toiletpaperpanic toiletpaperwars': 923118, 'toiletpaperpanic toiletpaperwars coronavid19': 923294, 'toiletpaperwars coronavid19 stayathome': 923345, 'my boyfriend': 547521, 'boyfriend work': 137433, 'after serving': 36172, 'serving the': 753217, 'customer she': 222842, 'him thank': 396722, 'my boyfriend work': 547527, 'boyfriend work in': 137435, 'in supermarket after': 428554, 'supermarket after serving': 818811, 'after serving the': 36173, 'serving the customer': 753218, 'the customer she': 852732, 'customer she told': 222843, 'she told him': 756391, 'told him thank': 923574, 'him thank you': 396723, 'mint': 533654, '1oz': 12672, 'apmex': 81485, 'on silver': 603466, 'silver mint': 769837, 'mint out': 533666, 'of common': 581584, 'common 2020': 189355, '2020 silver': 14600, 'silver eagle': 769800, 'eagle bu': 264366, 'bu 1oz': 141570, '1oz coin': 12673, 'coin why': 185648, 'why silver': 991348, 'silver spot': 769864, 'price been': 672874, 'been down': 121031, 'down big': 256565, 'big source': 130010, 'source apmex': 786448, 'apmex mint': 81488, 'mint designated': 533658, 'designated seller': 238303, 'seller of': 749045, 'of silver': 589729, 'silver and': 769787, 'gold bullion': 355867, 'bullion coin': 142449, 'coin commodity': 185633, 'run on silver': 727739, 'on silver mint': 603467, 'silver mint out': 769838, 'mint out of': 533667, 'out of common': 626703, 'of common 2020': 581585, 'common 2020 silver': 189356, '2020 silver eagle': 14601, 'silver eagle bu': 769801, 'eagle bu 1oz': 264367, 'bu 1oz coin': 141571, '1oz coin why': 12674, 'coin why silver': 185649, 'why silver spot': 991349, 'silver spot price': 769865, 'spot price been': 790095, 'price been down': 672875, 'been down big': 121032, 'down big source': 256566, 'big source apmex': 130011, 'source apmex mint': 786450, 'apmex mint designated': 81489, 'mint designated seller': 533659, 'designated seller of': 238304, 'seller of silver': 749048, 'of silver and': 589730, 'silver and gold': 769788, 'and gold bullion': 63815, 'gold bullion coin': 355868, 'bullion coin commodity': 142451, 'internet shopping': 442020, 'are fast': 86498, 'fast becoming': 299921, 'becoming the': 120342, 'item across': 463026, 'across jamaica': 29362, 'jamaica in': 464372, 'home directive': 401079, 'internet shopping and': 442021, 'home delivery are': 401009, 'delivery are fast': 233717, 'are fast becoming': 86500, 'fast becoming the': 299922, 'becoming the new': 120343, 'the new way': 861580, 'on grocery item': 601185, 'grocery item across': 364648, 'item across jamaica': 463028, 'across jamaica in': 29363, 'jamaica in the': 464373, 'wake of stay': 964607, 'at home directive': 98974, 'home directive to': 401080, 'directive to slow': 243516, 'of the read': 591389, 'supermarket following': 820350, 'following government': 312738, 'the supermarket following': 868596, 'supermarket following government': 820351, 'following government advice': 312739, 'than 400': 840246, '400 00': 18704, 'pandemic if': 635673, 'me smell': 523485, 'smell recession': 775617, 'recession coming': 704236, 'coming stock': 188201, 'rich will': 721270, 'will love': 994058, 'they own': 882858, 'own more': 632105, 'more power': 540109, 'power broke': 667578, 'broke ass': 140823, 'ass get': 96252, 'get broker': 346715, 'broker coronacrisis': 140934, 'news and hear': 560230, 'and hear that': 64408, 'hear that more': 387991, 'that more than': 845220, 'more than 400': 540565, 'than 400 00': 840247, '400 00 people': 18710, '00 people will': 423, 'people will lose': 650395, 'will lose their': 994055, 'coronavirus pandemic if': 206465, 'pandemic if you': 635676, 'if you ask': 415395, 'you ask me': 1017317, 'ask me smell': 95584, 'me smell recession': 523486, 'smell recession coming': 775618, 'recession coming stock': 704238, 'coming stock price': 188203, 'stock price fall': 802714, 'price fall the': 673800, 'fall the rich': 297075, 'the rich will': 865785, 'rich will love': 721271, 'will love that': 994061, 'love that more': 504797, 'that more stock': 845219, 'more stock they': 540472, 'stock they own': 802969, 'they own more': 882859, 'own more power': 632106, 'more power broke': 540110, 'power broke ass': 667579, 'broke ass get': 140824, 'ass get broker': 96253, 'get broker coronacrisis': 346716, 'sterlingjacksonrealestate': 799913, 'sterjackre': 799888, 'sterlingjackson': 799909, 'realestateisgreat': 701550, 'worldwarc': 1010293, 'doyourpart': 257859, 'goodjob': 358029, 'hope all': 403411, 'house sterlingjacksonrealestate': 406579, 'sterlingjacksonrealestate sterjackre': 799914, 'sterjackre sterlingjackson': 799889, 'sterlingjackson realestateisgreat': 799910, 'realestateisgreat worldwarc': 701553, 'worldwarc costco': 1010294, 'costco hoarding': 208236, 'hoarding scary': 399510, 'scary stockup': 741187, 'stockup stayhome': 804201, 'flattenthecurve socialdistancing': 310201, 'socialdistancing doyourpart': 780333, 'doyourpart goodjob': 257860, 'hope all have': 403412, 'all have stocked': 43062, 'have stocked up': 382769, 'up and are': 944304, 'and are ready': 58346, 'are ready to': 89461, 'around the house': 93542, 'the house sterlingjacksonrealestate': 857637, 'house sterlingjacksonrealestate sterjackre': 406580, 'sterlingjacksonrealestate sterjackre sterlingjackson': 799915, 'sterjackre sterlingjackson realestateisgreat': 799890, 'sterlingjackson realestateisgreat worldwarc': 799912, 'realestateisgreat worldwarc costco': 701554, 'worldwarc costco hoarding': 1010295, 'costco hoarding scary': 208237, 'hoarding scary stockup': 399511, 'scary stockup stayhome': 741188, 'stockup stayhome flattenthecurve': 804204, 'stayhome flattenthecurve socialdistancing': 798005, 'flattenthecurve socialdistancing doyourpart': 310202, 'socialdistancing doyourpart goodjob': 780334, 'awareness visit': 105742, 'stop state': 805064, 'state website': 796069, 'website to boost': 975439, '19 awareness visit': 5284, 'awareness visit the': 105743, 'visit the one': 959392, 'the one stop': 862222, 'one stop state': 607116, 'stop state website': 805065, 'state website for': 796071, 'unique source': 942002, 'income visit': 432490, 'our unique source': 625229, 'unique source of': 942003, 'of income visit': 585073, 'income visit at': 432491, 'grandmother sent': 361940, 'and noted': 67797, 'noted problem': 572873, 'solved toiletpaperapocalypse': 782191, 'quaratinelife stayathome': 693148, 'my grandmother sent': 548553, 'grandmother sent me': 361941, 'sent me this': 750778, 'me this and': 523707, 'this and noted': 886339, 'and noted problem': 67798, 'noted problem solved': 572874, 'problem solved toiletpaperapocalypse': 679678, 'solved toiletpaperapocalypse toiletpaper': 782192, 'toiletpaperapocalypse toiletpaper 19': 922929, 'toiletpaper 19 quaratinelife': 921677, '19 quaratinelife stayathome': 9931, 'quaratinelife stayathome lockdown': 693149, 'food election': 314345, 'election can': 271024, 'postponed also': 666792, 'also trust': 49039, 'trust supermarket': 934313, 'supermarket over': 821860, 'over standing': 630640, 'standing recycling': 793803, 'recycling air': 705541, 'may very': 521598, 'very well': 955660, 'day asymptomatic': 227324, 'asymptomatic period': 97320, 'need food election': 554794, 'food election can': 314346, 'election can be': 271025, 'can be postponed': 157665, 'be postponed also': 116487, 'postponed also trust': 666793, 'also trust supermarket': 49040, 'trust supermarket over': 934314, 'supermarket over standing': 821863, 'over standing recycling': 630641, 'standing recycling air': 793804, 'recycling air with': 705542, 'air with people': 39809, 'people who may': 650319, 'who may very': 989282, 'may very well': 521599, 'very well have': 955665, 'well have covid': 978270, 'but are in': 145213, 'in the 14': 428940, 'the 14 day': 847892, '14 day asymptomatic': 3442, 'day asymptomatic period': 227325, 'ransom': 696828, 'thing get': 884353, 'more desperate': 539005, 'desperate folk': 238521, 'folk might': 312214, 'might start': 531124, 'start taking': 794533, 'taking hostage': 833394, 'hostage and': 404906, 'demand toiletpaper': 236408, 'toiletpaper ransom': 922394, 'if thing get': 415142, 'thing get any': 884354, 'get any more': 346578, 'any more desperate': 79485, 'more desperate folk': 539006, 'desperate folk might': 238522, 'folk might start': 312215, 'might start taking': 531125, 'start taking hostage': 794535, 'taking hostage and': 833395, 'hostage and demand': 404907, 'and demand toiletpaper': 61176, 'demand toiletpaper ransom': 236409, 'fellowship': 303346, '60 turn': 21031, 'on tune': 604898, 'drop out': 260360, 'out updated': 627756, 'updated turn': 947453, 'turn off': 935712, 'off tune': 594355, 'tune out': 935421, 'off turn': 594357, 'off social': 594168, 'news be': 560265, 'be informed': 115495, 'informed but': 438085, 'limit exposure': 492339, 'exposure tune': 293018, 'out fake': 626051, 'news panic': 560689, 'buying drop': 150208, 'off there': 594297, 'food fellowship': 314457, 'fellowship love': 303347, 'love quarantine': 504758, 'the 60 turn': 848166, '60 turn on': 21032, 'turn on tune': 935728, 'on tune in': 604899, 'tune in and': 935401, 'in and drop': 420359, 'and drop out': 61762, 'drop out updated': 260363, 'out updated turn': 627757, 'updated turn off': 947454, 'turn off tune': 935720, 'off tune out': 594356, 'tune out and': 935422, 'out and drop': 625659, 'drop off turn': 260344, 'off turn off': 594358, 'turn off social': 935717, 'off social medium': 594169, 'social medium and': 779839, 'medium and the': 526995, 'and the news': 73493, 'the news be': 861603, 'news be informed': 560266, 'be informed but': 115496, 'informed but limit': 438086, 'but limit exposure': 146282, 'limit exposure tune': 492341, 'exposure tune out': 293020, 'tune out fake': 935423, 'out fake news': 626052, 'fake news panic': 296673, 'news panic buying': 560690, 'panic buying drop': 637711, 'buying drop off': 150209, 'drop off there': 260343, 'off there that': 594298, 'there that need': 879141, 'need help food': 554981, 'help food fellowship': 389743, 'food fellowship love': 314458, 'fellowship love quarantine': 303348, 'recognize and': 704631, 'report spam': 712268, 'spam text': 787389, 'message ve': 529470, 'been getting': 121198, 'getting lot': 349100, 'more robocalls': 540277, 'robocalls and': 724763, 'and spam': 72044, 'text since': 839940, 'caused to': 167977, 'fcc provides': 300773, 'provides way': 686914, 'these nuisance': 880353, 'how to recognize': 409068, 'to recognize and': 912954, 'recognize and report': 704632, 'and report spam': 70268, 'report spam text': 712269, 'spam text message': 787390, 'text message ve': 839918, 'message ve been': 529471, 've been getting': 952886, 'been getting lot': 121200, 'getting lot more': 349101, 'lot more robocalls': 504115, 'more robocalls and': 540278, 'robocalls and spam': 724764, 'and spam text': 72045, 'spam text since': 787391, 'text since covid': 839941, 'ha caused to': 370105, 'caused to stay': 167978, 'stay home the': 797013, 'home the fcc': 402231, 'the fcc provides': 855005, 'fcc provides way': 300774, 'provides way to': 686915, 'way to report': 970082, 'to report these': 913292, 'report these nuisance': 712369, 'condemning': 193364, 'petition condemning': 653598, 'condemning asian': 193365, 'asian store': 95347, 'charging extortionist': 173475, 'extortionist price': 293415, 'petition condemning asian': 653599, 'condemning asian store': 193366, 'asian store for': 95349, 'store for charging': 807791, 'for charging extortionist': 320022, 'charging extortionist price': 173476, 'extortionist price during': 293416, 'setlife': 753609, 'filmcrew': 305718, 'freelance film': 332432, 'film crew': 305672, 'crew in': 216696, 'in closed': 421514, 'closed industry': 183188, 'like universal': 491698, 'universal credit': 942353, 'or working': 617840, 'supermarket freelance': 820451, 'freelance setlife': 332436, 'setlife filmcrew': 753610, 'freelance film crew': 332433, 'film crew in': 305673, 'crew in closed': 216697, 'in closed industry': 421515, 'closed industry for': 183189, 'industry for me': 435833, 'me it seems': 523017, 'seems like universal': 746820, 'like universal credit': 491699, 'universal credit or': 942356, 'credit or working': 216446, 'or working in': 617841, 'in supermarket freelance': 428604, 'supermarket freelance setlife': 820452, 'freelance setlife filmcrew': 332437, 'our nurse': 624102, 'one icu': 606453, 'icu nurse': 412845, 'nurse plea': 577457, 'her fellow': 392041, 'fellow new': 303313, 'yorkers newyorktough': 1016712, 'way to thank': 970113, 'thank our nurse': 841621, 'our nurse and': 624104, 'nurse and health': 577199, 'care worker is': 164294, 'worker is to': 1007242, 'is to listen': 453219, 'listen to them': 494755, 'to them here': 917299, 'them here one': 875849, 'here one icu': 393417, 'one icu nurse': 606454, 'icu nurse plea': 412847, 'nurse plea to': 577458, 'plea to her': 659565, 'to her fellow': 907697, 'her fellow new': 392042, 'fellow new yorkers': 303314, 'new yorkers newyorktough': 559970, 'intial': 442324, 'iif': 415996, 'cor': 203481, 'you tell': 1021538, 'tell my': 837038, 'my claim': 547696, 'claim submitted': 179824, 'submitted against': 815813, '19 carona': 5649, 'on 30': 599087, '30 march': 17100, 'going 12': 354978, '12 april': 2821, 'april my': 83643, 'claim already': 179688, 'already pending': 47566, 'pending in': 646480, 'in intial': 424128, 'intial stage': 442325, 'stage which': 793222, 'is pending': 450833, 'pending from': 646478, 'from da': 335092, 'da account': 224213, 'account iif': 28698, 'iif today': 415997, 'tomorrow not': 924143, 'not settle': 571542, 'settle my': 753682, 'claim will': 179867, 'go consumer': 353418, 'consumer cor': 196977, 'can you tell': 160341, 'you tell my': 1021540, 'tell my claim': 837041, 'my claim submitted': 547698, 'claim submitted against': 179825, 'submitted against covid': 815814, 'covid 19 carona': 212762, '19 carona virus': 5650, 'carona virus on': 164862, 'virus on 30': 958549, 'on 30 march': 599088, '30 march and': 17101, 'march and now': 515273, 'and now going': 67838, 'now going 12': 574798, 'going 12 april': 354979, '12 april my': 2823, 'april my claim': 83644, 'my claim already': 547697, 'claim already pending': 179689, 'already pending in': 47567, 'pending in intial': 646481, 'in intial stage': 424129, 'intial stage which': 442326, 'stage which is': 793223, 'which is pending': 986042, 'is pending from': 450834, 'pending from da': 646479, 'from da account': 335093, 'da account iif': 224214, 'account iif today': 28699, 'iif today or': 415998, 'today or tomorrow': 919997, 'or tomorrow not': 617496, 'tomorrow not settle': 924146, 'not settle my': 571543, 'settle my claim': 753683, 'my claim will': 547699, 'claim will go': 179869, 'will go consumer': 993545, 'go consumer cor': 353420, 'needful': 556599, 'it showing': 461042, 'showing out': 767490, 'also price': 48684, 'be low': 115838, 'low per': 505486, 'per indian': 650894, 'indian law': 434853, 'law at': 482222, '19 kindly': 8242, 'kindly do': 475121, 'the needful': 861406, 'needful to': 556600, 'it available': 456642, 'better quality': 128438, 'quality at': 691766, 'price htt': 674598, 'now it showing': 575130, 'it showing out': 461043, 'showing out of': 767491, 'of stock and': 590138, 'stock and also': 801798, 'and also price': 57968, 'also price should': 48686, 'should be low': 765670, 'be low per': 115840, 'low per indian': 505487, 'per indian law': 650895, 'indian law at': 434854, 'law at this': 482225, 'this time covid': 890628, 'covid 19 kindly': 213322, '19 kindly do': 8243, 'kindly do the': 475122, 'do the needful': 250251, 'the needful to': 861407, 'needful to make': 556601, 'make it available': 510022, 'it available in': 456645, 'available in better': 104435, 'in better quality': 420802, 'better quality at': 128439, 'quality at affordable': 691767, 'affordable price htt': 34881, 'other illegal': 620393, 'illegal scam': 416238, 'are common': 85449, 'common during': 189378, 'emergency like': 272782, 'like learn': 490632, 'your ag': 1022755, 'ag is': 36798, 'and other illegal': 68344, 'other illegal scam': 620394, 'illegal scam are': 416239, 'scam are common': 740037, 'are common during': 85450, 'common during emergency': 189379, 'during emergency like': 262625, 'emergency like learn': 272783, 'like learn what': 490633, 'learn what your': 484096, 'what your ag': 982705, 'your ag is': 1022756, 'ag is doing': 36799, 'protect consumer at': 684801, 'get access': 346498, 'useful information about': 950169, 'information about supermarket': 437714, 'about supermarket opening': 26286, 'those vulnerable get': 892594, 'vulnerable get access': 960973, 'get access to': 346499, 'and supply please': 72809, 'supply please share': 825717, 'overdoses': 631172, 'the direct': 853308, 'health among': 386115, 'use drug': 949174, 'drug ha': 260964, 'yet been': 1016012, 'been determined': 120966, 'determined but': 239450, 'is certain': 446444, 'certain fewer': 170008, 'fewer service': 304235, 'service high': 752458, 'high drug': 395047, 'more drug': 539079, 'drug contamination': 260923, 'contamination overdoses': 200729, 'overdoses desperation': 631173, 'desperation isolation': 238598, 'and violence': 74967, 'the direct impact': 853309, 'direct impact of': 243342, '19 on health': 8947, 'on health among': 601254, 'health among people': 386116, 'among people who': 53050, 'who use drug': 989859, 'use drug ha': 949175, 'drug ha not': 260965, 'ha not yet': 371377, 'not yet been': 572596, 'yet been determined': 1016013, 'been determined but': 120967, 'determined but the': 239451, 'but the direct': 147332, 'of the response': 591409, 'the response is': 865622, 'response is certain': 715739, 'is certain fewer': 446447, 'certain fewer service': 170009, 'fewer service high': 304236, 'service high drug': 752459, 'high drug price': 395048, 'price and more': 672474, 'and more drug': 67164, 'more drug contamination': 539080, 'drug contamination overdoses': 260924, 'contamination overdoses desperation': 200730, 'overdoses desperation isolation': 631174, 'desperation isolation and': 238599, 'isolation and violence': 455204, 'brutalised': 141411, 'confrontational': 194297, 'cultured': 220314, 'populated': 664628, 'clip of': 182364, 'an nurse': 56530, 'nurse off': 577431, 'off 14': 593595, '14 hour': 3480, 'hour icu': 405678, 'icu shift': 412853, 'shift cry': 758271, 'her supermarket': 392412, 'stripped not': 813864, 'not surprised': 571862, 'surprised this': 828612, 'become brutalised': 119940, 'brutalised confrontational': 141412, 'confrontational sub': 194300, 'sub cultured': 815680, 'cultured little': 220315, 'little rock': 495546, 'rock populated': 724914, 'populated by': 664629, 'people encouraged': 647786, 'their leader': 873798, 'leader to': 483551, 'to lie': 909243, 'lie and': 488332, 'be stupid': 117422, 'clip of an': 182365, 'of an nurse': 580125, 'an nurse off': 56531, 'nurse off 14': 577432, 'off 14 hour': 593597, '14 hour icu': 3481, 'hour icu shift': 405679, 'icu shift cry': 412854, 'shift cry because': 758272, 'cry because her': 219857, 'because her supermarket': 119125, 'her supermarket ha': 392414, 'ha been stripped': 369938, 'been stripped not': 122069, 'stripped not surprised': 813865, 'not surprised this': 571864, 'surprised this country': 828613, 'country ha become': 210708, 'ha become brutalised': 369671, 'become brutalised confrontational': 119941, 'brutalised confrontational sub': 141413, 'confrontational sub cultured': 194301, 'sub cultured little': 815681, 'cultured little rock': 220316, 'little rock populated': 495547, 'rock populated by': 724915, 'populated by people': 664630, 'by people encouraged': 153548, 'people encouraged by': 647787, 'encouraged by their': 275652, 'by their leader': 154496, 'their leader to': 873799, 'leader to lie': 483554, 'to lie and': 909244, 'lie and be': 488333, 'and be stupid': 58769, 'savehowie': 737771, 'anyone even': 80305, 'considered checking': 195275, 'on picture': 602801, 'picture him': 656135, 'him in': 396633, 'panic room': 638499, 'room refusing': 725956, 'refusing any': 707079, 'or water': 617730, 'water from': 969002, 'world savehowie': 1009952, 'ha anyone even': 369583, 'anyone even considered': 80306, 'even considered checking': 283969, 'considered checking on': 195276, 'checking on picture': 174835, 'on picture him': 602802, 'picture him in': 656136, 'him in panic': 396637, 'in panic room': 426487, 'panic room refusing': 638500, 'room refusing any': 725957, 'refusing any food': 707080, 'any food or': 79239, 'food or water': 315674, 'or water from': 617731, 'water from the': 969005, 'from the outside': 337820, 'outside world savehowie': 629653, 'empowerment': 274664, 'burial': 142864, 'rocketed': 724957, 'nyers': 578095, 'new immigrant': 558910, 'immigrant community': 417215, 'community empowerment': 189831, 'empowerment is': 274667, 'doing tremendous': 252811, 'tremendous work': 931237, 'family most': 298055, 'swamped the': 829942, 'even burial': 283910, 'burial cost': 142865, 'cost assistance': 207871, 'assistance sky': 96744, 'sky rocketed': 773217, 'rocketed help': 724962, 'fellow nyers': 303317, 'nyers today': 578096, 'new immigrant community': 558911, 'immigrant community empowerment': 417216, 'community empowerment is': 189832, 'empowerment is doing': 274668, 'is doing tremendous': 447295, 'doing tremendous work': 252812, 'tremendous work to': 931238, 'work to help': 1005889, 'to help family': 907510, 'help family most': 389682, 'family most affected': 298056, '19 but they': 5536, 'they are swamped': 881425, 'are swamped the': 90690, 'swamped the demand': 829943, 'and even burial': 62334, 'even burial cost': 283911, 'burial cost assistance': 142866, 'cost assistance sky': 207872, 'assistance sky rocketed': 96745, 'sky rocketed help': 773218, 'rocketed help our': 724963, 'help our fellow': 390230, 'our fellow nyers': 623059, 'fellow nyers today': 303318, 'kixies': 475854, 'second batch': 743664, 'just arrived': 468218, 'arrived order': 93969, 'order shipping': 618574, 'shipping tomorrow': 758938, 'tomorrow kixies': 924116, 'kixies stayhome': 475857, 'stayhome stayhealthy': 798145, 'stayhealthy staysafe': 797911, 'sanitizer sanitize': 735683, 'sanitize kixies': 734196, 'second batch of': 743665, 'batch of sanitizer': 112580, 'of sanitizer just': 589294, 'sanitizer just arrived': 735240, 'just arrived order': 468221, 'arrived order shipping': 93970, 'order shipping tomorrow': 618575, 'shipping tomorrow kixies': 758939, 'tomorrow kixies stayhome': 924117, 'kixies stayhome stayhealthy': 475858, 'stayhome stayhealthy staysafe': 798149, 'stayhealthy staysafe sanitizer': 797913, 'staysafe sanitizer sanitize': 798875, 'sanitizer sanitize kixies': 735685, 'preliminary': 669867, 'long covid': 501379, '19 appears': 5180, 'on plastic': 602815, 'plastic cardboard': 658828, 'cardboard metal': 163723, 'metal preliminary': 529643, 'preliminary research': 669877, 'from 19': 334207, 'how long covid': 408196, 'long covid 19': 501380, 'covid 19 appears': 212644, '19 appears to': 5181, 'appears to live': 82219, 'to live on': 909346, 'live on plastic': 495962, 'on plastic cardboard': 602817, 'plastic cardboard metal': 658829, 'cardboard metal preliminary': 163724, 'metal preliminary research': 529644, 'preliminary research from': 669878, 'research from 19': 713730, 'etauto': 282381, 'etauto covid': 282382, 'price mixed': 675252, 'mixed demand': 534621, 'demand shrink': 236203, 'shrink but': 767691, 'but stimulus': 147189, 'stimulus hope': 801545, 'hope support': 403636, 'etauto covid 19': 282383, 'oil price mixed': 597193, 'price mixed demand': 675253, 'mixed demand shrink': 534622, 'demand shrink but': 236204, 'shrink but stimulus': 767692, 'but stimulus hope': 147190, 'stimulus hope support': 801546, 'communicable': 189536, 'nicd': 562326, '0800': 1097, '029': 832, '19 contact': 6005, 'of communicable': 581594, 'communicable disease': 189537, 'disease nicd': 245184, 'nicd consumer': 562327, 'consumer 24': 195983, 'hour toll': 406047, 'free hotline': 331909, 'hotline number': 405253, 'number 0800': 576799, '0800 029': 1100, '029 99': 833, '99 or': 23872, 'the nicd': 861781, 'nicd website': 562329, 'information on covid': 437910, 'covid 19 contact': 212847, '19 contact the': 6006, 'contact the national': 200225, 'national institute of': 552544, 'institute of communicable': 440425, 'of communicable disease': 581595, 'communicable disease nicd': 189538, 'disease nicd consumer': 245185, 'nicd consumer 24': 562328, 'consumer 24 hour': 195984, '24 hour toll': 15629, 'hour toll free': 406048, 'toll free hotline': 923843, 'free hotline number': 331910, 'hotline number 0800': 405254, 'number 0800 029': 576800, '0800 029 99': 1101, '029 99 or': 834, '99 or visit': 23874, 'or visit the': 617684, 'visit the nicd': 959390, 'the nicd website': 861782, 'donate food': 254179, 're accepting': 698173, 'accepting food': 28078, 'food donation': 314265, 'donation picking': 254668, 'own supply': 632248, 'supply make': 825527, 'bank at': 109666, 'donate food have': 254180, 'food have more': 314787, 'have more food': 381500, 'food than you': 317081, 'you need contact': 1019977, 'need contact your': 554641, 'contact your food': 200308, 'your food bank': 1023909, 'bank to find': 110257, 'find out if': 307142, 'out if they': 626365, 'they re accepting': 882987, 're accepting food': 698174, 'accepting food donation': 28079, 'food donation picking': 314271, 'donation picking up': 254669, 'your own supply': 1025164, 'own supply make': 632250, 'supply make donation': 825528, 'make donation to': 509858, 'food bank at': 313524, 'bank at the': 109668, 'store learn more': 808696, 'transurban': 930083, 'tollroads': 923891, 'trucking': 932980, 'transurban to': 930084, 'up toll': 946463, 'toll price': 923873, 'for motorist': 323632, 'motorist despite': 543361, 'via tollroads': 956333, 'tollroads trucking': 923892, 'trucking trucker': 932995, 'trucker infrastructure': 932926, 'infrastructure transportation': 438225, 'transportation transurban': 930047, 'transurban to hike': 930085, 'hike up toll': 396294, 'up toll price': 946464, 'toll price for': 923874, 'price for motorist': 674006, 'for motorist despite': 323633, 'motorist despite coronavirus': 543362, 'despite coronavirus via': 238710, 'coronavirus via tollroads': 207019, 'via tollroads trucking': 956334, 'tollroads trucking trucker': 923893, 'trucking trucker infrastructure': 932996, 'trucker infrastructure transportation': 932927, 'infrastructure transportation transurban': 438226, 'when last': 983673, 'last did': 480194, 'you sanitize': 1020988, 'when last did': 983674, 'last did you': 480195, 'did you sanitize': 240945, 'you sanitize your': 1020989, 'bondi': 134278, 'pm and': 661852, 'and cmo': 60032, 'cmo were': 184691, 'very clear': 955053, 'far people': 298887, 'people haven': 648213, 'haven used': 383919, 'used common': 949881, 'sense bondi': 750499, 'bondi beach': 134279, 'beach going': 118202, 'the chemist': 850794, 'chemist and': 175401, 'dr visit': 258118, 'visit confirming': 959216, 'confirming they': 194227, '19 travelling': 11560, 'travelling overseas': 930692, 'overseas despite': 631471, 'despite advice': 238661, 'give pe': 350641, 'the pm and': 863874, 'pm and cmo': 661854, 'and cmo were': 60033, 'cmo were very': 184692, 'were very clear': 980328, 'very clear that': 955055, 'clear that so': 181350, 'so far people': 777052, 'far people haven': 298888, 'people haven used': 648215, 'haven used common': 383920, 'used common sense': 949882, 'common sense bondi': 189455, 'sense bondi beach': 750500, 'bondi beach going': 134280, 'beach going to': 118203, 'to the chemist': 916555, 'the chemist and': 850795, 'chemist and supermarket': 175403, 'and supermarket on': 72727, 'supermarket on the': 821735, 'home from dr': 401260, 'from dr visit': 335215, 'dr visit confirming': 258119, 'visit confirming they': 959217, 'confirming they have': 194228, 'covid 19 travelling': 213981, '19 travelling overseas': 11561, 'travelling overseas despite': 930693, 'overseas despite advice': 631472, 'despite advice so': 238662, 'advice so give': 33501, 'so give pe': 777168, 'outbreak minnesota': 628455, 'minnesota fortune': 533604, 'fortune 500': 329925, '500 company': 19963, 'are dusting': 86030, 'their contingency': 872870, 'the outbreak minnesota': 862665, 'outbreak minnesota fortune': 628456, 'minnesota fortune 500': 533605, 'fortune 500 company': 329926, '500 company are': 19964, 'company are dusting': 190421, 'are dusting off': 86031, 'dusting off their': 263476, 'off their contingency': 594286, 'their contingency plan': 872871, 'contingency plan to': 200953, 'plan to meet': 658302, 'meet consumer demand': 527439, 'oag': 578247, '442': 19042, '9854': 23741, 'district law': 248374, 'law requires': 482383, 'requires most': 713485, 'most employer': 542294, 'employer to': 274547, 'with paidsickleave': 1000063, 'paidsickleave which': 634201, 'which allows': 985652, 'allows worker': 46406, 'take paid': 832476, 'leave from': 484799, 'to illness': 908123, 'illness read': 416390, 'our faq': 623012, 'faq about': 298664, 'your paid': 1025176, 'leave right': 484920, 'right during': 721876, 'during report': 262970, 'report violation': 712419, 'to oag': 910778, 'oag at': 578248, '202 442': 14072, '442 9854': 19043, 'district law requires': 248375, 'law requires most': 482385, 'requires most employer': 713486, 'most employer to': 542296, 'employer to provide': 274552, 'provide worker with': 686550, 'worker with paidsickleave': 1008265, 'with paidsickleave which': 1000064, 'paidsickleave which allows': 634202, 'which allows worker': 985655, 'allows worker to': 46407, 'worker to take': 1008023, 'to take paid': 916220, 'take paid leave': 832477, 'paid leave from': 634058, 'leave from work': 484800, 'from work due': 338406, 'due to illness': 261822, 'to illness read': 908126, 'illness read our': 416391, 'read our faq': 700506, 'our faq about': 623013, 'faq about your': 298665, 'about your paid': 27006, 'your paid leave': 1025177, 'paid leave right': 634064, 'leave right during': 484921, 'right during report': 721878, 'during report violation': 262972, 'report violation to': 712420, 'violation to oag': 957528, 'to oag at': 910779, 'oag at 202': 578249, 'at 202 442': 97518, '202 442 9854': 14073, 'on how should': 601424, 'how should respond': 408678, 'government could': 359997, 'done way': 255101, 'way better': 969498, 'better job': 128344, 'this close': 886788, 'close fast': 182636, 'essential make': 281296, 'make pharmacy': 510327, 'pharmacy such': 654487, 'such cv': 816431, 'walgreens drive': 964715, 'through only': 894604, 'enough time': 277681, 'up coronalockdown': 944653, 'the government could': 856519, 'government could have': 359999, 'could have done': 209252, 'have done way': 380341, 'done way better': 255102, 'way better job': 969499, 'better job to': 128348, 'job to contain': 466219, 'to contain this': 903369, 'contain this close': 200505, 'this close fast': 886789, 'close fast food': 182637, 'fast food it': 299967, 'food it not': 315181, 'it not essential': 459873, 'not essential make': 569216, 'essential make pharmacy': 281297, 'make pharmacy such': 510328, 'pharmacy such cv': 654488, 'such cv walgreens': 816432, 'cv walgreens drive': 223860, 'walgreens drive through': 964716, 'drive through only': 259182, 'through only and': 894605, 'only and do': 610092, 'do not allow': 249661, 'not allow people': 568140, 'people to leave': 649917, 'their home ha': 873564, 'home ha enough': 401326, 'ha enough time': 370503, 'enough time to': 277683, 'stock up coronalockdown': 803070, 'altruistic': 49404, 'consider supporting': 195119, 'supporting my': 827152, 'my have': 548625, 'started an': 794679, 'an altruistic': 55262, 'altruistic project': 49405, 'that aim': 842525, 'is direct': 447184, 'direct response': 243373, 'the unethical': 870378, 'unethical price': 941336, 'gouging that': 359464, 'happening now': 377381, 'now donate': 574555, 'please consider supporting': 659822, 'consider supporting my': 195120, 'supporting my have': 827153, 'my have started': 548626, 'have started an': 382716, 'started an altruistic': 794680, 'an altruistic project': 55263, 'altruistic project that': 49406, 'project that aim': 683540, 'that aim to': 842526, 'aim to get': 39550, 'to get mask': 906527, 'get mask into': 347527, 'mask into the': 518859, 'the hand of': 857060, 'hand of people': 375113, 'people at normal': 647176, 'at normal price': 99911, 'normal price this': 567280, 'this is direct': 888235, 'is direct response': 447185, 'direct response to': 243374, 'to the unethical': 917155, 'the unethical price': 870379, 'unethical price gouging': 941337, 'price gouging that': 674330, 'gouging that is': 359465, 'that is happening': 844596, 'is happening now': 448283, 'happening now donate': 377382, 'that care': 843158, 'care everyone': 163918, 'everyone doing': 286820, 'country who': 211232, 'vendor driver': 954357, 'for this community': 327016, 'this community that': 886817, 'community that care': 190152, 'that care everyone': 843160, 'care everyone doing': 163919, 'everyone doing their': 286822, 'help to all': 390764, 'store staff across': 810298, 'the country who': 852181, 'country who work': 211236, 'help and to': 389362, 'all the vendor': 44971, 'the vendor driver': 870682, 'vendor driver etc': 954358, 'driver etc thank': 259535, 'your refrigerator': 1025539, 'refrigerator here': 706812, 'what renowned': 982094, 'renowned scientist': 711028, 'scientist told': 742265, 'can survive in': 159875, 'survive in your': 829196, 'in your refrigerator': 431116, 'your refrigerator here': 1025540, 'refrigerator here what': 706813, 'here what renowned': 393818, 'what renowned scientist': 982095, 'renowned scientist told': 711029, 'playing our': 659432, 'keep trip': 472157, 'to minimum': 910175, 'minimum keep': 533195, 'keep 5m': 471280, '5m from': 20763, 'and return': 70470, 'home without': 402546, 'without delay': 1002585, 'delay more': 232724, 're all playing': 698229, 'all playing our': 43974, 'playing our part': 659433, 'of coronavirus keep': 581947, 'coronavirus keep trip': 206198, 'keep trip to': 472158, 'supermarket to minimum': 823391, 'to minimum keep': 910176, 'minimum keep 5m': 533196, 'keep 5m from': 471282, '5m from others': 20764, 'from others and': 336736, 'others and return': 621261, 'and return home': 70471, 'return home without': 719857, 'home without delay': 402548, 'without delay more': 1002586, 'delay more info': 232725, 'emphasise': 273377, 'the forum': 855719, 'forum board': 329950, 'envoy emphasise': 279223, 'emphasise the': 273380, 'global coordination': 351815, 'coordination in': 203222, 'in securing': 427772, 'securing consumer': 744499, 'product chain': 681052, 'the forum board': 855720, 'forum board of': 329951, 'director and covid': 243601, '19 special envoy': 10721, 'special envoy emphasise': 787911, 'envoy emphasise the': 279224, 'emphasise the need': 273381, 'need for global': 554844, 'for global coordination': 321897, 'global coordination in': 351816, 'coordination in securing': 203223, 'in securing consumer': 427773, 'securing consumer product': 744500, 'consumer product chain': 198450, 'bankingindustry': 110468, '19 reshaping': 10122, 'reshaping consumer': 714203, 'behavior how': 124065, 'give cardholder': 350430, 'cardholder peace': 163742, 'mind tune': 532758, 'webinar tomorrow': 975123, 'tomorrow to': 924211, 'now bankingindustry': 574175, 'bankingindustry financialservices': 110469, 'covid 19 reshaping': 213697, '19 reshaping consumer': 10123, 'reshaping consumer behavior': 714204, 'consumer behavior how': 196484, 'behavior how can': 124066, 'how can you': 407529, 'can you give': 160304, 'you give cardholder': 1018825, 'give cardholder peace': 350431, 'cardholder peace of': 163743, 'of mind tune': 586546, 'mind tune in': 532759, 'in to our': 430129, 'to our webinar': 911253, 'our webinar tomorrow': 625326, 'webinar tomorrow to': 975125, 'tomorrow to find': 924215, 'find out register': 307148, 'out register now': 627099, 'register now bankingindustry': 707588, 'now bankingindustry financialservices': 574176, 'spook': 789855, 'this costco': 886914, 'costco begin': 208207, 'begin at': 123504, 'coronavirus spook': 206797, 'spook shopper': 789858, 'line at this': 492993, 'at this costco': 101229, 'this costco begin': 886915, 'costco begin at': 208208, 'begin at 55': 123505, '55 coronavirus spook': 20374, 'coronavirus spook shopper': 206798, 'bandwidth': 109430, 'more individual': 539535, 'individual work': 435287, 'greater the': 363249, 'on bandwidth': 599552, 'bandwidth cable': 109431, 'cable company': 155013, 'sustain without': 829752, 'without increasing': 1002734, 'price expanding': 673730, 'expanding infrastructure': 290502, 'infrastructure 200': 438184, '200 household': 13494, 'household is': 406849, 'minimum price': 533215, 'price required': 676193, 'the more individual': 860886, 'more individual work': 539536, 'individual work from': 435288, 'from home the': 335911, 'home the greater': 402234, 'the greater the': 856747, 'greater the strain': 363251, 'the strain on': 868187, 'strain on bandwidth': 812288, 'on bandwidth cable': 599553, 'bandwidth cable company': 109432, 'cable company will': 155014, 'company will not': 191334, 'to sustain without': 916079, 'sustain without increasing': 829753, 'without increasing price': 1002735, 'increasing price expanding': 433671, 'price expanding infrastructure': 673731, 'expanding infrastructure 200': 290503, 'infrastructure 200 household': 438185, '200 household is': 13495, 'household is the': 406855, 'the minimum price': 860649, 'minimum price required': 533216, 'horrified': 404158, 'wa horrified': 962334, 'horrified by': 404161, 'by how': 152839, 'how lax': 408159, 'lax the': 482579, 'thursday when': 895447, 'people acting': 646761, 'beating covid': 118614, '19 think': 11333, 'could well': 209826, 'well see': 978544, 'extension to': 293293, 'lockdown result': 499861, 'wa horrified by': 962335, 'horrified by how': 404162, 'by how lax': 152843, 'how lax the': 408160, 'lax the social': 482580, 'the social distancing': 867412, 'distancing wa on': 247604, 'wa on thursday': 962836, 'on thursday when': 604683, 'thursday when went': 895448, 'to people acting': 911611, 'people acting like': 646762, 'acting like we': 29889, 'like we ve': 491780, 've already beating': 952820, 'already beating covid': 47216, 'beating covid 19': 118615, 'covid 19 think': 213940, '19 think we': 11335, 'we could well': 971221, 'could well see': 209827, 'well see surge': 978545, 'surge in case': 828181, 'in case and': 421253, 'case and an': 165620, 'and an extension': 58113, 'an extension to': 55993, 'extension to lockdown': 293294, 'to lockdown result': 909404, 'psa manage': 687410, 'manage grocery': 512394, 'work so': 1005739, 'person only': 652558, 'psa manage grocery': 687411, 'manage grocery store': 512395, 'have no choice': 381615, 'but to go': 147586, 'out and work': 625710, 'and work so': 75861, 'work so please': 1005741, 'do not bring': 249685, 'not bring your': 568626, 'bring your child': 140128, 'your child with': 1023209, 'child with you': 176277, 'with you one': 1002159, 'you one person': 1020201, 'one person only': 606864, 'person only get': 652559, 'only get what': 610506, 'need and get': 554425, 'and get out': 63592, 'get out our': 347742, 'out our health': 626976, 'matter too saferathome': 520643, 'left people': 485607, 'illness and': 416341, 'sick this': 768634, 'demand paidsickleave': 236008, 'paidsickleave this': 634199, 'and general': 63507, 'general health': 345350, 'pandemic demand': 635292, 'demand action': 234903, 'the ha left': 856999, 'ha left people': 371130, 'left people out': 485608, 'of work due': 593247, 'to illness and': 908124, 'illness and the': 416346, 'of getting sick': 584127, 'getting sick this': 349278, 'sick this is': 768635, 'time to demand': 897973, 'to demand paidsickleave': 904152, 'demand paidsickleave this': 236009, 'paidsickleave this is': 634200, 'to demand that': 904160, 'demand that people': 236336, 'that people be': 845688, 'people be able': 647221, 'pay for their': 644908, 'for their food': 326828, 'their food water': 873358, 'water and general': 968863, 'and general health': 63509, 'general health in': 345351, 'health in time': 386526, 'time of pandemic': 897351, 'of pandemic demand': 587695, 'pandemic demand action': 635293, 'the sharp': 866798, 'the declared': 853002, 'declared support': 231247, 'the review': 865766, 'budget so': 141818, 'cope in': 203317, 'following the sharp': 312907, 'the sharp drop': 866800, 'of the declared': 590937, 'the declared support': 853003, 'declared support for': 231248, 'for the review': 326657, 'the review of': 865767, 'of the 2020': 590766, 'the 2020 budget': 848017, '2020 budget so': 14196, 'budget so to': 141819, 'so to know': 778536, 'know how best': 476432, 'how best to': 407454, 'best to cope': 127942, 'to cope in': 903507, 'cope in the': 203318, 'march store': 515479, 'traffic drop': 929080, 'drop 53': 260103, '53 but': 20293, 'retailer stay': 719329, 'stay optimistic': 797167, 'about rebound': 26053, 'rebound retail': 703325, 'socialmedia breakingnews': 781078, 'breakingnews writingcommunity': 139106, 'march store traffic': 515480, 'store traffic drop': 810934, 'traffic drop 53': 929081, 'drop 53 but': 260104, '53 but some': 20294, 'but some retailer': 147104, 'some retailer stay': 783770, 'retailer stay optimistic': 719330, 'stay optimistic about': 797168, 'optimistic about rebound': 613927, 'about rebound retail': 26054, 'rebound retail business': 703326, 'retail business socialmedia': 717910, 'business socialmedia breakingnews': 144396, 'socialmedia breakingnews writingcommunity': 781079, 'who helping': 988994, 'helping during': 391310, 'and sanitation': 70822, 'who ain': 988043, 'ain doing': 39610, 'doing shit': 252645, 'shit the': 759239, 'who posted': 989433, 'know who helping': 477036, 'who helping during': 988996, 'helping during covid': 391311, '19 medical worker': 8619, 'medical worker delivery': 526500, 'store work and': 811438, 'work and sanitation': 1004801, 'and sanitation worker': 70824, 'sanitation worker you': 733880, 'worker you know': 1008312, 'know who ain': 477029, 'who ain doing': 988044, 'ain doing shit': 39611, 'doing shit the': 252646, 'shit the person': 759241, 'person who posted': 652735, 'who posted this': 989435, 'posted this tweet': 666586, 'health out': 386728, 'out comfort': 625863, 'comfort eating': 187827, 'eating return': 266299, 'now according': 573936, 'from globaldata': 335646, 'globaldata gd': 352305, 'health out comfort': 386729, 'out comfort eating': 625864, 'comfort eating return': 187829, 'eating return for': 266300, 'return for now': 719842, 'for now according': 323956, 'now according to': 573937, 'according to research': 28584, 'to research from': 913332, 'research from globaldata': 713734, 'from globaldata gd': 335647, 'ugt': 938066, 'collective bargaining': 186487, 'bargaining is': 111082, 'best platform': 127834, 'best precaution': 127854, 'and measure': 66849, 'taken through': 833088, 'through collective': 894373, 'bargaining for': 111080, 'example on': 288958, 'from collective': 334914, 'bargaining ugt': 111086, 'collective bargaining is': 186489, 'bargaining is the': 111083, 'the best platform': 849540, 'best platform to': 127835, 'platform to fight': 659045, 'the coronavirus the': 851925, 'coronavirus the best': 206902, 'the best precaution': 849543, 'best precaution and': 127855, 'precaution and measure': 669275, 'and measure can': 66850, 'can be taken': 157695, 'be taken through': 117505, 'taken through collective': 833089, 'through collective bargaining': 894374, 'collective bargaining for': 186488, 'bargaining for great': 111081, 'for great example': 322003, 'great example on': 362662, 'example on how': 288959, 'how to benefit': 408982, 'to benefit from': 901762, 'benefit from collective': 126982, 'from collective bargaining': 334915, 'collective bargaining ugt': 186490, 'in urge': 430474, 'urge govt': 948193, 'downturn pti': 257812, 'just in urge': 469051, 'in urge govt': 430475, 'urge govt to': 948194, 'govt to share': 361317, 'people amid due': 646829, '19 and economic': 5017, 'and economic downturn': 61900, 'economic downturn pti': 267079, 'mercandise': 528933, 'best buy': 127609, 'buy add': 148271, 'add doorstep': 31424, 'doorstep delivery': 255844, 'delivery offer': 234244, 'offer curbside': 594566, 'pickup part': 656005, 'coronavirus change': 205638, 'change bestbuy': 171954, 'bestbuy doorstep': 128015, 'pickup corona': 655951, 'corona change': 203851, 'retail retailstore': 718484, 'retailstore store': 719548, 'shopping buy': 762263, 'buy purchase': 149112, 'purchase mercandise': 689551, 'mercandise new': 528934, 'best buy add': 127610, 'buy add doorstep': 148272, 'add doorstep delivery': 31425, 'doorstep delivery offer': 255845, 'delivery offer curbside': 234245, 'offer curbside pickup': 594569, 'curbside pickup part': 220660, 'pickup part of': 656006, 'of coronavirus change': 581923, 'coronavirus change bestbuy': 205639, 'change bestbuy doorstep': 171955, 'bestbuy doorstep delivery': 128016, 'curbside pickup corona': 220648, 'pickup corona change': 655952, 'corona change retail': 203852, 'change retail retailstore': 172248, 'retail retailstore store': 718485, 'retailstore store shop': 719549, 'store shop shopping': 810119, 'shop shopping buy': 760775, 'shopping buy purchase': 762265, 'buy purchase mercandise': 149113, 'purchase mercandise new': 689552, 'listened': 494778, 'quah': 691680, 'aggregate': 38221, 'jaw': 464878, 'listened to': 494779, 'this danny': 887157, 'danny quah': 225891, 'quah interview': 691681, 'interview on': 442225, 'what singapore': 982192, 'singapore did': 771118, 'did right': 240783, 'good except': 357021, 'one moment': 606675, 'moment where': 536116, 'where he': 984914, 'of aggregate': 579828, 'aggregate demand': 38222, 'demand look': 235820, 'which completely': 985759, 'completely made': 192320, 'my jaw': 548901, 'jaw drop': 464879, 'listened to this': 494783, 'to this danny': 917419, 'this danny quah': 887158, 'danny quah interview': 225892, 'quah interview on': 691682, 'interview on what': 442227, 'on what singapore': 605240, 'what singapore did': 982193, 'singapore did right': 771119, 'did right and': 240784, 'and it really': 65577, 'it really good': 460638, 'really good except': 702234, 'good except for': 357022, 'except for this': 289173, 'for this one': 327053, 'this one moment': 889245, 'one moment where': 606676, 'moment where he': 536117, 'where he said': 984918, 'he said there': 385378, 'no problem of': 565196, 'problem of aggregate': 679621, 'of aggregate demand': 579829, 'aggregate demand look': 38223, 'demand look at': 235821, 'supermarket shelf which': 822566, 'shelf which completely': 757797, 'which completely made': 985760, 'completely made my': 192321, 'made my jaw': 507861, 'my jaw drop': 548902, 'wrong the': 1013112, 'is ordering': 450603, 'ordering private': 619008, 'shutdown people': 768081, 'being decimated': 125023, 'decimated on': 230987, 'on purpose': 603020, 'purpose ha': 690127, 'ha trump': 372375, 'trump embraced': 933539, 'embraced socialism': 272502, 'socialism my': 780969, 'my trip': 550429, 'much socialism': 545312, 'socialism ever': 780956, 'happening in our': 377366, 'so wrong the': 778822, 'wrong the government': 1013115, 'government is ordering': 360265, 'is ordering private': 450605, 'ordering private business': 619009, 'private business to': 678868, 'business to shutdown': 144557, 'to shutdown people': 914619, 'shutdown people life': 768082, 'people life are': 648632, 'life are being': 488499, 'are being decimated': 84842, 'being decimated on': 125024, 'decimated on purpose': 230988, 'on purpose ha': 603026, 'purpose ha trump': 690128, 'ha trump embraced': 372376, 'trump embraced socialism': 933540, 'embraced socialism my': 272503, 'socialism my trip': 780970, 'my trip to': 550431, 'store today is': 810848, 'today is much': 919724, 'is much socialism': 449768, 'much socialism ever': 545313, 'socialism ever want': 780957, 'want to experience': 966031, 'seclusion': 743647, 'is perhaps': 450854, 'perhaps blessing': 651572, 'blessing for': 132643, 'seeing foot': 746296, 'drop shopper': 260386, 'shopper go': 761532, 'into seclusion': 442966, 'seclusion more': 743648, 'more more': 539801, 'more company': 538839, 'are advertising': 84239, 'advertising the': 33281, 'the alternative': 848604, 'alternative of': 49247, 'internet is perhaps': 441960, 'is perhaps blessing': 450855, 'perhaps blessing for': 651573, 'blessing for business': 132644, 'for business that': 319845, 'that are seeing': 842812, 'are seeing foot': 89897, 'seeing foot traffic': 746297, 'foot traffic drop': 318457, 'traffic drop shopper': 929082, 'drop shopper go': 260387, 'shopper go into': 761533, 'go into seclusion': 353768, 'into seclusion more': 442967, 'seclusion more more': 743649, 'more more company': 539802, 'more company are': 538840, 'company are advertising': 190407, 'are advertising the': 84240, 'advertising the alternative': 33282, 'the alternative of': 848605, 'alternative of online': 49248, 'need covid': 554647, 'store be sure': 806666, 'sure to thank': 827788, 'to thank the': 916434, 'at risk to': 100408, 'risk to make': 723967, 'they need covid': 882725, 'need covid 19': 554648, 'roundy': 726430, 'roundy like': 726431, 'like other': 490943, 'supermarket operator': 821783, 'operator is': 613374, 'seeing surge': 746480, 'shopper stocking': 761716, 'up item': 945252, 'roundy like other': 726432, 'like other supermarket': 490948, 'other supermarket operator': 621022, 'supermarket operator is': 821786, 'operator is seeing': 613375, 'is seeing surge': 451722, 'seeing surge in': 746481, 'in demand from': 422126, 'demand from shopper': 235546, 'from shopper stocking': 337270, 'shopper stocking up': 761717, 'stocking up item': 803619, 'up item due': 945253, 'consumes': 199792, 'hpqm77pgsd': 409577, 'report collected': 711869, 'collected since': 186374, '2020 consumes': 14245, 'consumes via': 199793, 'mondaymotivation co': 536455, 'co hpqm77pgsd': 184855, 'commission report that': 188889, 'report that approximately': 712315, '12 million ha': 2884, 'million ha been': 532178, 'ha been lost': 369847, 'been lost to': 121490, 'related scam based': 708548, 'scam based on': 740068, 'on consumer report': 600073, 'consumer report collected': 198702, 'report collected since': 711870, 'collected since january': 186375, 'january 2020 consumes': 464630, '2020 consumes via': 14246, 'consumes via security': 199794, 'tech mondaymotivation co': 836121, 'mondaymotivation co hpqm77pgsd': 536456, 'that prey': 845818, 'public fear': 687991, 'loved one with': 504928, 'one with these': 607491, 'with these tip': 1001663, 'trade commission for': 928445, 'commission for avoiding': 188823, 'avoiding scam that': 105494, 'scam that prey': 740399, 'that prey on': 845819, 'prey on the': 672072, 'the public fear': 864808, 'public fear surrounding': 687994, 'today ve': 920424, 've mostly': 953376, 'mostly been': 542938, 'been wondering': 122390, 'borrow inflatable': 135600, 'inflatable ball': 436973, 'push trolley': 690334, 'one socialdistancing': 607066, 'today ve mostly': 920425, 've mostly been': 953377, 'mostly been wondering': 542939, 'been wondering if': 122391, 'wondering if can': 1004167, 'if can borrow': 413922, 'can borrow inflatable': 157777, 'borrow inflatable ball': 135601, 'inflatable ball to': 436974, 'ball to go': 109070, 'supermarket and whether': 819105, 'and whether it': 75545, 'whether it would': 985536, 'would be possible': 1011634, 'possible to push': 665851, 'to push trolley': 912574, 'push trolley in': 690335, 'trolley in one': 932433, 'in one socialdistancing': 426155, 'attention resident': 102475, 'queue up': 694109, 'outside your': 629657, 'around there': 93579, '19 bollock': 5415, 'bollock so': 134120, 'why change': 990881, 'your buying': 1023095, 'habit now': 372657, 'attention resident of': 102476, 'resident of the': 714346, 'united kingdom you': 942191, 'kingdom you do': 475356, 'to queue up': 912674, 'queue up outside': 694111, 'up outside your': 945722, 'outside your local': 629660, 'supermarket at 7am': 819231, '7am to ensure': 22441, 'ensure you get': 278128, 'your shopping there': 1025796, 'is enough to': 447519, 'go around there': 353317, 'around there wa': 93580, 'there wa before': 879231, 'wa before this': 961671, 'before this covid': 123226, 'covid 19 bollock': 212716, '19 bollock so': 5416, 'bollock so why': 134121, 'so why change': 778753, 'why change your': 990882, 'change your buying': 172414, 'your buying habit': 1023096, 'buying habit now': 150461, 'the love': 859763, 'carers teacher': 164620, 'teacher supermarket': 835509, 'taken global': 833002, 'to realise': 912852, 'realise just': 701601, 'actually are': 30729, 'really appreciate all': 701979, 'appreciate all the': 82707, 'all the love': 44817, 'the love for': 859765, 'the nh carers': 861731, 'nh carers teacher': 561919, 'carers teacher supermarket': 164621, 'teacher supermarket worker': 835513, 'supermarket worker etc': 824017, 'worker etc but': 1006867, 'etc but why': 282453, 'but why ha': 147860, 'why ha it': 991031, 'ha it taken': 371028, 'it taken global': 461436, 'taken global pandemic': 833003, 'global pandemic to': 352108, 'pandemic to realise': 636790, 'to realise just': 912853, 'realise just how': 701602, 'just how important': 468997, 'how important we': 408042, 'important we actually': 419103, 'we actually are': 970279, 'actually are 19': 30730, 'spain is': 787313, 'now controlling': 574444, 'controlling how': 202275, 'ppl can': 668201, 'spain is now': 787314, 'is now controlling': 450274, 'now controlling how': 574445, 'controlling how many': 202276, 'how many ppl': 408281, 'many ppl can': 514575, 'ppl can enter': 668203, 'can enter the': 158239, 'store at once': 806588, 'indiana': 434914, 'in indiana': 424067, 'indiana she': 434926, 'ha fever': 370611, 'fever but': 303662, 'test she': 839164, 'safety kroger': 730602, 'paying her': 645423, 'her after': 391827, 'working 12': 1008458, 'shift for': 758289, 'nj please': 563447, 'keep her': 471577, 'daughter is supermarket': 226872, 'is supermarket worker': 452464, 'worker in indiana': 1007178, 'in indiana she': 424069, 'indiana she ha': 434927, 'she ha fever': 756074, 'ha fever but': 370613, 'fever but there': 303663, 'are no covid': 88249, '19 test she': 11083, 'test she is': 839165, 'she is isolating': 756154, 'is isolating for': 449003, 'isolating for her': 455096, 'her and everyone': 391847, 'and everyone safety': 62407, 'everyone safety kroger': 287339, 'safety kroger is': 730603, 'kroger is not': 477747, 'is not paying': 450151, 'not paying her': 570989, 'paying her after': 645424, 'her after working': 391828, 'after working 12': 36577, 'working 12 hour': 1008459, 'hour shift for': 405914, 'shift for week': 758290, 'week in nj': 976377, 'in nj please': 425903, 'nj please keep': 563448, 'please keep her': 660153, 'keep her in': 471580, 'her in your': 392142, 'ha compiled': 370213, 'compiled an': 191811, 'excellent list': 289094, 'pandemic staysafe': 636549, 'the ha compiled': 856985, 'ha compiled an': 370214, 'compiled an excellent': 191812, 'an excellent list': 55917, 'excellent list of': 289095, 'list of resource': 494468, 'of resource to': 588988, 'help you avoid': 390953, 'you avoid scam': 1017352, 'scam and fraud': 740000, 'and fraud during': 63254, 'the pandemic staysafe': 863108, 'pandemic staysafe stayhome': 636550, 'hey ya': 394559, 'll everything': 496746, 'been rough': 121870, 'rough all': 726241, 'all around': 42061, '19 lot': 8477, 'struggling myself': 814462, 'myself included': 550883, 'included work': 431709, 'service catering': 752213, 'catering and': 167256, 'what isn': 981740, 'isn really': 454637, 'really big': 702029, 'big demand': 129752, 'demand right': 236150, 'now lol': 575246, 'lol currently': 500890, 'currently getting': 221544, 'getting no': 349146, 'no hour': 564448, 'hey ya ll': 394560, 'ya ll everything': 1014015, 'll everything ha': 496747, 'everything ha been': 287828, 'ha been rough': 369908, 'been rough all': 121871, 'rough all around': 726242, 'all around with': 42067, 'around with covid': 93636, 'covid 19 lot': 213379, '19 lot of': 8478, 'are struggling myself': 90589, 'struggling myself included': 814463, 'myself included work': 550884, 'included work in': 431710, 'work in food': 1005308, 'in food service': 422986, 'food service catering': 316407, 'service catering and': 752214, 'catering and guess': 167257, 'guess what isn': 368083, 'what isn really': 981742, 'isn really big': 454639, 'really big demand': 702031, 'big demand right': 129754, 'demand right now': 236151, 'right now lol': 722099, 'now lol currently': 575247, 'lol currently getting': 500891, 'currently getting no': 221545, 'getting no hour': 349147, 'no hour at': 564449, 'hour at work': 405445, 'laborecon': 478489, 'laborecon no': 478492, 'no focus': 564242, 'better pay': 128402, 'pay they': 645168, 'need sick': 555565, 'leave grocery': 484805, 'calling in': 156575, 'in sick': 427930, 'sick right': 768596, '19 due': 6669, 'of testing': 590688, 'testing in': 839514, 'cannot leave': 161993, 'leave work': 485045, 'without positive': 1002844, 'laborecon no focus': 478493, 'no focus on': 564243, 'focus on that': 311900, 'on that now': 603942, 'that now they': 845426, 'now they need': 576112, 'need better pay': 554536, 'better pay they': 128403, 'pay they need': 645170, 'they need sick': 882757, 'need sick leave': 555566, 'sick leave grocery': 768493, 'leave grocery store': 484807, 'worker are calling': 1006373, 'are calling in': 85147, 'calling in sick': 156576, 'in sick right': 427934, 'sick right now': 768597, 'now and cannot': 574030, 'covid 19 due': 212991, '19 due to': 6670, 'to the lack': 916830, 'lack of testing': 478663, 'of testing in': 590689, 'testing in the': 839518, 'state and cannot': 795358, 'and cannot leave': 59515, 'cannot leave work': 161995, 'leave work without': 485048, 'work without positive': 1006056, 'without positive covid': 1002845, 'tpselfies': 928091, 'almost out': 46719, 'you land': 1019554, 'land one': 479285, 'pack tpselfies': 633179, 'tpselfies are': 928092, 'you get up': 1018805, 'get up at': 348562, 'up at am': 944424, 'at am to': 97939, 'am to line': 50506, 'up for toiletpaper': 944970, 'for toiletpaper because': 327254, 'toiletpaper because you': 921796, 'you re almost': 1020563, 're almost out': 698251, 'almost out and': 46720, 'out and you': 625711, 'and you land': 76030, 'you land one': 1019555, 'land one of': 479286, 'last pack tpselfies': 480432, 'pack tpselfies are': 633180, 'tpselfies are sign': 928093, 'are sign of': 90124, 'scaring': 741108, 'wuarantinememe': 1013437, 'literally scaring': 495074, 'scaring the': 741112, 'people toiletpaper': 649977, 'toiletpaper corona': 921874, 'toiletpaper panicbuying': 922308, 'panicbuying toiletpaperchallenge': 639095, 'toiletpaperchallenge quarantine': 922976, 'quarantine wuarantinememe': 692719, 'wuarantinememe hilarious': 1013438, 'hilarious laugh': 396443, 'is literally scaring': 449395, 'literally scaring the': 495075, 'scaring the shit': 741114, 'of people toiletpaper': 588007, 'people toiletpaper corona': 649978, 'toiletpaper corona toiletpaper': 921876, 'corona toiletpaper panicbuying': 204251, 'toiletpaper panicbuying toiletpaperchallenge': 922310, 'panicbuying toiletpaperchallenge quarantine': 639096, 'toiletpaperchallenge quarantine wuarantinememe': 922977, 'quarantine wuarantinememe hilarious': 692720, 'wuarantinememe hilarious laugh': 1013439, 'irony': 444958, 'bun': 142602, 'who see': 989572, 'the irony': 858458, 'irony of': 444965, 'find hot': 306968, 'hot dog': 405008, 'dog hamburger': 252107, 'hamburger bun': 374544, 'bun but': 142603, 'meat in': 525614, 'only person who': 610964, 'person who see': 652737, 'who see the': 989574, 'see the irony': 745847, 'the irony of': 858461, 'irony of being': 444966, 'of being able': 580633, 'to find hot': 905909, 'find hot dog': 306969, 'hot dog and': 405009, 'dog and hot': 252033, 'and hot dog': 64759, 'hot dog hamburger': 405011, 'dog hamburger bun': 252108, 'hamburger bun but': 374545, 'bun but no': 142605, 'but no meat': 146491, 'no meat in': 564750, 'meat in the': 525621, 'grocery store corona': 365301, 'store corona virus': 807177, 'litter': 495196, 'amreeka': 54920, 'ffs having': 304304, 'glove is': 352740, 'to litter': 909331, 'litter walk': 495209, 'walk two': 964909, 'two more': 937066, 'more step': 540458, 'step and': 799491, 'throw them': 895055, 'them away': 875453, 'the trash': 869916, 'trash don': 930153, 'don grocery': 253578, 'it return': 460755, 'return your': 719953, 'your cart': 1023151, 'their designated': 873008, 'designated spot': 238307, 'spot amreeka': 790029, 'amreeka usa': 54921, 'ffs having to': 304305, 'having to wear': 384374, 'and glove is': 63726, 'glove is not': 352742, 'not an excuse': 568196, 'excuse to litter': 289786, 'to litter walk': 909333, 'litter walk two': 495210, 'walk two more': 964910, 'two more step': 937067, 'more step and': 540459, 'step and throw': 799493, 'and throw them': 74097, 'throw them away': 895056, 'them away in': 875454, 'away in the': 105951, 'in the trash': 429625, 'the trash don': 869919, 'trash don grocery': 930154, 'don grocery store': 253579, 'store employee have': 807497, 'employee have enough': 273919, 'enough to put': 277719, 'to put up': 912623, 'put up with': 690971, 'up with and': 946617, 'with and while': 997253, 'and while we': 75575, 'we re at': 972829, 're at it': 698327, 'at it return': 99335, 'it return your': 460757, 'return your cart': 719954, 'your cart to': 1023155, 'cart to their': 165402, 'to their designated': 917223, 'their designated spot': 873009, 'designated spot amreeka': 238308, 'spot amreeka usa': 790030, 'lifeblood': 489258, 'cashisking': 166683, 'sixoclock': 772735, 'recession economist': 704267, 'economist recommend': 267574, 'recommend cash': 704685, 'cash consumer': 166200, 'economy lifeblood': 268039, 'lifeblood cashisking': 489259, 'cashisking sixoclock': 166684, 'sixoclock news': 772736, 'recession economist recommend': 704268, 'economist recommend cash': 267575, 'recommend cash consumer': 704686, 'cash consumer economy': 166201, 'consumer economy lifeblood': 197311, 'economy lifeblood cashisking': 268040, 'lifeblood cashisking sixoclock': 489260, 'cashisking sixoclock news': 166685, 'glitch': 351713, 'technical glitch': 836206, 'glitch at': 351714, 'on wholefoods': 605298, 'wholefoods prime': 990399, 'prime now': 678169, 'and amazonfresh': 58054, 'amazonfresh order': 51230, 'order tonight': 618727, 'tonight panic': 924468, 'buying through': 151229, 'outbreak highlight': 628306, 'technical glitch at': 836207, 'glitch at amazon': 351715, 'at amazon is': 97949, 'amazon is wreaking': 51013, 'havoc on wholefoods': 384434, 'on wholefoods prime': 605299, 'wholefoods prime now': 990400, 'prime now and': 678170, 'now and amazonfresh': 574026, 'and amazonfresh order': 58055, 'amazonfresh order tonight': 51231, 'order tonight panic': 618728, 'tonight panic buying': 924469, 'panic buying through': 637936, 'buying through the': 151230, 'through the outbreak': 894761, 'the outbreak highlight': 862640, 'outbreak highlight the': 628307, 'highlight the limit': 395971, 'the limit of': 859387, 'limit of amazon': 492393, 'of amazon delivery': 580027, 'world are looking': 1009318, 'looking to combat': 503023, 'country right': 211014, 'every supermarket shelf': 286266, 'the country right': 852144, 'country right now': 211015, 'slows': 774630, 'treasure coast': 930765, 'coast food': 185103, 'demand up': 236427, '40 access': 18523, 'perishable slows': 652004, 'slows amid': 774633, 'outbreak via': 628778, 'treasure coast food': 930766, 'coast food bank': 185104, 'bank demand up': 109765, 'demand up 40': 236428, 'up 40 access': 944169, '40 access to': 18524, 'access to non': 28262, 'to non perishable': 910631, 'non perishable slows': 566460, 'perishable slows amid': 652005, 'slows amid covid': 774634, '19 outbreak via': 9202, 'cut price by': 223492, 'by 50 while': 151676, 'denis': 236993, 'people crowding': 647591, 'in saint': 427636, 'saint denis': 731813, 'denis the': 236996, 'after announced': 35365, 'announced tightening': 77096, 'tightening travel': 895857, 'people crowding in': 647592, 'in the door': 429147, 'door of supermarket': 255666, 'supermarket in saint': 820970, 'in saint denis': 427637, 'saint denis the': 731815, 'denis the day': 236997, 'the day after': 852865, 'day after announced': 227177, 'after announced tightening': 35368, 'announced tightening travel': 77097, 'tightening travel restriction': 895858, 'n95facemask': 551242, 'mask already': 518287, 'usa thing': 948762, 'better sooner': 128479, 'sooner pay': 785921, 'pay large': 644974, 'large attention': 479596, 'yourself mask': 1026664, 'mask facemask': 518639, 'n95 n95facemask': 551212, 'n95facemask corona': 551243, 'coronavir coronavid19': 205419, 'disposable mask already': 246261, 'mask already in': 518288, 'already in supermarket': 47475, 'supermarket in usa': 820996, 'in usa thing': 430496, 'usa thing will': 948763, 'will be better': 992378, 'be better sooner': 113842, 'better sooner pay': 128480, 'sooner pay large': 785922, 'pay large attention': 644975, 'large attention to': 479597, 'attention to protect': 102496, 'protect yourself mask': 685099, 'yourself mask mask': 1026666, 'mask mask facemask': 518952, 'mask facemask n95': 518640, 'facemask n95 n95facemask': 295092, 'n95 n95facemask corona': 551213, 'n95facemask corona coronav': 551244, 'ru coronavir coronavid19': 726888, 'also want': 49075, 'from recent': 337048, 'recent scam': 703986, 'scam regarding': 740325, 'ftc share': 339449, 'share red': 755201, 'red flag': 705578, 'flag to': 309948, 'for below': 319642, 'while we all': 987542, 'all take the': 44596, 'the necessary step': 861381, 'necessary step to': 554095, 'maintain the well': 509066, 'of our community': 587438, 'community we also': 190206, 'we also want': 970413, 'also want to': 49076, 'want to remind': 966103, 'you to protect': 1021823, 'and your information': 76079, 'your information from': 1024483, 'information from recent': 437845, 'from recent scam': 337049, 'recent scam regarding': 703987, 'scam regarding covid': 740326, 'the ftc share': 855941, 'ftc share red': 339450, 'share red flag': 755202, 'red flag to': 705580, 'flag to look': 309949, 'look for below': 502351, 'mn grocery': 534795, 'considered emergency': 195281, 'given childcare': 350969, 'childcare assistance': 176290, 'assistance 19': 96659, 'mn grocery store': 534796, 'worker are considered': 1006376, 'are considered emergency': 85502, 'considered emergency personnel': 195282, 'emergency personnel and': 272861, 'personnel and will': 653082, 'be given childcare': 115023, 'given childcare assistance': 350970, 'childcare assistance 19': 176291, 'assistance 19 corona': 96660, '19 corona pandemic': 6051, 'mature': 520706, 'overheard it': 631241, 'old rave': 598440, 'rave day': 697927, 'day group': 227702, 'shopper receive': 761660, 'receive mass': 703506, 'mass text': 519883, 'message telling': 529428, 'them where': 876611, 'where and': 984733, 'due thanks': 261685, 'for mature': 323290, 'mature liberal': 520707, 'liberal democracy': 488006, 'democracy boris': 236679, 'boris black': 135445, 'market spiv': 517092, 'overheard it like': 631242, 'it like the': 459375, 'like the old': 491385, 'the old rave': 862143, 'old rave day': 598441, 'rave day group': 697928, 'day group of': 227703, 'group of shopper': 366801, 'of shopper receive': 589648, 'shopper receive mass': 761661, 'receive mass text': 703507, 'mass text message': 519884, 'text message telling': 839916, 'message telling them': 529429, 'telling them where': 837277, 'them where and': 876612, 'where and when': 984735, 'and when the': 75522, 'when the next': 984176, 'the next grocery': 861669, 'next grocery delivery': 561389, 'grocery delivery is': 364444, 'delivery is due': 234136, 'is due thanks': 447402, 'due thanks for': 261686, 'thanks for mature': 842068, 'for mature liberal': 323291, 'mature liberal democracy': 520708, 'liberal democracy boris': 488007, 'democracy boris black': 236680, 'boris black market': 135446, 'black market spiv': 132093, 'can bet': 157754, 'your last': 1024590, 'last toilet': 480585, 'roll that': 725530, 'that cybercriminals': 843425, 'cybercriminals anticipated': 223968, 'anticipated the': 78466, 'shopping rush': 763791, 'rush and': 728282, 'were ready': 980036, 'all kind': 43318, 'kind online': 474956, 'online besafe': 607930, 'you can bet': 1017630, 'can bet your': 157757, 'bet your last': 128136, 'your last toilet': 1024593, 'last toilet paper': 480586, 'paper roll that': 640695, 'roll that cybercriminals': 725531, 'that cybercriminals anticipated': 843426, 'cybercriminals anticipated the': 223969, 'anticipated the online': 78467, 'online shopping rush': 609257, 'shopping rush and': 763792, 'rush and were': 728283, 'and were ready': 75437, 'were ready to': 980037, 'ready to take': 700984, 'our need to': 624002, 'buy supply of': 149267, 'supply of all': 825612, 'of all kind': 579952, 'all kind online': 43321, 'kind online besafe': 474957, 'sikh': 769675, 'cater': 167239, 'proudsikhs': 686090, 'sikh non': 769680, 'profit organization': 682835, 'organization ha': 619374, 'ha opened': 371448, 'opened emergency': 612721, 'canada to': 160586, 'to cater': 902520, 'cater to': 167244, 'outbreak proudsikhs': 628546, 'proudsikhs 19': 686091, 'sikh non profit': 769681, 'non profit organization': 566475, 'profit organization ha': 682836, 'organization ha opened': 619376, 'ha opened emergency': 371449, 'opened emergency food': 612722, 'emergency food bank': 272701, 'bank in canada': 109915, 'in canada to': 421203, 'canada to cater': 160587, 'to cater to': 902523, 'cater to the': 167247, 'for food supply': 321637, 'supply and hygiene': 824727, 'product in view': 681300, 'the outbreak proudsikhs': 862681, 'outbreak proudsikhs 19': 628547, 'good industry': 357257, 'industry d2c': 435761, 'd2c or': 224204, 'ha emerged': 370476, 'emerged from': 272558, 'have capability': 379889, 'consumer good industry': 197622, 'good industry d2c': 357258, 'industry d2c or': 435762, 'd2c or direct': 224205, 'or direct to': 614976, 'to consumer ha': 903306, 'consumer ha emerged': 197675, 'ha emerged from': 370478, 'emerged from good': 272560, 'from good to': 335666, 'good to have': 357883, 'have to must': 383252, 'must have capability': 546696, 'bramley': 137650, 'bramley people': 137651, 'early before': 264554, 'even opened': 284437, 'opened they': 612768, 'other because': 619879, 'uk these': 938812, 'bramley people are': 137652, 'are turning up': 91231, 'turning up early': 935984, 'up early before': 944768, 'early before the': 264555, 'the shop ha': 866996, 'shop ha even': 760253, 'ha even opened': 370521, 'even opened they': 284438, 'opened they should': 612769, 'be so close': 117251, 'each other because': 264158, 'other because of': 619880, '19 outbreak that': 9196, 'outbreak that is': 628699, 'the uk these': 870291, 'uk these people': 938813, 'messichallenge': 529542, 'messichallenge 10': 529543, '10 toiletpaper': 1737, 'toiletpaper staying': 922533, 'staying positive': 798682, 'positive haven': 665343, 'haven touched': 383913, 'touched in': 926619, 'skill are': 772945, 'there new': 878785, 'messichallenge 10 toiletpaper': 529544, '10 toiletpaper staying': 1738, 'toiletpaper staying positive': 922534, 'staying positive haven': 798683, 'positive haven touched': 665344, 'haven touched in': 383914, 'touched in year': 926620, 'in year but': 431019, 'year but the': 1014448, 'but the skill': 147405, 'the skill are': 867300, 'skill are there': 772946, 'are there new': 90958, 'there new york': 878788, 'cringeworthy': 216924, 'fealty': 300992, 'did solid': 240808, 'posted his': 666533, 'current asking': 221101, 'equipment since': 279827, 'since cringeworthy': 770554, 'cringeworthy fealty': 216925, 'fealty seems': 300995, 'only currency': 610299, 'currency of': 221048, 'any value': 80009, 'value these': 952213, 'did solid and': 240809, 'solid and posted': 781906, 'and posted his': 69238, 'posted his current': 666534, 'his current asking': 397336, 'current asking price': 221102, 'for ppe and': 324664, 'ppe and healthcare': 667899, 'healthcare equipment since': 387096, 'equipment since cringeworthy': 279828, 'since cringeworthy fealty': 770555, 'cringeworthy fealty seems': 216926, 'fealty seems to': 300996, 'the only currency': 862298, 'only currency of': 610300, 'currency of any': 221049, 'of any value': 580274, 'any value these': 80010, 'value these day': 952214, 'x3': 1013759, 'a2': 24064, 'for usa': 327488, 'usa they': 948759, 'pay x3': 645241, 'x3 agreed': 1013760, 'agreed price': 38721, 'when plane': 983885, 'plane loaded': 658386, 'loaded in': 497313, 'in shanghai': 427855, 'shanghai to': 754810, 'fulfill order': 340414, 'country source': 211068, 'source french': 786484, 'french tv': 332764, 'tv a2': 936071, 'no problem for': 565193, 'problem for usa': 679527, 'for usa they': 327490, 'usa they pay': 948761, 'they pay x3': 882874, 'pay x3 agreed': 645242, 'x3 agreed price': 1013761, 'agreed price when': 38723, 'price when plane': 677487, 'when plane loaded': 983886, 'plane loaded in': 658387, 'loaded in shanghai': 497314, 'in shanghai to': 427857, 'shanghai to fulfill': 754811, 'to fulfill order': 906306, 'fulfill order from': 340415, 'order from other': 618257, 'from other country': 336725, 'other country source': 620026, 'country source french': 211069, 'source french tv': 786485, 'french tv a2': 332765, 'adorable': 32737, 'activitiesforchildren': 30352, 'dfwparents': 240067, 'so adorable': 776463, 'adorable activitiesforchildren': 32738, 'activitiesforchildren dfwparents': 30353, 'dfwparents parenting': 240068, 'parenting toiletpaper': 641807, 'are so adorable': 90190, 'so adorable activitiesforchildren': 776464, 'adorable activitiesforchildren dfwparents': 32739, 'activitiesforchildren dfwparents parenting': 30354, 'dfwparents parenting toiletpaper': 240069, 'what led': 981805, 'shelf toiletpaper': 757711, 'paper here what': 640268, 'here what led': 393813, 'what led to': 981806, 'led to empty': 485281, 'to empty store': 905035, 'store shelf toiletpaper': 810106, 'beverage company': 128994, 'company start': 191106, 'start producing': 794438, 'help essential': 389651, 'beverage company start': 128995, 'company start producing': 191107, 'start producing hand': 794439, 'to help essential': 907506, 'help essential service': 389652, 'essential service during': 281503, 'is dump': 447408, 'dump talking': 262188, 'border wall': 135287, 'wall oil': 965166, 'supposed briefing': 827342, 'the dont': 853551, 'dont call': 255196, 'coronavirus briefing': 205572, 'briefing if': 139719, 'if ur': 415221, 'ur gonna': 948002, 'gonna talk': 356636, 'just trying': 470146, 'trying increase': 934709, 'increase ur': 433142, 'ur rating': 948052, 'rating that': 697596, 'care so': 164204, 'why is dump': 991100, 'is dump talking': 447409, 'dump talking about': 262189, 'about the border': 26343, 'the border wall': 849876, 'border wall oil': 135288, 'wall oil price': 965167, 'price when he': 677484, 'when he is': 983535, 'he is supposed': 385148, 'is supposed briefing': 452481, 'supposed briefing on': 827343, 'briefing on the': 139732, 'on the dont': 604073, 'the dont call': 853552, 'dont call it': 255197, 'it the coronavirus': 461523, 'the coronavirus briefing': 851813, 'coronavirus briefing if': 205573, 'briefing if ur': 139720, 'if ur gonna': 415222, 'ur gonna talk': 948003, 'gonna talk about': 356637, 'talk about other': 833750, 'about other thing': 25874, 'other thing are': 621100, 'thing are just': 884158, 'are just trying': 87642, 'just trying increase': 470147, 'trying increase ur': 934710, 'increase ur rating': 433143, 'ur rating that': 948053, 'rating that care': 697597, 'that care so': 843161, 'care so much': 164205, 'so much about': 777755, 'handmaid': 376425, 'is weird': 453832, 'weird it': 977764, 'like handmaid': 490372, 'handmaid tale': 376426, 'tale no': 833696, 'talk or': 833835, 'or stand': 617198, 'stand near': 793549, 'near each': 553482, 'other quarantine': 620802, 'quarantine 30moredays': 691987, 'store is weird': 808546, 'is weird it': 453834, 'weird it like': 977765, 'it like handmaid': 459364, 'like handmaid tale': 490373, 'handmaid tale no': 376428, 'tale no one': 833697, 'one talk or': 607162, 'talk or stand': 833837, 'or stand near': 617199, 'stand near each': 793550, 'near each other': 553483, 'each other quarantine': 264214, 'other quarantine 30moredays': 620803, 'to mariano': 909845, 'mariano employee': 515680, 'had just': 373218, 'just gotten': 468878, 'gotten off': 359153, 'my bus': 547578, 'bus fight': 143038, 'fight broke': 304683, 'store glass': 807937, 'glass wa': 351642, 'broken stay': 140915, 'safe all': 729414, 'according to mariano': 28562, 'to mariano employee': 909846, 'mariano employee who': 515681, 'who had just': 988882, 'had just gotten': 373220, 'just gotten off': 468879, 'gotten off work': 359154, 'off work and': 594409, 'work and wa': 1004822, 'and wa on': 75093, 'wa on my': 962831, 'on my bus': 602270, 'my bus fight': 547579, 'bus fight broke': 143039, 'fight broke out': 304684, 'broke out in': 140854, 'grocery store glass': 365431, 'store glass wa': 807938, 'glass wa broken': 351643, 'wa broken stay': 961750, 'broken stay safe': 140916, 'stay safe all': 797207, 'safe all covid': 729415, 'figured': 305250, 'hi an': 394596, 'an artist': 55427, 'artist and': 94585, 'am currently': 49994, 'unemployed thank': 941135, '19 very': 11753, 'very cool': 955083, 'cool so': 203042, 'so figured': 777091, 'figured reopen': 305262, 'commission don': 188809, 'any set': 79791, 'anything so': 80886, 'interested just': 441472, 'in da': 421955, 'da thread': 224248, 'hi an artist': 394597, 'an artist and': 55428, 'artist and am': 94586, 'and am currently': 58010, 'am currently unemployed': 49996, 'currently unemployed thank': 221705, 'unemployed thank you': 941136, 'thank you covid': 841714, 'covid 19 very': 214025, '19 very cool': 11754, 'very cool so': 955084, 'cool so figured': 203043, 'so figured reopen': 777093, 'figured reopen commission': 305263, 'reopen commission don': 711351, 'commission don really': 188810, 'don really have': 253853, 'really have any': 702269, 'have any set': 379318, 'any set price': 79792, 'set price or': 753463, 'price or anything': 675765, 'or anything so': 614380, 'anything so if': 80887, 're interested just': 698911, 'interested just dm': 441473, 'just dm and': 468609, 'dm and we': 248871, 'we can work': 971039, 'can work it': 160249, 'work it out': 1005391, 'out here some': 626295, 'here some example': 393576, 'some example of': 782777, 'example of my': 288938, 'of my work': 586833, 'my work and': 550637, 'work and more': 1004790, 'more in da': 539509, 'in da thread': 421956, 'florida swimming': 310986, 'pool association': 664010, 'association ha': 96957, 'launched webpage': 482053, 'help answer': 389364, 'answer consumer': 78029, 'consumer question': 198632, 'about covid19': 25042, 'covid19 and': 214265, 'their swimming': 874933, 'pool please': 664020, 'the florida swimming': 855436, 'florida swimming pool': 310987, 'swimming pool association': 830360, 'pool association ha': 664011, 'association ha launched': 96959, 'ha launched webpage': 371115, 'launched webpage to': 482054, 'webpage to help': 975174, 'to help answer': 907451, 'help answer consumer': 389365, 'answer consumer question': 78030, 'consumer question about': 198633, 'question about covid19': 693496, 'about covid19 and': 25043, 'covid19 and their': 214266, 'and their swimming': 73721, 'their swimming pool': 874934, 'swimming pool please': 830363, 'pool please share': 664021, 'with your customer': 1002190, 'your customer and': 1023404, 'customer and client': 222069, 'heist': 388858, 'captiva': 162933, 'making get': 511087, 'away after': 105770, 'after pulling': 36087, 'pulling off': 688942, 'off heist': 593892, 'heist socialdistancing': 388868, 'socialdistancing mask': 780519, 'mask staysafe': 519308, 'staysafe florida': 798811, 'florida north': 310965, 'north captiva': 567624, 'captiva island': 162934, 'store or making': 809347, 'or making get': 616045, 'making get away': 511088, 'get away after': 346625, 'away after pulling': 105772, 'after pulling off': 36088, 'pulling off heist': 688943, 'off heist socialdistancing': 593893, 'heist socialdistancing mask': 388869, 'socialdistancing mask staysafe': 780521, 'mask staysafe florida': 519309, 'staysafe florida north': 798812, 'florida north captiva': 310966, 'north captiva island': 567625, 'sure how': 827571, 'best get': 127709, 'grocery during': 364481, 'pandemic health': 635601, 'health expert': 386417, 'expert have': 291847, 'some answer': 782301, 'answer cbc': 78025, 'still not sure': 800907, 'not sure how': 571838, 'sure how to': 827579, 'how to best': 408983, 'to best get': 901774, 'best get grocery': 127710, 'get grocery during': 347164, 'grocery during pandemic': 364484, 'during pandemic health': 262870, 'pandemic health expert': 635603, 'health expert have': 386420, 'expert have some': 291851, 'have some answer': 382620, 'some answer cbc': 782303, 'answer cbc news': 78026, 'this press': 889698, 'conference stop': 193758, 'supply work': 826132, 'own eye': 631978, 'eye that': 294103, 'really coming': 702070, 'coming shop': 188187, 'shop you': 761103, 'would there': 1012324, 'to this press': 917454, 'this press conference': 889699, 'press conference stop': 671036, 'conference stop panic': 193759, 'buying because there': 150001, 'is food supply': 447874, 'food supply work': 317019, 'supply work in': 826134, 'and see with': 71151, 'see with my': 746086, 'with my own': 999647, 'my own eye': 549640, 'own eye that': 631980, 'eye that they': 294104, 'are really coming': 89473, 'really coming shop': 702071, 'coming shop you': 188188, 'shop you normally': 761105, 'normally would there': 567578, 'would there is': 1012325, 'is lot for': 449465, 'lot for everyone': 504046, 'statebaroftexas': 796121, 'violates': 957495, 'deceptive': 230819, 'statebaroftexas rt': 796122, 'rt texan': 726813, 've encountered': 953076, 'encountered pricegouging': 275556, 'pricegouging should': 677853, 'or file': 615301, 'office stand': 595553, 'stand ready': 793577, 'prosecute anyone': 684617, 'who violates': 989888, 'violates the': 957496, 'texas deceptive': 839759, 'deceptive trade': 230824, 'practice act': 668514, 'statebaroftexas rt texan': 796123, 'rt texan who': 726814, 'texan who believe': 839729, 'they ve encountered': 883649, 've encountered pricegouging': 953077, 'encountered pricegouging should': 275557, 'pricegouging should call': 677854, '0508 or file': 959, 'or file complaint': 615302, 'complaint at my': 191948, 'at my office': 99826, 'my office stand': 549549, 'office stand ready': 595554, 'stand ready to': 793578, 'to prosecute anyone': 912285, 'prosecute anyone who': 684618, 'anyone who violates': 80635, 'who violates the': 989889, 'violates the texas': 957498, 'the texas deceptive': 869340, 'texas deceptive trade': 839760, 'deceptive trade practice': 230825, 'trade practice act': 928548, 'epi': 279298, 'demi': 236640, 'lirics': 494234, 'epic': 279302, 'overrated': 631410, 'literature': 495123, 'series epi': 751246, 'epi demi': 279299, 'demi lirics': 236641, 'lirics epic': 494235, 'epic drama': 279305, 'drama baby': 258243, 'baby drama': 106594, 'drama toilet': 258260, 'be overrated': 116312, 'overrated toiletpaper': 631411, 'toiletroll joke': 923366, 'joke literature': 467103, 'literature pandemia': 495124, 'series epi demi': 751247, 'epi demi lirics': 279300, 'demi lirics epic': 236642, 'lirics epic drama': 494236, 'epic drama baby': 279306, 'drama baby drama': 258244, 'baby drama toilet': 106595, 'drama toilet roll': 258261, 'roll can not': 725245, 'can not be': 159043, 'not be overrated': 568430, 'be overrated toiletpaper': 116313, 'overrated toiletpaper toiletroll': 631412, 'toiletpaper toiletroll joke': 922730, 'toiletroll joke literature': 923367, 'joke literature pandemia': 467104, 'fda warns': 300948, 'of questionable': 588689, 'help diagnose': 389584, 'diagnose treat': 240220, 'treat cure': 930817, 'even prevent': 284489, 'prevent covid': 671607, 'for link': 322993, 'fda statement': 300928, 'statement testing': 796215, 'the fda warns': 855028, 'fda warns the': 300949, 'warns the public': 967299, 'the public of': 864837, 'public of questionable': 688188, 'of questionable product': 588690, 'questionable product that': 693829, 'claim to help': 179851, 'to help diagnose': 907491, 'help diagnose treat': 389585, 'diagnose treat cure': 240221, 'treat cure and': 930818, 'cure and even': 220699, 'and even prevent': 62342, 'even prevent covid': 284490, 'prevent covid 19': 671608, 'covid 19 click': 212808, 'click here for': 181915, 'here for link': 393005, 'for link to': 322994, 'the fda statement': 855025, 'fda statement testing': 300929, 'distanced myself': 246920, 'the kitchen': 858831, 'kitchen now': 475730, 'next hurdle': 561403, 'hurdle is': 411449, 'this unnecessary': 890913, 'shopping doing': 762500, 'doing quarantinelife': 252617, 'socially distanced myself': 781057, 'distanced myself from': 246921, 'myself from the': 550866, 'from the kitchen': 337764, 'the kitchen now': 858836, 'kitchen now the': 475731, 'now the next': 576052, 'the next hurdle': 861672, 'next hurdle is': 561404, 'hurdle is to': 411450, 'is to socially': 453245, 'socially distance myself': 781046, 'myself from all': 550863, 'from all this': 334441, 'all this unnecessary': 45143, 'this unnecessary online': 890914, 'online shopping doing': 609096, 'shopping doing quarantinelife': 762501, 'find myself': 307082, 'myself wandering': 550968, 'wandering into': 965580, 'supermarket searching': 822349, 'searching for': 743324, 'aisle hoping': 40268, 'see stock': 745747, 'stock do': 802048, 'any guess': 79291, 'guess just': 367997, 'of normality': 587070, 'normality coronacrisisuk': 567452, 'find myself wandering': 307087, 'myself wandering into': 550969, 'wandering into supermarket': 965581, 'into supermarket searching': 443059, 'supermarket searching for': 822350, 'searching for the': 743336, 'for the toilet': 326735, 'roll aisle hoping': 725162, 'aisle hoping to': 40269, 'hoping to see': 403958, 'to see stock': 914073, 'see stock do': 745748, 'stock do not': 802049, 'not want any': 572435, 'want any guess': 965716, 'any guess just': 79292, 'guess just want': 367998, 'see some semblance': 745722, 'semblance of normality': 749600, 'of normality coronacrisisuk': 587071, 'normality coronacrisisuk coronacrisis': 567453, 'orderly': 619052, 'perspex': 653249, 'grocery short': 365113, 'and orderly': 68258, 'orderly queue': 619059, 'supermarket everyone': 820232, 'everyone practising': 287297, 'distancing only': 247378, 'only 20': 609988, '20 ppl': 13273, 'ppl allowed': 668154, 'once perspex': 605691, 'perspex between': 653252, 'and shopper': 71522, 'shopper msg': 761617, 'msg about': 544516, 'the speaker': 867544, 'she went to': 756464, 'get some grocery': 348056, 'some grocery short': 783006, 'grocery short and': 365114, 'short and orderly': 764597, 'and orderly queue': 68260, 'orderly queue to': 619060, 'the supermarket everyone': 868581, 'supermarket everyone practising': 820235, 'everyone practising social': 287298, 'social distancing only': 779678, 'distancing only 20': 247379, 'only 20 ppl': 609991, '20 ppl allowed': 13274, 'ppl allowed in': 668155, 'in at once': 420553, 'at once perspex': 99960, 'once perspex between': 605692, 'perspex between cashier': 653253, 'cashier and shopper': 166461, 'and shopper msg': 71527, 'shopper msg about': 761618, 'msg about covid': 544517, 'distancing on the': 247371, 'on the speaker': 604375, 'imperial': 418349, 'figgered': 304590, 'december': 230739, 'with greg': 998687, 'greg imperial': 363829, 'imperial college': 418350, 'college hasn': 186616, 'hasn yet': 378800, 'yet figgered': 1016068, 'figgered out': 304591, 'china virus': 177038, 'virus wa': 958984, 'the probably': 864504, 'probably by': 679226, 'by early': 152445, 'early december': 264578, 'december and': 230747, 'had three': 373649, '60 dead': 20935, 'll go with': 496815, 'go with greg': 354510, 'with greg imperial': 998688, 'greg imperial college': 363830, 'imperial college hasn': 418352, 'college hasn yet': 186617, 'hasn yet figgered': 378801, 'yet figgered out': 1016069, 'figgered out that': 304592, 'out that the': 627334, 'that the china': 846681, 'the china virus': 850837, 'china virus wa': 177041, 'virus wa in': 958988, 'in the probably': 429476, 'the probably by': 864505, 'probably by early': 679227, 'by early december': 152446, 'early december and': 264579, 'december and we': 230748, 'have already had': 379190, 'already had three': 47400, 'had three month': 373650, 'three month of': 894000, 'month of it': 537900, 'of it with': 585467, 'it with about': 462463, 'with about 60': 997081, 'about 60 dead': 24738, 'surface luckily': 828045, 'luckily large': 506508, 'large proportion': 479758, 'worker wearing': 1008155, 'disinfecting their': 245887, 'other surface luckily': 621048, 'surface luckily large': 828046, 'luckily large proportion': 506509, 'large proportion of': 479759, 'proportion of shelf': 684430, 'of shelf stacker': 589582, 'stacker and worker': 792006, 'and worker wearing': 75884, 'worker wearing glove': 1008156, 'glove and disinfecting': 352556, 'and disinfecting their': 61463, 'disinfecting their hand': 245888, 'ripoff': 722689, 'boycott not': 137332, 'only do': 610338, 'they flout': 882120, 'flout an': 311208, 'an opening': 56660, 'opening ban': 612805, 'ban they': 109275, 'now hiked': 574926, 'of sport': 589990, 'sport equipment': 789927, 'equipment by': 279701, '50 ripoff': 19836, 'ripoff merchant': 722692, 'merchant boycottsportsdirect': 529005, 'time to boycott': 897956, 'to boycott not': 901968, 'boycott not only': 137333, 'not only do': 570788, 'only do they': 610341, 'do they flout': 250305, 'they flout an': 882121, 'flout an opening': 311209, 'an opening ban': 56661, 'opening ban they': 612806, 'ban they have': 109276, 'they have now': 882352, 'have now hiked': 381734, 'now hiked price': 574927, 'price of sport': 675575, 'of sport equipment': 589991, 'sport equipment by': 789928, 'equipment by 50': 279702, 'by 50 ripoff': 151669, '50 ripoff merchant': 19837, 'ripoff merchant boycottsportsdirect': 722693, 'anyone asking': 80186, 'employee aren': 273634, 'aren dropping': 92386, 'fly here': 311616, 've exposed': 953103, 'exposed themselves': 292883, 'thousand and': 893373, 'everything yet': 288125, 'yet where': 1016326, 'store being': 806715, 'in icu': 423958, 'anyone asking themselves': 80187, 'asking themselves why': 96088, 'themselves why grocery': 876945, 'why grocery worker': 991028, 'worker and employee': 1006287, 'and employee aren': 62059, 'employee aren dropping': 273635, 'aren dropping like': 92387, 'like fly here': 490252, 'fly here they': 311617, 'here they ve': 393682, 'they ve exposed': 883651, 've exposed themselves': 953104, 'exposed themselves to': 292884, 'themselves to thousand': 876917, 'to thousand and': 917535, 'thousand and touch': 893377, 'and touch everything': 74298, 'touch everything yet': 926477, 'everything yet where': 288126, 'yet where all': 1016327, 'the story about': 868170, 'story about half': 811888, 'about half the': 25340, 'half the store': 374277, 'the store being': 867987, 'store being sick': 806717, 'sick or the': 768558, 'or the manager': 617385, 'the manager in': 859998, 'manager in icu': 512734, 'beset': 127464, 'and beset': 58904, 'beset by': 127465, 'low lng': 505388, 'work restriction': 1005664, 'are maintaining': 87966, 'maintaining dividend': 509104, 'to shareholder': 914375, 'shareholder they': 755486, 'they shed': 883339, 'shed worker': 756523, 'with union': 1001905, 'union describing': 941881, 'describing woodside': 237977, 'woodside action': 1004317, 'action brutal': 29979, 'brutal cold': 141403, 'and beset by': 58905, 'beset by low': 127467, 'by low lng': 153106, 'low lng price': 505389, 'lng price and': 497214, '19 work restriction': 12172, 'work restriction are': 1005665, 'restriction are maintaining': 717222, 'are maintaining dividend': 87967, 'maintaining dividend to': 509105, 'dividend to shareholder': 248644, 'to shareholder they': 914379, 'shareholder they shed': 755487, 'they shed worker': 883340, 'shed worker with': 756524, 'worker with union': 1008269, 'with union describing': 1001906, 'union describing woodside': 941882, 'describing woodside action': 237978, 'woodside action brutal': 1004318, 'action brutal cold': 29980, 'brutal cold and': 141404, 'cold and unnecessary': 185736, 'enlink': 277264, 'enlc': 277262, 'enlink said': 277265, 'wednesday it': 975652, 'it laid': 459290, 'off 300': 593598, '300 employee': 17299, 'employee or': 274083, 'workforce to': 1008389, 'cost amid': 207848, 'amid an': 52386, 'unprecedented crash': 943098, 'between saudi': 128877, 'russia oott': 728526, 'oott shale': 611787, 'shale enlc': 754494, 'enlink said on': 277266, 'said on wednesday': 731292, 'on wednesday it': 605174, 'wednesday it laid': 975654, 'it laid off': 459291, 'laid off 300': 479009, 'off 300 employee': 593599, '300 employee or': 17300, 'employee or 20': 274084, 'or 20 of': 614182, '20 of it': 13201, 'it workforce to': 462528, 'workforce to cut': 1008391, 'to cut cost': 903870, 'cut cost amid': 223280, 'cost amid an': 207849, 'amid an unprecedented': 52390, 'an unprecedented crash': 56882, 'unprecedented crash in': 943099, 'oil price because': 597058, 'outbreak and price': 628006, 'price war between': 677352, 'war between saudi': 966379, 'between saudi arabia': 128878, 'and russia oott': 70675, 'russia oott shale': 728527, 'oott shale enlc': 611788, 'arabia brace': 83863, 'economic slump': 267313, 'the and plunging': 848715, 'and plunging oil': 69136, 'oil price saudi': 597243, 'saudi arabia brace': 737186, 'arabia brace for': 83864, 'brace for an': 137484, 'an economic slump': 55588, '1929': 12332, 'trading here': 928863, 'chart side': 173852, 'side by': 768786, 'by side': 154011, 'side note': 768837, 'the 1929': 847938, '1929 price': 12333, 'almost exactly': 46640, 'exactly 100': 288723, 'trading here are': 928864, 'are the chart': 90807, 'the chart side': 850718, 'chart side by': 173853, 'side by side': 768787, 'by side note': 154012, 'side note that': 768839, 'note that the': 572812, 'that the 1929': 846655, 'the 1929 price': 847939, '1929 price were': 12334, 'price were almost': 677440, 'were almost exactly': 979296, 'almost exactly 100': 46641, 'exactly 100 of': 288724, '100 of the': 1996, 'the price now': 864390, 'googled': 358208, 'most googled': 542351, 'googled question': 358209, 'question since': 693739, 'began is': 123395, 'affect australia': 34123, 'australia realestate': 103361, 'realestate market': 701495, 'and housing': 64794, 'the most googled': 860991, 'most googled question': 542352, 'googled question since': 358210, 'question since the': 693741, 'the outbreak began': 862594, 'outbreak began is': 628042, 'began is how': 123396, 'is how will': 448604, 'will the affect': 995128, 'the affect australia': 848397, 'affect australia realestate': 34125, 'australia realestate market': 103362, 'realestate market and': 701496, 'market and housing': 515971, 'and housing price': 64795, 'signup': 769669, 'realmafiapparel': 702729, 'tp ready': 927914, 'ready tee': 700929, 'tee you': 836464, 'guy asked': 368914, 'gone now': 356339, 'today follow': 919525, 'follow link': 312447, 'bio for': 131140, 'page signup': 633890, 'signup for': 769670, 'our newsletter': 624054, 'newsletter and': 561019, 'off today': 594335, 'today toiletpaper': 920375, 'toiletpaper realmafiapparel': 922400, 'realmafiapparel repost': 702730, 'repost share': 712836, 'buy shop': 149173, 'shop advertising': 759800, 'advertising love': 33242, 'tp ready tee': 927915, 'ready tee you': 700930, 'tee you guy': 836465, 'you guy asked': 1018952, 'guy asked for': 368915, 'asked for it': 95746, 'for it and': 322691, 'it and they': 456518, 'they are almost': 881198, 'are almost gone': 84393, 'almost gone now': 46654, 'gone now get': 356340, 'now get yours': 574776, 'yours today follow': 1026484, 'today follow link': 919526, 'follow link in': 312448, 'in bio for': 420848, 'bio for our': 131141, 'for our main': 324268, 'our main page': 623838, 'main page signup': 508786, 'page signup for': 633891, 'signup for our': 769671, 'for our newsletter': 324276, 'our newsletter and': 624055, 'newsletter and get': 561020, 'and get 10': 63558, 'get 10 off': 346454, '10 off today': 1583, 'off today toiletpaper': 594337, 'today toiletpaper realmafiapparel': 920377, 'toiletpaper realmafiapparel repost': 922401, 'realmafiapparel repost share': 702731, 'repost share buy': 712837, 'share buy shop': 754956, 'buy shop advertising': 149174, 'shop advertising love': 759801, 'advertising love socialdistancing': 33243, 'sentiment data': 750910, 'data gauging': 226245, 'gauging people': 344568, 'change across': 171882, 'across multiple': 29399, 'multiple country': 545741, 'updated our consumer': 947413, 'our consumer sentiment': 622550, 'consumer sentiment data': 198907, 'sentiment data gauging': 750912, 'data gauging people': 226246, 'gauging people expectation': 344569, 'behavior change across': 123958, 'change across multiple': 171883, 'across multiple country': 29400, 'cripthevote': 216946, 'like is': 490512, 'finally out': 306063, 'his site': 397797, 'site that': 772018, 'that sell': 846178, 'sell cleaning': 748666, 'cleaning sanitizing': 181056, 'sanitizing supply': 736516, 'market value': 517291, 'value seem': 952198, 'seem reasonable': 746681, 'price gift': 674180, 'card available': 163467, 'available virus': 104690, 'virus cripthevote': 958103, 'look like is': 502487, 'like is finally': 490513, 'is finally out': 447806, 'finally out with': 306064, 'out with his': 627865, 'with his site': 998844, 'his site that': 397798, 'site that sell': 772022, 'that sell cleaning': 846180, 'sell cleaning sanitizing': 748668, 'cleaning sanitizing supply': 181058, 'sanitizing supply at': 736517, 'supply at market': 824814, 'at market value': 99688, 'market value seem': 517293, 'value seem reasonable': 952199, 'seem reasonable price': 746683, 'reasonable price gift': 703121, 'price gift card': 674181, 'gift card available': 349935, 'card available virus': 163469, 'available virus cripthevote': 104691, 'after speaking': 36231, 'speaking with': 787780, 'have committed': 380039, 'to reserving': 913342, 'most risk': 542714, 'risk right': 723853, 'been deep': 120937, 'cleaned if': 180712, 'please wait': 660739, 'after speaking with': 36232, 'speaking with many': 787782, 'many of our': 514382, 'of our grocery': 587481, 'store have committed': 808074, 'have committed to': 380040, 'committed to reserving': 189045, 'to reserving the': 913343, 'hour of business': 405793, 'of business for': 580953, 'business for the': 143757, 'elderly those who': 270914, 'are at most': 84673, 'at most risk': 99777, 'most risk right': 542715, 'risk right after': 723854, 'right after the': 721740, 'the store have': 868033, 'store have been': 808068, 'have been deep': 379505, 'been deep cleaned': 120938, 'deep cleaned if': 231856, 'cleaned if you': 180713, 'are healthy please': 87068, 'healthy please wait': 387733, 'please wait until': 660740, 'wait until after': 964239, 'until after am': 943671, 'after am to': 35350, 'am to buy': 50504, 'phasing': 654656, 'speeding': 788483, 'is phasing': 450867, 'phasing out': 654657, 'is speeding': 452150, 'speeding it': 788484, 'oil is phasing': 596910, 'is phasing out': 450868, 'phasing out and': 654658, 'out and the': 625700, 'and the virus': 73641, 'virus is speeding': 958404, 'is speeding it': 452151, 'speeding it up': 788485, 'startof': 795075, 'ehsan': 270147, 'ul': 939079, 'haq': 377788, 'roger': 725017, 'hirst': 397157, 'datanow': 226540, 'trusteddata': 934356, 'affect that': 34234, 'short sharp': 764688, 'sharp shock': 755705, 'shock or': 759494, 'or it': 615845, 'the startof': 867739, 'startof prolonged': 795076, 'prolonged period': 683635, 'price ehsan': 673662, 'ehsan ul': 270148, 'ul haq': 939082, 'haq talk': 377789, 'to roger': 913625, 'roger hirst': 725018, 'hirst datanow': 397158, 'datanow trusteddata': 226541, 'despite the effort': 238879, 'effort of opec': 269558, 'of opec is': 587288, 'opec is the': 611908, 'is the affect': 452723, 'the affect that': 848400, 'affect that the': 34235, 'the is having': 858498, 'is having the': 448338, 'having the oil': 384315, 'the oil market': 862112, 'oil market going': 596947, 'market going to': 516469, 'be short sharp': 117161, 'short sharp shock': 764689, 'sharp shock or': 755706, 'shock or it': 759495, 'or it the': 615849, 'it the startof': 461576, 'the startof prolonged': 867740, 'startof prolonged period': 795077, 'prolonged period of': 683636, 'period of lower': 651845, 'of lower price': 586054, 'lower price ehsan': 505958, 'price ehsan ul': 673663, 'ehsan ul haq': 270149, 'ul haq talk': 939083, 'haq talk to': 377790, 'talk to roger': 833888, 'to roger hirst': 913626, 'roger hirst datanow': 725019, 'hirst datanow trusteddata': 397159, 'thestar': 881040, 'for featuring': 321431, 'featuring me': 301596, 'your article': 1022837, 'article be': 94265, 'from thestar': 337976, 'thestar for': 881041, 'information regarding': 437960, 'the toronto': 869806, 'market news': 516754, 'news toronto': 560904, 'toronto realestate': 925984, 'you for featuring': 1018636, 'for featuring me': 321432, 'featuring me in': 301597, 'me in your': 522984, 'in your article': 431057, 'your article be': 1022838, 'article be sure': 94266, 'sure to check': 827759, 'to check out': 902691, 'out the article': 627348, 'the article from': 848933, 'article from thestar': 94335, 'from thestar for': 337977, 'thestar for more': 881042, 'more information regarding': 539591, 'information regarding the': 437963, 'regarding the toronto': 707296, 'the toronto real': 869807, 'estate market news': 282154, 'market news toronto': 516755, 'news toronto realestate': 560905, 'have safe': 382376, 'weekend with': 977456, 'more leave': 539668, 'have safe weekend': 382380, 'safe weekend with': 730127, 'weekend with covid': 977457, '19 and do': 5013, 'not panic buy': 570899, 'panic buy more': 637504, 'buy more leave': 148972, 'more leave some': 539669, 'and nh staff': 67585, '306': 17394, '664': 21443, '1190': 2701, 'public without': 688491, 'without appointment': 1002506, 'appointment but': 82657, 'at 306': 97601, '306 664': 17395, '664 1190': 21444, '1190 we': 2702, 'can coordinate': 157995, 'coordinate pickup': 203183, 'pickup or': 655999, '19 our retail': 9060, 'the public without': 864876, 'public without appointment': 688492, 'without appointment but': 1002507, 'appointment but we': 82658, 'still available by': 800223, 'available by phone': 104280, 'by phone to': 153581, 'phone to help': 655039, 'help our customer': 390226, 'our customer with': 622681, 'customer with their': 223104, 'with their supply': 1001601, 'their supply to': 874922, 'supply to place': 826022, 'an order call': 56692, 'order call at': 618102, 'call at 306': 155779, 'at 306 664': 97602, '306 664 1190': 17396, '664 1190 we': 21445, '1190 we can': 2703, 'we can coordinate': 970927, 'can coordinate pickup': 157996, 'coordinate pickup or': 203184, 'pickup or delivery': 656001, 'pademic': 633805, 'kaffy': 470603, 'buying following': 150296, 'coronavirus pademic': 206429, 'pademic it': 633808, 'appears some': 82203, 'food trader': 317353, 'trader are': 928651, 'price dance': 673383, 'dance queen': 225570, 'queen kaffy': 693378, 'kaffy is': 470604, 'happy about': 377574, 'this she': 890057, 'recently bought': 704056, 'panic buying following': 637733, 'buying following the': 150297, 'following the coronavirus': 312877, 'the coronavirus pademic': 851888, 'coronavirus pademic it': 206430, 'pademic it appears': 633809, 'it appears some': 456564, 'appears some food': 82204, 'some food trader': 782879, 'food trader are': 317354, 'trader are using': 928658, 'using the opportunity': 950704, 'opportunity to hike': 613708, 'hike price dance': 396256, 'price dance queen': 673384, 'dance queen kaffy': 225572, 'queen kaffy is': 693379, 'kaffy is not': 470605, 'is not happy': 450102, 'not happy about': 569794, 'happy about this': 377578, 'about this she': 26658, 'this she recently': 890058, 'she recently bought': 756287, 'recently bought food': 704057, 'bought food item': 136568, 'item and wa': 463082, 'and wa shocked': 75097, 'wa shocked by': 963192, 'the price hike': 864363, 'idealist': 413283, 'susan': 829417, 'zumbuehl': 1027896, 'hi friend': 394643, 'friend my': 333714, 'latest for': 481344, 'the idealist': 857831, 'idealist in': 413284, 'action blog': 29974, 'blog the': 133026, 'pandemic increase': 635722, 'increase demand': 432734, 'bank susan': 110224, 'susan zumbuehl': 829418, 'zumbuehl us': 1027897, 'us her': 948522, 'her senior': 392351, 'hi friend my': 394645, 'friend my latest': 333715, 'my latest for': 548986, 'latest for the': 481348, 'for the idealist': 326489, 'the idealist in': 857832, 'idealist in action': 413285, 'in action blog': 420012, 'action blog the': 29975, 'blog the covid': 133027, '19 pandemic increase': 9362, 'pandemic increase demand': 635723, 'increase demand at': 432735, 'food bank susan': 313653, 'bank susan zumbuehl': 110225, 'susan zumbuehl us': 829419, 'zumbuehl us her': 1027898, 'us her senior': 948523, 'her senior shopping': 392352, 'hour to collect': 406018, 'collect item for': 186295, 'item for those': 463277, 'for those in': 327117, 'between each': 128761, 'space between each': 787070, 'between each person': 128763, 'each person the': 264255, 'person the and': 652640, 'umbrella': 939221, 'consern': 194894, 'during election': 262618, 'election saw': 271058, 'saw free': 738117, 'free shirt': 332166, 'shirt cap': 758974, 'cap umbrella': 162451, 'umbrella sticker': 939231, 'sticker banner': 800079, 'banner now': 110608, 'at they': 101213, 'some subsidized': 783991, 'subsidized insurance': 815995, 'just face': 468687, 'sanitizers pharmacy': 736366, 'pharmacy sell': 654443, 'sell at': 748629, 'really piece': 702487, 'of consern': 581682, 'consern to': 194895, 'during election saw': 262620, 'election saw free': 271059, 'saw free shirt': 738118, 'free shirt cap': 332167, 'shirt cap umbrella': 758975, 'cap umbrella sticker': 162452, 'umbrella sticker banner': 939232, 'sticker banner now': 800080, 'banner now with': 110609, 'now with 19': 576440, 'with 19 at': 996962, '19 at they': 5253, 'at they cannot': 101214, 'afford to just': 34799, 'to just have': 908724, 'just have some': 468935, 'have some subsidized': 382642, 'some subsidized insurance': 783992, 'subsidized insurance on': 815996, 'insurance on just': 440783, 'on just face': 601748, 'just face mask': 468688, 'hand sanitizers pharmacy': 375713, 'sanitizers pharmacy sell': 736367, 'pharmacy sell at': 654444, 'sell at high': 748633, 'high price why': 395292, 'price why are': 677539, 'are we really': 91587, 'we really piece': 973027, 'really piece of': 702488, 'piece of consern': 656331, 'of consern to': 581683, 'consern to our': 194896, 'to our leader': 911202, 'sincere': 771025, 'special thought': 788076, 'shop assistant': 759933, 'brescia he': 139382, 'home earlier': 401113, 'earlier in': 264458, 'had tested': 373595, 'wa 48': 961381, 'old sincere': 598466, 'sincere thank': 771030, 'everyone currently': 286802, 'special thought for': 788077, 'thought for the': 893049, 'for the shop': 326681, 'the shop assistant': 866981, 'shop assistant in': 759935, 'assistant in supermarket': 96787, 'supermarket in brescia': 820870, 'in brescia he': 420965, 'brescia he returned': 139383, 'he returned home': 385351, 'returned home earlier': 719969, 'home earlier in': 401114, 'earlier in the': 264460, 'the week with': 871322, 'week with high': 977264, 'with high fever': 998802, 'high fever and': 395074, 'fever and died': 303653, 'at home today': 99150, 'home today he': 402354, 'today he had': 919624, 'he had tested': 385059, 'had tested positive': 373596, 'positive for it': 665323, 'for it he': 322711, 'it he wa': 458508, 'he wa 48': 385580, 'wa 48 year': 961384, 'year old sincere': 1014866, 'old sincere thank': 598467, 'sincere thank you': 771031, 'to everyone currently': 905333, 'everyone currently working': 286803, 'currently working in': 221722, 'the store in': 868041, 'store in italy': 808323, 'kprc2': 477607, 'click2houston': 181966, 'list food': 494319, 'bank school': 110157, 'school district': 741770, 'district and': 248353, 'local pantry': 498249, 'and asking': 58437, 'volunteer they': 960346, 'face significant': 294752, 'demand kprc2': 235784, 'kprc2 click2houston': 477608, 'list food bank': 494320, 'food bank school': 313632, 'bank school district': 110158, 'school district and': 741771, 'district and some': 248354, 'and some local': 71968, 'some local pantry': 783212, 'local pantry are': 498250, 'pantry are providing': 639535, 'are providing free': 89320, 'providing free meal': 687005, 'free meal for': 331968, 'meal for people': 524156, 'for people and': 324446, 'people and asking': 646846, 'and asking for': 58439, 'for donation and': 320825, 'and volunteer they': 75034, 'volunteer they face': 960347, 'they face significant': 882085, 'face significant increase': 294753, 'in demand kprc2': 422135, 'demand kprc2 click2houston': 235785, 'oil coupled': 596710, 'war threatens': 966561, 'threatens to': 893859, 'again devastate': 36975, 'of oil coupled': 587180, 'oil coupled with': 596711, 'coupled with an': 211726, 'with an oil': 997224, 'an oil price': 56578, 'price war threatens': 677376, 'war threatens to': 966562, 'threatens to once': 893864, 'to once again': 910903, 'once again devastate': 605563, 'again devastate the': 36976, 'devastate the service': 239566, 'the service industry': 866736, 'industry and it': 435641, 'and it worker': 65606, 'nonperforming': 566665, 'npls': 576611, 'withstand': 1003089, 'nigeria sterling': 562803, 'sterling bank': 799892, 'bank nonperforming': 110034, 'nonperforming loan': 566666, 'loan fell': 497434, 'total loan': 926180, 'loan in': 497461, '2019 from': 13967, '2018 lower': 13886, 'lower npls': 505918, 'npls should': 576612, 'should help': 766106, 'it withstand': 462486, 'withstand drop': 1003094, 'in asset': 420539, 'asset quality': 96468, 'quality that': 691856, 'likely result': 492095, 'and outbreak': 68539, 'nigeria sterling bank': 562804, 'sterling bank nonperforming': 799894, 'bank nonperforming loan': 110035, 'nonperforming loan fell': 566667, 'loan fell to': 497435, 'fell to of': 303248, 'to of total': 910815, 'of total loan': 592331, 'total loan in': 926181, 'loan in 2019': 497462, 'in 2019 from': 419805, '2019 from in': 13968, 'from in 2018': 336019, 'in 2018 lower': 419787, '2018 lower npls': 13887, 'lower npls should': 505919, 'npls should help': 576613, 'should help it': 766108, 'help it withstand': 389954, 'it withstand drop': 462487, 'withstand drop in': 1003095, 'drop in asset': 260226, 'in asset quality': 420541, 'asset quality that': 96469, 'quality that will': 691857, 'will likely result': 994011, 'likely result from': 492096, 'result from low': 717510, 'price and outbreak': 672487, 'one good': 606359, 'new computer': 558507, 'computer part': 192753, 'cheap so': 174196, 'anyone wa': 80597, 'wa considering': 961864, 'considering building': 195361, 'building custom': 142069, 'custom computer': 221981, 'computer would': 192773, 'one good thing': 606360, 'is that had': 452652, 'that had to': 844157, 'had to buy': 373670, 'buy new computer': 148992, 'new computer part': 558508, 'computer part and': 192754, 'part and it': 642230, 'it wa really': 462177, 'wa really cheap': 963060, 'really cheap so': 702058, 'cheap so if': 174197, 'if anyone wa': 413854, 'anyone wa considering': 80598, 'wa considering building': 961865, 'considering building custom': 195362, 'building custom computer': 142070, 'custom computer would': 221982, 'computer would take': 192774, 'would take advantage': 1012307, 'of the low': 591203, 'the low price': 859783, 'low price right': 505535, 'utm': 951372, 'drone delivery': 260063, 'delivery may': 234171, 'this age': 886250, 'lockdown logistics': 499627, 'logistics socialdistancing': 500795, 'socialdistancing drone': 780335, 'drone technology': 260079, 'technology utm': 836394, 'utm innovation': 951377, 'innovation drone': 438869, 'drone toiletpaper': 260085, 'toiletpaper supplychains': 922569, 'drone delivery may': 260067, 'delivery may see': 234174, 'may see an': 521479, 'uptick in this': 947912, 'in this age': 429903, 'this age of': 886251, 'age of social': 37874, 'distancing lockdown logistics': 247294, 'lockdown logistics socialdistancing': 499628, 'logistics socialdistancing drone': 500796, 'socialdistancing drone technology': 780336, 'drone technology utm': 260080, 'technology utm innovation': 836395, 'utm innovation drone': 951378, 'innovation drone toiletpaper': 438870, 'drone toiletpaper supplychains': 260086, 'birthday in': 131436, 'quarantine mean': 692365, 'your gift': 1024042, 'gift birthday': 349927, 'birthday toiletpaper': 131462, 'birthday in quarantine': 131437, 'in quarantine mean': 427185, 'quarantine mean you': 692367, 'mean you get': 524786, 'you get toilet': 1018802, 'paper for your': 640191, 'for your gift': 328157, 'your gift birthday': 1024043, 'gift birthday toiletpaper': 349928, 'disabilites': 243801, 'seeing grocery': 746307, 'chain holding': 170787, 'special exclusive': 787916, 'exclusive hour': 289669, 'store pregnant': 809636, 'with disabilites': 998051, 'disabilites put': 243802, 'list together': 494572, 'together for': 920789, 'love seeing grocery': 504770, 'seeing grocery store': 746308, 'store chain holding': 806922, 'chain holding special': 170788, 'holding special exclusive': 400161, 'special exclusive hour': 787917, 'exclusive hour for': 289670, 'for people most': 324454, 'people most at': 648793, 'risk of older': 723766, 'of older adult': 587204, 'adult and at': 32794, 'and at some': 58487, 'at some store': 100583, 'some store pregnant': 783959, 'store pregnant woman': 809637, 'pregnant woman and': 669844, 'woman and people': 1003401, 'people with disabilites': 650442, 'with disabilites put': 998052, 'disabilites put this': 243803, 'put this list': 690912, 'this list together': 888664, 'list together for': 494573, 'together for you': 920797, 'mystery': 551000, 'couch': 208431, 'newsest': 561015, 'nothing changed': 572976, 'changed mystery': 172516, 'mystery of': 551013, 'shopper the': 761742, 'the couch': 851994, 'couch citizen': 208434, 'the infant': 858214, 'infant for': 436480, 'for gotta': 321955, 'gotta get': 359074, 'get newsest': 347664, 'newsest to': 561016, 'see covid': 745015, 'on myself': 602332, 'it is nothing': 459024, 'is nothing changed': 450232, 'nothing changed mystery': 572977, 'changed mystery of': 172517, 'mystery of supermarket': 551014, 'supermarket and shopper': 819062, 'and shopper the': 71532, 'shopper the couch': 761743, 'the couch citizen': 851995, 'couch citizen of': 208435, 'citizen of the': 178940, 'of the infant': 591141, 'the infant for': 858215, 'infant for gotta': 436481, 'for gotta get': 321956, 'gotta get newsest': 359075, 'get newsest to': 347665, 'newsest to see': 561017, 'to see covid': 913995, 'see covid 19': 745016, '19 on myself': 8957, 'ever by': 285242, 'worst ever by': 1011180, 'marcoisland': 515569, 'bettertogether': 128629, 'regarding scam': 707254, 'scam visit': 740456, 'visit marcoisland': 959297, 'marcoisland bettertogether': 515570, 'bettertogether 19': 128630, 'fraud community': 331244, 'for information regarding': 322580, 'information regarding scam': 437962, 'regarding scam visit': 707255, 'scam visit marcoisland': 740457, 'visit marcoisland bettertogether': 959298, 'marcoisland bettertogether 19': 515571, 'bettertogether 19 scam': 128631, '19 scam fraud': 10341, 'scam fraud community': 740167, 'paducah': 633813, 'update hancock': 947012, 'hancock of': 374704, 'of paducah': 587660, 'paducah will': 633814, 'accept and': 27942, 'and fulfill': 63395, 'fulfill all': 340397, 'order we': 618753, 'public effective': 687966, 'effective march': 269282, '19 update hancock': 11664, 'update hancock of': 947013, 'hancock of paducah': 374705, 'of paducah will': 587661, 'paducah will continue': 633815, 'continue to accept': 201161, 'to accept and': 899937, 'accept and fulfill': 27943, 'and fulfill all': 63396, 'fulfill all online': 340398, 'all online order': 43750, 'online order we': 608703, 'order we will': 618757, 'the public effective': 864803, 'public effective march': 687967, 'effective march 18': 269284, '18 2020 until': 4497, 'notice please be': 573338, 'please be careful': 659696, 'well shit': 978552, 'shit why': 759295, 'why even': 990983, 'even bother': 283904, 'bother going': 136119, 'time out': 897436, 'well shit why': 978554, 'shit why even': 759296, 'why even bother': 990984, 'even bother going': 283906, 'bother going to': 136120, 'grocery store by': 365263, 'store by the': 806839, 'the time out': 869610, 'time out of': 897437, 'of work it': 593254, 'work it all': 1005385, 'it all gone': 456349, 'geocaching': 345930, 'byop': 154822, 'about getting': 25296, 'some geocaching': 782949, 'geocaching during': 345931, 'during quaratinelife': 262953, 'quaratinelife to': 693155, 'help pas': 390268, 'still sort': 801213, 'out some': 627217, 'precaution would': 669408, 'taken like': 833023, 'like glove': 490313, 'glove byop': 352625, 'byop and': 154823, 'every find': 285900, 'find thought': 307337, 'thinking about getting': 885847, 'about getting out': 25301, 'getting out and': 349169, 'out and doing': 625658, 'and doing some': 61608, 'doing some geocaching': 252671, 'some geocaching during': 782950, 'geocaching during quaratinelife': 345932, 'during quaratinelife to': 262954, 'quaratinelife to help': 693156, 'to help pas': 907583, 'help pas the': 390269, 'pas the time': 643156, 'the time but': 869580, 'time but to': 896425, 'but to still': 147591, 'to still sort': 915412, 'still sort of': 801214, 'sort of get': 786124, 'of get out': 584117, 'get out some': 347743, 'out some precaution': 627224, 'some precaution would': 783622, 'precaution would be': 669409, 'would be taken': 1011655, 'be taken like': 117503, 'taken like glove': 833024, 'like glove byop': 490314, 'glove byop and': 352626, 'byop and sanitizer': 154824, 'sanitizer after every': 734324, 'after every find': 35633, 'every find thought': 285901, 'bloody high': 133208, 'bloody high time': 133209, 'high time we': 395482, 'time we saw': 898233, 'we saw this': 973141, 'saw this in': 738293, 'your store stophoarding': 1025993, 'boycottchina': 137358, 'shared nsw': 755432, 'nsw australia': 576705, 'australia covid': 103259, 'positive chinese': 665285, 'chinese woman': 177394, 'woman caught': 1003435, 'on camera': 599779, 'camera spitting': 157129, 'on banana': 599548, 'banana at': 109305, 'at suburban': 100675, 'suburban supermarket': 816143, 'are chinese': 85274, 'chinese national': 177301, 'national being': 552428, 'being paid': 125524, 'and instructed': 65294, 'side china': 768792, 'is manufacturing': 449582, 'sell across': 748616, 'across globe': 29338, 'globe boycottchina': 352449, 'shared nsw australia': 755433, 'nsw australia covid': 576706, 'australia covid 19': 103260, '19 positive chinese': 9753, 'positive chinese woman': 665286, 'chinese woman caught': 177395, 'woman caught on': 1003436, 'caught on camera': 167446, 'on camera spitting': 599783, 'camera spitting on': 157130, 'spitting on banana': 789597, 'on banana at': 599549, 'banana at suburban': 109306, 'at suburban supermarket': 100677, 'suburban supermarket are': 816144, 'supermarket are chinese': 819149, 'are chinese national': 85275, 'chinese national being': 177303, 'national being paid': 552429, 'being paid and': 125526, 'paid and instructed': 633967, 'and instructed to': 65295, 'instructed to do': 440529, 'do this by': 250346, 'this by their': 886663, 'by their government': 154495, 'their government on': 873425, 'government on other': 360419, 'on other side': 602561, 'other side china': 620913, 'side china is': 768793, 'china is manufacturing': 176753, 'is manufacturing mask': 449584, 'manufacturing mask to': 513629, 'mask to sell': 519422, 'to sell across': 914138, 'sell across globe': 748617, 'across globe boycottchina': 29339, '19 engineer': 6782, 'engineer not': 276969, 'not ashamed': 568251, 'of wearing': 592977, 'wearing garbage': 974624, 'garbage bag': 343508, 'covid 19 engineer': 213023, '19 engineer not': 6783, 'engineer not ashamed': 276970, 'not ashamed of': 568252, 'ashamed of wearing': 95067, 'of wearing garbage': 592978, 'wearing garbage bag': 974625, 'garbage bag to': 343510, 'bag to supermarket': 108431, 'solicit': 781884, 'beware scam': 129101, 'scam some': 740363, 'may sell': 521486, 'sell ineffective': 748761, 'ineffective product': 436292, 'or solicit': 617143, 'solicit donation': 781885, 'for fake': 321372, 'charity pretending': 173668, 'help coronavirus': 389543, 'coronavirus victim': 207020, 'victim learn': 956483, 'learn tip': 484080, 'from these': 337971, 'beware scam some': 129102, 'scam some scammer': 740364, 'some scammer may': 783807, 'scammer may sell': 740595, 'may sell ineffective': 521487, 'sell ineffective product': 748762, 'ineffective product to': 436293, 'product to prevent': 681758, 'the virus or': 870871, 'virus or solicit': 958575, 'or solicit donation': 617144, 'solicit donation for': 781886, 'donation for fake': 254607, 'for fake charity': 321374, 'fake charity pretending': 296578, 'charity pretending to': 173669, 'pretending to help': 671341, 'to help coronavirus': 907484, 'help coronavirus victim': 389544, 'coronavirus victim learn': 207022, 'victim learn tip': 956484, 'learn tip to': 484082, 'yourself from these': 1026624, 'from these scam': 337974, 'gop from': 358249, 'the 9th': 848224, '9th of': 24024, 'march donald': 515344, 'trump mar': 933697, 'mar good': 515011, 'on the gop': 604145, 'the gop from': 856464, 'gop from the': 358250, 'from the 9th': 337590, 'the 9th of': 848225, '9th of march': 24025, 'of march donald': 586205, 'march donald trump': 515345, 'donald trump mar': 254114, 'trump mar good': 933698, 'mar good for': 515012, 'centred': 169570, 'stopping being': 805796, 'so self': 778168, 'self centred': 747565, 'centred four': 169573, 'four year': 330709, 'old know': 598314, 'share one': 755132, 'day some': 228378, 'will feel': 993422, 'feel ashamed': 302570, 're behaving': 698350, 'behaving now': 123840, 'now bbc': 574185, 'news nurse': 560644, 'nurse despair': 577272, 'despair panic': 238490, 'stopping being so': 805797, 'being so self': 125822, 'so self centred': 778169, 'self centred four': 747567, 'centred four year': 169574, 'four year old': 330712, 'year old know': 1014842, 'old know how': 598315, 'how to share': 409081, 'to share one': 914354, 'share one day': 755133, 'one day some': 606164, 'day some of': 228381, 'of you will': 593433, 'you will feel': 1022333, 'will feel ashamed': 993423, 'feel ashamed of': 302572, 'ashamed of the': 95064, 'you re behaving': 1020575, 're behaving now': 698351, 'behaving now bbc': 123841, 'now bbc news': 574186, 'bbc news nurse': 113093, 'news nurse despair': 560645, 'nurse despair panic': 577274, 'despair panic buyer': 238491, 'wig': 992022, 'thang': 841520, 'need wig': 556217, 'wig made': 992023, 'made but': 507663, 'that thang': 846642, 'thang saved': 841523, 'saved dont': 737731, 'dont throw': 255301, 'bring ole': 140037, 'ole girl': 598724, 'girl back': 350237, 'life get': 488681, 'get at': 346613, 'me while': 523957, 'low after': 505106, 'board will': 133682, 'will raise': 994549, 'dont need wig': 255261, 'need wig made': 556218, 'wig made but': 992024, 'made but need': 507665, 'but need that': 146457, 'need that thang': 555732, 'that thang saved': 846643, 'thang saved dont': 841524, 'saved dont throw': 737732, 'dont throw it': 255302, 'throw it out': 895033, 'it out can': 460178, 'out can bring': 625824, 'can bring ole': 157798, 'bring ole girl': 140038, 'ole girl back': 598725, 'girl back to': 350238, 'back to life': 107376, 'to life get': 909249, 'life get at': 488682, 'get at me': 346616, 'at me while': 99714, 'me while price': 523960, 'are low after': 87917, 'low after covid': 505107, 'all price across': 44027, 'the board will': 849815, 'board will raise': 133683, 'of child': 581343, 'their peer': 874265, 'after school close': 36147, 'school close supermarket': 741726, 'close supermarket will': 182822, 'full of child': 340706, 'of child shopping': 581348, 'child shopping with': 176203, 'with their peer': 1001591, 'the default': 853026, 'default tsunami': 232026, 'tsunami hit': 934969, 'hit how': 398278, 'will bank': 992331, 'bank respond': 110137, 'respond look': 715303, 'how bank': 407442, 'respond when': 715338, 'financial tsunami': 306623, 'tsunami of': 934973, 'pandemic really': 636302, 'when the default': 984141, 'the default tsunami': 853027, 'default tsunami hit': 232027, 'tsunami hit how': 934970, 'hit how will': 398279, 'how will bank': 409218, 'will bank respond': 992332, 'bank respond look': 110138, 'respond look at': 715304, 'at how bank': 99205, 'how bank will': 407444, 'bank will respond': 110320, 'will respond when': 994670, 'respond when the': 715339, 'when the financial': 984153, 'the financial tsunami': 855231, 'financial tsunami of': 306624, 'tsunami of the': 934975, 'the pandemic really': 863073, 'pandemic really hit': 636304, 'really hit those': 702299, 'hit those with': 398466, 'those with debt': 892716, 'scam update': 740445, 'update please': 947168, 'we absolutely': 970268, 'absolutely do': 27346, 'go door': 353478, 'door checking': 255546, 'offering virus': 595319, 'scam update please': 740446, 'update please be': 947169, 'aware that we': 105664, 'that we absolutely': 847358, 'we absolutely do': 970269, 'absolutely do not': 27347, 'not go door': 569674, 'go door to': 353479, 'to door checking': 904664, 'door checking on': 255547, 'checking on people': 174834, 'people or offering': 649001, 'or offering virus': 616360, 'offering virus testing': 595320, 'scam more information': 740253, 'everyday item': 286584, 'like surface': 491274, 'surface cleaner': 827996, 'cleaner baby': 180754, 'sanitiser are': 733919, 'price bleach': 672933, 'ebay and': 266427, 'for around': 319489, 'around bottle': 93232, 'bottle while': 136353, 'while antibacterial': 986607, 'antibacterial hand': 78360, 'hand lotion': 375076, 'lotion for': 504432, 'everyday item like': 286585, 'item like surface': 463423, 'like surface cleaner': 491275, 'surface cleaner baby': 827997, 'cleaner baby formula': 180755, 'formula and hand': 329695, 'and hand sanitiser': 64143, 'hand sanitiser are': 375220, 'sanitiser are being': 733920, 'being sold online': 125835, 'sold online for': 781719, 'online for inflated': 608229, 'inflated price bleach': 437030, 'price bleach is': 672934, 'bleach is on': 132507, 'is on ebay': 450464, 'on ebay and': 600487, 'ebay and amazon': 266428, 'and amazon for': 58044, 'amazon for around': 50948, 'for around bottle': 319490, 'around bottle while': 93233, 'bottle while antibacterial': 136354, 'while antibacterial hand': 986608, 'antibacterial hand lotion': 78362, 'hand lotion for': 375077, 'lotion for 10': 504433, 'unitednations': 942279, 'human our': 410582, 'action have': 30032, 'vulnerable nation': 961047, 'nation panicbuying': 552286, 'panicbuying unitednations': 639105, 'unitednations wfp': 942283, 'be good human': 115068, 'good human our': 357193, 'human our action': 410583, 'our action have': 622021, 'action have an': 30033, 'most vulnerable nation': 542886, 'vulnerable nation panicbuying': 961048, 'nation panicbuying unitednations': 552287, 'panicbuying unitednations wfp': 639106, 'touchpoint': 926765, 'skip': 773127, 'be friendly': 114961, 'friendly to': 334015, 'of coupon': 582040, 'coupon in': 211763, 'the mobile': 860713, 'app that': 81768, 'more touchpoint': 540814, 'touchpoint that': 926766, 'that shrink': 846304, 'shrink customer': 767698, 'customer skip': 222854, 'skip the': 773141, 'of interacting': 585246, 'with cashier': 997565, 'when are you': 983173, 'to be friendly': 901268, 'be friendly to': 114963, 'friendly to consumer': 334016, 'consumer and employee': 196207, 'and employee when': 62071, 'employee when it': 274413, '19 and allow': 4985, 'allow the use': 46077, 'use of coupon': 949402, 'of coupon in': 582041, 'coupon in the': 211764, 'in the mobile': 429367, 'the mobile app': 860714, 'mobile app that': 534941, 'app that one': 81771, 'that one more': 845499, 'one more touchpoint': 606696, 'more touchpoint that': 540815, 'touchpoint that shrink': 926767, 'that shrink customer': 846305, 'shrink customer skip': 767699, 'customer skip the': 222855, 'skip the step': 773149, 'the step of': 867877, 'step of interacting': 799601, 'of interacting with': 585247, 'interacting with cashier': 441225, 'pandemic panic': 636152, 'hoarder can': 398999, 'be encouraged': 114676, 'to rightly': 913530, 'rightly share': 722475, 'supply when': 826096, 'to panicbuying': 911439, 'panicbuying uk': 639101, 'good to know': 357888, 'know that pandemic': 476781, 'that pandemic panic': 845640, 'pandemic panic shopper': 636155, 'panic shopper and': 638550, 'shopper and hoarder': 761365, 'and hoarder can': 64643, 'hoarder can be': 399000, 'can be encouraged': 157618, 'be encouraged to': 114677, 'encouraged to rightly': 275670, 'to rightly share': 913531, 'rightly share their': 722476, 'share their food': 755264, 'food supply when': 317015, 'supply when they': 826097, 'when they really': 984277, 'they really need': 883162, 'need to panicbuying': 556006, 'to panicbuying uk': 911443, 'bleeding': 132560, 'plaster': 658783, 'only could': 610277, 'being indoors': 125317, '13 day': 3203, 'day due': 227544, 'eye tin': 294109, 'tin fell': 898535, 'eye all': 293995, 'manager could': 512704, 'wa give': 962206, 'me wipe': 523984, 'the bleeding': 849759, 'bleeding and': 132562, 'and plaster': 69074, 'plaster surely': 658784, 'surely thats': 827938, 'thats not': 847820, 'when customer': 983321, 'an accident': 55064, 'accident in': 28394, 'only could go': 610278, 'supermarket after being': 818798, 'after being indoors': 35411, 'being indoors for': 125318, 'indoors for 13': 435400, 'for 13 day': 318650, '13 day due': 3204, 'day due to': 227545, 'to and come': 900491, 'and come out': 60111, 'come out with': 187479, 'out with black': 627863, 'with black eye': 997418, 'black eye tin': 132052, 'eye tin fell': 294110, 'tin fell on': 898536, 'fell on my': 303219, 'on my eye': 602280, 'my eye all': 548136, 'eye all the': 293996, 'all the manager': 44821, 'the manager could': 859997, 'manager could do': 512705, 'could do wa': 209105, 'do wa give': 250448, 'wa give me': 962207, 'give me wipe': 350585, 'me wipe to': 523985, 'wipe to stop': 996398, 'stop the bleeding': 805125, 'the bleeding and': 849760, 'bleeding and plaster': 132563, 'and plaster surely': 69075, 'plaster surely thats': 658785, 'surely thats not': 827939, 'thats not right': 847821, 'not right when': 571387, 'right when customer': 722415, 'when customer ha': 983322, 'customer ha an': 222422, 'ha an accident': 369537, 'an accident in': 55066, 'accident in store': 28395, 'sentiment the': 751007, 'the driving': 853704, 'driving force': 259929, 'force behind': 328340, 'economy declined': 267795, 'declined steeply': 231447, 'steeply in': 799422, '20 coronavirus': 13011, 'fear grip': 301145, 'grip the': 364037, 'sentiment decline': 750913, 'decline growth': 231333, 'consumer sentiment the': 198930, 'sentiment the driving': 751008, 'the driving force': 853705, 'driving force behind': 259930, 'force behind the': 328341, 'behind the economy': 124712, 'the economy declined': 853956, 'economy declined steeply': 267796, 'declined steeply in': 231448, 'steeply in march': 799423, 'in march 20': 425073, 'march 20 coronavirus': 515130, '20 coronavirus fear': 13012, 'coronavirus fear grip': 205916, 'fear grip the': 301146, 'grip the consumer': 364038, 'the consumer consumer': 851515, 'consumer consumer sentiment': 196954, 'consumer sentiment decline': 198908, 'sentiment decline growth': 750914, 'are serving': 89994, 'serving so': 753211, 'so selflessly': 778180, 'selflessly right': 748542, 'nurse to': 577517, 'people play': 649122, 'an action': 55080, 'action hero': 30036, 'real action': 701021, 'remember to thank': 710390, 'thank the hero': 841642, 'the hero who': 857302, 'who are serving': 988215, 'are serving so': 89997, 'serving so selflessly': 753212, 'so selflessly right': 778181, 'selflessly right now': 748543, 'right now from': 722066, 'now from doctor': 574752, 'from doctor nurse': 335172, 'doctor nurse to': 251035, 'nurse to grocery': 577520, 'and delivery people': 61125, 'delivery people play': 234321, 'people play an': 649123, 'play an action': 659114, 'an action hero': 55081, 'action hero in': 30037, 'hero in the': 394019, 'in the movie': 429377, 'the movie they': 861109, 'movie they are': 544081, 'the real action': 865206, 'real action hero': 701022, 'tip your': 898967, 'worker use': 1008086, 'use envelope': 949190, 'envelope to': 279056, 'pas cash': 643095, 'by hand': 152748, 'taking lot': 833428, 'tip your grocery': 898968, 'store worker use': 811613, 'worker use envelope': 1008087, 'use envelope to': 949191, 'envelope to not': 279057, 'to not pas': 910703, 'not pas cash': 570969, 'pas cash by': 643096, 'cash by hand': 166190, 'by hand they': 152752, 'hand they re': 375840, 're taking lot': 699651, 'taking lot of': 833429, 'lot of risk': 504272, 'of risk for': 589125, 'risk for all': 723537, 'cuddle': 220186, 'choose whichever': 177919, 'whichever option': 986543, 'option they': 614108, 'want go': 965801, 'out stay': 627244, 'in socially': 428053, 'distance yourself': 246907, 'yourself cuddle': 1026571, 'cuddle up': 220189, 'want but': 965741, 'friend die': 333575, 'die maybe': 241401, 'ask whether': 95665, 'that pint': 845745, 'pint or': 656857, 'or queuing': 616769, 'queuing at': 694195, 'roll wa': 725584, 'wa worth': 963745, 'everyone can choose': 286766, 'can choose whichever': 157907, 'choose whichever option': 177920, 'whichever option they': 986544, 'option they want': 614109, 'they want go': 883708, 'want go out': 965802, 'go out stay': 353984, 'out stay in': 627246, 'stay in socially': 797062, 'in socially distance': 428054, 'socially distance yourself': 781051, 'distance yourself cuddle': 246908, 'yourself cuddle up': 1026572, 'cuddle up if': 220190, 'you want but': 1022133, 'want but if': 965742, 'you get sick': 1018792, 'get sick if': 347995, 'if your family': 415577, 'your family or': 1023797, 'or friend die': 615395, 'friend die maybe': 333576, 'die maybe you': 241402, 'maybe you ll': 521896, 'you ll ask': 1019640, 'll ask whether': 496558, 'ask whether that': 95666, 'whether that pint': 985576, 'that pint or': 845746, 'pint or queuing': 656858, 'or queuing at': 616770, 'queuing at the': 694198, 'toilet roll wa': 921619, 'roll wa worth': 725586, 'wa worth it': 963746, 'pressured': 671257, 'propublica': 684596, 'letter carrier': 487296, 'carrier say': 165016, 'the postal': 864099, 'postal service': 666443, 'service pressured': 752710, 'pressured them': 671260, 'deliver mail': 233160, 'mail despite': 508607, 'often without': 596307, 'without hand': 1002703, 'sanitizer propublica': 735614, 'letter carrier say': 487299, 'carrier say the': 165017, 'say the postal': 739300, 'the postal service': 864100, 'postal service pressured': 666450, 'service pressured them': 752711, 'pressured them to': 671261, 'to deliver mail': 904103, 'deliver mail despite': 233161, 'mail despite symptom': 508608, 'despite symptom and': 238865, 'symptom and often': 830811, 'and often without': 68013, 'often without hand': 596308, 'without hand sanitizer': 1002704, 'hand sanitizer propublica': 375551, 'with tiny': 1001773, 'tiny bathroom': 898650, 'bathroom the': 112673, 'man had': 512082, 'had left': 373236, 'his car': 397270, 'save space': 737644, 'with tiny bathroom': 1001774, 'tiny bathroom the': 898651, 'bathroom the man': 112674, 'the man had': 859977, 'man had left': 512085, 'had left the': 373240, 'left the toilet': 485676, 'paper in his': 640321, 'in his car': 423722, 'his car to': 397272, 'car to save': 163324, 'to save space': 913794, 'save space at': 737645, 'space at home': 787057, 'lauren': 482152, 'verno': 954868, 'investigative': 443901, 'stranger stepping': 812488, 'other during': 620127, 'pandemic stranger': 636569, 'pandemic lauren': 635867, 'lauren verno': 482160, 'verno consumer': 954869, 'consumer investigative': 197919, 'investigative reporter': 443902, 'reporter published': 712627, 'published march': 688665, 'stranger stepping in': 812489, 'stepping in to': 799799, 'to help each': 907499, 'each other during': 264169, 'other during the': 620128, '19 pandemic stranger': 9483, 'pandemic stranger stepping': 636570, '19 pandemic lauren': 9377, 'pandemic lauren verno': 635868, 'lauren verno consumer': 482161, 'verno consumer investigative': 954870, 'consumer investigative reporter': 197920, 'investigative reporter published': 443904, 'reporter published march': 712628, 'published march 18': 688666, '18 2020 03': 4492, 'visualised': 959639, 'consists': 195514, 'changing result': 172784, '19 increasing': 7814, 'meet their': 527619, 'have visualised': 383517, 'visualised what': 959640, 'essential basket': 280819, 'basket consists': 112319, 'consists of': 195515, 'of based': 580561, 'consumer behaviour is': 196581, 'behaviour is changing': 124457, 'is changing result': 446481, 'changing result of': 172785, 'covid 19 increasing': 213258, '19 increasing number': 7815, 'of people shop': 587982, 'shop online to': 760590, 'online to meet': 609593, 'to meet their': 910056, 'meet their daily': 527620, 'their daily need': 872969, 'daily need we': 224717, 'we have visualised': 971984, 'have visualised what': 383518, 'visualised what an': 959641, 'what an essential': 981035, 'an essential basket': 55818, 'essential basket consists': 280820, 'basket consists of': 112320, 'consists of based': 195517, 'of based on': 580562, 'on our data': 602589, 'checkout used': 175048, 'to beep': 901697, 'beep for': 122415, 'for assistance': 319505, 'assistance when': 96763, 'bought beer': 136515, 'wine now': 995846, 'in they': 429883, 'they beep': 881544, 'one pack': 606816, 'when supermarket self': 984094, 'self checkout used': 747587, 'checkout used to': 175049, 'used to beep': 950037, 'to beep for': 901698, 'beep for assistance': 122416, 'for assistance when': 319507, 'assistance when you': 96764, 'when you bought': 984541, 'you bought beer': 1017501, 'bought beer and': 136516, 'and wine now': 75719, 'wine now in': 995848, 'now in they': 575017, 'in they beep': 429884, 'they beep for': 881545, 'when you try': 984609, 'you try to': 1021938, 'try to buy': 934608, 'than one pack': 840983, 'one pack of': 606820, 'toilet roll coronacrisis': 921563, 'shorten': 765328, 'ssm': 791659, 'baraboo': 110785, 'janesville': 464516, 'reedsburg': 706430, 'prairie': 668826, 'sac': 729023, 'and shorten': 71575, 'shorten the': 765335, 'outbreak ssm': 628648, 'ssm health': 791660, 'home medical': 401609, 'effective at': 269226, 'includes location': 431774, 'in madison': 424974, 'madison baraboo': 508132, 'baraboo janesville': 110786, 'janesville reedsburg': 464517, 'reedsburg and': 706431, 'and prairie': 69310, 'prairie du': 668827, 'du sac': 261438, 'effort to respond': 269643, 'respond to covid': 715317, '19 and shorten': 5105, 'and shorten the': 71577, 'shorten the duration': 765336, 'the outbreak ssm': 862696, 'outbreak ssm health': 628649, 'ssm health at': 791661, 'health at home': 386174, 'at home medical': 99048, 'home medical equipment': 401610, 'equipment is closing': 279763, 'is closing it': 446609, 'closing it retail': 183674, 'location effective at': 498896, 'effective at the': 269228, 'end of today': 275922, 'of today this': 592239, 'today this includes': 920337, 'this includes location': 888073, 'includes location in': 431775, 'location in madison': 498922, 'in madison baraboo': 424975, 'madison baraboo janesville': 508133, 'baraboo janesville reedsburg': 110787, 'janesville reedsburg and': 464518, 'reedsburg and prairie': 706432, 'and prairie du': 69311, 'prairie du sac': 668828, 'overreacting': 631416, 'control have': 202017, 'play this': 659233, 'this game': 887669, 'game because': 343132, 'because hoarder': 119128, 'hoarder might': 399074, 'food jeez': 315249, 'jeez is': 464991, 'are massively': 88051, 'massively fucking': 520177, 'fucking overreacting': 339962, 'this panic is': 889460, 'panic is out': 638219, 'of control have': 581842, 'control have to': 202018, 'have to play': 383265, 'to play this': 911804, 'play this game': 659234, 'this game because': 887670, 'game because hoarder': 343133, 'because hoarder might': 119129, 'hoarder might take': 399075, 'might take all': 531137, 'the food jeez': 855567, 'food jeez is': 315250, 'jeez is serious': 464992, 'serious but we': 751346, 'we are massively': 970624, 'are massively fucking': 88052, 'massively fucking overreacting': 520178, 'together lived': 920858, 'lived through': 496173, 'aid epidemic': 39381, 'epidemic here': 279382, 'is his': 448493, 'this together lived': 890773, 'together lived through': 920859, 'lived through the': 496175, 'through the aid': 894715, 'the aid epidemic': 848470, 'aid epidemic here': 39382, 'epidemic here is': 279383, 'here is his': 393229, 'is his advice': 448494, 'his advice on': 397183, 'advice on how': 33455, 'how to survive': 409095, 'survive the coronavirus': 829244, 'aircraft': 39873, 'overwing': 631780, 'shutterstock': 768233, 'boon': 134914, 'an aircraft': 55208, 'aircraft fly': 39876, 'fly over': 311626, 'over new': 630427, 'city seen': 179349, 'an overwing': 56769, 'overwing perspective': 631781, 'perspective shutterstock': 653231, 'shutterstock were': 768234, 'latest stats': 481554, 'stats on': 796627, 'airline safety': 40010, 'safety would': 730789, 'have served': 382479, 'served boon': 751986, 'boon to': 134915, 'of air': 579857, 'air travel': 39803, 'an aircraft fly': 55209, 'aircraft fly over': 39877, 'fly over new': 311627, 'over new york': 630428, 'york city seen': 1016594, 'city seen from': 179350, 'seen from an': 747026, 'from an overwing': 334497, 'an overwing perspective': 56770, 'overwing perspective shutterstock': 631782, 'perspective shutterstock were': 653232, 'shutterstock were it': 768235, 'not for covid': 569486, '19 the latest': 11215, 'the latest stats': 859147, 'latest stats on': 481555, 'stats on airline': 796628, 'on airline safety': 599201, 'airline safety would': 40011, 'safety would have': 730790, 'would have served': 1011892, 'have served boon': 382480, 'served boon to': 751987, 'boon to consumer': 134916, 'to consumer confidence': 903282, 'in the safety': 429523, 'safety of air': 730642, 'of air travel': 579860, 'smaller what': 775315, 'drawing smaller what': 258527, 'smaller what do': 775316, 'think about this': 885107, 'hurting': 411629, 'regulated': 708001, 'lifeles': 489294, 'fca is': 300728, 'disgrace of': 245307, 'world causing': 1009404, 'causing deadly': 168018, 'deadly situation': 229288, 'consumer instead': 197895, 'protecting them': 685236, 'them hurting': 875871, 'hurting uk': 411654, 'economy especially': 267839, 'this urgent': 890945, 'urgent situation': 948363, 'situation global': 772287, 'use any': 949050, 'any service': 79788, 'is regulated': 451395, 'regulated by': 708004, 'by fca': 152561, 'fca lifeles': 300730, 'fca is disgrace': 300729, 'is disgrace of': 447212, 'disgrace of uk': 245308, 'of uk and': 592565, 'uk and to': 938177, 'and to the': 74204, 'the world causing': 871832, 'world causing deadly': 1009405, 'causing deadly situation': 168019, 'deadly situation for': 229289, 'situation for the': 772277, 'the consumer instead': 851550, 'consumer instead of': 197896, 'instead of protecting': 440305, 'of protecting them': 588550, 'protecting them hurting': 685237, 'them hurting uk': 875872, 'hurting uk economy': 411655, 'uk economy especially': 938318, 'economy especially in': 267840, 'especially in this': 280533, 'in this urgent': 430039, 'this urgent situation': 890946, 'urgent situation global': 948364, 'situation global pandemic': 772288, 'global pandemic do': 352082, 'pandemic do not': 635315, 'not use any': 572355, 'use any service': 949055, 'any service which': 79790, 'which is regulated': 986046, 'is regulated by': 451396, 'regulated by fca': 708005, 'by fca lifeles': 152562, 'ancient': 57321, 'conchshells': 193290, 'ringing': 722553, 'jantacurfewmarch22': 464611, 'modicoronamessage': 535491, 'indiacometogether': 434709, 'beautiful expected': 118683, 'expected from': 290891, 'an ancient': 55303, 'ancient civilization': 57322, 'civilization conchshells': 179590, 'conchshells ringing': 193291, 'ringing of': 722556, 'of bell': 580667, 'bell against': 126477, 'against fighting': 37445, 'supermarket stayathome': 822934, 'stayathome jantacurfewmarch22': 797513, 'jantacurfewmarch22 19': 464612, 'lockdown modicoronamessage': 499665, 'modicoronamessage indiacometogether': 535492, 'indiacometogether toiletpaper': 434710, 'it wa beautiful': 462071, 'wa beautiful expected': 961651, 'beautiful expected from': 118684, 'expected from an': 290892, 'from an ancient': 334478, 'an ancient civilization': 55304, 'ancient civilization conchshells': 57323, 'civilization conchshells ringing': 179591, 'conchshells ringing of': 193292, 'ringing of bell': 722557, 'of bell against': 580668, 'bell against fighting': 126478, 'against fighting over': 37446, 'over toiletpaper in': 630856, 'toiletpaper in supermarket': 922121, 'in supermarket stayathome': 428675, 'supermarket stayathome jantacurfewmarch22': 822935, 'stayathome jantacurfewmarch22 19': 797514, 'jantacurfewmarch22 19 lockdown': 464613, '19 lockdown modicoronamessage': 8404, 'lockdown modicoronamessage indiacometogether': 499666, 'modicoronamessage indiacometogether toiletpaper': 535493, 'indiacometogether toiletpaper panicbuying': 434711, 'buying sufficient': 151117, 'available say': 104581, 'say al': 738399, 'meera qatar': 527395, 'panic buying sufficient': 637915, 'buying sufficient food': 151118, 'sufficient food stock': 817380, 'food stock are': 316778, 'stock are available': 801851, 'are available say': 84715, 'available say al': 104582, 'say al meera': 738400, 'al meera qatar': 40590, 'having hard': 384101, 'afford milk': 34727, 'milk store': 531834, 'store limit': 808740, 'quantity you': 691964, 'buy keeping': 148881, 'keeping price': 472529, 'price sky': 676431, 'high who': 395519, 'running this': 728108, 'scam another': 740029, 'another scheme': 77832, 'scheme for': 741563, 'for fixing': 321516, 'people are having': 646994, 'are having hard': 87034, 'having hard time': 384102, 'hard time and': 378028, 'time and cannot': 896261, 'cannot afford milk': 161604, 'afford milk store': 34728, 'milk store limit': 531836, 'store limit the': 808741, 'limit the quantity': 492516, 'the quantity you': 864959, 'quantity you can': 691965, 'you can buy': 1017637, 'can buy keeping': 157827, 'buy keeping price': 148882, 'keeping price sky': 472531, 'price sky high': 676432, 'sky high who': 773202, 'high who is': 395520, 'is running this': 451598, 'running this scam': 728109, 'this scam another': 889976, 'scam another scheme': 740031, 'another scheme for': 77833, 'scheme for fixing': 741565, 'for fixing the': 321517, 'fixing the price': 309865, 'price of bread': 675415, 'community amp': 189710, 'amp sanity': 54443, 'sanity most': 736544, 'most forget': 542338, 'forget google': 329258, 'google often': 358178, 'often ha': 596201, 'ha live': 371165, 'live feedback': 495811, 'feedback on': 302428, 'how busy': 407481, 'busy your': 145020, 'are search': 89876, 'search the': 743293, 'in google': 423378, 'google amp': 358136, 'amp click': 53533, 'want under': 966159, 'the map': 860056, 'head up share': 385855, 'up share to': 945972, 'share to help': 755306, 'help your community': 391016, 'your community amp': 1023267, 'community amp sanity': 189711, 'amp sanity most': 54444, 'sanity most forget': 736545, 'most forget google': 542339, 'forget google often': 329259, 'google often ha': 358179, 'often ha live': 596202, 'ha live feedback': 371166, 'live feedback on': 495812, 'feedback on how': 302429, 'on how busy': 601387, 'how busy your': 407484, 'busy your local': 145021, 'store are search': 806519, 'are search the': 89877, 'search the store': 743294, 'store in google': 808306, 'in google amp': 423379, 'google amp click': 358137, 'amp click on': 53534, 'on the one': 604260, 'one you want': 607542, 'you want under': 1022163, 'want under the': 966160, 'under the map': 940319, 'theinfiniteage': 872409, 'hour that': 405978, 'helpful theinfiniteage': 391228, 'theinfiniteage coronacrisis': 872410, 'shopping hour that': 762929, 'hour that may': 405979, 'may be helpful': 520988, 'be helpful theinfiniteage': 115211, 'helpful theinfiniteage coronacrisis': 391229, 'mom amp': 535676, 'amp dad': 53602, 'dad are': 224289, 'getting worried': 349447, 'me working': 524015, 'recent death': 703871, 'basket amp': 112290, 'amp many': 54107, 'worker contracting': 1006692, '19 told': 11502, 'that worried': 847670, 'worried well': 1010598, 'but staying': 147150, 'safe possible': 729894, 'possible amp': 665565, 'my mom amp': 549254, 'mom amp dad': 535677, 'amp dad are': 53603, 'dad are getting': 224290, 'are getting worried': 86836, 'getting worried about': 349448, 'worried about me': 1010504, 'about me working': 25715, 'me working at': 524016, 'the recent death': 865303, 'recent death at': 703872, 'death at market': 229981, 'at market basket': 99682, 'market basket amp': 516074, 'basket amp many': 112291, 'amp many other': 54109, 'many other grocery': 514431, 'other grocery worker': 620321, 'grocery worker contracting': 366165, 'worker contracting covid': 1006693, 'covid 19 told': 213963, '19 told my': 11503, 'amp dad that': 53604, 'dad that worried': 224393, 'that worried well': 847672, 'worried well but': 1010599, 'well but staying': 978081, 'but staying safe': 147151, 'staying safe possible': 798696, 'safe possible amp': 729895, 'possible amp that': 665566, 'amp that need': 54639, 'need to help': 555960, 'often doe': 596184, 'store practicing': 809629, 'grocery on': 364766, 'work which': 1006005, 'how often doe': 408423, 'often doe everyone': 596185, 'doe everyone go': 251391, 'grocery store practicing': 365674, 'store practicing social': 809630, 'distancing and only': 246982, 'only leave the': 610709, 'work in an': 1005293, 'in an essential': 420302, 'an essential worker': 55840, 'essential worker or': 281845, 'worker or for': 1007505, 'or for grocery': 615363, 'for grocery on': 322043, 'grocery on my': 364768, 'my way home': 550534, 'from work which': 338420, 'work which ha': 1006007, 'ha been week': 369982, 'been week is': 122364, 'week is that': 976427, 'is that too': 452701, 'that too much': 847099, 'shining doesn': 758622, 'neighbour nor': 557228, 'nor your': 566991, 'friend from': 333610, 'fuck inside': 339585, 'inside or': 439345, 'nearly 500': 553783, '500 briton': 19953, 'briton have': 140649, 'just because the': 468292, 'because the sun': 119651, 'is shining doesn': 451857, 'shining doesn mean': 758623, 'doesn mean it': 251887, 'mean it going': 524508, 'to save you': 913799, 'save you your': 737708, 'you your neighbour': 1022500, 'your neighbour nor': 1024977, 'neighbour nor your': 557229, 'nor your family': 566992, 'and friend from': 63328, 'friend from covid': 333612, '19 have to': 7455, 'at supermarket so': 100769, 'supermarket so people': 822738, 'get food just': 347050, 'food just stay': 315263, 'just stay the': 469890, 'the fuck inside': 855967, 'fuck inside or': 339586, 'inside or have': 439346, 'you not heard': 1020122, 'not heard that': 569918, 'heard that nearly': 388141, 'that nearly 500': 845293, 'nearly 500 briton': 553784, '500 briton have': 19954, 'briton have died': 140650, 'why go': 991013, 'far just': 298826, 'just cross': 468539, 'cross to': 219037, 'to mega': 910070, 'near old': 553561, 'old car': 598176, 'city central': 179090, 'central district': 169383, 'district area': 248358, 'area by': 91969, 'by yesterday': 154779, 'evening sachet': 284892, 'sachet of': 729033, 'of 500g': 579617, '500g wa': 20086, 'at 500': 97681, '500 this': 20059, 'than even': 840565, 'why go far': 991014, 'go far just': 353528, 'far just cross': 298827, 'just cross to': 468540, 'cross to mega': 219038, 'to mega standard': 910071, 'standard supermarket near': 793703, 'supermarket near old': 821575, 'near old car': 553562, 'old car park': 598177, 'park in the': 641936, 'the city central': 850924, 'city central district': 179091, 'central district area': 169384, 'district area by': 248359, 'area by yesterday': 91970, 'by yesterday evening': 154780, 'yesterday evening sachet': 1015723, 'evening sachet of': 284893, 'sachet of 500g': 729034, 'of 500g wa': 579618, '500g wa at': 20087, 'wa at 500': 961599, 'at 500 this': 97682, '500 this make': 20060, 'this make them': 888750, 'make them more': 510609, 'them more dangerous': 876032, 'more dangerous than': 538956, 'dangerous than even': 225781, 'water due': 968967, 'demand plummeting': 236045, 'plummeting in': 661381, 'and yesterday': 75978, 'yesterday oil': 1015820, '2002 in': 13575, 'the deep': 853018, 'deep distress': 231872, 'distress our': 247932, 'facing oilandgas': 295553, 're in uncharted': 698891, 'uncharted water due': 939801, 'water due to': 968968, 'to demand plummeting': 904153, 'demand plummeting in': 236047, 'plummeting in light': 661382, 'the situation and': 867242, 'situation and yesterday': 772193, 'and yesterday oil': 75979, 'yesterday oil price': 1015821, 'fell to their': 303251, 'level since 2002': 487703, 'since 2002 in': 770438, '2002 in sign': 13576, 'of the deep': 590938, 'the deep distress': 853019, 'deep distress our': 231873, 'distress our economy': 247933, 'economy is facing': 268003, 'is facing oilandgas': 447700, 'alert fraud': 41424, 'fraud ha': 331282, 'ha info': 370969, 'potential scam': 667133, 'scam targeting': 740389, 'targeting consumer': 834560, 'including fake': 431954, 'fake corona': 296586, 'corona special': 204188, 'special virus': 788090, 'virus test': 958853, 'kit amp': 475485, 'amp bogus': 53462, 'bogus travel': 134036, 'travel insurance': 930402, 'insurance learn': 440768, 'yourself amp': 1026515, 'amp your': 54870, 'consumer scam alert': 198866, 'scam alert fraud': 739976, 'alert fraud ha': 41425, 'fraud ha info': 331283, 'ha info on': 370970, 'info on potential': 437535, 'on potential scam': 602868, 'potential scam targeting': 667136, 'scam targeting consumer': 740390, 'targeting consumer about': 834561, 'consumer about covid': 195993, '19 including fake': 7806, 'including fake corona': 431955, 'fake corona special': 296587, 'corona special virus': 204189, 'special virus test': 788091, 'virus test kit': 958855, 'test kit amp': 839047, 'kit amp bogus': 475486, 'amp bogus travel': 53463, 'bogus travel insurance': 134037, 'travel insurance learn': 930406, 'insurance learn more': 440769, 'learn more to': 484040, 'protect yourself amp': 685081, 'yourself amp your': 1026517, 'amp your loved': 54871, 'evaporated': 283766, 'ha probably': 371538, 'not evaporated': 569232, 'evaporated this': 283767, 'this suddenly': 890409, 'suddenly since': 817133, 'since world': 771003, 'ii if': 415976, 'ever monetizing': 285417, 'monetizing medium': 536561, 'consumer demand ha': 197138, 'demand ha probably': 235612, 'ha probably not': 371539, 'probably not evaporated': 679338, 'not evaporated this': 569233, 'evaporated this suddenly': 283768, 'this suddenly since': 890410, 'suddenly since world': 817134, 'since world war': 771004, 'war ii if': 966466, 'ii if ever': 415977, 'if ever monetizing': 414082, 'ever monetizing medium': 285418, 'corporate earnings': 207267, 'earnings uncertainty': 264936, 'slowing global': 774549, 'activity weighs': 30532, 'weighs on': 977689, 'corporate earnings uncertainty': 207271, 'earnings uncertainty in': 264937, 'uncertainty in light': 939697, 'light of falling': 489553, 'of falling oil': 583391, '19 and slowing': 5107, 'and slowing global': 71759, 'slowing global economic': 774550, 'global economic activity': 351879, 'economic activity weighs': 266966, 'activity weighs on': 30533, 'weighs on stock': 977691, 'on stock price': 603675, 'stock price at': 802705, 'of the second': 591446, 'gulval': 368663, 'penzance': 646713, 'wewillfightcorona': 980799, 'how lovely': 408227, 'lovely spotted': 504990, 'spotted this': 790215, 'this lovely': 888719, 'lovely drawing': 504957, 'drawing and': 258504, 'the window': 871592, 'window of': 995692, 'in gulval': 423478, 'gulval penzance': 368664, 'penzance today': 646714, 'today while': 920525, 'while driving': 986774, 'supermarket happy': 820666, 'happy wewillfightcorona': 377729, 'how lovely spotted': 408228, 'lovely spotted this': 504991, 'spotted this lovely': 790216, 'this lovely drawing': 888720, 'lovely drawing and': 504958, 'drawing and message': 258505, 'and message on': 66962, 'message on the': 529384, 'on the window': 604454, 'the window of': 871595, 'window of house': 995693, 'of house in': 584788, 'house in gulval': 406356, 'in gulval penzance': 423479, 'gulval penzance today': 368665, 'penzance today while': 646715, 'today while driving': 920529, 'while driving to': 986776, 'driving to supermarket': 260021, 'to supermarket happy': 915798, 'supermarket happy wewillfightcorona': 820668, 'please review': 660418, 'ftc most': 339421, 'recent information': 703916, 'please review the': 660419, 'review the ftc': 720592, 'the ftc most': 855933, 'ftc most recent': 339422, 'most recent information': 542682, 'recent information on': 703917, 'people attack': 647189, 'attack each': 102105, 'than while': 841454, 'while sunbathing': 987347, 'the mortality': 860925, 'mortality rate': 541801, 'includes people': 431796, 'but people attack': 146764, 'people attack each': 647190, 'attack each other': 102106, 'other when they': 621200, 'when they do': 984252, 'have to you': 383343, 'to you have': 918901, 'greater chance of': 363148, 'chance of catching': 171749, 'of catching it': 581207, 'supermarket than while': 823166, 'than while sunbathing': 841455, 'while sunbathing the': 987348, 'sunbathing the mortality': 818128, 'the mortality rate': 860926, 'mortality rate is': 541803, 'and that includes': 73194, 'that includes people': 844479, 'includes people who': 431797, 'people who died': 650288, 'lexicon': 487857, 'term socialdistancing': 838297, 'socialdistancing first': 780363, 'first entered': 308656, 'entered our': 278368, 'our lexicon': 623713, 'lexicon few': 487858, 'back remember': 107250, 'when concern': 983270, 'concern were': 193136, 'were primarily': 979997, 'primarily toiletpaper': 678051, 'toiletpaper based': 921782, 'based tried': 111775, 'explain it': 292106, 'when the term': 984204, 'the term socialdistancing': 869296, 'term socialdistancing first': 838298, 'socialdistancing first entered': 780364, 'first entered our': 308657, 'entered our lexicon': 278369, 'our lexicon few': 623714, 'lexicon few week': 487859, 'week back remember': 975975, 'back remember the': 107251, 'remember the good': 710307, 'the good old': 856445, 'good old day': 357491, 'old day when': 598222, 'day when concern': 228721, 'when concern were': 983271, 'concern were primarily': 193137, 'were primarily toiletpaper': 979998, 'primarily toiletpaper based': 678052, 'toiletpaper based tried': 921783, 'based tried to': 111776, 'tried to explain': 931834, 'to explain it': 905474, 'explain it to': 292107, 'to my year': 910452, 'oat': 578300, 'hp': 409569, 'are gradually': 86934, 'gradually increasing': 361696, 'crisis shame': 218024, 'you 80': 1016766, '80 for': 22576, 'for oat': 324007, 'oat milk': 578303, 'milk small': 531818, 'of hp': 584848, 'hp for': 409570, 'for 40': 318836, 'are gradually increasing': 86935, 'gradually increasing price': 361697, 'price during crisis': 673618, 'during crisis shame': 262565, 'crisis shame on': 218025, 'on you 80': 605410, 'you 80 for': 1016767, '80 for oat': 22577, 'for oat milk': 324008, 'oat milk small': 578304, 'milk small bottle': 531819, 'bottle of hp': 136287, 'of hp for': 584849, 'hp for 40': 409571, 'governer': 359797, 'tennessean': 837942, 'governer deeply': 359798, 'deeply disappointed': 231989, 'disappointed with': 244126, 'fellow tennessean': 303338, 'tennessean here': 837943, 'east tn': 265347, 'tn went': 899393, 'practicing any': 668723, 'ppl still': 668331, 'carrying on': 165199, 'governer deeply disappointed': 359799, 'deeply disappointed with': 231990, 'disappointed with my': 244127, 'with my fellow': 999623, 'my fellow tennessean': 548306, 'fellow tennessean here': 303339, 'tennessean here in': 837944, 'here in east': 393146, 'in east tn': 422463, 'east tn went': 265348, 'tn went to': 899394, 'store and nobody': 806307, 'and nobody is': 67660, 'nobody is practicing': 566024, 'is practicing any': 450976, 'practicing any type': 668724, 'type of distance': 937554, 'of distance between': 582715, 'distance between each': 246663, 'between each other': 128762, 'each other ppl': 264210, 'other ppl still': 620748, 'ppl still going': 668333, 'still going out': 800589, 'out and carrying': 625650, 'and carrying on': 59586, 'carrying on if': 165200, 'on if nothing': 601480, 'if nothing is': 414522, 'nothing is going': 573062, 'containcovid19': 200513, 'jpak': 467555, 'shippingtoja': 758954, 'become public': 120109, 'gathering and': 344430, 'keep covid': 471432, 'bay still': 112972, 'need sanitization': 555537, 'sanitization product': 734147, 'product order': 681500, 'll do': 496712, 'rest staysafe': 716223, 'staysafe containcovid19': 798790, 'containcovid19 jpak': 200514, 'jpak shippingtoja': 467556, 'shippingtoja onlineshopping': 758955, 'onlineshopping lysol': 609914, 'supermarket ha now': 820640, 'now become public': 574219, 'become public gathering': 120110, 'public gathering and': 688028, 'gathering and many': 344433, 'many store are': 514733, 'out of some': 626833, 'of some of': 589900, 'the essential needed': 854514, 'to keep covid': 908776, 'keep covid 19': 471433, '19 at bay': 5239, 'at bay still': 98110, 'bay still need': 112973, 'still need sanitization': 800859, 'need sanitization product': 555538, 'sanitization product order': 734148, 'product order online': 681501, 'we ll do': 972245, 'll do the': 496716, 'do the rest': 250257, 'the rest staysafe': 865638, 'rest staysafe containcovid19': 716224, 'staysafe containcovid19 jpak': 798791, 'containcovid19 jpak shippingtoja': 200515, 'jpak shippingtoja onlineshopping': 467557, 'shippingtoja onlineshopping lysol': 758956, 'brings apocalypse': 140230, 'apocalypse in': 81540, 'in not': 425962, 'taking shelter': 833561, 'any mall': 79447, 'mall because': 511757, 'those mall': 892190, 'literally out': 495061, 'stock want': 803152, 'be stuck': 117416, 'stuck with': 814621, 'some suburban': 783993, 'suburban 60': 816134, '60 something': 21009, 'something couple': 784878, 'couple they': 211686, 'they took': 883577, 'if this covid': 415150, '19 brings apocalypse': 5447, 'brings apocalypse in': 140231, 'apocalypse in not': 81541, 'in not taking': 425968, 'not taking shelter': 571931, 'taking shelter in': 833562, 'shelter in any': 757929, 'in any mall': 420430, 'any mall because': 79448, 'mall because all': 511758, 'because all those': 118921, 'all those mall': 45168, 'those mall are': 892191, 'mall are literally': 511749, 'are literally out': 87838, 'literally out of': 495062, 'of stock want': 590207, 'stock want to': 803153, 'to be stuck': 901569, 'be stuck with': 117418, 'stuck with some': 814622, 'with some suburban': 1000868, 'some suburban 60': 783994, 'suburban 60 something': 816135, '60 something couple': 21010, 'something couple they': 784879, 'couple they took': 211687, 'they took all': 883578, 'food in their': 314976, 'in their pantry': 429762, 'takeouttuesday': 833203, 'the creative': 852310, 'creative way': 216178, 'way local': 969688, 'adapting during': 31325, 'time toiletpaper': 898110, 'toiletpapercrisis toiletpapergate': 923103, 'toiletpapergate takeouttuesday': 923161, 'we love seeing': 972309, 'seeing all the': 746210, 'all the creative': 44705, 'the creative way': 852311, 'creative way local': 216179, 'way local retailer': 969689, 'local retailer are': 498351, 'retailer are adapting': 718984, 'are adapting during': 84221, 'adapting during this': 31326, 'challenging time toiletpaper': 171652, 'time toiletpaper toiletpapercrisis': 898111, 'toiletpaper toiletpapercrisis toiletpapergate': 922670, 'toiletpapercrisis toiletpapergate takeouttuesday': 923104, 'lse': 506350, 'uknews': 939031, 'rise trump': 723042, 'trump expects': 933542, 'expects russia': 291101, 'arabia to': 83946, 'settle the': 753692, 'the dispute': 853399, 'dispute soon': 246333, 'soon check': 785675, 'here outbreak': 393437, 'outbreak investing': 628364, 'investing stock': 443944, 'stock lse': 802369, 'lse oil': 506351, 'oil equity': 596768, 'equity finance': 279933, 'finance uknews': 306292, 'uknews market': 939032, 'price rise trump': 676249, 'rise trump expects': 723043, 'trump expects russia': 933544, 'expects russia and': 291102, 'saudi arabia to': 737220, 'arabia to settle': 83950, 'to settle the': 914304, 'settle the dispute': 753693, 'the dispute soon': 853400, 'dispute soon check': 246334, 'soon check it': 785676, 'out here outbreak': 626290, 'here outbreak investing': 393438, 'outbreak investing stock': 628365, 'investing stock lse': 443945, 'stock lse oil': 802370, 'lse oil equity': 506352, 'oil equity finance': 596769, 'equity finance uknews': 279934, 'finance uknews market': 306293, 'uknews market update': 939033, 'though fuck': 892814, 'guy he': 369020, 'he deserves': 384871, 'deserves to': 238183, 'to sit': 914680, 'pandemic last': 635865, 'last give': 480252, 'him more': 396663, 'worker that': 1007910, 'that dy': 843655, 'the nj': 861821, 'nj and': 563407, 'and ny': 67909, 'ny area': 577838, 'seriously though fuck': 751764, 'though fuck this': 892815, 'fuck this guy': 339668, 'this guy he': 887789, 'guy he deserves': 369021, 'he deserves to': 384872, 'deserves to sit': 238186, 'to sit in': 914684, 'sit in jail': 771826, 'in jail for': 424335, 'jail for long': 464265, 'for long this': 323088, 'long this pandemic': 501750, 'this pandemic last': 889399, 'pandemic last give': 635866, 'last give him': 480253, 'give him more': 350521, 'him more time': 396664, 'more time for': 540768, 'time for every': 896705, 'for every healthcare': 321167, 'every healthcare worker': 285925, 'healthcare worker that': 387388, 'worker that dy': 1007912, 'that dy in': 843656, 'dy in the': 263737, 'in the nj': 429400, 'the nj and': 861822, 'nj and ny': 563408, 'and ny area': 67910, 'ny area due': 577839, 'lack of ppe': 478645, 'person you': 652755, 'dick to': 240475, 'to doe': 904619, 'not own': 570882, 'company doe': 190599, 'not control': 568867, 'control store': 202150, 'policy doe': 663380, 'set store': 753475, 'hour doe': 405542, 'set gas': 753383, 'yell back': 1015208, 'back seriously': 107261, 'together remember': 920912, 'remember stop': 710264, 'being asshats': 124870, 'asshats 19': 96496, 'the person you': 863596, 'person you are': 652756, 'are being dick': 84846, 'being dick to': 125049, 'dick to doe': 240476, 'to doe not': 904620, 'doe not own': 251514, 'not own the': 570885, 'own the company': 632259, 'the company doe': 851324, 'company doe not': 190600, 'doe not control': 251486, 'not control store': 568868, 'control store policy': 202151, 'store policy doe': 809613, 'policy doe not': 663381, 'doe not set': 251529, 'not set store': 571539, 'set store hour': 753476, 'store hour doe': 808195, 'hour doe not': 405543, 'not set gas': 571538, 'set gas price': 753384, 'gas price can': 343941, 'price can yell': 673068, 'can yell back': 160267, 'yell back seriously': 1015209, 'back seriously people': 107262, 'seriously people all': 751696, 'people all in': 646804, 'this together remember': 890778, 'together remember stop': 920913, 'remember stop being': 710265, 'stop being asshats': 804480, 'being asshats 19': 124871, 'easily one': 265236, 'why staying': 991375, 'home recommended': 401953, 'recommended be': 704775, 'smart stayathome': 775430, 'show how easily': 766975, 'how easily one': 407775, 'easily one cough': 265237, 'can spread the': 159711, 'spread the in': 790825, 'the in the': 858019, 'the supermarket yes': 868921, 'supermarket yes that': 824159, 'yes that why': 1015546, 'that why staying': 847546, 'why staying home': 991376, 'staying home recommended': 798619, 'home recommended be': 401954, 'recommended be smart': 704776, 'be smart stayathome': 117237, 'tearful care': 835981, 'left unable': 485704, 'issue heartbreaking': 455782, 'heartbreaking appeal': 388373, 'appeal express': 82058, 'tearful care nurse': 835982, 'care nurse left': 164086, 'nurse left unable': 577406, 'left unable to': 485705, 'shift issue heartbreaking': 758342, 'issue heartbreaking appeal': 455783, 'heartbreaking appeal express': 388374, 'consider closing': 194970, 'closing your': 183814, 'your non': 1025022, 'non fuel': 566398, 'fuel location': 340197, 'location you': 499002, 'contributing the': 201916, 'this responsible': 889886, 'responsible action': 715999, 'action you': 30209, 'not grocery': 569753, 're convenience': 698468, 'please consider closing': 659811, 'consider closing your': 194972, 'closing your non': 183815, 'your non fuel': 1025024, 'non fuel location': 566399, 'fuel location you': 340198, 'location you are': 499003, 'are contributing the': 85551, 'contributing the to': 201917, 'the to spread': 869691, '19 by not': 5567, 'by not taking': 153364, 'taking this responsible': 833619, 'this responsible action': 889887, 'responsible action you': 716000, 'action you re': 30211, 're not grocery': 699094, 'not grocery store': 569755, 'you re convenience': 1020596, 're convenience store': 698469, 'convenience store that': 202359, 'store that people': 810565, 'people can live': 647398, 'kane': 470783, 'pirie': 656934, 'have far': 380587, 'reaching implication': 700087, 'in travel': 430272, 'travel sector': 930501, 'sector turn': 744377, 'turn industry': 935681, 'industry into': 435917, 'into banker': 442419, 'banker after': 110339, 'the bail': 849188, 'out say': 627147, 'say ceo': 738495, 'ceo kane': 169738, 'kane pirie': 470784, 'could have far': 209253, 'have far reaching': 380590, 'far reaching implication': 298898, 'reaching implication for': 700088, 'for consumer trust': 320299, 'consumer trust in': 199400, 'trust in travel': 934276, 'in travel sector': 430274, 'travel sector turn': 930503, 'sector turn industry': 744378, 'turn industry into': 935682, 'industry into banker': 435918, 'into banker after': 442420, 'banker after the': 110340, 'after the bail': 36286, 'the bail out': 849189, 'bail out say': 108591, 'out say ceo': 627148, 'say ceo kane': 738497, 'ceo kane pirie': 169739, 'with fake': 998361, 'website email': 975253, 'email social': 272300, 'social post': 779914, 'post text': 666339, 'text designed': 839886, 'steal personal': 799195, 'info link': 437513, 'link provided': 493884, 'provided courtesy': 686590, 'courtesy content': 212038, 'content not': 200825, 'not guaranteed': 569760, 'fraudsters are taking': 331405, 'outbreak with fake': 628829, 'with fake website': 998365, 'fake website email': 296743, 'website email social': 975254, 'email social post': 272301, 'social post text': 779915, 'post text designed': 666340, 'text designed to': 839887, 'designed to steal': 238364, 'to steal personal': 915365, 'steal personal information': 799197, 'personal information we': 652905, 'information we ll': 438035, 'we ll never': 972265, 'll never call': 496916, 'never call email': 557923, 'or text and': 617352, 'text and ask': 839874, 'ask for personal': 95533, 'for personal info': 324502, 'personal info link': 652885, 'info link provided': 437514, 'link provided courtesy': 493885, 'provided courtesy content': 686591, 'courtesy content not': 212039, 'content not guaranteed': 200826, 'technology that': 836384, 'help human': 389878, 'human live': 410554, 'mar is': 515015, 'address an': 31944, 'an immediate': 56165, 'immediate need': 417004, 'need here': 555003, 'earth and': 264968, 'for community': 320193, 'community impacted': 189909, 'by learn': 153036, 'work being': 1004933, 'by challenge': 152092, 'challenge competitor': 171426, 'technology that could': 836385, 'could help human': 209284, 'help human live': 389879, 'human live on': 410555, 'live on mar': 495959, 'on mar is': 602005, 'mar is being': 515016, 'is being used': 446123, 'being used to': 126022, 'used to address': 950033, 'to address an': 900083, 'address an immediate': 31945, 'an immediate need': 56166, 'immediate need here': 417005, 'need here on': 555006, 'here on earth': 393409, 'on earth and': 600465, 'earth and produce': 264970, 'and produce hand': 69553, 'sanitizer for community': 734897, 'for community impacted': 320195, 'community impacted by': 189910, 'impacted by learn': 418082, 'by learn about': 153037, 'about the work': 26565, 'the work being': 871728, 'work being done': 1004934, 'being done by': 125074, 'done by challenge': 254804, 'by challenge competitor': 152093, 'subscribing': 815874, '18c': 4673, 'for cancelling': 319911, 'cancelling out': 161221, 'out sub': 627265, 'sub save': 815691, 'save regular': 737627, 'regular toilet': 707884, 'roll order': 725444, 'order this': 618645, 'morning after': 541135, 'after year': 36598, 'of subscribing': 590353, 'subscribing you': 815875, 'down just': 256905, 'before delivery': 122738, 'delivery with': 234751, 'no alternative': 563602, 'alternative replacement': 49251, 'replacement thanks': 711625, 'roll on': 725429, 'for 18c': 318692, '18c gold': 4674, 'thanks for cancelling': 842052, 'for cancelling out': 319912, 'cancelling out sub': 161222, 'out sub save': 627266, 'sub save regular': 815692, 'save regular toilet': 737628, 'regular toilet roll': 707885, 'toilet roll order': 921593, 'roll order this': 725445, 'order this morning': 618648, 'this morning after': 888934, 'morning after year': 541138, 'after year of': 36599, 'year of subscribing': 1014794, 'of subscribing you': 590354, 'subscribing you let': 815876, 'you let down': 1019590, 'let down just': 486690, 'down just before': 256907, 'just before delivery': 468316, 'before delivery with': 122739, 'delivery with no': 234752, 'with no alternative': 999733, 'no alternative replacement': 563604, 'alternative replacement thanks': 49252, 'replacement thanks also': 711626, 'thanks also to': 842014, 'also to bulk': 49018, 'to bulk buyer': 902103, 'bulk buyer now': 142266, 'buyer now selling': 149699, 'now selling toilet': 575776, 'toilet roll on': 921590, 'roll on ebay': 725430, 'ebay for 18c': 266456, 'for 18c gold': 318693, '18c gold price': 4675, 'stop multi': 804840, 'multi buy': 545651, 'buy offer': 149025, 'just reduce': 469587, 'to discourage': 904357, 'discourage unnecessary': 244627, 'unnecessary bulk': 942893, 'bulk purchase': 142345, 'purchase now': 689567, 'supermarket should stop': 822681, 'should stop multi': 766517, 'stop multi buy': 804841, 'multi buy offer': 545652, 'buy offer and': 149026, 'offer and just': 594523, 'and just reduce': 65716, 'just reduce price': 469588, 'reduce price to': 705905, 'price to discourage': 676983, 'to discourage unnecessary': 904362, 'discourage unnecessary bulk': 244628, 'unnecessary bulk purchase': 942894, 'bulk purchase now': 142346, 'toothpaste': 925493, 'bubblegum': 141633, 'some at': 782349, 'at convenience': 98328, 'no toothpaste': 565778, 'toothpaste either': 925496, 'either except': 270296, 'child kind': 176127, 'kind got': 474849, 'got bubblegum': 358456, 'bubblegum flavour': 141634, 'paper at my': 639897, 'store but got': 806792, 'but got some': 145810, 'got some at': 358845, 'some at convenience': 782351, 'at convenience store': 98329, 'convenience store there': 202360, 'wa no toothpaste': 962739, 'no toothpaste either': 565779, 'toothpaste either except': 925497, 'either except for': 270297, 'except for the': 289172, 'for the child': 326343, 'the child kind': 850821, 'child kind got': 176128, 'kind got bubblegum': 474850, 'got bubblegum flavour': 358457, 'are doctor': 85878, 'nurse disability': 577277, 'disability care': 243816, 'people delivering': 647621, 'and stacking': 72184, 'stacking your': 792049, 'safe they': 730027, 'also pay': 48648, 'pay tax': 645134, 'tax doesn': 834968, 'your visa': 1026285, 'visa status': 959119, 'status it': 796681, 'discriminate and': 244787, 'and neither': 67515, 'neither should': 557345, 'they are doctor': 881254, 'are doctor nurse': 85879, 'doctor nurse disability': 251008, 'nurse disability care': 577278, 'disability care worker': 243817, 'care worker they': 164307, 'the people delivering': 863466, 'people delivering your': 647623, 'delivering your food': 233568, 'food and stacking': 313342, 'and stacking your': 72185, 'stacking your supermarket': 792050, 'supermarket shelf so': 822532, 'can be safe': 157680, 'be safe they': 116973, 'safe they also': 730028, 'they also pay': 881154, 'also pay tax': 48649, 'pay tax doesn': 645135, 'tax doesn care': 834969, 'about your visa': 27018, 'your visa status': 1026286, 'visa status it': 959120, 'status it doesn': 796682, 'it doesn discriminate': 457627, 'doesn discriminate and': 251751, 'discriminate and neither': 244788, 'and neither should': 67516, 'neither should we': 557346, 'zealand supermarket': 1027312, 'shelf march': 757307, '2020 via': 14692, '19 new zealand': 8773, 'new zealand supermarket': 559998, 'zealand supermarket shelf': 1027315, 'supermarket shelf march': 822496, 'shelf march 17': 757308, '17 2020 via': 4315, 'umassmed': 939218, 'for surge': 326083, 'low team': 505659, 'of umassmed': 592583, 'umassmed student': 939219, 'student quickly': 814758, 'developed 130': 239672, '130 gallon': 3294, 'for nearby': 323785, 'nearby hospital': 553662, 'hospital get': 404420, 'the info': 858242, 'info http': 437493, 'prepares for surge': 670312, 'for surge of': 326085, 'surge of 19': 828226, 'of 19 case': 579385, 'case and supply': 165629, 'and supply are': 72776, 'supply are running': 824792, 'are running low': 89767, 'running low team': 728004, 'low team of': 505660, 'team of umassmed': 835745, 'of umassmed student': 592584, 'umassmed student quickly': 939220, 'student quickly developed': 814759, 'quickly developed 130': 694508, 'developed 130 gallon': 239673, '130 gallon of': 3295, 'sanitizer for nearby': 734915, 'for nearby hospital': 323786, 'nearby hospital get': 553663, 'hospital get the': 404424, 'get the info': 348254, 'the info http': 858246, 'reflected': 706639, 'confess': 193786, 'time4change': 898431, 'reflected on': 706646, 'own consumer': 631924, 'behaviour last': 124464, 'list confess': 494295, 'confess much': 193789, 'much feel': 544884, 'may lose': 521330, '19 part': 9575, 'me also': 522382, 'also wish': 49105, 'that unethical': 847170, 'unethical business': 941334, 'operate usual': 613025, 'usual unless': 951052, 'unless making': 942627, 'making change': 510985, 'change time4change': 172336, 'reflected on my': 706647, 'on my own': 602301, 'my own consumer': 549637, 'own consumer behaviour': 631925, 'consumer behaviour last': 196584, 'behaviour last week': 124465, 'week and made': 975922, 'made this list': 508023, 'this list confess': 888654, 'list confess much': 494296, 'confess much feel': 193790, 'much feel bad': 544885, 'bad for people': 107864, 'who may lose': 989274, 'may lose job': 521331, 'lose job due': 503445, 'covid 19 part': 213553, '19 part of': 9576, 'part of me': 642359, 'of me also': 586323, 'me also wish': 522383, 'also wish that': 49106, 'wish that unethical': 996817, 'that unethical business': 847171, 'unethical business will': 941335, 'business will no': 144687, 'to operate usual': 911026, 'operate usual unless': 613026, 'usual unless making': 951053, 'unless making change': 942628, 'making change time4change': 510988, 'sickofwinning': 768766, 'my cash': 547633, 'cash register': 166319, 'register person': 707598, 'service had': 752441, 'take sick': 832581, 'leave cause': 484763, 'none they': 566607, 'go see': 354088, 'doctor cause': 250868, 'insurance it': 440763, 'not offered': 570724, 'offered trying': 594984, 'panic though': 638709, 'though america': 892770, 'america sickofwinning': 51677, 'wa wondering if': 963720, 'wondering if my': 1004174, 'if my cash': 414431, 'my cash register': 547635, 'cash register person': 166325, 'register person in': 707599, 'person in food': 652479, 'food service had': 316418, 'service had covid': 752443, '19 they will': 11318, 'not take sick': 571906, 'take sick leave': 832582, 'sick leave cause': 768487, 'leave cause they': 484764, 'they have none': 882349, 'have none they': 381676, 'none they will': 566608, 'will not go': 994226, 'not go see': 569687, 'go see doctor': 354090, 'see doctor cause': 745053, 'doctor cause they': 250869, 'cause they do': 167771, 'health insurance it': 386548, 'insurance it is': 440764, 'is not offered': 450140, 'not offered trying': 570726, 'offered trying not': 594985, 'to panic though': 911433, 'panic though america': 638710, 'though america sickofwinning': 892771, 'cliff': 182164, 'dev': 239549, 'hi cliff': 394614, 'cliff we': 182171, 'we apologize': 970443, 'our delayed': 622721, 'delayed response': 232807, 'mifi dev': 530852, 'hi cliff we': 394615, 'cliff we apologize': 182172, 'we apologize for': 970444, 'apologize for our': 81639, 'for our delayed': 324226, 'our delayed response': 622722, 'delayed response starting': 232809, 'response starting on': 715795, 'and mifi dev': 66998, 'koboko': 477300, 'bloodsucker': 133160, 'shs3': 767737, 'koboko three': 477301, 'three indian': 893959, 'indian and': 434773, 'and ugandan': 74567, 'ugandan trader': 938015, 'trader arrested': 928659, 'for using': 327501, 'using lockdown': 950546, 'hike commodity': 396203, 'the bloodsucker': 849789, 'bloodsucker are': 133161, 'selling packet': 749394, 'of salt': 589251, 'salt at': 732803, 'at shs3': 100522, 'shs3 00': 767738, '00 please': 435, 'report those': 712379, 'those crook': 891904, 'crook and': 218865, 'them locked': 875996, 'koboko three indian': 477302, 'three indian and': 893960, 'indian and ugandan': 434774, 'and ugandan trader': 74568, 'ugandan trader arrested': 938016, 'trader arrested for': 928660, 'arrested for using': 93849, 'for using lockdown': 327503, 'using lockdown to': 950547, 'lockdown to hike': 500057, 'to hike commodity': 907761, 'hike commodity price': 396204, 'price the bloodsucker': 676822, 'the bloodsucker are': 849790, 'bloodsucker are selling': 133162, 'are selling packet': 89969, 'selling packet of': 749395, 'packet of salt': 633712, 'of salt at': 589252, 'salt at shs3': 732804, 'at shs3 00': 100523, 'shs3 00 please': 767739, '00 please report': 436, 'please report those': 660392, 'report those crook': 712380, 'those crook and': 891905, 'crook and get': 218867, 'and get them': 63606, 'get them locked': 348366, 'them locked up': 875997, 'been shopping': 121949, 've been shopping': 952930, 'been shopping online': 121952, 'online for day': 608223, 'bartholomew': 111408, 'sebastian': 743611, 'from paul': 336863, 'paul bartholomew': 644535, 'bartholomew and': 111409, 'and sebastian': 71113, 'sebastian lewis': 743612, 'lewis discus': 487834, 'on steel': 603661, 'steel and': 799313, 'and iron': 65380, 'when market': 983719, 'market may': 516705, 'from paul bartholomew': 336864, 'paul bartholomew and': 644536, 'bartholomew and sebastian': 111410, 'and sebastian lewis': 71114, 'sebastian lewis discus': 743613, 'lewis discus the': 487835, 'discus the impact': 244922, 'the on steel': 862174, 'on steel and': 603662, 'steel and iron': 799314, 'and iron price': 65381, 'iron price and': 444927, 'price and when': 672581, 'and when market': 75517, 'when market may': 983720, 'market may return': 516708, 'also damn': 48086, 'damn annoying': 225317, 'annoying we': 77375, 'experiencing shortage': 291698, 'disinfectant toilet': 245782, 'also experiencing': 48178, 'experiencing fake': 291645, 'fake fact': 296623, 'fact this': 295831, 'wash food': 967460, 'food properly': 316064, 'properly and': 684168, '19 panic is': 9549, 'panic is something': 638222, 'is something that': 452112, 'that is okay': 844630, 'okay but also': 597961, 'but also damn': 145106, 'also damn annoying': 48087, 'damn annoying we': 225318, 'annoying we are': 77376, 'are experiencing shortage': 86351, 'experiencing shortage of': 291699, 'shortage of disinfectant': 765107, 'of disinfectant toilet': 582688, 'disinfectant toilet paper': 245783, 'paper and we': 639864, 'are also experiencing': 84451, 'also experiencing fake': 48179, 'experiencing fake news': 291646, 'fake news and': 296668, 'news and fake': 560229, 'and fake fact': 62627, 'fake fact this': 296624, 'fact this is': 295832, 'exactly what happens': 288761, 'happens when you': 377531, 'not wash food': 572453, 'wash food properly': 967461, 'food properly and': 316065, 'properly and do': 684169, 'stop the wildlife': 805160, 'tonight my': 924449, 'community wa': 190202, 'wa informed': 962405, 'informed of': 438113, 'of confirmed': 581659, 'resident went': 714398, 'supermarket late': 821272, 'late monday': 480896, 'monday afternoon': 536236, 'afternoon same': 36709, 'day people': 228197, 'people wiped': 650427, 'shelf people': 757401, 'out now': 626655, 'tonight my community': 924450, 'my community wa': 547769, 'community wa informed': 190203, 'wa informed of': 962406, 'informed of confirmed': 438114, 'of confirmed case': 581660, '19 in local': 7763, 'in local resident': 424824, 'local resident went': 498333, 'resident went to': 714399, 'local supermarket late': 498548, 'supermarket late monday': 821274, 'late monday afternoon': 480897, 'monday afternoon same': 536238, 'afternoon same day': 36710, 'same day people': 733030, 'day people wiped': 228203, 'people wiped out': 650428, 'wiped out the': 996475, 'the shelf people': 866864, 'shelf people are': 757402, 'are really freaking': 89476, 'really freaking out': 702212, 'freaking out now': 331547, '3onyourside': 18370, 'friend we': 333879, 'this emergency': 887362, 'emergency together': 273032, 'together bookmark': 920729, 'bookmark the': 134767, 'the 3onyourside': 848105, '3onyourside page': 18371, 'constantly updating': 195709, 'updating it': 947474, 'consumer info': 197867, 'hi friend we': 394646, 'friend we get': 333884, 'we get through': 971634, 'through this emergency': 894814, 'this emergency together': 887365, 'emergency together bookmark': 273033, 'together bookmark the': 920730, 'bookmark the 3onyourside': 134768, 'the 3onyourside page': 848106, '3onyourside page at': 18372, 'page at are': 633832, 'at are constantly': 98039, 'are constantly updating': 85521, 'constantly updating it': 195710, 'updating it with': 947475, 'with the latest': 1001363, 'latest consumer info': 481261, 'consumer info to': 197868, 'info to help': 437592, 'navigate this uncertain': 553096, 'stupidisasstupiddoes': 815510, 'gerrityssupermarket': 346402, 'trumpincompetence': 934051, 'trumpjoke': 934064, 'trumpsucks': 934159, 'loses 35k': 503514, 'woman coronavirus': 1003451, 'prank stupidisasstupiddoes': 668950, 'stupidisasstupiddoes virus': 815511, 'virus pennsylvania': 958622, 'pennsylvania gerrityssupermarket': 646563, 'gerrityssupermarket supermarket': 346403, 'supermarket hoarding': 820771, 'waste pandemic': 968167, 'pandemic china': 635135, 'china trumpvirus': 177024, 'trumpvirus trumpincompetence': 934189, 'trumpincompetence trumpjoke': 934052, 'trumpjoke trumpsucks': 934065, 'store loses 35k': 808833, 'loses 35k in': 503515, 'after woman coronavirus': 36556, 'woman coronavirus prank': 1003452, 'coronavirus prank stupidisasstupiddoes': 206575, 'prank stupidisasstupiddoes virus': 668951, 'stupidisasstupiddoes virus pennsylvania': 815512, 'virus pennsylvania gerrityssupermarket': 958623, 'pennsylvania gerrityssupermarket supermarket': 646564, 'gerrityssupermarket supermarket hoarding': 346404, 'supermarket hoarding food': 820772, 'hoarding food waste': 399318, 'food waste pandemic': 317487, 'waste pandemic china': 968168, 'pandemic china trumpvirus': 635136, 'china trumpvirus trumpincompetence': 177025, 'trumpvirus trumpincompetence trumpjoke': 934190, 'trumpincompetence trumpjoke trumpsucks': 934053, 'rif': 721686, 'foreignexchange': 329031, 'currency market': 221043, 'other challenge': 619934, 'challenge find': 171452, 'how rif': 408601, 'rif fx': 721687, 'fx could': 342588, 'your foreignexchange': 1023943, 'foreignexchange transaction': 329032, 'transaction by': 929439, 'by visiting': 154676, 'visiting online': 959536, 'in the currency': 429116, 'the currency market': 852605, 'currency market in': 221044, 'market in light': 516560, 'the other challenge': 862516, 'other challenge find': 619935, 'challenge find out': 171453, 'out how rif': 626334, 'how rif fx': 408602, 'rif fx could': 721688, 'fx could help': 342589, 'could help your': 209300, 'help your foreignexchange': 391020, 'your foreignexchange transaction': 1023944, 'foreignexchange transaction by': 329033, 'transaction by visiting': 929440, 'by visiting online': 154677, 'cary': 165547, 'zimmerman': 1027599, 'ohio are': 596519, 'from measure': 336404, 'curtail the': 221783, 'law partner': 482366, 'partner cary': 642793, 'cary zimmerman': 165548, 'zimmerman explains': 1027600, 'program that': 683299, 'this drop': 887303, 'small business in': 774866, 'business in ohio': 143891, 'in ohio are': 426075, 'ohio are in': 596520, 'in crisis from': 421882, 'crisis from measure': 217402, 'from measure taken': 336405, 'taken to curtail': 833097, 'to curtail the': 903835, 'curtail the spread': 221784, 'of the law': 591179, 'the law partner': 859190, 'law partner cary': 482367, 'partner cary zimmerman': 642794, 'cary zimmerman explains': 165549, 'zimmerman explains the': 1027601, 'explains the economic': 292234, 'the economic relief': 853911, 'economic relief program': 267250, 'relief program that': 709445, 'program that may': 683300, 'that may soon': 845090, 'soon be available': 785635, 'be available to': 113764, 'available to fight': 104643, 'fight this drop': 304917, 'this drop in': 887304, 'in consumer confidence': 421688, 'socialdistancing stayhome': 780733, 'stayhomesavelives emptyshelves': 798377, '19 socialdistancing stayhome': 10679, 'socialdistancing stayhome stayhomesavelives': 780739, 'stayhome stayhomesavelives emptyshelves': 798154, 'why athlete': 990823, 'and entertainer': 62191, 'entertainer get': 278542, 'paid million': 634081, 'million when': 532417, 'when apparently': 983158, 'apparently they': 82028, 'essential health': 281124, 'restaurant cook': 716399, 'cook delivery': 202735, 'questioning why athlete': 693841, 'why athlete and': 990824, 'athlete and entertainer': 101757, 'and entertainer get': 62192, 'entertainer get paid': 278543, 'get paid million': 347773, 'paid million when': 634082, 'million when apparently': 532418, 'when apparently they': 983159, 'apparently they are': 82029, 'not essential health': 569214, 'essential health care': 281125, 'care professional restaurant': 164165, 'professional restaurant cook': 682485, 'restaurant cook delivery': 716400, 'cook delivery driver': 202736, 'sia': 768320, '19 sia': 10534, 'sia supermarket': 768321, 'supermarket provides': 822086, 'provides picture': 686880, 'picture guide': 656130, 'help confused': 389508, 'confused husband': 194336, 'husband buy': 411690, 'covid 19 sia': 213798, '19 sia supermarket': 10535, 'sia supermarket provides': 768322, 'supermarket provides picture': 822087, 'provides picture guide': 686881, 'picture guide to': 656131, 'guide to help': 368364, 'to help confused': 907479, 'help confused husband': 389509, 'confused husband buy': 194337, 'husband buy grocery': 411691, 'buy grocery during': 148749, 'grocery during lockdown': 364483, 'wilding': 992126, 'shook': 759719, 'people tweaking': 650036, 'tweaking for': 936285, 'no tissue': 565735, 'before 1pm': 122590, '1pm people': 12697, 'here wilding': 393845, 'wilding thing': 992129, 'thing slowly': 884748, 'slowly going': 774597, 'certain people': 170069, 'still shook': 801185, 'store people wearing': 809497, 'glove mask people': 352779, 'mask people tweaking': 519107, 'people tweaking for': 650037, 'tweaking for hand': 936286, 'sanitizer no tissue': 735422, 'no tissue or': 565736, 'tissue or meat': 899187, 'or meat in': 616101, 'the store before': 867986, 'store before 1pm': 806694, 'before 1pm people': 122591, '1pm people out': 12698, 'out here wilding': 626302, 'here wilding thing': 393846, 'wilding thing slowly': 992130, 'thing slowly going': 884749, 'slowly going back': 774598, 'normal but certain': 567105, 'but certain people': 145401, 'certain people are': 170070, 'are still shook': 90480, 'managing anxiety': 512847, 'anxiety during': 78694, 'during lock': 262753, 'managing anxiety during': 512849, 'anxiety during lock': 78695, 'during lock down': 262754, 'exp': 290442, 'really pathetic': 702481, 'that company': 843269, 'amazon who': 51198, 'money while': 537166, 'while other': 987113, 'closed have': 183149, 'hiked there': 396347, 'item exp': 463245, 'exp big': 290443, 'of wa': 592877, 'wa 99': 961401, '16 99': 4087, 'one example': 606256, 'example ill': 288907, 'it really pathetic': 460653, 'really pathetic that': 702482, 'pathetic that company': 644062, 'that company like': 843271, 'company like amazon': 190841, 'like amazon who': 489755, 'amazon who is': 51199, 'who is making': 989090, 'is making money': 449552, 'making money while': 511233, 'money while other': 537168, 'while other business': 987114, 'are closed have': 85346, 'closed have hiked': 183150, 'have hiked there': 380952, 'hiked there price': 396348, 'there price on': 878956, 'all grocery item': 43007, 'grocery item exp': 364652, 'item exp big': 463246, 'exp big bag': 290444, 'bag of wa': 108373, 'of wa 99': 592878, 'wa 99 and': 961402, '99 and now': 23775, 'and now is': 67848, 'now is 16': 575059, 'is 16 99': 445165, '16 99 that': 4088, '99 that just': 23895, 'that just one': 844794, 'just one example': 469375, 'one example ill': 606259, 'retaillife': 719493, 'or small': 617110, 'virus do': 958135, 'have website': 383570, 'website that': 975427, 'that let': 844870, 'know custom': 476346, 'custom build': 221979, 'build website': 142019, 'have system': 382900, 'you accept': 1016786, 'accept online': 27981, 'order retaillife': 618549, 'are you retail': 91847, 'you retail store': 1020925, 'retail store or': 718677, 'store or small': 809371, 'or small business': 617111, 'business who ha': 144668, 'who ha had': 988850, 'ha had to': 370798, 'to close due': 902869, 'the virus do': 870824, 'virus do you': 958138, 'you have website': 1019139, 'have website that': 383571, 'website that people': 975429, 'people can place': 647404, 'can place order': 159241, 'place order on': 657640, 'order on if': 618456, 'on if you': 601484, 'with that let': 1001173, 'that let know': 844871, 'let know custom': 486856, 'know custom build': 476347, 'custom build website': 221980, 'build website and': 142020, 'website and have': 975199, 'and have system': 64283, 'have system to': 382902, 'system to help': 831353, 'help you accept': 390949, 'you accept online': 1016787, 'accept online order': 27982, 'online order retaillife': 608699, 'honcho': 403042, 'appreciates': 82849, '19nz': 12530, 'supermarket team': 823141, 'head honcho': 385746, 'honcho the': 403043, 'and nz': 67912, 'nz appreciates': 578176, 'appreciates your': 82856, 'your sacrifice': 1025657, 'sacrifice of': 729098, 'running 19': 727887, '19 19nz': 4719, 'the supermarket team': 868841, 'supermarket team to': 823144, 'team to the': 835807, 'to the head': 916766, 'the head honcho': 857163, 'head honcho the': 385747, 'honcho the public': 403044, 'the public service': 864853, 'public service worker': 688310, 'service worker you': 753117, 'worker you guy': 1008311, 'guy are amazing': 368896, 'amazing and nz': 50644, 'and nz appreciates': 67913, 'nz appreciates your': 578177, 'appreciates your sacrifice': 82858, 'your sacrifice of': 1025658, 'sacrifice of family': 729099, 'of family time': 583411, 'family time to': 298317, 'go out there': 353990, 'there and keep': 878004, 'and keep running': 65775, 'keep running 19': 471865, 'running 19 19nz': 727888, 'do face': 249279, 'mask really': 519187, 'really help': 702273, 'person there': 652645, 'do face mask': 249280, 'face mask really': 294582, 'mask really help': 519188, 'really help what': 702279, 'help what do': 390879, 'think of that': 885461, 'of that person': 590737, 'that person there': 845724, 'person there not': 652646, 'there not wearing': 878864, 'not wearing it': 572476, 'wearing it with': 974667, 'it with you': 462485, 'sd': 743019, 'canada grocery': 160451, 'shopping suggestion': 764010, 'suggestion grocery': 817647, 'store isle': 808551, 'isle need': 454370, 'way only': 969782, 'we social': 973336, 'distance sd': 246813, 'sd to': 743026, 'not sd': 571466, 'sd once': 743024, 'once inside': 605659, 'inside stopthespread': 439388, 'canada grocery shopping': 160452, 'grocery shopping suggestion': 365087, 'shopping suggestion grocery': 764011, 'suggestion grocery store': 817648, 'grocery store isle': 365492, 'store isle need': 808552, 'isle need to': 454371, 'one way only': 607374, 'way only we': 969783, 'only we social': 611451, 'we social distance': 973337, 'social distance sd': 779521, 'distance sd to': 246814, 'sd to get': 743027, 'get inside and': 347343, 'inside and people': 439220, 'are not sd': 88461, 'not sd once': 571467, 'sd once inside': 743025, 'once inside stopthespread': 605661, 'interestingly': 441651, 'album': 40859, 'interestingly one': 441652, 'one watch': 607361, 'watch hollywood': 968438, 'hollywood film': 400454, 'film he': 305678, 'he wonder': 385679, 'why wa': 991505, 'there zero': 879396, 'zero socialdistancing': 1027501, 'socialdistancing why': 780872, 'clean their': 180656, 'hand while': 375982, 'while accepting': 986560, 'accepting picture': 28088, 'picture album': 656103, 'album from': 40860, 'someone of': 784581, 'course the': 211935, 'future wa': 342509, 'interestingly one watch': 441653, 'one watch hollywood': 607362, 'watch hollywood film': 968439, 'hollywood film he': 400455, 'film he wonder': 305679, 'he wonder why': 385680, 'wonder why wa': 1004046, 'why wa there': 991507, 'wa there zero': 963484, 'there zero socialdistancing': 879397, 'zero socialdistancing why': 1027503, 'socialdistancing why didn': 780873, 'why didn they': 990926, 'didn they use': 241233, 'they use sanitizer': 883616, 'use sanitizer to': 949550, 'sanitizer to clean': 735909, 'to clean their': 902814, 'clean their hand': 180657, 'their hand while': 873488, 'hand while accepting': 375983, 'while accepting picture': 986561, 'accepting picture album': 28089, 'picture album from': 656104, 'album from someone': 40861, 'from someone of': 337352, 'someone of course': 784583, 'of course the': 582071, 'course the future': 211937, 'the future wa': 856093, 'future wa the': 342510, 'wa the last': 963454, 'last thing on': 480544, 'thing on their': 884640, 'on their mind': 604494, 'nycshutdown': 578092, 'store three': 810722, 'since thursday': 770945, 'thursday why': 895449, 'why what': 991545, 'what anxiety': 981047, 'anxiety is': 78731, 'this nycshutdown': 889198, 'nycshutdown socialdistancing': 578093, 'grocery store three': 365862, 'store three time': 810723, 'three time since': 894079, 'time since thursday': 897674, 'since thursday why': 770946, 'thursday why what': 895451, 'why what anxiety': 991546, 'what anxiety is': 981048, 'anxiety is this': 78736, 'is this nycshutdown': 453107, 'this nycshutdown socialdistancing': 889199, 'market thought': 517221, 'thought there': 893253, 'another shock': 77842, 'drag down': 258153, 'already historical': 47449, 'historical low': 397987, 'low natural': 505417, 'price coronavirus': 673260, 'coronavirus came': 205602, 'came on': 157037, 'scene with': 741372, 'when the market': 984173, 'the market thought': 860171, 'market thought there': 517223, 'thought there wa': 893254, 'wa no more': 962729, 'no more room': 564816, 'more room for': 540282, 'room for another': 725911, 'for another shock': 319374, 'another shock to': 77843, 'shock to drag': 759529, 'to drag down': 904701, 'drag down the': 258154, 'down the already': 257263, 'the already historical': 848597, 'already historical low': 47450, 'historical low natural': 397989, 'low natural gas': 505418, 'gas price coronavirus': 343947, 'price coronavirus came': 673261, 'coronavirus came on': 205603, 'came on the': 157039, 'the scene with': 866476, 'try your': 934692, 'this trying': 890874, 'try your best': 934693, 'best to support': 127966, 'local business during': 497759, 'business during this': 143674, 'during this trying': 263330, 'this trying time': 890875, 'trying time by': 934743, 'time by buying': 896434, 'by buying gift': 152040, 'gift card and': 349933, 'card and shopping': 163456, 'shopping online when': 763505, 'disinfected': 245824, '508': 20135, '9032': 23409, 'alert we': 41540, 'important it': 418852, 'clean disinfected': 180503, 'disinfected let': 245832, 'needed disinfecting': 556337, 'disinfecting cleaning': 245839, 'cleaning provided': 181044, 'provided price': 686640, 'price starting': 676617, 'starting hour': 794965, 'maid 75': 508539, '75 book': 22117, 'today 702': 919133, '702 508': 21938, '508 9032': 20136, '9032 lasvegas': 23412, 'alert we understand': 41542, 'we understand how': 973587, 'understand how important': 940643, 'how important it': 408035, 'important it is': 418853, 'it is for': 458955, 'is for everyone': 447882, 'for everyone to': 321247, 'everyone to keep': 287496, 'to keep clean': 908769, 'keep clean disinfected': 471397, 'clean disinfected let': 180504, 'disinfected let help': 245833, 'let help all': 486781, 'help all supply': 389325, 'all supply needed': 44565, 'supply needed disinfecting': 825582, 'needed disinfecting cleaning': 556338, 'disinfecting cleaning provided': 245841, 'cleaning provided price': 181045, 'provided price starting': 686642, 'price starting hour': 676620, 'starting hour maid': 794966, 'hour maid 75': 405756, 'maid 75 book': 508540, '75 book online': 22118, 'book online or': 134580, 'online or call': 608652, 'or call today': 614643, 'call today 702': 156196, 'today 702 508': 919134, '702 508 9032': 21939, '508 9032 lasvegas': 20138, 'out home': 626306, 'home bargain': 400761, 'bargain they': 111071, 'launched 30m': 481962, '30m coronavirus': 17466, 'coronavirus fund': 205977, 'help staff': 390562, 'staff through': 792975, 'shout out home': 766772, 'out home bargain': 626307, 'home bargain they': 400763, 'bargain they ve': 111072, 'they ve launched': 883662, 've launched 30m': 953321, 'launched 30m coronavirus': 481963, '30m coronavirus fund': 17467, 'coronavirus fund to': 205978, 'to help staff': 907634, 'help staff through': 390563, 'staff through the': 792976, 'pandemic and self': 634899, 'and self isolation': 71185, 'fda making': 300886, 'crisis explains': 217363, 'the fda making': 855021, 'fda making it': 300887, 'difficult for the': 242230, 'the to start': 869692, 'start making hand': 794379, 'the crisis explains': 852376, 'braver': 138267, 'helpthemtohelpusall': 391638, 'slot being': 774149, 'the fit': 855380, 'healthy scared': 387758, 'just take': 469937, 'hit because': 398164, 'vulnerable do': 960933, 'you part': 1020296, 'be braver': 113903, 'braver please': 138268, 'please helpthemtohelpusall': 660092, 'so many supermarket': 777711, 'many supermarket delivery': 514758, 'delivery slot being': 234512, 'slot being taken': 774151, 'being taken by': 125897, 'by the fit': 154328, 'the fit and': 855381, 'and healthy scared': 64398, 'healthy scared of': 387759, 'scared of going': 740995, 'of going out': 584193, 'going out just': 355376, 'out just take': 626469, 'just take the': 469945, 'take the hit': 832653, 'the hit because': 857395, 'hit because this': 398165, 'because this is': 119740, 'is so much': 452026, 'so much worse': 777829, 'worse for the': 1010933, 'and vulnerable do': 75051, 'vulnerable do you': 960935, 'do you part': 250655, 'you part and': 1020297, 'part and be': 642228, 'and be braver': 58745, 'be braver please': 113904, 'braver please helpthemtohelpusall': 138269, 'haven lived': 383853, 'lived until': 496178, 'hair shelteringinplace': 374004, 'you haven lived': 1019152, 'haven lived until': 383854, 'lived until you': 496179, 'until you put': 943944, 'you put hand': 1020505, 'in your hair': 431086, 'your hair shelteringinplace': 1024154, 'myallotment': 550679, 'freefood': 332410, 'why panicbuy': 991274, 'panicbuy why': 638844, 'why pay': 991277, 'pay inflated': 644958, 'of difficulty': 582601, 'difficulty you': 242419, 'try growing': 934488, 'growing you': 367259, 'own growyourown': 632033, 'growyourown myallotment': 367501, 'myallotment freefood': 550680, 'why panicbuy why': 991275, 'panicbuy why pay': 638845, 'why pay inflated': 991278, 'pay inflated price': 644959, 'for good and': 321926, 'good and food': 356732, 'and food in': 63056, 'food in time': 314978, 'time of difficulty': 897326, 'of difficulty you': 582604, 'difficulty you could': 242420, 'you could try': 1018103, 'could try growing': 209794, 'try growing you': 934490, 'growing you own': 367261, 'you own growyourown': 1020270, 'own growyourown myallotment': 632034, 'growyourown myallotment freefood': 367502, 'so asymptomatic': 776559, 'asymptomatic with': 97337, 'accident on': 28399, 'death look': 230118, 'how ridiculous': 408598, 'ridiculous you': 721641, 'you sound': 1021310, 'so asymptomatic with': 776561, 'asymptomatic with positive': 97338, 'with positive covid': 1000260, 'covid 19 dy': 212994, 'dy in car': 263734, 'car accident on': 162979, 'accident on the': 28400, 'supermarket is covid': 821079, '19 death look': 6446, 'death look how': 230119, 'look how ridiculous': 502410, 'how ridiculous you': 408600, 'ridiculous you sound': 721642, 'calamity': 155280, 'face calamity': 294346, 'calamity it': 155285, 'with outbreak': 1000034, 'outbreak decimated': 628158, 'decimated health': 230985, 'health system': 386885, 'system plummeting': 831288, 'amp dysfunctional': 53689, 'dysfunctional government': 263932, 'government listen': 360323, 'face calamity it': 294347, 'calamity it deal': 155286, 'it deal with': 457484, 'deal with outbreak': 229564, 'with outbreak decimated': 1000035, 'outbreak decimated health': 628159, 'decimated health system': 230986, 'health system plummeting': 386891, 'system plummeting oil': 831289, 'oil price amp': 597046, 'price amp dysfunctional': 672333, 'amp dysfunctional government': 53690, 'dysfunctional government listen': 263933, 'hey those': 394525, 'those low': 892185, 'carers nurse': 164595, 'nurse sure': 577492, 'crisis eh': 217342, 'hey those low': 394526, 'those low skilled': 892187, 'skilled worker supermarket': 773013, 'staff carers nurse': 792312, 'carers nurse sure': 164597, 'nurse sure are': 577493, 'sure are keeping': 827493, 'are keeping the': 87667, 'country going in': 210692, 'of crisis eh': 582157, 'icantwork': 412624, 'icantgetpaid': 412619, 'is raising': 451210, 'now icantwork': 574967, 'icantwork icantgetpaid': 412625, 'disappointed that is': 244119, 'that is raising': 844642, 'is raising price': 451214, 'raising price right': 696125, 'right now icantwork': 722082, 'now icantwork icantgetpaid': 574968, 'ftc and': 339375, 'fda provided': 300906, 'provided some': 686647, 'the scammer': 866423, 'coronavirus scam the': 206722, 'the ftc and': 855923, 'ftc and fda': 339376, 'and fda provided': 62731, 'fda provided some': 300907, 'provided some tip': 686648, 'keep the scammer': 472068, 'the scammer at': 866425, 'thee': 872323, 'you creator': 1018129, 'creator in': 216241, 'of financial': 583531, 'assistance consumer': 96677, 'consumer able': 195989, 'to contribute': 903434, 'keep creator': 471438, 'creator afloat': 216232, 'afloat during': 34951, 'during get': 262656, 'get thee': 348317, 'thee to': 872326, 'help or': 390196, 'or donate': 615050, 'are you creator': 91779, 'you creator in': 1018130, 'creator in need': 216242, 'need of financial': 555328, 'of financial assistance': 583532, 'financial assistance consumer': 306329, 'assistance consumer able': 96678, 'consumer able to': 195990, 'able to contribute': 24465, 'to contribute to': 903437, 'contribute to keep': 201880, 'to keep creator': 908777, 'keep creator afloat': 471439, 'creator afloat during': 216233, 'afloat during get': 34952, 'during get thee': 262657, 'get thee to': 348318, 'thee to the': 872327, 'the and ask': 848683, 'ask for help': 95525, 'for help or': 322184, 'help or donate': 390199, 'or donate to': 615052, 'patient from': 644173, 'from france': 335553, 'france and': 330972, 'italy suffering': 462929, 'the respiratory': 865608, 'respiratory disease': 715231, 'disease caused': 245100, 'treated at': 930935, 'patient from france': 644174, 'from france and': 335554, 'france and italy': 330974, 'and italy suffering': 65623, 'italy suffering from': 462930, 'from the respiratory': 337855, 'the respiratory disease': 865609, 'respiratory disease caused': 715232, 'disease caused by': 245101, 'by the are': 154262, 'the are now': 848865, 'now being treated': 574243, 'being treated at': 125979, 'treated at hospital': 930936, 'at hospital in': 99192, 'hospital in germany': 404468, 'survive for': 829170, 'surface but': 827989, 'place everyone': 657428, 'go is': 353773, 'person coughing': 652380, 'or an': 614310, 'an asymptomatic': 55457, 'asymptomatic person': 97321, 'person touching': 652669, 'touching stuff': 926716, 'stuff could': 815045, 'could spread': 209700, 'spread contamination': 790482, 'contamination although': 200697, 'it mostly': 459688, 'mostly spread': 543013, 'through direct': 894423, 'an infected': 56301, 'we know covid': 972150, 'can survive for': 159874, 'survive for day': 829171, 'for day on': 320581, 'day on surface': 228147, 'on surface but': 603845, 'surface but the': 827990, 'but the one': 147374, 'the one place': 862215, 'one place everyone': 606877, 'place everyone need': 657429, 'to go is': 906814, 'go is the': 353775, 'the supermarket one': 868728, 'supermarket one person': 821755, 'one person coughing': 606858, 'person coughing or': 652381, 'coughing or an': 208729, 'or an asymptomatic': 614314, 'an asymptomatic person': 55460, 'asymptomatic person touching': 97322, 'person touching stuff': 652670, 'touching stuff could': 926717, 'stuff could spread': 815046, 'could spread contamination': 209701, 'spread contamination although': 790483, 'contamination although it': 200698, 'although it mostly': 49333, 'it mostly spread': 459690, 'mostly spread through': 543014, 'spread through direct': 790843, 'through direct contact': 894424, 'contact with an': 200267, 'with an infected': 997218, 'an infected person': 56302, 'txu': 937476, 'paused': 644626, 'disconnect': 244408, 'txu energy': 937477, 'energy ha': 276471, 'ha paused': 371478, 'paused all': 644627, 'all disconnect': 42576, 'disconnect and': 244409, 'txu energy ha': 937478, 'energy ha paused': 276472, 'ha paused all': 371479, 'paused all disconnect': 644628, 'all disconnect and': 42577, 'disconnect and waiving': 244411, 'and waiving late': 75132, 'be really': 116708, 'really dangerous': 702096, 'dangerous for': 225739, 'him he': 396613, 'he staying': 385469, 'work she': 1005710, 'so think': 778491, 'feeling bit': 302972, 'bit sick': 131697, 'and decide': 61007, 'out anyway': 625719, 'dad ha copd': 224339, 'copd and covid': 203292, 'could be really': 208913, 'be really dangerous': 116710, 'really dangerous for': 702097, 'dangerous for him': 225740, 'for him he': 322284, 'him he staying': 396618, 'he staying home': 385470, 'home but my': 400839, 'but my mom': 146435, 'my mom ha': 549272, 'mom ha to': 535740, 'ha to keep': 372306, 'to work she': 918779, 'work she work': 1005713, 'she work in': 756477, 'supermarket and could': 818959, 'and could bring': 60613, 'could bring the': 208973, 'bring the virus': 140088, 'the virus home': 870843, 'virus home so': 958298, 'home so think': 402088, 'so think about': 778492, 'think about that': 885102, 'about that the': 26324, 'that the next': 846781, 'you are feeling': 1017122, 'are feeling bit': 86516, 'feeling bit sick': 302973, 'bit sick and': 131698, 'sick and decide': 768363, 'and decide to': 61008, 'go out anyway': 353936, 'rieux': 721683, 'nutrisciences': 577705, 'at rieux': 100319, 'rieux nutrisciences': 721684, 'nutrisciences our': 577706, 'our mission': 623927, 'mission is': 534363, 'health by': 386210, 'by preventing': 153648, 'preventing health': 671810, 'risk related': 723839, 'more generally': 539332, 'generally to': 345544, 'of everyday': 583245, 'everyday consumer': 286546, 'at rieux nutrisciences': 100320, 'rieux nutrisciences our': 721685, 'nutrisciences our mission': 577707, 'our mission is': 623930, 'mission is to': 534364, 'protect consumer health': 684806, 'consumer health by': 197720, 'health by preventing': 386211, 'by preventing health': 153649, 'preventing health risk': 671811, 'health risk related': 386810, 'risk related to': 723840, 'related to food': 708603, 'to food and': 906075, 'food and more': 313286, 'and more generally': 67172, 'more generally to': 539333, 'generally to the': 345546, 'to the use': 917164, 'use of everyday': 949408, 'of everyday consumer': 583247, 'everyday consumer product': 286547, 'consumer product more': 198470, 'product more information': 681417, 'adel': 32129, 'karina': 470923, 'isliationhelp': 454398, 'newsong': 561076, 'adel and': 32130, 'and karina': 65740, 'karina xx': 470926, 'xx isliationhelp': 1013918, 'isliationhelp isolation': 454399, 'isolation selfisolation': 455414, 'selfisolation lockdown': 748463, 'quarantine song': 692554, 'song newsong': 785508, 'newsong frontline': 561077, 'hospital police': 404563, 'supermarket volunteer': 823668, 'adel and karina': 32131, 'and karina xx': 65741, 'karina xx isliationhelp': 470927, 'xx isliationhelp isolation': 1013919, 'isliationhelp isolation selfisolation': 454400, 'isolation selfisolation lockdown': 455416, 'selfisolation lockdown quarantine': 748464, 'lockdown quarantine song': 499826, 'quarantine song newsong': 692555, 'song newsong frontline': 785509, 'newsong frontline nh': 561078, 'frontline nh hospital': 338793, 'nh hospital police': 561981, 'hospital police supermarket': 404565, 'police supermarket volunteer': 663224, 'albuterol': 40869, 'bet on': 128089, 'when albuterol': 983119, 'albuterol inhaler': 40870, 'inhaler price': 438441, 'be increased': 115457, 'bet on when': 128093, 'on when albuterol': 605262, 'when albuterol inhaler': 983120, 'albuterol inhaler price': 40871, 'inhaler price will': 438442, 'will be increased': 992513, 'bolivia': 134110, 'whoever win': 990120, 'upcoming election': 946786, 'in bolivia': 420894, 'bolivia will': 134111, 'have dire': 380283, 'dire economic': 243249, 'business badly': 143414, 'badly damaged': 108146, 'damaged by': 225251, 'whoever win the': 990121, 'win the upcoming': 995589, 'the upcoming election': 870492, 'upcoming election in': 946788, 'election in bolivia': 271042, 'in bolivia will': 420895, 'bolivia will likely': 134112, 'likely have dire': 492012, 'have dire economic': 380284, 'dire economic situation': 243251, 'economic situation to': 267294, 'situation to face': 772535, 'to face with': 905580, 'face with low': 294861, 'with low natural': 999335, 'price and small': 672542, 'small business badly': 774840, 'business badly damaged': 143415, 'badly damaged by': 108147, 'damaged by the': 225252, 'vegpower': 954238, 'vegpower esp': 954239, 'esp the': 280404, 'on halal': 601221, 'meat due': 525546, 'vegpower esp the': 954240, 'esp the asian': 280405, 'the asian shop': 848965, 'asian shop are': 95335, 'shop are raising': 759910, 'price on halal': 675680, 'on halal meat': 601222, 'halal meat due': 374110, 'meat due to': 525547, 'unsustainable': 943604, 'get six': 348012, 'six full': 772646, 'full lorry': 340678, 'lorry of': 503350, 'stock every': 802090, 'produce it': 680331, 'trading 50': 928827, '50 above': 19600, 'above xmas': 27116, 'xmas shopping': 1013888, 'shopping level': 763157, 'is unsustainable': 453556, 'unsustainable and': 943605, 'and completely': 60232, 'local supermarket get': 498529, 'supermarket get six': 820490, 'get six full': 348013, 'six full lorry': 772647, 'full lorry of': 340679, 'lorry of stock': 503351, 'of stock every': 590161, 'stock every day': 802091, 'day and still': 227282, 'and still the': 72391, 'still the shelf': 801290, 'empty of fresh': 274982, 'of fresh produce': 583947, 'fresh produce it': 333055, 'produce it ha': 680332, 'ha been trading': 369964, 'been trading 50': 122266, 'trading 50 above': 928828, '50 above xmas': 19602, 'above xmas shopping': 27117, 'xmas shopping level': 1013889, 'shopping level for': 763158, 'the last 10': 858986, '10 day this': 1391, 'day this panic': 228535, 'panic shopping is': 638576, 'shopping is unsustainable': 763086, 'is unsustainable and': 453557, 'unsustainable and completely': 943606, 'and completely mad': 60236, 'thankfully stockpiling': 841961, 'stockpiling appears': 803911, '23 per': 15431, 'cent leaving': 169084, 'monday down': 536273, 'down 12': 256372, '12 point': 2938, 'point on': 662573, 'the monday': 860798, 'thankfully stockpiling appears': 841962, 'stockpiling appears to': 803912, 'to be at': 901118, 'be at an': 113729, 'at an end': 97983, 'an end with': 55737, 'end with 23': 276079, 'with 23 per': 996987, '23 per cent': 15432, 'per cent leaving': 650754, 'cent leaving their': 169085, 'leaving their home': 485161, 'home to visit': 402349, 'visit supermarket on': 959371, 'on monday down': 602164, 'monday down 12': 536274, 'down 12 point': 256373, '12 point on': 2939, 'point on the': 662576, 'on the monday': 604238, 'the monday before': 860800, 'curbedny': 220603, 'shape via': 754857, 'via realestate': 956199, 'realestate nyc': 701503, 'nyc curbedny': 577977, 'take shape via': 832565, 'shape via realestate': 754858, 'via realestate nyc': 956202, 'realestate nyc curbedny': 701504, 'stranger at': 812457, 'really scaring': 702550, 'me waiting': 523895, 'my report': 549921, 'report me': 712085, 'me stay': 523541, 'positive stranger': 665444, 'stranger throw': 812495, 'throw shampoo': 895045, 'shampoo bottle': 754772, 'stranger at the': 812458, 'store this covid': 810697, '19 is really': 8035, 'is really scaring': 451314, 'really scaring the': 702551, 'out of me': 626785, 'of me waiting': 586350, 'me waiting for': 523896, 'for my report': 323745, 'my report me': 549923, 'report me stay': 712086, 'me stay positive': 523542, 'stay positive stranger': 797177, 'positive stranger throw': 665445, 'stranger throw shampoo': 812497, 'throw shampoo bottle': 895046, 'shampoo bottle at': 754773, 'bottle at me': 136190, 'editing': 268597, 'editing video': 268600, 'video now': 956819, 'up soon': 946047, 'soon about': 785612, 'experience of': 291433, 'being cashier': 124930, 'panic related': 638475, 'editing video now': 268602, 'video now will': 956820, 'now will go': 576427, 'go up soon': 354439, 'up soon about': 946048, 'soon about my': 785613, 'about my experience': 25763, 'my experience of': 548129, 'experience of being': 291434, 'of being cashier': 580636, 'being cashier at': 124931, 'all the shopping': 44908, 'the shopping panic': 867071, 'shopping panic related': 763590, 'panic related to': 638476, 'hoppon': 403984, 'veetilirimyre': 953703, 'awareness new': 105706, 'video uploaded': 956943, 'uploaded staysafestayhome': 947599, 'staysafestayhome get': 798996, 'item delivered': 463197, 'doorstep only': 255866, 'on hoppon': 601365, 'hoppon corona': 403985, 'corona veetilirimyre': 204269, 'veetilirimyre who': 953704, 'who coronaupdatesindia': 988493, '19 awareness new': 5282, 'awareness new video': 105707, 'new video uploaded': 559832, 'video uploaded staysafestayhome': 956944, 'uploaded staysafestayhome get': 947600, 'staysafestayhome get your': 798997, 'get your supermarket': 348739, 'supermarket item delivered': 821190, 'item delivered to': 463198, 'your doorstep only': 1023590, 'doorstep only on': 255868, 'only on hoppon': 610856, 'on hoppon corona': 601366, 'hoppon corona veetilirimyre': 403986, 'corona veetilirimyre who': 204270, 'veetilirimyre who coronaupdatesindia': 953705, 'tailor': 831819, 'online instead': 608415, 'visiting brick': 959514, 'the storm': 868156, 'storm we': 811857, 'easy commerce': 265674, 'commerce solution': 188636, 'solution tailor': 782082, 'tailor made': 831820, 'for specialty': 325814, 'specialty running': 788168, 'running store': 728081, 'store ecommerce': 807432, 'ecommerce shoplocal': 266866, 'shopping online instead': 763448, 'online instead of': 608416, 'instead of visiting': 440335, 'of visiting brick': 592836, 'visiting brick and': 959515, 'mortar store these': 541843, 'these day is': 879879, 'day is your': 227844, 'store ready to': 809751, 'ready to weather': 700987, 'weather the storm': 974903, 'the storm we': 868163, 'storm we re': 811859, 'we re an': 972824, 're an easy': 698285, 'an easy commerce': 55561, 'easy commerce solution': 265675, 'commerce solution tailor': 188637, 'solution tailor made': 782083, 'tailor made for': 831821, 'made for specialty': 507746, 'for specialty running': 325815, 'specialty running store': 788169, 'running store ecommerce': 728082, 'store ecommerce shoplocal': 807433, 'people helping': 648234, 'toiletry selfish': 923439, 'through this by': 894807, 'this by people': 886659, 'by people helping': 153551, 'people helping people': 648239, 'helping people and': 391432, 'people and not': 646875, 'and not stock': 67774, 'not stock piling': 571736, 'and toiletry selfish': 74252, 'toiletry selfish prick': 923440, 'implementation': 418446, 'india if': 434456, 'speak for': 787686, 'for measure': 323357, 'measure watch': 525419, 'watch pm': 968510, 'pm speech': 661991, 'speech currently': 788392, 'currently ongoing': 221616, 'ongoing implementation': 607646, 'implementation of': 418447, 'of learning': 585763, 'learning in': 484213, 'school ambassador': 741678, 'ambassador to': 51291, 'encourage social': 275626, 'distancing enough': 247124, 'india if you': 434458, 'what to speak': 982464, 'to speak for': 914961, 'speak for measure': 787688, 'for measure watch': 323358, 'measure watch pm': 525420, 'watch pm speech': 968511, 'pm speech currently': 661992, 'speech currently ongoing': 788393, 'currently ongoing implementation': 221617, 'ongoing implementation of': 607647, 'implementation of learning': 418448, 'of learning in': 585764, 'learning in the': 484215, 'in the school': 429529, 'the school ambassador': 866487, 'school ambassador to': 741679, 'ambassador to encourage': 51292, 'to encourage social': 905065, 'encourage social distancing': 275627, 'social distancing enough': 779599, 'distancing enough food': 247125, 'mbbs': 522054, 'rmc': 724292, 'msc': 544503, 'lsh': 506356, 'karachi': 470856, 'llb': 497108, 'mbbs rmc': 522055, 'rmc pakistan': 724293, 'pakistan msc': 634474, 'msc public': 544504, 'health lsh': 386621, 'lsh uk': 506357, 'uk ex': 938339, 'ex global': 288637, 'global coordinator': 351817, 'coordinator who': 203244, 'who ex': 988711, 'ex regional': 288645, 'regional adviser': 707486, 'adviser who': 33673, 'who founder': 988755, 'founder executive': 330540, 'executive coordinator': 289876, 'coordinator the': 203242, 'the network': 861460, 'network for': 557718, 'protection pakistan': 685560, 'pakistan ba': 634426, 'ba national': 106533, 'national college': 552446, 'college karachi': 186620, 'karachi llb': 470861, 'llb sindh': 497109, 'sindh muslim': 771075, 'muslim law': 546429, 'law college': 482248, 'mbbs rmc pakistan': 522056, 'rmc pakistan msc': 724294, 'pakistan msc public': 634475, 'msc public health': 544505, 'public health lsh': 688074, 'health lsh uk': 386622, 'lsh uk ex': 506358, 'uk ex global': 938340, 'ex global coordinator': 288638, 'global coordinator who': 351818, 'coordinator who ex': 203245, 'who ex regional': 988712, 'ex regional adviser': 288646, 'regional adviser who': 707487, 'adviser who founder': 33674, 'who founder executive': 988756, 'founder executive coordinator': 330541, 'executive coordinator the': 289877, 'coordinator the network': 203243, 'the network for': 861461, 'network for consumer': 557719, 'for consumer protection': 320282, 'consumer protection pakistan': 198551, 'protection pakistan ba': 685561, 'pakistan ba national': 634427, 'ba national college': 106534, 'national college karachi': 552447, 'college karachi llb': 186621, 'karachi llb sindh': 470862, 'llb sindh muslim': 497110, 'sindh muslim law': 771076, 'muslim law college': 546430, 'india national': 434529, 'national task': 552629, 'force for': 328388, '19 recommends': 10006, 'recommends use': 704853, 'of hydroxychloroquine': 584936, 'hydroxychloroquine for': 412000, 'risk case': 723446, 'high probability': 395299, 'probability that': 679189, 'some miserable': 783299, 'miserable business': 533981, 'business person': 144212, 'person will': 652741, 'advantage and': 32957, 'india national task': 434530, 'national task force': 552630, 'task force for': 834685, 'force for covid': 328390, 'covid 19 recommends': 213669, '19 recommends use': 10008, 'recommends use of': 704854, 'use of hydroxychloroquine': 949415, 'of hydroxychloroquine for': 584937, 'hydroxychloroquine for high': 412001, 'for high risk': 322260, 'high risk case': 395350, 'risk case there': 723447, 'there is high': 878572, 'is high probability': 448449, 'high probability that': 395300, 'probability that some': 679190, 'that some miserable': 846389, 'some miserable business': 783300, 'miserable business person': 533982, 'business person will': 144214, 'person will start': 652742, 'will start taking': 994945, 'start taking advantage': 794534, 'taking advantage and': 833252, 'advantage and keep': 32962, 'and keep it': 65765, 'keep it in': 471613, 'in stock to': 428339, 'stock to sell': 803000, 'to sell at': 914140, 'sell at higher': 748634, 'burton': 142968, 'burton and': 142969, 'discus where': 244945, 'outbreak present': 628542, 'present not': 670612, 'only health': 610590, 'economic one': 267175, 'one due': 606217, 'burton and discus': 142970, 'and discus where': 61424, 'discus where the': 244946, 'where the outbreak': 985240, 'the outbreak present': 862679, 'outbreak present not': 628543, 'present not only': 670613, 'not only health': 570801, 'only health crisis': 610591, 'health crisis but': 386323, 'crisis but an': 217144, 'but an economic': 145180, 'an economic one': 55584, 'economic one due': 267176, 'one due to': 606218, 'to falling global': 905649, 'falling global oil': 297278, 'restrain': 717078, 'utilise': 951242, 'coincome': 185680, 'affiliated': 34623, 'ceo word': 169892, 'word there': 1004591, 'are continued': 85543, 'continued regulation': 201335, 'and request': 70285, 'self restrain': 747891, 'restrain to': 717081, 'prevent any': 671578, 'any infection': 79358, 'infection of': 436800, 'new type': 559793, 'type covid': 937516, 'can utilise': 160111, 'utilise coincome': 951243, 'coincome to': 185681, 'purchase mask': 689546, 'mask sanitisers': 519209, 'sanitisers consumer': 734077, 'daily necessity': 224708, 'necessity via': 554288, 'our affiliated': 622036, 'affiliated shop': 34626, 'ceo word there': 169893, 'word there are': 1004592, 'there are continued': 878084, 'are continued regulation': 85544, 'continued regulation and': 201336, 'regulation and request': 708055, 'and request for': 70286, 'request for self': 713163, 'for self restrain': 325425, 'self restrain to': 747892, 'restrain to prevent': 717082, 'to prevent any': 912044, 'prevent any infection': 671579, 'any infection of': 79359, 'infection of the': 436802, 'the new type': 861571, 'new type covid': 559794, 'type covid 19': 937517, '19 around the': 5217, 'world you can': 1010214, 'you can utilise': 1017822, 'can utilise coincome': 160112, 'utilise coincome to': 951244, 'coincome to purchase': 185682, 'to purchase mask': 912542, 'purchase mask sanitisers': 689548, 'mask sanitisers consumer': 519211, 'sanitisers consumer good': 734078, 'good and daily': 356729, 'and daily necessity': 60912, 'daily necessity via': 224709, 'necessity via our': 554289, 'via our affiliated': 956146, 'our affiliated shop': 622037, 'ftw': 339496, 'physicaldistancing ftw': 655483, 'ftw harris': 339497, 'found the toilet': 330417, 'paper toiletpaper physicaldistancing': 640952, 'toiletpaper physicaldistancing ftw': 922346, 'physicaldistancing ftw harris': 655484, 'ftw harris teeter': 339498, 'vimtotweets': 957410, 'american queueing': 52153, 'for gun': 322088, 'gun the': 368746, 'dutch for': 263503, 'cannabis the': 161451, 'british for': 140527, 'toiletpaper what': 922828, 'saudi queueing': 737293, 'for vimtotweets': 327561, 'vimtotweets aramco': 957411, 'coronacrisis the american': 204811, 'the american queueing': 848637, 'american queueing for': 52154, 'queueing for gun': 694171, 'for gun the': 322090, 'gun the dutch': 368747, 'the dutch for': 853795, 'dutch for cannabis': 263504, 'for cannabis the': 319918, 'cannabis the british': 161452, 'the british for': 850021, 'british for toiletpaper': 140528, 'for toiletpaper what': 327266, 'toiletpaper what the': 922829, 'what the saudi': 982363, 'the saudi queueing': 866380, 'saudi queueing for': 737294, 'queueing for vimtotweets': 694173, 'for vimtotweets aramco': 327562, 'luxembourg': 506885, 'hand down': 374901, 'down winner': 257479, 'winner best': 996018, 'best country': 127649, 'country effort': 210605, 'effort so': 269587, 'far coronavirus': 298748, 'day thank': 228462, 'you luxembourg': 1019741, 'luxembourg for': 506888, 'an inspiration': 56368, 'inspiration light': 439802, 'in darkness': 421991, 'darkness luxembourg': 226004, 'luxembourg started': 506896, 'started state': 794840, 'run grocery': 727654, 'feed sick': 302365, 'sick elderly': 768427, 'pandemic time': 636767, 'hand down winner': 374902, 'down winner best': 257480, 'winner best country': 996019, 'best country effort': 127650, 'country effort so': 210606, 'effort so far': 269588, 'so far coronavirus': 777021, 'far coronavirus covid': 298749, 'story of day': 812058, 'of day thank': 582383, 'day thank you': 228463, 'thank you luxembourg': 841769, 'you luxembourg for': 1019742, 'luxembourg for being': 506889, 'for being an': 319624, 'being an inspiration': 124845, 'an inspiration light': 56369, 'inspiration light in': 439803, 'light in darkness': 489531, 'in darkness luxembourg': 421992, 'darkness luxembourg started': 226006, 'luxembourg started state': 506897, 'started state run': 794841, 'state run grocery': 795911, 'run grocery store': 727656, 'to help feed': 907512, 'help feed sick': 389695, 'feed sick elderly': 302366, 'sick elderly vulnerable': 768430, 'vulnerable during pandemic': 960940, 'during pandemic time': 262901, 'day there': 228507, 'this day there': 887171, 'day there now': 228512, 'poorcustomerservice': 664338, 'immoral': 417285, 'when more': 983737, 'ever people': 285445, 'need financial': 554773, 'financial support': 306610, 'support common': 826425, 'sense and': 750486, 'understanding are': 940861, 'what selfish': 982145, 'selfish thing': 748293, 'do selfish': 250066, 'selfish three': 748295, 'three corona': 893896, 'corona poorcustomerservice': 204111, 'poorcustomerservice misguided': 664339, 'misguided immoral': 534036, 'time when more': 898295, 'when more than': 983738, 'than ever people': 840600, 'ever people need': 285446, 'people need financial': 648820, 'need financial support': 554775, 'financial support common': 306612, 'support common sense': 826426, 'common sense and': 189453, 'sense and understanding': 750491, 'and understanding are': 74641, 'understanding are putting': 940862, 'are putting up': 89366, 'putting up their': 691279, 'their price what': 874437, 'price what selfish': 677472, 'what selfish thing': 982146, 'selfish thing to': 748294, 'to do selfish': 904551, 'do selfish three': 250067, 'selfish three corona': 748296, 'three corona poorcustomerservice': 893897, 'corona poorcustomerservice misguided': 204112, 'poorcustomerservice misguided immoral': 664340, 'aryeh': 94703, 'boim': 134062, 'osher': 619714, 'caters': 167275, 'orthodox': 619683, 'jewish': 465403, 'aryeh boim': 94704, 'boim founder': 134063, 'of israeli': 585352, 'israeli heavy': 455617, 'heavy discount': 388632, 'chain osher': 170979, 'osher ad': 619715, 'ad which': 31191, 'which caters': 985742, 'caters to': 167276, 'the ultra': 870321, 'ultra orthodox': 939174, 'orthodox jewish': 619684, 'jewish community': 465404, 'community belief': 189755, 'belief the': 126222, 'beyond medical': 129201, 'aryeh boim founder': 94705, 'boim founder of': 134064, 'founder of israeli': 330554, 'of israeli heavy': 585353, 'israeli heavy discount': 455618, 'heavy discount supermarket': 388634, 'discount supermarket chain': 244545, 'supermarket chain osher': 819627, 'chain osher ad': 170980, 'osher ad which': 619716, 'ad which caters': 31192, 'which caters to': 985743, 'caters to the': 167277, 'to the ultra': 917151, 'the ultra orthodox': 870322, 'ultra orthodox jewish': 939175, 'orthodox jewish community': 619685, 'jewish community belief': 465405, 'community belief the': 189756, 'belief the danger': 126223, '19 are beyond': 5193, 'are beyond medical': 84967, 'cram': 214826, 'cain': 155193, 'all cram': 42488, 'cram into': 214829, 'and cain': 59398, 'cain all': 155194, 'roll cunt': 725262, 'cunt coronacrisisuk': 220360, 'coronacrisisuk really': 204900, 'really hope': 702307, 'let all cram': 486552, 'all cram into': 42489, 'cram into the': 214831, 'supermarket and cain': 818951, 'and cain all': 59399, 'cain all the': 155195, 'food and bog': 313188, 'bog roll cunt': 133950, 'roll cunt coronacrisisuk': 725263, 'cunt coronacrisisuk really': 220361, 'coronacrisisuk really hope': 204901, 'really hope the': 702312, 'hope the people': 403683, 'front line are': 338559, 'line are getting': 492966, 'are getting what': 86835, 'getting what they': 349442, 'protection watchdog': 685680, 'watchdog new': 968631, 'new test': 559738, 'test to': 839209, 'uncover covid': 939903, '19 immunity': 7684, 'immunity to': 417438, 'out next': 626635, 'consumer protection watchdog': 198578, 'protection watchdog new': 685681, 'watchdog new test': 968632, 'new test to': 559739, 'test to uncover': 839212, 'to uncover covid': 917890, 'uncover covid 19': 939904, 'covid 19 immunity': 213248, '19 immunity to': 7687, 'immunity to come': 417439, 'come out next': 187469, 'out next week': 626636, 'for lockdownhouseparty': 323069, 'number of sick': 576992, 'home and find': 400641, 'and find someone': 62893, 'find someone to': 307238, 'someone to shop': 784708, 'shop for lockdownhouseparty': 760191, 'for lockdownhouseparty chinaliedandpeopledied': 323070, 'new what': 559874, 'truck we': 932876, 'the domestic': 853527, 'chain problem': 171010, 'caused special': 167962, 'special guest': 787942, 'guest join': 368164, 'out now in': 626658, 'now in an': 574992, 'in an all': 420276, 'an all new': 55238, 'all new what': 43628, 'new what the': 559875, 'what the truck': 982371, 'the truck we': 870039, 'truck we talk': 932878, 'we talk about': 973492, 'talk about the': 833762, 'about the domestic': 26379, 'the domestic supply': 853532, 'supply chain problem': 825011, 'chain problem that': 171011, 'problem that the': 679705, 'that the national': 846778, 'the national emergency': 861292, 'national emergency ha': 552490, 'emergency ha caused': 272736, 'ha caused special': 370102, 'caused special guest': 167963, 'special guest join': 787943, 'guest join me': 368165, 'join me for': 466774, 'me for supply': 522761, 'for supply chain': 326040, 'beginning last': 123628, 'month the': 538039, 'the triggered': 869984, 'triggered panic': 931923, 'area neighborhood': 92120, 'neighborhood say': 557149, 'can replenish': 159443, 'replenish their': 711656, 'beginning last month': 123629, 'last month the': 480344, 'month the triggered': 538047, 'the triggered panic': 869986, 'triggered panic shopping': 931925, 'panic shopping and': 638562, 'shopping and now': 762004, 'bay area neighborhood': 112916, 'area neighborhood say': 92121, 'neighborhood say they': 557150, 'say they can': 739336, 'they can replenish': 881667, 'can replenish their': 159444, 'replenish their store': 711657, 'store with basic': 811366, 'with basic food': 997375, 'basic food in': 111888, 'food in high': 314943, 'chcnewsflash': 174063, 'chcnewsflash with': 174064, 'pandemic creating': 635266, 'creating huge': 216013, 'huge spike': 410204, 'item walmart': 463793, 'walmart ha': 965343, 'halted the': 374495, 'potential sale': 667131, 'of majority': 586117, 'majority stake': 509579, 'stake in': 793309, 'chain asda': 170527, 'asda to': 94992, 'managing it': 512878, 'it day': 457475, 'day business': 227401, 'chcnewsflash with the': 174065, 'the pandemic creating': 862940, 'pandemic creating huge': 635267, 'creating huge spike': 216015, 'huge spike in': 410205, 'essential item walmart': 281234, 'item walmart ha': 463794, 'walmart ha halted': 965345, 'ha halted the': 370803, 'halted the potential': 374498, 'the potential sale': 864126, 'potential sale of': 667132, 'sale of majority': 732398, 'of majority stake': 586119, 'majority stake in': 509580, 'stake in uk': 793313, 'uk supermarket chain': 938758, 'supermarket chain asda': 819595, 'chain asda to': 170530, 'asda to focus': 94994, 'focus on managing': 311884, 'on managing it': 601985, 'managing it day': 512879, 'it day to': 457479, 'to day business': 903952, 'pandemic locust': 635909, 'locust flooding': 500565, 'flooding and': 310744, 'and earthquake': 61848, 'earthquake know': 265040, 'all still': 44461, 'the pandemic locust': 863017, 'pandemic locust flooding': 635910, 'locust flooding and': 500566, 'flooding and earthquake': 310745, 'and earthquake know': 61849, 'earthquake know we': 265041, 'know we all': 476926, 'we all still': 970365, 'all still got': 44463, 'still got that': 800606, 'got that grocery': 358892, 'store we still': 811181, 'we still won': 973413, 'still won go': 801418, 'won go to': 1003826, 'sad irony': 729182, 'irony if': 444961, 'if million': 414419, 'were making': 979871, 'making more': 511234, 'more trip': 540830, 'of anti': 580235, 'gouging law': 359376, 'law or': 482364, 'or sentiment': 617011, 'would be sad': 1011642, 'be sad irony': 116936, 'sad irony if': 729183, 'irony if million': 444962, 'if million of': 414420, 'of american were': 580080, 'american were making': 52298, 'were making more': 979872, 'making more trip': 511236, 'more trip to': 540831, 'because of anti': 119310, 'of anti price': 580236, 'price gouging law': 674294, 'gouging law or': 359377, 'law or sentiment': 482365, 'mentally': 528722, 'of have': 584462, 'very complex': 955067, 'complex medical': 192407, 'problem we': 679738, 'need freezer': 554884, 'freezer just': 332618, 'medical related': 526359, 'related item': 708468, 'item ocd': 463484, 'ocd greatly': 579095, 'greatly impact': 363317, 'issue some': 455926, 'of cannot': 581110, 'not physically': 571023, 'physically or': 655520, 'or mentally': 616125, 'mentally well': 528734, 'well enough': 978224, 'enough yet': 277783, 'some of have': 783396, 'of have very': 584475, 'have very complex': 383498, 'very complex medical': 955068, 'complex medical problem': 192408, 'medical problem we': 526314, 'problem we need': 679741, 'we need freezer': 972486, 'need freezer just': 554885, 'freezer just for': 332619, 'just for medical': 468753, 'for medical related': 323383, 'medical related item': 526360, 'related item ocd': 708471, 'item ocd greatly': 463485, 'ocd greatly impact': 579096, 'greatly impact on': 363320, 'impact on this': 417896, 'on this issue': 604613, 'this issue some': 888511, 'issue some of': 455927, 'some of cannot': 783392, 'of cannot go': 581111, 'to supermarket we': 915858, 'are not physically': 88436, 'not physically or': 571024, 'physically or mentally': 655521, 'or mentally well': 616126, 'mentally well enough': 528735, 'well enough yet': 978226, 'enough yet we': 277784, 'yet we cannot': 1016314, 'cannot get online': 161899, 'stagflation': 793238, 'is therefore': 453041, 'therefore massive': 879449, 'massive injection': 520048, 'injection of': 438703, 'liquidity coupled': 494129, 'with likely': 999222, 'likely lasting': 492043, 'lasting damage': 480761, 'confidence can': 193838, 'about stagflation': 26243, 'this is therefore': 888427, 'is therefore massive': 453044, 'therefore massive injection': 879450, 'massive injection of': 520049, 'injection of liquidity': 438705, 'of liquidity coupled': 585878, 'liquidity coupled with': 494130, 'coupled with likely': 211734, 'with likely lasting': 999223, 'likely lasting damage': 492044, 'lasting damage to': 480762, 'damage to consumer': 225233, 'consumer confidence can': 196887, 'confidence can anyone': 193839, 'can anyone talk': 157517, 'anyone talk about': 80547, 'talk about stagflation': 833757, 'mayo': 521922, 'dressing': 258708, 'minute this': 533863, 'many question': 514610, 'apparently hoarding': 81948, 'hoarding mayo': 399423, 'mayo salad': 521925, 'salad dressing': 731916, 'dressing canned': 258709, 'good basically': 356812, 'basically anything': 112110, 'anything paper': 80857, 'guy eating': 368988, 'for few minute': 321456, 'few minute this': 303917, 'minute this evening': 533864, 'this evening and': 887430, 'evening and have': 284847, 'and have so': 64275, 'have so many': 382599, 'so many question': 777695, 'many question about': 514611, 'about the product': 26492, 'the product you': 864603, 'product you all': 681880, 'all are apparently': 42038, 'are apparently hoarding': 84592, 'apparently hoarding mayo': 81949, 'hoarding mayo salad': 399424, 'mayo salad dressing': 521926, 'salad dressing canned': 731917, 'dressing canned good': 258710, 'canned good basically': 161533, 'good basically anything': 356813, 'basically anything paper': 112111, 'anything paper what': 80858, 'paper what the': 641079, 'what the heck': 982324, 'heck are you': 388695, 'you guy eating': 1018959, 'otipy': 621895, 'otipy is': 621896, 'is live': 449405, 'live across': 495701, 'across 40': 29218, '40 society': 18662, 'gurgaon and': 368820, 'already serving': 47646, 'serving fresh': 753180, 'fruit directly': 339086, 'from farm': 335410, 'farm your': 299218, 'your society': 1025860, 'society can': 781171, 'next partner': 561499, 'partner visit': 642890, 'visit 19': 959167, 'otipy is live': 621897, 'is live across': 449406, 'live across 40': 495702, 'across 40 society': 29219, '40 society in': 18663, 'society in gurgaon': 781245, 'in gurgaon and': 423485, 'gurgaon and already': 368821, 'and already serving': 57937, 'already serving fresh': 47647, 'serving fresh vegetable': 753181, 'fresh vegetable and': 333098, 'and fruit directly': 63370, 'fruit directly from': 339087, 'directly from farm': 243548, 'from farm your': 335413, 'farm your society': 299219, 'your society can': 1025861, 'society can be': 781172, 'be our next': 116277, 'our next partner': 624060, 'next partner visit': 561500, 'partner visit 19': 642891, 'the spent': 867569, 'spent trillion': 789180, 'in developing': 422237, 'developing it': 239786, 'it military': 459623, 'military for': 531465, 'defense among': 232129, 'among each': 53000, 'little did': 495314, 'did we': 240900, 'hard just': 377959, 'enough amp': 277317, 'the spent trillion': 867570, 'spent trillion in': 789181, 'trillion in developing': 931987, 'in developing it': 422239, 'developing it military': 239787, 'it military for': 459624, 'military for defense': 531466, 'for defense among': 320615, 'defense among each': 232130, 'among each other': 53001, 'other little did': 620479, 'little did we': 495315, 'did we know': 240904, 'we know we': 972163, 'know we were': 476934, 'be hit hard': 115268, 'hit hard just': 398252, 'hard just because': 377960, 'just because we': 468294, 'because we don': 119800, 'have enough amp': 380437, 'ipas': 444542, 'delaware is': 232654, 'leader of': 483499, 'the craft': 852267, 'beer movement': 122487, 'movement now': 543893, 'is trading': 453323, 'trading ipas': 928884, 'ipas for': 444543, 'hospital on': 404529, 'delaware is one': 232656, 'of the leader': 591180, 'the leader of': 859224, 'leader of the': 483502, 'of the craft': 590906, 'the craft beer': 852268, 'craft beer movement': 214762, 'beer movement now': 122488, 'movement now the': 543894, 'now the company': 576034, 'company is trading': 190814, 'is trading ipas': 453325, 'trading ipas for': 928885, 'ipas for hand': 444544, 'which is being': 985987, 'is being sent': 446112, 'sent to hospital': 750842, 'to hospital on': 907975, 'hospital on the': 404531, 'ksh': 477831, 'space without': 787198, 'without face': 1002632, 'some funny': 782931, 'funny face': 341722, 'mask going': 518760, 'going at': 355033, 'at ksh': 99393, 'ksh 100': 477832, '100 just': 1934, 'supermarket china': 819689, 'now producing': 575601, 'producing 120': 680732, '120 million': 3017, 'million face': 532143, 'mask everyday': 518620, 'is profiteering': 451074, 'profiteering at': 683006, 'having billionaire': 383997, 'any other public': 79602, 'other public space': 620793, 'public space without': 688332, 'space without face': 787199, 'without face mask': 1002633, 'face mask some': 294590, 'mask some funny': 519294, 'some funny face': 782932, 'funny face mask': 341723, 'face mask going': 294544, 'mask going at': 518761, 'going at ksh': 355034, 'at ksh 100': 99394, 'ksh 100 just': 477833, '100 just outside': 1935, 'just outside the': 469420, 'the supermarket china': 868518, 'supermarket china is': 819690, 'is now producing': 450316, 'now producing 120': 575602, 'producing 120 million': 680733, '120 million face': 3018, 'million face mask': 532144, 'face mask everyday': 294537, 'mask everyday this': 518621, 'everyday this is': 286641, 'this is profiteering': 888364, 'is profiteering at': 451075, 'profiteering at the': 683007, 'this pandemic we': 889445, 'pandemic we shall': 636950, 'we shall be': 973216, 'shall be having': 754519, 'be having billionaire': 115155, 'pharmacie': 654101, 'voting history': 960605, 'history pandemic': 398044, 'or pharmacie': 616565, 'pharmacie over': 654102, 'over next': 630429, 'deadliest week': 229208, 'week also': 975886, 'also vote': 49071, 'vote in': 960488, 'the wisconsin': 871623, 'wisconsin primary': 996631, 'primary killer': 678079, 'killer candidate': 474629, 'voting history pandemic': 960606, 'history pandemic do': 398045, 'store or pharmacie': 809359, 'or pharmacie over': 616566, 'pharmacie over next': 654103, 'over next week': 630430, 'next week it': 561690, 'it the deadliest': 461526, 'the deadliest week': 852940, 'deadliest week also': 229209, 'week also vote': 975887, 'also vote in': 49072, 'vote in the': 960489, 'in the wisconsin': 429685, 'the wisconsin primary': 871624, 'wisconsin primary killer': 996632, 'primary killer candidate': 678080, 'conceivably': 192826, 'cannot fill': 161827, 'economic vacuum': 267358, 'vacuum left': 951823, 'left by': 485433, 'immediate return': 417026, 'return soon': 719898, 'soon conceivably': 785681, 'conceivably possible': 192827, 'to completely': 903143, 'completely unsustainable': 192372, 'unsustainable growth': 943607, 'growth consumer': 367360, 'economy this': 268281, 'this conversation': 886858, 'conversation article': 202460, 'explores an': 292520, 'could step': 209717, 'step into': 799573, 'this vacuum': 890953, 'we cannot fill': 971060, 'cannot fill the': 161828, 'fill the economic': 305496, 'the economic vacuum': 853923, 'economic vacuum left': 267359, 'vacuum left by': 951824, 'left by covid': 485434, 'll see an': 496990, 'see an immediate': 744896, 'an immediate return': 56168, 'immediate return soon': 417027, 'return soon conceivably': 719900, 'soon conceivably possible': 785682, 'conceivably possible to': 192828, 'possible to completely': 665841, 'to completely unsustainable': 903148, 'completely unsustainable growth': 192373, 'unsustainable growth consumer': 943608, 'growth consumer economy': 367361, 'consumer economy this': 197318, 'economy this conversation': 268282, 'this conversation article': 886859, 'conversation article explores': 202461, 'article explores an': 94311, 'explores an idea': 292521, 'an idea that': 56134, 'that could step': 843365, 'could step into': 209718, 'step into this': 799576, 'into this vacuum': 443225, 'and stayathome': 72308, 'stayathome we': 797700, 'still deliver': 800418, 'deliver and': 233089, 'and surely': 72870, 'surely safety': 827927, 'safety come': 730498, 'come first': 187285, 'first stayhomesavelives': 309026, 'enjoy the online': 277191, 'shopping and stayathome': 762026, 'and stayathome we': 72309, 'stayathome we still': 797701, 'we still deliver': 973398, 'still deliver and': 800419, 'deliver and surely': 233090, 'and surely safety': 72872, 'surely safety come': 827928, 'safety come first': 730499, 'come first stayhomesavelives': 187289, 'every 10': 285637, '10 drop': 1403, 'in spending': 428198, 'in category': 421294, 'category affected': 167153, '19 overall': 9225, 'spending drop': 788788, 'for every 10': 321157, 'every 10 drop': 285639, '10 drop in': 1404, 'drop in spending': 260276, 'in spending in': 428199, 'spending in category': 788858, 'in category affected': 421295, 'category affected by': 167154, 'covid 19 overall': 213539, '19 overall consumer': 9226, 'overall consumer spending': 631003, 'consumer spending drop': 199054, 'chorus': 178015, 'totally agree': 926300, 'that cash': 843171, 'and carry': 59580, 'carry ha': 165082, 'would explain': 1011806, 'explain the': 292118, 'not defending': 568976, 'defending anyone': 232112, 'anyone here': 80363, 'making lot': 511180, 'crisis chorus': 217216, 'totally agree but': 926301, 'agree but could': 38597, 'but could it': 145467, 'it be that': 456738, 'be that cash': 117578, 'that cash and': 843172, 'cash and carry': 166155, 'and carry ha': 59581, 'carry ha increased': 165083, 'it price which': 460470, 'price which would': 677516, 'which would explain': 986514, 'would explain the': 1011807, 'explain the increase': 292120, 'the increase not': 858066, 'increase not defending': 432925, 'not defending anyone': 568977, 'defending anyone here': 232113, 'anyone here but': 80364, 'here but some': 392840, 'are making lot': 87989, 'making lot of': 511181, 'of money from': 586607, 'this crisis chorus': 887027, 'working 70': 1008476, '70 hour': 21774, 'hour week': 406081, 'extra kind': 293558, 'also maybe': 48521, 'maybe say': 521793, 'say prayer': 739066, 'prayer that': 669073, 'get exposed': 346978, 'cousin work at': 212101, 'store she say': 810052, 'she say she': 756323, 'say she been': 739126, 'she been working': 755888, 'been working 70': 122395, 'working 70 hour': 1008477, '70 hour week': 21776, 'hour week and': 406082, 'week and still': 975936, 'and still cannot': 72370, 'still cannot keep': 800341, 'cannot keep up': 161990, 'keep up please': 472177, 'up please be': 945775, 'please be extra': 659701, 'be extra kind': 114758, 'extra kind to': 293559, 'kind to the': 475013, 'line keeping this': 493223, 'running and also': 727904, 'and also maybe': 57963, 'also maybe say': 48522, 'maybe say prayer': 521794, 'say prayer that': 739067, 'prayer that they': 669074, 'that they do': 846931, 'not get exposed': 569585, 'invited': 444273, 'passle': 643425, 're invited': 698924, 'invited covid': 444274, 'protection global': 685466, 'global advertising': 351730, 'advertising in': 33231, 'crisis webinar': 218359, 'webinar via': 975126, 'via passle': 956161, 'passle by': 643426, 'you re invited': 1020658, 're invited covid': 698925, 'invited covid 19': 444275, '19 amp consumer': 4963, 'amp consumer protection': 53570, 'consumer protection global': 198532, 'protection global advertising': 685467, 'global advertising in': 351731, 'advertising in time': 33233, 'of crisis webinar': 582195, 'crisis webinar via': 218360, 'webinar via passle': 975128, 'via passle by': 956162, '017': 775, 'kwh': 478050, 'solar': 781596, 'comparable': 191370, 'piped': 656886, 'greatgame': 363298, 'renewables': 710983, 'aliceinwonderland': 41731, 'gonearoundthebend': 356456, '017 kwh': 776, 'kwh wind': 478051, 'wind and': 995619, 'and solar': 71932, 'solar in': 781599, 'newyork state': 561204, 'state comparable': 795465, 'comparable with': 191376, 'with india': 998983, 'india recent': 434586, 'recent price': 703962, 'price winning': 677597, 'bid auction': 129468, 'auction eh': 102846, 'eh soon': 270137, 'soon oil': 785780, 'oil lng': 596927, 'lng piped': 497211, 'piped gas': 656887, 'gas compete': 343792, 'compete greatgame': 191591, 'greatgame oilprice': 363299, 'oilprice renewables': 597636, 'renewables loot': 710990, 'loot oott': 503233, 'oilpricewar aliceinwonderland': 597701, 'aliceinwonderland gonearoundthebend': 41734, '017 kwh wind': 777, 'kwh wind and': 478052, 'wind and solar': 995620, 'and solar in': 71933, 'solar in newyork': 781600, 'in newyork state': 425853, 'newyork state comparable': 561205, 'state comparable with': 795466, 'comparable with india': 191377, 'with india recent': 998984, 'india recent price': 434587, 'recent price winning': 703963, 'price winning bid': 677598, 'winning bid auction': 996063, 'bid auction eh': 129469, 'auction eh soon': 102847, 'eh soon oil': 270138, 'soon oil lng': 785781, 'oil lng piped': 596928, 'lng piped gas': 497212, 'piped gas compete': 656888, 'gas compete greatgame': 343793, 'compete greatgame oilprice': 191592, 'greatgame oilprice renewables': 363300, 'oilprice renewables loot': 597637, 'renewables loot oott': 710991, 'loot oott oilpricewar': 503235, 'oott oilpricewar aliceinwonderland': 611773, 'oilpricewar aliceinwonderland gonearoundthebend': 597702, 'spermarketprofitsforgood': 789184, 'stevencain': 799975, 'about delivering': 25090, 'delivering box': 233472, 'fresh veg': 333092, 'every dr': 285879, 'dr and': 257952, 'australia spermarketprofitsforgood': 103382, 'spermarketprofitsforgood stevencain': 789185, 'how about delivering': 407277, 'about delivering box': 25091, 'delivering box of': 233473, 'box of fresh': 137120, 'of fresh veg': 583949, 'fresh veg and': 333094, 'veg and supply': 953717, 'supply to every': 826003, 'to every dr': 905302, 'every dr and': 285880, 'dr and nurse': 257953, 'and nurse on': 67894, 'nurse on the': 577437, 'frontline of covid': 338804, '19 in australia': 7730, 'in australia spermarketprofitsforgood': 420618, 'australia spermarketprofitsforgood stevencain': 103383, 'paper public': 640635, 'announcement corona': 77136, 'toilet paper public': 921403, 'paper public service': 640636, 'service announcement corona': 752121, 'announcement corona 19': 77137, 'doe shopping': 251573, 'shopping feel': 762632, 'bad now': 107962, 'why doe shopping': 990953, 'doe shopping feel': 251574, 'shopping feel so': 762633, 'so bad now': 776581, 'are cleared': 85308, 'paper amidst': 639795, 'outbreak business': 628054, 'world are cleared': 1009308, 'are cleared of': 85309, 'cleared of hand': 181423, 'toilet paper amidst': 921183, 'paper amidst the': 639796, '19 outbreak business': 9089, 'outbreak business are': 628055, 'shutdownma': 768143, 'massachusetts state': 519924, 'now growing': 574831, 'growing exponentially': 367187, 'exponentially governor': 292598, 'governor baker': 360873, 'baker expected': 108796, 'make announcement': 509695, 'announcement monday': 77168, 'monday pandemic': 536363, 'toiletpaper shutdownma': 922479, 'massachusetts state to': 519925, 'state to be': 796009, 'be on lockdown': 116202, 'on lockdown due': 601909, 'due to now': 261878, 'to now growing': 910743, 'now growing exponentially': 574832, 'growing exponentially governor': 367188, 'exponentially governor baker': 292599, 'governor baker expected': 360875, 'baker expected to': 108797, 'expected to make': 290988, 'to make announcement': 909623, 'make announcement monday': 509696, 'announcement monday pandemic': 77169, 'monday pandemic toiletpaper': 536364, 'pandemic toiletpaper shutdownma': 636817, 'food getting': 314658, 'getting cold': 348909, 'cold during': 185753, 'during delivery': 262592, 'afraid of food': 34999, 'of food getting': 583696, 'food getting cold': 314659, 'getting cold during': 348910, 'cold during delivery': 185754, 'refining': 706592, 'dropped on': 260612, 'monday more': 536329, 'more state': 540447, 'state told': 796034, 'told resident': 923669, 'of gas': 584047, 'could quickly': 209552, 'quickly fall': 694522, 'fall 20': 296792, 'ultimately reach': 939154, 'reach under': 700012, 'under in': 940130, 'in select': 427780, 'select market': 747476, 'the refining': 865406, 'refining industry': 706593, 'it capacity': 457055, 'gasoline price dropped': 344258, 'price dropped on': 673596, 'dropped on monday': 260613, 'on monday more': 602173, 'monday more state': 536330, 'more state told': 540448, 'state told resident': 796035, 'told resident to': 923670, 'resident to stay': 714387, 'home to stop': 402343, 'spread of gas': 790672, 'of gas price': 584052, 'price could quickly': 673291, 'could quickly fall': 209553, 'quickly fall 20': 694523, 'fall 20 and': 296793, '20 and ultimately': 12948, 'and ultimately reach': 74582, 'ultimately reach under': 939155, 'reach under in': 700013, 'under in select': 940131, 'in select market': 427781, 'select market the': 747477, 'market the refining': 517199, 'the refining industry': 865407, 'refining industry could': 706594, 'industry could shut': 435754, 'shut down 30': 767796, 'down 30 of': 256411, '30 of it': 17143, 'of it capacity': 585374, 'weekend coming': 977333, 'way thanks': 969914, 'this handy': 887828, 'handy guide': 376890, 'guide via': 368374, 'the weekend coming': 871326, 'weekend coming up': 977334, 'coming up here': 188260, 'up here some': 945077, 'tip to eat': 898927, 'to eat healthy': 904884, 'eat healthy and': 265933, 'healthy and shop': 387530, 'and shop the': 71518, 'shop the right': 760906, 'right way thanks': 722403, 'way thanks for': 969915, 'for this handy': 327034, 'this handy guide': 887831, 'handy guide via': 376891, 'guide via stoppanicbuying': 368375, 'information advice': 437721, 'and firm': 62923, 'firm see': 308415, 'out our covid': 626971, '19 information hub': 7881, 'information hub with': 437861, 'hub with the': 409846, 'latest information advice': 481399, 'information advice and': 437722, 'advice and guidance': 33309, 'and guidance for': 64040, 'guidance for consumer': 368228, 'for consumer business': 320243, 'consumer business and': 196668, 'business and firm': 143304, 'and firm see': 62925, 'panic kicking': 638260, 'kicking in': 473824, 'in rain': 427239, 'continues heavily': 201401, '19 panic shopping': 9558, 'panic shopping frenzy': 638571, 'shopping frenzy namaka': 762746, 'supermarket panic kicking': 821903, 'panic kicking in': 638261, 'kicking in rain': 473825, 'in rain continues': 427240, 'rain continues heavily': 695736, 'dear reader': 229858, 'reader the': 700701, 'of misinformation': 586574, 'misinformation spreading': 534073, 'is overwhelming': 450767, 'overwhelming our': 631758, 'small team': 775146, 'team we': 835823, 'seeing score': 746455, 'any comfort': 79031, 'comfort make': 187845, 'make thing': 510626, 'worse they': 1011033, 'share sometimes': 755219, 'sometimes dangerous': 785191, 'dangerous misinformation': 225756, 'dear reader the': 229860, 'reader the magnitude': 700702, 'magnitude of misinformation': 508450, 'of misinformation spreading': 586575, 'misinformation spreading in': 534074, 'spreading in the': 790985, 'pandemic is overwhelming': 635789, 'is overwhelming our': 450769, 'overwhelming our small': 631759, 'our small team': 624802, 'small team we': 775147, 'team we re': 835825, 're seeing score': 699464, 'seeing score of': 746456, 'score of people': 742363, 'people in rush': 648424, 'in rush to': 427585, 'rush to find': 728341, 'to find any': 905880, 'find any comfort': 306789, 'any comfort make': 79032, 'comfort make thing': 187846, 'make thing worse': 510629, 'thing worse they': 885021, 'worse they share': 1011034, 'they share sometimes': 883331, 'share sometimes dangerous': 755220, 'sometimes dangerous misinformation': 785192, 'how nh': 408404, 'overtime saving': 631634, 'life against': 488447, 'buy because': 148408, 'because selfish': 119534, 'shelf nhsworkers': 757332, 'nhsworkers nhsstaff': 562288, 'it crazy to': 457395, 'crazy to see': 215460, 'see how nh': 745241, 'how nh worker': 408406, 'worker are working': 1006437, 'working overtime saving': 1008863, 'overtime saving life': 631635, 'saving life against': 737904, 'life against the': 488448, 'virus and then': 957945, 'and then they': 73817, 'then they go': 877655, 'nothing left to': 573090, 'to buy because': 902188, 'buy because selfish': 148409, 'because selfish people': 119538, 'selfish people have': 748210, 'people have emptied': 648176, 'the shelf nhsworkers': 866859, 'shelf nhsworkers nhsstaff': 757333, 'power firm': 667607, 'firm offer': 308396, 'offer discount': 594586, 'power firm offer': 667608, 'firm offer discount': 308397, 'offer discount to': 594588, 'discount to customer': 244559, 'dad is': 224349, 'employed is': 273484, 'losing work': 503612, 'so money': 777747, 'money too': 537131, 'supermarket worried': 824132, 'get coronavirus': 346817, 'coronavirus give': 205987, 'elderly sick': 270886, 'sick family': 768439, 'after those': 36422, 'my dad is': 547895, 'dad is self': 224356, 'is self employed': 451737, 'self employed is': 747627, 'employed is losing': 273485, 'is losing work': 449461, 'losing work so': 503613, 'work so money': 1005740, 'so money too': 777749, 'money too due': 537132, 'in supermarket worried': 428720, 'supermarket worried that': 824133, 'worried that ll': 1010584, 'that ll get': 844910, 'll get coronavirus': 496784, 'get coronavirus give': 346819, 'coronavirus give it': 205988, 'give it to': 350551, 'to my elderly': 910390, 'my elderly sick': 548076, 'elderly sick family': 270887, 'sick family friend': 768441, 'family friend if': 297818, 'friend if anyone': 333644, 'anyone see this': 80516, 'see this look': 745950, 'this look after': 888707, 'look after those': 502228, 'after those you': 36424, 'bet with': 128124, '100 compliance': 1863, 'with wearing': 1002055, 'mask carrying': 518519, 'carrying hand': 165183, 'hygiene we': 412192, 'full quarantinelife': 340834, 'quarantinelife but': 692936, 'but america': 145172, 'the land': 858927, 'free so': 332181, 'ensure 100': 277880, 'compliance so': 192443, 'bet with 100': 128125, 'with 100 compliance': 996927, '100 compliance with': 1865, 'compliance with wearing': 192449, 'with wearing face': 1002056, 'face mask carrying': 294525, 'mask carrying hand': 518520, 'carrying hand sanitizer': 165184, 'sanitizer and practice': 734428, 'good hygiene we': 357202, 'hygiene we wouldn': 412193, 'wouldn need full': 1012495, 'need full quarantinelife': 554897, 'full quarantinelife but': 340835, 'quarantinelife but america': 692937, 'but america is': 145173, 'america is the': 51582, 'is the land': 452842, 'the land of': 858930, 'land of the': 479282, 'of the free': 591042, 'the free so': 855770, 'free so you': 332182, 'so you cannot': 778835, 'you cannot ensure': 1017856, 'cannot ensure 100': 161779, 'ensure 100 compliance': 277881, '100 compliance so': 1864, 'compliance so here': 192444, 'from via': 338230, 'via one': 956129, 'mistake grocery': 534466, 'dying from via': 263831, 'from via one': 338232, 'via one of': 956130, 'biggest mistake grocery': 130276, 'mistake grocery store': 534467, 'store made early': 808847, 'handsanitizerleash': 376682, 'victoriabc': 956553, 'the handsanitizerleash': 857082, 'handsanitizerleash is': 376683, 'perfect for': 651292, 'fight germ': 304755, 'great gift': 362701, 'health shop': 386848, 'today visit': 920439, 'visit handsanitizer': 959267, 'handsanitizer promotionalproducts': 376613, 'promotionalproducts canada': 683891, 'canada victoriabc': 160597, 'victoriabc healthcare': 956554, 'the handsanitizerleash is': 857083, 'handsanitizerleash is perfect': 376684, 'is perfect for': 450844, 'perfect for anyone': 651293, 'anyone who want': 80636, 'want to fight': 966034, 'to fight germ': 905790, 'fight germ on': 304756, 'the go these': 856387, 'go these day': 354229, 'these day it': 879880, 'day it great': 227849, 'it great gift': 458335, 'great gift idea': 362703, 'gift idea for': 349990, 'idea for health': 413049, 'for health shop': 322154, 'health shop online': 386849, 'shop online today': 760591, 'online today visit': 609609, 'today visit handsanitizer': 920440, 'visit handsanitizer promotionalproducts': 959268, 'handsanitizer promotionalproducts canada': 376614, 'promotionalproducts canada victoriabc': 683892, 'canada victoriabc healthcare': 160598, 'endless gratitude': 276228, 'driver janitor': 259623, 'janitor farmer': 464547, 'other low': 620488, 'holding our': 400139, 'their bare': 872554, 'bare hand': 110905, 'we applaud': 970445, 'applaud you': 82259, 'endless gratitude to': 276229, 'gratitude to the': 362403, 'truck driver janitor': 932784, 'driver janitor farmer': 259624, 'janitor farmer and': 464548, 'farmer and so': 299264, 'so many other': 777686, 'many other low': 514433, 'other low wage': 620489, 'wage worker who': 964004, 'who are holding': 988156, 'are holding our': 87219, 'holding our world': 400140, 'our world together': 625411, 'world together with': 1010097, 'together with their': 921044, 'with their bare': 1001557, 'their bare hand': 872555, 'bare hand we': 110907, 'hand we applaud': 375970, 'we applaud you': 970447, 'applaud you we': 82261, 'you we stand': 1022207, 'we stand with': 973366, 'stand with you': 793615, 'with you 19': 1002140, 'sah': 730901, 'policie': 663295, 'proti': 685956, 'spekulant': 788507, 'roukami': 726300, 'popud': 664528, 'hejtman': 388873, 'steck': 799309, 'kraje': 477640, 'spolupr': 789802, 'podle': 662350, 'krizov': 477711, 'kona': 477376, 'zajistil': 1027190, 'ti': 895561, 'rouek': 726234, 'od': 579165, 'firmy': 308471, 'kter': 477849, 'dodat': 251266, 'zdravotn': 1027264, 'ale': 41322, 'posledn': 665526, 'chv': 178435, 'snaila': 776053, 'navyovat': 553165, 'cenu': 169625, 'spolutozvladneme': 789805, 'sah policie': 730904, 'policie proti': 663296, 'proti spekulant': 685957, 'spekulant roukami': 788510, 'roukami na': 726301, 'na popud': 551311, 'popud hejtman': 664529, 'hejtman steck': 388874, 'steck ho': 799310, 'ho kraje': 398735, 'kraje ve': 477641, 've spolupr': 953593, 'spolupr ci': 789803, 'ci podle': 178444, 'podle krizov': 662351, 'krizov ho': 477712, 'ho kona': 398733, 'kona zajistil': 477377, 'zajistil 700': 1027191, '700 ti': 21906, 'ti rouek': 895566, 'rouek od': 726235, 'od firmy': 579166, 'firmy kter': 308472, 'kter je': 477850, 'je la': 464940, 'la dodat': 478153, 'dodat na': 251267, 'na zdravotn': 551331, 'zdravotn ale': 1027265, 'ale na': 41325, 'na posledn': 551313, 'posledn chv': 665527, 'chv li': 178436, 'li se': 487946, 'se snaila': 743063, 'snaila navyovat': 776054, 'navyovat cenu': 553166, 'cenu spolutozvladneme': 169626, 'sah policie proti': 730905, 'policie proti spekulant': 663297, 'proti spekulant roukami': 685959, 'spekulant roukami na': 788511, 'roukami na popud': 726302, 'na popud hejtman': 551312, 'popud hejtman steck': 664530, 'hejtman steck ho': 388875, 'steck ho kraje': 799311, 'ho kraje ve': 398736, 'kraje ve spolupr': 477642, 've spolupr ci': 953594, 'spolupr ci podle': 789804, 'ci podle krizov': 178445, 'podle krizov ho': 662352, 'krizov ho kona': 477713, 'ho kona zajistil': 398734, 'kona zajistil 700': 477378, 'zajistil 700 ti': 1027192, '700 ti rouek': 21908, 'ti rouek od': 895567, 'rouek od firmy': 726236, 'od firmy kter': 579167, 'firmy kter je': 308473, 'kter je la': 477851, 'je la dodat': 464941, 'la dodat na': 478154, 'dodat na zdravotn': 251268, 'na zdravotn ale': 551332, 'zdravotn ale na': 1027266, 'ale na posledn': 41326, 'na posledn chv': 551314, 'posledn chv li': 665528, 'chv li se': 178437, 'li se snaila': 487948, 'se snaila navyovat': 743064, 'snaila navyovat cenu': 776055, 'navyovat cenu spolutozvladneme': 553167, 'return at': 719817, 'at from': 98710, 'from hoarder': 335824, 'hoarder they': 399124, 'returning them': 720018, 'from contaminated': 334980, 'contaminated environment': 200656, 'environment and': 279077, 'put shop': 690811, 'risk who': 724021, 'handle them': 376281, 'them supermarket': 876349, 'supermarket hoarder': 820766, 'hoarder looroll': 399068, 'looroll stayathome': 503174, 'no return at': 565358, 'return at from': 719818, 'at from hoarder': 98711, 'from hoarder they': 335825, 'hoarder they could': 399125, 'could be returning': 208917, 'be returning them': 116865, 'returning them from': 720019, 'them from contaminated': 875747, 'from contaminated environment': 334981, 'contaminated environment and': 200657, 'environment and put': 279080, 'and put shop': 69815, 'put shop worker': 690812, 'shop worker at': 761081, 'at risk who': 100417, 'risk who have': 724022, 'have to handle': 383222, 'to handle them': 907136, 'handle them supermarket': 376282, 'them supermarket hoarder': 876350, 'supermarket hoarder looroll': 820769, 'hoarder looroll stayathome': 399069, 'looroll stayathome staysafe': 503175, 'forager': 328260, 'maine': 508852, 'feedme': 302525, 'eatlocal': 266352, 'forager is': 328261, 'farmer organization': 299475, 'organization and': 619337, 'state agency': 795334, 'the maine': 859919, 'maine food': 508855, 'economy adjust': 267610, 'beyond sustainability': 129238, 'sustainability feedme': 829765, 'feedme eatlocal': 302526, 'forager is working': 328262, 'working with farmer': 1009057, 'with farmer organization': 998391, 'farmer organization and': 299476, 'organization and state': 619341, 'and state agency': 72274, 'state agency to': 795337, 'agency to help': 38090, 'help the maine': 390663, 'the maine food': 859920, 'maine food economy': 508856, 'food economy adjust': 314334, 'economy adjust to': 267611, 'adjust to the': 32302, 'the challenge of': 850647, 'challenge of covid': 171511, 'and beyond sustainability': 58951, 'beyond sustainability feedme': 129239, 'sustainability feedme eatlocal': 829766, 'relief related': 709455, 'on consumer relief': 600072, 'consumer relief related': 198692, 'relief related to': 709456, 'not cancelling': 568682, 'cancelling flight': 161213, 'flight and': 310419, 're scheduling': 699438, 'scheduling customer': 741534, 'customer then': 222931, 'be bound': 113896, 'travel goi': 930374, 'airline are not': 39929, 'are not cancelling': 88337, 'not cancelling flight': 568683, 'cancelling flight and': 161214, 'flight and are': 310420, 'and are charging': 58298, 'are charging high': 85253, 'price for re': 674035, 'for re scheduling': 324975, 're scheduling customer': 699439, 'scheduling customer then': 741535, 'customer then will': 222932, 'then will be': 877765, 'will be bound': 992382, 'be bound to': 113897, 'bound to come': 136858, 'of their home': 591667, 'home and travel': 400707, 'and travel goi': 74410, 'microsoft closing': 530507, 'all microsoft': 43506, 'location worldwide': 499000, 'worldwide in': 1010375, 'outbreak around': 628029, 'world apple': 1009302, 'apple last': 82336, 'week announced': 975950, 'store outside': 809410, 'greater china': 363154, 'china unt': 177031, 'microsoft closing all': 530508, 'closing all microsoft': 183576, 'all microsoft store': 43507, 'store location worldwide': 808802, 'location worldwide in': 499001, 'worldwide in response': 1010378, 'pandemic in response': 635707, '19 coronavirus outbreak': 6115, 'coronavirus outbreak around': 206376, 'outbreak around the': 628030, 'the world apple': 871814, 'world apple last': 1009303, 'apple last week': 82337, 'last week announced': 480633, 'week announced that': 975951, 'it is closing': 458905, 'closing all of': 183577, 'of it retail': 585440, 'retail store outside': 718678, 'store outside of': 809411, 'outside of greater': 629505, 'of greater china': 584320, 'greater china unt': 363155, 'update shop': 947204, 'normally say': 567535, 'supermarket bos': 819394, '19 update shop': 11684, 'update shop normally': 947205, 'shop normally say': 760494, 'normally say supermarket': 567536, 'say supermarket bos': 739191, 'spongebob': 789811, 'spongebobmemes': 789817, 'spongebobmeme': 789814, 'memesdaily': 528385, 'dankmeme': 225871, 'ol': 598099, 'edgymemes': 268533, 'dailymemes': 224922, 'offensivememes': 594491, 'true doe': 933069, 'doe spongebob': 251583, 'spongebob spongebobmemes': 789812, 'spongebobmemes coronamemes': 789818, 'toiletpaper spongebobmeme': 922508, 'spongebobmeme meme': 789815, 'meme funny': 528318, 'funny dankmemes': 341718, 'dankmemes memesdaily': 225885, 'memesdaily funnymemes': 528386, 'funnymemes lol': 341823, 'lol dank': 500892, 'dank humor': 225863, 'humor follow': 410869, 'follow like': 312443, 'like dankmeme': 490091, 'dankmeme lmao': 225874, 'lmao love': 497152, 'love ol': 504737, 'ol edgymemes': 598104, 'edgymemes dailymemes': 268534, 'dailymemes comedy': 224923, 'comedy instagram': 187755, 'instagram fun': 439962, 'fun offensivememes': 341203, 'offensivememes funny': 594492, 'this true doe': 890865, 'true doe spongebob': 933070, 'doe spongebob spongebobmemes': 251584, 'spongebob spongebobmemes coronamemes': 789813, 'spongebobmemes coronamemes toiletpaper': 789819, 'coronamemes toiletpaper spongebobmeme': 205075, 'toiletpaper spongebobmeme meme': 922509, 'spongebobmeme meme meme': 789816, 'meme meme funny': 528337, 'meme funny dankmemes': 528319, 'funny dankmemes memesdaily': 341719, 'dankmemes memesdaily funnymemes': 225886, 'memesdaily funnymemes lol': 528387, 'funnymemes lol dank': 341824, 'lol dank humor': 500893, 'dank humor follow': 225864, 'humor follow like': 410870, 'follow like dankmeme': 312444, 'like dankmeme lmao': 490092, 'dankmeme lmao love': 225875, 'lmao love ol': 497153, 'love ol edgymemes': 504738, 'ol edgymemes dailymemes': 598105, 'edgymemes dailymemes comedy': 268535, 'dailymemes comedy instagram': 224924, 'comedy instagram fun': 187756, 'instagram fun offensivememes': 439963, 'fun offensivememes funny': 341204, 'me holding': 522903, 'holding on': 400134, 'last piece': 480450, 'me holding on': 522904, 'holding on to': 400135, 'to my last': 910413, 'my last piece': 548978, 'last piece of': 480451, 'piece of be': 656328, 'of be like': 580593, 'fmcg player': 311741, 'player like': 659313, 'like hul': 490464, 'hul godrej': 410345, 'and patanjali': 68766, 'patanjali said': 643922, 'helping fight': 391329, 'reducing the': 706324, 'soap hygiene': 779036, 'these item': 880191, 'fmcg player like': 311742, 'player like hul': 659315, 'like hul godrej': 490465, 'hul godrej consumer': 410346, 'godrej consumer and': 354887, 'consumer and patanjali': 196233, 'and patanjali said': 68767, 'patanjali said they': 643923, 'they are helping': 881294, 'are helping fight': 87096, 'helping fight the': 391331, 'outbreak by reducing': 628075, 'by reducing the': 153745, 'reducing the price': 706326, 'of soap hygiene': 589826, 'soap hygiene product': 779037, 'hygiene product and': 412148, 'product and ramping': 680904, 'ramping up production': 696485, 'up production of': 945855, 'production of these': 682158, 'of these item': 591837, 'topshop': 925860, 'topman': 925831, 'arcadia': 84031, 'with topshop': 1001817, 'topshop or': 925862, 'or topman': 617501, 'topman or': 925832, 'any arcadia': 78939, 'arcadia group': 84032, 'group you': 366980, 'bad them': 108035, 'them dont': 875620, 'it topman': 461809, 'topman topshop': 925834, 'topshop coronavillains': 925861, 'you are shopping': 1017233, 'online with topshop': 609754, 'with topshop or': 1001818, 'topshop or topman': 925863, 'or topman or': 617502, 'topman or any': 925833, 'or any arcadia': 614337, 'any arcadia group': 78940, 'arcadia group you': 84033, 'group you are': 366981, 'you are bad': 1017070, 'are bad them': 84749, 'bad them dont': 108036, 'them dont let': 875621, 'dont let them': 255251, 'away with it': 106123, 'with it topman': 999086, 'it topman topshop': 461810, 'topman topshop coronavillains': 925835, 'creditor': 216575, 'are sorry': 90307, 'may minimize': 521344, 'credit by': 216322, 'your lender': 1024608, 'and creditor': 60738, 'creditor paying': 216578, 'paying what': 645522, 'can staying': 159755, 'staying up': 798724, 'date on': 226696, 'report considering': 711877, 'considering adding': 195350, 'adding consumer': 31668, 'consumer state': 199131, 'we are sorry': 970718, 'are sorry for': 90308, 'for the inconvenience': 326497, 'the inconvenience you': 858060, 'you may minimize': 1019803, 'may minimize the': 521345, '19 on your': 8975, 'on your credit': 605456, 'your credit by': 1023379, 'credit by talking': 216323, 'by talking to': 154214, 'talking to your': 834056, 'to your lender': 918995, 'your lender and': 1024609, 'lender and creditor': 486213, 'and creditor paying': 60739, 'creditor paying what': 216579, 'paying what you': 645523, 'you can staying': 1017794, 'can staying up': 159756, 'staying up to': 798726, 'to date on': 903937, 'date on your': 226705, 'your credit report': 1023381, 'credit report considering': 216482, 'report considering adding': 711878, 'considering adding consumer': 195351, 'adding consumer state': 31669, 'medical keyworkers': 526236, 'keyworkers should': 473602, 'other concern': 619986, 'concern taken': 193101, 'taken off': 833038, 'shoulder they': 766706, 'submit an': 815784, 'central body': 169381, 'will supply': 995027, 'food likely': 315319, 'likely from': 492001, 'from wholesaler': 338373, 'wholesaler retailer': 990525, 'retailer sarscov2': 719301, 'sarscov2 coro': 736838, 'medical keyworkers should': 526237, 'keyworkers should have': 473603, 'should have all': 766061, 'have all other': 379164, 'all other concern': 43779, 'other concern taken': 619987, 'concern taken off': 193102, 'taken off their': 833040, 'off their shoulder': 594293, 'their shoulder they': 874730, 'shoulder they should': 766707, 'able to submit': 24554, 'to submit an': 915713, 'submit an online': 815786, 'shopping list to': 763195, 'list to central': 494568, 'to central body': 902566, 'central body that': 169382, 'body that will': 133900, 'that will supply': 847613, 'will supply the': 995031, 'supply the food': 825962, 'the food likely': 855570, 'food likely from': 315320, 'likely from wholesaler': 492002, 'from wholesaler retailer': 338374, 'wholesaler retailer sarscov2': 990526, 'retailer sarscov2 coro': 719302, 'nora': 566993, 'lamontagne': 479198, 'supervision': 824384, 'creg': 216639, 'concordia': 193332, 'sawchuk': 738348, '19 interesting': 7905, 'technology during': 836280, 'pandemic written': 637073, 'written by': 1012956, 'by nora': 153350, 'nora lamontagne': 566994, 'lamontagne master': 479199, 'master student': 520213, 'student in': 814706, 'medium study': 527299, 'study at': 814863, 'the supervision': 868931, 'supervision of': 824387, 'of creg': 582138, 'creg member': 216640, 'and concordia': 60258, 'concordia member': 193333, 'member dr': 528062, 'dr kim': 258047, 'kim sawchuk': 474767, 'covid 19 interesting': 213282, '19 interesting article': 7906, 'use of technology': 949429, 'of technology during': 590631, 'technology during the': 836281, 'the pandemic written': 863167, 'pandemic written by': 637074, 'written by nora': 1012957, 'by nora lamontagne': 153351, 'nora lamontagne master': 566995, 'lamontagne master student': 479200, 'master student in': 520214, 'student in medium': 814708, 'in medium study': 425239, 'medium study at': 527300, 'study at under': 814864, 'at under the': 101397, 'under the supervision': 940333, 'the supervision of': 868932, 'supervision of creg': 824388, 'of creg member': 582139, 'creg member and': 216641, 'member and concordia': 528006, 'and concordia member': 60259, 'concordia member dr': 193334, 'member dr kim': 528063, 'dr kim sawchuk': 258048, 'inkling': 438762, 'to confess': 903188, 'confess in': 193787, 'way prefer': 969825, 'prefer going': 669739, 'going supermarket': 355477, 'present restriction': 670616, 'restriction haven': 717281, 'an inkling': 56347, 'inkling of': 438763, 'attack due': 102101, 'to crowded': 903769, 'queue since': 694056, 'since socialdistancing': 770828, 'socialdistancing started': 780716, 'have to confess': 383184, 'to confess in': 903189, 'confess in some': 193788, 'in some way': 428107, 'some way prefer': 784188, 'way prefer going': 969826, 'prefer going supermarket': 669740, 'going supermarket shopping': 355478, 'supermarket shopping with': 822659, 'shopping with the': 764445, 'with the present': 1001435, 'the present restriction': 864248, 'present restriction haven': 670617, 'restriction haven had': 717282, 'had an inkling': 372839, 'an inkling of': 56348, 'inkling of panic': 438764, 'of panic attack': 587719, 'panic attack due': 637373, 'attack due to': 102102, 'due to crowded': 261748, 'to crowded aisle': 903770, 'crowded aisle and': 219289, 'aisle and queue': 40193, 'and queue since': 69872, 'queue since socialdistancing': 694057, 'since socialdistancing started': 770829, 'local park': 498254, 'park beauty': 641876, 'beauty spot': 118796, 'spot high': 790065, 'supermarket pavement': 821941, 'here turn': 393750, 'around go': 93306, 'problem try': 679728, 'try bit': 934464, 'bit later': 131595, 'later earlier': 481052, 'earlier another': 264428, 'want full': 965795, 'full lockdown': 340671, 'lockdown stayhomesavelives': 499958, 'get to your': 348504, 'your local park': 1024710, 'local park beauty': 498255, 'park beauty spot': 641877, 'beauty spot high': 118798, 'spot high street': 790066, 'high street supermarket': 395438, 'street supermarket pavement': 813132, 'supermarket pavement and': 821942, 'pavement and think': 644655, 'and think there': 73972, 'think there are': 885667, 'are too many': 91143, 'many people here': 514510, 'people here turn': 648251, 'here turn around': 393751, 'turn around go': 935644, 'around go home': 93307, 'go home you': 353680, 'the problem try': 864530, 'problem try bit': 679729, 'try bit later': 934465, 'bit later earlier': 131596, 'later earlier another': 481053, 'earlier another day': 264429, 'another day if': 77566, 'you can we': 1017830, 'can we don': 160169, 'we don want': 971397, 'don want full': 254039, 'want full lockdown': 965796, 'full lockdown stayhomesavelives': 340676, 'exploitative': 292397, 'protection authority': 685347, 'authority around': 103690, 'been kept': 121427, 'kept particularly': 473065, 'particularly busy': 642665, 'busy by': 144884, 'other exploitative': 620203, 'exploitative practice': 292398, 'practice have': 668580, 'reported across': 712449, 'and consumer protection': 60419, 'consumer protection authority': 198511, 'protection authority around': 685348, 'authority around the': 103691, 'have been kept': 379591, 'been kept particularly': 121428, 'kept particularly busy': 473066, 'particularly busy by': 642666, 'busy by the': 144885, '19 pandemic price': 9435, 'and other exploitative': 68321, 'other exploitative practice': 620204, 'exploitative practice have': 292399, 'practice have been': 668581, 'have been reported': 379661, 'been reported across': 121825, 'reported across the': 712450, 'fury': 342214, 'offloaded': 596069, '11m': 2735, 'feb2020': 301664, 'am full': 50067, 'of fury': 584018, 'fury at': 342215, 'at amp': 97961, 'amp senate': 54462, 'senate republican': 749724, 'republican collectively': 713020, 'collectively offloaded': 186537, 'offloaded up': 596070, 'to 11m': 899458, '11m in': 2736, 'stock between': 801922, 'between jan': 128811, 'jan feb2020': 464464, 'feb2020 while': 301665, 'food line': 315321, 'line grew': 493138, 'grew in': 363854, 'china amp': 176468, 'amp america': 53381, 'america wa': 51731, 'too busy': 924621, 'with illegal': 998937, 'illegal inside': 416223, 'inside trading': 439437, 'trading on': 928897, 'the dowjones': 853623, 'dowjones to': 256361, 'am full of': 50068, 'full of fury': 340725, 'of fury at': 584019, 'fury at amp': 342216, 'at amp senate': 97969, 'amp senate republican': 54463, 'senate republican collectively': 749725, 'republican collectively offloaded': 713021, 'collectively offloaded up': 186538, 'offloaded up to': 596071, 'up to 11m': 946318, 'to 11m in': 899459, '11m in stock': 2738, 'in stock between': 428286, 'stock between jan': 801923, 'between jan feb2020': 128812, 'jan feb2020 while': 464465, 'feb2020 while the': 301666, 'while the food': 987389, 'the food line': 855571, 'food line grew': 315322, 'line grew in': 493139, 'grew in china': 363856, 'in china amp': 421386, 'china amp america': 176469, 'amp america wa': 53382, 'america wa too': 51733, 'wa too busy': 963550, 'too busy with': 924627, 'busy with illegal': 145016, 'with illegal inside': 998938, 'illegal inside trading': 416224, 'inside trading on': 439438, 'trading on the': 928899, 'on the dowjones': 604076, 'the dowjones to': 853624, 'dowjones to care': 256362, 'frustrating': 339235, 'iv': 464038, 'annoying and': 77360, 'and frustrating': 63379, 'frustrating thing': 339255, 'thing iv': 884501, 'iv seen': 464043, 'seen working': 747361, 'the scared': 866452, 'people wasting': 650147, 'precious ppe': 669477, 'come hoard': 187343, 'they dont': 882011, 'need panic': 555407, 'is wasted': 453773, 'wasted item': 968245, 'item doctor': 463213, 'nurse can': 577232, 'think the most': 885641, 'most annoying and': 542103, 'annoying and frustrating': 77362, 'and frustrating thing': 63380, 'frustrating thing iv': 339257, 'thing iv seen': 884502, 'iv seen working': 464044, 'seen working in': 747362, 'retail is all': 718238, 'all the scared': 44899, 'the scared people': 866453, 'scared people wasting': 741008, 'people wasting precious': 650148, 'wasting precious ppe': 968325, 'precious ppe to': 669478, 'ppe to come': 668083, 'to come hoard': 903032, 'come hoard and': 187344, 'hoard and buy': 398752, 'buy food they': 148680, 'food they dont': 317168, 'they dont need': 882013, 'dont need panic': 255259, 'need panic buying': 555408, 'this is wasted': 888458, 'is wasted item': 453774, 'wasted item doctor': 968246, 'item doctor and': 463214, 'and nurse can': 67887, 'nurse can use': 577238, 'can use that': 160104, 'use that are': 949641, 'that are on': 842790, 'news publix': 560721, 'in georgia': 423264, 'georgia test': 346048, 'rt news publix': 726785, 'news publix store': 560722, 'publix store associate': 688776, 'store associate in': 806565, 'associate in georgia': 96880, 'in georgia test': 423266, 'georgia test positive': 346049, 'eep': 268932, 'eep are': 268933, 'you working': 1022430, 'suffering especially': 817297, 'of victim': 592797, 'victim for': 956472, 'now hospital': 574950, 'malaysia still': 511632, 'giving lot': 351337, 'eep are you': 268934, 'are you working': 91882, 'you working at': 1022431, 'at supermarket sorry': 100770, 'supermarket sorry to': 822787, 'hear that hospital': 387990, 'that hospital in': 844371, 'hospital in are': 404464, 'in are suffering': 420484, 'are suffering especially': 90628, 'suffering especially with': 817298, 'especially with the': 280676, 'number of victim': 577014, 'of victim for': 592798, 'victim for now': 956473, 'for now hospital': 323972, 'now hospital in': 574951, 'hospital in malaysia': 404471, 'in malaysia still': 425015, 'malaysia still can': 511633, 'still can manage': 800335, 'can manage the': 158967, 'manage the covid': 512437, '19 patient and': 9587, 'patient and government': 644132, 'and government are': 63877, 'are giving lot': 86859, 'profit organisation': 682832, 'organisation ha': 619265, 'non profit organisation': 566474, 'profit organisation ha': 682833, 'organisation ha opened': 619266, 'in guelph': 423468, 'guelph on': 367943, 'morning ontario': 541397, 'price in guelph': 674691, 'in guelph on': 423469, 'guelph on this': 367944, 'on this morning': 604622, 'this morning ontario': 888996, 'bifurcated': 129605, 'need bifurcated': 554538, 'bifurcated system': 129606, 'our elder': 622861, 'elder so': 270547, 'don suffer': 253943, 'suffer more': 817220, 'aussie supermarket': 103138, 'chain woolworth': 171255, 'woolworth hold': 1004417, 'hold elderly': 399914, 'elderly hour': 270704, 'hour panic': 405844, 'we need bifurcated': 972471, 'need bifurcated system': 554539, 'bifurcated system for': 129607, 'system for our': 831172, 'for our elder': 324232, 'our elder so': 622862, 'elder so they': 270548, 'so they don': 778469, 'they don suffer': 882003, 'don suffer more': 253944, 'suffer more aussie': 817221, 'more aussie supermarket': 538685, 'aussie supermarket chain': 103139, 'supermarket chain woolworth': 819647, 'chain woolworth hold': 171256, 'woolworth hold elderly': 1004418, 'hold elderly hour': 399915, 'elderly hour panic': 270705, 'hour panic buying': 405845, 'bt21': 141487, 'wts': 1013429, 'sg': 754272, 'sgd': 754278, 'help rt': 390469, 'rt bt21': 726747, 'bt21 baby': 141488, 'baby wts': 106747, 'wts sg': 1013430, 'sg only': 754275, 'grab too': 361551, 'much stuff': 545331, 'from line': 336223, 'line collection': 493034, 'collection item': 186442, 'item have': 463316, 'have yet': 383649, 'shipped and': 758795, 'delay are': 232674, 'be expected': 114731, 'expected due': 290887, 'situation price': 772452, 'in sgd': 427845, 'sgd no': 754279, 'no 2nd': 563565, '2nd payment': 16797, 'payment dm': 645600, 'if interested': 414269, 'interested payment': 441478, 'in within': 430951, 'help rt bt21': 390470, 'rt bt21 baby': 726748, 'bt21 baby wts': 141489, 'baby wts sg': 106748, 'wts sg only': 1013431, 'sg only grab': 754276, 'only grab too': 610540, 'grab too much': 361553, 'too much stuff': 924945, 'much stuff from': 545333, 'stuff from line': 815076, 'from line collection': 336224, 'line collection item': 493035, 'collection item have': 186443, 'item have yet': 463323, 'have yet to': 383650, 'yet to be': 1016285, 'to be shipped': 901536, 'be shipped and': 117140, 'shipped and delay': 758796, 'and delay are': 61067, 'delay are to': 232676, 'to be expected': 901243, 'be expected due': 114732, 'expected due to': 290888, '19 situation price': 10587, 'situation price listed': 772453, 'listed in sgd': 494626, 'in sgd no': 427846, 'sgd no 2nd': 754280, 'no 2nd payment': 563566, '2nd payment dm': 16798, 'payment dm if': 645601, 'dm if interested': 248896, 'if interested payment': 414270, 'interested payment to': 441479, 'payment to be': 645762, 'be in within': 115449, 'in within 24': 430952, 'there something': 879074, 'your app': 1022796, 'app toiletpaper': 81785, 'there something wrong': 879078, 'something wrong with': 785155, 'wrong with your': 1013170, 'with your app': 1002178, 'your app toiletpaper': 1022797, 'foodbusiness': 317877, 'altered consumer': 49162, 'beverage manufacturer': 129015, 'manufacturer well': 513541, 'well retailer': 978523, 'retailer scrambling': 719308, 'pace foodbusiness': 632929, 'altered consumer purchasing': 49163, 'purchasing behavior in': 689842, 'of the spreading': 591484, 'the spreading coronavirus': 867648, 'spreading coronavirus outbreak': 790954, 'outbreak ha food': 628266, 'ha food and': 370646, 'and beverage manufacturer': 58930, 'beverage manufacturer well': 129016, 'manufacturer well retailer': 513542, 'well retailer scrambling': 978524, 'retailer scrambling to': 719309, 'scrambling to keep': 742568, 'keep pace foodbusiness': 471772, 'awaiting': 105544, '4m': 19484, 'is awaiting': 445932, 'awaiting the': 105553, 'first comedian': 308580, 'comedian to': 187730, 'do walking': 250451, 'walking down': 965050, 'street or': 813056, 'whilst wearing': 987707, 'wearing 4m': 974581, '4m frame': 19485, 'frame video': 330945, 'video one': 956853, 'it coming': 457218, 'coming it': 188118, 'if but': 413914, 'one is awaiting': 606502, 'is awaiting the': 445933, 'awaiting the first': 105554, 'the first comedian': 855290, 'first comedian to': 308581, 'comedian to do': 187731, 'to do walking': 904582, 'do walking down': 250452, 'walking down the': 965052, 'the street or': 868241, 'street or in': 813058, 'or in supermarket': 615762, 'in supermarket whilst': 428714, 'supermarket whilst wearing': 823851, 'whilst wearing 4m': 987708, 'wearing 4m frame': 974582, '4m frame video': 19486, 'frame video one': 330946, 'video one know': 956854, 'one know it': 606561, 'know it coming': 476523, 'it coming it': 457220, 'coming it not': 188119, 'not if but': 570047, 'if but when': 413915, 'cannabiscommunity cannabis': 161463, 'cannabis marijuana': 161419, 'marijuana the': 515727, 'team behind': 835603, 'behind windsor': 124755, 'windsor first': 995752, 'first legal': 308756, 'legal cannabis': 485846, 'cannabis retail': 161435, 'working toward': 1009015, 'toward opening': 927144, 'opening their': 612914, 'their shop': 874699, 'week despite': 976150, 'despite ongoing': 238804, 'pandemic representative': 636336, 'representative for': 712900, 'supply ho': 825370, 'cannabiscommunity cannabis marijuana': 161464, 'cannabis marijuana the': 161420, 'marijuana the team': 515728, 'the team behind': 869202, 'team behind windsor': 835604, 'behind windsor first': 124756, 'windsor first legal': 995753, 'first legal cannabis': 308757, 'legal cannabis retail': 485847, 'cannabis retail store': 161438, 'store is working': 808548, 'is working toward': 454052, 'working toward opening': 1009017, 'toward opening their': 927145, 'opening their shop': 612915, 'their shop this': 874705, 'shop this week': 760930, 'this week despite': 891207, 'week despite ongoing': 976153, 'despite ongoing concern': 238806, 'ongoing concern about': 607606, 'about the global': 26404, '19 pandemic representative': 9447, 'pandemic representative for': 636337, 'representative for supply': 712901, 'for supply ho': 326048, 'brentwood': 139373, 'haveing': 383732, 'saveworkers': 737832, 'stlblues': 801726, 'stlouis': 801730, 'stl': 801723, 'day sale': 228296, 'you always': 1016949, 'always wanted': 49783, 'wanted really': 966229, 'really nice': 702451, 'nice bed': 562351, 'bed but': 120388, 'but didn': 145531, 'pay tag': 645129, 'tag price': 831766, 'well now': 978425, 'you chance': 1017913, 'in brentwood': 420960, 'brentwood is': 139374, 'is haveing': 448321, 'haveing floor': 383733, 'model blow': 535233, 'blow out': 133335, 'sale come': 732129, 'come get': 187322, 'your better': 1022954, 'better sleep': 128466, 'sleep today': 773802, 'today saveworkers': 920136, 'saveworkers stlblues': 737833, 'stlblues stlouis': 801727, 'stlouis stl': 801737, 'end of day': 275895, 'of day sale': 582382, 'day sale have': 228297, 'sale have you': 732273, 'have you always': 383653, 'you always wanted': 1016953, 'always wanted really': 49784, 'wanted really nice': 966230, 'really nice bed': 702452, 'nice bed but': 562352, 'bed but didn': 120389, 'but didn want': 145535, 'to pay tag': 911562, 'pay tag price': 645130, 'tag price well': 831767, 'price well now': 677426, 'well now is': 978427, 'now is you': 575092, 'is you chance': 454122, 'you chance in': 1017914, 'chance in brentwood': 171735, 'in brentwood is': 420961, 'brentwood is haveing': 139375, 'is haveing floor': 448322, 'haveing floor model': 383734, 'floor model blow': 310824, 'model blow out': 535234, 'blow out sale': 133336, 'out sale come': 627137, 'sale come get': 732130, 'come get your': 187324, 'get your better': 348691, 'your better sleep': 1022955, 'better sleep today': 128467, 'sleep today saveworkers': 773803, 'today saveworkers stlblues': 920137, 'saveworkers stlblues stlouis': 737834, 'stlblues stlouis stl': 801728, 'consumption worldwide': 199971, 'worldwide ha': 1010363, 'about 30': 24693, '30 due': 17033, 'killed more': 474604, 'worldwide and': 1010313, 'and forced': 63176, 'forced business': 328561, 'government into': 360236, 'fuel consumption worldwide': 340147, 'consumption worldwide ha': 199972, 'worldwide ha dropped': 1010364, 'ha dropped by': 370460, 'dropped by about': 260552, 'by about 30': 151729, 'about 30 due': 24695, '30 due to': 17034, '19 pandemic which': 9523, 'pandemic which ha': 636985, 'which ha killed': 985888, 'ha killed more': 371082, 'killed more than': 474605, 'than 100 00': 840155, 'people worldwide and': 650525, 'worldwide and forced': 1010316, 'and forced business': 63177, 'forced business and': 328562, 'business and government': 143307, 'and government into': 63885, 'government into lockdown': 360237, 'maxing': 520851, 'worse do': 1010915, 'do foresee': 249321, 'foresee people': 329051, 'people maxing': 648748, 'maxing out': 520852, 'their credit': 872917, 'etc out': 282694, 'buying having': 150472, 'having no': 384188, 'no intention': 564511, 'intention of': 441150, 'back these': 107332, 'these credit': 879827, 'card loan': 163573, 'already stretching': 47691, 'stretching it': 813587, 'crisis economics': 217332, 'economics finance': 267451, 'this go on': 887715, 'go on or': 353889, 'on or get': 602539, 'or get worse': 615437, 'get worse do': 348649, 'worse do foresee': 1010916, 'do foresee people': 249322, 'foresee people maxing': 329052, 'people maxing out': 648749, 'maxing out their': 520853, 'out their credit': 627449, 'their credit card': 872918, 'credit card to': 216355, 'card to buy': 163677, 'buy food etc': 148645, 'food etc out': 314404, 'etc out of': 282695, 'panic buying having': 637758, 'buying having no': 150473, 'having no intention': 384190, 'no intention of': 564512, 'intention of paying': 441151, 'of paying back': 587836, 'paying back these': 645392, 'back these credit': 107333, 'these credit card': 879828, 'credit card loan': 216342, 'card loan people': 163574, 'loan people were': 497503, 'people were already': 650194, 'were already stretching': 979310, 'already stretching it': 47692, 'stretching it before': 813588, 'it before this': 456814, 'before this crisis': 123227, 'this crisis economics': 887036, 'crisis economics finance': 217333, 'food depot': 314187, 'in baltimore': 420683, 'maryland is': 518206, 'food tissue': 317225, 'most state': 542767, 'during an': 262441, 'considered violation': 195345, 'unfair or': 941427, 'or deceptive': 614908, 'food depot in': 314188, 'depot in baltimore': 237533, 'in baltimore maryland': 420684, 'baltimore maryland is': 109128, 'maryland is raising': 518209, 'is raising the': 451215, 'of food tissue': 583801, 'food tissue and': 317226, 'tissue and toilet': 899126, 'paper in most': 640326, 'in most state': 425471, 'most state price': 542768, 'state price gouging': 795870, 'gouging during an': 359308, 'during an emergency': 262443, 'emergency is considered': 272759, 'is considered violation': 446753, 'considered violation of': 195346, 'of the unfair': 591570, 'the unfair or': 870384, 'unfair or deceptive': 941428, 'or deceptive trade': 614910, 'ovation': 629743, 'uk opened': 938592, 'opened up': 612775, 'early exclusively': 264594, 'all stood': 44477, 'stood in': 804376, 'line giving': 493131, 'them standing': 876316, 'standing ovation': 793799, 'ovation and': 629744, 'and flower': 62994, 'flower they': 311336, 'they walked': 883700, 'walked in': 964948, 'the uk opened': 870257, 'uk opened up': 938593, 'opened up early': 612776, 'up early exclusively': 944769, 'early exclusively for': 264595, 'exclusively for healthcare': 289716, 'worker the employee': 1007926, 'the employee all': 854252, 'employee all stood': 273535, 'all stood in': 44478, 'stood in line': 804377, 'in line giving': 424753, 'line giving them': 493132, 'giving them standing': 351427, 'them standing ovation': 876317, 'standing ovation and': 793800, 'ovation and flower': 629745, 'and flower they': 62996, 'flower they walked': 311337, 'they walked in': 883701, 'sat here': 736897, 'here online': 393420, 'my upcoming': 550462, 'upcoming event': 946789, 'cancelled thanks': 161172, 'sat here online': 736898, 'here online shopping': 393422, 'online shopping when': 609340, 'shopping when all': 764374, 'when all my': 983129, 'all my upcoming': 43573, 'my upcoming event': 550463, 'upcoming event have': 946790, 'event have been': 284990, 'been cancelled thanks': 120795, 'cancelled thanks covid': 161173, 'paralyzes': 641362, 'new polling': 559309, 'polling result': 663878, 'from hispanic': 335818, 'hispanic consumer': 397932, 'confidence plummet': 193928, 'plummet paralyzes': 661302, 'paralyzes the': 641363, 'country economics': 210598, 'economics hispanic': 267455, 'new polling result': 559310, 'polling result from': 663879, 'result from hispanic': 717509, 'from hispanic consumer': 335819, 'hispanic consumer confidence': 397933, 'consumer confidence plummet': 196912, 'confidence plummet paralyzes': 193932, 'plummet paralyzes the': 661303, 'paralyzes the country': 641364, 'the country economics': 852067, 'country economics hispanic': 210599, 'off just': 593939, 'doe with': 251671, 'with flu': 998465, 'flu retail': 311449, 'are surviving': 90680, 'surviving without': 829378, 'glove tell': 352938, 'tell it': 836993, 'healthy immune system': 387665, 'system will fight': 831380, 'fight off just': 304814, 'off just like': 593941, 'just like it': 469148, 'like it doe': 490530, 'it doe with': 457620, 'doe with flu': 251672, 'with flu retail': 998466, 'flu retail store': 311450, 'retail store worker': 718733, 'worker are surviving': 1006430, 'are surviving without': 90682, 'surviving without mask': 829379, 'and glove tell': 63738, 'glove tell it': 352939, 'tell it like': 836995, 'like it is': 490541, 'it is lockdown': 459003, 'outhouse': 628980, 'conduct business': 193637, 'business play': 144231, 'play fun': 659151, 'fun communication': 341149, 'communication and': 189576, 'the outhouse': 862738, 'outhouse stuff': 628983, 'later stayhome': 481118, 'toiletpapergate hoarding': 923157, 'hoarding bcpoli': 399208, 'cdnpoli stayathome': 168667, 'stay in house': 797048, 'in house and': 423843, 'house and conduct': 406174, 'and conduct business': 60271, 'conduct business play': 193639, 'business play fun': 144232, 'play fun communication': 659152, 'fun communication and': 341150, 'communication and save': 189577, 'save the outhouse': 737664, 'the outhouse stuff': 862739, 'outhouse stuff for': 628984, 'stuff for later': 815071, 'for later stayhome': 322897, 'later stayhome toiletpaper': 481119, 'stayhome toiletpaper toiletpapergate': 798215, 'toiletpaper toiletpapergate hoarding': 922683, 'toiletpapergate hoarding bcpoli': 923158, 'hoarding bcpoli cdnpoli': 399209, 'bcpoli cdnpoli stayathome': 113360, 'swoop': 830619, 'today middle': 919880, 'aged white': 37956, 'man stole': 512253, 'stole toilet': 804281, 'paper out': 640561, 'aunt shopping': 103006, 'cart when': 165419, 'opening her': 612841, 'car he': 163122, 'he asked': 384752, 'her where': 392523, 'got them': 358922, 'then swoop': 877592, 'swoop all': 830620, 'all too': 45267, 'much dobetter': 544836, 'today middle aged': 919881, 'middle aged white': 530619, 'aged white man': 37957, 'white man stole': 987871, 'man stole toilet': 512254, 'stole toilet paper': 804282, 'toilet paper out': 921380, 'paper out of': 640562, 'out of my': 626793, 'of my aunt': 586732, 'my aunt shopping': 547354, 'aunt shopping cart': 103007, 'shopping cart when': 762322, 'cart when she': 165420, 'when she wa': 984007, 'she wa outside': 756422, 'wa outside of': 962887, 'store opening her': 809279, 'opening her car': 612842, 'her car he': 391916, 'car he asked': 163123, 'he asked her': 384753, 'asked her where': 95760, 'her where she': 392524, 'where she got': 985164, 'she got them': 756062, 'got them and': 358923, 'them and then': 875404, 'and then swoop': 73814, 'then swoop all': 877593, 'swoop all too': 830621, 'all too much': 45268, 'too much dobetter': 924918, 'you rushed': 1020967, 'rushed out': 728362, 'but poop': 146821, 'poop so': 664069, 'much at': 544736, 'wa locked': 962581, 'locked and': 500463, 'and loaded': 66277, 'loaded from': 497309, 'beginning who': 123690, 'who am': 988064, 'am kidding': 50165, 'kidding nearly': 474211, 'nearly through': 553863, 'roll had': 725324, 'had when': 373796, 'all began': 42165, 'began toiletpaperpanic': 123450, 'of you rushed': 593417, 'you rushed out': 1020968, 'rushed out to': 728363, 'up on toiletpaper': 945634, 'on toiletpaper but': 604786, 'toiletpaper but poop': 921831, 'but poop so': 146822, 'poop so much': 664070, 'so much at': 777760, 'much at work': 544741, 'at work wa': 101626, 'work wa locked': 1005975, 'wa locked and': 962582, 'locked and loaded': 500464, 'and loaded from': 66278, 'loaded from the': 497310, 'from the beginning': 337614, 'the beginning who': 849439, 'beginning who am': 123691, 'who am kidding': 988066, 'am kidding nearly': 50166, 'kidding nearly through': 474212, 'nearly through the': 553864, 'through the one': 894757, 'the one roll': 862220, 'one roll had': 606974, 'roll had when': 725325, 'had when this': 373798, 'when this all': 984300, 'this all began': 886262, 'all began toiletpaperpanic': 42166, 'began toiletpaperpanic 19': 123451, 'finglas': 307835, 'knocked': 476170, 'finglas public': 307836, 'announcement the': 77210, 'am queuing': 50333, 'busy updating': 145004, 'medium will': 527354, 'get knocked': 347460, 'knocked out': 476173, 'out do': 625966, 'your male': 1024769, 'male or': 511687, 'or female': 615292, 'female thank': 303512, 'finglas public service': 307837, 'service announcement the': 752126, 'announcement the next': 77211, 'next person to': 561507, 'person to walk': 652664, 'walk into me': 964818, 'into me while': 442749, 'me while am': 523958, 'while am queuing': 986601, 'am queuing at': 50334, 'the checkout in': 850764, 'checkout in supermarket': 174936, 'in supermarket because': 428564, 'they are too': 881437, 'are too busy': 91136, 'too busy updating': 924626, 'busy updating their': 145005, 'updating their social': 947492, 'their social medium': 874745, 'social medium will': 779895, 'medium will get': 527355, 'will get knocked': 993509, 'get knocked out': 347462, 'knocked out do': 476174, 'out do not': 625967, 'care if your': 164018, 'if your male': 415594, 'your male or': 1024770, 'male or female': 511688, 'or female thank': 615293, 'female thank you': 303513, 'it false': 457942, 'false comfort': 297413, 'comfort due': 187825, 'to epidemic': 905236, 'epidemic lockdown': 279412, 'lockdown effect': 499333, 'effect imposed': 269012, 'imposed by': 419278, 'consumption demand': 199856, 'way heading': 969621, 'heading south': 385954, 'south the': 786786, 'the storage': 867967, 'capacity reaching': 162566, 'reaching full': 700085, 'full level': 340660, 'level so': 487712, 'go crashing': 353428, 'crashing down': 215108, 'it false comfort': 457943, 'false comfort due': 297414, 'comfort due to': 187826, 'due to epidemic': 261772, 'to epidemic lockdown': 905237, 'epidemic lockdown effect': 279413, 'lockdown effect imposed': 499334, 'effect imposed by': 269013, 'imposed by many': 419279, 'by many country': 153160, 'many country the': 513949, 'country the consumption': 211125, 'the consumption demand': 851637, 'consumption demand are': 199857, 'demand are any': 235021, 'are any way': 84581, 'any way heading': 80036, 'way heading south': 969622, 'heading south the': 385955, 'south the storage': 786787, 'the storage capacity': 867969, 'storage capacity reaching': 805958, 'capacity reaching full': 162567, 'reaching full level': 700086, 'full level so': 340661, 'level so will': 487715, 'so will the': 778778, 'will the price': 995153, 'price go crashing': 674201, 'go crashing down': 353429, 'crashing down to': 215109, 'nincompoop': 563270, 'try going': 934484, 'you approach': 1017042, 'approach the': 82975, 'some nincompoop': 783357, 'nincompoop run': 563271, 'cough right': 208543, 'face joke': 294487, 'joke fortunately': 467080, 'fortunately am': 329911, 'am past': 50297, 'the waiting': 871031, '19 almost': 4914, 'almost called': 46566, 'called th': 156452, 'try going to': 934485, 'store and just': 806273, 'and just you': 65733, 'just you approach': 470379, 'you approach the': 1017043, 'approach the door': 82976, 'the door have': 853566, 'door have some': 255612, 'have some nincompoop': 382634, 'some nincompoop run': 783358, 'nincompoop run up': 563272, 'run up to': 727857, 'you and cough': 1016983, 'and cough right': 60605, 'cough right in': 208544, 'right in your': 721958, 'in your face': 431079, 'your face joke': 1023749, 'face joke fortunately': 294488, 'joke fortunately am': 467081, 'fortunately am past': 329912, 'am past the': 50298, 'past the waiting': 643621, 'the waiting period': 871032, 'waiting period and': 964377, 'period and did': 651708, 'and did not': 61317, 'did not get': 240714, 'not get covid': 569582, 'covid 19 almost': 212612, '19 almost called': 4915, 'almost called th': 46567, 'indefinitely': 434033, '2lbs': 16654, 'in office': 426064, 'office cafeteria': 595384, 'cafeteria they': 155149, 'closing indefinitely': 183663, 'indefinitely because': 434038, 'because folk': 119062, 'can wfh': 160214, 'wfh are': 980831, 'risk so': 723885, 'so rather': 778110, 'food go': 314675, 'go bad': 353354, 'bad they': 108037, 'they sold': 883412, 'sold veggie': 781799, 'veggie bread': 954176, 'and bacon': 58622, 'bacon in': 107635, 'employee egg': 273810, 'egg veggie': 270021, 'veggie went': 954224, 'went fast': 978994, 'fast but': 299923, 'but grabbed': 145821, 'grabbed 2lbs': 361561, '2lbs of': 16655, 'of bacon': 580499, 'our in office': 623511, 'in office cafeteria': 426065, 'office cafeteria they': 595385, 'cafeteria they re': 155150, 're closing indefinitely': 698432, 'closing indefinitely because': 183664, 'indefinitely because folk': 434039, 'because folk who': 119063, 'folk who can': 312299, 'who can wfh': 988413, 'can wfh are': 160215, 'wfh are and': 980832, 'are and to': 84551, 'and to avoid': 74152, '19 risk so': 10246, 'risk so rather': 723886, 'so rather than': 778111, 'than just let': 840817, 'just let the': 469135, 'let the food': 487127, 'the food go': 855554, 'food go bad': 314676, 'go bad they': 353357, 'bad they sold': 108038, 'they sold veggie': 883414, 'sold veggie bread': 781800, 'veggie bread egg': 954177, 'egg and bacon': 269756, 'and bacon in': 58623, 'bacon in stock': 107637, 'stock to employee': 802994, 'to employee egg': 905021, 'employee egg veggie': 273811, 'egg veggie went': 270022, 'veggie went fast': 954225, 'went fast but': 978995, 'fast but grabbed': 299926, 'but grabbed 2lbs': 145822, 'grabbed 2lbs of': 361562, '2lbs of bacon': 16656, 'eastfruit': 265624, 'for lemon': 322941, 'lemon and': 486174, 'and ginger': 63652, 'ginger in': 350201, 'russia skyrocket': 728573, 'skyrocket due': 773301, 'to myth': 910461, 'myth that': 551058, 'will save': 994738, 'the eastfruit': 853856, 'price for lemon': 673988, 'for lemon and': 322942, 'lemon and ginger': 486175, 'and ginger in': 63655, 'ginger in russia': 350202, 'in russia skyrocket': 427592, 'russia skyrocket due': 728574, 'skyrocket due to': 773302, 'due to myth': 261872, 'to myth that': 910462, 'myth that it': 551059, 'it will save': 462436, 'will save from': 994740, 'save from the': 737513, 'from the eastfruit': 337678, 'mez': 530049, 'cornelldyson': 203633, 'chain professor': 171014, 'professor mez': 682567, 'mez cornelldyson': 530050, 'supply chain professor': 825012, 'chain professor mez': 171015, 'professor mez cornelldyson': 682568, 'officedelivery': 595607, 'simple process': 770076, 'process are': 679883, 'our aim': 622042, 'shopping shipping': 763860, 'shipping experience': 758846, 'experience great': 291374, 'great corona': 362587, 'corona homedelivery': 203997, 'homedelivery delivery': 402674, 'delivery simple': 234495, 'simple great': 770032, 'great experience': 362665, 'experience officedelivery': 291442, 'officedelivery jamaica': 595608, 'jamaica usa': 464376, 'usa worldwide': 948796, 'worldwide courier': 1010338, 'courier shipping': 211823, 'simple process are': 770077, 'process are our': 679884, 'are our aim': 88853, 'our aim to': 622043, 'aim to make': 39555, 'make your shopping': 510769, 'your shopping shipping': 1025792, 'shopping shipping experience': 763861, 'shipping experience great': 758847, 'experience great corona': 291375, 'great corona homedelivery': 362588, 'corona homedelivery delivery': 203998, 'homedelivery delivery simple': 402675, 'delivery simple great': 234496, 'simple great experience': 770033, 'great experience officedelivery': 362667, 'experience officedelivery jamaica': 291443, 'officedelivery jamaica usa': 595609, 'jamaica usa worldwide': 464377, 'usa worldwide courier': 948797, 'worldwide courier shipping': 1010339, 'channel4news': 172959, 'eurospin': 283626, 'ffs channel4news': 304299, 'channel4news wa': 172960, 'that eurospin': 843728, 'eurospin sign': 283627, 'sign by': 769100, 'that spanish': 846423, 'spanish supermarket': 787413, 'queue today': 694104, 'today why': 920537, 'real news': 701277, 'on italy': 601701, 'spain pandemic': 787334, 'pandemic nb': 636009, 'nb the': 553197, 'is pakistani': 450779, 'pakistani wa': 634532, 'wa delivering': 961942, 'delivering chinese': 233476, 'ffs channel4news wa': 304300, 'channel4news wa that': 172961, 'wa that eurospin': 963430, 'that eurospin sign': 843729, 'eurospin sign by': 283628, 'sign by that': 769101, 'by that spanish': 154251, 'that spanish supermarket': 846424, 'spanish supermarket queue': 787416, 'supermarket queue today': 822137, 'queue today why': 694106, 'today why do': 920538, 'not you give': 572610, 'you give the': 1018832, 'give the real': 350750, 'the real news': 865227, 'real news on': 701278, 'news on italy': 560667, 'on italy spain': 601702, 'italy spain pandemic': 462919, 'spain pandemic nb': 787335, 'pandemic nb the': 636010, 'nb the fact': 553198, 'fact is pakistani': 295737, 'is pakistani wa': 450780, 'pakistani wa delivering': 634533, 'wa delivering chinese': 961943, 'flint': 310589, 'you upset': 1021993, 'line price': 493362, 'essential being': 280827, 'being raised': 125630, 'raised for': 696000, 'store running': 809938, 'survive flint': 829166, 'flint resident': 310592, 'resident have': 714309, 'been dealing': 120919, 'feeling for': 302988, 'year when': 1015095, 'are you upset': 91876, 'you upset about': 1021994, 'upset about standing': 947797, 'long line price': 501503, 'line price on': 493363, 'on essential being': 600581, 'essential being raised': 280828, 'being raised for': 125631, 'raised for profit': 696001, 'for profit and': 324788, 'profit and store': 682660, 'and store running': 72514, 'store running out': 809941, 'of the item': 591160, 'the item you': 858618, 'item you need': 463867, 'to survive flint': 916028, 'survive flint resident': 829167, 'flint resident have': 310593, 'resident have been': 714310, 'have been dealing': 379502, 'been dealing with': 120920, 'dealing with this': 229697, 'with this feeling': 1001697, 'this feeling for': 887534, 'feeling for almost': 302989, 'for almost year': 319215, 'almost year when': 46776, 'year when it': 1015097, 'come to water': 187614, 'incredible snapshot': 433867, 'on airfare': 599198, 'price travel': 677112, 'travel airline': 930243, 'this is an': 888175, 'an incredible snapshot': 56261, 'incredible snapshot of': 433868, 'the effect the': 854070, 'effect the coronavirus': 269121, 'the coronavirus had': 851863, 'coronavirus had on': 206049, 'had on airfare': 373358, 'on airfare price': 599199, 'airfare price travel': 39899, 'price travel airline': 677113, 'alpinia': 47163, 'galanga': 342913, 'mosquito': 542031, 'repelling': 711555, 'shallot': 754562, 'anise': 76743, 'boil': 134046, 'thirsty': 886132, 'the ancient': 848675, 'ancient herbal': 57324, 'herbal medicine': 392582, 'treat and': 930801, 'and prevents': 69432, 'prevents the': 671941, 'is ginger': 448054, 'ginger alpinia': 350182, 'alpinia galanga': 47164, 'galanga mosquito': 342914, 'mosquito repelling': 542040, 'repelling lemon': 711556, 'lemon grass': 486182, 'grass garlic': 362218, 'garlic shallot': 343688, 'shallot star': 754565, 'star anise': 794028, 'anise just': 76744, 'just chop': 468479, 'chop to': 177959, 'small price': 775071, 'and boil': 59048, 'boil then': 134051, 'then drink': 877137, 'drink while': 258900, 'while it': 986966, 'it warm': 462243, 'warm drink': 966873, 'drink when': 258898, 'are thirsty': 91048, 'the ancient herbal': 848676, 'ancient herbal medicine': 57325, 'herbal medicine to': 392583, 'medicine to treat': 526912, 'to treat and': 917741, 'treat and prevents': 930802, 'and prevents the': 69433, 'prevents the covid': 671942, '19 here it': 7513, 'it is ginger': 458961, 'is ginger alpinia': 448055, 'ginger alpinia galanga': 350183, 'alpinia galanga mosquito': 47165, 'galanga mosquito repelling': 342915, 'mosquito repelling lemon': 542041, 'repelling lemon grass': 711557, 'lemon grass garlic': 486183, 'grass garlic shallot': 362219, 'garlic shallot star': 343689, 'shallot star anise': 754566, 'star anise just': 794029, 'anise just chop': 76745, 'just chop to': 468480, 'chop to small': 177960, 'to small price': 914762, 'small price and': 775072, 'price and boil': 672371, 'and boil then': 59049, 'boil then drink': 134052, 'then drink while': 877138, 'drink while it': 258901, 'while it warm': 986976, 'it warm drink': 462244, 'warm drink when': 966874, 'drink when you': 258899, 'you are thirsty': 1017264, 'respite': 715264, 'from delay': 335121, 'delay brings': 232681, 'brings consumer': 140234, 'company respite': 191020, 'respite amid': 715265, 'amid disruption': 52449, 'from delay brings': 335122, 'delay brings consumer': 232682, 'brings consumer company': 140235, 'consumer company respite': 196837, 'company respite amid': 191021, 'respite amid disruption': 715267, 'applestore': 82401, 'extendedreturn': 293214, 'apple offer': 82349, 'offer extended': 594603, 'extended two': 293207, 'week return': 976826, 'return program': 719888, 'to apple': 900647, 'crisis apple': 217072, 'apple health': 82328, 'health applestore': 386171, 'applestore retail': 82402, 'retail location': 718278, 'location return': 498956, 'return extendedreturn': 719835, 'extendedreturn extension': 293215, 'apple offer extended': 82350, 'offer extended two': 594604, 'extended two week': 293208, 'two week return': 937359, 'week return program': 976827, 'return program for': 719889, 'program for return': 683248, 'for return to': 325211, 'return to apple': 719911, 'to apple store': 900648, 'apple store during': 82367, 'store during coronavirus': 807400, 'coronavirus crisis apple': 205738, 'crisis apple health': 217073, 'apple health applestore': 82329, 'health applestore retail': 386172, 'applestore retail location': 82403, 'retail location return': 718287, 'location return extendedreturn': 498957, 'return extendedreturn extension': 719836, 'underline': 940457, 'interesting data': 441536, 'data point': 226343, 'too early': 924703, 'on long': 601931, 'effect these': 269130, 'likely previous': 492081, 'previous cruise': 671962, 'cruise passenger': 219701, 'passenger responding': 643339, 'sale it': 732315, 'it underline': 461920, 'underline the': 940458, 'maintaining trust': 509144, 'interesting data point': 441538, 'data point on': 226346, 'consumer behavior it': 196489, 'behavior it too': 124109, 'it too early': 461789, 'too early to': 924706, 'early to call': 264727, 'to call on': 902383, 'call on long': 156038, 'on long term': 601933, 'term effect these': 838135, 'effect these are': 269131, 'these are likely': 879623, 'are likely previous': 87803, 'likely previous cruise': 492082, 'previous cruise passenger': 671963, 'cruise passenger responding': 219702, 'passenger responding to': 643340, 'to the sale': 917034, 'the sale it': 866178, 'sale it underline': 732318, 'it underline the': 461921, 'underline the importance': 940459, 'importance of building': 418696, 'of building and': 580926, 'building and maintaining': 142048, 'and maintaining trust': 66536, 'planning after': 658507, 'southeast need': 786839, 'need unique': 556148, 'unique from': 941980, 'photo now': 655196, 'sterling for': 799897, 'price 561': 672166, 'planning after the': 658508, 'the end in': 854303, 'end in southeast': 275847, 'in southeast need': 428143, 'southeast need unique': 786840, 'need unique from': 556149, 'unique from your': 941981, 'your photo now': 1025301, 'photo now call': 655197, 'now call jeff': 574323, 'call jeff sterling': 155966, 'jeff sterling for': 465018, 'sterling for price': 799898, 'for price 561': 324712, 'price 561 501': 672167, 'internationaldayofhappiness': 441869, 'outtake': 629718, 'were wondering': 980353, 'for internationaldayofhappiness': 322622, 'internationaldayofhappiness to': 441870, 'you smile': 1021279, 'smile at': 775696, 'and decided': 61009, 'decided our': 230875, 'best bet': 127597, 'bet would': 128126, 'the outtake': 862754, 'outtake from': 629719, 'video fridayfeeling': 956737, 'fridayfeeling fridaythoughts': 333329, 'fridaythoughts stophoarding': 333363, 'we were wondering': 973820, 'were wondering what': 980354, 'wondering what to': 1004195, 'what to post': 982461, 'to post for': 911910, 'post for internationaldayofhappiness': 666133, 'for internationaldayofhappiness to': 322623, 'internationaldayofhappiness to make': 441871, 'to make you': 909767, 'make you smile': 510750, 'you smile at': 1021280, 'smile at this': 775700, 'difficult time and': 242277, 'time and decided': 896265, 'and decided our': 61010, 'decided our best': 230876, 'our best bet': 622189, 'best bet would': 127598, 'bet would be': 128127, 'be the outtake': 117644, 'the outtake from': 862755, 'outtake from our': 629720, 'from our video': 336806, 'our video fridayfeeling': 625268, 'video fridayfeeling fridaythoughts': 956738, 'fridayfeeling fridaythoughts stophoarding': 333330, 'fridaythoughts stophoarding coronacrisis': 333364, 'phylogenetic': 655358, 'adaptation': 31302, 'transmissible': 929720, 'super interesting': 818530, 'interesting phylogenetic': 441585, 'phylogenetic analysis': 655359, 'of sars': 589319, 'cov origin': 212126, 'origin while': 619548, 'it remains': 460701, 'remains unknown': 710079, 'unknown whether': 942550, 'the adaptation': 848338, 'adaptation that': 31305, 'virus so': 958760, 'so transmissible': 778566, 'transmissible occurred': 929721, 'occurred in': 579044, 'in human': 423904, 'human or': 410578, 'an animal': 55310, 'animal host': 76608, 'host the': 404896, 'clearly product': 181543, 'of natural': 586875, 'natural selection': 552865, 'super interesting phylogenetic': 818531, 'interesting phylogenetic analysis': 441586, 'phylogenetic analysis of': 655360, 'analysis of sars': 57068, 'of sars cov': 589320, 'sars cov origin': 736803, 'cov origin while': 212127, 'origin while it': 619549, 'while it remains': 986973, 'it remains unknown': 460703, 'remains unknown whether': 710080, 'unknown whether the': 942551, 'whether the adaptation': 985578, 'the adaptation that': 848339, 'adaptation that made': 31306, 'that made the': 844977, 'made the virus': 508002, 'the virus so': 870891, 'virus so transmissible': 958764, 'so transmissible occurred': 778567, 'transmissible occurred in': 929722, 'occurred in human': 579045, 'in human or': 423906, 'human or an': 410579, 'or an animal': 614311, 'an animal host': 55311, 'animal host the': 76609, 'host the virus': 404897, 'virus is clearly': 958369, 'is clearly product': 446558, 'clearly product of': 181544, 'product of natural': 681455, 'of natural selection': 586877, 'out 26': 625531, '26 lakh': 16170, 'lakh worth': 479123, 'them prank': 876175, 'forced to throw': 328663, 'throw out 26': 895037, 'out 26 lakh': 625532, '26 lakh worth': 16171, 'lakh worth of': 479124, 'after woman coughed': 36557, 'coughed on them': 208635, 'on them prank': 604541, 'business when': 144650, 'online buy': 607974, 'local when': 498694, 'possible consider': 665610, 'consider ordering': 195057, 'takeout from': 833162, 'local brewery': 497740, 'brewery the': 139462, 'situation evolves': 772258, 'evolves rapidly': 288531, 'rapidly please': 697006, 'government guideline': 360130, 'help our business': 390222, 'our business when': 622291, 'business when shopping': 144651, 'shopping online buy': 763416, 'online buy local': 607978, 'buy local when': 148919, 'local when possible': 498695, 'when possible consider': 983893, 'possible consider ordering': 665611, 'consider ordering takeout': 195058, 'ordering takeout from': 619034, 'takeout from restaurant': 833163, 'from restaurant offering': 337092, 'restaurant offering this': 716602, 'offering this service': 595297, 'this service and': 890050, 'service and support': 752111, 'support local brewery': 826619, 'local brewery the': 497742, 'brewery the covid': 139463, '19 situation evolves': 10573, 'situation evolves rapidly': 772259, 'evolves rapidly please': 288532, 'rapidly please follow': 697007, 'please follow government': 660004, 'follow government guideline': 312395, 'excedrin': 289012, 'gouging police': 359430, 'police 200': 662884, '200 for': 13489, 'for excedrin': 321300, 'excedrin seriously': 289013, 'seriously twitter': 751769, 'twitter please': 936702, 'please shame': 660475, 'these sorry': 880706, 'sorry as': 786011, 'as scrub': 94803, 'scrub 19': 742886, 'where are your': 984746, 'are your price': 91896, 'your price gouging': 1025402, 'price gouging police': 674314, 'gouging police 200': 359431, 'police 200 for': 662885, '200 for excedrin': 13491, 'for excedrin seriously': 321301, 'excedrin seriously twitter': 289014, 'seriously twitter please': 751770, 'twitter please shame': 936703, 'please shame these': 660476, 'shame these sorry': 754657, 'these sorry as': 880707, 'sorry as scrub': 786012, 'as scrub 19': 94804, 'supply grocery': 825336, 'spokesman say': 789779, 'public should': 688317, 'panic shortage': 638598, 'are temporary': 90766, 'temporary via': 837719, 'of supply grocery': 590482, 'supply grocery store': 825337, 'store spokesman say': 810284, 'spokesman say public': 789780, 'say public should': 739082, 'public should not': 688319, 'not panic shortage': 570933, 'panic shortage are': 638599, 'shortage are temporary': 764839, 'are temporary via': 90768, 'force member': 328444, 'member say': 528185, 'shopper should': 761684, 'should limit': 766194, 'limit trip': 492544, 'trip this': 932180, 'task force member': 834692, 'force member say': 328445, 'member say shopper': 528186, 'say shopper should': 739135, 'shopper should limit': 761687, 'should limit trip': 766195, 'limit trip this': 492545, 'trip this is': 932181, 'cornavirus': 203606, 'inner': 438791, 'of cornavirus': 581877, 'cornavirus they': 203611, 'risk where': 724016, 'an inner': 56351, 'inner city': 438794, 'city supermarket': 179385, 'in manchester': 425025, 'manchester with': 512968, 'with complex': 997713, 'complex demographic': 192399, 'demographic up': 236799, '19 why': 12065, 'frontline of cornavirus': 338803, 'of cornavirus they': 581878, 'cornavirus they must': 203612, 'must be very': 546557, 'be very high': 117976, 'high risk where': 395378, 'risk where my': 724017, 'where my wife': 985046, 'my wife work': 550610, 'wife work in': 992012, 'in an inner': 420315, 'an inner city': 56352, 'inner city supermarket': 438795, 'city supermarket in': 179387, 'supermarket in manchester': 820927, 'in manchester with': 425028, 'manchester with complex': 512969, 'with complex demographic': 997714, 'complex demographic up': 192400, 'demographic up until': 236800, 'until now not': 943800, 'now not one': 575376, 'not one case': 570761, 'covid 19 why': 214073, 'sahloul': 730927, 'sahloul hear': 730928, 'hear you': 388031, 'montreal where': 538237, 'risk spreading': 723895, 'food immediately': 314908, 'immediately then': 417157, 'are senior': 89981, 'in who': 430889, 'order safely': 618554, 'safely online': 730289, 'wait at': 964080, 'sahloul hear you': 730929, 'hear you in': 388034, 'you in montreal': 1019308, 'in montreal where': 425431, 'montreal where people': 538238, 'people can go': 647392, 'grocery shopping risk': 365076, 'shopping risk spreading': 763779, 'risk spreading covid': 723896, '19 but get': 5502, 'but get food': 145790, 'get food immediately': 347045, 'food immediately then': 314909, 'immediately then there': 417158, 'then there are': 877635, 'there are senior': 878157, 'are senior and': 89982, 'senior and shut': 750210, 'and shut in': 71632, 'shut in who': 767898, 'in who can': 430891, 'who can order': 988399, 'can order safely': 159180, 'order safely online': 618555, 'safely online but': 730290, 'online but have': 607965, 'have to wait': 383334, 'to wait at': 918259, 'wait at least': 964081, 'least week for': 484695, 'primavera': 678097, 'infuriating': 438255, 'allowance': 46113, 'primavera ge': 678098, 'ge heartbreaking': 344925, 'heartbreaking infuriating': 388383, 'infuriating how': 438262, 'how shall': 408653, 'shall elderly': 754529, 'up little': 945332, 'their retirement': 874585, 'retirement allowance': 719702, 'allowance are': 46114, 'small that': 775150, 'not unusual': 572347, 'unusual then': 943998, 'then in': 877258, 'addition the': 31727, 'are emptied': 86127, 'emptied by': 274672, 'to dish': 904393, 'dish out': 245507, 'primavera ge heartbreaking': 678099, 'ge heartbreaking infuriating': 344926, 'heartbreaking infuriating how': 388384, 'infuriating how shall': 438263, 'how shall elderly': 408654, 'shall elderly people': 754530, 'elderly people stock': 270833, 'stock up little': 803095, 'up little food': 945333, 'little food when': 495349, 'food when their': 317572, 'when their retirement': 984218, 'their retirement allowance': 874586, 'retirement allowance are': 719703, 'allowance are too': 46115, 'are too small': 91148, 'too small that': 925068, 'small that not': 775151, 'that not unusual': 845402, 'not unusual then': 572348, 'unusual then in': 943999, 'then in addition': 877259, 'in addition the': 420035, 'addition the shelf': 31728, 'shelf are emptied': 756795, 'are emptied by': 86129, 'emptied by those': 274673, 'by those who': 154541, 'who have enough': 988921, 'enough to dish': 277698, 'to dish out': 904394, 'inside ice': 439281, 'ice lockdown': 412672, 'lockdown face': 499370, 'made of': 507875, 'sock no': 781405, 'growing tension': 367240, 'tension via': 838001, 'inside ice lockdown': 439282, 'ice lockdown face': 412673, 'lockdown face mask': 499371, 'face mask made': 294562, 'mask made of': 518936, 'made of sock': 507878, 'of sock no': 589881, 'sock no hand': 781406, 'sanitizer and growing': 734409, 'and growing tension': 64018, 'growing tension via': 367241, 'coke': 185700, 'oh how': 596408, 'changed at': 172439, '6am used': 21581, 'be sitting': 117203, 'store high': 808153, 'af on': 33958, 'on coke': 599963, 'coke waiting': 185710, 'open now': 612402, 'now sitting': 575837, 'store waiting': 811131, 'buy baby': 148390, 'really missing': 702420, 'missing january': 534309, 'january of': 464671, 'oh how time': 596409, 'have changed at': 379933, 'changed at 6am': 172440, 'at 6am used': 97730, '6am used to': 21582, 'to be sitting': 901544, 'be sitting in': 117204, 'sitting in front': 772119, 'front of liquor': 338642, 'of liquor store': 585882, 'liquor store high': 494204, 'store high af': 808154, 'high af on': 394907, 'af on coke': 33959, 'on coke waiting': 599964, 'coke waiting for': 185711, 'waiting for them': 964339, 'them to open': 876494, 'to open now': 910999, 'open now sitting': 612404, 'now sitting in': 575838, 'front of grocery': 338638, 'grocery store waiting': 365922, 'store waiting to': 811132, 'waiting to buy': 964398, 'to buy baby': 902184, 'buy baby food': 148391, 'paper really missing': 640664, 'really missing january': 702421, 'missing january of': 534310, 'january of 2020': 464672, 'affair make': 34063, 'you them': 1021621, 'them help': 875837, 'others now': 621554, 'need their': 555762, 'their help': 873531, 'help later': 389989, 'let the current': 487123, 'of affair make': 579811, 'affair make you': 34064, 'make you feel': 510736, 'you feel like': 1018539, 'like it you': 490568, 'it you them': 462650, 'you them help': 1021622, 'them help others': 875838, 'help others now': 390211, 'others now because': 621555, 'now because you': 574216, 'because you may': 119872, 'may need their': 521356, 'need their help': 555763, 'their help later': 873533, 'foodshopping during': 318119, 'two restaurant': 937187, 'restaurant wholesaler': 716803, 'wholesaler now': 990523, 'and via': 74946, 'foodshopping during the': 318120, 'during the two': 263211, 'the two restaurant': 870155, 'two restaurant wholesaler': 937188, 'restaurant wholesaler now': 716804, 'wholesaler now open': 990524, 'now open to': 575464, 'public and via': 687861, 'exploring global': 292544, 'global response': 352173, 'to staying': 915349, 'staying well': 798727, 'finding normality': 307511, 'normality in': 567454, 'corona read': 204136, 'corona corona': 203865, 'corona socialdistancing': 204178, 'staysafe wellbeing': 798953, 'wellbeing quarantine': 978799, 'exploring global response': 292545, 'global response to': 352175, 'response to staying': 715884, 'to staying well': 915353, 'staying well and': 798728, 'well and finding': 978015, 'and finding normality': 62901, 'finding normality in': 307512, 'normality in the': 567455, 'of corona read': 581896, 'corona read more': 204137, 'more here 19': 539412, 'here 19 corona': 392647, '19 corona corona': 6049, 'corona corona socialdistancing': 203868, 'corona socialdistancing staysafe': 204181, 'socialdistancing staysafe wellbeing': 780751, 'staysafe wellbeing quarantine': 798954, 'wellbeing quarantine lockdown': 978800, 'substantially': 816065, 'quits': 694945, 'wi': 991634, 'is lying': 449494, 'deficit which': 232258, 'which his': 985935, 'his trade': 397870, 'war hasn': 966451, 'hasn substantially': 378792, 'substantially changed': 816068, 'changed until': 172592, 'until hit': 943738, 'hit trump': 398490, 'trump also': 933397, 'also fails': 48191, 'mention if': 528767, 'the quits': 865074, 'quits importing': 694946, 'importing from': 419225, 'china manufacture': 176815, 'manufacture in': 513375, 'price wi': 677547, 'is lying about': 449495, 'lying about the': 507061, 'about the china': 26351, 'china trade deficit': 177018, 'trade deficit which': 928482, 'deficit which his': 232259, 'which his trade': 985936, 'his trade war': 397872, 'trade war hasn': 928609, 'war hasn substantially': 966452, 'hasn substantially changed': 378793, 'substantially changed until': 816070, 'changed until hit': 172593, 'until hit trump': 943739, 'hit trump also': 398491, 'trump also fails': 933399, 'also fails to': 48192, 'fails to mention': 296250, 'to mention if': 910087, 'mention if the': 528768, 'if the quits': 415021, 'the quits importing': 865075, 'quits importing from': 694947, 'importing from china': 419226, 'from china manufacture': 334866, 'china manufacture in': 176816, 'manufacture in the': 513376, 'the price wi': 864438, 'disabledcovid19': 243988, 'that disabled': 843546, 'disabled for': 243909, 'but stuck': 147203, 'inside cannot': 439244, 'delivered anywhere': 233295, 'anywhere am': 81082, 'am starting': 50427, 'panic little': 638279, 'little now': 495486, 'now disabledcovid19': 574531, 'fact that disabled': 295793, 'that disabled for': 843547, 'disabled for anything': 243910, 'anything but stuck': 80700, 'but stuck inside': 147204, 'stuck inside cannot': 814611, 'inside cannot go': 439245, 'out and cannot': 625649, 'get food delivered': 347035, 'food delivered anywhere': 314091, 'delivered anywhere am': 233296, 'anywhere am starting': 81083, 'am starting to': 50428, 'starting to panic': 795032, 'to panic little': 911408, 'panic little now': 638281, 'little now disabledcovid19': 495487, 'fuck3n': 339714, 'bi': 129411, 'slob': 774068, 'r3tards': 695094, 'heartless': 388462, 'insult from': 440637, 'from customer': 335076, 'customer aimed': 222037, 'my coworkers': 547846, 'coworkers at': 214500, 'store fuck3n': 807893, 'fuck3n liar': 339715, 'liar satan': 487973, 'satan whore': 736923, 'whore bi': 990603, 'bi ch': 129414, 'ch lazy': 170392, 'lazy slob': 482753, 'slob slow': 774069, 'slow r3tards': 774385, 'r3tards hoarding': 695095, 'hoarding the': 399583, 'good stuff': 357786, 'stuff can': 815040, 'job can': 465719, 'full heartless': 340627, 'heartless retail': 388469, 'retail grocerystore': 718162, 'grocerystore coronacrisis': 366296, 'insult from customer': 440638, 'from customer aimed': 335077, 'customer aimed at': 222038, 'aimed at myself': 39573, 'at myself and': 99837, 'and my coworkers': 67360, 'my coworkers at': 547848, 'coworkers at the': 214501, 'grocery store fuck3n': 365417, 'store fuck3n liar': 807894, 'fuck3n liar satan': 339716, 'liar satan whore': 487974, 'satan whore bi': 736924, 'whore bi ch': 990604, 'bi ch lazy': 129415, 'ch lazy slob': 170393, 'lazy slob slow': 482754, 'slob slow r3tards': 774070, 'slow r3tards hoarding': 774386, 'r3tards hoarding the': 695096, 'hoarding the good': 399585, 'the good stuff': 856450, 'good stuff can': 357788, 'stuff can do': 815041, 'do our job': 249947, 'our job can': 623598, 'job can keep': 465722, 'can keep shelf': 158815, 'keep shelf full': 471924, 'shelf full heartless': 757111, 'full heartless retail': 340628, 'heartless retail grocerystore': 388470, 'retail grocerystore coronacrisis': 718163, 'week covid': 976121, 'behavior tracker': 124268, 'tracker is': 928279, 'here review': 393527, 'week report': 976808, 'report finding': 711936, 'finding here': 307485, 'the week covid': 871298, 'week covid 19': 976122, '19 consumer behavior': 5957, 'consumer behavior tracker': 196530, 'behavior tracker is': 124270, 'tracker is here': 928280, 'is here review': 448428, 'here review the': 393528, 'review the week': 720594, 'the week report': 871311, 'week report finding': 976810, 'report finding here': 711937, 'economic fall': 267094, 'the landscape': 858935, 'landscape of': 479408, 'many need': 514331, 'need basic': 554518, 'income this': 432480, 'would push': 1012137, 'push canada': 690254, 'more left': 539670, 'left leaning': 485536, 'leaning govt': 483898, 'not know the': 570303, 'know the economic': 476819, 'the economic fall': 853902, 'economic fall out': 267095, 'fall out from': 297021, 'out from low': 626196, '19 could change': 6154, 'could change the': 209014, 'change the landscape': 172300, 'the landscape of': 858937, 'landscape of canada': 479409, 'of canada where': 581090, 'canada where many': 160611, 'where many need': 985012, 'many need basic': 514332, 'need basic income': 554519, 'basic income this': 111955, 'income this would': 432481, 'this would push': 891543, 'would push canada': 1012138, 'push canada to': 690255, 'canada to more': 160588, 'to more left': 910258, 'more left leaning': 539672, 'left leaning govt': 485537, 'preventionoverpanic': 671904, 'situation preventionoverpanic': 772451, 'from consumer buying': 334956, 'consumer buying behaviour': 196701, 'buying behaviour during': 150020, 'behaviour during the': 124408, '19 situation preventionoverpanic': 10586, 'move hoping': 543659, 'hoping you': 403968, 'offer pay': 594740, 'and benefit': 58892, 'to impacted': 908159, 'impacted store': 418155, 'when closure': 983259, 'closure is': 183921, 'great move hoping': 362829, 'move hoping you': 543660, 'hoping you are': 403969, 'are the first': 90828, 'the first of': 855330, 'first of many': 308815, 'of many company': 586174, 'many company to': 513921, 'company to offer': 191234, 'to offer pay': 910842, 'offer pay and': 594741, 'pay and benefit': 644728, 'and benefit to': 58896, 'benefit to impacted': 127116, 'to impacted store': 908160, 'impacted store employee': 418156, 'store employee when': 807572, 'employee when closure': 274411, 'when closure is': 983260, 'closure is due': 183923, 'unified': 941752, 'framework': 330947, 'urge federal': 948183, 'move quickly': 543725, 'coordinate unified': 203187, 'unified clear': 941753, 'public framework': 688018, 'framework that': 330953, 'that explains': 843799, 'consumer packaged': 198316, 'good are': 356767, 'are exempt': 86312, 'exempt from': 289969, 'the gathering': 856182, 'gathering ban': 344446, 'ban and': 109172, 'and curfew': 60809, 'curfew that': 220934, 'that begin': 842968, 'in take': 428800, 'take effect': 832088, 'effect http': 269011, 'urge federal and': 948184, 'and state government': 72276, 'state government to': 795617, 'government to move': 360724, 'to move quickly': 910316, 'move quickly to': 543726, 'quickly to coordinate': 694624, 'to coordinate unified': 903501, 'coordinate unified clear': 203188, 'unified clear and': 941754, 'clear and public': 181222, 'and public framework': 69740, 'public framework that': 688019, 'framework that explains': 330954, 'that explains that': 843800, 'explains that food': 292225, 'that food beverage': 843904, 'food beverage and': 313740, 'beverage and consumer': 128985, 'and consumer packaged': 60412, 'consumer packaged good': 198317, 'packaged good are': 633487, 'good are exempt': 356771, 'are exempt from': 86314, 'exempt from the': 289973, 'from the gathering': 337720, 'the gathering ban': 856183, 'gathering ban and': 344447, 'ban and curfew': 109174, 'and curfew that': 60812, 'curfew that begin': 220936, 'that begin in': 842969, 'begin in take': 123530, 'in take effect': 428801, 'take effect http': 832089, 'rouble': 726229, 'tailspin': 831828, 'readingrussia': 700830, 'the rouble': 865999, 'rouble ha': 726230, 'gone into': 356316, 'into tailspin': 443072, 'tailspin declares': 831829, 'declares one': 231262, 'today another': 919243, 'rouble the': 726232, 'could sink': 209679, 'sink russian': 771483, 'russian family': 728638, 'family into': 297941, 'full scale': 340865, 'scale crisis': 739885, 'oil readingrussia': 597387, 'the rouble ha': 866000, 'rouble ha gone': 726231, 'ha gone into': 370725, 'gone into tailspin': 356317, 'into tailspin declares': 443073, 'tailspin declares one': 831830, 'declares one russian': 231263, 'paper today another': 640935, 'today another warns': 919244, 'another warns that': 77951, 'warns that what': 967295, 'that what happening': 847461, 'happening with the': 377443, 'with the rouble': 1001463, 'the rouble the': 866001, 'rouble the economy': 726233, 'economy could sink': 267786, 'could sink russian': 209680, 'sink russian family': 771484, 'russian family into': 728639, 'family into full': 297942, 'into full scale': 442577, 'full scale crisis': 340866, 'scale crisis oil': 739886, 'crisis oil readingrussia': 217803, 'patented': 643999, 'remdesivir': 710129, 'feline': 303141, 'fip': 308042, 'china also': 176459, 'also stole': 48913, 'stole patented': 804279, 'patented sister': 644000, 'sister drug': 771732, 'to remdesivir': 913180, 'remdesivir developed': 710130, 'developed by': 239688, 'by gilead': 152685, 'gilead science': 350127, 'science for': 742108, '100 fatal': 1895, 'fatal feline': 300227, 'feline fip': 303142, 'fip chinese': 308043, 'chinese manufacturing': 177299, 'manufacturing selling': 513658, 'selling that': 749471, 'that drug': 843638, 'drug at': 260883, 'to worldwide': 918827, 'worldwide cat': 1010331, 'cat owner': 166894, 'china also stole': 176461, 'also stole patented': 48914, 'stole patented sister': 804280, 'patented sister drug': 644001, 'sister drug to': 771733, 'drug to remdesivir': 261123, 'to remdesivir developed': 913181, 'remdesivir developed by': 710131, 'developed by gilead': 239690, 'by gilead science': 152686, 'gilead science for': 350128, 'science for treatment': 742109, 'treatment of 100': 931105, 'of 100 fatal': 579317, '100 fatal feline': 1896, 'fatal feline fip': 300228, 'feline fip chinese': 303143, 'fip chinese manufacturing': 308044, 'chinese manufacturing selling': 177300, 'manufacturing selling that': 513659, 'selling that drug': 749472, 'that drug at': 843639, 'drug at exorbitant': 260885, 'price to worldwide': 677064, 'to worldwide cat': 918828, 'worldwide cat owner': 1010332, 'or selling': 617004, 'selling entire': 749220, 'portfolio people': 665005, 'panicking via': 639390, 'via customerexperience': 955904, 'whether it getting': 985524, 'it getting into': 458229, 'getting into supermarket': 349071, 'into supermarket fight': 443042, 'supermarket fight over': 820307, 'fight over toilet': 304832, 'paper or selling': 640558, 'or selling entire': 617005, 'selling entire stock': 749221, 'entire stock portfolio': 278745, 'stock portfolio people': 802694, 'portfolio people are': 665006, 'are panicking via': 88977, 'panicking via customerexperience': 639391, 'luis': 506619, 'obispo': 578400, 'resource the': 714890, 'of san': 589260, 'san luis': 733557, 'luis obispo': 506620, 'obispo ha': 578401, 'to connect': 903204, 'connect community': 194603, '19 resource the': 10134, 'resource the city': 714892, 'city of san': 179293, 'of san luis': 589263, 'san luis obispo': 733558, 'luis obispo ha': 506621, 'obispo ha launched': 578402, 'launched new resource': 482016, 'new resource to': 559475, 'resource to connect': 714904, 'to connect community': 903207, 'connect community member': 194604, 'community member with': 189987, 'member with local': 528252, 'with local business': 999277, 'business offering online': 144130, '19 shelter at': 10449, 'location across': 498838, 'which ha more': 985891, 'ha more than': 371295, 'more than 200': 540553, 'than 200 outdoor': 840198, 'outdoor location across': 628899, 'location across the': 498840, '186': 4650, 'commerceiq': 188661, 'whyyoucantbuytp': 991633, 'from feb': 335440, 'feb 20': 301614, '20 march': 13140, '23 amazon': 15376, 'amazon sale': 51100, 'toiletpaper increased': 922124, 'increased 186': 433168, '186 from': 4654, 'year earlier': 1014535, 'earlier period': 264474, 'period according': 651705, 'to commerceiq': 903071, 'commerceiq which': 188662, 'which said': 986283, 'said before': 731003, 'it forecast': 458115, 'forecast increase': 328836, 'period whyyoucantbuytp': 651931, 'from feb 20': 335441, 'feb 20 march': 301615, '20 march 23': 13141, 'march 23 amazon': 515187, '23 amazon sale': 15377, 'amazon sale of': 51101, 'sale of toiletpaper': 732410, 'of toiletpaper increased': 592268, 'toiletpaper increased 186': 922125, 'increased 186 from': 433169, '186 from year': 4655, 'from year earlier': 338436, 'year earlier period': 1014536, 'earlier period according': 264475, 'period according to': 651706, 'according to commerceiq': 28528, 'to commerceiq which': 903072, 'commerceiq which said': 188663, 'which said before': 986284, 'said before it': 731004, 'before it forecast': 122885, 'it forecast increase': 458117, 'forecast increase for': 328837, 'increase for the': 432787, 'for the period': 326618, 'the period whyyoucantbuytp': 863569, 'agrees that': 38820, 'still aggressive': 800173, 'aggressive hand': 38247, 'washing socialdistancing': 967718, 'when out': 983829, 'public particularly': 688219, 'in populated': 426840, 'populated space': 664633, 'space where': 787191, 'where distancing': 984828, 'difficult grocery': 242234, 'etc 17': 282385, 'agrees that the': 38822, 'prevent infection is': 671658, 'infection is still': 436781, 'is still aggressive': 452262, 'still aggressive hand': 800174, 'aggressive hand washing': 38248, 'hand washing socialdistancing': 375957, 'washing socialdistancing and': 967719, 'socialdistancing and wearing': 780220, 'and wearing mask': 75361, 'wearing mask when': 974727, 'mask when out': 519538, 'when out in': 983832, 'in public particularly': 427094, 'public particularly in': 688220, 'particularly in populated': 642699, 'in populated space': 426841, 'populated space where': 664634, 'space where distancing': 787192, 'where distancing is': 984829, 'distancing is more': 247250, 'is more difficult': 449703, 'more difficult grocery': 539039, 'difficult grocery store': 242235, 'store pharmacy etc': 809538, 'pharmacy etc 17': 654298, 'paxton': 644689, 'alert ag': 41348, 'ag paxton': 36829, 'paxton reminds': 644692, 'reminds texan': 710651, 'texan to': 839726, 'of cyber': 582300, 'cyber scam': 223936, 'scam during': 740138, 'consumer alert ag': 196134, 'alert ag paxton': 41349, 'ag paxton reminds': 36830, 'paxton reminds texan': 644693, 'reminds texan to': 710652, 'texan to be': 839727, 'aware of cyber': 105631, 'of cyber scam': 582301, 'cyber scam during': 223937, 'scam during 19': 740139, 'during 19 emergency': 262403, 'these restaurant': 880589, 'bar club': 110694, 'club closing': 184425, 'notice the': 573370, 'the come': 851180, 'be insane': 115510, 'insane keep': 439044, 'up better': 944489, 'come until': 187649, 'then donate': 877133, 'donate your': 254291, 'to homeless': 907942, 'homeless food': 402747, 'people coronacrisis': 647545, 'coronacrisis uk': 204847, 'to see all': 913981, 'all these restaurant': 45050, 'these restaurant bar': 880590, 'restaurant bar club': 716330, 'bar club closing': 110695, 'club closing down': 184426, 'closing down until': 183625, 'down until further': 257413, 'further notice the': 342117, 'notice the come': 573372, 'the come back': 851181, 'come back is': 187241, 'back is going': 107119, 'to be insane': 901337, 'be insane keep': 115511, 'insane keep your': 439045, 'head up better': 385852, 'up better time': 944490, 'better time will': 128557, 'time will come': 898339, 'will come until': 992974, 'come until then': 187650, 'until then donate': 943882, 'then donate your': 877134, 'donate your stock': 254292, 'your stock that': 1025955, 'that will go': 847579, 'to waste to': 918375, 'waste to homeless': 968210, 'to homeless food': 907943, 'homeless food bank': 402748, 'bank and vulnerable': 109624, 'vulnerable people coronacrisis': 961085, 'people coronacrisis uk': 647547, 'southwest': 786919, 'why southwest': 991368, 'southwest won': 786926, 'won cancel': 1003760, 'cancel flight': 160847, 'flight into': 310500, 'into airport': 442377, 'airport where': 40136, 'been discovered': 120990, 'discovered and': 244679, 'exposed at': 292831, 'airport itself': 40107, 'itself agent': 463913, 'agent told': 38197, 'll people': 496948, 'still traveling': 801334, 'traveling they': 930655, 'won even': 1003797, 'even give': 284114, 'me consumer': 522592, 'cancel my': 160867, 'my flight': 548362, 'asked why southwest': 95911, 'why southwest won': 991370, 'southwest won cancel': 786927, 'won cancel flight': 1003761, 'cancel flight into': 160849, 'flight into airport': 310501, 'into airport where': 442378, 'airport where ha': 40137, 'where ha been': 984901, 'ha been discovered': 369783, 'been discovered and': 120991, 'discovered and exposed': 244680, 'and exposed at': 62545, 'exposed at the': 292832, 'the airport itself': 848508, 'airport itself agent': 40108, 'itself agent told': 463914, 'agent told me': 38198, 'told me we': 923630, 'me we ll': 523914, 'we ll people': 972270, 'll people are': 496949, 'are still traveling': 90492, 'still traveling they': 801335, 'traveling they won': 930656, 'they won even': 883909, 'won even give': 1003799, 'even give me': 284116, 'give me consumer': 350568, 'me consumer the': 522594, 'consumer the option': 199268, 'the option to': 862431, 'option to cancel': 614118, 'to cancel my': 902429, 'cancel my flight': 160870, 'food distributor': 314243, 'distributor paying': 248310, 'paying 20': 645369, '20 extra': 13053, 'extra to': 293677, 'our crisis': 622627, 'crisis plus': 217885, 'plus bonus': 661570, 'spanish supermarket chain': 787414, 'supermarket chain amp': 819592, 'chain amp food': 170451, 'amp food distributor': 53821, 'food distributor paying': 314246, 'distributor paying 20': 248311, 'paying 20 extra': 645371, '20 extra to': 13054, 'extra to their': 293681, 'to their worker': 917279, 'their worker through': 875220, 'worker through our': 1007986, 'through our crisis': 894614, 'our crisis plus': 622628, 'crisis plus bonus': 217886, 'apparently starting': 82000, 'necessary cyprus': 553970, 'so apparently starting': 776536, 'apparently starting tomorrow': 82001, 'starting tomorrow we': 795062, 'tomorrow we will': 924238, 'only be able': 610146, 'work if necessary': 1005278, 'if necessary cyprus': 414444, 'necessary cyprus 19': 553971, 'magnify': 508434, 'wa pretty': 962988, 'pretty dumb': 671396, 'dumb teenager': 262115, 'teenager also': 836533, 'also didn': 48103, 'have socialmedia': 382611, 'to magnify': 909543, 'magnify my': 508435, 'my stupidity': 550250, 'stupidity but': 815523, 'next level': 561426, 'level socialdistancing': 487716, 'looking back wa': 502836, 'back wa pretty': 107444, 'wa pretty dumb': 962991, 'pretty dumb teenager': 671397, 'dumb teenager also': 262116, 'teenager also didn': 836534, 'also didn have': 48104, 'didn have socialmedia': 241098, 'have socialmedia to': 382612, 'socialmedia to magnify': 781098, 'to magnify my': 909544, 'magnify my stupidity': 508436, 'my stupidity but': 550251, 'stupidity but this': 815524, 'but this right': 147557, 'this right here': 889905, 'right here is': 721932, 'here is next': 393239, 'is next level': 449892, 'next level socialdistancing': 561429, 'level socialdistancing stayhome': 487717, 'etretail': 283170, 'etretail consumer': 283171, 'consumer stock': 199143, 'on fmcg': 600832, 'fmcg bulk': 311715, 'bulk pack': 142336, 'pack due': 633035, 'etretail consumer stock': 283172, 'consumer stock up': 199147, 'up on fmcg': 945564, 'on fmcg bulk': 600833, 'fmcg bulk pack': 311716, 'bulk pack due': 142337, 'pack due to': 633036, 'now constantly': 574431, 'constantly cleaning': 195654, 'cleaning our': 180998, 'sanitizing them': 736523, 'them glove': 875781, 'also provided': 48714, 'provided for': 686604, 'we advise': 970291, 'advise shopper': 33600, 'maintain meter': 508989, 'are now constantly': 88540, 'now constantly cleaning': 574432, 'constantly cleaning our': 195655, 'cleaning our shopping': 180999, 'our shopping cart': 624759, 'cart and sanitizing': 165254, 'and sanitizing them': 70916, 'sanitizing them glove': 736524, 'them glove are': 875782, 'glove are also': 352594, 'are also provided': 84474, 'also provided for': 48716, 'provided for all': 686605, 'customer we advise': 223041, 'we advise shopper': 970292, 'advise shopper to': 33601, 'shopper to maintain': 761769, 'to maintain meter': 909581, 'maintain meter distance': 508990, 'meter distance between': 529706, 'other at all': 619858, 'all time while': 45229, 'time while shopping': 898330, 'while shopping 19': 987260, 'wsj farmer': 1013250, 'out milk': 626550, 'and breaking': 59176, 'egg coronavirus': 269834, 'coronavirus restaurant': 206667, 'demand how': 235649, 'the shutdown': 867129, 'the hospitality': 857544, 'affecting farmer': 34515, 'and chef': 59804, 'chef across': 175247, 'america the': 51696, 'the heartbreaking': 857209, 'heartbreaking reality': 388398, 'amid foodinsecurity': 52481, 'wsj farmer are': 1013251, 'farmer are throwing': 299297, 'are throwing out': 91088, 'throwing out milk': 895103, 'out milk and': 626551, 'milk and breaking': 531557, 'and breaking egg': 59177, 'breaking egg coronavirus': 138942, 'egg coronavirus restaurant': 269835, 'coronavirus restaurant closure': 206669, 'destroy demand how': 239009, 'demand how the': 235651, 'how the shutdown': 408875, 'the shutdown of': 867134, 'shutdown of the': 768074, 'of the hospitality': 591108, 'the hospitality industry': 857546, 'hospitality industry is': 404786, 'industry is affecting': 435922, 'is affecting farmer': 445388, 'affecting farmer and': 34516, 'farmer and chef': 299251, 'and chef across': 59805, 'chef across america': 175248, 'across america the': 29252, 'america the heartbreaking': 51698, 'the heartbreaking reality': 857210, 'heartbreaking reality of': 388399, 'reality of the': 701780, 'chain amid foodinsecurity': 170447, 'for retailer': 325199, 'retailer relying': 719291, 'more traffic': 540822, 'ecommerce channel': 266732, 'channel during': 172879, 'for retailer relying': 325206, 'retailer relying on': 719292, 'relying on ecommerce': 709673, 'on ecommerce is': 600501, 'than ever read': 840601, 'read about some': 700256, 'about some way': 26231, 'way to drive': 970019, 'to drive more': 904741, 'drive more traffic': 259102, 'more traffic to': 540823, 'traffic to your': 929157, 'to your ecommerce': 918974, 'your ecommerce channel': 1023618, 'ecommerce channel during': 266733, 'channel during the': 172880, 'see middle': 745417, 'class couple': 180174, 'couple stripping': 211678, 'bare confront': 110886, 'confront them': 194295, 'camera about': 157106, 'being inconsiderate': 125310, 'inconsiderate to': 432568, 'others stophoarding': 621666, 'you see middle': 1021050, 'see middle class': 745418, 'middle class couple': 530632, 'class couple stripping': 180175, 'couple stripping the': 211679, 'shelf bare confront': 756864, 'bare confront them': 110887, 'confront them on': 194296, 'them on camera': 876085, 'on camera about': 599780, 'camera about being': 157107, 'about being inconsiderate': 24867, 'being inconsiderate to': 125311, 'inconsiderate to others': 432569, 'to others stophoarding': 911141, 'others stophoarding coronacrisis': 621667, 'grumpy': 367524, 'get grumpy': 347172, 'grumpy while': 367525, 'patient wereallinthistogether': 644295, 'wereallinthistogether bekindtoeachother': 980370, 'please people do': 660283, 'not get grumpy': 569590, 'get grumpy while': 347173, 'grumpy while queuing': 367526, 'while queuing to': 987197, 'go in supermarket': 353716, 'in supermarket be': 428563, 'supermarket be patient': 819323, 'be patient wereallinthistogether': 116374, 'patient wereallinthistogether bekindtoeachother': 644296, '2keep': 16638, 'low amp': 505119, 'amp stable': 54550, 'stable so': 791955, 'poor can': 664134, 'food easily': 314330, 'easily must': 265232, 'must offer': 546795, 'lost income': 503870, 'country helping': 210747, 'with pandemic': 1000070, 'it economic': 457750, 'economic destruction': 267055, 'destruction try': 239122, 'try ur': 934680, 'ur best': 947983, 'best 2keep': 127558, '2keep curve': 16639, 'curve flat': 221855, 'important thing is': 419031, 'thing is to': 884486, 'keep the basic': 472023, 'the basic food': 849309, 'basic food price': 111892, 'food price low': 315957, 'price low amp': 675112, 'low amp stable': 505120, 'amp stable so': 54551, 'stable so poor': 791956, 'so poor can': 778042, 'poor can buy': 664136, 'can buy food': 157821, 'buy food easily': 148642, 'food easily must': 314331, 'easily must offer': 265233, 'must offer cash': 546796, 'offer cash to': 594549, 'cash to those': 166362, 'those who lost': 892653, 'who lost income': 989238, 'lost income due': 503872, '19 all country': 4895, 'all country helping': 42475, 'country helping people': 210749, 'helping people to': 391442, 'people to cope': 649890, 'cope with pandemic': 203352, 'with pandemic amp': 1000071, 'pandemic amp it': 634848, 'amp it economic': 54024, 'it economic destruction': 457751, 'economic destruction try': 267056, 'destruction try ur': 239123, 'try ur best': 934681, 'ur best 2keep': 947984, 'best 2keep curve': 127559, '2keep curve flat': 16640, 'unionized': 941958, 'unionstrong': 941963, 'time some': 897709, 'idiot say': 413582, 'be unionized': 117866, 'unionized remind': 941959, 'remind them': 710510, 'them how': 875863, 'important they': 419025, 'been during': 121054, 'crisis unionstrong': 218291, 'next time some': 561607, 'time some idiot': 897711, 'some idiot say': 783075, 'idiot say that': 413584, 'say that grocery': 739234, 'to be unionized': 901610, 'be unionized remind': 117867, 'unionized remind them': 941960, 'remind them how': 710511, 'them how important': 875865, 'how important they': 408039, 'important they have': 419026, 'have been during': 379522, 'been during this': 121055, 'this crisis unionstrong': 887103, 'this under': 890905, 'under thing': 940353, 'thing never': 884617, 'see at': 744944, 'file this under': 305379, 'this under thing': 890906, 'under thing never': 940354, 'thing never thought': 884619, 'thought see at': 893199, 'see at the': 744946, 'most food': 542333, 'be purchased': 116626, 'purchased in': 689780, 'shopper stay': 761706, 'home despite': 401073, 'fact it': 295741, 'shopping capacity': 762282, 'capacity by': 162504, 'tesco ha said': 838711, 'said that most': 731409, 'that most food': 845226, 'most food will': 542337, 'food will still': 317631, 'will still need': 994982, 'to be purchased': 901470, 'be purchased in': 116631, 'purchased in store': 689782, 'in store amid': 428382, 'pandemic the supermarket': 636706, 'supermarket giant said': 820514, 'giant said it': 349859, 'said it wasn': 731173, 'it wasn able': 462252, 'able to meet': 24505, 'meet demand more': 527472, 'demand more shopper': 235892, 'more shopper stay': 540386, 'shopper stay at': 761708, 'at home despite': 98973, 'home despite the': 401074, 'despite the fact': 238883, 'the fact it': 854826, 'fact it ha': 295742, 'it ha increased': 458397, 'increased it online': 433358, 'it online grocery': 460081, 'grocery shopping capacity': 365006, 'shopping capacity by': 762283, 'capacity by more': 162505, 'grocery site': 365126, 'site ha': 771931, 'by 116': 151529, '116 while': 2677, 'while transaction': 987473, 'transaction are': 929435, 'down 15': 256376, '15 from': 3716, 'due largely': 261664, 'largely to': 479875, 'to abandoned': 899900, 'abandoned shopping': 24214, 'cart result': 165370, 'of fully': 584003, 'fully booked': 341023, 'booked delivery': 134661, 'service ecommerce': 752320, 'online grocery site': 608332, 'grocery site ha': 365127, 'site ha increased': 771934, 'increased by 116': 433223, 'by 116 while': 151530, '116 while transaction': 2678, 'while transaction are': 987474, 'transaction are down': 929436, 'are down 15': 85964, 'down 15 from': 256378, '15 from last': 3717, 'from last week': 336194, 'week due largely': 976174, 'due largely to': 261665, 'largely to abandoned': 479876, 'to abandoned shopping': 899901, 'abandoned shopping cart': 24215, 'shopping cart result': 762313, 'cart result of': 165371, 'result of fully': 717592, 'of fully booked': 584004, 'fully booked delivery': 341024, 'booked delivery service': 134662, 'delivery service ecommerce': 234435, 'tidy': 895722, '19 good': 7246, 'night sleep': 563075, 'sleep eat': 773764, 'buy relax': 149120, 'relax good': 708812, 'hygiene wash': 412189, 'shower regularly': 767383, 'regularly keep': 707931, 'house tidy': 406620, 'tidy follow': 895725, 'far wrong': 298986, 'covid 19 good': 213154, '19 good night': 7247, 'good night sleep': 357470, 'night sleep eat': 563076, 'sleep eat healthy': 773765, 'healthy food do': 387628, 'panic buy relax': 637523, 'buy relax good': 149121, 'relax good hygiene': 708813, 'good hygiene wash': 357201, 'hygiene wash and': 412190, 'wash and shower': 967436, 'and shower regularly': 71622, 'shower regularly keep': 767384, 'regularly keep your': 707932, 'keep your house': 472271, 'your house tidy': 1024420, 'house tidy follow': 406621, 'tidy follow these': 895726, 'these step and': 880723, 'step and you': 799494, 'not go far': 569675, 'go far wrong': 353530, 'this continues': 886851, 'continues or': 201425, 'or worsens': 617845, 'worsens anticipate': 1011107, 'anticipate people': 78433, 'will max': 994106, 'max out': 520767, 'etc by': 282455, 'paying off': 645459, 'off those': 594311, 'those credit': 891902, 'effort before': 269483, 'crisis economy': 217337, 'this continues or': 886853, 'continues or worsens': 201426, 'or worsens anticipate': 617846, 'worsens anticipate people': 1011108, 'anticipate people will': 78434, 'people will max': 650398, 'will max out': 994107, 'max out their': 520768, 'card to purchase': 163685, 'to purchase food': 912528, 'purchase food and': 689449, 'and grocery etc': 63984, 'grocery etc by': 364499, 'etc by panic': 282456, 'of paying off': 587839, 'paying off those': 645460, 'off those credit': 594312, 'those credit card': 891903, 'were already making': 979307, 'already making effort': 47519, 'making effort before': 511035, 'effort before this': 269484, 'this crisis economy': 887037, 'crisis economy finance': 217339, 'digitalization': 242731, 'digitalworkplace': 242821, 'the winner': 871608, 'winner is': 996029, 'is technology': 452590, 'technology it': 836322, 'believe yet': 126423, 'company do': 190595, 'do thrive': 250376, 'thrive during': 894208, 'crisis digitalization': 217294, 'digitalization digitalworkplace': 242734, 'and the winner': 73659, 'the winner is': 871610, 'winner is technology': 996030, 'is technology it': 452591, 'technology it is': 836323, 'it is hard': 458970, 'to believe yet': 901752, 'believe yet some': 126424, 'yet some company': 1016236, 'some company do': 782568, 'company do thrive': 190597, 'do thrive during': 250377, 'thrive during the': 894209, '19 crisis digitalization': 6236, 'crisis digitalization digitalworkplace': 217295, 'jesussaves': 465327, 'repentnownations': 711561, 'godwins': 354904, 'marketcrash2020': 517430, 'todayistheday': 920601, 'am 100': 49830, '100 right': 2065, 'with god': 998632, 'god and': 354646, 'ready are': 700843, 'rule god': 727242, 'god doe': 354686, 'doe turn': 251654, 'to jesus': 908664, 'jesus immediately': 465298, 'immediately jesus': 417120, 'jesus jesussaves': 465304, 'jesussaves repentnownations': 465328, 'repentnownations godwins': 711562, 'godwins panicbuying': 354905, 'panicbuying toiletpaper': 639089, 'toiletpaper marketcrash2020': 922219, 'marketcrash2020 todayistheday': 517431, 'todayistheday quarantine': 920602, 'am 100 right': 49831, '100 right with': 2066, 'right with god': 722433, 'with god and': 998633, 'god and ready': 354647, 'and ready are': 69988, 'ready are you': 700844, 'are you do': 91780, 'not make the': 570507, 'make the rule': 510582, 'the rule god': 866045, 'rule god doe': 727243, 'god doe turn': 354687, 'doe turn to': 251655, 'turn to jesus': 935784, 'to jesus immediately': 908666, 'jesus immediately jesus': 465299, 'immediately jesus jesussaves': 417121, 'jesus jesussaves repentnownations': 465305, 'jesussaves repentnownations godwins': 465329, 'repentnownations godwins panicbuying': 711563, 'godwins panicbuying toiletpaper': 354906, 'panicbuying toiletpaper marketcrash2020': 639091, 'toiletpaper marketcrash2020 todayistheday': 922220, 'marketcrash2020 todayistheday quarantine': 517432, 'supermarket report': 822203, 'report first': 711938, 'first worker': 309190, 'death two': 230262, 'two walmart': 937308, 'walmart stocker': 965413, 'stocker in': 803510, 'chicago and': 175641, 'joes worker': 466482, 'york die': 1016604, 'die over': 241436, 'over concern': 630096, 'endangering their': 276106, 'major supermarket report': 509495, 'supermarket report first': 822204, 'report first worker': 711941, 'first worker death': 309191, 'worker death two': 1006728, 'death two walmart': 230263, 'two walmart stocker': 937310, 'walmart stocker in': 965414, 'stocker in chicago': 803511, 'in chicago and': 421365, 'chicago and trader': 175642, 'and trader joes': 74348, 'trader joes worker': 928730, 'joes worker in': 466483, 'worker in new': 1007189, 'new york die': 559925, 'york die over': 1016606, 'die over concern': 241437, 'over concern that': 630098, 'concern that customer': 193111, 'that customer are': 843417, 'customer are endangering': 222120, 'are endangering their': 86201, 'endangering their staff': 276107, 'their staff through': 874803, 'weigh': 977662, 'around corporate': 93258, 'earnings in': 264917, '19 depressed': 6497, 'depressed oil': 237598, 'activity weigh': 30530, 'weigh on': 977664, 'uncertainty around corporate': 939658, 'around corporate earnings': 93259, 'corporate earnings in': 207269, 'earnings in the': 264918, 'covid 19 depressed': 212933, '19 depressed oil': 6498, 'depressed oil price': 237599, 'economic activity weigh': 266965, 'activity weigh on': 30531, 'weigh on stock': 977666, 'got whatsapp': 359016, 'whatsapp message': 982899, 'message that': 529432, 'from 27th': 334252, '27th of': 16364, 'march there': 515490, 'there planned': 878934, 'planned day': 658445, 'day boycott': 227385, 'boycott of': 137334, 'are unfairly': 91313, 'unfairly hiking': 941457, 'and coronacrisis': 60566, 'coronacrisis think': 204820, 'have list': 381332, 'list posted': 494517, 'posted up': 666589, 'facebook it': 294949, 'just got whatsapp': 468875, 'got whatsapp message': 359017, 'whatsapp message that': 982901, 'message that from': 529433, 'that from 27th': 843958, 'from 27th of': 334253, '27th of march': 16365, 'of march there': 586213, 'march there planned': 515491, 'there planned day': 878935, 'planned day boycott': 658446, 'day boycott of': 227386, 'boycott of all': 137335, 'of all shop': 579975, 'all shop that': 44323, 'that are unfairly': 842835, 'are unfairly hiking': 91314, 'unfairly hiking price': 941458, 'during this lockdown': 263297, 'this lockdown and': 888686, 'lockdown and coronacrisis': 499136, 'and coronacrisis think': 60567, 'coronacrisis think it': 204821, 'think it great': 885333, 'it great idea': 458336, 'great idea we': 362736, 'idea we already': 413224, 'already have list': 47425, 'have list posted': 381334, 'list posted up': 494518, 'posted up on': 666590, 'up on facebook': 945558, 'on facebook it': 600709, 'facebook it time': 294950, 'to fight back': 905780, 'bushel': 143145, 'struggle and': 814331, 'test new': 839100, 'new low': 559068, 'low uncertainty': 505708, 'uncertainty caused': 939674, 'continues soybean': 201443, 'price tested': 676773, 'week while': 977237, 'while corn': 986714, 'fell below': 303173, 'below 50': 126580, '50 per': 19803, 'per bushel': 650724, 'commodity market continue': 189218, 'continue to struggle': 201267, 'to struggle and': 915687, 'struggle and test': 814333, 'and test new': 73133, 'test new low': 839101, 'new low uncertainty': 559072, 'low uncertainty caused': 505709, 'uncertainty caused by': 939675, 'pandemic continues soybean': 635213, 'continues soybean price': 201444, 'soybean price tested': 786992, 'price tested the': 676774, 'tested the mark': 839375, 'mark of the': 515810, 'of the middle': 591240, 'middle of last': 530680, 'of last week': 585723, 'last week while': 480694, 'week while corn': 977238, 'while corn price': 986715, 'corn price fell': 203586, 'price fell below': 673846, 'fell below 50': 303175, 'below 50 per': 126581, '50 per bushel': 19805, 'apnea': 81493, 'converted': 202548, 'pulmonologists': 688961, 'simple modification': 770060, 'modification consumer': 535495, 'consumer device': 197191, 'device used': 239944, 'treat sleep': 930882, 'sleep apnea': 773751, 'apnea could': 81494, 'be converted': 114236, 'converted into': 202549, 'into life': 442698, 'saving ventilator': 737983, 'patient with': 644309, '19 according': 4789, 'to coalition': 902929, 'of engineer': 583117, 'engineer emergency': 276962, 'emergency room': 272935, 'room doctor': 725905, 'doctor amp': 250806, 'amp critical': 53593, 'care pulmonologists': 164181, 'with simple modification': 1000741, 'simple modification consumer': 770061, 'modification consumer device': 535496, 'consumer device used': 197194, 'device used to': 239945, 'used to treat': 950100, 'to treat sleep': 917757, 'treat sleep apnea': 930883, 'sleep apnea could': 773752, 'apnea could be': 81495, 'could be converted': 208851, 'be converted into': 114237, 'converted into life': 202551, 'into life saving': 442699, 'life saving ventilator': 489021, 'saving ventilator for': 737984, 'ventilator for patient': 954558, 'for patient with': 324422, 'patient with covid': 644310, 'covid 19 according': 212574, '19 according to': 4790, 'according to coalition': 28527, 'to coalition of': 902930, 'coalition of engineer': 185083, 'of engineer emergency': 583118, 'engineer emergency room': 276963, 'emergency room doctor': 272937, 'room doctor amp': 725906, 'doctor amp critical': 250807, 'amp critical care': 53594, 'critical care pulmonologists': 218527, 'worker our': 1007519, 'our officer': 624122, 'officer our': 595691, 'our pharmacist': 624333, 'worker take': 1007872, 'service thanks': 752911, 'and special': 72063, 'special thanks': 788069, 'our journalist': 623607, 'journalist for': 467433, 'keeping informed': 472451, 'informed 19': 438075, 'healthcare worker our': 387371, 'worker our officer': 1007522, 'our officer our': 624123, 'officer our pharmacist': 595692, 'our pharmacist grocery': 624334, 'store worker take': 811593, 'worker take out': 1007873, 'out food service': 626088, 'food service thanks': 316433, 'service thanks to': 752913, 'to all who': 900303, 'all who are': 45459, 'who are providing': 988200, 'are providing for': 89319, 'providing for and': 686999, 'for and keeping': 319327, 'and keeping safe': 65798, 'safe and special': 729484, 'and special thanks': 72069, 'special thanks to': 788071, 'to our journalist': 911197, 'our journalist for': 623608, 'journalist for keeping': 467434, 'for keeping informed': 322814, 'keeping informed 19': 472452, 'competent': 191609, 'add recommendation': 31477, 'recommendation and': 704731, 'only those': 611337, 'those competent': 891884, 'competent and': 191610, 'and truly': 74479, 'truly informed': 933324, 'informed to': 438133, 'we deserve': 971275, 'deserve better': 238035, 'better also': 128188, 'also ban': 47902, 'ban all': 109167, 'all photo': 43954, 'to add recommendation': 900065, 'add recommendation and': 31478, 'recommendation and allow': 704732, 'and allow only': 57915, 'allow only those': 46020, 'only those competent': 611338, 'those competent and': 891885, 'competent and truly': 191611, 'and truly informed': 74483, 'truly informed to': 933325, 'informed to address': 438134, 'address the people': 32044, 'people of we': 648931, 'of we deserve': 592963, 'we deserve better': 971276, 'deserve better also': 238036, 'better also ban': 128189, 'also ban all': 47903, 'ban all photo': 109171, 'all photo of': 43955, 'supt': 827453, 'today settlement': 920162, 'settlement provide': 753720, 'provide measure': 686389, 'monetary restitution': 536547, 'restitution especially': 716851, 'important during': 418787, 'are reminder': 89574, 'york life': 1016629, 'life insurer': 488791, 'insurer must': 440888, 'must comply': 546597, 'with dfs': 998015, 'dfs regulation': 240059, 'consumer best': 196627, 'interest supt': 441412, 'today settlement provide': 920163, 'settlement provide measure': 753722, 'provide measure of': 686390, 'measure of monetary': 525270, 'of monetary restitution': 586599, 'monetary restitution especially': 536548, 'restitution especially important': 716852, 'especially important during': 280517, 'important during the': 418788, 'pandemic and are': 634860, 'and are reminder': 58351, 'are reminder that': 89575, 'reminder that all': 710586, 'that all new': 842556, 'all new york': 43629, 'new york life': 559936, 'york life insurer': 1016630, 'life insurer must': 488793, 'insurer must comply': 440889, 'must comply with': 546598, 'comply with dfs': 192532, 'with dfs regulation': 998016, 'dfs regulation and': 240060, 'regulation and act': 708049, 'and act in': 57622, 'the consumer best': 851501, 'consumer best interest': 196628, 'best interest supt': 127739, 'eased': 265119, 'price eased': 673643, 'eased to': 265125, 'to percent': 911654, 'percent year': 651193, 'due mainly': 261666, 'mainly to': 508895, 'freeze put': 332552, 'government under': 360755, 'nationwide state': 552758, 'of calamity': 581037, 'calamity amid': 155281, 'rise in consumer': 722876, 'consumer price eased': 198418, 'price eased to': 673645, 'eased to percent': 265127, 'to percent year': 911656, 'percent year on': 651194, 'march due mainly': 515349, 'due mainly to': 261667, 'mainly to the': 508899, 'to the price': 916980, 'the price freeze': 864352, 'price freeze put': 674104, 'freeze put in': 332553, 'place by the': 657374, 'the government under': 856617, 'government under the': 360756, 'under the nationwide': 940321, 'the nationwide state': 861312, 'nationwide state of': 552759, 'state of calamity': 795798, 'of calamity amid': 581038, 'calamity amid the': 155282, 'and the decline': 73318, 'the global price': 856318, 'global price of': 352141, 'stayathome toiletpaper': 797682, 'toiletpaper saturdaymorning': 922439, 'saturdaymorning this': 737098, 'this kid': 888565, 'kid hurt': 474007, 'hurt my': 411597, 'my feeling': 548296, 'quarantine stayathome toiletpaper': 692564, 'stayathome toiletpaper saturdaymorning': 797687, 'toiletpaper saturdaymorning this': 922440, 'saturdaymorning this kid': 737099, 'this kid hurt': 888566, 'kid hurt my': 474008, 'hurt my feeling': 411598, 'aftershock': 36735, 'technologynews': 836400, 'listed mining': 494627, 'spiral commodity': 789420, 'industry have': 435872, 'been tumbling': 122275, 'tumbling the': 935353, 'industry considers': 435741, 'the devastating': 853217, 'devastating aftershock': 239575, 'aftershock of': 36736, 'this black': 886566, 'swan event': 829958, 'event africa': 284938, 'africa technologynews': 35141, 'technologynews mining': 836401, 'mining economy': 533274, 'of listed mining': 585885, 'listed mining company': 494628, 'mining company are': 533270, 'company are in': 190429, 'downward spiral commodity': 257837, 'spiral commodity price': 789421, 'commodity price across': 189255, 'across the industry': 29501, 'the industry have': 858174, 'industry have been': 435873, 'have been tumbling': 379727, 'been tumbling the': 122276, 'tumbling the industry': 935354, 'the industry considers': 858167, 'industry considers the': 435742, 'considers the devastating': 195456, 'the devastating aftershock': 853218, 'devastating aftershock of': 239576, 'aftershock of this': 36737, 'of this black': 591944, 'this black swan': 886568, 'black swan event': 132136, 'swan event africa': 829959, 'event africa technologynews': 284939, 'africa technologynews mining': 35142, 'technologynews mining economy': 836402, 'niki': 563237, 'megalomaniac': 527828, 'our director': 622759, 'director niki': 243643, 'niki is': 563238, 'taking look': 833426, 'next victim': 561653, 'and megalomaniac': 66937, 'megalomaniac oilpricewar': 527829, 'our director niki': 622761, 'director niki is': 243644, 'niki is taking': 563239, 'is taking look': 452552, 'taking look at': 833427, 'look at global': 502263, 'at global oil': 98770, 'the next victim': 861709, 'next victim of': 561654, 'victim of and': 956492, 'of and megalomaniac': 580168, 'and megalomaniac oilpricewar': 66938, 'megalomaniac oilpricewar oilprice': 527830, 'all should': 44335, 'employee face': 273834, 'sanitizer have': 735054, 'all should be': 44336, 'should be providing': 765700, 'be providing your': 116607, 'providing your employee': 687149, 'your employee face': 1023657, 'employee face mask': 273835, 'hand sanitizer have': 375435, 'sanitizer have stepped': 735057, 'have stepped up': 382754, 'stepped up and': 799783, 'and so should': 71852, 'price housingmarket': 674583, 'could stop the': 209729, 'stop the rise': 805149, 'rise in property': 722901, 'property price housingmarket': 684329, 'everyones': 287652, 'got lot': 358679, 'serious gas': 751392, 'went down': 978983, 'incredible amount': 433813, 'amount everyones': 53176, 'everyones been': 287653, 'been filling': 121144, 'low meanwhile': 505407, 'meanwhile just': 525000, 'just waiting': 470197, 'my move': 549354, '19 got lot': 7251, 'got lot more': 358680, 'lot more serious': 504116, 'more serious gas': 540356, 'serious gas price': 751393, 'price went down': 677434, 'went down an': 978984, 'down an incredible': 256486, 'an incredible amount': 56255, 'incredible amount everyones': 433814, 'amount everyones been': 53177, 'everyones been filling': 287654, 'been filling up': 121145, 'up their car': 946233, 'their car for': 872723, 'car for the': 163089, 'for the low': 326542, 'the low meanwhile': 859778, 'low meanwhile just': 505408, 'meanwhile just waiting': 525001, 'just waiting to': 470200, 'waiting to make': 964407, 'make my move': 510224, 'lady and': 478733, 'and gentleman': 63532, 'gentleman regional': 345845, 'regional victoria': 707529, 'victoria asking': 956533, 'asking my': 96027, 'who often': 989365, 'often text': 596283, 'text without': 839959, 'without her': 1002718, 'her glass': 392072, 'glass on': 351629, 'her day': 391988, 'russian it': 728652, 'all made': 43427, 'made up': 508049, 'not apply': 568234, 'all while': 45448, 'while wearing': 987560, 'lady and gentleman': 478734, 'and gentleman regional': 63533, 'gentleman regional victoria': 345846, 'regional victoria asking': 707530, 'victoria asking my': 956534, 'asking my mum': 96028, 'mum who often': 545978, 'who often text': 989367, 'often text without': 596284, 'text without her': 839960, 'without her glass': 1002719, 'her glass on': 392073, 'glass on about': 351630, 'on about her': 599137, 'about her day': 25373, 'her day at': 391989, 'day at work': 227341, 'at work in': 101604, 'in large supermarket': 424591, 'large supermarket it': 479809, 'supermarket it the': 821182, 'it the russian': 461573, 'the russian it': 866101, 'russian it all': 728653, 'it all made': 456359, 'all made up': 43428, 'made up purchase': 508053, 'up purchase limit': 945868, 'purchase limit do': 689530, 'limit do not': 492331, 'do not apply': 249668, 'not apply to': 568236, 'apply to me': 82617, 'to me all': 909914, 'me all while': 522372, 'all while wearing': 45453, 'while wearing mask': 987561, 'starvation during': 795165, 'during week': 263400, 'lockdown bc': 499186, 'bc we': 113307, 'from starvation during': 337408, 'starvation during week': 795166, 'during week lockdown': 263402, 'week lockdown bc': 976492, 'lockdown bc we': 499187, 'bc we have': 113311, 'no food thanks': 564276, 'food thanks to': 317084, 'the retweet': 865752, 'retweet share': 720076, 'awareness wear': 105746, 'public always': 687838, 'face carry': 294350, 'sanitizer wash': 736028, 'avoid seeing': 105266, 'seeing other': 746397, 'news stats': 560816, 'stats follow': 796616, 'for part': 324397, 'during the retweet': 263181, 'the retweet share': 865753, 'retweet share to': 720077, 'share to spread': 755309, 'to spread awareness': 915053, 'spread awareness wear': 790444, 'awareness wear glove': 105747, 'wear glove in': 974339, 'in public always': 427069, 'public always do': 687839, 'always do not': 49532, 'your face carry': 1023744, 'face carry hand': 294351, 'hand sanitizer wash': 375648, 'sanitizer wash hand': 736029, 'wash hand avoid': 967478, 'hand avoid seeing': 374810, 'avoid seeing other': 105267, 'seeing other people': 746398, 'other people if': 620672, 'people if sick': 648319, 'if sick stay': 414811, 'home stay updated': 402124, 'updated on news': 947408, 'on news stats': 602392, 'news stats follow': 560817, 'stats follow for': 796617, 'follow for part': 312385, 'christucker': 178226, '2c': 16568, 'aint': 39671, 'urselves': 948488, 'freedom2out': 332399, 'food2eat': 317731, 'place2call': 657864, 'tell dem': 836941, 'dem christucker': 234861, 'christucker it': 178227, 'it plain': 460333, 'plain 2c': 658002, '2c some': 16569, 'of yall': 593339, 'yall house': 1014082, 'house aint': 406163, 'aint no': 39673, 'like prison': 491032, 'prison but': 678707, 'but space': 147126, 'work sort': 1005755, 'out urselves': 627760, 'urselves take': 948489, 'take time': 832725, 'be ur': 117905, 'ur kid': 948025, 'kid family': 473945, 'family be': 297649, 'be glad': 115040, 'have freedom2out': 380716, 'freedom2out buy': 332400, 'buy ur': 149418, 'ur supermarket': 948074, 'have food2eat': 380674, 'food2eat place2call': 317732, 'place2call ur': 657865, 'ur home': 948015, 'tell dem christucker': 836942, 'dem christucker it': 234862, 'christucker it plain': 178228, 'it plain 2c': 460334, 'plain 2c some': 658003, '2c some of': 16570, 'some of yall': 783419, 'of yall house': 593341, 'yall house aint': 1014083, 'house aint no': 406164, 'aint no home': 39674, 'no home if': 564439, 'it wa it': 462134, 'wa it should': 962435, 'it should not': 461037, 'should not feel': 766244, 'not feel like': 569384, 'feel like prison': 302739, 'like prison but': 491033, 'prison but space': 678708, 'but space to': 147127, 'space to work': 787183, 'to work sort': 918783, 'work sort out': 1005756, 'sort out urselves': 786150, 'out urselves take': 627761, 'urselves take time': 948490, 'take time to': 832727, 'time to actually': 897940, 'to actually be': 900028, 'actually be ur': 30737, 'be ur kid': 117906, 'ur kid family': 948026, 'kid family be': 473946, 'family be glad': 297651, 'be glad have': 115041, 'glad have freedom2out': 351496, 'have freedom2out buy': 380717, 'freedom2out buy ur': 332401, 'buy ur supermarket': 149419, 'ur supermarket have': 948075, 'supermarket have food2eat': 820686, 'have food2eat place2call': 380675, 'food2eat place2call ur': 317733, 'place2call ur home': 657866, 'christopher': 178214, 'christopher peel': 178217, 'peel give': 646254, 'give his': 350523, 'his view': 397898, 'epidemic the': 279449, 'effect they': 269132, 'christopher peel give': 178218, 'peel give his': 646255, 'give his view': 350526, 'his view on': 397900, 'view on the': 957139, '19 epidemic the': 6812, 'epidemic the collapse': 279452, 'the effect they': 854071, 'effect they have': 269133, 'have had on': 380870, 'had on the': 373364, 'consumer impacted': 197808, 'for consumer impacted': 320265, 'consumer impacted by': 197809, 'adequately': 32191, 'want market': 965848, 'artificially inflate': 94550, 'it suit': 461344, 'suit pricing': 817780, 'pricing thing': 677985, 'thing adequately': 884106, 'adequately provides': 32201, 'provides valuable': 686910, 'society whole': 781361, 'whole here': 990233, 'here con': 392883, 'con in': 192798, 'recent crash': 703850, 'crash helped': 214982, 'helped trigger': 391116, 'trigger the': 931897, 'alert convinced': 41387, 'convinced many': 202661, 'wa serious': 963168, 'don want market': 254041, 'want market to': 965849, 'market to artificially': 517228, 'to artificially inflate': 900737, 'artificially inflate price': 94551, 'inflate price just': 436991, 'price just because': 674971, 'just because it': 468284, 'because it suit': 119205, 'it suit pricing': 461345, 'suit pricing thing': 817781, 'pricing thing adequately': 677986, 'thing adequately provides': 884107, 'adequately provides valuable': 32202, 'provides valuable information': 686911, 'valuable information to': 952030, 'information to society': 438017, 'to society whole': 914854, 'society whole here': 781362, 'whole here con': 990234, 'here con in': 392884, 'con in fact': 192799, 'in fact the': 422764, 'fact the recent': 295821, 'the recent crash': 865302, 'recent crash helped': 703851, 'crash helped trigger': 214984, 'helped trigger the': 391117, 'trigger the alert': 931898, 'the alert convinced': 848567, 'alert convinced many': 41388, 'convinced many that': 202662, 'many that wa': 514790, 'that wa serious': 847309, 'free membership': 331974, 'membership any': 528271, 'any healthcare': 79310, 'who dm': 988613, 'dm photo': 248917, 'their badge': 872545, 'badge or': 108126, 'other id': 620383, 'id will': 412961, 'membership thank': 528288, 'and sacrifice': 70693, 'sacrifice 19': 729080, 'free membership any': 331975, 'membership any healthcare': 528273, 'any healthcare worker': 79311, 'healthcare worker emergency': 387357, 'worker emergency room': 1006842, 'emergency room worker': 272939, 'room worker grocery': 725995, 'store worker or': 811551, 'worker or service': 1007511, 'or service worker': 617028, 'service worker who': 753115, 'worker who dm': 1008205, 'who dm photo': 988614, 'dm photo of': 248918, 'photo of their': 655216, 'of their badge': 591642, 'their badge or': 872546, 'badge or other': 108127, 'or other id': 616436, 'other id will': 620385, 'id will receive': 412962, 'receive free membership': 703480, 'free membership thank': 331976, 'membership thank you': 528289, 'work and sacrifice': 1004800, 'and sacrifice 19': 70694, 'grocery panic': 364830, 'panic stop': 638634, 'order limit': 618368, 'limit mean': 492378, 'mean another': 524364, 'in lot': 424935, 'more empty': 539128, 'up arrest': 944409, 'the 2020 covid': 848019, '19 grocery panic': 7288, 'grocery panic stop': 364831, 'panic stop hoarding': 638635, 'hoarding food order': 399310, 'food order limit': 315681, 'order limit mean': 618369, 'limit mean another': 492379, 'mean another week': 524365, 'another week of': 77973, 'week of this': 976645, 'of this fucking': 591977, 'this fucking panic': 887645, 'buying will result': 151369, 'result in lot': 717536, 'in lot more': 424936, 'lot more empty': 504106, 'more empty shelf': 539129, 'empty shelf we': 275105, 'shelf we cannot': 757749, 'we cannot keep': 971069, 'keep up arrest': 472169, 'mddc': 522305, '1199': 2704, 'brandon': 138149, 'mddc 1199': 522306, '1199 member': 2705, 'member took': 528223, 'took action': 925200, 'demand yesterday': 236531, 'yesterday answered': 1015674, 'answered our': 78183, 'call thank': 156119, 'you brandon': 1017520, 'brandon scott': 138152, 'scott for': 742447, 'getting badly': 348861, 'badly needed': 108162, 'our frontline': 623197, 'frontline caregiver': 338715, 'caregiver fighting': 164498, 'people centered': 647451, 'centered leadership': 169339, 'leadership look': 483628, 'mddc 1199 member': 522307, '1199 member took': 2706, 'member took action': 528224, 'took action to': 925201, 'action to demand': 30167, 'to demand yesterday': 904165, 'demand yesterday answered': 236532, 'yesterday answered our': 1015675, 'answered our call': 78184, 'our call thank': 622306, 'call thank you': 156120, 'thank you brandon': 841696, 'you brandon scott': 1017521, 'brandon scott for': 138153, 'scott for getting': 742448, 'for getting badly': 321865, 'getting badly needed': 348862, 'badly needed hand': 108163, 'to our frontline': 911183, 'our frontline caregiver': 623198, 'frontline caregiver fighting': 338716, 'caregiver fighting this': 164499, 'fighting this is': 305141, 'is what people': 453888, 'what people centered': 982008, 'people centered leadership': 647452, 'centered leadership look': 169340, 'leadership look like': 483629, 'montr': 538225, 'like most': 490795, 'canada we': 160603, 'in montr': 425428, 'montr al': 538226, 'al temporarily': 40604, 'temporarily for': 837496, 'we like most': 972194, 'like most of': 490798, 'have been thinking': 379717, 'been thinking of': 122181, 'thinking of way': 885976, 'of way to': 592955, 'part to reduce': 642470, 'reduce the transmission': 705980, '19 in canada': 7735, 'in canada we': 421205, 'canada we are': 160604, 'store and head': 806257, 'and head office': 64338, 'head office in': 385786, 'office in montr': 595450, 'in montr al': 425429, 'montr al temporarily': 538227, 'al temporarily for': 40605, 'temporarily for week': 837499, 'for week there': 327754, 'china listed': 176800, 'listed consumer': 494615, 'company don': 190606, 'enough cash': 277346, 'survive another': 829124, 'another six': 77858, 'month china': 537641, 'china chinesevirus': 176568, 'chinesevirus economy': 177432, 'via bloomberg': 955816, 'almost half of': 46663, 'half of china': 374221, 'of china listed': 581364, 'china listed consumer': 176801, 'listed consumer company': 494616, 'consumer company don': 196833, 'company don have': 190607, 'have enough cash': 380444, 'enough cash to': 277347, 'cash to survive': 166361, 'to survive another': 916018, 'survive another six': 829125, 'another six month': 77859, 'six month china': 772667, 'month china chinesevirus': 537642, 'china chinesevirus economy': 176569, 'chinesevirus economy via': 177433, 'economy via bloomberg': 268319, 'coloradoan': 186822, 'takecare': 832921, 'or walking': 617713, 'walking pet': 965088, 'pet even': 653376, 'emergency alert': 272587, 'alert in': 41452, 'colorado have': 186799, 'have coloradoan': 380021, 'coloradoan feel': 186823, 'state get': 795601, 'get locked': 347496, 'down besafe': 256562, 'besafe takecare': 127450, 'takecare colorado': 832922, 'store or walking': 809379, 'or walking pet': 617715, 'walking pet even': 965089, 'pet even the': 653377, 'even the emergency': 284653, 'the emergency alert': 854220, 'emergency alert in': 272590, 'alert in colorado': 41453, 'in colorado have': 421567, 'colorado have coloradoan': 186800, 'have coloradoan feel': 380022, 'coloradoan feel when': 186824, 'when the state': 984199, 'the state get': 867776, 'state get locked': 795602, 'get locked down': 347497, 'locked down besafe': 500471, 'down besafe takecare': 256563, 'besafe takecare colorado': 127451, 'supply expert': 825232, 'price could hit': 673285, 'to supply expert': 915880, 'supply expert say': 825233, 'emergencyfood': 273074, 'stock item': 802326, 'for back': 319561, 'or emergency': 615153, 'be posting': 116482, 'posting some': 666687, 'item today': 463772, 'keep checking': 471388, 'checking if': 174826, 'out or': 626948, 'or show': 617073, 'you emergencyfood': 1018400, 'looking for in': 502873, 'for in stock': 322514, 'in stock item': 428311, 'stock item to': 802327, 'up your pantry': 946746, 'your pantry for': 1025190, 'pantry for back': 639585, 'for back up': 319563, 'back up or': 107429, 'up or emergency': 945680, 'or emergency food': 615154, 'emergency food will': 272718, 'will be posting': 992614, 'be posting some': 116485, 'posting some item': 666689, 'some item today': 783155, 'item today keep': 463773, 'today keep checking': 919768, 'keep checking if': 471391, 'checking if they': 174827, 'if they sell': 415128, 'sell out or': 748840, 'out or show': 626958, 'or show out': 617074, 'show out of': 767088, 'stock for you': 802180, 'for you emergencyfood': 328053, 'assassin': 96306, 'citrus': 179019, 'behealthy': 124579, 'texasbeardsman': 839855, 'dropping soon': 260727, 'soon germ': 785719, 'germ assassin': 346094, 'assassin citrus': 96307, 'citrus blast': 179020, 'blast hand': 132414, 'spray besafe': 790269, 'besafe behealthy': 127432, 'behealthy texasbeardsman': 124580, 'texasbeardsman texas': 839856, 'dropping soon germ': 260728, 'soon germ assassin': 785720, 'germ assassin citrus': 346095, 'assassin citrus blast': 96308, 'citrus blast hand': 179021, 'blast hand sanitizer': 132415, 'sanitizer spray besafe': 735780, 'spray besafe behealthy': 790270, 'besafe behealthy texasbeardsman': 127433, 'behealthy texasbeardsman texas': 124581, 'securely': 744489, 'creditcards': 216561, 'online securely': 608949, 'securely during': 744490, '19 shoppingday': 10493, 'shoppingday security': 764506, 'security payment': 744704, 'payment technology': 645749, 'technology shoppingonline': 836362, 'shoppingonline creditcards': 764519, 'creditcards mobilepayments': 216562, 'mobilepayments technology': 535061, 'technology payment': 836346, 'shopping online securely': 763478, 'online securely during': 608950, 'securely during covid': 744491, 'covid 19 shoppingday': 213790, '19 shoppingday security': 10494, 'shoppingday security payment': 764507, 'security payment technology': 744705, 'payment technology shoppingonline': 645750, 'technology shoppingonline creditcards': 836363, 'shoppingonline creditcards mobilepayments': 764520, 'creditcards mobilepayments technology': 216563, 'mobilepayments technology payment': 535062, 'ucriverside': 937896, 'epidemiologist': 279481, 'ucriverside epidemiologist': 937897, 'epidemiologist brandon': 279482, 'brandon brown': 138150, 'brown answer': 141226, 'answer common': 78027, 'common question': 189441, 'the during': 853786, 'during critical': 262575, 'critical week': 218719, 'in attempt': 420568, 'contain it': 200478, 'ucriverside epidemiologist brandon': 937898, 'epidemiologist brandon brown': 279483, 'brandon brown answer': 138151, 'brown answer common': 141227, 'answer common question': 78028, 'common question about': 189442, 'about the during': 26381, 'the during critical': 853788, 'during critical week': 262576, 'critical week in': 218720, 'week in attempt': 976364, 'in attempt to': 420569, 'attempt to contain': 102239, 'to contain it': 903365, 'contain it spread': 200480, 'freemarket': 332479, 'more goddamn': 539349, 'goddamn picture': 354857, 'of venezuelan': 592777, 'supermarket showing': 822688, 'showing me': 767480, 'socialism stayathome': 780981, 'stayathome quaratinelife': 797589, 'quaratinelife socialism': 693146, 'socialism capitalism': 780954, 'capitalism freemarket': 162754, 'better not see': 128380, 'not see one': 571480, 'one more goddamn': 606688, 'more goddamn picture': 539350, 'goddamn picture of': 354858, 'picture of venezuelan': 656175, 'of venezuelan supermarket': 592778, 'venezuelan supermarket showing': 954465, 'supermarket showing me': 822689, 'showing me the': 767481, 'me the danger': 523644, 'danger of socialism': 225684, 'of socialism stayathome': 589860, 'socialism stayathome quaratinelife': 780982, 'stayathome quaratinelife socialism': 797592, 'quaratinelife socialism capitalism': 693147, 'socialism capitalism freemarket': 780955, 'of cheap': 581298, 'stay oh': 797139, 'oh goody': 596397, 'goody goody': 358116, 'goody soon': 358120, 'soon covid': 785685, 'is re': 451243, 're opened': 699209, 'opened we': 612777, 'can re': 159376, 'start killing': 794358, 'killing earth': 474671, 'and ourselves': 68529, 'ourselves with': 625507, 'with pollution': 1000252, 'pollution and': 663895, 'era of cheap': 280069, 'of cheap oil': 581299, 'cheap oil is': 174160, 'oil is here': 596907, 'is here to': 448431, 'to stay oh': 915303, 'stay oh goody': 797140, 'oh goody goody': 596398, 'goody goody soon': 358117, 'goody soon covid': 358121, 'soon covid 19': 785686, '19 lockdown is': 8397, 'lockdown is re': 499553, 'is re opened': 451245, 're opened we': 699211, 'opened we can': 612779, 'we can re': 970996, 'can re start': 159377, 're start killing': 699575, 'start killing earth': 794359, 'killing earth and': 474672, 'earth and ourselves': 264969, 'and ourselves with': 68531, 'ourselves with pollution': 625510, 'with pollution and': 1000253, 'rearranging': 702843, 'customer rearranging': 222743, 'rearranging shelf': 702844, 'and moving': 67302, 'moving stock': 544184, 'please no': 660241, 'no we': 565874, 'move it': 543682, 'considerate if': 195214, 'we pick': 972705, 'their germ': 873402, 'germ who': 346181, 'isolate covid': 454842, 'yet we still': 1016319, 'we still see': 973409, 'still see customer': 801150, 'see customer rearranging': 745026, 'customer rearranging shelf': 222744, 'rearranging shelf and': 702845, 'shelf and moving': 756745, 'and moving stock': 67304, 'moving stock around': 544185, 'supermarket please no': 822019, 'please no we': 660242, 'no we have': 565876, 'have to move': 383251, 'to move it': 910311, 'move it back': 543683, 'it back please': 456672, 'back please be': 107228, 'be considerate if': 114195, 'considerate if we': 195215, 'if we pick': 415299, 'we pick up': 972706, 'pick up their': 655766, 'up their germ': 946239, 'their germ who': 873405, 'germ who will': 346182, 'who will stock': 990000, 'will stock the': 994991, 'stock the shelf': 802939, 'shelf when we': 757789, 'when we isolate': 984451, 'we isolate covid': 972088, 'isolate covid 19': 454843, 'help can': 389474, 'help can stop': 389477, 'can stop online': 159821, 'opportunistic': 613561, 'socioeconomic': 781384, 'being are': 124855, 'are opportunistic': 88823, 'opportunistic and': 613562, 'and despicable': 61264, 'despicable no': 238636, 'matter their': 520634, 'their socioeconomic': 874748, 'socioeconomic position': 781389, 'position when': 665204, 'human being are': 410437, 'being are opportunistic': 124857, 'are opportunistic and': 88824, 'opportunistic and despicable': 613563, 'and despicable no': 61265, 'despicable no matter': 238637, 'no matter their': 564732, 'matter their socioeconomic': 520635, 'their socioeconomic position': 874749, 'socioeconomic position when': 781390, 'position when price': 665205, 'when price are': 983902, 'myanmar': 550681, 'to 1st': 899564, '1st report': 12786, 'case myanmar': 165868, 'myanmar people': 550682, 'mask many': 518946, 'place have': 657481, 'have sold': 382613, 'out price': 627067, 'now piece': 575540, 'some 40': 782244, '40 cent': 18546, 'cent usd': 169133, 'usd before': 948905, 'same price': 733239, 'you 10': 1016741, 'piece some': 656364, 'some buying': 782463, 'online pic': 608751, 'due to 1st': 261693, 'to 1st report': 899565, '1st report of': 12787, 'report of case': 712107, 'of case myanmar': 581171, 'case myanmar people': 165869, 'myanmar people now': 550683, 'people now buying': 648888, 'now buying up': 574312, 'buying up mask': 151293, 'up mask many': 945368, 'mask many place': 518947, 'many place have': 514563, 'place have sold': 657485, 'have sold out': 382614, 'sold out price': 781746, 'out price skyrocketing': 627068, 'price skyrocketing now': 676455, 'skyrocketing now piece': 773439, 'now piece of': 575541, 'piece of surgical': 656347, 'surgical mask is': 828360, 'mask is some': 518870, 'is some 40': 452084, 'some 40 cent': 782245, '40 cent usd': 18547, 'cent usd before': 169134, 'usd before that': 948906, 'before that same': 123136, 'that same price': 846108, 'same price can': 733242, 'price can get': 673060, 'get you 10': 348670, 'you 10 piece': 1016742, '10 piece some': 1634, 'piece some buying': 656365, 'some buying online': 782464, 'buying online pic': 150821, 'nbsupdates': 553274, 'good lord': 357349, 'lord thanks': 503318, 'giving trump': 351440, 'must watch': 546991, 'watch trump': 968593, 'trump ain': 933390, 'ain playing': 39644, 'playing with': 659471, 'chinese china': 177212, 'china uklockdown': 177029, 'uklockdown schoolclosureuk': 939007, 'schoolclosureuk nbsupdates': 742020, 'nbsupdates uganda': 553276, 'good lord thanks': 357350, 'lord thanks for': 503319, 'thanks for giving': 842060, 'for giving trump': 321893, 'giving trump must': 351441, 'trump must watch': 933717, 'must watch trump': 546994, 'watch trump ain': 968594, 'trump ain playing': 933391, 'ain playing with': 39645, 'playing with the': 659473, 'with the chinese': 1001233, 'the chinese china': 850845, 'chinese china uklockdown': 177213, 'china uklockdown schoolclosureuk': 177030, 'uklockdown schoolclosureuk nbsupdates': 939008, 'schoolclosureuk nbsupdates uganda': 742021, 'fraudsters prey': 331429, 'about protecting': 26017, 'fraudsters prey on': 331430, 'public fear over': 687993, 'over the pandemic': 630749, 'pandemic learn about': 635874, 'learn about protecting': 483939, 'about protecting yourself': 26019, 'protecting yourself from': 685262, 'yourself from financial': 1026612, 'from financial and': 335470, 'financial and scam': 306324, 'and scam during': 71028, 'scam during this': 740144, 'imnext': 417496, 'currently feel': 221531, 'feel that': 302872, 'getting to': 349391, 'supermarket seems': 822366, 'big win': 130110, 'win imnext': 995555, 'imnext keepyourdistance': 417497, 'currently feel that': 221533, 'feel that getting': 302873, 'that getting to': 844006, 'getting to the': 349399, 'of the queue': 591384, 'queue to go': 694096, 'the supermarket seems': 868787, 'supermarket seems like': 822367, 'seems like big': 746808, 'like big win': 489912, 'big win imnext': 130111, 'win imnext keepyourdistance': 995556, 'absorbed': 27475, 'pee': 646239, 'my body': 547488, 'body ha': 133854, 'ha absorbed': 369429, 'absorbed so': 27480, 'much soap': 545310, 'when pee': 983851, 'pee it': 646240, 'clean the': 180646, 'toilet washyourhands': 921656, 'washyourhands handsanitizer': 967875, 'handsanitizer stayhometexas': 376651, 'my body ha': 547489, 'body ha absorbed': 133855, 'ha absorbed so': 369430, 'absorbed so much': 27481, 'so much soap': 777811, 'much soap and': 545311, 'and sanitizer that': 70887, 'sanitizer that when': 735864, 'that when pee': 847490, 'when pee it': 983852, 'pee it clean': 646241, 'it clean the': 457154, 'clean the toilet': 180655, 'the toilet washyourhands': 869717, 'toilet washyourhands handsanitizer': 921657, 'washyourhands handsanitizer stayhometexas': 967876, 'philipkotler': 654717, 'worldeconomy': 1010229, 'via philipkotler': 956165, 'philipkotler marketing': 654718, 'marketing consumerism': 517563, 'consumerism worldeconomy': 199715, 'age of coronavirus': 37863, 'of coronavirus via': 581974, 'coronavirus via philipkotler': 207017, 'via philipkotler marketing': 956166, 'philipkotler marketing consumerism': 654719, 'marketing consumerism worldeconomy': 517564, 'more american': 538600, 'american turning': 52276, 'turning directly': 935919, 'to farm': 905672, 'ha more american': 371288, 'more american turning': 538603, 'american turning directly': 52277, 'turning directly to': 935920, 'directly to farm': 243589, 'to farm for': 905673, 'farm for food': 299117, 'prevententive': 671791, 'inhumane': 438484, 'strike april': 813729, 'of prevententive': 588382, 'prevententive measure': 671792, 'shortage inhumane': 765029, 'inhumane living': 438491, 'quality quality': 691839, 'quality abuse': 691758, 'abuse amp': 27612, 'demand msleg': 235904, 'finalize amp': 305912, 'amp enact': 53724, 'mississippi prisoner are': 534407, 'prisoner are going': 678753, 'are going on': 86894, 'going on official': 355330, 'official food amp': 595810, 'amp water strike': 54813, 'water strike april': 969177, 'strike april 2020': 813730, 'protest the covid': 685929, 'lack of prevententive': 478646, 'of prevententive measure': 588383, 'prevententive measure taken': 671793, 'staff shortage inhumane': 792855, 'shortage inhumane living': 765030, 'inhumane living condition': 438492, 'food quality quality': 316097, 'quality quality abuse': 691840, 'quality abuse amp': 691759, 'abuse amp demand': 27613, 'amp demand msleg': 53630, 'demand msleg finalize': 235905, 'msleg finalize amp': 544544, 'finalize amp enact': 305913, 'amp enact sb': 53725, 'longs': 502134, 'still don': 800451, 'how longs': 408221, 'longs it': 502135, 'and restock': 70400, 'still don understand': 800456, 'understand why there': 940823, 'why there no': 991443, 'there no hand': 878813, 'sanitizer on the': 735462, 'shelf how longs': 757169, 'how longs it': 408222, 'longs it take': 502136, 'take to ramp': 832740, 'ramp up production': 696446, 'up production and': 945852, 'production and restock': 681931, 'and restock the': 70402, 'litigation': 495134, 'ballard': 109083, 'spahr': 787259, 'regulatory and': 708164, 'and litigation': 66235, 'litigation risk': 495135, 'financial service': 306579, 'provider highlighted': 686734, 'highlighted in': 395990, 'in ballard': 420676, 'ballard spahr': 109084, 'spahr webinar': 787262, 'crisis fallout': 217366, 'fallout by': 297374, 'regulatory and litigation': 708166, 'and litigation risk': 66236, 'litigation risk to': 495137, 'risk to consumer': 723952, 'to consumer financial': 903299, 'consumer financial service': 197491, 'financial service provider': 306587, 'service provider highlighted': 752728, 'provider highlighted in': 686735, 'highlighted in ballard': 395991, 'in ballard spahr': 420677, 'ballard spahr webinar': 109086, 'spahr webinar on': 787263, 'webinar on covid': 975070, '19 crisis fallout': 6245, 'crisis fallout by': 217367, 'synthesize': 831017, 'internalize': 441737, 'adoration': 32749, 'haggling': 373887, 'trump doesn': 933525, 'to synthesize': 916111, 'synthesize internalize': 831018, 'internalize information': 441738, 'not immediately': 570061, 'immediately serve': 417144, 'serve his': 751897, 'his greatest': 397477, 'greatest need': 363288, 'need praise': 555459, 'praise fealty': 668841, 'fealty adoration': 300993, 'adoration trump': 32750, 'is haggling': 448251, 'haggling over': 373888, 'over ventilator': 630880, 'ventilator price': 954593, 'while patient': 987146, 'patient die': 644162, 'die via': 241476, 'trump doesn have': 933526, 'capacity to listen': 162590, 'listen to synthesize': 494752, 'to synthesize internalize': 916112, 'synthesize internalize information': 831019, 'internalize information that': 441739, 'information that doe': 437995, 'doe not immediately': 251501, 'not immediately serve': 570062, 'immediately serve his': 417145, 'serve his greatest': 751899, 'his greatest need': 397478, 'greatest need praise': 363289, 'need praise fealty': 555460, 'praise fealty adoration': 668842, 'fealty adoration trump': 300994, 'adoration trump is': 32751, 'trump is haggling': 933646, 'is haggling over': 448252, 'haggling over ventilator': 373889, 'over ventilator price': 630881, 'ventilator price while': 954595, 'price while patient': 677525, 'while patient die': 987147, 'patient die via': 644163, 'restrictive': 717422, 'hogue': 399850, 'low risk': 505581, 'of toronto': 592321, 'toronto home': 925947, 'impact say': 417952, 'say rbc': 739085, 'rbc while': 698073, 'while market': 987041, 'taking hit': 833387, 'from restrictive': 337098, 'restrictive measure': 717423, 'measure implemented': 525222, 'spread rbc': 790764, 'rbc senior': 698068, 'senior economist': 750285, 'economist robert': 267576, 'robert hogue': 724709, 'hogue say': 399851, 'say toronto': 739404, 'from significant': 337290, 'low risk of': 505582, 'risk of toronto': 723786, 'of toronto home': 592323, 'toronto home price': 925948, 'home price collapsing': 401896, 'price collapsing from': 673179, 'collapsing from 19': 186138, 'from 19 impact': 334210, '19 impact say': 7710, 'impact say rbc': 417953, 'say rbc while': 739086, 'rbc while market': 698074, 'while market activity': 987042, 'activity is taking': 30456, 'is taking hit': 452546, 'taking hit from': 833388, 'hit from restrictive': 398237, 'from restrictive measure': 337099, 'restrictive measure implemented': 717424, 'measure implemented to': 525224, 'implemented to fight': 418493, 'the virus spread': 870894, 'virus spread rbc': 958791, 'spread rbc senior': 790765, 'rbc senior economist': 698069, 'senior economist robert': 750289, 'economist robert hogue': 267577, 'robert hogue say': 724710, 'hogue say toronto': 399852, 'say toronto home': 739405, 'home price are': 401893, 'price are safe': 672730, 'are safe from': 89789, 'safe from significant': 729700, 'from significant decline': 337291, 'casper': 166742, 'cspr': 220057, 'casper provides': 166745, 'provides covid': 686840, 'update york': 947332, 'york business': 1016585, 'business wire': 144691, 'wire casper': 996548, 'casper sleep': 166748, 'sleep inc': 773776, 'inc casper': 431276, 'casper or': 166743, 'company nyse': 190917, 'nyse cspr': 578131, 'cspr today': 220058, 'today provided': 920081, 'provided today': 686656, 'provided an': 686566, 'it north': 459849, 'american retail': 52165, 'casper provides covid': 166747, 'provides covid 19': 686841, '19 business update': 5485, 'business update york': 144593, 'update york business': 947333, 'york business wire': 1016586, 'business wire casper': 144692, 'wire casper sleep': 996549, 'casper sleep inc': 166749, 'sleep inc casper': 773777, 'inc casper or': 431277, 'casper or the': 166744, 'the company nyse': 851340, 'company nyse cspr': 190918, 'nyse cspr today': 578132, 'cspr today provided': 220059, 'today provided today': 920083, 'provided today provided': 686657, 'today provided an': 920082, 'provided an update': 686567, 'update on it': 947120, 'on it north': 601676, 'it north american': 459851, 'north american retail': 567615, 'american retail store': 52166, 'retail store operation': 718675, 'store operation in': 809293, 'operation in response': 613210, 'to the continued': 916585, 'huddling': 409906, 'price bottom': 672944, 'bottom out': 136427, 'out trump': 627731, 'is huddling': 448610, 'huddling with': 409907, 'with big': 997398, 'oil price bottom': 597064, 'price bottom out': 672945, 'bottom out trump': 136429, 'out trump is': 627732, 'trump is huddling': 933648, 'is huddling with': 448611, 'huddling with big': 409908, 'with big oil': 997400, 'big oil executive': 129887, 'multitude': 545848, 'rooted': 726024, 'cushion': 221911, 'facing multitude': 295538, 'multitude of': 545851, 'challenge rooted': 171548, 'rooted in': 726025, '19 fall': 6929, 'also doing': 48119, 'to cushion': 903840, 'cushion the': 221914, 'impact open': 417905, 'open economic': 612205, 'economic opportunity': 267177, 'opportunity stay': 613677, 'stay focused': 796866, 'on govt': 601165, 'govt handle': 361147, 'handle pay': 376249, 'pay le': 644976, 'le attention': 482854, 'world is facing': 1009695, 'is facing multitude': 447698, 'facing multitude of': 295539, 'multitude of economic': 545853, 'of economic challenge': 582950, 'economic challenge rooted': 267002, 'challenge rooted in': 171549, 'rooted in covid': 726026, 'covid 19 fall': 213070, '19 fall in': 6930, 'fall in global': 296952, 'price is also': 674856, 'is also doing': 445554, 'also doing lot': 48120, 'doing lot to': 252522, 'lot to cushion': 504390, 'to cushion the': 903842, 'cushion the impact': 221918, 'the impact open': 857944, 'impact open economic': 417906, 'open economic opportunity': 612206, 'economic opportunity stay': 267178, 'opportunity stay focused': 613678, 'stay focused on': 796869, 'focused on govt': 311955, 'on govt handle': 601166, 'govt handle pay': 361148, 'handle pay le': 376250, 'pay le attention': 644978, 'usecof': 949850, 'inflationary': 437264, 'crisis medium': 217717, 'medium cause': 527035, 'panic medium': 638305, 'show picture': 767093, 'shelf medium': 757320, 'medium rack': 527242, 'rack up': 695357, 'up usecof': 946511, 'usecof inflationary': 949851, 'inflationary language': 437265, 'language medium': 479498, 'medium blame': 527019, 'blame people': 132284, 'buying sent': 151001, '19 crisis medium': 6282, 'crisis medium cause': 217718, 'medium cause panic': 527036, 'cause panic medium': 167695, 'panic medium show': 638307, 'medium show picture': 527276, 'show picture of': 767094, 'empty shelf medium': 275078, 'shelf medium rack': 757321, 'medium rack up': 527243, 'rack up usecof': 695359, 'up usecof inflationary': 946512, 'usecof inflationary language': 949852, 'inflationary language medium': 437266, 'language medium blame': 479499, 'medium blame people': 527020, 'blame people for': 132285, 'people for panic': 647956, 'panic buying sent': 637877, 'buying sent via': 151002, 'by cape': 152062, 'cape on': 162616, 'the volatility': 870949, 'in perception': 426609, 'and stage': 72209, 'stage how': 793187, 'trend are': 931276, 'are evolving': 86296, 'evolving during': 288561, 'piece by cape': 656280, 'by cape on': 152063, 'cape on the': 162617, 'on the volatility': 604436, 'the volatility in': 870950, 'volatility in perception': 960080, 'in perception of': 426610, 'perception of the': 651239, 'of the by': 590840, 'the by country': 850240, 'by country and': 152245, 'country and stage': 210446, 'and stage how': 72210, 'stage how consumer': 793188, 'consumer trend are': 199366, 'trend are evolving': 931278, 'are evolving during': 86297, 'evolving during the': 288562, 'attribute': 102735, 'cutoff': 223688, 'news it': 560565, 'to attribute': 900830, 'attribute emission': 102738, 'emission drop': 273203, 'order agency': 618005, 'agency say': 38069, 'pandemic other': 636121, 'other unprecedented': 621160, 'unprecedented event': 943137, 'event drive': 284973, 'drive energy': 259049, 'lower california': 505805, 'california suspends': 155584, 'suspends utility': 829681, 'utility cutoff': 951281, 'cutoff take': 223691, 'take other': 832433, 'other covid': 620039, 'related action': 708374, 'energy news it': 276514, 'news it too': 560566, 'early to attribute': 264723, 'to attribute emission': 900831, 'attribute emission drop': 102739, 'emission drop to': 273204, 'drop to stay': 260431, 'home order agency': 401761, 'order agency say': 618006, 'agency say covid': 38070, '19 pandemic other': 9418, 'pandemic other unprecedented': 636123, 'other unprecedented event': 621161, 'unprecedented event drive': 943138, 'event drive energy': 284974, 'drive energy price': 259050, 'energy price lower': 276543, 'price lower california': 675125, 'lower california suspends': 505806, 'california suspends utility': 155585, 'suspends utility cutoff': 829682, 'utility cutoff take': 951282, 'cutoff take other': 223692, 'take other covid': 832434, 'other covid 19': 620040, '19 related action': 10041, 'online update': 609653, 'coronavirus online update': 206353, 'online update consumer': 609654, 'update consumer report': 946913, 'vest ecological': 955685, 'vest ecological collapse': 955686, 'royalmail': 726645, 'thismorning': 891660, 'this promoting': 889742, 'promoting online': 683850, 'for unnecessary': 327452, 'unnecessary stuff': 942940, 'stuff surely': 815190, 'surely that': 827935, 'on delivery': 600263, 'service such': 752874, 'the royalmail': 866018, 'royalmail there': 726646, 'be many': 115910, 'staff self': 792838, 'isolating this': 455154, 'will just': 993877, 'just add': 468147, 'their problem': 874453, 'problem thismorning': 679721, 'all this promoting': 45127, 'this promoting online': 889743, 'promoting online shopping': 683851, 'shopping for unnecessary': 762727, 'for unnecessary stuff': 327453, 'unnecessary stuff surely': 942942, 'stuff surely that': 815191, 'surely that not': 827937, 'that not fair': 845387, 'fair on delivery': 296353, 'on delivery service': 600269, 'delivery service such': 234465, 'service such the': 752876, 'such the royalmail': 816806, 'the royalmail there': 866019, 'royalmail there must': 726647, 'must be many': 546524, 'be many of': 115912, 'many of their': 514391, 'their staff self': 874796, 'staff self isolating': 792839, 'self isolating this': 747741, 'isolating this will': 455155, 'this will just': 891422, 'will just add': 993878, 'just add to': 468149, 'add to their': 31524, 'to their problem': 917262, 'their problem thismorning': 874454, 'dear valued': 229909, 'customer if': 222479, 'out essential': 626019, 'employee ll': 274019, 'idea ottawa': 413149, 'ottawa pandemic2020': 621909, 'dear valued customer': 229910, 'valued customer if': 952258, 'customer if you': 222481, 'you are trying': 1017271, 'trying to think': 934891, 'think of way': 885465, 'help out essential': 390250, 'out essential front': 626020, 'front line grocery': 338577, 'line grocery store': 493143, 'store employee ll': 807506, 'employee ll give': 274020, 'you an idea': 1016968, 'an idea ottawa': 56131, 'idea ottawa pandemic2020': 413150, 'whole quarantine': 990311, 'over is': 630335, 'employee like': 274015, 'like myself': 490830, 'myself is': 550887, 'be considered': 114200, 'considered super': 195331, 'hero quarantinediaries': 394077, 'quarantinediaries grocerystore': 692899, 'grocerystore superheroes': 366329, 'so after this': 776471, 'after this whole': 36420, 'this whole quarantine': 891383, 'whole quarantine is': 990312, 'is over is': 450704, 'over is grocery': 630336, 'store employee like': 807505, 'employee like myself': 274018, 'like myself is': 490831, 'myself is going': 550889, 'to be considered': 901178, 'be considered super': 114203, 'considered super hero': 195332, 'super hero quarantinediaries': 818518, 'hero quarantinediaries grocerystore': 394078, 'quarantinediaries grocerystore superheroes': 692900, 'pilers': 656555, 'stock pilers': 802646, 'pilers around': 656558, 'world toiletpaper': 1010098, 'for the stock': 326706, 'the stock pilers': 867920, 'stock pilers around': 802648, 'pilers around the': 656559, 'the world toiletpaper': 871994, 'world toiletpaper 19': 1010099, 'toiletpaper 19 quarantine': 921676, 'ln': 497183, 'ytd': 1027056, 'retain': 719604, 'hsd': 409720, 'eps': 279575, 'imb': 416873, 'bat ln': 112547, 'ln investor': 497184, 'investor day': 444150, 'yet no': 1016162, 'no material': 564725, 'material impact': 520385, 'impact limited': 417731, 'limited impact': 492651, 'on cigarette': 599923, 'cigarette duty': 178480, 'duty free': 263573, 'free not': 332003, 'not material': 570539, 'material volume': 520434, 'volume decline': 960127, 'decline only': 231387, 'only ytd': 611514, 'ytd planned': 1027057, 'planned 2020': 658436, '2020 pricing': 14529, 'pricing 60': 677914, '60 done': 20943, 'done retain': 254988, 'retain 2020': 719605, '2020 forecast': 14313, 'forecast hsd': 328832, 'hsd eps': 409721, 'eps growth': 279576, 'growth good': 367383, 'for mo': 323470, 'mo pm': 534860, 'pm imb': 661914, 'bat ln investor': 112548, 'ln investor day': 497185, 'investor day covid': 444151, '19 yet no': 12256, 'yet no material': 1016164, 'no material impact': 564726, 'material impact limited': 520386, 'impact limited impact': 417732, 'limited impact to': 492653, 'impact to date': 418031, 'date on consumer': 226700, 'on consumer demand': 600041, 'consumer demand on': 197152, 'demand on cigarette': 235964, 'on cigarette duty': 599924, 'cigarette duty free': 178481, 'duty free not': 263574, 'free not material': 332004, 'not material volume': 570540, 'material volume decline': 520435, 'volume decline only': 960128, 'decline only ytd': 231388, 'only ytd planned': 611515, 'ytd planned 2020': 1027058, 'planned 2020 pricing': 658437, '2020 pricing 60': 14530, 'pricing 60 done': 677915, '60 done retain': 20944, 'done retain 2020': 254989, 'retain 2020 forecast': 719606, '2020 forecast hsd': 14314, 'forecast hsd eps': 328833, 'hsd eps growth': 409722, 'eps growth good': 279577, 'growth good for': 367384, 'good for mo': 357082, 'for mo pm': 323471, 'mo pm imb': 534861, 'recession texas': 704371, 'texas and': 839737, 'and ohio': 68019, 'are red': 89521, 'red state': 705616, 'everything to': 288056, 'trump tariff': 933886, 'are already in': 84415, 'already in recession': 47474, 'in recession texas': 427328, 'recession texas and': 704372, 'texas and ohio': 839738, 'and ohio are': 68020, 'ohio are red': 596521, 'are red state': 89522, 'red state this': 705617, 'state this ha': 796002, 'this ha nothing': 887812, 'do with everything': 250549, 'with everything to': 998307, 'everything to do': 288057, 'do with oil': 250561, 'price and trump': 672570, 'and trump tariff': 74492, 'march is': 515397, 'is biggest': 446177, 'ever month': 285419, 'sale lockdownuk': 732343, 'lockdownuk wednesdaywisdom': 500441, 'wednesdaywisdom wednesdaythoughts': 975747, 'march is biggest': 515398, 'is biggest ever': 446178, 'biggest ever month': 130227, 'ever month for': 285420, 'month for uk': 537732, 'for uk supermarket': 327409, 'uk supermarket sale': 938774, 'supermarket sale lockdownuk': 822307, 'sale lockdownuk wednesdaywisdom': 732344, 'lockdownuk wednesdaywisdom wednesdaythoughts': 500442, 'imco': 416879, 'tacke': 831552, 'highlight imco': 395927, 'imco call': 416880, 'further action': 341991, 'to tacke': 916120, 'tacke the': 831553, 'crisis committee': 217227, 'committee on': 189083, 'internal market': 441731, 'protection agenparl': 685303, 'agenparl iorestoacasa': 38141, 'highlight imco call': 395928, 'imco call for': 416881, 'call for further': 155868, 'for further action': 321820, 'further action to': 341992, 'action to be': 30164, 'to be taken': 901578, 'be taken to': 117506, 'taken to tacke': 833107, 'to tacke the': 916121, 'tacke the covid': 831554, '19 crisis committee': 6229, 'crisis committee on': 217228, 'committee on the': 189086, 'on the internal': 604186, 'the internal market': 858359, 'internal market and': 441732, 'consumer protection agenparl': 198501, 'protection agenparl iorestoacasa': 685304, 'gripped': 364053, 'buying gripped': 150407, 'gripped britain': 364054, 'supermarket have started': 820707, 'have started to': 382732, 'started to ration': 794880, 'to ration food': 912762, 'ration food after': 697676, 'food after panic': 313043, 'panic buying gripped': 637750, 'buying gripped britain': 150408, 'pimprichinchwad': 656766, 'undue': 941056, 'burdene': 142764, 'sir please': 771623, 'including vegetable': 432243, 'pune pimprichinchwad': 689199, 'pimprichinchwad area': 656767, 'area vendor': 92250, 'vendor retailer': 954399, 'looting taking': 503269, 'taking undue': 833644, 'undue advantage': 941057, 'of situation': 589751, 'already burdene': 47241, 'sir please control': 771625, 'please control price': 659852, 'essential commodity including': 280922, 'commodity including vegetable': 189199, 'including vegetable and': 432244, 'vegetable and milk': 953927, 'and milk in': 67015, 'milk in pune': 531701, 'in pune pimprichinchwad': 427119, 'pune pimprichinchwad area': 689200, 'pimprichinchwad area vendor': 656768, 'area vendor retailer': 92251, 'vendor retailer are': 954400, 'retailer are looting': 719008, 'are looting taking': 87891, 'looting taking undue': 503270, 'taking undue advantage': 833645, 'undue advantage of': 941058, 'advantage of situation': 33032, 'of situation people': 589753, 'situation people are': 772439, 'people are already': 646923, 'are already burdene': 84401, 'mash': 518243, 'appeal we': 82085, 'have almost': 379181, 'almost run': 46732, 'following instant': 312767, 'instant mash': 440101, 'mash tinned': 518244, 'tinned potato': 898629, 'potato tinned': 666991, 'tinned meat': 898625, 'meat can': 525508, 'help thank': 390635, 'urgent appeal we': 948324, 'appeal we have': 82086, 'we have almost': 971752, 'have almost run': 379182, 'almost run out': 46733, 'the following instant': 855512, 'following instant mash': 312768, 'instant mash tinned': 440102, 'mash tinned potato': 518245, 'tinned potato tinned': 898630, 'potato tinned meat': 666992, 'tinned meat can': 898626, 'meat can you': 525509, 'you help thank': 1019202, 'help thank you': 390636, 'trump had': 933596, 'had another': 372848, 'another conversation': 77545, 'conversation reportedly': 202485, 'reportedly it': 712581, 'wa long': 962583, 'one discussing': 606190, 'discussing and': 244981, 'price usual': 677284, 'usual we': 951058, 'we find': 971559, 'putin and trump': 691009, 'and trump had': 74489, 'trump had another': 933597, 'had another conversation': 372849, 'another conversation reportedly': 77546, 'conversation reportedly it': 202486, 'reportedly it wa': 712582, 'it wa long': 462143, 'wa long one': 962584, 'long one discussing': 501540, 'one discussing and': 606191, 'discussing and oil': 244982, 'oil price usual': 597307, 'price usual we': 677286, 'usual we find': 951060, 'we find out': 971563, 'find out from': 307138, 'out from the': 626197, 'from the russian': 337865, 'puertorico': 688820, 'mandated': 513011, 'in puertorico': 427113, 'puertorico right': 688827, 'now apparently': 574076, 'apparently many': 81964, 'many aren': 513791, 'aren yet': 92598, 'yet open': 1016179, 'ha mandated': 371230, 'mandated full': 513019, 'full closure': 340529, 'closure beginning': 183858, 'beginning on': 123655, 'thursday night': 895402, 'night until': 563116, 'monday morning': 536331, 'morning next': 541370, 'week easter': 976181, 'easter stayathome': 265499, 'stayhome outbreak': 798065, 'supermarket line in': 821325, 'line in puertorico': 493201, 'in puertorico right': 427114, 'puertorico right now': 688828, 'right now apparently': 722025, 'now apparently many': 574077, 'apparently many aren': 81965, 'many aren yet': 513793, 'aren yet open': 92599, 'yet open and': 1016180, 'open and the': 612083, 'and the governor': 73400, 'the governor ha': 856641, 'governor ha mandated': 360907, 'ha mandated full': 371231, 'mandated full closure': 513020, 'full closure beginning': 340530, 'closure beginning on': 183859, 'beginning on thursday': 123656, 'on thursday night': 604674, 'thursday night until': 895404, 'night until monday': 563117, 'until monday morning': 943783, 'monday morning next': 536335, 'morning next week': 541371, 'next week easter': 561678, 'week easter stayathome': 976182, 'easter stayathome stayhome': 265500, 'stayathome stayhome outbreak': 797640, 'vistalworks': 959615, 'the vistalworks': 870929, 'vistalworks consumer': 959616, 'protection tool': 685656, 'tool ha': 925417, 'include variety': 431659, 'called miracle': 156378, 'miracle cure': 533918, 'for give': 321887, 'you install': 1019356, 'install tool': 440008, 'tool here': 925421, 'the vistalworks consumer': 870930, 'vistalworks consumer protection': 959617, 'consumer protection tool': 198571, 'protection tool ha': 685657, 'tool ha been': 925418, 'to include variety': 908257, 'include variety of': 431660, 'variety of so': 952570, 'of so called': 589806, 'so called miracle': 776687, 'called miracle cure': 156379, 'miracle cure for': 533919, 'cure for give': 220740, 'for give it': 321888, 'give it go': 350546, 'it go and': 458255, 'go and make': 353283, 'sure you install': 827862, 'you install tool': 1019357, 'install tool here': 440009, 'signlanguage': 769656, 'bsl': 141445, 'learn british': 483953, 'british signlanguage': 140593, 'signlanguage due': 769657, 'the some': 867471, 'some website': 784194, 'website have': 975292, 'dropped their': 260637, 'out discount': 625958, 'on bsl': 599713, 'bsl sign': 141446, 'sign sign': 769210, 'sign world': 769265, 'school of': 741881, 'of sign': 589721, 'always wanted to': 49785, 'wanted to learn': 966259, 'to learn british': 909128, 'learn british signlanguage': 483954, 'british signlanguage due': 140594, 'signlanguage due to': 769658, 'to the some': 917079, 'the some website': 867472, 'some website have': 784195, 'website have dropped': 975293, 'have dropped their': 380388, 'dropped their price': 260638, 'their price check': 874385, 'check out discount': 174546, 'out discount on': 625959, 'discount on bsl': 244508, 'on bsl sign': 599714, 'bsl sign sign': 141447, 'sign sign world': 769211, 'sign world and': 769266, 'world and school': 1009285, 'and school of': 71077, 'school of sign': 741884, 'of sign for': 589722, 'sign for child': 769120, 'nxt': 577823, 'maize price': 509203, 'crash covid': 214962, 'take toll': 832748, 'toll agree': 923829, 'agree if': 38609, 'can contain': 157972, 'contain spreading': 200489, 'spreading th': 791048, 'th virus': 840061, 'for nxt': 324001, 'nxt few': 577824, 'few wks': 304183, 'wks price': 1003256, 'will rebound': 994583, 'rebound to': 703328, 'safeguard our': 730211, 'farmer need': 299466, 'the hr': 857680, 'hr is': 409634, 'is goi': 448083, 'goi pvt': 354966, 'pvt partnership': 691356, 'maize price crash': 509204, 'price crash covid': 673319, 'crash covid 19': 214963, '19 take toll': 11029, 'take toll agree': 832749, 'toll agree if': 923830, 'agree if we': 38610, 'we can contain': 970923, 'can contain spreading': 157974, 'contain spreading th': 200490, 'spreading th virus': 791049, 'th virus for': 840062, 'virus for nxt': 958202, 'for nxt few': 324002, 'nxt few wks': 577825, 'few wks price': 304185, 'wks price will': 1003257, 'price will rebound': 677582, 'will rebound to': 994587, 'rebound to safeguard': 703329, 'to safeguard our': 913705, 'safeguard our farmer': 730212, 'our farmer need': 623024, 'farmer need of': 299468, 'need of the': 555345, 'of the hr': 591115, 'the hr is': 857681, 'hr is goi': 409636, 'is goi pvt': 448084, 'goi pvt partnership': 354967, 'not coronacrisis': 568888, 'can we just': 160179, 'we just not': 972115, 'just not coronacrisis': 469328, 'marico': 515691, 'gupta': 368812, 'opines': 613435, 'eas': 265056, 'richa': 721276, 'arora': 93083, 'marico gupta': 515694, 'gupta opines': 368813, 'opines that': 613438, 'the fmcg': 855473, 'fmcg sector': 311745, 'to decent': 903995, 'decent growth': 230778, 'situation eas': 772248, 'eas this': 265060, 'on building': 599719, 'building stronger': 142141, 'stronger more': 814180, 'more efficient': 539115, 'efficient supply': 269432, 'say richa': 739104, 'richa arora': 721277, 'arora of': 93084, 'of tata': 590603, 'product stayhome': 681644, 'marico gupta opines': 515695, 'gupta opines that': 368814, 'opines that the': 613439, 'that the fmcg': 846731, 'the fmcg sector': 855475, 'fmcg sector will': 311746, 'sector will get': 744405, 'will get back': 993496, 'back to decent': 107361, 'to decent growth': 903997, 'decent growth in': 230779, 'growth in month': 367402, 'in month once': 425421, 'month once the': 537929, 'once the situation': 605733, 'the situation eas': 867253, 'situation eas this': 772249, 'eas this is': 265061, 'industry to work': 436176, 'work on building': 1005529, 'on building stronger': 599721, 'building stronger more': 142142, 'stronger more efficient': 814181, 'more efficient supply': 539116, 'efficient supply chain': 269433, 'chain say richa': 171087, 'say richa arora': 739105, 'richa arora of': 721278, 'arora of tata': 93085, 'of tata consumer': 590604, 'tata consumer product': 834839, 'consumer product stayhome': 198481, 'accommodate the': 28435, 'and pregnant': 69354, 'woman medical': 1003556, 'salute you': 732870, 'store opening early': 809276, 'opening early to': 612825, 'early to accommodate': 264721, 'to accommodate the': 899972, 'accommodate the elderly': 28437, 'elderly and pregnant': 270586, 'and pregnant woman': 69355, 'pregnant woman medical': 669846, 'woman medical team': 1003557, 'medical team grocery': 526476, 'responder and anyone': 715408, 'and anyone working': 58231, 'anyone working to': 80658, 'keep the spread': 472072, 'you we salute': 1022205, 'we salute you': 973124, 'digital human': 242581, 'human covid': 410475, 'home conference': 400915, 'conference call': 193725, 'call meeting': 155994, 'meeting tele': 527762, 'tele ordering': 836665, 'ordering for': 618972, 'delivery online': 234259, 'shopping live': 763198, 'digital human covid': 242582, 'human covid 19': 410476, '19 work from': 12169, 'from home conference': 335849, 'home conference call': 400916, 'conference call meeting': 193727, 'call meeting tele': 155995, 'meeting tele ordering': 527763, 'tele ordering for': 836666, 'ordering for take': 618973, 'for take home': 326126, 'take home or': 832206, 'home or delivery': 401739, 'or delivery online': 614941, 'delivery online shopping': 234261, 'online shopping live': 609175, 'could at': 208826, 'least lower': 484536, 'afford these': 34780, 'these super': 880772, 'super high': 818520, 'great if you': 362744, 'you could at': 1018075, 'could at least': 208827, 'at least lower': 99515, 'least lower the': 484537, '19 most people': 8692, 'are now out': 88580, 'of work and': 593239, 'cannot afford these': 161616, 'afford these super': 34782, 'these super high': 880773, 'super high price': 818521, 'price of tp': 675596, 'tp and other': 927744, 'is shit': 451863, 'paper hoarding is': 640282, 'hoarding is shit': 399396, 'governor announcement': 360866, 'announcement for': 77146, 'for ca': 319870, 'ca last': 154890, 'night ha': 563007, 'like californialockdown': 489950, 'californialockdown shelterinplace': 155635, 'wondering about going': 1004149, 'store after the': 806084, 'after the governor': 36319, 'the governor announcement': 856636, 'governor announcement for': 360867, 'announcement for ca': 77147, 'for ca last': 319871, 'ca last night': 154891, 'last night ha': 480377, 'night ha me': 563008, 'ha me like': 371251, 'me like californialockdown': 523079, 'like californialockdown shelterinplace': 489951, 'supermarket initiative': 821043, 'reduce spread': 705932, 'time hate': 896888, 'hate supermarket': 378910, 'another supermarket initiative': 77886, 'supermarket initiative to': 821044, 'initiative to reduce': 438661, 'to reduce spread': 913039, 'reduce spread should': 705936, 'spread should do': 790791, 'do this all': 250337, 'the time hate': 869592, 'time hate supermarket': 896889, 'hate supermarket isle': 378911, 'paper tissue': 640911, 'tissue sanitizer': 899207, 'all australia': 42087, 'australia due': 103268, 'our gov': 623264, 'gov is': 359605, 'allowing student': 46338, 'work more': 1005474, 'more hour': 539450, 'shelf cruise': 756973, 'essential item like': 281211, 'toilet paper tissue': 921493, 'paper tissue sanitizer': 640914, 'tissue sanitizer and': 899208, 'sanitizer and all': 734380, 'and all food': 57863, 'all food all': 42805, 'food all australia': 313083, 'all australia due': 42088, 'australia due to': 103269, '19 our gov': 9050, 'our gov is': 623265, 'gov is allowing': 359606, 'is allowing student': 445490, 'allowing student to': 46339, 'student to work': 814793, 'to work more': 918755, 'work more hour': 1005476, 'more hour to': 539452, 'supermarket shelf cruise': 822453, 'spending have': 788842, 'have drastically': 380361, 'drastically changed': 258425, 'since early': 770571, 'early january': 264626, 'january due': 464655, 'industry impact': 435895, 'impact according': 417537, 'consumer spending have': 199067, 'spending have drastically': 788843, 'have drastically changed': 380362, 'drastically changed since': 258427, 'changed since early': 172548, 'since early january': 770573, 'early january due': 264627, 'january due to': 464656, 'due to here': 261806, 'to here are': 907714, 'the industry impact': 858175, 'industry impact according': 435896, 'impact according to': 417538, 'usacovid19': 948812, 'product usacovid19': 681798, 'consumer product usacovid19': 198484, 'compelling': 191516, 'is stayhomesavelives': 452246, 'stayhomesavelives the': 798476, 'the evidence': 854629, 'becoming compelling': 120282, 'compelling that': 191525, 'should wear': 766656, 'wear simple': 974455, 'simple mask': 770054, 'spread mine': 790630, 'mine yours': 532946, 'yours protects': 1026475, 'supermarket et': 820208, 'protect the nh': 684979, 'the nh is': 861745, 'nh is stayhomesavelives': 561998, 'is stayhomesavelives the': 452247, 'stayhomesavelives the evidence': 798477, 'the evidence is': 854631, 'evidence is becoming': 288363, 'is becoming compelling': 446030, 'becoming compelling that': 120283, 'compelling that we': 191526, 'we should wear': 973303, 'should wear simple': 766659, 'wear simple mask': 974456, 'simple mask to': 770055, 'mask to limit': 519412, 'the spread mine': 867633, 'spread mine yours': 790631, 'mine yours protects': 532947, 'yours protects me': 1026476, 'protects me when': 685841, 'me when we': 523947, 'we go supermarket': 971651, 'go supermarket et': 354178, 'wonderous': 1004217, 'bowen': 136962, 'watching all': 968695, 'supermarket ad': 818774, 'ad showing': 31156, 'showing these': 767539, 'these wonderous': 880983, 'wonderous delight': 1004218, 'delight ha': 233036, 'become like': 120047, 'like jim': 490578, 'jim bowen': 465492, 'bowen saying': 136963, 'saying come': 739573, 'could ve': 209814, 've won': 953660, 'won coronacrisis': 1003773, 'panicbuying morrison': 638990, 'morrison supermarket': 541755, 'watching all these': 968697, 'all these supermarket': 45059, 'these supermarket ad': 880775, 'supermarket ad showing': 818775, 'ad showing these': 31157, 'showing these wonderous': 767541, 'these wonderous delight': 880984, 'wonderous delight ha': 1004219, 'delight ha become': 233037, 'ha become like': 369684, 'become like jim': 120048, 'like jim bowen': 490579, 'jim bowen saying': 465493, 'bowen saying come': 136964, 'saying come and': 739574, 'come and have': 187217, 'and have look': 64255, 'at what you': 101536, 'what you could': 982668, 'you could ve': 1018105, 'could ve won': 209817, 've won coronacrisis': 953661, 'won coronacrisis panicbuying': 1003774, 'coronacrisis panicbuying morrison': 204691, 'panicbuying morrison supermarket': 638991, 'iconic': 412810, 'outcry': 628877, 'worldwarii': 1010296, 'aluminum': 49435, 'awaaz': 105531, 'london metal': 501135, 'metal exchange': 529624, 'exchange to': 289485, 'temporarily suspend': 837553, 'suspend trading': 829594, 'on iconic': 601472, 'iconic open': 412811, 'open outcry': 612433, 'outcry dealing': 628878, 'dealing floor': 229639, 'since worldwarii': 771005, 'worldwarii uk': 1010297, 'uk try': 938843, 'of news': 586999, 'news play': 560700, 'play key': 659181, 'key role': 473389, 'in setting': 427831, 'setting global': 753631, 'global benchmark': 351753, 'for copper': 320358, 'copper aluminum': 203423, 'aluminum awaaz': 49436, 'london metal exchange': 501136, 'metal exchange to': 529627, 'exchange to temporarily': 289486, 'to temporarily suspend': 916365, 'temporarily suspend trading': 837556, 'suspend trading on': 829596, 'trading on iconic': 928898, 'on iconic open': 601473, 'iconic open outcry': 412812, 'open outcry dealing': 612434, 'outcry dealing floor': 628879, 'dealing floor for': 229640, 'floor for 1st': 310797, 'time since worldwarii': 897675, 'since worldwarii uk': 771006, 'worldwarii uk try': 1010298, 'uk try to': 938844, 'try to limit': 934636, 'spread of news': 790688, 'of news play': 587001, 'news play key': 560701, 'play key role': 659182, 'key role in': 473390, 'role in setting': 725098, 'in setting global': 427832, 'setting global benchmark': 753632, 'global benchmark price': 351754, 'benchmark price for': 126848, 'price for copper': 673941, 'for copper aluminum': 320359, 'copper aluminum awaaz': 203424, 'theu': 881054, 'think care': 885183, 'care today': 164239, 'the n95': 861182, 'for 160': 318684, '160 per': 4216, 'pack call': 633029, 'consumer number': 198226, 'and theu': 73885, 'theu send': 881055, 'to form': 906199, 'form and': 329486, 'and pricegouging': 69491, 'pricegouging gov': 677816, 'gov sends': 359693, 'sends back': 750124, 'back no': 107154, 'no such': 565604, 'such email': 816468, 'email pricegouging': 272278, 'hey do not': 394359, 'not think care': 572077, 'think care today': 885184, 'care today they': 164240, 'today they now': 920322, 'they now selling': 882803, 'now selling the': 575774, 'selling the n95': 749481, 'the n95 mask': 861184, 'n95 mask for': 551192, 'mask for 160': 518665, 'for 160 per': 318685, '160 per 10': 4217, 'per 10 pack': 650668, '10 pack call': 1599, 'pack call the': 633030, 'call the consumer': 156132, 'the consumer number': 851564, 'consumer number and': 198228, 'number and theu': 576823, 'and theu send': 73886, 'theu send you': 881056, 'send you to': 749990, 'you to form': 1021779, 'to form and': 906200, 'form and pricegouging': 329487, 'and pricegouging gov': 69492, 'pricegouging gov sends': 677817, 'gov sends back': 359694, 'sends back no': 750125, 'back no such': 107155, 'no such email': 565605, 'such email pricegouging': 816469, 'teepeeformybunghole': 836579, 'me after': 522357, 'after hearing': 35773, 'hearing my': 388218, 'store restocked': 809852, 'toiletpaper teepeeformybunghole': 922582, 'teepeeformybunghole toiletpaperapocalypse': 836580, 'toiletpaperapocalypse lol': 922908, 'me after hearing': 522359, 'after hearing my': 35775, 'hearing my local': 388219, 'local store restocked': 498477, 'store restocked the': 809853, 'restocked the shelf': 716967, 'the shelf with': 866904, 'shelf with toiletpaper': 757823, 'with toiletpaper teepeeformybunghole': 1001809, 'toiletpaper teepeeformybunghole toiletpaperapocalypse': 922583, 'teepeeformybunghole toiletpaperapocalypse lol': 836581, 'forget hand': 329262, 'me some': 523505, 'some bubble': 782439, 'bubble wrap': 141627, 'wrap pandemic': 1012661, 'forget hand sanitizer': 329263, 'sanitizer get me': 734975, 'get me some': 347538, 'me some bubble': 523506, 'some bubble wrap': 782440, 'bubble wrap pandemic': 141628, 'siena': 768991, 'hey la': 394447, 'vega looking': 953820, 'for noodle': 323911, 'noodle flour': 566796, 'flour pasta': 311148, 'other italian': 620440, 'to siena': 914630, 'siena food': 768992, 'on valley': 605015, 'valley view': 952000, 'it small': 461085, 'business food': 143745, 'with ton': 1001813, 'hey la vega': 394448, 'la vega looking': 478233, 'vega looking for': 953821, 'looking for noodle': 502884, 'for noodle flour': 323912, 'noodle flour pasta': 566797, 'flour pasta sauce': 311149, 'sauce and other': 737140, 'and other italian': 68351, 'other italian food': 620441, 'italian food go': 462697, 'food go to': 314680, 'go to siena': 354359, 'to siena food': 914631, 'siena food on': 768993, 'food on valley': 315608, 'on valley view': 605016, 'valley view it': 952001, 'view it small': 957107, 'it small business': 461087, 'small business food': 774858, 'business food store': 143747, 'food store with': 316866, 'store with ton': 811408, 'with ton of': 1001814, 'ton of pasta': 924278, 'roster': 726147, 'attests': 102526, 'anyone want': 80600, 'to bet': 901779, 'on next': 602398, 'initial unemployment': 438560, 'unemployment roster': 941292, 'roster to': 726148, 'thing of': 884633, 'of incredibly': 585088, 'incredibly bad': 433887, 'author attests': 103640, 'attests on': 102527, 'anyone want to': 80605, 'want to bet': 965997, 'to bet on': 901780, 'bet on next': 128091, 'on next week': 602400, 'next week initial': 561688, 'week initial unemployment': 976397, 'initial unemployment roster': 438563, 'unemployment roster to': 941293, 'roster to be': 726149, 'to be another': 901108, 'be another thing': 113632, 'another thing of': 77902, 'thing of incredibly': 884634, 'of incredibly bad': 585089, 'incredibly bad news': 433888, 'bad news and': 107950, 'the author attests': 849069, 'author attests on': 103641, 'attests on our': 102528, 'our way to': 625313, 'way to 20': 969982, 'impacted every': 418105, 'every industry': 285955, 'and workplace': 75898, 'workplace due': 1009192, 'and rumor': 70628, 'rumor b2b': 727476, 'b2b space': 106474, 'space is': 787131, 'different here': 241959, 'is take': 452523, 'on safety': 603253, 'safety from': 730547, 'virus during': 958151, 'directly impacted every': 243558, 'impacted every industry': 418106, 'every industry and': 285957, 'industry and workplace': 435653, 'and workplace due': 75899, 'workplace due to': 1009193, 'paranoia and rumor': 641423, 'and rumor b2b': 70629, 'rumor b2b space': 727477, 'b2b space is': 106475, 'space is no': 787132, 'no different here': 564014, 'different here is': 241960, 'here is take': 393251, 'is take on': 452525, 'take on safety': 832406, 'on safety from': 603255, 'safety from virus': 730550, 'from virus during': 338250, 'virus during this': 958152, 'of enterprise': 583129, 'enterprise service': 278459, 'service surplus': 752889, 'surplus operation': 828496, 'operation retail': 613249, 'public until': 688444, 'effort to prevent': 269636, 'virus the department': 958882, 'department of enterprise': 237239, 'of enterprise service': 583130, 'enterprise service surplus': 278460, 'service surplus operation': 752890, 'surplus operation retail': 828497, 'operation retail store': 613250, 'the public until': 864864, 'public until further': 688445, 'supporting supply': 827203, 'chain management': 170910, 'management to': 512646, 'supporting supply chain': 827204, 'supply chain management': 824991, 'chain management to': 170914, 'management to alleviate': 512647, 'alleviate the challenge': 45825, 'got listing': 358671, 'listing of': 494863, 'more also': 538596, 'also if': 48387, 'have business': 379858, 'list do': 494301, 'so by': 776673, 'by scrolling': 153894, 'scrolling to': 742883, 've got listing': 953183, 'got listing of': 358672, 'listing of local': 494864, 'local business that': 497777, 'are offering online': 88671, 'shopping delivery and': 762455, 'delivery and more': 233668, 'and more also': 67142, 'more also if': 538597, 'also if you': 48389, 'you have business': 1019021, 'have business that': 379859, 'business that you': 144494, 'that you like': 847729, 'to add to': 900071, 'this list do': 888655, 'list do so': 494302, 'do so by': 250089, 'so by scrolling': 776675, 'by scrolling to': 153895, 'scrolling to the': 742884, 'to the bottom': 916526, 'of the article': 590803, 'shelf wonder': 757829, 'why foodforthought': 990998, 'foodforthought stayhomesavelives': 317913, 'stayhomesavelives spain': 798446, 'it wa left': 462138, 'wa left the': 962525, 'left the other': 485670, 'other day on': 620079, 'supermarket shelf wonder': 822570, 'shelf wonder why': 757830, 'wonder why foodforthought': 1004038, 'why foodforthought stayhomesavelives': 990999, 'foodforthought stayhomesavelives spain': 317914, 'stayhomesavelives spain supermarket': 798447, 'sister is': 771754, 'is eating': 447436, 'eating would': 266342, 'be alone': 113570, 'alone responsible': 46902, 'the way my': 871169, 'way my sister': 969722, 'my sister is': 550110, 'sister is eating': 771756, 'is eating would': 447438, 'eating would be': 266343, 'would be alone': 1011548, 'be alone responsible': 113572, 'alone responsible for': 46903, 'for the shortage': 326683, 'the shortage in': 867094, 'so chicken': 776753, 'chicken are': 175745, 'shelf not': 757343, 'not literally': 570434, 'literally together': 495099, 'with bread': 997469, 'rice so': 721142, 'so new': 777865, 'new made': 559078, 'food appearing': 313399, 'appearing and': 82159, 'in aldi': 420153, 'aldi probably': 41291, 'probably result': 679361, 'warming 19': 966899, 'and brexit': 59189, 'brexit whatever': 139534, 'whatever happened': 982758, 'so chicken are': 776754, 'chicken are flying': 175746, 'are flying off': 86611, 'off the supermarket': 594273, 'supermarket shelf not': 822502, 'shelf not literally': 757345, 'not literally together': 570435, 'literally together with': 495100, 'together with bread': 921040, 'with bread pasta': 997470, 'bread pasta and': 138563, 'and rice so': 70507, 'rice so new': 721143, 'so new made': 777866, 'new made up': 559079, 'made up food': 508051, 'up food appearing': 944876, 'food appearing and': 313400, 'appearing and there': 82160, 'were plenty of': 979983, 'plenty of these': 660985, 'of these in': 591832, 'these in aldi': 880155, 'in aldi probably': 420155, 'aldi probably result': 41292, 'probably result of': 679362, 'result of global': 717593, 'of global warming': 584160, 'global warming 19': 352289, 'warming 19 and': 966900, '19 and brexit': 4994, 'and brexit whatever': 59191, 'brexit whatever happened': 139535, 'whatever happened to': 982759, 'happened to brexit': 377275, 'our absolute': 622011, 'absolute goal': 27240, 'stay trading': 797358, 'trading fast': 928856, 'food giant': 314661, 'giant hopeful': 349799, 'hopeful of': 403834, 'of pushing': 588620, 'pushing through': 690459, 'through despite': 894417, 'our absolute goal': 622012, 'absolute goal is': 27241, 'to stay trading': 915326, 'stay trading fast': 797359, 'trading fast food': 928857, 'fast food giant': 299963, 'food giant hopeful': 314663, 'giant hopeful of': 349800, 'hopeful of pushing': 403835, 'of pushing through': 588622, 'pushing through despite': 690460, 'through despite covid': 894418, 'frm': 334108, 'cornershop': 203700, 'have bread': 379838, 'or milk': 616142, 'egg my': 269924, 'kid starving': 474118, 'starving we': 795273, 'we staying': 973393, 'purchased essential': 689770, 'essential frm': 281067, 'frm cornershop': 334113, 'cornershop who': 203703, 'up seeing': 945956, 'seeing my': 746377, 'kid starve': 474116, 'starve want': 795232, 'want actually': 965686, 'commit suicide': 188975, 'not have bread': 569815, 'have bread or': 379840, 'bread or milk': 138555, 'or milk egg': 616143, 'milk egg my': 531659, 'egg my kid': 269925, 'my kid starving': 548958, 'kid starving we': 474119, 'starving we staying': 795274, 'we staying home': 973394, 'staying home to': 798625, 'home to save': 402338, 'save life have': 737541, 'life have purchased': 488722, 'have purchased essential': 382109, 'purchased essential frm': 689771, 'essential frm cornershop': 281068, 'frm cornershop who': 334114, 'cornershop who been': 203704, 'who been hiking': 988305, 'been hiking price': 121294, 'price up seeing': 677256, 'up seeing my': 945957, 'seeing my kid': 746379, 'my kid starve': 548957, 'kid starve want': 474117, 'starve want actually': 795233, 'want actually commit': 965687, 'actually commit suicide': 30762, 'madness on': 508197, 'old kent': 598311, 'kent road': 472826, 'road asda': 724416, 'asda update': 94997, 'update report': 947194, 'of asda': 580386, 'asda on': 94956, 'on old': 602499, 'road closing': 724435, 'to row': 913639, 'row over': 726580, 'over bog': 630023, 'bog rolling': 133967, 'rolling were': 725688, 'were greatly': 979705, 'greatly exaggerated': 363314, 'exaggerated according': 288774, 'to spokesperson': 915033, 'spokesperson for': 789790, 'madness on the': 508198, 'on the old': 604259, 'the old kent': 862137, 'old kent road': 598313, 'kent road asda': 472827, 'road asda update': 724417, 'asda update report': 94998, 'update report of': 947196, 'report of asda': 712105, 'of asda on': 580387, 'asda on old': 94957, 'on old kent': 602500, 'kent road closing': 472829, 'road closing due': 724436, 'due to row': 261930, 'to row over': 913640, 'row over bog': 726581, 'over bog rolling': 630025, 'bog rolling were': 133968, 'rolling were greatly': 725689, 'were greatly exaggerated': 979706, 'greatly exaggerated according': 363315, 'exaggerated according to': 288775, 'according to spokesperson': 28589, 'to spokesperson for': 915035, 'spokesperson for the': 789792, 'restricting': 717180, 'my simple': 550086, 'simple solution': 770092, 'solution would': 782139, 'remove all': 710804, 'all trolley': 45288, 'basket from': 112338, 'to restricting': 913434, 'restricting one': 717192, 'one type': 607319, 'person this': 652647, 'can hold': 158686, 'hold in': 399945, 'your arm': 1022827, 'each item': 264107, 'too simple': 925066, 'my simple solution': 550087, 'simple solution would': 770093, 'solution would be': 782140, 'be to remove': 117732, 'to remove all': 913214, 'remove all trolley': 710805, 'all trolley and': 45289, 'trolley and basket': 932360, 'and basket from': 58731, 'basket from every': 112340, 'every supermarket in': 286255, 'supermarket in addition': 820858, 'addition to restricting': 31745, 'to restricting one': 913435, 'restricting one type': 717193, 'one type of': 607320, 'type of item': 937565, 'of item person': 585488, 'item person this': 463566, 'person this mean': 652649, 'this mean that': 888817, 'mean that you': 524690, 'can only buy': 159119, 'you can hold': 1017695, 'can hold in': 158687, 'hold in your': 399946, 'in your arm': 431056, 'your arm and': 1022828, 'arm and only': 92883, 'and only one': 68146, 'one of each': 606741, 'of each item': 582901, 'each item is': 264109, 'item is this': 463392, 'is this too': 453128, 'this too simple': 890807, 'passage': 643237, 'congress nears': 194513, 'nears passage': 553878, 'passage of': 643238, 'of record': 588836, 'record trillion': 705075, 'package professor': 633380, 'professor joe': 682557, 'joe mason': 466427, 'mason and': 519715, 'navigating covid': 553117, 'today topic': 920388, 'topic size': 925817, 'size up': 772809, 'nationwide consumer': 552719, 'congress nears passage': 194514, 'nears passage of': 553879, 'passage of record': 643239, 'of record trillion': 588841, 'record trillion stimulus': 705076, 'stimulus package professor': 801588, 'package professor joe': 633381, 'professor joe mason': 682558, 'joe mason and': 466428, 'mason and continue': 519716, 'and continue our': 60492, 'continue our series': 201090, 'our series on': 624724, 'series on navigating': 751285, 'on navigating covid': 602345, 'navigating covid 19': 553118, '19 today topic': 11472, 'today topic size': 920389, 'topic size up': 925818, 'size up the': 772810, 'up the cost': 946161, 'the cost and': 851981, 'cost and benefit': 207854, 'and benefit of': 58894, 'benefit of nationwide': 127046, 'of nationwide consumer': 586869, 'nationwide consumer debt': 552720, 'consumer debt holiday': 197080, 'doubling': 256155, 'week demand': 976143, 'surged having': 828306, 'having made': 384149, 'made over': 507902, '00 delivery': 166, 'delivery doubling': 233880, 'doubling in': 256160, 'and australia': 58521, 'option in': 614055, 'offering item': 595171, 'like pasta': 490970, 'pasta baby': 643695, 'food milk': 315459, 'last two week': 480606, 'two week demand': 937327, 'week demand ha': 976145, 'demand ha surged': 235619, 'ha surged having': 372125, 'surged having made': 828307, 'having made over': 384150, 'made over 00': 507903, 'over 00 delivery': 629751, '00 delivery doubling': 167, 'delivery doubling in': 233881, 'doubling in the': 256162, 'the and australia': 848685, 'and australia the': 58523, 'australia the company': 103399, 'company ha expanded': 190709, 'expanded it delivery': 290483, 'it delivery option': 457509, 'delivery option in': 234273, 'option in response': 614056, 'the outbreak by': 862597, 'outbreak by offering': 628074, 'by offering item': 153399, 'offering item like': 595172, 'item like pasta': 463420, 'like pasta baby': 490972, 'pasta baby food': 643696, 'baby food milk': 106607, 'food milk and': 315460, 'affordably': 34915, 'of mission': 586581, 'help self': 390501, 'employed professional': 273488, 'professional business': 682428, 'owner especially': 632445, 'impact subscription': 417974, 'lowered so': 506079, 'file tax': 305371, 'tax easily': 834974, 'easily more': 265230, 'more affordably': 538565, 'part of mission': 642362, 'of mission to': 586582, 'mission to help': 534381, 'to help self': 907621, 'help self employed': 390502, 'self employed professional': 747629, 'employed professional business': 273489, 'professional business owner': 682429, 'business owner especially': 144183, 'owner especially during': 632446, 'during the enhanced': 263122, 'community quarantine pandemic': 190054, 'quarantine pandemic impact': 692423, 'pandemic impact subscription': 635688, 'impact subscription price': 417975, 'subscription price have': 815904, 'been lowered so': 121498, 'lowered so you': 506080, 'you can file': 1017675, 'can file tax': 158304, 'file tax easily': 305373, 'tax easily more': 834975, 'easily more affordably': 265231, 'farmboy': 299225, 'rebel go': 703269, 'go inside': 353726, 'inside my': 439318, 'local farmboy': 497943, 'farmboy and': 299226, 'done an': 254769, 'only once': 610862, 'one store': 607120, 'easter madness': 265465, 'rebel go inside': 703270, 'go inside my': 353729, 'inside my local': 439319, 'my local farmboy': 549112, 'local farmboy and': 497944, 'farmboy and other': 299227, 'and other grocery': 68335, 'store have done': 808077, 'have done an': 380323, 'done an amazing': 254770, 'amazing job of': 50723, 'job of socialdistancing': 466041, 'of socialdistancing but': 589848, 'socialdistancing but it': 780259, 'but it only': 146149, 'it only once': 460104, 'only once week': 610863, 'week and only': 975928, 'only one store': 610886, 'one store today': 607124, 'today wa the': 920454, 'wa the day': 963443, 'before easter madness': 122757, 'ibiza': 412579, 'eularia': 283333, 'verity': 954814, 'ibiza2020': 412582, 'distancing ibiza': 247208, 'ibiza style': 412580, 'style at': 815590, 'santa eularia': 736595, 'eularia image': 283334, 'image credit': 416623, 'credit mat': 216432, 'mat verity': 520257, 'verity ibiza2020': 954815, 'social distancing ibiza': 779634, 'distancing ibiza style': 247209, 'ibiza style at': 412581, 'style at supermarket': 815591, 'supermarket in santa': 820971, 'in santa eularia': 427698, 'santa eularia image': 736596, 'eularia image credit': 283335, 'image credit mat': 416624, 'credit mat verity': 216433, 'mat verity ibiza2020': 520258, 'on lack': 601784, 'national covid': 552461, 'response imagine': 715723, 'like shopper': 491176, 'store competing': 807130, 'competing to': 191643, 'last bag': 480115, 'in refusing': 427345, 'coordinate the': 203185, 'fed gov': 301822, 'gov creates': 359558, 'creates the': 215966, 'for competition': 320211, 'hoarding that': 399576, 'cost life': 207999, 'on lack of': 601785, 'lack of national': 478637, 'of national covid': 586860, 'national covid 19': 552462, '19 response imagine': 10152, 'response imagine the': 715724, 'imagine the state': 416803, 'the state like': 867787, 'state like shopper': 795739, 'like shopper at': 491177, 'shopper at grocery': 761409, 'grocery store competing': 365292, 'store competing to': 807131, 'competing to get': 191644, 'get the last': 348259, 'the last bag': 858992, 'last bag of': 480116, 'of rice and': 589090, 'rice and toilet': 721004, 'paper in refusing': 640329, 'in refusing to': 427346, 'refusing to coordinate': 707090, 'to coordinate the': 903500, 'coordinate the fed': 203186, 'the fed gov': 855059, 'fed gov creates': 301823, 'gov creates the': 359559, 'creates the condition': 215967, 'the condition for': 851431, 'condition for competition': 193454, 'for competition and': 320212, 'competition and hoarding': 191665, 'and hoarding that': 64665, 'hoarding that will': 399582, 'that will cost': 847567, 'will cost life': 993048, 'telemedicine': 836770, 'despite encouragement': 238732, 'encouragement from': 275678, 'from employer': 335274, 'employer and': 274482, 'health insurer': 386555, 'insurer consumer': 440874, 'consumer adoption': 196035, 'telehealth telemedicine': 836764, 'telemedicine prior': 836784, 'low that': 505661, 'now changed': 574371, 'changed forever': 172476, 'forever healthcare': 329121, 'healthcare point': 387213, 'care ha': 163977, 'despite encouragement from': 238733, 'encouragement from employer': 275679, 'from employer and': 335275, 'employer and health': 274483, 'and health insurer': 64358, 'health insurer consumer': 386556, 'insurer consumer adoption': 440875, 'consumer adoption of': 196036, 'adoption of telehealth': 32724, 'of telehealth telemedicine': 590647, 'telehealth telemedicine prior': 836766, 'telemedicine prior to': 836785, 'prior to covid': 678371, '19 wa very': 11880, 'wa very low': 963644, 'very low that': 955344, 'low that now': 505665, 'that now changed': 845418, 'now changed forever': 574372, 'changed forever healthcare': 172477, 'forever healthcare point': 329122, 'healthcare point of': 387214, 'point of care': 662555, 'of care ha': 581144, 'care ha shifted': 163979, 'muddappa': 545509, 'maintain sufficient': 509050, 'sufficient stock': 817395, 'grain please': 361785, 'please insist': 660115, 'insist state': 439697, 'encourage farmer': 275584, 'grow more': 367040, 'grain muddappa': 361782, 'like to appreciate': 491574, 'to appreciate your': 900672, 'appreciate your effort': 82796, 'your effort in': 1023627, 'in combating covid': 421579, 'important to maintain': 419060, 'to maintain sufficient': 909599, 'maintain sufficient stock': 509051, 'sufficient stock of': 817396, 'of food grain': 583699, 'food grain please': 314709, 'grain please insist': 361786, 'please insist state': 660116, 'insist state government': 439698, 'government to encourage': 360713, 'to encourage farmer': 905059, 'encourage farmer to': 275585, 'farmer to grow': 299538, 'to grow more': 907032, 'grow more food': 367041, 'more food grain': 539243, 'food grain muddappa': 314708, 'deresinski': 237857, 'need mask': 555205, 'mask tweet': 519454, 'from spurred': 337393, 'spurred then': 791355, 'then moved': 877343, 'moved mountain': 543814, 'mountain in': 543421, 'in hurry': 423927, 'hurry to': 411521, 'the dr': 853645, 'dr stanley': 258104, 'stanley deresinski': 793880, 'deresinski 11': 237858, 'you need mask': 1020011, 'need mask tweet': 555213, 'mask tweet from': 519455, 'tweet from spurred': 936369, 'from spurred then': 337394, 'spurred then moved': 791356, 'then moved mountain': 877344, 'moved mountain in': 543815, 'mountain in hurry': 543422, 'in hurry to': 423928, 'hurry to get': 411523, 'get an interview': 346545, 'with the dr': 1001272, 'the dr stanley': 853646, 'dr stanley deresinski': 258105, 'stanley deresinski 11': 793881, 'deresinski 11 19': 237859, 'alberta premier': 40817, 'kenney warns': 472806, 'face negative': 294633, 'alberta premier jason': 40818, 'jason kenney warns': 464853, 'kenney warns the': 472807, 'warns the region': 967300, 'the region face': 865428, 'region face negative': 707414, 'face negative oil': 294634, 'uncertainty doesn': 939679, 'doesn begin': 251712, 'condition brought': 193420, 'consumer essentially': 197376, 'essentially ha': 281907, 'activity won': 30544, 'doubt it': 256204, 'slowed down': 774490, 'uncertainty doesn begin': 939680, 'doesn begin to': 251713, 'begin to describe': 123581, 'economic condition brought': 267020, 'condition brought on': 193421, 'by the effort': 154316, 'american consumer essentially': 51889, 'consumer essentially ha': 197377, 'essentially ha been': 281908, 'ha been told': 369959, 'economic activity won': 266968, 'activity won stop': 30545, 'won stop but': 1003910, 'no doubt it': 564052, 'doubt it ha': 256207, 'ha slowed down': 371974, 'dislocated': 245963, 'impaired': 418284, 'pimco': 656750, 'amundi': 54950, 'ashmore': 95129, 'unprecedented triple': 943209, 'triple shock': 932262, 'shock from': 759453, 'ha dislocated': 370395, 'dislocated asset': 245964, 'and impaired': 65014, 'impaired liquidity': 418287, 'liquidity across': 494120, 'market pimco': 516850, 'pimco amundi': 656751, 'amundi ashmore': 54951, 'ashmore bond': 95130, 'bond fund': 134247, 'fund battered': 341370, 'by turbulent': 154610, 'turbulent market': 935511, 'an unprecedented triple': 56896, 'unprecedented triple shock': 943210, 'triple shock from': 932263, 'shock from the': 759454, 'from the stock': 337888, 'market crash covid': 516242, 'price ha dislocated': 674380, 'ha dislocated asset': 370396, 'dislocated asset price': 245965, 'asset price and': 96453, 'price and impaired': 672439, 'and impaired liquidity': 65015, 'impaired liquidity across': 418288, 'liquidity across all': 494121, 'across all market': 29230, 'all market pimco': 43460, 'market pimco amundi': 516851, 'pimco amundi ashmore': 656752, 'amundi ashmore bond': 54952, 'ashmore bond fund': 95131, 'bond fund battered': 134248, 'fund battered by': 341371, 'battered by turbulent': 112748, 'by turbulent market': 154611, 'turbulent market via': 935513, 'accusation': 28923, 'daunt can': 226935, 'can accept': 157346, 'accept that': 27993, 'employee couldn': 273740, 'couldn afford': 209858, 'take unpaid': 832764, 'leave but': 484759, 'can entertain': 158242, 'entertain the': 278518, 'online conspiracy': 608038, 'conspiracy against': 195566, 'brand ok': 137945, 'ok waterstones': 597934, 'waterstones ceo': 969307, 'ceo james': 169728, 'daunt accusation': 226933, 'accusation we': 28926, 'we endangered': 971457, 'endangered book': 276093, 'book seller': 134589, 'are utter': 91440, 'utter inews': 951420, 'james daunt can': 464392, 'daunt can accept': 226936, 'can accept that': 157348, 'accept that employee': 27994, 'that employee couldn': 843700, 'employee couldn afford': 273741, 'couldn afford to': 209860, 'afford to take': 34811, 'to take unpaid': 916255, 'take unpaid leave': 832765, 'unpaid leave but': 943028, 'leave but can': 484760, 'but can entertain': 145348, 'can entertain the': 158244, 'entertain the idea': 278519, 'idea of an': 413123, 'of an online': 580127, 'an online conspiracy': 56613, 'online conspiracy against': 608039, 'conspiracy against the': 195567, 'against the brand': 37644, 'the brand ok': 849942, 'brand ok waterstones': 137946, 'ok waterstones ceo': 597935, 'waterstones ceo james': 969309, 'ceo james daunt': 169729, 'james daunt accusation': 464391, 'daunt accusation we': 226934, 'accusation we endangered': 28927, 'we endangered book': 971458, 'endangered book seller': 276094, 'book seller are': 134590, 'seller are utter': 748983, 'are utter inews': 91441, 'scomovirus': 742301, 'isolate get': 454865, 'essential stop': 281586, 'can self': 159562, 'food think': 317185, 'it scomovirus': 460911, 'let the people': 487135, 'self isolate get': 747676, 'isolate get their': 454866, 'get their essential': 348328, 'their essential stop': 873176, 'essential stop panic': 281587, 'panic buying people': 637845, 'buying people who': 150899, 'are most vulnerable': 88142, 'vulnerable can self': 960900, 'can self isolate': 159563, 'self isolate when': 747695, 'isolate when all': 454942, 'when all are': 983126, 'all are taking': 42050, 'are taking all': 90712, 'taking all of': 833264, 'their food think': 873355, 'food think about': 317186, 'think about it': 885089, 'about it scomovirus': 25593, 'he for': 384968, 'for paying': 324427, 'paying american': 645382, 'american price': 52145, 'so he for': 777272, 'he for paying': 384969, 'for paying american': 324428, 'paying american price': 645383, 'outlests': 629015, 'food outlests': 315712, 'outlests and': 629016, 'face catastrophe': 294352, 'catastrophe so': 166939, 'fast food outlests': 299971, 'food outlests and': 315713, 'outlests and many': 629017, 'business are all': 143355, 'are all closed': 84292, 'all closed we': 42375, 'cannot allow the': 161626, 'allow the spread': 46076, '19 and face': 5022, 'and face catastrophe': 62582, 'face catastrophe so': 294353, 'catastrophe so disrespectful': 166940, 'evacuating': 283689, 'for evidence': 321267, 'how pricegouging': 408532, 'emergency actually': 272583, 'consumer consider': 196946, 'that hike': 844331, 'during hurricane': 262706, 'hurricane harvey': 411476, 'harvey left': 378672, 'more fuel': 539318, 'fuel available': 340126, 'for texan': 326240, 'were evacuating': 979586, 'evacuating to': 283690, 'for evidence of': 321268, 'evidence of how': 288366, 'of how pricegouging': 584838, 'how pricegouging during': 408533, 'pricegouging during emergency': 677808, 'during emergency actually': 262623, 'emergency actually help': 272584, 'actually help consumer': 30837, 'help consumer consider': 389518, 'consumer consider that': 196947, 'consider that hike': 195129, 'that hike in': 844332, 'hike in gasoline': 396221, 'gasoline price during': 344259, 'price during hurricane': 673624, 'during hurricane harvey': 262707, 'hurricane harvey left': 411477, 'harvey left more': 378673, 'left more fuel': 485554, 'more fuel available': 539319, 'fuel available for': 340127, 'available for texan': 104383, 'for texan who': 326241, 'texan who were': 839731, 'who were evacuating': 989958, 'were evacuating to': 979587, 'evacuating to save': 283691, 'save their life': 737675, 'guzzles': 369251, 'coal remains': 185067, 'biggest consumer': 130201, 'africa it': 35094, 'it guzzles': 458370, 'guzzles 10': 369252, 'water every': 968985, 'every second': 286147, 'second coal': 743680, 'coal compromise': 185051, 'compromise our': 192662, 'our water': 625309, 'water it': 969046, 'it compromise': 457251, 'our air': 622044, 'our humanity': 623493, 'humanity gt': 410732, 'coal remains the': 185068, 'remains the biggest': 710070, 'the biggest consumer': 849647, 'biggest consumer of': 130202, 'consumer of water': 198252, 'of water in': 592943, 'water in south': 969030, 'south africa it': 786654, 'africa it guzzles': 35095, 'it guzzles 10': 458371, 'guzzles 10 00': 369253, '10 00 litre': 1202, 'litre of water': 495170, 'of water every': 592941, 'water every second': 968986, 'every second coal': 286148, 'second coal compromise': 743681, 'coal compromise our': 185052, 'compromise our water': 192665, 'our water it': 625310, 'water it compromise': 969048, 'it compromise our': 457252, 'compromise our air': 192663, 'our air and': 622046, 'air and it': 39683, 'and it compromise': 65501, 'compromise our humanity': 192664, 'our humanity gt': 623496, 'humanity gt gt': 410733, 'from should': 337283, 'useful survey': 950193, 'shutdown show': 768093, 'in detail': 422225, 'this research from': 889882, 'research from should': 713737, 'from should be': 337284, 'should be useful': 765760, 'be useful survey': 117933, 'useful survey from': 950194, 'survey from china': 828872, '19 shutdown show': 10528, 'shutdown show in': 768094, 'show in detail': 767008, 'in detail how': 422226, 'detail how consumer': 239200, 'consumer behavior changed': 196456, 'multicultural': 545685, 'hope leader': 403531, 'of industry': 585148, 'industry pause': 436036, 'pause to': 644618, 'their total': 875016, 'total consumer': 926148, 'base during': 111442, 'time multicultural': 897239, 'multicultural consumer': 545686, 'face distinct': 294401, 'distinct challenge': 247861, 'challenge during': 171439, 'hope leader of': 403532, 'leader of industry': 483500, 'of industry pause': 585150, 'industry pause to': 436037, 'pause to think': 644619, 'think about their': 885104, 'about their total': 26595, 'their total consumer': 875017, 'total consumer base': 926149, 'consumer base during': 196400, 'base during these': 111444, 'trying time multicultural': 934750, 'time multicultural consumer': 897240, 'multicultural consumer face': 545687, 'consumer face distinct': 197428, 'face distinct challenge': 294402, 'distinct challenge during': 247862, 'challenge during the': 171440, 'asylum': 97287, 'seeker': 746626, 'aspencard': 96227, 'hostileenvironment': 404941, 'with sparking': 1000901, 'shopping many': 763242, 'many small': 514707, 'small local': 775020, 'now requiring': 575690, 'requiring cash': 713518, 'cash only': 166285, 'only sale': 611079, 'sale asylum': 732082, 'asylum seeker': 97288, 'seeker who': 746635, 'store using': 811031, 'using aspencard': 950397, 'aspencard have': 96228, 'cash no': 166280, 'child hostileenvironment': 176108, 'with sparking panic': 1000902, 'sparking panic shopping': 787604, 'panic shopping many': 638578, 'shopping many small': 763244, 'many small local': 514710, 'small local store': 775024, 'local store are': 498455, 'store are now': 806502, 'are now requiring': 88589, 'now requiring cash': 575691, 'requiring cash only': 713519, 'cash only sale': 166286, 'only sale asylum': 611080, 'sale asylum seeker': 732083, 'asylum seeker who': 97289, 'seeker who rely': 746636, 'rely on these': 709654, 'on these store': 604575, 'these store using': 880741, 'store using aspencard': 811032, 'using aspencard have': 950398, 'aspencard have no': 96229, 'have no cash': 381613, 'no cash no': 563774, 'cash no food': 166281, 'or essential for': 615181, 'essential for themselves': 281065, 'themselves and their': 876763, 'and their child': 73675, 'their child hostileenvironment': 872770, 'mission during': 534351, 'time your': 898425, 'safely and': 730254, 'in profit': 427028, 'profit introducing': 682784, 'retail adventure': 717796, 'adventure blog': 33091, 'post webinars': 666398, 'webinars and': 975145, 'and podcasts': 69146, 'our mission during': 623928, 'mission during the': 534352, 'the time your': 869636, 'time your store': 898427, 'closed during the': 183090, 'help you get': 390973, 'get through it': 348436, 'through it safely': 894539, 'it safely and': 460843, 'safely and in': 730256, 'and in profit': 65065, 'in profit introducing': 427030, 'profit introducing new': 682785, 'introducing new retail': 443498, 'new retail adventure': 559489, 'retail adventure blog': 717797, 'adventure blog post': 33092, 'blog post webinars': 133004, 'post webinars and': 666399, 'webinars and podcasts': 975147, 'having asthma': 383982, 'asthma put': 97201, 'put you': 690984, 'coronavirus this': 206928, 'min video': 532581, 'video give': 956764, 'info you': 437620, 'having asthma put': 383983, 'asthma put you': 97202, 'put you at': 690985, 'you at higher': 1017334, 'higher risk for': 395727, 'the coronavirus this': 851927, 'coronavirus this min': 206931, 'this min video': 888857, 'min video give': 532582, 'video give you': 956765, 'you the info': 1021599, 'the info you': 858248, 'info you need': 437621, 'wasn taking': 968020, 'taking covid': 833317, 'seriously until': 751771, 'until spoke': 943832, 'spain he': 787302, 'he told': 385532, 'store hospital': 808182, 'hospital if': 404460, 'street going': 812980, 'going anywhere': 355015, 'they start': 883437, 'start the': 794549, 'the fine': 855241, 'fine at': 307603, '100 possible': 2042, 'possible jail': 665692, 'jail time': 464284, 'wasn taking covid': 968021, 'taking covid 19': 833318, '19 seriously until': 10423, 'seriously until spoke': 751772, 'until spoke to': 943833, 'spoke to my': 789731, 'my friend that': 548451, 'friend that life': 333826, 'that life in': 844879, 'life in spain': 488768, 'in spain he': 428172, 'spain he told': 787303, 'he told me': 385536, 'me that the': 523629, 'reason they can': 703007, 'they can leave': 881650, 'house is to': 406380, 'grocery store hospital': 365472, 'store hospital if': 808183, 'hospital if they': 404461, 'they get caught': 882160, 'get caught in': 346752, 'caught in the': 167428, 'the street going': 868229, 'street going anywhere': 812981, 'going anywhere else': 355017, 'anywhere else they': 81106, 'else they start': 271919, 'they start the': 883441, 'start the fine': 794551, 'the fine at': 855242, 'fine at 100': 307604, 'at 100 possible': 97417, '100 possible jail': 2043, 'possible jail time': 665693, 'veros': 954874, 'market home': 516526, 'increase at': 432683, 'at half': 98835, 'the rate': 865161, 'rate prior': 697347, 'to forecasting': 906183, 'forecasting by': 328899, 'by veros': 154661, 'veros real': 954875, 'estate solution': 282195, 'pandemic and it': 634882, 'and it effect': 65519, 'it effect on': 457768, 'the market home': 860119, 'market home price': 516527, 'price are expected': 672661, 'to increase at': 908269, 'increase at half': 432684, 'at half the': 98838, 'half the rate': 374275, 'the rate prior': 865167, 'rate prior to': 697348, 'the outbreak according': 862586, 'according to forecasting': 28543, 'to forecasting by': 906184, 'forecasting by veros': 328900, 'by veros real': 154662, 'veros real estate': 954876, 'real estate solution': 701164, 'suddenchange': 817058, 'and admirable': 57702, 'admirable work': 32554, 'by all': 151787, 'worker suddenchange': 1007850, 'suddenchange thankyou': 817059, 'thankyou all': 842319, 'amazing and admirable': 50640, 'and admirable work': 57703, 'admirable work being': 32555, 'done by all': 254802, 'by all grocery': 151788, 'grocery store company': 365290, 'store company and': 807125, 'company and worker': 190398, 'and worker suddenchange': 75881, 'worker suddenchange thankyou': 1007851, 'suddenchange thankyou all': 817060, 'thankyou all hand': 842320, '3day': 18254, 'justintime': 470484, '7day': 22461, 'normalsupply': 567583, 'ha demonstrated': 370351, 'demonstrated that': 236848, 'must force': 546669, 'force supermarket': 328503, 'supplychain back': 826165, 'from 3day': 334282, '3day justintime': 18255, 'justintime to': 470485, 'to 7day': 899839, '7day normalsupply': 22462, 'normalsupply chain': 567584, 'ha demonstrated that': 370353, 'demonstrated that government': 236849, 'that government must': 844062, 'government must force': 360368, 'must force supermarket': 546670, 'force supermarket and': 328504, 'supermarket and supplychain': 819074, 'and supplychain back': 72827, 'supplychain back from': 826166, 'back from 3day': 107003, 'from 3day justintime': 334283, '3day justintime to': 18256, 'justintime to 7day': 470486, 'to 7day normalsupply': 899840, '7day normalsupply chain': 22463, 'dumped milk': 262212, 'milk smashed': 531820, 'smashed egg': 775564, 'dumped milk smashed': 262213, 'milk smashed egg': 531821, 'smashed egg plowed': 775565, 'food waste of': 317486, 'waste of the': 968163, 'unfreezing': 941669, 'opinion why': 613519, 'is unfreezing': 453495, 'unfreezing consumer': 941670, 'opinion why is': 613520, 'why is unfreezing': 991128, 'is unfreezing consumer': 453496, 'unfreezing consumer habit': 941671, 'now ride': 575703, 'ride transit': 721467, 'and dial': 61308, 'dial ride': 240287, 'ride for': 721434, 'office or': 595504, 'other destination': 620098, 'destination while': 238988, 'the bus': 850136, 'practice see': 668649, 'service schedule': 752788, 'can now ride': 159070, 'now ride transit': 575705, 'ride transit and': 721468, 'transit and dial': 929623, 'and dial ride': 61309, 'dial ride for': 240288, 'ride for free': 721435, 'for free to': 321732, 'free to work': 332252, 'to work the': 918788, 'work the grocery': 1005812, 'store doctor office': 807341, 'doctor office or': 251048, 'office or other': 595507, 'or other destination': 616430, 'other destination while': 620099, 'destination while on': 238989, 'on the bus': 604002, 'the bus please': 850144, 'bus please continue': 143070, 'continue to practice': 201233, 'to practice see': 911962, 'practice see service': 668650, 'see service schedule': 745664, 'fox43findsout': 330786, 'health club': 386270, 'club act': 184397, 'act allows': 29588, 'their gym': 873461, 'gym membership': 369331, 'during situation': 263023, 'being charged': 124936, 'charged fox43findsout': 173387, 'fox43findsout what': 330787, 'the health club': 857179, 'health club act': 386271, 'club act allows': 184398, 'act allows people': 29589, 'people to cancel': 649884, 'to cancel their': 902431, 'cancel their gym': 160892, 'their gym membership': 873462, 'gym membership and': 369332, 'membership and get': 528269, 'and get refund': 63597, 'get refund during': 347907, 'refund during situation': 706897, 'during situation like': 263024, 'situation like the': 772371, 'like the pandemic': 491389, 'pandemic some people': 636513, 'some people say': 783532, 'people say they': 649353, 're still being': 699589, 'still being charged': 800273, 'being charged fox43findsout': 124938, 'charged fox43findsout what': 173388, 'fox43findsout what you': 330788, 'do to get': 250387, 'your money back': 1024854, 'pm time': 662008, 'the avondale': 849116, '00 pm time': 442, 'pm time to': 662009, 'prevent the avondale': 671726, 'the avondale buckeye': 849117, '25am': 16073, '25am est': 16076, 'est jump': 281992, 'jump on': 467883, 'food being': 313727, 'being through': 125952, 'roof right': 725838, '25am est jump': 16077, 'est jump on': 281993, 'jump on with': 467887, 'on with to': 605351, 'with to discus': 1001786, 'discus the demand': 244913, 'for food being': 321559, 'food being through': 313729, 'being through the': 125953, 'the roof right': 865974, 'roof right now': 725839, 'need public': 555489, 'transit to': 929651, 'running if': 727975, 'if public': 414699, 'transit were': 929653, 'running today': 728119, 'eat can': 265876, 'delivered everyday': 233319, 'everyday am': 286525, 'am on': 50279, 'benefit aka': 126910, 'aka food': 40483, 'we need public': 972530, 'need public transit': 555490, 'public transit to': 688400, 'transit to keep': 929652, 'to keep running': 908839, 'keep running if': 471868, 'running if public': 727977, 'if public transit': 414701, 'public transit were': 688401, 'transit were to': 929654, 'were to stop': 980271, 'to stop running': 915563, 'stop running today': 804968, 'running today would': 728120, 'today would not': 920579, 'and get food': 63574, 'to eat can': 904874, 'eat can afford': 265877, 'afford to get': 34795, 'food delivered everyday': 314094, 'delivered everyday am': 233320, 'everyday am on': 286526, 'am on snap': 50282, 'on snap benefit': 603513, 'snap benefit aka': 776079, 'benefit aka food': 126911, 'aka food stamp': 40484, 'be danish': 114335, 'stop sanitizer': 804971, 'sanitizer hoarding': 735088, 'hoarding 19': 399164, 'coronavid19 pandemic': 205388, 'to be danish': 901189, 'be danish supermarket': 114336, 'danish supermarket in': 225853, 'trick to stop': 931717, 'to stop sanitizer': 915565, 'stop sanitizer hoarding': 804972, 'sanitizer hoarding 19': 735089, 'hoarding 19 coronavid19': 399165, '19 coronavid19 pandemic': 6084, 'still online': 800942, 'birthday isn': 131438, 'isn canceled': 454453, 'canceled because': 160921, 'still online shopping': 800944, 'shopping like my': 763168, 'like my birthday': 490815, 'my birthday isn': 547459, 'birthday isn canceled': 131439, 'isn canceled because': 454454, 'canceled because of': 160922, 'else cleaning': 271664, 'cleaning packaged': 181009, 'sanitiser ha': 733965, 'sanitiser goingmental': 733964, 'anyone else cleaning': 80260, 'else cleaning packaged': 271665, 'cleaning packaged food': 181010, 'my hand sanitiser': 548613, 'hand sanitiser ha': 375234, 'sanitiser ha hand': 733966, 'ha hand sanitiser': 370811, 'hand sanitiser goingmental': 375233, 'illiterate': 416329, 'kcr': 471204, 'jagan': 464242, 'sharing for': 755525, 'those illiterate': 892081, 'illiterate people': 416330, 'who comment': 988476, 'comment without': 188469, 'having minimum': 384160, 'knowledge check': 477172, 'fact before': 295686, 'before commenting': 122699, 'commenting kcr': 188502, 'kcr and': 471205, 'and jagan': 65640, 'jagan are': 464243, 'are cm': 85407, 'cm of': 184624, 'not comment': 568803, 'sharing for those': 755526, 'for those illiterate': 327115, 'those illiterate people': 892082, 'illiterate people who': 416331, 'people who comment': 650276, 'who comment without': 988477, 'comment without having': 188470, 'without having minimum': 1002708, 'having minimum of': 384161, 'minimum of knowledge': 533205, 'of knowledge check': 585675, 'knowledge check the': 477173, 'check the fact': 174647, 'the fact before': 854818, 'fact before commenting': 295687, 'before commenting kcr': 122700, 'commenting kcr and': 188503, 'kcr and jagan': 471206, 'and jagan are': 65641, 'jagan are cm': 464244, 'are cm of': 85408, 'cm of the': 184625, 'the state they': 867815, 'will not comment': 994199, 'not comment without': 568804, 'comment without source': 188471, 'coronavirus to': 206946, 'prosecuted be': 684634, 'warned will': 967053, 'report you': 712441, 'retailer who inflate': 719424, 'inflate price because': 436988, 'of coronavirus to': 581970, 'coronavirus to be': 206947, 'be prosecuted be': 116573, 'prosecuted be warned': 684635, 'be warned will': 118044, 'warned will not': 967054, 'will not hesitate': 994230, 'hesitate to report': 394278, 'to report you': 913301, 'bombshell': 134213, 'ugly': 938040, 'this bombshell': 886587, 'bombshell with': 134214, 'economy largely': 268031, 'largely dependant': 479846, 'dependant on': 237333, 'on petroleum': 602783, 'petroleum this': 653843, 'this free': 887605, 'price isn': 674902, 'isn pretty': 454625, 'pretty sight': 671490, 'sight great': 769032, 'domestic consumer': 253175, 'very ugly': 955624, 'ugly for': 938047, 'the 19 news': 847921, '19 news we': 8782, 'news we now': 560956, 'now have this': 574883, 'have this bombshell': 383099, 'this bombshell with': 886588, 'bombshell with our': 134215, 'with our economy': 999990, 'our economy largely': 622846, 'economy largely dependant': 268032, 'largely dependant on': 479847, 'dependant on petroleum': 237334, 'on petroleum this': 602785, 'petroleum this free': 653844, 'this free fall': 887606, 'in price isn': 426973, 'price isn pretty': 674903, 'isn pretty sight': 454626, 'pretty sight great': 671491, 'sight great for': 769033, 'great for domestic': 362680, 'for domestic consumer': 320810, 'domestic consumer in': 253176, 'consumer in short': 197833, 'in short term': 427915, 'term but very': 838081, 'but very ugly': 147690, 'very ugly for': 955625, 'ugly for the': 938048, 'for the nation': 326574, 'nation in the': 552222, 'absence': 27184, 'practises': 668779, 'cultu': 220266, 'likely caused': 491966, 'by intensive': 152929, 'intensive animal': 441129, 'animal farming': 76590, 'farming or': 299637, 'or absence': 614244, 'absence of': 27189, 'of regulation': 588895, 'regulation in': 708073, 'wildlife live': 992132, 'live stock': 496024, 'and raw': 69953, 'raw cooked': 697962, 'cooked food': 202812, 'food practises': 315895, 'practises how': 668780, 'authority going': 103727, 'many different': 513995, 'different cultu': 241931, 'is likely caused': 449343, 'likely caused by': 491967, 'caused by intensive': 167845, 'by intensive animal': 152930, 'intensive animal farming': 441130, 'animal farming or': 76591, 'farming or absence': 299638, 'or absence of': 614245, 'absence of regulation': 27192, 'of regulation in': 588896, 'regulation in wildlife': 708074, 'in wildlife live': 430915, 'wildlife live stock': 992133, 'live stock and': 496025, 'stock and raw': 801828, 'and raw cooked': 69955, 'raw cooked food': 697963, 'cooked food practises': 202815, 'food practises how': 315896, 'practises how is': 668781, 'world health authority': 1009632, 'health authority going': 386182, 'authority going to': 103728, 'going to educate': 355581, 'to educate the': 904943, 'educate the world': 268763, 'world when there': 1010166, 'so many different': 777649, 'many different cultu': 513996, 'ensues': 277869, 'more buying': 538745, 'buying ensues': 150226, 'ensues the': 277870, 'there is of': 878602, 'is of in': 450401, 'country the more': 211128, 'the more empty': 860878, 'empty shelf people': 275086, 'shelf people see': 757405, 'see the more': 745859, 'the more buying': 860876, 'more buying ensues': 538746, 'buying ensues the': 150227, 'ensues the more': 277871, 'the more food': 860882, 'more food is': 539245, 'food is out': 315141, 'for leading': 322918, 'leading the': 483747, 'god my': 354774, 'my twitter': 550446, 'twitter feed': 936656, 'feed help': 302313, 'word because': 1004455, 'someone had': 784495, 'bring public': 140052, 'get result': 347926, 'result like': 717565, 'you for leading': 1018652, 'for leading the': 322919, 'leading the way': 483751, 'the way thank': 871191, 'way thank god': 969911, 'thank god my': 841583, 'god my twitter': 354775, 'my twitter feed': 550447, 'twitter feed help': 936657, 'feed help spread': 302314, 'the word because': 871698, 'word because someone': 1004456, 'because someone had': 119575, 'someone had to': 784497, 'to say something': 913839, 'say something to': 739164, 'something to bring': 785096, 'to bring public': 902047, 'bring public awareness': 140053, 'public awareness to': 687889, 'awareness to get': 105738, 'to get result': 906575, 'get result like': 347927, 'result like this': 717566, 'pantry campaign': 639552, 'the pantry campaign': 863252, 'scope': 742336, 'posing': 665132, 'china growth': 176684, 'will depend': 993158, 'the scope': 866514, 'scope and': 742337, 'and trajectory': 74368, 'trajectory of': 929386, 'europe the': 283515, 'elsewhere these': 272031, 'these outbreak': 880384, 'will dampen': 993094, 'dampen global': 225494, 'demand posing': 236052, 'posing secondary': 665137, 'secondary hit': 743883, 'economy even': 267844, 'domestic sector': 253224, 'sector recovers': 744302, 'china growth will': 176686, 'growth will depend': 367484, 'will depend on': 993159, 'on the scope': 604346, 'the scope and': 866515, 'scope and trajectory': 742338, 'and trajectory of': 74369, 'trajectory of the': 929388, 'outbreak in europe': 628341, 'in europe the': 422655, 'europe the and': 283516, 'the and elsewhere': 848694, 'and elsewhere these': 62021, 'elsewhere these outbreak': 272032, 'these outbreak will': 880385, 'outbreak will dampen': 628824, 'will dampen global': 993095, 'dampen global consumer': 225495, 'global consumer demand': 351801, 'consumer demand posing': 197155, 'demand posing secondary': 236053, 'posing secondary hit': 665138, 'secondary hit to': 743884, 'hit to china': 398471, 'to china economy': 902726, 'china economy even': 176634, 'economy even the': 267845, 'even the domestic': 284652, 'the domestic sector': 853531, 'domestic sector recovers': 253225, 'pricehike': 677873, 'outbreak brought': 628050, 'halt but': 374425, 'basic perishable': 112025, 'good paracetamol': 357544, 'paracetamol pricehike': 641265, 'pricehike via': 677876, 'only ha the': 610555, 'ha the corona': 372192, 'the corona outbreak': 851769, 'corona outbreak brought': 204087, 'outbreak brought the': 628051, 'brought the global': 141193, 'economy to screeching': 268296, 'screeching halt but': 742669, 'halt but it': 374426, 'it also ha': 456428, 'also ha skyrocketed': 48312, 'of basic perishable': 580576, 'basic perishable good': 112026, 'perishable good paracetamol': 651984, 'good paracetamol pricehike': 357545, 'paracetamol pricehike via': 641266, 'mumbaiker': 546033, 'initially there': 438581, 'over 19': 629795, 'is fear': 447758, 'over surat': 630671, 'surat migrant': 827462, 'worker unrest': 1008079, 'unrest spreading': 943365, 'spreading to': 791074, 'mumbai lockdown': 546010, 'is severe': 451812, 'severe lately': 754032, 'lately even': 480953, 'even small': 284586, 'small shop': 775113, 'shop small': 760792, 'small time': 775152, 'time fruit': 896812, 'fruit vendor': 339194, 'vendor is': 954386, 'is scared': 451671, 'street they': 813142, 'not permitted': 571008, 'permitted mumbaiker': 652173, 'mumbaiker is': 546034, 'facing food': 295471, 'initially there wa': 438582, 'wa panic over': 962906, 'panic over 19': 638384, 'over 19 now': 629797, '19 now there': 8861, 'there is fear': 878558, 'is fear over': 447760, 'fear over surat': 301278, 'over surat migrant': 630672, 'surat migrant worker': 827463, 'migrant worker unrest': 531233, 'worker unrest spreading': 1008081, 'unrest spreading to': 943366, 'spreading to mumbai': 791077, 'to mumbai lockdown': 910356, 'mumbai lockdown is': 546012, 'lockdown is severe': 499556, 'is severe lately': 451815, 'severe lately even': 754033, 'lately even small': 480954, 'even small shop': 284587, 'small shop small': 775117, 'shop small time': 760794, 'small time fruit': 775153, 'time fruit vendor': 896813, 'fruit vendor is': 339195, 'vendor is scared': 954387, 'is scared of': 451674, 'scared of selling': 741000, 'of selling on': 589496, 'selling on street': 749373, 'on street they': 603718, 'street they are': 813143, 'are not permitted': 88435, 'not permitted mumbaiker': 571010, 'permitted mumbaiker is': 652174, 'mumbaiker is facing': 546035, 'is facing food': 447693, 'facing food shortage': 295472, 'price lowest': 675133, '2003 oil': 13594, '2003 on': 13596, 'wednesday the': 975693, 'reduced demand': 706054, 'country around': 210488, 'oil price lowest': 597184, 'price lowest since': 675134, 'lowest since 2003': 506225, 'since 2003 oil': 770445, '2003 oil price': 13595, 'price reached their': 676090, 'reached their lowest': 700064, 'lowest point since': 506203, 'point since 2003': 662623, 'since 2003 on': 770446, '2003 on wednesday': 13597, 'on wednesday the': 605183, 'wednesday the ha': 975694, 'the ha reduced': 857014, 'ha reduced demand': 371681, 'reduced demand in': 706056, 'demand in country': 235666, 'in country around': 421823, 'country around the': 210489, 'arranges': 93730, 'ct dept': 220096, 'of banking': 580544, 'banking arranges': 110411, 'arranges 90': 93731, 'day mortgage': 227988, 'payment grace': 645647, 'of bank': 580537, 'ct dept of': 220097, 'dept of banking': 237742, 'of banking arranges': 580545, 'banking arranges 90': 110412, 'arranges 90 day': 93732, '90 day mortgage': 23289, 'day mortgage payment': 227989, 'mortgage payment grace': 541936, 'payment grace period': 645648, 'period for those': 651767, 'in need due': 425738, 'to the list': 916851, 'the list of': 859469, 'list of bank': 494413, 'of bank and': 580538, 'bank and credit': 109605, 'and credit union': 60735, 'almaty': 46450, 'askhat': 95922, 'zheksebayev': 1027543, 'equipped': 279881, 'almaty civil': 46451, 'civil activist': 179509, 'activist askhat': 30337, 'askhat zheksebayev': 95923, 'zheksebayev wa': 1027544, 'wa jailed': 962438, 'jailed for': 464298, 'then equipped': 877151, 'equipped doctor': 279882, 'doctor arrived': 250841, 'temporary detention': 837606, 'detention center': 239371, 'center perhaps': 169288, 'to infect': 908350, 'infect the': 436511, 'the activist': 848310, 'activist with': 30351, 'almaty civil activist': 46452, 'civil activist askhat': 179510, 'activist askhat zheksebayev': 30338, 'askhat zheksebayev wa': 95924, 'zheksebayev wa jailed': 1027545, 'wa jailed for': 962439, 'jailed for going': 464300, 'for going to': 321918, 'to supermarket then': 915846, 'supermarket then equipped': 823266, 'then equipped doctor': 877152, 'equipped doctor arrived': 279883, 'doctor arrived at': 250842, 'at the temporary': 101119, 'the temporary detention': 869283, 'temporary detention center': 837607, 'detention center perhaps': 239373, 'center perhaps this': 169289, 'perhaps this wa': 651657, 'this wa an': 891052, 'wa an attempt': 961528, 'attempt to infect': 102248, 'to infect the': 908354, 'infect the activist': 436512, 'the activist with': 848311, 'relaxation': 708840, 'merger': 529101, 'pretext': 671345, 'oligarch': 598728, 'this sector': 889999, 'been falling': 121129, 'falling demonstrated': 297239, 'demonstrated by': 236846, 'movement in': 543883, 'main listed': 508771, 'listed hospital': 494619, 'hospital group': 404439, 'group so': 366886, 'year there': 1015008, 'few now': 303955, 'the relaxation': 865475, 'relaxation of': 708847, 'of competition': 581622, 'encourage new': 275606, 'new merger': 559102, 'merger under': 529108, 'the pretext': 864302, 'pretext of': 671346, 'of efficiency': 582987, 'efficiency the': 269408, 'the oligarch': 862155, 'oligarch benefit': 598729, 'corporate profit in': 207327, 'profit in this': 682777, 'in this sector': 430009, 'this sector have': 890001, 'sector have been': 744209, 'have been falling': 379536, 'been falling demonstrated': 121130, 'falling demonstrated by': 297240, 'demonstrated by the': 236847, 'by the movement': 154381, 'the movement in': 861098, 'movement in the': 543884, 'in the share': 429542, 'the share price': 866790, 'the main listed': 859905, 'main listed hospital': 508772, 'listed hospital group': 494620, 'hospital group so': 404441, 'group so far': 366887, 'far this year': 298945, 'this year there': 891598, 'year there are': 1015009, 'are only few': 88766, 'only few now': 610439, 'few now the': 303956, 'now the relaxation': 576066, 'the relaxation of': 865476, 'relaxation of competition': 708848, 'of competition rule': 581623, 'competition rule will': 191740, 'rule will encourage': 727413, 'will encourage new': 993300, 'encourage new merger': 275607, 'new merger under': 559103, 'merger under the': 529110, 'under the pretext': 940324, 'the pretext of': 864303, 'pretext of efficiency': 671347, 'of efficiency the': 582989, 'efficiency the oligarch': 269409, 'the oligarch benefit': 862156, 'dt': 261373, 'cused': 221908, 'doe any': 251328, 'any else': 79176, 'else think': 271921, 'think dt': 885216, 'dt gop': 261376, 'gop responsible': 358276, 'responsible these': 716060, 'these death': 879907, 'death cused': 230014, 'cused by': 221909, 'they failed': 882090, 'failed usa': 296189, 'usa drastically': 948626, 'drastically may': 258451, 'may they': 521571, 'all rip': 44197, 'rip who': 722679, 'doe any else': 251329, 'any else think': 79177, 'else think dt': 271922, 'think dt gop': 885217, 'dt gop responsible': 261377, 'gop responsible these': 358277, 'responsible these death': 716061, 'these death cused': 879909, 'death cused by': 230015, 'cused by covid': 221910, '19 they failed': 11306, 'they failed usa': 882091, 'failed usa drastically': 296190, 'usa drastically may': 948627, 'drastically may they': 258452, 'may they all': 521572, 'they all rip': 881120, 'all rip who': 44198, 'rip who lost': 722680, 'sumantra': 817888, 'hi sumantra': 394742, 'sumantra we': 817889, 'your qu': 1025486, 'hi sumantra we': 394743, 'sumantra we are': 817890, 'with your qu': 1002224, 'supermarketowners': 824225, 'suspension': 829684, 'supermarketowners customer': 824226, 'customer request': 222759, 'request vat': 713226, 'vat suspension': 952738, 'supermarketowners customer request': 824227, 'customer request vat': 222760, 'request vat suspension': 713227, 'largest airline': 479916, 'airline have': 39960, 'spent 96': 789100, '96 of': 23660, 'free cash': 331702, 'flow over': 311257, 'past decade': 643524, 'decade buying': 230667, 'buying back': 149984, 'own stock': 632232, 'boost executive': 134950, 'executive bonus': 289863, 'please wealthy': 660763, 'wealthy investor': 974211, 'investor they': 444216, 'now expect': 574642, 'expect taxpayer': 290736, 'taxpayer to': 835205, 'bail them': 108594, 'the tune': 870104, 'tune of': 935417, '50 billion': 19630, 'billion it': 130857, 'same old': 733186, 'old story': 598480, 'america largest airline': 51590, 'largest airline have': 479917, 'airline have spent': 39962, 'have spent 96': 382685, 'spent 96 of': 789101, '96 of their': 23662, 'of their free': 591664, 'their free cash': 873370, 'free cash flow': 331703, 'cash flow over': 166230, 'flow over the': 311258, 'the past decade': 863352, 'past decade buying': 643525, 'decade buying back': 230668, 'buying back their': 149986, 'back their own': 107322, 'their own stock': 874206, 'own stock to': 632235, 'to boost executive': 901918, 'boost executive bonus': 134951, 'executive bonus and': 289864, 'bonus and please': 134349, 'and please wealthy': 69118, 'please wealthy investor': 660764, 'wealthy investor they': 974213, 'investor they now': 444217, 'they now expect': 882797, 'now expect taxpayer': 574643, 'expect taxpayer to': 290737, 'taxpayer to bail': 835206, 'to bail them': 901002, 'bail them out': 108595, 'to the tune': 917148, 'the tune of': 870105, 'tune of 50': 935418, 'of 50 billion': 579608, '50 billion it': 19634, 'billion it the': 130858, 'the same old': 866268, 'same old story': 733188, 'wonderful country': 1004070, 'volunteer delivery': 960246, 'that plan': 845755, 'bring week': 140114, 'wonderful country star': 1004072, 'brad paisley ha': 137529, 'paisley ha launched': 634385, 'ha launched volunteer': 371114, 'launched volunteer delivery': 482049, 'volunteer delivery service': 960247, 'delivery service that': 234470, 'service that plan': 752925, 'that plan to': 845756, 'to bring week': 902057, 'bring week worth': 140115, 'grocery to senior': 366059, 'absolutely starting': 27450, 'when me': 983724, 'partner only': 642867, 'have 11': 379070, 'the 23': 848041, '23 of': 15418, 'any cheap': 79016, 'cheap food': 174112, 'empty life': 274935, 'is struggle': 452393, 'struggle 19uk': 814323, 'absolutely starting to': 27451, 'panic when me': 638779, 'when me and': 983725, 'and my partner': 67384, 'my partner only': 549723, 'partner only have': 642868, 'only have 11': 610572, 'have 11 to': 379071, '11 to last': 2604, 'to last until': 909076, 'last until the': 480610, 'until the 23': 943845, 'the 23 of': 848042, '23 of this': 15421, 'of this month': 592008, 'this month but': 888900, 'month but we': 537630, 'can get any': 158401, 'get any cheap': 346571, 'any cheap food': 79017, 'cheap food the': 174114, 'are empty life': 86155, 'empty life is': 274936, 'life is struggle': 488817, 'is struggle 19uk': 452394, 'napier': 551849, 'pak': 634401, 'nsave': 576658, 'nz chicken': 578182, 'chicken spark': 175862, 'spark gang': 787538, 'gang fight': 343392, 'at napier': 99845, 'napier pak': 551850, 'pak nsave': 634408, 'nsave supermarket': 576659, '19 coronavirus in': 6106, 'coronavirus in nz': 206122, 'in nz chicken': 426035, 'nz chicken spark': 578183, 'chicken spark gang': 175863, 'spark gang fight': 787539, 'gang fight at': 343393, 'fight at napier': 304665, 'at napier pak': 99846, 'napier pak nsave': 551851, 'pak nsave supermarket': 634409, 'nsave supermarket via': 576660, 'westbaluchistan': 980561, 'innovated': 438839, 'balochistan': 109114, 'pmimrankhan': 662055, 'in westbaluchistan': 430805, 'westbaluchistan innovated': 980562, 'innovated with': 438842, 'to sanction': 913745, 'sanction child': 733622, 'eastern balochistan': 265575, 'balochistan coronainpakistan': 109115, 'coronainpakistan pmimrankhan': 205011, 'pmimrankhan chinesevirus': 662056, 'child in westbaluchistan': 176118, 'in westbaluchistan innovated': 430806, 'westbaluchistan innovated with': 980563, 'innovated with their': 438843, 'their own mask': 874186, 'own mask price': 632094, 'price skyrocketed due': 676445, 'due to sanction': 261932, 'to sanction child': 913747, 'sanction child of': 733623, 'child of eastern': 176156, 'of eastern balochistan': 582931, 'eastern balochistan coronainpakistan': 265576, 'balochistan coronainpakistan pmimrankhan': 109116, 'coronainpakistan pmimrankhan chinesevirus': 205012, 'stillwithher': 801468, 'morning stillwithher': 541468, 'heading into the': 385945, 'this morning stillwithher': 889020, 'topeka': 925765, 'derek': 237849, 'schmidt': 741622, 'warning beware': 967097, 'coronavirus text': 206892, 'message scam': 529410, 'scam topeka': 740433, 'topeka kansa': 925766, 'kansa attorney': 470803, 'general derek': 345319, 'derek schmidt': 237850, 'schmidt is': 741623, 'urging kansa': 948432, 'kansa to': 470820, 'new text': 559740, '19 text': 11117, 'consumer warning beware': 199475, 'warning beware of': 967098, 'beware of new': 129087, 'of new coronavirus': 586959, 'new coronavirus text': 558552, 'coronavirus text message': 206893, 'text message scam': 839914, 'message scam topeka': 529413, 'scam topeka kansa': 740434, 'topeka kansa attorney': 925767, 'kansa attorney general': 470804, 'attorney general derek': 102634, 'general derek schmidt': 345320, 'derek schmidt is': 237851, 'schmidt is urging': 741624, 'is urging kansa': 453604, 'urging kansa to': 948433, 'kansa to be': 470821, 'wary of new': 967408, 'of new text': 586988, 'new text message': 559741, 'message scam related': 529412, 'covid 19 text': 213924, '19 text phishing': 11119, 'text phishing scam': 839931, 'see gas': 745150, 'price below': 672904, 'angeles want': 76391, 'then remind': 877474, 'remind myself': 710490, 'myself there': 550951, 'there nowhere': 878885, 'when see gas': 983973, 'see gas price': 745152, 'gas price below': 343936, 'price below 00': 672905, 'below 00 in': 126550, '00 in los': 266, 'los angeles want': 503373, 'angeles want to': 76392, 'thank you then': 841827, 'you then remind': 1021626, 'then remind myself': 877475, 'remind myself there': 710493, 'myself there nowhere': 550952, 'there nowhere to': 878886, 'oh geez': 596386, 'geez rt': 345052, 'rt gamestop': 726763, 'gamestop claim': 343323, 'despite government': 238751, 'government order': 360430, 'coronavirus gamestop': 205981, 'oh geez rt': 596387, 'geez rt gamestop': 345053, 'rt gamestop claim': 726764, 'gamestop claim it': 343324, 'claim it an': 179753, 'it an essential': 456468, 'an essential retail': 55831, 'essential retail store': 281472, 'retail store refuse': 718689, 'close despite government': 182607, 'despite government order': 238752, 'government order in': 360433, 'of coronavirus gamestop': 581938, 'beneficiary': 126887, 'compound': 192588, 'cannot seem': 162080, 'solid answer': 781908, 'answer about': 78000, 'pickup with': 656051, 'with snap': 1000781, 'snap day': 776087, 'week pas': 976729, 'huge problem': 410143, 'problem many': 679601, 'many snap': 514713, 'snap beneficiary': 776076, 'beneficiary avoid': 126892, 'that compound': 843275, 'compound symptom': 192591, 'cannot seem to': 162081, 'seem to get': 746693, 'to get solid': 906594, 'get solid answer': 348037, 'solid answer about': 781909, 'answer about paying': 78001, 'about paying for': 25926, 'paying for online': 645414, 'for delivery and': 320627, 'curbside pickup with': 220666, 'pickup with snap': 656052, 'with snap day': 1000782, 'snap day and': 776088, 'and week pas': 75380, 'week pas this': 976730, 'pas this will': 643163, 'be huge problem': 115318, 'huge problem many': 410144, 'problem many snap': 679602, 'many snap beneficiary': 514714, 'snap beneficiary avoid': 776077, 'beneficiary avoid going': 126893, 'avoid going in': 105129, 'going in store': 355221, 'health issue that': 386579, 'issue that compound': 455959, 'that compound symptom': 843276, 'compound symptom of': 192592, 'sho': 759408, 'think grocery': 885269, 'they await': 881519, 'await stock': 105539, 'are diligently': 85823, 'diligently preparing': 242878, 'inevitable here': 436380, 'ny where': 577925, 'where case': 984775, 'are highest': 87160, 'highest ve': 395872, 've yet': 953664, 'see anyone': 744928, 'anyone panic': 80459, 'panic hoard': 638173, 'but yes': 147961, 'are sho': 90046, 'think grocery store': 885270, 'are empty because': 86142, 'empty because they': 274804, 'because they await': 119690, 'they await stock': 881520, 'await stock while': 105540, 'stock while people': 803192, 'while people are': 987149, 'people are diligently': 646954, 'are diligently preparing': 85824, 'diligently preparing for': 242879, 'for the inevitable': 326503, 'the inevitable here': 858207, 'inevitable here in': 436381, 'here in ny': 393171, 'in ny where': 426009, 'ny where case': 577926, 'where case of': 984776, '19 are highest': 5202, 'are highest ve': 87161, 'highest ve yet': 395873, 've yet to': 953665, 'yet to see': 1016296, 'to see anyone': 913985, 'see anyone panic': 744932, 'anyone panic hoard': 80461, 'panic hoard but': 638174, 'hoard but yes': 398768, 'but yes they': 147962, 'yes they are': 1015566, 'they are sho': 881405, 'tuck': 935060, 'crab': 214684, 'to tuck': 917828, 'tuck into': 935061, 'into some': 442999, 'some crab': 782625, 'crab and': 214685, 'our british': 622273, 'british seafood': 140589, 'seafood industry': 743136, 'industry the': 436147, 'way supermarket': 969899, 'stock more': 802480, 'let rt': 487015, 'rt and': 726736, 'time to tuck': 898091, 'to tuck into': 917829, 'tuck into some': 935062, 'into some crab': 443000, 'some crab and': 782626, 'crab and support': 214687, 'and support our': 72847, 'support our british': 826724, 'our british seafood': 622274, 'british seafood industry': 140590, 'seafood industry the': 743137, 'industry the only': 436150, 'only way supermarket': 611441, 'way supermarket will': 969901, 'supermarket will stock': 823895, 'will stock more': 994990, 'stock more is': 802481, 'more is if': 539621, 'is if we': 448659, 'we eat more': 971434, 'eat more of': 265986, 'more of it': 539876, 'of it let': 585415, 'it let rt': 459336, 'let rt and': 487016, 'rt and increase': 726739, 'and increase demand': 65103, 'lmic': 497180, 'btwn': 141564, 'in lmic': 424810, 'lmic country': 497181, 'country do': 210580, 'have running': 382372, 'water share': 969151, 'share toilet': 755312, 'toilet with': 921660, 'no to': 565738, 'or space': 617171, 'stay 6ft': 796738, 'apart exacerbates': 81253, 'exacerbates inequality': 288678, 'inequality btwn': 436344, 'btwn household': 141567, 'household community': 406765, 'community country': 189800, 'country always': 210422, 'always being': 49493, 'being poor': 125555, 'poor is': 664202, 'many in lmic': 514167, 'in lmic country': 424811, 'lmic country do': 497182, 'country do not': 210581, 'not have running': 569864, 'have running water': 382373, 'running water share': 728133, 'water share toilet': 969152, 'share toilet with': 755313, 'toilet with other': 921661, 'with other household': 999952, 'other household have': 620371, 'household have no': 406830, 'have no to': 381661, 'no to stock': 565745, 'food or space': 315669, 'or space to': 617173, 'space to stay': 787181, 'to stay 6ft': 915265, 'stay 6ft apart': 796739, '6ft apart exacerbates': 21595, 'apart exacerbates inequality': 81254, 'exacerbates inequality btwn': 288679, 'inequality btwn household': 436345, 'btwn household community': 141568, 'household community country': 406766, 'community country always': 189801, 'country always being': 210423, 'always being poor': 49494, 'being poor is': 125556, 'poor is bad': 664203, 'is bad for': 445964, 'for your health': 328162, 'osha': 619702, 'northam': 567694, 'see below': 744957, 'week update': 977148, 'reserve osha': 714088, 'osha department': 619703, 'of treasury': 592436, 'treasury virginia': 930791, 'service well': 753057, 'governor northam': 360949, 'northam regarding': 567699, 'regarding restaurant': 707248, 'restaurant relief': 716660, 'see below for': 744958, 'below for this': 126651, 'for this week': 327087, 'this week update': 891290, 'week update from': 977149, 'update from the': 946986, 'federal reserve osha': 302047, 'reserve osha department': 714089, 'osha department of': 619704, 'department of treasury': 237248, 'of treasury virginia': 592437, 'treasury virginia department': 930792, 'consumer service well': 198954, 'service well the': 753059, 'well the latest': 978662, 'news from governor': 560452, 'from governor northam': 335679, 'governor northam regarding': 360950, 'northam regarding restaurant': 567700, 'regarding restaurant relief': 707249, 'tuscan': 936022, 'kale': 470699, 'smoked': 775876, 'chorizo': 178011, 'mirepoix': 533940, 'familytime': 298425, 'white bean': 987817, 'bean soup': 118363, 'soup tuscan': 786422, 'tuscan kale': 936023, 'kale smoked': 470704, 'smoked ham': 775880, 'ham stock': 374537, 'stock tomato': 803013, 'tomato chorizo': 923946, 'chorizo mirepoix': 178012, 'mirepoix garlic': 533941, 'garlic cheflife': 343680, 'cheflife familytime': 175287, 'familytime socialdistancing': 298426, 'socialdistancing simple': 780689, 'simple good': 770030, 'food los': 315348, 'white bean soup': 987818, 'bean soup tuscan': 118364, 'soup tuscan kale': 786423, 'tuscan kale smoked': 936024, 'kale smoked ham': 470705, 'smoked ham stock': 775881, 'ham stock tomato': 374538, 'stock tomato chorizo': 803014, 'tomato chorizo mirepoix': 923947, 'chorizo mirepoix garlic': 178013, 'mirepoix garlic cheflife': 533942, 'garlic cheflife familytime': 343681, 'cheflife familytime socialdistancing': 175288, 'familytime socialdistancing simple': 298427, 'socialdistancing simple good': 780690, 'simple good food': 770031, 'good food los': 357062, 'food los angeles': 315349, 'compelled': 191513, 'we felt': 971543, 'felt compelled': 303373, 'compelled to': 191514, 'possible since': 665776, 'the equipment': 854458, 'to blend': 901853, 'blend bottle': 132573, 'bottle package': 136308, 'package ship': 633392, 'ship we': 758733, 'we switched': 973470, 'switched gear': 830534, 'gear put': 344974, 'put our': 690742, 'regular production': 707848, 'hold focus': 399922, 'focus entirely': 311835, 'entirely on': 278801, 'providing this': 687115, 'sanitizer life': 735284, 'life industry': 488778, 'industry corp': 435751, 'we felt compelled': 971544, 'felt compelled to': 303374, 'compelled to help': 191515, 'help in any': 389891, 'way possible since': 969823, 'possible since we': 665777, 'since we already': 770974, 'have the equipment': 382981, 'the equipment to': 854462, 'equipment to blend': 279855, 'to blend bottle': 901854, 'blend bottle package': 132574, 'bottle package ship': 136309, 'package ship we': 633393, 'ship we switched': 758734, 'we switched gear': 973471, 'switched gear put': 830535, 'gear put our': 344975, 'put our regular': 690745, 'our regular production': 624573, 'regular production on': 707849, 'production on hold': 682164, 'on hold focus': 601341, 'hold focus entirely': 399923, 'focus entirely on': 311836, 'entirely on providing': 278802, 'on providing this': 602993, 'providing this sanitizer': 687116, 'this sanitizer life': 889956, 'sanitizer life industry': 735285, 'life industry corp': 488779, 'supermarket count': 819837, 'count 14': 210093, 'check whether': 174710, 'died if': 241567, 'count another': 210099, 'died again': 241508, 'go again': 353251, 'and count': 60628, 'count again': 210095, 'again repeat': 37142, 'repeat this': 711539, 'this until': 890924, 'the supermarket count': 868538, 'supermarket count 14': 819838, 'count 14 day': 210094, 'day and check': 227256, 'and check whether': 59785, 'check whether you': 174711, 'whether you have': 985618, 'you have died': 1019037, 'have died if': 380268, 'died if not': 241568, 'if not go': 414499, 'not go back': 569672, 'supermarket count another': 819839, 'count another 14': 210100, 'check if you': 174469, 'have died again': 380262, 'died again if': 241509, 'again if not': 37033, 'not go again': 569670, 'go again and': 353252, 'again and count': 36886, 'and count again': 60629, 'count again repeat': 210096, 'again repeat this': 37143, 'repeat this until': 711540, 'this until you': 890926, 'until you die': 943938, 'when use': 984368, 'when use hand': 984369, 'sanitizer even after': 734834, 'even after washing': 283822, 'after washing my': 36508, 'budget review': 141811, 'review for': 720561, 'act on': 29729, 'on globally': 601115, 'globally accessible': 352364, 'accessible trade': 28348, 'in affordable': 420074, 'affordable care': 34837, 'care medicine': 164061, 'medicine based': 526738, 'the affordable': 848410, 'act making': 29694, 'making medicine': 511211, 'healthcare affordable': 387018, 'affordable and': 34833, 'preventing covid': 671806, 'investment of': 444032, 'world bank': 1009345, '2020 budget review': 14195, 'budget review for': 141812, 'review for the': 720563, 'protection act on': 685280, 'act on globally': 29731, 'on globally accessible': 601116, 'globally accessible trade': 352365, 'accessible trade in': 28349, 'trade in affordable': 928508, 'in affordable care': 420075, 'affordable care medicine': 34840, 'care medicine based': 164062, 'medicine based on': 526739, 'on the affordable': 603960, 'the affordable care': 848411, 'affordable care act': 34838, 'care act making': 163817, 'act making medicine': 29696, 'making medicine and': 511212, 'medicine and healthcare': 526717, 'and healthcare affordable': 64371, 'healthcare affordable and': 387019, 'affordable and preventing': 34836, 'and preventing covid': 69422, 'preventing covid 19': 671807, '19 with the': 12145, 'with the investment': 1001352, 'the investment of': 858419, 'investment of the': 444033, 'the world bank': 871821, 'these vulnerable': 880936, 'cannot reach': 162049, 'reach anyone': 699898, 'to arrange': 900718, 'shopping am': 761934, 'problem am': 679448, 'danger self': 225692, 'isolate while': 454947, 'while awaiting': 986634, 'awaiting result': 105549, 'of these vulnerable': 591872, 'these vulnerable people': 880937, 'people cannot reach': 647437, 'cannot reach anyone': 162050, 'reach anyone to': 699899, 'anyone to arrange': 80578, 'to arrange online': 900720, 'arrange online shopping': 93690, 'online shopping am': 609023, 'shopping am at': 761935, 'am at serious': 49913, 'to health problem': 907373, 'health problem am': 386753, 'problem am already': 679449, 'am already sick': 49869, 'already sick and': 47657, 'sick and am': 768360, 'and am in': 58021, 'am in danger': 50134, 'in danger self': 421979, 'danger self isolate': 225693, 'self isolate while': 747697, 'isolate while awaiting': 454948, 'while awaiting result': 986636, 'awaiting result after': 105550, 'hi doug': 394627, 'doug we': 256263, 're very': 699769, 'sorry about': 786004, 'the delayed': 853050, 'delayed reply': 232805, 'reply starting': 711751, 'hi doug we': 394628, 'doug we re': 256264, 'we re very': 972997, 're very sorry': 699771, 'very sorry about': 955571, 'sorry about the': 786005, 'about the delayed': 26373, 'the delayed reply': 853051, 'delayed reply starting': 232806, 'reply starting on': 711752, 'sly': 774736, 'kid hanging': 473979, 'hanging around': 376960, 'around street': 93494, 'supermarket crazy': 819854, 'crazy christmas': 215267, 'christmas hearing': 178177, 'that pub': 845899, 'back door': 106957, 'door on': 255675, 'the sly': 867352, 'sly laid': 774738, 'laid back': 479003, 'of person': 588053, 'person but': 652338, 'even anxious': 283840, 'anxious at': 78840, 'impending spike': 418331, 'case stay': 166035, 'everyone stayathome': 287407, 'of kid hanging': 585626, 'kid hanging around': 473980, 'hanging around street': 376964, 'around street and': 93495, 'street and the': 812901, 'the supermarket crazy': 868542, 'supermarket crazy christmas': 819855, 'crazy christmas hearing': 215268, 'christmas hearing that': 178178, 'hearing that pub': 388245, 'that pub are': 845900, 'pub are opening': 687667, 'are opening the': 88814, 'the back door': 849143, 'back door on': 106958, 'door on the': 255677, 'on the sly': 604370, 'the sly laid': 867353, 'sly laid back': 774739, 'laid back sort': 479005, 'sort of person': 786133, 'of person but': 588055, 'person but even': 652340, 'but even anxious': 145665, 'even anxious at': 283841, 'anxious at the': 78841, 'at the impending': 100985, 'the impending spike': 857960, 'impending spike in': 418332, 'spike in case': 789292, 'in case stay': 421275, 'case stay safe': 166036, 'safe everyone stayathome': 729651, 'omg this': 598917, 'just caught': 468444, 'camera at': 157112, 'station retweet': 796503, 'your shocked': 1025754, 'omg this wa': 598918, 'this wa just': 891073, 'wa just caught': 962454, 'just caught on': 468445, 'on camera at': 599781, 'camera at local': 157113, 'at local gas': 99605, 'gas station retweet': 344128, 'station retweet if': 796504, 'retweet if your': 720056, 'if your shocked': 415609, 'fast spread': 300041, 'italy along': 462759, 'with measure': 999461, 'restrict individual': 717104, 'individual movement': 435223, 'movement ha': 543877, 'ha dragged': 370438, 'dragged down': 258176, 'down power': 257104, 'power and': 667556, 'gas demand': 343812, 'and caused': 59641, 'caused price': 167939, 'the fast spread': 854966, 'fast spread of': 300042, 'of 19 in': 579395, '19 in italy': 7756, 'in italy along': 424289, 'italy along with': 462760, 'along with measure': 47063, 'with measure to': 999463, 'measure to restrict': 525405, 'to restrict individual': 913429, 'restrict individual movement': 717105, 'individual movement ha': 435224, 'movement ha dragged': 543878, 'ha dragged down': 370439, 'dragged down power': 258177, 'down power and': 257105, 'power and gas': 667559, 'and gas demand': 63474, 'gas demand in': 343814, 'country and caused': 210437, 'and caused price': 59642, 'caused price to': 167941, 'price to collapse': 676976, 'infringement': 438237, 'not ever': 569290, 'ever book': 285233, 'your holiday': 1024330, 'holiday with': 400387, 'are point': 89129, 'point blank': 662443, 'blank refusing': 132373, 'me refund': 523387, 'for cancelled': 319907, 'holiday holiday': 400309, 'holiday they': 400363, 'they cancelled': 881693, 'cancelled due': 161105, 'coronavirus direct': 205822, 'direct infringement': 243345, 'infringement of': 438238, 'right holiday': 721940, 'holiday criminal': 400277, 'criminal consumerprotection': 216829, 'do not ever': 249728, 'not ever book': 569291, 'ever book your': 285234, 'book your holiday': 134646, 'your holiday with': 1024332, 'holiday with they': 400389, 'with they are': 1001665, 'they are point': 881361, 'are point blank': 89130, 'point blank refusing': 662444, 'blank refusing to': 132374, 'refusing to give': 707092, 'give me refund': 350580, 'me refund for': 523388, 'refund for cancelled': 706909, 'for cancelled holiday': 319908, 'cancelled holiday holiday': 161123, 'holiday holiday they': 400310, 'holiday they cancelled': 400364, 'they cancelled due': 881694, 'cancelled due to': 161106, 'the coronavirus direct': 851832, 'coronavirus direct infringement': 205823, 'direct infringement of': 243346, 'infringement of consumer': 438239, 'of consumer right': 581768, 'consumer right holiday': 198816, 'right holiday criminal': 721941, 'holiday criminal consumerprotection': 400278, 'flavonoid': 310230, 'the expat': 854699, 'expat population': 290578, 'bangalore is': 109461, 'on wine': 605329, 'wine which': 995925, 'is sort': 452130, 'food rich': 316233, 'rich in': 721227, 'in flavonoid': 422932, 'flavonoid the': 310231, 'news minute': 560618, 'minute tweeted': 533886, 'tweeted supermarket': 936448, 'hyderabad witness': 411940, 'witness rush': 1003125, 'rush consumer': 728288, 'up ah': 944246, 'the expat population': 854700, 'expat population in': 290579, 'population in bangalore': 664689, 'in bangalore is': 420690, 'bangalore is stocking': 109462, 'is stocking up': 452341, 'up on wine': 945646, 'on wine which': 605330, 'wine which is': 995926, 'which is sort': 986055, 'is sort of': 452131, 'sort of food': 786122, 'of food rich': 583764, 'food rich in': 316234, 'rich in flavonoid': 721229, 'in flavonoid the': 422933, 'flavonoid the news': 310232, 'the news minute': 861619, 'news minute tweeted': 560619, 'minute tweeted supermarket': 533887, 'tweeted supermarket in': 936449, 'in hyderabad witness': 423939, 'hyderabad witness rush': 411941, 'witness rush consumer': 1003126, 'rush consumer stock': 728289, 'stock up ah': 803054, 'from global': 335644, 'global farming': 351934, 'farming suffers': 299649, 'suffers from': 817358, 'price labor': 675007, 'labor shortage': 478437, 'shortage spread': 765220, 'from global farming': 335645, 'global farming suffers': 351935, 'farming suffers from': 299650, 'suffers from falling': 817359, 'from falling price': 335397, 'falling price labor': 297326, 'price labor shortage': 675008, 'labor shortage spread': 478444, 'easter than': 265508, 'in past': 426542, 'includes some': 431812, 'warehouse store': 966775, 'via retail': 956207, 'business easter': 143675, 'more retailer will': 540259, 'retailer will be': 719427, 'be closed for': 114127, 'closed for easter': 183126, 'for easter than': 320923, 'easter than in': 265509, 'than in past': 840780, 'in past year': 426546, 'past year because': 643659, 'pandemic that includes': 636651, 'that includes some': 844481, 'includes some grocery': 431813, 'and warehouse store': 75185, 'warehouse store via': 966778, 'store via retail': 811062, 'via retail business': 956209, 'retail business easter': 717904, 'enjoying using': 277249, 'using my': 950565, 'my christmas': 547684, 'christmas boris': 178156, 'boris bog': 135447, 'roll toiletpaper': 725563, 'corona borisjohnson': 203831, 'enjoying using my': 277250, 'using my christmas': 950567, 'my christmas boris': 547685, 'christmas boris bog': 178157, 'boris bog roll': 135448, 'bog roll toiletpaper': 133963, 'roll toiletpaper toiletpapercrisis': 725565, 'toiletpapercrisis corona borisjohnson': 923016, 'learn out': 484049, 'europe tech': 283511, 'tech digital': 836075, 'digital data': 242548, 'data business': 226154, 'learn out covid': 484050, 'in europe tech': 422653, 'europe tech digital': 283512, 'tech digital data': 836076, 'digital data business': 242549, 'tseng': 934927, 'daria': 225945, 'weissman': 977852, 'made unthinkable': 508047, 'unthinkable reform': 943625, 'reform reality': 706730, 'reality now': 701765, 'them permanent': 876156, 'permanent france': 652054, 'france tseng': 331044, 'tseng and': 934928, 'and daria': 60950, 'daria weissman': 225948, 'weissman the': 977853, 'to extraordinary': 905545, 'extraordinary response': 293747, 'response such': 715798, 'such housing': 816558, 'housing guarantee': 407084, 'guarantee ending': 367703, 'ending over': 276192, 'over incarceration': 630318, 'incarceration and': 431330, 'pandemic ha made': 635556, 'ha made unthinkable': 371221, 'made unthinkable reform': 508048, 'unthinkable reform reality': 943626, 'reform reality now': 706732, 'reality now to': 701766, 'now to make': 576172, 'to make them': 909752, 'make them permanent': 510610, 'them permanent france': 876157, 'permanent france tseng': 652055, 'france tseng and': 331045, 'tseng and daria': 934929, 'and daria weissman': 60952, 'daria weissman the': 225949, 'weissman the crisis': 977854, 'the crisis ha': 852387, 'led to extraordinary': 485282, 'to extraordinary response': 905546, 'extraordinary response such': 293748, 'response such housing': 715800, 'such housing guarantee': 816560, 'housing guarantee ending': 407085, 'guarantee ending over': 367704, 'ending over incarceration': 276193, 'over incarceration and': 630319, 'incarceration and lowering': 431331, 'and lowering drug': 66466, 'drug price that': 261056, 'beemit': 120576, 'got contacted': 358500, 'work saying': 1005693, 'saying ll': 739636, 'while due': 986779, 'outbreak paypal': 628523, 'paypal or': 645807, 'or beemit': 614521, 'beemit me': 120577, 'support my': 826655, 'addiction also': 31634, 'grocery wherever': 366135, 'wherever can': 985458, 'them bc': 875462, 'bc all': 113219, 'got contacted by': 358501, 'contacted by my': 200320, 'by my work': 153291, 'my work saying': 550646, 'work saying ll': 1005694, 'saying ll be': 739637, 'll be out': 496606, 'work for while': 1005182, 'for while due': 327839, 'while due to': 986780, 'coronavirus outbreak paypal': 206403, 'outbreak paypal or': 628524, 'paypal or beemit': 645808, 'or beemit me': 614522, 'beemit me to': 120578, 'me to support': 523785, 'to support my': 915946, 'support my online': 826658, 'shopping addiction also': 761892, 'addiction also to': 31635, 'also to pay': 49021, 'pay for my': 644887, 'for my grocery': 323711, 'my grocery wherever': 548585, 'grocery wherever can': 366136, 'wherever can find': 985459, 'can find them': 158340, 'find them bc': 307312, 'them bc all': 875463, 'bc all the': 113220, 'in supermarket are': 428559, 'supermarket are empty': 819155, 'article released': 94442, 'released today': 709092, 'about prevalent': 25985, 'prevalent snap': 671569, 'snap authorized': 776072, 'authorized retailer': 103837, 'retailer commitment': 719089, 'encourage healthy': 275592, 'healthy consumer': 387560, 'purchase among': 689343, 'among vulnerable': 53110, 'population take': 664739, '19 stress': 10909, 'access using': 28302, 'new article released': 558360, 'article released today': 94443, 'released today about': 709093, 'today about prevalent': 919143, 'about prevalent snap': 25986, 'prevalent snap authorized': 671570, 'snap authorized retailer': 776073, 'authorized retailer commitment': 103838, 'retailer commitment to': 719090, 'commitment to encourage': 189005, 'to encourage healthy': 905060, 'encourage healthy consumer': 275593, 'healthy consumer purchase': 387561, 'consumer purchase among': 198610, 'purchase among vulnerable': 689344, 'among vulnerable population': 53111, 'vulnerable population take': 961133, 'population take break': 664740, 'take break from': 831996, 'covid 19 stress': 213878, '19 stress and': 10910, 'stress and access': 813296, 'and access using': 57586, 'access using this': 28303, 'using this link': 950752, 'response retailer': 715787, 'retailer extending': 719142, 'extending date': 293222, 'on temporary': 603898, '19 response retailer': 10161, 'response retailer extending': 715788, 'retailer extending date': 719143, 'extending date on': 293223, 'date on temporary': 226703, 'on temporary store': 603901, 'keyword': 473567, 'noworries': 576584, 'told socialism': 923681, 'socialism would': 780992, 'would look': 1012005, 'like tried': 491663, 'shopping keyword': 763132, 'keyword tried': 473572, 'tried but': 931763, 'but always': 145154, 'mood nofood': 538281, 'nofood stockpile': 566176, 'shopping capitalism': 762284, 'capitalism noworries': 162773, 'is what wa': 453901, 'what wa told': 982526, 'wa told socialism': 963542, 'told socialism would': 923682, 'socialism would look': 780993, 'would look like': 1012008, 'look like tried': 502521, 'like tried to': 491664, 'tried to go': 931835, 'go shopping keyword': 354117, 'shopping keyword tried': 763133, 'keyword tried but': 473573, 'tried but always': 931764, 'but always in': 145155, 'good mood nofood': 357396, 'mood nofood stockpile': 538282, 'nofood stockpile food': 566177, 'stockpile food shopping': 803749, 'food shopping capitalism': 316516, 'shopping capitalism noworries': 762285, 'how dramatically': 407758, 'dramatically are': 258323, 'are retail': 89661, 'trend shifting': 931445, 'shifting amid': 758512, 'how dramatically are': 407759, 'dramatically are retail': 258324, 'are retail consumer': 89664, 'retail consumer trend': 717995, 'consumer trend shifting': 199386, 'trend shifting amid': 931446, 'shifting amid the': 758513, 'still finding': 800532, 'store consumer': 807151, 'acting in': 29874, 'one anticipated': 605934, 'anticipated expert': 78454, 'the task': 869156, 'task but': 834668, 'but expect': 145688, 'more limit': 539699, 'on quantity': 603036, 'quantity to': 691962, 'to restore': 913418, 'restore order': 717052, 'still finding some': 800533, 'finding some empty': 307537, 'some empty shelf': 782748, 'grocery store consumer': 365296, 'store consumer are': 807152, 'consumer are acting': 196278, 'are acting in': 84191, 'acting in way': 29875, 'in way no': 430723, 'no one anticipated': 564917, 'one anticipated expert': 605935, 'anticipated expert say': 78455, 'chain is up': 170852, 'is up the': 453582, 'up the task': 946224, 'the task but': 869157, 'task but expect': 834669, 'but expect to': 145690, 'see more limit': 745431, 'more limit on': 539700, 'limit on quantity': 492425, 'on quantity to': 603037, 'quantity to restore': 691963, 'to restore order': 913420, 'restore order in': 717053, 'brewer': 139418, 'adedayo': 32120, 'ayeni': 106336, 'saharan': 730909, 'brewer in': 139422, 'nigeria are': 562717, 'experiencing material': 291684, 'material decline': 520379, 'in beer': 420753, 'beer volume': 122530, 'volume following': 960135, 'to movement': 910325, 'and gathering': 63491, 'gathering directed': 344454, 'directed at': 243407, 'at limiting': 99591, 'the adedayo': 848348, 'adedayo ayeni': 32121, 'ayeni sub': 106337, 'sub saharan': 815686, 'saharan africa': 730910, 'africa consumer': 35059, 'brewer in nigeria': 139423, 'in nigeria are': 425874, 'nigeria are experiencing': 562718, 'are experiencing material': 86349, 'experiencing material decline': 291685, 'material decline in': 520380, 'decline in beer': 231342, 'in beer volume': 420754, 'beer volume following': 122531, 'volume following the': 960136, 'following the restriction': 312903, 'the restriction to': 865679, 'restriction to movement': 717402, 'to movement and': 910327, 'movement and gathering': 543855, 'and gathering directed': 63493, 'gathering directed at': 344455, 'directed at limiting': 243408, 'at limiting the': 99592, 'limiting the spread': 492879, 'of the adedayo': 590778, 'the adedayo ayeni': 848349, 'adedayo ayeni sub': 32122, 'ayeni sub saharan': 106338, 'sub saharan africa': 815687, 'saharan africa consumer': 730911, 'africa consumer research': 35060, 'consumer research analyst': 198749, 'discloses': 244390, 'shortage we': 765295, 'we created': 971232, 'created concept': 215800, 'concept that': 192873, 'that discloses': 843550, 'discloses the': 244391, 'value chain': 952104, 'our cause': 622331, 'cause and': 167494, 'awareness mask': 105702, 'fight the response': 304903, 'the response effort': 865621, 'response effort to': 715680, 'to combat price': 903003, 'gouging and supply': 359253, 'and supply shortage': 72812, 'supply shortage we': 825838, 'shortage we created': 765297, 'we created concept': 971234, 'created concept that': 215801, 'concept that discloses': 192874, 'that discloses the': 843551, 'discloses the cost': 244392, 'cost of the': 208062, 'of the value': 591582, 'the value chain': 870635, 'value chain for': 952106, 'chain for consumer': 170713, 'consumer please join': 198376, 'please join our': 660137, 'join our cause': 466810, 'our cause and': 622332, 'cause and spread': 167495, 'and spread awareness': 72142, 'spread awareness mask': 790443, 'awareness mask the': 105703, 'mask the people': 519357, 'month mortgage': 537868, 'break mean': 138765, 'you answer': 1017018, 'those unable': 892572, 'pay living': 644985, 'about rent': 26080, 'rent other': 711143, 'other bill': 619892, 'is other': 450608, 'other help': 620353, 'help available': 389396, 'what doe the': 981371, 'doe the month': 251615, 'the month mortgage': 860850, 'month mortgage break': 537869, 'mortgage break mean': 541871, 'break mean for': 138766, 'for you answer': 328035, 'you answer question': 1017019, 'answer question how': 78100, 'question how will': 693619, 'how will this': 409244, 'this affect those': 886224, 'affect those unable': 34266, 'those unable to': 892573, 'unable to pay': 939340, 'to pay living': 911541, 'pay living cost': 644986, 'living cost what': 496337, 'cost what about': 208161, 'what about rent': 980988, 'about rent other': 26083, 'rent other bill': 711144, 'other bill is': 619893, 'bill is other': 130605, 'is other help': 450609, 'other help available': 620354, 'thecable': 872296, '19 foodstuff': 7056, 'foodstuff price': 318177, 'double in': 256021, '2020 thecable': 14646, '19 foodstuff price': 7057, 'foodstuff price almost': 318178, 'price almost double': 672278, 'almost double in': 46598, 'double in q1': 256022, 'q1 2020 thecable': 691398, 'virsuse': 957710, 'against virsuse': 37729, 'virsuse such': 957711, 'such covid': 816423, 'base then': 111477, 'work against virsuse': 1004724, 'against virsuse such': 37730, 'virsuse such covid': 957712, 'such covid 19': 816424, '19 yes you': 12251, 'yes you can': 1015622, 'can you ll': 160316, 'to use strong': 918068, 'strong alcohol the': 813965, 'alcohol the base': 41137, 'the base then': 849295, 'base then add': 111478, 'wa practically': 962971, 'practically empty': 668498, 'poor cashier': 664141, 'cashier wa': 166650, 'wearing two': 974817, 'two layer': 937003, 'of clothing': 581478, 'clothing with': 184296, 'with hood': 998871, 'hood face': 403315, 'glove she': 352916, 'she asked': 755863, 'bag on': 108375, 'counter because': 210194, 'allowed coronacrisis': 46145, 'coronacrisis californialockdown': 204538, 'store yesterday it': 811669, 'it wa practically': 462172, 'wa practically empty': 962972, 'practically empty the': 668499, 'empty the poor': 275179, 'the poor cashier': 863971, 'poor cashier wa': 664142, 'cashier wa wearing': 166654, 'wa wearing two': 963681, 'wearing two layer': 974818, 'two layer of': 937004, 'layer of clothing': 482637, 'of clothing with': 581480, 'clothing with hood': 184297, 'with hood face': 998872, 'hood face mask': 403316, 'and glove she': 63736, 'glove she asked': 352917, 'she asked me': 755864, 'asked me not': 95792, 'not to place': 572172, 'place my shopping': 657585, 'my shopping bag': 550053, 'shopping bag on': 762147, 'bag on the': 108376, 'the counter because': 852021, 'counter because they': 210196, 'they were not': 883789, 'were not allowed': 979912, 'not allowed coronacrisis': 568147, 'allowed coronacrisis californialockdown': 46146, 'unpredictability': 943220, 'price unpredictability': 677211, 'unpredictability will': 943221, 'always be': 49475, 'in renewables': 427383, 'renewables plus': 710992, 'plus don': 661587, 'to mankind': 909811, 'mankind climate': 513260, 'change think': 172328, 'together much': 920870, 'much aggressively': 544700, 'aggressively against': 38260, 'against oil': 37559, 'oil after': 596592, 'oil price unpredictability': 597305, 'price unpredictability will': 677212, 'unpredictability will always': 943222, 'will always be': 992271, 'always be good': 49477, 'be good reason': 115074, 'good reason to': 357637, 'reason to invest': 703032, 'invest in renewables': 443764, 'in renewables plus': 427384, 'renewables plus don': 710993, 'plus don forget': 661589, 'don forget the': 253530, 'forget the biggest': 329299, 'threat to mankind': 893737, 'to mankind climate': 909812, 'mankind climate change': 513261, 'climate change think': 182203, 'change think people': 172329, 'think people will': 885491, 'people will come': 650381, 'will come together': 992972, 'come together much': 187630, 'together much aggressively': 920871, 'much aggressively against': 544701, 'aggressively against oil': 38261, 'against oil after': 37560, 'oil after covid': 596593, 'cletus': 181835, 'memes2riches': 528382, 'heybitch': 394566, 'let him': 486794, 'him know': 396647, 'know cletus': 476329, 'cletus repost': 181836, 'repost memes2riches': 712828, 'memes2riches repost': 528383, 'repost corona': 712806, 'corona heybitch': 203991, 'heybitch store': 394567, 'customer staysafe': 222876, 'staysafe bevigilant': 798788, 'let him know': 486795, 'him know cletus': 396648, 'know cletus repost': 476330, 'cletus repost memes2riches': 181837, 'repost memes2riches repost': 712829, 'memes2riches repost corona': 528384, 'repost corona heybitch': 712807, 'corona heybitch store': 203992, 'heybitch store consumer': 394568, 'store consumer customer': 807153, 'consumer customer staysafe': 197042, 'customer staysafe bevigilant': 222877, 'understand do': 940626, 'understand panic': 940692, 'buying we': 151321, 'not third': 572096, 'shortage get': 764970, 'more or': 539958, 'out get': 626212, 'delivery this': 234631, 'madness please': 508199, 'stop convid19uk': 804586, 'don understand do': 254005, 'understand do not': 940627, 'not understand panic': 572322, 'understand panic buying': 940693, 'panic buying we': 637956, 'buying we are': 151323, 'are not third': 88486, 'not third world': 572097, 'world country there': 1009466, 'country there are': 211138, 'are no food': 88259, 'no food shortage': 564270, 'food shortage get': 316578, 'shortage get what': 764971, 'you need for': 1019992, 'next week then': 561700, 'week then get': 977017, 'then get more': 877195, 'get more or': 347595, 'more or if': 539959, 'go out get': 353954, 'out get delivery': 626214, 'get delivery this': 346868, 'delivery this is': 234633, 'this is madness': 888311, 'is madness please': 449513, 'madness please stop': 508201, 'please stop convid19uk': 660574, 'wand supermarket': 965554, 'joined other': 466948, 'in creating': 421857, 'creating senior': 216063, 'wand supermarket chain': 965555, 'chain ha joined': 170751, 'ha joined other': 371036, 'joined other business': 466949, 'other business in': 619913, 'business in creating': 143882, 'in creating senior': 421858, 'creating senior only': 216064, 'shopping hour during': 762916, 'hour during the': 405557, 'casulty': 166821, 'first casulty': 308565, 'casulty in': 166822, 'sad to report': 729275, 'report the first': 712340, 'the first casulty': 855288, 'first casulty in': 308566, 'casulty in the': 166823, 'in the of': 429410, 'the of covid': 862052, '19 supermarket panic': 10954, 'herculean': 392595, 'wa global': 962211, 'pandemic brick': 635025, 'mortar retailer': 541830, 'retailer struggled': 719339, 'door instead': 255625, 'those retailer': 892399, 'more herculean': 539409, 'herculean task': 392600, 'task how': 834715, 'long before there': 501356, 'before there wa': 123206, 'there wa global': 879240, 'wa global coronavirus': 962212, 'global coronavirus pandemic': 351821, 'coronavirus pandemic brick': 206439, 'pandemic brick and': 635026, 'and mortar retailer': 67247, 'mortar retailer struggled': 541831, 'retailer struggled to': 719340, 'people to walk': 649964, 'walk through their': 964895, 'through their door': 894782, 'their door instead': 873072, 'door instead of': 255626, 'instead of shopping': 440319, 'shopping online now': 763462, 'online now those': 608598, 'now those retailer': 576140, 'those retailer are': 892400, 'retailer are faced': 718996, 'faced with an': 295040, 'with an even': 997211, 'even more herculean': 284361, 'more herculean task': 539410, 'herculean task how': 392601, 'task how to': 834716, 'keepcalmgodigitalbanking': 472321, 'inukasme': 443539, 'not disappeared': 569038, 'disappeared people': 244066, 'have dramatically': 380359, 'dramatically shifted': 258370, 'shifted toward': 758509, 'toward online': 927141, 'shopping keepcalmgodigitalbanking': 763126, 'keepcalmgodigitalbanking inukasme': 472322, 'while consumer demand': 986705, 'demand is down': 235721, 'is down it': 447347, 'down it ha': 256893, 'ha not disappeared': 371362, 'not disappeared people': 569039, 'disappeared people have': 244067, 'people have dramatically': 648175, 'have dramatically shifted': 380360, 'dramatically shifted toward': 258371, 'shifted toward online': 758510, 'toward online shopping': 927143, 'online shopping keepcalmgodigitalbanking': 609165, 'shopping keepcalmgodigitalbanking inukasme': 763127, '12km': 3106, '1km': 12634, 'expiring': 292085, 'contr': 201607, 'technique': 836236, 'put time': 690921, 'time well': 898253, 'well date': 978137, 'on confinement': 600011, 'confinement form': 194068, 'form can': 329497, 'we drive': 971417, 'to airport': 900204, 'airport can': 40094, 'we use': 973608, 'use drive': 949170, 'drive supermarket': 259161, 'supermarket which': 823834, 'is 12km': 445156, '12km away': 3107, 'away when': 106102, 'shop 1km': 759789, '1km away': 12635, 'away what': 106100, 'about expiring': 25210, 'expiring contr': 292086, 'contr le': 201608, 'le technique': 483149, 'technique we': 836242, 'answer here': 78059, 'must we put': 546997, 'we put time': 972796, 'put time well': 690922, 'time well date': 898255, 'well date on': 978138, 'date on confinement': 226699, 'on confinement form': 600012, 'confinement form can': 194069, 'form can we': 329498, 'can we drive': 160171, 'we drive people': 971418, 'people to airport': 649874, 'to airport can': 900205, 'airport can we': 40095, 'can we use': 160207, 'we use drive': 973611, 'use drive supermarket': 949171, 'drive supermarket which': 259163, 'supermarket which is': 823835, 'which is 12km': 985974, 'is 12km away': 445157, '12km away when': 3108, 'away when we': 106107, 'have food shop': 380664, 'food shop 1km': 316471, 'shop 1km away': 759790, '1km away what': 12636, 'away what about': 106101, 'what about expiring': 980969, 'about expiring contr': 25211, 'expiring contr le': 292087, 'contr le technique': 201609, 'le technique we': 483150, 'technique we answer': 836243, 'we answer here': 970435, 'dad came': 224303, 'happy and': 377579, 'doing his': 252452, 'his pocket': 397709, 'pocket justice': 662180, 'justice since': 470436, 'since not': 770767, 'out spending': 627234, 'spending his': 788846, 'his money': 397616, 'money but': 536645, 'but ve': 147679, 'been online': 121603, 'his card': 397273, 'spent over': 789161, '200 already': 13446, 'already should': 47652, 'tell him': 836970, 'later quarantine': 481114, 'my dad came': 547884, 'dad came up': 224304, 'came up to': 157080, 'me all happy': 522370, 'all happy and': 43039, 'happy and he': 377583, 'and he told': 64329, 'that this quarantine': 847001, 'this quarantine life': 889775, 'quarantine life is': 692339, 'life is doing': 488805, 'is doing his': 447278, 'doing his pocket': 252454, 'his pocket justice': 397710, 'pocket justice since': 662181, 'justice since not': 470437, 'since not out': 770768, 'not out spending': 570864, 'out spending his': 627235, 'spending his money': 788847, 'his money but': 397617, 'money but ve': 536647, 'but ve been': 147680, 've been online': 952910, 'been online shopping': 121605, 'shopping with his': 764435, 'with his card': 998830, 'his card and': 397274, 'card and have': 163452, 'and have spent': 64278, 'have spent over': 382689, 'spent over 200': 789162, 'over 200 already': 629802, '200 already should': 13447, 'already should tell': 47653, 'should tell him': 766562, 'tell him now': 836973, 'him now or': 396673, 'now or later': 575473, 'or later quarantine': 615933, 'homecooking': 402663, 'healhtycooking': 386081, 'clean produce': 180621, 'produce help': 680294, 'healthy follow': 387621, 'these easy': 879949, 'easy tip': 265773, 'administration for': 32470, 'for sanitizing': 325342, 'sanitizing your': 736537, 'your produce': 1025432, 'produce before': 680207, 'before eating': 122765, 'eating or': 266266, 'or cooking': 614822, 'cooking washyourhands': 202933, 'washyourhands saferathome': 967901, 'saferathome homecooking': 730404, 'homecooking healhtycooking': 402664, 'clean produce help': 180623, 'produce help keep': 680295, 'help keep you': 389979, 'keep you healthy': 472240, 'you healthy follow': 1019175, 'healthy follow these': 387622, 'follow these easy': 312554, 'these easy tip': 879950, 'easy tip from': 265774, 'drug administration for': 260853, 'administration for sanitizing': 32471, 'for sanitizing your': 325343, 'sanitizing your produce': 736538, 'your produce before': 1025433, 'produce before eating': 680208, 'before eating or': 122767, 'eating or cooking': 266267, 'or cooking washyourhands': 614823, 'cooking washyourhands saferathome': 202934, 'washyourhands saferathome homecooking': 967902, 'saferathome homecooking healhtycooking': 730405, 'sorry that': 786082, 'that happened': 844175, 'happened ve': 377294, 've personally': 953434, 'personally seen': 653049, 'seen marked': 747135, 'marked change': 515852, 'people attitude': 647193, 'attitude in': 102560, 'own city': 631920, 'city since': 179364, 'since police': 770788, 'arrested an': 93812, 'an asian': 55432, 'woman spitting': 1003616, 'fruit who': 339202, 'video wa': 956947, 'later uploaded': 481158, 'uploaded to': 947601, 'very sorry that': 955573, 'sorry that happened': 786083, 'that happened ve': 844176, 'happened ve personally': 377295, 've personally seen': 953435, 'personally seen marked': 653050, 'seen marked change': 747136, 'marked change in': 515853, 'change in people': 172127, 'in people attitude': 426587, 'people attitude in': 647194, 'attitude in my': 102562, 'in my own': 425609, 'my own city': 549635, 'own city since': 631921, 'city since police': 179365, 'since police arrested': 770789, 'police arrested an': 662931, 'arrested an asian': 93813, 'an asian woman': 55436, 'asian woman spitting': 95379, 'woman spitting on': 1003618, 'on fruit who': 601040, 'fruit who had': 339203, 'who had covid': 988876, 'local supermarket the': 498597, 'supermarket the video': 823254, 'the video wa': 870756, 'video wa later': 956949, 'wa later uploaded': 962508, 'later uploaded to': 481159, 'versatile': 954884, 'affected your': 34471, 'ecommerce store': 266873, 'your approach': 1022807, 'approach instead': 82955, 'pushing dress': 690408, 'dress shoe': 258676, 'shoe for': 759668, 'every occasion': 286044, 'occasion capitalise': 578936, 'capitalise your': 162706, 'your copy': 1023342, 'copy on': 203469, 'on comfort': 599970, 'comfort versatile': 187858, 'versatile everyday': 954885, 'everyday footwear': 286559, 'footwear digitalmarketing': 318585, 'digitalmarketing don': 242766, 'be robot': 116905, 'robot think': 724810, 'your situation': 1025820, 'situation your': 772615, 'in adapt': 420028, 'ha affected your': 369470, 'affected your ecommerce': 34472, 'your ecommerce store': 1023620, 'ecommerce store change': 266874, 'store change your': 806947, 'change your approach': 172413, 'your approach instead': 1022808, 'approach instead of': 82956, 'instead of pushing': 440307, 'of pushing dress': 588621, 'pushing dress shoe': 690409, 'dress shoe for': 258677, 'shoe for every': 759669, 'for every occasion': 321171, 'every occasion capitalise': 286045, 'occasion capitalise your': 578937, 'capitalise your copy': 162707, 'your copy on': 1023343, 'copy on comfort': 203470, 'on comfort versatile': 599972, 'comfort versatile everyday': 187859, 'versatile everyday footwear': 954886, 'everyday footwear digitalmarketing': 286560, 'footwear digitalmarketing don': 318586, 'digitalmarketing don be': 242767, 'don be robot': 253364, 'be robot think': 116906, 'robot think what': 724811, 'think what your': 885782, 'what your situation': 982722, 'your situation your': 1025822, 'situation your consumer': 772616, 'your consumer is': 1023322, 'consumer is in': 197936, 'is in adapt': 448749, 'risked': 724040, 'jackie': 464164, 'fair very': 296398, 'very lucky': 955347, 'lucky that': 506571, 'that risked': 846063, 'risked the': 724043, 'the trip': 869993, 'supermarket jackie': 821198, 'jackie don': 464165, 'think he': 885276, 'spend any': 788582, 'there than': 879131, 'necessary stayhomesavelives': 554090, 'to be fair': 901250, 'be fair very': 114790, 'fair very lucky': 296399, 'very lucky that': 955348, 'lucky that he': 506573, 'he is the': 385151, 'is the one': 452876, 'one that risked': 607186, 'that risked the': 846064, 'risked the trip': 724044, 'the trip to': 870000, 'the supermarket jackie': 868656, 'supermarket jackie don': 821199, 'jackie don think': 464166, 'don think he': 253977, 'think he wanted': 885278, 'wanted to spend': 966273, 'to spend any': 914986, 'spend any longer': 788583, 'any longer in': 79431, 'longer in there': 502001, 'in there than': 429820, 'there than necessary': 879133, 'than necessary stayhomesavelives': 840929, 'entertainment show': 278603, 'most growth': 542359, 'growth after': 367335, 'after grocery': 35738, 'grocery via': 366103, 'the 19 in': 847920, '19 in home': 7751, 'in home entertainment': 423782, 'home entertainment show': 401149, 'entertainment show most': 278604, 'show most growth': 767061, 'most growth after': 542360, 'growth after grocery': 367336, 'after grocery via': 35740, 'described senior': 237950, 'citizen 80': 178814, 'who described senior': 988566, 'described senior citizen': 237951, 'senior citizen 80': 750247, 'citizen 80 year': 178815, 'sneaking out the': 776210, 'bloody sad': 133231, 'sad medium': 729198, 'medium not': 527186, 'not covering': 568909, 'covering blatant': 212460, 'by fuel': 152648, '20p yet': 14925, 'yet pump': 1016213, 'pump price': 689083, 'bloody sad medium': 133232, 'sad medium not': 729199, 'medium not covering': 527187, 'not covering blatant': 568910, 'covering blatant profiteering': 212461, 'motorist by fuel': 543357, 'by fuel supply': 152649, 'wholesale price down': 990470, 'price down 20p': 673512, 'down 20p yet': 256392, '20p yet pump': 14926, 'yet pump price': 1016214, 'pump price down': 689086, 'price down just': 673526, 'down just few': 256908, 'just few penny': 468709, 'interstate': 442136, 'union government': 941885, 'household staple': 406946, 'nearly 600': 553786, '600 centre': 21073, 'centre across': 169474, 'ha advised': 369456, 'advised all': 33618, 'all state': 44430, 'state especially': 795568, 'with transport': 1001834, 'transport restriction': 929932, 'restriction such': 717386, 'such maharashtra': 816618, 'maharashtra to': 508487, 'allow interstate': 45983, 'interstate movement': 442141, 'the union government': 870404, 'union government is': 941886, 'government is tracking': 360283, 'is tracking price': 453320, 'tracking price of': 928354, 'price of household': 675471, 'of household staple': 584799, 'household staple in': 406950, 'staple in nearly': 793959, 'in nearly 600': 425714, 'nearly 600 centre': 553787, '600 centre across': 21074, 'centre across the': 169475, 'country and ha': 210439, 'and ha advised': 64062, 'ha advised all': 369457, 'advised all state': 33619, 'all state especially': 44431, 'state especially those': 795569, 'especially those with': 280640, 'those with transport': 892728, 'with transport restriction': 1001835, 'transport restriction such': 929934, 'restriction such maharashtra': 717387, 'such maharashtra to': 816619, 'maharashtra to allow': 508488, 'to allow interstate': 900341, 'allow interstate movement': 45984, 'uplifting': 947586, 'to delivering': 904122, 'delivering meal': 233523, 'free class': 331711, 'online act': 607768, 'kindness during': 475196, 'providing uplifting': 687129, 'uplifting moment': 947587, 'of joy': 585555, 'joy in': 467508, 'in unitedstates': 430444, 'unitedstates beset': 942288, 'by anxiety': 151871, 'the elderly to': 854153, 'elderly to delivering': 270918, 'to delivering meal': 904123, 'delivering meal or': 233525, 'meal or offering': 524231, 'or offering free': 616355, 'offering free class': 595114, 'free class online': 331712, 'class online act': 180233, 'online act of': 607769, 'of kindness during': 585645, 'kindness during the': 475197, 'pandemic are providing': 634948, 'are providing uplifting': 89326, 'providing uplifting moment': 687130, 'uplifting moment of': 947588, 'moment of joy': 536014, 'of joy in': 585557, 'joy in unitedstates': 467511, 'in unitedstates beset': 430445, 'unitedstates beset by': 942289, 'beset by anxiety': 127466, 'babybel': 106751, 'than go': 840697, 'today kept': 919770, 'kept my': 473059, 'my distance': 548002, 'distance amp': 246627, 'amp had': 53899, 'had babybel': 372869, 'babybel amp': 106752, 'amp an': 53385, 'egg for': 269861, 'lunch what': 506757, 'lunch today': 506753, 'rather than go': 697521, 'than go to': 840698, 'supermarket today kept': 823451, 'today kept my': 919771, 'kept my distance': 473060, 'my distance amp': 548003, 'distance amp had': 246628, 'amp had babybel': 53900, 'had babybel amp': 372870, 'babybel amp an': 106753, 'amp an easter': 53386, 'an easter egg': 55552, 'easter egg for': 265420, 'egg for lunch': 269862, 'for lunch what': 323148, 'lunch what did': 506758, 'you have for': 1019048, 'for lunch today': 323146, 'aussie follower': 103118, 'follower acc': 312628, 'acc ha': 27806, 'ha provided': 371568, 'provided guidance': 686608, 'following affected': 312671, 'pandemic travel': 636833, 'change event': 172037, 'cancellation product': 161053, 'increase gym': 432800, 'gym closure': 369307, 'closure fee': 183889, 'fee food': 302167, 'aussie follower acc': 103119, 'follower acc ha': 312629, 'acc ha provided': 27808, 'ha provided guidance': 371570, 'provided guidance on': 686610, 'guidance on the': 368267, 'on the following': 604125, 'the following affected': 855494, 'following affected by': 312672, 'affected by pandemic': 34321, 'by pandemic travel': 153512, 'pandemic travel cancellation': 636834, 'travel cancellation and': 930309, 'cancellation and change': 161002, 'and change event': 59721, 'change event cancellation': 172038, 'event cancellation product': 284957, 'cancellation product price': 161054, 'product price increase': 681544, 'price increase gym': 674774, 'increase gym closure': 432801, 'gym closure fee': 369308, 'closure fee food': 183890, 'fee food delivery': 302168, 'penalize': 646431, 'indicate': 434963, 'government please': 360466, 'please penalize': 660278, 'penalize the': 646432, 'hefty amount': 388785, 'amount in': 53192, 'that indicate': 844507, 'indicate covid': 434964, '19 failed': 6927, 'only lead': 610702, 'no of': 564897, 'majority can': 509532, 'can the government': 159953, 'the government please': 856582, 'government please penalize': 360467, 'please penalize the': 660279, 'penalize the private': 646433, 'the private hospital': 864485, 'private hospital that': 678921, 'hospital that charge': 404671, 'charge hefty amount': 173252, 'hefty amount in': 388786, 'amount in the': 53194, 'in the test': 429598, 'the test that': 869321, 'test that indicate': 839194, 'that indicate covid': 844508, 'indicate covid 19': 434965, 'covid 19 failed': 213069, '19 failed to': 6928, 'failed to do': 296176, 'do so will': 250106, 'so will only': 778774, 'will only lead': 994333, 'only lead to': 610703, 'lead to an': 483324, 'to an increase': 900461, 'in the no': 429401, 'the no of': 861832, 'no of case': 564899, 'of case the': 581177, 'case the majority': 166055, 'the majority can': 859942, 'majority can afford': 509533, 'can afford these': 157410, 'afford these price': 34781, 'drfauci': 258727, 'store bingo': 806730, 'bingo coronacrisis': 131099, 'coronacrisis fridayfeeling': 204603, 'fridayfeeling socialdistanacing': 333336, 'socialdistanacing drfauci': 780057, 'drfauci chinesewuhanvirus': 258728, 'chinesewuhanvirus chinaliedpeopledied': 177477, 'grocery store bingo': 365247, 'store bingo coronacrisis': 806731, 'bingo coronacrisis fridayfeeling': 131100, 'coronacrisis fridayfeeling socialdistanacing': 204604, 'fridayfeeling socialdistanacing drfauci': 333337, 'socialdistanacing drfauci chinesewuhanvirus': 780058, 'drfauci chinesewuhanvirus chinaliedpeopledied': 258729, 'tying': 937493, 'worker working': 1008290, 'these tying': 880904, 'tying time': 937498, 'store worker working': 811628, 'worker working in': 1008292, 'working in these': 1008735, 'in these tying': 429873, 'these tying time': 880905, 'firstdayofspring': 309199, 'it real': 460616, 'and cut': 60880, 'the bull': 850106, 'bull malamjumat': 142403, 'coronacrisis firstdayofspring': 204594, 'firstdayofspring socialdistanacing': 309200, 'socialdistanacing online': 780081, 'online shoplocal': 608996, 'shoplocal shopping': 761228, 'shopping style': 764004, 'keep it real': 471620, 'it real and': 460617, 'real and cut': 701033, 'and cut the': 60887, 'cut the bull': 223572, 'the bull malamjumat': 850107, 'bull malamjumat sondurum': 142404, 'gntm coronacrisis firstdayofspring': 353230, 'coronacrisis firstdayofspring socialdistanacing': 204595, 'firstdayofspring socialdistanacing online': 309202, 'socialdistanacing online shoplocal': 780082, 'online shoplocal shopping': 608997, 'shoplocal shopping style': 761231, 'warrenton': 967352, 'video warrenton': 956954, 'warrenton man': 967353, 'lick toiletry': 488212, 'toiletry in': 923428, 'missouri supermarket': 534440, 'supermarket video': 823647, 'video charged': 956666, 'charged terrorist': 173414, 'threat cody': 893652, 'pfister 19': 653916, 'video warrenton man': 956955, 'warrenton man lick': 967354, 'man lick toiletry': 512139, 'lick toiletry in': 488213, 'toiletry in missouri': 923429, 'in missouri supermarket': 425379, 'missouri supermarket video': 534441, 'supermarket video charged': 823648, 'video charged terrorist': 956667, 'charged terrorist threat': 173415, 'terrorist threat cody': 838618, 'threat cody pfister': 893653, 'cody pfister 19': 185430, 'pupil': 689290, 'fsm': 339309, 'school should': 741919, 'with catering': 997568, 'catering provider': 167265, 'provider or': 686762, 'authority to': 103796, 'parcel or': 641515, 'send out': 749927, 'to pupil': 912510, 'pupil eligible': 689293, 'for fsm': 321789, 'fsm affected': 339310, 'coronavirus according': 205445, 'school should work': 741921, 'should work with': 766665, 'work with catering': 1006025, 'with catering provider': 997569, 'catering provider or': 167266, 'provider or local': 686763, 'local authority to': 497720, 'authority to provide': 103805, 'provide food parcel': 686309, 'food parcel or': 315820, 'parcel or send': 641517, 'or send out': 617008, 'send out supermarket': 749929, 'out supermarket voucher': 627280, 'voucher to pupil': 960678, 'to pupil eligible': 912511, 'pupil eligible for': 689294, 'eligible for fsm': 271425, 'for fsm affected': 321790, 'fsm affected by': 339311, 'affected by coronavirus': 34309, 'by coronavirus according': 152227, 'coronavirus according to': 205446, 'to the guidance': 916758, 'the guidance is': 856921, 'guidance is here': 368249, 'bzun': 154837, 'another sign': 77854, 'china returning': 176914, 'normal online': 567230, 'ha permanently': 371483, 'permanently changed': 652092, 'retail shopping': 718561, 'shopping bzun': 762270, 'bzun jd': 154838, 'jd baba': 464930, 'baba will': 106542, 'be benefit': 113829, 'another sign of': 77855, 'sign of china': 769156, 'of china returning': 581366, 'china returning to': 176915, 'returning to the': 720025, 'new normal online': 559164, 'normal online shopping': 567231, 'shopping 19 ha': 761865, '19 ha permanently': 7373, 'ha permanently changed': 371484, 'permanently changed the': 652093, 'changed the behavior': 172562, 'behavior of retail': 124133, 'of retail shopping': 589052, 'retail shopping bzun': 718562, 'shopping bzun jd': 762271, 'bzun jd baba': 154839, 'jd baba will': 464931, 'baba will be': 106543, 'will be benefit': 992377, 'be benefit in': 113830, 'cfa': 170288, 'agenda': 38112, 'cfa called': 170291, 'on congress': 600015, 'to enact': 905047, 'enact comprehensive': 275481, 'consumer agenda': 196118, 'agenda to': 38124, 'by protecting': 153671, 'protecting those': 685241, 'those hardest': 892052, 'and ensuring': 62173, 'that industry': 844511, 'industry doe': 435779, 'doe their': 251627, 'cfa called on': 170292, 'called on congress': 156396, 'on congress and': 600016, 'and the president': 73526, 'president to enact': 670924, 'to enact comprehensive': 905048, 'enact comprehensive consumer': 275482, 'comprehensive consumer agenda': 192629, 'consumer agenda to': 196119, 'agenda to address': 38125, 'address the crisis': 32033, 'crisis by protecting': 217176, 'by protecting those': 153672, 'protecting those hardest': 685242, 'those hardest hit': 892053, 'economic impact and': 267126, 'impact and ensuring': 417548, 'and ensuring that': 62175, 'ensuring that industry': 278194, 'that industry doe': 844512, 'industry doe their': 435780, 'doe their part': 251628, 'their part we': 874253, 'part we re': 642485, 'store getting': 807924, 'getting safe': 349246, 'safe green': 729721, 'green product': 363693, 'for similar': 325626, 'similar price': 769918, 'pay in': 644953, '19 hanging': 7425, 'family appreciates': 297618, 'appreciates convenient': 82852, 'convenient direct': 202393, 'direct site': 243388, 'site to': 772029, 'been shopping from': 121951, 'shopping from an': 762751, 'online store getting': 609449, 'store getting safe': 807925, 'getting safe green': 349247, 'safe green product': 729722, 'green product for': 363694, 'product for similar': 681206, 'for similar price': 325627, 'similar price you': 769919, 'price you pay': 677697, 'you pay in': 1020306, 'pay in the': 644955, 'store with covid': 811371, 'covid 19 hanging': 213182, '19 hanging around': 7426, 'hanging around my': 376962, 'around my family': 93409, 'my family appreciates': 548185, 'family appreciates convenient': 297619, 'appreciates convenient direct': 82853, 'convenient direct site': 202394, 'direct site to': 243389, 'site to home': 772033, 'to home delivery': 907931, 'weakened': 974059, 'corporates': 207372, 'attractive': 102719, 'massive economic': 520019, 'slowdown ha': 774440, 'ha weakened': 372464, 'weakened many': 974074, 'many indian': 514179, 'indian corporates': 434804, 'corporates making': 207375, 'them attractive': 875448, 'attractive target': 102728, 'target for': 834458, 'for takeover': 326139, 'allow foreign': 45973, 'foreign interest': 328977, 'interest to': 441413, 'take control': 832037, 'any indian': 79353, 'indian corporate': 434802, 'corporate at': 207238, 'the massive economic': 860266, 'massive economic slowdown': 520021, 'economic slowdown ha': 267305, 'slowdown ha weakened': 774441, 'ha weakened many': 372465, 'weakened many indian': 974075, 'many indian corporates': 514181, 'indian corporates making': 434805, 'corporates making them': 207376, 'making them attractive': 511442, 'them attractive target': 875450, 'attractive target for': 102729, 'target for takeover': 834462, 'for takeover the': 326140, 'takeover the govt': 833219, 'the govt must': 856664, 'govt must not': 361207, 'must not allow': 546776, 'not allow foreign': 568139, 'allow foreign interest': 45974, 'foreign interest to': 328978, 'interest to take': 441421, 'to take control': 916168, 'take control of': 832038, 'control of any': 202064, 'of any indian': 580260, 'any indian corporate': 79354, 'indian corporate at': 434803, 'corporate at this': 207239, 'time of national': 897347, 'of national crisis': 586861, 'viet': 957024, 'nam': 551573, 'viet nam': 957027, 'nam stop': 551574, 'stop signing': 805030, 'signing of': 769637, 'new rice': 559499, 'rice export': 721041, 'export contract': 292621, 'contract amid': 201629, 'viet nam stop': 957028, 'nam stop signing': 551575, 'stop signing of': 805031, 'signing of new': 769638, 'of new rice': 586982, 'new rice export': 559500, 'rice export contract': 721042, 'export contract amid': 292622, 'contract amid covid': 201630, 'fork': 329469, 'quittrippin': 694948, 'last of': 480412, 'good shit': 357727, 'shit left': 759161, 'cart for': 165300, 'two second': 937197, 'grab fork': 361485, 'fork and': 329470, 'and spoon': 72128, 'spoon and': 789866, 'someone jacked': 784538, 'jacked me': 464139, 'cart this': 165393, 'shit getting': 759107, 'hand quittrippin': 375191, 'quittrippin stayhome': 694949, 'stayhome wtf': 798238, 'wtf overreaction': 1013310, 'and got the': 63863, 'got the last': 358906, 'the last of': 859026, 'last of the': 480414, 'of the good': 591068, 'the good shit': 856448, 'good shit left': 357728, 'shit left my': 759162, 'left my shopping': 485564, 'my shopping cart': 550054, 'shopping cart for': 762300, 'cart for two': 165304, 'for two second': 327395, 'two second to': 937198, 'second to grab': 743852, 'to grab fork': 906962, 'grab fork and': 361486, 'fork and spoon': 329471, 'and spoon and': 72129, 'spoon and someone': 789868, 'and someone jacked': 71986, 'someone jacked me': 784539, 'jacked me for': 464140, 'for my cart': 323684, 'my cart this': 547628, 'cart this shit': 165395, 'this shit getting': 890081, 'shit getting out': 759109, 'of hand quittrippin': 584430, 'hand quittrippin stayhome': 375192, 'quittrippin stayhome wtf': 694950, 'stayhome wtf overreaction': 798239, 'roar': 724577, 'torontohousingmarket': 926013, 'housesforsale': 407027, 'low 70': 505093, '70 cent': 21741, 'cent loonie': 169086, 'loonie low': 503137, 'will roar': 994717, 'roar later': 724578, 'later this': 481141, 'year listing': 1014701, 'listing torontohousingmarket': 494891, 'torontohousingmarket 2020': 926014, '2020 condo': 14235, 'condo housesforsale': 193587, 'with low 70': 999329, 'low 70 cent': 505094, '70 cent loonie': 21744, 'cent loonie low': 169087, 'loonie low gas': 503138, 'and the end': 73347, '19 the toronto': 11257, 'estate market will': 282161, 'market will roar': 517364, 'will roar later': 994718, 'roar later this': 724579, 'later this year': 481145, 'this year listing': 891582, 'year listing torontohousingmarket': 1014702, 'listing torontohousingmarket 2020': 494892, 'torontohousingmarket 2020 condo': 926015, '2020 condo housesforsale': 14236, 'russia are': 728439, 'very close': 955056, 'agreement on': 38783, 'after historic': 35789, 'historic price': 397970, 'drop during': 260185, 'and russia are': 70662, 'russia are very': 728441, 'are very close': 91457, 'very close to': 955058, 'close to an': 182882, 'to an agreement': 900438, 'an agreement on': 55196, 'agreement on oil': 38785, 'on oil production': 602495, 'production cut after': 681986, 'cut after historic': 223218, 'after historic price': 35790, 'historic price drop': 397971, 'price drop during': 673571, 'drop during the': 260186, 'attracted': 102708, 'hooptie': 403367, 'chinaflu': 177090, 'something tell': 785068, 'me free': 522775, 'need attracted': 554502, 'attracted many': 102711, 'these car': 879721, 'car notice': 163187, 'not hooptie': 570014, 'hooptie among': 403368, 'among them': 53084, 'another feed': 77612, 'panic story': 638639, 'story chinaflu': 811934, 'something tell me': 785069, 'tell me free': 837010, 'me free and': 522776, 'free and not': 331649, 'and not need': 67759, 'not need attracted': 570654, 'need attracted many': 554503, 'attracted many of': 102712, 'of these car': 591815, 'these car notice': 879722, 'car notice not': 163188, 'notice not hooptie': 573320, 'not hooptie among': 570015, 'hooptie among them': 403369, 'among them this': 53086, 'is another feed': 445734, 'another feed the': 77613, 'feed the panic': 302379, 'the panic story': 863222, 'panic story chinaflu': 638640, 'familiaspnf': 297538, 'hell and': 388977, 'and hell': 64432, 'hell suffering': 389067, 'suffering due': 817295, 'lockdown let': 499590, 'let put': 486999, 'in perspective': 426652, 'perspective ana': 653185, 'ana and': 56974, 'internet online': 441976, 'shopping social': 763935, 'medium or': 527201, 'were truly': 980293, 'truly isolated': 933330, 'isolated familiaspnf': 454993, 'those who think': 892685, 'who think they': 989778, 'are in hell': 87391, 'in hell and': 423625, 'hell and hell': 388979, 'and hell suffering': 64433, 'hell suffering due': 389068, 'suffering due to': 817296, 'to the coronacrisis': 916594, 'the coronacrisis lockdown': 851783, 'coronacrisis lockdown let': 204655, 'lockdown let put': 499591, 'let put it': 487000, 'put it in': 690645, 'it in perspective': 458741, 'in perspective ana': 426653, 'perspective ana and': 653186, 'ana and those': 56975, 'and those people': 74035, 'those people didn': 892319, 'people didn have': 647646, 'have the internet': 382997, 'the internet online': 858388, 'internet online shopping': 441977, 'online shopping social': 609277, 'shopping social medium': 763936, 'social medium or': 779870, 'medium or any': 527202, 'of the luxury': 591207, 'the luxury we': 859837, 'luxury we have': 506978, 'we have they': 971962, 'have they were': 383092, 'they were truly': 883812, 'were truly isolated': 980294, 'truly isolated familiaspnf': 933331, 'nice about': 562331, 'about 21': 24671, 'day lockdown': 227922, 'about house': 25418, 'house rent': 406522, 'food facility': 314439, 'facility while': 295391, 'owner will': 632605, 'listen about': 494658, 'will demand': 993152, 'demand about': 234897, 'rent many': 711123, 'indian citizen': 434791, 'in rent': 427385, 'sir it nice': 771587, 'it nice about': 459800, 'nice about 21': 562332, 'about 21 day': 24672, '21 day lockdown': 14991, 'day lockdown but': 227923, 'what about house': 980976, 'about house rent': 25419, 'house rent and': 406523, 'rent and food': 711034, 'and food facility': 63045, 'food facility while': 314440, 'facility while the': 295392, 'while the owner': 987406, 'the owner will': 862816, 'owner will not': 632607, 'will not listen': 994244, 'not listen about': 570425, 'listen about the': 494659, 'the they will': 869439, 'they will demand': 883840, 'will demand about': 993153, 'demand about rent': 234898, 'about rent many': 26082, 'rent many indian': 711124, 'many indian citizen': 514180, 'indian citizen are': 434792, 'citizen are living': 178850, 'are living in': 87846, 'living in rent': 496388, 'in rent and': 427386, 'rent and many': 711038, 'and many of': 66677, 'of those are': 592080, 'those are based': 891799, 'what implication': 981649, 'implication will': 418574, 'outbreak have': 628288, 'affect homeowner': 34160, 'homeowner amp': 402880, 'buy or': 149055, 'sell property': 748855, 'property during': 684269, 'what implication will': 981650, 'implication will the': 418575, 'the outbreak have': 862636, 'outbreak have on': 628289, 'have on house': 381771, 'on house price': 601373, 'house price amp': 406470, 'price amp how': 672337, 'amp how could': 53960, 'how could this': 407632, 'could this affect': 209769, 'this affect homeowner': 886222, 'affect homeowner amp': 34161, 'homeowner amp people': 402881, 'amp people looking': 54283, 'people looking to': 648708, 'looking to buy': 503019, 'to buy or': 902282, 'buy or sell': 149059, 'or sell property': 617001, 'sell property during': 748856, 'property during this': 684270, 'period of uncertainty': 651859, 'salvage': 732897, 'normally rescue': 567529, 'rescue about': 713605, 'about 12': 24638, 'million pound': 532330, 'year from': 1014575, 'county he': 211404, 'said consumer': 731026, 'ha exhausted': 370546, 'exhausted those': 290181, 'almost nothing': 46714, 'to salvage': 913741, 'salvage from': 732898, 'the loading': 859515, 'we normally rescue': 972593, 'normally rescue about': 567530, 'rescue about 12': 713606, 'about 12 million': 24641, '12 million pound': 2889, 'million pound of': 532332, 'food year from': 317693, 'year from grocery': 1014577, 'store in our': 808366, 'our county he': 622613, 'county he said': 211405, 'he said consumer': 385360, 'said consumer demand': 731027, 'demand ha exhausted': 235606, 'ha exhausted those': 370547, 'exhausted those supermarket': 290182, 'supermarket and now': 819026, 'and now there': 67866, 'now there almost': 576088, 'there almost nothing': 877963, 'almost nothing left': 46715, 'left to salvage': 485690, 'to salvage from': 913742, 'salvage from the': 732899, 'from the loading': 337777, 'the loading dock': 859516, 'think shelter': 885533, 'bad term': 108022, 'term if': 838170, 'or out': 616463, 'for run': 325269, 'anyone else think': 80297, 'else think shelter': 271924, 'think shelter in': 885534, 'in place is': 426742, 'place is bad': 657523, 'is bad term': 445972, 'bad term if': 108023, 'term if you': 838172, 'store or out': 809356, 'or out for': 616464, 'out for run': 626154, 'coronavirus visit': 207027, 'bay 19': 112902, 'the coronavirus visit': 851938, 'coronavirus visit for': 207029, 'visit for some': 959254, 'for some tip': 325772, 'at bay 19': 98096, 'hysteria of': 412467, 'caused my': 167919, 'mom to': 535812, 'barter with': 111406, 'aunt bc': 102997, 'bc my': 113250, 'aunt went': 103008, 'the mass hysteria': 860243, 'mass hysteria of': 519791, 'hysteria of ha': 412468, 'of ha caused': 584399, 'ha caused my': 370090, 'caused my mom': 167920, 'my mom to': 549284, 'mom to barter': 535813, 'to barter with': 901056, 'barter with one': 111407, 'my aunt bc': 547351, 'aunt bc my': 102998, 'bc my aunt': 113251, 'my aunt went': 547355, 'aunt went to': 103009, 'margareta': 515590, 'margareta of': 515591, 'of romania': 589157, 'romania royal': 725738, 'royal foundation': 726623, 'foundation action': 330479, 'assistance online': 96724, 'support inter': 826597, 'inter generational': 441188, 'generational program': 345666, 'margareta of romania': 515592, 'of romania royal': 589158, 'romania royal foundation': 725739, 'royal foundation action': 726624, 'foundation action for': 330480, 'action for the': 30021, 'elderly people during': 270820, 'people during covid': 647741, '19 assistance online': 5236, 'assistance online shopping': 96725, 'shopping and financial': 761984, 'and financial support': 62877, 'financial support inter': 306613, 'support inter generational': 826598, 'inter generational program': 441189, 'the dod': 853480, 'dod recommends': 251262, 'recommends two': 704851, 'for prescription': 324697, 'prescription medicine': 670520, 'medicine here': 526803, 'is comprehensive': 446718, 'comprehensive list': 192640, 'the dod recommends': 853481, 'dod recommends two': 251263, 'recommends two week': 704852, 'supply and 30': 824699, 'and 30 day': 57439, '30 day for': 17017, 'day for prescription': 227630, 'for prescription medicine': 324698, 'prescription medicine here': 670521, 'medicine here is': 526804, 'here is comprehensive': 393220, 'is comprehensive list': 446719, 'comprehensive list of': 192641, 'list of household': 494445, 'household item to': 406872, 'item to consider': 463744, 'to consider buying': 903222, 'consider buying during': 194965, 'buying during this': 150215, 'deadly toll': 229299, 'toll on': 923860, '19 is starting': 8055, 'starting to take': 795042, 'take deadly toll': 832052, 'deadly toll on': 229300, 'toll on grocery': 923865, '19 australia': 5268, 'australia cancellation': 103249, 'cancellation guarantee': 161020, 'guarantee and': 367697, 'other statement': 620970, 'statement australian': 796161, 'australian consumer': 103469, 'law obligation': 482347, 'obligation during': 578453, 'covid 19 australia': 212665, '19 australia cancellation': 5269, 'australia cancellation guarantee': 103250, 'cancellation guarantee and': 161021, 'guarantee and other': 367698, 'and other statement': 68414, 'other statement australian': 620971, 'statement australian consumer': 796162, 'australian consumer law': 103470, 'consumer law obligation': 198003, 'law obligation during': 482348, 'obligation during covid': 578454, 'may drive': 521131, 'drive world': 259264, 'world inflation': 1009672, 'inflation analyst': 437138, 'analyst compilation': 57118, 'due to lockdown': 261851, 'to lockdown may': 909400, 'lockdown may drive': 499642, 'may drive world': 521135, 'drive world inflation': 259266, 'world inflation analyst': 1009673, 'inflation analyst compilation': 437139, 'find bog': 306837, 'for the 3rd': 326288, 'the 3rd day': 848110, '3rd day in': 18423, 'row and still': 726569, 'and still can': 72369, 'still can find': 800334, 'can find bog': 158315, 'find bog roll': 306838, 'sneezed': 776283, 'son sneezed': 785440, 'sneezed at': 776286, 'people looked': 648702, 'were terrorist': 980229, 'my son sneezed': 550167, 'son sneezed at': 785441, 'sneezed at the': 776287, 'morning and people': 541162, 'and people looked': 68872, 'people looked at': 648703, 'at like we': 99590, 'we were terrorist': 973814, 'multiplied': 545818, 'that who': 847521, 'get ppe': 347827, 'ppe is': 667983, 'being decided': 125021, 'decided by': 230861, 'by auction': 151907, 'auction not': 102859, 'need price': 555465, 'are multiplied': 88169, 'multiplied and': 545819, 'local govts': 498038, 'govts are': 361343, 'are wasting': 91540, 'wasting tremendous': 968330, 'tremendous time': 931235, 'effort well': 269667, 'process trumpliesamericansdie': 679978, 'daily reminder that': 224777, 'reminder that who': 710596, 'that who get': 847522, 'who get ppe': 988775, 'get ppe is': 347829, 'ppe is being': 667984, 'is being decided': 446074, 'being decided by': 125022, 'decided by auction': 230862, 'by auction not': 151908, 'auction not need': 102860, 'not need price': 570670, 'need price are': 555466, 'price are multiplied': 672701, 'are multiplied and': 88170, 'multiplied and local': 545820, 'and local govts': 66295, 'local govts are': 498039, 'govts are wasting': 361344, 'are wasting tremendous': 91542, 'wasting tremendous time': 968331, 'tremendous time and': 931236, 'time and effort': 896269, 'and effort well': 61970, 'effort well on': 269668, 'well on the': 978437, 'on the process': 604306, 'the process trumpliesamericansdie': 864553, 'deem': 231800, 'in charlotte': 421346, 'charlotte continue': 173766, 'to voluntarily': 918227, 'voluntarily shut': 960194, 'concern this': 193124, 'is tough': 453315, 'tough decision': 926808, 'decision but': 231009, 'one many': 606641, 'store deem': 807282, 'deem necessary': 231807, 'necessary remember': 554061, 'possible online': 665729, 'option if': 614053, 'support business': 826394, 'store in charlotte': 808284, 'in charlotte continue': 421347, 'charlotte continue to': 173767, 'continue to voluntarily': 201278, 'to voluntarily shut': 918228, 'voluntarily shut their': 960195, 'to concern this': 903173, 'concern this is': 193125, 'this is tough': 888434, 'is tough decision': 453316, 'tough decision but': 926809, 'decision but one': 231012, 'but one many': 146671, 'one many store': 606643, 'many store deem': 514735, 'store deem necessary': 807283, 'deem necessary remember': 231808, 'necessary remember when': 554062, 'remember when possible': 710415, 'when possible online': 983894, 'possible online shopping': 665730, 'shopping is an': 763033, 'is an option': 445688, 'an option if': 56685, 'option if you': 614054, 'to support business': 915909, 'veneer': 954416, 'craven': 215174, 'diseased': 245284, 'knew the': 476078, 'apocalypse begin': 81512, 'where ppl': 985125, 'ppl fighting': 668228, 'last roll': 480474, 'the thin': 869445, 'thin veneer': 884072, 'veneer of': 954417, 'of civilization': 581439, 'civilization ripped': 179598, 'ripped away': 722701, 'away by': 105802, 'by craven': 152253, 'craven fearful': 215175, 'fearful greedy': 301457, 'greedy shopper': 363606, 'shopper yet': 761846, 'hand wipe': 375994, 'for cleansing': 320117, 'cleansing yr': 181191, 'yr diseased': 1027014, 'diseased greedy': 245287, 'greedy soul': 363610, 'soul poem': 786232, 'poem poet': 662358, 'who knew the': 989172, 'knew the apocalypse': 476079, 'the apocalypse begin': 848804, 'apocalypse begin in': 81513, 'begin in the': 123531, 'store where ppl': 811261, 'where ppl fighting': 985126, 'ppl fighting over': 668229, 'fighting over the': 305110, 'the last roll': 859037, 'last roll of': 480477, 'paper the thin': 640882, 'the thin veneer': 869446, 'thin veneer of': 884073, 'veneer of civilization': 954418, 'of civilization ripped': 581440, 'civilization ripped away': 179599, 'ripped away by': 722702, 'away by craven': 105803, 'by craven fearful': 152254, 'craven fearful greedy': 215176, 'fearful greedy shopper': 301458, 'greedy shopper yet': 363607, 'shopper yet there': 761847, 'are no hand': 88261, 'no hand wipe': 564400, 'hand wipe for': 375995, 'wipe for cleansing': 996262, 'for cleansing yr': 320118, 'cleansing yr diseased': 181192, 'yr diseased greedy': 1027015, 'diseased greedy soul': 245288, 'greedy soul poem': 363611, 'soul poem poet': 786233, 'dormer': 255902, 'quarenteen': 693166, 'ebook': 266559, 'stayhomeandread': 798245, 'dormer during': 255903, 'the quarenteen': 864990, 'quarenteen for': 693167, 'for ve': 327525, 'my ebook': 548057, 'ebook price': 266560, 'cent lowest': 169088, 'lowest can': 506150, 'amazon so': 51122, 'some fantasy': 782815, 'fantasy novel': 298629, 'novel to': 573821, 'you company': 1017995, 'company ve': 191273, 'covered stayhomeandread': 212438, 'dormer during the': 255904, 'during the quarenteen': 263179, 'the quarenteen for': 864991, 'quarenteen for ve': 693168, 'for ve lowered': 327526, 'lowered all of': 506064, 'of my ebook': 586760, 'my ebook price': 548058, 'ebook price to': 266562, 'price to 99': 676961, '99 cent lowest': 23795, 'cent lowest can': 169089, 'lowest can do': 506151, 'can do on': 158112, 'do on amazon': 249923, 'on amazon so': 599289, 'amazon so if': 51123, 'need some fantasy': 555589, 'some fantasy novel': 782816, 'fantasy novel to': 298630, 'novel to keep': 573822, 'keep you company': 472234, 'you company ve': 1017996, 'company ve got': 191274, 'you covered stayhomeandread': 1018119, 'dust settle': 263455, 'settle people': 753687, 'hoarding prize': 399482, 'prize for': 679076, 'reason behaved': 702874, 'behaved if': 123807, 'law didn': 482255, 'exist and': 290224, 'this damn': 887152, 'damn saying': 225419, 'saying people': 739658, 'fever should': 303682, 'be dragged': 114598, 'and isolated': 65456, 'isolated how': 455005, 'the trial': 869976, 'trial will': 931664, 'will play': 994418, 'play out': 659199, 'the dust settle': 853792, 'dust settle people': 263458, 'settle people hoarding': 753688, 'people hoarding prize': 648276, 'hoarding prize for': 399483, 'prize for no': 679077, 'no reason behaved': 565283, 'reason behaved if': 702875, 'behaved if the': 123808, 'if the law': 414991, 'the law didn': 859182, 'law didn exist': 482256, 'didn exist and': 241052, 'exist and this': 290225, 'and this damn': 73989, 'this damn saying': 887154, 'damn saying people': 225420, 'saying people with': 739660, 'people with fever': 650451, 'with fever should': 998416, 'fever should be': 303683, 'should be dragged': 765610, 'be dragged out': 114600, 'home and isolated': 400654, 'and isolated how': 65458, 'isolated how the': 455006, 'how the trial': 408887, 'the trial will': 869977, 'trial will play': 931665, 'will play out': 994420, 'olden': 598557, 'breadfail': 138656, 'ok since': 597876, 'since there': 770922, 'bread in': 138494, 'the olden': 862148, 'olden day': 598558, 'day tried': 228618, 'make bread': 509747, 'bread fail': 138461, 'fail bread': 296087, 'bread breadfail': 138434, 'breadfail nofood': 138657, 'nofood stophoarding': 566178, 'ok since there': 597878, 'since there is': 770923, 'is no bread': 449914, 'no bread in': 563730, 'bread in the': 138499, 'shop and it': 759851, 'and it now': 65563, 'it now like': 459953, 'now like the': 575209, 'like the olden': 491386, 'the olden day': 862149, 'olden day tried': 598559, 'day tried to': 228620, 'to make bread': 909630, 'make bread fail': 509749, 'bread fail bread': 138462, 'fail bread breadfail': 296088, 'bread breadfail nofood': 138435, 'breadfail nofood stophoarding': 138658, 'nofood stophoarding stopstockpiling': 566180, 'stophoarding stopstockpiling stoppanicbuying': 805496, 'will speed': 994910, 'up shift': 945973, 'pandemic will speed': 637015, 'will speed up': 994911, 'speed up shift': 788476, 'up shift to': 945974, 'shift to ecommerce': 758433, 'selfservatism': 748590, 'selfservatism ha': 748591, 'ha gripped': 370770, 'gripped part': 364055, 'country far': 210641, 'far worse': 298980, 'with selfish': 1000626, 'people hoovering': 648290, 'hoovering stuff': 403390, 'shelf faster': 757072, 'truck can': 932743, 'bring fresh': 139975, 'essential key': 281263, 'worker going': 1007045, 'keep themselves': 472118, 'themselves going': 876818, 'selfservatism ha gripped': 748592, 'ha gripped part': 370771, 'gripped part of': 364056, 'the country far': 852076, 'country far worse': 210642, 'far worse than': 298983, '19 with selfish': 12142, 'with selfish people': 1000629, 'selfish people hoovering': 748212, 'people hoovering stuff': 648291, 'hoovering stuff up': 403391, 'stuff up from': 815236, 'supermarket shelf faster': 822468, 'shelf faster than': 757073, 'than the delivery': 841229, 'the delivery truck': 853077, 'delivery truck can': 234693, 'truck can bring': 932744, 'can bring fresh': 157796, 'bring fresh stock': 139976, 'fresh stock how': 333079, 'stock how are': 802250, 'how are essential': 407398, 'are essential key': 86252, 'essential key worker': 281264, 'key worker going': 473485, 'worker going to': 1007048, 'find food to': 306908, 'food to keep': 317266, 'to keep themselves': 908866, 'keep themselves going': 472120, 'holocaust': 400481, 'friday in': 333236, 'not china': 568748, 'driven this': 259366, 'pandemic global': 635496, 'global holocaust': 351978, 'holocaust we': 400484, 'all responsible': 44173, 'must speak': 546894, 'against amp': 37320, 'amp end': 53730, 'end be': 275790, 'change be': 171944, 'be vegan': 117962, 'vegan ara': 953843, 'is good friday': 448143, 'good friday in': 357102, 'friday in the': 333239, 'the usa not': 870548, 'usa not china': 948705, 'not china this': 568749, 'china this is': 176998, 'this is consumer': 888216, 'is consumer driven': 446791, 'consumer driven this': 197252, 'driven this is': 259367, 'this is global': 888267, 'is global pandemic': 448070, 'global pandemic global': 352090, 'pandemic global holocaust': 635497, 'global holocaust we': 351979, 'holocaust we are': 400485, 'are all responsible': 84341, 'all responsible for': 44174, 'responsible for and': 716027, 'for and must': 319330, 'and must speak': 67347, 'must speak up': 546895, 'speak up against': 787723, 'up against amp': 944241, 'against amp end': 37321, 'amp end be': 53731, 'end be the': 275791, 'be the change': 117604, 'the change be': 850669, 'change be vegan': 171945, 'be vegan ara': 117963, 'surveillance': 828788, 'making request': 511308, 'request on': 713180, 'on ask': 599483, 'ask consumer': 95505, 'agency for': 38008, 'gouging complaint': 359289, 'complaint ask': 191944, 'ask authority': 95490, 'authority if': 103746, 'if surveillance': 414905, 'surveillance technique': 828793, 'technique were': 836244, 'were used': 980319, 'track infected': 928204, 'person more': 652538, 'here info': 393201, 'info brad': 437433, 'brad schmidt': 137532, 'tip on making': 898854, 'on making request': 601971, 'making request on': 511309, 'request on ask': 713181, 'on ask consumer': 599484, 'ask consumer protection': 95506, 'protection agency for': 685299, 'agency for data': 38009, 'for data on': 320549, 'data on price': 226325, 'on price gouging': 602912, 'price gouging complaint': 674270, 'gouging complaint ask': 359290, 'complaint ask authority': 191945, 'ask authority if': 95491, 'authority if surveillance': 103747, 'if surveillance technique': 414906, 'surveillance technique were': 828795, 'technique were used': 836245, 'were used to': 980320, 'used to track': 950099, 'to track infected': 917678, 'track infected person': 928206, 'infected person more': 436620, 'person more here': 652539, 'more here info': 539426, 'here info brad': 393202, 'info brad schmidt': 437434, 'innovate': 438833, 'constraint': 195763, 'supermarket strained': 823020, 'strained in': 812317, 'way by': 969511, 'to innovate': 908397, 'innovate to': 438836, 'meet changed': 527431, 'changed customer': 172461, 'customer demand': 222296, 'demand keep': 235779, 'and deal': 60976, 'other constraint': 619990, 'constraint during': 195766, 'supermarket strained in': 823021, 'strained in all': 812318, 'in all sort': 420182, 'sort of way': 786146, 'of way by': 592953, 'way by covid': 969513, '19 are finding': 5198, 'way to innovate': 970041, 'to innovate to': 908398, 'innovate to meet': 438838, 'to meet changed': 910015, 'meet changed customer': 527432, 'changed customer demand': 172462, 'customer demand keep': 222298, 'demand keep employee': 235780, 'keep employee safe': 471467, 'employee safe and': 274167, 'safe and deal': 729441, 'and deal with': 60978, 'deal with other': 229563, 'with other constraint': 999949, 'other constraint during': 619991, 'constraint during the': 195767, 'upheld': 947566, 'be subjected': 117426, 'right need': 722002, 'be upheld': 117899, 'upheld if': 947567, 'the taxpayer': 869183, 'taxpayer are': 835193, 'be bailing': 113802, 'bailing them': 108618, 'crisis hope': 217494, 'agree bailout': 38594, 'bailout pandemic': 108650, 'pandemic maga2020': 635920, 'maga2020 http': 508304, 'not be subjected': 568462, 'be subjected to': 117427, 'subjected to this': 815763, 'to this in': 917432, 'the consumer right': 851589, 'consumer right need': 198822, 'right need to': 722003, 'to be upheld': 901614, 'be upheld if': 117900, 'upheld if we': 947568, 'if we the': 415318, 'we the taxpayer': 973523, 'the taxpayer are': 869184, 'taxpayer are going': 835195, 'to be bailing': 901124, 'be bailing them': 113803, 'bailing them out': 108619, 'them out during': 876123, 'this crisis hope': 887051, 'crisis hope you': 217497, 'hope you agree': 403787, 'you agree bailout': 1016850, 'agree bailout pandemic': 38595, 'bailout pandemic maga2020': 108651, 'pandemic maga2020 http': 635921, 'andre': 76162, 'voiced': 960012, 'katie price': 471053, 'price son': 676560, 'son junior': 785401, 'junior 14': 468021, '14 showing': 3526, 'showing coronavirus': 767432, 'symptom after': 830802, 'after peter': 36039, 'peter andre': 653515, 'andre voiced': 76165, 'voiced covid': 960013, 'katie price son': 471054, 'price son junior': 676561, 'son junior 14': 785402, 'junior 14 showing': 468022, '14 showing coronavirus': 3527, 'showing coronavirus symptom': 767433, 'coronavirus symptom after': 206863, 'symptom after peter': 830804, 'after peter andre': 36040, 'peter andre voiced': 653517, 'andre voiced covid': 76166, 'voiced covid 19': 960014, 'very own': 955402, 'own weighs': 632304, '19 mean': 8598, 'marketing via': 517748, 'our very own': 625264, 'very own weighs': 955407, 'own weighs in': 632305, 'in on what': 426131, 'on what covid': 605219, 'covid 19 mean': 213417, '19 mean for': 8599, 'mean for consumer': 524434, 'for consumer marketing': 320272, 'consumer marketing via': 198107, 'marketing via news': 517749, 'assaulting': 96332, 'angry tesco': 76495, 'tesco shopper': 838805, 'shopper wa': 761796, 'arrested after': 93802, 'allegedly assaulting': 45672, 'assaulting store': 96335, 'worker forcing': 1006982, 'preventing other': 671818, 'from doing': 335179, 'their lockdown': 873876, 'an angry tesco': 55309, 'angry tesco shopper': 76496, 'tesco shopper wa': 838806, 'shopper wa arrested': 761797, 'wa arrested after': 961581, 'arrested after allegedly': 93803, 'after allegedly assaulting': 35341, 'allegedly assaulting store': 45673, 'assaulting store worker': 96336, 'store worker forcing': 811507, 'worker forcing the': 1006983, 'forcing the supermarket': 328742, 'supermarket to close': 823361, 'close and preventing': 182537, 'and preventing other': 69423, 'preventing other customer': 671819, 'other customer from': 620060, 'customer from doing': 222399, 'from doing their': 335182, 'doing their lockdown': 252738, 'their lockdown shopping': 873877, 'margo': 515667, 'barbara': 110794, 'triplebottomline': 932275, 'finally real': 306078, 'real chance': 701062, 'good life': 357325, 'from margo': 336354, 'margo to': 515668, 'to barbara': 901042, 'barbara stayhomesavelives': 110797, 'stayhomesavelives consumer': 798361, 'consumer triplebottomline': 199394, 'finally real chance': 306079, 'real chance to': 701063, 'chance to live': 171808, 'to live the': 909350, 'live the good': 496048, 'the good life': 856441, 'good life making': 357326, 'life making the': 488864, 'making the move': 511421, 'the move from': 861085, 'move from margo': 543654, 'from margo to': 336355, 'margo to barbara': 515669, 'to barbara stayhomesavelives': 901043, 'barbara stayhomesavelives consumer': 110798, 'stayhomesavelives consumer triplebottomline': 798362, 'say everyone': 738617, 'now shopping': 575809, 'it another': 456535, 'to prove': 912365, 'through data': 894410, 'here blog': 392824, 'post that': 666344, 'that outline': 845611, 'outline shopper': 629094, 'behavior trend': 124276, 'trend since': 931447, '19 forced': 7089, 'shop differently': 760097, 'it one thing': 460077, 'one thing to': 607237, 'thing to say': 884900, 'to say everyone': 913818, 'say everyone is': 738618, 'everyone is now': 287090, 'is now shopping': 450335, 'now shopping online': 575811, 'shopping online it': 763450, 'online it another': 608443, 'it another to': 456538, 'another to prove': 77909, 'to prove it': 912367, 'prove it through': 686110, 'it through data': 461676, 'through data here': 894411, 'data here blog': 226267, 'here blog post': 392825, 'blog post that': 133000, 'post that outline': 666347, 'that outline shopper': 845612, 'outline shopper behavior': 629095, 'shopper behavior trend': 761433, 'behavior trend since': 124277, 'trend since covid': 931448, 'covid 19 forced': 213117, '19 forced to': 7090, 'forced to shop': 328655, 'to shop differently': 914454, 'iam': 412533, 'bachelor': 106808, 'work regarding': 1005652, 'regarding controlling': 707194, 'controlling of': 202277, '19 following': 7036, 'the instruction': 858328, 'instruction responsible': 440569, 'citizen iam': 178909, 'iam bachelor': 412534, 'bachelor for': 106809, 'day iam': 227775, 'iam running': 412536, 'stock sir': 802857, 'and really appreciate': 70015, 'appreciate your work': 82807, 'your work regarding': 1026377, 'work regarding controlling': 1005653, 'regarding controlling of': 707195, 'controlling of covid': 202278, 'covid 19 following': 213109, '19 following the': 7037, 'following the instruction': 312889, 'the instruction responsible': 858330, 'instruction responsible citizen': 440570, 'responsible citizen iam': 716014, 'citizen iam bachelor': 178910, 'iam bachelor for': 412535, 'bachelor for the': 106810, 'food for 21': 314514, '21 day iam': 14989, 'day iam running': 227776, 'iam running out': 412537, 'the stock sir': 867925, 'stock sir please': 802858, 'djt': 248840, 'new day': 558600, 'dying who': 263885, 'never died': 557952, 'died before': 241519, 'before djt': 122743, 'djt pandemic': 248843, 'stayhome covi': 797978, 'd19 toiletpaper': 224190, 'it new day': 459789, 'new day people': 558601, 'day people are': 228198, 'are dying who': 86059, 'dying who have': 263886, 'who have never': 988939, 'have never died': 381574, 'never died before': 557953, 'died before djt': 241520, 'before djt pandemic': 122744, 'djt pandemic stayhome': 248844, 'pandemic stayhome covi': 636541, 'stayhome covi d19': 797979, 'covi d19 toiletpaper': 212543, 'trump crude': 933501, 'crude problem': 219607, 'problem opec': 679642, 'opec diplomacy': 611876, 'diplomacy can': 243216, 'save america': 737469, 'america oil': 51632, 'oil job': 596919, 'job via': 466265, 'trump crude problem': 933502, 'crude problem opec': 219608, 'problem opec diplomacy': 679643, 'opec diplomacy can': 611877, 'diplomacy can save': 243217, 'can save america': 159502, 'save america oil': 737470, 'america oil job': 51633, 'oil job via': 596920, 'unfill': 941489, 'my county': 547820, 'county food': 211381, 'their volunteer': 875135, 'volunteer number': 960300, 'number due': 576871, 'already warned': 47752, 'warned they': 967039, 'getting reduced': 349227, 'delivery fewer': 233994, 'fewer near': 304223, 'near out': 553567, 'date donation': 226619, 'from distributor': 335164, 'distributor some': 248318, 'some order': 783468, 'order unfill': 618731, 'my county food': 547823, 'county food bank': 211382, 'bank have reduced': 109896, 'reduced their volunteer': 706192, 'their volunteer number': 875136, 'volunteer number due': 960301, 'number due to': 576872, '19 they do': 11305, 'they do need': 881968, 'do need food': 249638, 'need food were': 554815, 'food were already': 317550, 'were already warned': 979313, 'already warned they': 47753, 'warned they were': 967040, 'they were going': 883774, 'to be getting': 901274, 'be getting reduced': 115011, 'getting reduced delivery': 349228, 'reduced delivery fewer': 706052, 'delivery fewer near': 233995, 'fewer near out': 304224, 'near out of': 553568, 'of date donation': 582365, 'date donation from': 226620, 'donation from distributor': 254612, 'from distributor some': 335165, 'distributor some order': 248319, 'some order unfill': 783469, 'italy 48': 462754, 'old supermarket': 598487, 'cashier dy': 166515, 'italy 48 year': 462755, 'year old supermarket': 1014869, 'old supermarket cashier': 598488, 'supermarket cashier dy': 819556, 'cashier dy in': 166516, 'dy in brescia': 263733, 'uk major': 938530, 'city learn': 179234, 'how wrong': 409264, 'wrong thing': 1013121, 'show bit': 766880, 'another once': 77733, 'virus impact': 958317, 'impact there': 418017, 'much community': 544800, 'spirit here': 789469, 'here stophoarding': 393607, 'do hope the': 249409, 'hope the uk': 403690, 'the uk major': 870247, 'uk major city': 938531, 'major city learn': 509266, 'city learn from': 179235, 'learn from how': 483965, 'from how wrong': 335963, 'how wrong thing': 409265, 'wrong thing have': 1013122, 'thing have gone': 884403, 'have gone in': 380795, 'gone in london': 356309, 'london and show': 501016, 'and show bit': 71607, 'show bit more': 766881, 'bit more respect': 131623, 'respect for one': 714994, 'for one another': 324077, 'one another once': 605922, 'another once the': 77734, 'once the virus': 605734, 'the virus impact': 870845, 'virus impact there': 958318, 'impact there not': 418018, 'there not seeing': 878862, 'seeing much community': 746374, 'much community spirit': 544801, 'community spirit here': 190103, 'spirit here stophoarding': 789470, 'here stophoarding panicbuyinguk': 393608, 'supermarket working': 824128, 'restock essential': 716870, 'essential after': 280757, 'coronavirus supermarket working': 206849, 'supermarket working tirelessly': 824129, 'tirelessly to restock': 899092, 'to restock essential': 913401, 'restock essential after': 716871, 'essential after panic': 280758, 'after panic buyer': 36015, 'imagine living': 416751, 'an area': 55387, 'so dangerous': 776839, 'dangerous that': 225785, 'life into': 488796, 'hand just': 375062, 'outside now': 629495, 'now imagine': 574981, 'imagine living in': 416752, 'living in an': 496364, 'in an area': 420282, 'an area that': 55391, 'area that is': 92219, 'is so dangerous': 452002, 'so dangerous that': 776841, 'dangerous that you': 225786, 'you take your': 1021523, 'take your life': 832820, 'your life into': 1024636, 'life into your': 488797, 'into your own': 443326, 'own hand just': 632046, 'hand just by': 375063, 'just by going': 468398, 'by going outside': 152701, 'going outside now': 355408, 'outside now imagine': 629496, 'now imagine that': 574983, 'imagine that you': 416792, 'mosaic': 541987, 'moz': 544228, 'mosaic brand': 541988, 'brand moz': 137911, 'moz which': 544229, 'which owns': 986214, 'owns retail': 632635, 'brand noni': 137938, 'noni river': 566648, 'river katies': 724185, 'katies will': 471060, 'impact revenue': 417948, 'revenue store': 720475, 'start from': 794299, 'thursday but': 895358, 'but online': 146676, 'online operation': 608639, 'remain available': 709701, 'available ausbiz': 104267, 'ausbiz retail': 103041, 'mosaic brand moz': 541989, 'brand moz which': 137912, 'moz which owns': 544230, 'which owns retail': 986215, 'owns retail brand': 632636, 'retail brand noni': 717894, 'brand noni river': 137939, 'noni river katies': 566649, 'river katies will': 724186, 'katies will temporarily': 471061, 'will temporarily suspend': 995108, 'suspend trading at': 829595, 'trading at it': 928840, 'it store the': 461301, 'store the impact': 810604, 'the impact revenue': 857946, 'impact revenue store': 417949, 'revenue store traffic': 720476, 'store traffic the': 810937, 'traffic the store': 929148, 'the store closure': 867997, 'store closure will': 807115, 'closure will start': 184071, 'will start from': 994941, 'start from thursday': 794305, 'from thursday but': 338044, 'thursday but online': 895359, 'but online operation': 146678, 'online operation remain': 608641, 'operation remain available': 613245, 'remain available ausbiz': 709702, 'available ausbiz retail': 104268, 'kitco': 475794, 'usdollar': 948994, 'mar 12': 514966, '2020 kitco': 14416, 'kitco to': 475797, 'to pop': 911883, 'pop bubble': 664411, 'bubble greater': 141598, 'than 2008': 840200, '2008 gold': 13669, 'go but': 353385, 'but up': 147671, 'up commodity': 944621, 'commodity metal': 189225, 'metal mining': 529641, 'mining usdollar': 533301, 'mar 12 2020': 514967, '12 2020 kitco': 2787, '2020 kitco to': 14417, 'kitco to pop': 475798, 'to pop bubble': 911884, 'pop bubble greater': 664412, 'bubble greater than': 141599, 'greater than 2008': 363244, 'than 2008 gold': 840201, '2008 gold price': 13670, 'gold price have': 355957, 'price have nowhere': 674443, 'to go but': 906779, 'go but up': 353389, 'but up commodity': 147672, 'up commodity metal': 944622, 'commodity metal mining': 189226, 'metal mining usdollar': 529642, 'stop toilet': 805228, 'hoarding easy': 399270, 'easy normal': 265738, 'first pack': 308842, 'pack then': 633170, 'then ten': 877600, 'ten time': 837809, 'for subsequent': 325964, 'subsequent pack': 815929, 'pack repeat': 633145, 'repeat for': 711516, 'essential stoppanicbuying': 281588, 'to stop toilet': 915589, 'stop toilet paper': 805229, 'paper shortage and': 640764, 'shortage and hoarding': 764818, 'and hoarding easy': 64651, 'hoarding easy normal': 399271, 'easy normal price': 265739, 'for first pack': 321502, 'first pack then': 308844, 'pack then ten': 633171, 'then ten time': 877601, 'ten time for': 837810, 'time for subsequent': 896759, 'for subsequent pack': 325965, 'subsequent pack repeat': 815930, 'pack repeat for': 633146, 'repeat for essential': 711517, 'for essential stoppanicbuying': 321122, 'republic': 713005, 'up enough': 944793, 'food central': 313900, 'central african': 169356, 'african republic': 35218, 'stock up enough': 803078, 'up enough food': 944794, 'enough food central': 277388, 'food central african': 313901, 'central african republic': 169357, 'contrary': 201831, 'clearest': 181447, 'barometer': 111145, 'contrary to': 201834, 'the hype': 857786, 'hype promoting': 412269, 'promoting plant': 683852, 'based alternative': 111502, 'alternative panic': 49249, 'of meat': 586371, 'meat is': 525631, 'the clearest': 850999, 'clearest indication': 181448, 'of strong': 590309, 'strong consumer': 813996, 'consumer support': 199182, 'not barometer': 568335, 'barometer of': 111150, 'then don': 877130, 'contrary to the': 201837, 'to the hype': 916790, 'the hype promoting': 857789, 'hype promoting plant': 412270, 'promoting plant based': 683853, 'plant based alternative': 658619, 'based alternative panic': 111503, 'alternative panic buying': 49250, 'buying of meat': 150796, 'of meat is': 586374, 'meat is the': 525636, 'is the clearest': 452750, 'the clearest indication': 851000, 'clearest indication of': 181449, 'indication of strong': 435024, 'of strong consumer': 590311, 'strong consumer support': 813998, 'consumer support for': 199183, 'support for meat': 826515, 'for meat if': 323361, 'meat if that': 525613, 'if that not': 414941, 'that not barometer': 845384, 'not barometer of': 568336, 'barometer of what': 111152, 'of what people': 593059, 'what people think': 982018, 'people think of': 649834, 'think of our': 885454, 'our product then': 624484, 'product then don': 681713, 'then don know': 877132, 'consumer advisory': 196053, 'advisory the': 33782, 'consumer council': 196996, 'of fiji': 583508, 'fiji will': 305294, 'monitor business': 537279, 'for fair': 321369, 'service our': 752672, 'team conduct': 835611, 'conduct daily': 193640, 'daily market': 224690, 'market surveillance': 517151, 'surveillance to': 828796, 'sure trader': 827791, 'consumer advisory the': 196056, 'advisory the consumer': 33783, 'the consumer council': 851517, 'consumer council of': 196999, 'council of fiji': 210012, 'of fiji will': 583512, 'fiji will continue': 305295, 'to monitor business': 910230, 'monitor business around': 537280, 'the country for': 852082, 'country for fair': 210668, 'for fair price': 321370, 'fair price of': 296373, 'and service our': 71309, 'service our team': 752675, 'our team conduct': 625098, 'team conduct daily': 835612, 'conduct daily market': 193641, 'daily market surveillance': 224692, 'market surveillance to': 517152, 'surveillance to make': 828797, 'make sure trader': 510536, 'sure trader and': 827792, 'trader and business': 928647, 'business are not': 143378, 'peterborough': 653544, 'kawartha': 471130, 'essential the': 281659, 'the peterborough': 863610, 'peterborough area': 653545, 'area seem': 92183, 'be dwindling': 114620, 'dwindling in': 263690, 'supply but': 824862, 'but kawartha': 146208, 'kawartha food': 471131, 'food share': 316444, 'share say': 755207, 'during time when': 263350, 'time when thousand': 898307, 'when thousand are': 984318, 'thousand are stocking': 893380, 'and essential the': 62265, 'essential the shelf': 281663, 'shelf at food': 756845, 'in the peterborough': 429448, 'the peterborough area': 863611, 'peterborough area seem': 653547, 'area seem to': 92184, 'to be dwindling': 901226, 'be dwindling in': 114622, 'dwindling in supply': 263691, 'in supply but': 428727, 'supply but kawartha': 824865, 'but kawartha food': 146209, 'kawartha food share': 471132, 'food share say': 316446, 'share say there': 755208, 'here just': 393280, 'just shopping': 469783, 'house the': 406603, 'store isn': 808554, 'isn hang': 454534, 'out place': 627046, 'we ain': 970304, 'ain got': 39619, 'need stayhome': 555637, 'stayhome stoppanicbuying': 798193, 'out here just': 626284, 'here just shopping': 393281, 'just shopping to': 469787, 'shopping to shop': 764191, 'shop and get': 759847, 'the house the': 857639, 'house the grocery': 406604, 'grocery store isn': 365493, 'store isn hang': 808560, 'isn hang out': 454535, 'hang out place': 376938, 'out place we': 627047, 'place we ain': 657811, 'we ain got': 970306, 'ain got what': 39623, 'you need stayhome': 1020041, 'need stayhome stoppanicbuying': 555638, 'crushline': 219821, 'athletecrush': 101777, 'dropped all': 260531, 'our crushline': 622631, 'crushline price': 219822, 'by with': 154756, 'all profit': 44071, 'profit going': 682745, 'corona help': 203987, 'difference go': 241843, 'facebook store': 294996, 'click this': 181950, 'our web': 625320, 'web store': 974963, 'purchase athletecrush': 689372, 'we have dropped': 971802, 'have dropped all': 380375, 'dropped all our': 260532, 'all our crushline': 43801, 'our crushline price': 622632, 'crushline price by': 219823, 'price by with': 673046, 'by with all': 154757, 'with all profit': 997159, 'all profit going': 44072, 'profit going towards': 682747, 'going towards the': 355769, 'towards the fight': 927260, 'fight against corona': 304613, 'against corona help': 37378, 'corona help make': 203988, 'help make difference': 390034, 'make difference go': 509833, 'difference go to': 241844, 'go to our': 354335, 'to our facebook': 911179, 'our facebook store': 622982, 'facebook store or': 294997, 'store or click': 809318, 'or click this': 614741, 'click this link': 181951, 'get to our': 348483, 'to our web': 911252, 'our web store': 625321, 'web store to': 974964, 'to purchase athletecrush': 912520, 'gov northam': 359643, 'northam need': 567695, 'great literally': 362807, 'literally in': 495024, 'million state': 532355, 'are competing': 85457, 'competing for': 191630, 'some private': 783640, 'private vendor': 678997, 'vendor have': 954374, 'jumped why': 467956, 'need nationally': 555287, 'nationally led': 552693, 'led response': 485255, 'response not': 715758, 'to determine': 904234, 'determine availability': 239428, 'availability and': 104128, 'and pricing': 69493, 'gov northam need': 359644, 'northam need for': 567696, 'need for ppe': 554864, 'for ppe is': 324668, 'ppe is so': 667987, 'is so so': 452035, 'so so great': 778233, 'so great literally': 777206, 'great literally in': 362808, 'literally in the': 495025, 'in the million': 429364, 'the million state': 860627, 'million state are': 532356, 'state are competing': 795383, 'are competing for': 85459, 'competing for supply': 191631, 'for supply so': 326054, 'supply so price': 825867, 'so price from': 778073, 'price from some': 674119, 'from some private': 337344, 'some private vendor': 783641, 'private vendor have': 678998, 'vendor have jumped': 954376, 'have jumped why': 381195, 'jumped why we': 467957, 'we need nationally': 972521, 'need nationally led': 555288, 'nationally led response': 552694, 'led response not': 485256, 'response not the': 715759, 'not the free': 572000, 'free market to': 331957, 'market to determine': 517234, 'to determine availability': 904235, 'determine availability and': 239429, 'availability and pricing': 104130, 'dems': 236887, 'admonishes': 32637, 'wh cut': 980904, 'cut cdc': 223267, 'cdc pandemic': 168598, 'pandemic fund': 635482, 'fund in': 341432, '2018 proceeds': 13892, 'and created': 60706, 'by dems': 152332, 'dems admonishes': 236888, 'admonishes people': 32638, 'who seem': 989575, 'hoarding or': 399461, 'or stocking': 617234, 'you tried': 1021926, 'tried ordering': 931810, 'ordering grocery': 618976, 'online lately': 608466, 'lately moronic': 480975, 'so the wh': 778444, 'the wh cut': 871413, 'wh cut cdc': 980905, 'cut cdc pandemic': 223268, 'cdc pandemic fund': 168599, 'pandemic fund in': 635483, 'fund in 2018': 341433, 'in 2018 proceeds': 419789, '2018 proceeds to': 13893, 'proceeds to say': 679863, 'say the covid': 739273, '19 is hoax': 7989, 'is hoax and': 448513, 'hoax and created': 399694, 'and created by': 60707, 'created by dems': 215790, 'by dems admonishes': 152333, 'dems admonishes people': 236889, 'admonishes people who': 32639, 'people who seem': 650338, 'who seem to': 989576, 'be hoarding or': 115277, 'hoarding or stocking': 399464, 'or stocking up': 617235, 'stocking up now': 803622, 'up now we': 945486, 'now we re': 576351, 're being told': 698364, 'being told not': 125966, 'shopping or to': 763556, 'or to pharmacy': 617472, 'to pharmacy have': 911693, 'pharmacy have you': 654341, 'have you tried': 383698, 'you tried ordering': 1021928, 'tried ordering grocery': 931811, 'ordering grocery online': 618977, 'grocery online lately': 364782, 'online lately moronic': 608468, 'gouvernance': 359521, 'squad': 791443, 'illicit': 416271, 'uncontrolled': 939882, 'bamako': 109140, 'urgent covid19': 948336, 'covid19 gouvernance': 214300, 'gouvernance the': 359522, 'is setting': 451810, 'an anti': 55328, 'anti fraud': 78304, 'fraud squad': 331349, 'squad against': 791444, 'the illicit': 857876, 'illicit and': 416272, 'and uncontrolled': 74614, 'uncontrolled rise': 939885, 'particular context': 642603, 'context imposed': 200906, 'report increase': 712036, 'to bamako': 901014, 'bamako beyond': 109141, 'official price': 595883, 'urgent covid19 gouvernance': 948337, 'covid19 gouvernance the': 214301, 'gouvernance the government': 359523, 'government is setting': 360275, 'is setting up': 451811, 'up an anti': 944294, 'an anti fraud': 55329, 'anti fraud squad': 78305, 'fraud squad against': 331350, 'squad against the': 791445, 'against the illicit': 37662, 'the illicit and': 857877, 'illicit and uncontrolled': 416274, 'and uncontrolled rise': 74615, 'uncontrolled rise in': 939886, 'in price in': 426971, 'this particular context': 889485, 'particular context imposed': 642604, 'context imposed by': 200907, 'imposed by the': 419281, 'by the number': 154392, 'number to call': 577069, 'to call to': 902390, 'call to report': 156183, 'to report increase': 913274, 'report increase in': 712037, 'price to bamako': 676967, 'to bamako beyond': 901015, 'bamako beyond the': 109142, 'beyond the official': 129246, 'the official price': 862097, 'by student': 154142, 'student for': 814686, 'their lack': 873780, 'of support': 590509, 'student during': 814676, 'outbreak stop': 628662, 'stop pretending': 804930, 'pretending you': 671342, 'your resident': 1025591, 'resident when': 714400, 'you force': 1018689, 'force them': 328514, 'pay already': 644717, 'already exorbitant': 47324, 'for room': 325255, 'room they': 725976, 'absolutely disgusted by': 27337, 'disgusted by student': 245364, 'by student for': 154143, 'student for their': 814689, 'for their lack': 326844, 'their lack of': 873781, 'lack of support': 478661, 'of support and': 590510, 'support and compassion': 826355, 'compassion for student': 191489, 'for student during': 325949, 'student during the': 814677, '19 outbreak stop': 9193, 'outbreak stop pretending': 628663, 'stop pretending you': 804931, 'pretending you care': 671343, 'about your resident': 27010, 'your resident when': 1025592, 'resident when you': 714401, 'when you force': 984561, 'you force them': 1018690, 'force them to': 328517, 'them to pay': 876496, 'to pay already': 911510, 'pay already exorbitant': 644718, 'already exorbitant price': 47325, 'exorbitant price for': 290409, 'price for room': 674040, 'for room they': 325258, 'room they will': 725977, 'nigeria foreign': 562742, 'foreign exchange': 328973, 'exchange reserve': 289473, 'reserve have': 714068, 'fallen by': 297139, 'by 59': 151686, '59 billion': 20564, 'billion since': 130913, 'near collapse': 553474, 'bank now': 110041, 'ha 35': 369410, '35 94': 17872, '94 billion': 23543, 'in reserve': 427406, 'reserve left': 714081, 'nigeria foreign exchange': 562743, 'foreign exchange reserve': 328974, 'exchange reserve have': 289474, 'reserve have fallen': 714069, 'have fallen by': 380566, 'fallen by 59': 297141, 'by 59 billion': 151687, '59 billion since': 20566, 'billion since the': 130914, 'since the beginning': 770866, 'beginning of the': 123652, 'to the near': 916893, 'the near collapse': 861348, 'near collapse in': 553475, 'price the central': 676824, 'the central bank': 850601, 'central bank now': 169376, 'bank now ha': 110042, 'now ha 35': 574840, 'ha 35 94': 369411, '35 94 billion': 17873, '94 billion in': 23544, 'billion in reserve': 130852, 'in reserve left': 427407, 'concentration': 192839, 'gaza': 344742, 'concentration camp': 192842, 'camp gaza': 157178, 'gaza with': 344759, 'drink no': 258862, 'and israeli': 65468, 'israeli produce': 455621, 'produce so': 680435, 'those nasty': 892237, 'nasty israeli': 552058, 'israeli have': 455615, 'miserably again': 533994, 'concentration camp gaza': 192843, 'camp gaza with': 157179, 'gaza with plenty': 344760, 'and drink no': 61732, 'drink no panic': 258863, 'buying and israeli': 149916, 'and israeli produce': 65470, 'israeli produce so': 455622, 'produce so much': 680436, 'much for not': 544922, 'for not one': 323931, 'case of those': 165930, 'of those nasty': 592104, 'those nasty israeli': 892238, 'nasty israeli have': 552059, 'israeli have failed': 455616, 'failed miserably again': 296150, 'show stock': 767155, 'time business': 896409, 'business didn': 143636, 'didn close': 241011, 'close just': 182697, 'they closed': 881767, 'keep people': 471783, 'people safe': 649332, 'safe concern': 729554, 'safety don': 730514, 'don disappear': 253462, 'disappear by': 244033, 'by reopening': 153763, 'reopening business': 711384, 'they disappear': 881941, 'disappear when': 244052, 'the data show': 852851, 'data show stock': 226412, 'show stock price': 767156, 'stock price went': 802757, 'went down at': 978985, 'down at the': 256538, 'same time business': 733349, 'time business closed': 896410, 'business closed but': 143539, 'closed but business': 183026, 'but business didn': 145324, 'business didn close': 143637, 'didn close just': 241013, 'close just because': 182698, 'because they closed': 119694, 'they closed to': 881769, 'closed to keep': 183397, 'to keep people': 908827, 'keep people safe': 471789, 'people safe concern': 649333, 'safe concern for': 729555, 'concern for safety': 192976, 'for safety don': 325303, 'safety don disappear': 730515, 'don disappear by': 253463, 'disappear by reopening': 244034, 'by reopening business': 153764, 'reopening business they': 711386, 'business they disappear': 144515, 'they disappear when': 881942, 'disappear when there': 244053, 'sanitizer video': 736010, 'video hit': 956777, 'hit 2k': 398103, '2k view': 16629, 'facebook thank': 294998, 'all god': 42950, 'bless more': 132586, 'are cooking': 85559, 'hand sanitizer video': 375644, 'sanitizer video hit': 736011, 'video hit 2k': 956778, 'hit 2k view': 398104, '2k view on': 16630, 'view on facebook': 957135, 'on facebook thank': 600716, 'facebook thank you': 294999, 'you all god': 1016881, 'all god bless': 42951, 'god bless more': 354656, 'bless more video': 132587, 'more video are': 540906, 'video are cooking': 956620, 'these ridiculous': 880607, 'item hand': 463312, 'mask etc': 518611, 'doing to stop': 252801, 'stop these ridiculous': 805177, 'these ridiculous price': 880608, 'ridiculous price increase': 721590, 'increase on these': 432957, 'on these essential': 604562, 'essential item hand': 281203, 'item hand sanitizers': 463313, 'hand sanitizers mask': 375708, 'sanitizers mask etc': 736344, 'unde': 939932, 'biggest scumbags': 130321, 'scumbags going': 742999, 'going denied': 355106, 'denied refund': 236963, 'refund twice': 706970, 'twice due': 936522, 'them picking': 876159, 'picking flooded': 655849, 'flooded ground': 310728, 'ground venue': 366553, 'venue and': 954706, 'get appropriate': 346595, 'appropriate insurance': 83037, 'insurance for': 440732, 'zero clue': 1027417, 'clue on': 184552, 'basic consumer': 111855, 'and genuinely': 63536, 'genuinely hope': 345892, 'hope their': 403691, 'their company': 872829, 'company go': 190697, 'go unde': 354407, 'are the biggest': 90802, 'the biggest scumbags': 849677, 'biggest scumbags going': 130322, 'scumbags going denied': 743000, 'going denied refund': 355107, 'denied refund twice': 236964, 'refund twice due': 706971, 'twice due to': 936523, 'due to them': 261994, 'to them picking': 917308, 'them picking flooded': 876160, 'picking flooded ground': 655850, 'flooded ground venue': 310729, 'ground venue and': 366554, 'venue and failing': 954707, 'failing to get': 296232, 'to get appropriate': 906413, 'get appropriate insurance': 346596, 'appropriate insurance for': 83038, 'insurance for covid': 440733, '19 have zero': 7457, 'have zero clue': 383725, 'zero clue on': 1027418, 'clue on basic': 184553, 'on basic consumer': 599578, 'basic consumer law': 111858, 'consumer law and': 197994, 'law and genuinely': 482206, 'and genuinely hope': 63538, 'genuinely hope their': 345893, 'hope their company': 403692, 'their company go': 872834, 'company go unde': 190698, 'apzweb': 83772, 'coronavirus oshawa': 206362, 'employee test': 274276, 'on apzweb': 599453, 'new post coronavirus': 559320, 'post coronavirus oshawa': 666068, 'coronavirus oshawa ont': 206363, 'store employee test': 807548, 'employee test positive': 274277, 'published on apzweb': 688674, 'store let': 808707, 'practice being': 668535, 'being little': 125390, 'more patient': 540000, 'another we': 77962, 'grocery store let': 365520, 'store let all': 808708, 'let all practice': 486565, 'all practice being': 44010, 'practice being little': 668536, 'being little more': 125391, 'little more patient': 495469, 'more patient and': 540001, 'patient and kind': 644134, 'and kind to': 65855, 'one another we': 605929, 'another we can': 77963, 'can get thru': 158465, 'the radio': 865097, 'radio saying': 695456, 'buying fridge': 150381, 'freezer because': 332591, 'idiot staysafe': 413592, 'someone on the': 784591, 'on the radio': 604317, 'the radio saying': 865100, 'radio saying people': 695457, 'saying people are': 739659, 'panic buying fridge': 637741, 'buying fridge freezer': 150382, 'fridge freezer because': 333398, 'freezer because they': 332592, 'because they have': 119705, 'they have nowhere': 882353, 'nowhere to stock': 576576, 'stock the panic': 802937, 'food idiot staysafe': 314883, 'ordeal': 617966, 'get temporary': 348177, 'temporary increase': 837646, 'in pay': 426556, 'pay during': 644837, 'this entire': 887392, 'entire ordeal': 278709, 'ordeal we': 617972, 'turn infect': 935683, 'infect someone': 436509, 'else with': 271993, 'store worker should': 811582, 'should get temporary': 766040, 'get temporary increase': 348178, 'temporary increase in': 837647, 'increase in pay': 432852, 'in pay during': 426557, 'pay during this': 644838, 'during this entire': 263281, 'this entire ordeal': 887393, 'entire ordeal we': 278710, 'ordeal we are': 617973, 'one that are': 607172, 'that are most': 842780, 'are most likely': 88138, 'most likely to': 542488, 'be infected and': 115477, 'infected and then': 436533, 'and then in': 73772, 'then in turn': 877261, 'in turn infect': 430337, 'turn infect someone': 935684, 'infect someone else': 436510, 'someone else with': 784458, 'else with covid': 271994, 'fight by': 304688, 'buy from': 148713, 'sell from': 748737, 'let fight by': 486713, 'fight by promoting': 304689, 'by promoting online': 153669, 'online shopping buy': 609059, 'shopping buy from': 762264, 'buy from home': 148715, 'from home or': 335891, 'home or sell': 401755, 'or sell from': 616999, 'sell from home': 748738, 'agree it': 38613, 'it fresh': 458134, 'fresh air': 332911, 'air sunshine': 39792, 'sunshine it': 818432, 'probably very': 679409, 'very unlikely': 955628, 'unlikely place': 942753, 'catch this': 167043, 'aren closing': 92360, 'store each': 807414, 'day will': 228767, 'will spread': 994921, 'more germ': 539337, 'germ than': 346156, 'than crowd': 840477, 'at th': 100849, 'agree it fresh': 38614, 'it fresh air': 458135, 'fresh air sunshine': 332919, 'air sunshine it': 39793, 'sunshine it is': 818433, 'it is probably': 459043, 'is probably very': 451052, 'probably very unlikely': 679410, 'very unlikely place': 955629, 'unlikely place to': 942754, 'to catch this': 902508, 'catch this we': 167045, 'this we aren': 891144, 'we aren closing': 970771, 'aren closing the': 92361, 'closing the store': 183780, 'the store all': 867976, 'grocery store each': 365353, 'store each day': 807415, 'each day will': 264055, 'day will spread': 228771, 'will spread more': 994924, 'spread more germ': 790637, 'more germ than': 539338, 'germ than crowd': 346157, 'than crowd at': 840478, 'crowd at th': 219130, 'just coming': 468498, 'coming on': 188153, 'staff how': 792537, 'you appreciate': 1017039, 'appreciate them': 82765, 'don empty': 253480, 'too nh': 924966, 'nh stopstockpiling': 562119, 'instead of just': 440282, 'of just coming': 585568, 'just coming on': 468499, 'coming on social': 188157, 'on social and': 603533, 'social and telling': 779434, 'and telling the': 73105, 'telling the nh': 837267, 'nh staff how': 562091, 'staff how much': 792538, 'much you appreciate': 545489, 'you appreciate them': 1017041, 'appreciate them how': 82766, 'them how about': 875864, 'about you don': 26972, 'you don empty': 1018310, 'don empty the': 253481, 'empty the supermarket': 275182, 'shelf so they': 757528, 'they can buy': 881616, 'buy food too': 148687, 'food too nh': 317333, 'too nh stopstockpiling': 924967, 'chain should': 171104, 'stop wasting': 805258, 'wasting money': 968319, 'weekly ad': 977464, 'it pointless': 460369, 'pointless to': 662778, 'to advertise': 900133, 'advertise item': 33154, 'item when': 463808, 'selfish hoarder': 748120, 'supermarket chain should': 819635, 'chain should just': 171106, 'should just stop': 766164, 'just stop wasting': 469914, 'stop wasting money': 805261, 'wasting money on': 968320, 'on the weekly': 604445, 'the weekly ad': 871343, 'weekly ad for': 977465, 'ad for the': 31106, 'few week because': 304136, 'week because it': 975986, 'because it pointless': 119200, 'it pointless to': 460370, 'pointless to advertise': 662779, 'to advertise item': 900134, 'advertise item when': 33155, 'item when the': 463809, 'when the item': 984166, 'the item are': 858602, 'item are going': 463092, 'be sold out': 117287, 'sold out to': 781751, 'the selfish hoarder': 866665, 'selfish hoarder and': 748121, 'hoarder and panic': 398978, 'and panic buyer': 68647, 'workstream': 1009238, 'hrtech': 409710, 'gigworkers': 350095, 'the kit': 858829, 'kit includes': 475576, 'includes face': 431744, 'thermometer thank': 879545, 'for looking': 323103, 'them workstream': 876664, 'workstream hr': 1009239, 'hr hrtech': 409629, 'hrtech technology': 409711, 'technology entrepreneur': 836287, 'entrepreneur instacart': 278935, 'instacart gigworkers': 439920, 'the kit includes': 858830, 'kit includes face': 475577, 'includes face mask': 431745, 'and thermometer thank': 73873, 'thermometer thank you': 879546, 'you for looking': 1018654, 'for looking out': 323105, 'out for them': 626166, 'for them workstream': 326932, 'them workstream hr': 876665, 'workstream hr hrtech': 1009240, 'hr hrtech technology': 409630, 'hrtech technology entrepreneur': 409712, 'technology entrepreneur instacart': 836289, 'entrepreneur instacart gigworkers': 278936, 'sage': 730893, 'this sage': 889940, 'sage advice': 730894, 'advice came': 33340, 'from doug': 335202, 'doug stephen': 256259, 'stephen the': 799743, 'week special': 976903, 'special episode': 787912, 'opportunity that': 613684, 'that creates': 843392, 'creates for': 215945, 'innovation and': 438853, 'and better': 58914, 'of fashion': 583439, 'fashion happen': 299812, 'this sage advice': 889941, 'sage advice came': 730895, 'advice came from': 33341, 'came from doug': 156997, 'from doug stephen': 335203, 'doug stephen the': 256260, 'stephen the on': 799744, 'the on this': 862177, 'on this week': 604645, 'this week special': 891267, 'week special episode': 976904, 'special episode of': 787914, 'the on how': 862169, 'the is shifting': 858528, 'is shifting consumer': 451849, 'shifting consumer behaviour': 758519, 'behaviour and the': 124367, 'and the opportunity': 73502, 'the opportunity that': 862403, 'opportunity that creates': 613685, 'that creates for': 843394, 'creates for innovation': 215946, 'for innovation and': 322591, 'innovation and better': 438854, 'and better way': 58920, 'better way of': 128597, 'of making the': 586128, 'making the business': 511409, 'business of fashion': 144120, 'of fashion happen': 583440, 'with boost': 997448, 'boost in': 134965, 'in shopping': 427904, 'grocery driven': 364472, 'retailer need': 719252, 'meet rising': 527563, 'deliver positive': 233192, 'positive customer': 665294, 'customer experience': 222351, 'store cx': 807257, 'with boost in': 997449, 'boost in shopping': 134967, 'in shopping for': 427909, 'shopping for home': 762684, 'for home essential': 322345, 'home essential and': 401161, 'essential and grocery': 280782, 'and grocery driven': 63982, 'grocery driven by': 364473, 'driven by retailer': 259286, 'by retailer need': 153801, 'retailer need to': 719253, 'need to double': 555909, 'double down in': 256007, 'down in their': 256871, 'effort to meet': 269632, 'to meet rising': 910047, 'meet rising demand': 527565, 'rising demand and': 723193, 'demand and deliver': 234956, 'and deliver positive': 61086, 'deliver positive customer': 233193, 'positive customer experience': 665295, 'customer experience online': 222354, 'experience online and': 291448, 'in store cx': 428399, 'people perfectly': 649100, 'perfectly healthy': 651391, 'and capable': 59530, 'shop moaning': 760463, 'moaning that': 534909, 'slot get': 774201, 'arse go': 94071, 'the slot': 867336, 'that actually': 842490, 'actually cannot': 30753, 'seeing people perfectly': 746410, 'people perfectly healthy': 649101, 'perfectly healthy and': 651392, 'healthy and capable': 387518, 'and capable of': 59531, 'capable of going': 162482, 'out to shop': 627681, 'to shop moaning': 914473, 'shop moaning that': 760464, 'moaning that they': 534910, 'delivery slot get': 234523, 'slot get off': 774202, 'get off your': 347687, 'off your arse': 594441, 'your arse go': 1022833, 'arse go to': 94072, 'shop and leave': 759853, 'leave the slot': 484977, 'the slot for': 867337, 'people that actually': 649749, 'that actually cannot': 842491, 'actually cannot get': 30754, 'seventy': 753784, 'moira': 535595, 'welikanna': 977983, 'fulham': 340458, 'seventy one': 753785, 'old moira': 598365, 'moira welikanna': 535596, 'welikanna wear': 977984, 'wear medical': 974417, 'she queue': 756280, 'for canned': 319919, 'at iceland': 99254, 'iceland supermarket': 412723, 'outbreak continues': 628130, 'in fulham': 423156, 'fulham london': 340459, '2020 reuters': 14574, 'reuters kevin': 720196, 'kevin coombs': 473204, 'seventy one year': 753786, 'one year old': 607528, 'year old moira': 1014848, 'old moira welikanna': 598366, 'moira welikanna wear': 535597, 'welikanna wear medical': 977985, 'wear medical glove': 974418, 'medical glove she': 526191, 'glove she queue': 352918, 'she queue for': 756281, 'queue for canned': 693924, 'for canned good': 319920, 'canned good at': 161532, 'good at iceland': 356793, 'at iceland supermarket': 99256, 'iceland supermarket the': 412725, 'supermarket the coronavirus': 823213, '19 outbreak continues': 9106, 'outbreak continues in': 628131, 'continues in fulham': 201403, 'in fulham london': 423157, 'fulham london britain': 340460, 'britain march 18': 140423, '18 2020 reuters': 4496, '2020 reuters kevin': 14576, 'reuters kevin coombs': 720197, 'bogof': 133992, 'curry': 221734, 'on freezer': 600989, 'freezer might': 332620, 'get bogof': 346686, 'bogof deal': 133993, 'deal retail': 229475, 'in curry': 421940, 'curry tell': 221745, 'me people': 523329, 'buying two': 151273, 'two and': 936780, 'and three': 74079, 'three freezer': 893932, 'freezer for': 332604, 'food 2019': 313014, '2019 ncov': 13982, 'ncov c4news': 553339, 'up on freezer': 945568, 'on freezer might': 600990, 'freezer might get': 332621, 'might get bogof': 530988, 'get bogof deal': 346687, 'bogof deal retail': 133994, 'deal retail worker': 229476, 'worker in curry': 1007167, 'in curry tell': 421941, 'curry tell me': 221746, 'tell me people': 837018, 'me people are': 523330, 'are buying two': 85135, 'buying two and': 151274, 'two and three': 936781, 'and three freezer': 74080, 'three freezer for': 893933, 'freezer for their': 332605, 'for their home': 326838, 'home to stockpile': 402342, 'stockpile food 2019': 803744, 'food 2019 ncov': 313015, '2019 ncov c4news': 13983, 'aviation transportation': 104963, 'transportation sector': 930033, 'sector should': 744324, 'should join': 766157, 'demand sector': 236179, 'sector healthcare': 744214, 'the society': 867438, 'society get': 781217, 'over faster': 630208, 'faster minimize': 300110, 'own sector': 632192, 'sector financial': 744191, 'aviation transportation sector': 104964, 'transportation sector should': 930034, 'sector should join': 744325, 'should join the': 766158, 'join the high': 466859, 'high demand sector': 395028, 'demand sector healthcare': 236180, 'sector healthcare food': 744215, 'healthcare food daily': 387117, 'food daily supply': 314079, 'daily supply to': 224820, 'support the society': 826886, 'the society get': 867442, 'society get over': 781218, 'get over faster': 347753, 'over faster minimize': 630209, 'faster minimize their': 300111, 'minimize their own': 533135, 'their own sector': 874200, 'own sector financial': 632193, 'sector financial loss': 744192, 'dhamki': 240097, 'sushma': 829454, 'swaraj': 829994, 'today did': 919443, 'did trump': 240892, 'trump actually': 933370, 'actually give': 30811, 'give dhamki': 350455, 'dhamki to': 240098, 'india on': 434550, 'how onion': 408438, 'onion made': 607727, 'made sushma': 507978, 'sushma swaraj': 829455, 'swaraj lose': 829995, 'lose an': 503423, 'on today did': 604775, 'today did trump': 919444, 'did trump actually': 240893, 'trump actually give': 933371, 'actually give dhamki': 30812, 'give dhamki to': 350456, 'dhamki to india': 240099, 'to india on': 908329, 'india on to': 434552, 'on to how': 604741, 'to how onion': 908023, 'how onion made': 408439, 'onion made sushma': 607728, 'made sushma swaraj': 507979, 'sushma swaraj lose': 829456, 'swaraj lose an': 829996, 'lose an election': 503424, 'shaykh': 755829, 'mohamed': 535558, 'hoblos': 399783, 'hoarding everything': 399285, 'everything strong': 288019, 'strong message': 814070, 'buyer amid': 149550, 'crisis taking': 218126, 'by storm': 154134, 'storm shaykh': 811840, 'shaykh mohamed': 755832, 'mohamed hoblos': 535559, 'hoblos urge': 399784, 'urge viewer': 948248, 'viewer to': 957195, 'exercise patience': 290085, 'patience and': 644099, 'and courtesy': 60653, 'courtesy in': 212044, 'stop hoarding everything': 804728, 'hoarding everything strong': 399286, 'everything strong message': 288020, 'strong message to': 814071, 'message to panic': 529456, 'panic buyer amid': 637552, 'buyer amid the': 149551, 'the crisis taking': 852455, 'crisis taking the': 218129, 'taking the world': 833600, 'the world by': 871828, 'world by storm': 1009391, 'by storm shaykh': 154135, 'storm shaykh mohamed': 811841, 'shaykh mohamed hoblos': 755833, 'mohamed hoblos urge': 535560, 'hoblos urge viewer': 399785, 'urge viewer to': 948249, 'viewer to exercise': 957196, 'to exercise patience': 905413, 'exercise patience and': 290086, 'patience and courtesy': 644100, 'and courtesy in': 60654, 'courtesy in this': 212045, 'in this trying': 430033, 'in distillery': 422312, 'distillery amid': 247726, 'sanitizer in distillery': 735133, 'in distillery amid': 422313, 'distillery amid outbreak': 247727, 'zhengzhou': 1027546, 'people entering': 647804, 'entering supermarket': 278420, 'in zhengzhou': 431155, 'zhengzhou city': 1027547, 'city three': 179414, 'three case': 893888, 'case identified': 165777, 'identified march': 413336, 'march 27': 515223, '27 2020': 16256, 'people entering supermarket': 647809, 'entering supermarket in': 278421, 'supermarket in zhengzhou': 821007, 'in zhengzhou city': 431156, 'zhengzhou city three': 1027548, 'city three case': 179415, 'three case identified': 893889, 'case identified march': 165778, 'identified march 27': 413337, 'march 27 2020': 515224, 'new seattle': 559556, 'seattle grocery': 743561, 'rule strategy': 727355, 'strategy come': 812633, '19 etiquette': 6847, 'etiquette via': 283163, 'new seattle grocery': 559557, 'seattle grocery store': 743562, 'grocery store rule': 365732, 'store rule strategy': 809913, 'rule strategy come': 727356, 'strategy come with': 812634, 'come with covid': 187677, 'covid 19 etiquette': 213041, '19 etiquette via': 6848, 'you manage': 1019770, 'manage to': 512459, 'buying anything': 149951, 'when you manage': 984580, 'you manage to': 1019771, 'manage to get': 512463, 'to get everything': 906473, 'get everything on': 346969, 'everything on on': 287945, 'on on your': 602508, 'on your weekly': 605514, 'your weekly food': 1026338, 'food shop without': 316501, 'shop without panic': 761073, 'without panic buying': 1002819, 'panic buying anything': 637644, 'subtly': 816115, 'trader use': 928789, 'use term': 949635, 'term market': 838199, 'correction when': 207582, 'when stock': 984075, 'drop 10': 260094, 'or greater': 615514, 'greater it': 363192, 'usually occurs': 951134, 'over priced': 630525, 'priced so': 677755, 'so market': 777721, 'correction stabilizes': 207570, 'stabilizes the': 791879, 'more realistic': 540190, 'realistic value': 701678, 'value if': 952130, 'read between': 700306, 'line is': 493207, 'is subtly': 452417, 'subtly doing': 816116, 'trader use term': 928790, 'use term market': 949636, 'term market correction': 838200, 'market correction when': 516232, 'correction when stock': 207583, 'when stock price': 984076, 'stock price drop': 802711, 'price drop 10': 673554, 'drop 10 or': 260096, '10 or greater': 1591, 'or greater it': 615515, 'greater it usually': 363193, 'it usually occurs': 462007, 'usually occurs when': 951135, 'occurs when the': 579086, 'when the stock': 984200, 'stock are over': 801857, 'are over priced': 88911, 'over priced so': 630526, 'priced so market': 677756, 'so market correction': 777722, 'market correction stabilizes': 516230, 'correction stabilizes the': 207571, 'stabilizes the price': 791880, 'price to more': 677016, 'to more realistic': 910263, 'more realistic value': 540192, 'realistic value if': 701679, 'value if you': 952131, 'if you read': 415500, 'you read between': 1020809, 'read between the': 700307, 'between the line': 128932, 'the line is': 859410, 'line is subtly': 493208, 'is subtly doing': 452418, 'subtly doing the': 816117, 'doing the same': 252725, 'same to our': 733385, 'to our daily': 911168, 'strenuous': 813284, 'shel': 756665, 'obviously wasn': 578862, 'wasn talking': 968022, 'being too': 125972, 'too strenuous': 925091, 'strenuous asthma': 813285, 'asthma won': 97213, 'me doing': 522671, 'doing job': 252504, 'me vulnerable': 523885, 'distancing self': 247463, 'isolating very': 455158, 'very seriously': 955522, 'seriously you': 751803, 'supermarket shel': 822415, 'obviously wasn talking': 578863, 'wasn talking about': 968023, 'talking about it': 833977, 'about it being': 25569, 'it being too': 456832, 'being too strenuous': 125973, 'too strenuous asthma': 925092, 'strenuous asthma won': 813286, 'asthma won stop': 97214, 'won stop me': 1003912, 'stop me doing': 804829, 'me doing job': 522673, 'doing job it': 252505, 'job it make': 465920, 'it make me': 459513, 'make me vulnerable': 510151, 'me vulnerable to': 523887, '19 so have': 10643, 'take the social': 832676, 'social distancing self': 779711, 'distancing self isolating': 247464, 'self isolating very': 747743, 'isolating very seriously': 455159, 'very seriously you': 955527, 'seriously you can': 751804, 'can stock supermarket': 159807, 'stock supermarket shel': 802901, 'rolex': 725147, 'swatch': 830012, 'cartier': 165472, 'swiss watch': 830460, 'like rolex': 491101, 'rolex swatch': 725148, 'swatch and': 830013, 'and cartier': 59595, 'cartier are': 165473, 'and slashing': 71735, 'also political': 48671, 'political unrest': 663690, 'unrest in': 943353, 'their biggest': 872609, 'biggest market': 130273, 'swiss watch company': 830461, 'watch company like': 968381, 'company like rolex': 190846, 'like rolex swatch': 491102, 'rolex swatch and': 725149, 'swatch and cartier': 830014, 'and cartier are': 59596, 'cartier are cutting': 165474, 'are cutting production': 85693, 'cutting production and': 223770, 'production and slashing': 681933, 'and slashing price': 71739, 'slashing price in': 773678, 'response to not': 715871, 'not only the': 570834, 'only the outbreak': 611273, 'outbreak but also': 628058, 'but also political': 145133, 'also political unrest': 48672, 'political unrest in': 663691, 'unrest in their': 943354, 'in their biggest': 429719, 'their biggest market': 872612, 'michigancoronavirus': 530394, 'of bleach': 580740, 'bleach 39': 132472, '39 99': 18169, 'mask michigan': 518974, 'michigan engaging': 530333, 'engaging in': 276914, 'gauging no': 344566, 'excuse menards': 289760, 'menards must': 528584, 'prosecuted fined': 684642, 'fined heavily': 307751, 'heavily thank': 388607, 'you shameful': 1021137, 'shameful michigancoronavirus': 754693, 'per gallon of': 650853, 'gallon of bleach': 343038, 'of bleach 39': 580742, 'bleach 39 99': 132473, '39 99 for': 18170, '99 for face': 23823, 'for face mask': 321352, 'face mask michigan': 294564, 'mask michigan engaging': 518975, 'michigan engaging in': 530334, 'engaging in price': 276919, 'in price gauging': 426966, 'price gauging no': 674159, 'gauging no excuse': 344567, 'no excuse menards': 564163, 'excuse menards must': 289761, 'menards must be': 528585, 'must be prosecuted': 546534, 'be prosecuted fined': 116576, 'prosecuted fined heavily': 684643, 'fined heavily thank': 307752, 'heavily thank you': 388608, 'thank you shameful': 841808, 'you shameful michigancoronavirus': 1021138, 'imagine doing': 416714, 'today climate': 919380, 'climate toiletpaper': 182235, 'you imagine doing': 1019292, 'imagine doing this': 416715, 'doing this in': 252764, 'this in today': 888058, 'in today climate': 430154, 'today climate toiletpaper': 919383, 'sweetheart': 830280, 'lobbyist': 497605, 'are corporation': 85576, 'corporation being': 207390, 'being given': 125184, '19 bailouts': 5294, 'bailouts and': 108680, 'yet credit': 1016041, 'card company': 163487, 'still charging': 800358, 'charging 23': 173443, '23 on': 15422, 'debt when': 230599, 'when fed': 983411, 'fed rat': 301877, 'rat is': 697131, 'not lower': 570478, 'lower this': 506034, 'since it': 770659, 'wa sweetheart': 963378, 'sweetheart deal': 830281, 'deal given': 229410, 'to lobbyist': 909367, 'lobbyist and': 497606, 'immediate positive': 417008, 'why are corporation': 990765, 'are corporation being': 85577, 'corporation being given': 207391, 'being given covid': 125185, 'covid 19 bailouts': 212675, '19 bailouts and': 5295, 'bailouts and yet': 108681, 'and yet credit': 75982, 'yet credit card': 1016042, 'credit card company': 216330, 'card company are': 163488, 'company are still': 190451, 'are still charging': 90403, 'still charging 23': 800359, 'charging 23 on': 173444, '23 on consumer': 15423, 'consumer debt when': 197092, 'debt when fed': 230600, 'when fed rat': 983412, 'fed rat is': 301878, 'rat is why': 697132, 'is why not': 453969, 'why not lower': 991223, 'not lower this': 570481, 'lower this since': 506036, 'this since it': 890159, 'since it wa': 770664, 'it wa sweetheart': 462206, 'wa sweetheart deal': 963379, 'sweetheart deal given': 830283, 'deal given to': 229411, 'given to lobbyist': 351186, 'to lobbyist and': 909368, 'lobbyist and make': 497607, 'and make an': 66547, 'make an immediate': 509681, 'an immediate positive': 56167, 'hello ha': 389171, 'some hard': 783023, 'up art': 944410, 'art commission': 94152, 'commission to': 188908, 'her out': 392269, 'out she': 627166, 'incredible friend': 433832, 'really use': 702682, 'help won': 390939, 'won ever': 1003800, 'ever offer': 285437, 'offer art': 594530, 'price again': 672239, 'so come': 776771, 'it rts': 460814, 'rts are': 726869, 'super appreciated': 818472, 'hello ha hit': 389172, 'ha hit some': 370882, 'hit some hard': 398406, 'some hard time': 783024, '19 and opening': 5074, 'and opening up': 68174, 'opening up art': 612943, 'up art commission': 944411, 'art commission to': 94153, 'commission to help': 188910, 'help her out': 389860, 'her out she': 392270, 'out she ha': 627167, 'been an incredible': 120655, 'an incredible friend': 56256, 'incredible friend and': 433833, 'friend and could': 333498, 'and could really': 60620, 'could really use': 209575, 'really use the': 702685, 'use the help': 949674, 'the help won': 857263, 'help won ever': 390940, 'won ever offer': 1003801, 'ever offer art': 285438, 'offer art at': 594531, 'art at these': 94139, 'these price again': 880522, 'price again so': 672241, 'again so come': 37168, 'so come get': 776772, 'come get it': 187323, 'get it rts': 347423, 'it rts are': 460815, 'rts are super': 726870, 'are super appreciated': 90643, 'attack today': 102169, 'today thinking': 920330, 'thinking am': 885873, 'anyone help': 80359, 'me what': 523926, 'so scared': 778151, 'scared stay': 741011, 'in only': 426176, 'still petrified': 801039, 'have had panic': 380871, 'panic attack today': 637384, 'attack today thinking': 102170, 'today thinking am': 920331, 'thinking am going': 885874, 'die of can': 241415, 'of can anyone': 581067, 'can anyone help': 157511, 'anyone help me': 80360, 'help me what': 390082, 'me what can': 523927, 'can do am': 158091, 'do am so': 249051, 'am so scared': 50410, 'so scared stay': 778154, 'scared stay in': 741012, 'stay in only': 797055, 'in only go': 426177, 'for food shop': 321628, 'food shop but': 316477, 'shop but still': 760004, 'but still petrified': 147177, 'cimas': 178510, 'togetherwemakeadifference': 921096, 'illness is': 416377, 'virus here': 958280, 'some measure': 783270, 'measure cimas': 525156, 'cimas recommends': 178511, 'recommends to': 704848, 'risk togetherwemakeadifference': 723974, 'prevent the best': 671727, 'prevent illness is': 671651, 'illness is to': 416378, 'is to avoid': 453181, 'avoid being exposed': 105010, 'being exposed to': 125124, 'to this virus': 917474, 'this virus here': 891010, 'virus here are': 958282, 'are some measure': 90271, 'some measure cimas': 783271, 'measure cimas recommends': 525157, 'cimas recommends to': 178512, 'recommends to reduce': 704850, 'the risk togetherwemakeadifference': 865887, 'my fuckin': 548465, 'fuckin house': 339775, 'house dude': 406275, 'that fuck off': 843965, 'fuck off just': 339615, 'off just do': 593940, 'to my fuckin': 910402, 'my fuckin house': 548466, 'fuckin house dude': 339776, '03237979660': 878, 'jhagra': 465416, 'geonews': 345968, 'asad': 94844, 'umar': 939212, 'zfrmrza': 1027533, 'dawnnews': 227069, 'ndma': 553427, 'hamidmir': 374553, 'shield available': 758137, 'quantity price': 691950, 'on non': 602421, 'profit basis': 682672, 'basis anyone': 112220, 'anyone can': 80215, 'contact at': 200023, 'at 03237979660': 97375, '03237979660 for': 879, 'detail jhagra': 239210, 'jhagra geonews': 465417, 'geonews asad': 345969, 'asad umar': 94847, 'umar zfrmrza': 939215, 'zfrmrza faceshield': 1027534, 'faceshield dawnnews': 295191, 'dawnnews ndma': 227070, 'ndma hamidmir': 553428, 'face shield available': 294737, 'shield available in': 758138, 'available in limited': 104445, 'in limited quantity': 424738, 'limited quantity price': 492706, 'quantity price are': 691951, 'price are on': 672709, 'are on non': 88728, 'on non profit': 602425, 'non profit basis': 566469, 'profit basis anyone': 682673, 'basis anyone can': 112221, 'anyone can contact': 80217, 'can contact at': 157967, 'contact at 03237979660': 200024, 'at 03237979660 for': 97376, '03237979660 for more': 880, 'more detail jhagra': 539021, 'detail jhagra geonews': 239211, 'jhagra geonews asad': 465418, 'geonews asad umar': 345970, 'asad umar zfrmrza': 94848, 'umar zfrmrza faceshield': 939216, 'zfrmrza faceshield dawnnews': 1027535, 'faceshield dawnnews ndma': 295192, 'dawnnews ndma hamidmir': 227071, 'downsizing': 257718, 'at downsizing': 98490, 'downsizing because': 257719, 'amazon moved': 51037, 'employ more': 273448, 'more 100': 538475, '00 warehouse': 592, 'logistic worker': 500696, 'with surge': 1001091, 'business are looking': 143377, 'are looking at': 87882, 'looking at downsizing': 502803, 'at downsizing because': 98491, 'downsizing because of': 257720, 'because of amazon': 119307, 'of amazon moved': 580031, 'amazon moved to': 51038, 'moved to employ': 543835, 'to employ more': 905017, 'employ more 100': 273449, 'more 100 00': 538476, '100 00 warehouse': 1802, '00 warehouse and': 593, 'warehouse and logistic': 966683, 'and logistic worker': 66332, 'logistic worker in': 500697, 'worker in america': 1007162, 'in america to': 420239, 'america to help': 51714, 'help it cope': 389943, 'cope with surge': 203359, 'with surge in': 1001092, 'till in': 896034, 'buy an': 148311, 'extra item': 293553, 'like nice': 490853, 'nice bar': 562349, 'of chocolate': 581391, 'their coffee': 872799, 'coffee break': 185464, 'break bekind': 138684, 'bekind supportlocalbusiness': 126119, 'the till in': 869559, 'till in your': 896036, 'local shop or': 498410, 'shop or supermarket': 760620, 'or supermarket you': 617292, 'supermarket you could': 824189, 'you could buy': 1018077, 'could buy an': 208978, 'buy an extra': 148312, 'an extra item': 56013, 'extra item like': 293556, 'item like nice': 463418, 'like nice bar': 490854, 'nice bar of': 562350, 'bar of chocolate': 110734, 'of chocolate and': 581392, 'chocolate and give': 177656, 'and give it': 63662, 'to the cashier': 916544, 'cashier for their': 166527, 'for their coffee': 326810, 'their coffee break': 872800, 'coffee break bekind': 185465, 'break bekind supportlocalbusiness': 138685, 'cancelledflights': 161200, 'cancelledevents': 161197, 'seatravel': 743543, 'packageholidays': 633510, 'about consumerrights': 25006, 'for cancelledflights': 319909, 'cancelledflights airtravel': 161201, 'airtravel cancelledevents': 40151, 'cancelledevents cancelled': 161198, 'cancelled train': 161185, 'train bus': 929236, 'bus seatravel': 143074, 'seatravel packageholidays': 743544, 'packageholidays trouble': 633512, 'trouble obtaining': 932632, 'obtaining refund': 578759, 'refund go': 706917, 'read about consumerrights': 700250, 'about consumerrights here': 25007, 'consumerrights here for': 199763, 'here for cancelledflights': 393000, 'for cancelledflights airtravel': 319910, 'cancelledflights airtravel cancelledevents': 161202, 'airtravel cancelledevents cancelled': 40152, 'cancelledevents cancelled train': 161199, 'cancelled train bus': 161186, 'train bus seatravel': 929237, 'bus seatravel packageholidays': 143075, 'seatravel packageholidays trouble': 743546, 'packageholidays trouble obtaining': 633513, 'trouble obtaining refund': 932633, 'obtaining refund go': 578760, 'refund go to': 706918, 'hog and': 399829, 'and pork': 69202, 'pork price': 664811, 'plunged since': 661503, 'data showing': 226418, 'ever pig': 285451, 'pig herd': 656448, 'herd and': 392605, 'keep school': 471913, 'hog and pork': 399831, 'and pork price': 69204, 'pork price have': 664813, 'have plunged since': 381988, 'plunged since the': 661504, 'since the release': 770903, 'the release of': 865479, 'release of data': 708982, 'of data showing': 582359, 'data showing the': 226419, 'showing the biggest': 767523, 'the biggest ever': 849653, 'biggest ever pig': 130230, 'ever pig herd': 285452, 'pig herd and': 656449, 'herd and the': 392606, 'and the outbreak': 73505, 'the outbreak keep': 862653, 'outbreak keep school': 628405, 'keep school and': 471914, 'school and restaurant': 741688, 'and restaurant closed': 70369, 'drdo': 258558, 'patanjaliyogpeeth': 643926, 'santoor': 736648, 'othr': 621892, 'reducng': 706342, 'whn': 988005, 'of tweet': 592523, 'tweet abt': 936331, 'abt sanitiser': 27548, 'sanitiser bn': 733931, 'bn made': 133569, 'by drdo': 152423, 'drdo patanjaliyogpeeth': 258561, 'patanjaliyogpeeth also': 643927, 'also santoor': 48819, 'santoor othr': 736649, 'othr company': 621893, 'company reducng': 191012, 'reducng price': 706343, 'price alot': 672283, 'alot ppl': 47137, 'ppl tweeting': 668358, 'tweeting abt': 936469, 'abt ppe': 27546, 'ppe kit': 667990, 'kit bn': 475510, 'bn distributed': 133565, 'distributed but': 248038, 'my question': 549874, 'is whn': 453945, 'whn will': 988006, 'it reach': 460606, 'reach middle': 699944, 'class indian': 180204, 'indian sundaymorning': 434889, 'sundaymorning india': 818311, 'alot of tweet': 47136, 'of tweet abt': 592524, 'tweet abt sanitiser': 936332, 'abt sanitiser bn': 27549, 'sanitiser bn made': 733932, 'bn made by': 133570, 'made by drdo': 507668, 'by drdo patanjaliyogpeeth': 152424, 'drdo patanjaliyogpeeth also': 258562, 'patanjaliyogpeeth also santoor': 643928, 'also santoor othr': 48820, 'santoor othr company': 736650, 'othr company reducng': 621894, 'company reducng price': 191013, 'reducng price alot': 706344, 'price alot ppl': 672284, 'alot ppl tweeting': 47138, 'ppl tweeting abt': 668359, 'tweeting abt ppe': 936470, 'abt ppe kit': 27547, 'ppe kit bn': 667991, 'kit bn distributed': 475511, 'bn distributed but': 133566, 'distributed but my': 248039, 'but my question': 146438, 'my question is': 549876, 'question is whn': 693635, 'is whn will': 453946, 'whn will it': 988007, 'will it reach': 993871, 'it reach middle': 460607, 'reach middle class': 699945, 'middle class indian': 530635, 'class indian sundaymorning': 180205, 'indian sundaymorning india': 434890, 'there risking': 879004, 'our stomach': 624933, 'stomach without': 804326, 'would really': 1012166, 'panic thank': 638669, 'store employee who': 807573, 'who are still': 988225, 'out there risking': 627509, 'there risking their': 879005, 'their health for': 873516, 'health for our': 386451, 'for our stomach': 324296, 'our stomach without': 624934, 'stomach without you': 804327, 'without you we': 1003075, 'we would really': 973978, 'would really be': 1012168, 'really be in': 702012, 'be in panic': 115421, 'in panic thank': 426490, 'panic thank you': 638670, 'only conducted': 610260, 'conducted in': 193667, 'in verified': 430554, 'verified state': 954786, 'health laboratory': 386597, 'laboratory across': 478463, 'don buy': 253406, 'kit either': 475536, 'either online': 270344, 'or through': 617450, 'consumer setting': 198957, 'setting it': 753637, 'scam learn': 740230, 'for testing for': 326236, 'testing for 19': 839492, 'for 19 is': 318708, 'is only conducted': 450535, 'only conducted in': 610261, 'conducted in verified': 193668, 'in verified state': 430555, 'verified state and': 954787, 'state and local': 795369, 'and local public': 66302, 'local public health': 498316, 'public health laboratory': 688073, 'health laboratory across': 386598, 'laboratory across the': 478464, 'across the don': 29493, 'the don buy': 853540, 'don buy home': 253409, 'buy home testing': 148795, 'testing kit either': 839537, 'kit either online': 475537, 'either online or': 270345, 'online or through': 608671, 'or through direct': 617453, 'through direct to': 894426, 'to consumer setting': 903333, 'consumer setting it': 198959, 'setting it is': 753638, 'is scam learn': 451665, 'scam learn the': 740232, 'learn the fact': 484069, 'my mission': 549246, 'mission bay': 534344, 'bay neighborhood': 112954, 'neighborhood in': 557128, 'francisco younger': 331135, 'while those': 987457, 'year get': 1014586, 'get early': 346924, 'early access': 264535, 'outside the local': 629598, 'store in my': 808348, 'in my mission': 425600, 'my mission bay': 549247, 'mission bay neighborhood': 534345, 'bay neighborhood in': 112955, 'neighborhood in san': 557131, 'san francisco younger': 733552, 'francisco younger customer': 331136, 'younger customer wait': 1022684, 'customer wait to': 223030, 'wait to shop': 964233, 'shop for while': 760212, 'for while those': 327850, 'while those 60': 987458, 'those 60 year': 891771, '60 year get': 21048, 'year get early': 1014587, 'get early access': 346925, 'inexorably': 436447, 'northward': 567825, 'mimic': 532496, 'perth': 653281, 'reckon': 704558, 'imagining': 416853, 'justanotherdayinwa': 470393, 'seeing these': 746509, 'these curve': 879842, 'curve slowly': 221888, 'slowly heading': 774603, 'heading inexorably': 385940, 'inexorably northward': 436448, 'northward kinda': 567826, 'kinda mimic': 475063, 'mimic the': 532497, 'lately of': 480980, 'certain non': 170059, 'non grocery': 566408, 'grocery line': 364690, 'at 24': 97539, 'hr fruit': 409623, 'veg merchant': 953762, 'merchant outlet': 529036, 'outlet here': 629046, 'in perth': 426654, 'perth reckon': 653284, 'reckon or': 704568, 'or might': 616137, 'be imagining': 115362, 'imagining thing': 416856, 'thing justanotherdayinwa': 884507, 'seeing these curve': 746510, 'these curve slowly': 879843, 'curve slowly heading': 221889, 'slowly heading inexorably': 774604, 'heading inexorably northward': 385941, 'inexorably northward kinda': 436449, 'northward kinda mimic': 567827, 'kinda mimic the': 475064, 'mimic the price': 532498, 'the price lately': 864379, 'price lately of': 675022, 'lately of certain': 480981, 'of certain non': 581254, 'certain non grocery': 170060, 'non grocery line': 566409, 'grocery line at': 364691, 'line at 24': 492976, 'at 24 hr': 97542, '24 hr fruit': 15632, 'hr fruit veg': 409624, 'fruit veg merchant': 339167, 'veg merchant outlet': 953763, 'merchant outlet here': 529037, 'outlet here in': 629047, 'here in perth': 393176, 'in perth reckon': 426655, 'perth reckon or': 653285, 'reckon or might': 704569, 'or might be': 616138, 'might be imagining': 530904, 'be imagining thing': 115363, 'imagining thing justanotherdayinwa': 416857, '9r': 24014, 'all com': 42389, 'com site': 186954, 'site like': 771971, 'either showing': 270371, 'showing hand': 767450, 'sanitizer out': 735510, 'stock 9r': 801758, '9r selling': 24015, 'price despite': 673430, 'despite direction': 238723, 'direction by': 243451, 'by amidst': 151815, 'amidst coronacrisis': 52783, 'coronacrisis corona': 204561, 'all com site': 42390, 'com site like': 186955, 'site like and': 771974, 'like and many': 489786, 'many more are': 514295, 'more are either': 538640, 'are either showing': 86098, 'either showing hand': 270372, 'showing hand sanitizer': 767451, 'hand sanitizer out': 375522, 'sanitizer out of': 735511, 'of stock 9r': 590134, 'stock 9r selling': 801759, '9r selling them': 24016, 'them at exorbitant': 875435, 'exorbitant price despite': 290407, 'price despite direction': 673431, 'despite direction by': 238724, 'direction by amidst': 243452, 'by amidst coronacrisis': 151816, 'amidst coronacrisis corona': 52784, 'stopcoronamadness': 805323, 'stopcoronamadness people': 805324, 'uncertainty you': 939779, 'must reassure': 546841, 'reassure people': 703193, 'for 80': 318925, 'population corona': 664670, 'nothing more': 573104, 'than severe': 841129, 'severe flu': 754015, 'flu at': 311381, 'at worst': 101635, 'worst lasting': 1011215, 'lasting week': 480781, 'stopcoronamadness people are': 805325, 'buying because of': 149997, 'because of uncertainty': 119420, 'of uncertainty you': 592604, 'uncertainty you must': 939780, 'you must reassure': 1019927, 'must reassure people': 546842, 'reassure people that': 703195, 'people that for': 649763, 'that for 80': 843933, 'for 80 of': 318926, 'the population corona': 864024, 'population corona will': 664671, 'will be nothing': 992577, 'be nothing more': 116129, 'nothing more than': 573106, 'more than severe': 540673, 'than severe flu': 841130, 'severe flu at': 754016, 'flu at worst': 311382, 'at worst lasting': 101636, 'worst lasting week': 1011216, 'lasting week there': 480782, 'some toilet': 784084, 'employee when you': 274415, 'when you ask': 984539, 'you ask for': 1017316, 'ask for some': 95537, 'for some toilet': 325773, 'some toilet paper': 784085, 'sharing foodsecurity': 755523, 'foodsecurity story': 318086, 'story during': 811953, 'during blog': 262475, 'blog how': 132948, 'may disrupt': 521127, 'disrupt food': 246369, 'food supplychain': 317022, 'supplychain in': 826193, 'country covid': 210565, 'price both': 672940, 'both cause': 135874, 'cause consequence': 167529, 'shortage agriculture': 764801, 'sharing foodsecurity story': 755524, 'foodsecurity story during': 318087, 'story during blog': 811954, 'during blog how': 262476, 'blog how may': 132950, 'how may disrupt': 408308, 'may disrupt food': 521128, 'disrupt food supplychain': 246371, 'food supplychain in': 317024, 'supplychain in developing': 826194, 'in developing country': 422238, 'developing country covid': 239772, 'country covid 19': 210566, 'increase food price': 432772, 'food price both': 315925, 'price both cause': 672941, 'both cause consequence': 135875, 'cause consequence of': 167530, 'consequence of food': 194874, 'food shortage agriculture': 316552, 'france are': 330976, 'glove plus': 352870, 'plus staff': 661678, 'are wiping': 91648, 'down pen': 257081, 'pen card': 646406, 'card keypad': 163565, 'keypad etc': 473559, 'etc at': 282429, 'checkout take': 175022, 'please etc': 659965, 'etc your': 282919, 'interesting to see': 441637, 'see supermarket staff': 745770, 'supermarket staff in': 822857, 'staff in france': 792550, 'in france are': 423073, 'france are wearing': 330978, 'and glove plus': 63733, 'glove plus staff': 352871, 'plus staff are': 661679, 'staff are wiping': 792211, 'are wiping down': 91649, 'wiping down pen': 996515, 'down pen card': 257082, 'pen card keypad': 646407, 'card keypad etc': 163566, 'keypad etc at': 473560, 'etc at checkout': 282430, 'at checkout take': 98251, 'checkout take note': 175023, 'note please etc': 572782, 'please etc your': 659966, 'etc your staff': 282920, 'truce global': 932708, 'risen after': 723094, 'after said': 36137, 'he expected': 384938, 'expected amp': 290873, 'end their': 275984, 'their war': 875149, 'war truce global': 966577, 'truce global price': 932710, 'global price have': 352139, 'have risen after': 382334, 'risen after said': 723096, 'after said he': 36138, 'said he expected': 731106, 'he expected amp': 384939, 'expected amp to': 290874, 'amp to reach': 54714, 'to end their': 905087, 'end their war': 275987, '19uk quarantinelife': 12563, 'quarantinelife have': 692956, 'have pre': 382014, 'existing medical': 290331, 'condition so': 193524, 'should isolate': 766146, 'but wife': 147867, '19uk quarantinelife have': 12564, 'quarantinelife have pre': 692957, 'have pre existing': 382015, 'pre existing medical': 669170, 'existing medical condition': 290332, 'medical condition so': 526111, 'condition so should': 193525, 'so should isolate': 778205, 'should isolate for': 766147, 'week but wife': 976048, 'but wife work': 147868, 'at supermarket how': 100734, 'supermarket how that': 820813, 'how that work': 408797, 'tatanic': 834846, 'hymn': 412253, 'tatanic hymn': 834847, 'hymn to': 412256, 'console covid': 195520, '19 treat': 11562, 'treat in': 930841, 'tatanic hymn to': 834848, 'hymn to console': 412257, 'to console covid': 903245, 'console covid 19': 195521, 'covid 19 treat': 213982, '19 treat in': 11563, 'treat in supermarket': 930842, 'braved': 138250, 'lasagna': 480059, 'shrugged': 767725, 'nolasagna': 566247, 'and braved': 59157, 'braved the': 138257, 'we stared': 973369, 'the lasagna': 858983, 'lasagna sheet': 480062, 'sheet we': 756630, 'we looked': 972297, 'other we': 621190, 'we shrugged': 973315, 'shrugged we': 767726, 'we kept': 972138, 'kept walking': 473096, 'walking nolasagna': 965072, 'nolasagna pandemic': 566248, 'pandemic quarantinelife': 636273, 'quarantinelife workfromhome': 693047, 'my partner and': 549714, 'partner and braved': 642764, 'and braved the': 59158, 'braved the grocery': 138258, 'store we stared': 811180, 'we stared at': 973370, 'stared at the': 794138, 'at the lasagna': 100999, 'the lasagna sheet': 858984, 'lasagna sheet we': 480063, 'sheet we looked': 756632, 'we looked at': 972298, 'looked at each': 502707, 'each other we': 264233, 'other we shrugged': 621194, 'we shrugged we': 973316, 'shrugged we kept': 767727, 'we kept walking': 972139, 'kept walking nolasagna': 473097, 'walking nolasagna pandemic': 965073, 'nolasagna pandemic quarantinelife': 566249, 'pandemic quarantinelife workfromhome': 636275, 'sbi': 739805, 'amaravati': 50601, 'guntur': 368806, 'becomes everyone': 120218, 'everyone moral': 287189, 'moral responsibility': 538407, 'forward and': 329965, 'need sbi': 555543, 'sbi staff': 739808, 'staff from': 792475, 'from amaravati': 334454, 'amaravati circle': 50602, 'circle donated': 178602, 'donated litre': 254347, 'litre sanitizer': 495184, 'to guntur': 907080, 'guntur general': 368807, 'general hospital': 345353, 'hospital let': 404496, 'pandemic together': 636803, 'of crisis like': 582170, 'crisis like these': 217666, 'these it becomes': 880188, 'it becomes everyone': 456775, 'becomes everyone moral': 120219, 'everyone moral responsibility': 287190, 'moral responsibility to': 538408, 'responsibility to come': 715987, 'to come forward': 903028, 'come forward and': 187296, 'forward and help': 329967, 'and help those': 64477, 'in need sbi': 425765, 'need sbi staff': 555544, 'sbi staff from': 739809, 'staff from amaravati': 792477, 'from amaravati circle': 334455, 'amaravati circle donated': 50603, 'circle donated litre': 178603, 'donated litre sanitizer': 254348, 'litre sanitizer to': 495185, 'sanitizer to guntur': 735926, 'to guntur general': 907081, 'guntur general hospital': 368808, 'general hospital let': 345355, 'hospital let fight': 404497, 'this pandemic together': 889442, 'ducey': 261528, 'more socialism': 540425, 'socialism the': 780988, 'the arizona': 848893, 'arizona national': 92843, 'guard will': 367868, 'be stocking': 117373, 'bank activated': 109570, 'activated by': 30227, 'by gov': 152705, 'gov doug': 359577, 'doug ducey': 256246, 'ducey who': 261531, 'also ordered': 48628, 'ordered that': 618906, 'that bar': 842926, 'bar in': 110724, 'in county': 421832, 'county with': 211538, 'case be': 165656, 'restaurant halt': 716492, 'halt dine': 374433, 'more socialism the': 540426, 'socialism the arizona': 780989, 'the arizona national': 848895, 'arizona national guard': 92844, 'national guard will': 552531, 'guard will be': 367869, 'will be stocking': 992700, 'be stocking shelf': 117374, 'stocking shelf in': 803591, 'shelf in grocery': 757196, 'food bank activated': 313511, 'bank activated by': 109571, 'activated by gov': 30228, 'by gov doug': 152706, 'gov doug ducey': 359578, 'doug ducey who': 256247, 'ducey who also': 261532, 'who also ordered': 988060, 'also ordered that': 48629, 'ordered that bar': 618907, 'that bar in': 842928, 'bar in county': 110725, 'in county with': 421834, 'county with covid': 211539, '19 case be': 5668, 'case be closed': 165657, 'be closed and': 114119, 'closed and restaurant': 182997, 'and restaurant halt': 70379, 'restaurant halt dine': 716493, 'halt dine in': 374434, 'daretobe': 225941, 'q2 with': 691431, 'pandemic disrupting': 635310, 'world right': 1009941, 'solution daretobe': 782012, 'q2 with the': 691432, 'with the corona': 1001246, 'corona pandemic disrupting': 204092, 'pandemic disrupting the': 635311, 'disrupting the world': 246430, 'the world right': 871953, 'world right now': 1009942, 'now what can': 576377, 'do to be': 250380, 'of the solution': 591478, 'the solution daretobe': 867461, 'nigel': 562697, 'malnutrition': 511874, 'hey nigel': 394465, 'nigel on': 562698, 'your show': 1025801, 'show could': 766908, 'you explore': 1018498, 'explore why': 292507, 'supermarket haven': 820715, 'stockpiled anything': 803831, 'and last': 65956, 'been trying': 122273, 'about malnutrition': 25694, 'malnutrition than': 511875, 'hey nigel on': 394466, 'nigel on your': 562699, 'on your show': 605500, 'your show could': 1025802, 'show could you': 766909, 'could you explore': 209846, 'you explore why': 1018499, 'explore why people': 292508, 'panic buying from': 637742, 'buying from supermarket': 150388, 'from supermarket haven': 337485, 'supermarket haven stockpiled': 820716, 'haven stockpiled anything': 383908, 'stockpiled anything and': 803832, 'anything and last': 80684, 'and last day': 65958, 'last day ve': 480186, 'day ve been': 228645, 've been trying': 952952, 'been trying to': 122274, 'food there nothing': 317153, 'there nothing more': 878875, 'nothing more worried': 573107, 'worried about malnutrition': 1010503, 'about malnutrition than': 25695, 'malnutrition than covid': 511876, 'down busy': 256577, 'busy aisle': 144858, 'or invite': 615821, 'invite friend': 444269, 'friend into': 333665, 'house someone': 406566, 'someone may': 784561, 'know because': 476291, 'symptom you': 830953, 'catch it': 167000, 'it stayhomesavelives': 461240, 'if you stay': 415526, 'stay home you': 797033, 'home you can': 402582, 'you can come': 1017647, 'can come in': 157933, 'you go down': 1018846, 'go down busy': 353487, 'down busy aisle': 256578, 'busy aisle in': 144860, 'aisle in the': 40279, 'supermarket or invite': 821815, 'or invite friend': 615822, 'invite friend into': 444270, 'friend into your': 333666, 'into your house': 443322, 'your house someone': 1024416, 'house someone may': 406567, 'someone may have': 784563, 'may have it': 521242, 'have it and': 381140, 'it and not': 456504, 'and not know': 67753, 'not know because': 570291, 'know because they': 476293, 'because they don': 119699, 'have symptom you': 382897, 'symptom you could': 830955, 'you could catch': 1018078, 'could catch it': 208995, 'catch it stayhomesavelives': 167004, 'winelands': 995935, 'several top': 753948, 'top wine': 925760, 'wine estate': 995809, 'estate in': 282131, 'the cape': 850359, 'cape winelands': 162628, 'winelands have': 995936, 'have shut': 382540, 'shut some': 767931, 'some or': 783466, 'or all': 614288, 'operation after': 613123, 'after member': 35924, 'of dutch': 582880, 'dutch wine': 263526, 'wine tour': 995921, 'tour which': 926939, 'which visited': 986435, 'visited 30': 959452, '30 estate': 17037, 'estate and': 282090, 'and venue': 74925, 'venue during': 954711, 'during 10': 262396, 'day trip': 228621, 'trip tested': 932169, 'several top wine': 753949, 'top wine estate': 925761, 'wine estate in': 995810, 'estate in the': 282133, 'in the cape': 429053, 'the cape winelands': 850361, 'cape winelands have': 162629, 'winelands have shut': 995937, 'have shut some': 382543, 'shut some or': 767932, 'some or all': 783467, 'or all of': 614290, 'their operation after': 874115, 'operation after member': 613125, 'after member of': 35925, 'member of dutch': 528138, 'of dutch wine': 582881, 'dutch wine tour': 263527, 'wine tour which': 995922, 'tour which visited': 926940, 'which visited 30': 986436, 'visited 30 estate': 959453, '30 estate and': 17038, 'estate and venue': 282095, 'and venue during': 74926, 'venue during 10': 954712, 'during 10 day': 262397, '10 day trip': 1393, 'day trip tested': 228622, 'trip tested positive': 932170, 'at the weekend': 101148, 'msm': 544546, 'attention msm': 102458, 'msm planting': 544554, 'planting the': 658767, 'the seed': 866638, 'seed of': 746154, 'shortage be': 764849, 'prepared and': 670160, 'up update': 946505, 'pandemic threatens': 636760, 'cause food': 167566, 'people especially': 647813, 'africa the': 35143, 'united nation': 942192, 'nation warned': 552365, 'friday afp': 333191, 'pay attention msm': 644764, 'attention msm planting': 102459, 'msm planting the': 544555, 'planting the seed': 658768, 'the seed of': 866639, 'seed of food': 746155, 'food shortage be': 316558, 'shortage be prepared': 764850, 'be prepared and': 116513, 'prepared and stock': 670162, 'stock up update': 803129, 'up update the': 946506, 'update the pandemic': 947251, 'the pandemic threatens': 863127, 'pandemic threatens to': 636762, 'threatens to cause': 893861, 'to cause food': 902534, 'cause food shortage': 167568, 'food shortage for': 316576, 'shortage for hundred': 764964, 'of people especially': 587909, 'people especially in': 647816, 'especially in africa': 280520, 'in africa the': 420090, 'africa the united': 35144, 'the united nation': 870419, 'united nation warned': 942195, 'nation warned on': 552366, 'on friday afp': 600996, 'dad brought': 224299, 'brought my': 141180, 'grandparent freezer': 361970, 'freezer bag': 332589, 'so my dad': 777833, 'my dad brought': 547882, 'dad brought my': 224300, 'brought my grandparent': 141181, 'my grandparent freezer': 548558, 'grandparent freezer bag': 361971, 'freezer bag of': 332590, 'bag of hand': 108356, 'optometrist': 614165, 'veterinary': 955742, 'cafe entertainment': 155105, 'venue optometrist': 954717, 'optometrist grocery': 614166, 'store bodega': 806744, 'bodega non': 133787, 'profit that': 682866, 'field veterinary': 304535, 'veterinary office': 955745, 'office dentist': 595402, 'dentist mail': 237100, 'mail center': 508588, 'center like': 169249, 'like ups': 491700, 'ups store': 947772, 'not all business': 568101, 'all business can': 42230, 'business can have': 143493, 'have their employee': 383048, 'their employee work': 873161, 'home retail restaurant': 401978, 'retail restaurant cafe': 718455, 'restaurant cafe entertainment': 716346, 'cafe entertainment venue': 155106, 'entertainment venue optometrist': 278615, 'venue optometrist grocery': 954718, 'optometrist grocery store': 614167, 'grocery store bodega': 365251, 'store bodega non': 806745, 'bodega non profit': 133788, 'non profit that': 566477, 'profit that work': 682867, 'the field veterinary': 855154, 'field veterinary office': 304536, 'veterinary office dentist': 955746, 'office dentist mail': 595403, 'dentist mail center': 237101, 'mail center like': 508589, 'center like ups': 169250, 'like ups store': 491701, 'resurgence': 717780, 'draya': 258546, 'firetrump': 308271, '19 kirana': 8246, 'see resurgence': 745638, 'resurgence say': 717783, 'say godrej': 738686, 'consumer ceo': 196769, 'ceo people': 169802, 'from around': 334587, 'world shared': 1009969, 'shared their': 755451, 'their failed': 873238, 'failed attempt': 296130, 'attempt at': 102214, 'at wildlife': 101561, 'wildlife photography': 992134, 'photography on': 655300, 'found their': 330418, 'their way': 875153, 'way onto': 969784, 'onto facebook': 611658, 'group wildlife': 366971, 'photography draya': 655288, 'draya firetrump': 258547, 'covid 19 kirana': 213323, '19 kirana store': 8247, 'kirana store would': 475410, 'store would see': 811646, 'would see resurgence': 1012226, 'see resurgence say': 745639, 'resurgence say godrej': 717784, 'say godrej consumer': 738687, 'godrej consumer ceo': 354888, 'consumer ceo people': 196770, 'ceo people from': 169803, 'people from around': 647981, 'from around the': 334590, 'the world shared': 871962, 'world shared their': 1009970, 'shared their failed': 755454, 'their failed attempt': 873239, 'failed attempt at': 296131, 'attempt at wildlife': 102217, 'at wildlife photography': 101562, 'wildlife photography on': 992136, 'photography on social': 655301, 'medium and they': 526996, 'and they have': 73911, 'they have found': 882319, 'have found their': 380706, 'found their way': 330419, 'their way onto': 875157, 'way onto facebook': 969785, 'onto facebook group': 611659, 'facebook group wildlife': 294934, 'group wildlife photography': 366972, 'wildlife photography draya': 992135, 'photography draya firetrump': 655289, 'this connecticut': 886834, 'connecticut market': 194681, 'taking employee': 833342, 'customer temperature': 222905, 'temperature at': 837364, 'door during': 255578, 'this connecticut market': 886835, 'connecticut market is': 194682, 'market is taking': 516644, 'is taking employee': 452542, 'taking employee and': 833343, 'and customer temperature': 60869, 'customer temperature at': 222906, 'temperature at the': 837366, 'the door during': 853563, 'door during covid': 255579, 'brenda': 139305, 'sensitizing': 750726, 'hello brenda': 389138, 'brenda glad': 139306, 'glad you': 351547, 'are sensitizing': 89985, 'sensitizing people': 750727, 'themselves against': 876740, 'work who': 1006012, 'would pay': 1012105, 'pay our': 645027, 'our bill': 622209, 'also provide': 48709, 'hello brenda glad': 389139, 'brenda glad you': 139307, 'glad you are': 351548, 'you are sensitizing': 1017231, 'are sensitizing people': 89986, 'sensitizing people to': 750728, 'people to protect': 649928, 'protect themselves against': 685016, 'themselves against covid': 876741, '19 but how': 5505, 'but how can': 145968, 'can we stay': 160201, 'we stay in': 973388, 'the house without': 857653, 'house without going': 406700, 'to work who': 918805, 'work who would': 1006014, 'who would pay': 990061, 'would pay our': 1012106, 'pay our bill': 645028, 'our bill and': 622210, 'bill and also': 130500, 'and also provide': 57970, 'also provide food': 48713, 'to stock at': 915428, 'stock at home': 801880, 'fox10phoenix': 330782, 'lottery just': 504458, 'this worth': 891528, 'worth in': 1011373, 'market toiletpaper': 517248, 'toiletpaper arizona': 921751, 'arizona stoppanicbuying': 92854, 'stoppanicbuying foxnews': 805561, 'foxnews fox10phoenix': 330801, 'the lottery just': 859750, 'lottery just now': 504459, 'just now how': 469345, 'now how much': 574956, 'much is this': 545023, 'is this worth': 453135, 'this worth in': 891529, 'worth in stock': 1011374, 'in stock market': 428315, 'stock market toiletpaper': 802447, 'market toiletpaper arizona': 517249, 'toiletpaper arizona stoppanicbuying': 921752, 'arizona stoppanicbuying foxnews': 92855, 'stoppanicbuying foxnews fox10phoenix': 805562, 'easter wish': 265531, 'wish fan': 996757, 'fan sharing': 298538, 'sharing then': 755600, 'now video': 576303, 'video with': 956967, 'special appearance': 787847, 'appearance from': 82133, 'from friendly': 335574, 'friendly mr': 333969, 'mr sanitizer': 544404, 'happy easter wish': 377611, 'easter wish fan': 265532, 'wish fan sharing': 996758, 'fan sharing then': 298539, 'sharing then and': 755601, 'then and now': 876989, 'and now video': 67870, 'now video with': 576304, 'video with special': 956970, 'with special appearance': 1000904, 'special appearance from': 787848, 'appearance from friendly': 82134, 'from friendly mr': 335575, 'friendly mr sanitizer': 333970, 'fullest': 341001, 'pajama': 634396, 'hairy': 374071, 'changed you': 172611, 'now living': 575231, 'living life': 496405, 'the fullest': 856029, 'fullest if': 341002, 'you rock': 1020948, 'rock up': 724930, 'essential wearing': 281768, 'wearing your': 974827, 'your pajama': 1025178, 'pajama with': 634399, 'having hair': 384099, 'hair that': 374011, 'that look': 844943, 'like hairy': 490360, 'hairy dog': 374072, 'dog butt': 252053, 'butt stayhomesavelives': 148108, 'stayhomesavelives lockdown': 798409, 'have changed you': 379949, 'changed you re': 172612, 're now living': 699142, 'now living life': 575232, 'living life to': 496406, 'life to the': 489139, 'to the fullest': 916737, 'the fullest if': 856030, 'fullest if you': 341003, 'if you rock': 415513, 'you rock up': 1020950, 'rock up into': 724931, 'up into supermarket': 945217, 'into supermarket to': 443064, 'get essential wearing': 346954, 'essential wearing your': 281769, 'wearing your pajama': 974828, 'your pajama with': 1025179, 'pajama with face': 634400, 'mask and having': 518335, 'and having hair': 64295, 'having hair that': 384100, 'hair that look': 374012, 'that look like': 844945, 'look like hairy': 502482, 'like hairy dog': 490361, 'hairy dog butt': 374073, 'dog butt stayhomesavelives': 252054, 'butt stayhomesavelives lockdown': 148109, 'see lot': 745374, 'is awesome': 445937, 'awesome also': 106150, 'also bet': 47959, 'are washing': 91538, 'hand not': 375096, 'to screw': 913933, 'screw anyone': 742785, 'anyone up': 80592, 'your shoe': 1025755, 'shoe after': 759652, 'you walked': 1022110, 'through everyone': 894448, 'everyone droplet': 286830, 'droplet sleep': 260481, 'sleep tight': 773796, 'tight stayhome': 895843, 'see lot of': 745376, 'of people wearing': 588023, 'people wearing mask': 650177, 'wearing mask into': 974695, 'store which is': 811272, 'which is awesome': 985985, 'is awesome also': 445938, 'awesome also bet': 106151, 'also bet they': 47960, 'bet they are': 128113, 'they are washing': 881455, 'are washing their': 91539, 'their hand not': 873481, 'hand not to': 375098, 'not to screw': 572180, 'to screw anyone': 913934, 'screw anyone up': 742786, 'anyone up but': 80593, 'up but what': 944530, 'you doing with': 1018303, 'doing with your': 252869, 'with your shoe': 1002233, 'your shoe after': 1025756, 'shoe after you': 759653, 'after you walked': 36611, 'you walked through': 1022111, 'walked through everyone': 964981, 'through everyone droplet': 894449, 'everyone droplet sleep': 286831, 'droplet sleep tight': 260482, 'sleep tight stayhome': 773797, 'vege': 953904, 've finally': 953123, 'finally convinced': 305965, 'convinced my': 202663, 'their fruit': 873389, 'fruit vege': 339173, 'vege my': 953905, 'now sent': 575777, 'this floor': 887555, 'floor plan': 310836, 'plan of': 658187, 'shop clearly': 760036, 'clearly 44': 181482, '44 total': 19025, 'total moron': 926195, 've finally convinced': 953124, 'finally convinced my': 305966, 'convinced my parent': 202664, 'my parent to': 549701, 'parent to let': 641752, 'to let me': 909208, 'me get their': 522807, 'get their fruit': 348332, 'their fruit vege': 873390, 'fruit vege my': 339174, 'vege my dad': 953906, 'dad ha now': 224341, 'ha now sent': 371404, 'now sent me': 575778, 'me this floor': 523709, 'this floor plan': 887556, 'floor plan of': 310837, 'plan of the': 658189, 'the shop clearly': 866984, 'shop clearly 44': 760037, 'clearly 44 total': 181483, '44 total moron': 19026, 'real it': 701231, 'taken thousand': 833084, 'life already': 488458, 'already self': 47642, 'isolation distancing': 455248, 'important always': 418729, 'always wash': 49787, 'hand wish': 375999, 'wish soap': 996810, 'soap clean': 778971, 'use high': 949261, 'high alcohol': 394910, 'sanitizer create': 734713, 'more awareness': 538695, 'awareness about': 105674, 'coronavirus staysafe': 206820, 'staysafe 19': 798777, 'is real it': 451268, 'real it ha': 701232, 'it ha taken': 458416, 'ha taken thousand': 372153, 'taken thousand of': 833085, 'thousand of life': 893450, 'of life already': 585814, 'life already self': 488459, 'already self isolation': 47643, 'self isolation distancing': 747763, 'isolation distancing is': 455249, 'distancing is important': 247248, 'is important always': 448724, 'important always wash': 418730, 'always wash your': 49789, 'your hand wish': 1024245, 'hand wish soap': 376000, 'wish soap clean': 996811, 'soap clean water': 778972, 'clean water use': 180684, 'water use high': 969236, 'use high alcohol': 949262, 'high alcohol hand': 394912, 'hand sanitizer create': 375360, 'sanitizer create more': 734714, 'create more awareness': 215691, 'more awareness about': 538696, 'awareness about coronavirus': 105675, 'about coronavirus staysafe': 25033, 'coronavirus staysafe 19': 206821, 'vancouver is': 952339, 'awesome vancouver': 106209, 'vancouver based': 952326, 'based grocery': 111599, 'taking dramatic': 833333, 'dramatic step': 258307, 'serve unprecedented': 751962, 'vancouver is awesome': 952340, 'is awesome vancouver': 445942, 'awesome vancouver based': 106210, 'vancouver based grocery': 952327, 'based grocery delivery': 111600, 'service taking dramatic': 752894, 'taking dramatic step': 833334, 'dramatic step to': 258308, 'step to serve': 799665, 'to serve unprecedented': 914275, 'serve unprecedented demand': 751963, 'unprecedented demand via': 943126, 'time friend': 896799, 'trying time friend': 934747, 'time friend pantrystaples': 896800, 'our info': 623543, 'info re': 437561, 're owner': 699231, 'owner corporation': 632435, 'corporation body': 207394, 'body corp': 133841, 'corp and': 207181, 'our info re': 623544, 'info re owner': 437562, 're owner corporation': 699232, 'owner corporation body': 632436, 'corporation body corp': 207395, 'body corp and': 133842, 'skyrim': 773277, 'seductivesunday': 744853, 'saying skyrim': 739680, 'skyrim 19': 773278, 'sundaythoughts seductivesunday': 818347, 'just saying skyrim': 469716, 'saying skyrim 19': 739681, 'skyrim 19 toiletpaperapocalypse': 773279, '19 toiletpaperapocalypse toiletpaper': 11498, 'toiletpaperapocalypse toiletpaper quaratinelife': 922930, 'toiletpaper quaratinelife sundaythoughts': 922388, 'quaratinelife sundaythoughts seductivesunday': 693153, 'reconsidering': 704885, 'we enjoy': 971461, 'enjoy picking': 277167, 'picking our': 655864, 'own produce': 632154, 'produce however': 680300, 'keeping many': 472474, 'of away': 580486, 'are reconsidering': 89512, 'reconsidering our': 704886, 'our stance': 624888, 'on having': 601247, 'having our': 384212, 'delivered here': 233336, 'we like grocery': 972193, 'like grocery shopping': 490346, 'grocery shopping because': 365000, 'shopping because we': 762179, 'because we enjoy': 119803, 'we enjoy picking': 971463, 'enjoy picking our': 277168, 'picking our own': 655865, 'our own produce': 624209, 'own produce however': 632155, 'produce however covid': 680301, '19 is keeping': 7999, 'is keeping many': 449172, 'keeping many of': 472475, 'many of away': 514367, 'of away from': 580487, 'the store we': 868139, 'we are reconsidering': 970683, 'are reconsidering our': 89513, 'reconsidering our stance': 704887, 'our stance on': 624889, 'stance on having': 793475, 'on having our': 601248, 'having our grocery': 384213, 'our grocery delivered': 623304, 'grocery delivered here': 364424, 'delivered here why': 233337, 'gosh': 358343, 'awfully': 106256, 'gagged': 342723, 'woeful': 1003340, '100x': 2213, 'gosh that': 358344, 'sound awfully': 786266, 'awfully familiar': 106257, 'familiar even': 297529, 'even prior': 284493, 'pandemic msm': 635993, 'msm totally': 544558, 'totally gagged': 926338, 'gagged silenced': 342726, 'silenced such': 769704, 'such woeful': 816875, 'woeful inadequate': 1003341, 'inadequate profit': 431206, 'profit medical': 682809, 'care is': 164029, 'it 100x': 456173, '100x drug': 2214, 'cattle herd': 167352, 'herd 100': 392603, '100 patient': 2012, 'patient per': 644235, 'per md': 650937, 'md day': 522262, 'day doing': 227532, 'gosh that sound': 358345, 'that sound awfully': 846417, 'sound awfully familiar': 786267, 'awfully familiar even': 106258, 'familiar even prior': 297530, 'even prior to': 284494, 'the pandemic msm': 863027, 'pandemic msm totally': 635994, 'msm totally gagged': 544559, 'totally gagged silenced': 926339, 'gagged silenced such': 342727, 'silenced such woeful': 769705, 'such woeful inadequate': 816876, 'woeful inadequate profit': 1003342, 'inadequate profit medical': 431207, 'profit medical care': 682810, 'medical care is': 526082, 'care is and': 164030, 'is and ha': 445704, 'ha been with': 369986, 'been with it': 122383, 'with it 100x': 999057, 'it 100x drug': 456174, '100x drug price': 2215, 'price and cattle': 672377, 'and cattle herd': 59633, 'cattle herd 100': 167353, 'herd 100 patient': 392604, '100 patient per': 2013, 'patient per md': 644236, 'per md day': 650938, 'md day doing': 522263, 'day doing nothing': 227533, 'chadha': 170415, 'chadha indian': 170416, 'indian all': 434767, 'all basic': 42119, 'doubled instead': 256119, 'getting free': 348994, 'free black': 331675, 'marketing started': 517704, 'started on': 794792, 'of chinavirus': 581372, 'chinavirus instead': 177162, 'instead all': 440147, 'food electricity': 314347, 'electricity health': 271180, 'and tax': 73048, 'tax everything': 834976, 'everything should': 287991, 'free like': 331947, 'chadha indian all': 170417, 'indian all basic': 434768, 'all basic commodity': 42120, 'basic commodity price': 111851, 'commodity price doubled': 189267, 'price doubled instead': 673505, 'doubled instead of': 256120, 'of getting free': 584122, 'getting free black': 348995, 'free black marketing': 331676, 'black marketing started': 132103, 'marketing started on': 517705, 'started on the': 794795, 'on the name': 604245, 'name of chinavirus': 551660, 'of chinavirus instead': 581373, 'chinavirus instead all': 177163, 'instead all food': 440148, 'all food electricity': 42809, 'food electricity health': 314348, 'electricity health and': 271181, 'health and tax': 386158, 'and tax everything': 73050, 'tax everything should': 834977, 'everything should be': 287992, 'be free like': 114955, 'our governor': 623280, 'governor told': 361015, 'out had': 626253, 'wa of': 962800, 'one getting': 606344, 'getting dirty': 348936, 'why thing': 991463, 'never end': 557966, 'end pa': 275934, 'our governor told': 623283, 'governor told to': 361016, 'told to wear': 923774, 'mask when we': 519544, 'are out had': 88884, 'out had to': 626254, 'today wa of': 920452, 'wa of people': 962801, 'mask and wa': 518388, 'and wa the': 75101, 'wa the one': 963459, 'the one getting': 862202, 'one getting dirty': 606345, 'getting dirty look': 348937, 'dirty look this': 243764, 'look this is': 502617, 'is why thing': 453980, 'why thing will': 991464, 'thing will only': 884994, 'will only get': 994331, 'only get worse': 610507, 'get worse and': 348644, 'worse and this': 1010866, 'this will never': 891431, 'will never end': 994162, 'never end pa': 557967, 'be victim': 117991, 'victim retail': 956514, 'could explode': 209150, 'explode due': 292295, 'will be victim': 992760, 'be victim retail': 117993, 'victim retail store': 956515, 'state could explode': 795492, 'could explode due': 209152, 'explode due to': 292296, 'going know': 355255, 'difficult right': 242255, 'shortage stress': 765225, 'stress eating': 813320, 'eating panic': 266278, 'this believe': 886548, 'in yourself': 431141, 'keep going know': 471546, 'going know it': 355256, 'know it difficult': 476525, 'it difficult right': 457554, 'difficult right now': 242256, 'right now food': 722063, 'now food shortage': 574710, 'food shortage stress': 316605, 'shortage stress eating': 765226, 'stress eating panic': 813321, 'eating panic you': 266279, 'panic you ve': 638819, 've got this': 953200, 'got this believe': 358937, 'this believe in': 886549, 'believe in yourself': 126294, '20something': 14930, 'fella': 303255, 'lawd': 482463, '20something young': 14931, 'young fella': 1022591, 'fella just': 303258, 'he wearing': 385651, 'other on': 620603, 'know he': 476419, 'he one': 385278, 'who ll': 989225, 'baby lawd': 106650, 'lawd save': 482464, 'save fightcovid19': 737499, '20something young fella': 14932, 'young fella just': 1022592, 'fella just walked': 303259, 'just walked past': 470212, 'past me into': 643567, 'me into grocery': 522992, 'store he wearing': 808125, 'he wearing face': 385652, 'the other on': 862542, 'other on top': 620605, 'just know he': 469105, 'know he one': 476420, 'he one of': 385279, 'one who ll': 607453, 'who ll survive': 989228, 'll survive to': 497057, 'have baby lawd': 379396, 'baby lawd save': 106651, 'lawd save fightcovid19': 482465, 'line after': 492932, 'after line': 35870, 'of somber': 589885, 'somber faced': 782227, 'faced people': 295033, 'of em': 583017, 'em to': 272085, 'to bite': 901827, 'bite me': 131871, 'me zombieapocalypse': 524058, 'this morning with': 889039, 'morning with line': 541549, 'with line after': 999237, 'line after line': 492933, 'after line of': 35871, 'line of somber': 493314, 'of somber faced': 589886, 'somber faced people': 782228, 'faced people just': 295034, 'people just waiting': 648564, 'just waiting for': 470199, 'waiting for one': 964327, 'one of em': 606742, 'of em to': 583019, 'em to bite': 272086, 'to bite me': 901829, 'bite me zombieapocalypse': 131872, 'child across': 175989, 'england who': 277042, 'who normally': 989340, 'normally receive': 567527, 'given 15': 350934, 'voucher while': 960683, 'while school': 987237, 'shut during': 767872, 'pandemic story': 636568, 'child across england': 175990, 'across england who': 29320, 'england who normally': 277043, 'who normally receive': 989341, 'normally receive free': 567528, 'school meal will': 741863, 'meal will be': 524305, 'be given 15': 115021, 'given 15 supermarket': 350935, '15 supermarket voucher': 3838, 'supermarket voucher while': 823678, 'voucher while school': 960684, 'while school are': 987238, 'school are shut': 741699, 'are shut during': 90091, 'shut during the': 767873, 'the pandemic story': 863110, 'b1g1': 106443, 'their on': 874095, 'demand price': 236065, 'same renting': 733269, 'renting from': 711316, 'encourage staying': 275631, 'home flattening': 401197, 'no instead': 564509, 'some money': 783311, 'me no': 523216, 'matter how': 520571, 'many b1g1': 513813, 'b1g1 free': 106444, 'free you': 332349, 'send thought': 749972, 'with the spreading': 1001492, 'spreading of covid': 791012, '19 should make': 10501, 'should make their': 766215, 'make their on': 510597, 'their on demand': 874096, 'on demand price': 600284, 'demand price the': 236070, 'price the same': 676859, 'the same renting': 866290, 'same renting from': 733270, 'renting from the': 711317, 'from the box': 337619, 'the box to': 849925, 'box to encourage': 137185, 'to encourage staying': 905067, 'encourage staying at': 275632, 'at home flattening': 98994, 'home flattening the': 401198, 'curve but no': 221838, 'but no instead': 146488, 'no instead of': 564510, 'of getting some': 584128, 'getting some money': 349296, 'some money you': 783314, 'money you re': 537199, 're getting no': 698732, 'getting no money': 349148, 'no money from': 564782, 'money from me': 536769, 'from me no': 336397, 'me no matter': 523217, 'no matter how': 564730, 'matter how many': 520573, 'how many b1g1': 408246, 'many b1g1 free': 513814, 'b1g1 free you': 106445, 'free you send': 332351, 'you send thought': 1021117, 'this stockpiling': 890336, 'disgusting nursing': 245430, 'and shameless': 71372, 'shameless people': 754728, 'ashamed if': 95052, 'this never': 889105, 'never realized': 558150, 'realized this': 701920, 'such selfish': 816737, 'selfish generation': 748103, 'generation protect': 345633, 'this stockpiling is': 890337, 'stockpiling is disgusting': 803999, 'is disgusting nursing': 447224, 'disgusting nursing home': 245431, 'nursing home and': 577611, 'home and elderly': 400636, 'and elderly people': 61991, 'elderly people struggling': 270834, 'people struggling to': 649676, 'get food because': 347033, 'food because people': 313710, 'because people have': 119474, 'people have been': 648164, 'have been so': 379686, 'been so greedy': 121993, 'greedy and shameless': 363475, 'and shameless people': 71374, 'shameless people should': 754729, 'people should feel': 649443, 'should feel ashamed': 765986, 'feel ashamed if': 302571, 'ashamed if they': 95053, 'of this never': 592013, 'this never realized': 889108, 'never realized this': 558151, 'realized this wa': 701922, 'this wa such': 891088, 'wa such selfish': 963349, 'such selfish generation': 816738, 'selfish generation protect': 748104, 'generation protect the': 345634, 'aust': 103152, 'an argument': 55392, 'argument from': 92752, 'bank about': 109542, 'of continuing': 581825, 'export food': 292638, 'security easy': 744587, 'easy when': 265805, 'when aust': 983192, 'aust produce': 103153, 'produce 3x': 680160, '3x the': 18496, 'the red': 865379, 'red meat': 705597, 'meat it': 525637, 'it consumes': 457296, 'an argument from': 55394, 'argument from the': 92754, 'world bank about': 1009346, 'bank about the': 109543, 'importance of continuing': 418700, 'of continuing to': 581826, 'continuing to export': 201560, 'to export food': 905506, 'export food in': 292639, '19 to protect': 11447, 'to protect food': 912306, 'protect food security': 684835, 'food security easy': 316345, 'security easy when': 744588, 'easy when aust': 265806, 'when aust produce': 983193, 'aust produce 3x': 103154, 'produce 3x the': 680161, '3x the red': 18497, 'the red meat': 865384, 'red meat it': 705601, 'meat it consumes': 525638, 'lockeddown': 500509, 'throng market': 894264, 'market pakistan': 516830, 'pakistan food': 634452, 'food lockeddown': 315339, 'for food item': 321601, 'food item is': 315215, 'item is on': 463388, 'the rise people': 865859, 'rise people throng': 722977, 'people throng market': 649859, 'throng market pakistan': 894265, 'market pakistan food': 516831, 'pakistan food lockeddown': 634453, 'jerkin': 465162, 'squirtin': 791582, 'serious post': 751448, 'post but': 666027, 'share couple': 754973, 'couple good': 211593, 'who deal': 988541, 'depression especially': 237645, 'uncertainty now': 939723, 'to jerkin': 908662, 'jerkin and': 465163, 'and squirtin': 72175, 'this is more': 888321, 'is more serious': 449725, 'more serious post': 540358, 'serious post but': 751449, 'post but wanted': 666028, 'to share couple': 914338, 'share couple good': 754974, 'couple good resource': 211594, 'good resource for': 357657, 'resource for people': 714787, 'me who deal': 523966, 'who deal with': 988542, 'with anxiety and': 997268, 'and depression especially': 61236, 'depression especially in': 237646, 'especially in these': 280532, 'of uncertainty now': 592600, 'uncertainty now get': 939724, 'now get back': 574769, 'back to jerkin': 107375, 'to jerkin and': 908663, 'jerkin and squirtin': 465164, 'many retailer': 514645, 'are wondering': 91674, 'few consideration': 303752, 'consideration from': 195253, 'many retailer are': 514646, 'retailer are wondering': 719021, 'are wondering how': 91675, 'wondering how the': 1004162, 'pandemic will change': 637002, 'will change shopping': 992917, 'change shopping behavior': 172256, 'shopping behavior here': 762204, 'behavior here are': 124062, 'are few consideration': 86530, 'few consideration from': 303753, 'buying weed': 151333, 'weed instead': 975760, 'panic buying weed': 637957, 'buying weed instead': 151334, 'weed instead of': 975761, '19 because know': 5330, 'because know how': 119221, 'how to live': 409039, 'emma': 273224, 'fowle': 330736, 'emma fowle': 273227, 'fowle our': 330737, 'our foodbank': 623139, 'foodbank could': 317762, 'lockdown end': 499335, 'end volunteer': 276060, 'stepped back': 799765, 'back demand': 106949, 'skyrocketed we': 773394, 've rolled': 953510, 'new process': 559351, 'most to': 542818, 'emma fowle our': 273228, 'fowle our foodbank': 330738, 'our foodbank could': 623140, 'foodbank could run': 317763, 'before the lockdown': 123172, 'the lockdown end': 859595, 'lockdown end volunteer': 499339, 'end volunteer have': 276061, 'volunteer have stepped': 960280, 'have stepped back': 382752, 'stepped back demand': 799766, 'back demand ha': 106950, 'ha skyrocketed we': 371963, 'skyrocketed we ve': 773395, 'we ve rolled': 973707, 've rolled out': 953511, 'out new process': 626629, 'new process to': 559352, 'process to get': 679974, 'get supply to': 348160, 'supply to the': 826031, 'it most to': 459687, 'most to help': 542820, 'lymeregis': 507107, 'man wa': 512291, 'licking his': 488244, 'finger and': 307783, 'and deliberately': 61073, 'deliberately rubbing': 232974, 'rubbing them': 726978, 'bridport supermarket': 139657, 'supermarket lymeregis': 821417, 'lymeregis bridport': 507108, 'bridport dorset': 139656, 'the man wa': 859984, 'man wa arrested': 512292, 'arrested after licking': 93806, 'after licking his': 35866, 'licking his finger': 488245, 'his finger and': 397430, 'finger and deliberately': 307784, 'and deliberately rubbing': 61074, 'deliberately rubbing them': 232975, 'rubbing them on': 726979, 'them on product': 876093, 'product in bridport': 681279, 'in bridport supermarket': 420977, 'bridport supermarket lymeregis': 139658, 'supermarket lymeregis bridport': 821418, 'lymeregis bridport dorset': 507109, 'engulf': 277072, 'golibar': 356161, 'santacruz': 736609, '21dayschallenge': 15111, 'havoc confusion': 384424, 'confusion fear': 194381, 'food engulf': 314357, 'engulf after': 277073, 'after announcement': 35369, 'announcement govt': 77157, 'should ensure': 765962, 'essential are': 280796, 'not hampered': 569768, 'hampered pic': 374616, 'of golibar': 584206, 'golibar santacruz': 356162, 'santacruz last': 736610, 'night 21daylockdown': 562922, '21daylockdown 21dayslockdown': 15088, '21dayslockdown 21dayschallenge': 15116, 'panic havoc confusion': 638165, 'havoc confusion fear': 384425, 'confusion fear of': 194382, 'of food engulf': 583684, 'food engulf after': 314358, 'engulf after announcement': 277074, 'after announcement govt': 35370, 'announcement govt should': 77158, 'govt should ensure': 361278, 'should ensure supply': 765965, 'ensure supply of': 278044, 'of essential are': 583161, 'essential are not': 280798, 'are not hampered': 88386, 'not hampered pic': 569769, 'hampered pic of': 374617, 'pic of golibar': 655611, 'of golibar santacruz': 584207, 'golibar santacruz last': 356163, 'santacruz last night': 736611, 'last night 21daylockdown': 480365, 'night 21daylockdown 21dayslockdown': 562923, '21daylockdown 21dayslockdown 21dayschallenge': 15089, 'reset': 714164, '15 yelled': 3878, 'yelled for': 1015234, 'the room': 865984, 'the screen': 866532, 'screen our': 742711, 'data had': 226259, 'been reset': 121837, 'reset our': 714170, 'our 80': 622007, '80 usage': 22645, 'usage wa': 948857, 'wa down': 962023, 'to under': 917892, '10 there': 1702, 'wa note': 962781, 'provider that': 686797, 'were responding': 980058, 'by removing': 153761, 'removing limit': 710903, 'and overage': 68565, 'overage from': 630986, '15 yelled for': 3879, 'yelled for him': 1015235, 'him to come': 396740, 'into the room': 443164, 'the room and': 865985, 'room and look': 725877, 'at the screen': 101090, 'the screen our': 866535, 'screen our data': 742712, 'our data had': 622696, 'data had been': 226260, 'had been reset': 372909, 'been reset our': 121838, 'reset our 80': 714171, 'our 80 usage': 622008, '80 usage wa': 22646, 'usage wa down': 948858, 'wa down to': 962025, 'down to under': 257385, 'to under 10': 917893, 'under 10 there': 939957, '10 there wa': 1703, 'there wa note': 879256, 'wa note from': 962782, 'note from the': 572731, 'from the provider': 337846, 'the provider that': 864723, 'provider that they': 686799, 'they were responding': 883798, 'were responding to': 980059, '19 by removing': 5573, 'by removing limit': 153762, 'removing limit and': 710904, 'limit and overage': 492283, 'and overage from': 68566, 'overage from consumer': 630987, 'from consumer account': 334950, 'nj man': 563444, 'ha face': 370576, 'face terror': 294784, 'nj man who': 563446, 'her he ha': 392098, 'he ha face': 385024, 'ha face terror': 370577, 'face terror charge': 294785, 'nespresso': 557495, 'peets': 646315, 'mountainlife': 543434, 'we morris': 972391, 'morris don': 541682, 'don stock': 253933, 'what really': 982081, 'important coffee': 418759, 'coffee stockup': 185540, 'stockup nespresso': 804184, 'nespresso starbucks': 557496, 'starbucks peets': 794101, 'peets mountainlife': 646316, 'we morris don': 972392, 'morris don stock': 541683, 'don stock up': 253934, 'paper we know': 641067, 'know what really': 476974, 'what really important': 982085, 'really important coffee': 702326, 'important coffee stockup': 418760, 'coffee stockup nespresso': 185541, 'stockup nespresso starbucks': 804185, 'nespresso starbucks peets': 557497, 'starbucks peets mountainlife': 794102, 'authenticarkansas': 103623, 'arpreservation': 93675, 'wearemainstreet': 974557, 'tip let': 898832, 'favorite retailer': 300542, 'retailer know': 719230, 'that little': 844903, 'little gesture': 495367, 'gesture can': 346433, 'their morale': 874006, 'morale more': 538422, 'at authenticarkansas': 98076, 'authenticarkansas arpreservation': 103624, 'arpreservation wearemainstreet': 93676, 'consumer tip let': 199297, 'tip let your': 898833, 'let your favorite': 487222, 'your favorite retailer': 1023832, 'favorite retailer know': 300543, 'retailer know you': 719231, 'you are thinking': 1017263, 'are thinking about': 91043, 'thinking about them': 885860, 'about them that': 26600, 'them that little': 876378, 'that little gesture': 844905, 'little gesture can': 495368, 'gesture can mean': 346434, 'lot to their': 504397, 'to their morale': 917255, 'their morale more': 874007, 'morale more at': 538423, 'more at authenticarkansas': 538661, 'at authenticarkansas arpreservation': 98077, 'authenticarkansas arpreservation wearemainstreet': 103625, 'naturalresouces': 552931, 'russi': 728410, 'russia ha': 728486, 'ha unveiled': 372401, 'unveiled on': 944017, 'april it': 83625, 'country oil': 210932, 'than fifth': 840648, 'fifth and': 304565, 'other producer': 620762, 'producer like': 680653, 'the naturalresouces': 861320, 'naturalresouces russi': 552932, 'russia ha unveiled': 728490, 'ha unveiled on': 372402, 'unveiled on april': 944018, 'on april it': 599448, 'april it plan': 83627, 'it plan to': 460337, 'cut the country': 223573, 'the country oil': 852125, 'country oil output': 210933, 'output by more': 629242, 'more than fifth': 540619, 'than fifth and': 840649, 'fifth and called': 304566, 'and called on': 59427, 'called on other': 156400, 'on other producer': 602560, 'other producer like': 620764, 'producer like the': 680654, 'like the to': 491401, 'the to join': 869682, 'to join in': 908677, 'join in their': 466754, 'effort to prop': 269637, 'pandemic the naturalresouces': 636689, 'the naturalresouces russi': 861321, 'grocery cant': 364340, 'cant you': 162353, 'understand when': 940808, 'for encouraging': 321047, 'people starmer': 649534, 'online you should': 609778, 'shopping for anything': 762658, 'anything but grocery': 80696, 'but grocery cant': 145827, 'grocery cant you': 364341, 'cant you understand': 162354, 'you understand when': 1021970, 'understand when the': 940809, 'when the government': 984156, 'the government say': 856597, 'government say food': 360566, 'say food and': 738640, 'and medicine and': 66900, 'medicine and shame': 526723, 'and shame on': 71362, 'on you online': 605432, 'you online for': 1020205, 'online for encouraging': 608225, 'for encouraging people': 321048, 'encouraging people starmer': 275729, 'is posting': 450959, 'about day': 25072, 'never shut': 558197, 'shut my': 767904, 'job down': 465802, 'everyone is posting': 287101, 'is posting about': 450960, 'posting about day': 666639, 'about day of': 25075, 'of quarantine but': 588652, 'store so they': 810238, 'so they will': 778486, 'will never shut': 994173, 'never shut my': 558199, 'shut my job': 767905, 'my job down': 548909, 'imon': 417518, 'april imon': 83616, 'imon connection': 417519, 'connection newsletter': 194713, 'newsletter is': 561032, 'available discover': 104318, 'discover new': 244661, 'contact imon': 200100, 'imon customer': 417521, 'service read': 752746, 'way scammer': 969855, 'the april imon': 848839, 'april imon connection': 83617, 'imon connection newsletter': 417520, 'connection newsletter is': 194714, 'newsletter is now': 561033, 'now available discover': 574153, 'available discover new': 104319, 'discover new way': 244662, 'way to contact': 970003, 'to contact imon': 903353, 'contact imon customer': 200101, 'imon customer service': 417523, 'customer service read': 222832, 'service read about': 752747, 'the way scammer': 871181, 'way scammer are': 969856, 'make money from': 510182, 'money from covid': 536766, '19 and get': 5030, 'and get tip': 63609, 'get tip on': 348455, 'safe while shopping': 730142, 'while shopping online': 987269, 'am looking': 50193, 'some true': 784120, 'true stats': 933171, 'restaurant online': 716605, 'order sanitizers': 618561, 'sanitizers sale': 736381, 'sale netflix': 732364, 'netflix sale': 557623, 'sale etc': 732191, 'this any': 886375, 'any lead': 79398, 'lead site': 483316, 'site profile': 771989, 'profile etc': 682613, 'am looking for': 50195, 'looking for some': 502902, 'for some true': 325775, 'some true stats': 784121, 'true stats on': 933172, 'stats on business': 796629, 'on business for': 599738, 'business for restaurant': 143756, 'for restaurant online': 325176, 'restaurant online shopping': 716607, 'shopping order sanitizers': 763564, 'order sanitizers sale': 618563, 'sanitizers sale netflix': 736382, 'sale netflix sale': 732365, 'netflix sale etc': 557624, 'sale etc during': 732192, 'etc during this': 282505, 'during this any': 263261, 'this any lead': 886376, 'any lead site': 79399, 'lead site profile': 483317, 'site profile etc': 771990, '4u': 19550, 'like4likes': 491906, 'homemadesanitizer': 402866, 'home tip': 402300, 'tip 4u': 898687, '4u via': 19553, 'via handsanitizer': 956007, 'handsanitizer sanitizer': 376628, 'sanitizer like4likes': 735290, 'like4likes homemadesanitizer': 491907, 'at home tip': 99148, 'home tip 4u': 402301, 'tip 4u via': 898688, '4u via handsanitizer': 19554, 'via handsanitizer sanitizer': 956010, 'handsanitizer sanitizer like4likes': 376632, 'sanitizer like4likes homemadesanitizer': 735291, 'tahlequahtdp': 831800, 'via tahlequahtdp': 956278, 'tahlequahtdp attorney': 831801, 'hunter issue': 411393, 'coronavirus testing': 206886, 'via tahlequahtdp attorney': 956279, 'tahlequahtdp attorney general': 831802, 'general hunter issue': 345357, 'hunter issue consumer': 411394, 'alert on at': 41478, 'on at home': 599497, 'home coronavirus testing': 400953, 'iodised': 444442, 'basic comodities': 111853, 'comodities are': 190291, 'getting higher': 349035, 'higher in': 395609, 'uganda most': 937976, 'most item': 542461, 'are 3x': 84128, '3x their': 18499, 'their original': 874139, 'price iodised': 674849, 'iodised table': 444443, 'table salt': 831496, 'salt in': 732811, 'in lira': 424792, 'lira district': 494229, 'district is': 248370, 'is 00': 445138, 'per packet': 650968, 'packet yet': 633723, 'yet it': 1016115, 'wa 700': 961396, 'name of covid': 551661, 'of basic comodities': 580566, 'basic comodities are': 111854, 'comodities are getting': 190292, 'are getting higher': 86809, 'getting higher in': 349036, 'higher in uganda': 395612, 'in uganda most': 430374, 'uganda most item': 937977, 'most item are': 542463, 'item are 3x': 463088, 'are 3x their': 84131, '3x their original': 18500, 'their original price': 874140, 'original price iodised': 619580, 'price iodised table': 674850, 'iodised table salt': 444444, 'table salt in': 831497, 'salt in lira': 732812, 'in lira district': 424793, 'lira district is': 494230, 'district is 00': 248371, 'is 00 per': 445139, '00 per packet': 433, 'per packet yet': 650969, 'packet yet it': 633724, 'yet it wa': 1016118, 'it wa 700': 462055, 'washingtondc': 967817, 'usa shopper': 948745, 'shopper line': 761594, 'in washingtondc': 430713, 'washingtondc practicing': 967818, 'on vital': 605062, 'the mayor': 860318, 'mayor of': 521976, 'city ordered': 179313, 'ordered on': 618875, 'usa shopper line': 948746, 'shopper line up': 761595, 'up outside supermarket': 945719, 'supermarket in washingtondc': 820999, 'in washingtondc practicing': 430714, 'washingtondc practicing social': 967819, 'distancing to stock': 247570, 'up on vital': 945640, 'on vital supply': 605064, 'vital supply the': 959731, 'supply the mayor': 825964, 'the mayor of': 860320, 'mayor of the': 521979, 'the city ordered': 850953, 'city ordered on': 179314, 'ordered on the': 618878, 'on the closure': 604027, 'of all non': 579964, 'essential business for': 280846, 'business for month': 143752, 'for month in': 323524, 'month in an': 537787, 'marshalled': 518028, 'the schoolchildren': 866495, 'schoolchildren now': 742003, 'at loose': 99622, 'loose end': 503189, 'end and': 275767, 'the safer': 866136, 'safer end': 730359, 'the immunity': 857919, 'immunity spectrum': 417430, 'spectrum be': 788330, 'be marshalled': 115913, 'marshalled into': 518029, 'into task': 443074, '70 in': 21779, 'their area': 872506, 'there week': 879297, 'can all the': 157441, 'all the schoolchildren': 44900, 'the schoolchildren now': 866496, 'schoolchildren now at': 742004, 'now at loose': 574135, 'at loose end': 99623, 'loose end and': 503190, 'end and at': 275768, 'and at the': 58488, 'at the safer': 101085, 'the safer end': 866137, 'safer end of': 730360, 'of the immunity': 591127, 'the immunity spectrum': 857920, 'immunity spectrum be': 417431, 'spectrum be marshalled': 788331, 'be marshalled into': 115914, 'marshalled into task': 518030, 'into task force': 443075, 'task force to': 834702, 'force to pick': 328527, 'up grocery and': 945039, 'grocery and deliver': 364230, 'and deliver to': 61090, 'deliver to the': 233252, 'to the over': 916932, 'over 70 in': 629911, '70 in their': 21780, 'in their area': 429717, 'their area who': 872509, 'area who are': 92268, 'being told there': 125968, 'told there week': 923725, 'there week wait': 879298, 'week wait for': 977177, 'wait for an': 964107, '780': 22333, '453': 19166, '0101': 730, 'weareopen': 974564, 'blissbakedgoods': 132731, 'open here': 612295, 'help give': 389812, 'at 780': 97742, '780 453': 22334, '453 0101': 19169, '0101 to': 731, 'order staysafe': 618599, 'stayhealthy stockup': 797915, 'stockup weareopen': 804218, 'weareopen corona': 974565, 'corona blissbakedgoods': 203828, 'are open here': 88790, 'open here to': 612297, 'to help give': 907530, 'help give call': 389813, 'give call at': 350427, 'call at 780': 155784, 'at 780 453': 97743, '780 453 0101': 22335, '453 0101 to': 19170, '0101 to place': 732, 'your order staysafe': 1025106, 'order staysafe stayhealthy': 618600, 'staysafe stayhealthy stockup': 798898, 'stayhealthy stockup weareopen': 797916, 'stockup weareopen corona': 804219, 'weareopen corona blissbakedgoods': 974566, 'spire': 789444, 'better serve': 128459, 'develops find': 239859, 'local spire': 498441, 'spire store': 789445, 'we re making': 972919, 're making change': 699024, 'making change to': 510989, 'to our store': 911244, 'our store operation': 624950, 'operation to better': 613277, 'to better serve': 901789, 'better serve you': 128461, 'serve you the': 751974, 'you the situation': 1021611, 'situation develops find': 772239, 'develops find out': 239860, 'out how this': 626338, 'how this affect': 408943, 'this affect your': 886225, 'affect your local': 34275, 'your local spire': 1024719, 'local spire store': 498442, 'please add': 659633, 'add option': 31460, 'pay online': 645021, 'your curbside': 1023393, 'curbside express': 220623, 'express pickup': 293057, 'pickup to': 656038, 'contact process': 200189, 'process kudos': 679922, 'kudos for': 477877, 'your early': 1023610, 'early shopping': 264686, 'other preventative': 620753, 'measure already': 525084, 'already taken': 47704, 'please add option': 659634, 'add option to': 31461, 'option to pay': 614127, 'to pay online': 911547, 'pay online to': 645023, 'online to your': 609602, 'to your curbside': 918968, 'your curbside express': 1023394, 'curbside express pickup': 220624, 'express pickup to': 293058, 'pickup to make': 656040, 'make it no': 510044, 'it no contact': 459826, 'no contact process': 563892, 'contact process kudos': 200190, 'process kudos for': 679923, 'kudos for your': 477878, 'for your early': 328142, 'your early shopping': 1023611, 'early shopping option': 264687, 'shopping option and': 763530, 'option and other': 613983, 'and other preventative': 68385, 'other preventative measure': 620754, 'preventative measure already': 671774, 'measure already taken': 525085, 'survived supremecourt': 829329, 'supremecourt today': 827440, 'or atleast': 614454, 'atleast think': 101899, 'think did': 885206, 'did for': 240606, 'now always': 573990, 'always carry': 49508, 'carry sanitizer': 165144, 're safe': 699414, 'safe just': 729787, 'just chant': 468459, 'chant go': 172975, 'go corona': 353423, 'corona go': 203961, 'survived supremecourt today': 829330, 'supremecourt today or': 827441, 'today or atleast': 919995, 'or atleast think': 614456, 'atleast think did': 101900, 'think did for': 885207, 'did for now': 240608, 'for now always': 323959, 'now always carry': 573991, 'always carry sanitizer': 49509, 'carry sanitizer and': 165145, 'and mask if': 66755, 'you re still': 1020759, 're still not': 699598, 'not sure you': 571859, 'sure you re': 827870, 'you re safe': 1020730, 're safe just': 699415, 'safe just chant': 729788, 'just chant go': 468460, 'chant go corona': 172976, 'go corona corona': 353424, 'corona corona go': 203866, 'america farmer': 51518, 'are meeting': 88060, 'meeting consumer': 527685, 'consumer rising': 198834, 'their value': 875115, 'value by': 952102, 'providing their': 687110, 'their produce': 874459, 'produce for': 680273, 'for grocerydelivery': 322062, 'grocerydelivery amid': 366207, 'america farmer are': 51519, 'farmer are meeting': 299285, 'are meeting consumer': 88061, 'meeting consumer rising': 527687, 'consumer rising demand': 198835, 'demand and showing': 235001, 'and showing their': 71626, 'showing their value': 767532, 'their value by': 875116, 'value by providing': 952103, 'by providing their': 153680, 'providing their produce': 687112, 'their produce for': 874460, 'produce for grocerydelivery': 680274, 'for grocerydelivery amid': 322063, 'grocerydelivery amid the': 366208, 'outbreak and socialdistancing': 628011, 'and socialdistancing more': 71909, 'theblaze': 872293, 'so store': 778275, 'away 35': 105762, 'in wasted': 430715, 'item theblaze': 463709, 'theblaze geez': 872294, 'geez she': 345054, 'intentionally cough on': 441164, 'cough on grocery': 208520, 'store food so': 807774, 'food so store': 316665, 'so store is': 778276, 'store is forced': 808491, 'throw away 35': 895008, 'away 35 00': 105763, '00 in wasted': 273, 'in wasted item': 430716, 'wasted item theblaze': 968247, 'item theblaze geez': 463710, 'theblaze geez she': 872295, 'geez she should': 345055, 'australia queensland': 103357, 'queensland wa': 693413, 'supermarket sent': 822384, 'me these': 523679, 'these pic': 880479, 'friend in australia': 333648, 'in australia queensland': 420615, 'australia queensland wa': 103358, 'queensland wa just': 693414, 'wa just in': 962462, 'the supermarket sent': 868791, 'supermarket sent me': 822385, 'sent me these': 750777, 'me these pic': 523681, 'getting question': 349211, 'about post': 25968, '19 house': 7590, 'saw with': 738324, 'with brexit': 997476, 'brexit the': 139523, 'uk property': 938648, 'very robust': 955479, 'robust so': 724852, 'it highly': 458589, 'unlikely that': 942755, 'month read': 537972, 'more which': 540968, 'house price read': 406503, 'price read all': 676097, 'read all about': 700265, 'all about it': 41920, 'about it we': 25604, 'it we re': 462281, 'we re getting': 972883, 're getting question': 698733, 'getting question about': 349212, 'question about post': 693504, 'about post covid': 25970, 'covid 19 house': 213226, '19 house price': 7591, 'house price we': 406509, 'price we saw': 677409, 'we saw with': 973142, 'saw with brexit': 738325, 'with brexit the': 997477, 'brexit the uk': 139524, 'the uk property': 870269, 'uk property market': 938649, 'market is very': 516648, 'is very robust': 453693, 'very robust so': 955480, 'robust so it': 724853, 'so it highly': 777466, 'it highly unlikely': 458590, 'highly unlikely that': 396109, 'unlikely that price': 942758, 'price will crash': 677557, 'will crash in': 993064, 'coming month read': 188141, 'month read more': 537973, 'read more which': 700458, 'to evolve': 905370, 'evolve and': 288501, 'and impact': 65007, 'community worldwide': 190244, 'worldwide our': 1010398, 'remotely please': 710778, 'see instagram': 745313, 'instagram or': 439970, 'know the coronavirus': 476813, 'outbreak continues to': 628132, 'continues to evolve': 201473, 'to evolve and': 905371, 'evolve and impact': 288502, 'and impact our': 65011, 'impact our community': 417910, 'our community worldwide': 622491, 'community worldwide our': 190245, 'worldwide our retail': 1010399, 'will remain closed': 994627, 'remain closed and': 709719, 'closed and most': 182989, 'staff are working': 792212, 'are working remotely': 91714, 'working remotely please': 1008888, 'remotely please see': 710779, 'please see instagram': 660453, 'see instagram or': 745314, 'instagram or facebook': 439971, 'or facebook for': 615248, 'facebook for our': 294915, 'for our full': 324247, 'midia': 530726, 'behaviour midia': 124478, 'midia research': 530727, 'consumer behaviour midia': 196588, 'behaviour midia research': 124479, 'driver they': 259795, 'than professional': 841048, 'actor and': 30561, 'truck driver they': 932800, 'driver they are': 259796, 'important than professional': 418999, 'than professional athlete': 841049, 'professional athlete actor': 682421, 'athlete actor and': 101755, 'actor and famous': 30563, 'wonderful news': 1004098, 'news now': 560641, 'see other': 745516, 'other billionaire': 619894, 'billionaire do': 130953, 'same bbc': 732973, 'coronavirus twitter': 206976, 'twitter bos': 936638, 'bos pledge': 135688, 'pledge 1bn': 660840, '1bn for': 12595, 'wonderful news now': 1004099, 'news now let': 560642, 'let see other': 487035, 'see other billionaire': 745517, 'other billionaire do': 619895, 'billionaire do the': 130954, 'the same bbc': 866198, 'same bbc news': 732974, 'news coronavirus twitter': 560343, 'coronavirus twitter bos': 206977, 'twitter bos pledge': 936639, 'bos pledge 1bn': 135689, 'pledge 1bn for': 660841, '1bn for relief': 12596, 'for relief effort': 325092, 'veliaj': 954313, '19 veliaj': 11745, 'veliaj no': 954314, 'panic supermarket': 638654, 'covid 19 veliaj': 214021, '19 veliaj no': 11746, 'veliaj no room': 954315, 'room for panic': 725914, 'for panic supermarket': 324368, 'panic supermarket will': 638656, 'supermarket will provide': 823889, 'will provide food': 994513, 'provide food reserve': 686310, 'reserve for the': 714059, 'stopthevirus': 805940, 'cannot thank': 162170, 'you enough': 1018418, 'so brave': 776644, 'brave in': 138222, 'hero virus': 394145, 'health flattenthecurve': 386436, 'flattenthecurve stopthevirus': 310210, 'stopthevirus socialdistancing': 805941, 'we cannot thank': 971087, 'cannot thank you': 162171, 'thank you enough': 841721, 'you enough for': 1018419, 'enough for being': 277431, 'for being so': 319637, 'being so brave': 125813, 'so brave in': 776645, 'brave in this': 138223, 'of pandemic you': 587714, 'you are our': 1017191, 'our hero virus': 623429, 'hero virus sanitizer': 394146, 'virus sanitizer health': 958718, 'sanitizer health flattenthecurve': 735068, 'health flattenthecurve stopthevirus': 386437, 'flattenthecurve stopthevirus socialdistancing': 310211, 'statistically': 796603, 'so an': 776502, 'today statistically': 920214, 'statistically that': 796604, 'mean few': 524424, 'every packed': 286082, 'supermarket park': 821926, 'park or': 641961, 'or beach': 614516, 'so an order': 776503, 'an order of': 56701, 'order of 200': 618436, 'of 200 00': 579454, '200 00 case': 13438, '00 case of': 110, 'uk today statistically': 938833, 'today statistically that': 920215, 'statistically that mean': 796605, 'that mean few': 845109, 'mean few people': 524425, 'few people in': 303988, 'in every packed': 422684, 'every packed supermarket': 286083, 'packed supermarket park': 633646, 'supermarket park or': 821928, 'park or beach': 641962, 'petrobras': 653663, 'the definition': 853040, 'definition of': 232421, 'false hope': 297431, 'hope trump': 403757, 'trump tweet': 933943, 'he negotiating': 385250, 'negotiating oil': 556938, 'cut so': 223539, 'so oil': 777937, 'spike meanwhile': 789315, 'meanwhile petrobras': 525020, 'petrobras ceo': 653664, 'ceo say': 169830, 'it irrelevant': 458848, 'irrelevant because': 445008, 'overwhelming everything': 631747, 'is the definition': 452765, 'the definition of': 853041, 'definition of false': 232425, 'of false hope': 583398, 'false hope trump': 297432, 'hope trump tweet': 403758, 'trump tweet that': 933944, 'tweet that he': 936407, 'that he negotiating': 844264, 'he negotiating oil': 385251, 'negotiating oil production': 556939, 'production cut so': 682000, 'cut so oil': 223540, 'so oil price': 777938, 'oil price spike': 597267, 'price spike meanwhile': 676577, 'spike meanwhile petrobras': 789316, 'meanwhile petrobras ceo': 525021, 'petrobras ceo say': 653665, 'ceo say it': 169833, 'say it irrelevant': 738845, 'it irrelevant because': 458849, 'irrelevant because is': 445009, 'because is overwhelming': 119168, 'is overwhelming everything': 450768, 'largest milk': 479977, 'milk producing': 531790, 'producing province': 680797, 'are poised': 89131, 'poised to': 662787, 'dump million': 262176, 'of litre': 585891, 'to dairy': 903898, 'farmer of': 299471, 'ontario ha': 611601, 'told farmer': 923552, 'raw milk': 697984, 'stable and': 791891, 'prevent oversupply': 671690, 'farmer in one': 299421, 'one of canada': 606736, 'of canada largest': 581085, 'canada largest milk': 160484, 'largest milk producing': 479978, 'milk producing province': 531791, 'producing province are': 680798, 'province are poised': 687161, 'are poised to': 89133, 'poised to dump': 662788, 'to dump million': 904800, 'dump million of': 262177, 'million of litre': 532276, 'of litre of': 585892, 'of milk due': 586506, 'due to dairy': 261753, 'to dairy farmer': 903899, 'dairy farmer of': 224984, 'farmer of ontario': 299472, 'of ontario ha': 587278, 'ontario ha told': 611604, 'ha told farmer': 372337, 'told farmer to': 923553, 'rid of raw': 721395, 'of raw milk': 588758, 'raw milk to': 697985, 'milk to keep': 531869, 'keep price stable': 471818, 'price stable and': 676599, 'stable and prevent': 791894, 'and prevent oversupply': 69410, 'waiting order': 964368, 'stock delivered': 802039, 'canada please': 160522, '19 link': 8340, 'link that': 493913, 'that cop': 843324, 'cop out': 203276, 'out thought': 627602, 'thought were': 893306, 'were gaining': 979674, 'gaining market': 342879, 'share amp': 754918, 'confidence that': 193957, 'that out': 845603, 'window performance': 995707, 'performance under': 651470, 'hey why we': 394551, 'we still waiting': 973411, 'still waiting order': 801380, 'waiting order in': 964369, 'order in stock': 618322, 'in stock delivered': 428295, 'stock delivered in': 802041, 'delivered in canada': 233347, 'in canada please': 421195, 'canada please don': 160523, 'please don give': 659913, 'don give me': 253554, 'give me go': 350574, 'me go see': 522819, 'go see covid': 354089, 'covid 19 link': 213358, '19 link that': 8341, 'link that cop': 493915, 'that cop out': 843325, 'cop out thought': 203277, 'out thought were': 627603, 'thought were gaining': 893307, 'were gaining market': 979675, 'gaining market share': 342880, 'market share amp': 517047, 'share amp consumer': 754919, 'amp consumer confidence': 53565, 'consumer confidence that': 196924, 'confidence that out': 193958, 'that out the': 845607, 'out the window': 627442, 'the window performance': 871597, 'window performance under': 995708, 'performance under pressure': 651471, 'what disgusting': 981332, 'disgusting pig': 245441, 'pig of': 656452, 'human lady': 410538, 'who tested': 989740, 'wa cause': 961798, 'cause spitting': 167741, 'fruit at': 339070, 'what disgusting pig': 981334, 'disgusting pig of': 245442, 'pig of human': 656453, 'of human lady': 584874, 'human lady who': 410539, 'lady who tested': 478871, 'who tested positive': 989741, '19 wa cause': 11861, 'wa cause spitting': 961799, 'cause spitting on': 167742, 'on fruit at': 601037, 'fruit at supermarket': 339071, 'at supermarket 19': 100694, 'lockdownnsw': 500349, 'centre to': 169556, 'let there': 487165, 'no mayhem': 564737, 'mayhem in': 521915, 'supermarket lockdownnsw': 821371, 'making my way': 511240, 'way to my': 970056, 'my local shopping': 549141, 'local shopping centre': 498434, 'shopping centre to': 762358, 'centre to get': 169558, 'get grocery for': 347165, 'the week please': 871310, 'week please let': 976756, 'please let there': 660186, 'let there be': 487166, 'there be no': 878217, 'be no mayhem': 116102, 'no mayhem in': 564738, 'mayhem in the': 521916, 'the supermarket lockdownnsw': 868680, 'tizer': 899318, 'wa video': 963648, 'calling with': 156644, 'my three': 550361, 'three year': 894122, 'old cousin': 598199, 'she know': 756180, 'the rona': 865962, 'rona is': 725782, 'catch her': 166998, 'her sick': 392382, 'sick she': 768600, 'also told': 49024, 'wash me': 967519, 'me hand': 522851, 'use tizer': 949748, 'tizer hand': 899319, 'wa video calling': 963649, 'video calling with': 956663, 'calling with my': 156645, 'with my three': 999654, 'my three year': 550362, 'three year old': 894125, 'year old cousin': 1014820, 'old cousin and': 598200, 'cousin and asked': 212080, 'and asked her': 58433, 'if she know': 414778, 'she know why': 756184, 'know why can': 477047, 'why can come': 990859, 'come out and': 187461, 'out and she': 625689, 'that the rona': 846824, 'the rona is': 865963, 'rona is going': 725783, 'to catch her': 902499, 'catch her and': 166999, 'her and make': 391849, 'and make her': 66555, 'make her sick': 509969, 'her sick she': 392383, 'sick she also': 768601, 'she also told': 755853, 'also told me': 49025, 'me that should': 523626, 'that should wash': 846294, 'should wash me': 766632, 'wash me hand': 967520, 'me hand and': 522852, 'and use tizer': 74787, 'use tizer hand': 949749, 'tizer hand sanitizer': 899320, 'oregon': 619133, 'cali': 155434, 'ronarants': 725808, 'oregon is': 619152, 'get cali': 346734, 'cali style': 155439, 'style locked': 815612, 'down if': 256849, 'stop dragging': 804624, 'dragging their': 258195, 'their entire': 873169, 'everyday it': 286582, 'not time': 572120, 'for field': 321463, 'field trip': 304529, 'trip you': 932226, 'you dummy': 1018373, 'dummy ronarants': 262148, 'oregon is gonna': 619153, 'is gonna get': 448128, 'gonna get cali': 356528, 'get cali style': 346735, 'cali style locked': 155440, 'style locked down': 815613, 'locked down if': 500476, 'down if they': 256850, 'not stop dragging': 571755, 'stop dragging their': 804625, 'dragging their entire': 258196, 'their entire family': 873170, 'entire family into': 278674, 'family into the': 297943, 'store everyday it': 807659, 'everyday it not': 286583, 'it not time': 459930, 'not time for': 572121, 'time for field': 896708, 'for field trip': 321464, 'field trip you': 304532, 'trip you dummy': 932227, 'you dummy ronarants': 1018374, 'smug': 775981, 'link smug': 493910, 'here the direct': 393647, 'the direct link': 853310, 'direct link smug': 243350, 'sending all': 750004, 'my love': 549163, 'and brave': 59155, 'brave stay': 138229, 'all thinking': 45085, 'you hospital': 1019250, 'worker firefighter': 1006940, 'officer and': 595625, 'sending all my': 750005, 'all my love': 43564, 'my love and': 549164, 'love and appreciation': 504595, 'and appreciation to': 58271, 'appreciation to those': 82901, 'still working through': 801441, 'outbreak you are': 628845, 'you are strong': 1017245, 'are strong and': 90574, 'strong and brave': 813972, 'and brave stay': 59156, 'brave stay safe': 138230, 'stay safe possible': 797267, 'safe possible and': 729896, 'possible and know': 665572, 'know that we': 476800, 're all thinking': 698240, 'all thinking of': 45086, 'thinking of you': 885978, 'of you hospital': 593393, 'you hospital staff': 1019252, 'hospital staff supermarket': 404645, 'staff supermarket worker': 792908, 'supermarket worker firefighter': 824021, 'worker firefighter police': 1006944, 'firefighter police officer': 308227, 'police officer and': 663114, 'officer and many': 595627, 'gem': 345198, 'online are': 607871, 'you scrolling': 1021014, 'scrolling on': 742879, 'this little': 888671, 'little gem': 495366, 'you buy toilet': 1017587, 'paper and toilet': 639859, 'toilet paper online': 921377, 'paper online are': 640540, 'online are you': 607875, 'are you scrolling': 91850, 'you scrolling on': 1021015, 'scrolling on this': 742880, 'on this little': 604617, 'this little gem': 888672, 'condition we': 193555, 'do wash': 250455, 'from contestalert': 334987, 'so in this': 777388, 'this critical condition': 887118, 'critical condition we': 218532, 'condition we all': 193556, 'have to do': 383196, 'to do wash': 904583, 'do wash hand': 250457, 'hand glove this': 374996, 'glove this kind': 352964, 'kind of product': 474928, 'of product will': 588505, 'will help from': 993715, 'help from contestalert': 389769, 'from contestalert contest': 334988, 'like farmworkers': 490224, 'farmworkers first': 299702, 'responder health': 715473, 'deserve hazard': 238062, 'or their': 617411, 'worker like farmworkers': 1007315, 'like farmworkers first': 490225, 'farmworkers first responder': 299703, 'first responder health': 308946, 'responder health care': 715474, 'worker deserve hazard': 1006760, 'deserve hazard pay': 238063, 'hazard pay from': 384566, 'pay from their': 644912, 'from their government': 337939, 'their government or': 873426, 'government or their': 360429, 'or their company': 617412, 'their company for': 872833, 'company for their': 190677, 'their service during': 874658, 'polk': 663818, 'francisco there': 331129, 'supply support': 825930, 'local neighborhood': 498202, 'neighborhood grocer': 557118, 'grocer such': 364170, 'such golden': 816520, 'golden farmer': 356051, 'at polk': 100158, 'polk amp': 663819, 'amp california': 53481, 'california they': 155589, 'veggie milk': 954196, 'time of lockdown': 897345, 'of lockdown in': 585956, 'lockdown in san': 499513, 'san francisco there': 733549, 'francisco there is': 331130, 'food supply support': 317002, 'supply support your': 825932, 'your local neighborhood': 1024707, 'local neighborhood grocer': 498203, 'neighborhood grocer such': 557119, 'grocer such golden': 364171, 'such golden farmer': 816521, 'golden farmer market': 356052, 'farmer market at': 299444, 'market at polk': 516048, 'at polk amp': 100159, 'polk amp california': 663820, 'amp california they': 53482, 'california they are': 155590, 'they are stocked': 881419, 'are stocked up': 90516, 'stocked up with': 803447, 'up with fresh': 946640, 'with fresh fruit': 998553, 'and veggie milk': 74906, 'veggie milk bread': 954197, 'milk bread and': 531597, 'bread and other': 138403, 'and other staple': 68412, 'if die': 414043, 'die in': 241374, 'accident because': 28390, 'because used': 119762, 'will that': 995118, 'count death': 210107, 'death no': 230134, 'reason just': 702951, 'just curious': 468547, 'if die in': 414044, 'die in car': 241377, 'car accident because': 162977, 'accident because used': 28391, 'because used hand': 119763, 'sanitizer will that': 736109, 'will that count': 995121, 'that count death': 843374, 'count death no': 210108, 'death no reason': 230135, 'no reason just': 565292, 'reason just curious': 702952, 'quarantineselfie': 693060, 'been inside': 121385, 'inside too': 439435, 'long braved': 501357, 'paper made': 640434, 'made soup': 507961, 'soup quarantineselfie': 786407, 'quarantineselfie stayathomeorder': 693061, 'stayathomeorder socialdistancing': 797785, 'socialdistancing quarantined': 780636, 've been inside': 952897, 'been inside too': 121388, 'inside too long': 439436, 'too long braved': 924862, 'long braved the': 501358, 'store still no': 810381, 'toilet paper made': 921345, 'paper made soup': 640436, 'made soup quarantineselfie': 507962, 'soup quarantineselfie stayathomeorder': 786408, 'quarantineselfie stayathomeorder socialdistancing': 693062, 'stayathomeorder socialdistancing quarantined': 797786, 'newsom tell': 561070, 'tell trump': 837118, 'that roughly': 846071, 'roughly 56': 726281, '56 of': 20454, 'of californian': 581047, 'californian or': 155648, 'or 25': 614187, 'coronavirus over': 206422, 'an eight': 55629, 'newsom tell trump': 561071, 'tell trump that': 837119, 'trump that roughly': 933909, 'that roughly 56': 846072, 'roughly 56 of': 726282, '56 of californian': 20455, 'of californian or': 581048, 'californian or 25': 155649, 'or 25 million': 614188, '25 million people': 15913, 'million people will': 532321, 'will be infected': 992516, 'be infected with': 115487, 'the coronavirus over': 851887, 'coronavirus over an': 206423, 'over an eight': 629974, 'an eight week': 55630, 'eight week period': 270207, 'are 24': 84123, '24 local': 15649, 'shop offering': 760533, 'online amid': 607797, '19 development': 6526, 'here are 24': 392731, 'are 24 local': 84124, '24 local shop': 15650, 'local shop offering': 498409, 'shop offering their': 760534, 'offering their good': 595284, 'good online amid': 357513, 'online amid covid': 607798, 'covid 19 development': 212945, 'down jet': 256901, 'jet fuel': 465339, 'price mood': 675260, 'mood lighting': 538279, 'lighting for': 489650, 'down drfauci': 256702, 'drfauci trumppressconference': 258730, 'say gas price': 738668, 'are down jet': 85977, 'down jet fuel': 256902, 'jet fuel price': 465342, 'are down what': 85985, 'down what next': 257460, 'what next the': 981935, 'next the price': 561581, 'the price mood': 864386, 'price mood lighting': 675261, 'mood lighting for': 538280, 'lighting for restaurant': 489651, 'for restaurant is': 325175, 'restaurant is down': 716537, 'is down drfauci': 447345, 'down drfauci trumppressconference': 256703, 'meaningless': 524871, 'some said': 783789, 'all continue': 42440, 'our meaningless': 623886, 'meaningless life': 524872, 'demise after': 236654, 'would realize': 1012164, 'had passed': 373390, 'passed our': 643288, 'some said it': 783790, 'end of time': 275921, 'of time thought': 592190, 'time thought that': 897929, 'thought that even': 893230, 'even if that': 284216, 'the case we': 850469, 'case we would': 166099, 'would all continue': 1011500, 'all continue to': 42441, 'continue to live': 201218, 'to live our': 909348, 'live our meaningless': 495980, 'our meaningless life': 623887, 'meaningless life until': 524873, 'our demise after': 622736, 'demise after which': 236655, 'after which we': 36535, 'which we would': 986470, 'we would realize': 973977, 'would realize that': 1012165, 'that we had': 847375, 'we had passed': 971718, 'had passed our': 373391, 'passed our last': 643289, 'all net': 43617, 'net proceeds': 557559, 'proceeds from': 679849, 'week online': 976688, 'online auction': 607905, 'auction will': 102871, 'benefit covid': 126950, 'all net proceeds': 43618, 'net proceeds from': 557560, 'proceeds from this': 679850, 'this week online': 891244, 'week online auction': 976689, 'online auction will': 607907, 'auction will benefit': 102872, 'will benefit covid': 992820, 'benefit covid 19': 126951, 'all hopefully': 43146, 'hopefully benefit': 403845, 'from after': 334411, '19 increased': 7812, 'increased value': 433532, 'value placed': 952178, 'home option': 401730, 'option that': 614101, 'benefit people': 127062, 'disability illness': 243830, 'term more': 838203, 'online learning': 608471, 'more business': 538736, 'service accessible': 752029, 'accessible supermarket': 28343, 'supermarket service': 822389, 'thing we will': 884970, 'will all hopefully': 992234, 'all hopefully benefit': 43147, 'hopefully benefit from': 403846, 'benefit from after': 126978, 'from after covid': 334412, 'covid 19 increased': 213257, '19 increased value': 7813, 'increased value placed': 433533, 'value placed on': 952179, 'placed on work': 657906, 'on work from': 605366, 'from home option': 335890, 'home option that': 401731, 'option that will': 614104, 'that will benefit': 847558, 'will benefit people': 992823, 'benefit people with': 127065, 'with disability illness': 998060, 'disability illness and': 243831, 'illness and family': 416344, 'and family in': 62665, 'family in the': 297926, 'long term more': 501698, 'term more online': 838204, 'more online learning': 539942, 'online learning more': 608474, 'learning more business': 484220, 'more business offering': 538737, 'business offering delivery': 144128, 'delivery service accessible': 234422, 'service accessible supermarket': 752030, 'accessible supermarket service': 28344, 'since sanitizer': 770811, 'shop believed': 759984, 'can alcohol': 157417, 'base can': 111440, 'develop medication': 239651, 'human just': 410536, 'just wild': 470303, 'wild out': 992070, 'box idea': 137086, 'idea india': 413092, 'india looking': 434512, 'looking upto': 503062, 'upto you': 947936, 'for solution': 325722, 'solution we': 782122, 'sent medicine': 750779, 'medicine for': 526784, 'since sanitizer and': 770812, 'sanitizer and shop': 734433, 'and shop believed': 71493, 'shop believed to': 759985, 'believed to destroy': 126440, 'to destroy the': 904219, 'destroy the can': 239035, 'the can alcohol': 850307, 'can alcohol base': 157418, 'alcohol base can': 40923, 'base can be': 111441, 'used to develop': 950048, 'to develop medication': 904249, 'develop medication and': 239652, 'medication and vaccine': 526629, 'and vaccine for': 74832, 'vaccine for human': 951703, 'for human just': 322440, 'human just wild': 410537, 'just wild out': 470304, 'wild out of': 992071, 'out of box': 626688, 'of box idea': 580815, 'box idea india': 137087, 'idea india looking': 413093, 'india looking upto': 434513, 'looking upto you': 503063, 'upto you guy': 947937, 'you guy for': 1018960, 'guy for solution': 368995, 'for solution we': 325725, 'solution we have': 782124, 'we have sent': 971934, 'have sent medicine': 382468, 'sent medicine for': 750780, 'prepare food': 670062, 'on since': 603472, 'grab anything': 361462, 'how am going': 407343, 'going to prepare': 355674, 'to prepare food': 911999, 'prepare food from': 670063, 'food from now': 314609, 'now on since': 575433, 'on since you': 603474, 'since you all': 771014, 'you all want': 1016921, 'want to grab': 966043, 'to grab anything': 906958, 'grab anything and': 361463, 'anything and everything': 80682, 'and everything from': 62420, 'everything from the': 287807, 'busine': 143192, 'aston well': 97229, 'small busine': 774830, 'aston well fargo': 97230, 'lending small busine': 486294, 'sa and': 728865, 'tourism are': 926967, 'are hosting': 87244, 'hosting free': 404960, 'free webinar': 332312, 'webinar discussion': 975032, 'discussion tomorrow': 245051, 'tomorrow afternoon': 924009, 'afternoon on': 36701, 'insurance follow': 440730, 'register if': 707578, 'to attend': 900816, 'sa and tourism': 728868, 'and tourism are': 74317, 'tourism are hosting': 926968, 'are hosting free': 87245, 'hosting free webinar': 404961, 'free webinar discussion': 332314, 'webinar discussion tomorrow': 975033, 'discussion tomorrow afternoon': 245052, 'tomorrow afternoon on': 924010, 'afternoon on consumer': 36702, 'protection law and': 685506, 'law and travel': 482215, 'and travel insurance': 74411, 'travel insurance follow': 930404, 'insurance follow the': 440731, 'link to register': 493941, 'to register if': 913103, 'register if you': 707579, 'like to attend': 491576, 'traditionally': 929027, 'dutch traditionally': 263522, 'traditionally bond': 929030, 'bond specifically': 134259, 'specifically treasury': 788294, 'treasury bond': 930781, 'bond are': 134229, 'safest investment': 730426, 'investment during': 443983, 'during recession': 262965, 'of gold': 584198, 'gold bitcoin': 355865, 'even bond': 283898, 'bond fell': 134245, 'fell only': 303221, 'only asset': 610121, 'asset with': 96489, 'with value': 1001951, 'value is': 952137, 'dutch traditionally bond': 263523, 'traditionally bond specifically': 929031, 'bond specifically treasury': 134260, 'specifically treasury bond': 788295, 'treasury bond are': 930782, 'bond are the': 134230, 'are the safest': 90901, 'the safest investment': 866141, 'safest investment during': 730427, 'investment during recession': 443984, 'during recession in': 262966, 'recession in this': 704299, '19 crisis price': 6304, 'crisis price of': 217903, 'price of gold': 675462, 'of gold bitcoin': 584199, 'gold bitcoin and': 355866, 'bitcoin and even': 131799, 'and even bond': 62333, 'even bond fell': 283899, 'bond fell only': 134246, 'fell only asset': 303222, 'only asset with': 610122, 'asset with value': 96490, 'with value is': 1001952, 'value is the': 952139, 'is the dollar': 452774, 'county the': 211505, 'neighboring county': 557171, 'my adult': 547231, 'adult kid': 32834, 'kid live': 474039, 'state just': 795716, 'assume this': 97028, 'is everywhere': 447597, 'everywhere and': 288171, 'touch ve': 926569, 've only': 953416, 'gas pump': 344070, 'pump in': 689058, 'it now in': 459952, 'now in my': 575008, 'in my county': 425558, 'my county the': 547828, 'county the neighboring': 211508, 'the neighboring county': 861437, 'neighboring county the': 557173, 'county the county': 211506, 'the county where': 852200, 'county where my': 211531, 'where my adult': 985038, 'my adult kid': 547232, 'adult kid live': 32835, 'kid live in': 474040, 'live in two': 495893, 'in two other': 430358, 'two other state': 937112, 'other state just': 620965, 'state just assume': 795717, 'just assume this': 468240, 'assume this virus': 97029, 'virus is everywhere': 958372, 'is everywhere and': 447598, 'everywhere and on': 288173, 'and on everything': 68058, 'on everything you': 600653, 'everything you touch': 288140, 'you touch ve': 1021902, 'touch ve only': 926570, 've only been': 953417, 'only been to': 610166, 'and gas pump': 63486, 'gas pump in': 344075, 'pump in the': 689059, 'no known': 564570, 'known cure': 477208, 'safe maintain': 729809, 'maintain basic': 508942, 'hygiene follow': 412093, 'follow medical': 312465, 'medical instruction': 526219, 'instruction no': 440563, 'no shaking': 565472, 'shaking of': 754467, 'hand maintain': 375078, 'distancing wash': 247609, 'sanitizer powered': 735566, 'ha no known': 371344, 'no known cure': 564571, 'known cure for': 477209, 'cure for now': 220743, 'for now please': 323979, 'now please do': 575547, 'not panic stay': 570936, 'panic stay safe': 638625, 'stay safe maintain': 797251, 'safe maintain basic': 729810, 'maintain basic hygiene': 508943, 'basic hygiene follow': 111939, 'hygiene follow medical': 412094, 'follow medical instruction': 312466, 'medical instruction no': 526220, 'instruction no shaking': 440564, 'no shaking of': 565473, 'shaking of hand': 754468, 'of hand maintain': 584427, 'hand maintain social': 375079, 'social distancing wash': 779760, 'distancing wash your': 247611, 'hand sanitizer powered': 375540, 'sanitizer powered by': 735567, 'person 19': 652287, 'each person 19': 264247, 'add that': 31497, 'more hygienic': 539463, 'hygienic than': 412235, 'constantly cleaned': 195652, 'cleaned unlike': 180726, 'unlike shopping': 942720, 'trolley love': 932442, 'seeing sample': 746453, 'germ from': 346116, 'trolley there': 932483, 'pub only': 687739, 'only card': 610218, 'card covid19uk': 163495, 'to add that': 900068, 'add that it': 31498, 'it is much': 459015, 'much more hygienic': 545111, 'more hygienic than': 539464, 'hygienic than supermarket': 412236, 'than supermarket it': 841187, 'supermarket it is': 821171, 'it is constantly': 458915, 'is constantly cleaned': 446776, 'constantly cleaned unlike': 195653, 'cleaned unlike shopping': 180727, 'unlike shopping trolley': 942721, 'shopping trolley love': 764265, 'trolley love seeing': 932443, 'love seeing sample': 504773, 'seeing sample of': 746454, 'sample of germ': 733474, 'of germ from': 584096, 'germ from the': 346117, 'from the handle': 337736, 'of trolley there': 592460, 'trolley there is': 932485, 'is no cash': 449915, 'no cash in': 563773, 'cash in the': 166257, 'in the pub': 429487, 'the pub only': 864773, 'pub only card': 687740, 'only card covid19uk': 610219, 'ravitz': 697947, 'steve ravitz': 799952, 'ravitz the': 697948, 'jersey ha': 465211, 'passed away': 643249, 'away due': 105824, 'novel according': 573740, 'to facebook': 905581, 'facebook post': 294987, 'steve ravitz the': 799953, 'ravitz the president': 697949, 'president of grocery': 670866, 'chain in new': 170810, 'new jersey ha': 558974, 'jersey ha passed': 465212, 'ha passed away': 371474, 'passed away due': 643250, 'away due to': 105825, 'the novel according': 861905, 'novel according to': 573741, 'according to facebook': 28540, 'to facebook post': 905583, 'facebook post by': 294988, 'post by family': 666030, 'by family member': 152545, 'with fraud': 998530, 'deal with fraud': 229552, 'with fraud and': 998531, 'fraud and customer': 331229, 'and customer friction': 60841, 'shade': 754325, 'america april': 51461, 'april factbox': 83582, 'price rally': 676070, 'rally response': 696282, 'response could': 715667, 'could limit': 209384, 'limit demand': 492328, 'demand upside': 236429, 'upside from': 947857, 'from fuel': 335587, 'fuel switching': 340291, 'switching podcast': 830568, 'podcast shade': 662306, 'shade of': 754328, 'past for': 643544, 'america april factbox': 51462, 'april factbox price': 83583, 'factbox price rally': 295856, 'price rally response': 676072, 'rally response could': 696283, 'response could limit': 715668, 'could limit demand': 209385, 'limit demand upside': 492329, 'demand upside from': 236430, 'upside from fuel': 947858, 'from fuel switching': 335588, 'fuel switching podcast': 340292, 'switching podcast shade': 830569, 'podcast shade of': 662307, 'shade of the': 754329, 'of the past': 591324, 'the past for': 863355, 'community stay': 190119, 'it foot': 458061, 'it feeling': 457979, 'feeling this': 303086, 'this admiration': 886208, 'admiration towards': 32566, 'towards doctor': 927183, 'nurse bank': 577215, 'teller supermarket': 837171, 'cashier neighbor': 166570, 'neighbor it': 557045, 'and begin': 58828, 'spread gratitude': 790546, 'gratitude and': 362356, 'feel this need': 302902, 'to help my': 907569, 'help my community': 390121, 'my community stay': 547768, 'community stay on': 190120, 'stay on it': 797144, 'on it foot': 601661, 'it foot it': 458062, 'foot it feeling': 318399, 'it feeling this': 457980, 'feeling this admiration': 303087, 'this admiration towards': 886209, 'admiration towards doctor': 32567, 'towards doctor nurse': 927184, 'doctor nurse bank': 251001, 'nurse bank teller': 577216, 'bank teller supermarket': 110230, 'teller supermarket cashier': 837172, 'supermarket cashier neighbor': 819562, 'cashier neighbor it': 166571, 'neighbor it time': 557046, 'it time we': 461702, 'time we stop': 898237, 'we stop the': 973428, 'of and begin': 580143, 'and begin to': 58830, 'begin to spread': 123594, 'to spread gratitude': 915065, 'spread gratitude and': 790547, 'gratitude and love': 362358, '19 retailer': 10211, 'on sanitation': 603284, 'sanitation product': 733857, 'in hot': 423830, 'covid 19 retailer': 213709, '19 retailer hiking': 10212, 'hiking price on': 396403, 'price on sanitation': 675713, 'on sanitation product': 603285, 'sanitation product in': 733859, 'product in hot': 681288, 'in hot water': 423832, 'more due': 539085, 'crisis earn': 217325, 'earn extra': 264785, 'these cashback': 879723, 'cashback some': 166404, 'retailer provide': 719282, 'provide larger': 686373, 'larger percentage': 479901, 'percentage back': 651196, 'back compared': 106931, 'others bonus': 621309, 'bonus feature': 134367, 'feature is': 301552, 'to stake': 915147, 'stake coupon': 793302, 'coupon code': 211757, 'code for': 185361, 'for even': 321149, 'bigger saving': 130168, 'online more due': 608556, 'more due to': 539086, '19 crisis earn': 6240, 'crisis earn extra': 217326, 'earn extra money': 264786, 'extra money by': 293579, 'money by using': 536655, 'by using these': 154651, 'using these cashback': 950744, 'these cashback some': 879724, 'cashback some online': 166405, 'some online retailer': 783443, 'online retailer provide': 608885, 'retailer provide larger': 719283, 'provide larger percentage': 686374, 'larger percentage back': 479902, 'percentage back compared': 651197, 'back compared to': 106932, 'compared to others': 191434, 'to others bonus': 911131, 'others bonus feature': 621310, 'bonus feature is': 134368, 'feature is being': 301553, 'is being able': 446062, 'able to stake': 24549, 'to stake coupon': 915148, 'stake coupon code': 793303, 'coupon code for': 211758, 'code for even': 185363, 'for even bigger': 321151, 'even bigger saving': 283893, 'update fca': 946950, 'fca proposal': 300734, 'proposal on': 684467, 'temporary financial': 837622, 'credit customer': 216369, 'customer affected': 222029, '19 update fca': 11662, 'update fca proposal': 946951, 'fca proposal on': 300735, 'proposal on temporary': 684468, 'on temporary financial': 603900, 'temporary financial relief': 837623, 'financial relief for': 306553, 'relief for consumer': 709339, 'for consumer credit': 320247, 'consumer credit customer': 197017, 'credit customer affected': 216370, 'customer affected by': 222030, 'it pathetic': 460279, 'like winning': 491823, 'lottery when': 504470, 'just they': 470031, 'paper spring': 640818, 'spring water': 791251, 'it pathetic that': 460280, 'pathetic that it': 644063, 'that it feel': 844707, 'feel like winning': 302764, 'like winning the': 491824, 'winning the lottery': 996088, 'the lottery when': 859756, 'lottery when you': 504471, 'store just they': 808627, 'just they are': 470032, 'they are restocking': 881389, 'are restocking the': 89650, 'shelf with toilet': 757822, 'toilet paper spring': 921463, 'paper spring water': 640819, 'spring water or': 791254, 'water or hand': 969097, 'tell me the': 837022, 'me the wine': 523666, 'wine store is': 995907, 'store is considered': 808478, 'is considered essential': 446748, 'considered essential retail': 195291, 'littleproudmp writes': 495679, 'writes in': 1012844, 'in understand': 430420, 'but those': 147564, 'those fighting': 892001, 'disease from': 245148, 'action than': 30145, 'we ever': 971484, 'ever are': 285200, 'are from': 86690, 'from running': 337135, 'littleproudmp writes in': 495680, 'writes in understand': 1012846, 'in understand that': 430421, 'understand that people': 940730, 'worried about covid': 1010483, '19 but those': 5538, 'but those fighting': 147565, 'those fighting in': 892002, 'aisle are more': 40208, 'are more at': 88108, 'catching the disease': 167115, 'the disease from': 853364, 'disease from their': 245149, 'from their action': 337933, 'their action than': 872461, 'action than we': 30146, 'than we ever': 841429, 'we ever are': 971485, 'ever are from': 285201, 'are from running': 86693, 'from running out': 337136, 'sour': 786432, 'chive': 177568, 'frickin': 333163, 'fwps': 342583, 'have sour': 382665, 'sour cream': 786433, 'cream in': 215555, 'in squeeze': 428216, 'squeeze bottle': 791530, 'bottle they': 136334, 'had regular': 373452, 'regular light': 707804, 'light and': 489510, 'and chive': 59866, 'chive but': 177569, 'no frickin': 564305, 'frickin squeeze': 333164, 'bottle fwps': 136227, 'store they didn': 810668, 'didn have sour': 241099, 'have sour cream': 382666, 'sour cream in': 786434, 'cream in squeeze': 215556, 'in squeeze bottle': 428217, 'squeeze bottle they': 791532, 'bottle they had': 136335, 'they had regular': 882258, 'had regular light': 373453, 'regular light and': 707805, 'light and chive': 489511, 'and chive but': 59867, 'chive but no': 177570, 'but no frickin': 146485, 'no frickin squeeze': 564306, 'frickin squeeze bottle': 333165, 'squeeze bottle fwps': 791531, 'amy': 54987, 'davis': 227023, 'expert amy': 291767, 'amy davis': 54988, 'davis tell': 227026, 'those service': 892448, 'consumer expert amy': 197420, 'expert amy davis': 291768, 'amy davis tell': 54989, 'davis tell you': 227027, 'you what you': 1022274, 'to do to': 904573, 'do to make': 250392, 'sure you are': 827848, 'are not paying': 88433, 'not paying for': 570988, 'paying for those': 645419, 'for those service': 327137, 'those service that': 892450, 'service that you': 752927, 'brin': 139908, 'now than': 575982, 'we supportlocal': 973458, 'supportlocal during': 827258, 'during tough': 263362, 'uncertainty that': 939768, 'it brin': 456920, 'it more important': 459670, 'important now than': 418908, 'now than ever': 575984, 'ever that we': 285538, 'that we supportlocal': 847397, 'we supportlocal during': 973459, 'supportlocal during tough': 827260, 'during tough time': 263363, 'tough time we': 926868, 'time we want': 898242, 'we want all': 973742, 'want all of': 965695, 'of our local': 587501, 'our local friend': 623773, 'local friend and': 497996, 'friend and business': 333495, 'and business to': 59304, 'business to survive': 144560, 'survive through the': 829277, 'through the and': 894717, 'the and the': 848724, 'the uncertainty that': 870344, 'uncertainty that it': 939769, 'that it brin': 844697, 'sodding': 781427, 'hubby went': 409878, 'wasn too': 968037, 'busy but': 144875, 'no small': 565527, 'small tin': 775154, 'of tomato': 592299, 'tomato no': 923956, 'no bean': 563675, 'bean he': 118328, 'aisle but': 40222, 'but suspect': 147243, 'suspect there': 829499, 'were shortage': 980115, 'shortage elsewhere': 764924, 'elsewhere too': 272033, 'too people': 924991, 'get sodding': 348033, 'sodding grip': 781428, 'grip it': 364019, 'hubby went to': 409879, 'morning it wasn': 541323, 'it wasn too': 462262, 'wasn too busy': 968038, 'too busy but': 924623, 'busy but there': 144879, 'wa no milk': 962728, 'milk no small': 531745, 'no small tin': 565528, 'small tin of': 775155, 'tin of tomato': 898554, 'of tomato no': 592300, 'tomato no bean': 923957, 'no bean he': 563676, 'bean he didn': 118329, 'he didn go': 384880, 'didn go to': 241079, 'go to every': 354306, 'to every aisle': 905299, 'every aisle but': 285659, 'aisle but suspect': 40224, 'but suspect there': 147245, 'suspect there were': 829501, 'there were shortage': 879332, 'were shortage elsewhere': 980116, 'shortage elsewhere too': 764925, 'elsewhere too people': 272034, 'too people still': 924992, 'need to get': 555950, 'to get sodding': 906593, 'get sodding grip': 348034, 'sodding grip it': 781429, 'grip it isn': 364020, 'it isn just': 459148, 'just about them': 468138, 'diagnostics': 240270, 'coronavirus world': 207103, 'world how': 1009641, 'tech is': 836112, 'is influencing': 448912, 'influencing which': 437362, 'which new': 986173, 'new habit': 558839, 'will stick': 994970, 'stick technology': 800050, 'tech diagnostics': 836073, 'diagnostics shopping': 240275, 'shopping ecommerce': 762555, 'ecommerce consumer': 266738, 'consumer telecommute': 199243, 'telecommute innovation': 836708, 'our post coronavirus': 624402, 'post coronavirus world': 666070, 'coronavirus world how': 207106, 'world how tech': 1009644, 'how tech is': 408780, 'tech is influencing': 836113, 'is influencing which': 448915, 'influencing which new': 437363, 'which new habit': 986174, 'new habit will': 558843, 'habit will stick': 372715, 'will stick technology': 994973, 'stick technology tech': 800051, 'technology tech diagnostics': 836382, 'tech diagnostics shopping': 836074, 'diagnostics shopping ecommerce': 240276, 'shopping ecommerce consumer': 762556, 'ecommerce consumer telecommute': 266742, 'consumer telecommute innovation': 199244, 'hospitalised': 404749, 'surely end': 827901, 'soon all': 785616, 'been hanging': 121255, 'queue will': 694136, 'isolating or': 455132, 'or hospitalised': 615677, 'hospitalised 19': 404750, 'buying will surely': 151372, 'will surely end': 995037, 'surely end soon': 827902, 'end soon all': 275959, 'soon all people': 785618, 'all people who': 43944, 'have been hanging': 379566, 'been hanging around': 121256, 'hanging around in': 376961, 'around in supermarket': 93349, 'supermarket queue will': 822141, 'queue will now': 694139, 'now be infected': 574200, 'infected and will': 436535, 'and will soon': 75693, 'soon be self': 785646, 'be self isolating': 117050, 'self isolating or': 747734, 'isolating or hospitalised': 455133, 'or hospitalised 19': 615678, 'fave': 300448, 'exaggeration': 288782, 'joe to': 466446, 'some salad': 783792, 'salad since': 731922, 'since working': 771001, 'week all': 975876, 'my fave': 548261, 'fave salad': 300449, 'salad were': 731926, 'food section': 316324, 'section the': 744045, 'entire aisle': 278644, 'no exaggeration': 564149, 'exaggeration except': 288783, 'the dessert': 853199, 'dessert traderjoes': 238949, 'dropped by trader': 260555, 'by trader joe': 154585, 'trader joe to': 928721, 'joe to pick': 466447, 'up some salad': 946037, 'some salad since': 783793, 'salad since working': 731923, 'since working from': 771002, 'from home this': 335914, 'home this week': 402290, 'this week all': 891184, 'week all of': 975877, 'of my fave': 586763, 'my fave salad': 548262, 'fave salad were': 300450, 'salad were in': 731927, 'were in stock': 979781, 'stock but when': 801951, 'but when went': 147828, 'when went down': 984485, 'went down the': 978989, 'down the frozen': 257278, 'frozen food section': 338978, 'food section the': 316326, 'section the entire': 744046, 'the entire aisle': 854347, 'entire aisle wa': 278645, 'completely empty no': 192280, 'empty no exaggeration': 274961, 'no exaggeration except': 564150, 'exaggeration except for': 288784, 'for the dessert': 326382, 'the dessert traderjoes': 853200, 'eww': 288614, 'way watch': 970158, 'watch tv': 968597, 'tv seeing': 936185, 'supermarket hugging': 820819, 'and kissing': 65862, 'kissing concert': 475471, 'concert movie': 193271, 'theater eww': 872250, 'eww quarentinelife': 288617, 'covid19 ha changed': 214306, 'the way watch': 871205, 'way watch tv': 970159, 'watch tv seeing': 968598, 'tv seeing people': 936186, 'seeing people shopping': 746413, 'in supermarket hugging': 428616, 'supermarket hugging and': 820820, 'hugging and kissing': 410287, 'and kissing concert': 65863, 'kissing concert movie': 475472, 'concert movie theater': 193272, 'movie theater eww': 544076, 'theater eww quarentinelife': 872251, 'hypochondriac': 412391, 'cost is': 207987, 'gps income': 361439, 'income like': 432398, 'doctor they': 251132, 'little stuff': 495592, 'that waste': 847336, 'waste time': 968205, 'money that': 537057, 'that dropped': 843636, 'the hypochondriac': 857795, 'hypochondriac do': 412392, 'covid gps': 214163, 'gps warn': 361443, 'of hidden': 584605, 'hidden medical': 394820, 'medical cost': 526117, 'think the cost': 885627, 'the cost is': 851985, 'cost is to': 207989, 'is to gps': 453208, 'to gps income': 906953, 'gps income like': 361440, 'income like all': 432399, 'like all people': 489747, 'all people need': 43941, 'need to see': 556061, 'see doctor they': 745055, 'doctor they will': 251133, 'they will it': 883858, 'will it all': 993860, 'it all the': 456377, 'all the little': 44810, 'the little stuff': 859495, 'little stuff that': 495593, 'stuff that waste': 815199, 'that waste time': 847337, 'waste time and': 968206, 'time and money': 896281, 'and money that': 67114, 'money that dropped': 537058, 'that dropped off': 843637, 'dropped off the': 260609, 'off the hypochondriac': 594248, 'the hypochondriac do': 857796, 'hypochondriac do not': 412393, 'get covid gps': 346827, 'covid gps warn': 214164, 'gps warn of': 361444, 'warn of hidden': 966944, 'of hidden medical': 584606, 'hidden medical cost': 394821, 'medical cost of': 526118, 'cost of coronavirus': 208040, 'petty': 653885, 'zitapewa': 1027643, 'matajiri': 520262, 'watu': 969335, 'wanajua': 965543, 'ulafi': 939084, 'to corruption': 903588, 'corruption petty': 207700, 'petty politics': 653887, 'politics if': 663788, 'you wanna': 1022116, 'wanna give': 965634, 'give walk': 350827, 'supermarket buy': 819466, 'good go': 357125, 'go give': 353616, 'one family': 606279, 'your estate': 1023692, 'estate who': 282200, 'are starving': 90359, 'starving or': 795262, 'in slum': 428006, 'slum trust': 774667, 'trust me': 934290, 'me donation': 522678, 'donation zitapewa': 254738, 'zitapewa matajiri': 1027644, 'matajiri na': 520263, 'na watu': 551325, 'watu politician': 969336, 'politician wanajua': 663756, 'wanajua ulafi': 965544, 'ulafi stayhome': 939085, 'donation will lead': 254734, 'lead to corruption': 483334, 'to corruption petty': 903589, 'corruption petty politics': 207701, 'petty politics if': 653888, 'politics if you': 663789, 'if you wanna': 415554, 'you wanna give': 1022120, 'wanna give walk': 965636, 'give walk into': 350828, 'into supermarket buy': 443038, 'supermarket buy good': 819469, 'buy good go': 148743, 'good go give': 357126, 'go give to': 353617, 'give to one': 350794, 'to one family': 910913, 'one family in': 606280, 'in your estate': 431076, 'your estate who': 1023693, 'estate who are': 282201, 'who are starving': 988223, 'are starving or': 90361, 'starving or in': 795263, 'or in slum': 615760, 'in slum trust': 428008, 'slum trust me': 774668, 'trust me donation': 934291, 'me donation zitapewa': 522679, 'donation zitapewa matajiri': 254739, 'zitapewa matajiri na': 1027645, 'matajiri na watu': 520264, 'na watu politician': 551326, 'watu politician wanajua': 969337, 'politician wanajua ulafi': 663757, 'wanajua ulafi stayhome': 965545, 'living across': 496313, 'saw delivery': 738090, 'truck parked': 932836, 'parked outside': 642043, 'outside so': 629549, 'husband popped': 411750, 'had egg': 373065, 'and success': 72647, 'success grocerystores': 816200, 'advantage to living': 33072, 'to living across': 909361, 'living across the': 496314, 'street from grocery': 812975, 'store we saw': 811179, 'we saw delivery': 973133, 'saw delivery truck': 738091, 'delivery truck parked': 234698, 'truck parked outside': 932837, 'parked outside so': 642044, 'outside so my': 629551, 'so my husband': 777839, 'my husband popped': 548790, 'husband popped in': 411751, 'popped in to': 664499, 'in to see': 430136, 'they had egg': 882244, 'had egg and': 373066, 'egg and success': 269769, 'and success grocerystores': 72650, 'surprised that': 828606, 'nobody made': 566036, 'made connection': 507697, 'connection between': 194695, 'between pizza': 128858, '19 italy': 8165, 'biggest pizza': 130288, 'pizza consumer': 657155, 'consumer then': 199272, 'then come': 877076, 'come new': 187416, 'york the': 1016673, 'key thing': 473420, 'dairy from': 224990, 'the cheese': 850788, 'surprised that nobody': 828607, 'that nobody made': 845370, 'nobody made connection': 566037, 'made connection between': 507698, 'connection between pizza': 194697, 'between pizza and': 128859, 'pizza and coronavirus': 657147, 'and coronavirus covid': 60571, 'covid 19 italy': 213299, '19 italy is': 8168, 'italy is the': 462862, 'the biggest pizza': 849668, 'biggest pizza consumer': 130289, 'pizza consumer then': 657156, 'consumer then come': 199273, 'then come new': 877078, 'come new york': 187417, 'new york the': 559952, 'york the key': 1016675, 'the key thing': 858765, 'key thing is': 473421, 'thing is the': 884484, 'is the dairy': 452763, 'the dairy from': 852793, 'dairy from the': 224991, 'from the cheese': 337638, 'sell bogus': 748649, 'bogus product': 134031, 'text social': 839942, 'cybercriminals are using': 223972, 'using the uncertainty': 950719, 'to sell bogus': 914144, 'sell bogus product': 748651, 'bogus product or': 134033, 'email text social': 272326, 'text social medium': 839943, 'post to take': 666376, 'to take your': 916262, 'take your money': 832822, 'someone stockpiling': 784671, 'stockpiling food': 803957, 'asshole this': 96570, 'stockpiling stophoarding': 804078, 'know someone stockpiling': 476730, 'someone stockpiling food': 784672, 'stockpiling food tell': 803965, 'they are greedy': 881290, 'are greedy selfish': 86962, 'greedy selfish asshole': 363590, 'selfish asshole this': 748011, 'asshole this ha': 96571, 'stop now stockpiling': 804858, 'now stockpiling stophoarding': 575911, 'stockpiling stophoarding stoppanicbuying': 804080, 'national lockdown': 552554, 'lockdown start': 499946, 'start tomorrow': 794607, 'buy supermarket': 149257, 'be packed': 116325, 'packed which': 633661, 'you contracting': 1018036, 'you most': 1019892, 'week store': 976935, 'reopen soon': 711364, 'soon stay': 785828, 'calm stay': 156804, 'national lockdown start': 552559, 'lockdown start tomorrow': 499947, 'start tomorrow don': 794608, 'tomorrow don go': 924069, 'don go and': 253561, 'go and panic': 353284, 'panic buy supermarket': 637534, 'buy supermarket will': 149258, 'will be packed': 992596, 'be packed which': 116327, 'packed which will': 633662, 'which will increase': 986492, 'will increase the': 993828, 'increase the chance': 433102, 'chance of you': 171776, 'of you contracting': 593376, 'you contracting covid': 1018037, '19 you most': 12272, 'you most likely': 1019893, 'most likely have': 542483, 'likely have enough': 492013, 'food to last': 317267, 'you week store': 1022225, 'week store will': 976936, 'store will reopen': 811342, 'will reopen soon': 994653, 'reopen soon stay': 711365, 'soon stay calm': 785829, 'stay calm stay': 796816, 'calm stay home': 156805, 'how australian': 407430, 'australian can': 103452, 'business business': 143458, 'coronavirus how australian': 206097, 'how australian can': 407431, 'australian can support': 103453, 'can support local': 159858, 'local business business': 497754, 'free instead': 331922, 'instead especially': 440174, 'here buying': 392843, 'food sanitation': 316291, 'sanitation supply': 733862, 'while and': 986604, 'soaring up': 779347, 'too quick': 925020, 'quick in': 694319, 'this ma': 888729, 'for the test': 326723, 'test on covid': 839108, '19 they should': 11316, 'they should make': 883375, 'should make it': 766208, 'make it free': 510034, 'it free instead': 458131, 'free instead especially': 331923, 'instead especially during': 440175, 'especially during pandemic': 280462, 'during pandemic everyone': 262867, 'pandemic everyone is': 635399, 'everyone is out': 287094, 'is out here': 450661, 'out here buying': 626274, 'here buying food': 392844, 'buying food sanitation': 150329, 'food sanitation supply': 316292, 'sanitation supply and': 733863, 'supply and etc': 824718, 'and etc to': 62286, 'etc to stay': 282839, 'for while and': 327837, 'while and the': 986605, 'are soaring up': 90234, 'soaring up too': 779348, 'up too quick': 946472, 'too quick in': 925021, 'quick in addition': 694320, 'addition to all': 31731, 'all this ma': 45115, 'tyler': 937502, 'perry': 652239, 'actor tyler': 30601, 'tyler perry': 937503, 'perry surprised': 652240, 'surprised shopper': 828603, 'shopper wednesday': 761814, 'wednesday at': 975620, 'chain when': 171229, 'he bought': 384792, 'bought their': 136745, 'them amid': 875365, 'actor tyler perry': 30602, 'tyler perry surprised': 937504, 'perry surprised shopper': 652241, 'surprised shopper wednesday': 828605, 'shopper wednesday at': 761815, 'wednesday at two': 975622, 'at two grocery': 101376, 'store chain when': 806939, 'chain when he': 171230, 'when he bought': 983528, 'he bought their': 384793, 'bought their grocery': 136746, 'their grocery for': 873447, 'grocery for them': 364532, 'for them amid': 326891, 'them amid the': 875366, 'up video': 946528, 'video conference': 956681, 'discus current': 244843, 'issue reminder': 455912, 'reminder you': 710617, 'always report': 49720, 'report consumer': 711881, 'issue including': 455805, 'including fraud': 431973, 'fraud scam': 331338, 'you to and': 1021750, 'to and his': 900507, 'and his staff': 64612, 'his staff for': 397813, 'staff for working': 792469, 'for working with': 327959, 'working with me': 1009061, 'with me to': 999455, 'me to set': 523779, 'set up video': 753585, 'up video conference': 946529, 'video conference call': 956682, 'conference call today': 193729, 'today to discus': 920353, 'to discus current': 904373, 'discus current covid': 244844, '19 issue reminder': 8118, 'issue reminder you': 455913, 'reminder you can': 710618, 'can always report': 157483, 'always report consumer': 49722, 'report consumer issue': 711883, 'consumer issue including': 197950, 'issue including fraud': 455806, 'including fraud scam': 431974, 'fraud scam and': 331340, 'gouging to and': 359477, 'nhk': 562202, 'nhk news': 562203, 'reschedule': 713570, 'numerous complaint': 577126, 'complaint regarding': 192019, 'regarding forcing': 707213, 'of booked': 580777, 'booked holiday': 134666, 'holiday during': 400286, 'have inflated': 381078, 'price customer': 673371, 'cannot reschedule': 162060, 'reschedule have': 713575, 'money despite': 536696, 'despite buying': 238686, 'please help with': 660091, 'with the numerous': 1001406, 'the numerous complaint': 861971, 'numerous complaint regarding': 577128, 'complaint regarding forcing': 192020, 'regarding forcing people': 707214, 'forcing people to': 328724, 'people to amend': 649876, 'amend the date': 51398, 'the date of': 852859, 'date of booked': 226692, 'of booked holiday': 580778, 'booked holiday during': 134667, 'holiday during covid': 400288, 'crisis and have': 217027, 'and have inflated': 64250, 'have inflated price': 381079, 'inflated price customer': 437036, 'price customer who': 673373, 'customer who cannot': 223077, 'who cannot reschedule': 988429, 'cannot reschedule have': 162061, 'reschedule have lost': 713576, 'lost their money': 503930, 'their money despite': 873997, 'money despite buying': 536697, 'the unemployment': 870375, 'article to': 94483, 'see new': 745479, 'new update': 559807, 'the unemployment rate': 870376, 'unemployment rate is': 941273, 'rate is rising': 697277, 'is rising gas': 451554, 'are dropping and': 86007, 'dropping and more': 260669, 'and more check': 67157, 'more check out': 538806, 'our article to': 622122, 'article to see': 94488, 'to see new': 914049, 'see new update': 745481, 'wait the': 964198, 'guess once': 368018, 'economy tank': 268252, 'just wait the': 470194, 'wait the price': 964199, 'will be harder': 992489, 'harder to guess': 378195, 'to guess once': 907067, 'guess once the': 368019, 'once the economy': 605723, 'the economy tank': 854023, 'favorite supermarket': 300558, 'supermarket taking': 823130, 'these necessary': 880333, 'guideline set': 368468, 'and beat': 58785, 'your favorite supermarket': 1023834, 'favorite supermarket taking': 300559, 'supermarket taking all': 823131, 'taking all these': 833268, 'all these necessary': 45042, 'these necessary precaution': 880334, 'necessary precaution to': 554048, 'precaution to keep': 669383, 'you and it': 1016994, 'and it employee': 65520, 'it employee safe': 457805, 'safe we all': 730113, 'step up and': 799683, 'up and follow': 944323, 'and follow the': 63015, 'follow the guideline': 312528, 'the guideline set': 856931, 'guideline set by': 368469, 'by the in': 154356, 'the in order': 858010, 'order to flatten': 618681, 'curve and beat': 221832, 'group today': 366938, 'today called': 919354, 'congress to': 194537, 'include provision': 431614, 'any airline': 78909, 'industry bailout': 435679, 'bailout that': 108662, 'that address': 842499, 'address both': 31953, 'on passenger': 602705, 'passenger well': 643357, 'well long': 978377, 'standing consumer': 793759, 'protection concern': 685385, 'coalition of consumer': 185082, 'consumer group today': 197667, 'group today called': 366939, 'today called on': 919356, 'on congress to': 600017, 'congress to include': 194541, 'to include provision': 908252, 'include provision in': 431615, 'provision in any': 687270, 'in any airline': 420419, 'any airline industry': 78910, 'airline industry bailout': 39978, 'industry bailout that': 435680, 'bailout that address': 108663, 'that address both': 842500, 'address both the': 31954, 'both the immediate': 136066, 'the immediate impact': 857903, 'immediate impact of': 416997, 'outbreak on passenger': 628497, 'on passenger well': 602706, 'passenger well long': 643358, 'well long standing': 978378, 'long standing consumer': 501651, 'standing consumer protection': 793760, 'consumer protection concern': 198520, 'much but': 544774, 'nh going': 561965, 'teacher care': 835437, 'home worker': 402558, 'cleaner police': 180814, 'firefighter etc': 308215, 'etc clapforourcarers': 282472, 'clapforourcarers saturdaymotivation': 180014, 'know it not': 476539, 'it not much': 459897, 'not much but': 570607, 'much but here': 544775, 'here one way': 393419, 'way to show': 970095, 'show our appreciation': 767083, 'our appreciation for': 622095, 'appreciation for all': 82874, 'for all key': 319143, 'worker nh going': 1007437, 'nh going to': 561966, 'going to include': 355626, 'to include supermarket': 908254, 'staff teacher care': 792920, 'teacher care home': 835438, 'care home worker': 164007, 'home worker cleaner': 402560, 'worker cleaner police': 1006652, 'cleaner police firefighter': 180815, 'police firefighter etc': 663010, 'firefighter etc clapforourcarers': 308216, 'etc clapforourcarers saturdaymotivation': 282473, 'centralised': 169464, 'mask rationing': 519179, 'rationing mask': 697839, 'to citizen': 902768, 'and restricting': 70409, 'restricting price': 717194, 'profiteering verifying': 683102, 'verifying location': 954805, 'location of': 498940, 'all isolated': 43258, 'isolated quarantined': 455020, 'quarantined individual': 692866, 'individual during': 435177, 'during random': 262959, 'random check': 696602, 'check centralised': 174395, 'centralised health': 169467, 'system found': 831175, 'read fascinating': 700333, 'production of mask': 682147, 'of mask rationing': 586275, 'mask rationing mask': 519180, 'rationing mask to': 697840, 'mask to citizen': 519396, 'to citizen and': 902769, 'citizen and restricting': 178839, 'and restricting price': 70410, 'restricting price to': 717195, 'price to stop': 677048, 'stop profiteering verifying': 804945, 'profiteering verifying location': 683103, 'verifying location of': 954806, 'location of all': 498941, 'of all isolated': 579949, 'all isolated quarantined': 43260, 'isolated quarantined individual': 455021, 'quarantined individual during': 692867, 'individual during random': 435179, 'during random check': 262960, 'random check centralised': 696603, 'check centralised health': 174396, 'centralised health system': 169468, 'health system found': 386889, 'system found this': 831176, 'found this read': 330439, 'this read fascinating': 889811, 'wtrg': 1013421, 'kmb': 475951, 'csco': 220035, 'ibm': 412583, 'industry built': 435701, 'for pandemic': 324360, 'pandemic such': 636587, 'industry utility': 436207, 'staple technology': 793995, 'technology company': 836273, 'company ed': 190625, 'ed wtrg': 268469, 'wtrg cost': 1013422, 'cost tgt': 208123, 'tgt wmt': 840041, 'wmt pg': 1003288, 'pg kmb': 653948, 'kmb ul': 475952, 'ul csco': 939080, 'csco ibm': 220036, 'ibm msft': 412584, 'msft dividend': 544512, 'dividend investing': 248626, 'industry built for': 435702, 'built for pandemic': 142181, 'for pandemic such': 324362, 'pandemic such the': 636589, 'such the industry': 816803, 'the industry utility': 858192, 'industry utility consumer': 436208, 'utility consumer supermarket': 951277, 'consumer supermarket store': 199177, 'supermarket store consumer': 823004, 'store consumer staple': 807154, 'consumer staple technology': 199120, 'staple technology company': 793996, 'technology company ed': 836274, 'company ed wtrg': 190626, 'ed wtrg cost': 268470, 'wtrg cost tgt': 1013423, 'cost tgt wmt': 208124, 'tgt wmt pg': 840042, 'wmt pg kmb': 1003289, 'pg kmb ul': 653949, 'kmb ul csco': 475953, 'ul csco ibm': 939081, 'csco ibm msft': 220037, 'ibm msft dividend': 412585, 'msft dividend investing': 544513, 'the rural': 866081, 'rural senator': 728263, 'senator saying': 749786, 'saying there': 739717, 'there going': 878433, 'be negative': 116061, 'and rancher': 69925, 'rancher due': 696537, 'food impacted': 314910, 'are the rural': 90899, 'the rural senator': 866082, 'rural senator saying': 728264, 'senator saying there': 749787, 'saying there going': 739719, 'there going to': 878434, 'to be negative': 901402, 'be negative impact': 116063, 'negative impact on': 556791, 'impact on farmer': 417850, 'on farmer and': 600739, 'farmer and rancher': 299261, 'and rancher due': 69928, 'rancher due to': 696538, 'for food impacted': 321594, 'getthehellawayfromme': 348812, 'wa hard': 962278, 'hard won': 378116, 'won groceryshopping': 1003827, 'socialdistancing getthehellawayfromme': 780379, 'this wa hard': 891069, 'wa hard won': 962280, 'hard won groceryshopping': 378117, 'won groceryshopping socialdistancing': 1003828, 'groceryshopping socialdistancing getthehellawayfromme': 366279, 'exceeds': 289047, 'businessnews': 144774, 'news alberta': 560205, 'alberta inflation': 40797, 'rate exceeds': 697207, 'exceeds the': 289052, 'the canadian': 850319, 'canadian average': 160644, 'average alberta': 104801, 'inflation consumer': 437147, 'price oilprices': 675636, 'oilprices calgary': 597658, 'calgary yyc': 155429, 'yyc edmonton': 1027155, 'edmonton business': 268711, 'business businessnews': 143461, 'latest news alberta': 481449, 'news alberta inflation': 560207, 'alberta inflation rate': 40799, 'inflation rate exceeds': 437224, 'rate exceeds the': 697208, 'exceeds the canadian': 289053, 'the canadian average': 850320, 'canadian average alberta': 160645, 'average alberta inflation': 104802, 'alberta inflation consumer': 40798, 'inflation consumer price': 437148, 'consumer price oilprices': 198426, 'price oilprices calgary': 675637, 'oilprices calgary yyc': 597659, 'calgary yyc edmonton': 155430, 'yyc edmonton business': 1027156, 'edmonton business businessnews': 268712, 'rahul': 695585, 'kansal': 470824, 'extremely engaging': 293875, 'engaging session': 276922, 'on key': 601755, 'key trend': 473453, 'behavior by': 123948, 'by rahul': 153708, 'rahul kansal': 695586, 'kansal and': 470825, 'how indian': 408062, 'being pulled': 125603, 'pulled by': 688910, 'two force': 936934, 'force of': 328463, 'of root': 589159, 'root and': 726011, 'and wing': 75724, 'wing in': 995980, 'of detailed': 582566, 'detailed learning': 239294, 'learning soon': 484239, 'soon at': 785630, 'an extremely engaging': 56028, 'extremely engaging session': 293876, 'engaging session on': 276923, 'session on key': 753298, 'on key trend': 601759, 'key trend in': 473455, 'trend in consumer': 931363, 'consumer behavior by': 196453, 'behavior by rahul': 123950, 'by rahul kansal': 153709, 'rahul kansal and': 695587, 'kansal and how': 470826, 'and how indian': 64818, 'how indian consumer': 408063, 'indian consumer are': 434797, 'consumer are being': 196284, 'are being pulled': 84899, 'being pulled by': 125604, 'pulled by the': 688911, 'by the two': 154464, 'the two force': 870149, 'two force of': 936935, 'force of root': 328465, 'of root and': 589160, 'root and wing': 726012, 'and wing in': 75725, 'wing in the': 995981, 'wake of detailed': 964596, 'of detailed learning': 582567, 'detailed learning soon': 239295, 'learning soon at': 484240, 'state had': 795647, 'highest number': 395836, 'state with': 796093, 'third highest': 886075, 'death now': 230136, 'really understand': 702679, 'on such': 603736, 'such high': 816550, 'didn know that': 241124, 'know that new': 476774, 'that new york': 845333, 'york state had': 1016668, 'state had the': 795648, 'had the highest': 373617, 'the highest number': 857344, 'highest number of': 395837, 'united state with': 942254, 'state with the': 796100, 'with the third': 1001516, 'the third highest': 869478, 'third highest number': 886076, 'number of death': 576937, 'of death now': 582421, 'death now really': 230138, 'now really understand': 575650, 'really understand why': 702681, 'understand why we': 940826, 'are on such': 88736, 'on such high': 603737, 'such high alert': 816551, 'sinclair': 771063, 'euclid': 283307, 'crisis motorist': 217737, 'motorist can': 543359, 'le at': 482852, 'thursday the': 895430, 'the sinclair': 867213, 'sinclair station': 771064, 'station on': 796472, 'on north': 602434, 'north euclid': 567644, 'euclid avenue': 283308, 'avenue in': 104776, 'in pierre': 426706, 'pierre sell': 656422, 'sell regular': 748861, 'regular gasoline': 707783, 'gasoline at': 344218, 'price plummet amid': 675895, 'plummet amid the': 661253, '19 crisis motorist': 6287, 'crisis motorist can': 217738, 'motorist can expect': 543360, 'to pay le': 911540, 'pay le at': 644977, 'le at the': 482853, 'pump on thursday': 689078, 'on thursday the': 604680, 'thursday the sinclair': 895432, 'the sinclair station': 867214, 'sinclair station on': 771065, 'station on north': 796473, 'on north euclid': 602436, 'north euclid avenue': 567645, 'euclid avenue in': 283309, 'avenue in pierre': 104777, 'in pierre sell': 426707, 'pierre sell regular': 656423, 'sell regular gasoline': 748862, 'regular gasoline at': 707784, 'gasoline at 99': 344219, 'shopassistants': 761112, 'shelfstacking': 757864, 'exhausting': 290185, 'sending shout': 750087, 'forgotten hero': 329437, 'supermarket shopassistants': 822603, 'shopassistants those': 761113, 'till and': 895991, 'those doing': 891939, 'the herculean': 857280, 'herculean job': 392596, 'of shelfstacking': 589584, 'shelfstacking give': 757865, 'an exhausting': 55946, 'exhausting and': 290186, 'moment frightening': 535940, 'frightening job': 334059, 'sending shout out': 750088, 'to the forgotten': 916723, 'the forgotten hero': 855703, 'forgotten hero in': 329438, 'midst of this': 530796, 'this coronacrisis the': 886880, 'coronacrisis the supermarket': 204815, 'the supermarket shopassistants': 868797, 'supermarket shopassistants those': 822604, 'shopassistants those on': 761114, 'on the till': 604405, 'the till and': 869555, 'till and those': 895993, 'and those doing': 74023, 'those doing the': 891942, 'doing the herculean': 252720, 'the herculean job': 857281, 'herculean job of': 392597, 'job of shelfstacking': 466039, 'of shelfstacking give': 589585, 'shelfstacking give them': 757866, 'give them thought': 350774, 'them thought and': 876438, 'thought and thank': 892972, 'thank you it': 841756, 'you it an': 1019384, 'it an exhausting': 456472, 'an exhausting and': 55947, 'exhausting and at': 290187, 'the moment frightening': 860755, 'moment frightening job': 535941, 'punishes': 689240, 'ruthlessly': 728700, 'cuomo we': 220432, 'are consumed': 85522, 'consumed by': 195962, 'doing brilliant': 252316, 'brilliant job': 139870, 'many issue': 514209, 'issue surrounding': 455948, 'you possibly': 1020379, 'possibly find': 665923, 'ask legislator': 95577, 'legislator to': 486012, 'to propose': 912274, 'propose law': 684501, 'that severely': 846215, 'severely punishes': 754106, 'punishes any': 689241, 'any person': 79644, 'or company': 614777, 'that ruthlessly': 846081, 'ruthlessly raise': 728701, 'this tragic': 890842, 'tragic time': 929200, 'governor cuomo we': 360895, 'cuomo we know': 220433, 'you are consumed': 1017096, 'are consumed by': 85523, 'consumed by and': 195963, 'by and doing': 151836, 'and doing brilliant': 61601, 'doing brilliant job': 252317, 'brilliant job with': 139871, 'job with the': 466307, 'with the many': 1001382, 'the many issue': 860045, 'many issue surrounding': 514211, 'issue surrounding covid': 455949, '19 can you': 5618, 'can you possibly': 160324, 'you possibly find': 1020381, 'possibly find time': 665924, 'find time to': 307341, 'time to ask': 897947, 'to ask legislator': 900757, 'ask legislator to': 95578, 'legislator to propose': 486013, 'to propose law': 912277, 'propose law that': 684502, 'law that severely': 482414, 'that severely punishes': 846216, 'severely punishes any': 754107, 'punishes any person': 689242, 'any person or': 79645, 'person or company': 652563, 'or company that': 614780, 'company that ruthlessly': 191187, 'that ruthlessly raise': 846082, 'ruthlessly raise price': 728702, 'during this tragic': 263329, 'this tragic time': 890843, 'fasting': 300173, 'supremecourtofindia': 827442, 'mannkibaa': 513316, 'do announcement': 249077, 'announcement not': 77172, 'bulk declare': 142294, 'declare one': 231198, 'day fasting': 227595, 'fasting and': 300174, 'do fasting': 249288, 'fasting once': 300180, 'week till': 977059, 'end india': 275848, 'india marketcrash': 434516, 'marketcrash supremecourtofindia': 517425, 'supremecourtofindia mannkibaa': 827443, 'please do announcement': 659892, 'do announcement not': 249078, 'announcement not to': 77173, 'not to store': 572195, 'to store grocery': 915622, 'store grocery product': 807975, 'grocery product in': 364879, 'product in bulk': 681280, 'in bulk declare': 421032, 'bulk declare one': 142295, 'declare one day': 231199, 'one day fasting': 606155, 'day fasting and': 227596, 'fasting and urge': 300175, 'and urge public': 74759, 'public to do': 688374, 'to do fasting': 904505, 'do fasting once': 249289, 'fasting once week': 300181, 'once week till': 605805, 'week till end': 977060, 'till end india': 896012, 'end india marketcrash': 275849, 'india marketcrash supremecourtofindia': 434517, 'marketcrash supremecourtofindia mannkibaa': 517426, 'every 1st': 285644, 'responder including': 715486, 'clerk pharmacy': 181753, 'worked thru': 1006150, 'pandemic should': 636452, 'government bonus': 359938, 'bonus check': 134352, 'check courtesy': 174403, 'courtesy grateful': 212042, 'grateful american': 362239, 'every 1st responder': 285645, '1st responder including': 12796, 'responder including the': 715487, 'including the delivery': 432181, 'the delivery people': 853071, 'delivery people grocery': 234317, 'store clerk pharmacy': 807021, 'clerk pharmacy worker': 181754, 'pharmacy worker etc': 654577, 'worker etc who': 1006874, 'etc who worked': 282886, 'who worked thru': 990052, 'worked thru this': 1006151, 'thru this pandemic': 895239, 'this pandemic should': 889423, 'pandemic should get': 636454, 'should get government': 766025, 'get government bonus': 347146, 'government bonus check': 359939, 'bonus check courtesy': 134353, 'check courtesy grateful': 174404, 'courtesy grateful american': 212043, 'my stay': 550196, 'keep proper': 471825, 'proper hygiene': 684112, 'hand apply': 374793, 'apply hand': 82567, 'my stay safe': 550197, 'safe everyone keep': 729647, 'everyone keep proper': 287136, 'keep proper hygiene': 471827, 'proper hygiene wash': 684114, 'hygiene wash your': 412191, 'your hand apply': 1024164, 'hand apply hand': 374794, 'apply hand sanitizer': 82568, 'sanitizer and social': 734435, 'arnews': 93067, 'rate continue': 697183, 'to soar': 914809, 'soar amid': 779222, 'outbreak food': 628222, 'work arnews': 1004839, 'unemployment rate continue': 941269, 'rate continue to': 697184, 'continue to soar': 201260, 'to soar amid': 914810, 'soar amid the': 779225, 'coronavirus outbreak food': 206387, 'outbreak food bank': 628223, 'from people out': 336887, 'of work arnews': 593241, 'skellig': 772860, 'kilometer': 474747, 'skelligcoast2kms': 772863, 'southkerry': 786887, 'made here': 507771, 'the skellig': 867297, 'skellig coast': 772861, 'coast if': 185105, 'only it': 610663, 'it were': 462314, 'were 15': 979250, '15 kilometer': 3754, 'kilometer closer': 474750, 'closer thank': 183512, 'you giving': 1018834, 'giving donation': 351267, 'donation every': 254599, 'use skelligcoast2kms': 949578, 'skelligcoast2kms hashtag': 772864, 'hashtag and': 378690, 'this southkerry': 890268, 'southkerry ireland': 786888, 'sanitizer made here': 735329, 'made here on': 507772, 'here on the': 393413, 'on the skellig': 604368, 'the skellig coast': 867298, 'skellig coast if': 772862, 'coast if only': 185106, 'if only it': 414551, 'only it were': 610665, 'it were 15': 462315, 'were 15 kilometer': 979251, '15 kilometer closer': 3755, 'kilometer closer thank': 474751, 'closer thank you': 183513, 'thank you giving': 841732, 'you giving donation': 1018835, 'giving donation every': 351268, 'donation every time': 254600, 'time you use': 898419, 'you use skelligcoast2kms': 1022003, 'use skelligcoast2kms hashtag': 949579, 'skelligcoast2kms hashtag and': 772865, 'hashtag and making': 378691, 'and making this': 66602, 'making this southkerry': 511463, 'this southkerry ireland': 890269, 'healer': 386075, 'detain': 239302, 'hoarding get': 399331, 'to healer': 907366, 'healer not': 386076, 'to detain': 904222, 'detain asylum': 239303, 'why is hoarding': 991110, 'is hoarding get': 448509, 'hoarding get mask': 399332, 'get mask to': 347528, 'mask to healer': 519409, 'to healer not': 907367, 'healer not to': 386077, 'not to detain': 572144, 'to detain asylum': 904223, 'detain asylum seeker': 239304, 'scored': 742385, 'when scored': 983967, 'scored the': 742396, 'felt when scored': 303479, 'when scored the': 983968, 'scored the last': 742397, 'arielle': 92785, 'trzcinski': 934912, 'optimises': 613895, 'in analyst': 420340, 'analyst arielle': 57109, 'arielle trzcinski': 92786, 'trzcinski writes': 934913, 'writes about': 1012825, 'how future': 407904, 'future success': 342464, 'success in': 816203, 'healthcare will': 387334, 'will rely': 994622, 'on strategy': 603705, 'that optimises': 845535, 'optimises experience': 613896, 'new healthcare': 558871, 'healthcare consumer': 387067, 'in analyst arielle': 420341, 'analyst arielle trzcinski': 57110, 'arielle trzcinski writes': 92787, 'trzcinski writes about': 934914, 'writes about how': 1012827, 'about how future': 25437, 'how future success': 407906, 'future success in': 342465, 'success in healthcare': 816204, 'in healthcare will': 423613, 'healthcare will rely': 387335, 'will rely on': 994623, 'rely on strategy': 709651, 'on strategy that': 603706, 'strategy that optimises': 812724, 'that optimises experience': 845536, 'optimises experience for': 613897, 'experience for the': 291366, 'the new healthcare': 861517, 'new healthcare consumer': 558872, 'staking': 793334, 'pseudoscience': 687471, 'laughably': 481787, 'evade': 283702, 'from staking': 337401, 'staking out': 793335, 'out your': 627905, 'supermarket loading': 821354, 'dock for': 250777, 'how scammer': 408624, 'scammer exploit': 740568, 'exploit pseudoscience': 292356, 'pseudoscience for': 687472, 'for gain': 321833, 'gain it': 342785, 'it laughably': 459310, 'laughably easy': 481788, 'easy for': 265701, 'to evade': 905281, 'evade ban': 283703, 'ban via': 109288, 'break from staking': 138734, 'from staking out': 337402, 'staking out your': 793336, 'out your supermarket': 627917, 'your supermarket loading': 1026051, 'supermarket loading dock': 821355, 'loading dock for': 497335, 'dock for toilet': 250778, 'paper delivery and': 640085, 'delivery and read': 233676, 'and read about': 69977, 'read about how': 700252, 'about how scammer': 25467, 'how scammer exploit': 408626, 'scammer exploit pseudoscience': 740570, 'exploit pseudoscience for': 292357, 'pseudoscience for gain': 687473, 'for gain it': 321836, 'gain it laughably': 342786, 'it laughably easy': 459311, 'laughably easy for': 481789, 'easy for these': 265706, 'for these people': 326974, 'these people to': 880460, 'people to evade': 649898, 'to evade ban': 905282, 'evade ban via': 283704, 'ban via for': 109289, 'malibu': 511704, '593': 20582, '822': 22826, 'malibu protect': 511705, 'to la': 909018, '800 593': 22676, '593 822': 20583, '822 for': 22827, 'for investigation': 322632, 'investigation more': 443882, 'malibu protect yourself': 511706, 'yourself from price': 1026621, 'crisis and report': 217044, 'and report it': 70263, 'it to la': 461728, 'to la county': 909019, 'of consumer business': 581716, 'consumer business affair': 196667, 'business affair at': 143243, 'affair at 800': 34003, 'at 800 593': 97765, '800 593 822': 22677, '593 822 for': 20584, '822 for investigation': 22828, 'for investigation more': 322633, 'investigation more info': 443883, 'california man': 155537, 'man punch': 512197, 'punch mother': 689162, 'for hiding': 322252, 'california man punch': 155538, 'man punch mother': 512198, 'punch mother for': 689163, 'mother for hiding': 543096, 'for hiding toilet': 322253, 'hiding toilet paper': 394884, 'paper amid coronavirus': 639791, 'amid coronavirus lockdown': 52423, 'coronavirus lockdown 19': 206238, 'undermines': 940507, 'chs': 178265, 'outbreak undermines': 628774, 'undermines consumer': 940508, 'spending small': 788988, 'biz chamber': 131935, 'chamber ceo': 171666, 'say and': 738420, 'what might': 981870, 'during chs': 262502, 'chs sc': 178266, 'outbreak undermines consumer': 628775, 'undermines consumer spending': 940509, 'consumer spending small': 199092, 'spending small biz': 788989, 'small biz chamber': 774808, 'biz chamber ceo': 131936, 'chamber ceo say': 171667, 'ceo say and': 169831, 'say and he': 738421, 'and he ha': 64318, 'he ha an': 385017, 'ha an idea': 369544, 'an idea for': 56125, 'idea for what': 413054, 'for what might': 327801, 'what might help': 981871, 'might help during': 531031, 'help during chs': 389606, 'during chs sc': 262503, 'manhandling': 513125, 'please refrain': 660360, 'from manhandling': 336325, 'manhandling people': 513126, 'and destroying': 61282, 'destroying and': 239080, 'and wasting': 75218, 'supply people': 825709, 'panic mood': 638330, 'mood it': 538277, 'it high': 458580, 'educate them': 268764, 'them aware': 875451, 'calm manner': 156766, 'please refrain from': 660361, 'refrain from manhandling': 706745, 'from manhandling people': 336326, 'manhandling people on': 513127, 'on street and': 603713, 'street and destroying': 812891, 'and destroying and': 61283, 'destroying and wasting': 239081, 'and wasting food': 75219, 'wasting food supply': 968310, 'food supply people': 316981, 'supply people are': 825710, 'in panic mood': 426481, 'panic mood it': 638331, 'mood it high': 538278, 'it high time': 458581, 'high time to': 395481, 'time to educate': 897982, 'to educate them': 904944, 'educate them and': 268765, 'them and make': 875386, 'and make them': 66581, 'make them aware': 510603, 'them aware of': 875452, 'the spread in': 867630, 'spread in calm': 790570, 'in calm manner': 421169, 'introduction': 443514, 'be cool': 114243, 'cool to': 203051, 'everyone through': 287490, 'this get': 887684, 'the introduction': 858410, 'introduction from': 443515, 'before match': 122942, 'match and': 520280, 'and release': 70193, 'release music': 708970, 'music that': 546346, 'the athlete': 849006, 'athlete listen': 101768, 'to rt': 913645, 'agree realheros': 38637, 'realheros corona': 701575, 'know they do': 476875, 'have time for': 383136, 'time for this': 896766, 'for this but': 327014, 'would be cool': 1011569, 'be cool to': 114244, 'cool to see': 203052, 'see doctor nurse': 745054, 'are helping everyone': 87095, 'helping everyone through': 391326, 'everyone through this': 287491, 'through this get': 894816, 'this get the': 887688, 'get the introduction': 348256, 'the introduction from': 858411, 'introduction from before': 443516, 'from before match': 334663, 'before match and': 122943, 'match and release': 520282, 'and release music': 70194, 'release music that': 708971, 'music that the': 546347, 'that the athlete': 846663, 'the athlete listen': 849007, 'athlete listen to': 101769, 'listen to rt': 494747, 'to rt if': 913646, 'you agree realheros': 1016851, 'agree realheros corona': 38638, 'softer': 781508, 'hand feel': 374931, 'feel much': 302782, 'much softer': 545314, 'softer now': 781511, 'that washing': 847332, 'washing them': 967732, 'soap again': 778895, 'again sanitizer': 37154, 'know about you': 476229, 'about you but': 26970, 'you but my': 1017552, 'but my hand': 146432, 'my hand feel': 548605, 'hand feel much': 374932, 'feel much softer': 302784, 'much softer now': 545315, 'softer now that': 781512, 'now that washing': 576024, 'that washing them': 847333, 'washing them with': 967734, 'them with soap': 876653, 'with soap again': 1000789, 'soap again sanitizer': 778896, 'andratuttobene': 76159, 'tuscany': 936025, 'lockdown grateful': 499424, 'shopping curve': 762425, 'curve ha': 221861, 'ha flattened': 370634, 'flattened to': 310139, 'normal almost': 567077, 'almost normal': 46710, 'normal toilet': 567375, 'stock too': 803017, 'too lockdown': 924859, 'lockdown grocery': 499427, 'stock iorestoacasa': 802299, 'iorestoacasa andratuttobene': 444457, 'andratuttobene italy': 76160, 'italy tuscany': 462957, 'tuscany grateful': 936026, 'day of lockdown': 228079, 'of lockdown grateful': 585954, 'lockdown grateful that': 499425, 'grateful that the': 362313, 'that the grocery': 846739, 'the grocery shopping': 856823, 'grocery shopping curve': 365012, 'shopping curve ha': 762426, 'curve ha flattened': 221862, 'ha flattened to': 370635, 'flattened to new': 310140, 'new normal almost': 559146, 'normal almost normal': 567078, 'almost normal toilet': 46711, 'normal toilet paper': 567376, 'paper stock too': 640834, 'stock too lockdown': 803018, 'too lockdown grocery': 924860, 'lockdown grocery store': 499428, 'store supermarket stock': 810462, 'supermarket stock iorestoacasa': 822965, 'stock iorestoacasa andratuttobene': 802300, 'iorestoacasa andratuttobene italy': 444458, 'andratuttobene italy tuscany': 76161, 'italy tuscany grateful': 462958, 'pecker': 646179, 'ami': 52365, 'trump ally': 933395, 'ally david': 46431, 'david pecker': 226996, 'pecker ami': 646180, 'ami enquirer': 52366, 'enquirer pushing': 277798, 'pushing disinformation': 690404, 'disinformation on': 245949, 'be pulled': 116616, 'pulled from': 688914, 'trump ally david': 933396, 'ally david pecker': 46432, 'david pecker ami': 226997, 'pecker ami enquirer': 646181, 'ami enquirer pushing': 52367, 'enquirer pushing disinformation': 277799, 'pushing disinformation on': 690405, 'disinformation on covid': 245950, '19 that is': 11154, 'that is public': 844640, 'is public health': 451133, 'public health risk': 688082, 'health risk it': 386809, 'risk it should': 723653, 'should be pulled': 765702, 'be pulled from': 116617, 'pulled from grocery': 688915, 'survives': 829339, 'alcoholism': 41228, 'me survives': 523574, 'survives covid': 829342, 'of alcoholism': 579909, 'alcoholism and': 41229, 'and whatever': 75498, 'whatever happens': 982760, 'you eat': 1018389, 'eat an': 265843, 'an entire': 55766, 'me survives covid': 523575, 'survives covid 19': 829343, '19 dy of': 6679, 'dy of alcoholism': 263745, 'of alcoholism and': 579910, 'alcoholism and whatever': 41230, 'and whatever happens': 75499, 'whatever happens when': 982762, 'when you eat': 984555, 'you eat an': 1018390, 'eat an entire': 265844, 'an entire grocery': 55770, 'entire grocery store': 278683, 'ufcw grocery': 937928, 'the seattle': 866570, 'seattle area': 743550, 'demanding better': 236577, 'better workplace': 128615, 'workplace precaution': 1009206, 'precaution they': 669374, 'community hit': 189897, 'sign their': 769232, 'their petition': 874287, 'petition here': 653609, 'ufcw grocery worker': 937929, 'grocery worker in': 366178, 'in the seattle': 429531, 'the seattle area': 866571, 'seattle area are': 743551, 'area are demanding': 91949, 'are demanding better': 85776, 'demanding better workplace': 236578, 'better workplace precaution': 128616, 'workplace precaution they': 1009207, 'precaution they provide': 669375, 'they provide food': 882930, 'food to one': 317277, 'of the community': 590876, 'the community hit': 851278, 'community hit hardest': 189898, 'hardest by covid': 378204, '19 sign their': 10545, 'sign their petition': 769233, 'their petition here': 874288, 'trending out': 931562, 'control teenager': 202157, 'teenager coughing': 836540, 'store produce': 809662, 'trending out of': 931563, 'of control teenager': 581848, 'control teenager coughing': 202158, 'teenager coughing on': 836541, 'grocery store produce': 365681, 'crafting': 214787, 'customizing': 223181, 'fipi': 308045, 'lele': 486158, 'toiletpaperrolls': 923305, 'toiletpaperseeds': 923313, 'crossing crafting': 219079, 'crafting and': 214788, 'and customizing': 60878, 'customizing plant': 223182, 'plant plant': 658690, 'plant you': 658732, 'material who': 520440, 'who fipi': 988745, 'fipi lele': 308046, 'lele toiletpaper': 486159, 'toiletpaper toiletpaperrolls': 922717, 'toiletpaperrolls toiletpaperseeds': 923308, 'toiletpaperseeds animalcrossing': 923314, 'animalcrossing animalcrossingnewhorizons': 76695, 'in the spirit': 429561, 'spirit of animal': 789491, 'of animal crossing': 580210, 'animal crossing crafting': 76570, 'crossing crafting and': 219080, 'crafting and customizing': 214789, 'and customizing plant': 60879, 'customizing plant plant': 223183, 'plant plant plant': 658691, 'plant plant you': 658692, 'plant you have': 658733, 'have the raw': 383016, 'raw material who': 697981, 'material who fipi': 520441, 'who fipi lele': 988746, 'fipi lele toiletpaper': 308047, 'lele toiletpaper toiletpaperrolls': 486160, 'toiletpaper toiletpaperrolls toiletpaperseeds': 922718, 'toiletpaperrolls toiletpaperseeds animalcrossing': 923309, 'toiletpaperseeds animalcrossing animalcrossingnewhorizons': 923315, 'teapot': 835914, 'so who': 778743, 'clue it': 184548, 'isn teapot': 454695, 'teapot it': 835915, 'bathroom ve': 112684, 've used': 953646, 'used it': 949954, 'quaratinelife toiletrollchallenge': 693161, 'toiletrollchallenge toiletpaper': 923393, 'toiletpaperapocalypse toiletpaperemergency': 922944, 'okay so who': 598010, 'so who know': 778744, 'who know what': 989188, 'know what that': 476979, 'what that thing': 982289, 'that thing is': 846970, 'thing is clue': 884466, 'is clue it': 446622, 'clue it isn': 184549, 'it isn teapot': 459154, 'isn teapot it': 454696, 'teapot it in': 835916, 'it in bathroom': 458724, 'in bathroom ve': 420727, 'bathroom ve used': 112685, 've used it': 953649, 'used it all': 949955, 'it all my': 456360, 'my life 19': 549011, 'life 19 stayathome': 488436, '19 stayathome quaratinelife': 10809, 'stayathome quaratinelife toiletrollchallenge': 797593, 'quaratinelife toiletrollchallenge toiletpaper': 693162, 'toiletrollchallenge toiletpaper toiletpaperpanic': 923394, 'toiletpaperpanic toiletpaperapocalypse toiletpaperemergency': 923277, 'are closely': 85377, 'closely tracking': 183475, 'evolving covid': 288555, 'and lp': 66470, 'lp ap': 506307, 'ap response': 81212, 'it stay': 461233, 'latest industry': 481394, 'industry news': 436005, 'news updated': 560930, 'updated every': 947364, 'every weekday': 286371, 'weekday here': 977305, 'here running': 393531, 'running list': 727990, 'closure here': 183904, 'we are closely': 970500, 'are closely tracking': 85378, 'closely tracking the': 183476, 'tracking the evolving': 928369, 'the evolving covid': 854645, 'evolving covid 19': 288556, '19 pandemic it': 9371, 'pandemic it impact': 635821, 'on the retail': 604335, 'the retail industry': 865720, 'retail industry and': 718210, 'industry and lp': 435643, 'and lp ap': 66471, 'lp ap response': 506308, 'ap response to': 81213, 'response to it': 715859, 'to it stay': 908615, 'it stay tuned': 461234, 'tuned for the': 935440, 'the latest industry': 859117, 'latest industry news': 481395, 'industry news updated': 436008, 'news updated every': 560931, 'updated every weekday': 947365, 'every weekday here': 286372, 'weekday here running': 977306, 'here running list': 393532, 'running list of': 727991, 'of store closure': 590247, 'store closure here': 807093, 'explodes': 292315, 'bank struggle': 110211, 'struggle demand': 814338, 'demand explodes': 235310, 'explodes thanks': 292318, 'to layoff': 909114, 'food bank struggle': 313648, 'bank struggle demand': 110212, 'struggle demand explodes': 814339, 'demand explodes thanks': 235311, 'explodes thanks to': 292319, 'thanks to layoff': 842241, 'have say': 382398, 'say doing': 738585, 'do live': 249569, 'chicago amp': 175639, 'amp when': 54834, 'supermarket gather': 820479, 'gather the': 344400, 'time amp': 896246, 'amp run': 54418, 'run them': 727827, 'store my': 809009, 'my record': 549901, 'record is': 704991, 'is 36': 445206, '36 always': 17995, 'always thank': 49765, 'thank every': 841554, 'employee see': 274192, 'are inspiring': 87546, 'have say doing': 382400, 'say doing what': 738586, 'doing what you': 252852, 'you do live': 1018259, 'do live in': 249570, 'live in chicago': 495850, 'in chicago amp': 421364, 'chicago amp when': 175640, 'amp when go': 54835, 'when go the': 983478, 'go the supermarket': 354211, 'the supermarket gather': 868604, 'supermarket gather the': 820480, 'gather the at': 344401, 'the at time': 849004, 'at time amp': 101282, 'time amp run': 896248, 'amp run them': 54420, 'run them up': 727828, 'them up to': 876572, 'the store my': 868060, 'store my record': 809014, 'my record is': 549902, 'record is 36': 704992, 'is 36 always': 445207, '36 always thank': 17996, 'always thank every': 49766, 'thank every employee': 841556, 'every employee see': 285888, 'employee see in': 274193, 'see in the': 745298, 'the store you': 868152, 'store you all': 811678, 'all are inspiring': 42044, 'keynes': 473541, 'tempted': 837741, 'unjust': 942477, 'from keynes': 336171, 'keynes in': 473542, 'be tempted': 117544, 'tempted to': 837742, 'war by': 966390, 'by allowing': 151796, 'allowing price': 46319, 'rise but': 722797, 'but keynes': 146223, 'keynes pointed': 473544, 'be socially': 117277, 'socially unjust': 781071, 'unjust the': 942480, 'correct alternative': 207499, 'alternative would': 49286, 'be higher': 115249, 'tax on': 835042, 'on wealth': 605147, 'wealth and': 974143, 'and income': 65090, 'lesson from keynes': 486482, 'from keynes in': 336172, 'keynes in the': 473543, 'of coronavirus government': 581939, 'coronavirus government will': 206001, 'government will be': 360809, 'will be tempted': 992717, 'be tempted to': 117545, 'tempted to pay': 837745, 'for the war': 326770, 'the war by': 871068, 'war by allowing': 966391, 'by allowing price': 151797, 'allowing price to': 46320, 'price to rise': 677036, 'to rise but': 913555, 'rise but keynes': 722798, 'but keynes pointed': 146224, 'keynes pointed out': 473545, 'pointed out this': 662739, 'out this would': 627595, 'would be socially': 1011648, 'be socially unjust': 117279, 'socially unjust the': 781072, 'unjust the correct': 942481, 'the correct alternative': 851965, 'correct alternative would': 207500, 'alternative would be': 49287, 'would be higher': 1011600, 'be higher tax': 115252, 'higher tax on': 395744, 'tax on wealth': 835051, 'on wealth and': 605148, 'wealth and income': 974144, 'inds': 435443, 'outperforming': 629220, 'reit': 708286, 'etf': 282942, 'from shopping': 337272, 'online due': 608137, '19 inds': 7825, 'inds is': 435444, 'is outperforming': 450670, 'outperforming traditional': 629221, 'traditional reit': 929011, 'reit index': 708289, 'index and': 434166, 'and etf': 62287, 'etf many': 282947, 'which aren': 985701, 'aren adequately': 92304, 'adequately allocated': 32192, 'allocated to': 45885, 'to industrial': 908343, 'industrial reit': 435568, 'reit in': 708287, 'current rough': 221346, 'rough market': 726253, 'from shopping more': 337276, 'shopping more online': 763290, 'more online due': 539939, 'online due to': 608138, 'covid 19 inds': 213262, '19 inds is': 7826, 'inds is outperforming': 435445, 'is outperforming traditional': 450671, 'outperforming traditional reit': 629222, 'traditional reit index': 929012, 'reit index and': 708290, 'index and etf': 434167, 'and etf many': 62288, 'etf many of': 282948, 'many of which': 514400, 'of which aren': 593099, 'which aren adequately': 985702, 'aren adequately allocated': 92305, 'adequately allocated to': 32193, 'allocated to industrial': 45886, 'to industrial reit': 908344, 'industrial reit in': 435569, 'reit in the': 708288, 'the current rough': 852661, 'current rough market': 221347, 'british farmer': 140521, 'farmer harvest': 299398, 'harvest excellent': 378612, 'excellent british': 289074, 'british carrot': 140493, 'carrot for': 165050, 'british consumer': 140508, 'consumer national': 198175, 'national food': 552510, 'security stand': 744759, 'stand out': 793569, 'clear 19': 181209, 'british farmer harvest': 140522, 'farmer harvest excellent': 299399, 'harvest excellent british': 378613, 'excellent british carrot': 289075, 'british carrot for': 140494, 'carrot for the': 165051, 'great british consumer': 362541, 'british consumer national': 140509, 'consumer national food': 198176, 'national food security': 552512, 'food security stand': 316368, 'security stand out': 744760, 'stand out loud': 793573, 'loud and clear': 504486, 'and clear 19': 59954, 'tasked': 834739, 'state attorneygeneral': 795403, 'attorneygeneral are': 102690, 'are tasked': 90753, 'tasked with': 834740, 'protection georgia': 685464, 'georgia ag': 346025, 'ag ga': 36794, 'ga is': 342680, 'using text': 950681, 'people other': 649009, 'other report': 620829, 'of similar': 589732, 'similar message': 769911, 'on whatsapp': 605251, 'whatsapp 19': 982869, 'state attorneygeneral are': 795404, 'attorneygeneral are tasked': 102691, 'are tasked with': 90754, 'tasked with consumer': 834741, 'with consumer protection': 997763, 'consumer protection georgia': 198531, 'protection georgia ag': 685465, 'georgia ag ga': 346026, 'ag ga is': 36795, 'ga is warning': 342681, 'is warning of': 453761, 'warning of new': 967159, 'of new scam': 586985, 'new scam using': 559550, 'scam using text': 740451, 'using text to': 950682, 'text to scam': 839956, 'scam people other': 740299, 'people other report': 649010, 'other report of': 620830, 'report of similar': 712126, 'of similar message': 589734, 'similar message on': 769912, 'message on whatsapp': 529385, 'on whatsapp 19': 605252, 'at cv': 98398, 'cv in': 223841, 'town with': 927592, 'store beside': 806720, 'beside liquor': 127478, 'store part': 809472, 'part not': 642323, 'not pharmacy': 571017, 'pharmacy we': 654548, 'had confirmed': 372982, 'case certain': 165682, 'person went': 652704, 'went there': 979124, 'no precaution': 565173, 'precaution have': 669318, 'taken and': 832944, 'is retail': 451492, 'retail usual': 718831, 'usual do': 950928, 'in min': 425333, 'min wage': 532585, 'wage isn': 963911, 'isn worth': 454763, 'worth getting': 1011365, 'work at cv': 1004866, 'at cv in': 98399, 'cv in small': 223843, 'small town with': 775167, 'town with no': 927595, 'with no other': 999772, 'no other store': 565018, 'other store beside': 620981, 'store beside liquor': 806721, 'beside liquor store': 127479, 'liquor store in': 494205, 'the store part': 868077, 'store part not': 809473, 'part not pharmacy': 642324, 'not pharmacy we': 571019, 'pharmacy we just': 654549, 'we just had': 972110, 'just had confirmed': 468897, 'had confirmed covid': 372983, '19 case certain': 5672, 'case certain the': 165683, 'certain the person': 170115, 'the person went': 863594, 'person went there': 652705, 'went there no': 979125, 'there no precaution': 878831, 'no precaution have': 565174, 'precaution have been': 669319, 'been taken and': 122126, 'taken and it': 832945, 'it is retail': 459061, 'is retail usual': 451497, 'retail usual do': 718832, 'usual do go': 950929, 'do go in': 249340, 'go in min': 353709, 'in min wage': 425334, 'min wage isn': 532588, 'wage isn worth': 963912, 'isn worth getting': 454764, 'worth getting sick': 1011366, 'can collect': 157927, 'your dna': 1023544, 'dna and': 248976, 'whatever they': 982806, 'info check': 437437, 'check fda': 174431, 'or similar': 617081, 'similar local': 769907, 'government authority': 359915, 'authority beware': 103694, 'they can collect': 881620, 'can collect your': 157928, 'collect your dna': 186343, 'your dna and': 1023545, 'dna and do': 248977, 'and do whatever': 61569, 'do whatever they': 250523, 'whatever they want': 982809, 'they want with': 883718, 'want with the': 966177, 'with the info': 1001349, 'the info check': 858244, 'info check fda': 437438, 'check fda or': 174432, 'fda or similar': 300897, 'or similar local': 617082, 'similar local government': 769908, 'local government authority': 498023, 'government authority beware': 359916, 'authority beware of': 103695, 'inconsistent': 432578, 'audaciously': 102890, 'world much': 1009811, 'much longer': 545059, 'longer to': 502095, 'if nation': 414439, 'nation continue': 552148, 'work independently': 1005360, 'independently are': 434155, 'are inconsistent': 87471, 'inconsistent in': 432579, 'their application': 872500, 'application of': 82473, 'guidance act': 368199, 'now act': 573938, 'act audaciously': 29604, 'audaciously before': 102891, 'late read': 480908, 'new narrative': 559129, 'take the world': 832686, 'the world much': 871916, 'world much longer': 1009812, 'much longer to': 545061, 'longer to suppress': 502099, 'suppress the pandemic': 827397, 'the pandemic if': 862992, 'pandemic if nation': 635675, 'if nation continue': 414440, 'nation continue to': 552149, 'to work independently': 918740, 'work independently are': 1005361, 'independently are inconsistent': 434156, 'are inconsistent in': 87472, 'inconsistent in their': 432580, 'in their application': 429715, 'their application of': 872501, 'application of guidance': 82474, 'of guidance act': 584385, 'guidance act now': 368200, 'act now act': 29714, 'now act audaciously': 573939, 'act audaciously before': 29605, 'audaciously before it': 102892, 'too late read': 924835, 'late read my': 480909, 'read my new': 700467, 'my new narrative': 549467, 'dispatched': 246104, 'ensure uninterrupted': 278113, 'uninterrupted supply': 941861, 'grain during': 361770, 'ha dispatched': 370397, 'dispatched 50': 246105, 'wheat and': 982967, 'state through': 796005, 'through 20': 894287, '20 special': 13356, 'special train': 788083, 'train according': 929223, 'minister bharat': 533341, 'ashu on': 95138, 'to ensure uninterrupted': 905200, 'ensure uninterrupted supply': 278114, 'uninterrupted supply of': 941862, 'supply of grain': 825630, 'of grain during': 584296, 'grain during the': 361771, 'during the 21': 263084, 'day lockdown ha': 227925, 'lockdown ha dispatched': 499445, 'ha dispatched 50': 370398, 'dispatched 50 00': 246106, '50 00 tonne': 19580, 'tonne of wheat': 924544, 'of wheat and': 593080, 'wheat and rice': 982970, 'and rice to': 70508, 'rice to other': 721157, 'to other state': 911122, 'other state through': 620968, 'state through 20': 796006, 'through 20 special': 894288, '20 special train': 13358, 'special train according': 788084, 'train according to': 929224, 'according to food': 28541, 'to food civil': 906077, 'affair minister bharat': 34068, 'minister bharat bhushan': 533342, 'bhushan ashu on': 129404, 'ashu on thursday': 95139, 'zenith': 1027376, '101553042': 2234, 'stock already': 801782, 'not giving': 569656, 'giving up': 351444, 'up any': 944393, 'is were': 453856, 'were your': 980367, 'your donation': 1023562, 'donation come': 254571, 'come handy': 187329, 'handy 500': 376876, '00 100': 18, '00 500': 36, '00 any': 67, 'amount go': 53185, 'way zenith': 970213, 'zenith 101553042': 1027377, '101553042 dream': 2235, 'dream from': 258593, 'the slum': 867348, 'slum food': 774665, 'food support': 317029, 'of stock already': 590136, 'stock already but': 801783, 'already but we': 47244, 'are not giving': 88380, 'not giving up': 569664, 'giving up any': 351446, 'up any time': 944394, 'time soon this': 897722, 'soon this is': 785856, 'this is were': 888463, 'is were your': 453857, 'were your donation': 980368, 'your donation come': 1023564, 'donation come handy': 254573, 'come handy 500': 187330, 'handy 500 00': 376877, '500 00 00': 19927, '00 00 100': 2, '00 100 00': 19, '100 00 500': 1780, '00 500 00': 37, '500 00 any': 19928, '00 any amount': 68, 'any amount go': 78920, 'amount go long': 53186, 'long way zenith': 501829, 'way zenith 101553042': 970214, 'zenith 101553042 dream': 1027378, '101553042 dream from': 2236, 'dream from the': 258594, 'from the slum': 337879, 'the slum food': 867349, 'slum food support': 774666, 'fudgiechunks': 340106, 'fudge': 340099, 'fudgeislife': 340103, 'keepcalmandcarryon': 472311, 'chocolatefudge': 177712, 'chocandmint': 177651, 'humpday': 410956, 'apocalypse ha': 81530, 'ha arrived': 369616, 'arrived and': 93942, 'mind here': 532672, 'at fudgiechunks': 98720, 'fudgiechunks we': 340107, 'make fudge': 509928, 'fudge log': 340100, 'log yep': 500628, 'yep apocalypse': 1015333, 'apocalypse lockdown': 81549, 'lockdown corvid19': 499274, 'corvid19 fudgeislife': 207729, 'fudgeislife keepcalmandcarryon': 340104, 'keepcalmandcarryon chocolatefudge': 472312, 'chocolatefudge chocandmint': 177713, 'chocandmint wednesdaywisdom': 177652, 'wednesdaywisdom wednesday': 975745, 'wednesday humpday': 975645, 'humpday stoppanicbuying': 410957, 'when the apocalypse': 984127, 'the apocalypse ha': 848808, 'apocalypse ha arrived': 81531, 'ha arrived and': 369617, 'arrived and everyone': 93943, 'and everyone ha': 62398, 'everyone ha lost': 286970, 'lost their mind': 503929, 'their mind here': 873975, 'mind here at': 532673, 'here at fudgiechunks': 392781, 'at fudgiechunks we': 98721, 'fudgiechunks we make': 340108, 'we make fudge': 972334, 'make fudge log': 509929, 'fudge log yep': 340102, 'log yep apocalypse': 500629, 'yep apocalypse lockdown': 1015334, 'apocalypse lockdown corvid19': 81550, 'lockdown corvid19 fudgeislife': 499275, 'corvid19 fudgeislife keepcalmandcarryon': 207730, 'fudgeislife keepcalmandcarryon chocolatefudge': 340105, 'keepcalmandcarryon chocolatefudge chocandmint': 472313, 'chocolatefudge chocandmint wednesdaywisdom': 177714, 'chocandmint wednesdaywisdom wednesday': 177653, 'wednesdaywisdom wednesday humpday': 975746, 'wednesday humpday stoppanicbuying': 975646, 'are explaining': 86358, 'explaining it': 292182, 'emergency expense': 272690, 'expense in': 291194, 'that order': 845548, 'they are explaining': 881267, 'are explaining it': 86359, 'explaining it lower': 292183, 'it lower oil': 459477, '19 emergency expense': 6754, 'emergency expense in': 272691, 'expense in that': 291195, 'in that order': 428927, 'now book': 574265, 'book feel': 134517, 'more vital': 540923, 'vital than': 959732, 'ever some': 285511, 'from christian': 334880, 'christian bookstore': 178111, 'bookstore across': 134782, 've compiled': 953008, 'compiled great': 191819, 'any location': 79425, 'location we': 498988, 'missed let': 534238, 'right now book': 722033, 'now book feel': 574266, 'book feel more': 134518, 'feel more vital': 302780, 'more vital than': 540924, 'vital than ever': 959733, 'than ever some': 840609, 'ever some of': 285512, 'of our friend': 587478, 'our friend from': 623183, 'friend from christian': 333611, 'from christian bookstore': 334881, 'christian bookstore across': 178112, 'bookstore across canada': 134783, 'across canada are': 29285, 'canada are offering': 160366, 'shopping delivery we': 762466, 'delivery we ve': 234727, 'we ve compiled': 973647, 've compiled great': 953009, 'compiled great list': 191820, 'great list but': 362803, 'list but if': 494289, 'know of any': 476638, 'of any location': 580264, 'any location we': 79426, 'location we ve': 498990, 'we ve missed': 973686, 've missed let': 953371, 'missed let know': 534239, 'svp': 829882, 'canada svp': 160573, 'svp look': 829885, 'the finding': 855238, 'finding of': 307515, 'what canadian': 981186, 'look survey': 502603, 'survey research': 828930, 'research food': 713717, 'what doe covid': 981359, 'for the way': 326771, 'way we buy': 970168, 'we buy grocery': 970877, 'buy grocery in': 148754, 'grocery in canada': 364612, 'in canada svp': 421200, 'canada svp look': 160574, 'svp look at': 829886, 'at the finding': 100946, 'the finding of': 855239, 'finding of our': 307516, 'of our survey': 587575, 'our survey to': 625058, 'survey to see': 828968, 'see what canadian': 746021, 'what canadian are': 981187, 'canadian are up': 160640, 'to at the': 900809, 'store take look': 810498, 'take look survey': 832296, 'look survey research': 502604, 'survey research food': 828931, 'research food retail': 713718, 'food retail grocery': 316206, 'a5': 24070, 'saddening': 729294, 'maddensmethods': 507603, 'a5 think': 24071, 'think brand': 885167, 'excellent job': 289091, 'this although': 886291, 'is saddening': 451608, 'saddening to': 729297, 'to constantly': 903249, 'constantly see': 195699, 'see due': 745065, 'medium source': 527289, 'source it': 786498, 'very respectful': 955471, 'consumer maddensmethods': 198085, 'a5 think brand': 24072, 'think brand are': 885168, 'brand are doing': 137742, 'doing an excellent': 252283, 'an excellent job': 55916, 'excellent job with': 289093, 'job with this': 466308, 'with this although': 1001675, 'this although it': 886292, 'although it is': 49330, 'it is saddening': 459067, 'is saddening to': 451610, 'saddening to constantly': 729298, 'to constantly see': 903253, 'constantly see due': 195700, 'see due to': 745066, '19 in all': 7729, 'all my email': 43552, 'my email and': 548084, 'email and medium': 272112, 'and medium source': 66926, 'medium source it': 527290, 'source it is': 786500, 'is very respectful': 453691, 'very respectful to': 955472, 'respectful to me': 715130, 'to me consumer': 909924, 'me consumer maddensmethods': 522593, 'mbrx': 522066, '2022': 14807, 'mbrx watch': 522067, 'watch whole': 968614, 'but minute': 146395, 'minute 12': 533703, '12 14': 2770, '14 very': 3540, 'unlikely they': 942759, 'any offering': 79545, 'offering at': 595024, 'enough funding': 277448, 'last to': 480582, 'to 2022': 899602, '2022 and': 14808, 'the breakthrough': 849980, 'breakthrough if': 139127, 'raise it': 695867, 'mbrx watch whole': 522068, 'watch whole thing': 968615, 'thing but minute': 884208, 'but minute 12': 146396, 'minute 12 14': 533704, '12 14 very': 2772, '14 very unlikely': 3541, 'very unlikely they': 955630, 'unlikely they will': 942760, 'they will do': 883844, 'will do any': 993221, 'do any offering': 249084, 'any offering at': 79546, 'offering at low': 595025, 'low price and': 505499, 'price and should': 672538, 'and should have': 71593, 'should have enough': 766074, 'have enough funding': 380449, 'enough funding to': 277449, 'funding to last': 341625, 'to last to': 909075, 'last to 2022': 480583, 'to 2022 and': 899603, '2022 and this': 14809, 'this wa before': 891055, 'before the breakthrough': 123143, 'the breakthrough if': 849981, 'breakthrough if they': 139128, 'if they raise': 415123, 'they raise it': 882971, 'raise it will': 695870, 'be at much': 113736, 'at much higher': 99789, 'much higher price': 544994, 'mycovidstory': 550704, 'most evil': 542307, 'evil money': 288450, 'money hungry': 536816, 'hungry and': 411223, 'selfish retail': 748241, 'america someone': 51684, 'someone that': 784684, 'that tested': 846638, 'for wa': 327604, 'the dm': 853436, 'dm still': 248931, 'still refuse': 801108, 'store mycovidstory': 809018, 'the most evil': 860982, 'most evil money': 542308, 'evil money hungry': 288451, 'money hungry and': 536817, 'hungry and selfish': 411224, 'and selfish retail': 71198, 'selfish retail company': 748242, 'retail company in': 717974, 'company in america': 190756, 'in america someone': 420235, 'america someone that': 51685, 'someone that tested': 784689, 'that tested positive': 846639, 'positive for wa': 665332, 'for wa in': 327605, 'and the dm': 73331, 'the dm still': 853437, 'dm still refuse': 248932, 'still refuse to': 801110, 'close store mycovidstory': 182812, 'comorbidities': 190301, 'ppum': 668402, 'allow your': 46108, 'an immunocompromised': 56181, 'immunocompromised elderly': 417460, 'ha multiple': 371306, 'multiple comorbidities': 545733, 'comorbidities especially': 190302, 'especially diabetes': 280459, 'diabetes susceptible': 240187, 'infection dr': 436752, 'dr emergency': 258009, 'emergency department': 272662, 'department ppum': 237255, 'ppum 19': 668403, 'not allow your': 568145, 'allow your parent': 46110, 'parent to go': 641750, 'go to crowded': 354296, 'to crowded supermarket': 903773, 'crowded supermarket an': 219356, 'supermarket an immunocompromised': 818918, 'an immunocompromised elderly': 56182, 'immunocompromised elderly person': 417461, 'person ha multiple': 652453, 'ha multiple comorbidities': 371307, 'multiple comorbidities especially': 545734, 'comorbidities especially diabetes': 190303, 'especially diabetes susceptible': 280460, 'diabetes susceptible to': 240188, 'susceptible to infection': 829444, 'to infection dr': 908361, 'infection dr emergency': 436753, 'dr emergency department': 258010, 'emergency department ppum': 272663, 'department ppum 19': 237256, 'impacting supply': 418258, 'chain trade': 171203, 'trade the': 928587, 'together guide': 920809, 'business leader': 143984, 'know find': 476376, 'is impacting supply': 448714, 'impacting supply chain': 418259, 'supply chain trade': 825054, 'chain trade the': 171204, 'trade the workforce': 928589, 'workforce and so': 1008342, 'so much more': 777795, 'more we ve': 540954, 'put together guide': 690940, 'together guide on': 920810, 'guide on what': 368342, 'on what business': 605212, 'what business leader': 981153, 'business leader should': 143986, 'leader should know': 483536, 'should know find': 766179, 'know find it': 476377, 'fukin': 340383, 'magarollercoaster': 508316, 'trumppence2020': 934118, '2ashallnotbeinfringed': 16551, 'is punishable': 451139, 'by fukin': 152650, 'fukin beat': 340384, 'your age': 1022757, 'age virginia': 37912, 'virginia teen': 957683, 'teen allegedly': 836470, 'allegedly recorded': 45705, 'recorded themselves': 705120, 'police magarollercoaster': 663079, 'magarollercoaster trumppence2020': 508317, 'trumppence2020 2a': 934119, '2a 2ashallnotbeinfringed': 16542, 'this is punishable': 888366, 'is punishable by': 451140, 'punishable by fukin': 689228, 'by fukin beat': 152651, 'fukin beat down': 340385, 'beat down on': 118519, 'down on site': 257035, 'on site don': 603482, 'site don care': 771908, 'don care about': 253418, 'about your age': 26985, 'your age virginia': 1022758, 'age virginia teen': 37913, 'virginia teen allegedly': 957684, 'teen allegedly recorded': 836471, 'allegedly recorded themselves': 45706, 'recorded themselves coughing': 705121, 'produce in grocery': 680316, 'store police magarollercoaster': 809608, 'police magarollercoaster trumppence2020': 663080, 'magarollercoaster trumppence2020 2a': 508318, 'trumppence2020 2a 2ashallnotbeinfringed': 934120, 'said mask': 731222, 'were enough': 979584, 'they lied': 882561, 'lied everyone': 488413, 'there had': 878455, 'had clothes': 372975, 'clothes on': 184182, 'on too': 604800, 'too coronacrisis': 924672, 'coronacrisis saturdaymorning': 204741, 'saturdaymorning groceryshopping': 737088, 'groceryshopping stayathome': 366281, 'they said mask': 883243, 'said mask and': 731223, 'glove were enough': 353023, 'were enough to': 979585, 'store they lied': 810672, 'they lied everyone': 882564, 'lied everyone there': 488415, 'everyone there had': 287472, 'there had clothes': 878457, 'had clothes on': 372976, 'clothes on too': 184188, 'on too coronacrisis': 604801, 'too coronacrisis saturdaymorning': 924673, 'coronacrisis saturdaymorning groceryshopping': 204742, 'saturdaymorning groceryshopping stayathome': 737089, 'slaughter': 773699, 'zoonotic': 1027859, 'govegan': 359742, 'right time': 722326, 'about animal': 24811, 'agriculture outbreak': 39010, 'at slaughter': 100547, 'slaughter house': 773700, 'house worker': 406704, 'worker rural': 1007716, 'rural community': 728230, 'community at': 189744, 'risk demand': 723491, 'plummet new': 661294, 'new swine': 559714, 'poland is': 662864, 'really essential': 702164, 'essential zoonotic': 281879, 'zoonotic govegan': 1027864, 'is now the': 450346, 'now the right': 576067, 'the right time': 865831, 'right time to': 722329, 'time to talk': 898083, 'talk about animal': 833727, 'about animal agriculture': 24812, 'animal agriculture outbreak': 76546, 'agriculture outbreak of': 39011, '19 at slaughter': 5247, 'at slaughter house': 100548, 'slaughter house worker': 773701, 'house worker rural': 406705, 'worker rural community': 1007717, 'rural community at': 728231, 'community at risk': 189746, 'at risk demand': 100351, 'risk demand plummet': 723493, 'demand plummet new': 236042, 'plummet new swine': 661295, 'new swine flu': 559715, 'swine flu in': 830387, 'flu in poland': 311423, 'in poland is': 426818, 'poland is all': 662865, 'is all this': 445472, 'all this really': 45128, 'this really essential': 889820, 'really essential zoonotic': 702167, 'essential zoonotic govegan': 281880, 'force want': 328542, 'happen peep': 377137, 'peep go': 646278, 'find me': 307050, 'to grandma': 906978, 'grandma and': 361904, 'and grandpa': 63919, 'grandpa good': 361951, 'luck sorry': 506472, 'sorry doc': 786037, 'doc going': 250743, 'going grocery': 355186, 'old fashion': 598245, 'fashion way': 299862, 'the task force': 869158, 'task force want': 834704, 'force want all': 328543, 'want all to': 965697, 'all to do': 45237, 'shopping online not': 763461, 'online not gonna': 608585, 'not gonna happen': 569712, 'gonna happen peep': 356551, 'happen peep go': 377138, 'peep go to': 646279, 'go to and': 354273, 'to and find': 900500, 'and find me': 62888, 'find me time': 307054, 'me time this': 523734, 'time this week': 897922, 'week to deliver': 977077, 'deliver food to': 233126, 'food to grandma': 317259, 'to grandma and': 906979, 'grandma and grandpa': 361905, 'and grandpa good': 63920, 'grandpa good luck': 361952, 'good luck sorry': 357358, 'luck sorry doc': 506473, 'sorry doc going': 786038, 'doc going grocery': 250744, 'going grocery shopping': 355187, 'grocery shopping the': 365090, 'shopping the old': 764088, 'the old fashion': 862135, 'old fashion way': 598246, 'wasn much': 968001, 'much left': 545046, 'this weird': 891332, 'weird stuff': 977789, 'stuff eat': 815055, 'eat every': 265907, 'day make': 227954, 'me coronacrisis': 522605, 'people there wasn': 649808, 'there wasn much': 879285, 'wasn much left': 968002, 'much left in': 545047, 'supermarket so had': 822730, 'buy all this': 148295, 'all this weird': 45147, 'this weird stuff': 891334, 'weird stuff me': 977790, 'stuff me that': 815128, 'kind of stuff': 474944, 'of stuff eat': 590327, 'stuff eat every': 815056, 'eat every day': 265908, 'every day make': 285826, 'day make sure': 227955, 'sure you leave': 827865, 'you leave some': 1019577, 'some for me': 782889, 'for me coronacrisis': 323311, 'patronising': 644435, 'shop government': 760240, 'over closest': 630090, 'closest supermarket': 183538, 'hospital only': 404532, 'only nh': 610821, 'nh key': 562001, 'army on': 93028, 'door patronising': 255689, 'patronising press': 644436, 'press briefing': 671014, 'briefing saying': 139739, 'saying enough': 739588, 'stock doesn': 802051, 'doesn feed': 251789, 'feed hungry': 302320, 'hungry key': 411275, 'worker nhscovidheroes': 1007442, 'solution to key': 782104, 'to key worker': 908901, 'key worker being': 473471, 'worker being able': 1006522, 'to shop government': 914461, 'shop government take': 760241, 'government take over': 360660, 'take over closest': 832468, 'over closest supermarket': 630091, 'closest supermarket to': 183539, 'supermarket to hospital': 823381, 'to hospital only': 907976, 'hospital only nh': 404533, 'only nh key': 610822, 'nh key worker': 562002, 'key worker and': 473466, 'worker and old': 1006317, 'old people allowed': 598408, 'allowed in police': 46166, 'in police army': 426823, 'police army on': 662926, 'army on the': 93029, 'the door patronising': 853581, 'door patronising press': 255690, 'patronising press briefing': 644437, 'press briefing saying': 671017, 'briefing saying enough': 139740, 'saying enough stock': 739589, 'enough stock doesn': 277633, 'stock doesn feed': 802052, 'doesn feed hungry': 251790, 'feed hungry key': 302321, 'hungry key worker': 411276, 'key worker nhscovidheroes': 473501, 'sologenic': 781975, 'solo': 781970, 'to using': 918085, 'using sologenic': 950662, 'sologenic solo': 781976, 'solo to': 781971, 'cheap stock': 174198, 'price soon': 676564, 'forward to using': 330044, 'to using sologenic': 918089, 'using sologenic solo': 950663, 'sologenic solo to': 781977, 'solo to buy': 781972, 'buy some cheap': 149199, 'some cheap stock': 782513, 'cheap stock on': 174200, '19 price soon': 9820, 'onslaught': 611558, 'who now': 989348, 'unemployed due': 941113, 'to important': 908189, 'and necessary': 67455, 'necessary containment': 553968, 'containment policy': 200614, 'example the': 288976, 'of hotel': 584777, 'hotel bar': 405122, 'restaurant the': 716743, 'virus onslaught': 958563, 'onslaught is': 611559, 'your fault': 1023814, 'fault will': 300429, 'be stronger': 117408, 'people who now': 650323, 'who now find': 989350, 'now find themselves': 574687, 'find themselves unemployed': 307321, 'themselves unemployed due': 876922, 'unemployed due to': 941114, 'due to important': 261825, 'to important and': 908190, 'important and necessary': 418733, 'and necessary containment': 67456, 'necessary containment policy': 553969, 'containment policy for': 200615, 'policy for example': 663409, 'for example the': 321292, 'example the closure': 288978, 'closure of hotel': 183965, 'of hotel bar': 584778, 'hotel bar and': 405123, 'and restaurant the': 70393, 'restaurant the money': 716744, 'the money will': 860834, 'money will soon': 537180, 'soon be coming': 785637, 'coming to you': 188238, 'to you the': 918928, 'you the chinese': 1021590, 'chinese virus onslaught': 177384, 'virus onslaught is': 958564, 'onslaught is not': 611560, 'is not your': 450227, 'not your fault': 572630, 'your fault will': 1023817, 'fault will be': 300430, 'will be stronger': 992703, 'be stronger than': 117409, 'stronger than ever': 814186, 'hammer': 374570, 'index tumble': 434251, 'tumble to': 935312, 'since 2011': 770459, '2011 covid': 13767, '19 hammer': 7417, 'hammer the': 374574, 'just in consumer': 469031, 'in consumer sentiment': 421718, 'sentiment index tumble': 750959, 'index tumble to': 434252, 'tumble to lowest': 935313, 'level since 2011': 487706, 'since 2011 covid': 770460, '2011 covid 19': 13768, 'covid 19 hammer': 213180, '19 hammer the': 7418, 'hammer the economy': 374575, 'koronafi': 477544, 'finland to': 307973, 'take seriously': 832557, 'seriously going': 751620, 'going with': 355812, 'store gathering': 807909, 'and group': 64008, 'group friend': 366704, 'friend running': 333779, 'you smart': 1021277, 'smart do': 775367, 'wait stricter': 964194, 'stricter government': 813662, 'government regulation': 360519, 'life koronafi': 488836, 'koronafi stayathome': 477545, 'please people in': 660284, 'people in finland': 648375, 'in finland to': 422902, 'finland to take': 307974, 'to take seriously': 916232, 'take seriously going': 832559, 'seriously going with': 751621, 'going with the': 355815, 'with the entire': 1001285, 'entire family to': 278676, 'grocery store gathering': 365423, 'store gathering at': 807910, 'gathering at the': 344444, 'at the park': 101045, 'park and group': 641860, 'and group friend': 64009, 'group friend running': 366705, 'friend running do': 333780, 'not make you': 570512, 'make you smart': 510749, 'you smart do': 1021278, 'smart do you': 775368, 'to wait stricter': 918273, 'wait stricter government': 964195, 'stricter government regulation': 813663, 'government regulation to': 360521, 'regulation to save': 708124, 'save life koronafi': 737547, 'life koronafi stayathome': 488837, 'protested': 685937, 'why worker': 991561, 'have protested': 382090, 'protested against': 685938, 'against inadequate': 37509, 'inadequate protective': 431208, 'is why worker': 453984, 'why worker have': 991563, 'worker have protested': 1007090, 'have protested against': 382091, 'protested against inadequate': 685939, 'against inadequate protective': 37510, 'inadequate protective measure': 431209, 'house coordinator': 406238, 'coordinator don': 203235, 'store deadline': 807268, 'deadline coronavtj': 229213, 'white house coordinator': 987845, 'house coordinator don': 406239, 'coordinator don go': 203236, 'to grocery or': 907007, 'grocery or drug': 364802, 'drug store deadline': 261088, 'store deadline coronavtj': 807269, 'asking fijian': 95975, 'fijian to': 305307, 'considerate and': 195206, 'commission is asking': 188847, 'is asking fijian': 445826, 'asking fijian to': 95976, 'fijian to be': 305308, 'to be considerate': 901177, 'be considerate and': 114194, 'considerate and not': 195208, 'and not take': 67778, 'people they employ': 649819, 'employ in light': 273445, '19 global pandemic': 7221, 'faro': 299717, 'warranty': 967330, 'renewal': 710994, 'calibration': 155447, 'faro re': 299718, 're faro': 698674, 'faro warranty': 299720, 'warranty renewal': 967338, 'renewal covid': 710997, 'the faro': 854956, 'warranty is': 967335, 'is total': 453296, 'total rip': 926238, 'rip off': 722660, 'off for': 593825, 'just clean': 468483, 'and calibration': 59407, 'calibration consumer': 155448, 'law doe': 482258, 'not permit': 571006, 'permit limiting': 652158, 'limiting warranty': 492889, 'warranty to': 967340, 'just 12': 468097, 'with expensive': 998334, 'expensive item': 291260, 'not paid': 570888, 'paid it': 634037, 'faro re faro': 299719, 're faro warranty': 698675, 'faro warranty renewal': 299722, 'warranty renewal covid': 967339, 'renewal covid 19': 710998, 'economic impact the': 267139, 'impact the faro': 417995, 'the faro warranty': 854957, 'faro warranty is': 299721, 'warranty is total': 967337, 'is total rip': 453299, 'total rip off': 926239, 'rip off for': 722665, 'off for what': 593836, 'for what is': 327798, 'what is just': 981704, 'is just clean': 449124, 'just clean and': 468484, 'clean and calibration': 180455, 'and calibration consumer': 59408, 'calibration consumer law': 155449, 'consumer law doe': 197998, 'law doe not': 482259, 'doe not permit': 251516, 'not permit limiting': 571007, 'permit limiting warranty': 652159, 'limiting warranty to': 492890, 'warranty to just': 967341, 'to just 12': 908718, 'just 12 month': 468098, '12 month with': 2906, 'month with expensive': 538131, 'with expensive item': 998335, 'expensive item we': 291262, 'have not paid': 381691, 'not paid it': 570889, 'paid it for': 634038, 'it for the': 458099, 'markherringva': 517891, 'vawx': 952758, 'to markherringva': 909864, 'markherringva office': 517892, 'office vawx': 595577, 'it to markherringva': 461731, 'to markherringva office': 909865, 'markherringva office vawx': 517893, 'give shout': 350697, 'farmer the': 299519, 'the trucker': 870040, 'trucker the': 932956, 'store who': 811297, 'kept me': 473055, 'those poor': 892358, 'poor chicken': 664145, 'chicken that': 175868, 've consumed': 953014, 'consumed over': 195973, 'like to give': 491592, 'to give shout': 906712, 'give shout out': 350698, 'the farmer the': 854946, 'farmer the trucker': 299524, 'the trucker the': 870042, 'trucker the folk': 932957, 'folk who work': 312305, 'work in my': 1005325, 'grocery store who': 365953, 'store who have': 811303, 'who have kept': 988932, 'have kept me': 381217, 'kept me from': 473056, 'me from going': 522785, 'from going crazy': 335657, 'going crazy and': 355094, 'crazy and all': 215243, 'all those poor': 45178, 'those poor chicken': 892359, 'poor chicken that': 664146, 'chicken that ve': 175869, 'that ve consumed': 847231, 've consumed over': 953015, 'consumed over the': 195974, 'agbarr': 37775, 'prosecuting': 684652, 'wwg1wga': 1013677, 'good agbarr': 356699, 'agbarr is': 37776, 'investigating prosecuting': 443850, 'prosecuting industrial': 684653, 'industrial hoarder': 435547, 'hoarder price': 399097, 'gouger who': 359225, 'are disrupting': 85866, 'profit including': 682778, 'including toiletpaper': 432215, 'toiletpaper wuhanvirus': 922874, 'wuhanvirus wwg1wga': 1013595, 'wwg1wga qanon': 1013679, 'qanon trump': 691467, 'trump kag': 933672, 'very good agbarr': 955183, 'good agbarr is': 356700, 'agbarr is investigating': 37777, 'is investigating prosecuting': 448974, 'investigating prosecuting industrial': 443851, 'prosecuting industrial hoarder': 684654, 'industrial hoarder price': 435548, 'hoarder price gouger': 399098, 'price gouger who': 674248, 'gouger who are': 359226, 'who are disrupting': 988132, 'are disrupting the': 85867, 'chain of health': 170959, 'of health medical': 584511, 'medical supply for': 526444, 'supply for profit': 825275, 'for profit including': 324794, 'profit including toiletpaper': 682779, 'including toiletpaper wuhanvirus': 432217, 'toiletpaper wuhanvirus wwg1wga': 922875, 'wuhanvirus wwg1wga qanon': 1013596, 'wwg1wga qanon trump': 1013680, 'qanon trump kag': 691468, 'moment for': 535934, 'see article': 744942, 'article with': 94505, 'our perspective': 624319, 'perspective on': 653220, 'shifting the': 758554, 'watershed moment for': 969304, 'moment for online': 535936, 'grocery shopping see': 365077, 'shopping see article': 763826, 'see article with': 744943, 'article with our': 94508, 'with our perspective': 1000011, 'our perspective on': 624321, 'perspective on how': 653221, '19 is shifting': 8046, 'is shifting the': 451853, 'shifting the grocery': 758557, 'preserved': 670713, '1960': 12401, 'resource stock': 714885, 'tried no': 931797, 'power electricity': 667601, 'electricity stocked': 271210, 'be preserved': 116524, 'preserved no': 670716, 'challenge facing': 171448, 'facing nigeria': 295549, 'nigeria is': 562754, 'still basic': 800239, 'basic since': 112052, 'since 1960': 770423, '1960 no': 12402, 'no light': 564595, 'light no': 489545, 'no water': 565856, 'water no': 969069, 'at home stock': 99123, 'up your home': 946739, 'your home for': 1024353, 'few week no': 304155, 'week no resource': 976570, 'no resource stock': 565337, 'resource stock up': 714886, 'up for few': 944933, 'few day tried': 303795, 'day tried no': 228619, 'tried no power': 931799, 'no power electricity': 565157, 'power electricity stocked': 667602, 'electricity stocked up': 271211, 'stocked up can': 803436, 'up can be': 944571, 'can be preserved': 157666, 'be preserved no': 116525, 'preserved no resource': 670717, 'no resource the': 565338, 'resource the challenge': 714891, 'the challenge facing': 850641, 'challenge facing nigeria': 171450, 'facing nigeria is': 295550, 'nigeria is still': 562755, 'is still basic': 452265, 'still basic since': 800240, 'basic since 1960': 112053, 'since 1960 no': 770424, '1960 no light': 12403, 'no light no': 564596, 'light no water': 489546, 'no water no': 565858, 'water no food': 969070, 'first flight': 308677, 'the stricken': 868277, 'stricken site': 813605, 'site land': 771967, 'land in': 479268, 'sydney with': 830730, 'gown and': 361365, 'fan following': 298513, 'the february': 855047, 'february medical': 301733, 'ppe theft': 668074, 'theft they': 872366, 'now likely': 575211, 'sell defective': 748674, 'defective equipment': 232077, 'equipment back': 279694, 'australia at': 103230, 'the first flight': 855309, 'first flight in': 308678, 'flight in month': 310497, 'in month from': 425415, 'month from the': 537748, 'from the stricken': 337892, 'the stricken site': 868278, 'stricken site land': 813606, 'site land in': 771968, 'land in sydney': 479269, 'in sydney with': 428783, 'sydney with mask': 830732, 'with mask gown': 999408, 'mask gown and': 518766, 'gown and fan': 361366, 'and fan following': 62687, 'fan following the': 298514, 'following the february': 312885, 'the february medical': 855048, 'february medical equipment': 301734, 'medical equipment ppe': 526160, 'equipment ppe theft': 279811, 'ppe theft they': 668075, 'theft they are': 872367, 'are now likely': 88565, 'now likely to': 575212, 'likely to sell': 492175, 'to sell defective': 914147, 'sell defective equipment': 748675, 'defective equipment back': 232078, 'equipment back to': 279695, 'back to australia': 107353, 'to australia at': 900838, 'australia at inflated': 103231, 'experienced one': 291592, 'one yesterday': 607533, 'yesterday outside': 1015829, 'store covid': 807214, '19 act': 4796, 'experienced one yesterday': 291593, 'one yesterday outside': 607534, 'yesterday outside the': 1015830, 'grocery store covid': 365312, 'store covid 19': 807215, 'covid 19 act': 212576, '19 act of': 4797, 'kindness in uncertain': 475210, 'closing retail': 183739, 'retail premise': 718400, 'quickly gain': 694533, 'gain an': 342754, 'given the ongoing': 351145, 'ongoing situation we': 607690, 'offer the chance': 594826, 'chance to convert': 171795, 'current website to': 221434, 'website to an': 975438, 'to an commerce': 900444, 'are closing retail': 85397, 'closing retail premise': 183741, 'retail premise and': 718401, 'you to quickly': 1021827, 'to quickly gain': 912681, 'quickly gain an': 694534, 'gain an online': 342755, 'yo but': 1016425, 'some organisation': 783470, 'organisation around': 619253, 'around who': 93628, 'what day': 981294, 'day because': 227353, 'because imagine': 119152, 'imagine it': 416747, 'it chaos': 457105, 'chaos right': 173053, 'the concept': 851419, 'concept of': 192865, 'normally also': 567478, 'also shit': 48873, 'shit almost': 759054, 'beer gotta': 122464, 'yo but how': 1016427, 'how about some': 407304, 'about some organisation': 26229, 'some organisation around': 783471, 'organisation around who': 619254, 'around who can': 93629, 'the supermarket on': 868726, 'supermarket on what': 821743, 'on what day': 605220, 'what day because': 981295, 'day because imagine': 227355, 'because imagine it': 119153, 'imagine it chaos': 416748, 'it chaos right': 457107, 'chaos right now': 173054, 'now and people': 574050, 'do not seem': 249838, 'seem to understand': 746701, 'understand the concept': 940749, 'the concept of': 851420, 'concept of shop': 192867, 'of shop normally': 589622, 'shop normally also': 760493, 'normally also shit': 567479, 'also shit almost': 48874, 'shit almost out': 759055, 'almost out of': 46721, 'out of beer': 626684, 'of beer gotta': 580619, 'beer gotta go': 122465, 'gotta go to': 359080, 'centeris': 169350, 'surviving debt': 829353, 'debt from': 230484, 'law centeris': 482242, 'centeris available': 169351, 'free during': 331789, 'surviving debt from': 829354, 'debt from national': 230485, 'from national consumer': 336546, 'national consumer law': 552455, 'consumer law centeris': 197997, 'law centeris available': 482243, 'centeris available to': 169352, 'to all for': 900248, 'all for free': 42836, 'for free during': 321714, 'free during the': 331791, 'agfundernews': 38211, 'price agfundernews': 672245, 'of on fresh': 587218, 'commodity price agfundernews': 189257, 'news healthcare': 560505, 'actor actress': 30557, 'actress pro': 30618, 'pro athlete': 679097, 'athlete famous': 101766, 'musician this': 546381, 'still developing': 800430, 'developing 19': 239763, '19 democratsaredestroyingamerica': 6490, 'democratsaredestroyingamerica mondaymorning': 236782, 'mondaymorning stayhome': 536453, 'breaking news healthcare': 139002, 'news healthcare worker': 560507, 'truck driver are': 932765, 'driver are now': 259437, 'than actor actress': 840316, 'actor actress pro': 30558, 'actress pro athlete': 30619, 'pro athlete famous': 679101, 'athlete famous musician': 101767, 'famous musician this': 298482, 'musician this story': 546382, 'story is still': 812025, 'is still developing': 452272, 'still developing 19': 800431, 'developing 19 democratsaredestroyingamerica': 239764, '19 democratsaredestroyingamerica mondaymorning': 6491, 'democratsaredestroyingamerica mondaymorning stayhome': 236783, 'retail during': 718049, 'during via': 263379, 'is mustread': 449774, 'mustread for': 547037, 'for smallbiz': 325668, 'smallbiz retailer': 775199, 'survive now': 829202, 'is able': 445262, 'do phone': 249981, 'how to retail': 409074, 'to retail during': 913448, 'retail during via': 718054, 'during via this': 263382, 'this is mustread': 888324, 'is mustread for': 449775, 'mustread for smallbiz': 547038, 'for smallbiz retailer': 325669, 'smallbiz retailer on': 775200, 'retailer on how': 719262, 'to survive now': 916038, 'survive now if': 829204, 'now if your': 574976, 'if your retail': 415607, 'store is able': 808460, 'is able to': 445263, 'stay open and': 797151, 'open and for': 612057, 'who can only': 988397, 'can only do': 159123, 'only do phone': 610340, 'do phone and': 249982, 'due panic': 261674, 'buying should': 151025, 'water while': 969256, 'while escaping': 986797, 'due panic buying': 261675, 'panic buying should': 637885, 'buying should be': 151026, 'and water while': 75264, 'water while escaping': 969257, 'while escaping war': 986798, 'them but we': 875502, 'financialwellbeing': 306723, 'lockdown coronavirus': 499272, 'coronavirus financial': 205922, 'financial battle': 306335, 'by financialplanning': 152586, 'financialplanning financialwellbeing': 306708, 'financialwellbeing lockdown': 306724, 'money on lockdown': 536934, 'on lockdown coronavirus': 601908, 'lockdown coronavirus financial': 499273, 'coronavirus financial battle': 205923, 'financial battle plan': 306336, 'battle plan by': 112811, 'plan by financialplanning': 658084, 'by financialplanning financialwellbeing': 152587, 'financialplanning financialwellbeing lockdown': 306709, 'putin doesn': 691023, 'doesn play': 251916, 'play dealing': 659136, 'sudden face': 817001, 'putin doesn play': 691024, 'doesn play dealing': 251917, 'play dealing with': 659137, 'dealing with sudden': 229694, 'with sudden face': 1001039, 'sudden face mask': 817002, 'mask price hike': 519145, 'pascal': 643184, 'montagne': 537481, 'covid19 panic': 214347, 'panic pascal': 638403, 'pascal montagne': 643185, 'montagne for': 537482, 'panic france': 638129, 'france french': 330991, 'french food': 332728, 'shortage paranoia': 765168, 'paranoia disease': 641427, 'disease health': 245154, 'covid19 panic pascal': 214348, 'panic pascal montagne': 638404, 'pascal montagne for': 643186, 'montagne for and': 537483, 'for and panic': 319333, 'and panic france': 68654, 'panic france french': 638130, 'france french food': 330992, 'french food shortage': 332729, 'food shortage paranoia': 316596, 'shortage paranoia disease': 765169, 'paranoia disease health': 641428, 'disease health pandemic': 245155, 'p40': 632815, 'livestream': 496284, 'cet': 170264, 'bored with': 135381, 'with join': 999114, 'join p40': 466819, 'p40 series': 632816, 'series global': 751256, 'global livestream': 352008, 'livestream launch': 496288, 'online 14': 607751, '00 cet': 126, 'cet 1pm': 170265, '1pm uk': 12699, 'time youtube': 898429, 'youtube website': 1026928, 'bored with join': 135382, 'with join p40': 999115, 'join p40 series': 466820, 'p40 series global': 632817, 'series global livestream': 751257, 'global livestream launch': 352009, 'livestream launch online': 496289, 'launch online 14': 481937, 'online 14 00': 607752, '14 00 cet': 3375, '00 cet 1pm': 127, 'cet 1pm uk': 170266, '1pm uk time': 12700, 'uk time youtube': 938822, 'time youtube website': 898430, 'sfbayarea': 754263, 'x2': 1013756, 'shelterinplace quick': 758018, 'quick report': 694353, 'from sfbayarea': 337225, 'sfbayarea on': 754264, 'not locked': 570449, 'locked this': 500502, 'encourage citizen': 275574, 'themselves we': 876929, 'can drive': 158159, 'drive walk': 259253, 'walk go': 964789, 'thru take': 895221, 'etc we': 282858, 'we feel': 971536, 'feel calm': 302591, 'calm safe': 156790, 'safe wa': 730101, 'wa absent': 961414, 'absent x2': 27209, 'x2 this': 1013757, 'shelterinplace quick report': 758019, 'quick report from': 694354, 'report from sfbayarea': 711980, 'from sfbayarea on': 337226, 'sfbayarea on day': 754265, 'on day one': 600224, 'day one we': 228157, 'one we are': 607390, 'are not locked': 88412, 'not locked this': 570450, 'locked this is': 500503, 'is way to': 453795, 'way to encourage': 970023, 'to encourage citizen': 905056, 'encourage citizen to': 275575, 'citizen to socially': 178988, 'socially distance themselves': 781048, 'distance themselves we': 246852, 'themselves we can': 876931, 'we can drive': 970936, 'can drive walk': 158163, 'drive walk go': 259254, 'walk go to': 964791, 'to the drive': 916653, 'drive thru take': 259205, 'thru take out': 895222, 'take out grocery': 832448, 'out grocery store': 626241, 'pharmacy etc we': 654302, 'etc we feel': 282861, 'we feel calm': 971537, 'feel calm safe': 302592, 'calm safe wa': 156791, 'safe wa absent': 730102, 'wa absent x2': 961415, 'absent x2 this': 27210, 'x2 this morning': 1013758, 'this morning my': 888988, 'morning my experience': 541364, 'breakthechain': 139121, 'teesta': 836589, 'lahag': 478983, 'hotella': 405222, 'safe use': 730092, 'sanitizer break': 734595, 'chain save': 171080, 'life save': 489004, 'save india': 737524, 'corona indiafightscorona': 204016, 'indiafightscorona safetyfirst': 434729, 'safetyfirst washyourhands': 730811, 'washyourhands staysafestayhome': 967924, 'staysafestayhome breakthechain': 798989, 'breakthechain sanitizer': 139124, 'sanitizer handwash': 735039, 'handwash anti': 376754, 'anti viral': 78339, 'viral teesta': 957629, 'teesta lahag': 836590, 'lahag hotella': 478984, 'stay safe use': 797292, 'safe use sanitizer': 730093, 'use sanitizer break': 949539, 'sanitizer break the': 734596, 'break the chain': 138804, 'the chain save': 850633, 'chain save life': 171081, 'save life save': 737554, 'life save india': 489005, 'save india corona': 737525, 'india corona indiafightscorona': 434358, 'corona indiafightscorona safetyfirst': 204017, 'indiafightscorona safetyfirst washyourhands': 434730, 'safetyfirst washyourhands staysafestayhome': 730812, 'washyourhands staysafestayhome breakthechain': 967925, 'staysafestayhome breakthechain sanitizer': 798990, 'breakthechain sanitizer handwash': 139125, 'sanitizer handwash anti': 735041, 'handwash anti viral': 376755, 'anti viral teesta': 78341, 'viral teesta lahag': 957630, 'teesta lahag hotella': 836591, 'flashback': 310035, 'childhood': 176315, 'closed thought': 183387, 'thought never': 893133, 'never see': 558165, 'this again': 886243, 'again after': 36873, 'the berlin': 849481, 'berlin wall': 127353, 'wall came': 965158, 'came down': 156986, 'down having': 256825, 'having flashback': 384068, 'flashback from': 310036, 'my childhood': 547682, 'empty and the': 274776, 'and the border': 73263, 'the border are': 849869, 'border are closed': 135220, 'are closed thought': 85372, 'closed thought never': 183388, 'thought never see': 893134, 'never see this': 558168, 'see this again': 745936, 'this again after': 886244, 'again after the': 36875, 'after the berlin': 36287, 'the berlin wall': 849482, 'berlin wall came': 127354, 'wall came down': 965159, 'came down having': 156987, 'down having flashback': 256826, 'having flashback from': 384069, 'flashback from my': 310037, 'from my childhood': 336502, 'coronavirus because': 205550, 'strike amp': 813723, 'amp demanded': 53636, 'instacart delivery worker': 439917, 'delivery worker in': 234775, 'worker in massachusetts': 1007184, 'told that they': 923699, 'that they may': 846937, 'the coronavirus because': 851809, 'coronavirus because of': 205551, 'because of an': 119308, 'announced strike amp': 77051, 'strike amp demanded': 813724, 'amp demanded basic': 53637, 'basic protection from': 112036, 'tumblr': 935357, 'delving': 234851, 'libtard': 488080, 'blown': 133396, 'some tumblr': 784124, 'tumblr delving': 935358, 'delving libtard': 234852, 'libtard stole': 488081, 'stole my': 804274, 'cart unbelievable': 165409, 'unbelievable that': 939511, 'this everything': 887468, 'everything blown': 287711, 'blown out': 133403, 'of proportion': 588541, 'proportion trump2020': 684432, 'store some tumblr': 810265, 'some tumblr delving': 784125, 'tumblr delving libtard': 935359, 'delving libtard stole': 234853, 'libtard stole my': 488082, 'stole my cart': 804275, 'my cart unbelievable': 547629, 'cart unbelievable that': 165410, 'unbelievable that people': 939512, 'are acting like': 84192, 'acting like this': 29888, 'like this everything': 491488, 'this everything blown': 887469, 'everything blown out': 287712, 'blown out of': 133404, 'out of proportion': 626813, 'of proportion trump2020': 588543, 'popularity': 664616, 'are merchant': 88065, 'merchant dealing': 529008, 'increasing popularity': 433657, 'popularity of': 664619, 'of onlineshopping': 587269, 'onlineshopping in': 609907, 'post we': 666394, 'tackle this': 831616, 'this question': 889787, 'question and': 693519, 'how are merchant': 407408, 'are merchant dealing': 88067, 'merchant dealing with': 529009, 'dealing with and': 229656, 'with and the': 997252, 'and the increasing': 73424, 'the increasing popularity': 858086, 'increasing popularity of': 433658, 'popularity of onlineshopping': 664622, 'of onlineshopping in': 587270, 'onlineshopping in our': 609908, 'latest post we': 481504, 'post we tackle': 666397, 'we tackle this': 973475, 'tackle this question': 831618, 'this question and': 889788, 'question and more': 693523, 'icymi in': 412885, 'our recent': 624552, 'recent consultation': 703841, 'consultation consumer': 195880, 'oriented firm': 619525, 'firm described': 308333, 'described how': 237946, 'how sale': 408618, 'sale collapsed': 732124, 'collapsed due': 186095, 'business outlook': 144169, 'outlook survey': 629186, 'survey for': 828866, 'detail cdnecon': 239173, 'icymi in our': 412886, 'in our recent': 426331, 'our recent consultation': 624554, 'recent consultation consumer': 703842, 'consultation consumer oriented': 195881, 'consumer oriented firm': 198295, 'oriented firm described': 619526, 'firm described how': 308334, 'described how sale': 237947, 'how sale collapsed': 408619, 'sale collapsed due': 732125, 'collapsed due to': 186096, 'due to read': 261918, 'read our business': 700501, 'our business outlook': 622289, 'business outlook survey': 144170, 'outlook survey for': 629188, 'survey for detail': 828867, 'for detail cdnecon': 320679, 'detail cdnecon economy': 239174, 'touchitsafe': 926756, 'canttouchthis': 162379, 'shoppingcart': 764498, 'online link': 608491, 'bio before': 131129, 'an encounter': 55729, 'encounter with': 275545, 'with surface': 1001089, 'surface like': 828040, 'this touchitsafe': 890824, 'touchitsafe canttouchthis': 926757, 'canttouchthis rubber': 162380, 'rubber virus': 726956, 'virus restroom': 958692, 'restroom groceryshopping': 717436, 'groceryshopping grocerystore': 366256, 'grocerystore supermarket': 366330, 'supermarket shoppingcart': 822661, 'shoppingcart bathroom': 764499, 'bathroom safetytips': 112661, 'safetytips besafe': 730821, 'besafe safe': 127444, 'safe germ': 729705, 'order online link': 618473, 'online link in': 608492, 'in bio before': 420844, 'bio before you': 131130, 'before you have': 123322, 'have an encounter': 379246, 'an encounter with': 55730, 'encounter with surface': 275546, 'with surface like': 1001090, 'surface like this': 828042, 'like this touchitsafe': 491544, 'this touchitsafe canttouchthis': 890825, 'touchitsafe canttouchthis rubber': 926758, 'canttouchthis rubber virus': 162381, 'rubber virus restroom': 726957, 'virus restroom groceryshopping': 958693, 'restroom groceryshopping grocerystore': 717437, 'groceryshopping grocerystore supermarket': 366258, 'grocerystore supermarket shoppingcart': 366331, 'supermarket shoppingcart bathroom': 822662, 'shoppingcart bathroom safetytips': 764500, 'bathroom safetytips besafe': 112662, 'safetytips besafe safe': 730822, 'besafe safe germ': 127445, '2020 market': 14433, 'and associated': 58461, 'associated measure': 96927, 'measure category': 525154, 'category specific': 167217, 'specific impact': 788220, 'impact assessment': 417571, 'assessment of': 96396, 'covered in': 212420, 'latest edition': 481310, 'of procurement': 588460, 'procurement beige': 680109, 'beige book': 124777, 'book click': 134502, 'metal price are': 529648, 'expected to drop': 290975, 'drop in 2020': 260224, 'in 2020 market': 419844, '2020 market are': 14434, 'are affected due': 84248, 'outbreak and associated': 627987, 'and associated measure': 58463, 'associated measure category': 96928, 'measure category specific': 525155, 'category specific impact': 167218, 'specific impact assessment': 788221, 'impact assessment of': 417573, 'assessment of covid': 96397, '19 covered in': 6176, 'covered in the': 212424, 'in the latest': 429309, 'the latest edition': 859096, 'latest edition of': 481311, 'edition of procurement': 268633, 'of procurement beige': 588461, 'procurement beige book': 680110, 'beige book click': 124778, 'book click to': 134503, 'click to know': 181960, 'to know more': 908985, 'ushered': 950352, 'disciplinary': 244352, 'plague ushered': 657987, 'ushered in': 950353, 'in disciplinary': 422291, 'disciplinary society': 244353, 'may accelerate': 520886, 'control society': 202133, 'society phone': 781286, 'location tracking': 498977, 'tracking drone': 928333, 'enforce quarantine': 276679, 'quarantine apps': 692033, 'report symptom': 712301, 'symptom schedule': 830914, 'schedule test': 741467, 'test shopping': 839167, 'shopping move': 763300, 'move online': 543704, 'just the plague': 470009, 'the plague ushered': 863787, 'plague ushered in': 657988, 'ushered in disciplinary': 950354, 'in disciplinary society': 422292, 'disciplinary society the': 244354, 'society the may': 781327, 'the may accelerate': 860312, 'may accelerate the': 520887, 'accelerate the emergence': 27862, 'emergence of control': 272572, 'of control society': 581847, 'control society phone': 202134, 'society phone location': 781287, 'phone location tracking': 654972, 'location tracking drone': 498978, 'tracking drone to': 928334, 'drone to enforce': 260084, 'to enforce quarantine': 905118, 'enforce quarantine apps': 276680, 'quarantine apps to': 692034, 'apps to report': 83326, 'to report symptom': 913287, 'report symptom schedule': 712302, 'symptom schedule test': 830915, 'schedule test shopping': 741468, 'test shopping move': 839168, 'shopping move online': 763301, 'you facing': 1018508, 'facing economic': 295456, 'economic hardship': 267116, 'and concerned': 60248, 'mortgage the': 541964, 'bureau offer': 142800, 'offer this': 594840, 'are you facing': 91789, 'you facing economic': 1018509, 'facing economic hardship': 295457, 'economic hardship due': 267117, '19 and concerned': 5001, 'and concerned about': 60249, 'your mortgage the': 1024886, 'mortgage the consumer': 541965, 'protection bureau offer': 685366, 'bureau offer this': 142802, 'offer this guide': 594841, 'this guide to': 887782, 'walkaroundthingsday': 964934, 'who else': 988680, 'this whilst': 891368, 'whilst doing': 987629, 'shop walkaroundthingsday': 761013, 'who else feel': 988682, 'like this whilst': 491549, 'this whilst doing': 891369, 'whilst doing their': 987630, 'doing their supermarket': 252741, 'their supermarket shop': 874908, 'supermarket shop walkaroundthingsday': 822598, 'that tomorrow': 847085, 'tomorrow is': 924106, 'is saturday': 451646, 'saturday and': 737004, 'and literally': 66231, 'literally the': 495093, 'that expect': 843791, 'expect of': 290688, 'own routine': 632172, 'routine still': 726533, 'still gonna': 800596, 'gonna update': 356644, 'update my': 947083, 'schedule for': 741435, 'for virtual': 327569, 'virtual package': 957768, 'package email': 633256, 'happy that tomorrow': 377689, 'that tomorrow is': 847088, 'tomorrow is saturday': 924108, 'is saturday and': 451647, 'saturday and literally': 737007, 'and literally the': 66233, 'literally the only': 495094, 'thing that expect': 884803, 'that expect of': 843792, 'expect of myself': 290689, 'of myself is': 586836, 'myself is my': 550890, 'is my own': 449806, 'my own routine': 549655, 'own routine still': 632173, 'routine still gonna': 726534, 'still gonna update': 800597, 'gonna update my': 356645, 'update my schedule': 947087, 'my schedule for': 549997, 'schedule for virtual': 741436, 'for virtual package': 327570, 'virtual package email': 957769, 'package email or': 633257, 'email or dm': 272256, 'or dm for': 615010, 'currently furloughed': 221540, 'furloughed from': 341921, 'job bc': 465687, 'bc high': 113241, 'my high': 548672, 'high school': 395390, 'school age': 741672, 'age coworkers': 37809, 'coworkers are': 214498, 'it killing': 459270, 'killing me': 474694, 'passed some': 643298, 'some excellent': 782778, 'excellent measure': 289096, 'measure that': 525359, 'it safer': 460845, 'safer even': 730363, 'currently furloughed from': 221541, 'furloughed from my': 341922, 'from my grocery': 336510, 'store job bc': 808608, 'job bc high': 465688, 'bc high risk': 113242, 'high risk but': 395348, 'risk but the': 723430, 'but the store': 147411, 'open and my': 612064, 'and my high': 67370, 'my high school': 548673, 'high school age': 395391, 'school age coworkers': 741674, 'age coworkers are': 37810, 'coworkers are still': 214499, 'still going in': 800588, 'going in it': 355217, 'in it killing': 424253, 'it killing me': 459271, 'killing me but': 474695, 'me but my': 522535, 'but my town': 146442, 'my town just': 550415, 'town just passed': 927506, 'just passed some': 469439, 'passed some excellent': 643299, 'some excellent measure': 782779, 'excellent measure that': 289097, 'measure that may': 525362, 'that may make': 845084, 'may make it': 521336, 'make it safer': 510054, 'it safer even': 460846, 'safer even for': 730364, 'even for me': 284081, 'me to return': 523775, 'india india': 434463, 'india india india': 434464, 'india india we': 434466, 'india we can': 434686, 'dinner made': 243076, 'made using': 508054, 'using what': 950795, 'mo panicbuying': 534858, 'dinner made using': 243077, 'made using what': 508055, 'using what available': 950796, 'what available in': 981081, 'the mo panicbuying': 860705, 'mo panicbuying coronacrisis': 534859, 'this good': 887722, 'serve those': 751957, 'are without': 91659, 'without adequate': 1002473, 'long please': 501559, 'can meantime': 158984, 'meantime take': 524935, 'good on this': 357507, 'on this good': 604610, 'this good friday': 887723, 'friday the need': 333295, 'need is great': 555069, 'is great to': 448212, 'great to serve': 363072, 'to serve those': 914274, 'serve those who': 751959, 'who are without': 988259, 'are without adequate': 91660, 'without adequate food': 1002474, 'adequate food right': 32164, 'now is on': 575081, 'is on all': 450459, 'on all day': 599222, 'day long please': 227938, 'long please help': 501561, 'you can meantime': 1017725, 'can meantime take': 158985, 'meantime take care': 524936, 'price skid': 676427, 'skid after': 772934, 'after saudi': 36141, 'russia talk': 728575, 'talk stock': 833850, 'stock jump': 802332, 'slowdown oilprice': 774464, 'oilprice stock': 597640, 'oil price skid': 597258, 'price skid after': 676428, 'skid after saudi': 772935, 'after saudi russia': 36143, 'saudi russia talk': 737300, 'russia talk stock': 728576, 'talk stock jump': 833851, 'stock jump on': 802333, 'jump on covid': 467884, '19 slowdown oilprice': 10611, 'slowdown oilprice stock': 774465, 'wba': 970236, 'wba is': 970237, 'is victim': 453705, 'retail epidemic': 718090, 'epidemic walgreens': 279467, 'walgreens share': 964721, 'share fall': 754990, 'fall pandemic': 297023, 'hit store': 398412, 'wba is victim': 970238, 'is victim of': 453707, 'of the retail': 591415, 'the retail epidemic': 865715, 'retail epidemic walgreens': 718091, 'epidemic walgreens share': 279468, 'walgreens share fall': 964722, 'share fall pandemic': 754991, 'fall pandemic hit': 297024, 'pandemic hit store': 635642, 'hit store sale': 398413, 'store sale via': 809976, 'gammon': 343371, 'snowdon': 776403, 'shelf see': 757482, 'the herd': 857282, 'of gammon': 584036, 'gammon moron': 343372, 'moron on': 541612, 'on snowdon': 603517, 'snowdon don': 776404, 'minister because': 533337, 'is hiding': 448436, 'hiding and': 394861, 'think thank': 885582, 'thank fuck': 841573, 'fuck don': 339548, 'don live': 253706, 'england any': 277002, 'see the empty': 745831, 'supermarket shelf see': 822523, 'shelf see the': 757483, 'see the herd': 745840, 'the herd of': 857284, 'herd of gammon': 392618, 'of gammon moron': 584037, 'gammon moron on': 343373, 'moron on snowdon': 541613, 'on snowdon don': 603518, 'snowdon don see': 776405, 'don see the': 253896, 'see the prime': 745875, 'prime minister because': 678132, 'minister because he': 533338, 'because he is': 119116, 'he is hiding': 385127, 'is hiding and': 448437, 'hiding and not': 394862, 'and not for': 67738, 'first time think': 309114, 'time think thank': 897913, 'think thank fuck': 885583, 'thank fuck don': 841574, 'fuck don live': 339549, 'don live in': 253707, 'live in england': 495859, 'in england any': 422576, 'england any more': 277003, 'while global': 986873, 'food american': 313112, 'american panic': 52116, 'buy gun': 148764, 'ammunition panic': 52955, 'while global panic': 986875, 'global panic buy': 352116, 'panic buy toilet': 637540, 'and food american': 63026, 'food american panic': 313114, 'american panic buy': 52117, 'panic buy gun': 637489, 'buy gun and': 148765, 'and ammunition panic': 58086, 'ammunition panic buying': 52956, 'the fun': 856033, 'fun you': 341254, 'of the fun': 591049, 'the fun you': 856035, 'fun you could': 341255, 'could be having': 208875, 'be having on': 115157, 'having on supermarket': 384206, 'cynical': 224130, 'president is': 670835, 'so cynical': 776830, 'cynical self': 224131, 'self serving': 747909, 'serving that': 753215, 'he slow': 385448, 'slow walking': 774411, 'walking the': 965105, 'response because': 715630, 'are big': 84972, 'state but': 795440, 'that strong': 846529, 'strong possibility': 814089, 'hate to think': 378932, 'to think the': 917387, 'think the president': 885648, 'the president is': 864264, 'president is so': 670837, 'is so cynical': 452001, 'so cynical self': 776831, 'cynical self serving': 224132, 'self serving that': 747911, 'serving that he': 753216, 'that he slow': 844270, 'he slow walking': 385449, 'slow walking the': 774412, 'walking the federal': 965108, 'the federal response': 855078, 'federal response because': 302050, 'response because the': 715631, 'because the hardest': 119628, 'hit area are': 398151, 'area are big': 91948, 'are big city': 84974, 'big city in': 129703, 'city in blue': 179198, 'in blue state': 420885, 'blue state but': 133472, 'state but it': 795441, 'but it hard': 146129, 'not to consider': 572141, 'to consider that': 903238, 'consider that strong': 195131, 'that strong possibility': 846530, 'truckloads': 933004, 'helping spread': 391471, 'word on': 1004542, 'our urgent': 625241, 'purchasing truckloads': 689941, 'truckloads of': 933005, 'so any': 776526, 'any monetary': 79476, 'donation our': 254660, 'member can': 528040, 'provide will': 686543, 'difference right': 241869, 'for helping spread': 322203, 'helping spread the': 391473, 'the word on': 871711, 'word on our': 1004545, 'on our urgent': 602640, 'our urgent need': 625242, 'urgent need we': 948353, 'been purchasing truckloads': 121745, 'purchasing truckloads of': 689942, 'truckloads of fresh': 933006, 'of fresh food': 583944, 'fresh food to': 332981, 'with demand so': 997989, 'demand so any': 236241, 'so any monetary': 776527, 'any monetary donation': 79477, 'monetary donation our': 536542, 'donation our community': 254661, 'our community member': 622468, 'community member can': 189982, 'member can provide': 528043, 'can provide will': 159335, 'provide will make': 686544, 'will make huge': 994081, 'huge difference right': 410028, 'difference right now': 241870, 'decouple': 231541, 'esm': 280376, 'linking': 494012, 'privatization': 679016, 're ready': 699353, 'to decouple': 904029, 'decouple the': 231542, 'the esm': 854485, 'esm credit': 280377, 'credit line': 216425, 'the sovereign': 867518, 'sovereign debt': 786942, 'crisis logic': 217674, 'logic no': 500655, 'sense in': 750533, 'in linking': 424790, 'linking pandemic': 494015, 'pandemic crisis': 635268, 'to privatization': 912158, 'privatization or': 679017, 'or labour': 615916, 'labour market': 478519, 'market reform': 516970, 'reform condition': 706713, 'condition must': 193486, 'be virus': 118013, 'virus related': 958676, 'related later': 708475, 'later country': 481042, 'must return': 546861, 'to stable': 915125, 'stable position': 791941, 'we re ready': 972944, 're ready to': 699355, 'ready to decouple': 700951, 'to decouple the': 904030, 'decouple the esm': 231543, 'the esm credit': 854486, 'esm credit line': 280378, 'credit line from': 216426, 'line from the': 493125, 'from the sovereign': 337883, 'the sovereign debt': 867519, 'sovereign debt crisis': 786943, 'debt crisis logic': 230462, 'crisis logic no': 217675, 'logic no sense': 500656, 'no sense in': 565460, 'sense in linking': 750534, 'in linking pandemic': 424791, 'linking pandemic crisis': 494016, 'pandemic crisis to': 635272, 'crisis to privatization': 218250, 'to privatization or': 912159, 'privatization or labour': 679018, 'or labour market': 615917, 'labour market reform': 478521, 'market reform condition': 516971, 'reform condition must': 706714, 'condition must be': 193487, 'must be virus': 546559, 'be virus related': 118015, 'virus related later': 958677, 'related later country': 708476, 'later country must': 481043, 'country must return': 210914, 'must return to': 546862, 'return to stable': 719929, 'to stable position': 915127, 'frontline it': 338768, 'it fantastic': 457947, 'fantastic to': 298613, 'see coverage': 745013, 'coverage in': 212356, 'today western': 920507, 'western mail': 980628, 'mail about': 508566, 'our dedicated': 622718, 'keep uk': 472166, 'with retail worker': 1000504, 'retail worker on': 718900, 'the frontline it': 855874, 'frontline it fantastic': 338769, 'it fantastic to': 457948, 'fantastic to see': 298615, 'to see coverage': 913994, 'see coverage in': 745014, 'coverage in today': 212358, 'in today western': 430169, 'today western mail': 920508, 'western mail about': 980629, 'mail about how': 508567, 'how our dedicated': 408456, 'our dedicated team': 622720, 'dedicated team of': 231740, 'team of trader': 835744, 'of trader are': 592401, 'trader are helping': 928655, 'are helping to': 87114, 'to keep uk': 908873, 'keep uk supermarket': 472167, 'supermarket shelf stocked': 822534, 'latest the': 481571, 'daily thanks': 224829, 'to fakenews': 905615, 'the latest the': 859151, 'latest the online': 481572, 'the online consumer': 862267, 'online consumer daily': 608043, 'consumer daily thanks': 197049, 'daily thanks to': 224830, 'thanks to fakenews': 842222, 'other worker': 621222, 'worker whom': 1008239, 'whom little': 990562, 'little is': 495415, 'is spoken': 452168, 'spoken carrier': 789759, 'carrier supermarket': 165023, 'cashier policeman': 166586, 'policeman garbage': 663283, 'cleaner secretary': 180832, 'secretary assistant': 743946, 'assistant postman': 96796, 'postman they': 666736, 'life too': 489145, 'you to healthcare': 1021786, 'healthcare worker worldwide': 387398, 'worker worldwide and': 1008294, 'worldwide and also': 1010314, 'and also the': 57977, 'also the other': 48985, 'the other worker': 862564, 'other worker whom': 621225, 'worker whom little': 1008240, 'whom little is': 990563, 'little is spoken': 495417, 'is spoken carrier': 452169, 'spoken carrier supermarket': 789760, 'carrier supermarket cashier': 165024, 'supermarket cashier policeman': 819565, 'cashier policeman garbage': 166587, 'policeman garbage worker': 663284, 'garbage worker cleaner': 343542, 'worker cleaner secretary': 1006653, 'cleaner secretary assistant': 180833, 'secretary assistant postman': 743947, 'assistant postman they': 96797, 'postman they risk': 666737, 'their life too': 873848, 'fitness': 309516, 'contemplated': 200764, 'mom added': 535672, 'added me': 31578, 'group text': 366904, 'text 15': 839864, 'share fitness': 755003, 'fitness video': 309537, 'video during': 956713, 'during selfquarantine': 262997, 'selfquarantine contemplated': 748560, 'contemplated going': 200765, 'store licking': 808715, 'licking shopping': 488252, 'cart saw': 165376, 'morning my mom': 541367, 'my mom added': 549252, 'mom added me': 535673, 'added me in': 31579, 'me in group': 522965, 'in group text': 423459, 'group text 15': 366905, 'text 15 people': 839865, '15 people don': 3813, 'people don know': 647703, 'don know to': 253673, 'know to share': 476905, 'to share fitness': 914341, 'share fitness video': 755004, 'fitness video during': 309538, 'video during selfquarantine': 956714, 'during selfquarantine contemplated': 262998, 'selfquarantine contemplated going': 748561, 'contemplated going to': 200766, 'grocery store licking': 365523, 'store licking shopping': 808716, 'licking shopping cart': 488253, 'shopping cart saw': 762314, 'cart saw no': 165377, 'saw no other': 738186, 'no other way': 565021, 'other way out': 621187, 'of the group': 591082, 'the group text': 856870, 'astounds': 97245, 'fag': 296075, 'it utterly': 462010, 'utterly astounds': 951447, 'astounds me': 97246, 'about catching': 24936, 'catching potentially': 167100, 'potentially deadly': 667204, 'deadly respiratory': 229284, 'disease remove': 245220, 'remove their': 710844, 'have fag': 380551, 'fag in': 296078, 'out fucking': 626204, 'fucking standing': 340008, 'it utterly astounds': 462011, 'utterly astounds me': 951448, 'astounds me that': 97247, 'me that during': 523610, 'that during the': 843652, 'during the middle': 263154, 'the pandemic people': 863053, 'pandemic people worried': 636171, 'worried about catching': 1010479, 'about catching potentially': 24939, 'catching potentially deadly': 167101, 'potentially deadly respiratory': 667205, 'deadly respiratory disease': 229285, 'respiratory disease remove': 715234, 'disease remove their': 245221, 'remove their face': 710845, 'mask to have': 519408, 'to have fag': 907237, 'have fag in': 380552, 'fag in the': 296079, 'queue for the': 693932, 'supermarket out fucking': 821854, 'out fucking standing': 626205, 'gerard': 346070, 'object': 578403, 'furiously': 341868, 'you gerard': 1018753, 'gerard followed': 346071, 'followed pair': 312605, 'pair through': 634342, 'would pick': 1012109, 'an object': 56534, 'object put': 578417, 'then grab': 877221, 'grab one': 361521, 'back asked': 106881, 'asked them': 95849, 'stop called': 804561, 'called supervisor': 156448, 'supervisor who': 824399, 'last seen': 480487, 'seen arguing': 746952, 'arguing furiously': 92728, 'furiously with': 341873, 'with you gerard': 1002150, 'you gerard followed': 1018754, 'gerard followed pair': 346072, 'followed pair through': 312606, 'pair through the': 634343, 'supermarket yesterday they': 824176, 'yesterday they would': 1015895, 'they would pick': 883949, 'would pick up': 1012110, 'pick up an': 655701, 'up an object': 944296, 'an object put': 56535, 'object put it': 578418, 'put it down': 690643, 'it down and': 457688, 'and then grab': 73766, 'then grab one': 877222, 'grab one from': 361522, 'one from the': 606329, 'from the back': 337606, 'the back asked': 849141, 'back asked them': 106882, 'asked them to': 95850, 'to stop called': 915508, 'stop called supervisor': 804562, 'called supervisor who': 156449, 'supervisor who wa': 824400, 'who wa last': 989910, 'wa last seen': 962505, 'last seen arguing': 480488, 'seen arguing furiously': 746953, 'arguing furiously with': 92729, 'furiously with them': 341874, 'aud': 102882, 'in nab': 425657, 'nab announced': 551341, 'announced giving': 76954, 'giving small': 351387, 'business amp': 143277, 'amp home': 53954, 'home owner': 401811, 'owner hit': 632464, 'month loan': 537830, 'loan holiday': 497455, 'holiday cut': 400279, 'rate on': 697330, 'on popular': 602843, 'popular digital': 664545, 'digital loan': 242594, 'product by': 681034, 'by 200': 151582, '200 basis': 13452, 'basis pt': 112267, 'pt watch': 687617, 'watch aud': 968367, 'aud price': 102889, 'here in nab': 393165, 'in nab announced': 425658, 'nab announced giving': 551342, 'announced giving small': 76955, 'giving small business': 351388, 'small business amp': 774836, 'business amp home': 143280, 'amp home owner': 53956, 'home owner hit': 401814, 'owner hit by': 632465, 'by the month': 154379, 'the month loan': 860848, 'month loan holiday': 537831, 'loan holiday cut': 497456, 'holiday cut rate': 400280, 'cut rate on': 223518, 'rate on popular': 697331, 'on popular digital': 602844, 'popular digital loan': 664546, 'digital loan product': 242595, 'loan product by': 497511, 'product by 200': 681036, 'by 200 basis': 151583, '200 basis pt': 13454, 'basis pt watch': 112268, 'pt watch aud': 687618, 'watch aud price': 968368, 'kwiknews': 478053, 'government announced': 359883, 'the implementation': 857962, '19 beginning': 5350, 'beginning tomorrow': 123682, 'tomorrow some': 924186, 'some early': 782714, 'early shopper': 264684, 'shopper began': 761426, 'began queuing': 123425, 'giant hypermarket': 349803, 'hypermarket here': 412331, 'here waiting': 393776, 'essential kwiknews': 281267, 'kwiknews nation': 478054, 'the government announced': 856510, 'government announced the': 359887, 'announced the implementation': 77080, 'the implementation of': 857963, 'implementation of movement': 418449, 'of movement control': 586691, 'order to contain': 618672, 'covid 19 beginning': 212690, '19 beginning tomorrow': 5352, 'beginning tomorrow some': 123685, 'tomorrow some early': 924187, 'some early shopper': 782716, 'early shopper began': 264685, 'shopper began queuing': 761427, 'began queuing outside': 123426, 'queuing outside the': 694228, 'outside the giant': 629592, 'the giant hypermarket': 856256, 'giant hypermarket here': 349804, 'hypermarket here waiting': 412332, 'here waiting to': 393777, 'shop for daily': 760183, 'for daily essential': 320525, 'daily essential kwiknews': 224602, 'essential kwiknews nation': 281268, 'worker janitorial': 1007261, 'janitorial staff': 464570, 'staff waste': 793052, 'management professional': 512617, 'professional that': 682504, 'together every': 920773, 'are underpaid': 91294, 'underpaid and': 940523, 'and underappreciated': 74623, 'underappreciated quarantine': 940411, 'line worker like': 493604, 'store worker janitorial': 811533, 'worker janitorial staff': 1007262, 'janitorial staff waste': 464572, 'staff waste management': 793053, 'waste management professional': 968148, 'management professional that': 512618, 'professional that do': 682507, 'that do the': 843571, 'our society together': 624835, 'society together every': 781338, 'together every day': 920774, 'day that are': 228468, 'that are underpaid': 842833, 'are underpaid and': 91295, 'underpaid and underappreciated': 940525, 'and underappreciated quarantine': 74624, 'dickwad': 240493, 'audacity': 102893, 'some dickwad': 782682, 'dickwad had': 240494, 'sheer audacity': 756570, 'audacity to': 102896, 'employee taking': 274265, 'taking too': 833640, 'long clerk': 501370, 'clerk had': 181710, 'come break': 187250, 'break up': 138820, 'group ready': 366850, 'beat his': 118527, 'his as': 397209, 'as because': 94723, 'it threatened': 461666, 'threatened good': 893782, 'good social': 357747, 'distancing practice': 247403, 'practice coronacrisis': 668541, 'and some dickwad': 71957, 'some dickwad had': 782683, 'dickwad had the': 240495, 'had the sheer': 373627, 'the sheer audacity': 866812, 'sheer audacity to': 756571, 'audacity to complain': 102897, 'complain about the': 191848, 'about the employee': 26387, 'the employee taking': 854268, 'employee taking too': 274266, 'taking too long': 833641, 'too long clerk': 924863, 'long clerk had': 501371, 'clerk had to': 181711, 'had to come': 373679, 'to come break': 903021, 'come break up': 187251, 'break up the': 138821, 'up the group': 946179, 'the group ready': 856867, 'group ready to': 366851, 'ready to beat': 700940, 'to beat his': 901655, 'beat his as': 118528, 'his as because': 397210, 'as because it': 94724, 'because it threatened': 119210, 'it threatened good': 461667, 'threatened good social': 893783, 'good social distancing': 357748, 'social distancing practice': 779689, 'distancing practice coronacrisis': 247404, 'scammer new': 740600, 'website no': 975359, 'contact excessive': 200071, 'necessity website': 554292, 'website not': 975361, 'not secure': 571470, 'secure good': 744439, 'good will': 357959, 'arrive beware': 93905, 'beware the': 129107, 'the phishing': 863679, 'email do': 272160, 'on link': 601865, 'link scammer': 493900, 'scammer staysafe': 740620, 'for the scammer': 326672, 'the scammer new': 866427, 'scammer new website': 740601, 'new website no': 559869, 'website no way': 975360, 'way of contact': 969745, 'of contact excessive': 581800, 'contact excessive price': 200072, 'price for necessity': 674010, 'for necessity website': 323797, 'necessity website not': 554293, 'website not secure': 975362, 'not secure good': 571471, 'secure good will': 744440, 'good will never': 357961, 'will never arrive': 994157, 'never arrive beware': 557864, 'arrive beware the': 93906, 'beware the phishing': 129108, 'the phishing email': 863680, 'phishing email do': 654816, 'email do not': 272161, 'not click on': 568771, 'click on link': 181933, 'on link scammer': 601870, 'link scammer staysafe': 493901, 'rn supermarket': 724339, 'rn supermarket owner': 724340, 'live the white': 496053, 'sidestep': 768942, 'cancellation holidaymaker': 161022, 'holidaymaker in': 400402, 'losing thousand': 503603, 'of euro': 583213, 'euro airline': 283348, 'airline refuse': 40008, 'flight despite': 310460, 'despite ban': 238671, 'and agent': 57778, 'agent look': 38180, 'to sidestep': 914628, 'sidestep consumer': 768943, 'protection legislation': 685517, 'legislation via': 485997, 'cancellation holidaymaker in': 161023, 'holidaymaker in danger': 400403, 'in danger of': 421977, 'danger of losing': 225682, 'of losing thousand': 586022, 'losing thousand of': 503604, 'thousand of euro': 893437, 'of euro airline': 583214, 'euro airline refuse': 283349, 'airline refuse to': 40009, 'refuse to cancel': 707031, 'to cancel flight': 902425, 'cancel flight despite': 160848, 'flight despite ban': 310461, 'despite ban and': 238672, 'ban and agent': 109173, 'and agent look': 57779, 'agent look to': 38181, 'look to sidestep': 502636, 'to sidestep consumer': 914629, 'sidestep consumer protection': 768944, 'consumer protection legislation': 198543, 'protection legislation via': 685518, 'newstart': 561130, 'hmm so': 398692, 'so newstart': 777869, 'newstart doubled': 561131, 'doubled now': 256125, 'there fewer': 878381, 'fewer taxpayer': 304239, 'taxpayer more': 835203, 'claiming benefit': 179899, 'benefit but': 126934, 'increased for': 433325, 'year did': 1014521, 'or cost': 614835, 'living suddenly': 496458, 'suddenly increase': 817112, 'increase because': 432693, 'hmm so newstart': 398694, 'so newstart doubled': 777870, 'newstart doubled now': 561132, 'doubled now there': 256126, 'now there fewer': 576091, 'there fewer taxpayer': 878382, 'fewer taxpayer more': 304240, 'taxpayer more people': 835204, 'more people claiming': 540011, 'people claiming benefit': 647469, 'claiming benefit but': 179900, 'benefit but could': 126935, 'but could not': 145468, 'not be increased': 568401, 'be increased for': 115460, 'increased for 20': 433326, 'for 20 year': 318735, '20 year did': 13419, 'year did price': 1014522, 'did price or': 240769, 'price or cost': 675769, 'or cost of': 614836, 'cost of living': 208053, 'of living suddenly': 585917, 'living suddenly increase': 496459, 'suddenly increase because': 817113, 'increase because of': 432694, 'of 19 pandemic': 579407, '19 pandemic now': 9410, 'pandemic now even': 636059, 'now even le': 574619, 'lifework': 489418, '3700': 18091, '78704': 22353, 'lifework is': 489419, 'customer immediate': 222483, 'need with': 556225, 'grocery gift': 364558, 'card in': 163551, 'amount from': 53182, 'or these': 617422, 'be mailed': 115871, 'mailed or': 508687, 'or dropped': 615076, 'at 3700': 97628, '3700 1st': 18092, '1st street': 12809, 'street austin': 812919, 'austin tx': 103192, 'tx 78704': 937429, '78704 development': 22354, 'development 19': 239803, 'lifework is taking': 489420, 'step to meet': 799658, 'to meet our': 910042, 'our customer immediate': 622664, 'customer immediate need': 222484, 'immediate need with': 417007, 'need with grocery': 556226, 'with grocery gift': 998693, 'grocery gift card': 364559, 'gift card in': 349945, 'card in any': 163552, 'in any amount': 420420, 'any amount from': 78919, 'amount from or': 53183, 'from or these': 336715, 'or these can': 617423, 'these can be': 879719, 'can be mailed': 157642, 'be mailed or': 115872, 'mailed or dropped': 508688, 'or dropped off': 615077, 'off at 3700': 593666, 'at 3700 1st': 97629, '3700 1st street': 18093, '1st street austin': 12810, 'street austin tx': 812920, 'austin tx 78704': 103193, 'tx 78704 development': 937430, '78704 development 19': 22355, 'were helpful': 979730, 'helpful at': 391164, 'staff were helpful': 793070, 'were helpful at': 979731, 'helpful at the': 391165, 'personally think': 653051, 'virus thing': 958905, 'biggest heist': 130255, 'heist ever': 388863, 'ever looting': 285397, 'looting half': 503255, 'half if': 374188, 'all africa': 41961, 'africa resource': 35125, 'resource all': 714696, 'vaccine price': 951754, 'cost everything': 207928, 'everything fightcovid19': 287788, 'personally think this': 653053, 'think this corona': 885697, 'corona virus thing': 204364, 'virus thing is': 958906, 'thing is going': 884468, 'be the biggest': 117597, 'the biggest heist': 849656, 'biggest heist ever': 130256, 'heist ever looting': 388864, 'ever looting half': 285398, 'looting half if': 503256, 'half if not': 374189, 'if not all': 414485, 'not all africa': 568097, 'all africa resource': 41962, 'africa resource all': 35126, 'resource all price': 714697, 'all price will': 44044, 'will drop and': 993261, 'drop and vaccine': 260128, 'and vaccine price': 74834, 'vaccine price will': 951755, 'price will cost': 677556, 'will cost everything': 993046, 'cost everything fightcovid19': 207929, 'never really': 558152, 'really appreciated': 701982, 'appreciated before': 82810, 'supermarket would': 824134, 'be such': 117428, 'exciting activity': 289592, 'activity of': 30477, 'day oh': 228135, 'oh well': 596478, 'well iorestoacasa': 978327, 'never really appreciated': 558153, 'really appreciated before': 701983, 'appreciated before that': 82811, 'before that going': 123134, 'the supermarket would': 868916, 'supermarket would be': 824135, 'would be such': 1011653, 'be such an': 117429, 'such an exciting': 816324, 'an exciting activity': 55924, 'exciting activity of': 289593, 'activity of my': 30478, 'of my day': 586754, 'my day oh': 547950, 'day oh well': 228136, 'oh well iorestoacasa': 596481, 'deferring': 232205, '19 housing': 7594, 'housing loan': 407092, 'loan is': 497466, 'worth deferring': 1011351, 'deferring repayment': 232206, 'repayment most': 711492, 'their finance': 873312, 'finance homeowner': 306204, 'homeowner are': 402882, 'different these': 242092, 'face falling': 294432, 'falling housing': 297280, 'of looming': 586009, 'covid 19 housing': 213228, '19 housing loan': 7595, 'housing loan is': 407094, 'loan is it': 497467, 'it worth deferring': 462566, 'worth deferring repayment': 1011352, 'deferring repayment most': 232207, 'repayment most consumer': 711493, 'most consumer are': 542202, 'consumer are concerned': 196287, 'novel coronavirus on': 573760, 'coronavirus on their': 206345, 'on their finance': 604480, 'their finance homeowner': 873315, 'finance homeowner are': 306205, 'homeowner are no': 402883, 'are no different': 88253, 'no different these': 564017, 'different these people': 242093, 'these people face': 880435, 'people face falling': 647853, 'face falling housing': 294434, 'falling housing price': 297281, 'housing price and': 407127, 'and the threat': 73614, 'threat of looming': 893694, 'of looming crisis': 586010, 'china buying and': 176532, 'buying and dropping': 149900, 'and dropping oil': 61768, 'oil price that': 597285, 'that have fallen': 844209, 'have fallen due': 380568, 'to the disruption': 916644, 'disruption of the': 246514, 'some please': 783577, 'please show': 660512, 'show some': 767144, 'some love': 783232, 'love amp': 504592, 'amp drop': 53680, 'some off': 783422, 'of the local': 591197, 'the local company': 859539, 'local company that': 497851, 'company that made': 191177, 'that made hand': 844973, 'sanitizer we need': 736045, 'we need some': 972544, 'need some please': 555597, 'some please show': 783578, 'please show some': 660513, 'show some love': 767147, 'some love amp': 783234, 'love amp drop': 504593, 'amp drop some': 53681, 'drop some off': 260395, 'mostly housebound': 542965, 'housebound and': 406720, 'much everything': 544866, 'little else': 495325, 'give my': 350603, 'son the': 785445, 'got some money': 358852, 'some money tomorrow': 783313, 'since mostly housebound': 770757, 'mostly housebound and': 542966, 'housebound and cannot': 406721, 'and cannot go': 59514, 'cannot go shopping': 161932, 'shopping and pretty': 762012, 'pretty much everything': 671448, 'much everything is': 544869, 'very little else': 955319, 'little else no': 495326, 'to give my': 906695, 'give my son': 350605, 'my son the': 550168, 'son the day': 785446, 'day after tomorrow': 227189, 'initial ma': 438538, 'ma unemployment': 507285, 'unemployment claim': 941178, 'claim by': 179708, 'by industry': 152913, 'industry march': 435983, 'march 15th': 515078, 'april 4th': 83503, '4th 2020': 19519, '2020 weekly': 14706, 'weekly full': 977499, 'initial ma unemployment': 438539, 'ma unemployment claim': 507286, 'unemployment claim by': 941179, 'claim by industry': 179709, 'by industry march': 152915, 'industry march 15th': 435984, 'march 15th april': 515079, '15th april 4th': 4039, 'april 4th 2020': 83504, '4th 2020 weekly': 19520, '2020 weekly full': 14707, 'weekly full report': 977500, 'guard stepped': 367840, 'bolster the': 134147, 'food thursday': 317216, 'thursday few': 895366, 'dozen soldier': 257920, 'soldier packed': 781816, 'packed box': 633592, 'bank seeing': 110169, 'ha reported': 371726, 'reported 93': 712447, '93 427': 23520, '427 19': 18939, 'case amp': 165616, 'amp 385': 53334, '385 death': 18154, 'death ap': 229971, 'national guard stepped': 552528, 'guard stepped up': 367841, 'stepped up it': 799786, 'up it effort': 945239, 'it effort to': 457773, 'effort to bolster': 269612, 'to bolster the': 901884, 'bolster the supply': 134149, 'the supply of': 868955, 'of food thursday': 583800, 'food thursday few': 317217, 'thursday few dozen': 895367, 'few dozen soldier': 303809, 'dozen soldier packed': 257921, 'soldier packed box': 781817, 'packed box at': 633593, 'box at food': 137016, 'food bank seeing': 313635, 'bank seeing surge': 110172, 'in demand the': 422160, 'demand the so': 236360, 'the so far': 867401, 'far ha reported': 298799, 'ha reported 93': 371728, 'reported 93 427': 712448, '93 427 19': 23521, '427 19 case': 18940, '19 case amp': 5664, 'case amp 385': 165617, 'amp 385 death': 53335, '385 death ap': 18155, 'combined threat': 187130, 'outbreak trade': 628766, 'trade tension': 928585, 'taste all': 834771, 'all pose': 43993, 'pose threat': 665117, 'to auto': 900846, 'auto supplier': 103923, 'supplier but': 824508, 'but supplier': 147224, 'supplier that': 824615, 'that adapt': 842495, 'change are': 171929, 'will compete': 992980, 'compete and': 191585, 'deliver long': 233158, 'term value': 838334, 'the combined threat': 851176, 'combined threat of': 187131, 'the outbreak trade': 862715, 'outbreak trade tension': 628767, 'trade tension and': 928586, 'tension and changing': 837976, 'and changing consumer': 59734, 'changing consumer taste': 172679, 'consumer taste all': 199223, 'taste all pose': 834772, 'all pose threat': 43994, 'pose threat to': 665118, 'threat to auto': 893729, 'to auto supplier': 900848, 'auto supplier but': 103924, 'supplier but supplier': 824509, 'but supplier that': 147225, 'supplier that adapt': 824616, 'that adapt and': 842496, 'adapt and change': 31247, 'and change are': 59717, 'change are the': 171933, 'one that will': 607192, 'that will compete': 847565, 'will compete and': 992981, 'compete and deliver': 191586, 'and deliver long': 61083, 'deliver long term': 233159, 'long term value': 501718, 'been talking': 122138, 'talking all': 833999, 'confusion about': 194372, 'scam others': 740283, 'safe habit': 729727, 'habit online': 372669, 'off will': 594387, 'you prevent': 1020423, 'prevent being': 671584, 'victim more': 956487, 've been talking': 952940, 'been talking all': 122140, 'talking all week': 834000, 'all week about': 45419, 'week about how': 975813, 'how some folk': 408715, 'folk are using': 312099, 'using fear and': 950480, 'fear and confusion': 301024, 'and confusion about': 60296, 'confusion about to': 194374, 'about to scam': 26736, 'to scam others': 913866, 'scam others safe': 740284, 'others safe habit': 621624, 'safe habit online': 729728, 'habit online and': 372670, 'online and off': 607828, 'and off will': 67967, 'off will help': 594389, 'help you prevent': 390989, 'you prevent being': 1020424, 'prevent being victim': 671585, 'being victim more': 126039, 'victim more tip': 956488, 'investment banker': 443968, 'banker have': 110365, 'been candid': 120797, 'candid about': 161284, 'raise drug': 695834, 'investment banker have': 443969, 'banker have been': 110366, 'have been candid': 379486, 'been candid about': 120798, 'candid about the': 161285, 'about the opportunity': 26466, 'opportunity to raise': 613719, 'to raise drug': 912720, 'raise drug price': 695835, 'drug price on': 261052, 'critical drug and': 218543, 'drug and medical': 260873, 'universalcredit': 942384, 'about universal': 26808, 'credit universalcredit': 216549, 'universalcredit money': 942385, 'know about universal': 476227, 'about universal credit': 26809, 'universal credit universalcredit': 942357, 'credit universalcredit money': 216550, 'lining during': 493729, 'crisis le': 217644, 'la gas': 478167, 'le smog': 483121, 'smog throughout': 775854, 'city social': 179368, 'distancing from': 247161, 'your toxic': 1026191, 'toxic ex': 927644, 'silver lining during': 769820, 'lining during this': 493730, '19 crisis le': 6273, 'crisis le traffic': 217645, 'le traffic in': 483218, 'traffic in la': 929100, 'in la gas': 424562, 'la gas price': 478168, 'are down le': 85978, 'down le smog': 256913, 'le smog throughout': 483122, 'smog throughout the': 775855, 'throughout the city': 894965, 'the city social': 850958, 'city social distancing': 179369, 'social distancing from': 779616, 'distancing from your': 247163, 'from your toxic': 338500, 'your toxic ex': 1026192, 'know hand': 476411, 'only kill': 610683, 'bacteria not': 107686, 'not virus': 572404, 'virus right': 958698, 'all know hand': 43329, 'know hand sanitizer': 476412, 'hand sanitizer only': 375515, 'sanitizer only kill': 735471, 'only kill bacteria': 610684, 'kill bacteria not': 474351, 'bacteria not virus': 107687, 'not virus right': 572405, 'buyer pause': 149715, 'pause operation': 644608, '85 increase': 22926, 'purchase according': 689333, '19 cited': 5821, 'cited but': 178778, 'suspect fear': 829465, 'of longer': 586001, 'longer sale': 502039, 'sale cycle': 732150, 'cycle possible': 224063, 'possible dip': 665624, 'also factor': 48190, 'buyer pause operation': 149716, 'pause operation after': 644609, 'operation after an': 613124, 'after an 85': 35352, 'an 85 increase': 55026, '85 increase in': 22927, 'increase in purchase': 432862, 'in purchase according': 427126, 'purchase according to': 689334, 'according to covid': 28530, 'covid 19 cited': 212803, '19 cited but': 5822, 'cited but suspect': 178779, 'but suspect fear': 147244, 'suspect fear of': 829466, 'fear of longer': 301248, 'of longer sale': 586002, 'longer sale cycle': 502040, 'sale cycle possible': 732151, 'cycle possible dip': 224064, 'possible dip in': 665625, 'dip in home': 243192, 'in home price': 423786, 'are also factor': 84452, 'of photo': 588103, 'posted here': 666531, 'here something': 393589, 'much nicer': 545179, 'nicer to': 562551, 'at coronacrisis': 98334, 'stophoarding supermarket': 805500, 'load of photo': 497276, 'of photo of': 588104, 'are being posted': 84894, 'being posted here': 125561, 'posted here something': 666532, 'here something that': 393590, 'something that much': 785079, 'that much nicer': 845247, 'much nicer to': 545180, 'nicer to look': 562552, 'look at coronacrisis': 502260, 'at coronacrisis stophoarding': 98335, 'coronacrisis stophoarding supermarket': 204791, 'goodwin': 358108, 'crestline': 216666, 'danced': 225585, 'to goodwin': 906913, 'goodwin supermarket': 358111, 'in crestline': 421867, 'crestline my': 216667, 'my estimate': 548110, 'estimate is': 282249, 'were observing': 979927, 'observing the': 578661, 'foot rule': 318429, 'rule haven': 727248, 'haven danced': 383778, 'danced around': 225586, 'around that': 93515, 'much since': 545301, 'time saw': 897613, 'the grateful': 856705, 'grateful dead': 362251, 'dead wtf': 229193, 'people socal': 649501, 'went to goodwin': 979155, 'to goodwin supermarket': 906914, 'goodwin supermarket in': 358112, 'supermarket in crestline': 820886, 'in crestline my': 421868, 'crestline my estimate': 216668, 'my estimate is': 548111, 'estimate is le': 282250, 'le than of': 483182, 'than of the': 840963, 'people in there': 648438, 'in there were': 429825, 'there were observing': 879325, 'were observing the': 979928, 'observing the six': 578665, 'the six foot': 867289, 'six foot rule': 772644, 'foot rule haven': 318430, 'rule haven danced': 727249, 'haven danced around': 383779, 'danced around that': 225587, 'around that much': 93517, 'that much since': 845250, 'much since the': 545302, 'last time saw': 480568, 'time saw the': 897616, 'saw the grateful': 738266, 'the grateful dead': 856706, 'grateful dead wtf': 362252, 'dead wtf is': 229194, 'with people socal': 1000166, 'bonnie': 134333, 'dr bonnie': 257977, 'bonnie henry': 134334, 'henry say': 391790, 'ok but': 597771, 'but drop': 145622, 'drop hint': 260211, 'hint of': 396913, 'there strategy': 879113, 'strategy ministry': 812684, 'ministry are': 533524, 'ha power': 371521, 'power under': 667724, 'emergency program': 272901, 'program act': 683194, 'and set': 71328, 'stop gouging': 804692, 'dr bonnie henry': 257978, 'bonnie henry say': 134335, 'henry say the': 391791, 'say the grocery': 739281, 'chain is ok': 170842, 'is ok but': 450444, 'ok but drop': 597772, 'but drop hint': 145623, 'drop hint of': 260212, 'hint of something': 396915, 'of something to': 589930, 'something to come': 785097, 'come there strategy': 187535, 'there strategy ministry': 879114, 'strategy ministry are': 812685, 'ministry are working': 533525, 'are working out': 91708, 'working out ha': 1008847, 'out ha power': 626252, 'ha power under': 371522, 'power under the': 667725, 'under the emergency': 940305, 'the emergency program': 854233, 'emergency program act': 272902, 'program act to': 683195, 'act to ration': 29802, 'to ration and': 912758, 'ration and set': 697635, 'and set price': 71331, 'to stop gouging': 915529, 'wichita distribute': 991664, 'distribute hand': 247988, 'wichita distribute hand': 991665, 'distribute hand sanitizer': 247989, 'sanitizer to community': 735911, 'to community member': 903102, 'this toronto': 890818, 'toronto distillery': 925934, 'making sanitizer': 511321, 'city combat': 179103, 'combat coronavirus': 186994, 'this toronto distillery': 890819, 'toronto distillery is': 925935, 'distillery is now': 247772, 'is now making': 450300, 'now making sanitizer': 575279, 'making sanitizer to': 511323, 'help the city': 390640, 'the city combat': 850926, 'city combat coronavirus': 179104, 'and but': 59311, 're definitely': 698510, 'together bank': 920721, 'slash interest': 773570, 'utility company': 951269, 'company need': 190908, 'thanks and but': 842017, 'and but we': 59313, 'we re definitely': 972853, 're definitely not': 698511, 'definitely not all': 232372, 'not all in': 568112, 'this together bank': 890761, 'together bank need': 920722, 'need to slash': 556073, 'to slash interest': 914718, 'slash interest rate': 773571, 'rate and utility': 697156, 'and utility company': 74809, 'utility company need': 951271, 'company need to': 190909, 'need to reduce': 556037, 'reduce price coronacrisis': 705897, 'having really': 384243, 'really rough': 702523, 'rough day': 726246, 'morning so': 541443, 'far wa': 298964, 'wa customer': 961916, 'customer telling': 222902, 'job while': 466289, 'said wa': 731550, 'just kept': 469096, 'kept making': 473053, 'making rude': 511314, 'rude comment': 727036, 'am having really': 50120, 'having really rough': 384244, 'really rough day': 702524, 'rough day work': 726247, 'day work in': 228798, 'crisis and all': 217011, 'and all morning': 57876, 'all morning so': 43519, 'morning so far': 541444, 'so far wa': 777065, 'far wa customer': 298965, 'wa customer telling': 961917, 'customer telling me': 222903, 'telling me to': 837232, 'me to not': 523765, 'to not do': 910687, 'not do my': 569063, 'do my job': 249628, 'my job while': 548937, 'job while they': 466291, 'while they are': 987434, 'at the cash': 100902, 'cash and said': 166160, 'and said wa': 70781, 'said wa doing': 731552, 'wa doing what': 962012, 'doing what wa': 252850, 'told to do': 923746, 'to do and': 904478, 'do and the': 249072, 'customer just kept': 222556, 'just kept making': 469097, 'kept making rude': 473054, 'making rude comment': 511315, 'duvet': 263630, 'just hide': 468968, 'hide under': 394852, 'the duvet': 853801, 'duvet until': 263631, 'until august': 943702, 'august coronacrisis': 102988, 'coronacrisis convid19uk': 204559, 'convid19uk stayathomechallenge': 202627, 'stayathomechallenge stophoarding': 797757, 'when you wish': 984617, 'you wish you': 1022373, 'wish you could': 996858, 'you could just': 1018093, 'could just hide': 209358, 'just hide under': 468969, 'hide under the': 394853, 'under the duvet': 940304, 'the duvet until': 853802, 'duvet until august': 263632, 'until august coronacrisis': 943703, 'august coronacrisis convid19uk': 102989, 'coronacrisis convid19uk stayathomechallenge': 204560, 'convid19uk stayathomechallenge stophoarding': 202629, 'stayathomechallenge stophoarding but': 797758, 'stophoarding but need': 805368, 'need to work': 556118, 'liability': 487949, 'lawyerkenneth': 482571, 'protecti': 685174, 'liability in': 487950, '19 texas': 11115, 'texas lawyerkenneth': 839797, 'lawyerkenneth and': 482572, 'government best': 359933, 'practice commentary': 668539, 'commentary consumer': 188479, 'consumer protecti': 198496, 'liability in the': 487951, 'covid 19 texas': 213923, '19 texas lawyerkenneth': 11116, 'texas lawyerkenneth and': 839798, 'lawyerkenneth and local': 482573, 'local government best': 498024, 'government best practice': 359934, 'best practice commentary': 127842, 'practice commentary consumer': 668540, 'commentary consumer protecti': 188480, 'damascus': 225286, 'all resident': 44164, 'of damascus': 582336, 'damascus since': 225287, 'suffered year': 817268, 'and 51': 57495, '51 year': 20207, 'food for all': 314518, 'for all resident': 319166, 'all resident of': 44167, 'resident of damascus': 714340, 'of damascus since': 582337, 'damascus since they': 225288, 'since they do': 770928, 'not feel the': 569389, 'feel the need': 302887, 'stock up amid': 803055, 'up amid the': 944282, 'pandemic and this': 634912, 'is in country': 448760, 'in country that': 421828, 'country that ha': 211114, 'that ha suffered': 844138, 'ha suffered year': 372107, 'suffered year of': 817269, 'year of war': 1014800, 'of war and': 592905, 'war and 51': 966354, 'and 51 year': 57497, '51 year of': 20208, 'year of economic': 1014777, 'of economic sanction': 582956, 'kenney say': 472803, 'combined toll': 187138, 'price represent': 676189, 'represent the': 712876, 'greatest challenge': 363269, 'province modern': 687181, 'modern history': 535389, 'jason kenney say': 464851, 'kenney say the': 472804, 'say the combined': 739269, 'the combined toll': 851177, 'combined toll of': 187139, 'toll of covid': 923858, 'pandemic the global': 636683, 'global economic recession': 351885, 'economic recession and': 267223, 'oil price represent': 597237, 'price represent the': 676190, 'represent the greatest': 712879, 'the greatest challenge': 856749, 'greatest challenge in': 363270, 'challenge in the': 171489, 'the province modern': 864731, 'province modern history': 687182, 'sodium': 781432, 'chlorite': 177579, 'naclo': 551361, 'acid': 29075, 'activator': 30248, 'mixture': 534662, 'chlorine': 177575, 'dioxide': 243165, 'clo': 182386, 'cure mm': 220775, 'mm 28': 534756, '28 sodium': 16404, 'sodium chlorite': 781433, 'chlorite naclo': 177580, 'naclo add': 551362, 'add acid': 31386, 'acid activator': 29076, 'activator when': 30249, 'when acid': 983115, 'acid is': 29078, 'added mixture': 31582, 'mixture becomes': 534663, 'becomes chlorine': 120210, 'chlorine dioxide': 177576, 'dioxide clo': 243166, 'clo agent': 182387, 'agent don': 38164, 'don drink': 253475, 'drink it': 258846, 'won have': 1003831, 'about dying': 25137, 'fake cure mm': 296601, 'cure mm 28': 220776, 'mm 28 sodium': 534757, '28 sodium chlorite': 16405, 'sodium chlorite naclo': 781434, 'chlorite naclo add': 177581, 'naclo add acid': 551363, 'add acid activator': 31387, 'acid activator when': 29077, 'activator when acid': 30250, 'when acid is': 983116, 'acid is added': 29079, 'is added mixture': 445348, 'added mixture becomes': 31583, 'mixture becomes chlorine': 534664, 'becomes chlorine dioxide': 120211, 'chlorine dioxide clo': 177577, 'dioxide clo agent': 243167, 'clo agent don': 182388, 'agent don drink': 38165, 'don drink it': 253477, 'drink it if': 258847, 'you do you': 1018282, 'do you won': 250697, 'you won have': 1022400, 'won have to': 1003834, 'worry about dying': 1010631, 'about dying of': 25139, 'salux': 732881, 'official salux': 595906, 'salux fabric': 732887, 'fabric site': 294237, 'the offer': 862063, 'amazon unless': 51171, 'want fake': 965782, 'fake one': 296679, 'free same': 332122, 'delivery on': 234249, 'membership required': 528281, 'required wash': 713415, 'the official salux': 862099, 'official salux fabric': 595907, 'salux fabric site': 732888, 'fabric site in': 294238, 'site in the': 771958, 'in the offer': 429411, 'the offer the': 862065, 'offer the best': 594825, 'best price on': 127866, 'on amazon unless': 599295, 'amazon unless you': 51172, 'unless you want': 942680, 'you want fake': 1022138, 'want fake one': 965783, 'fake one free': 296681, 'one free same': 606322, 'free same day': 332123, 'same day delivery': 733026, 'day delivery on': 227517, 'delivery on all': 234250, 'on all order': 599238, 'all order no': 43771, 'order no membership': 618416, 'no membership required': 564761, 'membership required wash': 528282, 'required wash your': 713416, 'pasar': 643181, 'jaya': 464896, 'jakpost': 464334, 'city owned': 179317, 'owned market': 632343, 'market operator': 516814, 'operator pasar': 613388, 'pasar jaya': 643182, 'jaya ha': 464897, 'provided home': 686615, 'service involving': 752506, 'involving seller': 444412, 'seller in': 749032, '20 market': 13148, 'market jakpost': 516657, 'city owned market': 179318, 'owned market operator': 632344, 'market operator pasar': 516815, 'operator pasar jaya': 613389, 'pasar jaya ha': 643183, 'jaya ha provided': 464898, 'ha provided home': 371571, 'provided home shopping': 686616, 'home shopping service': 402062, 'shopping service involving': 763846, 'service involving seller': 752507, 'involving seller in': 444413, 'seller in more': 749033, 'than 20 market': 840192, '20 market jakpost': 13149, 'weasel': 974839, 'be floor': 114883, 'to ceiling': 902547, 'ceiling display': 168758, 'america but': 51475, 'orange traitor': 617938, 'traitor weasel': 929383, 'weasel abandoned': 974840, 'abandoned sewing': 24212, 'sewing this': 754188, 'should be floor': 765626, 'be floor to': 114884, 'floor to ceiling': 310848, 'to ceiling display': 902548, 'ceiling display of': 168759, 'display of face': 246193, 'in store across': 428380, 'store across america': 806061, 'across america but': 29241, 'america but the': 51476, 'but the orange': 147377, 'the orange traitor': 862445, 'orange traitor weasel': 617939, 'traitor weasel abandoned': 929384, 'weasel abandoned sewing': 974841, 'abandoned sewing this': 24213, 'sewing this for': 754189, 'this for my': 887595, 'lte': 506395, 'alva': 49444, 'demonstrating': 236860, 'in supporting': 428739, 'supporting it': 827142, 'customer by': 222211, 'adding 15gb': 31660, 'of lte': 586061, 'lte data': 506396, 'and smb': 71798, 'smb plan': 775586, 'plan automatically': 658075, 'automatically sign': 104006, 'receive alva': 703438, 'alva daily': 49445, 'company demonstrating': 190585, 'demonstrating leadership': 236865, 'leadership during': 483596, 'work by in': 1004964, 'by in supporting': 152887, 'in supporting it': 428741, 'supporting it customer': 827143, 'it customer by': 457448, 'customer by adding': 222213, 'by adding 15gb': 151751, 'adding 15gb of': 31661, '15gb of lte': 4021, 'of lte data': 586062, 'lte data to': 506397, 'data to all': 226454, 'to all consumer': 900238, 'consumer and smb': 196244, 'and smb plan': 71799, 'smb plan automatically': 775587, 'plan automatically sign': 658076, 'automatically sign up': 104007, 'up here to': 945078, 'here to receive': 393723, 'to receive alva': 912909, 'receive alva daily': 703439, 'alva daily briefing': 49446, 'daily briefing on': 224528, 'the company demonstrating': 851322, 'company demonstrating leadership': 190586, 'demonstrating leadership during': 236866, 'nettle': 557686, 'teamfamily': 835857, 'supportingdreams': 827242, 'shelf worried': 757831, 'about running': 26122, 'money determined': 536698, 'family healthy': 297888, 'food present': 315910, 'present to': 670635, 'you nettle': 1020073, 'nettle and': 557687, 'and wild': 75650, 'wild garlic': 992059, 'garlic soup': 343692, 'soup watch': 786426, 'the taste': 869163, 'taste test': 834794, 'test later': 839079, 'later teamfamily': 481128, 'teamfamily supportingdreams': 835858, 'up with empty': 946634, 'supermarket shelf worried': 822571, 'shelf worried about': 757832, 'worried about running': 1010517, 'about running out': 26123, 'out of money': 626790, 'of money determined': 586605, 'money determined to': 536699, 'determined to feed': 239460, 'to feed your': 905738, 'feed your family': 302412, 'your family healthy': 1023785, 'family healthy food': 297889, 'healthy food present': 387634, 'food present to': 315911, 'present to you': 670638, 'to you nettle': 918908, 'you nettle and': 1020074, 'nettle and wild': 557688, 'and wild garlic': 75651, 'wild garlic soup': 992060, 'garlic soup watch': 343693, 'soup watch this': 786427, 'space for the': 787102, 'for the taste': 326718, 'the taste test': 869165, 'taste test later': 834795, 'test later teamfamily': 839080, 'later teamfamily supportingdreams': 481129, 'liberating': 488030, 'tradesman': 928824, 'immunity test': 417436, 'be most': 116003, 'most liberating': 542473, 'liberating factor': 488031, 'factor for': 295878, 'community just': 189946, 'potential of': 667108, 'immunity badge': 417393, 'badge front': 108122, 'line health': 493160, 'worker child': 1006632, 'care aged': 163826, 'care family': 163932, 'family nursing': 298089, 'nursing supermarket': 577635, 'worker tradesman': 1008042, 'tradesman everything': 928825, '19 immunity test': 7686, 'immunity test could': 417437, 'could be most': 208898, 'be most liberating': 116006, 'most liberating factor': 542474, 'liberating factor for': 488032, 'factor for our': 295880, 'our community just': 622466, 'community just imagine': 189947, 'just imagine the': 469020, 'the potential of': 864122, 'potential of an': 667109, 'of an immunity': 580118, 'an immunity badge': 56178, 'immunity badge front': 417394, 'badge front line': 108123, 'front line health': 338580, 'line health worker': 493162, 'health worker child': 386970, 'worker child care': 1006633, 'child care aged': 176034, 'care aged care': 163827, 'aged care family': 37949, 'care family nursing': 163933, 'family nursing supermarket': 298090, 'nursing supermarket worker': 577637, 'supermarket worker tradesman': 824104, 'worker tradesman everything': 1008043, 'heartwarming': 388476, 'briton refuse': 140651, 'in heartwarming': 423616, 'heartwarming response': 388477, 'briton refuse to': 140652, 'refuse to waste': 707046, 'waste food in': 968123, 'food in heartwarming': 314941, 'in heartwarming response': 423617, 'heartwarming response to': 388478, 'to coronavirus crisis': 903546, 'ghoul': 349696, 'when pharmacy': 983876, 'pharmacy found': 654319, 'out certain': 625843, 'certain medicine': 170055, 'medicine might': 526837, 'pharma company': 654021, 'company quickly': 190992, 'quickly doubled': 694514, 'price ghoul': 674179, 'when pharmacy found': 983877, 'pharmacy found out': 654320, 'found out certain': 330321, 'out certain medicine': 625844, 'certain medicine might': 170056, 'medicine might help': 526838, 'might help in': 531033, '19 the pharma': 11232, 'the pharma company': 863634, 'pharma company quickly': 654023, 'company quickly doubled': 190993, 'quickly doubled the': 694515, 'the price ghoul': 864355, 'didntdolist': 241281, 'home wanted': 402439, 'item but': 463166, 'didn it': 241116, 'wait hope': 964130, 'my decision': 547966, 'decision today': 231115, 'today saved': 920134, 'saved life': 737747, 'two didntdolist': 936888, 'didntdolist stayhomesavelives': 241282, 'way home wanted': 969636, 'home wanted to': 402440, 'wanted to stop': 966276, 'to stop by': 915507, 'stop by grocery': 804557, 'few item but': 303887, 'item but didn': 463167, 'but didn it': 145532, 'didn it can': 241117, 'it can wait': 457037, 'can wait hope': 160135, 'wait hope my': 964131, 'hope my decision': 403542, 'my decision today': 547967, 'decision today saved': 231116, 'today saved life': 920135, 'saved life or': 737748, 'life or two': 488955, 'or two didntdolist': 617559, 'two didntdolist stayhomesavelives': 936889, 'gallbladder': 342941, 'afford only': 34737, 'up not': 945473, 'eat much': 265988, 'my bad': 547382, 'bad gallbladder': 107869, 'gallbladder which': 342942, 'which cannot': 985736, 'fixed rn': 309829, 'rn due': 724324, 'why had': 991037, 'food snap': 316643, 'snap will': 776126, 'cover food': 212226, 'food ordered': 315684, 'ordered via': 618933, 'spend extra to': 788608, 'extra to stock': 293680, 'stock food cannot': 802128, 'food cannot afford': 313878, 'cannot afford only': 161607, 'afford only to': 34738, 'only to end': 611358, 'end up not': 276039, 'up not being': 945474, 'to eat much': 904893, 'eat much of': 265989, 'of it because': 585369, 'it because of': 456755, 'because of my': 119379, 'of my bad': 586733, 'my bad gallbladder': 547383, 'bad gallbladder which': 107870, 'gallbladder which cannot': 342943, 'which cannot be': 985737, 'cannot be fixed': 161638, 'be fixed rn': 114879, 'fixed rn due': 309830, 'rn due to': 724325, '19 which is': 12038, 'is why had': 453961, 'why had to': 991038, 'had to spend': 373728, 'to spend extra': 914989, 'spend extra on': 788607, 'extra on food': 293593, 'on food snap': 600908, 'food snap will': 316644, 'snap will not': 776127, 'will not cover': 994203, 'not cover food': 568904, 'cover food ordered': 212227, 'food ordered via': 315686, 'ordered via online': 618934, 'via online at': 956132, 'online at my': 607890, 'to shopkeeper': 914508, 'shopkeeper that': 761196, 'keeping their': 472593, 'same giving': 733079, 'free item': 331926, 'vulnerable bravo': 960886, 'bravo to': 138302, 'and rip': 70535, 'their loyal': 873897, 'loyal customer': 506267, 'customer let': 222568, 'hell reserved': 389058, 'you panicbuying': 1020292, 'to shopkeeper that': 914509, 'shopkeeper that are': 761197, 'that are keeping': 842770, 'are keeping their': 87668, 'keeping their price': 472596, 'the same giving': 866230, 'same giving free': 733080, 'giving free item': 351296, 'free item to': 331930, 'item to the': 463770, 'to the vulnerable': 917175, 'the vulnerable bravo': 870977, 'vulnerable bravo to': 960887, 'bravo to those': 138303, 'who have decided': 988918, 'decided to hike': 230919, 'price and rip': 672524, 'and rip off': 70536, 'rip off their': 722670, 'off their loyal': 594291, 'their loyal customer': 873898, 'loyal customer let': 506270, 'customer let there': 222569, 'there be special': 878221, 'in hell reserved': 423630, 'hell reserved for': 389059, 'reserved for you': 714138, 'for you panicbuying': 328080, 'freedumb': 332402, 'freedumb an': 332403, 'american born': 51840, 'born chinese': 135553, 'chinese it': 177285, 'still suck': 801248, 'suck get': 816892, 'get dirty': 346882, 'who won': 990021, 'even check': 283946, 'my item': 548897, 'freedumb an american': 332404, 'an american born': 55283, 'american born chinese': 51841, 'born chinese it': 135554, 'chinese it still': 177286, 'it still suck': 461259, 'still suck get': 801249, 'suck get dirty': 816893, 'get dirty look': 346883, 'dirty look and': 243759, 'look and people': 502234, 'people who won': 650360, 'who won even': 990022, 'won even check': 1003798, 'even check out': 283947, 'out my item': 626601, 'my item at': 548898, 'the supermarket counter': 868539, 'supermarket counter because': 819842, 'counter because of': 210195, 'dropping due': 260684, 'that impact': 844436, 'impact social': 417964, 'security recipient': 744729, 'are dropping due': 86010, 'dropping due to': 260685, '19 how will': 7611, 'how will that': 409241, 'will that impact': 995124, 'that impact social': 844439, 'impact social security': 417966, 'social security recipient': 779950, 'scunthorpe': 743016, '100 job': 1932, 'job created': 465759, 'by scunthorpe': 153896, 'scunthorpe pork': 743017, 'pork producer': 664819, 'producer many': 680655, 'many permanent': 514558, 'permanent it': 652058, 'staff up': 793031, 'meet supermarket': 527576, 'supermarket demand': 819942, 'cooking during': 202860, '100 job created': 1933, 'job created by': 465760, 'created by scunthorpe': 215793, 'by scunthorpe pork': 153897, 'scunthorpe pork producer': 743018, 'pork producer many': 664820, 'producer many permanent': 680656, 'many permanent it': 514559, 'permanent it staff': 652059, 'it staff up': 461216, 'staff up to': 793032, 'to meet supermarket': 910052, 'meet supermarket demand': 527577, 'supermarket demand for': 819943, 'for home cooking': 322342, 'home cooking during': 400929, 'cooking during outbreak': 202861, 'government boost': 359940, 'boost senior': 135009, 'senior meal': 750354, 'delivery amid': 233644, 'people 70': 646731, '70 amp': 21727, 'amp over': 54263, 'over should': 630611, 'be limiting': 115762, 'others is': 621491, 'why meal': 991187, 'meal service': 524271, 'become so': 120132, 'important older': 418910, 'look towards': 502647, 'towards community': 927174, 'food program': 316054, 'program exp': 683242, 'government boost senior': 359941, 'boost senior meal': 135010, 'senior meal delivery': 750355, 'meal delivery amid': 524129, 'delivery amid covid': 233645, '19 demand increase': 6485, 'demand increase people': 235691, 'increase people 70': 432979, 'people 70 amp': 646732, '70 amp over': 21728, 'amp over should': 54264, 'over should be': 630612, 'should be limiting': 765662, 'be limiting contact': 115763, 'with others is': 999969, 'others is why': 621494, 'is why meal': 453967, 'why meal service': 991188, 'meal service have': 524272, 'service have become': 752447, 'have become so': 379446, 'become so important': 120135, 'so important older': 777376, 'important older people': 418911, 'older people look': 598654, 'people look towards': 648701, 'look towards community': 502648, 'towards community food': 927175, 'community food program': 189852, 'food program exp': 316056, 'strapped': 812522, 'sensor': 750729, 'bottle is': 136252, 'is strapped': 452365, 'strapped with': 812523, 'with anti': 997259, 'anti theft': 78334, 'theft sensor': 872362, 'sensor at': 750730, 'in tampa': 428813, 'sanitizer bottle is': 734586, 'bottle is strapped': 136254, 'is strapped with': 452366, 'strapped with anti': 812524, 'with anti theft': 997262, 'anti theft sensor': 78335, 'theft sensor at': 872363, 'sensor at best': 750731, 'at best buy': 98125, 'best buy in': 127611, 'buy in tampa': 148820, 'dailydrawing': 224907, 'dailysketches': 224932, 'artwithfriends': 94655, 'artchallenge': 94203, 'wordoftheday': 1004629, 'wordofthedaychallenge': 1004632, '05 rescind': 955, 'rescind stocking': 713600, 'do dailydrawing': 249211, 'dailydrawing dailysketches': 224908, 'dailysketches artwithfriends': 224933, 'artwithfriends artchallenge': 94656, 'artchallenge wordoftheday': 94204, 'wordoftheday wordofthedaychallenge': 1004630, 'wordofthedaychallenge shopping': 1004633, 'shopping quarantine': 763706, 'quarantine stockup': 692583, '05 rescind stocking': 956, 'rescind stocking up': 713601, 'on supply is': 603827, 'supply is hard': 825442, 'hard to do': 378058, 'to do dailydrawing': 904497, 'do dailydrawing dailysketches': 249212, 'dailydrawing dailysketches artwithfriends': 224909, 'dailysketches artwithfriends artchallenge': 224934, 'artwithfriends artchallenge wordoftheday': 94657, 'artchallenge wordoftheday wordofthedaychallenge': 94205, 'wordoftheday wordofthedaychallenge shopping': 1004631, 'wordofthedaychallenge shopping quarantine': 1004634, 'shopping quarantine stockup': 763707, 'aldershot': 41243, 'so pleased': 778030, 'local aldershot': 497671, 'aldershot resident': 41244, 'resident david': 714281, 'david uk': 227004, 'uk man': 938532, 'man 70': 511969, '70 wa': 21855, 'wa living': 962577, 'living solely': 496454, 'on domino': 600380, 'domino pizza': 253308, 'pizza daily': 657157, 'mail online': 508634, 'are so pleased': 90213, 'so pleased to': 778032, 'pleased to be': 660799, 'help local aldershot': 390009, 'local aldershot resident': 497672, 'aldershot resident david': 41245, 'resident david uk': 714282, 'david uk man': 227005, 'uk man 70': 938533, 'man 70 wa': 511970, '70 wa living': 21856, 'wa living solely': 962578, 'living solely on': 496455, 'solely on domino': 781869, 'on domino pizza': 600381, 'domino pizza daily': 253309, 'pizza daily mail': 657158, 'daily mail online': 224684, 'winged': 996000, 'mph': 544318, 'alphabet': 47148, 'winged air': 996001, 'air drop': 39715, 'drop delivery': 260174, 'delivery can': 233776, 'come within': 187695, 'within minute': 1002386, 'ordering at': 618948, 'at speed': 100609, 'of 65': 579649, '65 mph': 21368, 'mph alphabet': 544319, 'alphabet nascent': 47153, 'nascent drone': 551978, 'winged air drop': 996002, 'air drop delivery': 39716, 'drop delivery can': 260175, 'delivery can come': 233777, 'can come within': 157938, 'come within minute': 187696, 'within minute of': 1002389, 'minute of ordering': 533814, 'of ordering at': 587346, 'ordering at speed': 618949, 'at speed of': 100610, 'speed of 65': 788453, 'of 65 mph': 579650, '65 mph alphabet': 21369, 'mph alphabet nascent': 544320, 'alphabet nascent drone': 47154, 'nascent drone delivery': 551979, 'drone delivery service': 260068, 'service is booming': 752516, '952': 23630, '5225': 20266, 'reminder price': 710583, 'illegal and': 416200, 'and californian': 59409, 'protected if': 685139, 'you experience': 1018486, 'experience illegal': 291383, 'essential submit': 281603, 'submit complaint': 815787, '800 952': 22686, '952 5225': 23631, '5225 stayhomesavelives': 20269, 'reminder price gouging': 710584, 'is illegal and': 448663, 'illegal and californian': 416201, 'and californian are': 59410, 'are protected if': 89295, 'protected if you': 685140, 'if you experience': 415433, 'you experience illegal': 1018487, 'experience illegal price': 291384, 'gas food or': 343853, 'other essential submit': 620179, 'essential submit complaint': 281604, 'submit complaint to': 815788, 'complaint to the': 192042, 'to the office': 916917, 'the office of': 862076, 'office of at': 595498, 'of at or': 580421, 'at or call': 99989, 'or call 800': 614637, 'call 800 952': 155726, '800 952 5225': 22687, '952 5225 stayhomesavelives': 23633, 'raking': 696217, 'who winning': 990012, 'winning big': 996064, 'big from': 129795, 'chaos read': 173043, 'the unexpected': 870380, 'unexpected company': 941360, 'company raking': 190999, 'raking it': 696221, 'more key': 539646, 'who winning big': 990013, 'winning big from': 996065, 'big from the': 129796, 'from the chaos': 337636, 'the chaos read': 850694, 'chaos read about': 173044, 'about the unexpected': 26551, 'the unexpected company': 870381, 'unexpected company raking': 941361, 'company raking it': 191000, 'raking it in': 696222, 'it in more': 458737, 'in more key': 425439, 'more key insight': 539647, 'key insight from': 473325, 'the consumer retail': 851587, 'consumer retail sector': 198798, 'owhealth': 631846, 'private market': 678943, 'market responds': 516996, 'will influence': 993852, 'influence public': 437317, 'public opinion': 688198, 'opinion toward': 613512, 'the structure': 868300, 'structure of': 814307, 'could shape': 209663, 'shape consumer': 754830, 'future policy': 342422, 'policy decision': 663374, 'decision owhealth': 231076, 'how the private': 408866, 'the private market': 864487, 'private market responds': 678944, 'market responds to': 516997, 'responds to this': 715601, 'to this crisis': 917415, 'crisis will influence': 218414, 'will influence public': 993853, 'influence public opinion': 437318, 'public opinion toward': 688200, 'opinion toward the': 613513, 'toward the structure': 927159, 'the structure of': 868301, 'structure of the': 814311, 'of the healthcare': 591098, 'system and could': 831094, 'and could shape': 60623, 'could shape consumer': 209665, 'shape consumer sentiment': 754831, 'sentiment and future': 750897, 'and future policy': 63449, 'future policy decision': 342423, 'policy decision owhealth': 663375, 'culturally': 220278, 'vibrant': 956407, 'little neighbourhood': 495480, 'neighbourhood live': 557278, 'in is': 424164, 'is culturally': 446972, 'culturally vibrant': 220281, 'vibrant just': 956408, 'just dense': 468575, 'dense with': 237059, 'with cool': 997783, 'cool shop': 203038, 'shop market': 760448, 'restaurant lot': 716553, 'and wonder': 75821, 'percentage will': 651224, 'open post': 612459, 'post truly': 666381, 'truly regret': 933332, 'regret just': 707704, 'my closest': 547706, 'closest starbucks': 183536, 'starbucks and': 794086, 'the little neighbourhood': 859491, 'little neighbourhood live': 495481, 'neighbourhood live in': 557279, 'live in is': 495869, 'in is culturally': 424166, 'is culturally vibrant': 446973, 'culturally vibrant just': 220282, 'vibrant just dense': 956409, 'just dense with': 468576, 'dense with cool': 237060, 'with cool shop': 997784, 'cool shop market': 203039, 'shop market and': 760449, 'market and restaurant': 515986, 'and restaurant lot': 70385, 'restaurant lot of': 716554, 'them are closed': 875417, 'are closed now': 85356, 'closed now and': 183249, 'now and wonder': 574070, 'and wonder what': 75824, 'wonder what percentage': 1004013, 'what percentage will': 982026, 'percentage will open': 651225, 'will open post': 994348, 'open post truly': 612460, 'post truly regret': 666382, 'truly regret just': 933333, 'regret just going': 707705, 'to my closest': 910383, 'my closest starbucks': 547707, 'closest starbucks and': 183537, 'starbucks and supermarket': 794088, 'and supermarket all': 72701, 'supermarket all the': 818875, 'front like': 338553, 'like worker': 491838, 'hour it': 405711, 'only doctor': 610344, 'nurse it': 577392, 'cleaner postal': 180820, 'worker local': 1007332, 'government social': 360616, 'welfare there': 977971, 'beyond during': 129164, 'front like worker': 338554, 'like worker are': 491839, 'of the hour': 591110, 'the hour it': 857579, 'hour it not': 405714, 'not only doctor': 570789, 'only doctor and': 610345, 'and nurse it': 67892, 'nurse it care': 577393, 'it care worker': 457065, 'care worker supermarket': 164305, 'staff cleaner postal': 792323, 'cleaner postal service': 180821, 'postal service worker': 666455, 'service worker local': 753103, 'worker local government': 1007333, 'local government social': 498030, 'government social welfare': 360617, 'social welfare there': 780014, 'welfare there are': 977972, 'people going above': 648092, 'and beyond during': 58942, 'beyond during this': 129165, 'during this 19': 263258, 'equilibrium': 279654, 'really helped': 702280, 'me find': 522730, 'find my': 307076, 'my equilibrium': 548104, 'equilibrium and': 279655, 'keep finding': 471504, 'finding my': 307503, 'my peaceful': 549735, 'peaceful center': 646031, 'center over': 169286, 'few stressful': 304078, 'day whenever': 228735, 'whenever listen': 984662, 'care that': 164227, 'day ahead': 227219, 'ahead stophoarding': 39211, 'something that really': 785081, 'that really helped': 845961, 'really helped me': 702281, 'helped me find': 391083, 'me find my': 522731, 'find my equilibrium': 307079, 'my equilibrium and': 548105, 'equilibrium and keep': 279656, 'and keep finding': 65759, 'keep finding my': 471505, 'finding my peaceful': 307504, 'my peaceful center': 549736, 'peaceful center over': 646032, 'center over the': 169287, 'last few stressful': 480213, 'few stressful day': 304079, 'stressful day whenever': 813491, 'day whenever listen': 228736, 'whenever listen to': 984663, 'listen to it': 494741, 'to it it': 908590, 'it it help': 459172, 'it help me': 458545, 'help me not': 390071, 'me not panic': 523229, 'not panic about': 570891, 'panic about supply': 637260, 'about supply and': 26292, 'supply and food': 824720, 'and medical care': 66870, 'medical care that': 526087, 'care that might': 164228, 'that might need': 845163, 'might need in': 531083, 'the day ahead': 852866, 'day ahead stophoarding': 227220, 'govt and': 361074, 'their medium': 873940, 'medium mate': 527174, 'mate are': 520335, 'the blame': 849750, 'blame onto': 132278, 'public people': 688222, 'are further': 86762, 'park than': 641995, 'in westminster': 430821, 'westminster the': 980691, 'taken from': 832997, 'from ground': 335704, 'ground level': 366515, 'look closer': 502329, 'the govt and': 856651, 'govt and their': 361076, 'and their medium': 73701, 'their medium mate': 873941, 'medium mate are': 527175, 'mate are shifting': 520336, 'are shifting the': 90037, 'shifting the blame': 758555, 'the blame onto': 849753, 'blame onto the': 132279, 'onto the public': 611682, 'the public people': 864846, 'public people are': 688223, 'people are further': 646985, 'are further away': 86763, 'further away in': 342002, 'away in park': 105949, 'in park than': 426514, 'park than they': 641997, 'supermarket or in': 821814, 'or in westminster': 615765, 'in westminster the': 430822, 'westminster the photo': 980692, 'the photo of': 863703, 'photo of them': 655217, 'them are taken': 875420, 'are taken from': 90706, 'taken from ground': 832998, 'from ground level': 335705, 'ground level so': 366516, 'level so they': 487713, 'so they look': 778474, 'they look closer': 882625, 'dwarf': 263642, 'bat biggest': 112540, 'of mosquito': 586668, 'mosquito and': 542034, 'and mosquito': 67258, 'mosquito are': 542036, 'are by': 85138, 'by far': 152549, 'far deadliest': 298754, 'deadliest animal': 229204, 'animal for': 76600, 'human malaria': 410559, 'malaria death': 511554, 'death still': 230216, 'still dwarf': 800469, 'dwarf covid': 263643, 'an annual': 55321, 'annual basis': 77385, 'basis although': 112216, 'although maybe': 49335, 'maybe not': 521752, 'long in': 501449, '2020 and': 14139, 'and certainly': 59696, 'certainly throughout': 170188, 'throughout history': 894939, 'bat biggest consumer': 112541, 'consumer of mosquito': 198244, 'of mosquito and': 586669, 'mosquito and mosquito': 542035, 'and mosquito are': 67259, 'mosquito are by': 542037, 'are by far': 85140, 'by far deadliest': 152550, 'far deadliest animal': 298755, 'deadliest animal for': 229205, 'animal for human': 76602, 'for human malaria': 322442, 'human malaria death': 410560, 'malaria death still': 511555, 'death still dwarf': 230217, 'still dwarf covid': 800470, 'dwarf covid 19': 263644, '19 on an': 8927, 'on an annual': 599322, 'an annual basis': 55322, 'annual basis although': 77386, 'basis although maybe': 112217, 'although maybe not': 49336, 'maybe not for': 521754, 'not for long': 569491, 'for long in': 323078, 'long in 2020': 501450, 'in 2020 and': 419817, '2020 and certainly': 14141, 'and certainly throughout': 59698, 'certainly throughout history': 170189, 'critical say': 218651, 'say client': 738515, 'be critical say': 114297, 'critical say client': 218652, 'people queue': 649211, 'singapore on': 771137, '17 amid': 4330, 'bulk ha': 142307, 'global problem': 352145, 'product affecting': 680838, 'affecting those': 34582, 'paycheck photo': 645303, 'the strait': 868188, 'strait time': 812341, 'time afp': 896210, 'week people queue': 976739, 'people queue at': 649212, 'queue at supermarket': 693891, 'supermarket in singapore': 820978, 'in singapore on': 427973, 'singapore on march': 771138, 'on march 17': 602012, 'march 17 amid': 515095, '17 amid concern': 4331, 'amid concern about': 52404, 'about the spread': 26525, 'the 19 panic': 847924, 'in bulk ha': 421037, 'bulk ha become': 142308, 'ha become global': 369678, 'become global problem': 120008, 'global problem with': 352146, 'problem with empty': 679754, 'shelf of product': 757367, 'of product affecting': 588479, 'product affecting those': 680839, 'affecting those they': 34583, 'those they live': 892549, 'they live paycheck': 882579, 'to paycheck photo': 911582, 'paycheck photo the': 645304, 'photo the strait': 655254, 'the strait time': 868189, 'strait time afp': 812342, 'untouched': 943957, 'yee': 1015166, 'last the': 480536, 'one plus': 606890, 'plus of': 661641, 'in muslim': 425523, 'who thought': 989784, 'thought the': 893241, 'empty this': 275198, 'morning but': 541205, 'wine one': 995856, 'one largely': 606572, 'largely untouched': 479879, 'untouched yee': 943958, 'yee coronacrisis': 1015167, 'found at last': 330167, 'at last the': 99419, 'last the one': 480538, 'the one plus': 862216, 'one plus of': 606891, 'plus of living': 661643, 'living in muslim': 496382, 'in muslim area': 425524, 'muslim area who': 546418, 'area who thought': 92277, 'who thought the': 989787, 'thought the supermarket': 893250, 'were empty this': 979577, 'empty this morning': 275202, 'this morning but': 888947, 'morning but the': 541208, 'but the wine': 147428, 'the wine one': 871604, 'wine one largely': 995857, 'one largely untouched': 606573, 'largely untouched yee': 479880, 'untouched yee coronacrisis': 943959, 'yee coronacrisis panicbuying': 1015168, 'enough big': 277331, 'our preference': 624421, 'preference nominate': 669789, 'nominate your': 566282, 'supermarket pay': 821943, 'pay year': 645243, 'year 10': 1014327, 'pick pack': 655673, 'pack we': 633191, 'we collect': 971137, 'collect panicbuying': 186311, 'panicbuying schoolclosureuk': 639042, 'surely the supermarket': 827943, 'supermarket have enough': 820684, 'have enough big': 380441, 'enough big data': 277332, 'big data on': 129729, 'data on to': 226327, 'on to make': 604746, 'make up food': 510684, 'up food box': 944881, 'food box full': 313777, 'full of our': 340743, 'of our preference': 587545, 'our preference nominate': 624422, 'preference nominate your': 669790, 'nominate your supermarket': 566283, 'your supermarket pay': 1026055, 'supermarket pay year': 821944, 'pay year 10': 645244, 'year 10 11': 1014328, '10 11 to': 1231, '11 to pick': 2605, 'to pick pack': 911723, 'pick pack we': 655674, 'pack we collect': 633192, 'we collect panicbuying': 971138, 'collect panicbuying schoolclosureuk': 186312, 'gulf stock': 368650, 'to multi': 910343, 'low despite': 505243, 'despite massive': 238783, 'stimulus spending': 801618, 'region ha': 707418, 'suffered the': 817264, 'double blow': 255982, 'blow of': 133323, 'of plummeting': 588175, 'and sweeping': 72926, 'sweeping shutdown': 830203, 'gulf stock market': 368651, 'market have plunged': 516507, 'have plunged to': 381989, 'plunged to multi': 661509, 'to multi year': 910345, 'year low despite': 1014716, 'low despite massive': 505245, 'despite massive stimulus': 238786, 'massive stimulus spending': 520127, 'stimulus spending the': 801619, 'spending the region': 789004, 'the region ha': 865430, 'region ha suffered': 707419, 'ha suffered the': 372106, 'suffered the double': 817265, 'the double blow': 853610, 'double blow of': 255984, 'blow of plummeting': 133327, 'of plummeting oil': 588176, 'price and sweeping': 672555, 'and sweeping shutdown': 72927, 'india flipkart': 434405, 'flipkart tata': 310626, 'product launch': 681344, 'commodity distribution': 189163, 'distribution logistics': 248161, 'lockdown india flipkart': 499530, 'india flipkart tata': 434406, 'flipkart tata consumer': 310627, 'consumer product launch': 198465, 'product launch essential': 681346, 'launch essential commodity': 481898, 'essential commodity distribution': 280919, 'commodity distribution logistics': 189164, 'fulwood': 341110, 'adhered': 32216, 'shop fulwood': 760229, 'fulwood today': 341111, 'today very': 920431, 'see socialdistancing': 745707, 'socialdistancing being': 780246, 'being strictly': 125862, 'strictly adhered': 813683, 'adhered to': 32217, 'at separate': 100486, 'separate entrance': 751070, 'entrance exit': 278875, 'exit door': 290363, 'door another': 255514, 'another cleaning': 77537, 'cleaning for': 180949, 'each trolley': 264310, 'trolley small': 932468, 'small allowed': 774780, 'queue well': 694126, 'managed worth': 512517, 'the wait': 871026, 'wait even': 964098, 'even got': 284132, 'got flour': 358561, 'essential shop fulwood': 281547, 'shop fulwood today': 760230, 'fulwood today very': 341112, 'today very happy': 920432, 'very happy to': 955208, 'to see socialdistancing': 914070, 'see socialdistancing being': 745708, 'socialdistancing being strictly': 780247, 'being strictly adhered': 125863, 'strictly adhered to': 813684, 'adhered to employee': 32218, 'to employee at': 905020, 'employee at separate': 273651, 'at separate entrance': 100488, 'separate entrance exit': 751071, 'entrance exit door': 278876, 'exit door another': 290364, 'door another cleaning': 255515, 'another cleaning for': 77539, 'cleaning for each': 180950, 'for each trolley': 320910, 'each trolley small': 264311, 'trolley small allowed': 932469, 'small allowed at': 774781, 'allowed at time': 46136, 'at time in': 101291, 'supermarket queue well': 822139, 'queue well managed': 694127, 'well managed worth': 978383, 'managed worth the': 512518, 'worth the wait': 1011448, 'the wait even': 871028, 'wait even got': 964099, 'even got flour': 284133, '2metredistance': 16732, 'respectit': 715153, 'dailydoseofdonna1979': 224906, 'sign would': 769267, 'would ve': 1012365, 'handy for': 376887, 'this idiot': 887993, 'supermarket walking': 823718, 'walking way': 965122, 'people earlier': 647756, 'week 2metredistance': 975801, '2metredistance socialdistancing': 16733, 'socialdistancing respectit': 780641, 'respectit dailydoseofdonna1979': 715154, 'this sign would': 890150, 'sign would ve': 769268, 'would ve come': 1012369, 'in handy for': 423534, 'handy for this': 376889, 'for this idiot': 327038, 'this idiot in': 887994, 'idiot in the': 413532, 'the supermarket walking': 868890, 'supermarket walking way': 823722, 'walking way too': 965123, 'way too close': 970125, 'to people earlier': 911621, 'people earlier this': 647757, 'this week 2metredistance': 891179, 'week 2metredistance socialdistancing': 975802, '2metredistance socialdistancing respectit': 16734, 'socialdistancing respectit dailydoseofdonna1979': 780642, 'kiri': 475415, 'hannafin': 376991, 'of corporate': 581982, 'corporate affair': 207232, 'affair for': 34039, 'for woolworth': 327911, 'woolworth and': 1004402, 'and countdown': 60630, 'countdown supermarket': 210173, 'supermarket kiri': 821246, 'kiri hannafin': 475416, 'hannafin say': 376992, 'on now': 602451, 'disastrous and': 244280, 'begging for': 123481, 'stop she': 805009, 'say their': 739313, 'breaking the manager': 139061, 'manager of corporate': 512759, 'of corporate affair': 581983, 'corporate affair for': 207233, 'affair for woolworth': 34040, 'for woolworth and': 327912, 'woolworth and countdown': 1004404, 'and countdown supermarket': 60631, 'countdown supermarket kiri': 210176, 'supermarket kiri hannafin': 821247, 'kiri hannafin say': 475417, 'hannafin say the': 376993, 'say the panic': 739299, 'buying that going': 151151, 'that going on': 844032, 'going on now': 355329, 'on now is': 602453, 'now is disastrous': 575067, 'is disastrous and': 447199, 'disastrous and she': 244281, 'and she is': 71423, 'she is begging': 756146, 'is begging for': 446045, 'begging for people': 123483, 'to stop she': 915570, 'stop she say': 805010, 'she say their': 756326, 'say their supermarket': 739316, 'their supermarket have': 874904, 'supermarket have plenty': 820700, 'hitting the': 398595, 'store send': 810035, 'hitting the grocery': 398597, 'grocery store send': 365759, 'store send prayer': 810036, 'fadhil': 296064, 'nabi': 551349, '480k': 19344, '358m': 17966, 'former deputy': 329627, 'deputy finance': 237791, 'minister fadhil': 533364, 'fadhil nabi': 296065, 'nabi economist': 551350, 'economist told': 267584, 'local tv': 498662, 'tv channel': 936099, 'channel yesterday': 172956, 'yesterday exported': 1015727, 'exported an': 292737, 'of 480k': 579599, '480k bpd': 19345, 'bpd in': 137452, 'march amp': 515264, 'amp only': 54226, 'made 358m': 507613, '358m 24': 17967, 'barrel he': 111231, 'said krg': 731188, 'krg oil': 477668, 'oil revenue': 597393, 'revenue had': 720434, 'had reached': 373443, 'reached 950': 700029, '950 prior': 23610, 'former deputy finance': 329628, 'deputy finance minister': 237792, 'finance minister fadhil': 306230, 'minister fadhil nabi': 533365, 'fadhil nabi economist': 296066, 'nabi economist told': 551351, 'economist told local': 267585, 'told local tv': 923595, 'local tv channel': 498663, 'tv channel yesterday': 936100, 'channel yesterday exported': 172957, 'yesterday exported an': 1015728, 'exported an average': 292738, 'average of 480k': 104878, 'of 480k bpd': 579600, '480k bpd in': 19346, 'bpd in march': 137453, 'in march amp': 425078, 'march amp only': 515265, 'amp only made': 54228, 'only made 358m': 610745, 'made 358m 24': 507614, '358m 24 per': 17968, 'per barrel he': 650700, 'barrel he said': 111232, 'he said krg': 385366, 'said krg oil': 731189, 'krg oil revenue': 477669, 'oil revenue had': 597395, 'revenue had reached': 720435, 'had reached 950': 373444, 'reached 950 prior': 700030, '950 prior to': 23611, 'prior to plunge': 678377, 'to plunge in': 911836, 'plunge in oil': 661436, 'cbcnl': 168288, '19 dropping': 6658, 'have severe': 382498, 'on say': 603317, 'say premier': 739068, 'premier cbcnl': 669892, 'covid 19 dropping': 212987, '19 dropping oil': 6659, 'price have severe': 674456, 'have severe impact': 382501, 'impact on say': 417887, 'on say premier': 603320, 'say premier cbcnl': 739069, 'from fire': 335476, 'fire after': 308054, 'after using': 36477, 'sanitizer coronav': 734699, 'ru 19': 726882, 'away from fire': 105883, 'from fire after': 335477, 'fire after using': 308056, 'after using hand': 36479, 'hand sanitizer coronav': 375355, 'sanitizer coronav ru': 734700, 'coronav ru 19': 205355, 'state worker': 796103, 'terrible health': 838407, 'united state worker': 942255, 'state worker are': 796104, 'doing an incredible': 252284, 'despite this terrible': 238916, 'this terrible health': 890489, 'terrible health crisis': 838408, 'sure it employee': 827598, 'it employee have': 457802, 'employee have paid': 273922, 'refinance': 706570, '6556': 21402, 'brandimage': 138115, 'eur': 283340, 'unissued': 942029, 'pay off': 645013, 'at furious': 98728, 'furious pace': 341859, 'pace home': 632935, 'home refinance': 401955, 'refinance program': 706571, 'program email': 683240, 'email dated': 272156, 'dated 25': 226774, '25 17': 15802, '17 6556': 4320, '6556 brandimage': 21403, 'brandimage capital': 138116, 'capital amount': 162635, 'to eur': 905272, 'eur 453': 283341, '453 780': 19173, '780 and': 22338, 'and consists': 60329, '00 share': 482, 'common stock': 189474, 'at par': 100066, 'par value': 641203, 'of eur': 583211, '453 78': 19171, '78 the': 22329, 'remaining 00': 709952, 'are unissued': 91317, 'to pay off': 911545, 'pay off your': 645016, 'off your home': 594444, 'your home at': 1024340, 'home at furious': 400746, 'at furious pace': 98729, 'furious pace home': 341860, 'pace home refinance': 632936, 'home refinance program': 401956, 'refinance program email': 706572, 'program email dated': 683241, 'email dated 25': 272157, 'dated 25 17': 226775, '25 17 6556': 15803, '17 6556 brandimage': 4321, '6556 brandimage capital': 21404, 'brandimage capital amount': 138117, 'capital amount to': 162636, 'amount to eur': 53292, 'to eur 453': 905273, 'eur 453 780': 283343, '453 780 and': 19174, '780 and consists': 22339, 'and consists of': 60330, 'consists of 00': 195516, 'of 00 share': 579294, '00 share of': 484, 'share of common': 755118, 'of common stock': 581593, 'common stock at': 189475, 'stock at par': 801884, 'at par value': 100067, 'par value of': 641204, 'value of eur': 952161, 'of eur 453': 583212, 'eur 453 78': 283342, '453 78 the': 19172, '78 the remaining': 22330, 'the remaining 00': 865491, 'remaining 00 share': 709953, '00 share are': 483, 'share are unissued': 754930, '1500rs': 3948, 'ajeeb': 40453, 'kamal': 470730, 'increased from': 433328, 'from 300': 334269, '300 to': 17351, 'to 1500rs': 899508, '1500rs you': 3949, 'control even': 202005, 'then creating': 877100, 'creating the': 216082, 'the poll': 863953, 'poll to': 663862, 'of nih': 587021, 'nih whether': 563212, 'whether doctor': 985505, 'doctor be': 250852, 'given ppes': 351081, 'ppes or': 668131, 'not ajeeb': 568093, 'ajeeb kamal': 40454, 'kamal stayhomesavelives': 470731, 'stayhomesavelives stayhomestaysafe': 798459, 'n95 mask price': 551203, 'mask price increased': 519147, 'price increased from': 674800, 'increased from 300': 433329, 'from 300 to': 334270, '300 to 1500rs': 17352, 'to 1500rs you': 899509, '1500rs you cannot': 3950, 'you cannot control': 1017852, 'cannot control even': 161729, 'control even the': 202006, 'even the price': 284664, 'price and then': 672561, 'and then creating': 73754, 'then creating the': 877101, 'creating the poll': 216083, 'the poll to': 863956, 'poll to ask': 663863, 'to ask the': 900765, 'ask the people': 95638, 'the people instead': 863481, 'instead of nih': 440291, 'of nih whether': 587022, 'nih whether doctor': 563213, 'whether doctor be': 985507, 'doctor be given': 250853, 'be given ppes': 115029, 'given ppes or': 351082, 'ppes or not': 668132, 'or not ajeeb': 616288, 'not ajeeb kamal': 568094, 'ajeeb kamal stayhomesavelives': 40455, 'kamal stayhomesavelives stayhomestaysafe': 470732, 'mazibuk0': 522008, 'white people': 987889, 'selfish to': 748297, 'who brought': 988343, 'brought south': 141189, 'disgusting now': 245428, 'the disinfectant': 853385, 'disinfectant this': 245774, 'cause price': 167706, 'skyrocket 19': 773282, '19 mazibuk0': 8589, 'white people are': 987890, 'are selfish to': 89940, 'selfish to think': 748298, 'think that they': 885613, 'they were the': 883807, 'were the one': 980244, 'one who brought': 607436, 'who brought south': 988345, 'brought south africa': 141190, 'africa is disgusting': 35088, 'is disgusting now': 447223, 'disgusting now they': 245429, 'now they buy': 576103, 'they buy all': 881587, 'food and all': 313171, 'all the disinfectant': 44720, 'the disinfectant this': 853389, 'disinfectant this will': 245775, 'will cause price': 992894, 'cause price to': 167709, 'to skyrocket 19': 914701, 'skyrocket 19 mazibuk0': 773283, 'for safer': 325299, 'safer shopping': 730380, 'shopping ask': 762075, 'tip for safer': 898780, 'for safer shopping': 325300, 'safer shopping ask': 730381, 'shopping ask your': 762076, 'icliniq100hrs life shopping': 412787, 'global case': 351768, 'case slow': 166013, 'slow dow': 774337, 'future rally': 342441, 'rally 800': 696253, 'point oil': 662570, 'oil slip': 597433, 'slip gold': 774020, 'jump amazon': 467846, 'delay prime': 232741, 'prime day': 678104, 'day coming': 227463, 'financial market global': 306505, 'market global case': 516456, 'global case slow': 351770, 'case slow dow': 166014, 'slow dow future': 774338, 'dow future rally': 256325, 'future rally 800': 342442, 'rally 800 point': 696254, '800 point oil': 22721, 'point oil slip': 662572, 'oil slip gold': 597434, 'slip gold price': 774021, 'gold price jump': 355961, 'price jump amazon': 674954, 'jump amazon to': 467847, 'amazon to delay': 51160, 'to delay prime': 904086, 'delay prime day': 232742, 'prime day coming': 678106, 'day coming soon': 227464, 'cking': 179659, 'war two': 966582, 'two stiff': 937239, 'lip in': 494048, 'to stuck': 915691, 'in door': 422366, 'to major': 909606, 'major op': 509405, 'op and': 611792, 'even do': 284015, 'pretty cking': 671373, 'cking broken': 179660, 'this world war': 891520, 'world war two': 1010140, 'war two stiff': 966583, 'two stiff upper': 937240, 'upper lip in': 947693, 'lip in reaction': 494049, 'reaction to stuck': 700224, 'to stuck in': 915692, 'stuck in door': 814591, 'in door due': 422367, 'due to major': 261859, 'to major op': 909608, 'major op and': 509406, 'op and cannot': 611793, 'and cannot even': 59510, 'cannot even do': 161792, 'even do my': 284016, 'do my shopping': 249631, 'my shopping online': 550061, 'few week the': 304166, 'week the mentality': 976994, 'mentality of this': 528713, 'country is pretty': 210816, 'is pretty cking': 451008, 'pretty cking broken': 671374, 'cking broken and': 179661, 'broken and self': 140883, 'and self centred': 71180, 'delivery order': 234290, 'order surge': 618609, 'surge million': 828220, 'american stay': 52212, 'grocery delivery order': 364447, 'delivery order surge': 234293, 'order surge million': 618610, 'surge million of': 828221, 'of american stay': 580077, 'american stay away': 52213, 'thanet': 841514, 'serviced': 753133, 'broadstairs': 140783, '246': 15743, '1988': 12458, 'in thanet': 428903, 'thanet if': 841516, 'have serviced': 382481, 'serviced accommodation': 753134, 'in broadstairs': 420999, 'broadstairs available': 140784, 'available check': 104290, 'check our': 174523, 'for availability': 319538, 'availability then': 104185, 'then call': 877050, 'price 0800': 672096, '0800 246': 1102, '246 1988': 15744, '1988 thanet': 12459, 'thanet broadstairs': 841515, 'in thanet if': 428904, 'thanet if you': 841517, 'isolate but still': 454835, 'but still want': 147186, 'to be close': 901170, 'close to family': 182892, 'to family we': 905662, 'we have serviced': 971936, 'have serviced accommodation': 382482, 'serviced accommodation in': 753135, 'accommodation in broadstairs': 28452, 'in broadstairs available': 421000, 'broadstairs available check': 140785, 'available check our': 104291, 'check our website': 174530, 'website for availability': 975262, 'for availability then': 319540, 'availability then call': 104186, 'then call for': 877051, 'call for price': 155884, 'for price 0800': 324711, 'price 0800 246': 672097, '0800 246 1988': 1103, '246 1988 thanet': 15745, '1988 thanet broadstairs': 12460, 'quarantinedqueers': 692918, 'after and': 35361, 'find toiletpaper': 307346, 'toiletpaper quarantinedqueers': 922379, 'quarantinedqueers toiletpapercrisis': 692919, '50 year after': 19915, 'year after and': 1014343, 'after and you': 35364, 'and you find': 76018, 'you find toiletpaper': 1018581, 'find toiletpaper quarantinedqueers': 307349, 'toiletpaper quarantinedqueers toiletpapercrisis': 922380, 'hygienicpaper': 412245, 'friend is': 333669, 'is toilet': 453264, 'safe emma': 729625, 'emma toiletpaper': 273231, 'humor laughter': 410893, 'laughter smile': 481850, 'smile comic': 775707, 'comic comedy': 187925, 'joke satire': 467128, 'satire comic': 736939, 'pandemic hygienicpaper': 635669, 'hygienicpaper toiletpaperapocalypse': 412246, 'best friend is': 127703, 'friend is toilet': 333672, 'is toilet paper': 453266, 'stay safe emma': 797230, 'safe emma toiletpaper': 729626, 'emma toiletpaper humor': 273232, 'toiletpaper humor laughter': 922095, 'humor laughter smile': 410894, 'laughter smile comic': 481851, 'smile comic comedy': 775708, 'comic comedy joke': 187926, 'comedy joke satire': 187760, 'joke satire comic': 467129, 'satire comic quarantine': 736941, 'virus pandemic hygienicpaper': 958602, 'pandemic hygienicpaper toiletpaperapocalypse': 635670, 'papertowel': 641157, 'wish need': 996796, 'to chill': 902718, 'chill toiletpaper': 176385, 'toiletpaper papertowel': 922320, 'papertowel wish': 641158, 'wish panicbuying': 996804, 'wish need to': 996797, 'need to chill': 555885, 'to chill toiletpaper': 902720, 'chill toiletpaper papertowel': 176386, 'toiletpaper papertowel wish': 922321, 'papertowel wish panicbuying': 641159, 'tha': 840063, 'statement yes': 796229, 'yes or': 1015502, 'no you': 565943, 'supermarket compared': 819744, 'to visiting': 918216, 'visiting another': 959512, 'another household': 77660, 'household while': 406985, 'while using': 987503, 'using ppe': 950606, 'no can': 563749, 'why tha': 991404, 'do you agree': 250612, 'you agree with': 1016854, 'with the statement': 1001495, 'the statement yes': 867829, 'statement yes or': 796230, 'yes or no': 1015503, 'or no you': 616269, 'no you have': 565947, 'you have more': 1019075, 'have more chance': 381497, 'more chance of': 538795, 'of catching covid': 581206, '19 in packed': 7774, 'packed supermarket compared': 633644, 'supermarket compared to': 819745, 'compared to visiting': 191443, 'to visiting another': 918217, 'visiting another household': 959513, 'another household while': 77661, 'household while using': 406986, 'while using ppe': 987506, 'using ppe and': 950607, 'ppe and social': 667907, 'distancing if it': 247213, 'if it no': 414323, 'it no can': 459824, 'no can you': 563751, 'you please explain': 1020356, 'please explain why': 659982, 'explain why tha': 292138, 'sensitivity': 750712, 'paytech': 645828, 'lendtech': 486304, 'ach': 29001, 'touch anything': 926456, 'anything or': 80850, 'hand over': 375167, 'your card': 1023145, 'someone there': 784692, 'big degree': 129748, 'degree of': 232567, 'of safety': 589219, 'consumer sensitivity': 198899, 'sensitivity to': 750715, 'catching coronavirus': 167078, 'now showing': 575822, 'at point': 100149, 'sale fintech': 732220, 'fintech contactless': 308021, 'payment paytech': 645703, 'paytech lendtech': 645829, 'lendtech processing': 486305, 'processing ach': 680008, 'have to touch': 383322, 'to touch anything': 917647, 'touch anything or': 926457, 'anything or hand': 80851, 'or hand over': 615555, 'hand over your': 375173, 'over your card': 630969, 'your card to': 1023146, 'card to someone': 163687, 'to someone there': 914909, 'someone there is': 784693, 'there is big': 878531, 'is big degree': 446169, 'big degree of': 129749, 'degree of safety': 232570, 'of safety in': 589221, 'safety in that': 730581, 'in that the': 428934, 'the consumer sensitivity': 851592, 'consumer sensitivity to': 198900, 'sensitivity to catching': 750716, 'to catching coronavirus': 902514, 'catching coronavirus is': 167080, 'is now showing': 450337, 'now showing up': 575825, 'up at point': 944436, 'at point of': 100150, 'of sale fintech': 589242, 'sale fintech contactless': 732221, 'fintech contactless payment': 308022, 'contactless payment paytech': 200380, 'payment paytech lendtech': 645704, 'paytech lendtech processing': 645830, 'lendtech processing ach': 486306, 'important reading': 418944, 'reading for': 700761, 'anyone leading': 80409, 'facing company': 295426, 'company 33': 190341, '33 of': 17766, 'consumer surveyed': 199201, 'surveyed said': 829011, 'would punish': 1012134, 'punish brand': 689217, 'that responded': 846015, 'responded poorly': 715357, 'crisis attention': 217097, 'attention marketer': 102457, 'important reading for': 418945, 'reading for anyone': 700762, 'for anyone leading': 319440, 'anyone leading consumer': 80410, 'leading consumer facing': 483698, 'consumer facing company': 197436, 'facing company 33': 295427, 'company 33 of': 190342, '33 of consumer': 17767, 'of consumer surveyed': 581776, 'consumer surveyed said': 199203, 'surveyed said they': 829012, 'said they would': 731492, 'they would punish': 883950, 'would punish brand': 1012135, 'punish brand that': 689218, 'brand that responded': 138035, 'that responded poorly': 846016, 'responded poorly to': 715358, 'poorly to the': 664399, '19 crisis attention': 6217, 'crisis attention marketer': 217098, 'vice': 956423, 'mera': 528921, 'minibus': 533042, 'reduce salary': 705922, 'president vice': 670960, 'vice all': 956424, 'all cabinet': 42268, 'cabinet member': 154990, 'member by': 528038, 'against mera': 37547, 'mera ordered': 528924, 'and minibus': 67042, 'minibus to': 533043, 'on fare': 600732, 'reduce salary of': 705923, 'salary of president': 731989, 'of president vice': 588377, 'president vice all': 670961, 'vice all cabinet': 956425, 'all cabinet member': 42269, 'cabinet member by': 154991, 'member by 10': 528039, 'by 10 and': 151511, '10 and use': 1317, 'use the fund': 949666, 'the fund in': 856040, 'fund in fight': 341434, 'fight against mera': 304631, 'against mera ordered': 37548, 'mera ordered to': 528925, 'ordered to reduce': 618923, 'to reduce fuel': 913023, 'price and minibus': 672471, 'and minibus to': 67043, 'minibus to cut': 533044, 'cut down on': 223308, 'down on fare': 257019, 'marketing brand': 517534, 'marketer marketing brand': 517469, 'supermarket us': 823623, 'us genius': 948519, 'genius method': 345794, 'method to': 529795, 'buyer from': 149650, 'hoarding sanitizer': 399506, 'sanitizer brilliant': 734597, 'brilliant hoarding': 139852, 'supermarket us genius': 823624, 'us genius method': 948520, 'genius method to': 345795, 'method to stop': 529801, 'to stop buyer': 915505, 'stop buyer from': 804524, 'buyer from hoarding': 149652, 'from hoarding sanitizer': 335831, 'hoarding sanitizer brilliant': 399507, 'sanitizer brilliant hoarding': 734598, 'outskirt': 629672, 'ygn': 1016351, 'show of': 767074, 'spirit industrial': 789476, 'industrial zone': 435579, 'zone factory': 1027756, 'in outskirt': 426372, 'outskirt of': 629673, 'of ygn': 593361, 'ygn organized': 1016352, 'organized market': 619475, 'sell basic': 748640, 'basic foodstuff': 111902, 'foodstuff at': 318160, 'income resident': 432449, 'show of community': 767075, 'of community spirit': 581601, 'community spirit industrial': 190105, 'spirit industrial zone': 789477, 'industrial zone factory': 435580, 'zone factory in': 1027757, 'factory in outskirt': 295959, 'in outskirt of': 426373, 'outskirt of ygn': 629675, 'of ygn organized': 593362, 'ygn organized market': 1016353, 'organized market to': 619476, 'market to sell': 517242, 'to sell basic': 914141, 'sell basic foodstuff': 748641, 'basic foodstuff at': 111903, 'foodstuff at special': 318161, 'special price to': 788032, 'price to low': 677010, 'to low income': 909486, 'low income resident': 505357, 'dha': 240081, 'in phase': 426677, 'phase dha': 654605, 'dha lahore': 240085, 'lahore the': 478996, 'wa busier': 961764, 'case employee': 165723, 'employee showed': 274212, 'showed little': 767339, 'little concern': 495290, 'distancing granted': 247180, 'granted vast': 362098, 'majority were': 509585, 'were wearing': 980342, 'went to large': 979168, 'to large grocery': 909043, 'chain in phase': 170812, 'in phase dha': 426678, 'phase dha lahore': 654606, 'dha lahore the': 240086, 'lahore the store': 478997, 'store wa busier': 811102, 'wa busier than': 961765, 'busier than usual': 143174, 'usual and other': 950884, 'and other customer': 68305, 'other customer and': 620055, 'customer and in': 222080, 'some case employee': 782485, 'case employee showed': 165724, 'employee showed little': 274213, 'showed little concern': 767340, 'little concern for': 495291, 'concern for social': 192977, 'social distancing granted': 779623, 'distancing granted vast': 247181, 'granted vast majority': 362099, 'vast majority were': 952711, 'majority were wearing': 509586, 'were wearing mask': 980344, 'paygrade': 645363, 'ago colleague': 38363, 'colleague wa': 186252, 'her upcoming': 392499, 'upcoming visa': 946815, 'visa renewal': 959113, 'renewal since': 711005, 'since brexit': 770532, 'brexit an': 139486, 'an unskilled': 56905, 'other colleague': 619958, 'country ticking': 211153, 'ticking skill': 895692, 'skill isn': 772959, 'isn something': 454674, 'something decided': 784882, 'by paygrade': 153539, 'week ago colleague': 975841, 'ago colleague wa': 38364, 'colleague wa concerned': 186253, 'wa concerned about': 961851, 'concerned about her': 193157, 'about her upcoming': 25379, 'her upcoming visa': 392500, 'upcoming visa renewal': 946816, 'visa renewal since': 959114, 'renewal since brexit': 711006, 'since brexit an': 770533, 'brexit an unskilled': 139487, 'an unskilled worker': 56906, 'unskilled worker in': 943492, 'worker in supermarket': 1007202, 'in supermarket today': 428694, 'supermarket today she': 823464, 'today she and': 920165, 'she and other': 755858, 'and other colleague': 68294, 'other colleague are': 619959, 'colleague are key': 186195, 'the country ticking': 852167, 'country ticking skill': 211154, 'ticking skill isn': 895693, 'skill isn something': 772960, 'isn something decided': 454675, 'something decided by': 784883, 'decided by paygrade': 230863, 'backup': 107608, 'have forgotten': 380691, 'forgotten how': 329439, 'my fake': 548178, 'fake cough': 296592, 'cough serve': 208545, 'serve reminder': 751934, 'reminder backup': 710541, 'backup socialdistancing': 107611, 'those who seem': 892669, 'to have forgotten': 907240, 'have forgotten how': 380692, 'forgotten how to': 329440, 'how to socially': 409085, 'socially distance at': 781044, 'store let my': 808711, 'let my fake': 486927, 'my fake cough': 548179, 'fake cough serve': 296593, 'cough serve reminder': 208546, 'serve reminder backup': 751935, 'reminder backup socialdistancing': 710542, 'our ed': 622854, 'ed on': 268458, 'on handling': 601241, 'topic what': 925822, 'consumer expect': 197386, 'expect during': 290638, 'pandemic period': 636172, 'period report': 651872, 'any hike': 79326, 'whatsapp or': 982907, 'info co': 437446, 'co ke': 184867, 'ke kenya': 471231, 'kenya live': 472923, 'in youtube': 431144, 'watch our ed': 968497, 'our ed on': 622855, 'ed on handling': 268459, 'on handling the': 601242, 'handling the topic': 376398, 'the topic what': 869803, 'topic what consumer': 925823, 'what consumer expect': 981252, 'consumer expect during': 197387, 'expect during this': 290639, 'this pandemic period': 889414, 'pandemic period report': 636173, 'period report any': 651873, 'report any hike': 711803, 'any hike in': 79327, 'hike in price': 396223, 'in price on': 426977, 'price on whatsapp': 675737, 'on whatsapp or': 605254, 'whatsapp or email': 982909, 'email info co': 272212, 'info co ke': 437447, 'co ke kenya': 184869, 'ke kenya live': 471232, 'kenya live in': 472924, 'live in youtube': 495896, 're hero': 698808, 'supply stophoarding': 825907, 'are not hoarding': 88390, 'not hoarding supply': 569998, 'hoarding supply you': 399573, 'supply you re': 826148, 'you re hero': 1020644, 're hero to': 698809, 'hero to other': 394134, 'other people getting': 620666, 'people getting to': 648067, 'getting to buy': 349394, 'buy supply stophoarding': 149268, 'agrisa': 39048, 'nation say': 552305, 'say agrisa': 738397, 'agrisa amid': 39049, 'consumer stockpile': 199150, 'stockpile in': 803761, 'pandemic agrisa': 634810, 'agrisa ha': 39051, 'nation agrisa': 552105, 'to feed the': 905732, 'the nation say': 861261, 'nation say agrisa': 552306, 'say agrisa amid': 738398, 'agrisa amid covid': 39050, 'buying by consumer': 150075, 'by consumer stockpile': 152196, 'consumer stockpile in': 199152, 'stockpile in fear': 803762, 'in fear amid': 422812, 'fear amid the': 301016, '19 pandemic agrisa': 9255, 'pandemic agrisa ha': 634811, 'agrisa ha said': 39052, 'ha said there': 371797, 'the nation agrisa': 861216, 'nation agrisa ha': 552106, 'yoo': 1016556, '200s': 13751, 'yoo haven': 1016557, 'the 200s': 847998, 'yoo haven seen': 1016558, 'since the 200s': 770856, 'viruspandemic': 959108, 'be nightmare': 116087, 'nightmare lockdownuk': 563181, 'lockdownuk lockdown': 500420, 'lockdown viruspandemic': 500114, 'to supermarket now': 915817, 'supermarket now will': 821678, 'now will be': 576422, 'will be nightmare': 992573, 'be nightmare lockdownuk': 116088, 'nightmare lockdownuk lockdown': 563182, 'lockdownuk lockdown viruspandemic': 500421, 'internship': 442074, 'no internship': 564519, 'internship no': 442075, 'no school': 565422, 'school covid': 741764, 'but self': 146997, 'boredom and': 135394, 'and boredom': 59083, 'boredom online': 135410, 'shopping spending': 763945, 'spending money': 788900, 'have because': 379421, 'work no internship': 1005492, 'no internship no': 564520, 'internship no school': 442076, 'no school covid': 565424, 'school covid 19': 741765, '19 self quarantine': 10396, 'self quarantine but': 747849, 'quarantine but self': 692064, 'but self quarantine': 146999, 'self quarantine boredom': 747848, 'quarantine boredom and': 692058, 'boredom and boredom': 135395, 'and boredom online': 59086, 'boredom online shopping': 135411, 'shopping but online': 762252, 'but online shopping': 146680, 'online shopping spending': 609279, 'shopping spending money': 763946, 'spending money do': 788901, 'not have because': 569812, 'have because not': 379423, 'because not work': 119288, 'differ': 241798, 'environment is': 279118, 'been rising': 121864, 'rising overall': 723253, 'overall and': 630991, 'security differ': 744579, 'differ by': 241799, 'by region': 153755, 'what the environment': 982310, 'the environment is': 854403, 'environment is the': 279119, 'is the long': 452852, 'of 19 will': 579425, 'be on food': 116194, 'chain but food': 170563, 'but food price': 145739, 'food price have': 315946, 'have been rising': 379667, 'been rising overall': 121865, 'rising overall and': 723254, 'overall and around': 630992, 'world the impact': 1010050, 'impact of crisis': 417766, 'of crisis on': 582180, 'crisis on food': 217812, 'food security differ': 316342, 'security differ by': 744580, 'differ by region': 241800, 'big grocery': 129807, 'dip into': 243198, 'be diagnosed': 114438, 'the big grocery': 849607, 'big grocery store': 129808, 'want to quarantine': 966096, 'to quarantine and': 912636, 'it you need': 462646, 'need to dip': 555905, 'to dip into': 904319, 'dip into your': 243202, 'leave is to': 484843, 'to be diagnosed': 901202, 'be diagnosed for': 114439, 'thomas': 891707, 'ldnont': 482808, 'greater demand': 363166, 'cause shortfall': 167733, 'at st': 100619, 'st thomas': 791753, 'thomas food': 891712, 'bank but': 109691, 'but help': 145916, 'from ldnont': 336200, 'ldnont came': 482810, 'came quickly': 157052, 'greater demand due': 363167, '19 cause shortfall': 5720, 'cause shortfall at': 167734, 'shortfall at st': 765366, 'at st thomas': 100620, 'st thomas food': 791754, 'thomas food bank': 891713, 'food bank but': 313532, 'bank but help': 109692, 'but help from': 145917, 'help from ldnont': 389771, 'from ldnont came': 336201, 'ldnont came quickly': 482811, 'who usually': 989867, 'usually go': 951123, 'go unappreciated': 354403, 'unappreciated but': 939415, 'be valued': 117958, 'valued much': 952261, 'clerk delivery worker': 181685, 'delivery worker cleaner': 234771, 'worker cleaner and': 1006647, 'cleaner and anyone': 180743, 'else who usually': 271987, 'who usually go': 989868, 'usually go unappreciated': 951125, 'go unappreciated but': 354404, 'unappreciated but is': 939416, 'but is now': 146079, 'is now on': 450307, 'pandemic you should': 637094, 'should be valued': 765762, 'be valued much': 117959, 'valued much much': 952262, 'much much more': 545136, 'selloff': 749544, 'supermarket share': 822401, 'provide potential': 686429, 'potential haven': 667081, 'haven amid': 383738, 'amid market': 52526, 'market selloff': 517037, 'selloff market': 749553, 'supermarket share price': 822402, 'share price provide': 755181, 'price provide potential': 676022, 'provide potential haven': 686430, 'potential haven amid': 667082, 'haven amid market': 383739, 'amid market selloff': 52527, 'market selloff market': 517038, 'shaken': 754433, 'costlier': 208340, 'outbreak continuing': 628133, 'upward swing': 947961, 'swing fmcg': 830397, 'further blow': 342004, 'blow consumer': 133303, 'sentiment remains': 750984, 'remains shaken': 710055, 'shaken this': 754446, 'also lead': 48467, 'of costlier': 582001, 'costlier fmcg': 208341, 'fmcg product': 311743, 'the outbreak continuing': 862607, 'outbreak continuing it': 628134, 'continuing it upward': 201532, 'it upward swing': 461981, 'upward swing fmcg': 947962, 'swing fmcg company': 830398, 'fmcg company may': 311723, 'company may be': 190883, 'may be in': 520992, 'be in for': 115403, 'in for further': 423014, 'for further blow': 321821, 'further blow consumer': 342005, 'blow consumer sentiment': 133304, 'consumer sentiment remains': 198922, 'sentiment remains shaken': 750985, 'remains shaken this': 710056, 'shaken this will': 754447, 'will also lead': 992260, 'also lead to': 48468, 'lead to decline': 483337, 'decline in purchase': 231363, 'in purchase of': 427129, 'purchase of costlier': 689575, 'of costlier fmcg': 582002, 'costlier fmcg product': 208342, 'pierrecardin': 656424, 'quarantine building': 692059, 'building lockdown': 142104, 'lockdown so': 499924, 'shopping hey': 762890, 'can miss': 159000, 'miss their': 534198, 'their 50': 872434, 'off pierrecardin': 594070, 'pierrecardin vietnam': 656425, 'vietnam lockdown': 957036, 'lockdown quarantinelife': 499830, 'quarantine building lockdown': 692060, 'building lockdown so': 142105, 'lockdown so do': 499926, 'so do some': 776886, 'online shopping hey': 609145, 'shopping hey can': 762891, 'hey can miss': 394341, 'can miss their': 159001, 'miss their 50': 534199, 'their 50 off': 872435, '50 off pierrecardin': 19782, 'off pierrecardin vietnam': 594071, 'pierrecardin vietnam lockdown': 656426, 'vietnam lockdown quarantinelife': 957037, 'sickening this': 768717, 'the fault': 854984, 'government if': 360201, 'government stated': 360627, 'stated clearly': 796132, 'lockdown then': 500021, 'like self': 491151, 'serving animal': 753169, 'animal panicbuying': 76641, 'sickening this is': 768718, 'is the fault': 452795, 'the fault of': 854985, 'fault of government': 300409, 'of government if': 584274, 'government if government': 360202, 'if government stated': 414176, 'government stated clearly': 360628, 'stated clearly you': 796133, 'clearly you will': 181593, 'have to lockdown': 383242, 'to lockdown then': 909407, 'lockdown then people': 500023, 'instead they re': 440371, 'they re afraid': 882989, 're afraid and': 698200, 'behave like self': 123785, 'like self serving': 491152, 'self serving animal': 747910, 'serving animal panicbuying': 753170, 'nelly': 557367, 'maintains': 509151, 'reality during': 701729, 'hitting street': 398591, 'street vendor': 813159, 'vendor hard': 954372, 'hard nelly': 377972, 'nelly sell': 557368, 'sell fresh': 748735, 'amp veg': 54772, 'veg in': 953756, 'in corona': 421796, 'cost from': 207954, 'her wholesale': 392525, 'wholesale supplier': 990493, 'supplier have': 824540, 'increased but': 433220, 'she maintains': 756214, 'maintains her': 509152, 'her price': 392314, 'grocery buy': 364331, 'new reality during': 559397, 'reality during covid': 701731, 'is hitting street': 448505, 'hitting street vendor': 398592, 'street vendor hard': 813160, 'vendor hard nelly': 954373, 'hard nelly sell': 377973, 'nelly sell fresh': 557369, 'sell fresh fruit': 748736, 'fresh fruit amp': 332995, 'fruit amp veg': 339054, 'amp veg in': 54774, 'veg in corona': 953757, 'in corona the': 421797, 'corona the cost': 204221, 'the cost from': 851984, 'cost from her': 207955, 'from her wholesale': 335772, 'her wholesale supplier': 392526, 'wholesale supplier have': 990494, 'supplier have increased': 824542, 'have increased but': 381055, 'increased but she': 433221, 'but she maintains': 147029, 'she maintains her': 756215, 'maintains her price': 509153, 'her price low': 392315, 'price low for': 675118, 'for the community': 326353, 'the community stay': 851298, 'community stay safe': 190121, 'safe amp if': 729430, 're out for': 699221, 'out for grocery': 626126, 'for grocery buy': 322026, 'grocery buy from': 364332, 'buy from your': 148722, 'from your local': 338481, 'your local vendor': 1024725, 'spainlockdown': 787369, 'to pantry': 911446, 'pantry their': 639687, 'other supplier': 621030, 'supplier however': 824551, 'however cannot': 409350, 'believe would': 126421, 'allow such': 46068, 'such corruption': 816421, 'corruption spain': 207702, 'spain spainlockdown': 787346, 'spainlockdown toiletpaper': 787370, 'toiletpaper amazon': 921711, 'amazon amazonpantry': 50841, 'amazonpantry corruption': 51238, 'corruption 19': 207682, 'thanks to pantry': 842251, 'to pantry their': 911448, 'pantry their price': 639689, 'price are of': 672708, 'are of the': 88646, 'the other supplier': 862557, 'other supplier however': 621032, 'supplier however cannot': 824552, 'however cannot believe': 409351, 'cannot believe would': 161676, 'believe would allow': 126422, 'would allow such': 1011508, 'allow such corruption': 46069, 'such corruption spain': 816422, 'corruption spain spainlockdown': 207703, 'spain spainlockdown toiletpaper': 787347, 'spainlockdown toiletpaper amazon': 787371, 'toiletpaper amazon amazonpantry': 921712, 'amazon amazonpantry corruption': 50842, 'amazonpantry corruption 19': 51239, 'help be': 389407, 'responsible consumer': 716018, 'of limited': 585861, 'limited resource': 492707, 'resource ha': 714801, 'care check': 163885, 'you do your': 1018283, 'to help be': 907462, 'help be responsible': 389408, 'be responsible consumer': 116834, 'responsible consumer of': 716019, 'consumer of limited': 198241, 'of limited resource': 585864, 'limited resource ha': 492708, 'resource ha some': 714803, 'ha some good': 371992, 'some good idea': 782964, 'good idea for': 357211, 'idea for the': 413053, 'public and health': 687849, 'health care check': 386221, 'care check them': 163886, 'them out here': 876126, 'inventorymanagement': 443731, 'you running': 1020961, 'stuff your': 815268, 'customer want': 223038, 'want find': 965784, 'can optimize': 159159, 'optimize your': 613950, 'your inventory': 1024510, 'management system': 512634, 'crisis smallbiz': 218053, 'smallbiz smallbusiness': 775203, 'business retail': 144330, 'store inventorymanagement': 808454, 'are you running': 91848, 'you running out': 1020963, 'of the stuff': 591505, 'the stuff your': 868340, 'stuff your customer': 815269, 'your customer want': 1023433, 'customer want find': 223039, 'want find out': 965785, 'you can optimize': 1017737, 'can optimize your': 159160, 'optimize your inventory': 613951, 'your inventory management': 1024511, 'inventory management system': 443691, 'management system during': 512635, 'system during the': 831151, '19 crisis smallbiz': 6324, 'crisis smallbiz smallbusiness': 218054, 'smallbiz smallbusiness owner': 775204, 'owner business retail': 632413, 'business retail store': 144331, 'retail store inventorymanagement': 718649, 'thinkwhyitmatters': 886050, 'sale fell': 732211, 'fell in': 303202, 'february and': 301682, 'year indicating': 1014662, 'indicating that': 435014, 'major driver': 509306, 'driver of': 259666, 'had downward': 373049, 'downward trend': 257841, 'trend before': 931288, '19 thinkwhyitmatters': 11336, 'retail sale fell': 718507, 'sale fell in': 732213, 'fell in february': 303203, 'in february and': 422835, 'february and year': 301689, 'and year over': 75963, 'over year indicating': 630957, 'year indicating that': 1014663, 'indicating that consumer': 435015, 'that consumer spending': 843301, 'which is major': 986027, 'is major driver': 449523, 'major driver of': 509308, 'driver of the': 259669, 'economy had downward': 267924, 'had downward trend': 373050, 'downward trend before': 257842, 'trend before covid': 931289, 'covid 19 thinkwhyitmatters': 213941, 'jobseekerswednesday': 466357, 'hiringnow': 397149, 'jobsearch': 466354, 'jobalert': 466317, 'job laid': 465939, 'off or': 594031, 'of seize': 589460, 'seize this': 747430, 'opportunity supermarket': 613679, 'supermarket wholesaler': 823863, 'wholesaler all': 990507, 'around america': 93187, 'now spread': 575879, 'word jobseekerswednesday': 1004510, 'jobseekerswednesday hiringnow': 466358, 'hiringnow grocery': 397150, 'grocery job': 364667, 'job jobsearch': 465926, 'jobsearch opportunity': 466355, 'opportunity jobalert': 613648, 'need job laid': 555124, 'job laid off': 465940, 'laid off or': 479026, 'off or out': 594035, 'or out of': 616465, 'impact of seize': 417798, 'of seize this': 589461, 'seize this opportunity': 747431, 'this opportunity supermarket': 889279, 'opportunity supermarket wholesaler': 613681, 'supermarket wholesaler all': 823865, 'wholesaler all around': 990508, 'all around america': 42063, 'around america need': 93188, 'america need your': 51623, 'help now spread': 390155, 'now spread the': 575880, 'the word jobseekerswednesday': 871705, 'word jobseekerswednesday hiringnow': 1004511, 'jobseekerswednesday hiringnow grocery': 466359, 'hiringnow grocery job': 397151, 'grocery job jobsearch': 364668, 'job jobsearch opportunity': 465927, 'jobsearch opportunity jobalert': 466356, 'affordabledrugsnow': 34914, 'rising three': 723302, 'time faster': 896647, 'than inflation': 840784, 'inflation skyrocketing': 437239, 'skyrocketing drug': 773422, 'crisis even': 217354, 'worse affordabledrugsnow': 1010851, 'drug price are': 261036, 'are rising three': 89720, 'rising three time': 723303, 'three time faster': 894075, 'time faster than': 896648, 'faster than inflation': 300125, 'than inflation skyrocketing': 840785, 'inflation skyrocketing drug': 437240, 'skyrocketing drug price': 773423, 'drug price will': 261062, 'price will make': 677575, 'will make the': 994091, 'make the covid': 510561, 'health crisis even': 386333, 'crisis even worse': 217355, 'even worse affordabledrugsnow': 284820, 'grocerystoreemployees': 366349, 'grocerystoreemployees are': 366350, 'pandemic unsung': 636874, 'grocerystoreemployees are some': 366351, 'the pandemic unsung': 863142, 'pandemic unsung hero': 636875, 'rollout': 725696, 'is usa': 453610, 'usa inc': 948667, 'inc making': 431292, 'making nationwide': 511242, 'nationwide 5g': 552707, '5g rollout': 20681, 'rollout big': 725697, 'big top': 130079, 'priority via': 678687, 'via distancing': 955921, 'why now is': 991244, 'now is usa': 575090, 'is usa inc': 453611, 'usa inc making': 948668, 'inc making nationwide': 431293, 'making nationwide 5g': 511243, 'nationwide 5g rollout': 552708, '5g rollout big': 20682, 'rollout big top': 725698, 'big top priority': 130080, 'top priority via': 925688, 'priority via distancing': 678688, 'plaything': 659510, 'even talking': 284633, 'the bros': 850052, 'bros alone': 141018, 'alone just': 46877, 'saying everybody': 739590, 'be arguing': 113677, 'with everybody': 998279, 'everybody cause': 286421, 'cause lot': 167640, 'everybody and': 286402, 'and idle': 64929, 'idle hand': 413678, 'devil plaything': 239965, 'plaything and': 659511, 'and not even': 67733, 'not even talking': 569280, 'even talking about': 284634, 'about the bros': 26345, 'the bros alone': 850053, 'bros alone just': 141019, 'alone just saying': 46878, 'just saying everybody': 469715, 'saying everybody is': 739591, 'everybody is about': 286445, 'to be arguing': 901114, 'be arguing with': 113678, 'arguing with everybody': 92742, 'with everybody cause': 998281, 'everybody cause lot': 286422, 'cause lot of': 167641, 'of folk have': 583622, 'folk have more': 312176, 'with everybody and': 998280, 'everybody and idle': 286403, 'and idle hand': 64930, 'idle hand are': 413679, 'hand are the': 374802, 'are the devil': 90818, 'the devil plaything': 853233, 'devil plaything and': 239966, 'plaything and just': 659512, 'store peep': 809483, 'peep keeping': 646286, 'keeping all': 472369, 'all fed': 42767, 'fed quarantinelife': 301875, 'quarantinelife we': 693045, 'all grateful': 42996, 'grocery store peep': 365646, 'store peep keeping': 809484, 'peep keeping all': 646287, 'keeping all fed': 472370, 'all fed quarantinelife': 42768, 'fed quarantinelife we': 301876, 'quarantinelife we re': 693046, 're all grateful': 698220, 'scattered': 741226, 'yellow': 1015254, 'the scattered': 866456, 'scattered yellow': 741227, 'yellow tape': 1015268, 'tape and': 834349, 'between people': 128852, 'it finally': 458000, 'finally sink': 306097, 'what absurd': 980996, 'absurd and': 27488, 'uncertain world': 939635, 'currently residing': 221653, 'in stay': 428257, 'everyone 19': 286669, 'supermarket the scattered': 823244, 'the scattered yellow': 866457, 'scattered yellow tape': 741228, 'yellow tape and': 1015269, 'tape and the': 834351, 'and the distance': 73328, 'distance between people': 246666, 'between people in': 128854, 'the store it': 868044, 'store it finally': 808572, 'it finally sink': 458001, 'finally sink in': 306098, 'sink in what': 771475, 'in what absurd': 430831, 'what absurd and': 980997, 'absurd and uncertain': 27490, 'and uncertain world': 74604, 'uncertain world we': 939636, 'are currently residing': 85675, 'currently residing in': 221654, 'residing in stay': 714453, 'in stay safe': 428258, 'safe everyone 19': 729643, 'announcement regarding': 77196, 'big thing': 130065, 'cover here': 212233, 'so strap': 778279, 'strap in': 812518, 'in folk': 422951, 'folk regarding': 312244, 'regarding governor': 707219, 'northam statement': 567703, 'retail closure': 717964, 'announcement regarding store': 77198, 'regarding store policy': 707270, 'store policy during': 809614, 'policy during the': 663389, 'we have big': 971767, 'have big thing': 379792, 'big thing to': 130066, 'thing to cover': 884882, 'to cover here': 903652, 'cover here so': 212234, 'here so strap': 393569, 'so strap in': 778280, 'strap in folk': 812519, 'in folk regarding': 422952, 'folk regarding governor': 312245, 'regarding governor northam': 707220, 'governor northam statement': 360951, 'northam statement on': 567704, 'statement on retail': 796201, 'on retail closure': 603175, 'horribly': 404141, 'feel horribly': 302667, 'horribly for': 404144, 'ally stricken': 46439, 'stricken by': 813594, 'think their': 885662, 'move their': 543741, 'their unsold': 875083, 'stelvio model': 799456, 'model news': 535283, 'feel horribly for': 302668, 'horribly for our': 404145, 'for our italian': 324262, 'italian ally stricken': 462681, 'ally stricken by': 46440, 'stricken by but': 813595, 'you think their': 1021678, 'think their price': 885663, 'their price will': 874440, 'will drop to': 993268, 'drop to move': 260426, 'to move their': 910321, 'move their unsold': 543743, 'their unsold stelvio': 875085, 'unsold stelvio model': 943506, 'stelvio model news': 799457, 'ofa': 593568, 'ofa is': 593569, 'consumer not': 198224, 'reassuring ontarians': 703229, 'ontarians that': 611576, 'that safe': 846092, 'be produced': 116556, 'produced processed': 680531, 'processed and': 679984, 'distributed despite': 248043, 'ofa is urging': 593570, 'urging consumer not': 948417, 'consumer not to': 198225, 'panic and reassuring': 637332, 'and reassuring ontarians': 70029, 'reassuring ontarians that': 703230, 'ontarians that safe': 611577, 'that safe food': 846093, 'safe food will': 729671, 'to be produced': 901459, 'be produced processed': 116557, 'produced processed and': 680532, 'processed and distributed': 679985, 'and distributed despite': 61517, 'distributed despite the': 248044, 'whithin': 987969, 'rydertwts': 728825, 'wasted whithin': 968277, 'whithin one': 987970, 'distance srilanka': 246834, 'srilanka rydertwts': 791616, 'rydertwts lka': 728826, 'day of stay': 228105, 'at home is': 99018, 'home is wasted': 401463, 'is wasted whithin': 453775, 'wasted whithin one': 968278, 'whithin one day': 987971, 'one day if': 606159, 'day if people': 227779, 'if people get': 414618, 'people get exposed': 648048, 'get exposed to': 346979, 'virus in supermarket': 958330, 'queue today so': 694105, 'today so please': 920193, 'so please keep': 778023, 'please keep distance': 660149, 'keep distance srilanka': 471453, 'distance srilanka rydertwts': 246835, 'srilanka rydertwts lka': 791617, 'in started': 428232, 'started taking': 794844, 'taking shopper': 833563, 'shopper temperature': 761734, 'door italy': 255632, 'shutting almost': 768244, 'all industrial': 43219, 'industrial output': 435559, 'output after': 629226, 'most death': 542241, 'chain in started': 170815, 'in started taking': 428233, 'started taking shopper': 794845, 'taking shopper temperature': 833565, 'shopper temperature at': 761735, 'the door italy': 853570, 'door italy is': 255633, 'italy is shutting': 462861, 'is shutting almost': 451909, 'shutting almost all': 768245, 'almost all industrial': 46535, 'all industrial output': 43220, 'industrial output after': 435560, 'output after reporting': 629227, 'reporting the most': 712770, 'the most death': 860969, 'most death in': 542243, 'death in day': 230077, 'rarely': 697107, 'grocery story': 365984, 'story madness': 812039, 'madness how': 508179, 'smart during': 775369, 'into almost': 442383, 'almost any': 46548, 'will encounter': 993296, 'encounter something': 275537, 'something rarely': 785025, 'rarely seen': 697117, 'life barren': 488516, 'barren shelf': 111312, 'from frozen': 335582, 'frozen vegetable': 339027, 'vegetable to': 954108, 'to toilet': 917622, 'paper many': 640446, 'grocery story madness': 365986, 'story madness how': 812040, 'madness how to': 508180, 'shop smart during': 760798, 'smart during covid': 775370, '19 go into': 7231, 'go into almost': 353734, 'into almost any': 442384, 'almost any supermarket': 46550, 'any supermarket this': 79911, 'week and you': 975949, 'you will encounter': 1022329, 'will encounter something': 993297, 'encounter something rarely': 275538, 'something rarely seen': 785026, 'rarely seen in': 697118, 'seen in american': 747068, 'in american life': 420249, 'american life barren': 52072, 'life barren shelf': 488517, 'barren shelf from': 111315, 'shelf from frozen': 757101, 'from frozen vegetable': 335583, 'frozen vegetable to': 339030, 'vegetable to toilet': 954115, 'to toilet paper': 917623, 'toilet paper many': 921350, 'paper many grocery': 640447, 'many grocery store': 514110, 'ellie': 271556, 'this ellie': 887357, 'ellie amid': 271557, 'outbreak grateful': 628254, 'line doctor': 493057, 'nurse assistant': 577213, 'assistant scientist': 96802, 'scientist also': 742189, 'also police': 48668, 'firefighter grocery': 308217, 'garbage truck': 343536, 'etc helping': 282589, 'helping all': 391258, 'all cope': 42454, 'cope share': 203325, 'you grateful': 1018928, 'this ellie amid': 887358, 'ellie amid the': 271558, 'the outbreak grateful': 862633, 'outbreak grateful for': 628255, 'grateful for those': 362277, 'for those on': 327127, 'front line doctor': 338567, 'line doctor nurse': 493058, 'doctor nurse assistant': 251000, 'nurse assistant scientist': 577214, 'assistant scientist also': 96803, 'scientist also police': 742190, 'also police firefighter': 48669, 'police firefighter grocery': 663011, 'firefighter grocery store': 308218, 'store worker garbage': 811514, 'worker garbage truck': 1007011, 'garbage truck driver': 343538, 'driver etc helping': 259533, 'etc helping all': 282590, 'helping all cope': 391259, 'all cope share': 42455, 'cope share what': 203326, 'share what are': 755344, 'are you grateful': 91799, 'you grateful for': 1018929, 'tmt': 899371, 'finding from': 307473, 'daily tmt': 224840, 'tmt consumer': 899372, 'consumer pulse': 198605, 'pulse suggest': 688998, 'nearly quarter': 553855, 'quarter 23': 693229, 'american feel': 51975, 'buy tech': 149274, 'tech good': 836099, 'service result': 752768, 'restriction caused': 717240, 'novel pandemic': 573807, 'finding from our': 307475, 'from our daily': 336766, 'our daily tmt': 622689, 'daily tmt consumer': 224841, 'tmt consumer pulse': 899373, 'consumer pulse suggest': 198607, 'pulse suggest that': 688999, 'suggest that nearly': 817537, 'that nearly quarter': 845295, 'nearly quarter 23': 553856, 'quarter 23 of': 693230, '23 of american': 15419, 'of american feel': 580060, 'american feel the': 51976, 'to buy tech': 902314, 'buy tech good': 149275, 'tech good or': 836100, 'good or service': 357527, 'or service result': 617023, 'service result of': 752769, 'result of restriction': 717612, 'of restriction caused': 589037, 'restriction caused by': 717241, 'by the novel': 154391, 'the novel pandemic': 861920, 'business especially': 143705, 'that rely': 845987, 'spending are': 788748, 'vulnerable massive': 961039, 'about where': 26912, 'how start': 408738, 'three place': 894029, 'search engine': 743237, 'engine and': 276931, 'largest social': 480023, 'small business especially': 774857, 'business especially those': 143706, 'especially those that': 280638, 'those that rely': 892542, 'that rely on': 845988, 'consumer spending are': 199045, 'spending are the': 788750, 'most vulnerable massive': 542883, 'vulnerable massive amount': 961040, 'amount of research': 53252, 'of research about': 588962, 'research about where': 713650, 'about where to': 26914, 'where to spend': 985312, 'to spend and': 914985, 'and how start': 64835, 'how start in': 408739, 'start in three': 794342, 'in three place': 430059, 'three place on': 894030, 'place on google': 657616, 'on google search': 601155, 'google search engine': 358188, 'search engine and': 743238, 'engine and on': 276933, 'on the largest': 604202, 'the largest social': 858979, 'largest social medium': 480024, 'actuarial': 31027, 'annuity': 77433, 'morning interested': 541314, 'the actuarial': 848329, 'actuarial take': 31028, 'being reflected': 125658, 'reflected in': 706640, 'of annuity': 580226, 'annuity and': 77434, 'policy anybody': 663341, 'have good': 380800, 'good link': 357335, 'this morning interested': 888973, 'morning interested in': 541315, 'interested in the': 441468, 'in the actuarial': 428966, 'the actuarial take': 848330, 'actuarial take on': 31029, '19 how is': 7604, 'is the mortality': 452866, 'the mortality risk': 860927, 'mortality risk being': 541806, 'risk being reflected': 723413, 'being reflected in': 125659, 'reflected in the': 706644, 'price of annuity': 675406, 'of annuity and': 580227, 'annuity and life': 77436, 'life insurance policy': 488787, 'insurance policy anybody': 440791, 'policy anybody have': 663342, 'anybody have good': 80089, 'have good link': 380805, 'boycottwetherspoon': 137405, 'boycottvirgin': 137399, 'millionaire wetherspoon': 532456, 'wetherspoon bos': 980776, 'bos tell': 135699, 'tell staff': 837064, 'lockdown boycottwetherspoon': 499202, 'boycottwetherspoon boycottsportsdirect': 137406, 'boycottsportsdirect boycottvirgin': 137396, 'millionaire wetherspoon bos': 532457, 'wetherspoon bos tell': 980777, 'bos tell staff': 135700, 'tell staff to': 837065, 'staff to consider': 792984, 'tesco during coronavirus': 838696, 'coronavirus lockdown boycottwetherspoon': 206240, 'lockdown boycottwetherspoon boycottsportsdirect': 499203, 'boycottwetherspoon boycottsportsdirect boycottvirgin': 137407, 'nowt': 576591, 'fine worked': 307731, 'worked two': 1006159, 'job before': 465693, 'doing nowt': 252566, 'nowt apart': 576592, 'from queuing': 337025, 'ok having': 597819, 'kid mean': 474047, 'anyone anyway': 80182, 'anyway socialdistancing': 81035, 'fine worked two': 307732, 'worked two week': 1006160, 'week of my': 976629, 'of my new': 586795, 'my new job': 549463, 'new job before': 558988, 'job before lockdown': 465694, 'before lockdown now': 122916, 'lockdown now getting': 499702, 'now getting paid': 574780, 'getting paid for': 349178, 'paid for doing': 634017, 'for doing nowt': 320802, 'doing nowt apart': 252567, 'nowt apart from': 576593, 'apart from queuing': 81271, 'from queuing for': 337026, 'queuing for the': 694212, 'supermarket it ok': 821176, 'it ok having': 460019, 'ok having kid': 597820, 'having kid mean': 384135, 'kid mean do': 474048, 'not see anyone': 571475, 'see anyone anyway': 744929, 'anyone anyway socialdistancing': 80183, 'in greenwich': 423431, 'greenwich no': 363780, 'slot checking': 774161, 'checking every': 174815, 'being sensible': 125753, 'sensible about': 750627, 'distance so': 246829, 'the choice': 850876, 'choice are': 177734, 'not eat': 569137, 'eat or': 266008, 'or risk': 616913, 'lethal disease': 487236, 'disease long': 245178, 'long know': 501474, 'know london': 476583, 'live in greenwich': 495863, 'in greenwich no': 423432, 'greenwich no supermarket': 363781, 'delivery slot checking': 234516, 'slot checking every': 774162, 'checking every day': 174816, 'every day people': 285836, 'day people in': 228199, 'people in under': 648446, 'in under stocked': 430416, 'under stocked supermarket': 940266, 'stocked supermarket not': 803411, 'supermarket not being': 821640, 'not being sensible': 568548, 'being sensible about': 125754, 'sensible about keeping': 750628, 'about keeping distance': 25615, 'keeping distance so': 472407, 'distance so the': 246830, 'so the choice': 778416, 'the choice are': 850877, 'choice are not': 177735, 'are not eat': 88356, 'not eat or': 569141, 'eat or risk': 266011, 'or risk catching': 616914, 'risk catching potentially': 723451, 'catching potentially lethal': 167102, 'potentially lethal disease': 667220, 'lethal disease long': 487237, 'disease long know': 245179, 'long know london': 501475, 'aggravate': 38215, 'repent': 711558, 'of confidence': 581654, 'safely return': 730301, 'normal activity': 567068, 'activity lack': 30463, 'of productivity': 588517, 'productivity disrupting': 682314, 'disrupting food': 246422, 'chain will': 171240, 'will further': 993482, 'further aggravate': 341995, 'aggravate shortage': 38216, 'shortage lack': 765057, 'further stress': 342173, 'stress fear': 813324, 'fear pray': 301292, 'pray repent': 669013, 'repent prepare': 711559, 'house stock': 406583, 'stock ration': 802776, 'ration save': 697721, 'save plan': 737621, 'plan security': 658217, 'lack of confidence': 478611, 'of confidence to': 581656, 'confidence to safely': 193966, 'to safely return': 913719, 'safely return to': 730302, 'to normal activity': 910638, 'normal activity lack': 567069, 'activity lack of': 30464, 'lack of productivity': 478649, 'of productivity disrupting': 588518, 'productivity disrupting food': 682315, 'disrupting food supply': 246423, 'supply chain will': 825064, 'chain will further': 171242, 'will further aggravate': 993483, 'further aggravate shortage': 341996, 'aggravate shortage lack': 38217, 'shortage lack of': 765058, 'lack of income': 478627, 'income will further': 432501, 'will further stress': 993485, 'further stress fear': 342174, 'stress fear pray': 813325, 'fear pray repent': 301293, 'pray repent prepare': 669014, 'repent prepare your': 711560, 'prepare your house': 670155, 'your house stock': 1024418, 'house stock ration': 406584, 'stock ration save': 802777, 'ration save plan': 697722, 'save plan security': 737622, 'panicshoppers': 639410, 'mulberry': 545620, 'give united': 350809, 'state crash': 795508, 'crash course': 214960, 'course named': 211903, 'named communism': 551717, 'communism 101': 189662, '101 now': 2228, 'to everything': 905363, 'everything all': 287677, 'time love': 897158, 'yet quarantine': 1016217, 'thanks panicshoppers': 842157, 'panicshoppers cv': 639411, 'cv mulberry': 223844, 'mulberry newyork': 545621, 'newyork nyc': 561198, 'nyc manhattan': 578013, 'manhattan toiletpaper': 513139, 'toiletpaper communism': 921870, 'coronavirus give united': 205989, 'give united state': 350810, 'united state crash': 942212, 'state crash course': 795509, 'crash course named': 214961, 'course named communism': 211904, 'named communism 101': 551718, 'communism 101 now': 189663, '101 now imagine': 2229, 'now imagine this': 574984, 'imagine this to': 416812, 'this to apply': 890726, 'apply to everything': 82614, 'to everything all': 905364, 'everything all the': 287678, 'the time love': 869604, 'time love it': 897159, 'love it yet': 504716, 'it yet quarantine': 462631, 'yet quarantine thanks': 1016218, 'quarantine thanks panicshoppers': 692604, 'thanks panicshoppers cv': 842158, 'panicshoppers cv mulberry': 639412, 'cv mulberry newyork': 223845, 'mulberry newyork nyc': 545622, 'newyork nyc manhattan': 561199, 'nyc manhattan toiletpaper': 578014, 'manhattan toiletpaper communism': 513140, 'we usually': 973624, 'usually rescue': 951147, 'food per': 315839, 'said well': 731577, 'well consumer': 978116, 'ha depleted': 370354, 'depleted those': 237418, 'those grocery': 892035, 'rescue off': 713624, 'we usually rescue': 973625, 'usually rescue about': 951148, 'of food per': 583748, 'food per year': 315840, 'per year from': 651086, 'grocery store across': 365174, 'store across our': 806067, 'across our county': 29420, 'he said well': 385382, 'said well consumer': 731578, 'well consumer demand': 978118, 'demand ha depleted': 235604, 'ha depleted those': 370355, 'depleted those grocery': 237419, 'those grocery store': 892036, 'store and now': 806309, 'there is almost': 878519, 'is almost nothing': 445504, 'left for to': 485472, 'for to rescue': 327232, 'to rescue off': 913326, 'rescue off the': 713625, 'off the loading': 594252, 'stare': 794124, 'enough it': 277495, 'buying paramedic': 150883, 'paramedic stare': 641399, 'stare at': 794125, 'at shelf': 100498, 'cleared by': 181409, 'by lobster': 153069, 'lobster after': 497643, 'after life': 35868, 'saving shift': 737958, 'is enough it': 447514, 'enough it time': 277496, 'panic buying paramedic': 637843, 'buying paramedic stare': 150884, 'paramedic stare at': 641400, 'stare at shelf': 794127, 'at shelf cleared': 100499, 'shelf cleared by': 756944, 'cleared by lobster': 181410, 'by lobster after': 153070, 'lobster after life': 497644, 'after life saving': 35869, 'life saving shift': 489019, 'iffat': 415631, 'cannot sincerely': 162099, 'sincerely thank': 771050, 'staff our': 792730, 'driver our': 259684, 'our teacher': 625089, 'teacher our': 835494, 'whilst living': 987647, 'nothing need': 573114, 'change writes': 172408, 'writes iffat': 1012842, 'iffat mirza': 415632, 'mirza read': 533958, 'we cannot sincerely': 971082, 'cannot sincerely thank': 162100, 'sincerely thank our': 771051, 'thank our staff': 841622, 'our staff our': 624880, 'staff our delivery': 792731, 'our delivery driver': 622725, 'delivery driver our': 233924, 'driver our teacher': 259685, 'our teacher our': 625092, 'teacher our supermarket': 835495, 'worker all whilst': 1006227, 'all whilst living': 45456, 'whilst living our': 987648, 'living our life': 496437, 'life if nothing': 488742, 'if nothing need': 414523, 'nothing need to': 573115, 'to change writes': 902621, 'change writes iffat': 172409, 'writes iffat mirza': 1012843, 'iffat mirza read': 415633, 'mirza read more': 533959, 'ridiculousness': 721657, 'see n95': 745465, 'n95 listing': 551182, 'listing totally': 494893, 'totally removed': 926386, 'today pricegouging': 920072, 'pricegouging ridiculousness': 677845, 'ridiculousness someone': 721662, 'someone sending': 784645, 'sending tp': 750112, 'tp free': 927818, 'free with': 332331, 'with rare': 1000397, 'rare baseball': 697077, 'baseball card': 111487, 'not actually': 568047, 'actually rare': 30930, 'rare for': 697083, 'only 140': 609977, '140 toiletpaper': 3558, 'to see n95': 914048, 'see n95 listing': 745466, 'n95 listing totally': 551183, 'listing totally removed': 494894, 'totally removed from': 926387, 'removed from today': 710865, 'from today pricegouging': 338081, 'today pricegouging ridiculousness': 920073, 'pricegouging ridiculousness someone': 677846, 'ridiculousness someone sending': 721663, 'someone sending tp': 784646, 'sending tp free': 750113, 'tp free with': 927819, 'free with rare': 332335, 'with rare baseball': 1000398, 'rare baseball card': 697078, 'baseball card that': 111489, 'card that not': 163667, 'that not actually': 845381, 'not actually rare': 568050, 'actually rare for': 30931, 'rare for only': 697084, 'for only 140': 324121, 'only 140 toiletpaper': 609978, 'guess inc': 367988, 'inc provides': 431305, 'update angeles': 946868, 'angeles business': 76365, 'wire guess': 996554, 'inc nyse': 431296, 'nyse ge': 578134, 'ge announced': 344921, 'announced today': 77102, 'after careful': 35456, 'careful consideration': 164393, 'customer store': 222881, 'associate and': 96842, 'guess inc provides': 367990, 'inc provides covid': 431306, 'business update angeles': 144590, 'update angeles business': 946869, 'angeles business wire': 76366, 'business wire guess': 144694, 'wire guess inc': 996555, 'guess inc nyse': 367989, 'inc nyse ge': 431298, 'nyse ge announced': 578135, 'ge announced today': 344922, 'announced today that': 77106, 'today that after': 920265, 'that after careful': 842515, 'after careful consideration': 35457, 'careful consideration for': 164394, 'consideration for it': 195249, 'for it customer': 322701, 'it customer store': 457454, 'customer store associate': 222882, 'store associate and': 806560, 'associate and community': 96843, 'and community it': 60173, 'community it will': 189945, 'it will temporarily': 462447, 'temporarily close all': 837447, 'yoga': 1016476, 'namastehome': 551597, 'so say': 778148, 'this someone': 890243, 'and doe': 61589, 'doe most': 251455, 'driving me': 259976, 'me crazy': 522620, 'crazy good': 215297, 'longer avoid': 501929, 'avoid people': 105215, 'my yoga': 550664, 'yoga ha': 1016483, 'been canceled': 120778, 'canceled namastehome': 160944, 'so say this': 778150, 'say this someone': 739373, 'this someone who': 890246, 'who work from': 990035, 'from home all': 335836, 'the time and': 869574, 'time and doe': 896267, 'and doe most': 61590, 'doe most of': 251456, 'most of my': 542552, 'of my shopping': 586816, 'online is driving': 608430, 'is driving me': 447385, 'driving me crazy': 259977, 'me crazy good': 522621, 'crazy good at': 215298, 'good at social': 356799, 'at social distancing': 100566, 'distancing but can': 247055, 'but can no': 145357, 'no longer avoid': 564636, 'longer avoid people': 501930, 'avoid people at': 105216, 'store and my': 806299, 'and my yoga': 67395, 'my yoga ha': 550666, 'yoga ha been': 1016484, 'ha been canceled': 369739, 'been canceled namastehome': 120781, 'roommate left': 726002, 'the safe': 866130, 'safe open': 729860, 'open isolation': 612336, 'isolation toiletpaper': 455468, 'roommate left the': 726003, 'left the safe': 485672, 'the safe open': 866133, 'safe open isolation': 729862, 'open isolation toiletpaper': 612337, 'isolation toiletpaper toiletpaperpanic': 455470, 'economic devastation': 267057, 'devastation the': 239617, 'global bidding': 351757, 'bidding war': 129524, 'which poorer': 986226, 'losing competition': 503544, 'and eu': 62298, 'scarce medicine': 740799, 'medicine ha': 526796, 'sharp rise': 755703, 'addition to death': 31733, 'to death and': 903973, 'death and economic': 229962, 'and economic devastation': 61899, 'economic devastation the': 267059, 'devastation the pandemic': 239618, 'pandemic is causing': 635761, 'causing global bidding': 168040, 'global bidding war': 351758, 'bidding war in': 129527, 'war in which': 966473, 'in which poorer': 430863, 'which poorer country': 986227, 'poorer country are': 664347, 'country are losing': 210470, 'are losing competition': 87896, 'losing competition between': 503545, 'competition between the': 191676, 'the and eu': 848697, 'and eu country': 62300, 'eu country for': 283219, 'country for scarce': 210670, 'for scarce medicine': 325376, 'scarce medicine ha': 740800, 'medicine ha led': 526797, 'to sharp rise': 914385, 'sharp rise in': 755704, 'teacher nurse and': 835488, 'nurse and supermarket': 577205, 'worker the unsung': 1007944, 'inhibited': 438461, 'made far': 507733, 'severe by': 753997, 'government mandated': 360342, 'mandated restriction': 513023, 'the disclosure': 853349, 'disclosure of': 244398, 'public which': 688474, 'which inhibited': 985967, 'inhibited effort': 438462, 'outbreak were almost': 628806, 'were almost certainly': 979294, 'almost certainly made': 46573, 'certainly made far': 170162, 'made far more': 507734, 'far more severe': 298852, 'more severe by': 540367, 'severe by government': 753998, 'by government mandated': 152710, 'government mandated restriction': 360344, 'mandated restriction on': 513024, 'restriction on the': 717350, 'on the disclosure': 604066, 'the disclosure of': 853350, 'disclosure of information': 244399, 'of information to': 585197, 'information to the': 438018, 'the public which': 864872, 'public which inhibited': 688475, 'which inhibited effort': 985968, 'inhibited effort to': 438463, 'dareme': 225939, 'follow if': 312425, 'think corona': 885191, 'corona is': 204022, 'but comment': 145432, 'and like': 66152, 'are overreacting': 88929, 'overreacting toiletpaper': 631423, 'toiletpaper poll': 922349, 'poll dareme': 663836, 'dareme thought': 225940, 'comment and follow': 188383, 'and follow if': 63013, 'follow if you': 312426, 'you think corona': 1021649, 'think corona is': 885192, 'corona is something': 204023, 'is something to': 452114, 'something to really': 785107, 'to really be': 912864, 'really be afraid': 702010, 'afraid of but': 34994, 'of but comment': 580983, 'but comment and': 145433, 'comment and like': 188385, 'and like if': 66154, 'think that people': 885604, 'people are overreacting': 647039, 'are overreacting toiletpaper': 88930, 'overreacting toiletpaper poll': 631424, 'toiletpaper poll dareme': 922350, 'poll dareme thought': 663837, 'uncivilized': 939808, 'isiolo': 454238, 'nfd': 561757, 'myrrh': 550808, 'khat': 473726, 'profession': 682381, 'gvn': 369267, 'forbidden': 328307, 'kuti': 477980, 'meru': 529206, 'their uncivilized': 875069, 'uncivilized way': 939813, 'of controlling': 581852, 'controlling covid': 202273, 'in isiolo': 424177, 'isiolo when': 454241, 'all nfd': 43630, 'nfd county': 561758, 'county have': 211400, 'banned myrrh': 110582, 'myrrh khat': 550809, 'khat in': 473727, 'their county': 872900, 'county but': 211334, 'doctor by': 250860, 'by profession': 153663, 'profession isiolo': 682388, 'isiolo gvn': 454239, 'gvn advised': 369268, 'advised his': 33625, 'his people': 397694, 'wash it': 967511, 'with hot': 998881, 'water the': 969198, 'the forbidden': 855677, 'forbidden and': 328308, 'and kuti': 65910, 'kuti period': 477981, 'the meru': 860506, 'meru community': 529207, 'their uncivilized way': 875070, 'uncivilized way of': 939814, 'way of controlling': 969748, 'of controlling covid': 581853, 'controlling covid 19': 202274, 'spread in isiolo': 790576, 'in isiolo when': 424178, 'isiolo when all': 454242, 'when all nfd': 983130, 'all nfd county': 43631, 'nfd county have': 561759, 'county have banned': 211401, 'have banned myrrh': 379405, 'banned myrrh khat': 110583, 'myrrh khat in': 550810, 'khat in their': 473728, 'in their county': 429730, 'their county but': 872901, 'county but the': 211335, 'but the doctor': 147333, 'the doctor by': 853459, 'doctor by profession': 250861, 'by profession isiolo': 153664, 'profession isiolo gvn': 682389, 'isiolo gvn advised': 454240, 'gvn advised his': 369269, 'advised his people': 33626, 'his people to': 397695, 'to wash it': 918348, 'wash it with': 967514, 'it with hot': 462474, 'with hot water': 998883, 'hot water the': 405069, 'water the forbidden': 969199, 'the forbidden and': 855678, 'forbidden and kuti': 328309, 'and kuti period': 65911, 'kuti period and': 477982, 'period and fear': 651709, 'and fear the': 62743, 'fear the meru': 301380, 'the meru community': 860507, 'debbiedowner': 230346, 'wa interesting': 962420, 'interesting hadn': 441558, 'last thursday': 480557, 'thursday every': 895364, 'time go': 896842, 'do post': 249998, 'post make': 666206, 'black white': 132150, 'white coz': 987838, 'coz it': 214535, 'it represents': 460718, 'represents how': 712961, 'how feel': 407856, 'feel dark': 302605, 'dark sad': 225977, 'sad scared': 729223, 'scared it': 740977, 'like end': 490167, 'day debbiedowner': 227509, 'that wa interesting': 847290, 'wa interesting hadn': 962421, 'interesting hadn been': 441559, 'hadn been out': 373846, 'been out of': 121622, 'my house since': 548742, 'house since last': 406560, 'since last thursday': 770694, 'last thursday every': 480558, 'thursday every time': 895365, 'every time go': 286307, 'time go out': 896846, 'go out do': 353944, 'out do post': 625968, 'do post make': 249999, 'post make it': 666207, 'make it black': 510024, 'it black white': 456886, 'black white coz': 132152, 'white coz it': 987839, 'coz it represents': 214536, 'it represents how': 460719, 'represents how feel': 712962, 'how feel dark': 407858, 'feel dark sad': 302606, 'dark sad scared': 225978, 'sad scared it': 729224, 'scared it really': 740978, 'it really feel': 460636, 'really feel like': 702195, 'feel like end': 302709, 'like end of': 490168, 'of day debbiedowner': 582377, 'hellerup': 389114, 'foodmarket': 318004, 'stop sanitiser': 804969, 'sanitiser hoarding': 733967, 'hoarding response': 399495, '19 hoarding': 7560, 'hoarding hellerup': 399354, 'hellerup foodmarket': 389115, 'foodmarket implemented': 318005, 'implemented price': 418472, 'stop consumer': 804584, 'many hand': 514113, 'to stop sanitiser': 915564, 'stop sanitiser hoarding': 804970, 'sanitiser hoarding response': 733972, 'hoarding response to': 399496, 'covid 19 hoarding': 213214, '19 hoarding hellerup': 7561, 'hoarding hellerup foodmarket': 399355, 'hellerup foodmarket implemented': 389116, 'foodmarket implemented price': 318006, 'implemented price trick': 418474, 'to stop consumer': 915511, 'stop consumer from': 804585, 'consumer from buying': 197553, 'from buying too': 334782, 'buying too many': 151255, 'too many hand': 924888, 'many hand sanitisers': 514114, 'energy education': 276442, 'education foundation': 268825, 'foundation is': 330492, 'is supporting': 452473, 'supporting statewide': 827197, 'statewide organization': 796275, 'organization with': 619448, 'with 500': 997037, '00 contribution': 151, 'help enhance': 389637, 'enhance critical': 277076, 'for michigan': 323422, 'michigan child': 530325, 'child vulnerable': 176249, 'vulnerable senior': 961154, 'senior those': 750422, 'the consumer energy': 851532, 'consumer energy education': 197362, 'energy education foundation': 276443, 'education foundation is': 268826, 'foundation is supporting': 330495, 'is supporting statewide': 452477, 'supporting statewide organization': 827198, 'statewide organization with': 796276, 'organization with 500': 619449, 'with 500 00': 997038, '500 00 contribution': 19930, '00 contribution to': 152, 'to help enhance': 907503, 'help enhance critical': 389638, 'enhance critical service': 277077, 'critical service for': 218655, 'service for michigan': 752386, 'for michigan child': 323423, 'michigan child vulnerable': 530326, 'child vulnerable senior': 176250, 'vulnerable senior those': 961157, 'senior those who': 750423, 'those who may': 892655, 'who may need': 989275, 'may need assistance': 521350, 'need assistance in': 554486, 'kpi6': 477579, 'the lowering': 859801, 'lowering of': 506117, 'global but': 351763, 'you remember': 1020898, 'remember what': 710405, 'happened just': 377258, 'ago take': 38484, 'look together': 502643, 'the kpi6': 858856, 'kpi6 report': 477582, 'report in': 712033, 'in collaboration': 421543, 'collaboration with': 185938, '19 emergency ha': 6757, 'emergency ha good': 272737, 'ha good news': 370739, 'good news the': 357460, 'news the lowering': 560869, 'the lowering of': 859803, 'lowering of the': 506118, 'the global but': 856289, 'global but do': 351764, 'do you remember': 250672, 'you remember what': 1020902, 'remember what happened': 710406, 'what happened just': 981545, 'happened just few': 377259, 'just few month': 468707, 'month ago take': 537543, 'ago take look': 38485, 'take look together': 832298, 'look together with': 502644, 'with the kpi6': 1001359, 'the kpi6 report': 858857, 'kpi6 report in': 477583, 'report in collaboration': 712034, 'in collaboration with': 421544, 'recognized': 704660, 'now health': 574910, 'being recognized': 125646, 'recognized for': 704661, 'pandemic subsides': 636584, 'subsides wednesdaythoughts': 815969, 'right now health': 722076, 'now health care': 574911, 'care worker truck': 164311, 'others are being': 621267, 'are being recognized': 84904, 'being recognized for': 125647, 'recognized for what': 704662, 'they do hope': 881962, 'do hope that': 249408, 'hope that doesn': 403642, 'that doesn end': 843583, 'doesn end when': 251768, 'end when the': 276071, 'the pandemic subsides': 863113, 'pandemic subsides wednesdaythoughts': 636586, 'supermarket war': 823728, 'new supermarket war': 559697, 'for homeowner': 322355, 'homeowner what': 402892, 'rent council': 711066, 'and bill': 58970, 'three month mortgage': 893999, 'month mortgage holiday': 537870, 'mortgage holiday for': 541906, 'holiday for homeowner': 400300, 'for homeowner what': 322356, 'homeowner what about': 402893, 'about rent council': 26081, 'rent council tax': 711067, 'council tax and': 210030, 'tax and bill': 834924, 'csgpolls': 220044, 'been your': 122412, 'with finding': 998442, 'finding essential': 307462, 'store csgpolls': 807232, 'csgpolls grocery': 220045, 'ha been your': 369991, 'been your experience': 122413, 'your experience with': 1023721, 'experience with finding': 291544, 'with finding essential': 998443, 'finding essential at': 307463, 'the store csgpolls': 868004, 'store csgpolls grocery': 807233, 'csgpolls grocery retail': 220046, 'flush': 311550, 'article get': 94340, 'shortage talk': 765239, 'about royal': 26116, 'royal flush': 726621, 'flush stayathome': 311553, 'this article get': 886416, 'article get to': 94341, 'of the toiletpaper': 591548, 'toiletpaper shortage talk': 922473, 'shortage talk about': 765240, 'talk about royal': 833753, 'about royal flush': 26117, 'royal flush stayathome': 726622, 'classical': 180339, 'man you': 512369, 'pattern this': 644511, 'crisis happened': 217454, 'happened due': 377235, 'drop classical': 260157, 'classical bullshit': 180340, 'on man you': 601980, 'man you have': 512370, 'you have shown': 1019112, 'have shown chart': 382535, 'chart pattern this': 173848, 'pattern this is': 644512, 'the crisis happened': 852388, 'crisis happened due': 217455, 'happened due to': 377236, '19 and oil': 5072, 'price drop classical': 673565, 'drop classical bullshit': 260158, 'classical bullshit tech': 180341, 'coronacast': 204457, 'easter there': 265510, 'there few': 878378, 'avoid getting': 105122, 'getting 19': 348819, 'about find': 25236, 'on coronacast': 600113, 'the few thing': 855125, 'few thing we': 304103, 'thing we re': 884967, 'do with social': 250568, 'distancing is go': 247244, 'supermarket so if': 822731, 'have to visit': 383333, 'supermarket this easter': 823310, 'this easter there': 887337, 'easter there few': 265511, 'there few tip': 878380, 'to avoid getting': 900902, 'avoid getting 19': 105123, 'getting 19 when': 348820, '19 when you': 12026, 're out and': 699220, 'and about find': 57545, 'about find out': 25237, 'find out on': 307147, 'out on coronacast': 626899, 'passover': 643428, 'yearly passover': 1015140, 'passover food': 643436, 'distribution outdoor': 248190, 'outdoor with': 628909, 'given out': 351068, 'crisis bigger': 217131, 'bigger thanks': 130177, 'yearly passover food': 1015141, 'passover food distribution': 643437, 'food distribution outdoor': 314234, 'distribution outdoor with': 248191, 'outdoor with social': 628910, 'if we would': 415327, 'we would ve': 973980, 'would ve not': 1012372, 've not given': 953398, 'not given out': 569655, 'given out the': 351070, 'out the food': 627367, 'food we would': 317538, 'would ve only': 1012373, 've only made': 953420, 'only made the': 610747, 'made the crisis': 507990, 'the crisis bigger': 852350, 'crisis bigger thanks': 217132, 'bigger thanks to': 130178, 'to our esteemed': 911177, 'bstrong': 141459, 'getting killed': 349083, 'when sending': 983988, 'sending this': 750106, 'this ppe': 889684, 'ppe nationwide': 668010, 'nationwide asking': 552709, 'asking you': 96113, 'you publicly': 1020489, 'publicly for': 688583, 'for rate': 324960, 'or reduction': 616818, 'reduction you': 706404, 'it tax': 461447, 'tax write': 835129, 'write off': 1012780, 'work everyone': 1005113, 'everyone chime': 286779, 'please bstrong': 659738, 'getting killed by': 349084, 'killed by price': 474571, 'by price when': 153654, 'price when sending': 677490, 'when sending this': 983989, 'sending this ppe': 750108, 'this ppe nationwide': 889685, 'ppe nationwide asking': 668011, 'nationwide asking you': 552710, 'asking you publicly': 96114, 'you publicly for': 1020490, 'publicly for rate': 688584, 'for rate or': 324961, 'rate or reduction': 697334, 'or reduction you': 616819, 'reduction you can': 706405, 'can use it': 160096, 'use it tax': 949315, 'it tax write': 461449, 'tax write off': 835130, 'write off bc': 1012781, 'off bc it': 593680, 'bc it for': 113247, 'it for relief': 458089, 'for relief work': 325097, 'relief work everyone': 709504, 'work everyone chime': 1005114, 'everyone chime in': 286780, 'chime in please': 176429, 'in please bstrong': 426799, 'mean such': 524665, 'such this': 816816, 'this shopkeeper': 890107, 'do you mean': 250647, 'you mean such': 1019826, 'mean such this': 524666, 'such this shopkeeper': 816818, 'this shopkeeper in': 890108, 'extortionate price people': 293399, 'price people trying': 675852, 'to profit out': 912235, 'out of should': 626828, 'outpacing': 629212, 'smoff': 775850, 'see gold': 745155, 'gold safe': 355998, 'safe bet': 729520, 'bet for': 128066, 'for investor': 322640, 'investor amid': 444100, 'outbreak having': 628291, 'having gained': 384089, 'gained this': 342858, 'year gold': 1014593, 'are far': 86484, 'far outpacing': 298881, 'outpacing the': 629215, '500 decline': 19973, 'decline do': 231321, 'think gold': 885263, 'to smo': 914773, 'smo smoff': 775849, 'see gold safe': 745156, 'gold safe bet': 355999, 'safe bet for': 729521, 'bet for investor': 128067, 'for investor amid': 322641, 'investor amid the': 444101, 'coronavirus outbreak having': 206390, 'outbreak having gained': 628292, 'having gained this': 384090, 'gained this year': 342859, 'this year gold': 891578, 'year gold price': 1014594, 'price are far': 672666, 'are far outpacing': 86488, 'far outpacing the': 298882, 'outpacing the 500': 629216, 'the 500 decline': 848141, '500 decline do': 19974, 'decline do you': 231322, 'you think gold': 1021657, 'think gold price': 885264, 'gold price will': 355982, 'price will continue': 677555, 'to be immune': 901326, 'immune to smo': 417369, 'to smo smoff': 914774, 'our apr': 622100, 'apr newsletter': 83369, 'newsletter featuring': 561025, 'featuring food': 301586, 'rising covid': 723190, '19 street': 10907, 'street selling': 813097, 'selling opportunity': 749383, 'read our apr': 700498, 'our apr newsletter': 622101, 'apr newsletter featuring': 83370, 'newsletter featuring food': 561026, 'featuring food price': 301587, 'are rising covid': 89710, 'rising covid 19': 723191, 'covid 19 street': 213877, '19 street selling': 10908, 'street selling opportunity': 813098, 'amp mary': 54112, 'mary need': 518167, 'implement universal': 418442, 'universal pas': 942371, 'pas system': 643147, 'and refund': 70137, 'refund student': 706954, 'and board': 59035, 'board no': 133654, 'no student': 565599, 'student or': 814747, 'about grade': 25319, 'grade or': 361655, 'or putting': 616752, 'putting food': 691119, 'pandemic tell': 636629, 'administration here': 32479, 'william amp mary': 995424, 'amp mary need': 54113, 'mary need to': 518168, 'to implement universal': 908182, 'implement universal pas': 418443, 'universal pas system': 942372, 'pas system and': 643148, 'system and refund': 831104, 'and refund student': 70139, 'refund student for': 706955, 'student for room': 814688, 'for room and': 325256, 'room and board': 725873, 'and board no': 59036, 'board no student': 133655, 'no student or': 565600, 'student or employee': 814748, 'or employee should': 615160, 'employee should have': 274203, 'worry about grade': 1010639, 'about grade or': 25320, 'grade or putting': 361656, 'or putting food': 616753, 'putting food on': 691120, 'table during pandemic': 831465, 'during pandemic tell': 262896, 'pandemic tell the': 636630, 'tell the administration': 837081, 'the administration here': 848356, 'led some': 485261, 'food won': 317657, 'be eaten': 114634, 'ha led some': 371124, 'led some people': 485262, 'some people to': 783541, 'people to hoard': 649909, 'store and lot': 806287, 'that food won': 843921, 'food won be': 317658, 'won be eaten': 1003739, 'madhouse': 508104, 'happens stay': 377499, 'food many': 315383, 'cannot order': 162021, 'so especially': 776957, 'especially elderly': 280470, 'not madhouse': 570488, 'madhouse full': 508105, 'crowd like': 219197, 'like another': 489803, 'another store': 77870, 'whatever happens stay': 982761, 'happens stay open': 377500, 'stay open because': 797152, 'buy food many': 148661, 'food many people': 315384, 'people cannot order': 647435, 'cannot order online': 162022, 'order online for': 618468, 'online for delivery': 608224, 'delivery or do': 234281, 'do so especially': 250092, 'so especially elderly': 776958, 'especially elderly people': 280471, 'elderly people like': 270828, 'people like shopping': 648649, 'like shopping at': 491179, 'shopping at your': 762119, 'your store because': 1025962, 'store because it': 806680, 'because it not': 119195, 'it not madhouse': 459893, 'not madhouse full': 570489, 'madhouse full of': 508106, 'full of crowd': 340712, 'of crowd like': 582222, 'crowd like another': 219198, 'like another store': 489804, 'counsel': 210065, 'will destroy': 993164, 'than virus': 841408, 'virus sc': 958724, 'sc tell': 739858, 'to counsel': 903618, 'counsel migrant': 210070, 'worker ensure': 1006851, 'panic will destroy': 638791, 'will destroy more': 993167, 'destroy more life': 239019, 'life than virus': 489088, 'than virus sc': 841409, 'virus sc tell': 958725, 'sc tell govt': 739859, 'tell govt to': 836961, 'govt to counsel': 361308, 'to counsel migrant': 903619, 'counsel migrant worker': 210071, 'migrant worker ensure': 531229, 'worker ensure food': 1006852, 'stayhomemn': 798311, 'saturday wa': 737076, 'store pushing': 809708, 'pushing my': 690432, 'cart down': 165287, 'down row': 257159, 'row of': 726576, 'of refrigerator': 588874, 'dairy section': 225041, 'grab gallon': 361487, 'milk slowthespread': 531816, 'slowthespread socialdistancing': 774652, 'stayhome stayhomemn': 798151, 'last saturday wa': 480484, 'saturday wa in': 737078, 'grocery store pushing': 365691, 'store pushing my': 809709, 'pushing my cart': 690433, 'my cart down': 547624, 'cart down row': 165289, 'down row of': 257160, 'row of refrigerator': 726579, 'of refrigerator in': 588875, 'refrigerator in the': 706816, 'the dairy section': 852796, 'dairy section on': 225042, 'section on my': 744033, 'way to grab': 970033, 'to grab gallon': 906963, 'grab gallon of': 361488, 'gallon of chocolate': 343039, 'of chocolate milk': 581396, 'chocolate milk slowthespread': 177690, 'milk slowthespread socialdistancing': 531817, 'slowthespread socialdistancing stayhome': 774653, 'socialdistancing stayhome stayhomemn': 780738, 'cause related': 167716, '19 bb': 5311, 'bb wise': 113057, 'wise giving': 996683, 'giving alliance': 351233, 'alliance ha': 45838, 'ha new': 371323, 'donating during': 254446, 'time bb': 896361, 'bb donation': 113042, 'for consumer who': 320303, 'consumer who are': 199517, 'who are looking': 988170, 'looking to donate': 503027, 'donate to cause': 254250, 'to cause related': 902541, 'cause related to': 167717, 'covid 19 bb': 212682, '19 bb wise': 5312, 'bb wise giving': 113058, 'wise giving alliance': 996684, 'giving alliance ha': 351234, 'alliance ha new': 45839, 'ha new consumer': 371324, 'new consumer tip': 558531, 'consumer tip for': 199296, 'tip for donating': 898763, 'for donating during': 320816, 'donating during these': 254447, 'trying time bb': 934742, 'time bb donation': 896362, 'extra safety': 293628, 'safety precaution': 730682, 'precaution thank': 669367, 'you caring': 1017899, 'caring taking': 164729, 'extra step': 293652, 'safe hopefully': 729754, 'hopefully you': 403907, 'can share': 159587, 'these procedure': 880551, 'procedure with': 679831, 'out how our': 626331, 'how our local': 408462, 'store is taking': 808538, 'taking extra safety': 833357, 'extra safety precaution': 293629, 'safety precaution thank': 730688, 'precaution thank you': 669368, 'thank you caring': 841705, 'you caring taking': 1017900, 'caring taking the': 164730, 'taking the extra': 833588, 'the extra step': 854768, 'extra step keep': 293653, 'step keep your': 799583, 'keep your customer': 472259, 'your customer safe': 1023421, 'customer safe hopefully': 222786, 'safe hopefully you': 729755, 'hopefully you can': 403908, 'you can share': 1017780, 'can share these': 159589, 'share these procedure': 755276, 'these procedure with': 880552, 'procedure with other': 679832, 'with other store': 999963, 'oversight': 631514, 'serbia': 751182, 'russian federal': 728640, 'federal service': 302052, 'the oversight': 862789, 'oversight of': 631521, 'welfare ha': 977955, 'ha handed': 370813, 'handed over': 376081, 'test system': 839186, 'hold over': 399991, '00 test': 509, '13 state': 3263, 'state delivery': 795514, 'to egypt': 904954, 'egypt serbia': 270119, 'serbia and': 751183, 'and venezuela': 74913, 'venezuela is': 954446, 'is planned': 450887, 'the russian federal': 866098, 'russian federal service': 728641, 'federal service for': 302053, 'for the oversight': 326604, 'the oversight of': 862790, 'oversight of consumer': 631522, 'protection and welfare': 685328, 'and welfare ha': 75395, 'welfare ha handed': 977956, 'ha handed over': 370814, 'handed over the': 376082, 'over the test': 630776, 'the test system': 869320, 'test system that': 839187, 'system that allow': 831332, 'that allow to': 842588, 'allow to hold': 46101, 'to hold over': 907913, 'hold over 100': 399992, '100 00 test': 1797, '00 test for': 510, '19 to 13': 11412, 'to 13 state': 899488, '13 state delivery': 3264, 'state delivery to': 795515, 'delivery to egypt': 234657, 'to egypt serbia': 904955, 'egypt serbia and': 270120, 'serbia and venezuela': 751184, 'and venezuela is': 74914, 'venezuela is planned': 954448, 'start they': 794560, 'put stop': 690835, 'hoarding on': 399459, 'one stophoarding': 607118, 'supermarket and high': 819000, 'and high street': 64560, 'street store failed': 813127, 'store failed at': 807695, 'failed at the': 296129, 'the start they': 867736, 'start they should': 794562, 'they should ve': 883387, 'should ve put': 766626, 've put stop': 953461, 'put stop to': 690837, 'stop to the': 805226, 'to the hoarding': 916779, 'the hoarding on': 857417, 'hoarding on day': 399460, 'day one stophoarding': 228156, 'one stophoarding panicbuyinguk': 607119, '2212168': 15271, 'say stop': 739180, '19 order': 9034, 'our advanced': 622026, 'advanced formula': 32931, 'formula of': 329714, 'and block': 59013, 'block the': 132799, 'at 2212168': 97533, '2212168 and': 15272, 'say stop to': 739182, 'stop to covid': 805214, 'covid 19 order': 213526, '19 order our': 9035, 'order our advanced': 618496, 'our advanced formula': 622027, 'advanced formula of': 32932, 'formula of hand': 329715, 'hand sanitizer now': 375506, 'sanitizer now and': 735432, 'now and block': 574029, 'and block the': 59015, 'block the way': 132800, 'way to call': 969994, 'to call at': 902376, 'call at 2212168': 155778, 'at 2212168 and': 97534, '2212168 and we': 15273, 'shall be at': 754516, 'be at your': 113741, 'of question': 588684, 'day why': 228761, '19 sometimes': 10701, 'sometimes so': 785230, 'so severe': 778184, 'severe in': 754026, 'in young': 431051, 'young adult': 1022557, 'best of question': 127797, 'of question of': 588686, 'question of the': 693668, 'the day why': 852926, 'day why is': 228762, 'why is covid': 991098, 'covid 19 sometimes': 213832, '19 sometimes so': 10702, 'sometimes so severe': 785232, 'so severe in': 778185, 'severe in young': 754027, 'in young adult': 431052, 'slowing at': 774523, 'at significant': 100526, 'significant rate': 769505, 'rate he': 697243, 'so concerned': 776776, 'estate agent': 282087, 'agent that': 38193, 'he offer': 385268, 'offer them': 594833, 'them 75': 875305, '75 discount': 22127, 'on fee': 600773, 'month coronacrisis': 537657, 'warns that the': 967294, 'housing market is': 407106, 'market is slowing': 516642, 'is slowing at': 451974, 'slowing at significant': 774524, 'at significant rate': 100527, 'significant rate he': 769506, 'rate he is': 697244, 'he is so': 385146, 'is so concerned': 451997, 'so concerned about': 776777, 'about the problem': 26490, 'problem of real': 679631, 'of real estate': 588786, 'real estate agent': 701133, 'estate agent that': 282089, 'agent that he': 38194, 'that he offer': 844265, 'he offer them': 385269, 'offer them 75': 594834, 'them 75 discount': 875306, '75 discount on': 22128, 'discount on fee': 244509, 'on fee for': 600775, 'fee for four': 302174, 'for four month': 321688, 'four month coronacrisis': 330631, 'cohort': 185595, 'halla': 374358, 'hallafoodfight': 374361, 'foodismedicine': 317991, 'food cohort': 313959, 'cohort 08': 185596, '08 company': 1078, 'company halla': 190723, 'halla writes': 374359, 'about functional': 25288, 'functional online': 341304, 'platform and': 658937, 'experience easy': 291351, 'and personalized': 68933, 'personalized hallafoodfight': 653019, 'hallafoodfight socialdistancing': 374362, 'socialdistancing foodismedicine': 780369, 'food cohort 08': 313960, 'cohort 08 company': 185597, '08 company halla': 1079, 'company halla writes': 190724, 'halla writes about': 374360, 'writes about functional': 1012826, 'about functional online': 25289, 'functional online grocery': 341305, 'grocery platform and': 364863, 'platform and to': 658941, 'and to how': 74176, 'to how to': 908027, 'your shopping experience': 1025781, 'shopping experience easy': 762611, 'experience easy and': 291352, 'easy and personalized': 265652, 'and personalized hallafoodfight': 68934, 'personalized hallafoodfight socialdistancing': 653020, 'hallafoodfight socialdistancing foodismedicine': 374363, 'idiot at the': 413461, 'supermarket be like': 819321, 'bulletin': 142435, 'business advice': 143239, 'advice we': 33550, 're issuing': 698932, 'issuing regular': 456133, 'regular update': 707891, 'support member': 826647, 'new information': 558933, 'guidance see': 368277, 'see today': 745971, 'today bulletin': 919331, '19 business advice': 5477, 'business advice we': 143240, 'advice we re': 33552, 'we re issuing': 972901, 're issuing regular': 698934, 'issuing regular update': 456134, 'regular update to': 707893, 'update to support': 947272, 'to support member': 915945, 'support member with': 826648, 'member with new': 528253, 'with new information': 999706, 'new information and': 558934, 'and guidance see': 64042, 'guidance see today': 368278, 'see today bulletin': 745972, 'thatshowweroll': 847833, 'epicfail': 279318, 'three arrested': 893875, 'after police': 36047, 'stolen toiletpaper': 804302, 'in van': 430526, 'van thatshowweroll': 952308, 'thatshowweroll crime': 847834, 'crime epicfail': 216778, 'three arrested after': 893876, 'arrested after police': 93807, 'after police find': 36048, 'find stolen toiletpaper': 307252, 'stolen toiletpaper paper': 804303, 'toiletpaper paper in': 922316, 'paper in van': 640335, 'in van thatshowweroll': 430529, 'van thatshowweroll crime': 952309, 'thatshowweroll crime epicfail': 847835, 'is reported': 451434, 'spreading widely': 791090, 'widely via': 991794, 'pump please': 689081, 'precaution by': 669300, 'operate pump': 613012, 'pump and': 689022, 'when doing': 983356, 'doing transaction': 252809, 'transaction then': 929472, 'then use': 877702, 'or wash': 617727, 'hand using': 375903, 'using paper': 950586, 'towel to': 927393, 'to dry': 904789, 'dry them': 261305, 'them soon': 876312, 'can after': 157416, 'is reported to': 451436, 'reported to be': 712557, 'be spreading widely': 117338, 'spreading widely via': 791092, 'widely via the': 991795, 'via the use': 956313, 'use of petrol': 949421, 'of petrol pump': 588080, 'petrol pump please': 653783, 'pump please be': 689082, 'be aware and': 113774, 'aware and take': 105607, 'and take precaution': 72972, 'take precaution by': 832514, 'precaution by wearing': 669302, 'by wearing glove': 154710, 'wearing glove to': 974642, 'glove to operate': 352973, 'to operate pump': 911023, 'operate pump and': 613013, 'pump and when': 689025, 'and when doing': 75510, 'when doing transaction': 983359, 'doing transaction then': 252810, 'transaction then use': 929473, 'then use hand': 877703, 'sanitizer or wash': 735496, 'or wash your': 617729, 'your hand using': 1024238, 'hand using paper': 375905, 'using paper towel': 950587, 'paper towel to': 641017, 'towel to dry': 927394, 'to dry them': 904792, 'dry them soon': 261306, 'them soon you': 876313, 'soon you can': 785911, 'you can after': 1017616, 'setback': 753598, 'eswatini': 282339, 'biggest setback': 130323, 'setback is': 753599, 'facing with': 295662, 'with regard': 1000436, 'regard to': 707150, 'of awareness': 580482, 'awareness we': 105744, 'upon eswatini': 947633, 'eswatini to': 282340, 'down data': 256676, 'access information': 28148, 'the biggest setback': 849678, 'biggest setback is': 130324, 'setback is facing': 753600, 'is facing with': 447706, 'facing with regard': 295663, 'with regard to': 1000437, 'regard to 19': 707151, 'to 19 is': 899542, 'is the lack': 452841, 'lack of awareness': 478606, 'of awareness we': 580485, 'awareness we call': 105745, 'we call upon': 970889, 'call upon eswatini': 156209, 'upon eswatini to': 947634, 'eswatini to cut': 282341, 'cut down data': 223307, 'down data price': 256677, 'data price so': 226362, 'citizen of our': 178937, 'of our country': 587442, 'our country can': 622583, 'country can be': 210536, 'can be able': 157572, 'to access information': 899956, 'access information about': 28149, 'information about this': 437716, 'about this virus': 26670, 'pharmacy employee': 654292, 'driver trucker': 259816, 'trucker stocker': 932952, 'stocker restaurant': 803516, 'staff amp': 792112, 'amp more': 54145, 'shining light': 758624, 'is reminder': 451422, 'keep pushing': 471838, 'pushing for': 690418, 'for living': 323027, 'wage paid': 963935, 'leave health': 484812, 'insurance amp': 440670, 'store pharmacy employee': 809536, 'pharmacy employee delivery': 654293, 'delivery driver trucker': 233949, 'driver trucker stocker': 259818, 'trucker stocker restaurant': 932953, 'stocker restaurant staff': 803517, 'restaurant staff amp': 716707, 'staff amp more': 792117, 'amp more is': 54150, 'more is shining': 539623, 'is shining light': 451858, 'shining light on': 758625, 'light on what': 489579, 'on what it': 605229, 'it mean to': 459580, 'mean to be': 524728, 'be an essential': 113601, 'worker and is': 1006308, 'and is reminder': 65427, 'is reminder that': 451423, 'reminder that we': 710595, 'must keep pushing': 546745, 'keep pushing for': 471839, 'pushing for living': 690421, 'for living wage': 323028, 'living wage paid': 496480, 'wage paid sick': 963937, 'sick leave health': 768496, 'leave health insurance': 484813, 'health insurance amp': 386541, 'insurance amp more': 440671, 'wasted scramble': 968258, 'scramble supply': 742540, 'chain farmer': 170697, 'seeing produce': 746430, 'produce rot': 680413, 'rot in': 726163, 'in field': 422868, 'and dairy': 60918, 'dairy wash': 225057, 'wash down': 967452, 'down drain': 256698, 'drain they': 258220, 'find area': 306814, 'prevent closure': 671595, 'of food wasted': 583812, 'food wasted scramble': 317498, 'wasted scramble supply': 968259, 'scramble supply chain': 742541, 'supply chain farmer': 824957, 'chain farmer are': 170698, 'farmer are seeing': 299293, 'are seeing produce': 89910, 'seeing produce rot': 746431, 'produce rot in': 680414, 'rot in field': 726164, 'in field and': 422870, 'field and dairy': 304453, 'and dairy wash': 60930, 'dairy wash down': 225058, 'wash down drain': 967453, 'down drain they': 256699, 'drain they rush': 258221, 'to find area': 905883, 'find area of': 306815, 'area of demand': 92131, 'demand and prevent': 234991, 'and prevent closure': 69407, 'farmlife': 299672, 'local not': 498215, 'weekend why': 977454, 'try local': 934505, 'farm shop': 299171, 'or farm': 615272, 'gate stall': 344355, 'stall many': 793371, 'many have': 514119, 'of locally': 585938, 'locally sourced': 498780, 'sourced essential': 786593, 'time buylocal': 896428, 'buylocal supportlocal': 151436, 'supportlocal farmlife': 827261, 'buy local not': 148916, 'local not able': 498216, 'get your supply': 348740, 'your supply from': 1026074, 'supply from your': 825296, 'from your supermarket': 338499, 'your supermarket this': 1026064, 'supermarket this weekend': 823322, 'this weekend why': 891326, 'weekend why not': 977455, 'not try local': 572292, 'try local farm': 934506, 'local farm shop': 497941, 'farm shop or': 299175, 'shop or farm': 760613, 'or farm gate': 615273, 'farm gate stall': 299127, 'gate stall many': 344356, 'stall many have': 793372, 'many have lot': 514125, 'lot of locally': 504220, 'of locally sourced': 585942, 'locally sourced essential': 498781, 'sourced essential just': 786594, 'essential just what': 281256, 'may need at': 521351, 'need at this': 554498, 'at this challenging': 101225, 'challenging time buylocal': 171631, 'time buylocal supportlocal': 896429, 'buylocal supportlocal farmlife': 151437, 'weight loss': 977700, 'loss side': 503778, 'effect for': 269000, 'like might': 490772, 'quarentinelife will': 693219, 'will recipe': 994597, 'recipe definitely': 704453, 'be laugh': 115658, 'laugh what': 481776, 'well never have': 978416, 'never have the': 558054, 'have the weight': 383042, 'the weight loss': 871353, 'weight loss side': 977703, 'loss side effect': 503779, 'side effect for': 768807, 'effect for anything': 269002, 'look like might': 502496, 'like might now': 490773, 'diet quarentinelife will': 241749, 'quarentinelife will recipe': 693220, 'will recipe definitely': 994598, 'recipe definitely be': 704454, 'definitely be laugh': 232309, 'be laugh what': 115659, 'laugh what else': 481777, 'hotbed': 405082, 'sigh': 769019, 'limitation': 492578, 'me over': 523312, 'of gathering': 584056, 'gathering restriction': 344503, 'another hour': 77657, 'hour plus': 405866, 'plus to': 661703, 'leave life': 484858, 'nyc pandemic': 578029, 'pandemic hotbed': 635655, 'hotbed sigh': 405087, 'sigh but': 769020, 'still grateful': 800608, 'grateful have': 362283, 'food without': 317650, 'without severe': 1002908, 'severe limitation': 754034, 'took me over': 925288, 'me over an': 523313, 'in to my': 430124, 'because of gathering': 119345, 'of gathering restriction': 584059, 'gathering restriction and': 344504, 'restriction and another': 717205, 'and another hour': 58164, 'another hour plus': 77659, 'hour plus to': 405867, 'plus to shop': 661704, 'and leave life': 66054, 'leave life in': 484859, 'in the nyc': 429409, 'the nyc pandemic': 862004, 'nyc pandemic hotbed': 578030, 'pandemic hotbed sigh': 635656, 'hotbed sigh but': 405088, 'sigh but am': 769021, 'but am still': 145166, 'am still grateful': 50433, 'still grateful have': 800609, 'grateful have my': 362284, 'have my job': 381545, 'my job and': 548904, 'job and can': 465618, 'buy food without': 148692, 'food without severe': 317654, 'without severe limitation': 1002909, 'mourn': 543461, 'gravesides': 362437, 'numb': 576795, 'heartbreaking story': 388412, 'of young': 593436, 'young old': 1022630, 'old doctor': 598229, 'nurse bus': 577221, 'staff getting': 792489, 'getting ill': 349049, 'ill dying': 416116, 'dying loved': 263845, 'one not': 606721, 'to mourn': 910288, 'mourn at': 543465, 'at gravesides': 98794, 'gravesides it': 362438, 'be upset': 117903, 'upset it': 947807, 'have cry': 380163, 'cry it': 219885, 'feel numb': 302789, 'numb just': 576796, 'up stayhomesavelives': 946064, 'all the heartbreaking': 44780, 'the heartbreaking story': 857211, 'heartbreaking story of': 388413, 'story of young': 812079, 'of young old': 593438, 'young old doctor': 1022631, 'old doctor nurse': 598230, 'doctor nurse bus': 251002, 'nurse bus driver': 577222, 'supermarket staff getting': 822851, 'staff getting ill': 792490, 'getting ill dying': 349050, 'ill dying loved': 416117, 'dying loved one': 263846, 'loved one not': 504918, 'one not able': 606722, 'able to mourn': 24508, 'to mourn at': 910290, 'mourn at gravesides': 543466, 'at gravesides it': 98795, 'gravesides it ok': 362439, 'it ok to': 460020, 'ok to be': 597916, 'to be upset': 901615, 'be upset it': 117904, 'upset it ok': 947808, 'ok to have': 597922, 'to have cry': 907223, 'have cry it': 380164, 'cry it ok': 219886, 'ok to feel': 597920, 'to feel numb': 905752, 'feel numb just': 302790, 'numb just do': 576797, 'not give up': 569647, 'give up stayhomesavelives': 350819, 'stone what': 804352, 'what no': 981939, 'no mention': 564763, 'mention that': 528789, 'with conservative': 997737, 'conservative help': 194907, 'business also': 143264, 'steal the': 799202, 'gst consumer': 367550, 'paid when': 634181, 'they made': 882637, 'purchase in': 689501, 'so car': 776742, 'car dealer': 163054, 'dealer who': 229629, 'sold 100': 781612, '00 vehicle': 580, 'vehicle would': 954301, 'get gst': 347174, 'gst or': 367559, 'or 50': 614205, 'stone what no': 804353, 'what no mention': 981940, 'no mention that': 564765, 'mention that with': 528793, 'that with conservative': 847627, 'with conservative help': 997738, 'conservative help small': 194908, 'small business also': 774834, 'business also want': 143265, 'want to steal': 966130, 'to steal the': 915367, 'steal the gst': 799203, 'the gst consumer': 856892, 'gst consumer have': 367551, 'consumer have paid': 197712, 'have paid when': 381872, 'paid when they': 634182, 'when they made': 984270, 'they made purchase': 882641, 'made purchase in': 507928, 'purchase in past': 689504, 'in past month': 426544, 'past month so': 643576, 'month so car': 538008, 'so car dealer': 776743, 'car dealer who': 163056, 'dealer who sold': 229630, 'who sold 100': 989638, 'sold 100 00': 781613, '100 00 vehicle': 1801, '00 vehicle would': 581, 'vehicle would get': 954302, 'would get gst': 1011830, 'get gst or': 347175, 'gst or 50': 367560, 'woman came': 1003429, 'with cursed': 997891, 'cursed bird': 221759, 'bird live': 131338, 'live bird': 495747, 'bird what': 131354, 'worst time': 1011289, 'pet to': 653473, 'worker coronacrisis': 1006700, 'woman came into': 1003430, 'came into my': 157023, 'into my store': 442790, 'my store with': 550233, 'store with cursed': 811372, 'with cursed bird': 997892, 'cursed bird live': 221760, 'bird live bird': 131339, 'live bird what': 495748, 'bird what wrong': 131355, 'with people this': 1000176, 'the worst time': 872078, 'worst time to': 1011290, 'take your pet': 832827, 'your pet to': 1025278, 'pet to the': 653474, 'retail worker coronacrisis': 718878, 'our master': 623875, 'master plan': 520205, 'next wave': 561658, 'of widely': 593159, 'testing accurate': 839418, 'accurate reporting': 28910, 'reporting pandemic': 712735, 'team adequate': 835570, 'adequate stock': 32184, 'ppe home': 667972, 'home kit': 401501, 'kit sanitizer': 475626, 'etc an': 282402, 'an actual': 55091, 'actual document': 30643, 'document to': 251216, 'read strategy': 700559, 'strategy tactic': 812717, 'is our master': 450630, 'our master plan': 623876, 'master plan for': 520206, 'the next wave': 861710, 'next wave of': 561659, 'wave of widely': 969385, 'of widely available': 593160, 'available testing accurate': 104611, 'testing accurate reporting': 839419, 'accurate reporting pandemic': 28911, 'reporting pandemic team': 712736, 'pandemic team adequate': 636624, 'team adequate stock': 835571, 'adequate stock of': 32186, 'stock of ppe': 802537, 'of ppe home': 588319, 'ppe home kit': 667973, 'home kit sanitizer': 401502, 'kit sanitizer mask': 475628, 'sanitizer mask etc': 735351, 'mask etc an': 518612, 'etc an actual': 282403, 'an actual document': 55092, 'actual document to': 30644, 'document to read': 251217, 'to read strategy': 912839, 'read strategy tactic': 700560, 'clumsy': 184579, 'ghosted': 349689, 'supermarket making': 821439, 'making eye': 511056, 'achieve socialdistancing': 29041, 'is clumsy': 446625, 'clumsy awkward': 184580, 'awkward bumping': 106273, 'bumping into': 142597, 'who ghosted': 988780, 'ghosted you': 349692, 'just been shopping': 468307, 'been shopping to': 121954, 'the supermarket making': 868692, 'supermarket making eye': 821440, 'making eye contact': 511057, 'eye contact and': 294025, 'contact and trying': 200015, 'trying to achieve': 934760, 'to achieve socialdistancing': 899991, 'achieve socialdistancing in': 29042, 'the aisle is': 848524, 'aisle is clumsy': 40284, 'is clumsy awkward': 446626, 'clumsy awkward bumping': 184581, 'awkward bumping into': 106274, 'bumping into that': 142599, 'into that person': 443089, 'that person who': 845726, 'person who ghosted': 652724, 'who ghosted you': 988781, 'ghosted you after': 349693, 'you after the': 1016842, 'after the first': 36315, 'the first date': 855295, 'rocco': 724866, 'roccosudano': 724869, 'gsd': 367543, 'milton': 532475, 'ugh my': 938022, 'dog rocco': 252162, 'rocco wasted': 724867, 'wasted like': 968248, 'like 300': 489702, 'toiletpaper coronageddon': 921885, 'coronageddon roccosudano': 204958, 'roccosudano gsd': 724870, 'gsd milton': 367544, 'milton georgia': 532476, 'ugh my dog': 938023, 'my dog rocco': 548021, 'dog rocco wasted': 252163, 'rocco wasted like': 724868, 'wasted like 300': 968249, 'like 300 in': 489703, '300 in toilet': 17314, 'in toilet paper': 430174, 'paper toiletpaper coronageddon': 640946, 'toiletpaper coronageddon roccosudano': 921886, 'coronageddon roccosudano gsd': 204959, 'roccosudano gsd milton': 724871, 'gsd milton georgia': 367545, 'austr': 103201, 'governing': 359800, 'dismissal': 246008, 'ecolog': 266677, 'uk austr': 938203, 'austr the': 103202, 'the governing': 856499, 'governing party': 359801, 'party politics': 643029, 'politics are': 663776, 'built on': 142192, 'on risk': 603204, 'risk dismissal': 723494, 'dismissal denial': 246009, 'denial just': 236940, 've delayed': 953040, 'climate ecolog': 182220, 'ecolog breakdown': 266678, 'breakdown consumer': 138835, 'in uk austr': 430380, 'uk austr the': 938204, 'austr the governing': 103203, 'the governing party': 856500, 'governing party politics': 359802, 'party politics are': 643030, 'politics are built': 663777, 'are built on': 85079, 'built on risk': 142193, 'on risk dismissal': 603205, 'risk dismissal denial': 723495, 'dismissal denial just': 246010, 'denial just they': 236941, 'just they ve': 470033, 'they ve delayed': 883644, 've delayed necessary': 953041, 'to climate ecolog': 902844, 'climate ecolog breakdown': 182221, 'ecolog breakdown consumer': 266679, 'breakdown consumer debt': 138836, 'indigenous': 435077, 'this indigenous': 888091, 'indigenous man': 435084, 'man stockpiled': 512251, 'stockpiled on': 803852, 'could distribute': 209088, 'elderly for': 270681, 'free he': 331894, 'different location': 241988, 'location on': 498943, 'street on': 813054, 'on nebraska': 602350, 'nebraska to': 553906, 'society have': 781235, 'this indigenous man': 888092, 'indigenous man stockpiled': 435085, 'man stockpiled on': 512252, 'stockpiled on and': 803853, 'on and so': 599372, 'and so he': 71843, 'so he could': 777271, 'he could distribute': 384855, 'could distribute them': 209089, 'them to elderly': 876470, 'to elderly for': 904972, 'elderly for free': 270683, 'for free he': 321716, 'free he been': 331895, 'he been out': 384773, 'out for day': 626107, 'for day at': 320565, 'day at different': 227329, 'at different location': 98436, 'different location on': 241990, 'location on the': 498945, 'the street on': 868240, 'street on nebraska': 813055, 'on nebraska to': 602351, 'nebraska to ensure': 553907, 'ensure the vulnerable': 278093, 'the vulnerable people': 870992, 'in society have': 428060, 'society have what': 781236, 'earthling': 265028, 'the earthling': 853831, 'earthling die': 265029, 'used so': 950006, 'they wiped': 883900, 'wiped themselves': 996486, 'out auspol': 625755, 'so how did': 777337, 'how did all': 407681, 'all the earthling': 44726, 'the earthling die': 853832, 'earthling die they': 265030, 'die they used': 241465, 'they used so': 883624, 'used so much': 950007, 'much toiletpaper they': 545402, 'toiletpaper they wiped': 922611, 'they wiped themselves': 883901, 'wiped themselves out': 996487, 'themselves out auspol': 876868, 'tingle': 898593, 'on point': 602829, 'point with': 662717, 'booty sanitizer': 135148, 'wipe aid': 996174, 'aid little': 39416, 'little tingle': 495615, 'tingle to': 898594, 'but booty': 145307, 'booty hole': 135144, 'hole be': 400205, 'be squeaky': 117341, 'squeaky amid': 791523, 'amid corona': 52410, 'corona concern': 203858, 'concern can': 192944, 'not stayhome': 571706, 'my job on': 548925, 'job on point': 466051, 'on point with': 602831, 'point with the': 662718, 'the booty sanitizer': 849861, 'booty sanitizer wipe': 135149, 'sanitizer wipe aid': 736114, 'wipe aid little': 996175, 'aid little tingle': 39417, 'little tingle to': 495616, 'tingle to it': 898595, 'to it but': 908571, 'it but booty': 456947, 'but booty hole': 145308, 'booty hole be': 135145, 'hole be squeaky': 400206, 'be squeaky amid': 117342, 'squeaky amid corona': 791524, 'amid corona concern': 52411, 'corona concern can': 203859, 'concern can not': 192946, 'can not stayhome': 159054, 'on shared': 603392, 'shared journey': 755421, 'journey every': 467472, 've stepped': 953598, 'stepped inside': 799777, 'fortnight ve': 329847, 'seen much': 747143, 'being shared': 125771, 'journey panicbuyinguk': 467484, 'apparently we re': 82038, 're on shared': 699181, 'on shared journey': 603393, 'shared journey every': 755422, 'journey every time': 467473, 'every time ve': 286324, 'time ve stepped': 898184, 've stepped inside': 953599, 'stepped inside supermarket': 799778, 'inside supermarket this': 439401, 'supermarket this last': 823315, 'this last fortnight': 888597, 'last fortnight ve': 480240, 'fortnight ve not': 329848, 've not seen': 953402, 'not seen much': 571510, 'seen much evidence': 747144, 'evidence of this': 288373, 'of this being': 591942, 'this being shared': 886545, 'being shared journey': 125772, 'shared journey panicbuyinguk': 755423, 'tightest': 895876, 'stard': 794118, '1p': 12675, 'also lying': 48495, 'lying spoke': 507081, 'the tightest': 869549, 'tightest stard': 895877, 'stard ever': 794119, 'ever he': 285344, 'give ppl': 350654, 'ppl their': 668345, 'their 1p': 872418, '1p change': 12676, 'change he': 172073, 'said some': 731363, 'usual dettol': 950922, 'are unavailable': 91262, 'unavailable but': 939443, 'cash carry': 166198, 'carry haven': 165090, 'haven increased': 383841, 'increased pricegougers': 433425, 're also lying': 698268, 'also lying spoke': 48496, 'lying spoke to': 507082, 'corner shop owner': 203674, 'owner who is': 632601, 'is the tightest': 452960, 'the tightest stard': 869550, 'tightest stard ever': 895878, 'stard ever he': 794120, 'ever he doesn': 285345, 'he doesn even': 384906, 'doesn even give': 251772, 'even give ppl': 284117, 'give ppl their': 350655, 'ppl their 1p': 668346, 'their 1p change': 872419, '1p change he': 12677, 'change he said': 172074, 'he said some': 385374, 'said some item': 731364, 'some item like': 783151, 'item like my': 463417, 'like my usual': 490829, 'my usual dettol': 550474, 'usual dettol wipe': 950923, 'dettol wipe are': 239538, 'wipe are unavailable': 996200, 'are unavailable but': 91263, 'unavailable but price': 939444, 'but price at': 146841, 'the cash carry': 850473, 'cash carry haven': 166199, 'carry haven increased': 165091, 'haven increased pricegougers': 383843, 'it couldn': 457372, 'be helped': 115204, 'helped toiletpaperapocalypse': 391114, 'do it couldn': 249470, 'it couldn be': 457373, 'couldn be helped': 209868, 'be helped toiletpaperapocalypse': 115205, 'helped toiletpaperapocalypse toiletpaper': 391115, 'should collect': 765836, 'collect the': 186330, 'worst business': 1011151, 've received': 953486, 'should collect the': 765837, 'collect the worst': 186331, 'the worst business': 872042, 'worst business consumer': 1011152, 'business consumer email': 143568, 'consumer email about': 197345, 'email about covid': 272095, '19 ve received': 11739, 'googlealerts': 358207, 'already impacting': 47455, 'consumer banking': 196387, 'banking survey': 110464, 'survey googlealerts': 828875, 'is already impacting': 445522, 'already impacting consumer': 47456, 'impacting consumer banking': 418190, 'consumer banking survey': 196390, 'banking survey googlealerts': 110465, 'adengage': 32152, 'indoors leading': 435407, 'increased time': 433509, 'spent online': 789156, 'there major': 878741, 'behaviour marketing': 124475, 'marketing pattern': 517675, 'pattern too': 644518, 'can win': 160224, 'game digitalmarketing': 343162, 'digitalmarketing socialmediamarketing': 242781, 'socialmediamarketing adengage': 781109, 'lockdown ha forced': 499446, 'to stay indoors': 915295, 'stay indoors leading': 797077, 'indoors leading to': 435408, 'leading to the': 483778, 'to the increased': 916803, 'the increased time': 858080, 'increased time spent': 433512, 'time spent online': 897733, 'spent online there': 789158, 'online there major': 609547, 'there major shift': 878742, 'consumer behaviour marketing': 196586, 'behaviour marketing pattern': 124476, 'marketing pattern too': 517676, 'pattern too click': 644519, 'too click here': 924650, 'here to know': 393716, 'you can win': 1017833, 'can win the': 160225, 'win the game': 995585, 'the game digitalmarketing': 856119, 'game digitalmarketing socialmediamarketing': 343163, 'digitalmarketing socialmediamarketing adengage': 242782, 'panicbuyi': 638889, 'hey asda': 394328, 'asda ve': 94999, 'buying under': 151277, 'control drop': 201997, 'drop online': 260352, 'all edible': 42655, 'edible by': 268543, '10 thus': 1712, 'thus allowing': 895498, 'allowing you': 46368, 'best control': 127641, 'and allowing': 57920, 'no internet': 564517, 'internet people': 441984, 'normal panicbuyi': 567249, 'hey asda ve': 394329, 'asda ve an': 95000, 've an idea': 952842, 'an idea to': 56135, 'idea to get': 413202, 'get the panic': 348277, 'panic buying under': 637946, 'buying under control': 151278, 'under control drop': 940044, 'control drop online': 201998, 'drop online delivery': 260354, 'online delivery price': 608087, 'delivery price for': 234366, 'for all edible': 319120, 'all edible by': 42656, 'edible by 10': 268544, 'by 10 thus': 151521, '10 thus allowing': 1713, 'thus allowing you': 895499, 'allowing you to': 46369, 'you to best': 1021754, 'to best control': 901773, 'best control the': 127642, 'control the stock': 202173, 'stock and allowing': 801797, 'and allowing the': 57921, 'allowing the no': 46345, 'the no internet': 861828, 'no internet people': 564518, 'internet people to': 441985, 'to shop normal': 914475, 'shop normal panicbuyi': 760491, 'busted': 144837, 'feelinggood': 303122, 'today one': 919976, 'my co': 547715, 'co worker': 185011, 'who busted': 988352, 'busted my': 144842, 'my ball': 547393, 'ball three': 109067, 'when started': 984071, 'started carrying': 794704, 'home thanked': 402211, 'thanked me': 841881, 'said she': 731343, 'been safe': 121876, 'the clear': 850992, 'clear since': 181322, 'since got': 770621, 'act early': 29633, 'early feelinggood': 264600, 'today one of': 919979, 'of my co': 586745, 'my co worker': 547716, 'co worker who': 185016, 'worker who busted': 1008195, 'who busted my': 988353, 'busted my ball': 144843, 'my ball three': 547394, 'ball three week': 109068, 'three week ago': 894097, 'week ago when': 975866, 'ago when started': 38547, 'when started carrying': 984072, 'started carrying hand': 794705, 'sanitizer and working': 734463, 'from home thanked': 335909, 'home thanked me': 402212, 'thanked me she': 841882, 'me she said': 523448, 'she said she': 756312, 'said she been': 731344, 'she been safe': 755885, 'been safe and': 121877, 'safe and in': 729454, 'in the clear': 429071, 'the clear since': 850994, 'clear since got': 181323, 'since got her': 770622, 'got her to': 358599, 'her to act': 392459, 'to act early': 900011, 'act early feelinggood': 29634, 'this developed': 887216, 'in hong': 423796, 'check this developed': 174674, 'this developed in': 887217, 'developed in hong': 239712, 'in hong kong': 423797, 'employment in': 274612, 'in warehousing': 430690, 'warehousing amp': 966835, 'amp logistics': 54080, 'logistics is': 500762, 'is unpredictable': 453544, 'unpredictable especially': 943231, 'industry where': 436234, 'be physically': 116409, 'physically demanding': 655512, 'demanding amp': 236569, 'when 19': 983105, 'constantly shifting': 195701, 'need learn': 555149, 'effectively find': 269347, 'find hire': 306961, 'hire amp': 396998, 'amp retain': 54407, 'retain worker': 719611, 'employment in warehousing': 274614, 'in warehousing amp': 430691, 'warehousing amp logistics': 966836, 'amp logistics is': 54081, 'logistics is unpredictable': 500764, 'is unpredictable especially': 453545, 'unpredictable especially in': 943232, 'especially in an': 280521, 'in an industry': 420311, 'an industry where': 56298, 'industry where work': 436235, 'where work can': 985364, 'work can be': 1004968, 'can be physically': 157661, 'be physically demanding': 116410, 'physically demanding amp': 655513, 'demanding amp in': 236570, 'amp in time': 53982, 'in time when': 430089, 'time when 19': 898277, 'when 19 is': 983106, '19 is constantly': 7950, 'is constantly shifting': 446779, 'constantly shifting consumer': 195702, 'shifting consumer need': 758521, 'consumer need learn': 198193, 'need learn how': 555150, 'how to effectively': 409015, 'to effectively find': 904951, 'effectively find hire': 269348, 'find hire amp': 306962, 'hire amp retain': 396999, 'amp retain worker': 54408, 'retain worker for': 719612, 'worker for your': 1006979, 'your business with': 1023087, 'business with these': 144707, 'mindfulness': 532823, 'what learnt': 981803, 'learnt about': 484270, 'about myself': 25773, 'and mindfulness': 67034, 'mindfulness whilst': 532828, 'whilst shopping': 987682, '19 mindfulness': 8653, 'what learnt about': 981804, 'learnt about myself': 484271, 'about myself and': 25774, 'myself and mindfulness': 550822, 'and mindfulness whilst': 67035, 'mindfulness whilst shopping': 532829, 'whilst shopping at': 987683, 'covid 19 mindfulness': 213436, 'colleague went': 186254, 'lady struggling': 478832, 'anything she': 80876, 'just wanted': 470231, 'wanted bread': 966197, 'wasn any': 967956, 'any so': 79823, 'he took': 385539, 'took some': 925330, 'his home': 397509, 'delivered some': 233390, 'her imagine': 392136, 'were this': 980254, 'this incredible': 888086, 'incredible bekind': 433819, 'my colleague went': 547740, 'colleague went to': 186255, 'supermarket yesterday to': 824177, 'yesterday to find': 1015902, 'find an elderly': 306774, 'elderly lady struggling': 270735, 'lady struggling to': 478833, 'to find anything': 905881, 'find anything she': 306810, 'anything she said': 80877, 'said she just': 731347, 'she just wanted': 756176, 'just wanted bread': 470232, 'wanted bread and': 966198, 'bread and milk': 138402, 'and milk and': 67012, 'milk and there': 531569, 'and there wasn': 73854, 'there wasn any': 879284, 'wasn any so': 967958, 'any so he': 79824, 'so he took': 777281, 'he took some': 385541, 'took some from': 925331, 'some from his': 782917, 'from his home': 335815, 'his home and': 397510, 'home and delivered': 400631, 'and delivered some': 61097, 'delivered some to': 233391, 'some to her': 784078, 'to her imagine': 907699, 'her imagine if': 392137, 'imagine if we': 416745, 'we all were': 970375, 'all were this': 45436, 'were this incredible': 980256, 'this incredible bekind': 888087, 'sicko': 768765, 'been wiping': 122377, 'down every': 256729, 'food bring': 313790, 'bring into': 140007, 'since beginning': 770526, 'march use': 515510, 'use anti': 949048, 'anti bac': 78268, 'bac wipe': 106798, 'some spray': 783925, 'spray bit': 790271, 'kitchen towel': 475761, 'towel clean': 927306, 'clean surface': 180642, 'surface when': 828090, 'when finished': 983424, 'and washyourhands': 75211, 'washyourhands food': 967873, 'food terrorism': 317071, 'terrorism jail': 838608, 'jail the': 464282, 'the sicko': 867157, 've been wiping': 952963, 'been wiping down': 122378, 'wiping down every': 996512, 'down every item': 256732, 'every item of': 285960, 'item of food': 463491, 'of food bring': 583660, 'food bring into': 313791, 'bring into my': 140009, 'into my house': 442781, 'house since beginning': 406559, 'since beginning of': 770527, 'beginning of march': 123648, 'of march use': 586216, 'march use anti': 515511, 'use anti bac': 949049, 'anti bac wipe': 78269, 'bac wipe or': 106799, 'wipe or some': 996338, 'or some spray': 617151, 'some spray bit': 783926, 'spray bit of': 790272, 'bit of kitchen': 131651, 'of kitchen towel': 585660, 'kitchen towel clean': 475763, 'towel clean surface': 927307, 'clean surface when': 180643, 'surface when finished': 828091, 'when finished and': 983425, 'finished and washyourhands': 307891, 'and washyourhands food': 75212, 'washyourhands food terrorism': 967874, 'food terrorism jail': 317072, 'terrorism jail the': 838609, 'jail the sicko': 464283, 'eng': 276839, 'behavior eng': 124023, 'eng consumerbehaviour': 276840, 'crisis is changing': 217563, 'consumer behavior eng': 196471, 'behavior eng consumerbehaviour': 124024, 'our sister': 624783, 'sister company': 771724, 'company asked': 190469, 'asked over': 95805, 'over 44': 629848, '44 00': 18997, 've changed': 952991, 'they learned': 882544, 'our sister company': 624784, 'sister company asked': 771725, 'company asked over': 190470, 'asked over 44': 95806, 'over 44 00': 629849, '44 00 consumer': 18999, '00 consumer in': 147, 'consumer in america': 197815, 'in america how': 420223, 'america how they': 51556, 'they ve changed': 883642, 've changed their': 952992, 'changed their behavior': 172575, 'their behavior result': 872583, '19 here what': 7517, 'what they learned': 982404, 'cityoffrederick': 179481, 'frederickmd': 331593, 'cityoffrederick frederickmd': 179482, 'frederickmd doe': 331594, 'our public': 624506, 'public sanitation': 688285, 'sanitation in': 733848, 'downtown still': 257759, 'still consist': 800395, 'two dirty': 936894, 'dirty port': 243767, 'port potty': 664895, 'potty with': 667276, 'cityoffrederick frederickmd doe': 179483, 'frederickmd doe our': 331595, 'doe our public': 251547, 'our public sanitation': 624508, 'public sanitation in': 688286, 'sanitation in downtown': 733849, 'in downtown still': 422381, 'downtown still consist': 257760, 'still consist of': 800396, 'consist of two': 195467, 'of two dirty': 592539, 'two dirty port': 936895, 'dirty port potty': 243768, 'port potty with': 664896, 'potty with no': 667277, 'with no toilet': 999797, 'paper or sanitizer': 640557, 'eschother': 280338, 'wa talking': 963402, 'gonna start': 356619, 'like dude': 490145, 'dude go': 261589, 'store ppl': 809623, 'are stabbing': 90341, 'stabbing eschother': 791772, 'eschother over': 280339, 'over bottled': 630028, 'game wtf': 343300, 'wa talking to': 963404, 'talking to someone': 834052, 'to someone and': 914901, 'someone and wa': 784364, 'and wa like': 75089, 'wa like this': 962550, 'this is gonna': 888270, 'is gonna start': 448133, 'gonna start the': 356622, 'start the hunger': 794553, 'hunger game and': 411115, 'game and they': 343121, 'and they were': 73950, 'they were like': 883783, 'were like it': 979843, 'like it isn': 490542, 'it isn that': 459155, 'isn that bad': 454698, 'that bad and': 842920, 'bad and like': 107761, 'and like dude': 66153, 'like dude go': 490146, 'dude go to': 261590, 'grocery store ppl': 365672, 'store ppl in': 809624, 'ppl in the': 668260, 'the are stabbing': 848870, 'are stabbing eschother': 90342, 'stabbing eschother over': 791773, 'eschother over bottled': 280340, 'over bottled water': 630029, 'water this is': 969208, 'is the hunger': 452822, 'hunger game wtf': 411120, 'launching task': 482073, 'stop firm': 804653, 'firm exploiting': 308348, 'with excessive': 998316, 'just been told': 468310, 'been told the': 122243, 'told the competition': 923702, 'market authority is': 516062, 'authority is launching': 103756, 'is launching task': 449243, 'launching task force': 482074, 'force to stop': 328532, 'to stop firm': 915523, 'stop firm exploiting': 804654, 'firm exploiting the': 308349, 'exploiting the crisis': 292454, 'crisis with excessive': 218424, 'with excessive price': 998317, 'either panic': 270355, 'or london': 615995, 'london got': 501078, 'got full': 358576, 'full blown': 340504, 'blown obesity': 133401, 'obesity crisis': 578372, 'it hand': 458444, 'hand stophoarding': 375805, 'panicbuyinguk london': 639137, 'are either panic': 86096, 'either panic buying': 270356, 'buying or london': 150839, 'or london got': 615996, 'london got full': 501079, 'got full blown': 358577, 'full blown obesity': 340505, 'blown obesity crisis': 133402, 'obesity crisis on': 578373, 'crisis on it': 217815, 'on it hand': 601665, 'it hand stophoarding': 458447, 'hand stophoarding panicbuyinguk': 375806, 'stophoarding panicbuyinguk london': 805440, 'service etc': 752339, 'etc get': 282557, 'than bean': 840384, 'yet here': 1016088, 'are again': 84272, 'again listed': 37054, 'listed under': 494650, 'the louisiana': 859761, 'louisiana stay': 504547, 'inside order': 439347, 'amazing how grocery': 50706, 'store worker food': 811505, 'worker food service': 1006961, 'food service etc': 316415, 'service etc get': 752340, 'etc get paid': 282558, 'get paid le': 347768, 'paid le than': 634049, 'le than bean': 483165, 'than bean and': 840385, 'bean and yet': 118294, 'and yet here': 75986, 'yet here they': 1016091, 'they are again': 881194, 'are again listed': 84274, 'again listed under': 37055, 'listed under essential': 494651, 'under essential worker': 940076, 'in the louisiana': 429332, 'the louisiana stay': 859762, 'louisiana stay inside': 504548, 'stay inside order': 797104, 'this scary': 889983, 'scary pandemic': 741168, 'from frontline': 335580, 'frontline life': 338777, 'life saver': 489006, 'saver to': 737816, 'to behind': 901728, 'scene police': 741352, 'police from': 663023, 'from front': 335578, 'line mail': 493246, 'carrier to': 165031, 'scene grocery': 741328, 'store stocker': 810394, 'stocker to': 803523, 'these all': 879584, 'all citizen': 42347, 'citizen serving': 178957, 'serving we': 753230, 'is working during': 454035, 'during this scary': 263315, 'this scary pandemic': 889984, 'scary pandemic from': 741169, 'pandemic from frontline': 635468, 'from frontline life': 335581, 'frontline life saver': 338778, 'life saver to': 489008, 'saver to behind': 737817, 'to behind the': 901729, 'the scene police': 866471, 'scene police from': 741353, 'police from front': 663024, 'from front line': 335579, 'front line mail': 338588, 'line mail carrier': 493247, 'mail carrier to': 508585, 'carrier to behind': 165032, 'the scene grocery': 866466, 'scene grocery store': 741329, 'grocery store stocker': 365810, 'store stocker to': 810398, 'stocker to these': 803524, 'to these all': 917333, 'these all citizen': 879585, 'all citizen serving': 42354, 'citizen serving we': 178958, 'know bus': 476314, 'have contracted': 380098, 'contracted at': 201729, 'work my': 1005480, 'have sadly': 382374, 'sadly died': 729330, 'but personally': 146784, 'personally feel': 653026, 'good protection': 357597, 'with screen': 1000601, 'screen and': 742672, 'public contact': 687932, 'contact supermarket': 200214, 'do we know': 250476, 'we know bus': 972149, 'know bus driver': 476315, 'driver have contracted': 259595, 'have contracted at': 380099, 'contracted at work': 201731, 'at work my': 101608, 'work my heart': 1005481, 'family of those': 298107, 'of those that': 592120, 'that have sadly': 844232, 'have sadly died': 382375, 'sadly died but': 729331, 'died but personally': 241524, 'but personally feel': 146785, 'personally feel they': 653028, 'feel they have': 302897, 'they have good': 882322, 'have good protection': 380806, 'good protection at': 357598, 'protection at work': 685342, 'at work with': 101629, 'work with screen': 1006041, 'with screen and': 1000602, 'screen and no': 742674, 'and no public': 67632, 'no public contact': 565244, 'public contact supermarket': 687934, 'contact supermarket worker': 200215, 'worker are much': 1006405, 'idiot stoppanicbuying': 413600, 'fucking idiot stoppanicbuying': 339915, 'corrugated': 207651, 'rabobank': 695156, 'xinnan': 1013857, 'present moment': 670610, 'prove valuable': 686126, 'valuable for': 952021, 'american amp': 51780, 'amp corrugated': 53582, 'corrugated sector': 207652, 'amp consumables': 53559, 'consumables surge': 195925, 'surge and': 828127, 'consumption shift': 199941, 'retail channel': 717951, 'channel writes': 172954, 'writes rabobank': 1012862, 'rabobank xinnan': 695161, 'xinnan li': 1013858, 'li in': 487941, 'the present moment': 864247, 'present moment could': 670611, 'moment could prove': 535909, 'could prove valuable': 209541, 'prove valuable for': 686127, 'valuable for the': 952023, 'for the north': 326586, 'the north american': 861871, 'north american amp': 567610, 'american amp corrugated': 51781, 'amp corrugated sector': 53583, 'corrugated sector demand': 207653, 'food amp consumables': 313130, 'amp consumables surge': 53560, 'consumables surge and': 195926, 'surge and consumption': 828128, 'and consumption shift': 60462, 'consumption shift from': 199942, 'shift from foodservice': 758295, 'foodservice to retail': 318114, 'to retail channel': 913445, 'retail channel writes': 717952, 'channel writes rabobank': 172955, 'writes rabobank xinnan': 1012863, 'rabobank xinnan li': 695162, 'xinnan li in': 1013859, 'li in new': 487942, 'besides hospital': 127506, 'hospital is': 404480, 'there anywhere': 878044, 'anywhere in': 81119, 'america we': 51736, 'be exposed': 114743, 'every american': 285663, 'be shown': 117171, 'make simple': 510457, 'simple face': 770012, 'store maga': 808851, 'besides hospital is': 127507, 'hospital is there': 404483, 'is there anywhere': 453001, 'there anywhere in': 878045, 'anywhere in america': 81120, 'in america we': 420242, 'america we re': 51738, 'we re more': 972922, 're more likely': 699042, 'to be exposed': 901246, 'be exposed to': 114748, 'the coronavirus than': 851923, 'coronavirus than grocery': 206895, 'store should not': 810167, 'should not every': 766241, 'not every american': 569293, 'every american be': 285664, 'american be shown': 51834, 'be shown how': 117172, 'shown how to': 767591, 'to make simple': 909738, 'make simple face': 510458, 'simple face mask': 770013, 'mask and instructed': 518339, 'instructed to wear': 440531, 'wear it every': 974368, 'it every time': 457875, 'the store maga': 868054, 'is scottish': 451690, 'scottish provider': 742485, 'provider are': 686688, 'experience loss': 291412, 'order supply': 618607, 'supply our': 825690, 'our member': 623904, 'member are': 528023, 'getting stock': 349306, 'paying extortionate': 645403, 'price care': 673077, 'home refused': 401959, 'refused kit': 707059, 'kit because': 475508, 'because stock': 119580, 'stock reserved': 802786, 'for england': 321063, 'england bbc': 277006, 'reality is scottish': 701751, 'is scottish provider': 451691, 'scottish provider are': 742486, 'provider are not': 686691, 'to experience loss': 905459, 'experience loss of': 291413, 'loss of order': 503750, 'of order supply': 587340, 'order supply our': 618608, 'supply our member': 825694, 'our member are': 623906, 'member are not': 528024, 'not getting stock': 569630, 'getting stock or': 349307, 'stock or are': 802582, 'or are paying': 614411, 'are paying extortionate': 89009, 'paying extortionate price': 645404, 'extortionate price care': 293389, 'price care home': 673079, 'care home refused': 163999, 'home refused kit': 401960, 'refused kit because': 707060, 'kit because stock': 475509, 'because stock reserved': 119581, 'stock reserved for': 802787, 'reserved for england': 714130, 'for england bbc': 321064, 'general issued': 345383, 'for renter': 325124, 'renter check': 711299, 'attorney general issued': 102647, 'general issued consumer': 345384, 'consumer alert for': 196145, 'alert for renter': 41421, 'for renter check': 325126, 'renter check out': 711300, 'out the alert': 627345, 'the alert and': 848566, 'alert and know': 41354, 'and know your': 65894, 'astoria': 97237, 'illegaldancerave': 416258, 'standing outside': 793796, 'in astoria': 420544, 'astoria queen': 97238, 'queen since': 693392, 'since 630am': 770488, '630am dance': 21278, 'dance music': 225564, 'from inside': 336066, 'the metal': 860538, 'metal gate': 529629, 'gate 7am': 344324, '7am scheduled': 22434, 'scheduled open': 741510, 'open usual': 612640, 'usual illegaldancerave': 950962, 'illegaldancerave socialdistancing': 416259, 'standing outside local': 793798, 'outside local supermarket': 629474, 'supermarket in astoria': 820862, 'in astoria queen': 420545, 'astoria queen since': 97239, 'queen since 630am': 693393, 'since 630am dance': 770489, '630am dance music': 21279, 'dance music blaring': 225565, 'blaring from inside': 132396, 'from inside the': 336068, 'inside the metal': 439417, 'the metal gate': 860539, 'metal gate 7am': 529630, 'gate 7am scheduled': 344325, '7am scheduled open': 22435, 'scheduled open usual': 741511, 'open usual illegaldancerave': 612641, 'usual illegaldancerave socialdistancing': 950963, 'virus rule': 958705, 'rule let': 727288, 'let construction': 486653, 'worker keep': 1007277, 'keep building': 471357, 'building luxury': 142110, 'luxury tower': 506971, 'tower the': 927416, 'the laborer': 858891, 'laborer deemed': 478497, 'essential by': 280879, 'by new': 153324, 'york work': 1016689, 'work side': 1005728, 'side often': 768860, 'often sharing': 596272, 'sharing portable': 755573, 'portable toilet': 664926, 'toilet that': 921629, 'that rarely': 845940, 'rarely have': 697112, 'have soap': 382603, 'sanitizer ny': 735443, 'ny time': 577919, 'virus rule let': 958706, 'rule let construction': 727289, 'let construction worker': 486654, 'construction worker keep': 195836, 'worker keep building': 1007278, 'keep building luxury': 471358, 'building luxury tower': 142111, 'luxury tower the': 506972, 'tower the laborer': 927417, 'the laborer deemed': 858892, 'laborer deemed essential': 478498, 'deemed essential by': 231820, 'essential by new': 280881, 'by new york': 153325, 'new york work': 559958, 'york work side': 1016690, 'work side by': 1005729, 'by side often': 154013, 'side often sharing': 768861, 'often sharing portable': 596273, 'sharing portable toilet': 755574, 'portable toilet that': 664927, 'toilet that rarely': 921631, 'that rarely have': 845941, 'rarely have soap': 697114, 'have soap or': 382604, 'hand sanitizer ny': 375509, 'sanitizer ny time': 735444, 'fulfilling': 340431, 'would try': 1012347, 'late evening': 480864, 'evening instead': 284874, 'day didn': 227523, 'chain were': 171225, 'were fine': 979629, 'fine this': 307702, 'it self': 460960, 'self fulfilling': 747645, 'fulfilling cycle': 340432, 'thought would try': 893330, 'would try the': 1012348, 'try the supermarket': 934584, 'the supermarket late': 868668, 'supermarket late evening': 821273, 'late evening instead': 480865, 'evening instead of': 284875, 'instead of during': 440256, 'the day didn': 852878, 'day didn say': 227524, 'didn say the': 241188, 'supply chain were': 825060, 'chain were fine': 171226, 'were fine this': 979631, 'fine this is': 307703, 'is why people': 453973, 'buy it self': 148862, 'it self fulfilling': 460961, 'self fulfilling cycle': 747646, 'hear this': 388007, 'very real problem': 955456, 'real problem we': 701321, 'problem we hear': 679740, 'we hear this': 972003, 'hear this all': 388008, 'healthforall': 387449, 'will generate': 993491, 'generate massive': 345561, 'massive revenue': 520087, 'revenue in': 720438, 'coming year': 188297, 'pdf copy': 645944, 'copy of': 203465, 'report healthcare': 712007, 'healthcare handsanitizer': 387132, 'handsanitizer healthforall': 376550, 'healthforall healthyathome': 387450, 'sanitizer business will': 734603, 'business will generate': 144682, 'will generate massive': 993492, 'generate massive revenue': 345562, 'massive revenue in': 520088, 'revenue in coming': 720440, 'in coming year': 421589, 'coming year get': 188299, 'year get pdf': 1014588, 'get pdf copy': 347799, 'pdf copy of': 645945, 'copy of this': 203468, 'of this report': 592031, 'this report healthcare': 889874, 'report healthcare handsanitizer': 712008, 'healthcare handsanitizer healthforall': 387133, 'handsanitizer healthforall healthyathome': 376551, 'supermakets': 818713, '110': 2619, 'government release': 360525, 'release name': 708972, 'and contact': 60464, 'contact detail': 200065, 'to supermakets': 915763, 'supermakets government': 818714, 'government gave': 360117, 'gave tesco': 344662, 'tesco list': 838734, 'of 110': 579334, '110 00': 2620, '00 name': 352, 'it classed': 457147, 'classed vulnerable': 180306, 'vulnerable the': 961198, 'ha contacted': 370233, 'contacted these': 200339, 'them slot': 876287, 'government release name': 360527, 'release name and': 708973, 'name and contact': 551606, 'and contact detail': 60466, 'contact detail of': 200066, 'detail of vulnerable': 239225, 'of vulnerable people': 592873, 'vulnerable people to': 961113, 'people to supermakets': 649949, 'to supermakets government': 915764, 'supermakets government gave': 818715, 'government gave tesco': 360118, 'gave tesco list': 344663, 'tesco list of': 838735, 'list of 110': 494405, 'of 110 00': 579335, '110 00 name': 2621, '00 name of': 353, 'name of people': 551662, 'of people it': 587933, 'people it classed': 648535, 'it classed vulnerable': 457148, 'classed vulnerable the': 180308, 'vulnerable the supermarket': 961201, 'supermarket ha contacted': 820623, 'ha contacted these': 370236, 'contacted these people': 200340, 'these people and': 880422, 'people and offered': 646876, 'and offered them': 67979, 'offered them slot': 594972, 'increasing scam': 433689, 'charity to': 173702, 'delivery got': 234061, 'got call': 358462, 'from person': 336904, 'in division': 422328, 'division dedicated': 248669, 'to getting': 906654, 'getting check': 348898, 'elderly asking': 270598, 'to mail': 909548, 'me asap': 522451, 'asap warn': 94885, 'warn our': 966951, 'elderly others': 270801, 'others ftcscambingo': 621427, 'beware of increasing': 129085, 'of increasing scam': 585083, 'increasing scam fraud': 433690, 'scam fraud from': 740170, 'fraud from fake': 331275, 'from fake charity': 335391, 'fake charity to': 296579, 'charity to delivery': 173704, 'to delivery got': 904127, 'delivery got call': 234062, 'got call from': 358463, 'call from person': 155908, 'from person in': 336905, 'person in division': 652477, 'in division dedicated': 422329, 'division dedicated to': 248670, 'dedicated to getting': 231746, 'to getting check': 906655, 'getting check to': 348900, 'check to elderly': 174683, 'to elderly asking': 904969, 'elderly asking for': 270599, 'asking for info': 95990, 'for info to': 322572, 'info to mail': 437593, 'to mail check': 909549, 'check to me': 174687, 'to me asap': 909917, 'me asap warn': 522452, 'asap warn our': 94886, 'warn our elderly': 966952, 'our elderly others': 622868, 'elderly others ftcscambingo': 270802, 'that fraudsters': 843955, 'crisis do': 217298, 'visit them': 959401, 'what step': 982253, 'and wallet': 75154, 'it is disturbing': 458935, 'is disturbing that': 447252, 'disturbing that fraudsters': 248420, 'that fraudsters are': 843956, 'fraudsters are already': 331399, 'the crisis do': 852365, 'crisis do not': 217299, 'and visit them': 74986, 'visit them to': 959402, 'them to know': 876486, 'know what step': 476977, 'what step you': 982255, 'to protect your': 912348, 'protect your personal': 685070, 'information and wallet': 437747, 'paper shortage during': 640770, 'shortage during outbreak': 764922, 'during outbreak here': 262849, 'outbreak here why': 628305, 'why via toiletpaper': 991503, 'syd': 830672, 'dub': 261452, 'sardine': 736754, 'charged 3400': 173362, 'my one': 549570, 'way ticket': 969979, 'from syd': 337530, 'syd dub': 830675, 'dub economy': 261455, 'economy class': 267754, 'class wa': 180282, 'full people': 340807, 'packed in': 633611, 'in like': 424723, 'like sardine': 491127, 'sardine and': 736755, 'socialdistancing effort': 780346, 'effort made': 269548, 'made on': 507884, 'on board': 599661, 'board or': 133662, 'at gate': 98743, 'gate meanwhile': 344342, 'meanwhile business': 524957, 'empty most': 274953, 'board paid': 133664, 'paid business': 633985, 'charged 3400 for': 173363, '3400 for my': 17837, 'for my one': 323735, 'my one way': 549574, 'one way ticket': 607383, 'way ticket from': 969980, 'ticket from syd': 895623, 'from syd dub': 337531, 'syd dub economy': 830676, 'dub economy class': 261456, 'economy class wa': 267756, 'class wa full': 180284, 'wa full people': 962181, 'full people packed': 340808, 'people packed in': 649051, 'packed in like': 633613, 'in like sardine': 424728, 'like sardine and': 491128, 'sardine and no': 736756, 'and no socialdistancing': 67642, 'no socialdistancing effort': 565552, 'socialdistancing effort made': 780348, 'effort made on': 269550, 'made on board': 507885, 'on board or': 599665, 'board or at': 133663, 'or at gate': 614443, 'at gate meanwhile': 98744, 'gate meanwhile business': 344343, 'meanwhile business class': 524958, 'business class wa': 143524, 'class wa empty': 180283, 'wa empty most': 962072, 'empty most people': 274954, 'most people on': 542622, 'people on board': 648955, 'on board paid': 599666, 'board paid business': 133665, 'is competition': 446687, 'competition among': 191657, 'among country': 52995, 'oil drop': 596755, 'is positive': 450935, 'for import': 322495, 'import but': 418622, 'am concerned': 49969, 'that such': 846544, 'such large': 816593, 'large drop': 479653, 'drop could': 260163, 'to political': 911872, 'political instability': 663654, 'to the stock': 917097, 'stock market turmoil': 802449, 'market turmoil caused': 517268, 'there is competition': 878538, 'is competition among': 446688, 'competition among country': 191658, 'among country for': 52996, 'country for crude': 210666, 'for crude oil': 320471, 'crude oil drop': 219555, 'oil drop in': 596756, 'drop in crude': 260235, 'price is positive': 674882, 'is positive for': 450937, 'positive for import': 665321, 'for import but': 322497, 'import but am': 418623, 'but am concerned': 145158, 'am concerned that': 49972, 'concerned that such': 193221, 'that such large': 846546, 'such large drop': 816594, 'large drop could': 479654, 'drop could lead': 260164, 'lead to political': 483379, 'to political instability': 911873, 'political instability in': 663655, 'instability in oil': 439895, 'in oil producing': 426088, 'thien': 884019, 'it isnt': 459157, 'working thien': 1008958, 'thien why': 884020, 'this crap': 886997, 'crap drug': 214889, 'drug maker': 260996, 'maker recently': 510855, 'recently doubled': 704077, 'chloroquine in': 177603, 'in dec': 422054, '2019 but': 13949, 'back via': 107438, 'if it isnt': 414314, 'it isnt working': 459158, 'isnt working thien': 454791, 'working thien why': 1008959, 'thien why this': 884021, 'why this crap': 991469, 'this crap drug': 886998, 'crap drug maker': 214890, 'drug maker recently': 260997, 'maker recently doubled': 510856, 'recently doubled the': 704078, 'of chloroquine in': 581388, 'chloroquine in dec': 177604, 'in dec 2019': 422055, 'dec 2019 but': 230652, '2019 but in': 13950, 'but in response': 146035, 'to the cut': 916620, 'the cut price': 852744, 'cut price back': 223491, 'price back via': 672833, 'escalates': 280270, 'suicidal': 817727, 'given how': 351016, 'quickly escalates': 694520, 'escalates waiting': 280275, 'waiting till': 964390, 'till is': 896037, 'is suicidal': 452444, 'suicidal the': 817728, 'spending of': 788926, 'it gdp': 458208, 'gdp may': 344901, 'may crash': 521112, 'given how quickly': 351019, 'how quickly escalates': 408548, 'quickly escalates waiting': 694521, 'escalates waiting till': 280276, 'waiting till is': 964391, 'till is suicidal': 896038, 'is suicidal the': 452445, 'suicidal the economy': 817729, 'the economy with': 854042, 'consumer spending of': 199079, 'spending of it': 788928, 'of it gdp': 585398, 'it gdp may': 458210, 'gdp may crash': 344902, 'emailed': 272377, 'eliot': 271497, 'hannafords': 376997, 'have emailed': 380421, 'emailed me': 272380, 'their covid': 872915, 'strategy update': 812741, 'update guy': 947007, 'who detailed': 988581, 'detailed my': 239298, 'car like': 163169, 'ago an': 38329, 'an indoor': 56285, 'indoor trampoline': 435368, 'trampoline park': 929410, 'park time': 642008, 'time eliot': 896606, 'eliot from': 271498, 'from jordan': 336159, 'jordan furniture': 467280, 'furniture hannafords': 341955, 'hannafords supermarket': 376998, 'that somehow': 846401, 'somehow ha': 784319, 'ha my': 371308, 'that have emailed': 844207, 'have emailed me': 380422, 'emailed me with': 272381, 'me with their': 524001, 'with their covid': 1001564, 'their covid 19': 872916, '19 strategy update': 10905, 'strategy update guy': 812742, 'update guy who': 947008, 'guy who detailed': 369227, 'who detailed my': 988582, 'detailed my car': 239299, 'my car like': 547603, 'car like year': 163170, 'like year ago': 491855, 'year ago an': 1014348, 'ago an indoor': 38330, 'an indoor trampoline': 56287, 'indoor trampoline park': 435369, 'trampoline park time': 929411, 'park time eliot': 642009, 'time eliot from': 896607, 'eliot from jordan': 271499, 'from jordan furniture': 336160, 'jordan furniture hannafords': 467281, 'furniture hannafords supermarket': 341956, 'hannafords supermarket literally': 376999, 'supermarket literally every': 821347, 'literally every other': 494981, 'every other company': 286065, 'other company that': 619979, 'company that somehow': 191188, 'that somehow ha': 846402, 'somehow ha my': 784320, 'ha my email': 371310, 'the opposition': 862421, 'opposition leader': 613826, 'leader is': 483480, 'three basic': 893879, 'value added': 952075, 'added tax': 31606, 'the opposition leader': 862422, 'opposition leader is': 613828, 'leader is calling': 483481, 'government to reduce': 360732, 'price of three': 675592, 'of three basic': 592142, 'three basic food': 893880, 'food item or': 315223, 'item or the': 463537, 'or the value': 617407, 'the value added': 870633, 'value added tax': 952077, 'added tax on': 31607, 'tax on them': 835050, 'on them to': 604544, 'them to help': 876477, 'help those most': 390748, 'those most vulnerable': 892227, 'to the economic': 916663, 'economic effect of': 267087, 'stayawarestaysafe': 797814, 'existing residential': 290340, 'residential stockpile': 714447, 'stockpile to': 803808, 'outbreak opines': 628504, 'opines md': 613436, 'md read': 522283, 'the interview': 858399, 'with stayawarestaysafe': 1000954, 'stayawarestaysafe coronalockdown': 797815, 'demand for existing': 235415, 'for existing residential': 321316, 'existing residential stockpile': 290341, 'residential stockpile to': 714448, 'stockpile to go': 803810, 'go up amid': 354419, 'up amid outbreak': 944280, 'amid outbreak opines': 52561, 'outbreak opines md': 628505, 'opines md read': 613437, 'md read the': 522284, 'read the interview': 700579, 'the interview with': 858402, 'interview with stayawarestaysafe': 442266, 'with stayawarestaysafe coronalockdown': 1000955, 'frb': 331501, '1980': 12443, 'pronounced': 683982, 'frb sf': 331502, 'sf new': 754252, 'news sentiment': 560779, 'index provides': 434232, 'measure sentiment': 525328, 'from 1980': 334215, '1980 to': 12446, 'today compared': 919394, 'compared with': 191445, 'with survey': 1001097, 'survey based': 828821, 'based measure': 111648, 'this index': 888089, 'show an': 766857, 'an earlier': 55536, 'more pronounced': 540159, 'pronounced drop': 683983, 'in sentiment': 427805, 'frb sf new': 331503, 'sf new daily': 754253, 'new daily news': 558589, 'daily news sentiment': 224723, 'news sentiment index': 560781, 'sentiment index provides': 750956, 'index provides way': 434233, 'way to measure': 970052, 'to measure sentiment': 909982, 'measure sentiment in': 525329, 'sentiment in real': 750949, 'real time from': 701407, 'time from 1980': 896804, 'from 1980 to': 334216, '1980 to today': 12447, 'to today compared': 917606, 'today compared with': 919395, 'compared with survey': 191447, 'with survey based': 1001098, 'survey based measure': 828822, 'based measure of': 111649, 'of consumer sentiment': 581771, 'consumer sentiment this': 198931, 'sentiment this index': 751010, 'this index show': 888090, 'index show an': 434242, 'show an earlier': 766858, 'an earlier and': 55537, 'earlier and more': 264422, 'and more pronounced': 67206, 'more pronounced drop': 540160, 'pronounced drop in': 683984, 'drop in sentiment': 260273, 'in sentiment in': 427806, 'sentiment in recent': 750950, 'or and': 614317, 'account how': 28693, 'panic lol': 638287, 'lol do': 500898, 'trust what': 934329, 'saying on': 739652, 'on tv': 604900, 'tv if': 936118, 'online panickbuying': 608728, 'panickbuying foodshortages': 639203, 'slot available with': 774142, 'available with or': 104707, 'with or and': 999933, 'or and are': 614318, 'are not accepting': 88310, 'accepting new account': 28081, 'new account how': 558316, 'account how am': 28694, 'supposed to not': 827369, 'not panic lol': 570920, 'panic lol do': 638288, 'lol do not': 500899, 'not trust what': 572289, 'trust what they': 934330, 'they re saying': 883118, 're saying on': 699429, 'saying on tv': 739653, 'on tv if': 604905, 'tv if you': 936119, 'you need food': 1019991, 'need food you': 554818, 'food you cannot': 317708, 'you cannot order': 1017871, 'order online panickbuying': 618477, 'online panickbuying foodshortages': 608729, 'covod19': 214435, 'socialdistancing added': 780190, 'supermarket hopefully': 820787, 'customer feel': 222375, 'from covod19': 335050, 'another way of': 77958, 'way of socialdistancing': 969767, 'of socialdistancing added': 589846, 'socialdistancing added at': 780191, 'added at the': 31545, 'local supermarket hopefully': 498538, 'supermarket hopefully this': 820788, 'hopefully this will': 403898, 'make the customer': 510563, 'the customer feel': 852719, 'customer feel safe': 222376, 'feel safe from': 302828, 'safe from covod19': 729693, 'bought house': 136596, 'house during': 406278, 'panic didn': 638035, 'didn think': 241234, 'house tragic': 406644, 'bought house during': 136597, 'house during the': 406280, '19 panic didn': 9544, 'panic didn think': 638036, 'didn think about': 241235, 'about buying food': 24915, 'the house tragic': 857646, 'me stock': 523549, 'time addressing': 896202, 'nation today': 552347, '19 toll': 11504, 'toll mean': 923851, 'lot lockdownnow': 504090, 'lockdownnow stayhomestaysafe': 500344, 'let me stock': 486913, 'me stock food': 523550, 'in time addressing': 430074, 'time addressing the': 896204, 'addressing the nation': 32108, 'the nation today': 861269, 'nation today the': 552349, 'today the number': 920298, 'number of 19': 576919, 'of 19 toll': 579420, '19 toll mean': 11506, 'toll mean lot': 923852, 'mean lot lockdownnow': 524539, 'lot lockdownnow stayhomestaysafe': 504091, 'delipac': 233065, 'savetheplanet': 737827, '19 change': 5761, 'work consumer': 1005001, 'habit seem': 372681, 'higher level': 395625, 'of packaging': 587650, 'packaging to': 633575, 'germ but': 346104, 'remember not': 710236, 'all packaging': 43896, 'packaging ha': 633543, 'be plastic': 116434, 'be green': 115100, 'green and': 363652, 'clean with': 180687, 'with delipac': 997957, 'delipac savetheplanet': 233066, 'covid 19 change': 212785, '19 change the': 5766, 'we live and': 972212, 'and work consumer': 75849, 'work consumer habit': 1005002, 'consumer habit seem': 197693, 'habit seem to': 372682, 'to be pointing': 901446, 'be pointing to': 116461, 'pointing to higher': 662759, 'to higher level': 907744, 'higher level of': 395626, 'level of packaging': 487650, 'of packaging to': 587652, 'packaging to protect': 633576, 'protect against germ': 684763, 'against germ but': 37464, 'germ but remember': 346105, 'but remember not': 146927, 'remember not all': 710237, 'not all packaging': 568121, 'all packaging ha': 43897, 'packaging ha to': 633544, 'to be plastic': 901441, 'be plastic can': 116435, 'plastic can you': 658826, 'still be green': 800255, 'be green and': 115101, 'green and clean': 363653, 'and clean with': 59938, 'clean with delipac': 180688, 'with delipac savetheplanet': 997958, 'anyone have': 80349, 'have resource': 382290, 'for retail': 325187, 'primarily home': 678041, 'home good': 401307, 'bev dept': 128971, 'dept we': 237751, 'about contracting': 25012, 'doe anyone have': 251338, 'anyone have resource': 80354, 'have resource for': 382291, 'resource for retail': 714790, 'for retail grocery': 325192, 'retail grocery worker': 718161, 'grocery worker to': 366193, 'to get tested': 906609, 'store work for': 811440, 'work for is': 1005156, 'for is primarily': 322673, 'is primarily home': 451026, 'primarily home good': 678042, 'home good but': 401308, 'good but because': 356846, 'but because we': 145277, 'have food bev': 380651, 'food bev dept': 313735, 'bev dept we': 128972, 'dept we have': 237752, 'open and many': 612063, 'of are worried': 580360, 'worried about contracting': 1010481, 'about contracting the': 25014, 'consciously': 194800, 'this consciously': 886836, 'it bad that': 456690, 'bad that people': 108027, 'that people would': 845714, 'people would do': 650537, 'do this consciously': 250348, 'and enough': 62153, 'calling for an': 156543, 'end to panic': 276009, 'buying and enough': 149903, 'and enough food': 62154, 'food for most': 314554, 'for most people': 323623, 'delhaize': 232876, 'privatelabel': 679005, 'stockpiling boost': 803923, 'boost sale': 135006, 'by 34': 151637, '34 at': 17806, 'at ahold': 97852, 'ahold delhaize': 39268, 'delhaize privatelabel': 232877, 'consumer stockpiling boost': 199157, 'stockpiling boost sale': 803924, 'boost sale by': 135008, 'sale by 34': 732116, 'by 34 at': 151638, '34 at ahold': 17807, 'at ahold delhaize': 97853, 'ahold delhaize privatelabel': 39269, 'fraudulently': 331485, 'keep seeing': 471917, 'of miner': 586563, 'miner shutting': 532967, 'down operation': 257053, 'operation they': 613271, 'give away': 350394, 'away commodity': 105806, 'commodity at': 189135, 'these fraudulently': 880028, 'fraudulently low': 331488, 'price turn': 677157, 'can lie': 158872, 'lie to': 488387, 'keep seeing report': 471919, 'seeing report of': 746444, 'report of miner': 712115, 'of miner shutting': 586564, 'miner shutting down': 532968, 'shutting down operation': 768270, 'down operation they': 257055, 'operation they say': 613273, 'they say it': 883272, 'say it is': 738846, 'it is because': 458882, '19 but think': 5537, 'but think they': 147537, 'are not about': 88309, 'about to give': 26719, 'to give away': 906674, 'give away commodity': 350395, 'away commodity at': 105807, 'commodity at these': 189138, 'at these fraudulently': 101201, 'these fraudulently low': 880029, 'fraudulently low price': 331489, 'low price turn': 505546, 'price turn out': 677158, 'out they can': 627544, 'they can lie': 881651, 'can lie to': 158873, 'the upper': 870503, 'upper midwest': 947696, 'midwest agricultural': 530816, 'agricultural safety': 38916, 'health center': 386256, 'center promotes': 169290, 'promotes mental': 683826, 'healthy habit': 387651, 'habit on': 372666, 'farm amid': 299076, 'caused crop': 167883, 'to fluctuate': 906025, 'fluctuate and': 311503, 'be dumped': 114618, 'the upper midwest': 870505, 'upper midwest agricultural': 947697, 'midwest agricultural safety': 530817, 'agricultural safety and': 38917, 'safety and health': 730453, 'and health center': 64350, 'health center promotes': 386259, 'center promotes mental': 169291, 'promotes mental health': 683827, 'health and healthy': 386142, 'and healthy habit': 64390, 'healthy habit on': 387652, 'habit on the': 372668, 'the farm amid': 854929, 'farm amid the': 299077, 'pandemic that ha': 636650, 'ha caused crop': 370078, 'caused crop and': 167884, 'livestock price to': 496281, 'price to fluctuate': 676992, 'to fluctuate and': 906026, 'fluctuate and milk': 311505, 'and milk to': 67021, 'milk to be': 531866, 'to be dumped': 901225, 'crisis lower gas': 217685, 'price in massachusetts': 674709, 'pragmatic': 668819, 'and pragmatic': 69308, 'pragmatic from': 668820, 'from penn': 336869, 'penn offering': 646534, 'offering consumer': 595038, 'business home': 143850, 'home broadband': 400817, 'broadband customer': 140720, 'customer unlimited': 223009, 'unlimited data': 942776, 'no extra': 564181, 'fee until': 302247, 'april 30': 83494, '2020 detail': 14275, 'smart and pragmatic': 775337, 'and pragmatic from': 69309, 'pragmatic from penn': 668821, 'from penn offering': 336870, 'penn offering consumer': 646535, 'offering consumer small': 595039, 'small business home': 774863, 'business home broadband': 143851, 'home broadband customer': 400818, 'broadband customer unlimited': 140721, 'customer unlimited data': 223010, 'unlimited data at': 942777, 'at no extra': 99893, 'no extra fee': 564183, 'extra fee until': 293510, 'fee until april': 302248, 'until april 30': 943694, 'april 30 2020': 83495, '30 2020 detail': 16931, 'anti profiteering': 78322, 'profiteering law': 683062, 'america that': 51693, 'and hardship': 64193, 'hardship prevents': 378301, 'prevents company': 671934, 'be law': 115664, 'law here': 482305, 'here any': 392725, 'any fine': 79218, 'fine given': 307640, 'helping vulnerable': 391539, 'is an anti': 445643, 'an anti profiteering': 55331, 'anti profiteering law': 78323, 'profiteering law in': 683063, 'law in america': 482312, 'in america that': 420237, 'america that during': 51694, 'that during crisis': 843651, 'crisis and hardship': 217026, 'and hardship prevents': 64195, 'hardship prevents company': 378302, 'prevents company inflating': 671936, 'essential product that': 281426, 'product that should': 681698, 'should be law': 765655, 'be law here': 115666, 'law here any': 482307, 'here any fine': 392726, 'any fine given': 79220, 'fine given to': 307641, 'given to helping': 351184, 'to helping vulnerable': 907683, 'helping vulnerable people': 391540, 'mena': 528549, 'across mena': 29387, 'mena transparency': 528564, 'transparency can': 929823, 'help lead': 389990, 'growth with': 367488, 'with enhanced': 998227, 'enhanced trust': 277102, 'open way': 612647, 'sector check': 744120, 'economic update': 267352, 'across mena transparency': 29388, 'mena transparency can': 528565, 'transparency can help': 929824, 'can help lead': 158631, 'help lead to': 389991, 'lead to growth': 483348, 'to growth with': 907050, 'growth with enhanced': 367489, 'with enhanced trust': 998228, 'enhanced trust in': 277103, 'trust in government': 934271, 'in government and': 423391, 'government and open': 359867, 'and open way': 68167, 'open way to': 612648, 'way to private': 970070, 'to private sector': 912157, 'private sector check': 678975, 'sector check out': 744121, 'new economic update': 558665, 'economic update and': 267353, 'update and the': 946866, 'impact of falling': 417772, 'price on people': 675705, 'people and economy': 646858, 'and economy in': 61924, 'goorganicnyc': 358231, 'imperfectfoods': 418346, 'ha kind': 371085, 'of completely': 581633, 'completely changed': 192230, 'way think': 969971, 'grocery ve': 366096, 've signed': 953570, 'for goorganicnyc': 321951, 'goorganicnyc and': 358232, 'and imperfectfoods': 65016, 'imperfectfoods and': 418347, 'who struggle': 989701, 'struggle binge': 814336, 'eating okay': 266264, 'with not': 999814, '19 ha kind': 7359, 'ha kind of': 371086, 'kind of completely': 474882, 'of completely changed': 581634, 'completely changed the': 192232, 'the way think': 871198, 'way think about': 969972, 'think about grocery': 885086, 'about grocery ve': 25332, 'grocery ve signed': 366098, 've signed up': 953572, 'signed up for': 769389, 'up for goorganicnyc': 944938, 'for goorganicnyc and': 321952, 'goorganicnyc and imperfectfoods': 358233, 'and imperfectfoods and': 65017, 'imperfectfoods and someone': 418348, 'and someone who': 71990, 'someone who struggle': 784771, 'who struggle binge': 989702, 'struggle binge eating': 814337, 'binge eating okay': 131075, 'eating okay with': 266265, 'okay with not': 598036, 'with not going': 999815, 'not going back': 569696, 'question remain': 693715, 'remain about': 709690, 'it consequence': 457264, 'consequence on': 194881, 'business confidence': 143564, 'confidence here': 193886, 'here region': 393515, 'region asset': 707393, 'asset management': 96442, 'management take': 512637, 'take market': 832306, 'market react': 516940, 'react this': 700144, 'question remain about': 693716, 'remain about the': 709691, 'of on our': 587223, 'on our community': 602584, 'our community and': 622448, 'community and it': 189718, 'and it consequence': 65502, 'it consequence on': 457266, 'consequence on consumer': 194882, 'habit and business': 372549, 'and business confidence': 59274, 'business confidence here': 143566, 'confidence here region': 193887, 'here region asset': 393516, 'region asset management': 707394, 'asset management take': 96444, 'management take market': 512638, 'take market react': 832307, 'market react this': 516942, 'react this week': 700145, 'eic': 270170, 'panic eic': 638063, '19 panic eic': 9545, 'here many': 393333, 'time already': 896234, 'and news': 67570, 'news outlet': 560681, 'outlet would': 629080, 'posting picture': 666683, 'would greatly': 1011851, 'greatly reduce': 363327, 'reduce stophoarding': 705939, 'sure this ha': 827752, 'ha been said': 369911, 'been said on': 121879, 'said on here': 731284, 'on here many': 601289, 'here many time': 393335, 'many time already': 514808, 'time already but': 896235, 'already but if': 47243, 'but if people': 145994, 'if people and': 414606, 'people and news': 646873, 'and news outlet': 67572, 'news outlet would': 560683, 'outlet would only': 629081, 'would only stop': 1012096, 'only stop posting': 611204, 'stop posting picture': 804928, 'posting picture of': 666684, 'empty shelf the': 275096, 'shelf the panic': 757653, 'buying would greatly': 151388, 'would greatly reduce': 1011852, 'greatly reduce stophoarding': 363328, 'reduce stophoarding stopstockpiling': 705940, 'is shame': 451822, 'shame bank': 754583, 'drug medical': 261008, 'by coronaoutbreak': 152225, 'this is shame': 888395, 'is shame bank': 451823, 'shame bank pressure': 754584, 'critical drug medical': 218544, 'drug medical supply': 261009, 'supply for coronavirus': 825261, 'for coronavirus by': 320377, 'coronavirus by coronaoutbreak': 205591, 'swot': 830638, 'enables': 275459, 'bigdata': 130137, 'cto': 220109, 'data platform': 226338, 'platform market': 659006, 'market covid': 516238, 'update analysis': 946857, 'by swot': 154194, 'swot investment': 830639, 'investment future': 443997, 'future growth': 342342, 'global big': 351759, 'market 2020': 515896, '2020 report': 14564, 'report consists': 711879, 'of powerful': 588307, 'powerful research': 667799, 'global company': 351789, 'that enables': 843704, 'enables consumer': 275462, 'the bigdata': 849631, 'bigdata cdo': 130138, 'cdo cto': 168681, 'big data platform': 129730, 'data platform market': 226340, 'platform market covid': 659008, 'market covid 19': 516239, '19 update analysis': 11655, 'update analysis by': 946858, 'analysis by swot': 57030, 'by swot investment': 154195, 'swot investment future': 830640, 'investment future growth': 443998, 'future growth and': 342343, 'growth and the': 367345, 'the global big': 856288, 'global big data': 351760, 'platform market 2020': 659007, 'market 2020 report': 515897, '2020 report consists': 14565, 'report consists of': 711880, 'consists of powerful': 195518, 'of powerful research': 588308, 'powerful research on': 667800, 'research on global': 713800, 'on global company': 601101, 'global company that': 351790, 'company that enables': 191168, 'that enables consumer': 843706, 'enables consumer to': 275463, 'consumer to look': 199319, 'at the bigdata': 100890, 'the bigdata cdo': 849632, 'bigdata cdo cto': 130139, 'how everyone': 407819, 'everyone out': 287245, 'like panicking': 490966, 'panicking over': 639363, 'tissue hand': 899153, 'crazy how everyone': 215320, 'how everyone out': 407820, 'everyone out in': 287247, 'world are like': 1009317, 'are like panicking': 87794, 'like panicking over': 490967, 'panicking over this': 639365, 'over this covid': 630816, 'have toilet tissue': 383351, 'toilet tissue hand': 921639, 'tissue hand sanitizer': 899154, 'but yet in': 147966, 'yet in store': 1016107, 'in store shelf': 428454, 'just essentially': 468677, 'essentially responded': 281911, 'responded tough': 715366, 'tough shit': 926838, 'shit to': 759262, 'how state': 408740, 'pandemic given': 635492, 'equipment said': 279825, 'before when': 123298, 'were lower': 979862, 'lower trumppressbriefing': 506042, 'trump just essentially': 933669, 'just essentially responded': 468678, 'essentially responded tough': 281912, 'responded tough shit': 715367, 'tough shit to': 926839, 'shit to the': 759265, 'to the question': 916998, 'the question about': 865012, 'about how state': 25474, 'how state are': 408741, 'state are supposed': 795391, 'supposed to navigate': 827368, 'to navigate this': 910490, 'navigate this global': 553095, 'global pandemic given': 352089, 'pandemic given price': 635493, 'given price gouging': 351086, 'gouging and shortage': 359252, 'of critical medical': 582207, 'critical medical equipment': 218604, 'medical equipment said': 526163, 'equipment said they': 279826, 'said they should': 731485, 'should ve stocked': 766627, 'stocked up before': 803435, 'up before when': 944483, 'before when price': 123299, 'when price were': 983904, 'price were lower': 677452, 'were lower trumppressbriefing': 979864, 'to bharat': 901801, 'bharat band': 129342, 'band and': 109331, 'virus many': 958484, 'too please': 925001, 'them if': 875879, 'due to bharat': 261711, 'to bharat band': 901802, 'bharat band and': 129343, 'band and corona': 109332, 'and corona virus': 60565, 'corona virus many': 204325, 'virus many people': 958485, 'food too please': 317335, 'too please help': 925002, 'help them if': 390707, 'them if you': 875885, 'new head': 558865, 'of hr': 584850, 'hr workfromhome': 409678, 'workfromhome buddy': 1008412, 'buddy isolation': 141738, 'my new head': 549462, 'new head of': 558866, 'head of hr': 385770, 'of hr workfromhome': 584851, 'hr workfromhome buddy': 409679, 'workfromhome buddy isolation': 1008413, 'also got': 48284, 'of stare': 590047, 'stare from': 794130, 'the albertsons': 848555, 'albertsons grocery': 40853, 'least have': 484500, 'line because': 493002, 'manager saw': 512781, 'saw only': 738197, 'had two': 373771, 'two loaf': 937011, 'bread either': 138455, 'either he': 270318, 'nice or': 562452, 'possible threat': 665830, 'me having': 522866, 'also got lot': 48285, 'got lot of': 358681, 'lot of stare': 504287, 'of stare from': 590048, 'stare from everyone': 794131, 'from everyone at': 335334, 'everyone at the': 286718, 'at the albertsons': 100874, 'the albertsons grocery': 848556, 'albertsons grocery store': 40854, 'store but at': 806782, 'at least have': 99504, 'least have to': 484501, 'have to cut': 383188, 'cut the line': 223577, 'the line because': 859404, 'line because the': 493005, 'because the store': 119650, 'the store manager': 868057, 'store manager saw': 808889, 'manager saw only': 512782, 'saw only had': 738198, 'only had two': 610563, 'had two loaf': 373774, 'two loaf of': 937012, 'of bread either': 580838, 'bread either he': 138456, 'either he wa': 270319, 'he wa really': 385614, 'wa really nice': 963065, 'really nice or': 702454, 'nice or he': 562453, 'or he wanted': 615602, 'wanted to eliminate': 966252, 'eliminate the possible': 271464, 'the possible threat': 864077, 'possible threat of': 665831, 'threat of me': 893695, 'of me having': 586331, 'me having covid': 522867, 'is reference': 451385, 'reference website': 706508, 'here is reference': 393245, 'is reference website': 451386, 'from webinar': 338314, 'webinar brand': 975019, 'brand building': 137775, 'building in': 142090, 'insight from webinar': 439558, 'from webinar brand': 338315, 'webinar brand building': 975020, 'brand building in': 137776, 'building in uncertain': 142091, 'roaring': 724582, 'fault but': 300397, 'all asked': 42070, 'the roaring': 865944, 'roaring 20': 724583, '20 to': 13389, 'they came': 881599, 'throttle pandemic': 894278, 'crash food': 214976, 'shortage job': 765048, 'closure just': 183930, 'not saying it': 571444, 'saying it your': 739631, 'it your fault': 462658, 'your fault but': 1023815, 'fault but you': 300399, 'but you all': 147975, 'you all asked': 1016866, 'all asked for': 42071, 'asked for the': 95750, 'for the roaring': 326662, 'the roaring 20': 865945, 'roaring 20 to': 724586, '20 to come': 13395, 'come back and': 187232, 'back and they': 106867, 'and they came': 73894, 'they came back': 881600, 'came back at': 156973, 'back at full': 106886, 'full throttle pandemic': 340931, 'throttle pandemic stock': 894279, 'pandemic stock market': 636556, 'market crash food': 516243, 'crash food and': 214977, 'supply shortage job': 825834, 'shortage job loss': 765049, 'loss and bar': 503632, 'and bar closure': 58696, 'bar closure just': 110693, 'closure just saying': 183931, 'sapiens': 736687, 'culture wa': 220312, 'not homo': 570008, 'homo sapiens': 403027, 'sapiens directly': 736688, 'directly crazy': 243533, 'how nature': 408400, 'nature put': 552977, 'put governor': 690587, 'governor on': 360957, 'on humanity': 601446, 'humanity if': 410734, 'we reach': 973005, 'reach she': 699978, 'll reach': 496967, 'capitalism and consumer': 162717, 'and consumer culture': 60367, 'consumer culture wa': 197036, 'culture wa the': 220313, 'wa the virus': 963476, 'virus the entire': 958884, 'entire time not': 278759, 'time not homo': 897291, 'not homo sapiens': 570009, 'homo sapiens directly': 403028, 'sapiens directly crazy': 736689, 'directly crazy how': 243534, 'crazy how nature': 215323, 'how nature put': 408401, 'nature put governor': 552978, 'put governor on': 690588, 'governor on humanity': 360958, 'on humanity if': 601447, 'humanity if we': 410736, 'if we reach': 415302, 'we reach she': 973006, 'reach she ll': 699979, 'she ll reach': 756199, '594': 20586, 'of 594': 579632, '594 person': 20591, 'person were': 652706, 'were arrested': 979339, 'arrested by': 93822, 'by authority': 151914, 'authority due': 103711, 'and manipulation': 66646, 'commodity amid': 189119, 'freeze being': 332518, 'being enforced': 125108, 'enforced the': 276729, 'country grapple': 210699, 'total of 594': 926210, 'of 594 person': 579634, '594 person were': 20592, 'person were arrested': 652707, 'were arrested by': 979341, 'arrested by authority': 93824, 'by authority due': 151916, 'authority due to': 103712, 'to hoarding and': 907895, 'hoarding and or': 399183, 'and or profiteering': 68225, 'or profiteering and': 616721, 'profiteering and manipulation': 683000, 'and manipulation of': 66647, 'basic commodity amid': 111846, 'commodity amid the': 189121, 'amid the price': 52710, 'price freeze being': 674101, 'freeze being enforced': 332519, 'being enforced the': 125111, 'enforced the country': 276730, 'the country grapple': 852088, 'country grapple with': 210700, 'messaged': 529494, 'wife just': 991939, 'just messaged': 469262, 'messaged me': 529495, 'empty know': 274933, 'what for': 981466, 'dinner tonight': 243104, 'my wife just': 550594, 'wife just messaged': 991940, 'just messaged me': 469263, 'messaged me to': 529496, 'me to say': 523777, 'say the supermarket': 739306, 'were empty know': 979569, 'empty know what': 274934, 'know what for': 476949, 'what for dinner': 981467, 'for dinner tonight': 320725, 'excursion': 289733, 'aplenty': 81480, '1st excursion': 12737, 'excursion out': 289734, 'day gt': 227706, 'gt midtown': 367617, 'midtown manhattan': 530802, 'manhattan grocery': 513135, 'shelf bit': 756894, 'bit light': 131603, 'light still': 489600, 'still well': 801404, 'stocked lot': 803352, 'veggie meat': 954191, 'meat fish': 525569, 'fish chicken': 309302, 'chicken canned': 175765, 'good aplenty': 356763, 'aplenty frozen': 81481, 'frozen minimal': 338995, 'minimal entire': 533056, 'entire staff': 278741, 'staff mask': 792640, 'glove only': 352832, 'customer back': 222160, '20 min': 13164, '1st excursion out': 12738, 'excursion out in': 289735, 'in day gt': 422011, 'day gt midtown': 227707, 'gt midtown manhattan': 367618, 'midtown manhattan grocery': 530803, 'manhattan grocery store': 513136, 'store shelf bit': 810063, 'shelf bit light': 756895, 'bit light still': 131604, 'light still well': 489601, 'still well stocked': 801405, 'well stocked lot': 978599, 'stocked lot of': 803353, 'of fresh fruit': 583945, 'fruit veggie meat': 339190, 'veggie meat fish': 954192, 'meat fish chicken': 525571, 'fish chicken canned': 309303, 'chicken canned good': 175766, 'canned good aplenty': 161531, 'good aplenty frozen': 356764, 'aplenty frozen minimal': 81482, 'frozen minimal entire': 338996, 'minimal entire staff': 533057, 'entire staff mask': 278742, 'staff mask glove': 792641, 'mask glove only': 518740, 'glove only 10': 352833, 'only 10 customer': 609964, '10 customer back': 1375, 'customer back home': 222161, 'back home in': 107060, 'home in 20': 401409, 'in 20 min': 419740, 'fixed the': 309835, 'and overcharging': 68570, 'overcharging any': 631101, 'any such': 79878, 'such incident': 816567, 'overcharging may': 631107, 'may kindly': 521310, 'kindly be': 475110, 'be reported': 116802, 'to administration': 900110, 'administration 19': 32445, 'very much needed': 955365, 'step the govt': 799635, 'the govt ha': 856659, 'govt ha fixed': 361143, 'ha fixed the': 370633, 'fixed the price': 309836, 'commodity like mask': 189210, 'prevent the black': 671728, 'the black marketing': 849743, 'marketing and overcharging': 517523, 'and overcharging any': 68571, 'overcharging any such': 631102, 'any such incident': 79879, 'such incident of': 816568, 'incident of overcharging': 431424, 'of overcharging may': 587626, 'overcharging may kindly': 631108, 'may kindly be': 521311, 'kindly be reported': 475111, 'be reported to': 116805, 'reported to administration': 712556, 'to administration 19': 900111, 'continue your': 201299, 'your research': 1025588, 'research project': 713819, 'project in': 683501, 'in virtual': 430600, 'virtual manner': 957754, 'manner during': 513298, 'offering open': 595204, 'open access': 612013, 'here marketresearch': 393338, 'marketresearch mrx': 517862, 'mrx insight': 544480, 'need to continue': 555895, 'to continue your': 903413, 'continue your research': 201300, 'your research project': 1025589, 'research project in': 713820, 'project in virtual': 683502, 'in virtual manner': 430601, 'virtual manner during': 957755, 'manner during the': 513299, 'pandemic we would': 636959, 'like to help': 491596, 'are offering open': 88672, 'offering open access': 595205, 'open access to': 612014, 'access to our': 28266, 'our consumer research': 622548, 'consumer research community': 198751, 'research community learn': 713699, 'more here marketresearch': 539427, 'here marketresearch mrx': 393339, 'marketresearch mrx insight': 517863, 'morrisey': 541688, 'ag morrisey': 36809, 'morrisey office': 541689, 'office ha': 595430, 'received around': 703599, 'around 600': 93156, '600 call': 21071, 'call related': 156090, 'gouging of': 359401, 'ag morrisey office': 36810, 'morrisey office ha': 541690, 'office ha received': 595433, 'ha received around': 371662, 'received around 600': 703600, 'around 600 call': 93157, '600 call related': 21072, 'call related to': 156091, 'related to price': 708617, 'to price gouging': 912120, 'price gouging of': 674305, 'gouging of consumer': 359402, 'of consumer product': 581761, 'while think': 987447, 'idea don': 413040, 'don like': 253698, 'of queuing': 588695, 'such mess': 816638, 'mess and': 529218, 'chinese disgusting': 177242, 'disgusting tesco': 245460, 'while think it': 987448, 'think it good': 885332, 'good idea don': 357210, 'idea don like': 413041, 'don like the': 253703, 'like the order': 491388, 'order of queuing': 618447, 'of queuing up': 588697, 'up to get': 946381, 'into supermarket this': 443062, 'supermarket this world': 823323, 'this world is': 891514, 'is in such': 448819, 'in such mess': 428528, 'such mess and': 816639, 'mess and it': 529219, 'it all because': 456337, 'the chinese disgusting': 850852, 'chinese disgusting tesco': 177243, 'york county': 1016599, 'county company': 211342, 'company produce': 190978, 'donate hand': 254186, 'york county company': 1016600, 'county company produce': 211343, 'company produce and': 190979, 'produce and donate': 680180, 'and donate hand': 61647, 'donate hand sanitizer': 254187, 'sanitizer to first': 735922, 'virtual queue': 957775, 'queue just': 693975, 'website we': 975471, 'not looking': 570459, 'virtual queue just': 957777, 'queue just to': 693976, 'the supermarket website': 868893, 'supermarket website we': 823768, 'website we are': 975472, 'are not looking': 88413, 'not looking to': 570462, 'looking to stock': 503047, 'up but have': 944522, 'to go through': 906870, 'go through this': 354255, 'swathe': 830018, 'hate grocery': 378886, 'general but': 345291, 'but swear': 147252, 'swear doing': 830025, 'online next': 608577, 'next shop': 561551, 'not deal': 568963, 'the swathe': 869046, 'swathe of': 830019, 'buyer at': 149582, 'all 19': 41887, 'anxiety panicbuyinguk': 78775, 'panicbuyinguk moron': 639138, 'hate grocery shopping': 378887, 'shopping in general': 762964, 'in general but': 423246, 'general but swear': 345292, 'but swear doing': 147253, 'swear doing it': 830026, 'doing it online': 252487, 'it online next': 460083, 'online next shop': 608578, 'next shop can': 561552, 'shop can not': 760017, 'can not deal': 159044, 'not deal with': 568964, 'with the swathe': 1001510, 'the swathe of': 869047, 'swathe of panic': 830020, 'of panic buyer': 587722, 'panic buyer at': 637556, 'buyer at all': 149583, 'at all 19': 97866, 'all 19 anxiety': 41888, '19 anxiety panicbuyinguk': 5162, 'anxiety panicbuyinguk moron': 78776, 'if house': 414244, 'fall investor': 296975, 'investor can': 444129, 'up house': 945117, 'higher yield': 395802, 'yield especially': 1016367, 'especially rent': 280582, 'rent are': 711046, 'are unlikely': 91322, 'much sale': 545287, 'sale value': 732628, 'value report': 952191, 'buy to': 149372, 'let investor': 486819, 'investor ready': 444199, 'to swoop': 916105, 'swoop on': 830624, 'on market': 602032, 'market downturn': 516310, 'if house price': 414246, 'house price fall': 406481, 'price fall investor': 673787, 'fall investor can': 296976, 'investor can pick': 444130, 'pick up house': 655730, 'up house with': 945120, 'house with higher': 406689, 'with higher yield': 998815, 'higher yield especially': 395803, 'yield especially rent': 1016368, 'especially rent are': 280583, 'rent are unlikely': 711047, 'are unlikely to': 91325, 'unlikely to fall': 942766, 'to fall much': 905637, 'fall much sale': 296994, 'much sale value': 545288, 'sale value report': 732629, 'value report on': 952193, 'on the buy': 604005, 'the buy to': 850220, 'buy to let': 149373, 'to let investor': 909205, 'let investor ready': 486820, 'investor ready to': 444200, 'ready to swoop': 700983, 'to swoop on': 916106, 'swoop on market': 830625, 'on market downturn': 602034, 'walking your': 965127, 'outside also': 629363, 'also use': 49049, 'everyone stay safe': 287405, 'safe and be': 729434, 'and be careful': 58746, 'careful when walking': 164455, 'when walking your': 984418, 'walking your dog': 965128, 'your dog and': 1023553, 'dog and going': 252032, 'and going outside': 63808, 'going outside also': 355406, 'outside also use': 629364, 'also use hand': 49050, 'sanitizer and wash': 734455, 'after donald': 35577, 'expected saudi': 290934, 'war oilandgas': 966499, 'risen after donald': 723095, 'after donald trump': 35578, 'he expected saudi': 384940, 'expected saudi arabia': 290935, 'and russia to': 70682, 'end their price': 275986, 'their price war': 874435, 'price war oilandgas': 677364, 'war oilandgas oilprice': 966500, 'aisle of': 40323, 'of walmart': 592891, 'say her': 738747, 'her timing': 392456, 'perfect due': 651284, 'trending trend': 931574, 'trend truedat': 931490, 'birth in the': 131401, 'in the toiletpaper': 429615, 'the toiletpaper aisle': 869720, 'toiletpaper aisle of': 921702, 'aisle of walmart': 40331, 'of walmart customer': 592892, 'walmart customer cheer': 965308, 'doctor say her': 251092, 'say her timing': 738748, 'her timing wa': 392457, 'wa perfect due': 962926, 'perfect due to': 651285, 'fact that it': 295801, 'that it wa': 844756, 'stampede trending trend': 793449, 'trending trend truedat': 931576, 'trend truedat socialdistancing': 931491, 'covid 19 dubai': 212989, 'could close': 209021, 'public before': 687896, 'someone dy': 784439, 'dy next': 263740, 'time lowe': 897168, 'lowe close': 505766, 'maybe you could': 521894, 'you could close': 1018079, 'could close the': 209022, 'general public before': 345446, 'public before someone': 687897, 'before someone dy': 123092, 'someone dy next': 784440, 'dy next time': 263741, 'next time lowe': 561604, 'time lowe close': 897169, 'lowe close harper': 505767, 'organizer': 619485, 'deport': 237485, 'the scientist': 866505, 'scientist researching': 742250, 'researching covid': 713945, 'the political': 863947, 'political organizer': 663667, 'organizer calling': 619486, 'for rent': 325116, 'freeze and': 332513, 'other but': 619921, 'police those': 663244, 'those bastard': 891838, 'bastard are': 112462, 'to arrest': 900722, 'arrest and': 93748, 'and deport': 61223, 'deport people': 237486, 'thank the scientist': 841646, 'the scientist researching': 866510, 'scientist researching covid': 742251, 'researching covid 19': 713946, '19 the grocery': 11202, 'store worker the': 811602, 'driver the political': 259792, 'the political organizer': 863948, 'political organizer calling': 663668, 'organizer calling for': 619487, 'calling for rent': 156559, 'for rent freeze': 325120, 'rent freeze and': 711095, 'freeze and those': 332515, 'those who help': 892640, 'who help each': 988985, 'each other but': 264161, 'other but not': 619923, 'not the police': 572022, 'the police those': 863933, 'police those bastard': 663245, 'those bastard are': 891839, 'bastard are still': 112464, 'trying to arrest': 934766, 'to arrest and': 900723, 'arrest and deport': 93749, 'and deport people': 61224, 'alcoholbrands': 41198, 'helpingbrands': 391557, 'alcohol brand': 40947, 'brand like': 137886, 'like have': 490382, 'have converted': 380110, 'converted their': 202557, 'their facility': 873233, 'facility to': 295386, 'sanitizer here': 735079, 'other brand': 619904, 'circumstance alcoholbrands': 178700, 'alcoholbrands pandemic': 41199, 'pandemic helpingbrands': 635616, 'helpingbrands handsanitizer': 391558, 'alcohol brand like': 40948, 'brand like have': 137889, 'like have converted': 490384, 'have converted their': 380111, 'converted their facility': 202558, 'their facility to': 873234, 'facility to make': 295388, 'hand sanitizer here': 375441, 'sanitizer here are': 735080, 'are some other': 90278, 'some other brand': 783475, 'other brand that': 619905, 'brand that are': 138031, 'that are helping': 842758, 'are helping during': 87093, 'helping during these': 391314, 'these difficult circumstance': 879924, 'difficult circumstance alcoholbrands': 242200, 'circumstance alcoholbrands pandemic': 178701, 'alcoholbrands pandemic helpingbrands': 41200, 'pandemic helpingbrands handsanitizer': 635617, 'zerowaste': 1027522, 'not log': 570451, 'log in': 500613, 'on zerowaste': 605532, 'zerowaste do': 1027523, 'worry tune': 1010789, 'in follow': 422955, 'the live': 859497, 'live streaming': 496035, 'streaming on': 812832, 'our channel': 622359, 'you could not': 1018096, 'could not log': 209448, 'not log in': 570452, 'log in for': 500614, 'in for our': 423020, 'for our webinar': 324308, 'our webinar on': 625323, 'webinar on zerowaste': 975083, 'on zerowaste do': 605533, 'zerowaste do not': 1027524, 'not worry tune': 572573, 'worry tune in': 1010790, 'tune in follow': 935404, 'in follow the': 422956, 'follow the live': 312536, 'the live streaming': 859502, 'live streaming on': 496037, 'streaming on our': 812833, 'on our channel': 602583, 'continued health': 201325, 'are announcing': 84562, 'announcing several': 77323, 'several cost': 753813, 'cutting measure': 223742, 'executive leader': 289909, 'leader retail': 483525, 'and merchandise': 66954, 'merchandise coordinator': 528970, 'coordinator learn': 203239, 'ensure the continued': 278083, 'the continued health': 851671, 'continued health of': 201326, 'of our business': 587429, 'our business during': 622286, 'we are announcing': 970480, 'are announcing several': 84565, 'announcing several cost': 77324, 'several cost cutting': 753814, 'cost cutting measure': 207903, 'cutting measure that': 223743, 'measure that will': 525363, 'will impact our': 993784, 'impact our executive': 417912, 'our executive leader': 622946, 'executive leader retail': 289910, 'leader retail store': 483526, 'employee and merchandise': 273569, 'and merchandise coordinator': 66955, 'merchandise coordinator learn': 528971, 'coordinator learn more': 203240, 'isl': 454251, 'getting anxious': 348842, 'anxious when': 78878, 'supermarket isl': 821140, 'isl so': 454252, 'or care': 614670, 'home caring': 400883, 'disease they': 245255, 'getting anxious when': 348843, 'anxious when there': 78879, 'when there other': 984230, 'there other people': 878904, 'my supermarket isl': 550272, 'supermarket isl so': 821141, 'isl so cannot': 454253, 'so cannot imagine': 776741, 'what it must': 981755, 'must be like': 546521, 'be like in': 115736, 'like in hospital': 490490, 'in hospital or': 423812, 'hospital or care': 404536, 'or care home': 614672, 'care home caring': 163992, 'home caring for': 400884, 'people with this': 650477, 'with this disease': 1001691, 'this disease they': 887255, 'disease they really': 245257, 'really are hero': 701988, 'coronaeconomics': 204932, 'is decline': 447059, 'outbreak likely': 628422, 'than economics': 840538, 'economics coronaeconomics': 267443, 'how is decline': 408090, 'is decline in': 447060, '19 outbreak likely': 9151, 'outbreak likely to': 628423, 'likely to affect': 492127, 'to affect the': 900149, 'explains that it': 292226, 'that it could': 844700, 'it could lead': 457361, 'more than economics': 540613, 'than economics coronaeconomics': 840539, 'them cut': 875575, 'cut food': 223338, 'of government to': 584279, 'government to help': 360719, 'help them cut': 390703, 'them cut food': 875576, 'cut food waste': 223339, 'waste and redistribute': 968077, 'tonne of stock': 924542, 'of stock during': 590158, 'than pro': 841044, 'important than pro': 418998, 'than pro athlete': 841045, 'pro athlete actor': 679098, '19 diary': 6538, 'diary social': 240423, 'distancing day': 247092, 'attack when': 102173, 'so normally': 777895, 'normally order': 567517, 'order my': 618402, 'grocery but': 364326, 'is immunocompromised': 448681, 'immunocompromised so': 417481, 'go survived': 354187, 'survived hope': 829319, 'hope never': 403546, 'covid 19 diary': 212951, '19 diary social': 6540, 'diary social distancing': 240424, 'social distancing day': 779586, 'distancing day have': 247094, 'day have panic': 227733, 'panic attack when': 637385, 'attack when go': 102174, 'store so normally': 810231, 'so normally order': 777896, 'normally order my': 567518, 'order my grocery': 618404, 'my grocery but': 548568, 'grocery but cannot': 364328, 'but cannot do': 145380, 'do that right': 250225, 'that right now': 846052, 'now and my': 574045, 'and my husband': 67372, 'husband is immunocompromised': 411724, 'is immunocompromised so': 448685, 'immunocompromised so had': 417483, 'to go survived': 906860, 'go survived hope': 354188, 'survived hope never': 829320, 'hope never have': 403547, 'never have to': 558055, 'to go again': 906761, 'assistant from': 96778, 'brescia she': 139386, 'went home': 979030, 'for she': 325539, 'shop assistant from': 759934, 'assistant from supermarket': 96779, 'in brescia she': 420966, 'brescia she went': 139387, 'she went home': 756462, 'went home earlier': 979031, 'with high temperature': 998807, 'high temperature and': 395456, 'temperature and died': 837359, 'today she had': 920166, 'she had tested': 756105, 'positive for she': 665326, 'for she wa': 325540, 'she wa 48': 756406, 'greene': 363735, '1340': 3333, 'wgrv': 980890, 'census': 169020, 'the greene': 856782, 'greene county': 363736, 'county mayor': 211437, 'mayor interview': 521964, 'interview begin': 442210, 'begin after': 123498, 'on 99': 599127, '99 fm': 23815, 'fm am': 311691, 'am 1340': 49832, '1340 wgrv': 3336, 'wgrv and': 980891, 'channel 18': 172852, '18 they': 4590, 'will talk': 995091, 'old cu': 598201, 'cu building': 220131, 'building update': 142149, '2020 census': 14218, 'census and': 169021, 'two high': 936956, 'school plan': 741902, 'plan study': 658230, 'the greene county': 856783, 'greene county mayor': 363737, 'county mayor interview': 211438, 'mayor interview begin': 521965, 'interview begin after': 442211, 'begin after the': 123499, 'after the 10': 36281, 'the 10 00': 847853, '10 00 am': 1190, '00 am news': 55, 'am news on': 50235, 'news on 99': 560660, 'on 99 fm': 599128, '99 fm am': 23816, 'fm am 1340': 311692, 'am 1340 wgrv': 49833, '1340 wgrv and': 3337, 'wgrv and channel': 980892, 'and channel 18': 59738, 'channel 18 they': 172853, '18 they will': 4592, 'they will talk': 883895, 'will talk about': 995092, 'about the old': 26464, 'the old cu': 862133, 'old cu building': 598202, 'cu building update': 220132, 'building update covid': 142150, '19 the 2020': 11166, 'the 2020 census': 848018, '2020 census and': 14219, 'census and the': 169022, 'and the two': 73628, 'the two high': 870151, 'two high school': 936957, 'high school plan': 395395, 'school plan study': 741903, 'strengthening': 813263, 'around hundred': 93336, 'hundred people': 411026, 'people crowd': 647586, 'crowd the': 219263, 'denis paris': 236994, 'paris suburb': 641836, 'suburb the': 816129, 'president macron': 670849, 'macron announcement': 507492, 'announcement strengthening': 77203, 'strengthening travel': 813270, 'of afp': 579816, 'around hundred people': 93337, 'hundred people crowd': 411027, 'people crowd the': 647588, 'crowd the door': 219265, 'saint denis paris': 731814, 'denis paris suburb': 236995, 'paris suburb the': 641837, 'suburb the day': 816130, 'day after president': 227185, 'after president macron': 36062, 'president macron announcement': 670850, 'macron announcement strengthening': 507493, 'announcement strengthening travel': 77204, 'strengthening travel restriction': 813271, 'restriction in the': 717298, 'face of afp': 294646, 'for website': 327680, 'be who': 118101, 'any product': 79691, 'the say to': 866397, 'say to watch': 739397, 'out for website': 626170, 'for website that': 327681, 'website that claim': 975428, 'to have hand': 907249, 'sanitizer or medical': 735489, 'supply for sale': 825276, 'for sale it': 325318, 'sale it could': 732316, 'could be who': 208940, 'be who don': 118102, 'don have any': 253589, 'have any product': 379314, 'any product and': 79692, 'product and are': 680874, 'and are just': 58327, 'are just after': 87614, 'just after your': 468173, 'after your money': 36618, 'casa central': 165553, 'central is': 169403, 'receiving donation': 703761, 'of unused': 592670, 'unused homemade': 943971, 'video below': 956636, 'below donation': 126632, 'casa central is': 165554, 'central is receiving': 169404, 'is receiving donation': 451340, 'receiving donation of': 703762, 'donation of unused': 254656, 'of unused homemade': 592671, 'unused homemade mask': 943972, 'homemade mask and': 402837, 'sanitizer please watch': 735556, 'please watch video': 660757, 'watch video below': 968602, 'video below donation': 956638, 'coralee': 203482, 'coralee still': 203483, 'working till': 1008970, 'till friday': 896020, 'friday then': 333296, 'then teaching': 877598, 'with sister': 1000749, 'sister and': 771714, 'coralee still working': 203484, 'still working till': 801442, 'working till friday': 1008971, 'till friday then': 896021, 'friday then teaching': 333297, 'then teaching online': 877599, 'teaching online only': 835559, 'online only then': 608634, 'then will spend': 877769, 'will spend time': 994917, 'time with sister': 898358, 'with sister and': 1000750, 'sister and grocery': 771716, 'hi world': 394779, 'food stayathome': 316755, 'hi world did': 394780, 'enough food stayathome': 277411, 'colluded': 186672, 'shadowy': 754349, 'nudge': 576766, 'psyop': 687597, 'profiteered': 682991, 'fist': 309442, 'england supermarket': 277031, 'all failed': 42743, 'failed they': 296168, 'have colluded': 380019, 'colluded with': 186673, 'the shadowy': 866765, 'shadowy nudge': 754350, 'nudge unit': 576769, 'unit panic': 942083, 'buying psyop': 150936, 'psyop ensuring': 687598, 'ensuring food': 278175, 'shortage haven': 764990, 'haven shopped': 383897, 'shopped at': 761295, 'month now': 537886, 'now may': 575293, 'one again': 605875, 'again they': 37221, 'have profiteered': 382066, 'profiteered hand': 682992, 'over fist': 630212, 'fist out': 309445, 'england supermarket have': 277032, 'supermarket have all': 820677, 'have all failed': 379155, 'all failed they': 42744, 'failed they have': 296169, 'they have colluded': 882302, 'have colluded with': 380020, 'colluded with the': 186674, 'with the shadowy': 1001475, 'the shadowy nudge': 866766, 'shadowy nudge unit': 754351, 'nudge unit panic': 576770, 'unit panic buying': 942084, 'panic buying psyop': 637854, 'buying psyop ensuring': 150937, 'psyop ensuring food': 687599, 'ensuring food shortage': 278176, 'food shortage haven': 316581, 'shortage haven shopped': 764991, 'haven shopped at': 383898, 'shopped at supermarket': 761298, 'supermarket for over': 820412, 'over month now': 630408, 'month now may': 537888, 'now may never': 575295, 'may never shop': 521367, 'never shop at': 558191, 'at one again': 99966, 'one again they': 605876, 'again they have': 37223, 'they have profiteered': 882366, 'have profiteered hand': 382067, 'profiteered hand over': 682993, 'hand over fist': 375169, 'over fist out': 630213, 'fist out of': 309446, 'healthy protect': 387739, 'from disease': 335157, 'disease maintain': 245180, 'practice healthy': 668586, 'lifestyle food': 489360, 'avoid travel': 105366, 'travel if': 930386, 'possible india': 665683, 'don panic stay': 253813, 'panic stay healthy': 638623, 'stay healthy protect': 796914, 'healthy protect yourself': 387740, 'yourself amp others': 1026516, 'amp others from': 54253, 'others from disease': 621419, 'from disease maintain': 335158, 'disease maintain social': 245181, 'distancing practice healthy': 247405, 'practice healthy lifestyle': 668587, 'healthy lifestyle food': 387680, 'lifestyle food safety': 489361, 'safety and avoid': 730448, 'and avoid travel': 58579, 'avoid travel if': 105367, 'travel if possible': 930387, 'if possible india': 414668, 'primed': 678175, 'are primed': 89223, 'primed to': 678176, 'advantage in': 32977, 'check may': 174487, 'be issued': 115555, 'issued to': 456104, 'american the': 52248, 'issued the': 456102, 'following guidance': 312744, 'guidance scam': 368275, 'scammer are primed': 740541, 'are primed to': 89224, 'primed to take': 678177, 'take advantage in': 831916, 'advantage in time': 32979, 'of crisis with': 582197, 'crisis with report': 218430, 'with report that': 1000463, 'report that government': 712321, 'that government check': 844060, 'government check may': 359976, 'check may be': 174488, 'may be issued': 520997, 'be issued to': 115556, 'issued to american': 456105, 'to american the': 900421, 'american the ha': 52249, 'the ha issued': 856997, 'ha issued the': 371008, 'issued the following': 456103, 'the following guidance': 855507, 'following guidance scam': 312745, 'guidance scam fraud': 368276, 'disinterested': 245951, 'always crap': 49523, 'and disinterested': 61467, 'disinterested when': 245952, 'it came': 457001, 'to computer': 903157, 'computer game': 192735, 'evening trip': 284920, 'supermarket felt': 820297, 'if number': 414524, 'shopper didn': 761476, 'didn pick': 241162, 'there this': 879168, 'evening socialdistancing': 284899, 'aisle isn': 40288, 'isn easy': 454479, 'wa always crap': 961512, 'always crap and': 49524, 'crap and disinterested': 214880, 'and disinterested when': 61468, 'disinterested when it': 245953, 'when it came': 983625, 'it came to': 457003, 'came to computer': 157065, 'to computer game': 903158, 'computer game and': 192736, 'game and that': 343120, 'and that what': 73219, 'that what this': 847472, 'what this evening': 982433, 'this evening trip': 887449, 'evening trip to': 284921, 'the supermarket felt': 868589, 'supermarket felt like': 820298, 'felt like ll': 303411, 'like ll be': 490659, 'll be surprised': 496633, 'surprised if number': 828585, 'if number of': 414525, 'number of shopper': 576991, 'of shopper didn': 589640, 'shopper didn pick': 761477, 'didn pick up': 241163, 'up in there': 945186, 'in there this': 429821, 'there this evening': 879169, 'this evening socialdistancing': 887444, 'evening socialdistancing in': 284900, 'the aisle isn': 848525, 'aisle isn easy': 40289, 'elpaso': 271600, 'supportelpaso': 827076, 'open no': 612398, 'whole store': 990334, 'now continue': 574439, 'continue about': 200982, 'life just': 488830, 'safe wash': 730107, 'hand elpaso': 374912, 'elpaso elpasostrong': 271601, 'elpasostrong supportlocal': 271604, 'supportlocal supportelpaso': 827267, 'supportelpaso wewillgetthroughthis': 827077, 'wewillgetthroughthis washyourhands': 980801, 'store will still': 811348, 'be open no': 116249, 'open no need': 612400, 'hoard or go': 398844, 'or go buy': 615487, 'go buy the': 353395, 'the whole store': 871507, 'whole store right': 990337, 'right now continue': 722044, 'now continue about': 574440, 'continue about your': 200983, 'about your life': 27003, 'your life just': 1024637, 'life just stay': 488831, 'stay safe wash': 797293, 'safe wash your': 730109, 'your hand elpaso': 1024185, 'hand elpaso elpasostrong': 374913, 'elpaso elpasostrong supportlocal': 271602, 'elpasostrong supportlocal supportelpaso': 271605, 'supportlocal supportelpaso wewillgetthroughthis': 827268, 'supportelpaso wewillgetthroughthis washyourhands': 827078, 'curtailing': 221790, 'kansascity': 470830, 'zillow': 1027566, 'one key': 606556, 'to curtailing': 903836, 'curtailing the': 221793, 'the kansascity': 858729, 'kansascity housing': 470831, 'is relief': 451418, 'from government': 335673, 'homeowner zillow': 402894, 'zillow economist': 1027567, 'one key to': 606557, 'key to curtailing': 473433, 'to curtailing the': 903837, 'curtailing the effect': 221794, 'on the kansascity': 604196, 'the kansascity housing': 858730, 'kansascity housing market': 470832, 'market is relief': 516638, 'is relief from': 451419, 'relief from government': 709347, 'from government for': 335675, 'government for homeowner': 360099, 'for homeowner zillow': 322357, 'homeowner zillow economist': 402895, 'zillow economist say': 1027568, 'recruited': 705471, 'britain biggest': 140385, 'biggest retailer': 130313, 'retailer tesco': 719352, 'tesco said': 838787, 'tuesday that': 935187, 'it recruited': 460673, 'recruited over': 705474, '45 00': 19056, 'outbreak sparked': 628642, 'sparked stockpiling': 787590, 'stockpiling surge': 804090, 'surge while': 828277, 'worker fell': 1006925, 'fell ill': 303199, 'britain biggest retailer': 140386, 'biggest retailer tesco': 130316, 'retailer tesco said': 719353, 'tesco said tuesday': 838788, 'said tuesday that': 731542, 'tuesday that it': 935190, 'that it recruited': 844736, 'it recruited over': 460674, 'recruited over 45': 705475, 'over 45 00': 629851, '45 00 staff': 19059, '00 staff in': 496, 'two week the': 937368, 'week the outbreak': 977000, 'the outbreak sparked': 862694, 'outbreak sparked stockpiling': 628643, 'sparked stockpiling surge': 787591, 'stockpiling surge while': 804091, 'surge while many': 828278, 'while many supermarket': 987039, 'many supermarket worker': 514766, 'supermarket worker fell': 824020, 'worker fell ill': 1006926, 'czech': 224156, 'andrew if': 76184, 'exercise please': 290087, 'the czech': 852762, 'czech lead': 224157, 'lead the': 483318, 'way on': 969778, 'this stayathome': 890311, 'stayathome how': 797503, 'll beat': 496648, 'coronavirus everyone': 205891, 'andrew if people': 76185, 'if people have': 414620, 'supermarket or to': 821836, 'or to exercise': 617469, 'to exercise please': 905414, 'exercise please ask': 290088, 'please ask them': 659677, 'them to wear': 876528, 'wear mask the': 974404, 'mask the czech': 519352, 'the czech lead': 852763, 'czech lead the': 224158, 'lead the way': 483321, 'the way on': 871172, 'way on this': 969779, 'on this stayathome': 604633, 'this stayathome how': 890312, 'stayathome how we': 797504, 'we ll beat': 972235, 'll beat the': 496649, 'beat the coronavirus': 118556, 'the coronavirus everyone': 851844, 'coronavirus everyone should': 205892, 'everyone should wear': 287384, 'should wear mask': 766658, 'broadcaster': 140738, 'stuck it': 814615, 'it includes': 458759, 'professional education': 682441, 'and childcare': 59833, 'childcare justice': 176299, 'justice system': 470438, 'system journalist': 831235, 'journalist and': 467419, 'and broadcaster': 59212, 'broadcaster and': 140739, 'list of key': 494448, 'of key worker': 585618, 'worker if you': 1007154, 'you are stuck': 1017247, 'are stuck it': 90601, 'stuck it includes': 814616, 'it includes health': 458764, 'care professional education': 164160, 'professional education and': 682442, 'education and childcare': 268807, 'and childcare justice': 59834, 'childcare justice system': 176300, 'justice system journalist': 470440, 'system journalist and': 831236, 'journalist and broadcaster': 467420, 'and broadcaster and': 59213, 'broadcaster and supermarket': 140740, 'and supermarket delivery': 72714, 'and gown': 63895, 'gown on': 361386, 'section reserved': 744039, 'amazon is now': 51003, 'is now selling': 450332, 'now selling mask': 575771, 'selling mask hand': 749338, 'sanitizer and gown': 734407, 'and gown on': 63897, 'gown on special': 361387, 'on special section': 603595, 'special section reserved': 788047, 'section reserved for': 744040, 'reserved for healthcare': 714131, 'bring down': 139957, 'down housing': 256841, 'too cnn': 924659, 'florida resident are': 310973, 'resident are working': 714255, 'hard to bring': 378054, 'to bring down': 902034, 'bring down housing': 139959, 'down housing price': 256842, 'and make my': 66566, 'make my winter': 510231, 'on you too': 605440, 'you too cnn': 1021883, 'biodegradable': 131191, 'deck company': 231132, 'create face': 215642, 'sanitizer hand': 735022, 'even biodegradable': 283896, 'biodegradable glove': 131192, 'on deck company': 600242, 'deck company are': 231133, 'are coming out': 85440, 'coming out to': 188166, 'out to create': 627633, 'to create face': 903706, 'create face mask': 215643, 'hand sanitizer hand': 375429, 'sanitizer hand wash': 735026, 'hand wash and': 375918, 'wash and even': 967432, 'and even biodegradable': 62332, 'even biodegradable glove': 283897, 'biodegradable glove mask': 131193, 'crona': 218852, 'saheb': 730919, 'kaya': 471136, 'chahty': 170426, 'hen': 391726, 'kahan': 470647, 'rahy': 695588, 'sari': 736769, 'dolat': 252916, 'ptigovernment': 687640, 'everyone talking': 287450, 'about crona': 25048, 'crona no': 218853, 'one think': 607240, 'price saheb': 676286, 'saheb ab': 730920, 'ab ap': 24169, 'ap or': 81208, 'or kaya': 615898, 'kaya chahty': 471137, 'chahty hen': 170427, 'hen kahan': 391729, 'kahan le': 470648, 'le ja': 483003, 'ja rahy': 464097, 'rahy hen': 695589, 'hen sari': 391731, 'sari dolat': 736770, 'dolat coronainpakistan': 252917, 'coronainpakistan oilprice': 205008, 'oilprice ptigovernment': 597632, 'ptigovernment staysafestayhome': 687641, 'everyone talking about': 287451, 'talking about crona': 833962, 'about crona no': 25049, 'crona no one': 218854, 'no one think': 564969, 'one think about': 607241, 'think about oil': 885090, 'oil price saheb': 597242, 'price saheb ab': 676287, 'saheb ab ap': 730921, 'ab ap or': 24170, 'ap or kaya': 81209, 'or kaya chahty': 615899, 'kaya chahty hen': 471138, 'chahty hen kahan': 170428, 'hen kahan le': 391730, 'kahan le ja': 470649, 'le ja rahy': 483004, 'ja rahy hen': 464098, 'rahy hen sari': 695590, 'hen sari dolat': 391732, 'sari dolat coronainpakistan': 736771, 'dolat coronainpakistan oilprice': 252918, 'coronainpakistan oilprice ptigovernment': 205009, 'oilprice ptigovernment staysafestayhome': 597633, 'pto': 687647, 'use pto': 949501, 'pto to': 687649, 'were potentially': 979988, 'are awaiting': 84727, 'awaiting test': 105551, 'test result': 839147, 'tested why': 839393, 'that po': 845774, 'we just want': 972125, 'to know why': 909005, 'know why your': 477065, 'why your retail': 991611, 'your retail employee': 1025606, 'retail employee have': 718071, 'employee have to': 273926, 'to use pto': 918058, 'use pto to': 949502, 'pto to take': 687651, 'to take time': 916249, 'take time off': 832726, 'time off of': 897385, 'off of work': 594014, 'of work when': 593269, 'when they were': 984290, 'they were potentially': 883795, 'were potentially exposed': 979989, 'and are awaiting': 58297, 'are awaiting test': 84728, 'awaiting test result': 105552, 'test result from': 839150, 'from the person': 337829, 'the person that': 863592, 'person that wa': 652638, 'that wa tested': 847315, 'wa tested why': 963426, 'tested why would': 839394, 'would you want': 1012429, 'you want that': 1022160, 'want that po': 965953, 'mother gave': 543105, 'this hand': 887826, 'me wrong': 524027, 'wrong am': 1012989, 'grateful but': 362244, 'not contaminated': 568859, 'my mother gave': 549330, 'mother gave me': 543106, 'gave me this': 344648, 'me this hand': 523710, 'this hand sanitizer': 887827, 'not get me': 569595, 'get me wrong': 347543, 'me wrong am': 524028, 'wrong am grateful': 1012990, 'am grateful but': 50102, 'grateful but of': 362246, 'but of all': 146635, 'the different brand': 853267, 'different brand and': 241914, 'brand and place': 137730, 'and place it': 69049, 'place it could': 657532, 'it could have': 457357, 'could have come': 209246, 'come from hope': 187304, 'from hope it': 335939, 'hope it not': 403520, 'it not contaminated': 459867, 'tom nook': 923923, 'nook is': 566828, 'is disaster': 447196, 'disaster capitalist': 244197, 'capitalist soon': 162817, 'hit he': 398264, 'he upped': 385559, 'upped the': 947680, '600 bell': 21068, 'tom nook is': 923924, 'nook is disaster': 566829, 'is disaster capitalist': 447197, 'disaster capitalist soon': 244198, 'capitalist soon covid': 162818, '19 hit he': 7546, 'hit he upped': 398266, 'he upped the': 385560, 'upped the price': 947681, 'toilet roll to': 921616, 'roll to 600': 725552, 'to 600 bell': 899795, 'during trying': 263372, 'and realize': 70004, 'realize what': 701881, 'important the': 419014, 'live everyday': 495804, 'life but': 488534, 'is group': 448229, 'thank and': 841541, 'during trying time': 263373, 'trying time like': 934749, 'this it good': 888516, 'good to take': 357901, 'to take step': 916238, 'take step back': 832606, 'step back and': 799503, 'back and realize': 106861, 'and realize what': 70006, 'realize what is': 701882, 'is really important': 451306, 'really important the': 702327, 'important the ha': 419015, 'the ha already': 856979, 'ha already changed': 369501, 'already changed the': 47256, 'we live everyday': 972213, 'live everyday life': 495805, 'everyday life but': 286589, 'life but there': 488540, 'there is group': 878567, 'is group of': 448230, 'people that we': 649782, 'that we want': 847403, 'to thank and': 916420, 'thank and that': 841543, 'that is grocery': 844595, 'utd': 951216, 'man utd': 512287, 'utd and': 951217, 'and man': 66616, 'man city': 512028, 'pandemic respect': 636342, 'respect football': 714982, 'football uk': 318519, 'uk manchester': 938536, 'man utd and': 512288, 'utd and man': 951218, 'and man city': 66617, 'man city have': 512029, 'city have donated': 179176, '19 pandemic respect': 9448, 'pandemic respect football': 636343, 'respect football uk': 714983, 'football uk manchester': 318520, 'girasol': 350221, 'shelford': 757861, 'our girasol': 623249, 'girasol cafe': 350222, 'cafe in': 155112, 'great shelford': 362990, 'shelford ha': 757862, 'ha teamed': 372166, 'it supplier': 461370, 'supplier to': 824621, 'you fresh': 1018704, 'last cambridge': 480130, 'cambridge convid19uk': 156943, 'convid19uk foodshortages': 202618, 'our girasol cafe': 623250, 'girasol cafe in': 350223, 'cafe in great': 155113, 'in great shelford': 423411, 'great shelford ha': 362991, 'shelford ha teamed': 757863, 'ha teamed up': 372167, 'up with it': 946654, 'with it supplier': 999084, 'it supplier to': 461372, 'supplier to bring': 824622, 'bring you fresh': 140122, 'you fresh produce': 1018705, 'fresh produce to': 333066, 'produce to help': 680474, 'help out due': 390248, 'due to supermarket': 261982, 'to supermarket shortage': 915835, 'supermarket shortage while': 822673, 'shortage while stock': 765304, 'stock last cambridge': 802343, 'last cambridge convid19uk': 480131, 'cambridge convid19uk foodshortages': 156944, 'legally': 485908, 'policed': 663272, 'nhsheroes 19': 562228, 'cannot the': 162176, 'nearest major': 553715, 'or mini': 616145, 'mini supermarket': 533028, 'supermarket next': 821600, 'every uk': 286350, 'uk hospital': 938452, 'hospital be': 404318, 'be legally': 115701, 'legally and': 485909, 'and exclusively': 62463, 'exclusively dedicated': 289712, 'dedicated and': 231695, 'and policed': 69162, 'policed for': 663273, 're tinkering': 699711, 'with solution': 1000831, 'these frontline': 880035, 'frontline lifesaver': 338779, 'nhsheroes 19 why': 562229, '19 why cannot': 12067, 'why cannot the': 990875, 'cannot the nearest': 162179, 'the nearest major': 861361, 'nearest major supermarket': 553716, 'major supermarket or': 509494, 'supermarket or mini': 821820, 'or mini supermarket': 616146, 'mini supermarket next': 533030, 'supermarket next to': 821601, 'next to every': 561619, 'to every uk': 905317, 'every uk hospital': 286351, 'uk hospital be': 938453, 'hospital be legally': 404319, 'be legally and': 115702, 'legally and exclusively': 485911, 'and exclusively dedicated': 62464, 'exclusively dedicated and': 289713, 'dedicated and policed': 231697, 'and policed for': 69163, 'policed for hospital': 663274, 'for hospital worker': 322370, 'hospital worker we': 404743, 'we re tinkering': 972989, 're tinkering with': 699712, 'tinkering with solution': 898601, 'with solution for': 1000832, 'solution for these': 782034, 'for these frontline': 326967, 'these frontline lifesaver': 880036, 'way wish': 970190, 'wish journalist': 996778, 'journalist were': 467461, 'were more': 979892, 'more informed': 539599, 'so many way': 777717, 'many way wish': 514864, 'way wish journalist': 970191, 'wish journalist were': 996779, 'journalist were more': 467462, 'were more informed': 979893, 'precedence': 669446, 'somehow think': 784343, 'turn social': 935763, 'social rating': 779918, 'rating upside': 697604, 'upside down': 947853, 'porter carers': 664975, 'carers cleaner': 164568, 'cleaner refuse': 180826, 'worker taking': 1007876, 'taking precedence': 833527, 'precedence over': 669447, 'over banker': 630012, 'banker businessmen': 110355, 'businessmen etc': 144770, 'etc and': 282404, 'quite rightly': 694910, 'somehow think this': 784344, 'think this pandemic': 885703, 'pandemic will turn': 637017, 'will turn social': 995257, 'turn social rating': 935764, 'social rating upside': 779919, 'rating upside down': 697605, 'upside down with': 947856, 'down with the': 257504, 'with the doctor': 1001268, 'the doctor nurse': 853466, 'nurse hospital porter': 577370, 'hospital porter carers': 404568, 'porter carers cleaner': 664976, 'carers cleaner refuse': 164570, 'cleaner refuse collector': 180827, 'refuse collector supermarket': 707015, 'supermarket worker taking': 824088, 'worker taking precedence': 1007877, 'taking precedence over': 833528, 'precedence over banker': 669448, 'over banker businessmen': 630013, 'banker businessmen etc': 110356, 'businessmen etc and': 144771, 'etc and quite': 282410, 'and quite rightly': 69889, 'quite rightly so': 694911, 'shelfish': 757855, 'word shelfish': 1004571, 'shelfish sh': 757856, 'lf greedily': 487877, 'action lacking': 30060, 'lacking consideration': 478686, 'new word shelfish': 559885, 'word shelfish sh': 1004572, 'shelfish sh lf': 757857, 'sh lf greedily': 754296, 'lf greedily empty': 487878, 'thing you don': 885033, 'you don even': 1018311, 'don even need': 253486, 'or action lacking': 614254, 'action lacking consideration': 30061, 'lacking consideration for': 478687, 'consideration for other': 195250, 'other people please': 620684, 'the marianos': 860068, 'marianos supermarket': 515689, 'supermarket looking': 821395, 'what playing': 982035, 'playing in': 659413, 'music in': 546310, 'played by': 659273, 'by mariano': 153170, 'so today wa': 778553, 'today wa at': 920444, 'at the marianos': 101015, 'the marianos supermarket': 860069, 'marianos supermarket looking': 515690, 'supermarket looking for': 821396, 'looking for the': 502908, 'for the essential': 326416, 'the essential and': 854495, 'and what playing': 75480, 'what playing in': 982036, 'playing in the': 659415, 'in the music': 429380, 'the music in': 861148, 'music in the': 546313, 'the store well': 868140, 'store well played': 811209, 'well played by': 978483, 'played by mariano': 659274, 'by mariano well': 153171, 'wipfliag': 996499, 'to ethanol': 905267, 'ethanol production': 283006, 'production we': 682274, 'we detail': 971283, 'the agriculture': 848461, 'agriculture industry': 38986, 'industry wipfliag': 436251, 'from the care': 337627, 'care act to': 163823, 'act to ethanol': 29797, 'to ethanol production': 905269, 'ethanol production we': 283007, 'production we detail': 682275, 'we detail how': 971284, 'impacting the agriculture': 418261, 'the agriculture industry': 848464, 'agriculture industry wipfliag': 38988, 'irresponsable': 445026, 'disappointing that': 244145, 'allow resellers': 46046, 'resellers to': 713985, 'to jack': 908639, 'actual value': 30708, 'epidemic or': 279423, 'or ever': 615222, 'longer buy': 501950, 'anything off': 80841, 'site irresponsable': 771959, 'irresponsable regulation': 445027, 'disappointing that you': 244147, 'that you allow': 847710, 'you allow resellers': 1016928, 'allow resellers to': 46047, 'resellers to jack': 713986, 'to jack up': 908642, 'jack up price': 464126, 'up price many': 945823, 'price many time': 675167, 'many time the': 514816, 'time the actual': 897843, 'the actual value': 848325, 'actual value of': 30709, 'the product during': 864587, 'product during the': 681149, 'the epidemic or': 854444, 'epidemic or ever': 279424, 'or ever we': 615223, 'ever we will': 285594, 'we will no': 973884, 'no longer buy': 564640, 'longer buy anything': 501951, 'buy anything off': 148363, 'anything off your': 80842, 'off your site': 594448, 'your site irresponsable': 1025815, 'site irresponsable regulation': 771960, 'and stress': 72554, 'stress having': 813335, 'time grocerystore': 896872, 'grocerystore retail': 366325, 'amount of anxiety': 53205, 'of anxiety and': 580242, 'anxiety and stress': 78657, 'and stress having': 72556, 'stress having to': 813336, 'having to work': 384375, 'this time grocerystore': 890642, 'time grocerystore retail': 896873, 'imf praise': 416906, 'praise oman': 668852, 'oman for': 598833, 'for tackling': 326115, 'tackling covid': 831642, '19 slump': 10616, 'imf praise oman': 416907, 'praise oman for': 668853, 'oman for tackling': 598834, 'for tackling covid': 326116, 'tackling covid 19': 831643, 'covid 19 slump': 213817, '19 slump in': 10617, 'slump in oil': 774696, 'bank go': 109865, 'essential response': 281457, 'more keep': 539642, 'hand get': 374986, 'store the bank': 810588, 'the bank go': 849241, 'bank go to': 109866, 'go to place': 354339, 'to place that': 911757, 'place that are': 657708, 'are essential response': 86254, 'essential response from': 281458, 'response from expert': 715694, 'from expert on': 335364, 'expert on more': 291899, 'on more keep': 602207, 'more keep your': 539643, 'your distance from': 1023532, 'from others keep': 336741, 'others keep washing': 621509, 'washing hand get': 967668, 'hand get out': 374988, 'get out for': 347736, 'kamloops': 470751, 'orgs': 619500, 'any kamloops': 79383, 'kamloops brewery': 470752, 'brewery orgs': 139452, 'orgs jumping': 619505, 'jumping on': 467964, 'sanitizer program': 735610, 'program kamloops': 683266, 'any kamloops brewery': 79384, 'kamloops brewery orgs': 470753, 'brewery orgs jumping': 139453, 'orgs jumping on': 619506, 'jumping on the': 467965, 'on the hand': 604155, 'hand sanitizer program': 375550, 'sanitizer program kamloops': 735611, 'the limitation': 859390, 'limitation from': 492581, 'from ecommerce': 335255, 'are rapidly': 89430, 'rapidly picking': 697002, 'up pace': 945729, 'pace thus': 632964, 'thus announced': 895500, 'add 100': 31380, '00 full': 224, 'time position': 897513, 'position across': 665153, 'stocking up due': 803616, 'to the limitation': 916848, 'the limitation from': 859391, 'limitation from ecommerce': 492582, 'from ecommerce and': 335256, 'ecommerce and online': 266713, 'shopping are rapidly': 762066, 'are rapidly picking': 89435, 'rapidly picking up': 697003, 'picking up pace': 655881, 'up pace thus': 945730, 'pace thus announced': 632965, 'thus announced plan': 895501, 'plan to add': 658265, 'to add 100': 900048, 'add 100 00': 31381, '100 00 full': 1788, '00 full time': 225, 'full time and': 340933, 'time and part': 896287, 'part time position': 642452, 'time position across': 897514, 'position across the': 665156, 'across the to': 29529, 'keep up learn': 472173, 'franking': 331159, 'baronship': 111162, 'hey ausgov': 394330, 'ausgov do': 103058, 'the boomer': 849851, 'boomer die': 134847, 'die to': 241468, 'save society': 737636, 'society from': 781213, 'rona just': 725785, 'the franking': 855758, 'franking credit': 331160, 'credit negative': 216438, 'negative gearing': 556782, 'gearing and': 345024, 'other privileged': 620759, 'privileged nonsense': 679053, 'nonsense that': 566746, 'enables baronship': 275460, 'baronship of': 111163, 'of hobby': 584702, 'hobby property': 399774, 'nonsense prize': 566740, 'prize young': 679083, 'hey ausgov do': 394331, 'ausgov do not': 103059, 'not let the': 570372, 'let the boomer': 487119, 'the boomer die': 849853, 'boomer die to': 134848, 'die to save': 241471, 'to save society': 913793, 'save society from': 737637, 'society from the': 781214, 'from the rona': 337862, 'the rona just': 865964, 'rona just put': 725787, 'just put an': 469526, 'to the franking': 916726, 'the franking credit': 855759, 'franking credit negative': 331161, 'credit negative gearing': 216439, 'negative gearing and': 556783, 'gearing and the': 345025, 'the other privileged': 862547, 'other privileged nonsense': 620761, 'privileged nonsense that': 679055, 'nonsense that enables': 566747, 'that enables baronship': 843705, 'enables baronship of': 275461, 'baronship of hobby': 111164, 'of hobby property': 584704, 'hobby property and': 399775, 'property and other': 684237, 'and other privileged': 68387, 'privileged nonsense prize': 679054, 'nonsense prize young': 566741, 'prize young people': 679084, 'young people out': 1022645, 'their home 19': 873555, 'home 19 auspol': 400535, 'made at': 507642, 'at include': 99279, 'no code': 563839, 'code required': 185393, 'all purchase made': 44097, 'purchase made at': 689545, 'made at include': 507643, 'at include free': 99280, 'include free hand': 431563, 'sanitizer no code': 735414, 'no code required': 563841, 'spacex': 787216, 'spacex is': 787217, 'manufacturing it': 513620, 'shield with': 758183, 'spacex is manufacturing': 787219, 'is manufacturing it': 449583, 'manufacturing it own': 513622, 'it own hand': 460219, 'and face shield': 62586, 'face shield with': 294746, 'shield with plan': 758184, 'with plan to': 1000224, 'plan to donate': 658283, 'to donate the': 904654, 'donate the material': 254235, 'material to hospital': 520427, 'to hospital and': 907964, 'hospital and place': 404286, 'and place in': 69048, 'place in need': 657512, 'in need to': 425775, 'fight the novel': 304898, 'flagellation': 309955, 'harsher': 378567, 'restore public': 717054, 'public flagellation': 688001, 'flagellation perhaps': 309956, 'perhaps harsher': 651596, 'harsher punishment': 378570, 'stop me it': 804832, 'me it time': 523021, 'time to restore': 898053, 'to restore public': 913421, 'restore public beating': 717055, 'beating public flagellation': 118626, 'public flagellation perhaps': 688002, 'flagellation perhaps harsher': 309957, 'perhaps harsher punishment': 651597, 'harsher punishment for': 378571, 'on asian': 599476, 'sentiment from': 750933, 'this mckinsey': 888797, 'mckinsey survey': 522205, 'survey consumer': 828844, 'consumer recovery': 198656, 'asia will': 95238, 'our lamb': 623636, 'lamb beef': 479151, 'and wool': 75837, 'wool market': 1004350, 'ultimately price': 939151, 'news on asian': 560661, 'on asian consumer': 599477, 'consumer sentiment from': 198912, 'sentiment from this': 750934, 'from this mckinsey': 338000, 'this mckinsey survey': 888799, 'mckinsey survey consumer': 522206, 'survey consumer recovery': 828845, 'consumer recovery in': 198657, 'recovery in asia': 705344, 'in asia will': 420527, 'asia will be': 95239, 'be critical for': 114295, 'critical for our': 218563, 'for our lamb': 324266, 'our lamb beef': 623637, 'lamb beef and': 479152, 'beef and wool': 120480, 'and wool market': 75838, 'wool market and': 1004351, 'market and ultimately': 516003, 'and ultimately price': 74581, 'nationwide fight': 552728, 'novel producer': 573810, 'producer have': 680636, 'shifted production': 758497, 'making mask': 511188, 'shield and': 758135, 'small business across': 774833, 'business across america': 143210, 'america are at': 51464, 'forefront of nationwide': 328942, 'of nationwide fight': 586870, 'nationwide fight against': 552729, 'against the novel': 37669, 'the novel producer': 861921, 'novel producer have': 573811, 'producer have shifted': 680637, 'have shifted production': 382511, 'shifted production to': 758499, 'production to making': 682248, 'to making mask': 909777, 'making mask face': 511190, 'mask face shield': 518636, 'face shield and': 294736, 'shield and hand': 758136, 'sanitizer to slow': 735947, 'sign and': 769091, 'and rt': 70606, 'the extortionate': 854758, 'student accommodation': 814634, 'accommodation many': 28458, 'many student': 514745, 'student must': 814735, 'on second': 603350, 'second job': 743748, 'afford somewhere': 34761, 'somewhere to': 785315, 'recent covid': 703848, 'outbreak so': 628631, 'student will': 814807, 'unemployed and': 941104, 'please sign and': 660516, 'sign and rt': 769093, 'and rt this': 70608, 'with the extortionate': 1001295, 'the extortionate price': 854759, 'extortionate price of': 293397, 'price of student': 675578, 'of student accommodation': 590321, 'student accommodation many': 814635, 'accommodation many student': 28459, 'many student must': 514746, 'student must take': 814737, 'must take on': 546943, 'take on second': 832407, 'on second job': 603352, 'second job to': 743749, 'job to afford': 466215, 'to afford somewhere': 900160, 'afford somewhere to': 34762, 'somewhere to stay': 785317, 'to stay with': 915331, 'stay with the': 797405, 'the recent covid': 865301, 'recent covid 19': 703849, '19 outbreak so': 9187, 'outbreak so many': 628633, 'so many student': 777708, 'many student will': 514747, 'student will now': 814808, 'now be unemployed': 574208, 'be unemployed and': 117858, 'unemployed and unable': 941106, 'rent and make': 711037, 'and make end': 66552, 'phoenix news': 654861, 'news covid': 560351, 'stabilize phoenix': 791853, 'phoenix area': 654855, 'area home': 92052, 'phoenix news covid': 654862, 'news covid 19': 560352, 'could help stabilize': 209291, 'help stabilize phoenix': 390558, 'stabilize phoenix area': 791854, 'phoenix area home': 654856, 'area home price': 92053, 'everyone want': 287550, 'these drug': 879942, 'drug can': 260900, 'it current': 457436, 'encouraging report': 275731, 'everyone want to': 287552, 'to know if': 908982, 'know if these': 476487, 'if these drug': 415085, 'these drug can': 879943, 'drug can save': 260901, 'world from it': 1009573, 'from it current': 336111, 'it current state': 457439, 'state of pandemic': 795817, 'of pandemic we': 587713, 'pandemic we don': 636938, 'know but there': 476318, 'are some encouraging': 90262, 'some encouraging report': 782752, 'icymi ha': 412881, 'article out': 94420, 'today highlighting': 919657, 'highlighting my': 396015, 'my call': 547589, 'affair to': 34093, 'regulation preventing': 708096, 'preventing 14': 671798, '00 california': 98, 'california nursing': 155547, 'nursing student': 577631, 'from helping': 335758, 'with response': 1000488, 'response check': 715652, 'out below': 625777, 'icymi ha an': 412882, 'ha an article': 369539, 'an article out': 55421, 'article out today': 94423, 'out today highlighting': 627705, 'today highlighting my': 919658, 'highlighting my call': 396016, 'my call for': 547590, 'call for the': 155897, 'consumer affair to': 196103, 'affair to eliminate': 34094, 'eliminate the strict': 271466, 'the strict regulation': 868283, 'strict regulation preventing': 813651, 'regulation preventing 14': 708097, 'preventing 14 00': 671799, '14 00 california': 3374, '00 california nursing': 99, 'california nursing student': 155548, 'nursing student from': 577633, 'student from helping': 814691, 'from helping with': 335762, 'helping with response': 391546, 'with response check': 1000489, 'response check it': 715653, 'it out below': 460176, 'wa disappointed': 961980, 'main industry': 508761, 'industry profiting': 436059, 'consumer wise': 199557, 'wise had': 996685, 'had sign': 373506, 'their register': 874542, 'register stating': 707611, 'stating they': 796314, 'allowing cash': 46268, 'back really': 107244, 'wa disappointed that': 961981, 'disappointed that one': 244120, 'the main industry': 859903, 'main industry profiting': 508762, 'industry profiting off': 436060, 'profiting off of': 683135, 'off of consumer': 594003, 'of consumer wise': 581787, 'consumer wise had': 199558, 'wise had sign': 996686, 'had sign up': 373507, 'up at their': 944441, 'at their register': 101175, 'their register stating': 874543, 'register stating they': 707612, 'stating they were': 796315, 'were not allowing': 979913, 'not allowing cash': 568152, 'allowing cash back': 46269, 'cash back really': 166176, 'back really all': 107245, 'really all the': 701960, 'all the money': 44832, 'the money you': 860835, 'money you all': 537194, 'all are making': 42047, '23 18': 15355, '18 oil': 4567, 'price at 23': 672787, 'at 23 18': 97536, '23 18 oil': 15356, '18 oil price': 4568, 'undertake': 940935, 'into global': 442594, 'to undertake': 917921, 'undertake the': 940936, 'marketing exec': 517594, 'exec michael': 289822, 'company expected to': 190640, 'expected to go': 290979, 'go into global': 353750, 'into global lockdown': 442595, 'global lockdown it': 352016, 'lockdown it wa': 499572, 'difficult to undertake': 242351, 'to undertake the': 917922, 'undertake the marketing': 940937, 'said marketing exec': 731220, 'marketing exec michael': 517595, 'exec michael payne': 289823, 'not raise': 571204, 'raise food': 695843, 'will not raise': 994257, 'not raise food': 571205, 'raise food price': 695844, 'sewed': 754156, 'store tomorrow': 810896, 'tomorrow it': 924109, 'been almost': 120643, 'isolating at': 455062, 'glove sewed': 352914, 'sewed mask': 754157, 'mask check': 518527, 'check check': 174397, 'check dream': 174421, 'when no': 983776, 'with dream': 998137, 'grocery store tomorrow': 365875, 'store tomorrow it': 810898, 'tomorrow it been': 924110, 'it been almost': 456789, 'been almost 30': 120645, 'almost 30 day': 46499, '30 day of': 17019, 'self isolating at': 747712, 'isolating at home': 455063, 'family of glove': 298098, 'of glove sewed': 584166, 'glove sewed mask': 352915, 'sewed mask check': 754158, 'mask check check': 518528, 'check check dream': 174398, 'check dream of': 174422, 'day when no': 228726, 'when no one': 983777, 'one is dying': 606505, 'is dying and': 447418, 'dying and sick': 263781, 'and sick with': 71642, 'sick with dream': 768678, 'with dream of': 998138, 'day when can': 228720, 'when can buy': 983231, 'food without fear': 317652, '3dxchat': 18268, 'imvu': 419667, 'secondlife': 743899, 'fight since': 304869, 'since continues': 770544, 'impact all': 417543, 'all 3dxchat': 41900, '3dxchat ha': 18269, 'in half': 423507, 'half and': 374139, 'welcome you': 977916, 'secure virtual': 744464, 'virtual world': 957821, 'so enjoy': 776955, 'enjoy stay': 277180, 'stayhome 3dxchat': 797933, '3dxchat imvu': 18271, 'imvu secondlife': 419668, 'secondlife sims': 743900, 'home and help': 400648, 'and help fight': 64449, 'help fight since': 389716, 'fight since continues': 304870, 'since continues to': 770545, 'to impact all': 908147, 'impact all 3dxchat': 417544, 'all 3dxchat ha': 41901, '3dxchat ha decided': 18270, 'decided to cut': 230910, 'to cut price': 903883, 'cut price in': 223493, 'price in half': 674692, 'in half and': 423508, 'half and welcome': 374142, 'and welcome you': 75392, 'welcome you to': 977918, 'you to secure': 1021832, 'to secure virtual': 913971, 'secure virtual world': 744465, 'virtual world so': 957822, 'world so enjoy': 1009984, 'so enjoy stay': 776956, 'enjoy stay home': 277181, 'safe stayhome 3dxchat': 729981, 'stayhome 3dxchat imvu': 797934, '3dxchat imvu secondlife': 18272, 'imvu secondlife sims': 419669, 'winco': 995608, 'else wonder': 271995, 'why winco': 991557, 'winco food': 995609, 'food who': 317606, 'make billion': 509741, 'billion year': 130938, 'employee hazard': 273930, 'this almost': 886281, 'life except': 488640, 'anybody else wonder': 80077, 'else wonder why': 271996, 'wonder why winco': 1004048, 'why winco food': 991558, 'winco food who': 995611, 'food who make': 317608, 'who make billion': 989246, 'make billion year': 509742, 'billion year is': 130939, 'year is still': 1014671, 'is still not': 452295, 'still not paying': 800897, 'not paying their': 570993, 'paying their employee': 645501, 'their employee hazard': 873148, 'employee hazard pay': 273931, 'hazard pay for': 384565, 'pay for risking': 644897, 'their life due': 873825, 'to this almost': 917402, 'this almost every': 886282, 'almost every other': 46622, 'store is paying': 808516, 'is paying their': 450826, 'their employee for': 873145, 'employee for risking': 273868, 'their life except': 873829, 'are bogus': 85009, 'bogus people': 134029, 'people product': 649192, 'charity scamming': 173682, 'scamming people': 740672, 'money amid': 536585, 'you know there': 1019529, 'know there are': 476863, 'there are bogus': 878070, 'are bogus people': 85010, 'bogus people product': 134030, 'people product and': 649193, 'and charity scamming': 59759, 'charity scamming people': 173683, 'scamming people out': 740673, 'their money amid': 873993, 'money amid the': 536586, 'amid the learn': 52699, 'more about and': 538495, 'about and how': 24801, '100 faith': 1891, 'in mr': 425487, 'mr but': 544352, 'one concern': 606089, 'happening day': 377339, 'of necessary': 586889, 'and medic': 66865, 'medic like': 525997, 'like face': 490207, 'for this have': 327035, 'this have 100': 887874, 'have 100 faith': 379068, '100 faith in': 1892, 'faith in mr': 296518, 'in mr but': 425488, 'mr but there': 544353, 'only one concern': 610867, 'one concern that': 606090, 'concern that the': 193116, 'that the increase': 846750, 'increase in covid': 432825, '19 is happening': 7982, 'is happening day': 448278, 'happening day by': 377340, 'by day price': 152303, 'day price of': 228245, 'price of necessary': 675516, 'of necessary item': 586891, 'necessary item and': 554012, 'item and medic': 463059, 'and medic like': 66866, 'medic like face': 525998, 'like face mask': 490208, 'and sanitizer is': 70875, 'sanitizer is increasing': 735194, 'is increasing day': 448855, 'governor this': 361000, 'fault close': 300400, 'damn beach': 225321, 'beach now': 118223, 'ny not': 577902, 'unless necessary': 942631, 're leaving': 698985, 'beach open': 118225, 'governor this is': 361002, 'is your fault': 454144, 'your fault close': 1023816, 'fault close the': 300401, 'close the damn': 182836, 'the damn beach': 852811, 'damn beach now': 225322, 'beach now while': 118224, 'now while we': 576406, 're in ny': 698879, 'in ny not': 426006, 'ny not even': 577903, 'not even going': 569252, 'grocery store unless': 365900, 'store unless necessary': 811004, 'unless necessary you': 942632, 'necessary you re': 554149, 'you re leaving': 1020666, 're leaving the': 698987, 'leaving the beach': 485147, 'the beach open': 849386, 'beach open to': 118226, 'open to infect': 612598, 'to infect thousand': 908355, 'infect thousand more': 436515, 'in delaware': 422080, 'delaware county': 232649, 'county pennsylvania': 211466, 'pennsylvania they': 646585, 'and live': 66247, 'live almost': 495706, 'at lowe': 99635, 'lowe home': 505773, 'depot supermarket': 237549, 'supermarket walmart': 823723, 'target because': 834441, 'have nothing': 381704, 'do because': 249119, 'bar are': 110673, 'board god': 133637, 'help saturday': 390478, 'saturday night': 737046, 'not in delaware': 570088, 'in delaware county': 422082, 'delaware county pennsylvania': 232651, 'county pennsylvania they': 211467, 'pennsylvania they are': 646586, 'are not people': 88434, 'not people who': 570999, 'people who go': 650300, 'out and live': 625677, 'and live almost': 66248, 'live almost all': 495707, 'almost all day': 46532, 'all day at': 42512, 'day at lowe': 227335, 'at lowe home': 99637, 'lowe home depot': 505774, 'home depot supermarket': 401067, 'depot supermarket walmart': 237550, 'supermarket walmart target': 823724, 'walmart target because': 965426, 'target because they': 834442, 'they have nothing': 882351, 'have nothing to': 381709, 'to do because': 904485, 'do because the': 249120, 'because the bar': 119612, 'the bar are': 849270, 'bar are closed': 110674, 'closed and they': 183000, 'are on board': 88715, 'on board god': 599662, 'board god help': 133638, 'god help saturday': 354737, 'help saturday night': 390479, 'definitive': 232430, 'the definitive': 853042, 'definitive survey': 232431, 'survey about': 828805, 'pr industry': 668433, '19 nine': 8788, 'nine in': 563283, '10 pr': 1640, 'pr pro': 668441, 'pro say': 679124, 'say campaign': 738483, 'campaign have': 157223, 'cut due': 223311, 'sector especially': 744182, 'especially badly': 280449, 'badly hit': 108154, 'hit via': 398504, 'the definitive survey': 853043, 'definitive survey about': 232432, 'survey about the': 828806, 'about the pr': 26483, 'the pr industry': 864187, 'pr industry and': 668434, 'industry and covid': 435632, 'covid 19 nine': 213476, '19 nine in': 8789, 'nine in 10': 563284, 'in 10 pr': 419683, '10 pr pro': 1641, 'pr pro say': 668442, 'pro say campaign': 679125, 'say campaign have': 738484, 'campaign have been': 157224, 'have been cut': 379501, 'been cut due': 120914, 'cut due to': 223312, 'to coronavirus consumer': 903544, 'coronavirus consumer sector': 205688, 'consumer sector especially': 198884, 'sector especially badly': 744183, 'especially badly hit': 280450, 'badly hit via': 108157, 'dcwp': 229005, 'digitally': 242740, 'overcharge': 631090, 'see malicious': 745385, 'malicious price': 511715, 'nyc the': 578058, 'nyc department': 577978, 'worker protection': 1007635, 'protection dcwp': 685392, 'dcwp ha': 229006, 'page to': 633901, 'to digitally': 904300, 'digitally file': 242743, 'complaint use': 192045, 'word overcharge': 1004552, 'do you see': 250675, 'you see malicious': 1021047, 'see malicious price': 745386, 'malicious price increase': 511716, 'increase in nyc': 432847, 'in nyc the': 426027, 'nyc the nyc': 578059, 'the nyc department': 862003, 'nyc department of': 577979, 'consumer and worker': 196253, 'and worker protection': 75879, 'worker protection dcwp': 1007636, 'protection dcwp ha': 685393, 'dcwp ha set': 229007, 'up page to': 945735, 'page to digitally': 633902, 'to digitally file': 904301, 'digitally file complaint': 242744, 'file complaint click': 305332, 'here to file': 393710, 'file complaint use': 305338, 'complaint use the': 192046, 'use the word': 949695, 'the word overcharge': 871713, 'jenkins': 465074, 'dallas county': 225120, 'county judge': 211422, 'judge jenkins': 467619, 'jenkins say': 465079, 'say neighbor': 738970, 'neighbor which': 557090, 'is virtual': 453708, 'drive benefitting': 258998, 'benefitting north': 127182, 'north texas': 567685, 'which help': 985928, 'help 13': 389284, '13 county': 3199, 'facing layoff': 295522, 'layoff and': 482673, 'increase dallas': 432727, 'dallas county judge': 225121, 'county judge jenkins': 211423, 'judge jenkins say': 467620, 'jenkins say neighbor': 465081, 'say neighbor helping': 738971, 'helping neighbor which': 391400, 'neighbor which is': 557091, 'which is virtual': 986063, 'is virtual food': 453709, 'food drive benefitting': 314285, 'drive benefitting north': 258999, 'benefitting north texas': 127183, 'north texas food': 567686, 'food bank which': 313668, 'bank which help': 110298, 'which help 13': 985929, 'help 13 county': 389285, '13 county with': 3200, 'county with thousand': 211542, 'people facing layoff': 647862, 'facing layoff and': 295523, 'layoff and at': 482674, 'and at home': 58477, 'home the more': 402239, 'the more the': 860898, 'more the demand': 540714, 'to increase dallas': 908275, 'road let': 724469, 'know below': 476301, 'below handsanitizer': 126663, 'handsanitizer trucking': 376670, 'do you currently': 250621, 'you currently feel': 1018136, 'currently feel safe': 221532, 'feel safe while': 302832, 'safe while you': 730144, 're out on': 699224, 'the road let': 865931, 'road let know': 724470, 'let know below': 486854, 'know below handsanitizer': 476303, 'below handsanitizer trucking': 126664, 'unbs': 939539, 'genuine': 345861, 'jumia': 467824, 'unbs certified': 939540, 'certified use': 170253, 'use genuine': 949230, 'genuine hand': 345866, 'safe kill': 729796, '99 germ': 23832, 'germ order': 346142, 'on jumia': 601741, 'jumia express': 467825, 'express delivery': 293031, 'delivery staysafeug': 234575, 'unbs certified use': 939542, 'certified use genuine': 170254, 'use genuine hand': 949231, 'genuine hand sanitizer': 345867, 'sanitizer and keep': 734412, 'and keep yourself': 65790, 'yourself safe kill': 1026697, 'safe kill 99': 729797, 'kill 99 germ': 474330, '99 germ order': 23833, 'germ order on': 346143, 'order on jumia': 618457, 'on jumia express': 601742, 'jumia express delivery': 467826, 'express delivery staysafeug': 293032, 'gcse': 344838, '2052': 14860, 'gcse history': 344839, 'history exam': 398026, 'exam 2052': 288786, '2052 describe': 14861, 'describe wa': 237933, 'pandemic 20': 634777, 'gcse history exam': 344840, 'history exam 2052': 398027, 'exam 2052 describe': 288787, '2052 describe wa': 14862, 'describe wa it': 237934, 'wa it like': 962434, 'it like to': 459380, 'go shopping in': 354113, 'during the 2020': 263083, '19 pandemic 20': 9246, 'civicscience': 179503, 'often because': 596164, 'from 22': 334239, '22 last': 15218, 'to data': 903915, 'from civicscience': 334888, 'civicscience more': 179506, '29 of american': 16488, 'they are shopping': 881406, 'online more often': 608562, 'more often because': 539898, 'often because of': 596165, 'because of up': 119423, 'of up from': 592677, 'up from 22': 944981, 'from 22 last': 334242, '22 last week': 15219, 'according to data': 28533, 'to data from': 903916, 'data from civicscience': 226228, 'from civicscience more': 334889, 'civicscience more in': 179507, 'coronavirus fun': 205975, 'fun fact': 341161, 'fact if': 295730, 'aisle pretty': 40349, 'pretty quickly': 671483, 'coronavirus fun fact': 205976, 'fun fact if': 341162, 'fact if you': 295731, 'if you cough': 415415, 'you cough in': 1018067, 'store you end': 811685, 'end up all': 276022, 'up all over': 944258, 'over the aisle': 630694, 'the aisle pretty': 848533, 'aisle pretty quickly': 40350, 'yes kept': 1015473, 'distance assume': 246651, 'assume going': 97003, 'how caught': 407540, 'yes kept my': 1015474, 'my distance assume': 548004, 'distance assume going': 246652, 'assume going to': 97004, 'to supermarket is': 915803, 'supermarket is how': 821096, 'is how caught': 448571, 'how caught it': 407541, 'fear and uncertainty': 301043, 'and uncertainty regarding': 74610, 'uncertainty regarding covid': 939751, 'constituent': 195733, 'created page': 215868, 'my website': 550542, 'website offering': 975369, 'offering advice': 595008, 'to constituent': 903255, 'constituent on': 195736, 'the page': 862857, 'health advice': 386099, 'advice business': 33332, 'employee advice': 273519, 'advice local': 33428, 'information education': 437806, 'education info': 268831, 'info amp': 437412, 'amp useful': 54766, 'useful contact': 950147, 'have created page': 380160, 'created page on': 215870, 'page on my': 633879, 'on my website': 602329, 'my website offering': 550544, 'website offering advice': 975370, 'offering advice amp': 595009, 'advice amp help': 33299, 'amp help to': 53928, 'help to constituent': 390771, 'to constituent on': 903256, 'constituent on 19': 195737, 'on 19 the': 599037, '19 the page': 11229, 'the page includes': 862860, 'page includes health': 633858, 'includes health advice': 431757, 'health advice business': 386101, 'advice business amp': 33333, 'business amp employee': 143278, 'amp employee advice': 53713, 'employee advice local': 273521, 'advice local supermarket': 33429, 'local supermarket information': 498543, 'supermarket information education': 821034, 'information education info': 437807, 'education info amp': 268832, 'info amp useful': 437414, 'amp useful contact': 54767, 'maria': 515670, 'tampico': 834132, 'inside but': 439237, 'in hour': 423835, 'hour line': 405742, 'others just': 621502, 'left like': 485538, 'like maria': 490713, 'maria cooky': 515677, 'cooky and': 202963, 'and tampico': 73019, 'tampico orange': 834133, 'orange drink': 617911, 'drink at': 258801, 'store great': 807967, 'idea world': 413253, 'world no': 1009835, 'no fruit': 564314, 'should stay inside': 766497, 'stay inside but': 797095, 'inside but have': 439238, 'wait in hour': 964140, 'in hour line': 423838, 'hour line in': 405743, 'line in close': 493193, 'proximity to others': 687334, 'to others just': 911137, 'others just to': 621503, 'in to buy': 430102, 'buy the crap': 149290, 'the crap food': 852270, 'crap food that': 214892, 'that is left': 844614, 'is left like': 449273, 'left like maria': 485539, 'like maria cooky': 490714, 'maria cooky and': 515678, 'cooky and tampico': 202965, 'and tampico orange': 73020, 'tampico orange drink': 834134, 'orange drink at': 617912, 'drink at the': 258804, 'grocery store great': 365441, 'store great idea': 807968, 'great idea world': 362737, 'idea world no': 413254, 'world no meat': 1009836, 'meat no water': 525668, 'water no fruit': 969071, 'no fruit vegetable': 564318, 'chefsanantonio': 175292, 'quarantinecuisine': 692812, 'find what': 307385, 'or don': 615047, 'an ingredient': 56331, 'ingredient on': 438384, 'home don': 401091, 'our list': 623749, 'of simple': 589735, 'ingredient swap': 438402, 'swap chefsanantonio': 829979, 'chefsanantonio quarantinecuisine': 175293, 'can find what': 158345, 'find what you': 307387, 're looking for': 699012, 'looking for at': 502851, 'for at the': 319520, 'store or don': 809328, 'or don have': 615048, 'don have an': 253588, 'have an ingredient': 379258, 'an ingredient on': 56332, 'ingredient on hand': 438385, 'on hand at': 601227, 'hand at home': 374805, 'at home don': 98977, 'home don fear': 401092, 'don fear check': 253507, 'out our list': 626980, 'our list of': 623751, 'list of simple': 494472, 'of simple ingredient': 589737, 'simple ingredient swap': 770042, 'ingredient swap chefsanantonio': 438403, 'swap chefsanantonio quarantinecuisine': 829980, 'coronavirus fallout': 205905, 'fallout california': 297375, 'california consumer': 155480, 'confidence drop': 193845, '13 month': 3235, 'low global': 505305, 'covid alert coronavirus': 214120, 'alert coronavirus fallout': 41392, 'coronavirus fallout california': 205906, 'fallout california consumer': 297376, 'california consumer confidence': 155483, 'consumer confidence drop': 196891, 'confidence drop to': 193847, 'drop to 13': 260420, 'to 13 month': 899485, '13 month low': 3236, 'month low global': 537840, 'low global pandemic': 505306, 'starter': 794925, 'getting desperate': 348930, 'for theme': 326934, 'park experience': 641904, 'experience starter': 291484, 'starter pack': 794926, 'the getting desperate': 856244, 'getting desperate for': 348931, 'desperate for theme': 238529, 'for theme park': 326935, 'theme park experience': 876700, 'park experience starter': 641905, 'experience starter pack': 291485, 'any lesson': 79409, 'lesson on': 486497, 'on being': 599616, 'being mug': 125446, 'mug hit': 545567, 'reasonable would': 703143, 'if anyone want': 413855, 'anyone want any': 80601, 'want any lesson': 965717, 'any lesson on': 79410, 'lesson on being': 486498, 'on being mug': 599617, 'being mug hit': 125447, 'mug hit me': 545568, 'me up my': 523859, 'up my price': 945435, 'my price are': 549843, 'are very reasonable': 91475, 'very reasonable would': 955460, 'reasonable would love': 703144, 'love to help': 504849, 'this suggests': 890412, 'suggests they': 817723, 'do fast': 249285, 'good business': 356842, 'business involved': 143943, 'supply delivery': 825145, 'delivery distribution': 233869, 'not takeaway': 571912, 'takeaway shop': 832904, 'this suggests they': 890413, 'suggests they do': 817724, 'they do fast': 881960, 'do fast moving': 249286, 'consumer good business': 197600, 'good business involved': 356844, 'business involved in': 143944, 'involved in the': 444355, 'the supply delivery': 868944, 'supply delivery distribution': 825147, 'delivery distribution and': 233871, 'distribution and sale': 248112, 'and sale of': 70792, 'sale of food': 732391, 'of food beverage': 583658, 'beverage and other': 128987, 'and other key': 68354, 'other key consumer': 620457, 'key consumer good': 473261, 'consumer good but': 197601, 'good but not': 356852, 'but not takeaway': 146570, 'not takeaway shop': 571913, 'so while': 778738, 'all busy': 42241, 'busy flattening': 144904, 'curve school': 221886, 'close indefinitely': 182680, 'indefinitely childcare': 434042, 'childcare is': 176297, 'closed one': 183263, 'one parent': 606833, 'parent will': 641782, 'quit job': 694796, 'gap until': 343468, 'until school': 943822, 'start again': 794191, 'again in': 37035, 'in august': 420580, 'august but': 102986, 'supply ignore': 825388, 'ignore those': 415852, 'so while we': 778742, 're all busy': 698208, 'all busy flattening': 42242, 'busy flattening the': 144905, 'the curve school': 852703, 'curve school close': 221887, 'school close indefinitely': 741725, 'close indefinitely childcare': 182681, 'indefinitely childcare is': 434043, 'childcare is closed': 176298, 'is closed one': 446586, 'closed one parent': 183264, 'one parent will': 606834, 'parent will need': 641784, 'to quit job': 912691, 'quit job to': 694797, 'job to cover': 466221, 'to cover the': 903661, 'cover the gap': 212290, 'the gap until': 856142, 'gap until school': 343469, 'until school start': 943823, 'school start again': 741932, 'start again in': 794193, 'again in august': 37037, 'in august but': 420581, 'august but don': 102987, 'but don panic': 145595, 'panic we ve': 638769, 'amp supply ignore': 54594, 'supply ignore those': 825389, 'ignore those empty': 415853, 'those empty shelf': 891967, 'causeway': 167981, 'all vineyard': 45368, 'vineyard compassion': 957443, 'compassion project': 191497, 'project are': 683474, 'now temporarily': 575977, 'closed except': 183106, 'limited emergency': 492624, 'emergency provision': 272904, 'provision causeway': 687254, 'causeway foodbank': 167982, 'foodbank reset': 317790, 'reset social': 714175, 'etc click': 282474, 'full vineyard': 340969, 'compassion update': 191499, '19 all vineyard': 4906, 'all vineyard compassion': 45369, 'vineyard compassion project': 957444, 'compassion project are': 191498, 'project are now': 683475, 'are now temporarily': 88604, 'now temporarily closed': 575978, 'temporarily closed except': 837463, 'closed except for': 183107, 'except for limited': 289164, 'for limited emergency': 322984, 'limited emergency provision': 492625, 'emergency provision causeway': 272905, 'provision causeway foodbank': 687255, 'causeway foodbank reset': 167983, 'foodbank reset social': 317791, 'reset social supermarket': 714176, 'social supermarket etc': 779978, 'supermarket etc click': 820211, 'etc click below': 282475, 'the full vineyard': 856027, 'full vineyard compassion': 340970, 'vineyard compassion update': 957445, 'wizard': 1003202, 'the wizard': 871650, 'wizard stay': 1003203, 'band socialdistancing': 109351, 'the wizard stay': 871651, 'wizard stay with': 1003204, 'beast band socialdistancing': 118481, 'band socialdistancing workfromhome': 109352, 'an delivery': 55530, 'slot until': 774283, 'april ll': 83633, 'house by': 406228, 'by then': 154505, 'then can': 877056, 'manage but': 512380, 'people stoppanicbuying': 649659, 'so self isolating': 778170, 'isolating for 14': 455094, '14 day going': 3446, 'going to need': 355659, 'to need food': 910509, 'food and cant': 313193, 'and cant get': 59528, 'cant get an': 162295, 'get an delivery': 346539, 'an delivery slot': 55531, 'delivery slot until': 234543, 'slot until the': 774285, 'until the 2nd': 943847, 'the 2nd april': 848074, '2nd april ll': 16753, 'april ll be': 83634, 'the house by': 857599, 'house by then': 406229, 'by then can': 154507, 'then can manage': 877057, 'can manage but': 158962, 'manage but really': 512381, 'but really feel': 146898, 'feel for the': 302624, 'vulnerable people stoppanicbuying': 961110, 'began oman': 123414, 'good in store': 357250, 'in store in': 428420, 'in oman since': 426109, 'crisis began oman': 217126, 'began oman muscat': 123415, 'my concern': 547780, 'myself that': 550943, 'am one': 50285, 'lucky one': 506564, 'one am': 605886, 'am able': 49840, 'make minute': 510170, 'minute trip': 533882, 'trip down': 932063, 'needed am': 556283, 'buy whatever': 149459, 'whatever may': 982786, 'need am': 554390, 'am blessed': 49949, 'blessed enough': 132621, 'despite my concern': 238795, 'my concern about': 547781, 'about the have': 26409, 'the have to': 857152, 'have to remind': 383279, 'to remind myself': 913200, 'remind myself that': 710492, 'myself that am': 550944, 'that am one': 842613, 'am one of': 50286, 'of the lucky': 591206, 'the lucky one': 859831, 'lucky one am': 506565, 'one am able': 605887, 'am able to': 49841, 'able to make': 24502, 'to make minute': 909693, 'make minute trip': 510171, 'minute trip down': 533883, 'trip down to': 932064, 'down to fully': 257367, 'to fully stocked': 906322, 'fully stocked grocery': 341090, 'store if needed': 808246, 'if needed am': 414456, 'needed am fortunate': 556284, 'am fortunate enough': 50059, 'to buy whatever': 902337, 'buy whatever may': 149461, 'whatever may need': 982787, 'may need am': 521349, 'need am blessed': 554391, 'am blessed enough': 49950, 'blessed enough to': 132622, 'deflated': 232437, 'hotspot': 405304, 'self note': 747822, 'the secondary': 866600, 'secondary effect': 743881, 'will include': 993799, 'include deflation': 431547, 'deflation deflated': 232447, 'deflated profit': 232440, 'depression despite': 237639, 'money printing': 536981, 'printing operation': 678350, 'operation by': 613159, 'by central': 152087, 'bank foreign': 109848, 'foreign 2nd': 328955, '2nd investment': 16783, 'investment property': 444044, 'property in': 684277, 'in european': 422659, 'european holiday': 283583, 'holiday hotspot': 400315, 'hotspot look': 405312, 'look vulnerable': 502659, 'slow train': 774409, 'train crash': 929244, 'self note the': 747823, 'note the secondary': 572826, 'the secondary effect': 866601, 'secondary effect of': 743882, '19 will include': 12097, 'will include deflation': 993802, 'include deflation deflated': 431548, 'deflation deflated profit': 232448, 'deflated profit and': 232441, 'profit and depression': 682652, 'and depression despite': 61235, 'depression despite the': 237640, 'despite the money': 238892, 'the money printing': 860821, 'money printing operation': 536982, 'printing operation by': 678351, 'operation by central': 613160, 'by central bank': 152088, 'central bank foreign': 169371, 'bank foreign 2nd': 109849, 'foreign 2nd investment': 328956, '2nd investment property': 16784, 'investment property in': 444045, 'property in european': 684278, 'in european holiday': 422661, 'european holiday hotspot': 283584, 'holiday hotspot look': 400316, 'hotspot look vulnerable': 405313, 'look vulnerable to': 502660, 'vulnerable to slow': 961233, 'to slow train': 914744, 'slow train crash': 774410, 'train crash in': 929245, 'crash in property': 214997, 'lobby': 497574, 'dbvt': 228932, 'german vegetable': 346254, 'may rise': 521467, 'rise coronavirus': 722813, 'coronavirus disrupts': 205832, 'disrupts crop': 246565, 'crop work': 218948, 'work lobby': 1005439, 'lobby dbvt': 497581, 'german vegetable price': 346255, 'vegetable price may': 954073, 'price may rise': 675201, 'may rise coronavirus': 521469, 'rise coronavirus disrupts': 722814, 'coronavirus disrupts crop': 205834, 'disrupts crop work': 246566, 'crop work lobby': 218949, 'work lobby dbvt': 1005440, 'wtfutureipsos': 1013352, 'relationship consumer': 708691, 'our paper': 624250, 'paper featuring': 640151, 'featuring guidance': 301588, 'crisis beyond': 217129, 'beyond wtfutureipsos': 129260, 'wtfutureipsos mrx': 1013355, 'the relationship consumer': 865465, 'relationship consumer have': 708692, 'download our paper': 257615, 'our paper featuring': 624252, 'paper featuring guidance': 640152, 'featuring guidance on': 301589, 'guidance on how': 368265, 'impact of tech': 417802, 'of tech brand': 590624, 'tech brand marketing': 836047, 'the crisis beyond': 852349, 'crisis beyond wtfutureipsos': 217130, 'beyond wtfutureipsos mrx': 129261, 'wtfutureipsos mrx research': 1013356, 'dryhands': 261334, 'ha washing': 372460, 'ever but': 285239, 'hygiene can': 412062, 'have negative': 381559, 'our skin': 624796, 'skin read': 773079, 'on for': 600937, 'for preserving': 324700, 'preserving your': 670732, 'your skin': 1025823, 'skin while': 773089, 'bay dryhands': 112934, 'coronavirus ha washing': 206041, 'ha washing our': 372461, 'our hand using': 623353, 'hand using sanitizer': 375906, 'using sanitizer more': 950632, 'sanitizer more than': 735379, 'than ever but': 840574, 'ever but that': 285241, 'but that good': 147288, 'that good hygiene': 844047, 'good hygiene can': 357196, 'hygiene can have': 412063, 'can have negative': 158580, 'have negative impact': 381562, 'on our skin': 602629, 'our skin read': 624797, 'skin read on': 773080, 'read on for': 700479, 'on for tip': 600956, 'for tip from': 327204, 'tip from for': 898798, 'from for preserving': 335531, 'for preserving your': 324701, 'preserving your skin': 670733, 'your skin while': 1025828, 'skin while keeping': 773090, 'while keeping the': 986993, 'keeping the virus': 472590, 'virus at bay': 957972, 'at bay dryhands': 98101, 'handicapped': 376121, 'limit grocery': 492357, 'store capacity': 806866, 'capacity but': 162502, 'but handicapped': 145855, 'handicapped people': 376122, 'store socialdistanacing': 810247, 'need to limit': 555987, 'to limit grocery': 909287, 'limit grocery store': 492358, 'grocery store capacity': 365266, 'store capacity but': 806868, 'capacity but handicapped': 162503, 'but handicapped people': 145856, 'handicapped people should': 376123, 'the store socialdistanacing': 868108, 'tv book': 936093, 'book netflix': 134569, 'netflix internet': 557608, 'internet game': 441945, 'game console': 343155, 'console mobile': 195528, 'phone quality': 655005, 'quality time': 691858, 'child we': 176258, 'lucky if': 506560, 'thought are': 892975, 'with those': 1001745, 'food ect': 314337, 'ect panic': 268425, 'locked down we': 500481, 'down we have': 257445, 'we have tv': 971974, 'have tv book': 383433, 'tv book netflix': 936094, 'book netflix internet': 134570, 'netflix internet game': 557609, 'internet game console': 441946, 'game console mobile': 343156, 'console mobile phone': 195529, 'mobile phone quality': 535012, 'phone quality time': 655006, 'quality time with': 691859, 'time with your': 898362, 'your child we': 1023208, 'child we are': 176259, 'are so lucky': 90209, 'so lucky if': 777616, 'lucky if you': 506561, 'about it my': 25585, 'it my thought': 459720, 'my thought are': 550353, 'thought are with': 892977, 'are with those': 91655, 'with those who': 1001751, 'those who live': 892651, 'who live alone': 989213, 'live alone and': 495709, 'alone and those': 46820, 'those with no': 892721, 'with no money': 999767, 'buy food ect': 148643, 'food ect panic': 314338, 'group find': 366688, 'find consistent': 306855, 'overpricing on': 631402, 'formula despite': 329701, 'despite crackdown': 238713, 'crackdown amazon': 214712, 'ebay failing': 266452, '19 profiteer': 9837, 'profiteer say': 682976, 'say which': 739483, 'consumer group find': 197659, 'group find consistent': 366689, 'find consistent overpricing': 306856, 'consistent overpricing on': 195488, 'overpricing on hand': 631403, 'on hand sanitiser': 601233, 'sanitiser thermometer and': 734029, 'thermometer and baby': 879505, 'and baby formula': 58609, 'baby formula despite': 106618, 'formula despite crackdown': 329702, 'despite crackdown amazon': 238714, 'crackdown amazon and': 214713, 'and ebay failing': 61887, 'ebay failing to': 266453, 'failing to stop': 296237, 'to stop covid': 915513, 'covid 19 profiteer': 213617, '19 profiteer say': 9839, 'profiteer say which': 682978, 'myt': 551028, 'mytbusiness': 551037, 'mytaxation': 551035, 'business rate': 144285, 'rate holiday': 697257, 'retail hospitality': 718187, 'hospitality and': 404752, 'leisure business': 486139, 'business download': 143657, 'download myt': 257599, 'myt app': 551029, 'app today': 81782, 'today myt': 919909, 'myt mytbusiness': 551033, 'mytbusiness mytaxation': 551038, 'business rate holiday': 144288, 'rate holiday for': 697258, 'holiday for retail': 400302, 'for retail hospitality': 325193, 'retail hospitality and': 718188, 'hospitality and leisure': 404755, 'and leisure business': 66093, 'leisure business download': 486140, 'business download myt': 143658, 'download myt app': 257600, 'myt app today': 551030, 'app today myt': 81784, 'today myt mytbusiness': 919910, 'myt mytbusiness mytaxation': 551034, 'prepper guide': 670381, 'surviving coronavirus': 829349, 'prepper guide to': 670382, 'guide to surviving': 368372, 'to surviving coronavirus': 916059, 'surviving coronavirus lockdown': 829350, 'isoation': 454802, 'hungryathome': 411331, 'of collective': 581530, 'we each': 971427, 'each donate': 264061, 'to or': 911045, 'or foodbank': 615355, 'foodbank donation': 317768, 'donation basket': 254557, 'basket when': 112420, 'when next': 983772, 'support vulnerable': 826975, 'vulnerable household': 961001, 'household during': 406782, 'this extra': 887486, 'extra challenging': 293480, 'challenging isoation': 171617, 'isoation period': 454803, 'period nobody': 651828, 'be hungryathome': 115331, 'power of collective': 667650, 'of collective action': 581531, 'collective action if': 186483, 'action if we': 30043, 'if we each': 415278, 'we each donate': 971429, 'each donate food': 264063, 'donate food item': 254181, 'item to or': 463762, 'to or foodbank': 911052, 'or foodbank donation': 615356, 'foodbank donation basket': 317769, 'donation basket when': 254559, 'basket when next': 112422, 'when next in': 983773, 'next in our': 561411, 'supermarket we support': 823756, 'we support vulnerable': 973457, 'support vulnerable household': 826976, 'vulnerable household during': 961002, 'household during this': 406783, 'during this extra': 263284, 'this extra challenging': 887487, 'extra challenging isoation': 293481, 'challenging isoation period': 171618, 'isoation period nobody': 454804, 'period nobody should': 651829, 'should be hungryathome': 765645, 'coronalockdownuk': 205049, 'darwinawards': 226051, 'corvid19uk corvid19': 207746, 'corvid19 coronacrisisuk': 207727, 'coronacrisisuk coronalockdownuk': 204885, 'coronalockdownuk cannot': 205051, 'over just': 630346, 'how hard': 407965, 'hard is': 377952, 'distance on': 246787, 'the pavement': 863402, 'pavement in': 644656, 'park really': 641974, 'really darwinawards': 702099, 'darwinawards going': 226052, 'corvid19uk corvid19 coronacrisisuk': 207747, 'corvid19 coronacrisisuk coronalockdownuk': 207728, 'coronacrisisuk coronalockdownuk cannot': 204886, 'coronalockdownuk cannot get': 205052, 'cannot get over': 161901, 'get over just': 347754, 'over just how': 630347, 'just how stupid': 469002, 'how stupid people': 408761, 'stupid people are': 815439, 'are how hard': 87252, 'how hard is': 407966, 'hard is it': 377953, 'is it to': 449068, 'it to keep': 461727, 'your distance on': 1023537, 'distance on the': 246789, 'on the pavement': 604278, 'the pavement in': 863403, 'pavement in the': 644657, 'supermarket in park': 820958, 'in park really': 426513, 'park really darwinawards': 641975, 'really darwinawards going': 702100, 'darwinawards going to': 226053, 'to be busy': 901142, 'moldy': 535648, 'tremorogenic': 931241, 'mycotoxin': 550699, 'moldy food': 535649, 'kill pet': 474476, 'pet keep': 653414, 'reach with': 700020, 'with household': 998888, 'household initially': 406846, 'initially panicking': 438573, 'and storing': 72527, 'storing food': 811767, 'of tremorogenic': 592445, 'tremorogenic mycotoxin': 931242, 'mycotoxin download': 550702, 'guide from': 368326, 'moldy food can': 535650, 'food can kill': 313871, 'can kill pet': 158824, 'kill pet keep': 474477, 'pet keep it': 653415, 'keep it out': 471619, 'of reach with': 588769, 'reach with household': 700021, 'with household initially': 998890, 'household initially panicking': 406848, 'initially panicking about': 438574, 'panicking about buying': 639308, 'about buying and': 24912, 'buying and storing': 149934, 'and storing food': 72528, 'storing food at': 811768, 'outbreak we may': 628799, 'we may now': 972354, 'may now see': 521398, 'now see an': 575744, 'increase in case': 432821, 'case of tremorogenic': 165934, 'of tremorogenic mycotoxin': 592446, 'tremorogenic mycotoxin download': 931244, 'mycotoxin download our': 550703, 'download our guide': 257612, 'our guide from': 623323, 'good info on': 357265, 'info on relief': 437538, 'on relief check': 603136, 'check and scammer': 174366, 'possible way': 665868, 'get 19': 346466, 'testing immediately': 839512, 'immediately work': 417178, 'been since': 121971, 'or my': 616210, 'are carrier': 85181, 'carrier we': 165035, 'massive influx': 520046, 'business doubling': 143652, 'doubling our': 256163, 'our exposure': 622967, 'there any possible': 878025, 'any possible way': 79672, 'possible way that': 665870, 'way that grocery': 969921, 'store employee can': 807466, 'employee can get': 273708, 'can get 19': 158397, 'get 19 testing': 346468, '19 testing immediately': 11101, 'testing immediately work': 839513, 'immediately work full': 417179, 'time and have': 896274, 'and have been': 64226, 'have been since': 379684, 'been since the': 121974, 'since the virus': 770913, 'the virus outbreak': 870873, 'virus outbreak and': 958587, 'outbreak and have': 627995, 'no idea if': 564466, 'idea if or': 413085, 'if or my': 414563, 'or my co': 616214, 'co worker are': 185013, 'worker are carrier': 1006374, 'are carrier we': 85182, 'carrier we ve': 165036, 've had massive': 953226, 'had massive influx': 373289, 'massive influx of': 520047, 'influx of people': 437390, 'of people and': 587872, 'people and business': 646849, 'and business doubling': 59278, 'business doubling our': 143653, 'doubling our exposure': 256164, 'needlessly': 556654, 'horrifying at': 404172, 'child around': 176012, 'around where': 93626, 'school to': 741955, 'you needlessly': 1020065, 'needlessly bringing': 556655, 'bringing them': 140207, 'catching coronovirus': 167081, 'coronovirus is': 207152, 'even higher': 284180, 'horrifying at the': 404173, 'at the amount': 100877, 'amount of child': 53211, 'of child around': 581345, 'child around where': 176013, 'around where work': 93627, 'where work if': 985367, 're taking them': 699658, 'taking them out': 833606, 'them out of': 876129, 'out of school': 626823, 'of school to': 589404, 'school to protect': 741961, 'protect them why': 685012, 'them why are': 876630, 'are you needlessly': 91823, 'you needlessly bringing': 1020066, 'needlessly bringing them': 556656, 'bringing them into': 140208, 'them into supermarket': 875939, 'into supermarket where': 443065, 'where the chance': 985219, 'of catching coronovirus': 581205, 'catching coronovirus is': 167082, 'coronovirus is even': 207153, 'is even higher': 447564, 'ushering': 950355, '4ir': 19462, 'classroom': 180379, 'is ushering': 453629, 'ushering into': 950358, 'the fourth': 855741, 'fourth industrial': 330718, 'industrial revolution': 435570, 'revolution we': 720754, 'heard again': 388055, 'again how': 37026, 'how 4ir': 407265, '4ir will': 19467, 'see child': 744996, 'child learning': 176129, 'digital classroom': 242522, 'classroom adult': 180380, 'adult working': 32864, 'home increased': 401428, 'increased online': 433387, 'sale good': 732246, 'good ready': 357626, 'not 4ir': 568003, '4ir is': 19465, 'feel like is': 302722, 'like is ushering': 490518, 'is ushering into': 453630, 'ushering into the': 950359, 'into the fourth': 443126, 'the fourth industrial': 855743, 'fourth industrial revolution': 330719, 'industrial revolution we': 435572, 'revolution we ve': 720755, 'we ve heard': 973674, 've heard again': 953246, 'heard again and': 388056, 'again and again': 36883, 'and again how': 57770, 'again how 4ir': 37027, 'how 4ir will': 407266, '4ir will see': 19468, 'will see child': 994769, 'see child learning': 744997, 'child learning in': 176130, 'learning in digital': 484214, 'in digital classroom': 422268, 'digital classroom adult': 242523, 'classroom adult working': 180381, 'adult working from': 32865, 'from home increased': 335873, 'home increased online': 401429, 'increased online food': 433388, 'online food and': 608206, 'and grocery sale': 63998, 'grocery sale good': 364932, 'sale good ready': 732247, 'good ready or': 357627, 'or not 4ir': 616287, 'not 4ir is': 568004, '4ir is here': 19466, 'in consumergoods': 421729, 'consumergoods how': 199682, 'the affecting': 848408, 'take our': 832435, 'our question': 624527, 'question poll': 693700, 'poll cpg': 663835, 'work in consumergoods': 1005300, 'in consumergoods how': 421730, 'consumergoods how is': 199683, 'is the affecting': 452724, 'the affecting your': 848409, 'affecting your business': 34595, 'your business please': 1023073, 'business please take': 144236, 'please take our': 660637, 'take our question': 832437, 'our question poll': 624529, 'question poll cpg': 693701, 'latch': 480831, 'handrils': 376441, '21 bathroom': 14972, 'stall latch': 793369, 'latch 22': 480832, '22 your': 15258, 'your key': 1024546, 'key 23': 473224, 'the coffee': 851129, 'coffee pot': 185525, 'pot handle': 666884, 'handle at': 376173, 'work 24': 1004696, '24 escalator': 15588, 'escalator handrils': 280299, 'handrils 25': 376442, '25 grocery': 15877, 'store conveyor': 807168, 'belt staysafe': 126799, 'staysafe quarantinelife': 798865, 'quarantinelife stayhome': 693020, 'stayhome lockdowneffect': 798041, 'you should never': 1021207, 'should never touch': 766229, 'due to 21': 261694, 'to 21 bathroom': 899611, '21 bathroom stall': 14973, 'bathroom stall latch': 112667, 'stall latch 22': 793370, 'latch 22 your': 480833, '22 your key': 15259, 'your key 23': 1024547, 'key 23 the': 473225, '23 the coffee': 15434, 'the coffee pot': 851133, 'coffee pot handle': 185526, 'pot handle at': 666885, 'handle at work': 376176, 'at work 24': 101590, 'work 24 escalator': 1004697, '24 escalator handrils': 15589, 'escalator handrils 25': 280300, 'handrils 25 grocery': 376443, '25 grocery store': 15878, 'grocery store conveyor': 365300, 'store conveyor belt': 807169, 'conveyor belt staysafe': 202588, 'belt staysafe quarantinelife': 126800, 'staysafe quarantinelife stayhome': 798866, 'quarantinelife stayhome lockdowneffect': 693021, 'thepublicwillremember': 877887, 'greedmongers': 363459, 'frightened': 334045, 'the hashtag': 857137, 'hashtag thepublicwillremember': 378703, 'thepublicwillremember need': 877888, 'to out': 911261, 'the profiteering': 864628, 'profiteering greedmongers': 683053, 'greedmongers selling': 363460, 'basic at': 111831, 'them exploiting': 875675, 'exploiting frightened': 292431, 'frightened british': 334046, 'and willing': 75707, 'pay them': 645164, 'them let': 875978, 'it trending': 461849, 'trending shopping': 931568, 'love the hashtag': 504807, 'the hashtag thepublicwillremember': 857141, 'hashtag thepublicwillremember need': 378704, 'thepublicwillremember need to': 877889, 'need to out': 556003, 'to out the': 911264, 'out the profiteering': 627408, 'the profiteering greedmongers': 864630, 'profiteering greedmongers selling': 683054, 'greedmongers selling basic': 363461, 'selling basic at': 749178, 'basic at these': 111832, 'these price shame': 880541, 'on them exploiting': 604534, 'them exploiting frightened': 875676, 'exploiting frightened british': 292432, 'frightened british public': 334047, 'british public and': 140575, 'public and those': 687859, 'and those vulnerable': 74040, 'those vulnerable and': 892593, 'vulnerable and willing': 960868, 'and willing to': 75708, 'to pay them': 911566, 'pay them let': 645166, 'them let get': 875979, 'let get it': 486732, 'get it trending': 347435, 'it trending shopping': 461851, 'rina': 722506, 'yashayeva': 1014188, 'amazon expect': 50937, 'expect right': 290720, 'our vp': 625288, 'of marketplace': 586248, 'marketplace strategy': 517838, 'strategy rina': 812704, 'rina yashayeva': 722507, 'yashayeva describes': 1014189, 'describes how': 237962, 'how amazon': 407349, 'is reacting': 451250, '19 amazon': 4948, 'what can brand': 981168, 'can brand on': 157789, 'brand on amazon': 137950, 'on amazon expect': 599277, 'amazon expect right': 50938, 'expect right now': 290721, 'right now our': 722114, 'now our vp': 575491, 'our vp of': 625289, 'vp of marketplace': 960715, 'of marketplace strategy': 586249, 'marketplace strategy rina': 517839, 'strategy rina yashayeva': 812705, 'rina yashayeva describes': 722508, 'yashayeva describes how': 1014190, 'describes how consumer': 237963, 'how consumer search': 407597, 'search behavior ha': 743226, 'changed and how': 172433, 'and how amazon': 64800, 'how amazon is': 407351, 'amazon is reacting': 51007, 'is reacting to': 451252, 'reacting to covid': 700183, 'covid 19 amazon': 212621, 'buhari': 141928, 'lagosschoolclosure': 478965, 'share money': 755099, 'from foreign': 335535, 'foreign reserve': 329005, 'reserve to': 714108, 'food ex': 314423, 'ex minister': 288643, 'minister tell': 533464, 'tell buhari': 836917, 'buhari lagosschoolclosure': 141929, 'share money from': 755100, 'money from foreign': 536767, 'from foreign reserve': 335537, 'foreign reserve to': 329007, 'reserve to nigerian': 714110, 'stock food ex': 802130, 'food ex minister': 314424, 'ex minister tell': 288644, 'minister tell buhari': 533465, 'tell buhari lagosschoolclosure': 836918, 'day23': 228867, 'salvadoran': 732894, 'quesadilla': 693474, 'day23 socialdistancing': 228868, 'socialdistancing sunday': 780767, 'sunday had': 818207, 'to safeway': 913727, 'safeway for': 730838, 'provision found': 687261, 'found flour': 330207, 'flour it': 311130, 'gold now': 355941, 'make salvadoran': 510417, 'salvadoran quesadilla': 732895, 'quesadilla bread': 693475, 'bread thank': 138604, 'you gracias': 1018926, 'gracias to': 361619, 'frontline grocery': 338747, 'store essentialworkers': 807625, 'essentialworkers staysafe': 281960, 'day23 socialdistancing sunday': 228869, 'socialdistancing sunday had': 780768, 'sunday had to': 818208, 'go to safeway': 354351, 'to safeway for': 913728, 'safeway for provision': 730840, 'for provision found': 324844, 'provision found flour': 687262, 'found flour it': 330209, 'flour it like': 311131, 'it like gold': 459363, 'like gold now': 490328, 'gold now want': 355942, 'to make salvadoran': 909732, 'make salvadoran quesadilla': 510418, 'salvadoran quesadilla bread': 732896, 'quesadilla bread thank': 693476, 'bread thank you': 138605, 'thank you gracias': 841734, 'you gracias to': 1018927, 'gracias to all': 361620, 'all frontline grocery': 42883, 'frontline grocery store': 338749, 'grocery store essentialworkers': 365375, 'store essentialworkers staysafe': 807626, 'essentialworkers staysafe quarantinelife': 281961, 'reprieve': 712977, 'in standard': 428228, 'standard bank': 793636, 'bank announced': 109627, 'announced payment': 77017, 'payment holiday': 645649, 'it client': 457174, 'client on': 182075, 'all up': 45327, 'date loan': 226677, 'loan from': 497440, 'from april': 334573, '30 june': 17089, 'june 2020': 467988, 'bank made': 109991, 'announcement amid': 77129, 'growing call': 367131, 'consumer reprieve': 198744, 'reprieve the': 712980, 'just in standard': 469047, 'in standard bank': 428229, 'standard bank announced': 793637, 'bank announced payment': 109628, 'announced payment holiday': 77018, 'payment holiday for': 645650, 'holiday for it': 400301, 'for it client': 322698, 'it client on': 457175, 'client on all': 182076, 'on all up': 599253, 'all up to': 45331, 'to date loan': 903933, 'date loan from': 226678, 'loan from april': 497441, 'from april 2020': 334576, '2020 to 30': 14662, 'to 30 june': 899670, '30 june 2020': 17090, 'june 2020 the': 467990, '2020 the bank': 14633, 'the bank made': 849249, 'bank made the': 109992, 'made the announcement': 507986, 'the announcement amid': 848756, 'announcement amid growing': 77130, 'amid growing call': 52492, 'growing call for': 367132, 'call for consumer': 155858, 'for consumer reprieve': 320287, 'consumer reprieve the': 198745, 'reprieve the country': 712981, 'pandemic txlege': 636857, 'protecting consumer amid': 685185, 'consumer amid the': 196182, 'the pandemic txlege': 863139, 'figuratively': 305178, 'wenotoutside': 978943, 'westernbeefisstacked': 980651, 'this shopping': 890109, 'trip is': 932099, 'is sponsored': 452172, 'by literally': 153058, 'literally and': 494949, 'and figuratively': 62834, 'figuratively socialdistancing': 305179, 'socialdistancing wenotoutside': 780862, 'wenotoutside westernbeefisstacked': 978944, 'westernbeefisstacked western': 980652, 'western beef': 980594, 'beef supermarket': 120552, 'this shopping trip': 890110, 'shopping trip is': 764252, 'trip is sponsored': 932101, 'is sponsored by': 452173, 'sponsored by literally': 789839, 'by literally and': 153059, 'literally and figuratively': 494950, 'and figuratively socialdistancing': 62835, 'figuratively socialdistancing wenotoutside': 305180, 'socialdistancing wenotoutside westernbeefisstacked': 780863, 'wenotoutside westernbeefisstacked western': 978945, 'westernbeefisstacked western beef': 980653, 'western beef supermarket': 980595, 'flipkart and': 310608, 'amazon india': 50990, 'india close': 434345, 'flipkart and amazon': 310609, 'and amazon india': 58045, 'amazon india close': 50991, 'india close their': 434346, 'close their online': 182853, 'and delivery service': 61128, 'delivery service due': 234433, 'proportionate': 684443, 'despondency': 238933, 'be proportionate': 116570, 'proportionate and': 684444, 'create state': 215740, 'and despondency': 61271, 'despondency that': 238934, 'could negatively': 209424, 'negatively affect': 556846, 'affect consumer': 34138, 'to the should': 917063, 'should be proportionate': 765696, 'be proportionate and': 116571, 'proportionate and it': 684445, 'and it should': 65583, 'should not create': 766236, 'not create state': 568923, 'create state of': 215741, 'state of fear': 795805, 'fear and despondency': 301027, 'and despondency that': 61272, 'despondency that could': 238935, 'that could negatively': 843355, 'could negatively affect': 209425, 'negatively affect consumer': 556847, 'affect consumer demand': 34139, 'unjustifiable': 942482, 'competition watchdog': 191749, 'watchdog promise': 968637, 'tackle bad': 831558, 'bad apple': 107764, 'apple charging': 82314, 'charging unjustifiable': 173532, 'unjustifiable price': 942483, 'for drug': 320869, 'competition watchdog promise': 191750, 'watchdog promise to': 968638, 'promise to tackle': 683704, 'to tackle bad': 916124, 'tackle bad apple': 831559, 'bad apple charging': 107765, 'apple charging unjustifiable': 82315, 'charging unjustifiable price': 173533, 'unjustifiable price for': 942484, 'price for drug': 673953, 'knw': 477282, 'to knw': 909009, 'knw that': 477283, 'platform of': 659011, 'pakistan is': 634459, 'taking precautionary': 833525, 'product delivery': 681111, 'delivery process': 234368, 'process who': 679979, 'is guideline': 448245, 'being followed': 125161, 'followed staysafeshoponline': 312607, 'glad to knw': 351527, 'to knw that': 909010, 'knw that the': 477284, 'that the biggest': 846669, 'shopping platform of': 763637, 'platform of pakistan': 659012, 'of pakistan is': 587674, 'pakistan is taking': 634462, 'is taking precautionary': 452561, 'taking precautionary measure': 833526, 'precautionary measure in': 669424, 'measure in their': 525233, 'in their product': 429767, 'their product delivery': 874465, 'product delivery process': 681112, 'delivery process who': 234371, 'process who is': 679980, 'who is guideline': 989078, 'is guideline for': 448246, '19 are being': 5192, 'are being followed': 84861, 'being followed staysafeshoponline': 125162, 'craazy': 214681, 'just worked': 470342, 'worked 10': 1006088, 'is craazy': 446870, 'craazy out': 214682, 'here stayhome': 393596, 'stayhome help': 798017, 'help friend': 389764, 'friend out': 333747, 'just worked 10': 470343, 'worked 10 hour': 1006089, '10 hour shift': 1469, 'shift in supermarket': 758329, 'in supermarket it': 428620, 'it is craazy': 458917, 'is craazy out': 446871, 'craazy out here': 214683, 'out here stayhome': 626296, 'here stayhome help': 393597, 'stayhome help friend': 798018, 'help friend out': 389765, 'the maharashtra': 859888, 'at hotel': 99196, 'hotel with': 405212, 'with discounted': 998074, 'price near': 675309, 'airport for': 40099, 'quarantine win': 692706, 'win win': 995595, 'win situation': 995573, 'since hotel': 770651, 'hotel occupancy': 405169, 'occupancy is': 578987, 'is drastically': 447370, 'drastically down': 258433, 'the maharashtra govt': 859889, 'maharashtra govt is': 508479, 'govt is looking': 361165, 'looking at hotel': 502810, 'at hotel with': 99198, 'hotel with discounted': 405213, 'with discounted price': 998075, 'discounted price near': 244599, 'price near the': 675311, 'near the airport': 553608, 'the airport for': 848507, 'airport for quarantine': 40100, 'for quarantine win': 324902, 'quarantine win win': 692707, 'win win situation': 995597, 'win situation since': 995576, 'situation since hotel': 772485, 'since hotel occupancy': 770652, 'hotel occupancy is': 405170, 'occupancy is drastically': 578988, 'is drastically down': 447372, 'upheavel': 947563, '20 ha': 13085, 'brought illness': 141159, 'illness stock': 416396, 'market nose': 516761, 'nose dive': 567883, 'dive job': 248495, 'loss possible': 503764, 'possible depression': 665618, 'change induced': 172144, 'induced global': 435468, 'global upheavel': 352275, 'upheavel in': 947564, 'security home': 744641, 'home safety': 401997, 'travel yay': 930577, 'roaring 20 ha': 724585, '20 ha brought': 13087, 'ha brought illness': 370035, 'brought illness stock': 141160, 'illness stock market': 416397, 'stock market nose': 802414, 'market nose dive': 516762, 'nose dive job': 567885, 'dive job loss': 248496, 'job loss possible': 465983, 'loss possible depression': 503765, 'possible depression and': 665619, 'depression and climate': 237626, 'and climate change': 59991, 'climate change induced': 182198, 'change induced global': 172145, 'induced global upheavel': 435469, 'global upheavel in': 352276, 'upheavel in food': 947565, 'food security home': 316353, 'security home safety': 744642, 'home safety and': 401998, 'safety and travel': 730466, 'and travel yay': 74414, 'defenseproductionact': 232150, 'trumpliesamericansdie when': 934083, 'could implement': 209321, 'the defenseproductionact': 853034, 'defenseproductionact and': 232151, 'get manufacturing': 347517, 'manufacturing started': 513664, 'on n95masks': 602333, 'n95masks and': 551260, 'and ppe': 69283, 'ppe trump': 668092, 'killing his': 474684, 'own supporter': 632252, 'supporter even': 827087, 'even white': 284794, 'house insider': 406366, 'insider know': 439469, 'trumpliesamericansdie when he': 934084, 'when he could': 983530, 'he could implement': 384857, 'could implement the': 209322, 'implement the defenseproductionact': 418433, 'the defenseproductionact and': 853035, 'defenseproductionact and do': 232152, 'and do what': 61568, 'do what it': 250514, 'what it take': 981758, 'take to fix': 832735, 'to fix price': 905992, 'fix price and': 309744, 'price and get': 672423, 'and get manufacturing': 63585, 'get manufacturing started': 347518, 'manufacturing started on': 513665, 'started on n95masks': 794793, 'on n95masks and': 602334, 'n95masks and ppe': 551261, 'and ppe trump': 69286, 'ppe trump is': 668093, 'trump is killing': 933649, 'is killing his': 449205, 'killing his own': 474685, 'his own supporter': 397681, 'own supporter even': 632253, 'supporter even white': 827088, 'even white house': 284795, 'white house insider': 987852, 'house insider know': 406367, 'insider know it': 439470, 'stressor': 813546, 'financial stressor': 306608, 'stressor have': 813547, 'significant impact': 769463, 'being here': 125232, 'learn to': 484083, 'manage these': 512453, 'these stressor': 880756, 'stressor managing': 813549, 'financial stressor have': 306609, 'stressor have significant': 813548, 'have significant impact': 382551, 'significant impact on': 769464, 'on your mental': 605480, 'well being here': 978058, 'being here great': 125234, 'here great resource': 393060, 'help you learn': 390980, 'you learn to': 1019570, 'learn to manage': 484086, 'to manage these': 909802, 'manage these stressor': 512454, 'these stressor managing': 880757, 'stressor managing financial': 813550, 'lil': 492215, 'toiletpaper when': 922833, 'even notice': 284408, 'paper problem': 640617, 'your while': 1026347, 'while mom': 987056, 'mom clean': 535710, 'clean lil': 180576, 'lil jd': 492222, 'jd made': 464932, 'tp his': 927836, 'his table': 397845, 'table and': 831450, 'and chair': 59705, 'toiletpaper when you': 922836, 'don even notice': 253487, 'even notice the': 284409, 'notice the toilet': 573374, 'toilet paper problem': 921402, 'paper problem that': 640618, 'problem that are': 679700, 'that are going': 842756, 'world today because': 1010092, 'today because your': 919314, 'because your while': 119887, 'your while mom': 1026348, 'while mom clean': 987057, 'mom clean lil': 535711, 'clean lil jd': 180577, 'lil jd made': 492223, 'jd made the': 464933, 'made the tp': 508000, 'the tp his': 869841, 'tp his table': 927837, 'his table and': 397846, 'table and chair': 831452, 'kayla': 471144, 'simpson': 770322, 'person checkout': 652359, 'operator at': 613352, 'supermarket 16': 818731, 'old kayla': 598307, 'kayla simpson': 471145, 'simpson ha': 770329, 'found herself': 330237, 'herself on': 394234, 'first person checkout': 308860, 'person checkout operator': 652360, 'checkout operator at': 174970, 'operator at busy': 613353, 'busy supermarket 16': 144973, 'supermarket 16 year': 818732, '16 year old': 4196, 'year old kayla': 1014839, 'old kayla simpson': 598308, 'kayla simpson ha': 471147, 'simpson ha found': 770330, 'ha found herself': 370673, 'found herself on': 330238, 'herself on the': 394235, 'enoug': 277303, 'chain been': 170547, 'been effected': 121071, 'effected by': 269171, 'supermarket informed': 821035, 'informed the': 438131, 'stock such': 802894, 'basic bread': 111839, 'milk toilet': 531875, 'and confirm': 60284, 'confirm there': 194110, 'is enoug': 447507, 'ha the food': 372199, 'supply chain been': 824915, 'chain been effected': 170549, 'been effected by': 121072, 'effected by just': 269174, 'by just wondering': 152978, 'if you the': 415539, 'you the other': 1021608, 'the other supermarket': 862556, 'other supermarket informed': 621019, 'supermarket informed the': 821036, 'informed the general': 438132, 'general public to': 345462, 'public to the': 688381, 'to the availability': 916502, 'availability of stock': 104165, 'of stock such': 590194, 'stock such the': 802897, 'such the basic': 816798, 'the basic bread': 849303, 'basic bread milk': 111840, 'bread milk toilet': 138536, 'milk toilet paper': 531877, 'paper etc and': 640135, 'etc and confirm': 282405, 'and confirm there': 60286, 'confirm there is': 194111, 'there is enoug': 878554, 'upheaval': 947549, 'report reveal': 712220, 'reveal their': 720253, 'business approach': 143350, 'to international': 908453, 'international expansion': 441799, 'expansion amidst': 290552, 'amidst backdrop': 52777, 'political upheaval': 663692, 'upheaval and': 947550, 'latest report reveal': 481529, 'report reveal their': 712221, 'reveal their business': 720254, 'their business approach': 872675, 'business approach to': 143351, 'approach to international': 82990, 'to international expansion': 908454, 'international expansion amidst': 441800, 'expansion amidst backdrop': 290553, 'amidst backdrop of': 52778, 'backdrop of political': 107519, 'of political upheaval': 588211, 'political upheaval and': 663693, 'upheaval and the': 947552, 'is now out': 450312, 'stock and the': 801833, 'the price should': 864413, 'please do the': 659900, 'fogged': 312026, 'my glass': 548507, 'glass fogged': 351618, 'fogged up': 312027, 'up through': 946297, 'the battery': 849341, 'battery in': 112754, 'both hearing': 135928, 'hearing aid': 388189, 'aid died': 39377, 'fact wa': 295837, 'wa blind': 961717, 'blind and': 132682, 'and deaf': 60973, 'deaf negotiated': 229321, 'negotiated the': 556933, 'of madrid': 586094, 'madrid adventure': 508230, 'morning my glass': 541365, 'my glass fogged': 548510, 'glass fogged up': 351619, 'fogged up through': 312029, 'up through my': 946298, 'through my mask': 894581, 'mask and the': 518377, 'and the battery': 73253, 'the battery in': 849342, 'battery in both': 112755, 'in both hearing': 420921, 'both hearing aid': 135929, 'hearing aid died': 388190, 'aid died at': 39378, 'died at the': 241515, 'same time in': 733358, 'time in fact': 896987, 'in fact wa': 422767, 'fact wa blind': 295838, 'wa blind and': 961718, 'blind and deaf': 132683, 'and deaf negotiated': 60974, 'deaf negotiated the': 229322, 'negotiated the street': 556934, 'street of madrid': 813050, 'of madrid adventure': 586095, 'prescribed': 670469, 'is willing': 453993, 'supply testing': 825944, 'kit at': 475501, 'same quality': 733258, 'quality standard': 691850, 'standard that': 793708, 'have prescribed': 382028, 'prescribed then': 670476, 'nation india': 552225, 'at daily': 98400, 'daily medium': 224697, 'someone is willing': 784536, 'is willing to': 453994, 'willing to supply': 995478, 'to supply testing': 915889, 'supply testing kit': 825945, 'testing kit at': 839531, 'kit at lower': 475503, 'the same quality': 866285, 'same quality standard': 733259, 'quality standard that': 691851, 'standard that we': 793709, 'we have prescribed': 971903, 'have prescribed then': 382029, 'prescribed then please': 670477, 'then please let': 877430, 'let know it': 486861, 'know it will': 476548, 'will be of': 992580, 'be of great': 116145, 'of great service': 584318, 'service to the': 752995, 'the nation india': 861244, 'nation india at': 552226, 'india at daily': 434318, 'at daily medium': 98401, 'daily medium briefing': 224698, 'someone please': 784605, 'please hack': 660046, 'hack into': 372742, 'store loyalty': 808841, 'card data': 163498, 'data click': 226174, 'purchase history': 689492, 'tell who': 837136, 'biggest asshole': 130186, 'asshole are': 96510, 'here then': 393673, 'could all': 208800, 'go egg': 353512, 'tp their': 927976, 'they already': 881131, 'can someone please': 159673, 'someone please hack': 784608, 'please hack into': 660047, 'hack into the': 372743, 'grocery store loyalty': 365546, 'store loyalty card': 808842, 'loyalty card data': 506290, 'card data click': 163499, 'data click on': 226175, 'click on purchase': 181934, 'on purchase history': 603012, 'purchase history and': 689493, 'history and tell': 398003, 'and tell who': 73099, 'tell who the': 837138, 'who the biggest': 989748, 'the biggest asshole': 849641, 'biggest asshole are': 130187, 'asshole are around': 96511, 'are around here': 84615, 'around here then': 93325, 'here then we': 393674, 'then we could': 877723, 'we could all': 971196, 'could all go': 208802, 'all go egg': 42940, 'go egg and': 353513, 'egg and tp': 269775, 'and tp their': 74336, 'tp their house': 927977, 'their house but': 873604, 'house but we': 406225, 'can because they': 157729, 'because they already': 119686, 'they already bought': 881132, 'already bought all': 47239, 'all the egg': 44729, 'the egg and': 854087, 'nc': 553280, 'atty': 102751, 'from nc': 336548, 'nc atty': 553283, 'atty gen': 102752, 'gen josh': 345221, 'stein door': 799440, 'door people': 255691, 'alert from nc': 41433, 'from nc atty': 336549, 'nc atty gen': 553284, 'atty gen josh': 102753, 'gen josh stein': 345222, 'josh stein door': 467346, 'stein door to': 799441, 'to door people': 904670, 'door people trying': 255692, 'sell you covid': 748953, 'teen coughed': 836486, 'amid in': 52508, 'disturbing social': 248417, 'medium trend': 527335, 'teen coughed on': 836487, 'coughed on fruit': 208625, 'and vegetable at': 74878, 'vegetable at grocery': 953939, 'grocery store amid': 365191, 'store amid in': 806165, 'amid in disturbing': 52509, 'in disturbing social': 422323, 'disturbing social medium': 248418, 'social medium trend': 779892, 'woolworth executive': 1004413, 'executive take': 289941, 'take pay': 832485, 'support employee': 826477, 'woolworth executive take': 1004414, 'executive take pay': 289942, 'take pay cut': 832486, 'pay cut due': 644827, '19 to support': 11462, 'to support employee': 915926, 'strong if': 814043, 'like senator': 491157, 'burr and': 142937, 'and kelly': 65804, 'kelly loeffler': 472717, 'loeffler had': 500595, 'had also': 372830, 'attend an': 102299, 'level briefing': 487527, '19 week': 11976, 'week before': 975993, 'it began': 456816, 'began severely': 123429, 'severely impacting': 754095, 'maybe we all': 521869, 'we all feel': 970323, 'all feel that': 42772, 'feel that the': 302876, 'is strong if': 452388, 'strong if we': 814044, 'if we like': 415290, 'we like senator': 972195, 'like senator richard': 491158, 'richard burr and': 721287, 'burr and kelly': 142938, 'and kelly loeffler': 65805, 'kelly loeffler had': 472719, 'loeffler had also': 500596, 'had also been': 372831, 'also been able': 47938, 'able to attend': 24451, 'to attend an': 900817, 'attend an extremely': 102300, 'an extremely high': 56031, 'extremely high level': 293891, 'high level briefing': 395155, 'level briefing on': 487528, 'briefing on covid': 139728, 'covid 19 week': 214056, '19 week before': 11977, 'week before it': 975995, 'before it began': 122878, 'it began severely': 456817, 'began severely impacting': 123430, 'severely impacting the': 754097, 'impacting the economy': 418265, 'wisely': 996710, 'avoidscams': 105515, 'financialhelp': 306648, 'assist others': 96634, 'charity here': 173639, 'donate wisely': 254289, 'wisely charity': 996715, 'charity avoidscams': 173578, 'avoidscams financialhelp': 105516, 'the time when': 869632, 'time when many': 898292, 'when many people': 983718, 'in need if': 425747, 'able to assist': 24450, 'to assist others': 900782, 'assist others and': 96635, 'others and are': 621254, 'and are looking': 58332, 'to charity here': 902657, 'charity here are': 173640, 'to donate wisely': 904658, 'donate wisely charity': 254290, 'wisely charity avoidscams': 996716, 'charity avoidscams financialhelp': 173579, 'feel working': 302935, 'center being': 169166, 'being classed': 124948, 'classed by': 180294, 'government essential': 360070, 'country 2019': 210401, 'study hard': 814904, 'hard so': 378014, 'to stack': 915128, 'shelf 2020': 756675, 'year stacking': 1014972, 'shelf become': 756881, 'job around': 465669, 'around schoolclosuresuk': 93473, 'schoolclosuresuk virus': 742016, 'how feel working': 407860, 'feel working for': 302936, 'working for supermarket': 1008646, 'for supermarket distribution': 326007, 'distribution center being': 248122, 'center being classed': 169167, 'being classed by': 124949, 'classed by the': 180295, 'the government essential': 856535, 'government essential to': 360071, 'to the country': 916604, 'the country 2019': 852040, 'country 2019 the': 210402, '2019 the year': 14029, 'the year to': 872174, 'year to study': 1015048, 'to study hard': 915699, 'study hard so': 814905, 'hard so not': 378015, 'so not to': 777901, 'not to stack': 572189, 'to stack shelf': 915129, 'stack shelf 2020': 791981, 'shelf 2020 the': 756676, '2020 the year': 14645, 'the year stacking': 872170, 'year stacking shelf': 1014973, 'stacking shelf become': 792040, 'shelf become the': 756882, 'become the safest': 120164, 'safest job around': 730429, 'job around schoolclosuresuk': 465670, 'around schoolclosuresuk virus': 93474, 'mall online': 511809, 'shopping mall online': 763234, 'mall online shopping': 511810, 'chain short': 171100, 'short version': 764780, 'version don': 954904, 'hoard panic': 398848, 'owe huge': 631818, 'huge thanks': 410238, 'keeping good': 472433, 'yesterday wa on': 1015924, 'wa on to': 962837, 'on to discus': 604732, 'to discus how': 904377, 'discus how covid': 244862, 'supply chain short': 825034, 'chain short version': 171101, 'short version don': 764781, 'version don hoard': 954905, 'don hoard panic': 253641, 'hoard panic buy': 398849, 'food and we': 313380, 'and we owe': 75312, 'we owe huge': 972680, 'owe huge thanks': 631819, 'huge thanks to': 410240, 'all the business': 44682, 'the business and': 850160, 'business and worker': 143341, 'and worker that': 75882, 'worker that are': 1007911, 'are keeping good': 87656, 'keeping good moving': 472434, 'good moving in': 357425, 'moving in difficult': 544158, 'in difficult circumstance': 422261, 'driving is': 259959, 'is easy': 447429, 'easy the': 265767, 'worker stocking': 1007830, 'shelf sanitizing': 757476, 'sanitizing intensive': 736477, 'unit delivering': 942051, 'and performing': 68901, 'performing other': 651499, 'duty may': 263592, 'own personal': 632128, 'personal vehicle': 652991, 'vehicle not': 954271, 'hero drive': 393978, 'driving is easy': 259960, 'is easy the': 447432, 'easy the street': 265768, 'the street are': 868218, 'empty but many': 274824, 'but many worker': 146364, 'many worker stocking': 514897, 'worker stocking supermarket': 1007831, 'supermarket shelf sanitizing': 822521, 'shelf sanitizing intensive': 757477, 'sanitizing intensive care': 736478, 'care unit delivering': 164244, 'unit delivering meal': 942052, 'delivering meal and': 233524, 'meal and performing': 524094, 'and performing other': 68902, 'performing other essential': 651500, 'other essential duty': 620159, 'essential duty may': 280984, 'duty may not': 263593, 'may not own': 521384, 'not own personal': 570884, 'own personal vehicle': 632131, 'personal vehicle not': 652992, 'vehicle not all': 954272, 'all hero drive': 43109, 'hero drive to': 393979, 'drive to work': 259232, 'no store': 565586, 'store stock': 810388, 'share value': 755327, 'value are': 952092, 'soaring no': 779333, 'no business': 563739, 'booming no': 134888, 'no corona': 563904, 'been blessing': 120744, 'community stophoarding': 190126, 'mass gathering in': 519773, 'gathering in supermarket': 344466, 'in supermarket no': 428637, 'supermarket no store': 821619, 'no store stock': 565591, 'store stock market': 810390, 'stock market share': 802434, 'market share value': 517052, 'share value are': 755328, 'value are soaring': 952093, 'are soaring no': 90230, 'soaring no business': 779334, 'no business is': 563740, 'is booming no': 446227, 'booming no corona': 134889, 'no corona ha': 563905, 'corona ha been': 203970, 'ha been blessing': 369731, 'been blessing for': 120745, 'blessing for the': 132645, 'business community stophoarding': 143555, 'gartner': 343718, 'gartner analyst': 343719, 'analyst discus': 57121, 'what mean': 981860, 'for direct': 320728, 'long via': 501807, 'via caroline': 955847, 'caroline of': 164855, 'of gartnermktg': 584045, 'gartnermktg marketing': 343723, 'marketing mktg': 517653, 'gartner analyst discus': 343720, 'analyst discus what': 57123, 'discus what mean': 244943, 'what mean for': 981861, 'mean for direct': 524435, 'for direct to': 320729, 'the long via': 859686, 'long via caroline': 501808, 'via caroline of': 955848, 'caroline of gartnermktg': 164856, 'of gartnermktg marketing': 584046, 'gartnermktg marketing mktg': 343724, 'going to vote': 355754, 'to vote and': 918238, 'vote and the': 960470, 'me luck illinoisprimary': 523128, 'thought three': 893269, 'western capitalist': 980601, 'capitalist society': 162814, 'society that': 781323, 'would want': 1012381, 'is face': 447682, 'economy cannot': 267742, 'provide one': 686409, 'have thought three': 383127, 'thought three month': 893270, 'three month ago': 893992, 'month ago that': 537545, 'ago that the': 38492, 'thing in western': 884444, 'in western capitalist': 430813, 'western capitalist society': 980602, 'capitalist society that': 162816, 'society that you': 781324, 'you would want': 1022462, 'would want to': 1012383, 'to buy is': 902252, 'buy is face': 148836, 'is face mask': 447683, 'protect yourself in': 685097, 'yourself in the': 1026647, 'supermarket the economy': 823219, 'the economy cannot': 853948, 'economy cannot provide': 267743, 'cannot provide one': 162046, 'provide one for': 686410, 'of team': 590616, 'team hul': 835683, 'such meaningful': 816632, 'meaningful way': 524862, 'way gratitude': 969606, 'respect via': 715089, 'part of team': 642386, 'of team hul': 590617, 'team hul and': 835684, 'hul and be': 410335, 'and be able': 58744, 'able to stand': 24550, 'to stand with': 915167, 'stand with the': 793612, 'with the nation': 1001398, 'nation in such': 552221, 'in such meaningful': 428527, 'such meaningful way': 816633, 'meaningful way gratitude': 524863, 'way gratitude and': 969607, 'gratitude and respect': 362359, 'and respect via': 70336, 'discovers': 244725, 'armor discovers': 92973, 'discovers cyber': 244726, 'cyber underground': 223949, 'underground criminal': 940448, 'criminal exploiting': 216832, 'crisis selling': 218014, 'selling chloroquine': 749196, 'chloroquine covid': 177595, 'kit n95': 475601, 'n95 respirator': 551227, 'respirator for': 715201, 'for sky': 325648, 'price cybersecurity': 673380, 'armor discovers cyber': 92974, 'discovers cyber underground': 244727, 'cyber underground criminal': 223950, 'underground criminal exploiting': 940449, 'criminal exploiting the': 216833, 'exploiting the coronavirus': 292452, 'coronavirus crisis selling': 205767, 'crisis selling chloroquine': 218015, 'selling chloroquine covid': 749197, 'chloroquine covid 19': 177596, 'test kit n95': 839065, 'kit n95 respirator': 475603, 'n95 respirator for': 551230, 'respirator for sky': 715202, 'for sky high': 325649, 'high price cybersecurity': 395244, 'seriously think': 751757, 'start raising': 794451, 'coronavirus have': 206054, 'received letter': 703634, 'letter saying': 487341, 'that both': 843012, 'my broadband': 547546, 'broadband and': 140713, 'and tv': 74539, 'tv will': 936221, 'april surely': 83691, 'surely you': 827962, 'have waited': 383530, 'waited until': 964278, 'did you seriously': 240948, 'you seriously think': 1021129, 'seriously think it': 751758, 'idea to start': 413208, 'to start raising': 915215, 'start raising price': 794452, 'raising price during': 696111, 'during coronavirus have': 262536, 'coronavirus have just': 206055, 'just received letter': 469576, 'received letter saying': 703637, 'letter saying that': 487343, 'saying that both': 739698, 'that both my': 843016, 'both my broadband': 135975, 'my broadband and': 547547, 'broadband and tv': 140715, 'and tv will': 74542, 'tv will be': 936222, 'be increased from': 115461, 'increased from the': 433331, 'beginning of april': 123643, 'of april surely': 580331, 'april surely you': 83692, 'surely you could': 827964, 'you could have': 1018091, 'could have waited': 209273, 'have waited until': 383531, 'waited until after': 964279, 'until after this': 943674, 'take social': 832595, 'distancing more': 247339, 'seriously starting': 751728, 'tomorrow kroger': 924118, 'kroger will': 477782, 'to half': 907092, 'the building': 850093, 'building code': 142062, 'code capacity': 185345, 'for proper': 324811, 'proper physical': 684123, 'also testing': 48960, 'testing one': 839589, 'store are starting': 806525, 'to take social': 916237, 'take social distancing': 832596, 'social distancing more': 779665, 'distancing more seriously': 247340, 'more seriously starting': 540364, 'seriously starting tomorrow': 751729, 'starting tomorrow kroger': 795059, 'tomorrow kroger will': 924119, 'kroger will limit': 477783, 'of shopper to': 589654, 'shopper to half': 761765, 'to half the': 907094, 'half the building': 374269, 'the building code': 850096, 'building code capacity': 142063, 'code capacity to': 185346, 'capacity to allow': 162585, 'allow for proper': 45967, 'for proper physical': 324812, 'proper physical distancing': 684124, 'physical distancing in': 655413, 'distancing in every': 247224, 'every store they': 286226, 're also testing': 698272, 'also testing one': 48961, 'testing one way': 839590, 'one way aisle': 607365, 'notok': 573603, 'when young': 984619, 'young mom': 1022621, 'mom cannot': 535708, 'find special': 307244, 'special formula': 787928, 'formula to': 329720, 'feed her': 302315, 'her baby': 391868, 'baby with': 106744, 'with severe': 1000655, 'severe allergy': 753984, 'allergy ha': 45775, 'ha her': 370857, 'dad travel': 224398, 'travel state': 930517, 'state away': 795409, 'some the': 784031, 'ha problem': 371540, 'problem officially': 679632, 'calling those': 156637, 'those profiting': 892372, 'from nation': 336543, 'crisis sad': 217994, 'sad inhumane': 729180, 'inhumane criminal': 438489, 'criminal stophoarding': 216877, 'stophoarding notok': 805431, 'notok pray': 573604, 'when young mom': 984620, 'young mom cannot': 1022622, 'mom cannot find': 535709, 'cannot find special': 161848, 'find special formula': 307245, 'special formula to': 787929, 'formula to feed': 329722, 'to feed her': 905722, 'feed her baby': 302316, 'her baby with': 391870, 'baby with severe': 106746, 'with severe allergy': 1000656, 'severe allergy ha': 753985, 'allergy ha her': 45776, 'ha her dad': 370858, 'her dad travel': 391979, 'dad travel state': 224399, 'travel state away': 930518, 'state away to': 795410, 'away to find': 106072, 'find some the': 307231, 'some the ha': 784032, 'the ha problem': 857009, 'ha problem officially': 371541, 'problem officially calling': 679633, 'officially calling those': 595993, 'calling those profiting': 156639, 'those profiting from': 892373, 'profiting from nation': 683124, 'from nation crisis': 336544, 'nation crisis sad': 552154, 'crisis sad inhumane': 217995, 'sad inhumane criminal': 729181, 'inhumane criminal stophoarding': 438490, 'criminal stophoarding notok': 216878, 'stophoarding notok pray': 805432, 'fueling': 340341, 'bv9twvpqkb': 151483, 'of fueling': 583997, 'fueling the': 340347, 'oilprices bv9twvpqkb': 597657, 'other of fueling': 620591, 'of fueling the': 583998, 'fueling the price': 340348, 'sector oilprices bv9twvpqkb': 744283, 'pandemic threatening': 636758, 'threatening long': 893816, 'industry across': 435599, 'slashing consumer': 773657, 'spending new': 788924, 'research out': 713807, 'state suggests': 795958, 'suggests it': 817697, 'drive many': 259091, 'state county': 795500, 'county into': 211418, 'into financial': 442559, 'financial collapse': 306348, '19 pandemic threatening': 9501, 'pandemic threatening long': 636759, 'threatening long list': 893817, 'list of business': 494414, 'business and industry': 143314, 'and industry across': 65176, 'industry across the': 435600, 'country and slashing': 210445, 'and slashing consumer': 71736, 'slashing consumer spending': 773658, 'consumer spending new': 199078, 'spending new research': 788925, 'new research out': 559465, 'research out of': 713808, 'of state suggests': 590072, 'state suggests it': 795959, 'suggests it could': 817698, 'it could also': 457351, 'could also drive': 208812, 'also drive many': 48132, 'drive many of': 259092, 'the state county': 867761, 'state county into': 795501, 'county into financial': 211419, 'into financial collapse': 442560, 'fba': 300685, 'fbaops': 300688, 'offering service': 595240, 'service fee': 752361, 'such surgical': 816787, 'mask medical': 518969, 'glove personal': 352862, 'equipment safety': 279823, 'more alibaba': 538587, 'alibaba fba': 41708, 'fba fbaops': 300686, 'fbaops online': 300689, 'onlineshopping shopping': 609934, 'shopping deal': 762439, 'deal discount': 229381, 'discount onlinebusiness': 244519, 'onlinebusiness shoponline': 609787, 'shoponline apparel': 761267, 'are offering service': 88676, 'offering service fee': 595241, 'service fee for': 752362, 'fee for all': 302170, 'for all covid': 319117, '19 related product': 10063, 'related product such': 708521, 'product such surgical': 681661, 'such surgical mask': 816788, 'surgical mask medical': 828361, 'mask medical glove': 518971, 'medical glove personal': 526190, 'glove personal protective': 352863, 'personal protective equipment': 652944, 'protective equipment safety': 685734, 'equipment safety glass': 279824, 'safety glass and': 730552, 'glass and much': 351598, 'much more alibaba': 545094, 'more alibaba fba': 538588, 'alibaba fba fbaops': 41709, 'fba fbaops online': 300687, 'fbaops online onlineshopping': 300690, 'online onlineshopping shopping': 608624, 'onlineshopping shopping deal': 609935, 'shopping deal discount': 762440, 'deal discount onlinebusiness': 229382, 'discount onlinebusiness shoponline': 244520, 'onlinebusiness shoponline apparel': 609788, 'stroll': 813947, 'raindrop': 695775, 'unfortunately for': 941600, 'those hoping': 892065, 'take stroll': 832616, 'stroll or': 813948, 'or venture': 617656, 'essential amid': 280768, 'amid shelter': 52648, 'place measure': 657572, 'dodge raindrop': 251282, 'raindrop will': 695778, 'norm into': 567045, 'unfortunately for those': 941601, 'for those hoping': 327113, 'those hoping to': 892066, 'hoping to take': 403960, 'to take stroll': 916240, 'take stroll or': 832617, 'stroll or venture': 813949, 'or venture to': 617657, 'store for essential': 807800, 'for essential amid': 321093, 'essential amid shelter': 280770, 'amid shelter in': 52649, 'in place measure': 426748, 'place measure the': 657574, 'measure the need': 525368, 'need to dodge': 555908, 'to dodge raindrop': 904618, 'dodge raindrop will': 251283, 'raindrop will be': 695779, 'be the norm': 117641, 'the norm into': 861855, 'norm into this': 567046, 'into this weekend': 443226, 'ordination': 619109, 'address nation': 31998, 'committee made': 189079, 'made national': 507866, 'national co': 552444, 'co ordination': 184930, 'ordination committee': 619110, 'll ensure': 496736, 'ensure hoarder': 277969, 'hoarder don': 399017, 'don artificially': 253342, 'down strongly': 257228, 'strongly against': 814212, 'against hoarder': 37492, 'address nation two': 31999, 'two committee made': 936844, 'committee made national': 189080, 'made national co': 507867, 'national co ordination': 552445, 'co ordination committee': 184931, 'ordination committee economic': 619111, 'committee say we': 189089, 'say we ll': 739456, 'we ll ensure': 972247, 'll ensure hoarder': 496737, 'ensure hoarder don': 277970, 'hoarder don artificially': 399018, 'don artificially increase': 253343, 'we will come': 973842, 'will come down': 992964, 'come down strongly': 187276, 'down strongly against': 257229, 'strongly against hoarder': 814213, 'safe shopping': 729933, 'staying safe shopping': 798698, 'safe shopping online': 729936, 'online during lockdown': 608142, 'during lockdown 19': 262756, 'money we': 537151, 'pandemic because': 634985, 'it parking': 460262, 'parking out': 642112, 'food no money': 315547, 'no money we': 564790, 'money we should': 537155, 'not be panic': 568431, 'be panic of': 116354, 'panic of the': 638356, 'coronavirus pandemic because': 206437, 'pandemic because it': 634986, 'because it parking': 119199, 'it parking out': 460263, 'parking out now': 642113, 'five different': 309606, 'different supermarket': 242078, 'roll over': 725457, 'day coronavirus': 227487, 'this selfisolation': 890022, 'been to five': 122216, 'to five different': 905986, 'five different supermarket': 309607, 'different supermarket looking': 242080, 'toilet roll over': 921595, 'roll over the': 725458, 'few day coronavirus': 303771, 'day coronavirus ha': 227489, 'coronavirus ha reduced': 206033, 'ha reduced to': 371688, 'reduced to this': 706198, 'to this selfisolation': 917459, 'jug': 467705, 'cooler': 203074, 'unopened': 942992, 'refrigerated': 706778, 'thing keep': 884508, 'keep wanting': 472196, 'ask doe': 95511, 'sell can': 748660, 'milk these': 531853, 'aren normal': 92462, 'normal jug': 567195, 'jug in': 467706, 'in cooler': 421778, 'cooler they': 203076, 're just': 698940, 'just on': 469365, 're fresh': 698712, 'produce long': 680341, 'are unopened': 91328, 'unopened they': 942999, 'be refrigerated': 116746, 'refrigerated justathought': 706779, 'one thing keep': 607225, 'thing keep wanting': 884512, 'keep wanting to': 472197, 'wanting to ask': 966299, 'to ask doe': 900751, 'ask doe the': 95512, 'doe the sell': 251619, 'the sell can': 866687, 'sell can of': 748661, 'can of milk': 159090, 'of milk these': 586519, 'milk these aren': 531854, 'these aren normal': 879647, 'aren normal jug': 92463, 'normal jug in': 567196, 'jug in cooler': 467707, 'in cooler they': 421779, 'cooler they re': 203077, 'they re just': 883064, 're just on': 698946, 'just on the': 469369, 'shelf at grocery': 756846, 'they re fresh': 883041, 're fresh produce': 698714, 'fresh produce long': 333056, 'produce long they': 680342, 'long they are': 501742, 'they are unopened': 881446, 'are unopened they': 91329, 'unopened they do': 943000, 'to be refrigerated': 901493, 'be refrigerated justathought': 116747, 'memorial': 528413, 'at salina': 100456, 'salina valley': 732719, 'valley memorial': 951977, 'memorial hospital': 528416, 'many vegetable': 514847, 'store come': 807119, 'from ag': 334413, 'ag worker': 36858, 'for can': 319893, 'get testing': 348197, 'test kit at': 839050, 'kit at salina': 475504, 'at salina valley': 100457, 'salina valley memorial': 732720, 'valley memorial hospital': 951978, 'memorial hospital that': 528417, 'hospital that where': 404675, 'that where many': 847508, 'where many vegetable': 985014, 'many vegetable in': 514848, 'vegetable in your': 954016, 'in your grocery': 431085, 'grocery store come': 365288, 'store come from': 807120, 'come from ag': 187300, 'from ag worker': 334414, 'ag worker are': 36859, 'worker are in': 1006399, 'the field for': 855145, 'field for can': 304474, 'for can we': 319896, 'we get testing': 971628, 'get testing for': 348199, 'testing for them': 839500, 'bigcommerce': 130134, 'post via': 666383, 'via bigcommerce': 955812, 'bigcommerce understanding': 130135, 'behavior ecommerce': 124014, 'new post via': 559328, 'post via bigcommerce': 666384, 'via bigcommerce understanding': 955813, 'bigcommerce understanding the': 130136, 'shopping behavior ecommerce': 762201, 'karma nurse': 470951, 'nurse too': 577522, 'too weak': 925159, 'treat panic': 930864, 'buyer with': 149808, 'selfish git': 748107, 'git panic': 350336, 'nurse need': 577424, 'karma nurse too': 470952, 'nurse too weak': 577523, 'too weak to': 925160, 'weak to treat': 974048, 'to treat panic': 917753, 'treat panic buyer': 930865, 'panic buyer with': 637619, 'buyer with covid': 149809, 'because the selfish': 119645, 'the selfish git': 866663, 'selfish git panic': 748108, 'git panic bought': 350337, 'panic bought the': 637434, 'bought the food': 136738, 'food the nurse': 317125, 'the nurse need': 861984, 'mackle': 507455, 'are dairy': 85700, 'dairy price': 225020, 'price likely': 675051, 'drop from': 260204, 'impact chief': 417597, 'executive dr': 289890, 'dr mackle': 258055, 'mackle say': 507456, 'say farmer': 738631, 'are keen': 87644, 'keen to': 471266, 'chain safe': 171075, 'are dairy price': 85701, 'dairy price likely': 225023, 'price likely to': 675053, 'likely to drop': 492145, 'to drop from': 904769, 'drop from covid': 260205, '19 impact chief': 7692, 'impact chief executive': 417598, 'chief executive dr': 175928, 'executive dr mackle': 289891, 'dr mackle say': 258056, 'mackle say farmer': 507457, 'say farmer are': 738632, 'farmer are keen': 299283, 'are keen to': 87645, 'keen to keep': 471268, 'supply chain safe': 825028, 'drawn': 258539, 'justice mentioned': 470418, 'mentioned the': 528846, 'store hobby': 808162, 'hobby lobby': 399772, 'lobby twice': 497589, 'twice during': 936524, 'news conference': 560323, 'conference but': 193723, 'detail nationally': 239216, 'nationally some': 552697, 'have drawn': 380363, 'drawn criticism': 258542, 'criticism for': 218763, 'not closing': 568783, 'closing during': 183629, 'justice mentioned the': 470419, 'mentioned the retail': 528848, 'retail store hobby': 718644, 'store hobby lobby': 808163, 'hobby lobby twice': 399773, 'lobby twice during': 497590, 'twice during the': 936525, 'during the news': 263158, 'the news conference': 861608, 'news conference but': 560324, 'conference but did': 193724, 'but did not': 145527, 'did not provide': 240728, 'not provide additional': 571139, 'provide additional detail': 686214, 'additional detail nationally': 31810, 'detail nationally some': 239217, 'nationally some of': 552698, 'retail chain store': 717944, 'chain store have': 171134, 'store have drawn': 808078, 'have drawn criticism': 380364, 'drawn criticism for': 258543, 'criticism for not': 218764, 'for not closing': 323923, 'not closing during': 568784, 'closing during the': 183630, 'patient just': 644199, 'just brief': 468367, 'brief message': 139677, 'kind retailworkers': 474965, 'retailworkers grocerystoreworkers': 719597, 'safe and patient': 729466, 'and patient just': 68773, 'patient just brief': 644200, 'just brief message': 468368, 'brief message about': 139678, 'message about retail': 529252, 'retail worker and': 718870, 'store worker please': 811559, 'worker please be': 1007587, 'be kind retailworkers': 115622, 'kind retailworkers grocerystoreworkers': 474966, 'never in': 558074, 'in million': 425326, 'million year': 532433, 'thought have': 893072, 'been queuing': 121762, 'mask please': 519122, 'please everyone': 659969, 'everyone stick': 287413, 'stick to': 800060, 'absolutely essential': 27353, 'essential savelives': 281486, 'savelives stayhomesavelives': 737779, 'never in million': 558077, 'in million year': 425328, 'million year have': 532434, 'year have thought': 1014611, 'have thought have': 383120, 'thought have been': 893073, 'have been queuing': 379651, 'been queuing at': 121763, 'queuing at supermarket': 694197, 'at supermarket store': 100774, 'supermarket store like': 823006, 'store like this': 808735, 'like this and': 491468, 'this and wearing': 886357, 'wearing mask please': 974708, 'mask please everyone': 519123, 'please everyone stick': 659971, 'everyone stick to': 287414, 'stick to the': 800066, 'to the rule': 917032, 'rule and stay': 727193, 'and stay in': 72295, 'stay in home': 797047, 'in home unless': 423790, 'home unless absolutely': 402395, 'unless absolutely essential': 942596, 'absolutely essential savelives': 27354, 'essential savelives stayhomesavelives': 281487, 'thanks but': 842030, 'look tested': 502607, 'people picked': 649110, 'picked in': 655794, 'sardine are': 736757, 'thanks but now': 842031, 'but now look': 146608, 'now look tested': 575253, 'look tested positive': 502608, 'positive and all': 665254, 'those people picked': 892327, 'people picked in': 649111, 'picked in like': 655795, 'like sardine are': 491129, 'sardine are at': 736759, 'mick': 530407, 'mulvaney': 545860, 'downplayed': 257673, 'mick mulvaney': 530408, 'mulvaney wa': 545861, 'coming and': 187985, 'going of': 355290, 'people he': 648219, 'he downplayed': 384917, 'downplayed the': 257678, 'of while': 593114, 'while being': 986642, 'being secretly': 125727, 'secretly tested': 743983, 'also destroyed': 48098, 'destroyed the': 239070, 'from within': 338394, 'within at': 1002333, 'mick mulvaney wa': 530409, 'mulvaney wa concerned': 545862, 'about the coming': 26353, 'the coming and': 851193, 'coming and going': 187987, 'and going of': 63806, 'going of the': 355291, 'american people he': 52124, 'people he downplayed': 648222, 'he downplayed the': 384918, 'downplayed the threat': 257679, 'threat of while': 893705, 'of while being': 593115, 'while being secretly': 986648, 'being secretly tested': 125728, 'secretly tested and': 743984, 'tested and he': 839264, 'and he also': 64312, 'he also destroyed': 384729, 'also destroyed the': 48099, 'destroyed the from': 239072, 'the from within': 855839, 'from within at': 338395, 'within at time': 1002334, 'time when consumer': 898281, 'when consumer will': 983281, 'consumer will need': 199548, 'will need it': 994148, 'time making': 897183, 'making sign': 511341, 'for drive': 320852, 'and sticker': 72361, 'sticker for': 800081, 'for company that': 320206, 'company that make': 191178, 'that make them': 845004, 'make them we': 510618, 're currently in': 698493, 'currently in full': 221565, 'in full time': 423177, 'full time making': 340941, 'time making sign': 897184, 'making sign for': 511342, 'sign for drive': 769121, 'for drive through': 320853, 'drive through covid': 259176, '19 testing site': 11110, 'site and sticker': 771878, 'and sticker for': 72362, 'sticker for supermarket': 800083, 'for supermarket floor': 326011, 'phi': 654676, 'suppose there': 827316, 'no hipaa': 564426, 'hipaa issue': 396943, 'going ahead': 355003, 'and printing': 69506, 'printing full': 678340, 'full out': 340788, 'out list': 626509, 'case minus': 165864, 'minus phi': 533688, 'phi think': 654677, 'consumer agrees': 196126, 'agrees with': 38826, 'many essential': 514039, 'suppose there no': 827317, 'there no hipaa': 878814, 'no hipaa issue': 564427, 'hipaa issue with': 396944, 'issue with or': 456015, 'with or going': 999934, 'or going ahead': 615493, 'going ahead and': 355004, 'ahead and printing': 39137, 'and printing full': 69507, 'printing full out': 678341, 'full out list': 340789, 'out list of': 626510, 'list of case': 494417, 'of case minus': 581170, 'case minus phi': 165865, 'minus phi think': 533689, 'phi think the': 654678, 'think the general': 885634, 'the general consumer': 856204, 'general consumer agrees': 345303, 'consumer agrees with': 196127, 'agrees with you': 38828, 'with you that': 1002164, 'you that there': 1021580, 'are many essential': 88027, 'sanitizer station': 735789, 'station like': 796450, 'this publichealth': 889757, 'publichealth washyourhands': 688548, 'we need more': 972518, 'need more hand': 555258, 'hand sanitizer station': 375597, 'sanitizer station like': 735791, 'station like this': 796451, 'like this publichealth': 491519, 'this publichealth washyourhands': 889758, 'run heading': 727665, 'huge stuff': 410216, 'food see': 316374, 'supply run heading': 825784, 'run heading to': 727666, 'heading to walmart': 385967, 'then ll get': 877317, 'll get the': 496793, 'get the huge': 348253, 'the huge stuff': 857705, 'huge stuff from': 410217, 'like egg can': 490160, 'egg can food': 269814, 'can food see': 158370, 'food see if': 316376, 'get all need': 346520, 'all need for': 43596, 'finally paris': 306067, 'paris 2020': 641826, 'picture taken': 656196, 'taken on': 833042, 'march 16th': 515090, '16th on': 4288, 'store finally': 807721, 'finally france': 306003, 'ha realized': 371644, 'realized the': 701916, 'down stay': 257208, 'safe my': 729829, 'my dear': 547957, 'dear stat': 229881, 'stat home': 795319, 'finally paris 2020': 306068, 'paris 2020 picture': 641827, '2020 picture taken': 14516, 'picture taken on': 656197, 'taken on monday': 833043, 'on monday march': 602171, 'monday march 16th': 536318, 'march 16th on': 515092, '16th on my': 4289, 'grocery store finally': 365396, 'store finally france': 807723, 'finally france ha': 306004, 'france ha realized': 331003, 'ha realized the': 371645, 'realized the danger': 701917, 'danger of and': 225673, 'of and is': 580164, 'is in lock': 448784, 'lock down stay': 499052, 'down stay safe': 257209, 'stay safe my': 797254, 'safe my dear': 729830, 'my dear stat': 547960, 'dear stat home': 229882, 'stat home stayhome': 795320, 'aghotline': 38278, 'michigan attorney': 530320, 'general dana': 345313, 'dana nessel': 225552, 'nessel today': 557517, 'protection intake': 685489, 'intake team': 440933, 'complaint pricegouging': 192011, 'pricegouging aghotline': 677784, 'michigan attorney general': 530321, 'attorney general dana': 102632, 'general dana nessel': 345314, 'dana nessel today': 225553, 'nessel today extended': 557518, 'today extended the': 919508, 'extended the hour': 293197, 'of operation for': 587300, 'operation for her': 613184, 'for her consumer': 322217, 'her consumer protection': 391961, 'consumer protection intake': 198538, 'protection intake team': 685491, 'intake team the': 440934, 'team the number': 835794, 'number of price': 576978, 'gouging complaint pricegouging': 359292, 'complaint pricegouging aghotline': 192012, 'bogg': 133974, 'correct term': 207528, 'coronavirus corovid19': 205705, 'corovid19 coronacrisis': 207168, 'great bogg': 362530, 'bogg crisis': 133975, 'crisis bathroom': 217113, 'bathroom crisis': 112641, 'crisis cannot': 217188, 'anything crisis': 80720, 'crisis supermarket': 218117, 'supermarket crisis': 819863, 'crisis fan': 217369, 'fan crisis': 298511, 'crisis please': 217877, 'add something': 31490, 'correct term for': 207529, 'term for coronavirus': 838148, 'for coronavirus corovid19': 320379, 'coronavirus corovid19 coronacrisis': 205706, 'corovid19 coronacrisis the': 207169, 'coronacrisis the great': 204813, 'the great bogg': 856715, 'great bogg crisis': 362531, 'bogg crisis bathroom': 133976, 'crisis bathroom crisis': 217114, 'bathroom crisis cannot': 112642, 'crisis cannot buy': 217189, 'cannot buy anything': 161688, 'buy anything crisis': 148361, 'anything crisis supermarket': 80721, 'crisis supermarket crisis': 218119, 'supermarket crisis fan': 819864, 'crisis fan crisis': 217370, 'fan crisis please': 298512, 'crisis please add': 217878, 'please add something': 659635, 'add something extra': 31491, 'publication': 688508, 'the fdic': 855029, 'fdic ha': 300973, 'released special': 709080, 'news publication': 560717, 'publication the': 688517, 'the focus': 855478, 'the fdic ha': 855030, 'fdic ha released': 300974, 'ha released special': 371710, 'released special edition': 709081, 'special edition of': 787903, 'edition of it': 268631, 'it consumer news': 457291, 'consumer news publication': 198215, 'news publication the': 560718, 'publication the focus': 688518, 'the focus on': 855481, 'on what consumer': 605217, 'what consumer need': 981254, 'consumer need to': 198202, 'coronavirus pandemic and': 206434, 'and what it': 75473, 'for their finance': 326827, 'rising eat': 723206, 'demand soar': 236247, 'soar during': 779240, 'are rising eat': 89712, 'rising eat at': 723207, 'home demand soar': 401059, 'demand soar during': 236249, 'soar during the': 779241, 'photograph': 655275, 'folkestone': 312327, 'streetphotography': 813207, 'more photograph': 540070, 'photograph of': 655276, 'supermarket based': 819307, 'in folkestone': 422953, 'folkestone stayathome': 312328, 'stayathome streetphotography': 797676, 'streetphotography panicbuying': 813208, 'panicbuying folkestone': 638941, 'more photograph of': 540071, 'photograph of panic': 655277, 'buying in tesco': 150546, 'in tesco supermarket': 428883, 'tesco supermarket based': 838820, 'supermarket based in': 819308, 'based in folkestone': 111618, 'in folkestone stayathome': 422954, 'folkestone stayathome streetphotography': 312329, 'stayathome streetphotography panicbuying': 797677, 'streetphotography panicbuying folkestone': 813209, 'heard on': 388129, 'street for': 812971, 'next several': 561545, 'several month': 753899, 'data won': 226499, 'won reflect': 1003891, 'consumption pattern': 199927, 'pattern and': 644446, 'won guide': 1003829, 'guide policy': 368347, 'policy maker': 663441, 'maker in': 510833, 'usual way': 951056, 'way via': 970153, 'via inflation': 956032, 'inflation economy': 437167, 'economy federalreserve': 267867, 'heard on the': 388131, 'the street for': 868227, 'street for the': 812972, 'the next several': 861694, 'next several month': 561546, 'several month consumer': 753901, 'month consumer price': 537655, 'index data won': 434181, 'data won reflect': 226500, 'won reflect the': 1003892, 'reflect the drastic': 706627, 'the drastic change': 853669, 'change in consumption': 172112, 'in consumption pattern': 421734, 'consumption pattern and': 199928, 'pattern and won': 644450, 'and won guide': 75819, 'won guide policy': 1003830, 'guide policy maker': 368348, 'policy maker in': 663442, 'maker in the': 510834, 'in the usual': 429641, 'the usual way': 870596, 'usual way via': 951057, 'way via inflation': 970154, 'via inflation economy': 956033, 'inflation economy federalreserve': 437168, 'nordstrom': 567011, 'forgo': 329384, 'nordstrom executive': 567015, 'executive leadership': 289911, 'leadership group': 483609, 'group will': 366973, 'will forgo': 993478, 'forgo part': 329385, 'their salary': 874620, 'salary from': 731973, 'through september': 894665, 'september retail': 751163, 'retail nordstrom': 718333, 'nordstrom executive leadership': 567016, 'executive leadership group': 289912, 'leadership group will': 483610, 'group will forgo': 366974, 'will forgo part': 993479, 'forgo part of': 329386, 'part of their': 642389, 'of their salary': 591698, 'their salary from': 874621, 'salary from april': 731974, 'from april through': 334579, 'april through september': 83704, 'through september retail': 894666, 'september retail nordstrom': 751164, 'smmc': 775839, 'uisedu': 938128, 'uiuc': 938134, 'uic': 938123, 'the unfortunate': 870396, 'unfortunate rise': 941565, 'scam know': 740228, 'wary smmc': 967412, 'smmc uisedu': 775840, 'uisedu uiuc': 938129, 'uiuc uic': 938135, 'uic ftc': 938124, 'ftc ha more': 339406, 'ha more update': 371297, 'more update on': 540859, 'on the unfortunate': 604418, 'the unfortunate rise': 870397, 'unfortunate rise in': 941566, 'rise in covid': 722877, '19 scam know': 10345, 'scam know what': 740229, 'and be wary': 58773, 'be wary smmc': 118050, 'wary smmc uisedu': 967413, 'smmc uisedu uiuc': 775841, 'uisedu uiuc uic': 938130, 'uiuc uic ftc': 938136, 'realme': 702732, 'realmetv': 702744, 'mitv5': 534576, 'mi10': 530143, 'mi10pro': 530146, 'realmenarzo': 702738, 'realmenarzo10': 702741, 'mi tv': 530141, 'tv realme': 936168, 'realme tv': 702733, 'tv release': 936172, 'release date': 708935, 'date feature': 226623, 'feature price': 301560, 'price full': 674133, 'video realmetv': 956874, 'realmetv mitv5': 702745, 'mitv5 mi10': 534577, 'mi10 mi10pro': 530144, 'mi10pro realmenarzo': 530147, 'realmenarzo realmenarzo10': 702739, 'realmenarzo10 stayathomechallenge': 702742, 'stayathomechallenge indiafightscoronavirus': 797735, 'mi tv realme': 530142, 'tv realme tv': 936169, 'realme tv release': 702734, 'tv release date': 936173, 'release date feature': 708937, 'date feature price': 226624, 'feature price full': 301561, 'price full video': 674136, 'full video realmetv': 340966, 'video realmetv mitv5': 956875, 'realmetv mitv5 mi10': 702746, 'mitv5 mi10 mi10pro': 534578, 'mi10 mi10pro realmenarzo': 530145, 'mi10pro realmenarzo realmenarzo10': 530148, 'realmenarzo realmenarzo10 stayathomechallenge': 702740, 'realmenarzo10 stayathomechallenge indiafightscoronavirus': 702743, 'fair this': 296383, 'nurse is': 577390, 'is faced': 447684, 'climate before': 182183, 'before having': 122843, 'provide critical': 686253, 'care we': 164256, 'stand together': 793595, 'show solidarity': 767140, 'solidarity in': 781934, 'not fair this': 569355, 'fair this nurse': 296385, 'this nurse is': 889193, 'nurse is faced': 577391, 'is faced with': 447685, 'current climate before': 221128, 'climate before having': 182184, 'before having to': 122844, 'back to provide': 107392, 'to provide critical': 912387, 'provide critical care': 686254, 'critical care we': 218528, 'care we need': 164258, 'need to stand': 556079, 'to stand together': 915165, 'stand together and': 793596, 'together and show': 920698, 'and show solidarity': 71616, 'show solidarity in': 767141, 'solidarity in hour': 781935, 'in hour of': 423839, 'hour of need': 405798, 'personally would': 653057, 'hatred and': 378974, 'and hatred': 64216, 'get medicine': 347558, 'in tight': 430066, 'tight space': 895841, 'space what': 787189, 'information wa': 438029, 'wa necessary': 962691, 'personally would like': 653058, 'le hatred and': 482975, 'hatred and hatred': 378976, 'and hatred panic': 64217, 'hatred panic about': 378980, 'panic about more': 637257, 'about more practical': 25753, 'practical information on': 668470, 'you know ha': 1019498, 'to get medicine': 906532, 'get medicine food': 347559, 'medicine food etc': 526779, 'live in tight': 495890, 'in tight space': 430067, 'tight space what': 895842, 'space what is': 787190, 'keep everyone safe': 471480, 'everyone safe this': 287334, 'safe this information': 730035, 'this information wa': 888117, 'information wa necessary': 438030, 'alarm': 40664, 'sounded': 786350, 'squandered': 791457, 'alarm sounded': 40679, 'sounded in': 786351, 'that novel': 845414, 'china might': 176823, 'might ignite': 531047, 'ignite global': 415733, 'administration squandered': 32503, 'squandered nearly': 791458, 'nearly month': 553845, 'been used': 122308, 'federal stockpile': 302063, 'stockpile of': 803780, 'of critically': 582212, 'alarm sounded in': 40680, 'sounded in january': 786352, 'in january that': 424362, 'january that novel': 464678, 'that novel coronavirus': 845415, 'novel coronavirus outbreak': 573761, 'in china might': 421415, 'china might ignite': 176824, 'might ignite global': 531048, 'ignite global pandemic': 415734, 'pandemic the trump': 636709, 'trump administration squandered': 933382, 'administration squandered nearly': 32504, 'squandered nearly month': 791459, 'nearly month that': 553846, 'month that could': 538034, 'that could have': 843352, 'have been used': 379734, 'been used to': 122311, 'used to bolster': 950039, 'bolster the federal': 134148, 'the federal stockpile': 855081, 'federal stockpile of': 302064, 'stockpile of critically': 803783, 'of critically needed': 582214, 'critically needed medical': 218742, 'goldprice': 356099, 'goldfutures': 356084, 'stimulusplan': 801654, 'goldprice and': 356100, 'and goldfutures': 63820, 'goldfutures have': 356085, 'significant gap': 769456, 'two amid': 936778, 'panicbuying also': 638896, 'the stimulusplan': 867897, 'stimulusplan might': 801658, 'expect read': 290710, 'goldprice and goldfutures': 356101, 'and goldfutures have': 63821, 'goldfutures have significant': 356086, 'have significant gap': 382550, 'significant gap between': 769457, 'gap between the': 343436, 'the two amid': 870143, 'two amid the': 936779, 'amid the panicbuying': 52708, 'the panicbuying also': 863237, 'panicbuying also the': 638897, 'also the stimulusplan': 48987, 'the stimulusplan might': 867898, 'stimulusplan might not': 801659, 'might not help': 531095, 'not help the': 569932, 'help the stock': 390682, 'stock market in': 802404, 'way you expect': 970203, 'you expect read': 1018482, 'expect read more': 290711, 'maryland do': 518199, 'your mate': 1024794, 'maryland do you': 518200, 'you see your': 1021079, 'see your mate': 746123, 'avoid stressful': 105301, 'supermarket scene': 822337, 'support economically': 826467, 'vulnerable local': 961034, 'owner by': 632417, 'by spending': 154089, 'spending your': 789064, 'money at': 536615, 'small market': 775025, 'market instead': 516599, 'box retailer': 137149, 'can still avoid': 159762, 'still avoid stressful': 800232, 'avoid stressful supermarket': 105302, 'stressful supermarket scene': 813512, 'supermarket scene and': 822338, 'scene and support': 741303, 'and support economically': 72837, 'support economically vulnerable': 826468, 'economically vulnerable local': 267396, 'vulnerable local business': 961035, 'local business owner': 497773, 'business owner by': 144182, 'owner by spending': 632419, 'by spending your': 154092, 'spending your money': 789065, 'your money at': 1024853, 'money at small': 536617, 'at small market': 100560, 'small market instead': 775026, 'market instead of': 516601, 'instead of big': 440237, 'of big box': 580697, 'big box retailer': 129660, 'medlife': 527364, 'sanitizer should': 735736, 'be secondary': 117026, 'secondary to': 743891, 'soap in': 779038, 'some situation': 783884, 'situation when': 772574, 'disinfectant may': 245711, 'useful 19': 950138, 'healthcare hospital': 387141, 'hospital medlife': 404508, 'medlife wellness': 527365, 'hand sanitizer should': 375588, 'sanitizer should really': 735738, 'really be secondary': 702014, 'be secondary to': 117027, 'secondary to washing': 743892, 'to washing your': 918356, 'with soap in': 1000800, 'soap in some': 779039, 'in some situation': 428102, 'some situation when': 783886, 'situation when you': 772575, 'is not possible': 450155, 'not possible to': 571058, 'possible to wash': 665855, 'hand and disinfectant': 374756, 'and disinfectant may': 61448, 'disinfectant may be': 245712, 'may be useful': 521047, 'be useful 19': 117930, 'useful 19 healthcare': 950139, '19 healthcare hospital': 7488, 'healthcare hospital medlife': 387142, 'hospital medlife wellness': 404509, 'disturbing pennsylvania': 248413, 'store lost': 808835, 'lost over': 503903, 'over 35': 629835, '00 after': 45, 'bakery meat': 108866, 'meat grocery': 525603, 'grocery case': 364346, 'produce the': 680453, 'disturbing pennsylvania grocery': 248414, 'grocery store lost': 365545, 'store lost over': 808836, 'lost over 35': 503904, 'over 35 00': 629836, '35 00 after': 17860, '00 after woman': 46, 'coughed on food': 208624, 'the bakery meat': 849204, 'bakery meat grocery': 108867, 'meat grocery case': 525604, 'grocery case and': 364347, 'case and fresh': 165623, 'and fresh produce': 63300, 'fresh produce the': 333065, 'produce the woman': 680458, 'woman is being': 1003532, 'the just in': 858718, 'in case read': 421269, 'extorting': 293376, 'collar': 186161, 'ojek': 597748, '19 every': 6863, 'every service': 286155, 'service go': 752422, 'to loss': 909468, 'loss it': 503716, 'it revenue': 460762, 'shopping medical': 763271, 'medical consultation': 526115, 'consultation do': 195884, 'are extorting': 86383, 'extorting the': 293377, 'the blue': 849799, 'blue collar': 133439, 'collar employee': 186162, 'mid class': 530562, 'class society': 180262, 'society work': 781369, 'in logistic': 424867, 'logistic and': 500691, 'and ojek': 68028, 'ojek online': 597749, 'online industry': 608412, 'covid 19 every': 213047, '19 every service': 6867, 'every service go': 286156, 'service go online': 752423, 'go online not': 353913, 'online not to': 608587, 'not to loss': 572164, 'to loss it': 909471, 'loss it revenue': 503717, 'it revenue from': 460763, 'revenue from food': 720417, 'from food and': 335503, 'food and product': 313316, 'and product delivery': 69565, 'product delivery service': 681113, 'delivery service online': 234452, 'online shopping medical': 609186, 'shopping medical consultation': 763272, 'medical consultation do': 526116, 'consultation do not': 195885, 'not you realize': 572615, 'you are extorting': 1017118, 'are extorting the': 86384, 'extorting the blue': 293378, 'the blue collar': 849800, 'blue collar employee': 133440, 'collar employee and': 186163, 'employee and mid': 273571, 'and mid class': 66993, 'mid class society': 530564, 'class society work': 180263, 'society work in': 781370, 'work in logistic': 1005322, 'in logistic and': 424868, 'logistic and ojek': 500692, 'and ojek online': 68029, 'ojek online industry': 597750, 'month usa': 538095, 'usa is': 948673, 'throughout the next': 894977, 'next month usa': 561461, 'month usa is': 538096, 'usa is offering': 948677, 'ongoing pandemic to': 607673, 'pandemic to learn': 636784, 'learn more click': 484020, 'more click here': 538822, 'an analysis': 55300, 'impact attributed': 417574, 'by mckinsey': 153188, 'mckinsey ha': 522199, 'ha estimated': 370515, 'estimated that': 282302, 'point due': 662473, 'product supply': 681669, 'disruption and': 246440, 'an analysis of': 55302, 'economic impact attributed': 267128, 'impact attributed to': 417575, 'attributed to covid': 102746, '19 by mckinsey': 5566, 'by mckinsey ha': 153189, 'mckinsey ha estimated': 522200, 'ha estimated that': 370516, 'estimated that africa': 282303, 'percentage point due': 651221, 'point due to': 662474, 'due to loss': 261854, 'to loss in': 909470, 'loss in non': 503706, 'in non oil': 425925, 'oil product supply': 597357, 'product supply chain': 681670, 'chain disruption and': 170650, 'disruption and drop': 246442, 'drop in commodity': 260233, 'mehra': 527858, 'relieved': 709546, 'say mehra': 738935, 'mehra inspired': 527859, 'inspired me': 439844, 'me noticed': 523233, 'noticed an': 573420, 'elderly couple': 270638, 'couple looking': 211618, 'looking nervous': 502975, 'nervous before': 557458, 'before entering': 122774, 'when offered': 983787, 'seemed so': 746719, 'so relieved': 778122, 'relieved if': 709547, 'consider offering': 195046, 'proud to say': 686060, 'to say mehra': 913830, 'say mehra inspired': 738936, 'mehra inspired me': 527860, 'inspired me noticed': 439845, 'me noticed an': 523234, 'noticed an elderly': 573421, 'an elderly couple': 55634, 'elderly couple looking': 270641, 'couple looking nervous': 211619, 'looking nervous before': 502976, 'nervous before entering': 557459, 'before entering the': 122777, 'store when offered': 811245, 'when offered to': 983788, 'offered to help': 594978, 'them they seemed': 876423, 'they seemed so': 883302, 'seemed so relieved': 746720, 'so relieved if': 778123, 'relieved if you': 709548, 'you re able': 1020554, 'able to consider': 24463, 'to consider offering': 903229, 'consider offering to': 195047, 'offering to help': 595305, 'help others socialdistancing': 390215, 'poopourri': 664095, 'founditonamazon': 330570, 'poopchallenge': 664077, 'tp there': 927978, 'be lot': 115834, 'of poo': 588218, 'poo ing': 663995, 'ing going': 438282, 'it soon': 461176, 'this thursday': 890605, 'thursday poopourri': 895410, 'poopourri toiletpaper': 664096, 'toiletpapercrisis founditonamazon': 923024, 'founditonamazon toiletpaperapocalypse': 330571, 'toiletpaperapocalypse poopchallenge': 922915, 'on the lack': 604200, 'lack of tp': 478664, 'of tp there': 592382, 'tp there must': 927979, 'must be lot': 546523, 'be lot of': 115835, 'lot of poo': 504252, 'of poo ing': 588219, 'poo ing going': 663996, 'ing going on': 438283, 'going on so': 355334, 'on so you': 603527, 'need this get': 555818, 'this get it': 887686, 'get it soon': 347424, 'it soon this': 461177, 'soon this thursday': 785857, 'this thursday poopourri': 890607, 'thursday poopourri toiletpaper': 895411, 'poopourri toiletpaper toiletpapercrisis': 664097, 'toiletpaper toiletpapercrisis founditonamazon': 922655, 'toiletpapercrisis founditonamazon toiletpaperapocalypse': 923025, 'founditonamazon toiletpaperapocalypse poopchallenge': 330572, 'forgiven': 329376, 'million are': 532072, 'are produced': 89249, 'the each': 853807, 'each and': 263993, 'every year': 286380, 'year yet': 1015123, 'yet looking': 1016140, 'be forgiven': 114924, 'forgiven for': 329377, 'for thinking': 327001, 'had wiped': 373799, 'entire egg': 278668, 'egg laying': 269905, 'laying industry': 482658, 'industry our': 436034, 'are sh': 90011, '12 million are': 2882, 'million are produced': 532075, 'are produced in': 89252, 'produced in the': 680526, 'in the each': 429155, 'the each and': 853808, 'each and every': 263994, 'and every year': 62385, 'every year yet': 286383, 'year yet looking': 1015124, 'yet looking at': 1016141, 'looking at some': 502823, 'at some shelf': 100579, 'some shelf you': 783842, 'shelf you could': 757846, 'could be forgiven': 208870, 'be forgiven for': 114925, 'forgiven for thinking': 329378, 'for thinking that': 327002, 'thinking that had': 885998, 'that had wiped': 844160, 'had wiped out': 373800, 'out the entire': 627362, 'the entire egg': 854353, 'entire egg laying': 278669, 'egg laying industry': 269906, 'laying industry our': 482659, 'industry our supermarket': 436035, 'our supermarket chain': 625010, 'chain really are': 171031, 'really are sh': 701990, 'flatbread': 310106, 'with shortage': 1000704, 'isolation during': 455254, 'epidemic you': 279479, 'be running': 116929, 'bread here': 138486, 'here really': 393510, 'really quick': 702504, 'quick easy': 694309, 'easy eco': 265693, 'eco friendly': 266656, 'friendly flatbread': 333959, 'flatbread recipe': 310107, 'with shortage in': 1000705, 'supermarket and or': 819031, 'and or self': 68229, 'or self isolation': 616995, 'self isolation during': 747765, 'isolation during the': 455256, 'coronavirus epidemic you': 205883, 'epidemic you may': 279480, 'may be running': 521024, 'be running short': 116930, 'short of bread': 764656, 'of bread here': 580842, 'bread here really': 138487, 'here really quick': 393511, 'really quick easy': 702505, 'quick easy eco': 694310, 'easy eco friendly': 265694, 'eco friendly flatbread': 266657, 'friendly flatbread recipe': 333960, 'preaches': 669232, 'serious we': 751509, 'for fight': 321465, 'saudi over': 737286, 'over them': 630800, 'them cutting': 875577, 'cutting oil': 223750, 'trump preaches': 933757, 'preaches and': 669233, 'on dealing': 600237, 'you serious we': 1021126, 'serious we re': 751510, 'pandemic and you': 634921, 'looking for fight': 502866, 'for fight with': 321466, 'fight with saudi': 304954, 'with saudi over': 1000583, 'saudi over them': 737287, 'over them cutting': 630801, 'them cutting oil': 875578, 'cutting oil price': 223751, 'oil price how': 597162, 'price how about': 674587, 'about you do': 26971, 'you do what': 1018278, 'do what trump': 250517, 'what trump preaches': 982492, 'trump preaches and': 933758, 'preaches and focus': 669234, 'focus on dealing': 311870, 'on dealing with': 600238, 'with the keep': 1001355, 'the keep american': 858740, 'thankyoucheckoutworkers': 842364, 'thankyoushelfstackers': 842394, 'thankyoushopworkers': 842396, 'been profusely': 121712, 'profusely thanking': 683172, 'thanking all': 841975, 'store convenience': 807165, 'come across': 187181, 'you thankyoucheckoutworkers': 1021560, 'thankyoucheckoutworkers thankyoushelfstackers': 842365, 'thankyoushelfstackers thankyoushopworkers': 842395, 'husband and have': 411674, 'have been profusely': 379641, 'been profusely thanking': 121713, 'profusely thanking all': 683173, 'thanking all the': 841976, 'grocery store convenience': 365299, 'store convenience store': 807166, 'and pharmacy worker': 68987, 'pharmacy worker we': 654584, 'worker we ve': 1008149, 've come across': 952998, 'come across all': 187182, 'across all week': 29237, 'all week thank': 45423, 'thank you thankyoucheckoutworkers': 841824, 'you thankyoucheckoutworkers thankyoushelfstackers': 1021561, 'thankyoucheckoutworkers thankyoushelfstackers thankyoushopworkers': 842366, 'fastsigns': 300188, 'inglewood': 438323, '310': 17611, '2177': 15078, '403': 18810, 'brea': 138355, 'need sign': 555569, 'sign contact': 769102, 'contact fastsigns': 200075, 'fastsigns inglewood': 300189, 'inglewood lax': 438325, 'lax we': 482583, 'your restaurant': 1025600, 'in compliance': 421639, 'store order': 809384, 'order through': 618653, 'call 310': 155697, '310 957': 17614, '957 33': 23648, '33 2177': 17740, '2177 com': 15079, 'com grocerystores': 186939, 'grocerystores 403': 366358, '403 la': 18813, 'la brea': 478133, 'brea ave': 138356, 'ave inglewood': 104742, 'inglewood ca': 438324, 'need sign contact': 555570, 'sign contact fastsigns': 769103, 'contact fastsigns inglewood': 200076, 'fastsigns inglewood lax': 300190, 'inglewood lax we': 438326, 'lax we will': 482584, 'we will help': 973869, 'you get your': 1018810, 'get your restaurant': 348731, 'your restaurant or': 1025601, 'restaurant or grocery': 716615, 'store in compliance': 808291, 'in compliance with': 421640, 'compliance with covid': 192447, 'come into store': 187392, 'into store order': 443019, 'store order through': 809388, 'order through email': 618654, 'through email or': 894442, 'email or phone': 272259, 'or phone call': 616601, 'phone call 310': 654920, 'call 310 957': 155698, '310 957 33': 17615, '957 33 2177': 23649, '33 2177 com': 17741, '2177 com grocerystores': 15080, 'com grocerystores 403': 186940, 'grocerystores 403 la': 366359, '403 la brea': 18814, 'la brea ave': 478134, 'brea ave inglewood': 138357, 'ave inglewood ca': 104743, 'jurupa': 468077, 'nice gas': 562400, 'drop under': 260437, 'under at': 940012, 'this jurupa': 888550, 'jurupa valley': 468078, 'valley truck': 951998, 'truck stop': 932856, 'stop amid': 804444, 'way above': 969427, 'above in': 27074, 'my neighborhood': 549431, 'neighborhood via': 557162, 'via gasprices': 955999, 'gasprices california': 344281, 'nice gas price': 562401, 'price drop under': 673583, 'drop under at': 260439, 'under at this': 940013, 'at this jurupa': 101238, 'this jurupa valley': 888551, 'jurupa valley truck': 468079, 'valley truck stop': 951999, 'truck stop amid': 932857, 'stop amid the': 804445, 'the pandemic yet': 863168, 'pandemic yet they': 637087, 'yet they re': 1016277, 're still way': 699603, 'still way above': 801394, 'way above in': 969428, 'above in my': 27075, 'in my neighborhood': 425604, 'my neighborhood via': 549438, 'neighborhood via gasprices': 557163, 'via gasprices california': 956000, 'house covid19': 406254, 'covid19 coordinator': 214287, 'store trending': 810941, 'news trump': 560910, 'trump whitehouse': 933974, 'whitehouse deadline': 987945, 'deadline food': 229218, 'grocery meal': 364718, 'white house covid19': 987848, 'house covid19 coordinator': 406255, 'covid19 coordinator don': 214288, 'drug store trending': 261098, 'store trending news': 810942, 'trending news trump': 931557, 'news trump whitehouse': 560911, 'trump whitehouse deadline': 933975, 'whitehouse deadline food': 987946, 'deadline food grocery': 229219, 'food grocery meal': 314718, 'mold': 535640, 'real selfish': 701351, 'selfish reason': 748239, 'reason behind': 702876, 'hoarding what': 399653, 'more upsetting': 540864, 'upsetting is': 947835, 'amount that': 53281, 'eventually end': 285150, 'trash mold': 930163, 'mold bread': 535643, 'bread blend': 138430, 'blend fruit': 132575, 'than the real': 841266, 'the real selfish': 865238, 'real selfish reason': 701352, 'selfish reason behind': 748240, 'reason behind this': 702878, 'behind this panic': 124740, 'and hoarding what': 64667, 'hoarding what is': 399655, 'what is even': 981690, 'even more upsetting': 284386, 'more upsetting is': 540865, 'upsetting is the': 947836, 'is the amount': 452728, 'the amount that': 848654, 'amount that will': 53282, 'that will eventually': 847574, 'will eventually end': 993338, 'eventually end up': 285151, 'the trash mold': 869920, 'trash mold bread': 930164, 'mold bread blend': 535644, 'bread blend fruit': 138431, 'blend fruit and': 132576, 'site dining': 771901, 'university cafe': 942413, 'cafe cruise': 155101, 'hotel etc': 405141, 'etc account': 282388, 'for 42': 318839, 'banned account': 110557, '25 19': 15804, 'wow this market': 1012609, 'this market of': 888772, 'market of closed': 516778, 'of closed school': 581471, 'closed school restaurant': 183323, 'banned from on': 110575, 'from on site': 336670, 'on site dining': 603481, 'site dining university': 771903, 'dining university cafe': 243038, 'university cafe cruise': 942414, 'cafe cruise ship': 155102, 'ship hotel etc': 758678, 'hotel etc account': 405142, 'etc account for': 282389, 'account for 42': 28662, 'for 42 of': 318840, 'also banned account': 47905, 'banned account for': 110558, 'account for about': 28663, 'for about 25': 318979, 'about 25 19': 24681, 'nowican': 576582, 'immunosuppressedwife': 417495, 'grocery experience': 364510, 'experience 30': 291302, 'minute wait': 533892, 'in older': 426101, 'older man': 598619, 'man saw': 512217, 'and turned': 74528, 'around when': 93623, 'when left': 983681, 'left very': 485711, 'sad grocery': 729174, 'store social': 810244, 'distancing signage': 247480, 'signage in': 769277, 'place still': 657696, 'tp sa': 927921, 'sa now': 728916, 'under official': 940181, 'official stay': 595941, 'order stayhome': 618597, 'stayhome nowican': 798054, 'nowican immunosuppressedwife': 576583, 'my grocery experience': 548573, 'grocery experience 30': 364511, 'experience 30 minute': 291303, '30 minute wait': 17127, 'minute wait to': 533893, 'get in older': 347306, 'in older man': 426102, 'older man saw': 598621, 'man saw the': 512218, 'saw the line': 738269, 'the line and': 859401, 'line and turned': 492955, 'and turned around': 74529, 'turned around when': 935831, 'around when left': 93625, 'when left very': 983683, 'left very sad': 485712, 'very sad grocery': 955487, 'sad grocery store': 729175, 'grocery store social': 365780, 'store social distancing': 810245, 'social distancing signage': 779718, 'distancing signage in': 247481, 'signage in place': 769278, 'in place still': 426765, 'place still no': 657698, 'no tp sa': 565791, 'tp sa now': 927922, 'sa now under': 728917, 'now under official': 576250, 'under official stay': 940183, 'official stay home': 595942, 'home order stayhome': 401785, 'order stayhome nowican': 618598, 'stayhome nowican immunosuppressedwife': 798055, 'not afraid': 568080, 'admit that': 32607, 'photo an': 655119, 'man staring': 512246, 'his shopping': 397790, 'list in': 494358, 'supermarket caused': 819579, 'caused me': 167914, 'to shed': 914390, 'tear it': 835954, 'it strange': 461304, 'strange accepting': 812372, 'accepting that': 28090, 'am ok': 50277, 'them starving': 876318, 'starving from': 795248, 'not afraid to': 568083, 'afraid to admit': 35020, 'to admit that': 900120, 'admit that the': 32612, 'that the reality': 846815, 'reality of this': 701781, 'of this photo': 592024, 'this photo an': 889555, 'photo an elderly': 655120, 'elderly man staring': 270750, 'man staring at': 512247, 'staring at his': 794146, 'at his shopping': 98921, 'his shopping list': 397792, 'shopping list in': 763188, 'list in the': 494363, 'middle of an': 530671, 'of an empty': 580110, 'an empty supermarket': 55725, 'empty supermarket caused': 275158, 'supermarket caused me': 819580, 'caused me to': 167915, 'me to shed': 523780, 'to shed tear': 914393, 'shed tear it': 756522, 'tear it strange': 835955, 'it strange accepting': 461306, 'strange accepting that': 812373, 'accepting that people': 28091, 'that people may': 845702, 'die of catching': 241416, 'but no way': 146506, 'way am ok': 969454, 'am ok with': 50278, 'ok with them': 597949, 'with them starving': 1001619, 'them starving from': 876319, 'starving from it': 795249, 'itw': 464026, 'hartness': 378590, 'infrastructure company': 438191, 'company itw': 190823, 'itw hartness': 464027, 'hartness facility': 378591, 'facility remain': 295373, 'and fully': 63407, 'fully operational': 341067, 'operational to': 613320, 'meet continued': 527441, 'continued demand': 201308, 'beverage personal': 129024, 'household care': 406754, 'care supply': 164221, 'supply industry': 825422, 'more packaging': 539973, 'critical infrastructure company': 218590, 'infrastructure company itw': 438192, 'company itw hartness': 190824, 'itw hartness facility': 464028, 'hartness facility remain': 378592, 'facility remain open': 295374, 'remain open and': 709800, 'open and fully': 612059, 'and fully operational': 63408, 'fully operational to': 341071, 'operational to meet': 613321, 'to meet continued': 910017, 'meet continued demand': 527442, 'continued demand in': 201310, 'the food beverage': 855535, 'food beverage personal': 313745, 'beverage personal and': 129025, 'personal and household': 652783, 'and household care': 64781, 'household care supply': 406755, 'care supply industry': 164223, 'supply industry to': 825423, 'industry to learn': 436172, 'learn more packaging': 484036, 'in seattle': 427759, 'seattle we': 743583, 'are ensuring': 86225, 'both school': 136040, 'school continue': 741762, 'provide meal': 686385, 'receive 800': 703435, '800 grocery': 22701, 'grocery voucher': 366106, 'voucher funded': 960649, 'funded by': 341576, 'the sugary': 868397, 'sugary beverage': 817496, 'beverage tax': 129042, 'in seattle we': 427765, 'seattle we are': 743584, 'we are ensuring': 970543, 'are ensuring that': 86227, 'ensuring that both': 278190, 'that both school': 843017, 'both school continue': 136041, 'school continue to': 741763, 'to provide meal': 912411, 'provide meal and': 686386, 'meal and thousand': 524096, 'and thousand of': 74064, 'people will receive': 650407, 'will receive 800': 994590, 'receive 800 grocery': 703436, '800 grocery voucher': 22703, 'grocery voucher funded': 366107, 'voucher funded by': 960650, 'funded by the': 341578, 'by the sugary': 154450, 'the sugary beverage': 868398, 'sugary beverage tax': 817497, 'shiver': 759394, '24 picture': 15675, 'picture that': 656198, 'that prove': 845880, 'prove american': 686098, 'with bird': 997412, 'bird seed': 131347, 'seed and': 746130, 'then condom': 877084, 'condom wtf': 193620, 'wtf hope': 1013285, 'hope whoever': 403779, 'whoever bought': 990090, 'seed didn': 746142, 'the condom': 851439, 'condom shiver': 193608, '24 picture that': 15676, 'picture that prove': 656201, 'that prove american': 845881, 'prove american have': 686099, 'american have no': 52024, 'idea how to': 413080, 'deal with bird': 229541, 'with bird seed': 997413, 'bird seed and': 131348, 'seed and then': 746132, 'and then condom': 73751, 'then condom wtf': 877085, 'condom wtf hope': 193621, 'wtf hope whoever': 1013286, 'hope whoever bought': 403780, 'whoever bought the': 990091, 'bought the bird': 136735, 'the bird seed': 849727, 'bird seed didn': 131349, 'seed didn buy': 746143, 'didn buy the': 241000, 'buy the condom': 149289, 'the condom shiver': 851441, 'proving': 687220, 'zealand primary': 1027302, 'primary sector': 678089, 'is proving': 451128, 'proving it': 687223, 'worth during': 1011355, 'outbreak while': 628816, 'uncertain there': 939608, 'there strong': 879115, 'food dairy': 314080, 'dairy remains': 225033, 'remains our': 710050, 'our biggest': 622205, 'export and': 292609, 'new zealand primary': 559993, 'zealand primary sector': 1027303, 'primary sector is': 678090, 'sector is proving': 744251, 'is proving it': 451129, 'proving it worth': 687224, 'it worth during': 462567, 'worth during the': 1011356, '19 outbreak while': 9208, 'outbreak while global': 628817, 'while global market': 986874, 'global market are': 352022, 'market are uncertain': 516033, 'are uncertain there': 91270, 'uncertain there strong': 939610, 'there strong demand': 879116, 'strong demand for': 814011, 'demand for our': 235467, 'for our food': 324243, 'our food dairy': 623105, 'food dairy remains': 314082, 'dairy remains our': 225034, 'remains our biggest': 710051, 'our biggest export': 622207, 'biggest export and': 130235, 'export and price': 292610, 'price are holding': 672680, 'are holding up': 87225, 'got range': 358805, 'time start': 897746, 'start we': 794632, 'all residential': 44169, 'residential and': 714418, 'business price': 144252, 'price until': 677213, 'until 30': 943653, '2020 see': 14588, 'else we': 271968, 've got range': 953194, 'got range of': 358806, 'range of measure': 696716, 'measure to support': 525409, 'our customer through': 622676, 'customer through this': 222949, 'through this tough': 894851, 'tough time start': 926864, 'time start we': 897747, 'start we have': 794633, 'we have frozen': 971824, 'have frozen all': 380729, 'frozen all residential': 338952, 'all residential and': 44170, 'residential and small': 714419, 'small business price': 774887, 'business price until': 144256, 'price until 30': 677214, 'until 30 june': 943655, 'june 2020 see': 467989, '2020 see what': 14589, 'see what else': 746030, 'what else we': 981415, 'else we re': 271969, 're doing to': 698551, 'doing to support': 252802, 'customer and community': 222070, 'leavenoonebehind': 485061, 'these unprecedented': 880921, 'call fo': 155845, 'fo unprecedented': 311804, 'unprecedented measure': 943160, 'measure leavenoonebehind': 525248, 'leavenoonebehind caf': 485062, 'caf india': 155084, 'india appeal': 434306, 'with urgent': 1001929, 'urgent food': 948342, 'supply hygiene': 825381, 'hygiene kit': 412118, 'kit and': 475487, 'and accurate': 57605, 'accurate information': 28900, 'about prevention': 25987, '19 averting': 5274, 'averting unnecessary': 104933, 'these unprecedented time': 880922, 'unprecedented time call': 943196, 'time call fo': 896441, 'call fo unprecedented': 155846, 'fo unprecedented measure': 311805, 'unprecedented measure leavenoonebehind': 943162, 'measure leavenoonebehind caf': 525249, 'leavenoonebehind caf india': 485063, 'caf india appeal': 155085, 'india appeal to': 434307, 'appeal to you': 82083, 'you to support': 1021845, 'to support to': 915981, 'support to reach': 826951, 'vulnerable people with': 961117, 'people with urgent': 650480, 'with urgent food': 1001930, 'urgent food supply': 948343, 'food supply hygiene': 316959, 'supply hygiene kit': 825382, 'hygiene kit and': 412119, 'kit and accurate': 475489, 'and accurate information': 57606, 'accurate information about': 28901, 'information about prevention': 437712, 'about prevention of': 25988, 'covid 19 averting': 212667, '19 averting unnecessary': 5275, 'averting unnecessary panic': 104934, 'anastasia': 57293, 'purina': 690060, 'anastasia is': 57294, 'not amused': 568186, 'amused at': 54954, 'human panic': 410587, 'human she': 410608, 'she owns': 756256, 'owns had': 632631, 'hit several': 398397, 'her purina': 392317, 'purina panicbuying': 690063, 'anastasia is not': 57295, 'is not amused': 450031, 'not amused at': 568187, 'amused at all': 54955, 'all the human': 44789, 'the human panic': 857721, 'human panic buying': 410588, 'dog food the': 252093, 'food the human': 317118, 'the human she': 857724, 'human she owns': 410609, 'she owns had': 756257, 'owns had to': 632632, 'had to hit': 373697, 'to hit several': 907852, 'hit several store': 398398, 'several store to': 753937, 'get her purina': 347218, 'her purina panicbuying': 392318, 'purina panicbuying 19': 690064, 'with 3d': 997008, '3d printer': 18249, 'printer hospital': 678327, 'hospital convert': 404357, 'convert sleep': 202535, 'apnea machine': 81496, 'machine into': 507382, 'into ventilator': 443273, 'with 3d printer': 997009, '3d printer hospital': 18250, 'printer hospital convert': 678328, 'hospital convert sleep': 404358, 'convert sleep apnea': 202536, 'sleep apnea machine': 773753, 'apnea machine into': 81497, 'machine into ventilator': 507383, 'tree of': 931194, 'life cooking': 488566, 'cooking more': 202881, 'minimise supermarket': 533085, 'visit stayhomesavelives': 959364, 'the tree of': 869947, 'tree of life': 931195, 'of life cooking': 585819, 'life cooking more': 488567, 'cooking more with': 202883, 'more with le': 540996, 'with le to': 999190, 'le to minimise': 483208, 'to minimise supermarket': 910154, 'minimise supermarket visit': 533086, 'supermarket visit stayhomesavelives': 823662, 'unbelievable major': 939506, 'major retail': 509435, 'industry supply': 436132, 'the crucial': 852539, 'unbelievable major retail': 939507, 'major retail industry': 509437, 'retail industry supply': 718220, 'industry supply and': 436133, 'supply and chain': 824706, 'and chain management': 59703, 'chain management and': 170912, 'management and manufacturer': 512532, 'and manufacturer have': 66654, 'manufacturer have failed': 513461, 'stock up the': 803119, 'up the crucial': 946163, 'the crucial inventory': 852540, 'inventory for the': 443671, 'picture will': 656219, 'forward say': 330012, 'say chaldean': 738498, 'mensah associate': 528613, 'expert we are': 292019, 'are in situation': 87439, 'situation where the': 772582, 'where the sector': 985248, 'the sector ha': 866614, 'revenue picture will': 720468, 'picture will look': 656220, 'will look very': 994046, 'look very unstable': 502657, 'going forward say': 355166, 'forward say chaldean': 330013, 'say chaldean mensah': 738499, 'chaldean mensah associate': 171368, 'mensah associate professor': 528614, 'rollison': 725693, 'adelaide': 32132, 'htta': 409749, 'rollison have': 725694, 'some dignity': 782686, 'dignity our': 242835, 'our secretary': 624694, 'secretary to': 743972, 'to aussie': 900835, 'aussie fighting': 103116, 'an adelaide': 55119, 'adelaide supermarket': 32144, 'supermarket htta': 820818, 'rollison have some': 725695, 'have some dignity': 382626, 'some dignity our': 782687, 'dignity our secretary': 242836, 'our secretary to': 624695, 'secretary to aussie': 743973, 'to aussie fighting': 900836, 'aussie fighting over': 103117, 'fighting over grocery': 305108, 'over grocery in': 630261, 'grocery in an': 364610, 'in an adelaide': 420272, 'an adelaide supermarket': 55120, 'adelaide supermarket htta': 32145, 'related scam top': 708562, 'costco like': 208249, 'and apparently they': 58254, 'apparently they sell': 82033, 'they sell them': 883315, 'at costco like': 98348, 'costco like to': 208250, 'girlguiding': 350322, 'nee': 554324, 'durham': 262384, 'oswald': 619757, 'or ordering': 616418, 'ordering takeaway': 619030, 'help girlguiding': 389810, 'girlguiding nee': 350323, 'nee 6th': 554325, '6th durham': 21686, 'durham city': 262387, 'city st': 179372, 'st oswald': 791738, 'oswald brownie': 619758, 'brownie unit': 141274, 'unit every': 942053, 'online raise': 608843, 'raise free': 695849, 'doing your food': 252883, 'your food shopping': 1023926, 'food shopping or': 316531, 'shopping or ordering': 763550, 'or ordering takeaway': 616419, 'ordering takeaway online': 619031, 'takeaway online because': 832891, '19 help girlguiding': 7498, 'help girlguiding nee': 389811, 'girlguiding nee 6th': 350324, 'nee 6th durham': 554326, '6th durham city': 21687, 'durham city st': 262388, 'city st oswald': 179373, 'st oswald brownie': 791739, 'oswald brownie unit': 619759, 'brownie unit every': 141275, 'unit every time': 942054, 'shop online raise': 760582, 'online raise free': 608844, 'raise free donation': 695850, 'simultaneous': 770366, 'daniel': 225813, 'egel': 269739, 'ries': 721680, 'have dramatic': 380355, 'dramatic effect': 258286, 'on economy': 600513, 'economy across': 267606, 'globe but': 352450, 'east may': 265327, 'particularly affected': 642656, 'affected given': 34362, 'the simultaneous': 867204, 'simultaneous fall': 770369, 'price rand': 676075, 'rand daniel': 696568, 'daniel egel': 225819, 'egel ries': 269740, 'ries and': 721681, 'pandemic will have': 637009, 'will have dramatic': 993627, 'have dramatic effect': 380356, 'dramatic effect on': 258287, 'effect on economy': 269083, 'on economy across': 600514, 'economy across the': 267607, 'the globe but': 856349, 'globe but the': 352451, 'but the middle': 147364, 'middle east may': 530650, 'east may be': 265328, 'may be particularly': 521017, 'be particularly affected': 116361, 'particularly affected given': 642657, 'affected given the': 34363, 'given the simultaneous': 351157, 'the simultaneous fall': 867205, 'simultaneous fall in': 770370, 'oil price rand': 597227, 'price rand daniel': 676076, 'rand daniel egel': 696569, 'daniel egel ries': 225820, 'egel ries and': 269741, 'ries and discus': 721682, 'talent': 833704, 'drake': 258234, 'job vacancy': 466260, 'vacancy alert': 951555, 'alert 500': 41334, '500 role': 20050, 'role due': 725071, '19 vertical': 11751, 'vertical talent': 954966, 'talent parent': 833707, 'company drake': 190614, 'drake international': 258235, 'international is': 441821, 'entry level': 279004, 'level position': 487678, 'across some': 29455, 'australia major': 103326, 'job vacancy alert': 466261, 'vacancy alert 500': 951556, 'alert 500 role': 41335, '500 role due': 20051, 'role due to': 725072, 'outbreak of coronavirus': 628478, 'covid 19 vertical': 214024, '19 vertical talent': 11752, 'vertical talent parent': 954967, 'talent parent company': 833708, 'parent company drake': 641610, 'company drake international': 190615, 'drake international is': 258236, 'international is experiencing': 441822, 'is experiencing unprecedented': 447652, 'demand for entry': 235411, 'for entry level': 321072, 'entry level position': 279005, 'level position across': 487679, 'position across some': 665155, 'across some of': 29457, 'some of australia': 783390, 'of australia major': 580454, 'australia major supermarket': 103327, 'watch crisis': 968382, 'drive demand': 259028, 'demand london': 235818, 'london food': 501066, 'bank launch': 109968, 'first virtual': 309162, 'watch crisis drive': 968383, 'crisis drive demand': 217315, 'drive demand london': 259031, 'demand london food': 235819, 'london food bank': 501067, 'food bank launch': 313594, 'bank launch first': 109969, 'launch first virtual': 481904, 'first virtual food': 309163, 'malema': 511696, 'watch malema': 968472, 'malema tell': 511697, 'tell business': 836920, 'put human': 690605, 'life ahead': 488449, 'of profit': 588519, 'watch malema tell': 968473, 'malema tell business': 511698, 'tell business leader': 836921, 'business leader to': 143987, 'leader to put': 483555, 'to put human': 912591, 'put human life': 690607, 'human life ahead': 410545, 'life ahead of': 488450, 'ahead of profit': 39189, 'of profit during': 588521, 'profit during covid': 682714, 'koike': 477344, 'hello darkness': 389146, 'darkness my': 226007, 'old friend': 598256, 'being cleaned': 124950, 'out after': 625574, 'after gov': 35726, 'gov koike': 359625, 'koike tell': 477345, 'tell resident': 837058, 'hello darkness my': 389147, 'darkness my old': 226008, 'my old friend': 549559, 'old friend the': 598258, 'friend the supermarket': 333831, 'supermarket is being': 821073, 'is being cleaned': 446071, 'being cleaned out': 124951, 'cleaned out after': 180720, 'out after gov': 625577, 'after gov koike': 35728, 'gov koike tell': 359626, 'koike tell resident': 477346, 'tell resident to': 837059, 'stay home this': 797015, 'home this weekend': 402291, 'reality where': 701815, 'where professional': 985133, 'professional sport': 682497, 'sport player': 789965, 'player movie': 659322, 'but few': 145713, 'new super': 559688, 'new reality where': 559409, 'reality where professional': 701816, 'where professional sport': 985134, 'professional sport player': 682498, 'sport player movie': 789966, 'player movie actor': 659323, 'store shelf stacker': 810100, 'stacker and health': 792003, 'care staff to': 164213, 'staff to name': 792992, 'to name but': 910467, 'name but few': 551622, 'but few are': 145714, 'the new super': 861563, 'new super hero': 559689, '1995': 12504, 'me drive': 522685, 'drive 1995': 258971, '1995 car': 12505, 'car by': 163039, 'car can': 163043, 'can brake': 157784, 'brake on': 137639, 'on dime': 600329, 'dime either': 242918, 'either stay': 270379, 'safe or': 729865, 'home staying': 402136, 'safe doesn': 729600, 'doesn include': 251846, 'include driving': 431554, 'driving like': 259971, 'maniac to': 513159, 'way home all': 969632, 'home all of': 400583, 'of this happened': 591984, 'this happened to': 887849, 'happened to me': 377279, 'to me drive': 909926, 'me drive 1995': 522686, 'drive 1995 car': 258972, '1995 car by': 12506, 'car by the': 163040, 'way so it': 969875, 'not like my': 570397, 'like my car': 490816, 'my car can': 547597, 'car can brake': 163044, 'can brake on': 157785, 'brake on dime': 137640, 'on dime either': 600330, 'dime either stay': 242919, 'either stay safe': 270381, 'stay safe or': 797261, 'safe or stay': 729866, 'fuck home staying': 339573, 'home staying safe': 402138, 'staying safe doesn': 798691, 'safe doesn include': 729601, 'doesn include driving': 251847, 'include driving like': 431555, 'driving like maniac': 259972, 'like maniac to': 490700, 'maniac to get': 513160, 'get to grocery': 348471, 'applauded': 82266, 'feel about': 302543, '50 at': 19620, 'it 100': 456168, 'be applauded': 113660, 'applauded and': 82267, 'and lead': 66022, 'lead others': 483301, 'the thanks': 869361, 'thanks they': 842197, 'deserve 100': 238020, '100 off': 1998, 'off nhscovidheroes': 593993, 'nhscovidheroes nh': 562218, 'sure how feel': 827572, 'how feel about': 407857, 'feel about this': 302549, 'about this you': 26676, 'this you need': 891615, 'make this way': 510654, 'this way more': 891131, 'way more than': 969711, 'than 50 at': 840256, '50 at your': 19621, 'at your price': 101688, 'your price make': 1025405, 'price make it': 675154, 'make it 100': 510015, 'it 100 and': 456169, '100 and you': 1837, 'will be applauded': 992359, 'be applauded and': 113661, 'applauded and lead': 82269, 'and lead others': 66023, 'lead others to': 483302, 'others to give': 621728, 'to give our': 906699, 'give our hero': 350632, 'our hero on': 623425, 'line the thanks': 493455, 'the thanks they': 869362, 'thanks they deserve': 842198, 'they deserve 100': 881892, 'deserve 100 off': 238021, '100 off nhscovidheroes': 1999, 'off nhscovidheroes nh': 593994, 'ppekit': 668120, 'getmeds': 348788, 'what ppe': 982046, 'kit contains': 475526, 'contains n95': 200634, 'n95 surgicalmask': 551236, 'surgicalmask ppekit': 828397, 'ppekit ppe': 668121, 'sanitizer getmeds': 734977, 'getmeds quarantine': 348789, 'isolation beatcovid19': 455213, 'know what ppe': 476972, 'what ppe kit': 982048, 'ppe kit contains': 667992, 'kit contains n95': 475527, 'contains n95 surgicalmask': 200635, 'n95 surgicalmask ppekit': 551237, 'surgicalmask ppekit ppe': 828398, 'ppekit ppe sanitizer': 668122, 'ppe sanitizer getmeds': 668044, 'sanitizer getmeds quarantine': 734978, 'getmeds quarantine isolation': 348790, 'quarantine isolation beatcovid19': 692311, 'florida issue': 310956, 'issue stayathome': 455938, 'stayathome order': 797565, 'order effective': 618187, 'effective april': 269222, 'april for': 83602, 'florida issue stayathome': 310957, 'issue stayathome order': 455939, 'stayathome order effective': 797566, 'order effective april': 618188, 'effective april for': 269225, 'april for 30': 83603, 'presumed': 671306, 'virtuous': 957870, 'walked around': 964936, 'much stock': 545322, 'item decided': 463195, 'can probably': 159303, 'probably do': 679246, 'without and': 1002487, 'and presumed': 69394, 'presumed someone': 671307, 'else may': 271792, 'me me': 523150, 'not trying': 572297, 'all virtuous': 45370, 'virtuous but': 957871, 'shop consciously': 760064, 'consciously in': 194803, 'walked around supermarket': 964938, 'around supermarket they': 93505, 'didn have much': 241091, 'have much stock': 381532, 'much stock of': 545323, 'stock of some': 802545, 'of some item': 589898, 'some item decided': 783147, 'item decided not': 463196, 'decided not buy': 230873, 'not buy some': 568655, 'buy some item': 149208, 'some item can': 783146, 'item can probably': 463173, 'can probably do': 159304, 'probably do without': 679249, 'do without and': 250582, 'without and presumed': 1002488, 'and presumed someone': 69395, 'presumed someone else': 671308, 'someone else may': 784452, 'else may need': 271793, 'may need them': 521357, 'them more than': 876034, 'more than me': 540645, 'than me me': 840876, 'me me not': 523153, 'me not trying': 523232, 'not trying to': 572298, 'to be all': 901101, 'be all virtuous': 113556, 'all virtuous but': 45371, 'virtuous but think': 957872, 'but think we': 147539, 'think we can': 885762, 'we can shop': 971010, 'can shop consciously': 159602, 'shop consciously in': 760065, 'consciously in coming': 194804, 'in coming week': 421588, 'coming week 19': 188272, 'makati': 509619, 'sure about': 827478, 'about current': 25057, 'current supply': 221391, 'supply with': 826119, 'with st': 1000930, 'st luke': 791726, 'luke and': 506633, 'and makati': 66544, 'makati medical': 509620, 'center already': 169149, 'at capacity': 98192, 'go try': 354401, 'supermarket in over': 820955, 'over week so': 630915, 'week so not': 976892, 'so not sure': 777900, 'not sure about': 571832, 'sure about current': 827479, 'about current supply': 25058, 'current supply with': 221392, 'supply with st': 826123, 'with st luke': 1000931, 'st luke and': 791727, 'luke and makati': 506634, 'and makati medical': 66545, 'makati medical center': 509621, 'medical center already': 526089, 'center already being': 169150, 'already being at': 47230, 'being at capacity': 124875, 'at capacity for': 98193, 'capacity for covid': 162522, '19 patient do': 9589, 'not really want': 571245, 'to go try': 906873, 'go try to': 354402, 'then bumbling': 877042, 'bumbling need': 142553, 'sort it': 786111, 'it apparently': 456559, 'and everywhere': 62434, 'else in': 271738, 'it insanity': 458803, 'insanity the': 439110, 'totally incompetent': 926358, 'incompetent he': 432535, 'to star': 915182, 'then bumbling need': 877043, 'bumbling need to': 142554, 'need to order': 556000, 'order the supermarket': 618636, 'the supermarket manager': 868693, 'supermarket manager to': 821456, 'manager to sort': 512818, 'to sort it': 914922, 'sort it apparently': 786112, 'it apparently they': 456560, 'are in ireland': 87402, 'in ireland and': 424157, 'ireland and everywhere': 444811, 'and everywhere else': 62435, 'everywhere else in': 288197, 'else in the': 271739, 'world just not': 1009736, 'just not here': 469331, 'not here it': 569950, 'here it insanity': 393267, 'it insanity the': 458805, 'insanity the man': 439111, 'the man is': 859979, 'is totally incompetent': 453306, 'totally incompetent he': 926359, 'incompetent he need': 432536, 'he need to': 385246, 'need to star': 556080, 'corona season': 204166, 'season stop': 743442, 'elderly helpless': 270700, 'helpless people': 391584, 'you before': 1017433, 'start hoarding': 794330, 'hoarding unnecessary': 399632, 'unnecessary amount': 942888, 'certain grocery': 170026, 'shelf what': 757779, 'wa ur': 963616, 'ur grandpa': 948004, 'grandpa selfquarantine': 361957, 'selfquarantine quarantine': 748569, 'quarantine shopping': 692533, 'this corona season': 886867, 'corona season stop': 204167, 'season stop and': 743443, 'stop and think': 804455, 'the elderly helpless': 854124, 'elderly helpless people': 270701, 'helpless people around': 391585, 'people around you': 647148, 'around you before': 93659, 'you before you': 1017435, 'before you start': 123335, 'you start hoarding': 1021356, 'start hoarding unnecessary': 794331, 'hoarding unnecessary amount': 399633, 'unnecessary amount of': 942889, 'amount of certain': 53210, 'of certain grocery': 581251, 'certain grocery item': 170027, 'grocery item from': 364654, 'store shelf what': 810111, 'shelf what if': 757782, 'what if this': 981639, 'if this wa': 415174, 'this wa ur': 891095, 'wa ur grandpa': 963617, 'ur grandpa selfquarantine': 948005, 'grandpa selfquarantine quarantine': 361958, 'selfquarantine quarantine shopping': 748570, 'quarantine shopping panicbuying': 692537, 'bicycle': 129449, 'leel': 485349, 'casher': 166413, 'tokyolockdown': 923512, 'many bicycle': 513821, 'bicycle in': 129452, 'supermarket within': 823944, 'within walking': 1002456, 'walking distance': 965044, 'enter and': 278226, 'out leel': 626492, 'leel and': 485350, 'and cart': 59592, 'cart are': 165258, 'all taken': 44599, 'taken all': 832938, 'all casher': 42315, 'casher is': 166414, 'overcrowded japan': 631155, 'japan tokyolockdown': 464771, 'there is so': 878625, 'is so many': 452024, 'so many bicycle': 777638, 'many bicycle in': 513822, 'bicycle in front': 129453, 'of supermarket within': 590459, 'supermarket within walking': 823947, 'within walking distance': 1002457, 'walking distance of': 965046, 'distance of our': 246786, 'of our place': 587534, 'our place it': 624352, 'place it hard': 657534, 'hard to enter': 378062, 'to enter and': 905210, 'enter and out': 278230, 'and out leel': 68534, 'out leel and': 626493, 'leel and cart': 485351, 'and cart are': 59593, 'cart are all': 165259, 'are all taken': 84360, 'all taken all': 44600, 'taken all casher': 832939, 'all casher is': 42316, 'casher is overcrowded': 166415, 'is overcrowded japan': 450753, 'overcrowded japan tokyolockdown': 631156, 'bazaar': 113014, 'boulevard': 136795, 'navigated': 553110, 'tightly': 895879, 'nyc right': 578044, 'before hitting': 122853, 'hitting up': 398608, 'food bazaar': 313688, 'bazaar on': 113019, 'on northern': 602437, 'northern boulevard': 567744, 'boulevard our': 136796, 'our communication': 622444, 'communication skill': 189642, 'skill were': 772984, 'truly tested': 933346, 'tested we': 839388, 'we navigated': 972456, 'navigated horde': 553111, 'all tightly': 45213, 'tightly packed': 895880, 'packed into': 633615, 'one supermarket': 607136, 'nyc right before': 578045, 'right before hitting': 721807, 'before hitting up': 122854, 'hitting up food': 398609, 'up food bazaar': 944879, 'food bazaar on': 313689, 'bazaar on northern': 113020, 'on northern boulevard': 602439, 'northern boulevard our': 567745, 'boulevard our communication': 136797, 'our communication skill': 622445, 'communication skill were': 189643, 'skill were truly': 772985, 'were truly tested': 980295, 'truly tested we': 933347, 'tested we navigated': 839390, 'we navigated horde': 972457, 'navigated horde of': 553112, 'horde of customer': 403999, 'of customer all': 582264, 'customer all tightly': 222047, 'all tightly packed': 45214, 'tightly packed into': 895882, 'packed into one': 633616, 'into one supermarket': 442808, 'surge after': 828115, '19 upends': 11696, 'food price continue': 315927, 'continue to surge': 201271, 'to surge after': 916000, 'surge after covid': 828116, 'covid 19 upends': 214007, '19 upends supply': 11697, 'need medicare': 555226, 'medicare or': 526587, 'or prescription': 616679, 'drug coverage': 260927, 'coverage easily': 212347, 'easily enroll': 265200, 'enroll online': 277840, 'at without': 101576, 'without leaving': 1002755, 'home virginia': 402431, 'virginia insurance': 957675, 'insurance health': 440743, 'health retirement': 386803, 'retirement healthcare': 719710, 'healthcare corona': 387076, 'virus senior': 958733, 'senior crisis': 750268, 'crisis enrollment': 217350, 'enrollment home': 277849, 'online internet': 608427, 'internet technology': 442030, 'need medicare or': 555227, 'medicare or prescription': 526588, 'or prescription drug': 616680, 'prescription drug coverage': 670502, 'drug coverage easily': 260928, 'coverage easily enroll': 212348, 'easily enroll online': 265201, 'enroll online at': 277841, 'online at without': 607902, 'at without leaving': 101577, 'without leaving your': 1002757, 'leaving your home': 485173, 'your home virginia': 1024385, 'home virginia insurance': 402432, 'virginia insurance health': 957676, 'insurance health retirement': 440744, 'health retirement healthcare': 386804, 'retirement healthcare corona': 719711, 'healthcare corona virus': 387077, 'corona virus senior': 204350, 'virus senior crisis': 958734, 'senior crisis enrollment': 750269, 'crisis enrollment home': 217351, 'enrollment home online': 277850, 'home online internet': 401722, 'online internet technology': 608428, 'fascinated': 299741, 'pronged': 683978, 'am often': 50275, 'often asked': 596160, 'write about': 1012758, 'psychology taking': 687583, 'of psychology': 588575, 'psychology at': 687545, 'university so': 942463, 'so quite': 778108, 'quite fascinated': 694863, 'fascinated by': 299742, 'current panic': 221298, 'too here': 924780, 'here good': 393051, 'article not': 94394, 'by me': 153192, 'the pronged': 864665, 'pronged epidemic': 683979, 'am often asked': 50276, 'often asked to': 596161, 'asked to write': 95883, 'to write about': 918859, 'write about consumer': 1012759, 'about consumer psychology': 25002, 'consumer psychology taking': 198602, 'psychology taking advantage': 687584, 'advantage of my': 33015, 'of my year': 586834, 'my year of': 550660, 'year of psychology': 1014790, 'of psychology at': 588576, 'psychology at university': 687547, 'at university so': 101405, 'university so quite': 942464, 'so quite fascinated': 778109, 'quite fascinated by': 694864, 'fascinated by the': 299744, 'by the current': 154301, 'the current panic': 852650, 'current panic buying': 221299, 'panic buying if': 637768, 'buying if you': 150517, 'you are too': 1017267, 'are too here': 91139, 'too here good': 924782, 'here good article': 393052, 'good article not': 356780, 'article not by': 94395, 'not by me': 568668, 'by me on': 153195, 'on the pronged': 604308, 'the pronged epidemic': 864666, 'abeg': 24308, 'abeg should': 24312, 'should slash': 766476, 'slash data': 773559, 'telco are': 836650, 'biggest beneficiary': 130188, 'beneficiary of': 126896, 'abeg should slash': 24313, 'should slash data': 766477, 'slash data price': 773560, 'data price further': 226359, 'price further the': 674146, 'further the telco': 342188, 'the telco are': 869251, 'telco are the': 836652, 'the biggest beneficiary': 849642, 'biggest beneficiary of': 130189, 'beneficiary of covid': 126898, 'prog': 683174, 'meet unprecedented': 527641, 'of helped': 584550, 'helped by': 391051, 'donating food': 254452, 'the culinary': 852560, 'culinary prog': 220222, 'prog that': 683177, 'gone bad': 356217, 'closure reported': 184013, 'work to meet': 1005893, 'to meet unprecedented': 910063, 'meet unprecedented demand': 527642, 'unprecedented demand result': 943124, 'result of helped': 717594, 'of helped by': 584551, 'helped by donating': 391052, 'by donating food': 152402, 'donating food from': 254453, 'from the culinary': 337663, 'the culinary prog': 852562, 'culinary prog that': 220223, 'prog that would': 683178, 'that would have': 847681, 'would have gone': 1011878, 'have gone bad': 380788, 'gone bad in': 356219, 'bad in the': 107903, 'of the school': 591442, 'the school closure': 866490, 'school closure reported': 741754, 'no mistake': 564774, 'mistake it': 534468, 'it suck': 461337, 'one member': 606648, 'store pick': 809554, 'up once': 945650, 'once every': 605627, 'is stayhome': 452245, 'make no mistake': 510244, 'no mistake it': 564775, 'mistake it suck': 534469, 'it suck to': 461340, 'suck to stay': 816940, 'home but only': 400842, 'but only one': 146692, 'only one member': 610880, 'one member of': 606651, 'my family will': 548235, 'be going out': 115054, 'food from grocery': 314605, 'grocery store pick': 365658, 'store pick up': 809555, 'pick up once': 655742, 'up once every': 945651, 'once every two': 605628, 'two week it': 937336, 'week it just': 976436, 'it just the': 459250, 'just the way': 470020, 'the way it': 871163, 'it is stayhome': 459090, 'journorequest': 467494, 'supermarket social': 822749, 'or cleaner': 614735, 'cleaner for': 180782, 'for positive': 324625, 'positive piece': 665413, 'piece about': 656257, 'moving ideally': 544155, 'ideally you': 413296, 'under 35': 939971, '35 my': 17905, 'open journorequest': 612346, 'looking to speak': 503045, 'to speak to': 914964, 'speak to someone': 787720, 'to someone who': 914911, 'in supermarket social': 428671, 'supermarket social care': 822750, 'social care or': 779453, 'care or cleaner': 164132, 'or cleaner for': 614736, 'cleaner for positive': 180783, 'for positive piece': 324627, 'positive piece about': 665414, 'piece about keeping': 656258, 'about keeping the': 25619, 'the country moving': 852119, 'country moving ideally': 210906, 'moving ideally you': 544156, 'ideally you ll': 413297, 'll be under': 496643, 'be under 35': 117848, 'under 35 my': 939972, '35 my dm': 17906, 'my dm are': 548010, 'dm are open': 248878, 'are open journorequest': 88791, 'underperformance': 940538, 'about wall': 26839, 'street underperformance': 813155, 'underperformance coupled': 940539, 'price empty': 673679, 'main challenge': 508728, 'facing humanity': 295492, 'humanity you': 410781, 'totally wrong': 926410, 'wrong black': 1013002, 'swan when': 829970, 'they congregate': 881795, 'congregate begin': 194460, 'new infamous': 558923, 'infamous black': 436465, 'swan are': 829953, 'thinking about wall': 885866, 'about wall street': 26840, 'wall street underperformance': 965192, 'street underperformance coupled': 813156, 'underperformance coupled with': 940540, 'coupled with low': 211735, 'with low oil': 999336, 'price and falling': 672413, 'oil price empty': 597117, 'price empty store': 673681, 'shelf in some': 757216, 'some country are': 782613, 'country are the': 210486, 'the main challenge': 859898, 'main challenge facing': 508729, 'challenge facing humanity': 171449, 'facing humanity you': 295493, 'humanity you are': 410782, 'are totally wrong': 91158, 'totally wrong black': 926411, 'wrong black swan': 1013003, 'black swan when': 132139, 'swan when they': 829971, 'when they congregate': 984248, 'they congregate begin': 881796, 'congregate begin to': 194461, 'spread and new': 790417, 'and new infamous': 67551, 'new infamous black': 558924, 'infamous black swan': 436466, 'black swan are': 132134, 'swan are on': 829954, 'currently approved': 221462, 'treatment vaccine and': 931163, 'vaccine and home': 951653, 'and home test': 64684, 'are currently approved': 85656, 'currently approved or': 221463, 'with these scam': 1001656, 'bookmaker': 134757, 'remember supermarket': 710266, 'have billion': 379798, 'in fund': 423183, 'survive your': 829308, 'store probably': 809655, 'probably support': 679392, 'support an': 826349, 'without your': 1003076, 'support next': 826674, 'year could': 1014496, 'be bookmaker': 113882, 'bookmaker or': 134758, 'or charity': 614706, 'charity shop': 173686, 'shop shoplocal': 760773, 'please remember supermarket': 660371, 'remember supermarket chain': 710267, 'chain have billion': 170759, 'have billion in': 379799, 'billion in fund': 130846, 'in fund and': 423184, 'fund and million': 341358, 'and million of': 67031, 'customer they will': 222940, 'they will survive': 883894, 'will survive your': 995054, 'survive your local': 829309, 'local store probably': 498473, 'store probably support': 809657, 'probably support an': 679393, 'support an entire': 826351, 'an entire family': 55769, 'family and without': 297613, 'and without your': 75798, 'without your support': 1003080, 'your support next': 1026088, 'support next year': 826675, 'next year could': 561727, 'year could be': 1014497, 'could be bookmaker': 208846, 'be bookmaker or': 113883, 'bookmaker or charity': 134759, 'or charity shop': 614707, 'charity shop shoplocal': 173687, 'sape': 736684, 'nak': 551536, 'buat': 141575, 'duit': 262063, 'secara': 743644, 'boleh': 134102, 'lah': 478980, 'cuba': 220160, 'kitajagakita': 475680, 'rm5': 724270, 'sape nak': 736685, 'nak buat': 551537, 'buat duit': 141576, 'duit secara': 262068, 'secara online': 743645, 'online boleh': 607937, 'boleh lah': 134103, 'lah cuba': 478981, 'cuba kitajagakita': 220161, 'kitajagakita more': 475681, 'click free': 181909, 'free rm5': 332113, 'rm5 to': 724271, 'user register': 950313, 'register free': 707569, 'free shopping': 332168, 'shopping malaysia': 763225, 'sape nak buat': 736686, 'nak buat duit': 551538, 'buat duit secara': 141578, 'duit secara online': 262069, 'secara online boleh': 743646, 'online boleh lah': 607938, 'boleh lah cuba': 134104, 'lah cuba kitajagakita': 478982, 'cuba kitajagakita more': 220162, 'kitajagakita more click': 475682, 'more click free': 538821, 'click free rm5': 181910, 'free rm5 to': 332114, 'rm5 to new': 724272, 'to new user': 910579, 'new user register': 559819, 'user register free': 950314, 'register free shopping': 707570, 'free shopping malaysia': 332170, 'pearled': 646168, 'barley': 111119, 'tostada': 926108, 'chopped apparently': 177962, 'apparently my': 81970, 'my ingredient': 548849, 'ingredient are': 438349, 'are pearled': 89014, 'pearled barley': 646169, 'barley great': 111120, 'great northern': 362849, 'northern bean': 567740, 'bean tostada': 118381, 'tostada shell': 926109, 'shell and': 757871, 'rice wine': 721174, 'wine vinegar': 995924, 'of chopped apparently': 581407, 'chopped apparently my': 177963, 'apparently my ingredient': 81971, 'my ingredient are': 548850, 'ingredient are pearled': 438350, 'are pearled barley': 89015, 'pearled barley great': 646170, 'barley great northern': 111121, 'great northern bean': 362850, 'northern bean tostada': 567741, 'bean tostada shell': 118382, 'tostada shell and': 926110, 'shell and rice': 757872, 'and rice wine': 70509, 'rice wine vinegar': 721175, 'ps5': 687382, 'being smart': 125801, 'smart as': 775343, 'selling my': 749354, 'my ps4': 549860, 'ps4 ahead': 687376, 'of ps5': 588573, 'ps5 release': 687385, 'date at': 226597, 'of year': 593344, 'madness came': 508166, 'came along': 156966, 'along so': 47020, 'imagine how': 416730, 'wa being smart': 961686, 'being smart as': 125802, 'smart as and': 775344, 'as and tried': 94717, 'tried to beat': 931826, 'beat the market': 118560, 'market price by': 516881, 'price by selling': 673038, 'by selling my': 153928, 'selling my ps4': 749355, 'my ps4 ahead': 549861, 'ps4 ahead of': 687377, 'ahead of ps5': 39190, 'of ps5 release': 588574, 'ps5 release date': 687386, 'release date at': 708936, 'date at the': 226599, 'end of year': 275925, 'of year then': 593348, 'year then covid': 1015005, '19 madness came': 8508, 'madness came along': 508167, 'came along so': 156968, 'along so you': 47021, 'you can imagine': 1017700, 'can imagine how': 158719, 'imagine how feel': 416731, 'how feel that': 407859, 'feel that me': 302875, 'stock in regular': 802271, 'capgemini': 162631, 'ofc': 593576, 'hi actually': 394584, 'actually my': 30894, 'at capgemini': 98196, 'capgemini pune': 162632, 'pune she': 689203, 'she stay': 756351, 'at pg': 100107, 'pg due': 653946, '19 her': 7505, 'her ofc': 392241, 'ofc shutdown': 593579, 'shutdown until': 768122, '31 march': 17585, 'march their': 515488, 'their pg': 874289, 'owner asked': 632395, 'to vacant': 918099, 'vacant the': 951575, 'the pg': 863631, 'pg until': 653955, 'march where': 515530, 'providing any': 686942, 'now she': 575788, 'panic situation': 638602, 'hi actually my': 394585, 'actually my sister': 30895, 'sister work at': 771802, 'work at capgemini': 1004861, 'at capgemini pune': 98197, 'capgemini pune she': 162633, 'pune she stay': 689204, 'she stay at': 756352, 'stay at pg': 796772, 'at pg due': 100108, 'pg due to': 653947, 'covid 19 her': 213201, '19 her ofc': 7507, 'her ofc shutdown': 392242, 'ofc shutdown until': 593580, 'shutdown until 31': 768123, 'until 31 march': 943658, '31 march their': 17587, 'march their pg': 515489, 'their pg owner': 874290, 'pg owner asked': 653951, 'owner asked them': 632396, 'them to vacant': 876526, 'to vacant the': 918100, 'vacant the pg': 951576, 'the pg until': 863632, 'pg until 31': 653956, '31 march where': 17588, 'march where they': 515531, 'are not providing': 88449, 'not providing any': 571156, 'providing any food': 686944, 'any food well': 79243, 'food well now': 317545, 'well now she': 978428, 'now she is': 575789, 'she is in': 756153, 'in the panic': 429434, 'the panic situation': 863220, 'panic situation where': 638605, 'situation where she': 772581, 'where she do': 985163, 'she do not': 755997, 'food close': 313945, 'close museum': 182727, 'museum earthquake': 546247, 'earthquake seriously': 265044, 'seriously what': 751781, 'next earthquake': 561349, 'pandemic stock up': 636558, 'on food close': 600850, 'food close museum': 313946, 'close museum earthquake': 182728, 'museum earthquake seriously': 546248, 'earthquake seriously what': 265045, 'seriously what next': 751784, 'what next earthquake': 981928, 'shawsdoesntcare': 755827, 'need there': 555791, 'work trying': 1005941, 'just lining': 469163, 'lining your': 493771, 'pocket shawsdoesntcare': 662198, 'shawsdoesntcare shameful': 755828, 'criminal that you': 216886, 're increasing price': 698897, 'increasing price at': 433665, 'when everyone is': 983400, 'in need there': 425771, 'need there are': 555792, 'are people out': 89042, 'of work trying': 593266, 'work trying to': 1005942, 'get basic grocery': 346646, 'basic grocery and': 111915, 'grocery and you': 364269, 'you re just': 1020661, 're just lining': 698945, 'just lining your': 469164, 'lining your pocket': 493772, 'your pocket shawsdoesntcare': 1025341, 'pocket shawsdoesntcare shameful': 662199, 'lockdownsaextended': 500372, 'day16oflockdown': 228859, 'isn there': 454721, 'there cure': 878296, 'be destroyed': 114423, 'destroyed with': 239075, 'soap lockdownsaextended': 779056, 'lockdownsaextended 19': 500373, '19 day16oflockdown': 6433, 'isn there cure': 454723, 'there cure for': 878297, 'cure for that': 220746, 'for that can': 326251, 'can be destroyed': 157610, 'be destroyed with': 114426, 'destroyed with disinfectant': 239076, 'with disinfectant and': 998084, 'disinfectant and soap': 245611, 'and soap lockdownsaextended': 71867, 'soap lockdownsaextended 19': 779057, 'lockdownsaextended 19 19': 500374, '19 19 day16oflockdown': 4711, 'bucketlist': 141689, 'queue another': 693870, 'another one': 77735, 'lockdown bucketlist': 499206, 'my first supermarket': 548351, 'first supermarket queue': 309044, 'supermarket queue another': 822115, 'queue another one': 693871, 'another one of': 77737, 'my lockdown bucketlist': 549158, '30am today': 17435, 'today thankful': 920259, 'heart is': 388305, 'is heavy': 448381, 'heavy and': 388618, 'keep from': 471523, 'from worrying': 338430, 'worrying and': 1010818, 'cry every': 219861, 'day praying': 228238, 'everyone thankful': 287458, 'store at 30am': 806574, 'at 30am today': 97610, '30am today thankful': 17437, 'today thankful to': 920260, 'thankful to get': 841929, 'get what needed': 348622, 'what needed my': 981913, 'needed my heart': 556440, 'my heart is': 548656, 'heart is heavy': 388307, 'is heavy and': 448382, 'heavy and it': 388620, 'it is all': 458867, 'is all can': 445454, 'all can to': 42288, 'to keep from': 908789, 'keep from worrying': 471526, 'from worrying and': 338431, 'worrying and cry': 1010819, 'and cry every': 60783, 'cry every day': 219862, 'every day praying': 285838, 'day praying for': 228239, 'praying for everyone': 669114, 'for everyone thankful': 321241, 'bosqf': 135726, 'submits': 815807, 'yield growth': 1016370, 'growth bos': 367352, 'bos bosqf': 135653, 'bosqf submits': 135729, 'submits second': 815810, 'second formula': 743719, 'for approval': 319467, 'yield growth bos': 1016371, 'growth bos bosqf': 367353, 'bos bosqf submits': 135655, 'bosqf submits second': 135730, 'submits second formula': 815811, 'second formula to': 743720, 'formula to for': 329723, 'to for approval': 906131, 'local liquor': 498152, 'time most': 897227, 'your average': 1022882, 'store rn': 809900, 'your local liquor': 1024702, 'local liquor store': 498153, 'liquor store during': 494203, 'store during these': 807411, 'these time most': 880843, 'time most have': 897228, 'most have lot': 542368, 'lot more than': 504117, 'more than your': 540703, 'than your average': 841502, 'your average grocery': 1022884, 'grocery store rn': 365729, 'store rn and': 809901, 'rn and they': 724312, 'they deserve the': 881906, 'deserve the help': 238131, 'dusttricks': 263480, 'thelockdown': 875289, 'magictrick': 508405, 'finally understand': 306125, 'why everyone': 990985, 'is obsessed': 450386, 'with buying': 997503, 'paper lately': 640405, 'lately it': 480966, 'so comfortable': 776774, 'comfortable dusttricks': 187870, 'dusttricks thelockdown': 263481, 'thelockdown stayhome': 875290, 'stayathome isolation': 797511, 'isolation quarantine': 455396, 'quarantinelife magic': 692970, 'magic magictrick': 508387, 'magictrick toiletpaper': 508406, 'finally understand why': 306129, 'understand why everyone': 940816, 'why everyone is': 990986, 'everyone is obsessed': 287091, 'is obsessed with': 450387, 'obsessed with buying': 578670, 'with buying toilet': 997505, 'toilet paper lately': 921334, 'paper lately it': 640406, 'lately it so': 480967, 'it so comfortable': 461102, 'so comfortable dusttricks': 776775, 'comfortable dusttricks thelockdown': 187871, 'dusttricks thelockdown stayhome': 263482, 'thelockdown stayhome stayathome': 875291, 'stayhome stayathome isolation': 798132, 'stayathome isolation quarantine': 797512, 'isolation quarantine quarantinelife': 455397, 'quarantine quarantinelife magic': 692472, 'quarantinelife magic magictrick': 692971, 'magic magictrick toiletpaper': 508388, 'going during': 355127, 'others we': 621760, 'can ever': 158262, 'ever know': 285382, 'know thank': 476746, 'help keep going': 389967, 'keep going during': 471543, 'going during this': 355130, 'many others we': 514460, 'others we see': 621764, 'we see you': 973176, 'see you we': 746116, 'you we know': 1022200, 're doing and': 698533, 'doing and we': 252291, 'and we appreciate': 75279, 'we appreciate it': 970454, 'appreciate it more': 82732, 'than you can': 841487, 'you can ever': 1017673, 'can ever know': 158263, 'ever know thank': 285384, 'know thank you': 476747, 'pe map': 645962, 'map daily': 514923, 'daily update': 224852, 'energy industry': 276475, 'price case': 673082, 'and european': 62310, 'country move': 210902, 'move into': 543676, 'pe map daily': 645963, 'map daily update': 514924, 'daily update on': 224855, 'update on effect': 947114, 'on effect on': 600527, 'the energy industry': 854321, 'energy industry oil': 276479, 'industry oil and': 436023, 'gas price case': 343942, 'price case increase': 673083, 'case increase and': 165816, 'increase and european': 432676, 'and european country': 62311, 'european country move': 283554, 'country move into': 210903, 'move into lockdown': 543679, 'than hr': 840762, 'hr san': 409659, 'francisco will': 331133, 'on 24': 599070, 'hour lockdown': 405744, 'mean all': 524350, 'city can': 179083, 'not considered': 568836, 'remain home': 709764, 'le than hr': 483177, 'than hr san': 840763, 'hr san francisco': 409660, 'san francisco will': 733551, 'francisco will be': 331134, 'be on 24': 116186, 'on 24 hour': 599072, '24 hour lockdown': 15620, 'hour lockdown that': 405745, 'lockdown that mean': 500002, 'that mean all': 845103, 'mean all resident': 524354, 'all resident in': 44166, 'the city can': 850922, 'city can only': 179084, 're not considered': 699085, 'not considered essential': 568838, 'considered essential you': 195295, 'essential you must': 281878, 'you must remain': 1019928, 'must remain home': 546850, 'me socialism': 523503, 'shopping key': 763130, 'key word': 473459, 'word tried': 1004609, 'good spirit': 357756, 'spirit nofood': 789488, 'is what they': 453899, 'what they told': 982419, 'told me socialism': 923617, 'me socialism would': 523504, 'go shopping key': 354116, 'shopping key word': 763131, 'key word tried': 473460, 'word tried but': 1004610, 'tried but still': 931765, 'but still in': 147168, 'still in good': 800741, 'in good spirit': 423371, 'good spirit nofood': 357758, 'spirit nofood stockpile': 789489, 'store sorry': 810266, 'grocery store sorry': 365786, 'store sorry for': 810267, 'hillside': 396506, 'ava': 104093, 'owner hillside': 632462, 'hillside ava': 396507, 'ava and': 104094, 'doing wonderful': 252870, 'pandemic am': 634830, 'am always': 49876, 'always standing': 49750, 'standing with': 793834, 'community please': 190041, 'spoke to local': 789729, 'business owner hillside': 144186, 'owner hillside ava': 632463, 'hillside ava and': 396508, 'ava and they': 104095, 'they have enough': 882315, 'and supply in': 72794, 'supply in stock': 825412, 'stock and are': 801799, 'and are doing': 58306, 'are doing wonderful': 85941, 'doing wonderful service': 252871, 'wonderful service to': 1004116, 'service to our': 752986, 'our community during': 622458, '19 pandemic am': 9261, 'pandemic am always': 634831, 'am always standing': 49878, 'always standing with': 49751, 'standing with my': 793835, 'with my community': 999616, 'my community please': 547767, 'community please go': 190043, 'to my website': 910448, 'lousy': 504575, 'floral': 310878, 'from mostly': 336477, 'mostly my': 542978, 'own garden': 632016, 'garden thing': 343626, 'can cant': 157862, 'cant spend': 162334, 'on during': 600442, 'quarantine takeout': 692601, 'takeout restaurant': 833183, 'meal yes': 524311, 'yes because': 1015384, 'because lousy': 119229, 'lousy cook': 504576, 'cook floral': 202739, 'floral delivery': 310881, 'no because': 563678, 'because can': 118972, 'can garden': 158391, 'garden floral': 343589, 'floral arrangement': 310879, 'arrangement get': 93718, 'get sticker': 348114, 'sticker shock': 800092, 'shock when': 759541, 'from mostly my': 336478, 'mostly my own': 542979, 'my own garden': 549642, 'own garden thing': 632017, 'garden thing can': 343627, 'thing can cant': 884221, 'can cant spend': 157863, 'cant spend on': 162335, 'spend on during': 788661, 'on during quarantine': 600443, 'during quarantine takeout': 262946, 'quarantine takeout restaurant': 692602, 'takeout restaurant meal': 833184, 'restaurant meal yes': 716574, 'meal yes because': 524312, 'yes because lousy': 1015385, 'because lousy cook': 119230, 'lousy cook floral': 504577, 'cook floral delivery': 202740, 'floral delivery no': 310882, 'delivery no because': 234204, 'no because can': 563679, 'because can garden': 118975, 'can garden floral': 158392, 'garden floral arrangement': 343590, 'floral arrangement get': 310880, 'arrangement get sticker': 93719, 'get sticker shock': 348115, 'sticker shock when': 800093, 'shock when see': 759542, 'when see price': 983976, 'madeinengland': 508096, 'supermarket music': 821549, 'music madeinengland': 546314, 'madeinengland shop': 508097, 'their muzak': 874027, 'muzak to': 547103, 'trick shopper': 931706, 'into calming': 442443, 'calming down': 156847, 'supermarket music madeinengland': 821550, 'music madeinengland shop': 546315, 'madeinengland shop are': 508098, 'shop are changing': 759895, 'changing their muzak': 172820, 'their muzak to': 874028, 'muzak to trick': 547104, 'to trick shopper': 917776, 'trick shopper into': 931707, 'shopper into calming': 761574, 'into calming down': 442444, 'moroccan': 541563, 'demand serf': 236187, 'serf free': 751193, 'to moroccan': 910275, 'moroccan doctor': 541564, 'doctor fighting': 250909, 'food on demand': 315592, 'on demand serf': 600286, 'demand serf free': 236188, 'serf free meal': 751194, 'free meal to': 331971, 'meal to moroccan': 524292, 'to moroccan doctor': 910276, 'moroccan doctor fighting': 541565, 'doctor fighting covid': 250910, 'can starve': 159732, 'england because': 277007, 'have literally': 381343, 'stealing from': 799227, 'same reason': 733266, 'disgusting karma': 245422, 'karma come': 470942, 'fact that elderly': 295794, 'that elderly and': 843689, 'and disabled people': 61395, 'disabled people can': 243938, 'people can starve': 647410, 'can starve to': 159733, 'to death in': 903982, 'death in england': 230078, 'in england because': 422577, 'england because people': 277008, 'people have literally': 648182, 'have literally been': 381344, 'literally been stealing': 494955, 'been stealing from': 122033, 'stealing from food': 799228, 'from food bank': 335504, 'bank and panic': 109620, 'buying and hospital': 149913, 'and hospital are': 64744, 'hospital are running': 404306, 'of soap for': 589822, 'soap for the': 779010, 'the same reason': 866289, 'same reason is': 733268, 'reason is disgusting': 702943, 'is disgusting karma': 447221, 'disgusting karma come': 245423, 'next state': 561562, 'union address': 941864, 'address want': 32062, 'see healthcare': 745183, 'owner affected': 632364, 'the audience': 849043, 'audience guest': 102909, 'at the next': 101034, 'the next state': 861698, 'next state of': 561563, 'the union address': 870403, 'union address want': 941865, 'address want to': 32063, 'to see healthcare': 914018, 'see healthcare worker': 745184, 'worker emergency responder': 1006841, 'emergency responder and': 272924, 'responder and small': 715414, 'business owner affected': 144175, 'owner affected by': 632365, 'by the recession': 154423, 'the recession in': 865337, 'in the audience': 428996, 'the audience guest': 849044, 'stoppanickbuying': 805665, 'something where': 785139, 'up ton': 946468, 'essential can': 280882, 'need first': 554778, 'more greedy': 539370, 'and panick': 68669, 'need stoppanickbuying': 555656, 'stoppanickbuying thinkingofothers': 805666, 'they should have': 883370, 'should have something': 766095, 'have something where': 382655, 'something where the': 785140, 'where the elderly': 985225, 'people who do': 650290, 'stock up ton': 803126, 'up ton of': 946469, 'of food essential': 583687, 'food essential can': 314376, 'essential can buy': 280883, 'can buy what': 157846, 'they need first': 882732, 'need first then': 554779, 'first then the': 309063, 'then the more': 877618, 'the more greedy': 860883, 'more greedy and': 539371, 'greedy and panick': 363473, 'and panick buyer': 68670, 'panick buyer can': 639190, 'buyer can get': 149600, 'they need stoppanickbuying': 882759, 'need stoppanickbuying thinkingofothers': 555657, 'lockdownsl': 500377, 'if ar': 413871, 'ar making': 83802, 'food ridiculously': 316235, 'price ar': 672618, 'ar not': 83804, 'arsehole lockdown': 94091, 'lockdown lockdownsl': 499618, 'lockdownsl selfisolation': 500378, 'if ar making': 413872, 'ar making money': 83803, 'making money by': 511224, 'money by selling': 536654, 'by selling baby': 153922, 'or food ridiculously': 615345, 'food ridiculously inflated': 316236, 'inflated price ar': 437025, 'price ar not': 672619, 'ar not an': 83805, 'an arsehole lockdown': 55413, 'arsehole lockdown lockdownsl': 94092, 'lockdown lockdownsl selfisolation': 499619, 'lockdownsl selfisolation lockdown': 500379, 'extremist': 293948, 'security official': 744691, 'official warn': 595965, 'of extremist': 583352, 'extremist exploiting': 293949, 'national security official': 552613, 'security official warn': 744693, 'official warn of': 595966, 'warn of extremist': 966942, 'of extremist exploiting': 583353, 'extremist exploiting the': 293950, 'spotify already': 790144, '19 playlist': 9704, 'playlist up': 659484, 'next lost': 561431, 'spotify already stocked': 790145, 'up on covid': 945543, 'covid 19 playlist': 213588, '19 playlist up': 9705, 'playlist up next': 659485, 'up next lost': 945453, 'next lost in': 561432, 'lost in the': 503868, 'supermarket stay tuned': 822933, 'club close': 184423, 'close until': 182933, 'return is': 719863, 'be crazy': 114278, 'crazy keep': 215342, 'your wasted': 1026305, 'wasted stock': 968262, 'is very sad': 453694, 'very sad to': 955494, 'see that all': 745784, 'that all these': 842572, 'restaurant bar and': 716328, 'bar and club': 110669, 'and club close': 60024, 'club close until': 184424, 'close until further': 182934, 'notice the return': 573373, 'the return is': 865750, 'return is going': 719864, 'to be crazy': 901185, 'be crazy keep': 114279, 'crazy keep your': 215343, 'donate your wasted': 254293, 'your wasted stock': 1026306, 'wasted stock to': 968263, 'stock to the': 803004, 'to the homeless': 916781, 'the homeless food': 857466, 'you switched': 1021502, 'switched language': 830538, 'language for': 479486, 'our common': 622442, 'you allowed': 1016930, 'to translate': 917708, 'translate explain': 929696, 'explain for': 292100, 'our western': 625370, 'western uganda': 980642, 'uganda people': 937982, 'love the way': 504812, 'way you switched': 970207, 'you switched language': 1021503, 'switched language for': 830539, 'language for our': 479487, 'for our common': 324218, 'our common people': 622443, 'common people good': 189429, 'people good that': 648113, 'good that you': 357823, 'that you allowed': 847711, 'you allowed to': 1016931, 'allowed to translate': 46251, 'to translate explain': 917709, 'translate explain for': 929697, 'explain for our': 292101, 'for our western': 324310, 'our western uganda': 625371, 'western uganda people': 980643, 'uganda people thank': 937983, 'cvd': 223867, 'development with': 239856, 'cancel today': 160897, 'today cvd': 919424, 'cvd webinar': 223868, 'webinar thank': 975106, 'everyone from': 286924, 'continue their': 201149, 'the recent development': 865306, 'recent development with': 703884, 'development with the': 239857, 'virus we have': 959009, 'decided to cancel': 230902, 'to cancel today': 902432, 'cancel today cvd': 160898, 'today cvd webinar': 919425, 'cvd webinar thank': 223869, 'webinar thank you': 975107, 'to everyone from': 905336, 'everyone from front': 286925, 'line staff teacher': 493421, 'teacher care worker': 835439, 'delivery driver amp': 233888, 'driver amp everyone': 259399, 'amp everyone who': 53761, 'everyone who continue': 287584, 'who continue their': 988483, 'continue their work': 201153, 'their work to': 875207, 'work to support': 1005904, 'support their community': 826896, 'sweating': 830068, 'day braving': 227389, 'of had': 584405, 'my multiple': 549363, 'multiple glove': 545748, 'my truck': 550434, 'truck wa': 932874, 'wa sweating': 963376, 'sweating never': 830071, 'knew how': 476038, 'how difficult': 407697, 'difficult it': 242239, 'first day braving': 308613, 'day braving the': 227390, 'braving the supermarket': 138290, 'beginning of had': 123647, 'of had my': 584406, 'had my multiple': 373321, 'my multiple glove': 549364, 'multiple glove and': 545749, 'and mask and': 66742, 'mask and when': 518391, 'and when got': 75513, 'when got my': 983489, 'got my grocery': 358725, 'my grocery in': 548575, 'grocery in my': 364618, 'in my truck': 425639, 'my truck wa': 550437, 'truck wa sweating': 932875, 'wa sweating never': 963377, 'sweating never knew': 830072, 'never knew how': 558082, 'knew how difficult': 476040, 'how difficult it': 407699, 'difficult it wa': 242242, 'it wa to': 462212, 'wa to not': 963522, 'to not touch': 910714, 'not touch anything': 572232, 'crisis changing': 217209, 'behaviour eng': 124412, '19 crisis changing': 6225, 'crisis changing consumer': 217210, 'consumer behaviour eng': 196567, 'behaviour eng consumerbehaviour': 124413, 'custys': 223202, 'gonna lose': 356581, 'lose whole': 503498, 'of custys': 582291, 'custys if': 223203, 'know drop': 476356, 'drop them': 260413, 'them high': 875853, 'high as': 394936, 'as price': 94795, 'wrong wit': 1013146, 'wit all': 996897, 'all gonna lose': 42971, 'gonna lose whole': 356582, 'lose whole lot': 503499, 'lot of custys': 504170, 'of custys if': 582292, 'custys if all': 223204, 'if all don': 413790, 'all don know': 42617, 'don know drop': 253663, 'know drop them': 476357, 'drop them high': 260414, 'them high as': 875854, 'high as price': 394937, 'as price wtf': 94796, 'price wtf is': 677673, 'is wrong wit': 454111, 'wrong wit all': 1013147, 'wit all it': 996898, 'all it coronacrisis': 43265, 'mmt': 534784, 'committing': 189093, 'informed you': 438141, 'our trip': 625189, 'trip wa': 932212, 'canceled well': 160974, 'our scheduled': 624682, 'scheduled travel': 741523, 'travel date': 930330, 'date due': 226621, 'no response': 565345, 'from mmt': 336454, 'mmt you': 534785, 'you stole': 1021432, 'stole money': 804272, 'is committing': 446674, 'committing fraud': 189094, 'fraud consumer': 331248, 'consumer take': 199212, 'action again': 29924, 'informed you that': 438142, 'you that our': 1021573, 'that our trip': 845600, 'our trip wa': 625193, 'trip wa canceled': 932213, 'wa canceled well': 961788, 'canceled well in': 160975, 'well in advance': 978312, 'advance of our': 32907, 'of our scheduled': 587558, 'our scheduled travel': 624683, 'scheduled travel date': 741524, 'travel date due': 930331, 'date due to': 226622, '19 and now': 5070, 'and now no': 67857, 'now no response': 575355, 'no response from': 565346, 'response from mmt': 715695, 'from mmt you': 336455, 'mmt you stole': 534787, 'you stole money': 1021433, 'stole money is': 804273, 'money is committing': 536843, 'is committing fraud': 446675, 'committing fraud consumer': 189095, 'fraud consumer take': 331249, 'consumer take action': 199213, 'take action again': 831890, 'to ad': 900035, 'ad age': 31051, 'respond to ad': 715314, 'to ad age': 900036, 'exorbitant rate': 290428, 'rate it': 697281, 'it happens': 458476, 'happens that': 377503, 'neighbor cannot': 556991, 'afford such': 34763, 'such money': 816642, 'out unprotected': 627748, 'unprotected the': 943260, 'when these': 984236, 'these your': 881006, 'neighbor go': 557023, 'contact covid': 200055, '19 both': 5426, 'both you': 136102, 'an advantage to': 55149, 'advantage to increase': 33071, 'price of stock': 675577, 'of stock to': 590200, 'stock to an': 802987, 'to an exorbitant': 900453, 'an exorbitant rate': 55956, 'exorbitant rate it': 290429, 'rate it happens': 697285, 'it happens that': 458478, 'happens that some': 377504, 'your neighbor cannot': 1024950, 'neighbor cannot afford': 556992, 'cannot afford such': 161613, 'afford such money': 34765, 'such money and': 816643, 'money and decide': 536594, 'decide to keep': 230847, 'going out unprotected': 355401, 'out unprotected the': 627749, 'unprotected the truth': 943261, 'that when these': 847496, 'when these your': 984239, 'these your neighbor': 881007, 'your neighbor go': 1024955, 'neighbor go out': 557024, 'out and contact': 625654, 'and contact covid': 60465, 'contact covid 19': 200056, 'covid 19 both': 212721, '19 both you': 5428, 'both you and': 136103, 'you and family': 1016987, 'julia': 467783, 'makeadifference': 510779, 'get eye': 346980, 'eye roll': 294096, 'roll from': 725309, 'staff if': 792539, 'your entire': 1023679, 'entire shop': 278735, 'dairy milk': 225011, 'milk supermarket': 531839, 'worker julia': 1007270, 'julia got': 467785, 'make public': 510369, 'shopper makeadifference': 761608, 'surprised if you': 828587, 'you get eye': 1018768, 'get eye roll': 346981, 'eye roll from': 294097, 'roll from staff': 725311, 'from staff if': 337398, 'staff if your': 792543, 'if your entire': 415576, 'your entire shop': 1023681, 'entire shop is': 278736, 'shop is an': 760354, 'is an easter': 445646, 'easter egg and': 265416, 'egg and bar': 269757, 'and bar of': 58699, 'bar of dairy': 110735, 'of dairy milk': 582326, 'dairy milk supermarket': 225013, 'milk supermarket worker': 531841, 'supermarket worker julia': 824041, 'worker julia got': 1007271, 'julia got in': 467786, 'got in touch': 358632, 'touch with to': 926584, 'with to make': 1001791, 'to make public': 909724, 'make public service': 510370, 'service announcement for': 752122, 'announcement for shopper': 77148, 'for shopper makeadifference': 325572, 'pegnato': 646334, 'roofing': 725854, 'closing there': 183788, 'issue fm': 455751, 'fm should': 311707, 'of bill': 580706, 'bill pegnato': 130656, 'pegnato discus': 646335, 'discus dark': 244848, 'dark store': 225979, 'store roofing': 809908, 'roofing issue': 725855, 'how fm': 407873, 'fm can': 311693, 'manage them': 512449, 'them efficiently': 875645, 'thousand of retail': 893460, 'retail store temporarily': 718709, 'store temporarily closing': 810523, 'temporarily closing there': 837485, 'closing there are': 183789, 'are many issue': 88029, 'many issue fm': 514210, 'issue fm should': 455752, 'fm should be': 311708, 'should be aware': 765563, 'aware of bill': 105625, 'of bill pegnato': 580707, 'bill pegnato discus': 130657, 'pegnato discus dark': 646336, 'discus dark store': 244849, 'dark store roofing': 225980, 'store roofing issue': 809909, 'roofing issue and': 725856, 'issue and how': 455665, 'and how fm': 64812, 'how fm can': 407874, 'fm can manage': 311694, 'can manage them': 158968, 'manage them efficiently': 512450, 'destin': 238964, 'ron desantis': 725770, 'desantis you': 237901, 'your citizen': 1023224, 'citizen covid': 178881, 'in destin': 422223, 'destin there': 238965, 'store spring': 810291, 'break family': 138722, 'from southeast': 337363, 'southeast are': 786831, 'still arriving': 800212, 'arriving beach': 94005, 'beach restaurant': 118235, 'restaurant retail': 716668, 'no regard': 565322, 'regard for': 707135, 'local need': 498198, 'ron desantis you': 725772, 'desantis you are': 237902, 'failing to protect': 296235, 'protect your citizen': 685058, 'your citizen covid': 1023225, 'citizen covid 19': 178882, '19 in destin': 7739, 'in destin there': 422224, 'destin there is': 238966, 'is no meat': 449951, 'no meat at': 564745, 'meat at store': 525493, 'at store spring': 100662, 'store spring break': 810292, 'spring break family': 791173, 'break family from': 138723, 'family from southeast': 297828, 'from southeast are': 337364, 'southeast are still': 786832, 'are still arriving': 90392, 'still arriving beach': 800213, 'arriving beach restaurant': 94006, 'beach restaurant retail': 118236, 'restaurant retail open': 716670, 'retail open no': 718351, 'open no regard': 612401, 'no regard for': 565323, 'regard for local': 707136, 'for local need': 323052, 'local need of': 498200, 'need of essential': 555326, 'dietary': 241766, 'foodallergies': 317740, 'shopper clearing': 761459, 'clearing out': 181464, 'isolate due': 454846, 'make challenging': 509762, 'challenging situation': 171623, 'situation even': 772256, 'or special': 617174, 'special dietary': 787889, 'dietary need': 241769, 'need foodallergies': 554819, 'shopper clearing out': 761460, 'clearing out grocery': 181465, 'up and isolate': 944338, 'and isolate due': 65452, 'isolate due to': 454847, '19 concern can': 5916, 'concern can make': 192945, 'can make challenging': 158926, 'make challenging situation': 509763, 'challenging situation even': 171624, 'situation even more': 772257, 'more difficult for': 539038, 'difficult for people': 242226, 'people with life': 650456, 'with life threatening': 999214, 'threatening food allergy': 893805, 'food allergy or': 313094, 'allergy or special': 45784, 'or special dietary': 617175, 'special dietary need': 787891, 'dietary need foodallergies': 241770, 'help these': 390725, 'these organization': 880380, 'organization foodbanks': 619368, 'overrun surge': 631451, 'please give to': 660033, 'give to help': 350791, 'to help these': 907649, 'help these organization': 390726, 'these organization foodbanks': 880381, 'organization foodbanks are': 619369, 'foodbanks are overrun': 317814, 'are overrun surge': 88933, 'overrun surge demand': 631452, 'using your': 950799, 'your season': 1025692, 'season ticket': 743448, 'ticket you': 895685, 'be entitled': 114693, 'be disappointed': 114472, 'disappointed by': 244095, 'get via': 348587, 'from home and': 335840, 'and not using': 67788, 'not using your': 572380, 'using your season': 950801, 'your season ticket': 1025693, 'season ticket you': 743449, 'ticket you could': 895686, 'could be entitled': 208864, 'be entitled to': 114694, 'to refund but': 913082, 'refund but you': 706874, 'but you might': 147993, 'might be disappointed': 530891, 'be disappointed by': 114473, 'disappointed by what': 244098, 'by what you': 154724, 'what you get': 982673, 'you get via': 1018807, 'site say': 772003, 'contact you': 200302, 'in regard': 427347, 'thing easier': 884297, 'easier due': 265138, 'yet when': 1016323, 'when emailed': 983370, 'emailed suggesting': 272384, 'suggesting you': 817620, 'temporarily lower': 837510, 'lower your': 506055, 'for freelancer': 321745, 'freelancer your': 332452, 'your response': 1025595, 'response wa': 715910, 'just time': 470077, 'it funny that': 458191, 'funny that your': 341797, 'that your site': 847775, 'your site say': 1025817, 'site say that': 772004, 'say that people': 739248, 'people can contact': 647385, 'can contact you': 157971, 'contact you in': 200303, 'you in regard': 1019314, 'in regard to': 427349, 'regard to making': 707154, 'to making thing': 909781, 'making thing easier': 511452, 'thing easier due': 884298, 'easier due to': 265139, '19 yet when': 12259, 'yet when emailed': 1016324, 'when emailed suggesting': 983371, 'emailed suggesting you': 272385, 'suggesting you temporarily': 817621, 'you temporarily lower': 1021548, 'temporarily lower your': 837511, 'lower your price': 506057, 'your price to': 1025419, 'easier for freelancer': 265145, 'for freelancer your': 321746, 'freelancer your response': 332453, 'your response wa': 1025597, 'response wa just': 715911, 'wa just time': 962472, 'just time are': 470078, 'security only': 744694, 'letting few': 487404, 'limit crowding': 492319, 'crowding and': 219382, 'employee hand': 273910, 'out disinfectant': 625960, 'wipe wild': 996428, 'wild stuff': 992080, 'security only letting': 744695, 'only letting few': 610727, 'letting few people': 487405, 'few people into': 303989, 'people into the': 648511, 'at time to': 101314, 'time to limit': 898013, 'to limit crowding': 909284, 'limit crowding and': 492320, 'crowding and an': 219383, 'and an employee': 58110, 'an employee hand': 55710, 'employee hand out': 273911, 'hand out disinfectant': 375159, 'out disinfectant wipe': 625961, 'disinfectant wipe wild': 245816, 'wipe wild stuff': 996429, 'subscribe': 815844, 'drawingoftheday': 258537, 'see over': 745538, 'the sea': 866548, 'sea click': 743085, 'bio to': 131167, 'to subscribe': 915715, 'subscribe to': 815854, 'weekly newsletter': 977520, 'newsletter lol': 561037, 'lol cartoon': 500885, 'cartoon cartoon': 165505, 'cartoon sketch': 165531, 'sketch drawingoftheday': 772881, 'drawingoftheday comic': 258538, 'can you see': 160329, 'you see over': 1021057, 'see over the': 745539, 'over the sea': 630765, 'the sea click': 866550, 'sea click the': 743087, 'the link in': 859441, 'in bio to': 420854, 'bio to subscribe': 131168, 'to subscribe to': 915717, 'subscribe to my': 815855, 'to my weekly': 910449, 'my weekly newsletter': 550563, 'weekly newsletter lol': 977521, 'newsletter lol cartoon': 561038, 'lol cartoon cartoon': 500886, 'cartoon cartoon sketch': 165506, 'cartoon sketch drawingoftheday': 165532, 'sketch drawingoftheday comic': 772882, 'it absurd': 456250, 'and pity': 69039, 'pity that': 657060, 'that certain': 843190, 'certain fast': 170004, 'their menu': 873949, 'menu item': 528882, 'item during': 463223, 'many pandemic': 514470, 'it absurd and': 456251, 'absurd and pity': 27489, 'and pity that': 69040, 'pity that certain': 657061, 'that certain fast': 843191, 'certain fast food': 170005, 'food restaurant are': 316192, 'restaurant are raising': 716314, 'are raising the': 89418, 'some of their': 783409, 'of their menu': 591679, 'their menu item': 873950, 'menu item during': 528883, 'item during these': 463231, 'time for many': 896722, 'for many pandemic': 323230, 'spinach': 789400, 'but should': 147045, 'be buying': 113939, 'the spinach': 867580, 'spinach kale': 789403, 'kale garlic': 470702, 'garlic ginger': 343686, 'lemon potato': 486191, 'potato orange': 666958, 'orange coronavirus': 617904, 'coronavirus cole': 205662, 'cole add': 185830, 'add shopping': 31481, 'shopping limit': 763173, 'limit to': 492534, 'milk amid': 531547, 'maybe it just': 521725, 'just me but': 469239, 'me but should': 522537, 'but should people': 147048, 'people be buying': 647223, 'be buying up': 113945, 'buying up all': 151287, 'all the spinach': 44917, 'the spinach kale': 867581, 'spinach kale garlic': 789404, 'kale garlic ginger': 470703, 'garlic ginger lemon': 343687, 'ginger lemon potato': 350205, 'lemon potato orange': 486192, 'potato orange coronavirus': 666959, 'orange coronavirus cole': 617905, 'coronavirus cole add': 205663, 'cole add shopping': 185832, 'add shopping limit': 31482, 'shopping limit to': 763176, 'limit to milk': 492538, 'to milk amid': 910128, 'milk amid covid': 531548, 'nac': 551355, 'nacsdaily': 551364, 'cstores': 220072, 'conveniencestores': 202381, 'cstore': 220069, 'will grocery': 993575, 'shopping change': 762362, 'forced shopper': 328603, 'change habit': 172067, 'habit which': 372710, 'stay nac': 797131, 'nac nacsdaily': 551356, 'nacsdaily cstores': 551365, 'cstores convenience': 220075, 'convenience conveniencestores': 202323, 'conveniencestores cstore': 202382, 'cstore grocery': 220070, 'grocery grocery': 364564, 'how will grocery': 409228, 'will grocery shopping': 993576, 'grocery shopping change': 365007, 'shopping change the': 762363, 'change the coronavirus': 172288, 'crisis ha forced': 217436, 'ha forced shopper': 370664, 'forced shopper to': 328604, 'shopper to change': 761760, 'to change habit': 902603, 'change habit which': 172068, 'habit which one': 372711, 'which one are': 986194, 'one are here': 605942, 'to stay nac': 915301, 'stay nac nacsdaily': 797132, 'nac nacsdaily cstores': 551357, 'nacsdaily cstores convenience': 551366, 'cstores convenience conveniencestores': 220076, 'convenience conveniencestores cstore': 202324, 'conveniencestores cstore grocery': 202383, 'cstore grocery grocery': 220071, 'grocery grocery shopping': 364565, 'steep drop': 799386, 'than panicking': 841018, 'panicking most': 639355, 'most aussie': 542125, 'aussie pension': 103132, 'fund seem': 341496, 'seem well': 746707, 'well placed': 978480, 'placed to': 657916, 'fund are faced': 341365, 'faced with steep': 295049, 'with steep drop': 1000964, 'steep drop in': 799387, 'equity price and': 279962, 'rather than panicking': 697539, 'than panicking most': 841019, 'panicking most aussie': 639356, 'most aussie pension': 542126, 'aussie pension fund': 103133, 'pension fund seem': 646659, 'fund seem well': 341497, 'seem well placed': 746708, 'well placed to': 978481, 'placed to deal': 657917, 'averted': 104927, 'icymi could': 412869, 'price combined': 673185, 'with fewer': 998424, 'fewer car': 304198, 'car on': 163193, 'our road': 624649, 'road result': 724499, 'in significant': 427953, 'state gas': 795599, 'tax later': 835025, 'year it': 1014676, 'be averted': 113766, 'averted if': 104928, 'the legislature': 859284, 'legislature take': 486019, 'action read': 30118, 'icymi could lower': 412870, 'could lower gas': 209397, 'gas price combined': 343944, 'price combined with': 673186, 'combined with fewer': 187144, 'with fewer car': 998425, 'fewer car on': 304199, 'car on our': 163194, 'on our road': 602626, 'our road result': 624650, 'road result of': 724500, 'pandemic result in': 636352, 'result in significant': 717549, 'in significant increase': 427955, 'the state gas': 867775, 'state gas tax': 795600, 'gas tax later': 344147, 'tax later this': 835026, 'this year it': 891581, 'year it can': 1014677, 'can be averted': 157589, 'be averted if': 113767, 'averted if the': 104929, 'if the legislature': 414992, 'the legislature take': 859285, 'legislature take action': 486020, 'take action read': 831901, 'action read our': 30119, 'read our analysis': 700497, 'helen': 388957, 'wheres': 985443, 'dildo': 242844, 'buttplugs': 148222, 'fuckin karen': 339777, 'karen with': 470912, '50 gallon': 19704, 'and helen': 64430, 'helen with': 388958, 'with 200': 996980, 'toiletpaper wheres': 922837, 'wheres the': 985446, 'the weirdo': 871364, 'weirdo who': 977838, 'who stocked': 989687, 'interesting item': 441577, 'item havent': 463324, 'havent seen': 383938, 'seen anyone': 746946, 'anyone pushing': 80474, 'pushing shopping': 690443, 'cart full': 165309, 'of dildo': 582616, 'dildo and': 242845, 'and buttplugs': 59324, 'buttplugs yet': 148223, 'but finger': 145728, 'finger crossed': 307796, 'crossed toiletpaperpanic': 219065, 'toiletpaperpanic lockdown': 923224, 'fuckin karen with': 339778, 'karen with 50': 470913, 'with 50 gallon': 997033, '50 gallon of': 19706, 'of milk and': 586502, 'milk and helen': 531561, 'and helen with': 64431, 'helen with 200': 388959, 'with 200 roll': 996981, 'roll of toiletpaper': 725422, 'of toiletpaper wheres': 592291, 'toiletpaper wheres the': 922838, 'wheres the weirdo': 985447, 'the weirdo who': 871365, 'weirdo who stocked': 977841, 'who stocked up': 989688, 'on more interesting': 602206, 'more interesting item': 539612, 'interesting item havent': 441578, 'item havent seen': 463325, 'havent seen anyone': 383939, 'seen anyone pushing': 746948, 'anyone pushing shopping': 80475, 'pushing shopping cart': 690444, 'shopping cart full': 762301, 'cart full of': 165310, 'full of dildo': 340716, 'of dildo and': 582617, 'dildo and buttplugs': 242846, 'and buttplugs yet': 59325, 'buttplugs yet but': 148224, 'yet but finger': 1016020, 'but finger crossed': 145729, 'finger crossed toiletpaperpanic': 307797, 'crossed toiletpaperpanic lockdown': 219066, 'human sadly': 410604, 'sadly they': 729367, 'that wont': 847644, 'wont bother': 1004239, 'read any': 700286, 'the stopstockpiling': 867965, 'stoppanicbuying message': 805589, 'message will': 529483, 'virus by': 958018, 'by continuing': 152203, 'selfish ridiculous': 748243, 'ridiculous behaviour': 721522, 'behaviour stopthespread': 124525, 'am so embarrassed': 50404, 'so embarrassed by': 776944, 'embarrassed by some': 272439, 'by some of': 154078, 'of our fellow': 587473, 'fellow human sadly': 303298, 'human sadly they': 410605, 'sadly they are': 729368, 'one that wont': 607193, 'that wont bother': 847645, 'wont bother to': 1004240, 'bother to read': 136130, 'to read any': 912825, 'read any of': 700288, 'of the stopstockpiling': 591495, 'the stopstockpiling stoppanicbuying': 867966, 'stopstockpiling stoppanicbuying message': 805886, 'stoppanicbuying message will': 805591, 'message will continue': 529484, 'spread this virus': 790839, 'this virus by': 891002, 'virus by continuing': 958020, 'by continuing this': 152204, 'continuing this selfish': 201553, 'this selfish ridiculous': 890021, 'selfish ridiculous behaviour': 748244, 'ridiculous behaviour stopthespread': 721523, 'whole household': 990242, 'stock supply': 802904, 'haven left': 383848, 'left anything': 485387, 'anything on': 80843, 'we all people': 970351, 'all people the': 43943, 'people the whole': 649798, 'the whole household': 871495, 'whole household have': 990243, 'household have symptom': 406831, 'have symptom we': 382896, 'symptom we have': 830945, 'to stock supply': 915453, 'stock supply because': 802905, 'supply because of': 824843, 'of the greedy': 591078, 'greedy people who': 363572, 'people who haven': 650307, 'who haven left': 988976, 'haven left anything': 383849, 'left anything on': 485388, 'anything on the': 80844, 'raise glass': 695859, 'glass to': 351639, 'hero medical': 394039, 'worker trucker': 1008053, 'trucker farmer': 932912, 'farmer retweet': 299494, 'retweet your': 720103, 'your raise': 1025512, 'glass photo': 351633, 'photo and': 655121, 'your real': 1025525, 'raise glass to': 695862, 'glass to the': 351641, 'to the real': 917006, 'real hero medical': 701202, 'hero medical staff': 394041, 'medical staff supermarket': 526405, 'supermarket worker trucker': 824107, 'worker trucker farmer': 1008054, 'trucker farmer retweet': 932914, 'farmer retweet your': 299496, 'retweet your raise': 720104, 'your raise glass': 1025513, 'raise glass photo': 695860, 'glass photo and': 351634, 'photo and add': 655122, 'and add your': 57674, 'add your real': 31537, 'your real hero': 1025526, 'forgottenheroes': 329468, 'just dropped': 468654, 'dropped my': 260597, 'daughter off': 226894, 'at mcdonalds': 99695, 'mcdonalds in': 522161, 'future if': 342358, 'are tempted': 90769, 'to verbally': 918142, 'verbally abuse': 954750, 'the teenager': 869244, 'at fast': 98630, 'place or': 657626, 'supermarket remember': 822197, 'could eat': 209131, 'crisis forgottenheroes': 217398, 'just dropped my': 468658, 'dropped my daughter': 260600, 'my daughter off': 547934, 'daughter off for': 226895, 'off for shift': 593834, 'for shift at': 325544, 'shift at mcdonalds': 758247, 'at mcdonalds in': 99696, 'mcdonalds in the': 522162, 'the future if': 856078, 'future if you': 342359, 'you are tempted': 1017255, 'are tempted to': 90770, 'tempted to verbally': 837747, 'to verbally abuse': 918143, 'verbally abuse the': 954751, 'abuse the teenager': 27668, 'the teenager working': 869245, 'teenager working at': 836566, 'working at fast': 1008520, 'at fast food': 98631, 'fast food place': 299973, 'food place or': 315856, 'place or supermarket': 657629, 'or supermarket remember': 617284, 'supermarket remember that': 822199, 'remember that they': 710292, 'that they put': 846945, 'they put their': 882958, 'at risk so': 100399, 'risk so you': 723888, 'you could eat': 1018084, 'could eat during': 209132, 'eat during this': 265894, 'this crisis forgottenheroes': 887041, 'cyclone': 224108, 'remapest': 710096, 'guaranteedservices': 367760, 'ulvcoldfogger': 939194, 'publichealthprotection': 688552, 'fogsprayer': 312030, 'killvirus': 474735, 'bestoffer': 128038, '24hours': 15757, 'jakartaquarantine': 464320, 'cyclone ultralow': 224109, 'ultralow volume': 939183, 'volume now': 960148, 'eliminate kill': 271449, 'also sir': 48879, 'sir and': 771539, 'we providing': 972779, 'for best': 319648, 'best offer': 127802, 'offer price': 594753, 'price remapest': 676177, 'remapest guaranteedservices': 710097, 'guaranteedservices ulvcoldfogger': 367761, 'ulvcoldfogger publichealthprotection': 939195, 'publichealthprotection fogsprayer': 688553, 'fogsprayer killvirus': 312031, 'killvirus bestoffer': 474736, 'bestoffer 24hours': 128039, '24hours jakartaquarantine': 15758, 'cyclone ultralow volume': 224110, 'ultralow volume now': 939184, 'volume now we': 960149, 'now we can': 576336, 'we can use': 971036, 'can use to': 160108, 'use to eliminate': 949755, 'to eliminate kill': 904990, 'eliminate kill the': 271450, 'kill the also': 474510, 'the also sir': 848603, 'also sir and': 48880, 'sir and we': 771541, 'and we providing': 75314, 'we providing for': 972780, 'providing for best': 687000, 'for best offer': 319649, 'best offer price': 127803, 'offer price remapest': 594756, 'price remapest guaranteedservices': 676178, 'remapest guaranteedservices ulvcoldfogger': 710098, 'guaranteedservices ulvcoldfogger publichealthprotection': 367762, 'ulvcoldfogger publichealthprotection fogsprayer': 939196, 'publichealthprotection fogsprayer killvirus': 688554, 'fogsprayer killvirus bestoffer': 312032, 'killvirus bestoffer 24hours': 474737, 'bestoffer 24hours jakartaquarantine': 128040, 'avacado': 104096, 'epidemic is': 279395, 'that avacado': 842900, 'avacado price': 104097, '19 epidemic is': 6809, 'epidemic is that': 279399, 'is that avacado': 452634, 'that avacado price': 842901, 'avacado price are': 104098, 'bestsupermarket': 128054, 'replenishment': 711690, 'bestsupermarket which': 128055, 'handled the': 376312, 'coronavirus best': 205556, 'stock good': 802201, 'good replenishment': 357648, 'replenishment and': 711691, 'think add': 885116, 'any that': 79955, 'are missed': 88085, 'missed in': 534231, 'comment staysafe': 188452, 'wrestlemania sundaymorning': 1012737, 'bestsupermarket which supermarket': 128056, 'which supermarket ha': 986355, 'supermarket ha handled': 820629, 'ha handled the': 370818, 'handled the coronavirus': 376313, 'the coronavirus best': 851811, 'coronavirus best in': 205557, 'best in term': 127734, 'term of stock': 838226, 'of stock good': 590166, 'stock good replenishment': 802202, 'good replenishment and': 357649, 'replenishment and service': 711692, 'and service in': 71304, 'service in the': 752483, 'the uk do': 870208, 'uk do you': 938311, 'you think add': 1021642, 'think add any': 885117, 'add any that': 31401, 'any that are': 79956, 'that are missed': 842778, 'are missed in': 88086, 'missed in the': 534232, 'the comment staysafe': 851216, 'comment staysafe wrestlemania': 188453, 'staysafe wrestlemania sundaymorning': 798964, 'interfered': 441667, 'pandemic played': 636191, 'played role': 659283, 'it interfered': 458817, 'interfered with': 441668, 'grocery ability': 364203, 'get inventory': 347381, 'coronavirus pandemic played': 206483, 'pandemic played role': 636192, 'played role in': 659284, 'in the closure': 429074, 'the closure it': 851053, 'closure it interfered': 183925, 'it interfered with': 458818, 'interfered with the': 441669, 'the grocery ability': 856800, 'grocery ability to': 364204, 'ability to get': 24393, 'to get inventory': 906515, 'consumer purchase do': 198614, 'purchase do not': 689428, 'fall for online': 296913, 'for online scam': 324113, 'online scam and': 608937, 'creek': 216610, 'up creek': 944674, 'creek so': 216611, 'do thankyou': 250216, 'you so many': 1021287, 'so many of': 777682, 'without all you': 1002480, 'all you we': 45557, 'you we really': 1022203, 'we really be': 973020, 'really be up': 702015, 'be up creek': 117885, 'up creek so': 944675, 'creek so thank': 216612, 'that you all': 847709, 'you all do': 1016872, 'all do thankyou': 42596, 'do besides': 249125, 'besides go': 127502, 'and pump': 69772, 'pump gas': 689050, 'is nothing to': 450241, 'to do besides': 904486, 'do besides go': 249126, 'besides go to': 127503, 'store and pump': 806324, 'and pump gas': 69773, 'depot work': 237553, 'keep re': 471844, 'shelf stockpiling': 757601, 'stophoarding foodshortages': 805398, 'is the food': 452803, 'the food depot': 855544, 'food depot work': 314190, 'depot work at': 237554, 'work at right': 1004896, 'at right now': 100323, 'right now stop': 722144, 'now stop panic': 575915, 'everyone we will': 287569, 'will keep re': 993898, 'keep re stocking': 471845, 're stocking shelf': 699615, 'stocking shelf stockpiling': 803595, 'shelf stockpiling stophoarding': 757602, 'stockpiling stophoarding foodshortages': 804079, 'convid19': 202599, 'lady fro': 478761, 'fro brit': 334135, 'brit tell': 140351, 'till because': 895997, 'one belongs': 605996, 'staff not': 792681, 'not customer': 568947, 'customer make': 222592, 'were educated': 979550, 'educated about': 268781, 'time there': 897890, 'than 150': 840178, '150 people': 3923, 'store convid19': 807170, 'lady fro brit': 478762, 'fro brit tell': 334136, 'brit tell me': 140352, 'tell me to': 837028, 'me to hide': 523758, 'hide the hand': 394846, 'the till because': 869556, 'till because that': 895998, 'because that one': 119603, 'that one belongs': 845492, 'one belongs to': 605997, 'belongs to staff': 126526, 'to staff not': 915137, 'staff not customer': 792684, 'not customer make': 568948, 'customer make me': 222593, 'they were educated': 883766, 'were educated about': 979551, 'educated about this': 268782, 'this virus at': 891001, 'virus at that': 957977, 'that time there': 847050, 'time there more': 897894, 'more than 150': 540548, 'than 150 people': 840179, '150 people inside': 3924, 'people inside the': 648484, 'the store convid19': 868000, 'nostril': 567981, 'snugly': 776431, 'public wear': 688463, 'that reach': 845948, 'reach above': 699884, 'above nose': 27089, 'nose below': 567876, 'below chin': 126614, 'chin completely': 176431, 'completely covering': 192244, 'covering mouth': 212476, 'mouth nostril': 543540, 'nostril fit': 567982, 'fit snugly': 309494, 'snugly against': 776432, 'against side': 37615, 'of multiple': 586719, 'multiple layer': 545762, 'of cloth': 581474, 'cloth that': 184112, 'can breathe': 157793, 'breathe through': 139204, 'reduce spread of': 705935, 'of in public': 585038, 'in public wear': 427108, 'public wear cloth': 688464, 'face covering that': 294376, 'covering that reach': 212493, 'that reach above': 845949, 'reach above nose': 699885, 'above nose below': 27090, 'nose below chin': 567877, 'below chin completely': 126615, 'chin completely covering': 176432, 'completely covering mouth': 192245, 'covering mouth nostril': 212477, 'mouth nostril fit': 543541, 'nostril fit snugly': 567983, 'fit snugly against': 309495, 'snugly against side': 776433, 'against side of': 37616, 'side of your': 768859, 'of your face': 593468, 'face is made': 294479, 'is made of': 449508, 'made of multiple': 507877, 'of multiple layer': 586720, 'multiple layer of': 545763, 'layer of cloth': 482636, 'of cloth that': 581477, 'cloth that you': 184113, 'you can breathe': 1017635, 'can breathe through': 157794, 'frontier': 338696, 'aerion': 33891, 'other force': 620264, 'force could': 328368, 'business jet': 143967, 'jet shifting': 465351, 'demand frontier': 235553, 'frontier to': 338697, 'where aerion': 984716, 'aerion would': 33892, 'didn work': 241265, 'company probably': 190976, 'probably had': 679278, 'right cost': 721853, 'but missed': 146398, 'business two': 144580, 'two out': 937117, 'three are': 893873, 'bad ask': 107767, 'ask prize': 95607, 'prize prize': 679082, '19 or other': 9024, 'or other force': 616434, 'other force could': 620265, 'force could increase': 328369, 'could increase demand': 209336, 'increase demand for': 432737, 'demand for business': 235387, 'for business jet': 319834, 'business jet shifting': 143969, 'jet shifting the': 465352, 'shifting the demand': 758556, 'the demand frontier': 853096, 'demand frontier to': 235554, 'frontier to where': 338698, 'to where aerion': 918536, 'where aerion would': 984717, 'aerion would like': 33893, 'would like it': 1011995, 'like it to': 490561, 'to be if': 901322, 'be if that': 115351, 'if that didn': 414933, 'that didn work': 843529, 'didn work the': 241266, 'work the company': 1005808, 'the company probably': 851346, 'company probably had': 190977, 'probably had the': 679280, 'had the right': 373625, 'the right cost': 865806, 'right cost and': 721854, 'cost and price': 207863, 'price but missed': 672981, 'but missed the': 146400, 'missed the demand': 534254, 'the demand in': 853100, 'demand in business': 235665, 'in business two': 421084, 'business two out': 144581, 'two out of': 937118, 'out of three': 626857, 'of three are': 592141, 'three are bad': 893874, 'are bad ask': 84747, 'bad ask prize': 107768, 'ask prize prize': 95608, 'jens': 465113, 'spahn': 787256, 'deutschland': 239546, 'ist': 456141, 'vorbereitet': 960437, 'auf': 102956, 'wochen': 1003322, 'ter': 838029, 'jens spahn': 465114, 'spahn deutschland': 787257, 'deutschland ist': 239547, 'ist gut': 456144, 'gut vorbereitet': 368858, 'vorbereitet auf': 960438, 'auf rewe': 102961, 'rewe wochen': 720825, 'wochen sp': 1003323, 'sp ter': 787019, 'jens spahn deutschland': 465115, 'spahn deutschland ist': 787258, 'deutschland ist gut': 239548, 'ist gut vorbereitet': 456145, 'gut vorbereitet auf': 368859, 'vorbereitet auf rewe': 960439, 'auf rewe wochen': 102962, 'rewe wochen sp': 720826, 'wochen sp ter': 1003324, 'bbcbayuno': 113114, 'sirpatrickvallance': 771698, 'rich and': 721186, 'famous get': 298465, 'tested on': 839330, 'care convid19uk': 163898, 'convid19uk update': 202638, 'update bbcbayuno': 946883, 'bbcbayuno bbcnews': 113115, 'bbcnews new': 113134, 'city time': 179418, 'time sirpatrickvallance': 897679, 'the rich and': 865777, 'rich and famous': 721188, 'and famous get': 62684, 'famous get food': 298467, 'get food the': 347068, 'food the rich': 317129, 'famous get tested': 298468, 'get tested on': 348191, 'tested on demand': 839331, 'on demand the': 600290, 'demand the rich': 236357, 'famous get better': 298466, 'get better health': 346667, 'better health care': 128315, 'health care convid19uk': 386226, 'care convid19uk update': 163899, 'convid19uk update bbcbayuno': 202639, 'update bbcbayuno bbcnews': 946884, 'bbcbayuno bbcnews new': 113116, 'bbcnews new york': 113135, 'york city time': 1016595, 'city time sirpatrickvallance': 179419, 'around during': 93272, 'pandemic say': 636389, 'say distributor': 738576, 'distributor despite': 248281, 'despite panic': 238817, 'buying across': 149853, 'go around during': 353311, 'around during the': 93273, 'the pandemic say': 863086, 'pandemic say distributor': 636393, 'say distributor despite': 738577, 'distributor despite panic': 248282, 'despite panic buying': 238818, 'panic buying across': 637629, 'buying across the': 149854, 'across the bay': 29483, 'the bay area': 849358, 'spec': 787828, 'spp': 790237, '24p': 15774, '163': 4229, '39p': 18197, 'porkmarketnews': 664831, 'pigprices': 656473, 'eu spec': 283271, 'spec spp': 787831, 'spp rose': 790238, 'rose in': 726071, 'ending 28': 276158, '28 march': 16397, 'march by': 515309, 'by 24p': 151601, '24p to': 15775, 'to average': 900857, 'average 163': 104795, '163 39p': 4230, '39p kg': 18198, 'kg the': 473670, 'chain appears': 170487, 'be coping': 114245, 'coping well': 203389, 'with well': 1002062, 'demand away': 235053, 'foodservice into': 318102, 'supermarket porkmarketnews': 822041, 'porkmarketnews pigprices': 664832, 'the eu spec': 854563, 'eu spec spp': 283272, 'spec spp rose': 787832, 'spp rose in': 790239, 'rose in the': 726074, 'week ending 28': 976186, 'ending 28 march': 276159, '28 march by': 16398, 'march by 24p': 515310, 'by 24p to': 151602, '24p to average': 15776, 'to average 163': 900859, 'average 163 39p': 104796, '163 39p kg': 4231, '39p kg the': 18199, 'kg the supply': 473671, 'supply chain appears': 824905, 'chain appears to': 170488, 'to be coping': 901182, 'be coping well': 114246, 'coping well with': 203390, 'well with well': 978760, 'with well the': 1002063, 'well the dramatic': 978656, 'the dramatic shift': 853664, 'shift in demand': 758322, 'in demand away': 422108, 'demand away from': 235054, 'away from foodservice': 105884, 'from foodservice into': 335521, 'foodservice into supermarket': 318103, 'into supermarket porkmarketnews': 443055, 'supermarket porkmarketnews pigprices': 822042, 'togo': 921097, 'happy sunday': 377681, 'sunday we': 818289, 'seriously when': 751787, 'when cooking': 983286, 'cooking your': 202946, 'your meal': 1024797, 'meal amp': 524088, 'we handle': 971731, 'handle everything': 376194, 'more fyi': 539327, 'fyi we': 342652, 'don allow': 253335, 'allow anyone': 45916, 'anyone through': 80573, 'the togo': 869702, 'togo bag': 921098, 'delivery person': 234332, 'happy sunday we': 377684, 'sunday we are': 818290, 'taking this very': 833622, 'this very seriously': 890966, 'very seriously when': 955526, 'seriously when cooking': 751788, 'when cooking your': 983287, 'cooking your meal': 202947, 'your meal amp': 1024798, 'meal amp how': 524090, 'how we handle': 409174, 'we handle everything': 971732, 'handle everything we': 376195, 'everything we are': 288085, 'we are using': 970752, 'are using sanitizer': 91428, 'using sanitizer glove': 950629, 'sanitizer glove amp': 734987, 'glove amp more': 352548, 'amp more fyi': 54148, 'more fyi we': 539328, 'fyi we don': 342653, 'we don allow': 971376, 'don allow anyone': 253336, 'allow anyone through': 45919, 'anyone through our': 80574, 'through our door': 894615, 'door to pick': 255755, 'up their food': 946236, 'their food we': 873359, 'we will take': 973913, 'take the togo': 832683, 'the togo bag': 869703, 'togo bag to': 921099, 'to the delivery': 916632, 'the delivery person': 853072, 'delivery person or': 234334, '100daysofcode': 2157, 'undefined': 939937, 'admins': 32536, '100daysofcode day': 2158, 'day undefined': 228635, 'undefined update': 939938, 'update wa': 947302, 'approved for': 83153, 'my covid': 547842, '19 essential': 6835, 'list io': 494370, 'io app': 444426, 'app you': 81807, 'now share': 575786, 'to product': 912220, 'and admins': 57700, 'admins have': 32537, 'have another': 379287, 'reason available': 702872, 'reject product': 708324, '100daysofcode day undefined': 2159, 'day undefined update': 228636, 'undefined update wa': 939939, 'update wa approved': 947303, 'wa approved for': 961566, 'approved for my': 83154, 'for my covid': 323690, 'my covid 19': 547843, 'covid 19 essential': 213038, '19 essential online': 6837, 'essential online shopping': 281357, 'shopping list io': 763189, 'list io app': 494371, 'io app you': 444428, 'app you can': 81808, 'can now share': 159072, 'now share link': 575787, 'share link to': 755087, 'link to product': 493938, 'to product and': 912221, 'product and admins': 680870, 'and admins have': 57701, 'admins have another': 32538, 'have another reason': 379288, 'another reason available': 77789, 'reason available to': 702873, 'available to reject': 104656, 'to reject product': 913126, 'mum cry': 545887, 'supermarket show': 822685, 'the ridiculousness': 865798, 'ridiculousness of': 721660, 'of bulk': 580928, 'over please': 630509, 'stop greedy': 804696, 'greedy buying': 363496, 'buying saturdaymotivation': 150981, 'saturdaymotivation bulkbuying': 737103, 'bulkbuying toiletpaper': 142391, 'mum cry in': 545888, 'cry in supermarket': 219880, 'in supermarket show': 428668, 'supermarket show the': 822686, 'show the ridiculousness': 767218, 'the ridiculousness of': 865799, 'ridiculousness of bulk': 721661, 'of bulk buying': 580929, 'bulk buying we': 142288, 'buying we need': 151327, 'need to remember': 556041, 'to remember that': 913187, 'are people in': 89035, 'in need all': 425723, 'need all over': 554385, 'all over please': 43876, 'over please stop': 630511, 'please stop greedy': 660577, 'stop greedy buying': 804697, 'greedy buying saturdaymotivation': 363497, 'buying saturdaymotivation bulkbuying': 150982, 'saturdaymotivation bulkbuying toiletpaper': 737104, 'sendtp': 750143, 'six store': 772694, 'had toilet': 373745, 'real we': 701448, 'getting close': 348906, 'apocalypse sendtp': 81564, 'sendtp toiletpaper': 750144, 'been to six': 122226, 'to six store': 914690, 'six store the': 772695, 'store the past': 810612, 'past day and': 643517, 'day and none': 227274, 'and none of': 67683, 'none of them': 566598, 'of them have': 591744, 'them have had': 875824, 'have had toilet': 380881, 'had toilet paper': 373746, 'paper the struggle': 640881, 'struggle is getting': 814354, 'getting real we': 349223, 'real we getting': 701449, 'we getting close': 971640, 'getting close to': 348907, 'to the apocalypse': 916493, 'the apocalypse sendtp': 848814, 'apocalypse sendtp toiletpaper': 81565, 'sendtp toiletpaper 19': 750145, 'supermarket heist': 820735, 'heist it': 388865, 'shopping environment': 762573, 'environment change': 279094, 'and knowing': 65895, 'be stressful': 117390, 'stressful yup': 813528, 'yup went': 1027121, 'supermarket heist it': 820736, 'heist it scary': 388866, 'it scary time': 460908, 'scary time to': 741211, 'go shopping environment': 354111, 'shopping environment change': 762574, 'environment change and': 279095, 'change and knowing': 171918, 'and knowing what': 65896, 'knowing what you': 477152, 'actually need to': 30909, 'pandemic can be': 635085, 'can be stressful': 157690, 'be stressful yup': 117391, 'stressful yup went': 813529, 'yup went in': 1027122, 'went in and': 979039, '519weddings': 20238, 'created issue': 215838, 'the wedding': 871286, 'wedding industry': 975566, 'client will': 182135, 'allow all': 45914, 'all 2021': 41894, '2021 wedding': 14803, 'wedding to': 975581, 'online using': 609658, 'my 2020': 547136, '2020 sale': 14583, 'price stay': 676626, 'and plan': 69059, 'your wedding': 1026329, 'wedding online': 975573, 'with columbia': 997691, 'columbia photo': 186884, 'photo ldnont': 655190, 'ldnont 519weddings': 482809, 'pandemic ha created': 635538, 'ha created issue': 370272, 'created issue for': 215839, 'issue for the': 455756, 'for the wedding': 326774, 'the wedding industry': 871287, 'wedding industry to': 975567, 'help my client': 390120, 'my client will': 547705, 'client will allow': 182136, 'will allow all': 992240, 'allow all 2021': 45915, 'all 2021 wedding': 41896, '2021 wedding to': 14804, 'wedding to book': 975583, 'to book online': 901899, 'book online using': 134581, 'online using my': 609660, 'using my 2020': 950566, 'my 2020 sale': 547138, '2020 sale price': 14584, 'sale price stay': 732464, 'price stay home': 676627, 'safe and plan': 729468, 'and plan your': 69063, 'plan your wedding': 658368, 'your wedding online': 1026330, 'wedding online with': 975574, 'online with columbia': 609742, 'with columbia photo': 997692, 'columbia photo ldnont': 186885, 'photo ldnont 519weddings': 655191, 'nocorporatewelfare': 566103, 'sherwinwilliams': 758094, 'do given': 249336, 'given that': 351120, 'of cleveland': 581456, 'cleveland just': 181848, 'just handed': 468916, 'handed it': 376068, 'it 25': 456202, 'free money': 331983, 'build headquarters': 141976, 'headquarters it': 386033, 'build anyway': 141951, 'anyway nocorporatewelfare': 81027, 'nocorporatewelfare sherwinwilliams': 566104, 'is the least': 452846, 'the least it': 859251, 'least it could': 484524, 'it could do': 457356, 'could do given': 209095, 'do given that': 249337, 'given that the': 351127, 'that the city': 846684, 'city of cleveland': 179279, 'of cleveland just': 581457, 'cleveland just handed': 181849, 'just handed it': 468917, 'handed it 25': 376069, 'it 25 million': 456205, '25 million in': 15910, 'million in free': 532190, 'in free money': 423101, 'free money to': 331984, 'money to build': 537087, 'to build headquarters': 902088, 'build headquarters it': 141977, 'headquarters it wa': 386034, 'going to build': 355544, 'to build anyway': 902081, 'build anyway nocorporatewelfare': 141952, 'anyway nocorporatewelfare sherwinwilliams': 81028, 'unconscious': 939873, 'subnormal': 815832, 'throw your': 895064, 'floor what': 310856, 'you unconscious': 1021958, 'unconscious subnormal': 939874, 'subnormal 19': 815833, 'supermarket or the': 821835, 'or the store': 617400, 'any place and': 79655, 'place and throw': 657325, 'and throw your': 74098, 'throw your glove': 895065, 'glove on the': 352827, 'the floor what': 855429, 'floor what are': 310857, 'are you unconscious': 91875, 'you unconscious subnormal': 1021959, 'unconscious subnormal 19': 939875, 'dountoothers': 256292, 'preplife': 670376, 'eldercare': 270553, 'babyboomers': 106755, 'realestateagent': 701536, 'remembers place': 710469, 'place hoarder': 657495, 'hoarder hoarder': 399045, 'hoarder grateful': 399033, 'grateful bekind': 362242, 'bekind serve': 126111, 'serve love': 751908, 'love give': 504672, 'give protect': 350666, 'protect dountoothers': 684814, 'dountoothers prep': 256293, 'prep preplife': 670011, 'preplife elder': 670377, 'elder eldercare': 270528, 'eldercare toiletpaper': 270554, 'toiletpaper costco': 921898, 'costco walmart': 208289, 'walmart tiktok': 965440, 'tiktok senior': 895916, 'senior babyboomers': 750221, 'babyboomers realestate': 106756, 'realestate realestateagent': 701515, 'realestateagent realtor': 701538, 'realtor realtor': 702797, 'realtor give': 702781, 'who remembers place': 989528, 'remembers place hoarder': 710470, 'place hoarder hoarder': 657496, 'hoarder hoarder grateful': 399046, 'hoarder grateful bekind': 399034, 'grateful bekind serve': 362243, 'bekind serve love': 126112, 'serve love give': 751909, 'love give protect': 504673, 'give protect dountoothers': 350667, 'protect dountoothers prep': 684815, 'dountoothers prep preplife': 256294, 'prep preplife elder': 670012, 'preplife elder eldercare': 670378, 'elder eldercare toiletpaper': 270529, 'eldercare toiletpaper costco': 270555, 'toiletpaper costco walmart': 921899, 'costco walmart tiktok': 208290, 'walmart tiktok senior': 965441, 'tiktok senior babyboomers': 895917, 'senior babyboomers realestate': 750222, 'babyboomers realestate realestateagent': 106757, 'realestate realestateagent realtor': 701517, 'realestateagent realtor realtor': 701539, 'realtor realtor give': 702798, 'wana': 965540, 'gettn': 349471, '2d': 16580, 'call ur': 156212, 'ur sibling': 948060, 'sibling gather': 768334, 'gather up': 344406, 'good cash': 356870, 'cash send': 166333, 'send home': 749873, 'stop some': 805038, 'our stubborn': 624980, 'stubborn parent': 814565, 'parent that': 641741, 'still wana': 801382, 'wana go': 965541, 'go attend': 353324, 'attend to': 102324, 'personal business': 652795, 'from gettn': 335639, 'gettn close': 349472, 'close 2d': 182488, '2d despite': 16581, 'despite all': 238665, 'all system': 44585, 'is pause': 450819, 'pause now': 644603, 'stock tv': 803039, 'tv sub': 936207, 'call ur sibling': 156213, 'ur sibling gather': 948061, 'sibling gather up': 768335, 'gather up some': 344408, 'up some good': 946032, 'some good cash': 782960, 'good cash send': 356871, 'cash send home': 166334, 'send home to': 749874, 'to stop some': 915574, 'stop some of': 805039, 'of our stubborn': 587573, 'our stubborn parent': 624981, 'stubborn parent that': 814566, 'parent that still': 641742, 'that still wana': 846485, 'still wana go': 801383, 'wana go attend': 965542, 'go attend to': 353325, 'attend to their': 102325, 'to their personal': 917260, 'their personal business': 874278, 'personal business from': 652796, 'business from gettn': 143767, 'from gettn close': 335640, 'gettn close 2d': 349473, 'close 2d despite': 182489, '2d despite all': 16582, 'despite all system': 238666, 'all system is': 44586, 'system is pause': 831225, 'is pause now': 450820, 'pause now make': 644604, 'now make sure': 575273, 'sure the house': 827712, 'house is filled': 406372, 'filled with food': 305578, 'with food stock': 998508, 'food stock tv': 316814, 'stock tv sub': 803040, 'tv sub and': 936208, 'sub and fuel': 815674, 'pvc': 691348, 'the pvc': 864938, 'pvc outlook': 691351, 'outlook is': 629166, 'more bearish': 538707, 'bearish because': 118458, 'crashing crude': 215106, 'price more': 675267, 'the pvc outlook': 864939, 'pvc outlook is': 691352, 'outlook is more': 629168, 'is more bearish': 449697, 'more bearish because': 538708, 'bearish because of': 118459, 'outbreak and crashing': 627991, 'and crashing crude': 60693, 'crashing crude oil': 215107, 'oil price more': 597196, 'price more detail': 675269, 'more detail on': 539022, 'ha basically': 369664, 'basically become': 112112, 'big game': 129797, 'high value': 395505, 'value item': 952145, 'item first': 463258, 'first supermarketsweep': 309049, 'supermarketsweep shopping': 824262, 'shopping ha basically': 762821, 'ha basically become': 369665, 'basically become one': 112113, 'become one big': 120090, 'one big game': 606000, 'big game of': 129798, 'game of supermarket': 343220, 'sweep now you': 830143, 'now you gotta': 576510, 'you gotta get': 1018915, 'gotta get the': 359077, 'get the high': 348251, 'the high value': 857326, 'high value item': 395506, 'value item first': 952146, 'item first supermarketsweep': 463259, 'first supermarketsweep shopping': 309050, 'this texas': 890497, 'texas future': 839771, 'future txlege': 342494, 'txlege tcot': 937467, 'is this texas': 453125, 'this texas future': 890498, 'texas future txlege': 839772, 'future txlege tcot': 342495, 'cgi': 170382, 'sprucing': 791311, 'gremlin': 363837, 'labyrinth': 478562, 'new episode': 558700, 'episode we': 279558, 'crisis cgi': 217205, 'cgi or': 170383, 'die sprucing': 241455, 'sprucing up': 791312, 'special effect': 787905, 'of gremlin': 584337, 'gremlin labyrinth': 363838, 'labyrinth mac': 478563, 'me plus': 523343, 'plus the': 661691, 'wild style': 992081, 'style inspired': 815603, 'by music': 153272, 'music genre': 546308, 'genre listen': 345824, 'new episode we': 558702, 'episode we give': 279559, 'we give you': 971644, 'you the lowdown': 1021603, 'lowdown on working': 505764, 'the crisis cgi': 852356, 'crisis cgi or': 217206, 'cgi or die': 170384, 'or die sprucing': 614967, 'die sprucing up': 241456, 'sprucing up the': 791313, 'up the special': 946217, 'the special effect': 867546, 'special effect of': 787906, 'effect of gremlin': 269048, 'of gremlin labyrinth': 584338, 'gremlin labyrinth mac': 363839, 'labyrinth mac and': 478564, 'mac and me': 507312, 'and me plus': 66836, 'me plus the': 523344, 'plus the wild': 661696, 'the wild style': 871559, 'wild style inspired': 992082, 'style inspired by': 815604, 'inspired by music': 439842, 'by music genre': 153273, 'music genre listen': 546309, 'genre listen here': 345825, 'facing this': 295629, 'you reduced': 1020875, 'or giving': 615463, 'are facing this': 86436, 'facing this crisis': 295630, 'this crisis of': 887070, 'crisis of have': 217783, 'of have you': 584476, 'have you reduced': 383686, 'you reduced the': 1020876, 'the price or': 864393, 'price or giving': 675777, 'or giving them': 615465, 'giving them out': 351423, 'them out for': 876125, 'out for free': 626122, 'recent memory': 703927, 'memory the': 528434, 'lowest gasoline': 506166, 'area which': 92264, 'we track': 973563, 'all below': 42171, '00 gallon': 226, 'time in recent': 897008, 'in recent memory': 427317, 'recent memory the': 703928, 'memory the lowest': 528435, 'the lowest gasoline': 859810, 'lowest gasoline price': 506167, 'in the bay': 429013, 'bay area which': 112920, 'area which we': 92266, 'which we track': 986468, 'we track daily': 973565, 'track daily on': 928183, 'daily on are': 224732, 'on are all': 599459, 'are all below': 84290, 'all below 00': 42172, 'below 00 gallon': 126549, 'moonrise': 538346, 'rabun': 695165, 'moonrise distillery': 538347, 'distillery family': 247750, 'family run': 298194, 'run operation': 727745, 'to rabun': 912698, 'rabun county': 695166, 'county emergency': 211369, 'responder another': 715415, 'another amazing': 77490, 'amazing example': 50684, 'moonrise distillery family': 538348, 'distillery family run': 247751, 'family run operation': 298196, 'run operation in': 727746, 'operation in is': 613208, 'in is now': 424171, 'now producing hand': 575603, 'and donating it': 61660, 'donating it to': 254473, 'it to rabun': 461746, 'to rabun county': 912699, 'rabun county emergency': 695167, 'county emergency responder': 211370, 'emergency responder another': 272925, 'responder another amazing': 715416, 'another amazing example': 77491, 'amazing example of': 50685, 'example of supporting': 288950, 'of supporting our': 590517, 'our community in': 622464, '19 made': 8497, 'up book': 944505, 'book what': 134626, 'you feeding': 1018530, 'feeding your': 302497, 'period stayathome': 651885, 'covid 19 made': 213386, '19 made you': 8503, 'made you all': 508075, 'you all stock': 1016909, 'all stock up': 44471, 'up food but': 944883, 'food but it': 313818, 'but it made': 146137, 'it made me': 459493, 'made me stock': 507843, 'me stock up': 523552, 'stock up book': 803063, 'up book what': 944506, 'book what are': 134627, 'are you feeding': 91790, 'you feeding your': 1018531, 'feeding your mind': 302499, 'your mind this': 1024838, 'mind this period': 532753, 'this period stayathome': 889531, 'period stayathome staysafe': 651886, 'cath': 167281, 'kidston': 474271, 'lockdown hit': 499469, 'hit major': 398308, 'major high': 509352, 'street retailer': 813086, 'retailer this': 719372, 'with department': 998003, 'chain debenhams': 170634, 'debenhams and': 230351, 'fashion brand': 299795, 'brand cath': 137794, 'cath kidston': 167282, 'kidston set': 474274, 'for administration': 319025, 'of job are': 585527, 'job are at': 465655, 'at risk the': 100407, 'risk the covid': 723930, '19 lockdown hit': 8392, 'lockdown hit major': 499470, 'hit major high': 398309, 'major high street': 509353, 'high street retailer': 395435, 'street retailer this': 813088, 'retailer this week': 719373, 'this week with': 891300, 'week with department': 977262, 'with department store': 998004, 'store chain debenhams': 806914, 'chain debenhams and': 170635, 'debenhams and fashion': 230352, 'and fashion brand': 62706, 'fashion brand cath': 299797, 'brand cath kidston': 137795, 'cath kidston set': 167284, 'kidston set to': 474275, 'set to file': 753518, 'to file for': 905829, 'file for administration': 305349, 'volunteersagainstcovid19': 960404, 'leonard': 486397, 'eastkilbride': 265625, 'any volunteersagainstcovid19': 80026, 'volunteersagainstcovid19 in': 960405, 'in st': 428218, 'st leonard': 791717, 'leonard eastkilbride': 486398, 'eastkilbride my': 265626, 'is elderly': 447461, 'elderly cannot': 270628, 'slot any': 774111, 'help info': 389928, 'info appreciated': 437420, 'appreciated 21daylockdown': 82809, 'are there any': 90951, 'there any volunteersagainstcovid19': 878027, 'any volunteersagainstcovid19 in': 80027, 'volunteersagainstcovid19 in st': 960406, 'in st leonard': 428220, 'st leonard eastkilbride': 791718, 'leonard eastkilbride my': 486399, 'eastkilbride my mum': 265627, 'mum is elderly': 545918, 'is elderly cannot': 447462, 'elderly cannot go': 270630, 'go out or': 353974, 'out or get': 626953, 'or get online': 615432, 'shopping slot any': 763900, 'slot any help': 774112, 'any help info': 79314, 'help info appreciated': 389929, 'info appreciated 21daylockdown': 437421, 'controversy': 202293, 'launched chinese': 481972, 'chinese language': 177289, 'language initiative': 479494, 'initiative this': 438657, 'both english': 135902, 'english and': 277047, 'chinese no': 177306, 'no entry': 564126, 'entry chinese': 278990, 'supermarket new': 821595, 'policy spark': 663498, 'spark controversy': 787535, 'know ha launched': 476403, 'ha launched chinese': 371102, 'launched chinese language': 481973, 'chinese language initiative': 177290, 'language initiative this': 479495, 'initiative this article': 438658, 'article ha been': 94343, 'been published in': 121737, 'published in both': 688655, 'in both english': 420919, 'both english and': 135903, 'english and chinese': 277048, 'and chinese no': 59861, 'chinese no mask': 177307, 'mask no entry': 519008, 'no entry chinese': 564127, 'entry chinese supermarket': 278991, 'chinese supermarket new': 177360, 'supermarket new policy': 821596, 'new policy spark': 559303, 'policy spark controversy': 663499, 'mainstreamed': 508921, 'brooklyn deli': 140979, 'deli offer': 232932, 'offer 10': 594494, 'off food': 593819, 'product mainstreamed': 681387, 'mainstreamed grocery': 508922, 'others price': 621593, 'gouge on': 359192, 'water bottle': 968922, 'bottle amp': 136176, 'amp essential': 53744, 'fight panic': 304838, 'amp greedy': 53886, 'greedy store': 363615, 'amp individual': 53987, 'brooklyn deli offer': 140981, 'deli offer 10': 232933, 'offer 10 20': 594496, '20 off food': 13210, 'off food product': 593821, 'food product mainstreamed': 316026, 'product mainstreamed grocery': 681388, 'mainstreamed grocery store': 508923, 'food amp others': 313143, 'amp others price': 54254, 'others price gouge': 621594, 'price gouge on': 674235, 'gouge on water': 359193, 'on water bottle': 605115, 'water bottle amp': 968923, 'bottle amp essential': 136177, 'amp essential to': 53745, 'essential to fight': 281696, 'to fight panic': 905804, 'fight panic amp': 304839, 'panic amp greedy': 637289, 'amp greedy store': 53887, 'greedy store amp': 363616, 'store amp individual': 806179, 'amp individual who': 53988, 'individual who hoard': 435280, 'mom took': 535821, 'took photo': 925314, 'her pasta': 392292, 'pasta aisle': 643669, 'delivery the': 234618, 'first customer': 308606, 'lot stop': 504376, 'buying pasta': 150887, 'mom took photo': 535822, 'took photo of': 925315, 'of her pasta': 584581, 'her pasta aisle': 392293, 'pasta aisle at': 643670, 'aisle at this': 40216, 'at this morning': 101244, 'morning after food': 541136, 'food delivery the': 314152, 'delivery the first': 234620, 'the first customer': 855294, 'first customer at': 308607, 'customer at would': 222149, 'at would have': 101640, 'would have emptied': 1011873, 'emptied the parking': 274701, 'parking lot stop': 642106, 'lot stop panic': 504377, 'panic buying pasta': 637844, 'hungary': 411049, 'hu': 409776, 'hungary oil': 411060, 'gas group': 343864, 'group mol': 366764, 'mol wednesday': 535638, 'wednesday said': 975683, 'factory ha': 295950, 'been converted': 120887, 'into producing': 442893, 'producing disinfectant': 680759, 'sanitizer liquid': 735294, 'liquid and': 494075, 'supply hungary': 825379, 'hungary with': 411062, 'with sanitizers': 1000575, 'sanitizers the': 736412, 'country fight': 210648, 'the cc': 850554, 'cc hu': 168394, 'hungary oil and': 411061, 'and gas group': 63476, 'gas group mol': 343865, 'group mol wednesday': 366765, 'mol wednesday said': 535639, 'wednesday said one': 975684, 'said one of': 731295, 'it factory ha': 457927, 'factory ha been': 295951, 'ha been converted': 369761, 'been converted into': 120888, 'converted into producing': 202552, 'into producing disinfectant': 442894, 'producing disinfectant sanitizer': 680761, 'disinfectant sanitizer liquid': 245749, 'sanitizer liquid and': 735295, 'liquid and will': 494077, 'and will supply': 75699, 'will supply hungary': 995029, 'supply hungary with': 825380, 'hungary with sanitizers': 411063, 'with sanitizers the': 1000576, 'sanitizers the country': 736413, 'the country fight': 852079, 'country fight against': 210649, 'of the cc': 590854, 'the cc hu': 850555, 'solene': 781881, 'perhaps it': 651608, 'for solene': 325720, 'solene see': 781882, 'see hayes': 745177, 'hayes driving': 384523, 'driving vintage': 260037, 'vintage mercedes': 957459, 'mercedes in': 528943, 'la supermarket': 478219, 'lot during': 504036, 'distancing phase': 247397, 'perhaps it time': 651610, 'time for solene': 896755, 'for solene see': 325721, 'solene see hayes': 781883, 'see hayes driving': 745178, 'hayes driving vintage': 384524, 'driving vintage mercedes': 260038, 'vintage mercedes in': 957460, 'mercedes in an': 528944, 'in an la': 420323, 'an la supermarket': 56503, 'la supermarket parking': 478220, 'parking lot during': 642085, 'lot during the': 504037, 'during the social': 263195, 'social distancing phase': 779686, 'distancing phase of': 247398, 'weaken': 974049, 'murderous': 546178, 'celebration': 168849, 'trump hope': 933614, 'hope sanction': 403612, 'sanction covid': 733624, '19 kill': 8231, 'kill enough': 474389, 'enough iranian': 277490, 'iranian weaken': 444742, 'weaken govt': 974050, 'force regime': 328491, 'regime change': 707345, 'change such': 172271, 'such murderous': 816644, 'murderous policy': 546179, 'policy strengthen': 663502, 'strengthen iranian': 813245, 'iranian govt': 444728, 'govt it': 361177, 'year celebration': 1014459, 'celebration weather': 168865, 'weather perfect': 974890, 'of sanction': 589265, 'sanction low': 733632, '19 resulting': 10195, 'resulting hum': 717697, 'trump hope sanction': 933616, 'hope sanction covid': 403613, 'sanction covid 19': 733625, 'covid 19 kill': 213318, '19 kill enough': 8233, 'kill enough iranian': 474390, 'enough iranian weaken': 277491, 'iranian weaken govt': 444743, 'weaken govt to': 974051, 'govt to force': 361313, 'to force regime': 906173, 'force regime change': 328492, 'regime change such': 707346, 'change such murderous': 172272, 'such murderous policy': 816645, 'murderous policy strengthen': 546180, 'policy strengthen iranian': 663503, 'strengthen iranian govt': 813246, 'iranian govt it': 444729, 'govt it new': 361178, 'it new year': 459796, 'new year celebration': 559910, 'year celebration weather': 1014461, 'celebration weather perfect': 168866, 'weather perfect storm': 974891, 'storm of sanction': 811828, 'of sanction low': 589267, 'sanction low oil': 733633, 'covid 19 resulting': 213707, '19 resulting hum': 10198, 'line thank': 493442, 'clerk thank': 181780, 'you truck': 1021929, 'driver thank': 259781, 'doctor thank': 251123, 'you medical': 1019831, 'professional thank': 682502, 'you restaurant': 1020919, 'you farmer': 1018517, 'farmer thank': 299517, 'you warehouse': 1022171, 'you janitor': 1019395, 'and garbageman': 63465, 'garbageman stayhomesavelives': 343547, 'front line thank': 338610, 'line thank you': 493443, 'store clerk thank': 807028, 'clerk thank you': 181781, 'thank you truck': 841835, 'you truck driver': 1021930, 'truck driver thank': 932798, 'driver thank you': 259782, 'you doctor thank': 1018288, 'doctor thank you': 251124, 'thank you medical': 841776, 'you medical professional': 1019833, 'medical professional thank': 526336, 'professional thank you': 682503, 'thank you restaurant': 841806, 'you restaurant worker': 1020920, 'restaurant worker thank': 716826, 'thank you farmer': 841725, 'you farmer thank': 1018518, 'farmer thank you': 299518, 'thank you warehouse': 841842, 'you warehouse worker': 1022172, 'warehouse worker thank': 966828, 'thank you janitor': 841757, 'you janitor and': 1019396, 'janitor and garbageman': 464531, 'and garbageman stayhomesavelives': 63466, 'secrecy': 743905, 'tesbih': 838646, 'habbal': 372528, 'amid regime': 52618, 'regime secrecy': 707363, 'secrecy about': 743906, 'war weary': 966594, 'weary syrian': 974836, 'syrian face': 831051, 'face soaring': 294759, 'soaring price': 779340, 'shortage bomb': 764856, 'bomb damaged': 134176, 'damaged health': 225255, 'system fail': 831160, 'pandemic writes': 637070, 'writes tesbih': 1012870, 'tesbih habbal': 838647, 'amid regime secrecy': 52619, 'regime secrecy about': 707364, 'secrecy about the': 743907, '19 war weary': 11895, 'war weary syrian': 966595, 'weary syrian face': 974837, 'syrian face soaring': 831053, 'face soaring price': 294760, 'soaring price and': 779341, 'price and food': 672416, 'and food shortage': 63092, 'food shortage bomb': 316560, 'shortage bomb damaged': 764857, 'bomb damaged health': 134177, 'damaged health system': 225256, 'health system fail': 386888, 'system fail to': 831161, 'fail to cope': 296107, 'the pandemic writes': 863166, 'pandemic writes tesbih': 637072, 'writes tesbih habbal': 1012871, 'tango': 834177, 'apologising': 81631, 'interesting experience': 441550, 'metre tango': 529873, 'tango with': 834178, 'going swiftly': 355479, 'swiftly into': 830327, 'into reverse': 442950, 'reverse if': 720520, 'someone appears': 784367, 'invade our': 443557, 'personal 2m': 652774, '2m space': 16716, 'space then': 787169, 'then apologising': 876995, 'apologising for': 81634, 'so socialdistancing': 778238, 'interesting experience this': 441551, 'experience this morning': 291510, 'the supermarket doing': 868558, 'supermarket doing the': 819994, 'doing the two': 252730, 'the two metre': 870152, 'two metre tango': 937049, 'metre tango with': 529874, 'tango with other': 834179, 'other people going': 620668, 'people going swiftly': 648101, 'going swiftly into': 355480, 'swiftly into reverse': 830328, 'into reverse if': 442951, 'reverse if someone': 720521, 'if someone appears': 414849, 'someone appears to': 784368, 'appears to invade': 82218, 'to invade our': 908476, 'invade our personal': 443558, 'our personal 2m': 624316, 'personal 2m space': 652775, '2m space then': 16717, 'space then apologising': 787170, 'then apologising for': 876996, 'apologising for doing': 81635, 'for doing so': 320803, 'doing so socialdistancing': 252658, 'so socialdistancing staysafe': 778239, 'socialdistancing staysafe stayathome': 780749, 'since everyone': 770579, 'on partial': 602703, 'lockdown ll': 499598, 'll share': 497006, 'you list': 1019620, 'malaysia keep': 511618, '19 season': 10375, 'season below': 743380, 'use thread': 949742, 'since everyone is': 770580, 'everyone is panic': 287096, 'buying like crazy': 150650, 'crazy and we': 215250, 'are on partial': 88730, 'on partial lockdown': 602704, 'partial lockdown ll': 642518, 'lockdown ll share': 499600, 'll share with': 497008, 'share with you': 755360, 'with you list': 1002157, 'you list of': 1019622, 'list of home': 494443, 'of home delivery': 584716, 'home delivery in': 401024, 'delivery in malaysia': 234116, 'in malaysia keep': 425013, 'malaysia keep yourself': 511619, 'yourself safe at': 1026695, 'home during this': 401110, 'covid 19 season': 213756, '19 season below': 10376, 'season below are': 743381, 'below are the': 126597, 'are the list': 90856, 'shopping store you': 763992, 'store you can': 811681, 'can use thread': 160107, 'lockdown check': 499236, 'some idea': 783062, 'idea africaautoinsights': 413000, '19 lockdown check': 8375, 'lockdown check out': 499238, 'check out some': 174577, 'out some idea': 627220, 'some idea africaautoinsights': 783063, 'spell': 788515, 'widespread lockdown': 991848, 'will spell': 994912, 'spell massive': 788522, 'massive short': 520108, 'and gdp': 63500, 'gdp we': 344916, 'we estimate': 971479, 'that week': 847423, 'lockdown affecting': 499102, 'affecting 50': 34475, 'period will': 651932, 'cut consumption': 223277, 'consumption by': 199846, 'widespread lockdown will': 991849, 'lockdown will spell': 500156, 'will spell massive': 994913, 'spell massive short': 788523, 'massive short term': 520109, 'short term impact': 764740, 'spending and gdp': 788733, 'and gdp we': 63502, 'gdp we estimate': 344917, 'we estimate that': 971480, 'estimate that week': 282268, 'that week lockdown': 847425, 'week lockdown affecting': 976491, 'lockdown affecting 50': 499103, 'affecting 50 90': 34476, '50 90 of': 19599, '90 of population': 23317, 'population in given': 664691, 'month period will': 537959, 'period will cut': 651934, 'will cut consumption': 993083, 'cut consumption by': 223278, 'store packed': 809446, 'packed at': 633590, 'just wow': 470349, 'never in all': 558075, 'all my day': 43550, 'my day have': 547945, 'seen the grocery': 747282, 'grocery store packed': 365635, 'store packed at': 809447, 'packed at 00': 633591, 'at 00 am': 97347, '00 am in': 54, 'the morning just': 860914, 'morning just wow': 541334, 'torontoshoeshow': 926025, 'retailtips': 719567, 'retailmanagement': 719498, 'establishment have': 282060, 'close during': 182621, 'on keeping': 601751, 'customer protected': 222725, 'protected possible': 685145, 'possible torontoshoeshow': 665858, 'torontoshoeshow retailtips': 926026, 'retailtips retailmanagement': 719568, 'retailmanagement retail': 719499, 'not all retail': 568123, 'all retail establishment': 44184, 'retail establishment have': 718098, 'establishment have the': 282061, 'option to close': 614119, 'to close during': 902870, 'close during covid': 182622, '19 if your': 7670, 'if your store': 415610, 'is open here': 450567, 'open here are': 612296, 'tip on keeping': 898853, 'on keeping your': 601754, 'keeping your staff': 472641, 'your staff and': 1025902, 'and customer protected': 60856, 'customer protected possible': 222726, 'protected possible torontoshoeshow': 685146, 'possible torontoshoeshow retailtips': 665859, 'torontoshoeshow retailtips retailmanagement': 926027, 'retailtips retailmanagement retail': 719569, 'retailmanagement retail retailworkers': 719500, 'expiration': 292039, 'datamustfall': 226537, 'expire': 292046, 'in stayathome': 428259, 'stayathome lockdownsa': 797523, 'lockdownsa how': 500368, 'still stealing': 801232, 'stealing people': 799246, 'people data': 647601, 'data with': 226496, 'your ridiculous': 1025623, 'ridiculous expiration': 721536, 'expiration date': 292040, 'date datamustfall': 226615, 'datamustfall with': 226538, 'your highway': 1024320, 'highway robbery': 396160, 'robbery price': 724677, 'to expire': 905470, 'expire customer': 292049, 'experience suck': 291497, 'in stayathome lockdownsa': 428260, 'stayathome lockdownsa how': 797524, 'lockdownsa how are': 500369, 'are you still': 91861, 'you still stealing': 1021413, 'still stealing people': 801233, 'stealing people data': 799247, 'people data with': 647602, 'data with your': 226498, 'with your ridiculous': 1002231, 'your ridiculous expiration': 1025624, 'ridiculous expiration date': 721537, 'expiration date datamustfall': 292042, 'date datamustfall with': 226616, 'datamustfall with your': 226539, 'with your highway': 1002205, 'your highway robbery': 1024321, 'highway robbery price': 396161, 'robbery price and': 724678, 'price and now': 672480, 'and now your': 67875, 'now your data': 576523, 'your data is': 1023463, 'data is about': 226283, 'about to expire': 26715, 'to expire customer': 905471, 'expire customer experience': 292050, 'customer experience suck': 222357, 'sea food': 743092, 'what sea': 982135, 'aldi stopstockpiling': 41299, 'stopstockpiling stophoarding': 805876, 'spot the sea': 790124, 'the sea food': 866551, 'sea food what': 743095, 'food what sea': 317565, 'what sea food': 982136, 'sea food wa': 743094, 'food wa left': 317444, 'left in aldi': 485510, 'in aldi stopstockpiling': 420156, 'aldi stopstockpiling stophoarding': 41300, 'brief contact': 139668, 'risk exposure': 723526, 'exposure for': 292972, 'say dr': 738596, 'dr linda': 258053, 'linda bell': 492917, 'brief contact at': 139669, 'contact at grocery': 200027, 'store is not': 808507, 'is not considered': 450048, 'not considered high': 568839, 'high risk exposure': 395355, 'risk exposure for': 723527, 'exposure for the': 292975, 'for the say': 326671, 'the say dr': 866392, 'say dr linda': 738597, 'dr linda bell': 258054, 'comporium': 192562, '2667': 16228, 'effective today': 269315, 'today april': 919247, 'april 6th': 83511, '6th all': 21677, 'all comporium': 42418, 'comporium retail': 192563, 'store lobby': 808786, 'lobby are': 497577, 'make payment': 510308, 'payment or': 645698, 'or exchange': 615228, 'exchange visit': 289489, 'visit one': 959316, 'our drive': 622805, 'through location': 894558, 'location call': 498868, 'at 88': 97773, '88 403': 23042, '403 2667': 18811, '2667 or': 16229, 'effective today april': 269317, 'today april 6th': 919248, 'april 6th all': 83512, '6th all comporium': 21678, 'all comporium retail': 42419, 'comporium retail store': 192564, 'retail store lobby': 718655, 'store lobby are': 808787, 'lobby are closed': 497578, '19 to make': 11440, 'to make payment': 909715, 'make payment or': 510309, 'payment or exchange': 645699, 'or exchange visit': 615229, 'exchange visit one': 289490, 'visit one of': 959317, 'of our drive': 587453, 'our drive through': 622806, 'drive through location': 259181, 'through location call': 894559, 'location call at': 498869, 'call at 88': 155786, 'at 88 403': 97774, '88 403 2667': 23043, '403 2667 or': 18812, '2667 or visit': 16230, 'industry covid': 435755, 'getting started': 349300, 'bailout money': 108641, 'get wiped': 348632, 'market session': 517043, 'session and': 753267, 'what but': 981156, 'by bailing': 151926, 'rent etc': 711078, 'economy trumpslushfund': 268311, 'early to bail': 264724, 'out industry covid': 626415, 'industry covid 19': 435756, 'is just getting': 449130, 'just getting started': 468808, 'getting started the': 349301, 'started the bailout': 794850, 'the bailout money': 849191, 'bailout money will': 108643, 'money will get': 537178, 'will get wiped': 993524, 'get wiped out': 348633, 'wiped out in': 996473, 'out in stock': 626398, 'stock market session': 802432, 'market session and': 517044, 'session and then': 753270, 'and then what': 73823, 'then what but': 877743, 'what but by': 981157, 'but by bailing': 145332, 'by bailing out': 151927, 'bailing out the': 108617, 'out the people': 627404, 'the people it': 863482, 'people it go': 648536, 'it go directly': 458258, 'the people for': 863472, 'people for food': 647951, 'for food rent': 321624, 'food rent etc': 316171, 'rent etc helping': 711079, 'etc helping the': 282591, 'helping the economy': 391490, 'the economy trumpslushfund': 854031, 'of heading': 584497, 'supermarket early': 820075, 'early tomorrow': 264737, 'tomorrow just': 924114, 'up everything': 944815, 'thinking of heading': 885961, 'of heading to': 584498, 'the supermarket early': 868566, 'supermarket early tomorrow': 820079, 'early tomorrow just': 264738, 'tomorrow just to': 924115, 'just to fight': 470090, 'fight the people': 304901, 'who buy up': 988360, 'buy up everything': 149412, 'up everything in': 944818, 'achilles': 29066, 'humble lay': 410816, 'lay prediction': 482607, 'prediction high': 669665, 'debt will': 230606, 'will prove': 994500, 'the achilles': 848293, 'achilles heel': 29067, 'heel of': 388766, 'into high': 442626, 'high relief': 395332, 'humble lay prediction': 410817, 'lay prediction high': 482608, 'prediction high level': 669666, 'of consumer debt': 581731, 'consumer debt will': 197094, 'debt will prove': 230608, 'will prove to': 994502, 'be the achilles': 117591, 'the achilles heel': 848294, 'achilles heel of': 29068, 'heel of the': 388769, 'american economy that': 51937, 'economy that the': 268270, 'that the novel': 846783, 'novel pandemic will': 573809, 'pandemic will bring': 637000, 'will bring into': 992856, 'bring into high': 140008, 'into high relief': 442627, 'russher': 728407, 'einstein': 270240, 'lol bragging': 500881, 'had something': 373534, 'if knew': 414358, 'how economics': 407786, 'economics worked': 267493, 'worked ya': 1006175, 'ya big': 1013970, 'big dummy': 129768, 'dummy you': 262149, 'demand bc': 235055, '19 russher': 10272, 'russher saudi': 728408, 'arabia increased': 83894, 'production ll': 682113, 'll let': 496882, 'let ya': 487209, 'ya dumbass': 1013980, 'dumbass figure': 262127, 'out rest': 627109, 'rest einstein': 716157, 'lol bragging about': 500882, 'gas price if': 343981, 'price if he': 674616, 'if he had': 414217, 'he had something': 385057, 'had something to': 373535, 'do it if': 249483, 'it if knew': 458672, 'if knew how': 414359, 'knew how economics': 476041, 'how economics worked': 407788, 'economics worked ya': 267494, 'worked ya big': 1006176, 'ya big dummy': 1013971, 'big dummy you': 129769, 'dummy you know': 262150, 'know it low': 476533, 'it low demand': 459473, 'low demand bc': 505235, 'demand bc of': 235056, 'covid 19 russher': 213731, '19 russher saudi': 10273, 'russher saudi arabia': 728409, 'saudi arabia increased': 737199, 'arabia increased production': 83895, 'increased production ll': 433433, 'production ll let': 682114, 'll let ya': 496883, 'let ya dumbass': 487210, 'ya dumbass figure': 1013981, 'dumbass figure out': 262128, 'figure out rest': 305219, 'out rest einstein': 627110, 'just spending': 469843, 'next outfit': 561498, 'just spending this': 469844, 'spending this time': 789015, 'time of quarantine': 897356, 'of quarantine online': 588663, 'shopping for next': 762697, 'for next outfit': 323854, 'futureofwork': 342550, 'is massively': 449594, 'massively changing': 520170, 'learn this': 484078, 'in changed': 421324, 'world particularly': 1009884, 'shopping public': 763695, 'investment etc': 443985, 'etc futureofwork': 282555, 'futureofwork stayhome': 342551, 'world the outbreak': 1010052, 'outbreak is massively': 628378, 'is massively changing': 449595, 'massively changing the': 520172, 'changing the way': 172814, 'way people work': 969814, 'people work and': 650506, 'work and learn': 1004786, 'and learn this': 66039, 'learn this will': 484079, 'this will likely': 891426, 'likely result in': 492097, 'result in changed': 717526, 'in changed world': 421325, 'changed world particularly': 172607, 'world particularly in': 1009885, 'particularly in term': 642701, 'term of online': 838223, 'of online education': 587253, 'online shopping public': 609239, 'shopping public health': 763697, 'health investment etc': 386561, 'investment etc futureofwork': 443986, 'etc futureofwork stayhome': 282556, 'cal': 155269, 'what these': 982384, 'in so': 428033, 'so cal': 776676, 'cal like': 155271, 'this idea': 887990, 'idea la': 413106, 'habra supermarket': 372731, 'senior amid': 750189, 'check out what': 174586, 'out what these': 627814, 'what these folk': 982387, 'folk are up': 312098, 'up to here': 946387, 'to here in': 907716, 'here in so': 393181, 'in so cal': 428034, 'so cal like': 776677, 'cal like this': 155272, 'like this idea': 491496, 'this idea la': 887992, 'idea la habra': 413107, 'la habra supermarket': 478173, 'habra supermarket offer': 372732, 'supermarket offer special': 821710, 'offer special hour': 594806, 'for senior amid': 325453, 'senior amid covid': 750190, 'faraway': 298996, 'japanese manufacturer': 464796, 'manufacturer concern': 513444, 'concern stem': 193098, 'stem from': 799462, 'income loss': 432402, 'loss they': 503789, 'reduce production': 705910, 'production producer': 682191, 'producer order': 680679, 'order fewer': 618205, 'fewer raw': 304231, 'material our': 520402, 'our export': 622964, 'export so': 292706, 'so drop': 776920, 'for faraway': 321398, 'faraway place': 298997, 'supply lead': 825493, 'export tax': 292709, 'tax revenue': 835083, 'revenue forex': 720415, 'japanese manufacturer concern': 464797, 'manufacturer concern stem': 513445, 'concern stem from': 193099, 'stem from consumer': 799463, 'from consumer concern': 334957, 'consumer concern that': 196871, 'concern that covid': 193110, '19 will lead': 12100, 'lead to income': 483352, 'to income loss': 908262, 'income loss they': 432404, 'loss they reduce': 503790, 'they reduce production': 883176, 'reduce production producer': 705911, 'production producer order': 682192, 'producer order fewer': 680680, 'order fewer raw': 618206, 'fewer raw material': 304232, 'raw material our': 697978, 'material our export': 520403, 'our export so': 622965, 'export so drop': 292707, 'so drop in': 776921, 'demand for faraway': 235417, 'for faraway place': 321399, 'faraway place and': 298998, 'place and supply': 657322, 'and supply lead': 72799, 'supply lead to': 825494, 'price for our': 674019, 'for our export': 324237, 'our export tax': 622966, 'export tax revenue': 292710, 'tax revenue forex': 835085, 'mode while': 535217, 'stockpile mask': 803771, 'sanitizers you': 736450, 'easily find': 265205, 'panic mode while': 638327, 'mode while people': 535218, 'trying to stockpile': 934881, 'to stockpile mask': 915476, 'stockpile mask and': 803772, 'hand sanitizers you': 375734, 'sanitizers you can': 736451, 'you can easily': 1017668, 'can easily find': 158182, 'easily find them': 265206, 'find them at': 307311, 'store be careful': 806660, 'howe': 409329, 'marconi': 515572, 'ski': 772924, 'helm': 389264, 'what up': 982496, 'up twitter': 946485, 'twitter small': 936715, 'retail have': 718175, 'been heavily': 121270, 'heavily effected': 388577, 'ever drove': 285281, 'drove by': 260785, 'this store': 890345, 'on howe': 601435, 'howe and': 409330, 'and marconi': 66690, 'marconi in': 515573, 'in sacramento': 427612, 'sacramento this': 729074, 'family ski': 298231, 'ski business': 772927, 'business helm': 143840, 'helm of': 389267, 'of sun': 590394, 'sun valley': 818088, 'valley 60': 951947, 'service repair': 752765, 'repair and': 711449, 'and expertise': 62509, 'what up twitter': 982500, 'up twitter small': 946486, 'twitter small business': 936716, 'business and retail': 143327, 'and retail have': 70432, 'retail have been': 718176, 'have been heavily': 379569, 'been heavily effected': 121271, 'heavily effected by': 388578, 'effected by covid': 269173, 'you ever drove': 1018455, 'ever drove by': 285282, 'drove by this': 260786, 'by this store': 154534, 'this store on': 890351, 'store on howe': 809194, 'on howe and': 601436, 'howe and marconi': 409331, 'and marconi in': 66691, 'marconi in sacramento': 515574, 'in sacramento this': 427615, 'sacramento this is': 729075, 'is my family': 449790, 'my family ski': 548221, 'family ski business': 298232, 'ski business helm': 772928, 'business helm of': 143841, 'helm of sun': 389268, 'of sun valley': 590395, 'sun valley 60': 818089, 'valley 60 year': 951948, 'year of customer': 1014774, 'of customer service': 582282, 'customer service repair': 222833, 'service repair and': 752766, 'repair and expertise': 711450, 'leader just': 483486, 'buy week': 149446, 'just fine': 468722, 'fine we': 307720, 'everyone costco': 286799, 'leader just buy': 483487, 'just buy week': 468388, 'buy week of': 149447, 'week of food': 976614, 'up hoard supply': 945092, 'hoard supply chain': 398872, 'chain is just': 170837, 'is just fine': 449128, 'just fine we': 468725, 'fine we have': 307721, 'for everyone costco': 321205, 'satara': 736928, 'solapur': 781593, '273': 16336, 'maharashta': 508474, 'pune satara': 689201, 'satara solapur': 736929, 'solapur wonder': 781594, 'wonder b4': 1003940, 'b4 excise': 106506, 'excise dept': 289511, 'dept sealing': 237747, 'sealing 273': 743191, '273 liquor': 16339, 'pune alone': 689191, 'alone where': 46948, 'wa police': 962955, 'police maharashta': 663081, 'maharashta govt': 508475, 'govt administration': 361063, 'pune satara solapur': 689202, 'satara solapur wonder': 736930, 'solapur wonder b4': 781595, 'wonder b4 excise': 1003941, 'b4 excise dept': 106507, 'excise dept sealing': 289512, 'dept sealing 273': 237748, 'sealing 273 liquor': 743192, '273 liquor shop': 16340, 'liquor shop in': 494192, 'shop in pune': 760317, 'in pune alone': 427116, 'pune alone where': 689192, 'alone where wa': 46949, 'where wa police': 985330, 'wa police maharashta': 962956, 'police maharashta govt': 663082, 'maharashta govt administration': 508476, 'bay finding': 112935, 'isolate missing': 454885, 'missing that': 534330, 'that closer': 843248, 'closer contact': 183494, 'people due': 647734, 'to advice': 900138, 'stay metre': 797127, 'metre away': 529834, 'others no': 621548, 'problem pop': 679654, 'pop down': 664423, 'your nearest': 1024933, 'did month': 240689, 'tired of doing': 899041, 'of doing your': 582772, 'doing your bit': 252880, 'bit to keep': 131718, 'at bay finding': 98102, 'bay finding it': 112936, 'finding it difficult': 307492, 'difficult to self': 242347, 'self isolate missing': 747684, 'isolate missing that': 454886, 'missing that closer': 534331, 'that closer contact': 843249, 'closer contact with': 183495, 'contact with people': 200282, 'with people due': 1000145, 'people due to': 647735, 'due to advice': 261695, 'to advice to': 900139, 'advice to stay': 33537, 'to stay metre': 915299, 'stay metre away': 797128, 'metre away from': 529835, 'from others no': 336743, 'others no problem': 621549, 'no problem pop': 565197, 'problem pop down': 679655, 'pop down to': 664424, 'down to your': 257390, 'to your nearest': 919004, 'your nearest supermarket': 1024936, 'nearest supermarket where': 553735, 'supermarket where people': 823824, 'where people are': 985093, 'behaving like they': 123837, 'like they did': 491449, 'they did month': 881919, 'did month ago': 240690, 'six month of': 772673, 'month of free': 537897, 'of free access': 583910, 'membershelpingmembers and how': 528263, 'advisorymandi': 33788, 'russia delayed': 728460, 'delayed meeting': 232788, 'discus output': 244886, 'cut that': 223566, 'reduce global': 705844, 'oversupply the': 631604, 'at advisorymandi': 97843, 'monday after saudiarabia': 536233, 'and russia delayed': 70665, 'russia delayed meeting': 728461, 'delayed meeting to': 232789, 'to discus output': 904381, 'discus output cut': 244887, 'output cut that': 629258, 'cut that could': 223568, 'could help reduce': 209287, 'help reduce global': 390424, 'reduce global oversupply': 705845, 'global oversupply the': 352067, 'oversupply the read': 631606, 'more at advisorymandi': 538660, 'the weakened': 871229, 'weakened economy': 974066, 'driving price': 259992, 'gas price the': 344034, 'price the weakened': 676866, 'the weakened economy': 871230, 'weakened economy due': 974067, '19 is driving': 7964, 'is driving price': 447388, 'driving price down': 259993, 'price down what': 673536, 'down what the': 257461, 'what the lowest': 982335, 'lowest price per': 506214, 'price per gallon': 675858, 'per gallon you': 650862, 'gallon you ve': 343077, 'clemen': 181597, 'canada top': 160589, 'top grocer': 925586, 'grocer say': 364159, 'are expressing': 86377, 'expressing concern': 293081, 'border restriction': 135274, 'canada agricultural': 160345, 'agricultural food': 38880, 'production march': 682119, 'at 01': 97366, '01 00am': 716, '00am by': 661, 'by laura': 153022, 'laura clemen': 482140, 'canada top grocer': 160590, 'top grocer say': 925587, 'grocer say they': 364161, 'they are able': 881186, 'with demand amid': 997970, 'outbreak but some': 628066, 'but some food': 147092, 'some food producer': 782870, 'food producer are': 316001, 'producer are expressing': 680571, 'are expressing concern': 86378, 'expressing concern over': 293083, 'over the impact': 630734, 'the impact the': 857948, 'impact the border': 417992, 'the border restriction': 849874, 'border restriction could': 135275, 'restriction could have': 717250, 'have on canada': 381764, 'on canada agricultural': 599791, 'canada agricultural food': 160346, 'agricultural food production': 38882, 'food production march': 316047, 'production march 18': 682120, '18 2020 at': 4493, '2020 at 01': 14157, 'at 01 00am': 97367, '01 00am by': 717, '00am by laura': 663, 'by laura clemen': 153023, 'breaking test': 139055, 'ha mild': 371277, 'mild symptom': 531344, 'symptom watch': 830942, 'watch gbp': 968426, 'gbp price': 344802, 'price pc': 675843, 'pc bbc': 645871, 'bbc all': 113065, 'all trading': 45284, 'trading involves': 928882, 'involves risk': 444384, 'breaking test positive': 139056, 'positive for and': 665317, 'for and ha': 319323, 'and ha mild': 64077, 'ha mild symptom': 371278, 'mild symptom watch': 531347, 'symptom watch gbp': 830943, 'watch gbp price': 968427, 'gbp price pc': 344803, 'price pc bbc': 675844, 'pc bbc all': 645872, 'bbc all trading': 113066, 'all trading involves': 45285, 'trading involves risk': 928883, 'suburbia': 816151, 'before of': 122967, 'potential infection': 667088, 'in white': 430884, 'white suburbia': 987907, 'suburbia and': 816152, 'think or': 885473, 'do of': 249917, 'my asian': 547333, 'asian body': 95256, 'been more anxious': 121539, 'more anxious about': 538628, 'anxious about going': 78828, 'store before of': 806703, 'before of potential': 122968, 'of potential infection': 588282, 'potential infection and': 667089, 'infection and of': 436713, 'and of my': 67956, 'of my fellow': 586767, 'my fellow human': 548302, 'fellow human in': 303297, 'human in white': 410519, 'in white suburbia': 430885, 'white suburbia and': 987908, 'suburbia and what': 816153, 'what they might': 982409, 'they might think': 882683, 'might think or': 531144, 'think or do': 885474, 'or do of': 615017, 'do of my': 249918, 'of my asian': 586731, 'my asian body': 547334, 'iptvnew': 444643, 'iptv2020': 444636, 'hotmovies iptvnew': 405294, 'iptvnew iptv2020': 444644, 'iptv2020 adult': 444637, 'cinema hotmovies iptvnew': 178542, 'hotmovies iptvnew iptv2020': 405295, 'iptvnew iptv2020 adult': 444645, 'labeling': 478376, 'ha temporarily': 372170, 'temporarily eased': 837488, 'eased it': 265123, 'it policy': 460375, 'on nutrition': 602463, 'nutrition and': 577711, 'and menu': 66950, 'menu labeling': 528885, 'labeling to': 478383, 'help calm': 389472, 'calm consumer': 156711, 'about product': 26001, 'product shortage': 681617, 'shortage keep': 765055, 'keep restaurant': 471856, 'avoid food': 105106, 'administration ha temporarily': 32476, 'ha temporarily eased': 372172, 'temporarily eased it': 837489, 'eased it policy': 265124, 'it policy on': 460376, 'policy on nutrition': 663462, 'on nutrition and': 602464, 'nutrition and menu': 577712, 'and menu labeling': 66951, 'menu labeling to': 528886, 'labeling to help': 478384, 'to help calm': 907472, 'help calm consumer': 389473, 'calm consumer fear': 156712, 'consumer fear about': 197452, 'fear about product': 301006, 'about product shortage': 26003, 'product shortage keep': 681619, 'shortage keep restaurant': 765056, 'keep restaurant in': 471857, 'restaurant in business': 716519, 'in business and': 421069, 'business and avoid': 143289, 'and avoid food': 58567, 'avoid food waste': 105108, 'waste during the': 968107, 'stock fall': 802109, 'fall effect': 296899, 'stimulus fade': 801535, 'price stock fall': 676663, 'stock fall effect': 802111, 'fall effect of': 296900, 'effect of stimulus': 269063, 'of stimulus fade': 590129, 'stimulus fade stockcrash': 801536, 'councillor': 210040, 'get basket': 346650, 'basket of': 112375, 'drop point': 260368, 'point at': 662420, 'local councillor': 497865, 'councillor it': 210045, 'to get basket': 906420, 'get basket of': 346652, 'basket of food': 112378, 'food and put': 313319, 'and put it': 69811, 'bank drop point': 109795, 'drop point at': 260369, 'point at the': 662424, '19 or need': 9022, 'or need help': 616228, 'need help contact': 554978, 'help contact your': 389530, 'your local councillor': 1024690, 'local councillor it': 497866, 'councillor it what': 210046, 'it what we': 462327, 'are here for': 87119, 'family hope': 297895, 'line with more': 493582, 'than 50 people': 840261, '50 people to': 19802, 'my normal grocery': 549508, 'normal grocery shopping': 567165, 'my family hope': 548204, 'family hope to': 297897, 'hope to get': 403738, 'and get my': 63588, 'get my weekly': 347643, 'my weekly shopping': 550565, 'weekly shopping done': 977565, 'schooler': 742026, 'since my': 770758, 'kid high': 473992, 'high schooler': 395398, 'schooler btw': 742027, 'btw who': 141560, 'cashier is': 166553, 'is apparently': 445784, 'apparently critical': 81925, 'infrastructure employee': 438195, 'sudden it': 817015, 'pay reflected': 645076, 'reflected that': 706650, 'that risk': 846061, 'since my kid': 770760, 'my kid high': 548948, 'kid high schooler': 473993, 'high schooler btw': 395399, 'schooler btw who': 742028, 'btw who is': 141561, 'who is grocery': 989077, 'store cashier is': 806889, 'cashier is apparently': 166554, 'is apparently critical': 445785, 'apparently critical infrastructure': 81926, 'critical infrastructure employee': 218591, 'infrastructure employee all': 438196, 'employee all of': 273534, 'of sudden it': 590373, 'sudden it would': 817016, 'nice if the': 562422, 'if the pay': 415014, 'the pay reflected': 863410, 'pay reflected that': 645077, 'reflected that risk': 706651, 'goodmania': 358041, 'goodmania la': 358042, 'flamingo ha': 309991, 'been packed': 121641, 'to been': 901695, 'been passing': 121651, 'passing the': 643400, 'because no': 119276, 'distancing help': 247200, 'help who': 390885, 'in spring': 428212, 'spring valley': 791250, 'goodmania la bonita': 358043, 'rainbow flamingo ha': 695769, 'flamingo ha been': 309992, 'ha been packed': 369865, 'been packed with': 121643, 'with people the': 1000175, 'people the store': 649797, 'store with that': 811406, 'with that many': 1001175, 'many people ha': 514506, 'people ha to': 648136, 'ha to been': 372290, 'to been passing': 901696, 'been passing the': 121653, 'passing the covid': 643401, '19 because no': 5331, 'because no one': 119277, 'one is practicing': 606517, 'is practicing social': 450978, 'social distancing help': 779631, 'distancing help who': 247201, 'help who live': 390886, 'live in spring': 495887, 'in spring valley': 428213, 'jumper': 467958, 'protecttheworker': 685865, 'of reading': 588777, 'reading tweet': 700819, 'people saying': 649356, 'saying protectthenhs': 739667, 'protectthenhs then': 685858, 'then further': 877187, 'their timeline': 874993, 'timeline their': 898475, 'their tweeting': 875060, 'tweeting about': 936466, 'at asos': 98058, 'asos get': 96197, 'your bored': 1022999, 'bored at': 135336, 'one life': 606594, 'worth that': 1011442, 'new jumper': 558998, 'jumper you': 467959, 'got your': 359038, 'your eye': 1023728, 'on protecttheworker': 602984, 'up of reading': 945502, 'of reading tweet': 588778, 'reading tweet from': 700820, 'tweet from people': 936368, 'from people saying': 336889, 'people saying protectthenhs': 649357, 'saying protectthenhs then': 739668, 'protectthenhs then further': 685859, 'then further down': 877188, 'further down their': 342040, 'down their timeline': 257321, 'their timeline their': 874994, 'timeline their tweeting': 898476, 'their tweeting about': 875061, 'tweeting about their': 936468, 'about their online': 26588, 'their online clothes': 874099, 'clothes shopping at': 184205, 'shopping at asos': 762085, 'at asos get': 98059, 'asos get your': 96198, 'get your bored': 348692, 'your bored at': 1023001, 'bored at home': 135337, 'home but no': 400841, 'no one life': 564946, 'one life is': 606595, 'life is worth': 488821, 'is worth that': 454089, 'worth that new': 1011443, 'that new jumper': 845328, 'new jumper you': 558999, 'jumper you ve': 467960, 've got your': 953205, 'got your eye': 359042, 'your eye on': 1023732, 'eye on protecttheworker': 294079, 'erdington': 280124, 'remembering': 710458, 'erdington food': 280125, 'are appealing': 84594, 'appealing for': 82101, 'donation during': 254592, 'crisis increased': 217548, 'mean they': 524710, 'seeing shortage': 746461, 'give if': 350531, 'can remembering': 159432, 'remembering to': 710462, 'always follow': 49561, 'erdington food bank': 280126, 'bank are appealing': 109639, 'are appealing for': 84596, 'appealing for donation': 82102, 'for donation during': 320829, 'donation during the': 254594, 'ongoing crisis increased': 607616, 'crisis increased demand': 217549, 'increased demand mean': 433279, 'demand mean they': 235852, 'mean they are': 524711, 'they are seeing': 881399, 'are seeing shortage': 89914, 'seeing shortage of': 746462, 'shortage of certain': 765103, 'of certain food': 581249, 'certain food and': 170013, 'supply please give': 825715, 'please give if': 660028, 'give if you': 350532, 'you can remembering': 1017768, 'can remembering to': 159433, 'remembering to always': 710463, 'to always follow': 900388, 'always follow the': 49562, 'advice on social': 33459, 'on social distancing': 603535, 'distancing and self': 246995, 'marney41': 517976, 'marney41 well': 517977, 'loan small': 497534, 'marney41 well fargo': 517978, 'their consumer loan': 872860, 'consumer loan small': 198067, 'they is': 882479, 'is queueing': 451178, 'queueing on': 694176, 'now onlineshopping': 575453, 'anyone know why': 80408, 'know why they': 477059, 'why they is': 991455, 'they is queueing': 882480, 'is queueing on': 451179, 'queueing on online': 694177, 'online shopping now': 609200, 'shopping now onlineshopping': 763364, 'order 20': 617983, '20 banana': 12959, 'banana and': 109302, '20 bunch': 12980, 'you order 20': 1020230, 'order 20 banana': 617984, '20 banana and': 12960, 'banana and end': 109303, 'and end up': 62115, 'end up with': 276049, 'up with 20': 946615, 'with 20 bunch': 996978, 'but not that': 146571, 'go stocking': 354168, 'for prep': 324693, 'prep don': 670002, 'don load': 253708, 'on red': 603111, 'meat get': 525593, 'get bean': 346655, 'bean pulse': 118353, 'pulse lentil': 688981, 'lentil vegetable': 486381, 'build healthy': 141980, 'system with': 831387, 'with nutritious': 999839, 'you go stocking': 1018865, 'go stocking up': 354169, 'food for prep': 314566, 'for prep don': 324694, 'prep don load': 670003, 'don load up': 253709, 'up on red': 945611, 'on red meat': 603112, 'red meat get': 705599, 'meat get bean': 525594, 'get bean pulse': 346656, 'bean pulse lentil': 118354, 'pulse lentil vegetable': 688982, 'lentil vegetable and': 486382, 'vegetable and stock': 953931, 'and stock and': 72401, 'stock and build': 801803, 'and build healthy': 59240, 'build healthy immune': 141981, 'immune system with': 417359, 'system with nutritious': 831390, 'with nutritious food': 999840, 'station worker': 796558, 'customer despite': 222300, 'crisis since': 218049, 'quarantine wa': 692679, 'wa implemented': 962353, 'implemented fuel': 418458, 'fallen with': 297188, 'all the gas': 44761, 'the gas station': 856173, 'gas station worker': 344134, 'station worker for': 796561, 'worker for continuing': 1006968, 'serve their customer': 751951, 'their customer despite': 872947, 'customer despite the': 222301, '19 crisis since': 6322, 'crisis since the': 218050, 'since the enhanced': 770878, 'community quarantine wa': 190056, 'quarantine wa implemented': 692680, 'wa implemented fuel': 962354, 'implemented fuel price': 418459, 'fuel price have': 340237, 'also fallen with': 48195, 'fallen with the': 297189, 'sitrep': 772072, 'rhodeisland': 720903, 'contributing writer': 201928, 'writer jeff': 1012808, 'jeff gross': 465009, 'gross report': 366437, 'the trench': 869954, 'trench sitrep': 931251, 'sitrep on': 772075, 'coronavirus shopping': 206757, 'supermarket rhodeisland': 822245, 'contributing writer jeff': 201929, 'writer jeff gross': 1012809, 'jeff gross report': 465010, 'gross report from': 366438, 'report from the': 711983, 'from the trench': 337907, 'the trench sitrep': 869958, 'trench sitrep on': 931252, 'sitrep on grocery': 772076, 'on grocery shopping': 601187, 'day of coronavirus': 228063, 'of coronavirus shopping': 581961, 'coronavirus shopping grocery': 206758, 'shopping grocery supermarket': 762810, 'grocery supermarket rhodeisland': 366004, 'coronavirus think': 206925, 'think supermarket': 885574, 'aisle should': 40360, 'have shopper': 382516, 'shopper all': 761344, 'way one': 969780, 'way traffic': 970135, 'traffic down': 929078, 'down this': 257340, 'this aisle': 886256, 'the coronavirus think': 851926, 'coronavirus think supermarket': 206927, 'think supermarket aisle': 885575, 'supermarket aisle should': 818843, 'aisle should have': 40362, 'should have shopper': 766092, 'have shopper all': 382517, 'shopper all going': 761345, 'all going the': 42955, 'going the same': 355482, 'same way one': 733405, 'way one way': 969781, 'one way traffic': 607385, 'way traffic down': 970136, 'traffic down this': 929079, 'down this aisle': 257341, 'this aisle and': 886257, 'aisle and up': 40199, 'and up the': 74730, 'up the next': 946196, 'next one supermarket': 561485, 'stopthemadness': 805900, 'in frenzy': 423115, 'frenzy stoppanicbuying': 332793, 'stoppanicbuying stopthemadness': 805645, 'stopthemadness stophoarding': 805901, 'scariest thing isn': 741106, 'thing isn the': 884491, 'isn the but': 454706, 'the but the': 850202, 'but the people': 147381, 'people in frenzy': 648377, 'in frenzy stoppanicbuying': 423116, 'frenzy stoppanicbuying stopthemadness': 332794, 'stoppanicbuying stopthemadness stophoarding': 805646, 'dubbed': 261504, '19 dubbed': 6667, 'dubbed natural': 261507, 'disaster by': 244190, 'by credit': 152260, 'credit agency': 216298, 'agency take': 38079, 'step now': 799598, 'finance covid': 306182, 'been labeled': 121431, 'labeled natural': 478367, 'help credit': 389551, 'score and': 742346, 'covid 19 dubbed': 212990, '19 dubbed natural': 6668, 'dubbed natural disaster': 261508, 'natural disaster by': 552822, 'disaster by credit': 244191, 'by credit agency': 152261, 'credit agency take': 216300, 'agency take step': 38080, 'take step now': 832607, 'step now to': 799599, 'now to protect': 576177, 'protect your finance': 685062, 'your finance covid': 1023864, 'finance covid 19': 306183, 'ha been labeled': 369840, 'been labeled natural': 121432, 'labeled natural disaster': 478368, 'credit agency here': 216299, 'agency here what': 38024, 'here what the': 393821, 'to help credit': 907485, 'help credit score': 389552, 'credit score and': 216502, 'score and how': 742347, 'overheard supermarket': 631247, 'worker telling': 1007891, 'telling shopper': 837256, 'shopper yesterday': 761844, 'getting 100': 348817, '100 bonus': 1847, 'much considering': 544805, 'considering they': 195432, 'overheard supermarket worker': 631249, 'supermarket worker telling': 824091, 'worker telling shopper': 1007892, 'telling shopper yesterday': 837258, 'shopper yesterday they': 761845, 'yesterday they are': 1015892, 'they are getting': 881283, 'are getting 100': 86791, 'getting 100 bonus': 348818, '100 bonus for': 1848, 'bonus for working': 134379, 'for working through': 327958, 'working through all': 1008965, 'through all this': 894309, 'all this not': 45120, 'this not very': 889177, 'not very much': 572392, 'very much considering': 955360, 'much considering they': 544806, 'considering they are': 195433, 'risk every day': 723520, 'all component': 42416, 'global and': 351738, 'and domestic': 61614, 'chain now': 170950, 'now clearly': 574385, 'clearly affected': 181484, 'to warehouse': 918332, 'all component of': 42417, 'component of the': 192555, 'the global and': 856287, 'global and domestic': 351739, 'and domestic supply': 61617, 'supply chain now': 824999, 'chain now clearly': 170951, 'now clearly affected': 574386, 'clearly affected by': 181485, '19 from consumer': 7119, 'from consumer to': 334976, 'consumer to store': 199326, 'store to warehouse': 810826, 'to warehouse to': 918334, 'warehouse to port': 966795, '1970': 12416, 'titlemax': 899307, 'trump keep': 933673, 'saying gas': 739592, 'are what': 91615, 'what there': 982381, 'in 1950': 419720, '1950 not': 12386, 'not true': 572274, 'true price': 933149, '1950 1970': 12375, '1970 wa': 12417, '30 cent': 16996, 'gallon average': 342977, 'average gas': 104844, 'the through': 869530, 'through history': 894504, 'history titlemax': 398066, 'trump keep saying': 933674, 'keep saying gas': 471903, 'saying gas price': 739593, 'price are what': 672766, 'are what there': 91616, 'what there were': 982383, 'there were in': 879320, 'were in 1950': 979769, 'in 1950 not': 419722, '1950 not true': 12387, 'not true price': 572277, 'true price of': 933150, 'price of gas': 675459, 'of gas in': 584050, 'gas in 1950': 343869, 'in 1950 1970': 419721, '1950 1970 wa': 12376, '1970 wa about': 12418, 'wa about 30': 961407, 'about 30 cent': 24694, '30 cent per': 16997, 'per gallon average': 650839, 'gallon average gas': 342978, 'average gas price': 104845, 'in the through': 429611, 'the through history': 869531, 'through history titlemax': 894505, 'locality': 498736, 'visited different': 959466, 'different locality': 241986, 'locality of': 498739, 'of city': 581427, 'ensure availability': 277893, 'of edible': 582974, 'edible at': 268541, 'commodity are': 189127, 'amp also': 53377, 'also ensured': 48163, 'all well': 45426, 'well aware': 978039, 'tackle virus': 831621, 'visited different locality': 959467, 'different locality of': 241987, 'locality of city': 498740, 'of city to': 581430, 'city to ensure': 179423, 'to ensure availability': 905143, 'ensure availability of': 277894, 'availability of edible': 104159, 'of edible at': 582975, 'edible at the': 268542, 'market and that': 515996, 'that the commodity': 846687, 'the commodity are': 851241, 'commodity are sold': 189132, 'sold at normal': 781638, 'normal price amp': 567266, 'price amp also': 672330, 'amp also ensured': 53378, 'also ensured that': 48164, 'ensured that people': 278145, 'that people all': 845685, 'people all well': 646806, 'all well aware': 45428, 'well aware about': 978040, 'about the precaution': 26485, 'the precaution and': 864205, 'and measure to': 66852, 'measure to be': 525385, 'taken to tackle': 833108, 'to tackle virus': 916141, 'tackle virus 19': 831622, 'commonwealth': 189511, 'found document': 330192, 'document from': 251192, 'from commonwealth': 334925, 'commonwealth of': 189512, 'of massachusetts': 586289, 'massachusetts office': 519917, 'business regulation': 144302, 'regulation division': 708063, 'bank that': 110231, 'that share': 846225, 'share recommendation': 755199, 'bank could': 109742, 'could support': 209739, 'online just found': 608453, 'just found document': 468768, 'found document from': 330193, 'document from march': 251193, '16 2020 from': 4067, '2020 from commonwealth': 14317, 'from commonwealth of': 334926, 'commonwealth of massachusetts': 189513, 'of massachusetts office': 586290, 'massachusetts office of': 519918, 'affair and business': 33995, 'and business regulation': 59300, 'business regulation division': 144303, 'regulation division of': 708064, 'division of bank': 248679, 'of bank that': 580541, 'bank that share': 110234, 'that share recommendation': 846227, 'share recommendation for': 755200, 'recommendation for how': 704746, 'for how bank': 322417, 'how bank could': 407443, 'bank could support': 109744, 'could support their': 209741, 'support their customer': 826898, 'their customer during': 872948, 'during this health': 263291, 'thread they': 893605, 'they tell': 883536, 'tell to': 837115, 'stayhomesavelives agree': 798333, 'day haven': 227738, 'they forced': 882131, 'forced me': 328585, 'advised of': 33634, 'thread they tell': 893606, 'they tell to': 883539, 'tell to stayhomesavelives': 837117, 'to stayhomesavelives agree': 915345, 'stayhomesavelives agree but': 798334, 'can have been': 158575, 'have been trying': 379726, 'trying to deliver': 934795, 'deliver food for': 233122, 'past day haven': 643519, 'day haven left': 227739, 'haven left the': 383851, 'house for day': 406304, 'for day but': 320566, 'but today they': 147606, 'today they forced': 920320, 'they forced me': 882132, 'forced me to': 328586, 'have been advised': 379461, 'been advised of': 120615, 'advised of the': 33635, 'depreciated': 237558, 'the wealthy': 871242, 'wealthy elite': 974201, 'elite and': 271510, 'and banker': 58683, 'banker will': 110393, 'this an': 886316, 'up depreciated': 944708, 'depreciated asset': 237559, 'at fire': 98648, 'fire sale': 308114, 'price stayathome': 676630, 'the wealthy elite': 871243, 'wealthy elite and': 974202, 'elite and banker': 271511, 'and banker will': 58687, 'banker will look': 110394, 'at this an': 101222, 'this an opportunity': 886321, 'opportunity to buy': 613696, 'to buy up': 902330, 'buy up depreciated': 149411, 'up depreciated asset': 944709, 'depreciated asset at': 237560, 'asset at fire': 96418, 'at fire sale': 98649, 'fire sale price': 308115, 'sale price stayathome': 732465, 'worst than': 1011272, 'but our': 146720, 'our mtn': 623959, 'mtn is': 544632, 'is looting': 449454, 'looting instead': 503259, 'is worst than': 454079, 'worst than covid': 1011274, '19 all business': 4893, 'all business have': 42234, 'business have reduced': 143831, 'their price but': 874381, 'price but our': 672986, 'but our mtn': 146727, 'our mtn is': 623960, 'mtn is looting': 544633, 'is looting instead': 449455, 'looting instead of': 503260, 'of giving free': 584139, 'giving free data': 351292, 'sense how': 750531, 'of fast': 583441, 'restaurant non': 716592, 'about 100': 24633, 'that possibly': 845793, 'possibly stop': 665957, 'spreading any': 790927, 'any le': 79396, 'le 19': 482816, 'doesn make sense': 251878, 'make sense how': 510440, 'sense how we': 750532, 'can go inside': 158500, 'go inside of': 353731, 'inside of fast': 439333, 'of fast food': 583442, 'food restaurant non': 316195, 'restaurant non essential': 716593, 'essential business but': 280841, 'business but we': 143471, 'inside of grocery': 439334, 'store with about': 811363, 'with about 100': 997079, 'about 100 people': 24635, 'in it how': 424250, 'it how can': 458648, 'how can that': 407522, 'can that possibly': 159946, 'that possibly stop': 845794, 'possibly stop the': 665958, 'stop the from': 805131, 'the from spreading': 855836, 'from spreading any': 337388, 'spreading any le': 790928, 'any le 19': 79397, 'associate tested': 96895, 'change or': 172208, 'or pre': 616669, 'pre caution': 669144, 'caution at': 168161, 'unfortunately in the': 941614, 'in the retail': 429514, 'retail store work': 718732, 'at an associate': 97978, 'an associate tested': 55451, 'associate tested positive': 96896, '19 he wa': 7478, 'he wa sent': 385615, 'wa sent home': 963166, 'sent home and': 750756, 'home and we': 400712, 'still working with': 801445, 'with no change': 999739, 'no change or': 563789, 'change or pre': 172210, 'or pre caution': 616670, 'pre caution at': 669145, 'caution at all': 168162, 'draconian': 258131, 'congested': 194408, 'cornoabollocks': 203730, 'so nobody': 777890, 'nobody can': 565984, 'for deserted': 320661, 'deserted walk': 238011, 'walk where': 964920, 'where no': 985051, 'around without': 93646, 'without being': 1002518, 'being arrested': 124861, 'arrested draconian': 93828, 'draconian but': 258132, 'hey carry': 394346, 'on queuing': 603054, 'and congested': 60301, 'congested let': 194409, 'let herd': 486792, 'herd immunity': 392608, 'immunity really': 417426, 'really kick': 702364, 'in cornoabollocks': 421793, 'so nobody can': 777891, 'nobody can go': 565985, 'go for deserted': 353555, 'for deserted walk': 320662, 'deserted walk where': 238012, 'walk where no': 964922, 'where no people': 985053, 'no people around': 565093, 'people around without': 647147, 'around without being': 93647, 'without being arrested': 1002521, 'being arrested draconian': 124862, 'arrested draconian but': 93829, 'draconian but hey': 258133, 'but hey carry': 145930, 'hey carry on': 394347, 'carry on queuing': 165127, 'on queuing at': 603055, 'supermarket and walk': 819099, 'and walk where': 75142, 'walk where it': 964921, 'where it nice': 984971, 'it nice and': 459801, 'nice and congested': 562337, 'and congested let': 60302, 'congested let herd': 194410, 'let herd immunity': 486793, 'herd immunity really': 392612, 'immunity really kick': 417427, 'really kick in': 702365, 'kick in cornoabollocks': 473787, 'worker put': 1007648, 'catching shameful': 167103, 'shameful shopper': 754700, 'leave dirty': 484769, 'dirty mask': 243765, 'glove via': 353004, 'store worker put': 811566, 'worker put at': 1007649, 'of catching shameful': 581209, 'catching shameful shopper': 167104, 'shameful shopper leave': 754701, 'shopper leave dirty': 761590, 'leave dirty mask': 484770, 'dirty mask and': 243766, 'and glove via': 63743, 'calmness': 156871, 'tannoy': 834268, 'felt brave': 303364, 'brave enough': 138210, 'risk stampede': 723899, 'stampede in': 793444, 'today seemed': 920152, 'seemed an': 746713, 'acceptance of': 28043, 'respect calmness': 714970, 'calmness there': 156872, 'wa plus': 962951, 'constant tannoy': 195637, 'tannoy message': 834274, 'remind of': 710494, 'brought in': 141161, 'in single': 427978, 'single purchase': 771389, 'purchase asda': 689361, 'asda lockdownuknow': 94942, 'felt brave enough': 303365, 'brave enough to': 138211, 'enough to risk': 277721, 'to risk stampede': 913603, 'risk stampede in': 723900, 'stampede in supermarket': 793445, 'supermarket today seemed': 823463, 'today seemed an': 920153, 'seemed an acceptance': 746714, 'an acceptance of': 55059, 'acceptance of we': 28045, 'this together with': 890789, 'the respect calmness': 865601, 'respect calmness there': 714971, 'calmness there wa': 156873, 'there wa plus': 879263, 'wa plus the': 962952, 'plus the constant': 661692, 'the constant tannoy': 851479, 'constant tannoy message': 195638, 'tannoy message to': 834275, 'message to remind': 529458, 'to remind of': 913201, 'remind of what': 710495, 'of what can': 593048, 'can be brought': 157596, 'be brought in': 113920, 'brought in single': 141165, 'in single purchase': 427980, 'single purchase asda': 771390, 'purchase asda lockdownuknow': 689362, '41': 18852, 'least 41': 484361, '41 grocery': 18863, 'more have': 539392, 'week groceryworkers': 976289, 'washington post at': 967788, 'post at least': 666010, 'at least 41': 99452, 'least 41 grocery': 484362, '41 grocery worker': 18865, 'grocery worker have': 366173, 'worker have died': 1007084, 'died of the': 241595, 'the and thousand': 848728, 'and thousand more': 74063, 'thousand more have': 893416, 'more have tested': 539393, 'tested positive in': 839350, 'positive in recent': 665354, 'recent week groceryworkers': 704017, 'programmatic': 683327, 'month became': 537601, 'second most': 743768, 'common word': 189488, 'on keyword': 601760, 'keyword block': 473568, 'block list': 132788, 'for news': 323847, 'news publisher': 560719, 'publisher find': 688722, 'for programmatic': 324801, 'programmatic ad': 683328, 'ad price': 31144, 'here via': 393768, 'via digitalmarketing': 955918, 'last month became': 480327, 'month became the': 537602, 'became the second': 118893, 'the second most': 866585, 'second most common': 743769, 'most common word': 542191, 'common word on': 189489, 'word on keyword': 1004544, 'on keyword block': 601761, 'keyword block list': 473569, 'block list for': 132789, 'list for news': 494328, 'for news publisher': 323849, 'news publisher find': 560720, 'publisher find out': 688723, 'out what this': 627816, 'mean for programmatic': 524449, 'for programmatic ad': 324802, 'programmatic ad price': 683329, 'ad price here': 31146, 'price here via': 674506, 'here via digitalmarketing': 393769, 'strong thread': 814137, 'strong thread on': 814138, 'thread on changing': 893586, 'on changing consumer': 599871, 'amazingly': 50818, 'wishshopping': 996893, 'blasting': 132422, 'n95masks this': 551272, 'is amazingly': 445610, 'amazingly ed': 50821, 'ed up': 268464, 'max price': 520771, 'on wish': 605333, 'wish no': 996798, 'your team': 1026116, 'is regulating': 451397, 'regulating this': 708035, 'this problem': 889723, 'problem wishshopping': 679748, 'wishshopping long': 996894, 'up ll': 945337, 'be blasting': 113871, 'blasting you': 132427, 'twitter until': 936733, 'you fix': 1018596, 'n95masks this is': 551273, 'this is amazingly': 888173, 'is amazingly ed': 445611, 'amazingly ed up': 50822, 'ed up to': 268465, 'the max price': 860305, 'max price gouging': 520772, 'gouging is on': 359364, 'is on wish': 450492, 'on wish no': 605334, 'wish no one': 996799, 'no one on': 564951, 'one on your': 606790, 'on your team': 605507, 'your team is': 1026118, 'team is regulating': 835703, 'is regulating this': 451398, 'regulating this problem': 708036, 'this problem wishshopping': 889727, 'problem wishshopping long': 679749, 'wishshopping long it': 996895, 'long it up': 501469, 'it up ll': 461963, 'up ll be': 945338, 'll be blasting': 496574, 'be blasting you': 113872, 'blasting you on': 132428, 'you on twitter': 1020194, 'on twitter until': 604931, 'twitter until you': 936734, 'until you fix': 943939, 'you fix this': 1018597, 'fix this crap': 309759, 'zayd': 1027260, 'official notice': 595855, 'notice zayd': 573414, 'zayd design': 1027261, 'design will': 238272, 'closing from': 183646, 'store till': 810737, 'till further': 896022, 'going round': 355435, 'round this': 726368, 'is precautionary': 450982, 'measure we': 525421, 'we and': 970425, 'safe thank': 730010, 'you management': 1019775, 'official notice zayd': 595856, 'notice zayd design': 573415, 'zayd design will': 1027262, 'design will be': 238273, 'be closing from': 114145, 'closing from all': 183647, 'from all it': 334434, 'all it retail': 43275, 'it retail and': 460744, 'retail and online': 717832, 'and online store': 68123, 'online store till': 609477, 'store till further': 810738, 'till further notice': 896023, 'to the deadly': 916626, '19 going round': 7237, 'going round this': 355437, 'round this is': 726370, 'this is precautionary': 888361, 'is precautionary measure': 450983, 'precautionary measure we': 669432, 'measure we are': 525422, 'taking to ensure': 833632, 'ensure we and': 278119, 'we and our': 970426, 'and our customer': 68483, 'our customer are': 622651, 'customer are safe': 222127, 'are safe thank': 89793, 'safe thank you': 730011, 'thank you management': 841773, 'yourself why': 1026758, 'government doesn': 360039, 'doesn bother': 251717, 'bother closing': 136113, 'or limiting': 615972, 'time clothes': 896486, 'clothes shop': 184202, 'store sport': 810285, 'sport store': 789981, 'store home': 808168, 'improvement store': 419587, 'ask yourself why': 95695, 'yourself why the': 1026759, 'the government doesn': 856529, 'government doesn bother': 360040, 'doesn bother closing': 251718, 'bother closing or': 136114, 'closing or limiting': 183713, 'or limiting the': 615974, 'in this type': 430035, 'type of store': 937588, 'of store at': 590241, 'one time clothes': 607254, 'time clothes shop': 896487, 'clothes shop grocery': 184203, 'shop grocery store': 760246, 'grocery store sport': 365792, 'store sport store': 810286, 'sport store home': 789982, 'store home improvement': 808169, 'home improvement store': 401407, 'improvement store like': 419589, 'store like what': 808739, 'like what they': 491797, 'they do to': 881978, 'do to restaurant': 250402, 'toiletpaper crisis': 921902, 'just eating': 468662, 'eating le': 266244, 'alternative to the': 49274, 'to the toiletpaper': 917135, 'the toiletpaper crisis': 869723, 'toiletpaper crisis could': 921903, 'crisis could be': 217263, 'could be just': 208890, 'be just eating': 115584, 'just eating le': 468663, 'you happen': 1018997, 'to goto': 906918, 'goto the': 359059, 'are confronted': 85494, 'confronted by': 194303, 'mass of': 519819, 'of idiot': 584965, 'idiot wearing': 413630, 'wearing pjs': 974759, 'pjs stocking': 657249, 'up look': 945345, 'look around': 502241, 'around bet': 93225, 'bet most': 128087, 'them would': 876666, 'do just': 249537, 'fine if': 307644, 'they missed': 882686, 'missed meal': 534242, 'if you happen': 415450, 'you happen to': 1018998, 'happen to goto': 377180, 'to goto the': 906920, 'goto the grocery': 359060, 'store are confronted': 806467, 'are confronted by': 85495, 'confronted by mass': 194304, 'by mass of': 153181, 'mass of idiot': 519820, 'of idiot wearing': 584967, 'idiot wearing pjs': 413631, 'wearing pjs stocking': 974760, 'pjs stocking up': 657250, 'stocking up look': 803620, 'up look around': 945346, 'look around bet': 502244, 'around bet most': 93226, 'bet most of': 128088, 'most of them': 542562, 'of them would': 591778, 'them would do': 876667, 'would do just': 1011766, 'do just fine': 249538, 'just fine if': 468723, 'fine if they': 307645, 'if they missed': 415118, 'they missed meal': 882687, 'missed meal or': 534243, 'meal or just': 524230, 'or just saying': 615890, 'embarrased': 272430, 'piling is': 656608, 'disgusting care': 245398, 'elderly struggling': 270899, 'be embarrased': 114664, 'embarrased if': 272431, 'never realised': 558148, 'realised this': 701635, 'this stock piling': 890335, 'stock piling is': 802665, 'piling is disgusting': 656609, 'is disgusting care': 447219, 'disgusting care home': 245399, 'care home and': 163990, 'and elderly struggling': 61995, 'elderly struggling for': 270900, 'for food because': 321556, 'should be embarrased': 765614, 'be embarrased if': 114665, 'embarrased if they': 272432, 'they re part': 883091, 'this never realised': 889107, 'never realised this': 558149, 'realised this wa': 701636, 'atlantic': 101857, 'netde': 557579, 'wawa': 969413, 'major franchise': 509343, 'franchise and': 331061, 'state close': 795460, 'this mid': 888848, 'mid atlantic': 530554, 'atlantic chain': 101862, 'chain plan': 170989, 'maintain it': 508985, 'it gas': 458202, 'gas and': 343759, 'many consider': 513927, 'consider essential': 194995, 'essential even': 281017, 'pandemic netde': 636019, 'netde wawa': 557580, 'major franchise and': 509344, 'franchise and retailer': 331062, 'and retailer across': 70452, 'across the united': 29531, 'united state close': 942209, 'state close their': 795462, 'door to mitigate': 255754, 'the this mid': 869489, 'this mid atlantic': 888849, 'mid atlantic chain': 530555, 'atlantic chain plan': 101863, 'chain plan to': 170990, 'plan to maintain': 658300, 'to maintain it': 909579, 'maintain it gas': 508986, 'it gas and': 458203, 'gas and grocery': 343763, 'and grocery service': 63999, 'grocery service that': 364950, 'service that many': 752923, 'that many consider': 845024, 'many consider essential': 513928, 'consider essential even': 194996, 'essential even during': 281018, 'even during pandemic': 284027, 'during pandemic netde': 262881, 'pandemic netde wawa': 636020, 'disembarking': 245298, 'who week': 989942, 'created panic': 215872, 'no policy': 565139, 'stop 2500': 804414, '2500 people': 16035, 'people disembarking': 647668, 'disembarking from': 245299, 'from ship': 337252, 'ship in': 758681, 'board need': 133650, 'be replaced': 116796, 'replaced and': 711600, 'and quickly': 69880, 'quickly man': 694557, 'who ta': 989726, 'one who week': 607463, 'who week ago': 989943, 'week ago told': 975863, 'ago told to': 38527, 'told to stockpile': 923769, 'food and created': 313205, 'and created panic': 60709, 'created panic and': 215873, 'panic and ha': 637314, 'ha no policy': 371348, 'no policy to': 565140, 'policy to stop': 663529, 'to stop 2500': 915496, 'stop 2500 people': 804415, '2500 people disembarking': 16036, 'people disembarking from': 647669, 'disembarking from ship': 245300, 'from ship in': 337253, 'ship in sydney': 758683, 'sydney with covid': 830731, '19 on board': 8931, 'on board need': 599664, 'board need to': 133651, 'to be replaced': 901500, 'be replaced and': 116797, 'replaced and quickly': 711601, 'and quickly man': 69883, 'quickly man who': 694558, 'man who ta': 512339, 'africanhistoryclass': 35238, 'taxidrivershow': 835176, 'taxijam': 835179, 'blackpot': 132211, 'evangelist3': 283751, 'the pharmacist': 863642, 'pharmacist to': 654183, 'of sanitizers': 589305, 'sanitizers how': 736310, 'be cruel': 114305, 'cruel to': 219681, 'own africanhistoryclass': 631870, 'africanhistoryclass taxidrivershow': 35239, 'taxidrivershow taxijam': 835177, 'taxijam blackpot': 835180, 'blackpot evangelist3': 132212, 'evangelist3 sly': 283752, 'sly ba': 774737, 'please tell the': 660650, 'tell the pharmacist': 837089, 'the pharmacist to': 863645, 'pharmacist to lower': 654185, 'price of sanitizers': 675564, 'of sanitizers how': 589311, 'sanitizers how can': 736311, 'can we be': 160162, 'we be cruel': 970816, 'be cruel to': 114306, 'cruel to our': 219682, 'to our own': 911227, 'our own africanhistoryclass': 624197, 'own africanhistoryclass taxidrivershow': 631871, 'africanhistoryclass taxidrivershow taxijam': 35240, 'taxidrivershow taxijam blackpot': 835178, 'taxijam blackpot evangelist3': 835181, 'blackpot evangelist3 sly': 132213, 'evangelist3 sly ba': 283753, 'tabata': 831442, 'zumba': 1027891, 'mengeratkan': 528595, 'hubungan': 409887, 'silaturahim': 769686, 'inhouse': 438470, 'this movement': 889050, 'restriction permit': 717360, 'permit to': 652164, 'do workout': 250599, 'workout tabata': 1009176, 'tabata zumba': 831443, 'zumba watch': 1027894, 'food screw': 316322, 'for instant': 322613, 'noodle sleep': 566817, 'sleep early': 773762, 'early mengeratkan': 264647, 'mengeratkan hubungan': 528596, 'hubungan silaturahim': 409888, 'silaturahim with': 769687, 'family only': 298122, 'only applied': 610099, 'those inhouse': 892122, 'inhouse ppl': 438473, 'this movement restriction': 889051, 'movement restriction permit': 543929, 'restriction permit to': 717361, 'permit to do': 652165, 'do something that': 250155, 'that we suppose': 847398, 'suppose to do': 827325, 'to do workout': 904595, 'do workout tabata': 250601, 'workout tabata zumba': 1009177, 'tabata zumba watch': 831445, 'zumba watch out': 1027895, 'watch out on': 968502, 'out on our': 626914, 'our food screw': 623127, 'food screw the': 316323, 'screw the panic': 742807, 'the panic shop': 863217, 'panic shop for': 638543, 'shop for instant': 760190, 'for instant noodle': 322614, 'instant noodle sleep': 440110, 'noodle sleep early': 566818, 'sleep early mengeratkan': 773763, 'early mengeratkan hubungan': 264648, 'mengeratkan hubungan silaturahim': 528597, 'hubungan silaturahim with': 409889, 'silaturahim with family': 769688, 'with family only': 998382, 'family only applied': 298123, 'only applied to': 610100, 'applied to those': 82506, 'to those inhouse': 917509, 'those inhouse ppl': 892123, 'compromising': 192696, 'compromising on': 192697, 'on regulatory': 603128, 'regulatory oversight': 708180, 'oversight ha': 631515, 'normal rich': 567292, 'rich country': 721209, 'country say': 211031, 'say situation': 739142, 'situation demand': 772235, 'it poor': 460381, 'say hope': 738767, 'compromising on regulatory': 192698, 'on regulatory oversight': 603130, 'regulatory oversight ha': 708181, 'oversight ha become': 631516, 'new normal rich': 559168, 'normal rich country': 567293, 'rich country say': 721210, 'country say situation': 211033, 'say situation demand': 739143, 'situation demand it': 772237, 'demand it poor': 235756, 'it poor country': 460382, 'poor country say': 664155, 'country say hope': 211032, 'say hope you': 738768, 'you understand the': 1021967, 'understand the situation': 940775, 'the situation now': 867267, 'hi do': 394624, 'enough out': 277550, 'there high': 878477, 'demand cancelling': 235103, 'cancelling my': 161216, 'hi do you': 394626, 'you not think': 1020132, 'not think that': 572087, 'think that you': 885619, 'are doing well': 85938, 'doing well enough': 252832, 'well enough out': 978225, 'enough out of': 277551, 'current pandemic raising': 221296, 'pandemic raising price': 636286, 'raising price because': 696108, 'price because you': 672869, 'because you know': 119870, 'that there high': 846898, 'there high demand': 878478, 'high demand cancelling': 394996, 'demand cancelling my': 235104, 'cancelling my order': 161217, 'indian railway': 434870, 'railway withdrew': 695727, 'ticket the indian': 895669, 'the indian railway': 858125, 'indian railway withdrew': 434873, 'railway withdrew most': 695728, 'stayaway6feet': 797820, 'providence': 686674, 'rhode': 720901, 'today adventure': 919150, 'adventure at': 33089, 'socialdistancing stayaway6feet': 780731, 'stayaway6feet providence': 797821, 'providence ri': 686679, 'ri providence': 720932, 'providence rhode': 686675, 'rhode island': 720902, 'today adventure at': 919151, 'adventure at the': 33090, 'store socialdistancing stayaway6feet': 810254, 'socialdistancing stayaway6feet providence': 780732, 'stayaway6feet providence ri': 797822, 'providence ri providence': 686680, 'ri providence rhode': 720933, 'providence rhode island': 686676, 'retail produce': 718420, 'sale spike': 732542, 'spike consumer': 789272, 'consumer react': 198640, 'react to': 700146, 'retail produce sale': 718421, 'produce sale spike': 680421, 'sale spike consumer': 732543, 'spike consumer react': 789273, 'consumer react to': 198641, 'react to covid': 700150, 'already down': 47304, 'down 00': 256367, '00 pt': 449, 'pt due': 687603, 'to trump': 917798, 'trump covid': 933495, 'update am': 946851, 'am preparing': 50319, 'some low': 783239, 'great company': 362584, 'company tomorrow': 191251, 'no growth': 564385, 'growth until': 367471, 'we hit': 972021, 'hit bottom': 398168, 'bottom which': 136445, 'which believe': 985715, 'agreement with you': 38814, 'with you the': 1002165, 'you the market': 1021604, 'is already down': 445518, 'already down 00': 47305, 'down 00 pt': 256368, '00 pt due': 450, 'pt due to': 687604, 'due to trump': 262006, 'to trump covid': 917800, 'trump covid 19': 933496, '19 update am': 11654, 'update am preparing': 946852, 'am preparing for': 50320, 'preparing for some': 670338, 'for some low': 325752, 'some low price': 783240, 'low price from': 505515, 'from some great': 337339, 'some great company': 782984, 'great company tomorrow': 362585, 'company tomorrow and': 191252, 'tomorrow and throughout': 924026, 'and throughout this': 74092, 'throughout this week': 894998, 'this week no': 891237, 'week no growth': 976565, 'no growth until': 564386, 'growth until we': 367472, 'until we hit': 943925, 'we hit bottom': 972022, 'hit bottom which': 398169, 'bottom which believe': 136446, 'which believe is': 985716, 'believe is so': 126297, 'isolationessentials': 455532, 'at airport': 97857, 'airport security': 40118, 'security when': 744793, 're queuing': 699342, 'supermarket nobody': 821625, 'nobody really': 566049, 'really know': 702370, 'the etiquette': 854550, 'etiquette lockdown': 283154, 'lockdownuk isolationlife': 500416, 'isolationlife isolation': 455542, 'isolation isolationessentials': 455324, 'they re at': 882998, 're at airport': 698320, 'at airport security': 97858, 'airport security when': 40119, 'security when they': 744794, 'they re queuing': 883105, 're queuing up': 699343, 'queuing up at': 694241, 'the supermarket nobody': 868714, 'supermarket nobody really': 821627, 'nobody really know': 566050, 'really know the': 702371, 'know the etiquette': 476820, 'the etiquette lockdown': 854551, 'etiquette lockdown lockdownuk': 283155, 'lockdown lockdownuk isolationlife': 499623, 'lockdownuk isolationlife isolation': 500417, 'isolationlife isolation isolationessentials': 455543, 'vikramch': 957296, 'stay for': 796875, 'of quarter': 588676, 'quarter before': 693233, 'it disappears': 457561, 'disappears from': 244085, 'consumer mind': 198130, 'mind say': 532718, 'say vikramch': 739443, 'vikramch 19': 957297, 'thought of social': 893150, 'distancing is going': 247245, 'to stay for': 915287, 'stay for couple': 796876, 'couple of quarter': 211646, 'of quarter before': 588677, 'quarter before it': 693234, 'before it disappears': 122879, 'it disappears from': 457562, 'disappears from the': 244086, 'the consumer mind': 851560, 'consumer mind say': 198132, 'mind say vikramch': 532719, 'say vikramch 19': 739444, '2019 d2c': 13957, 'd2c ecommerce': 224196, 'sale reached': 732478, 'reached 14': 700023, '14 28': 3396, '28 billion': 16382, 'in per': 426606, 'per forecast': 650836, 'forecast 2020': 328800, 'sale will': 732650, 'will grow': 993578, 'grow by': 367012, 'by 24': 151599, '24 to': 15696, '17 75': 4324, '75 billion': 22115, 'billion impact': 130832, 'on d2c': 600199, 'd2c sale': 224206, 'sale unknown': 732609, 'unknown tho': 942544, 'tho they': 891692, 'they anticipate': 881169, 'anticipate the': 78445, 'mounting challenge': 543441, 'in 2019 d2c': 419803, '2019 d2c ecommerce': 13958, 'd2c ecommerce sale': 224197, 'ecommerce sale reached': 266857, 'sale reached 14': 732479, 'reached 14 28': 700024, '14 28 billion': 3397, '28 billion in': 16383, 'billion in per': 130850, 'in per forecast': 426608, 'per forecast 2020': 650837, 'forecast 2020 sale': 328801, '2020 sale will': 14585, 'sale will grow': 732653, 'will grow by': 993580, 'grow by 24': 367014, 'by 24 to': 151600, '24 to 17': 15697, 'to 17 75': 899524, '17 75 billion': 4325, '75 billion impact': 22116, 'billion impact of': 130833, 'of on d2c': 587212, 'on d2c sale': 600200, 'd2c sale unknown': 224207, 'sale unknown tho': 732610, 'unknown tho they': 942545, 'tho they anticipate': 891693, 'they anticipate the': 881171, 'anticipate the sector': 78446, 'the sector will': 866622, 'sector will face': 744403, 'will face mounting': 993391, 'face mounting challenge': 294626, 'qr': 691592, 'no cashier': 563775, 'just scan': 469720, 'scan the': 740710, 'the qr': 864942, 'qr or': 691597, 'take what': 832791, 'want paying': 965891, 'paying self': 645478, 'no cashier just': 563776, 'cashier just scan': 166559, 'just scan the': 469721, 'scan the qr': 740711, 'the qr or': 864943, 'qr or put': 691598, 'or put the': 616751, 'put the money': 690863, 'the money in': 860814, 'the box and': 849917, 'box and take': 137011, 'and take what': 72982, 'take what you': 832794, 'you want paying': 1022150, 'want paying self': 965892, 'paying self quarantine': 645479, 'worker status': 1007809, 'status confirmed': 796667, 'confirmed by': 194130, 'by management': 153152, 'management today': 512649, 'office will': 595592, 'usual looking': 950969, 'free pizza': 332063, 'priority supermarket': 678664, 'happen coronacrisis': 377070, 'key worker status': 473513, 'worker status confirmed': 1007810, 'status confirmed by': 796668, 'confirmed by management': 194132, 'by management today': 153153, 'management today via': 512650, 'today via email': 920436, 'via email the': 955955, 'email the office': 272335, 'the office will': 862085, 'office will not': 595594, 'will not close': 994197, 'not close and': 568773, 'close and it': 182530, 'will be business': 992384, 'business usual looking': 144606, 'usual looking forward': 950970, 'forward to free': 330025, 'to free pizza': 906236, 'free pizza and': 332064, 'pizza and priority': 657150, 'and priority supermarket': 69514, 'priority supermarket entry': 678666, 'entry this will': 279025, 'will not happen': 994227, 'not happen coronacrisis': 569785, 'shielded': 758185, '22341': 15284, 'have letter': 381309, 'nh saying': 562056, 'saying shielded': 739678, 'shielded risk': 758192, 'serious illness': 751407, 'illness trying': 416407, 'shop sainsbury': 760732, 'don recognise': 253857, 'recognise you': 704600, 'you vulnerable': 1022093, 'vulnerable morrison': 961045, 'supermarket 22341': 818746, '22341 in': 15285, 'queue waitrose': 694122, 'waitrose next': 964463, 'available july': 104470, 'july tesco': 467820, 'have letter from': 381310, 'the nh saying': 861760, 'nh saying shielded': 562057, 'saying shielded risk': 739679, 'shielded risk is': 758193, 'risk is high': 723640, 'is high of': 448447, 'high of serious': 395193, 'of serious illness': 589521, 'serious illness trying': 751408, 'illness trying to': 416408, 'to do an': 904477, 'do an online': 249061, 'online grocery shop': 608330, 'grocery shop sainsbury': 364977, 'shop sainsbury supermarket': 760733, 'sainsbury supermarket we': 731729, 'supermarket we don': 823743, 'we don recognise': 971392, 'don recognise you': 253859, 'recognise you vulnerable': 704601, 'you vulnerable morrison': 1022094, 'vulnerable morrison supermarket': 961046, 'morrison supermarket 22341': 541756, 'supermarket 22341 in': 818747, '22341 in the': 15286, 'the queue waitrose': 865057, 'queue waitrose next': 694123, 'waitrose next available': 964464, 'next available july': 561291, 'available july tesco': 104471, 'with demand calling': 997973, '03 26': 866, '26 berlin': 16155, 'berlin panic': 127344, 'corona new': 204068, 'dreamstime download': 258648, 'download now': 257601, 'disease store': 245239, 'buy isolation': 148842, 'isolation shelf': 455425, 'shelf shelf': 757506, 'shelf home': 757160, 'home supermarket': 402173, '2020 03 26': 14083, '03 26 berlin': 867, '26 berlin panic': 16156, 'berlin panic buying': 127345, 'buying for corona': 150352, 'for corona new': 320367, 'corona new on': 204069, 'new on dreamstime': 559196, 'on dreamstime download': 600410, 'dreamstime download now': 258649, 'download now pandemic': 257602, 'now pandemic disease': 575509, 'pandemic disease store': 635307, 'disease store buy': 245240, 'store buy isolation': 806822, 'buy isolation shelf': 148843, 'isolation shelf shelf': 455426, 'shelf shelf home': 757507, 'shelf home supermarket': 757161, 'economy come': 267764, 'come through': 187543, 'through trade': 894871, 'anything anymore': 80689, 'anymore trumpcrash': 80157, 'driven economy come': 259313, 'economy come through': 267765, 'come through trade': 187546, 'through trade with': 894872, 'china we don': 177051, 'we don make': 971387, 'don make anything': 253717, 'make anything anymore': 509715, 'anything anymore trumpcrash': 80690, 'anymore trumpcrash trumpplague': 80158, 'uk lockdown': 938517, 'lockdown continues': 499260, 'bite due': 131860, 'watch the economic': 968541, 'the uk lockdown': 870245, 'uk lockdown continues': 938518, 'lockdown continues to': 499263, 'continues to bite': 201461, 'to bite due': 901828, 'bite due to': 131861, 'bank in london': 109921, 'in london are': 424876, 'london are experiencing': 501025, 'demand more on': 235890, 'share food': 755005, 'food dont': 314273, 'dont stock': 255287, 'stock it': 802319, 'up flu': 944863, 'flu chinesevirus': 311393, 'chinesevirus staysafestayhome': 177450, 'share food dont': 755006, 'food dont stock': 314274, 'dont stock it': 255288, 'stock it up': 802324, 'it up flu': 461958, 'up flu chinesevirus': 944864, 'flu chinesevirus staysafestayhome': 311394, 'nationalised': 552660, 'via maybe': 956072, 'maybe supermarket': 521812, 'be nationalised': 116051, 'nationalised how': 552661, 'ya like': 1014009, 'them apple': 875411, 'buying via maybe': 151312, 'via maybe supermarket': 956073, 'maybe supermarket need': 521813, 'to be nationalised': 901401, 'be nationalised how': 116052, 'nationalised how do': 552662, 'how do ya': 407732, 'do ya like': 250609, 'ya like them': 1014010, 'like them apple': 491416, 'them apple and': 875412, 'how root': 408603, 'root cause': 726015, 'crisis affect': 216980, 'people adapt': 646772, 'example of panic': 288940, 'buying and how': 149914, 'and how root': 64833, 'how root cause': 408604, 'root cause of': 726016, 'cause of crisis': 167678, 'of crisis affect': 582148, 'crisis affect how': 216981, 'affect how people': 34167, 'how people adapt': 408493, 'people adapt to': 646773, 'adapt to new': 31284, 'wurst': 1013606, 'humous': 410952, 'taramasalata': 834415, 'signalling': 769337, '19 favourite': 6949, 'favourite so': 300611, 'far german': 298787, 'german panic': 346234, 'ha mean': 371260, 'of sausage': 589328, 'sausage it': 737409, 'the wurst': 872127, 'wurst se': 1013607, 'se scenario': 743058, 'scenario in': 741263, 'in greece': 423420, 'greece humous': 363341, 'humous and': 410953, 'and taramasalata': 73030, 'taramasalata wa': 834416, 'shelf potentially': 757427, 'potentially signalling': 667243, 'signalling double': 769340, 'double dip': 256004, 'dip recession': 243210, 'of my covid': 586750, 'covid 19 favourite': 213079, '19 favourite so': 6950, 'favourite so far': 300612, 'so far german': 777030, 'far german panic': 298788, 'german panic buying': 346235, 'buying ha mean': 150443, 'ha mean that': 371261, 'mean that supermarket': 524686, 'that supermarket have': 846569, 'supermarket have run': 820706, 'out of sausage': 626822, 'of sausage it': 589329, 'sausage it the': 737410, 'it the wurst': 461590, 'the wurst se': 872128, 'wurst se scenario': 1013608, 'se scenario in': 743059, 'scenario in greece': 741264, 'in greece humous': 423423, 'greece humous and': 363342, 'humous and taramasalata': 410954, 'and taramasalata wa': 73031, 'taramasalata wa missing': 834417, 'wa missing from': 962637, 'missing from all': 534297, 'from all supermarket': 334439, 'supermarket shelf potentially': 822512, 'shelf potentially signalling': 757428, 'potentially signalling double': 667244, 'signalling double dip': 769341, 'double dip recession': 256005, 'buying pg': 150902, 'pg 13': 653938, '13 language': 3227, 'language with': 479502, 'pandemic upon': 636886, 'upon people': 947647, 'crazy hoarding': 215315, 'this certainly': 886725, 'certainly isn': 170159, 'ha occurred': 371414, 'occurred ordinary': 579047, 'ordinary thing': 619101, 'thing look': 884565, 'history of panic': 398041, 'panic buying pg': 637847, 'buying pg 13': 150903, 'pg 13 language': 653939, '13 language with': 3228, 'language with the': 479503, '19 pandemic upon': 9515, 'pandemic upon people': 636888, 'upon people have': 947648, 'have been going': 379559, 'been going crazy': 121219, 'going crazy hoarding': 355097, 'crazy hoarding food': 215316, 'other supply but': 621037, 'supply but this': 824870, 'but this certainly': 147543, 'this certainly isn': 886726, 'certainly isn the': 170160, 'isn the first': 454707, 'first time panic': 309107, 'buying ha occurred': 150446, 'ha occurred ordinary': 371416, 'occurred ordinary thing': 579048, 'ordinary thing look': 619102, 'thing look back': 884566, 'back at time': 106895, 'attending': 102401, 'is attending': 445885, 'attending church': 102406, 'church service': 178403, 'every day say': 285840, 'day say the': 228311, 'say the woman': 739310, 'woman who is': 1003680, 'who is attending': 989061, 'is attending church': 445886, 'attending church service': 102407, 'pandemic chinese': 635139, 'chinese restaurant': 177339, 'emptier than': 274714, 'ever via': 285579, 'amid pandemic chinese': 52569, 'pandemic chinese restaurant': 635140, 'chinese restaurant in': 177340, 'the are emptier': 848861, 'are emptier than': 86132, 'emptier than ever': 274715, 'than ever via': 840619, 'worry mum': 1010748, 'mum will': 545981, 'your toilet': 1026174, 'no worry mum': 565938, 'worry mum will': 1010749, 'mum will protect': 545982, 'will protect your': 994499, 'protect your toilet': 685073, 'your toilet paper': 1026175, 'grocery more': 364736, 'often due': 596186, 'to up': 917972, '22 during': 15209, 'to civicscience': 902776, 'civicscience data': 179504, 'data more': 226307, 'for grocery more': 322041, 'grocery more often': 364737, 'more often due': 539899, 'often due to': 596187, 'due to up': 262012, 'to up from': 917974, 'from 22 during': 334241, '22 during last': 15210, 'during last week': 262746, 'according to civicscience': 28526, 'to civicscience data': 902777, 'civicscience data more': 179505, 'data more in': 226308, 'biggest question': 130305, 'every family': 285894, 'family mind': 298051, 'mind do': 532654, 'paper so': 640785, 'so check': 776751, 'calculator for': 155326, 'the biggest question': 849673, 'biggest question on': 130306, 'question on every': 693674, 'on every family': 600618, 'every family mind': 285895, 'family mind do': 298052, 'mind do we': 532655, 'toilet paper so': 921454, 'paper so check': 640786, 'so check out': 776752, 'out this toilet': 627589, 'this toilet roll': 890793, 'roll calculator for': 725239, 'calculator for coronavirus': 155327, 'for coronavirus pandemic': 320388, 'coronavirus pandemic toiletpaper': 206499, 'pandemic toiletpaper pandemic': 636813, 'sobeys': 779373, 'staff loblaws': 792623, 'loblaws sobeys': 497635, 'sobeys and': 779374, 'others pharmacy': 621580, 'staff hospital': 792535, 'staff anyone': 792171, 'work thru': 1005871, 'this thank': 890502, 'you toronto': 1021889, 'toronto montreal': 925968, 'montreal vancouver': 538236, 'real hero in': 701200, 'hero in covid': 394014, '19 supermarket staff': 10958, 'supermarket staff loblaws': 822863, 'staff loblaws sobeys': 792624, 'loblaws sobeys and': 497636, 'sobeys and others': 779375, 'and others pharmacy': 68452, 'others pharmacy staff': 621581, 'pharmacy staff hospital': 654473, 'staff hospital staff': 792536, 'hospital staff anyone': 404628, 'staff anyone who': 792173, 'who ha to': 988870, 'to work thru': 918795, 'work thru this': 1005872, 'thru this thank': 895240, 'this thank you': 890503, 'thank you toronto': 841834, 'you toronto montreal': 1021890, 'toronto montreal vancouver': 925969, 'yes am': 1015369, 'am boy': 49955, 'boy mom': 137273, 'mom but': 535699, 'make bow': 509743, 'bow organizer': 136950, 'organizer holder': 619488, 'holder and': 400057, 'absolutely love': 27381, 'for bow': 319752, 'bow now': 136948, 'and hopefully': 64726, 'hopefully jewelry': 403864, 'jewelry in': 465393, 'future let': 342379, 'all girl': 42922, 'girl mom': 350267, 'mom want': 535827, 'want one': 965874, 'price socialdistancing': 676545, 'yes am boy': 1015371, 'am boy mom': 49956, 'boy mom but': 137274, 'mom but wa': 535700, 'but wa asked': 147706, 'wa asked to': 961592, 'asked to make': 95870, 'to make bow': 909629, 'make bow organizer': 509744, 'bow organizer holder': 136951, 'organizer holder and': 619489, 'holder and absolutely': 400058, 'and absolutely love': 57566, 'absolutely love how': 27382, 'love how it': 504694, 'how it turned': 408143, 'it turned out': 461884, 'turned out will': 935869, 'out will be': 627854, 'used for bow': 949899, 'for bow now': 319753, 'bow now and': 136949, 'now and hopefully': 574037, 'and hopefully jewelry': 64727, 'hopefully jewelry in': 403865, 'jewelry in the': 465394, 'the future let': 856082, 'future let me': 342380, 'me know if': 523041, 'know if all': 476469, 'if all girl': 413791, 'all girl mom': 42923, 'girl mom want': 350268, 'mom want one': 535828, 'want one and': 965875, 'one and can': 605896, 'get you some': 348682, 'you some price': 1021304, 'some price socialdistancing': 783635, '879': 23038, '057': 971, '034': 893, 'let join': 486834, 'join hand': 466737, 'hand together': 375885, 'and tough': 74311, 'tough assignment': 926797, 'assignment we': 96614, 'we dropped': 971423, 'dropped our': 260614, 'can avail': 157551, 'avail our': 104114, 'service easily': 752318, 'easily visit': 265252, 'visit contact': 959218, 'contact 61': 199993, '61 879': 21182, '879 057': 23039, '057 034': 972, '034 corona': 894, 'corona coronavir': 203895, 'coronavir coronafighters': 205418, 'let join hand': 486835, 'join hand together': 466740, 'hand together to': 375886, 'together to fight': 920991, 'fight with this': 304956, 'with this corona': 1001685, 'this corona outbreak': 886866, 'corona outbreak and': 204086, 'outbreak and tough': 628016, 'and tough assignment': 74312, 'tough assignment we': 926798, 'assignment we dropped': 96615, 'we dropped our': 971424, 'dropped our price': 260615, 'by 50 so': 151671, '50 so you': 19854, 'you can avail': 1017624, 'can avail our': 157552, 'avail our service': 104115, 'our service easily': 624728, 'service easily visit': 752319, 'easily visit contact': 265253, 'visit contact 61': 959219, 'contact 61 879': 199994, '61 879 057': 21183, '879 057 034': 23040, '057 034 corona': 973, '034 corona coronavir': 895, 'corona coronavir coronafighters': 203896, 'chapel': 173117, 're required': 699382, 'but downtown': 145612, 'downtown chapel': 257735, 'chapel hill': 173118, 'hill business': 396464, 'still ready': 801096, 'serve here': 751895, 'order lunch': 618372, 'we re required': 972952, 're required to': 699383, 'pandemic but downtown': 635042, 'but downtown chapel': 145613, 'downtown chapel hill': 257736, 'chapel hill business': 173119, 'hill business are': 396465, 'business are still': 143389, 'are still ready': 90473, 'still ready to': 801097, 'ready to serve': 700974, 'to serve here': 914264, 'serve here how': 751896, 'can order lunch': 159174, 'order lunch and': 618373, 'lunch and do': 506706, 'and do some': 61559, 'online shopping today': 609314, 'produce also': 680168, 'also stop': 48915, 'seriously we are': 751776, 'out of fresh': 626737, 'fresh produce also': 333044, 'produce also stop': 680169, 'also stop hoarding': 48916, 'hoarding and making': 399180, 'making the price': 511425, 'up and making': 944346, 'hard to shop': 378090, 'shop for everyone': 760185, 'for everyone else': 321209, 'worn': 1010458, 'stayinthehoose': 798754, 'tescodelivery': 838863, 'marksandspencer': 517931, 'onlinelearning': 609833, 'you worn': 1022438, 'worn any': 1010459, 'stayhomesavelives socialdistanacing': 798444, 'socialdistanacing stayinthehoose': 780103, 'stayinthehoose shopping': 798755, 'shopping tescodelivery': 764064, 'tescodelivery asda': 838864, 'sainsbury waitrose': 731740, 'waitrose marksandspencer': 964460, 'marksandspencer ocado': 517933, 'ocado onlinelearning': 578909, 'onlinelearning clapforcarers': 609834, 'in week of': 430760, 'week of lockdown': 976623, 'of lockdown and': 585949, 'lockdown and social': 499152, 'distancing have you': 247197, 'have you worn': 383702, 'you worn any': 1022439, 'worn any of': 1010460, 'following to the': 312929, 'supermarket stayhomesavelives socialdistanacing': 822944, 'stayhomesavelives socialdistanacing stayinthehoose': 798445, 'socialdistanacing stayinthehoose shopping': 780104, 'stayinthehoose shopping tescodelivery': 798756, 'shopping tescodelivery asda': 764065, 'tescodelivery asda sainsbury': 838865, 'asda sainsbury waitrose': 94973, 'sainsbury waitrose marksandspencer': 731741, 'waitrose marksandspencer ocado': 964461, 'marksandspencer ocado onlinelearning': 517934, 'ocado onlinelearning clapforcarers': 578910, 'droz': 260824, 'keep shut': 471931, 'month going': 537755, 'mortgage car': 541874, 'car note': 163185, 'note loan': 572749, 'loan going': 497444, 'cure is': 220759, 'disease 15': 245069, 'prove this': 686121, 'flu droz': 311406, 'droz corona': 260825, 'to keep shut': 908847, 'keep shut down': 471932, 'shut down for': 767825, 'down for month': 256775, 'for month going': 323518, 'month going to': 537756, 'going to pay': 355667, 'pay the mortgage': 645152, 'the mortgage car': 860929, 'mortgage car note': 541875, 'car note loan': 163186, 'note loan going': 572750, 'loan going to': 497445, 'going to produce': 355675, 'to produce the': 912209, 'produce the toilet': 680457, 'paper the cure': 640874, 'the cure is': 852589, 'cure is worse': 220761, 'than the disease': 841230, 'the disease 15': 853357, 'disease 15 day': 245070, '15 day no': 3693, 'day no more': 228020, 'no more have': 564808, 'more have yet': 539396, 'yet to prove': 1016294, 'to prove this': 912370, 'prove this is': 686122, 'this is worse': 888472, 'the flu droz': 855458, 'flu droz corona': 311407, 'bad we': 108076, 'worst unemployment': 1011297, 'unemployment since': 941294, 'is really bad': 451289, 'really bad we': 702005, 'bad we are': 108077, 'the worst unemployment': 872080, 'worst unemployment since': 1011298, 'unemployment since the': 941295, 'since the great': 770883, 'precious metal': 669472, 'metal like': 529635, 'and silver': 71668, 'silver have': 769804, 'been surging': 122111, 'surging lately': 828434, 'lately investor': 480964, 'investor seek': 444203, 'seek safe': 746607, 'long lasting': 501476, 'lasting negative': 480776, 'economy read': 268165, 'precious metal like': 669473, 'metal like gold': 529636, 'like gold and': 490324, 'gold and silver': 355854, 'and silver have': 71669, 'silver have been': 769805, 'have been surging': 379705, 'been surging lately': 122112, 'surging lately investor': 828435, 'lately investor seek': 480965, 'investor seek safe': 444204, 'seek safe haven': 746608, 'haven investment due': 383846, 'to concern the': 903171, 'concern the coronavirus': 193119, 'the coronavirus will': 851944, 'coronavirus will have': 207086, 'have long lasting': 381368, 'long lasting negative': 501481, 'lasting negative impact': 480777, 'global economy read': 351905, 'economy read more': 268167, 'amzn': 55001, 'amzn new': 55007, 'article amazon': 94246, 'delivery infrastructure': 234126, 'infrastructure strained': 438221, 'strained covid': 812313, 'outbreak spark': 628640, 'spark surge': 787560, 'latest amzn': 481205, 'amzn related': 55009, 'amzn new article': 55008, 'new article amazon': 558355, 'article amazon delivery': 94247, 'amazon delivery infrastructure': 50911, 'delivery infrastructure strained': 234127, 'infrastructure strained covid': 438223, 'strained covid 19': 812314, '19 outbreak spark': 9190, 'outbreak spark surge': 628641, 'spark surge in': 787561, 'online shopping get': 609129, 'shopping get all': 762776, 'all the latest': 44805, 'the latest amzn': 859075, 'latest amzn related': 481206, 'amzn related news': 55010, 'related news here': 708492, 'produced this': 680538, '19 harm': 7437, 'harm reduction': 378413, 'reduction providing': 706396, 'plan ahead': 658048, 'ahead if': 39159, 'you consume': 1018022, 'consume drug': 195933, 'ha produced this': 371546, 'produced this consumer': 680539, 'this consumer resource': 886845, 'consumer resource on': 198774, 'resource on covid': 714843, 'covid 19 harm': 213187, '19 harm reduction': 7438, 'harm reduction providing': 378414, 'reduction providing advice': 706397, 'providing advice on': 686931, 'how to stop': 409093, 'virus and plan': 957939, 'and plan ahead': 69060, 'plan ahead if': 658049, 'ahead if you': 39160, 'if you consume': 415412, 'you consume drug': 1018023, 'of summer': 590390, 'crude price could': 219585, 'price could go': 673282, 'could go negative': 209219, 'go negative while': 353850, 'all this while': 45148, 'while the province': 987412, 'end of summer': 275916, '10 so': 1680, 'employee supposed': 274258, 'town is': 927496, 'there coughing': 878289, 'coughing near': 208705, 'you breathing': 1017522, 'official say stay': 595912, 'say stay out': 739174, 'out of group': 626749, 'of group of': 584371, 'group of 10': 366782, 'of 10 so': 579313, '10 so what': 1681, 'fuck is grocery': 339589, 'store employee supposed': 807546, 'employee supposed to': 274259, 'when the whole': 984213, 'whole town is': 990367, 'town is in': 927499, 'is in there': 448822, 'in there coughing': 429812, 'there coughing near': 878290, 'coughing near you': 208706, 'near you breathing': 553636, 'you breathing on': 1017523, 'breathing on you': 139240, 'alert cfo': 41376, 'cfo floridian': 170331, 'must beware': 546562, 'of fraud': 583891, 'fraud amp': 331223, 'amp scam': 54450, 'consumer alert cfo': 196137, 'alert cfo floridian': 41377, 'cfo floridian must': 170332, 'floridian must beware': 311034, 'must beware of': 546563, 'beware of fraud': 129080, 'of fraud amp': 583893, 'fraud amp scam': 331224, 'amp scam read': 54451, 'scam read more': 740322, 'any recommendation': 79738, 'avoid limit': 105176, 'infection many': 436787, 'have underlying': 383449, 'are chronically': 85276, 'ill high': 416132, 'contact what': 200259, 'what precaution': 982049, 'precaution should': 669352, 'should these': 766579, 'these employee': 879959, 'take medtwitter': 832320, 'any recommendation for': 79739, 'recommendation for supermarket': 704750, 'for supermarket employee': 326008, 'supermarket employee during': 820118, 'employee during to': 273798, 'during to avoid': 263354, 'to avoid limit': 900915, 'avoid limit the': 105178, 'of infection many': 585167, 'infection many cannot': 436788, 'many cannot afford': 513867, 'afford to stay': 34807, 'stay home have': 796971, 'home have underlying': 401345, 'have underlying health': 383451, 'health condition and': 386288, 'condition and are': 193394, 'and are chronically': 58299, 'are chronically ill': 85277, 'chronically ill high': 178245, 'ill high risk': 416133, 'risk of contact': 723735, 'of contact what': 581802, 'contact what precaution': 200260, 'what precaution should': 982050, 'precaution should these': 669354, 'should these employee': 766580, 'these employee take': 879962, 'employee take medtwitter': 274264, 'prelim': 669862, 'domain': 253151, 'melb': 527916, 'ausecon': 103045, 'prelim domain': 669863, 'domain auction': 253152, 'auction clearance': 102844, 'clearance syd': 181397, 'syd 65': 830673, '65 final': 21351, 'final 58': 305820, '58 yr': 20542, 'yr ago': 1027002, 'ago 52': 38319, '52 melb': 20251, 'melb 62': 527917, '62 final': 21226, 'final 57': 305818, '57 yr': 20489, 'ago 50': 38317, '50 sale': 19839, 'sale momentum': 732358, 'momentum is': 536158, 'slowing significantly': 774570, 'significantly coronavirus': 769560, 'coronavirus driven': 205849, 'driven social': 259356, 'distancing rising': 247432, 'the econ': 853886, 'econ outlook': 266934, 'outlook look': 629169, 'be impacting': 115373, 'impacting expect': 418220, 'fall ahead': 296812, 'ahead ausecon': 39140, 'prelim domain auction': 669864, 'domain auction clearance': 253153, 'auction clearance syd': 102845, 'clearance syd 65': 181398, 'syd 65 final': 830674, '65 final 58': 21352, 'final 58 yr': 305821, '58 yr ago': 20543, 'yr ago 52': 1027004, 'ago 52 melb': 38320, '52 melb 62': 20252, 'melb 62 final': 527918, '62 final 57': 21227, 'final 57 yr': 305819, '57 yr ago': 20490, 'yr ago 50': 1027003, 'ago 50 sale': 38318, '50 sale momentum': 19841, 'sale momentum is': 732359, 'momentum is slowing': 536159, 'is slowing significantly': 451978, 'slowing significantly coronavirus': 774571, 'significantly coronavirus driven': 769561, 'coronavirus driven social': 205850, 'driven social distancing': 259357, 'social distancing rising': 779703, 'distancing rising uncertainty': 247433, 'rising uncertainty around': 723315, 'around the econ': 93536, 'the econ outlook': 853887, 'econ outlook look': 266935, 'outlook look to': 629170, 'look to be': 502625, 'to be impacting': 901327, 'be impacting expect': 115374, 'impacting expect price': 418221, 'expect price fall': 290703, 'price fall ahead': 673773, 'fall ahead ausecon': 296813, 'assumption': 97060, 'period it': 651803, 'it gonna': 458291, 'observe how': 578581, 'behave and': 123768, 'and hence': 64502, 'hence the': 391755, 'impact it': 417720, 'on few': 600778, 'few particular': 303981, 'particular sector': 642634, 'economy at': 267678, 'large following': 479664, 'following are': 312690, 'my assumption': 547340, 'assumption feel': 97063, 'post lockdown period': 666202, 'lockdown period it': 499790, 'period it gonna': 651804, 'it gonna be': 458292, 'gonna be very': 356486, 'be very interesting': 117977, 'very interesting to': 955278, 'interesting to observe': 441636, 'to observe how': 910792, 'observe how we': 578582, 'we all customer': 970318, 'all customer consumer': 42500, 'customer consumer will': 222271, 'consumer will behave': 199543, 'will behave and': 992815, 'behave and hence': 123769, 'and hence the': 64505, 'hence the impact': 391756, 'the impact it': 857940, 'impact it will': 417722, 'have on few': 381768, 'on few particular': 600780, 'few particular sector': 303982, 'particular sector and': 642635, 'sector and economy': 744080, 'and economy at': 61923, 'economy at large': 267680, 'at large following': 99407, 'large following are': 479665, 'following are my': 312691, 'are my assumption': 88174, 'my assumption feel': 547341, 'assumption feel free': 97064, 'free to share': 332248, 'share your thought': 755381, 'gleaner': 351674, '3175932400': 17637, '52014': 20259, 'help pack': 390264, 'help hoosier': 389868, 'need tomorrow': 556129, 'tomorrow virtual': 924231, 'take is': 832232, 'make 20': 509630, '20 meal': 13152, 'meal gleaner': 524169, 'gleaner text': 351675, 'text give': 839899, 'to 3175932400': 899684, '3175932400 midwest': 17638, 'midwest text': 530831, 'to 52014': 899762, '52014 ll': 20260, 'be live': 115776, 'help pack the': 390267, 'the pantry to': 863257, 'pantry to help': 639701, 'to help hoosier': 907539, 'help hoosier in': 389869, 'in need tomorrow': 425776, 'need tomorrow virtual': 556130, 'tomorrow virtual food': 924232, 'drive with and': 259262, 'with and all': 997239, 'and all it': 57868, 'all it take': 43279, 'it take is': 461425, 'take is that': 832234, 'is that make': 452664, 'that make 20': 844988, 'make 20 meal': 509632, '20 meal gleaner': 13154, 'meal gleaner text': 524170, 'gleaner text give': 351676, 'text give to': 839900, 'give to 3175932400': 350786, 'to 3175932400 midwest': 899685, '3175932400 midwest text': 17639, 'midwest text to': 530832, 'text to 52014': 839954, 'to 52014 ll': 899763, '52014 ll be': 20261, 'll be live': 496598, 'say housing': 738771, 'city result': 179343, 'of outbreak': 587601, 'outbreak city': 628107, 'analyst say housing': 57175, 'say housing price': 738772, 'housing price will': 407139, 'will drop in': 993265, 'drop in city': 260230, 'in city result': 421483, 'city result of': 179344, 'result of outbreak': 717606, 'of outbreak city': 587602, 'oes': 579289, 'awareness oes': 105710, '19 awareness oes': 5283, 'uk friend': 938390, 'mine ha': 532892, 'supermarket apps': 819135, 'apps have': 83287, 'nothing available': 572936, 'any advice': 78902, 'advice would': 33558, 'great in': 362747, 'know of way': 476649, 'food delivered in': 314096, 'the uk friend': 870220, 'uk friend of': 938391, 'of mine ha': 586554, 'mine ha 19': 532893, 'ha 19 symptom': 369405, '19 symptom and': 11013, 'symptom and should': 830813, 'out but all': 625785, 'but all the': 145090, 'the supermarket apps': 868466, 'supermarket apps have': 819136, 'apps have nothing': 83289, 'have nothing available': 381705, 'nothing available for': 572937, 'for week it': 327723, 'week it is': 976435, 'it is based': 458881, 'based on any': 111668, 'on any advice': 599396, 'any advice would': 78906, 'advice would be': 33559, 'be great in': 115090, 'great in the': 362748, 'see example': 745095, 'including grocer': 431994, 'grocer restaurant': 364157, 'supply safe': 825793, 'and building': 59243, 'building consumer': 142066, 'confidence foodsupply': 193867, 'foodsupply foodsafety': 318203, 'see example of': 745096, 'how the food': 408824, 'food industry including': 315015, 'industry including grocer': 435909, 'including grocer restaurant': 431995, 'grocer restaurant and': 364158, 'restaurant and manufacturer': 716290, 'and manufacturer are': 66651, 'manufacturer are keeping': 513426, 'keeping our food': 472503, 'food supply safe': 316988, 'supply safe and': 825794, 'safe and building': 729437, 'and building consumer': 59245, 'building consumer confidence': 142067, 'consumer confidence foodsupply': 196897, 'confidence foodsupply foodsafety': 193868, 'hudsonvalley': 409925, 'taxtherich': 835216, 'wealthy fleeing': 974205, 'up rental': 945911, 'hampton hudsonvalley': 374633, 'hudsonvalley home': 409926, 'would typically': 1012352, 'typically rent': 937665, '00 month': 334, 'winter and': 996117, 'spring are': 791163, '00 the': 521, 'month taxtherich': 538032, 'panicked wealthy fleeing': 639305, 'wealthy fleeing the': 974206, 'fleeing the drive': 310314, 'the drive up': 853689, 'drive up rental': 259250, 'up rental price': 945912, 'rental price in': 711266, 'the hampton hudsonvalley': 857052, 'hampton hudsonvalley home': 374634, 'hudsonvalley home that': 409927, 'home that would': 402221, 'that would typically': 847691, 'would typically rent': 1012353, 'typically rent for': 937666, 'rent for 00': 711088, 'for 00 month': 318601, '00 month during': 336, 'during the winter': 263219, 'the winter and': 871615, 'winter and spring': 996118, 'and spring are': 72165, 'spring are now': 791164, 'are now going': 88553, 'now going for': 574799, 'going for up': 355152, 'up to 18': 946325, '18 00 the': 4484, '00 the month': 522, 'the month taxtherich': 860853, 'them feel': 875683, 'other and make': 619827, 'make them feel': 510606, 'them feel safe': 875686, 'the caught': 850537, 'caught her': 167420, 'her what': 392519, 'evil woman': 288472, 'woman coronaaustralia': 1003449, 'coronaaustralia chinavirus': 204438, 'chinavirus chinaliedandpeopledied': 177149, 'chinaliedandpeopledied auspol': 177097, 'the caught her': 850538, 'caught her what': 167421, 'her what an': 392520, 'what an evil': 981036, 'an evil woman': 55891, 'evil woman coronaaustralia': 288473, 'woman coronaaustralia chinavirus': 1003450, 'coronaaustralia chinavirus chinaliedandpeopledied': 204439, 'chinavirus chinaliedandpeopledied auspol': 177150, 'icmktg': 412791, 'utoledomarketing': 951393, 'uakronmarketing': 937780, 'wvu389': 1013631, 'nky205': 563506, 'uabmktg': 937728, 'lwu482strat': 507047, 'of icmktg': 584959, 'icmktg for': 412792, 'spring 20': 791155, 'arrived this': 93973, 'are discussing': 85844, 'discussing enduring': 244989, 'enduring shift': 276331, 'behavior amid': 123868, '19 utoledomarketing': 11711, 'utoledomarketing uakronmarketing': 951394, 'uakronmarketing wvu389': 937781, 'wvu389 nky205': 1013632, 'nky205 uabmktg': 563507, 'uabmktg lwu482strat': 937729, 'last week of': 480663, 'week of icmktg': 976619, 'of icmktg for': 584960, 'icmktg for spring': 412793, 'for spring 20': 325845, 'spring 20 ha': 791156, '20 ha arrived': 13086, 'ha arrived this': 369620, 'arrived this week': 93974, 'week we are': 977186, 'we are discussing': 970528, 'are discussing enduring': 85845, 'discussing enduring shift': 244990, 'enduring shift in': 276332, 'shift in our': 758327, 'in our consumer': 426273, 'our consumer behavior': 622524, 'consumer behavior amid': 196436, 'behavior amid covid': 123869, 'covid 19 utoledomarketing': 214013, '19 utoledomarketing uakronmarketing': 11712, 'utoledomarketing uakronmarketing wvu389': 951395, 'uakronmarketing wvu389 nky205': 937782, 'wvu389 nky205 uabmktg': 1013633, 'nky205 uabmktg lwu482strat': 563508, 'irony the': 444969, 'only chip': 610242, 'chip left': 177519, 'are party': 88994, 'party size': 643041, 'irony the only': 444970, 'the only chip': 862292, 'only chip left': 610243, 'chip left in': 177520, 'store are party': 806509, 'are party size': 88995, 'eliminate peak': 271453, 'peak usage': 646111, 'usage fee': 948825, 'fee we': 302249, 'crisis doug': 217310, 'ford limit': 328781, 'limit hydro': 492367, 'hydro price': 411954, 'to off': 910816, 'isolation sign': 455431, 'petition via': 653643, 'petition to eliminate': 653638, 'to eliminate peak': 904991, 'eliminate peak usage': 271454, 'peak usage fee': 646112, 'usage fee we': 948827, 'fee we are': 302250, 'are all at': 84287, 'all at home': 42079, 'this crisis doug': 887035, 'crisis doug ford': 217311, 'doug ford limit': 256254, 'ford limit hydro': 328782, 'limit hydro price': 492368, 'hydro price to': 411955, 'price to off': 677020, 'to off peak': 910817, 'peak hour during': 646069, 'hour during covid': 405554, '19 isolation sign': 8110, 'isolation sign the': 455432, 'the petition via': 863619, 'illustrate': 416436, 'nager': 551395, 'builtwithmapbox': 142205, 'nycstrong': 578094, 'created an': 215777, 'an interactive': 56394, 'brand based': 137765, 'nyc to': 578062, 'to illustrate': 908130, 'illustrate the': 416437, 'true creative': 933059, 'creative energy': 216132, 'energy of': 276515, 'city the': 179401, 'before coronavirus': 122715, 'soon chris': 785677, 'chris nager': 178060, 'nager builtwithmapbox': 551396, 'builtwithmapbox nycstrong': 142206, 'we created an': 971233, 'created an interactive': 215781, 'an interactive map': 56395, 'consumer brand based': 196651, 'brand based in': 137766, 'based in nyc': 111621, 'in nyc to': 426029, 'nyc to illustrate': 578063, 'to illustrate the': 908131, 'illustrate the true': 416438, 'the true creative': 870047, 'true creative energy': 933060, 'creative energy of': 216133, 'energy of the': 276516, 'the city the': 850961, 'city the way': 179404, 'way it wa': 969677, 'it wa before': 462074, 'wa before coronavirus': 961666, 'before coronavirus and': 122717, 'coronavirus and the': 205500, 'and the way': 73646, 'way it will': 969678, 'it will return': 462433, 'will return soon': 994689, 'return soon chris': 719899, 'soon chris nager': 785678, 'chris nager builtwithmapbox': 178061, 'nager builtwithmapbox nycstrong': 551397, 'being wiped': 126060, 'tree quarantine': 931198, 'know who is': 477037, 'who is really': 989105, 'is really in': 451307, 'really in danger': 702336, 'danger of being': 225674, 'of being wiped': 580664, 'being wiped out': 126061, 'by the tree': 154461, 'the tree quarantine': 869948, 'tree quarantine toiletpaper': 931199, 'online insensitive': 608413, 'insensitive during': 439190, 'during hate': 262674, 'anyone having': 80356, 'but hate': 145863, 'being fired': 125150, 'fired even': 308169, 'is shopping online': 451875, 'shopping online insensitive': 763447, 'online insensitive during': 608414, 'insensitive during hate': 439191, 'during hate the': 262675, 'hate the idea': 378918, 'idea of anyone': 413124, 'of anyone having': 580281, 'anyone having to': 80358, 'having to venture': 384371, 'venture out but': 954679, 'out but hate': 625787, 'but hate being': 145864, 'hate being fired': 378867, 'being fired even': 125151, 'fired even more': 308170, 'the removal': 865504, 'removal from': 710797, 'at 7news': 97754, 'commerce ha called': 188566, 'ha called the': 370046, 'called the removal': 156459, 'the removal from': 865505, 'removal from supermarket': 710798, 'from supermarket shelf': 337500, '7news at 7news': 22496, 'from east': 335248, 'east bay': 265294, 'bay community': 112928, 'community law': 189954, 'law center': 482238, 'center legal': 169247, 'legal advice': 485838, 'advice resource': 33480, 'pandemic renter': 636330, 'renter and': 711293, 'eviction school': 288342, 'school loan': 741842, 'loan consumer': 497416, 'debt scam': 230557, 'scam small': 740359, 'from east bay': 335249, 'east bay community': 265295, 'bay community law': 112929, 'community law center': 189955, 'law center legal': 482240, 'center legal advice': 169248, 'legal advice resource': 485839, 'advice resource and': 33481, 'resource and tool': 714707, 'and tool to': 74283, 'tool to help': 925449, 'you navigate through': 1019955, '19 pandemic renter': 9445, 'pandemic renter and': 636331, 'renter and eviction': 711294, 'and eviction school': 62439, 'eviction school loan': 288343, 'school loan consumer': 741843, 'loan consumer debt': 497417, 'consumer debt scam': 197087, 'debt scam small': 230558, 'scam small business': 740360, 'small business here': 774861, 'business here is': 143843, 'is the link': 452848, 'killeya': 474650, 'more conversation': 538887, 'conversation can': 202465, 'have how': 380988, 'these experience': 879984, 'experience only': 291450, 'not listening': 570430, 'listening charlotte': 494792, 'charlotte killeya': 173772, 'many more conversation': 514297, 'more conversation can': 538888, 'conversation can we': 202466, 'we have how': 971839, 'have how many': 380989, 'many more time': 514320, 'more time can': 540767, 'time can we': 896449, 'can we share': 160196, 'we share these': 973229, 'share these experience': 755275, 'these experience only': 879985, 'experience only to': 291451, 'only to feel': 611359, 'to feel like': 905750, 'feel like those': 302754, 'like those in': 491557, 'in power are': 426883, 'power are not': 667565, 'are not listening': 88410, 'not listening charlotte': 570432, 'listening charlotte killeya': 494793, 'receives': 703722, 'healthcanada': 387007, 'potstocks': 667261, 'growth receives': 367450, 'receives healthcanada': 703731, 'healthcanada approval': 387008, 'for 2nd': 318794, '2nd hand': 16777, 'against bos': 37343, 'bos potstocks': 135690, 'yield growth receives': 1016372, 'growth receives healthcanada': 367451, 'receives healthcanada approval': 703732, 'healthcanada approval for': 387009, 'approval for 2nd': 83091, 'for 2nd hand': 318795, '2nd hand sanitizer': 16778, 'sanitizer in fight': 735135, 'fight against bos': 304606, 'against bos potstocks': 37344, 'the attention': 849029, 'attention of': 102463, 'service manager': 752576, 'manager impossible': 512729, 'through on': 894595, 'on helpline': 601275, 'helpline what': 391603, 'doing about': 252256, 'for the attention': 326308, 'the attention of': 849030, 'attention of the': 102465, 'the customer service': 852731, 'customer service manager': 222827, 'service manager impossible': 752577, 'manager impossible to': 512730, 'get through on': 348437, 'through on helpline': 894596, 'on helpline what': 601276, 'helpline what is': 391604, 'is your company': 454140, 'your company doing': 1023283, 'company doing about': 190602, 'doing about this': 252262, 'what with': 982614, 'with panicbuying': 1000086, 'panicbuying is': 638978, 'it cyclical': 457459, 'cyclical 1st': 224080, '1st toiletpaper': 12822, 'toiletpaper then': 922598, 'then pasta': 877408, 'pasta now': 643766, 'now egg': 574589, 'egg shop': 269984, 'shop round': 760725, 'round my': 726336, 'way hv': 969645, 'hv toiletroll': 411860, 'toiletroll pasta': 923378, 'pasta not': 643764, 'but zero': 148016, 'zero egg': 1027440, 'egg why': 270035, 'why finally': 990994, 'found egg': 330196, 'egg but': 269804, 'but ain': 145075, 'ain saying': 39650, 'saying where': 739758, 'where for': 984875, 'of causing': 581218, 'causing stampede': 168099, 'what with panicbuying': 982616, 'with panicbuying is': 1000088, 'panicbuying is it': 638979, 'is it cyclical': 449018, 'it cyclical 1st': 457460, 'cyclical 1st toiletpaper': 224081, '1st toiletpaper then': 12823, 'toiletpaper then pasta': 922599, 'then pasta now': 877410, 'pasta now egg': 643767, 'now egg shop': 574592, 'egg shop round': 269985, 'shop round my': 760726, 'round my way': 726337, 'my way hv': 550535, 'way hv toiletroll': 969646, 'hv toiletroll pasta': 411861, 'toiletroll pasta not': 923379, 'pasta not much': 643765, 'much but zero': 544777, 'but zero egg': 148017, 'zero egg why': 1027441, 'egg why finally': 270036, 'why finally found': 990995, 'finally found egg': 305998, 'found egg but': 330197, 'egg but ain': 269805, 'but ain saying': 145076, 'ain saying where': 39651, 'saying where for': 739759, 'where for risk': 984876, 'for risk of': 325241, 'risk of causing': 723733, 'of causing stampede': 581219, 'reimbursed': 708225, 'deductible': 231782, 'usaa': 948800, 'general payment': 345431, 'payment arrangement': 645551, 'arrangement special': 93724, 'special program': 788037, 'card waived': 163692, 'waived or': 964537, 'or reimbursed': 616832, 'reimbursed deductible': 708226, 'deductible co': 231785, 'co payment': 184944, 'for usaa': 327491, 'usaa medicare': 948801, 'medicare supplement': 526594, 'supplement plan': 824422, 'to review': 913496, 'review more': 720572, 'regarding way': 707311, 'please vi': 660718, 'in general payment': 423254, 'general payment arrangement': 345432, 'payment arrangement special': 645553, 'arrangement special program': 93725, 'special program for': 788039, 'program for consumer': 683246, 'consumer loan credit': 198059, 'loan credit card': 497420, 'credit card waived': 216356, 'card waived or': 163693, 'waived or reimbursed': 964538, 'or reimbursed deductible': 616833, 'reimbursed deductible co': 708227, 'deductible co payment': 231786, 'co payment for': 184945, 'payment for usaa': 645625, 'for usaa medicare': 327492, 'usaa medicare supplement': 948802, 'medicare supplement plan': 526595, 'supplement plan to': 824423, 'plan to review': 658316, 'to review more': 913497, 'review more info': 720573, 'more info regarding': 539564, 'info regarding way': 437571, 'regarding way we': 707312, 'way we may': 970175, 'may be able': 520941, 'to help please': 907588, 'help please vi': 390329, 'curing': 220957, 'someone get': 784476, 'ft at': 339325, 'store hope': 808177, 'being safe': 125709, 'still having': 800677, 'fun at': 341134, 'to curing': 903820, 'curing your': 220962, 'your cabin': 1023099, 'fever soon': 303686, 'when someone get': 984057, 'someone get closer': 784477, 'closer than ft': 183510, 'than ft at': 840684, 'ft at the': 339326, 'grocery store hope': 365470, 'store hope you': 808179, 'all are being': 42040, 'are being safe': 84916, 'being safe and': 125710, 'safe and still': 729487, 'and still having': 72379, 'still having fun': 800678, 'having fun at': 384082, 'fun at home': 341135, 'home we look': 402455, 'forward to curing': 330023, 'to curing your': 903821, 'curing your cabin': 220963, 'your cabin fever': 1023100, 'cabin fever soon': 154970, 'still optimistic': 800999, 'economy but': 267721, 'but survey': 147241, 'survey conducted': 828839, 'conducted march': 193671, '16 17': 4059, '17 find': 4350, 'find they': 307326, 're already': 698253, 'already reporting': 47618, 'reporting change': 712679, 'behavior consumerbehavior': 123983, 'american consumer are': 51884, 'consumer are still': 196314, 'are still optimistic': 90459, 'still optimistic about': 801000, 'about the economy': 26383, 'the economy but': 853944, 'economy but survey': 267724, 'but survey conducted': 147242, 'survey conducted march': 828841, 'conducted march 16': 193672, 'march 16 17': 515082, '16 17 find': 4060, '17 find they': 4351, 'find they re': 307327, 'they re already': 882993, 're already reporting': 698256, 'already reporting change': 47619, 'reporting change in': 712680, 'change in their': 172139, 'in their income': 429750, 'their income spending': 873646, 'and behavior consumerbehavior': 58839, 'stayathomechllenge': 797764, 'adolescent': 32664, 'stayathomechllenge ll': 797767, 'be home': 115281, 'haul crazy': 378990, 'crazy kid': 215344, 'all both': 42204, 'the adolescent': 848362, 'adolescent run': 32665, 'run from': 727646, 'another teenager': 77893, 'teenager sick': 836554, 'sick dog': 768419, 'dog not': 252135, 'little girl': 495369, 'girl missing': 350265, 'missing and': 534278, 'her pre': 392310, 'pre class': 669148, 'class she': 180251, 'understand this': 940786, 'this surely': 890446, 'stayathomechllenge ll be': 797768, 'll be home': 496593, 'be home for': 115282, 'long haul crazy': 501431, 'haul crazy kid': 378991, 'crazy kid and': 215345, 'kid and all': 473850, 'and all both': 57856, 'all both the': 42205, 'both the child': 136060, 'the child and': 850813, 'child and the': 176003, 'and the adolescent': 73236, 'the adolescent run': 848363, 'adolescent run from': 32666, 'run from one': 727647, 'from one place': 336687, 'one place to': 606880, 'place to another': 657745, 'to another teenager': 900576, 'another teenager sick': 77894, 'teenager sick dog': 836555, 'sick dog not': 768420, 'dog not from': 252137, 'not from covid': 569538, '19 and little': 5057, 'and little girl': 66241, 'little girl missing': 495370, 'girl missing and': 350266, 'missing and cry': 534279, 'and cry for': 60784, 'cry for her': 219866, 'for her pre': 322228, 'her pre class': 392311, 'pre class she': 669149, 'class she doe': 180252, 'doe not understand': 251536, 'not understand this': 572326, 'understand this surely': 940791, 'symptom consumer': 830834, 'report newyorklockdown': 712095, 'newyorklockdown nylockdown': 561226, 'you have coronavirus': 1019030, 'have coronavirus symptom': 380119, 'coronavirus symptom consumer': 206865, 'symptom consumer report': 830835, 'consumer report newyorklockdown': 198715, 'report newyorklockdown nylockdown': 712096, 'giving this': 351432, 'shopping try': 764273, 'try online': 934526, 'giving this online': 351433, 'this online grocery': 889264, 'grocery shopping try': 365099, 'shopping try online': 764274, 'try online grocery': 934527, 'online grocery safeway': 608327, 'whippet': 987737, 'souring': 786631, 'canister': 161368, 'got whippet': 359018, 'whippet price': 987738, 'price souring': 676569, 'souring everyone': 786632, 'everyone rushing': 287325, 'their canister': 872712, 'canister so': 161371, 'while can': 986669, '19 got whippet': 7256, 'got whippet price': 359019, 'whippet price souring': 987739, 'price souring everyone': 676570, 'souring everyone rushing': 786633, 'everyone rushing to': 287326, 'rushing to get': 728396, 'get their canister': 348323, 'their canister so': 872713, 'canister so stock': 161372, 'so stock up': 778269, 'up while can': 946594, 'onlineclass': 609791, 'news reduced': 560733, 'to onlineclass': 910958, 'onlineclass hire': 609792, 'great news reduced': 362844, 'news reduced price': 560734, 'due to onlineclass': 261884, 'to onlineclass hire': 910959, 'onlineclass hire me': 609793, 'shuffle': 767758, 'amid chaos': 52400, 'chaos of': 173036, 'some smaller': 783894, 'smaller facebook': 775267, 'facebook marketing': 294964, 'marketing update': 517744, 'update have': 947014, 'in shuffle': 427922, 'shuffle but': 767759, 'but may': 146371, 'more significant': 540392, 'significant moving': 769478, 'forward this': 330016, 'interest consumer': 441339, 'isolation turn': 455480, 'amid chaos of': 52401, 'chaos of covid': 173038, '19 some smaller': 10697, 'some smaller facebook': 783895, 'smaller facebook marketing': 775268, 'facebook marketing update': 294965, 'marketing update have': 517745, 'update have been': 947015, 'been lost in': 121486, 'lost in shuffle': 503865, 'in shuffle but': 427923, 'shuffle but may': 767760, 'but may become': 146372, 'may become more': 521053, 'become more significant': 120064, 'more significant moving': 540393, 'significant moving forward': 769479, 'moving forward this': 544149, 'forward this one': 330017, 'this one could': 889233, 'one could see': 606118, 'could see lot': 209637, 'lot of interest': 504213, 'of interest consumer': 585251, 'interest consumer in': 441340, 'consumer in isolation': 197823, 'in isolation turn': 424210, 'isolation turn to': 455481, 'turn to online': 935787, 'wilder': 992108, 'birthdaygirl': 131465, 'snapchat filter': 776129, 'filter book': 305754, 'and trip': 74460, 'supermarket birthday': 819376, 'birthday celebration': 131422, 'celebration couldn': 168850, 'any wilder': 80050, 'wilder stop': 992111, 'madness confinement': 508170, 'confinement birthdaygirl': 194057, 'snapchat filter book': 776130, 'filter book and': 305755, 'book and trip': 134471, 'and trip to': 74461, 'the supermarket birthday': 868486, 'supermarket birthday celebration': 819377, 'birthday celebration couldn': 131423, 'celebration couldn get': 168851, 'couldn get any': 209884, 'get any wilder': 346582, 'any wilder stop': 80051, 'wilder stop the': 992112, 'stop the madness': 805139, 'the madness confinement': 859866, 'madness confinement birthdaygirl': 508171, 'american state': 52208, 'provided grocery': 686606, 'free childcare': 331707, 'childcare service': 176308, 'job considering': 465751, 'considering it': 195386, 'service vermont': 753037, 'vermont minnesota': 954856, 'couple of american': 211633, 'of american state': 580076, 'american state have': 52209, 'state have provided': 795656, 'have provided grocery': 382097, 'provided grocery store': 686607, 'store worker with': 811626, 'worker with free': 1008260, 'with free childcare': 998533, 'free childcare service': 331708, 'childcare service for': 176309, 'service for their': 752394, 'their commitment to': 872812, 'commitment to the': 189009, 'to the job': 916822, 'the job considering': 858653, 'job considering it': 465752, 'considering it an': 195387, 'an emergency service': 55688, 'emergency service vermont': 272972, 'service vermont minnesota': 753038, 'sportsdirect': 790013, 'they hiked': 882436, 'price sportsdirect': 676580, 'sportsdirect boycottsportsdirect': 790014, 'they hiked up': 882438, 'hiked up their': 396356, 'their price sportsdirect': 874423, 'price sportsdirect boycottsportsdirect': 676581, 'bald': 109034, 'hairbrush': 374016, 'dawie': 227036, 'eldersburg': 270969, 'in petrol': 426668, 'like bald': 489859, 'bald man': 109035, 'man winning': 512351, 'winning hairbrush': 996069, 'hairbrush dawie': 374017, 'dawie daily': 227037, 'daily dose': 224577, 'of mindful': 586549, 'mindful laughter': 532812, 'laughter on': 481844, 'facebook march': 294961, 'march 31': 515240, '31 gas': 17571, 'price eldersburg': 673666, 'eldersburg car': 270970, 'car care': 163045, 'care on': 164128, '31 quote': 17605, 'quote quarantine': 694999, 'drop in petrol': 260266, 'in petrol price': 426669, 'petrol price during': 653767, 'lockdown is like': 499548, 'is like bald': 449309, 'like bald man': 489860, 'bald man winning': 109036, 'man winning hairbrush': 512352, 'winning hairbrush dawie': 996070, 'hairbrush dawie daily': 374018, 'dawie daily dose': 227038, 'daily dose of': 224578, 'dose of mindful': 255930, 'of mindful laughter': 586550, 'mindful laughter on': 532813, 'laughter on facebook': 481845, 'on facebook march': 600711, 'facebook march 31': 294963, 'march 31 gas': 515242, '31 gas price': 17572, 'gas price eldersburg': 343958, 'price eldersburg car': 673667, 'eldersburg car care': 270971, 'car care on': 163047, 'care on facebook': 164129, 'march 31 quote': 515245, '31 quote quarantine': 17606, 'quote quarantine stayathome': 695000, 'disruption insurance': 246494, '19 disruption insurance': 6576, 'demonstration': 236871, 'hello am': 389124, 'nh doctor': 561936, 'doctor gp': 250933, 'gp could': 361404, 'the bbc': 849363, 'news program': 560713, 'program contain': 683229, 'contain demonstration': 200474, 'demonstration of': 236875, 'using real': 950618, 'important situation': 418963, 'out exercising': 626044, 'exercising advice': 290122, 'on di': 600305, 'hello am an': 389125, 'am an nh': 49887, 'an nh doctor': 56521, 'nh doctor gp': 561938, 'doctor gp could': 250935, 'gp could the': 361405, 'could the bbc': 209757, 'the bbc news': 849365, 'bbc news program': 113097, 'news program contain': 560714, 'program contain demonstration': 683230, 'contain demonstration of': 200475, 'demonstration of social': 236877, 'distancing using real': 247586, 'using real people': 950619, 'real people in': 701299, 'people in important': 648383, 'in important situation': 423988, 'important situation in': 418964, 'situation in the': 772325, 'supermarket or when': 821839, 'or when out': 617782, 'when out exercising': 983831, 'out exercising advice': 626045, 'exercising advice on': 290123, 'on how long': 601408, '19 stay on': 10801, 'stay on di': 797143, 'holesinsky': 400253, 'buhl': 141939, 'zionsbanker': 1027625, 'idahome': 412982, 'straight outta': 812226, 'outta idaho': 629710, 'idaho hand': 412969, 'at holesinsky': 98924, 'holesinsky winery': 400254, 'winery outside': 995960, 'outside buhl': 629383, 'buhl idaho': 141940, 'idaho zionsbanker': 412974, 'zionsbanker handsanitizer': 1027626, 'handsanitizer idahome': 376555, 'idahome idaho': 412983, 'idaho localbusiness': 412973, 'straight outta idaho': 812227, 'outta idaho hand': 629711, 'idaho hand sanitizer': 412970, 'sanitizer is flying': 735189, 'shelf at holesinsky': 756847, 'at holesinsky winery': 98925, 'holesinsky winery outside': 400255, 'winery outside buhl': 995961, 'outside buhl idaho': 629384, 'buhl idaho zionsbanker': 141941, 'idaho zionsbanker handsanitizer': 412975, 'zionsbanker handsanitizer idahome': 1027627, 'handsanitizer idahome idaho': 376556, 'idahome idaho localbusiness': 412984, 'appliance': 82405, 'relaxes': 708877, 'sensex': 750620, 'rbigovernor': 698101, 'update coronavirus': 946916, 'coronavirus effect': 205865, 'effect smartphone': 269110, 'smartphone consumer': 775522, 'consumer appliance': 196267, 'appliance company': 82412, 'company extend': 190641, 'extend product': 293119, 'product warranty': 681809, 'warranty coal': 967331, 'coal india': 185057, 'india relaxes': 434590, 'relaxes payment': 708880, 'payment term': 645752, 'term reschedule': 838268, 'reschedule auction': 713571, 'auction sensex': 102863, 'sensex end': 750623, 'end 400': 275757, '400 pt': 18776, 'pt up': 687613, 'up nifty': 945458, 'nifty above': 562681, 'above 600': 27034, '600 after': 21061, 'after fm': 35683, 'fm unveils': 311709, 'unveils relief': 944032, 'package coal': 633235, 'coal sensex': 185071, 'sensex rbigovernor': 750625, 'latest update coronavirus': 481587, 'update coronavirus effect': 946917, 'coronavirus effect smartphone': 205867, 'effect smartphone consumer': 269111, 'smartphone consumer appliance': 775523, 'consumer appliance company': 196269, 'appliance company extend': 82413, 'company extend product': 190642, 'extend product warranty': 293120, 'product warranty coal': 681810, 'warranty coal india': 967332, 'coal india relaxes': 185058, 'india relaxes payment': 434591, 'relaxes payment term': 708881, 'payment term reschedule': 645753, 'term reschedule auction': 838269, 'reschedule auction sensex': 713572, 'auction sensex end': 102864, 'sensex end 400': 750624, 'end 400 pt': 275758, '400 pt up': 18777, 'pt up nifty': 687614, 'up nifty above': 945459, 'nifty above 600': 562682, 'above 600 after': 27035, '600 after fm': 21062, 'after fm unveils': 35684, 'fm unveils relief': 311710, 'unveils relief package': 944033, 'relief package coal': 709419, 'package coal sensex': 633236, 'coal sensex rbigovernor': 185072, 'mask banned': 518461, 'from india': 336043, 'india now': 434544, 'now unfortunately': 576263, 'unfortunately price': 941637, 'of same': 589256, 'same are': 732969, 'local market': 498172, 'market apart': 516007, 'this 3rd': 886165, '3rd grade': 18427, 'grade fake': 361645, 'market currently': 516270, 'currently mask': 221589, 'mask handsanitizers': 518783, 'handsanitizers india': 376697, 'india export': 434398, 'export of mask': 292677, 'of mask banned': 586261, 'mask banned from': 518462, 'banned from india': 110572, 'from india now': 336044, 'india now unfortunately': 434545, 'now unfortunately price': 576264, 'unfortunately price of': 941638, 'price of same': 675559, 'of same are': 589257, 'same are still': 732970, 'high in local': 395127, 'in local market': 424821, 'local market apart': 498174, 'market apart from': 516008, 'apart from this': 81278, 'from this 3rd': 337985, 'this 3rd grade': 886166, '3rd grade fake': 18428, 'grade fake hand': 361646, 'are sold in': 90248, 'sold in local': 781687, 'local market currently': 498178, 'market currently mask': 516271, 'currently mask handsanitizers': 221590, 'mask handsanitizers india': 518784, 'handsanitizers india export': 376698, 'pandemic goodwill': 635505, 'goodwill of': 358105, 'central southern': 169423, 'southern indiana': 786862, 'indiana retail': 434924, 'sale floor': 732222, 'floor will': 310860, 'to shopper': 914510, 'shopper effective': 761494, 'effective friday': 269253, 'friday march': 333256, 'notice we': 573393, 'accept donation': 27957, 'during limited': 262751, '19 pandemic goodwill': 9338, 'pandemic goodwill of': 635506, 'goodwill of central': 358106, 'of central southern': 581240, 'central southern indiana': 169424, 'southern indiana retail': 786863, 'indiana retail store': 434925, 'retail store sale': 718699, 'store sale floor': 809967, 'sale floor will': 732223, 'floor will be': 310861, 'closed to shopper': 183399, 'to shopper effective': 914512, 'shopper effective friday': 761495, 'effective friday march': 269254, 'friday march 20': 333257, 'march 20 and': 515128, '20 and until': 12949, 'further notice we': 342120, 'notice we will': 573398, 'to accept donation': 899940, 'accept donation during': 27958, 'donation during limited': 254593, 'during limited hour': 262752, 'limited hour of': 492647, 'hour of 10': 405792, 'worker delivers': 1006737, 'delivers food': 233589, '99 year': 23923, 'man left': 512135, 'nothing by': 572966, 'by panicbuying': 153521, 'tesco worker delivers': 838856, 'worker delivers food': 1006738, 'delivers food to': 233590, 'food to 99': 317229, 'to 99 year': 899893, '99 year old': 23924, 'old man left': 598346, 'man left with': 512136, 'with nothing by': 999821, 'nothing by panicbuying': 572967, 'lockdowndown': 500241, 'samurthi': 733510, '94754': 23568, 'kid kindly': 474031, 'kindly help': 475134, 'ha lockdowndown': 371172, 'lockdowndown all': 500242, 'no samurthi': 565401, 'samurthi kindly': 733511, 'whatsapp 94754': 982884, 'of kid kindly': 585628, 'kid kindly help': 474032, 'kindly help is': 475136, 'country ha lockdowndown': 210719, 'ha lockdowndown all': 371173, 'lockdowndown all stock': 500243, 'food over no': 315725, 'over no samurthi': 630437, 'no samurthi kindly': 565402, 'samurthi kindly make': 733512, 'my whatsapp 94754': 550569, 'really scared': 702545, 'people come': 647490, 'for stupid': 325957, 'stupid thing': 815478, 'not wear': 572469, 'mask worse': 519594, 'worse my': 1010968, 'not send': 571526, 'me covid': 522616, 'supply yet': 826140, 'yet force': 1016078, 'force my': 328458, 'my team': 550324, 'work while': 1006009, 'continuing their': 201548, 'their nonsense': 874064, 'really scared people': 702548, 'scared people come': 741007, 'people come into': 647495, 'my store for': 550220, 'store for stupid': 807840, 'for stupid thing': 325959, 'stupid thing they': 815480, 'thing they do': 884847, 'do not wear': 249891, 'not wear mask': 572472, 'wear mask worse': 974415, 'mask worse my': 519595, 'worse my company': 1010969, 'my company will': 547775, 'will not send': 994269, 'not send me': 571528, 'send me covid': 749881, 'me covid 19': 522617, '19 supply yet': 10971, 'supply yet force': 826141, 'yet force my': 1016079, 'force my team': 328459, 'my team have': 550326, 'team have to': 835669, 'to work while': 918804, 'work while continuing': 1006010, 'while continuing their': 986710, 'continuing their nonsense': 201549, 'now shop': 575800, 'shop lockdown': 760430, 'lockdown stayathome': 499950, 'every supermarket right': 286265, 'right now shop': 722132, 'now shop lockdown': 575802, 'shop lockdown stayathome': 760431, 'douglas': 256280, 'channeling': 172963, 'ohgod': 596505, 'anyone act': 80170, 'like cunt': 490083, 'cunt while': 220376, 'going full': 355177, 'scale michael': 739897, 'michael douglas': 530236, 'douglas on': 256281, 'them channeling': 875525, 'channeling my': 172964, 'my inner': 548856, 'inner william': 438808, 'william foster': 995426, 'foster shopping': 330105, 'shopping ohgod': 763381, 'if anyone act': 413838, 'anyone act like': 80171, 'act like cunt': 29680, 'like cunt while': 490084, 'cunt while in': 220377, 'while in the': 986953, 'supermarket today going': 823445, 'today going full': 919578, 'going full scale': 355179, 'full scale michael': 340867, 'scale michael douglas': 739898, 'michael douglas on': 530237, 'douglas on them': 256282, 'on them channeling': 604530, 'them channeling my': 875526, 'channeling my inner': 172965, 'my inner william': 548858, 'inner william foster': 438809, 'william foster shopping': 995427, 'foster shopping ohgod': 330106, 'prevail': 671534, 'strong united': 814148, 'united we': 942268, 'will prevail': 994442, 'strong united we': 814149, 'united we will': 942269, 'we will prevail': 973889, 'unknowing': 942512, 'should those': 766591, 'high density': 395035, 'density area': 237065, 'area wear': 92256, 'wear homemade': 974364, 'from shirt': 337256, 'shirt for': 758980, 'example at': 288874, 'be asymptomatic': 113721, 'asymptomatic would': 97341, 'would this': 1012335, 'our breathing': 622266, 'breathing radius': 139243, 'radius and': 695482, 'limit unknowing': 492547, 'unknowing transmission': 942513, 'transmission cnn': 929737, 'should those of': 766592, 'of in high': 585026, 'in high density': 423681, 'high density area': 395036, 'density area wear': 237066, 'area wear homemade': 92257, 'wear homemade mask': 974365, 'homemade mask from': 402838, 'mask from shirt': 518707, 'from shirt for': 337258, 'shirt for example': 758981, 'for example at': 321272, 'example at the': 288875, 'store any of': 806428, 'any of could': 79531, 'of could be': 582013, 'could be asymptomatic': 208844, 'be asymptomatic would': 113724, 'asymptomatic would this': 97342, 'would this help': 1012336, 'this help limit': 887893, 'help limit our': 389998, 'limit our breathing': 492436, 'our breathing radius': 622267, 'breathing radius and': 139244, 'radius and limit': 695483, 'and limit unknowing': 66182, 'limit unknowing transmission': 492548, 'unknowing transmission cnn': 942514, 'done supermarket': 255032, 'how it done': 408128, 'it done supermarket': 457670, 'done supermarket in': 255033, 'detective': 239359, 'brixton': 140669, 'need bit': 554548, 'to flex': 906011, 'flex your': 310355, 'your detective': 1023500, 'detective skill': 239360, 'skill while': 772988, 'it try': 461874, 'our brixton': 622275, 'brixton bottle': 140670, 'bottle mystery': 136263, 'mystery in': 551009, 'which find': 985856, 'find message': 307059, 'message in': 529340, 'in bottle': 420929, 'her garden': 392069, 'garden help': 343602, 'help find': 389726, 'it mystery': 459721, 'mystery author': 551001, 'need bit of': 554549, 'bit of relief': 131657, 'of relief and': 588914, 'relief and want': 709282, 'want to flex': 966036, 'to flex your': 906012, 'flex your detective': 310356, 'your detective skill': 1023501, 'detective skill while': 239361, 'skill while you': 772989, 'at it try': 99339, 'it try our': 461876, 'try our brixton': 934535, 'our brixton bottle': 622276, 'brixton bottle mystery': 140671, 'bottle mystery in': 136264, 'mystery in which': 551010, 'in which find': 430861, 'which find message': 985857, 'find message in': 307060, 'message in bottle': 529341, 'in bottle in': 420930, 'bottle in her': 136243, 'in her garden': 423656, 'her garden help': 392070, 'garden help find': 343603, 'help find it': 389727, 'find it mystery': 307001, 'it mystery author': 459722, '428': 18946, 'on slowing': 603505, 'slowing rate': 774568, 'infection price': 436819, 'slip opec': 774024, 'opec delay': 611874, 'delay key': 232722, 'key meeting': 473346, 'meeting close': 527679, 'close 428': 182492, '428 aussie': 18947, 'aussie store': 103136, 'store plus': 809602, 'plus future': 661611, 'future point': 342420, 'to huge': 908043, 'tonight via': 924512, 'surge on slowing': 828238, 'on slowing rate': 603506, 'slowing rate of': 774569, 'rate of infection': 697317, 'of infection price': 585168, 'infection price slip': 436820, 'price slip opec': 676474, 'slip opec delay': 774025, 'opec delay key': 611875, 'delay key meeting': 232723, 'key meeting close': 473347, 'meeting close 428': 527680, 'close 428 aussie': 182493, '428 aussie store': 18948, 'aussie store plus': 103137, 'store plus future': 809603, 'plus future point': 661612, 'future point to': 342421, 'point to huge': 662667, 'to huge jump': 908044, 'huge jump on': 410079, 'jump on tonight': 467886, 'on tonight via': 604799, 'you bastard': 1017384, 'bastard bastard': 112468, 'bastard the': 112508, 'for baby': 319558, 'you bastard bastard': 1017385, 'bastard bastard the': 112469, 'bastard the most': 112509, 'most basic need': 542132, 'need for baby': 554827, 'knell': 476019, 'death knell': 230106, 'knell of': 476020, 'consumer capitalism': 196730, 'capitalism if': 162762, 'system itself': 831234, 'on the death': 604057, 'the death knell': 852972, 'death knell of': 230107, 'knell of consumer': 476021, 'of consumer capitalism': 581718, 'consumer capitalism if': 196732, 'capitalism if not': 162763, 'not the capitalist': 571987, 'capitalist system itself': 162821, 'sending special': 750091, 'and frontliners': 63359, 'frontliners in': 338896, 'sending special thank': 750092, 'worker and frontliners': 1006298, 'and frontliners in': 63360, 'frontliners in our': 338897, 'moderna': 535404, 'well moderna': 978399, 'moderna is': 535405, 'first vaccine': 309153, 'vaccine trial': 951786, 'for covid19': 320436, 'covid19 sample': 214372, 'sample size': 733483, '45 to': 19143, 'date other': 226708, 'other corona': 620005, 'virus vaccination': 958972, 'vaccination have': 951628, 'in respiratory': 427413, 'respiratory issue': 715244, 'issue choosing': 455706, 'choosing the': 177940, 'right victim': 722389, 'victim or': 956506, 'well moderna is': 978400, 'moderna is the': 535406, 'the first vaccine': 855362, 'first vaccine trial': 309154, 'vaccine trial for': 951787, 'trial for covid19': 931643, 'for covid19 sample': 320439, 'covid19 sample size': 214373, 'sample size of': 733484, 'size of 45': 772784, 'of 45 to': 579593, '45 to date': 19145, 'to date other': 903938, 'date other corona': 226709, 'other corona virus': 620006, 'corona virus vaccination': 204370, 'virus vaccination have': 958973, 'vaccination have resulted': 951629, 'resulted in respiratory': 717685, 'in respiratory issue': 427414, 'respiratory issue choosing': 715245, 'issue choosing the': 455707, 'choosing the right': 177941, 'the right victim': 865835, 'right victim or': 722390, 'victim or risk': 956507, 'or risk group': 616915, 'risk group for': 723591, 'group for this': 366699, 'this test is': 890494, 'test is critical': 839040, 'coffee in': 185497, 'peace because': 645990, 'because our': 119453, 'team apply': 835583, 'apply hygiene': 82570, 'standard to': 793710, 'health switzerland': 386883, 'switzerland coffee': 830603, 'you can enjoy': 1017670, 'can enjoy your': 158226, 'your coffee in': 1023249, 'coffee in peace': 185499, 'in peace because': 426564, 'peace because our': 645991, 'because our team': 119455, 'our team apply': 625095, 'team apply hygiene': 835584, 'apply hygiene standard': 82571, 'hygiene standard to': 412170, 'standard to protect': 793712, 'staff and consumer': 792132, 'and consumer health': 60389, 'consumer health switzerland': 197732, 'health switzerland coffee': 386884, 'endoftimes': 276263, 'then cry': 877104, 'cry when': 219927, 'the wife': 871548, 'wife asks': 991900, 'asks me': 96150, 'now wife': 576418, 'wife cry': 991908, 'when volunteer': 984392, 'supermarket endoftimes': 820165, 'endoftimes wewillsurvive': 276264, 'then cry when': 877105, 'cry when the': 219928, 'when the wife': 984214, 'the wife asks': 871549, 'wife asks me': 991901, 'asks me to': 96151, 'supermarket now wife': 821677, 'now wife cry': 576419, 'wife cry when': 991909, 'cry when volunteer': 219930, 'when volunteer to': 984393, 'volunteer to go': 960351, 'the supermarket endoftimes': 868572, 'supermarket endoftimes wewillsurvive': 820166, 'drap': 258391, 'drap ha': 258392, 'approved production': 83188, 'material for': 520383, 'for chloroquine': 320070, 'chloroquine drug': 177597, 'drug believed': 260892, 'that over': 845613, '50 company': 19655, 'sanitisers for': 734085, 'month chloroquine': 537644, 'chloroquine sanitizer': 177627, 'drap ha also': 258393, 'ha also approved': 369519, 'also approved production': 47878, 'approved production of': 83189, 'production of raw': 682152, 'of raw material': 588757, 'raw material for': 697974, 'material for chloroquine': 520384, 'for chloroquine drug': 320071, 'chloroquine drug believed': 177598, 'drug believed to': 260893, 'effective in the': 269272, 'in the treatment': 429627, 'treatment of in': 931110, 'of in addition': 585018, 'addition to that': 31751, 'to that over': 916459, 'that over 50': 845615, 'over 50 company': 629855, '50 company have': 19656, 'company have been': 190731, 'asked to produce': 95872, 'produce hand sanitisers': 680289, 'hand sanitisers for': 375265, 'sanitisers for three': 734086, 'for three month': 327175, 'three month chloroquine': 893995, 'month chloroquine sanitizer': 537645, 'scam trying': 740439, 'outbreak continue': 628128, 'and evolve': 62440, 'evolve almost': 288499, 'like virus': 491738, 'scam trying to': 740440, '19 outbreak continue': 9105, 'outbreak continue to': 628129, 'spread and evolve': 790407, 'and evolve almost': 62441, 'evolve almost like': 288500, 'almost like virus': 46689, 'of unstable': 592666, 'unstable and': 943527, 'income job': 432392, 'job you': 466312, 'to resource': 913368, 'resource this': 714899, 'this also': 886283, 'also will': 49103, 'will harm': 993607, 'harm customer': 378391, 'these driver': 879940, 'delivering package': 233536, 'package while': 633456, 'being potentially': 125565, 'is the reality': 452916, 'reality of unstable': 701782, 'of unstable and': 592667, 'unstable and low': 943528, 'low income job': 505352, 'income job you': 432393, 'job you cannot': 466315, 'you cannot afford': 1017845, 'sick and you': 768376, 'access to resource': 28274, 'to resource this': 913369, 'resource this also': 714900, 'this also will': 886288, 'also will harm': 49104, 'will harm customer': 993608, 'harm customer because': 378392, 'customer because these': 222177, 'because these driver': 119681, 'these driver are': 879941, 'driver are delivering': 259433, 'are delivering package': 85766, 'delivering package while': 233539, 'package while being': 633457, 'while being potentially': 986647, 'being potentially exposed': 125566, 'mocking': 535132, 'are mocking': 88093, 'mocking it': 535137, 'it bumping': 456929, 'these bastard are': 879676, 'bastard are mocking': 112463, 'are mocking it': 88095, 'mocking it bumping': 535138, 'it bumping up': 456930, 'isolate and survive': 454819, 'live with': 496112, 'my he': 548627, 'risk wa': 724000, 'your pay': 1025239, 'live apart': 495727, 'or quit': 616771, 'quit and': 694789, 'and move': 67289, 'on expect': 600670, 'best nyc': 127790, 'store and live': 806283, 'and live with': 66255, 'live with my': 496120, 'with my he': 999632, 'my he is': 548628, 'he is high': 385128, 'is high risk': 448450, 'high risk wa': 395377, 'risk wa out': 724001, 'of your pay': 593509, 'your pay my': 1025240, 'pay my only': 645007, 'is to live': 453220, 'to live apart': 909337, 'live apart and': 495728, 'apart and work': 81228, 'and work through': 75864, 'work through this': 1005868, 'through this or': 894834, 'this or quit': 889287, 'or quit and': 616772, 'quit and move': 694790, 'and move on': 67290, 'move on expect': 543700, 'on expect the': 600671, 'expect the best': 290745, 'the best nyc': 849530, 'the tireless': 869656, 'tireless hospital': 899063, 'trucker grocery': 932922, '19 we want': 11958, 'thank the tireless': 841650, 'the tireless hospital': 869657, 'tireless hospital worker': 899064, 'hospital worker trucker': 404742, 'worker trucker grocery': 1008055, 'trucker grocery store': 932923, 'employee and so': 273584, 'many more for': 514301, 'more for all': 539260, 'runner': 727881, 'amazes': 50629, 'ponytail': 663989, 'dodge more': 251276, '40 jogger': 18589, 'jogger runner': 466498, 'runner this': 727882, 'morning on': 541387, 'and stupidity': 72626, 'stupidity amazes': 815514, 'amazes me': 50630, 'this ponytail': 889656, 'ponytail crossed': 663990, 'crossed the': 219062, 'run 1m': 727543, '1m past': 12661, 'past 100': 643488, 'people queueing': 649216, 'for sainsbury': 325305, 'had to dodge': 373686, 'to dodge more': 904615, 'dodge more than': 251277, 'than 40 jogger': 840239, '40 jogger runner': 18590, 'jogger runner this': 466499, 'runner this morning': 727883, 'this morning on': 888994, 'morning on my': 541389, 'on my trip': 602327, 'office and supermarket': 595361, 'and supermarket the': 72742, 'supermarket the selfishness': 823245, 'selfishness and stupidity': 748335, 'and stupidity amazes': 72627, 'stupidity amazes me': 815515, 'amazes me this': 50632, 'me this ponytail': 523722, 'this ponytail crossed': 889657, 'ponytail crossed the': 663991, 'crossed the road': 219064, 'road to run': 724526, 'to run 1m': 913653, 'run 1m past': 727544, '1m past 100': 12662, 'past 100 people': 643489, '100 people queueing': 2019, 'people queueing for': 649217, 'queueing for sainsbury': 694172, 'are exploiting panic': 86368, 'exploiting panic for': 292439, 'bramalea': 137646, 'how canadian': 407533, 'canadian in': 160703, 'ontario responded': 611625, 'the declaration': 852999, 'province over': 687188, 'over empty': 630181, 'road mall': 724477, 'shelf toilet': 757709, 'is metro': 449644, 'store inside': 808435, 'inside bramalea': 439235, 'bramalea city': 137647, 'city center': 179087, 'center mall': 169253, 'mall brampton': 511761, 'brampton workingfromhome': 137660, 'how canadian in': 407534, 'canadian in ontario': 160704, 'in ontario responded': 426185, 'ontario responded to': 611626, 'to the declaration': 916629, 'the declaration of': 853000, 'of emergency by': 583029, 'emergency by the': 272616, 'by the province': 154416, 'the province over': 864733, 'province over empty': 687189, 'over empty road': 630183, 'empty road mall': 275032, 'road mall and': 724478, 'mall and grocery': 511734, 'and grocery shelf': 64000, 'grocery shelf toilet': 364959, 'shelf toilet paper': 757710, 'of stock this': 590197, 'this is metro': 888319, 'is metro store': 449645, 'metro store inside': 529943, 'store inside bramalea': 808436, 'inside bramalea city': 439236, 'bramalea city center': 137648, 'city center mall': 179088, 'center mall brampton': 169254, 'mall brampton workingfromhome': 511762, 'current shift': 221354, 'consumer pattern': 198340, 'pattern isn': 644478, 'isn short': 454664, 'the chamber': 850656, 'commerce predicts': 188614, 'create permanent': 215719, 'ecommerce digitalmarketing': 266753, 'the current shift': 852664, 'current shift in': 221355, 'in consumer pattern': 421709, 'consumer pattern isn': 198341, 'pattern isn short': 644479, 'isn short term': 454665, 'term the chamber': 838318, 'the chamber of': 850657, 'of commerce predicts': 581555, 'commerce predicts that': 188615, 'predicts that the': 669698, 'that the effect': 846714, '19 will create': 12085, 'will create permanent': 993073, 'create permanent change': 215720, 'change in shopping': 172133, 'in shopping behavior': 427906, 'behavior ecommerce digitalmarketing': 124015, '19 within': 12147, 'within it': 1002371, 'supermarket chain is': 819613, 'chain is taking': 170848, 'step to reduce': 799662, 'covid 19 within': 214081, '19 within it': 12148, 'within it store': 1002372, 'country rose': 211020, 'rose from': 726066, 'year by': 1014453, 'cent due': 169047, 'the drought': 853721, 'drought and': 260761, 'in foreign': 423039, 'foreign market': 328986, 'rice price in': 721113, 'the country rose': 852146, 'country rose from': 211021, 'rose from the': 726067, 'this year by': 891564, 'year by 20': 1014454, 'by 20 to': 151581, '20 to 30': 13391, '30 per cent': 17186, 'per cent due': 650748, 'cent due to': 169048, 'to the drought': 916656, 'the drought and': 853722, 'drought and increasing': 260762, 'and increasing demand': 65124, 'increasing demand in': 433584, 'demand in foreign': 235669, 'in foreign market': 423041, 'foreign market amid': 328987, 'granville': 362119, 'the granville': 856699, 'granville island': 362120, 'island public': 454303, 'but asks': 145233, 'asks shopper': 96158, 'to reserve': 913340, 'senior remember': 750392, 'remember do': 710181, 'not already': 568165, 'have isle': 381130, 'the granville island': 856700, 'granville island public': 362121, 'island public market': 454304, 'public market will': 688159, 'market will remain': 517363, 'open during but': 612195, 'during but asks': 262482, 'but asks shopper': 145234, 'asks shopper to': 96159, 'shopper to reserve': 761772, 'to reserve the': 913341, 'reserve the first': 714105, 'first hour to': 308717, 'hour to 10': 406010, 'to 10 for': 899424, '10 for senior': 1436, 'for senior remember': 325474, 'senior remember do': 750393, 'remember do not': 710182, 'not panic just': 570917, 'panic just buy': 638247, 'just buy the': 468385, 'the essential you': 854529, 'essential you do': 281876, 'do not already': 249662, 'not already have': 568168, 'already have isle': 47422, 'glucose': 353079, 'if sanitizer': 414748, 'sanitizer having': 735058, 'having alcohol': 383961, 'alcohol can': 40949, 'virus then': 958891, 'give alcohol': 350362, 'alcohol through': 41143, 'through glucose': 894484, 'glucose to': 353084, 'to arrogant': 900732, 'arrogant virus': 94029, 'virus positive': 958643, 'positive patient': 665400, 'result instead': 717555, 'of waiting': 592882, 'for vaccine': 327511, 'vaccine which': 951796, 'if sanitizer having': 414750, 'sanitizer having alcohol': 735060, 'having alcohol can': 383962, 'alcohol can kill': 40952, 'can kill virus': 158826, 'kill virus then': 474548, 'virus then we': 958893, 'then we can': 877722, 'we can give': 970955, 'can give alcohol': 158476, 'give alcohol through': 350363, 'alcohol through glucose': 41144, 'through glucose to': 894485, 'glucose to arrogant': 353085, 'to arrogant virus': 900733, 'arrogant virus positive': 94030, 'virus positive patient': 958644, 'positive patient and': 665401, 'patient and see': 644138, 'see the result': 745881, 'the result instead': 865694, 'result instead of': 717556, 'instead of waiting': 440336, 'of waiting for': 592883, 'waiting for vaccine': 964345, 'for vaccine which': 327514, 'vaccine which will': 951797, 'which will come': 986483, 'will come after': 992962, 'come after year': 187193, 'isp': 455571, 'no particular': 565065, 'particular order': 642627, 'order nurse': 618430, 'doctor paramedic': 251068, 'paramedic ambulance': 641366, 'ambulance driver': 51329, 'driver policeman': 259701, 'policeman woman': 663289, 'woman public': 1003583, 'transport employee': 929879, 'employee teacher': 274267, 'teacher electricity': 835456, 'electricity worker': 271225, 'collector grocery': 186568, 'employee water': 274388, 'water work': 969267, 'work employee': 1005091, 'employee isp': 273992, 'isp employee': 455572, 'employee many': 274034, 'today let be': 919796, 'let be thankful': 486622, 'thankful to in': 841930, 'to in no': 908230, 'in no particular': 425914, 'no particular order': 565066, 'particular order nurse': 642629, 'order nurse doctor': 618431, 'nurse doctor paramedic': 577304, 'doctor paramedic ambulance': 251069, 'paramedic ambulance driver': 641367, 'ambulance driver policeman': 51330, 'driver policeman woman': 259702, 'policeman woman public': 663290, 'woman public transport': 1003584, 'public transport employee': 688405, 'transport employee teacher': 929880, 'employee teacher electricity': 274268, 'teacher electricity worker': 835457, 'electricity worker garbage': 271226, 'garbage collector grocery': 343522, 'collector grocery store': 186569, 'store employee water': 807569, 'employee water work': 274389, 'water work employee': 969268, 'work employee isp': 1005092, 'employee isp employee': 273993, 'isp employee many': 455573, 'employee many others': 274036, 'thehackersnews': 872393, 'thehackersnews way': 872394, 'malicious application': 511711, 'application email': 82449, 'thehackersnews way hacker': 872395, 'exploiting the scare': 292460, 'the scare for': 866444, 'scare for espionage': 740875, 'gain malicious application': 342790, 'malicious application email': 511712, 'application email phishing': 82450, 'discount scam read': 244532, 'our california': 622302, 'california showroom': 155573, 'showroom are': 767638, 'closed temporarily': 183359, 'temporarily in': 837500, 'with governor': 998664, 'governor newsom': 360946, 'newsom executive': 561066, 'information may': 437888, 'website thank': 975425, 'our california showroom': 622303, 'california showroom are': 155574, 'showroom are closed': 767639, 'are closed temporarily': 85369, 'closed temporarily in': 183360, 'temporarily in accordance': 837501, 'accordance with governor': 28508, 'with governor newsom': 998665, 'governor newsom executive': 360947, 'newsom executive order': 561067, 'executive order to': 289927, '19 visit to': 11851, 'visit to shop': 959416, 'to shop with': 914502, 'shop with online': 761061, 'with online more': 999897, 'online more information': 608560, 'more information may': 539588, 'information may be': 437889, 'may be available': 520951, 'be available on': 113759, 'our website thank': 625352, 'website thank you': 975426, 'you for shopping': 1018669, 'for shopping with': 325600, 'revision': 720657, 'zinc': 1027605, 'aluminium': 49419, 'fy21': 342612, 'outlook revision': 629180, 'revision factor': 720658, 'of sharply': 589568, 'of brent': 580869, 'brent zinc': 139357, 'zinc and': 1027606, 'and aluminium': 57991, 'aluminium in': 49426, 'in fy21': 423199, 'fy21 in': 342613, 'pandemic report': 636332, 'the outlook revision': 862744, 'outlook revision factor': 629181, 'revision factor in': 720659, 'factor in the': 295889, 'in the risk': 429518, 'risk of sharply': 723776, 'of sharply lower': 589569, 'sharply lower commodity': 755752, 'commodity price of': 189280, 'price of brent': 675416, 'of brent zinc': 580870, 'brent zinc and': 139358, 'zinc and aluminium': 1027607, 'and aluminium in': 57992, 'aluminium in fy21': 49427, 'in fy21 in': 423200, 'fy21 in the': 342614, 'wake of pandemic': 964599, 'of pandemic report': 587706, 'low hurt': 505324, 'hurt demand': 411564, 'russia battle': 728442, 'battle for': 112795, 'share wti': 755364, 'tumble 24': 935292, '24 or': 15666, 'or 58': 614206, '58 bbl': 20525, 'bbl to': 113179, '20 37': 12903, '37 lowest': 18075, 'february 2002': 301668, '2002 wti': 13584, 'their worst': 875242, 'month ever': 537709, 'ever down': 285279, 'down 54': 256426, '54 cl': 20324, 'cl oott': 179677, 'price plunge to': 675931, 'plunge to 18': 661465, 'year low hurt': 1014722, 'low hurt demand': 505325, 'hurt demand and': 411565, 'demand and saudi': 234997, 'arabia russia battle': 83921, 'russia battle for': 728443, 'battle for market': 112798, 'for market share': 323253, 'market share wti': 517053, 'share wti price': 755365, 'wti price tumble': 1013406, 'price tumble 24': 677143, 'tumble 24 or': 935293, '24 or 58': 15667, 'or 58 bbl': 614208, '58 bbl to': 20526, 'bbl to end': 113180, 'to end at': 905074, 'end at 20': 275782, 'at 20 37': 97497, '20 37 lowest': 12904, '37 lowest since': 18076, 'lowest since february': 506229, 'since february 2002': 770588, 'february 2002 wti': 301669, '2002 wti price': 13585, 'wti price are': 1013403, 'are on track': 88740, 'track for their': 928193, 'for their worst': 326887, 'their worst month': 875243, 'worst month ever': 1011221, 'month ever down': 537710, 'ever down 54': 285280, 'down 54 cl': 256427, '54 cl oott': 20325, 'bore': 135318, 'lion': 494026, 'cornflakes': 203715, 'don mean': 253729, 'to bore': 901941, 'bore people': 135321, 'food lion': 315323, 'lion trip': 494036, 'trip every': 932068, 'the handful': 857068, 'handful of': 376102, 'night that': 563089, 'only sort': 611169, 'personal contact': 652814, 'with human': 998908, 'world bread': 1009371, 'bread back': 138419, 'stock cornflakes': 802020, 'cornflakes back': 203716, 'don mean to': 253732, 'mean to bore': 524729, 'to bore people': 901942, 'bore people with': 135322, 'people with my': 650462, 'with my food': 999625, 'my food lion': 548384, 'food lion trip': 315324, 'lion trip every': 494037, 'trip every 10': 932069, 'every 10 day': 285638, '10 day or': 1387, 'day or so': 228174, 'or so but': 617125, 'so but other': 776667, 'but other than': 146714, 'other than the': 621083, 'than the handful': 841244, 'the handful of': 857069, 'handful of people': 376105, 'of people working': 588030, 'at the post': 101058, 'the post at': 864081, 'post at night': 666011, 'at night that': 99885, 'night that my': 563091, 'that my only': 845275, 'my only sort': 549594, 'only sort of': 611170, 'sort of personal': 786134, 'of personal contact': 588061, 'personal contact with': 652815, 'contact with human': 200274, 'with human in': 998909, 'human in the': 410516, '19 world bread': 12183, 'world bread back': 1009372, 'bread back in': 138420, 'in stock cornflakes': 428294, 'stock cornflakes back': 802021, 'cornflakes back in': 203717, 'contentworks': 200868, 'contentworks director': 200869, 'contentworks director niki': 200870, 'short video': 764782, 'why gold': 991018, 'not performed': 571004, 'performed well': 651485, 'current uncertain': 221418, 'uncertain environment': 939582, 'environment 19': 279073, 'my short video': 550067, 'short video on': 764784, 'video on why': 956850, 'on why gold': 605311, 'why gold price': 991019, 'price have not': 674441, 'have not performed': 381692, 'not performed well': 571005, 'performed well in': 651486, 'well in the': 978315, 'the current uncertain': 852675, 'current uncertain environment': 221419, 'uncertain environment 19': 939583, 'store vibe': 811065, 'vibe right': 956397, 'customer asking': 222139, 'about potato': 25974, 'potato another': 666904, 'another customer': 77557, 'customer say': 222796, 'stocking some': 803597, 'now store': 575920, 'store announcement': 806413, 'grocery store vibe': 365914, 'store vibe right': 811066, 'vibe right now': 956398, 'now to the': 576189, 'the customer asking': 852714, 'customer asking about': 222140, 'asking about potato': 95932, 'about potato another': 25975, 'potato another customer': 666905, 'another customer say': 77558, 'customer say they': 222799, 're stocking some': 699616, 'stocking some now': 803598, 'some now store': 783370, 'now store announcement': 575921, 'essentialfoodbox': 281888, 'foodessentialbox': 317908, 'deliver key': 233156, 'key essential': 473281, 'box curbside': 137040, 'curbside to': 220681, 'limit people': 492443, 'then panic': 877399, 'buying essentialfoodbox': 150241, 'essentialfoodbox what': 281889, 'in foodessentialbox': 422995, 'store to set': 810813, 'set up and': 753545, 'up and deliver': 944314, 'and deliver key': 61082, 'deliver key essential': 233157, 'key essential food': 473282, 'essential food box': 281041, 'food box curbside': 313775, 'box curbside to': 137041, 'curbside to limit': 220682, 'to limit people': 909293, 'limit people going': 492444, 'and then panic': 73789, 'then panic buying': 877400, 'panic buying essentialfoodbox': 637719, 'buying essentialfoodbox what': 150242, 'essentialfoodbox what would': 281890, 'would you have': 1012411, 'have in foodessentialbox': 381035, 'price plummeting': 675916, 'pandemic forcing': 635456, 'forcing shutdown': 328731, 'shutdown huge': 768040, 'huge loss': 410092, 'loss are': 503642, 'in saudi': 427706, 'oil price plummeting': 597216, 'price plummeting and': 675917, 'plummeting and the': 661365, 'the pandemic forcing': 862969, 'pandemic forcing shutdown': 635457, 'forcing shutdown huge': 328732, 'shutdown huge loss': 768041, 'huge loss are': 410094, 'loss are seen': 503644, 'are seen in': 89925, 'seen in saudi': 747083, 'in saudi arabia': 427707, '8m': 23193, 'today given': 919571, 'my zero': 550675, 'zero hour': 1027460, 'job am': 465606, 'in preservation': 426931, 'preservation mode': 670686, 'mode in': 535176, 'with recommendation': 1000422, 'recommendation one': 704760, 'the 8m': 848204, '8m would': 23198, 'rather live': 697482, 'my than': 550346, 'than die': 840501, 'die working': 241491, 'another year': 77987, 'have today given': 383345, 'today given up': 919572, 'given up my': 351197, 'up my zero': 945441, 'my zero hour': 550676, 'zero hour supermarket': 1027462, 'hour supermarket job': 405965, 'supermarket job am': 821204, 'job am in': 465607, 'am in preservation': 50141, 'in preservation mode': 426932, 'preservation mode in': 670687, 'mode in accordance': 535177, 'accordance with recommendation': 28510, 'with recommendation one': 1000423, 'recommendation one of': 704761, 'of the 8m': 590774, 'the 8m would': 848205, '8m would rather': 23199, 'would rather live': 1012158, 'rather live to': 697483, 'live to get': 496068, 'get my than': 347641, 'my than die': 550347, 'than die working': 840504, 'die working for': 241492, 'working for another': 1008635, 'for another year': 319380, '103': 2243, 'your error': 1023682, 'error and': 280222, 'fixed post': 309819, 'post wa': 666389, 'on museum': 602255, 'museum doing': 546243, 'tour another': 926921, 'another wa': 77944, 'on 103': 599000, '103 year': 2247, 'woman surviving': 1003623, 'surviving covid': 829351, 'other wa': 621180, 'on lowering': 601950, 'lowering gas': 506107, 'have removed': 382263, 'removed the': 710880, 'the strike': 868287, 'strike but': 813733, 'your kept': 1024544, 'issue on': 455870, 'know this started': 476896, 'this started with': 890301, 'started with your': 794918, 'with your error': 1002196, 'your error and': 1023683, 'error and it': 280223, 'and it need': 65560, 'be fixed post': 114878, 'fixed post wa': 309820, 'post wa on': 666390, 'wa on museum': 962830, 'on museum doing': 602256, 'museum doing online': 546244, 'doing online tour': 252585, 'online tour another': 609622, 'tour another wa': 926922, 'another wa on': 77945, 'wa on 103': 962820, 'on 103 year': 599001, '103 year old': 2248, 'old woman surviving': 598549, 'woman surviving covid': 1003624, 'surviving covid 19': 829352, '19 the other': 11227, 'the other wa': 862562, 'other wa on': 621181, 'wa on lowering': 962828, 'on lowering gas': 601951, 'lowering gas price': 506108, 'gas price so': 344025, 'price so now': 676512, 'so now you': 777913, 'now you have': 576511, 'you have removed': 1019105, 'have removed the': 382264, 'removed the strike': 710882, 'the strike but': 868288, 'strike but your': 813734, 'but your kept': 148014, 'your kept the': 1024545, 'kept the issue': 473076, 'the issue on': 858575, 'issue on my': 455873, 'self driving': 747616, 'driving robot': 259998, 'robot delivers': 724795, 'it dispenses': 457586, 'shanghai china': 754798, 'this self driving': 890014, 'self driving robot': 747617, 'driving robot delivers': 259999, 'robot delivers food': 724796, 'to family on': 905659, 'family on the': 298120, 'street and it': 812894, 'and it dispenses': 65514, 'it dispenses hand': 457587, 'sanitizer in shanghai': 735155, 'in shanghai china': 427856, 'shanghai china in': 754799, 'china in an': 176726, 'coronavirus outbreak this': 206417, 'outbreak this is': 628748, 'this is awesome': 888183, 'wastereduction': 968293, 'ecoconscious': 266665, 'ecofriendly': 266668, 'will panic': 994369, 'buying affect': 149862, 'affect food': 34143, 'waste reduction': 968177, 'reduction wastereduction': 706398, 'wastereduction ecoconscious': 968294, 'ecoconscious ecofriendly': 266666, 'ecofriendly foodwaste': 266669, 'how will panic': 409236, 'will panic buying': 994371, 'panic buying affect': 637632, 'buying affect food': 149863, 'affect food waste': 34148, 'food waste reduction': 317490, 'waste reduction wastereduction': 968178, 'reduction wastereduction ecoconscious': 706399, 'wastereduction ecoconscious ecofriendly': 968295, 'ecoconscious ecofriendly foodwaste': 266667, 'via via': 956352, 'quarantinediaries these': 692913, 'these make': 880271, 'make great': 509947, 'via via my': 956353, '2020 quarantinediaries these': 14552, 'quarantinediaries these make': 692914, 'these make great': 880272, 'make great gift': 509949, 'great gift quarantinelife': 362704, 'in lawsuit': 424641, 'lawsuit filed': 482530, 'filed by': 305393, 'by nonprofit': 153348, 'ethic washlite': 283061, 'news ha': 560490, 'violating washington': 957507, 'act by': 29606, 'by falsely': 152539, 'falsely stating': 297478, 'stating in': 796301, 'coronavirus wa': 207034, 'in lawsuit filed': 424642, 'lawsuit filed by': 482531, 'filed by nonprofit': 305394, 'by nonprofit group': 153349, 'and ethic washlite': 62293, 'ethic washlite fox': 283062, 'fox news ha': 330764, 'news ha been': 560491, 'accused of violating': 28958, 'of violating washington': 592807, 'violating washington state': 957508, 'protection act by': 685272, 'act by falsely': 29609, 'by falsely stating': 152541, 'falsely stating in': 297479, 'stating in that': 796302, 'novel coronavirus wa': 573765, 'coronavirus wa hoax': 207036, 'gelii': 345185, 'family stock': 298255, 'today handsanitiser': 919608, 'handsanitiser staysafe': 376455, 'stayathome healthy': 797499, 'healthy nail': 387697, 'nail gelii': 551446, 'you protecting your': 1020473, 'protecting your self': 685257, 'your self and': 1025701, 'self and your': 747551, 'your family stock': 1023803, 'family stock up': 298256, 'sanitizer today handsanitiser': 735960, 'today handsanitiser staysafe': 919609, 'handsanitiser staysafe stayhome': 376456, 'staysafe stayhome stayathome': 798903, 'stayhome stayathome healthy': 798131, 'stayathome healthy nail': 797500, 'healthy nail gelii': 387698, 'fraudsters often': 331427, 'often prey': 596264, 'most difficult': 542250, 'difficult situation': 242261, 'situation if': 772311, 'are contacted': 85537, 'by someone': 154082, 'someone offering': 784584, 'an event': 55875, 'vacation watch': 951607, 'for sign': 325616, 'fraudsters often prey': 331428, 'often prey on': 596265, 'prey on people': 672071, 'on people in': 602742, 'the most difficult': 860971, 'most difficult situation': 542252, 'difficult situation if': 242265, 'situation if you': 772312, 'you are contacted': 1017097, 'are contacted by': 85538, 'contacted by someone': 200322, 'by someone offering': 154084, 'someone offering to': 784585, 'offering to collect': 595302, 'to collect your': 902972, 'collect your money': 186345, 'your money for': 1024859, 'money for an': 536746, 'for an event': 319288, 'an event or': 55878, 'event or vacation': 285047, 'or vacation watch': 617633, 'vacation watch for': 951608, 'watch for sign': 968416, 'for sign of': 325617, 'sign of potential': 769167, 'citigroup': 178792, 'pessimistic': 653327, 'possible citigroup': 665604, 'citigroup laid': 178793, 'laid out': 479039, 'out pessimistic': 627040, 'pessimistic scenario': 653332, 'which wti': 986526, 'wti fall': 1013390, 'barrel energy': 111219, 'energy aspect': 276396, 'aspect said': 96221, 'said brent': 731006, 'brent could': 139326, '10 mizuho': 1545, 'security said': 744737, 'some oil': 783427, 'oil could': 596707, 'could even': 209139, 'even fall': 284051, 'into negative': 442797, 'negative territory': 556829, 'territory absent': 838554, 'absent shale': 27207, 'shale shut': 754509, 'oil is possible': 596911, 'is possible citigroup': 450947, 'possible citigroup laid': 665605, 'citigroup laid out': 178794, 'laid out pessimistic': 479040, 'out pessimistic scenario': 627041, 'pessimistic scenario in': 653333, 'scenario in which': 741266, 'in which wti': 430873, 'which wti fall': 986527, 'wti fall to': 1013391, 'fall to per': 297100, 'to per barrel': 911651, 'per barrel energy': 650696, 'barrel energy aspect': 111220, 'energy aspect said': 276397, 'aspect said brent': 96222, 'said brent could': 731007, 'brent could fall': 139327, 'fall to 10': 297085, 'to 10 mizuho': 899428, '10 mizuho security': 1546, 'mizuho security said': 534670, 'security said some': 744738, 'said some oil': 731365, 'some oil could': 783428, 'oil could even': 596709, 'could even fall': 209142, 'even fall into': 284052, 'fall into negative': 296972, 'into negative territory': 442799, 'negative territory absent': 556830, 'territory absent shale': 838555, 'absent shale shut': 27208, 'shale shut in': 754510, 'not call': 568673, 'you regarding': 1020884, 'security credit': 744569, 'account number': 28722, 'number more': 576912, 'federal government will': 302007, 'will not call': 994194, 'not call you': 568675, 'call you regarding': 156254, 'you regarding covid': 1020885, '19 stimulus payment': 10853, 'stimulus payment and': 801600, 'payment and ask': 645541, 'ask for your': 95541, 'for your social': 328210, 'social security credit': 779943, 'security credit card': 744570, 'card or bank': 163603, 'or bank account': 614489, 'bank account number': 109554, 'account number more': 28724, 'number more tip': 576913, 'order family': 618203, 'family back': 297644, 'back inside': 107106, 'for playing': 324583, 'their yard': 875249, 'yard others': 1014158, 'others prowl': 621595, 'prowl supermarket': 687317, 'aisle looking': 40305, 'the police officer': 863926, 'police officer order': 663126, 'officer order family': 595690, 'order family back': 618204, 'family back inside': 297646, 'back inside for': 107107, 'inside for playing': 439264, 'for playing in': 324584, 'playing in their': 659416, 'in their yard': 429793, 'their yard others': 875250, 'yard others prowl': 1014159, 'others prowl supermarket': 621596, 'prowl supermarket aisle': 687318, 'supermarket aisle looking': 818839, 'aisle looking for': 40306, 'looking for shopper': 502899, 'for shopper buying': 325571, 'shopper buying non': 761445, 'buying non essential': 150765, 'non essential item': 566343, 'we doing': 971367, 'get flight': 347022, 'flight refund': 310529, 'refund cbc': 706877, 'cbc marketplace': 168274, 'marketplace consumer': 517808, 'consumer cheat': 196784, 'cheat sheet': 174336, 'sheet cbc': 756595, 'are we doing': 91565, 'we doing enough': 971369, 'enough to fight': 277703, 'to get flight': 906482, 'get flight refund': 347023, 'flight refund cbc': 310530, 'refund cbc marketplace': 706878, 'cbc marketplace consumer': 168276, 'marketplace consumer cheat': 517809, 'consumer cheat sheet': 196785, 'cheat sheet cbc': 174337, 'sheet cbc news': 756597, 'turi': 935523, 'ryder': 728821, 'shesaidwhat': 758106, 'virus bonus': 958008, 'bonus edition': 134359, 'of turi': 592504, 'turi ryder': 935524, 'ryder shesaidwhat': 728822, 'shesaidwhat podcast': 758109, 'podcast out': 662300, 'still haven': 800669, 'haven heard': 383829, 'heard bouquet': 388067, 'of or': 587315, 'or flood': 615327, 'flood of': 310713, 'sanitizer find': 734866, 'yes there will': 1015564, 'will be virus': 992761, 'be virus bonus': 118014, 'virus bonus edition': 958009, 'bonus edition of': 134360, 'edition of turi': 268637, 'of turi ryder': 592505, 'turi ryder shesaidwhat': 935525, 'ryder shesaidwhat podcast': 728824, 'shesaidwhat podcast out': 758110, 'podcast out today': 662301, 'out today if': 627706, 'you still haven': 1021404, 'still haven heard': 800673, 'haven heard bouquet': 383831, 'heard bouquet of': 388068, 'bouquet of or': 136889, 'of or flood': 587317, 'or flood of': 615328, 'flood of hand': 310714, 'hand sanitizer find': 375403, 'sanitizer find them': 734868, 'find them here': 307313, 'rogan': 725014, 'reacts': 700241, 'firstworld': 309228, 'firstworldpandemicproblems': 309231, 'joeroganpodcast': 466474, 'take 11': 831862, '11 min': 2559, 'min listen': 532547, 'this joe': 888545, 'joe rogan': 466433, 'rogan reacts': 725015, 'reacts to': 700244, 'la shutdown': 478211, 'shutdown latest': 768056, 'news 19': 560177, 'america usa': 51728, 'usa economy': 948632, 'economy money': 268080, 'money paycheck': 536964, 'paycheck food': 645285, 'aid toiletpaper': 39473, 'toiletpaper fear': 921979, 'fear firstworld': 301122, 'firstworld firstworldpandemicproblems': 309229, 'firstworldpandemicproblems firstworldproblems': 309232, 'firstworldproblems joeroganpodcast': 309235, 'take 11 min': 831863, '11 min listen': 2560, 'min listen to': 532548, 'to this joe': 917437, 'this joe rogan': 888546, 'joe rogan reacts': 466434, 'rogan reacts to': 725016, 'reacts to la': 700245, 'to la shutdown': 909020, 'la shutdown latest': 478212, 'shutdown latest news': 768057, 'latest news 19': 481446, 'news 19 america': 560178, '19 america usa': 4954, 'america usa economy': 51729, 'usa economy money': 948633, 'economy money paycheck': 268081, 'money paycheck food': 536965, 'paycheck food aid': 645286, 'food aid toiletpaper': 313072, 'aid toiletpaper fear': 39474, 'toiletpaper fear firstworld': 921980, 'fear firstworld firstworldpandemicproblems': 301123, 'firstworld firstworldpandemicproblems firstworldproblems': 309230, 'firstworldpandemicproblems firstworldproblems joeroganpodcast': 309233, 'selftaught': 748597, 'turn me': 935701, 'into barber': 442422, 'barber soon': 110811, 'done hmu': 254876, 'price lol': 675089, 'lol selftaught': 500948, 'quarantine thing is': 692621, 'to turn me': 917846, 'turn me into': 935702, 'me into barber': 522990, 'into barber soon': 442423, 'barber soon this': 110812, 'is done hmu': 447320, 'done hmu for': 254877, 'for price lol': 324724, 'price lol selftaught': 675091, 'timebomb': 898436, 'please increase': 660108, 'own brand': 631902, 'brand alcohol': 137718, 'alcohol now': 41053, 'closed ppl': 183297, 'ppl will': 668377, 'booze creating': 135159, 'creating health': 216011, 'health timebomb': 386911, 'timebomb please': 898437, 'this even': 887422, 'even limit': 284298, 'limit amount': 492278, 'amount ppl': 53274, 'buy co': 148498, 'please please increase': 660305, 'please increase the': 660110, 'your own brand': 1025127, 'own brand alcohol': 631903, 'brand alcohol now': 137719, 'alcohol now the': 41054, 'now the pub': 576065, 'pub are closed': 687666, 'are closed ppl': 85362, 'closed ppl will': 183298, 'ppl will panic': 668379, 'will panic buy': 994370, 'panic buy booze': 637470, 'buy booze creating': 148430, 'booze creating health': 135160, 'creating health timebomb': 216012, 'health timebomb please': 386912, 'timebomb please look': 898438, 'into this even': 443214, 'this even limit': 887426, 'even limit amount': 284299, 'limit amount ppl': 492279, 'amount ppl can': 53275, 'ppl can buy': 668202, 'can buy co': 157817, 'swath': 830015, 'sent swath': 750816, 'swath of': 830016, 'system into': 831213, 'overdrive manufacturer': 631188, 'distributor grocer': 248287, 'safety regulator': 730715, 'regulator try': 708153, 'essential expert': 281021, 'are ample': 84525, 'ample and': 54876, 'and inspection': 65271, 'inspection are': 439764, 'continuing normal': 201535, '19 ha sent': 7382, 'ha sent swath': 371857, 'sent swath of': 750817, 'swath of the': 830017, 'food system into': 317049, 'system into overdrive': 831214, 'into overdrive manufacturer': 442829, 'overdrive manufacturer distributor': 631189, 'manufacturer distributor grocer': 513452, 'distributor grocer and': 248288, 'grocer and food': 364092, 'and food safety': 63088, 'food safety regulator': 316275, 'safety regulator try': 730716, 'regulator try to': 708154, 'meet demand from': 527468, 'from consumer stockpiling': 334975, 'consumer stockpiling food': 199158, 'stockpiling food and': 803958, 'other essential expert': 620161, 'essential expert say': 281022, 'expert say supply': 291959, 'say supply are': 739196, 'supply are ample': 824778, 'are ample and': 84526, 'ample and inspection': 54877, 'and inspection are': 65272, 'inspection are continuing': 439765, 'are continuing normal': 85546, 'worker instacart': 1007229, 'instacart please': 439927, 'your shopper': 1025770, 'mask lot': 518929, 'our face': 622974, 'face constantly': 294359, 'constantly with': 195717, 'the where': 871438, 'where this': 985292, 'this where': 891361, 'that socialdistancing': 846370, 'store worker instacart': 811529, 'worker instacart please': 1007230, 'instacart please tell': 439928, 'please tell your': 660653, 'tell your shopper': 837165, 'your shopper to': 1025771, 'shopper to keep': 761768, 'to keep distance': 908780, 'distance and wear': 246644, 'wear mask lot': 974393, 'mask lot of': 518930, 'lot of shopper': 504278, 'of shopper get': 589641, 'shopper get in': 761529, 'get in our': 347307, 'in our face': 426288, 'our face constantly': 622975, 'face constantly with': 294360, 'constantly with the': 195718, 'with the where': 1001542, 'the where this': 871439, 'where this where': 985295, 'this where is': 891362, 'where is that': 984953, 'is that socialdistancing': 452691, 'cool brewery': 202992, 'brewery response': 139454, '19 cool': 6035, 'brewery will': 139470, 'unfolding situation': 941528, 'mind cool': 532650, 'cool will': 203062, 'will follow': 993460, 'recommendation of': 704756, 'of federal': 583475, 'provincial public': 687216, 'official our': 595869, 'our brewery': 622268, 'brewery retail': 139456, 'cool brewery response': 202993, 'brewery response to': 139455, 'covid 19 cool': 212860, '19 cool brewery': 6036, 'cool brewery will': 202994, 'brewery will continue': 139471, 'continue to navigate': 201223, 'navigate the unfolding': 553087, 'the unfolding situation': 870392, 'unfolding situation with': 941530, 'situation with everyone': 772596, 'with everyone safety': 998294, 'everyone safety in': 287338, 'safety in mind': 730580, 'in mind cool': 425338, 'mind cool will': 532651, 'cool will follow': 203063, 'will follow the': 993466, 'follow the guidance': 312527, 'the guidance and': 856919, 'guidance and recommendation': 368205, 'and recommendation of': 70056, 'recommendation of federal': 704757, 'of federal and': 583476, 'and provincial public': 69718, 'provincial public health': 687217, 'health official our': 386704, 'official our brewery': 595870, 'our brewery retail': 622269, 'brewery retail store': 139457, 'halifax uk': 374323, 'stable before': 791897, 'halifax uk house': 374324, 'house price stable': 406505, 'price stable before': 676600, 'stable before covid': 791898, 'afterward': 36739, 'to permanent': 911663, 'permanent shift': 652072, 'business habit': 143814, 'habit or': 372671, 'will thing': 995184, 'normal afterward': 567074, 'lead to permanent': 483377, 'to permanent shift': 911665, 'permanent shift in': 652074, 'in consumer business': 421686, 'consumer business habit': 196674, 'business habit or': 143815, 'habit or will': 372672, 'or will thing': 617813, 'will thing go': 995185, 'to normal afterward': 910640, 'deity': 232592, 'truth that': 934408, 'been highlighted': 121286, 'highlighted during': 395986, 'extreme socioeconomic': 293830, 'socioeconomic disparity': 781385, 'disparity when': 246097, 'treat employee': 930829, 'like deity': 490100, 'deity and': 232593, 'forget their': 329311, 'sacrifice when': 729119, 'of the truth': 591561, 'the truth that': 870091, 'truth that ha': 934409, 'ha been highlighted': 369826, 'been highlighted during': 121287, 'highlighted during the': 395987, 'during the is': 263145, 'the is the': 858538, 'is the extreme': 452791, 'the extreme socioeconomic': 854779, 'extreme socioeconomic disparity': 293831, 'socioeconomic disparity when': 781386, 'disparity when you': 246098, 'to to the': 917599, 'store you need': 811694, 'need to treat': 556107, 'to treat employee': 917746, 'treat employee like': 930830, 'employee like deity': 274016, 'like deity and': 490101, 'deity and do': 232594, 'not forget their': 569516, 'forget their sacrifice': 329312, 'their sacrifice when': 874609, 'sacrifice when we': 729120, 'older australian': 598580, 'australian particularly': 103517, 'particularly those': 642720, 'those still': 892486, 'still mobile': 800845, 'mobile but': 534953, 'without family': 1002638, '19 just wanted': 8212, 'just wanted to': 470233, 'wanted to spread': 966274, 'spread this news': 790837, 'this news to': 889135, 'news to all': 560893, 'to all older': 900272, 'all older australian': 43734, 'older australian particularly': 598582, 'australian particularly those': 103518, 'particularly those still': 642722, 'those still mobile': 892489, 'still mobile but': 800846, 'mobile but without': 534954, 'but without family': 147908, 'without family support': 1002639, 'store been': 806691, 'bean for': 118320, 'sent the': 750820, 'the hub': 857686, 'hub out': 409821, 'still nothing': 800912, 'nothing super': 573168, 'super slim': 818581, 'picking man': 655862, 'man tucson': 512279, 'tucson az': 935073, 'az foodshortage': 106379, 'grocery store been': 365243, 'store been looking': 806692, 'been looking for': 121481, 'looking for rice': 502896, 'for rice and': 325223, 'rice and bean': 720990, 'and bean for': 58778, 'bean for day': 118321, 'day now sent': 228039, 'now sent the': 575779, 'sent the hub': 750823, 'the hub out': 857690, 'hub out and': 409822, 'out and still': 625697, 'and still nothing': 72383, 'still nothing super': 800913, 'nothing super slim': 573169, 'super slim picking': 818582, 'slim picking man': 773991, 'picking man tucson': 655863, 'man tucson az': 512280, 'tucson az foodshortage': 935074, 'act mask': 29697, 'should sell': 766451, 'unfair display': 941423, 'india coronapocolypse': 434360, 'coronapocolypse coronaindia': 205225, 'under the essential': 940306, 'the essential commodity': 854500, 'commodity act mask': 189113, 'act mask should': 29698, 'mask should sell': 519274, 'should sell at': 766452, 'sell at fair': 748632, 'fair price but': 296369, 'price but on': 672983, 'but on and': 146656, 'on and unfair': 599379, 'and unfair display': 74660, 'unfair display of': 941424, 'display of business': 246190, 'of business is': 580959, 'business is going': 143954, 'going on india': 355323, 'on india coronapocolypse': 601549, 'india coronapocolypse coronaindia': 434361, 'receiver': 703719, '2metresapart': 16738, 'during coronacrisis': 262527, 'flower giver': 311295, 'giver flower': 351213, 'flower receiver': 311324, 'receiver much': 703720, 'much closer': 544792, 'than 2metresapart': 840220, '2metresapart why': 16739, 'worker closer': 1006665, 'are hero during': 87129, 'hero during coronacrisis': 393981, 'during coronacrisis but': 262528, 'coronacrisis but why': 204537, 'but why why': 147866, 'why why why': 991554, 'why why are': 991552, 'are the flower': 90829, 'the flower giver': 855453, 'flower giver flower': 311296, 'giver flower receiver': 351214, 'flower receiver much': 311325, 'receiver much closer': 703721, 'much closer than': 544793, 'closer than 2metresapart': 183508, 'than 2metresapart why': 840221, '2metresapart why are': 16740, 'why are essential': 990769, 'essential worker closer': 281824, 'worker closer than': 1006666, 'why popular': 991292, 'popular information': 664562, 'starting the': 795002, '19 corporate': 6139, 'corporate accountability': 207230, 'accountability project': 28797, 'project if': 683499, 'company more': 190891, '500 employee': 19981, 'providing immediate': 687030, 'ten day': 837770, 'please fill': 659992, 'that why popular': 847543, 'why popular information': 991293, 'popular information is': 664563, 'information is starting': 437877, 'is starting the': 452234, 'starting the 19': 795003, 'the 19 corporate': 847911, '19 corporate accountability': 6140, 'corporate accountability project': 207231, 'accountability project if': 28798, 'project if you': 683500, 'work at company': 1004864, 'at company more': 98304, 'company more than': 190892, 'than 500 employee': 840267, '500 employee that': 19982, 'employee that is': 274289, 'is not providing': 450164, 'not providing immediate': 571160, 'providing immediate access': 687031, 'immediate access to': 416959, 'access to ten': 28285, 'to ten day': 916371, 'ten day of': 837771, 'day of paid': 228087, 'leave to full': 485008, 'to full time': 906316, 'full time please': 340945, 'time please fill': 897493, 'please fill out': 659993, 'factsnotfear': 296031, 'update virtual': 947299, 'virtual information': 957752, 'information exchange': 437810, 'exchange with': 289497, 'senior leader': 750341, 'outlet are': 629025, 'are drive': 85995, 'thru or': 895212, 'or take': 617325, 'only gym': 610550, 'gym open': 369338, 'with modification': 999533, 'modification don': 535497, 'buy stay': 149235, 'stay up': 797374, 'at factsnotfear': 98615, 'daily update virtual': 224856, 'update virtual information': 947300, 'virtual information exchange': 957753, 'information exchange with': 437811, 'exchange with senior': 289498, 'with senior leader': 1000639, 'senior leader at': 750342, 'leader at 00': 483434, 'at 00 at': 97348, '00 at all': 72, 'at all food': 97881, 'all food outlet': 42817, 'food outlet are': 315716, 'outlet are drive': 629026, 'are drive thru': 85996, 'drive thru or': 259202, 'thru or take': 895215, 'or take out': 617328, 'take out only': 832454, 'out only gym': 626940, 'only gym open': 610551, 'gym open with': 369339, 'open with modification': 612679, 'with modification don': 999534, 'modification don panic': 535498, 'panic buy stay': 637530, 'buy stay up': 149236, 'stay up to': 797376, 'to date at': 903922, 'date at factsnotfear': 226598, 'not bad': 568319, 'bad little': 107925, 'little post': 495527, 'home well': 402471, 'stocked clean': 803292, 'clean healthy': 180556, 'not bad little': 568322, 'bad little post': 107927, 'little post here': 495528, 'post here from': 666155, 'here from on': 393028, 'keep your home': 472270, 'your home well': 1024387, 'home well stocked': 402472, 'well stocked clean': 978594, 'stocked clean healthy': 803294, 'clean healthy during': 180557, 'healthy during time': 387587, 'during time like': 263346, 'news social': 560800, 'medium digital': 527073, 'digital content': 242538, 'content mindfulness': 200823, 'mindfulness home': 532824, 'cooking on': 202892, 'while work': 987570, 'learning down': 484191, 'uk almost': 938158, 'almost exact': 46638, 'exact opposite': 288699, 'opposite in': 613794, 'nation begin': 552133, 'reopen fascinating': 711357, 'fascinating consumer': 299751, 'attitude research': 102581, 'research around': 713675, 'around coronavirus': 93255, 'from mckinsey': 336387, 'news social medium': 560801, 'social medium digital': 779844, 'medium digital content': 527074, 'digital content mindfulness': 242539, 'content mindfulness home': 200824, 'mindfulness home cooking': 532825, 'home cooking on': 400931, 'cooking on the': 202893, 'on the up': 604420, 'the up while': 870490, 'up while work': 946599, 'while work and': 987571, 'work and remote': 1004797, 'remote learning down': 710714, 'learning down in': 484192, 'down in the': 256870, 'the uk almost': 870189, 'uk almost exact': 938159, 'almost exact opposite': 46639, 'exact opposite in': 288700, 'opposite in china': 613795, 'in china the': 421439, 'china the nation': 176987, 'the nation begin': 861220, 'nation begin to': 552134, 'begin to reopen': 123590, 'to reopen fascinating': 913240, 'reopen fascinating consumer': 711358, 'fascinating consumer attitude': 299752, 'consumer attitude research': 196348, 'attitude research around': 102582, 'research around coronavirus': 713676, 'around coronavirus from': 93257, 'coronavirus from mckinsey': 205957, 'kitili': 475810, 'shag': 754368, 'impossibility': 419344, 'ghetto': 349637, 'kawangware': 471128, 'kitili ben': 475811, 'ben people': 126818, 'running away': 727929, 'to shag': 914318, 'shag we': 754369, 'running from': 727965, 'but more': 146407, 'we running': 973115, 'from expenditure': 335353, 'expenditure like': 291164, 'like rent': 491074, 'rent fare': 711081, 'fare high': 299030, 'and unrealistic': 74702, 'unrealistic social': 943305, 'distance impossibility': 246736, 'impossibility in': 419345, 'our ghetto': 623245, 'ghetto like': 349638, 'like kawangware': 490595, 'kawangware mat': 471129, 'kitili ben people': 475812, 'ben people are': 126819, 'are running away': 89761, 'running away from': 727930, 'away from nairobi': 105897, 'nairobi to shag': 551514, 'to shag we': 914319, 'shag we are': 754370, 'are running from': 89765, 'running from covid': 727966, '19 yes but': 12248, 'yes but more': 1015393, 'but more so': 146410, 'more so we': 540420, 'so we running': 778682, 'we running away': 973116, 'away from expenditure': 105881, 'from expenditure like': 335354, 'expenditure like rent': 291165, 'like rent fare': 491075, 'rent fare high': 711082, 'fare high price': 299031, 'food and unrealistic': 313374, 'and unrealistic social': 74703, 'unrealistic social distance': 943306, 'social distance impossibility': 779508, 'distance impossibility in': 246737, 'impossibility in our': 419346, 'in our ghetto': 426297, 'our ghetto like': 623246, 'ghetto like kawangware': 349639, 'like kawangware mat': 490596, 'my entry': 548102, 'entry team': 279018, 'team hand': 835660, 'wash alcohol': 967423, 'against contestalert': 37374, 'join stayh': 466840, 'is my entry': 449789, 'my entry team': 548103, 'entry team hand': 279019, 'team hand wash': 835661, 'hand wash alcohol': 375917, 'wash alcohol sanitizer': 967425, 'alcohol sanitizer face': 41095, 'glove this product': 352965, 'this product will': 889733, 'will help to': 993735, 'fight against contestalert': 304612, 'against contestalert contest': 37375, 'contest join stayh': 200875, 'hard enough': 377909, 'enough when': 277762, 'have kid': 381224, 'kid with': 474169, 'with terrible': 1001142, 'terrible food': 838399, 'have intolerance': 381111, 'intolerance stop': 443338, 'shopping is hard': 763049, 'is hard enough': 448301, 'hard enough when': 377911, 'enough when you': 277765, 'you have kid': 1019067, 'have kid with': 381227, 'kid with terrible': 474174, 'with terrible food': 1001143, 'terrible food so': 838400, 'food so if': 316656, 'not have intolerance': 569844, 'have intolerance stop': 381112, 'intolerance stop panic': 443339, 'college st': 186645, 'st this': 791751, 'morning 19': 541130, '19 toronto': 11518, 'produce section at': 680429, 'section at my': 744000, 'local supermarket on': 498565, 'supermarket on college': 821723, 'on college st': 599968, 'college st this': 186646, 'st this morning': 791752, 'this morning 19': 888932, 'morning 19 toronto': 541131, 'online news': 608574, 'to content': 903375, 'content on': 200832, 'demand society': 236251, 'society ha': 781228, 'maintain some': 509039, 'some degree': 782668, 'of normalcy': 587066, 'normalcy during': 567437, 'lockdown thanks': 499997, 'to tech': 916321, 'from food delivery': 335506, 'apps to online': 83325, 'to online news': 910939, 'online news to': 608575, 'news to content': 560894, 'to content on': 903376, 'content on demand': 200833, 'on demand society': 600288, 'demand society ha': 236252, 'society ha been': 781229, 'ha been able': 369703, 'able to maintain': 24501, 'to maintain some': 909595, 'maintain some degree': 509040, 'some degree of': 782669, 'degree of normalcy': 232569, 'of normalcy during': 587067, 'normalcy during lockdown': 567438, 'during lockdown thanks': 262774, 'lockdown thanks to': 499998, 'thanks to tech': 842264, 'taco night': 831668, 'night there': 563096, 'much panic': 545220, 'it shameful': 461000, 'shameful but': 754680, 'insecurity will': 439186, 'posting any': 666646, 'more pretty': 540132, 'pretty picture': 671479, 'picture what': 656215, 'do starting': 250168, 'starting next': 794985, 'is post': 450956, 'post video': 666385, 'some super': 783999, 'super simple': 818579, 'simple meal': 770056, 'meal anyone': 524098, 'taco night there': 831669, 'night there is': 563097, 'is much panic': 449767, 'much panic buying': 545222, 'and hoarding and': 64649, 'hoarding and it': 399178, 'and it shameful': 65581, 'it shameful but': 461001, 'shameful but during': 754681, 'but during this': 145631, 'time of food': 897333, 'of food insecurity': 583719, 'food insecurity will': 315076, 'insecurity will not': 439187, 'not be posting': 568436, 'be posting any': 116483, 'posting any more': 666647, 'any more pretty': 79491, 'more pretty picture': 540133, 'pretty picture what': 671480, 'picture what am': 656216, 'what am going': 981017, 'to do starting': 904559, 'do starting next': 250169, 'starting next week': 794986, 'next week is': 561689, 'week is post': 976423, 'is post video': 450958, 'post video on': 666386, 'video on some': 956846, 'on some super': 603572, 'some super simple': 784000, 'super simple meal': 818580, 'simple meal anyone': 770057, 'meal anyone can': 524099, 'anyone can make': 80220, 'staff medical': 792647, 'area bin': 91963, 'bin men': 131015, 'men banker': 528465, 'banker teacher': 110383, 'job thank': 466177, 'feel for all': 302622, 'key worker during': 473479, 'this time so': 890687, 'time so many': 897695, 'people in delivery': 648366, 'in delivery service': 422093, 'delivery service supermarket': 234466, 'supermarket staff medical': 822867, 'staff medical staff': 792648, 'medical staff in': 526398, 'staff in all': 792545, 'in all area': 420164, 'all area bin': 42055, 'area bin men': 91964, 'bin men banker': 131018, 'men banker teacher': 528466, 'banker teacher you': 110384, 're all doing': 698212, 'all doing an': 42606, 'amazing job thank': 50725, 'job thank you': 466178, 'plug': 661214, 'just given': 468816, 'given petrol': 351075, 'station plug': 796491, 'plug by': 661217, 'telling fuel': 837196, 'falling you': 297362, 'just start': 469869, 'start panic': 794426, 'on fuel': 601046, 'fuel and': 340115, 'next thing': 561586, 'thing fuel': 884351, 'why ha just': 991032, 'ha just given': 371052, 'just given petrol': 468819, 'given petrol station': 351076, 'petrol station plug': 653798, 'station plug by': 796492, 'plug by telling': 661218, 'by telling fuel': 154230, 'telling fuel price': 837197, 'are falling you': 86477, 'falling you will': 297363, 'you will just': 1022338, 'will just start': 993883, 'just start panic': 469872, 'start panic on': 794428, 'panic on fuel': 638360, 'on fuel and': 601047, 'fuel and the': 340120, 'the next thing': 861701, 'next thing fuel': 561587, 'thing fuel shortage': 884352, 'winwin': 996152, 'therichcantlose': 879490, 'rich billionaire': 721199, 'billionaire during': 130955, 'get rich': 347932, 'rich when': 721265, 'when everything': 983402, 'everything when': 288101, 'is hurting': 448636, 'hurting while': 411656, 'while borrowing': 986656, 'borrowing cheap': 135635, 'cheap money': 174146, 'price winwin': 677599, 'winwin business': 996153, 'business therichcantlose': 144512, 'out the rich': 627414, 'the rich billionaire': 865779, 'rich billionaire during': 721200, 'billionaire during they': 130956, 'during they get': 263254, 'they get rich': 882177, 'get rich when': 347934, 'rich when everything': 721267, 'when everything is': 983403, 'everything is on': 287880, 'the up and': 870484, 'and up and': 74725, 'up and then': 944380, 'and then get': 73762, 'then get to': 877199, 'get to pay': 348485, 'pay for everything': 644875, 'for everything when': 321261, 'everything when everyone': 288102, 'everyone is hurting': 287081, 'is hurting while': 448644, 'hurting while borrowing': 411657, 'while borrowing cheap': 986657, 'borrowing cheap money': 135636, 'cheap money and': 174147, 'money and buying': 536592, 'and buying up': 59372, 'buying up everything': 151291, 'up everything at': 944816, 'everything at cheap': 287698, 'cheap price winwin': 174180, 'price winwin business': 677600, 'winwin business therichcantlose': 996154, 'lmaoo': 497165, 'tryna': 934904, 'quarantine got': 692228, 'me eat': 522695, 'eat eating': 265897, 'eating the': 266311, 'weirdest food': 977822, 'food combination': 313963, 'combination calockdown': 187094, 'calockdown lmaoo': 156882, 'lmaoo who': 497170, 'who tryna': 989836, 'tryna link': 934905, 'this quarantine got': 889773, 'quarantine got me': 692230, 'got me eat': 358695, 'me eat eating': 522696, 'eat eating the': 265898, 'eating the weirdest': 266313, 'the weirdest food': 871361, 'weirdest food combination': 977823, 'food combination calockdown': 313964, 'combination calockdown lmaoo': 187095, 'calockdown lmaoo who': 156883, 'lmaoo who tryna': 497171, 'who tryna link': 989837, 'tryna link up': 934906, 'link up at': 493956, 'sturdy': 815572, 'workspace': 1009232, 'let conquer': 486649, 'conquer the': 194759, 'covid with': 214250, 'these sturdy': 880766, 'sturdy mobile': 815573, 'mobile hand': 534975, 'hand sanitizing': 375735, 'station great': 796413, 'for workspace': 327964, 'workspace building': 1009233, 'building lobby': 142102, 'lobby and': 497575, 'retail entrance': 718085, 'entrance sarscov2': 278897, 'let conquer the': 486650, 'conquer the covid': 194760, 'the covid with': 852241, 'covid with these': 214251, 'with these sturdy': 1001660, 'these sturdy mobile': 880767, 'sturdy mobile hand': 815574, 'mobile hand sanitizing': 534976, 'hand sanitizing station': 375737, 'sanitizing station great': 736515, 'station great for': 796414, 'great for workspace': 362687, 'for workspace building': 327965, 'workspace building lobby': 1009234, 'building lobby and': 142103, 'lobby and retail': 497576, 'and retail entrance': 70429, 'retail entrance sarscov2': 718086, 'entrance sarscov2 medtwitter': 278898, 'solidaritywithhospitality': 781954, 'hospitalitystrong': 404825, 'support hotel': 826573, 'hotel one': 405173, 'offering necessity': 595197, 'necessity like': 554240, 'like key': 490603, 'key card': 473235, 'at heavily': 98872, 'heavily discounted': 388573, 'hope these': 403697, 'these lower': 880262, 'your hotel': 1024404, 'hotel stay': 405197, 'stay solidaritywithhospitality': 797322, 'solidaritywithhospitality hospitalitystrong': 781955, 'hospitalitystrong learn': 404826, 're doing our': 698544, 'to support hotel': 915937, 'support hotel one': 826576, 'hotel one way': 405174, 'one way we': 607386, 'way we re': 970178, 're doing this': 698549, 'doing this is': 252766, 'this is by': 888199, 'is by offering': 446338, 'by offering necessity': 153400, 'offering necessity like': 595198, 'necessity like key': 554243, 'like key card': 490604, 'key card at': 473236, 'card at heavily': 163465, 'at heavily discounted': 98873, 'heavily discounted price': 388576, 'discounted price we': 244604, 'we hope these': 972036, 'hope these lower': 403699, 'these lower price': 880263, 'lower price will': 505973, 'price will help': 677569, 'will help your': 993740, 'help your hotel': 391021, 'your hotel stay': 1024406, 'hotel stay solidaritywithhospitality': 405198, 'stay solidaritywithhospitality hospitalitystrong': 797323, 'solidaritywithhospitality hospitalitystrong learn': 781956, 'hospitalitystrong learn more': 404827, 'katto': 471092, 'katto based': 471093, 'happened we': 377298, 'we experienced': 971507, 'experienced some': 291602, 'some theft': 784033, 'theft everyday': 872348, 'everyday due': 286553, 'our mostly': 623947, 'mostly due': 542952, 'our large': 623638, 'large homeless': 479695, 'homeless population': 402779, 'population pretty': 664731, 'true big': 933034, 'big corp': 129714, 'corp factor': 207193, 'in loss': 424928, 'loss such': 503782, 'such theft': 816808, 'katto based on': 471094, 'based on where': 111703, 'on where work': 605270, 'where work grocery': 985366, 'store before covid': 806696, '19 happened we': 7430, 'happened we experienced': 377299, 'we experienced some': 971508, 'experienced some theft': 291603, 'some theft everyday': 784034, 'theft everyday due': 872349, 'everyday due to': 286554, 'to our mostly': 911212, 'our mostly due': 623948, 'mostly due to': 542953, 'to our large': 911198, 'our large homeless': 623639, 'large homeless population': 479696, 'homeless population pretty': 402781, 'population pretty much': 664732, 'much everything you': 544870, 'everything you said': 288138, 'said it true': 731170, 'it true big': 461863, 'true big corp': 933035, 'big corp factor': 129715, 'corp factor in': 207194, 'factor in loss': 295887, 'in loss such': 424930, 'loss such theft': 503783, 'man film': 512062, 'film himself': 305682, 'himself allegedly': 396791, 'allegedly spreading': 45709, 'supermarket lady': 821260, 'lady touching': 478849, 'all laptop': 43342, 'laptop get': 479562, 'get confronted': 346799, 'confronted grocery': 194306, 'market no': 516758, 'safe wherever': 730136, 'wherever there': 985466, 'there human': 878492, 'human around': 410424, 'man film himself': 512063, 'film himself allegedly': 305683, 'himself allegedly spreading': 396792, 'allegedly spreading coronavirus': 45710, 'spreading coronavirus at': 790953, 'coronavirus at supermarket': 205529, 'at supermarket lady': 100741, 'supermarket lady touching': 821261, 'lady touching all': 478850, 'touching all laptop': 926656, 'all laptop get': 43343, 'laptop get confronted': 479563, 'get confronted grocery': 346800, 'confronted grocery store': 194307, 'store market no': 808909, 'market no where': 516760, 'no where is': 565885, 'where is safe': 984952, 'is safe wherever': 451625, 'safe wherever there': 730137, 'wherever there human': 985467, 'there human around': 878493, 'jeopardy': 465130, 'how little': 408172, 'little my': 495475, 'hit have': 398262, 'have lived': 381355, 'lived alone': 496148, 'alone for': 46853, 'yr stay': 1027047, 'home almost': 400587, 'time anyway': 896315, 'anyway cuz': 81000, 'cuz work': 223830, 'in jeopardy': 424383, 'jeopardy not': 465131, 'not bragging': 568607, 'bragging ve': 137567, 'just realized': 469569, 'realized ve': 701923, 'personal pandemic': 652935, 'amazing how little': 50707, 'how little my': 408174, 'little my life': 495476, 'my life ha': 549022, 'life ha changed': 488704, 'ha changed since': 370135, 'changed since covid': 172547, '19 ha hit': 7352, 'ha hit have': 370881, 'hit have lived': 398263, 'have lived alone': 381356, 'lived alone for': 496149, 'alone for yr': 46855, 'for yr stay': 328249, 'yr stay home': 1027048, 'stay home almost': 796936, 'home almost all': 400588, 'almost all the': 46541, 'the time anyway': 869575, 'time anyway cuz': 896316, 'anyway cuz work': 81001, 'cuz work at': 223831, 'grocery store my': 365582, 'store my job': 809011, 'job isn in': 465916, 'isn in jeopardy': 454556, 'in jeopardy not': 424384, 'jeopardy not bragging': 465132, 'not bragging ve': 568608, 'bragging ve just': 137568, 've just realized': 953306, 'just realized ve': 469573, 'realized ve been': 701924, 've been living': 952904, 'been living in': 121469, 'living in my': 496383, 'my own personal': 549651, 'own personal pandemic': 632129, 'personal pandemic for': 652936, 'pandemic for year': 635454, 'paisley is': 634387, 'what he': 981583, 'brad paisley is': 137530, 'paisley is doing': 634388, 'doing what he': 252844, 'what he can': 981584, 'he can to': 384822, 'can to help': 160009, 'is queue': 451174, 'south london': 786761, 'london at': 501032, 'am what': 50558, 'do joined': 249533, 'there is queue': 878610, 'is queue to': 451176, 'get inside my': 347346, 'in south london': 428132, 'south london at': 786762, 'london at am': 501034, 'at am what': 97940, 'am what to': 50559, 'to do joined': 904527, 'do joined the': 249534, 'joined the queue': 466954, 'not me': 570545, 'tip for grocery': 898768, 'grocery shopping from': 365025, 'shopping from someone': 762760, 'from someone who': 337354, 'store not me': 809109, 'not me 19': 570546, 'matatu': 520266, 'gok': 355835, 'kenya kenya': 472921, 'kenya ke': 472919, 'ke with': 471247, 'rule hiking': 727253, 'of matatu': 586297, 'matatu fare': 520267, 'fare wa': 299039, 'obvious about': 578783, 'is tax': 452579, 'tax gok': 834996, 'gok plan': 355836, 'cushion business': 221912, 'kenya kenya ke': 472922, 'kenya ke with': 472920, 'ke with social': 471248, 'distancing rule hiking': 247440, 'rule hiking of': 727254, 'hiking of matatu': 396385, 'of matatu fare': 586298, 'matatu fare wa': 520269, 'fare wa obvious': 299040, 'wa obvious about': 962796, 'obvious about 60': 578784, 'about 60 of': 24739, '60 of fuel': 20964, 'of fuel pump': 583996, 'fuel pump price': 340270, 'pump price is': 689090, 'price is tax': 674895, 'is tax gok': 452580, 'tax gok plan': 834997, 'gok plan to': 355837, 'plan to cushion': 658279, 'to cushion business': 903841, 'cushion business from': 221913, 'business from impact': 143769, 'from impact of': 336012, 'messed': 529528, 'rescheduled': 713583, 'overbooked': 631062, 'yeh': 1015198, 'my hairdresser': 548598, 'hairdresser got': 374044, 'way messed': 969703, 'messed up': 529529, 'up increasing': 945196, 'of deposit': 582538, 'deposit so': 237516, 'eat while': 266110, 'while appointment': 986611, 'appointment can': 82659, 'be rescheduled': 116818, 'rescheduled in': 713586, 'already overbooked': 47551, 'overbooked yeh': 631065, 'yeh no': 1015201, 'so my hairdresser': 777838, 'my hairdresser got': 548599, 'hairdresser got this': 374045, 'got this whole': 358945, '19 shit all': 10460, 'shit all the': 759053, 'the way messed': 871165, 'way messed up': 969704, 'messed up increasing': 529531, 'up increasing the': 945197, 'price of deposit': 675437, 'of deposit so': 582539, 'deposit so you': 237517, 'can eat while': 158205, 'eat while appointment': 266111, 'while appointment can': 986612, 'appointment can only': 82660, 'can only be': 159117, 'only be rescheduled': 610154, 'be rescheduled in': 116819, 'rescheduled in month': 713587, 'month from now': 537746, 'from now because': 336607, 'you are already': 1017053, 'are already overbooked': 84420, 'already overbooked yeh': 47552, 'overbooked yeh no': 631066, 'washhand': 967631, 'bonnbread': 134330, 'outbreak let': 628419, 'message curfew': 529290, 'curfew janatacurfew': 220892, 'janatacurfew corona': 464487, 'corona india': 204013, 'india washhand': 434678, 'washhand sanitizer': 967632, 'sanitizer bonnbread': 734573, 'bonnbread bread': 134331, 'bread biscuit': 138429, '19 outbreak let': 9150, 'outbreak let spread': 628421, 'spread the message': 790827, 'the message curfew': 860515, 'message curfew janatacurfew': 529291, 'curfew janatacurfew corona': 220893, 'janatacurfew corona india': 464488, 'corona india washhand': 204015, 'india washhand sanitizer': 434679, 'washhand sanitizer bonnbread': 967633, 'sanitizer bonnbread bread': 734574, 'bonnbread bread biscuit': 134332, 'online have': 608353, 'been ordering': 121611, 'ordering more': 618982, 'local online have': 498230, 'online have you': 608354, 'you been ordering': 1017426, 'been ordering more': 121612, 'ordering more item': 618983, 'more item online': 539635, 'ration limit': 697705, 'touch thing': 926559, 'buying try': 151271, 'avoid touchscreen': 105360, 'touchscreen do': 926772, 'not park': 570961, 'park next': 641949, 'others 10': 621231, '10 consider': 1364, 'consider shop': 195098, 'highly stressful': 396104, 'environment right': 279141, 'stick to ration': 800064, 'to ration limit': 912765, 'ration limit do': 697706, 'not touch thing': 572235, 'touch thing you': 926561, 're not buying': 699079, 'not buying try': 568663, 'buying try to': 151272, 'to avoid touchscreen': 900953, 'avoid touchscreen do': 105361, 'touchscreen do not': 926773, 'do not park': 249796, 'not park next': 570962, 'park next to': 641950, 'next to others': 561626, 'to others 10': 911129, 'others 10 consider': 621232, '10 consider shop': 1365, 'consider shop worker': 195099, 'shop worker supermarket': 761093, 'worker supermarket employee': 1007857, 'employee are working': 273633, 'working in highly': 1008716, 'in highly stressful': 423701, 'highly stressful environment': 396105, 'stressful environment right': 813494, 'environment right now': 279142, 'dollargeneral': 253119, 'wish every': 996752, 'america would': 51751, 'would reserve': 1012189, 'like dollargeneral': 490136, 'wish every grocery': 996753, 'in america would': 420244, 'america would reserve': 51754, 'would reserve the': 1012190, 'first two hour': 309143, 'two hour of': 936962, 'operation for senior': 613186, 'for senior to': 325482, 'senior to shop': 750431, 'to shop like': 914468, 'shop like dollargeneral': 760404, 'itsupport': 464001, 'update all': 946848, 'all building': 42223, 'building on': 142122, 'on campus': 599784, 'campus are': 157327, 'closed with': 183443, 'all campus': 42278, 'campus computer': 157331, 'computer lab': 192741, 'closed if': 183167, 'if student': 414887, 'student require': 814764, 'require access': 713293, 'computer please': 192755, 'email itsupport': 272224, 'itsupport ca': 464002, 'ca full': 154876, 'full update': 340957, '19 update all': 11653, 'update all building': 946849, 'all building on': 42224, 'building on campus': 142123, 'on campus are': 599785, 'campus are now': 157328, 'now closed with': 574408, 'closed with the': 183444, 'exception of retail': 289276, 'retail store all': 718602, 'store all campus': 806130, 'all campus computer': 42279, 'campus computer lab': 157332, 'computer lab are': 192742, 'lab are now': 478250, 'now closed if': 574402, 'closed if student': 183168, 'if student require': 414888, 'student require access': 814765, 'require access to': 713294, 'access to computer': 28222, 'to computer please': 903159, 'computer please email': 192756, 'please email itsupport': 659953, 'email itsupport ca': 272225, 'itsupport ca full': 464003, 'ca full update': 154877, '2bn': 16563, 'trim': 932013, 'outlay': 629010, 'theeconomist': 872328, 'g20saudiarabia': 342676, 'oilwar': 597738, 'if oil': 414526, 'low saudiarabia': 505590, 'saudiarabia will': 737368, 'to plug': 911826, 'plug budget': 661215, 'budget shortfall': 141815, 'shortfall of': 765371, 'of 2bn': 579549, '2bn week': 16566, 'only g20': 610494, 'g20 member': 342668, 'member to': 528220, 'to trim': 917784, 'trim outlay': 932014, 'outlay during': 629011, 'pandemic theeconomist': 636714, 'theeconomist on': 872329, 'on oilprice': 602497, 'oilprice g20saudiarabia': 597613, 'g20saudiarabia 19': 342677, '19 oilandgas': 8910, 'oilandgas oilwar': 597553, 'if oil price': 414527, 'oil price stay': 597272, 'price stay low': 676628, 'stay low saudiarabia': 797122, 'low saudiarabia will': 505591, 'saudiarabia will need': 737369, 'need to plug': 556013, 'to plug budget': 911827, 'plug budget shortfall': 661216, 'budget shortfall of': 141816, 'shortfall of 2bn': 765372, 'of 2bn week': 579550, '2bn week it': 16567, 'is already the': 445541, 'already the only': 47716, 'the only g20': 862308, 'only g20 member': 610495, 'g20 member to': 342669, 'member to trim': 528222, 'to trim outlay': 917785, 'trim outlay during': 932015, 'outlay during the': 629012, 'the pandemic theeconomist': 863122, 'pandemic theeconomist on': 636715, 'theeconomist on oilprice': 872330, 'on oilprice g20saudiarabia': 602498, 'oilprice g20saudiarabia 19': 597614, 'g20saudiarabia 19 oilandgas': 342678, '19 oilandgas oilwar': 8911, 'fighter': 305002, 'peple': 650640, 'dear fighter': 229789, 'fighter according': 305003, 'expert peple': 291912, 'peple with': 650641, 'with disease': 998079, 'disease ve': 245266, 've higher': 953261, 'higher of': 395633, 'of therefore': 591803, 'therefore requested': 879457, 'care make': 164057, 'make habit': 509953, 'of washing': 592919, 'hand drink': 374903, 'drink plenty': 258872, 'water eat': 968971, 'eat nutritious': 266001, 'with infection': 998995, 'but take': 147254, 'dear fighter according': 229790, 'fighter according to': 305004, 'to expert peple': 905467, 'expert peple with': 291913, 'peple with disease': 650642, 'with disease ve': 998081, 'disease ve higher': 245267, 've higher of': 953262, 'higher of therefore': 395634, 'of therefore requested': 591804, 'therefore requested to': 879458, 'requested to take': 713259, 'take care make': 832010, 'care make habit': 164058, 'make habit of': 509954, 'habit of washing': 372663, 'of washing hand': 592920, 'washing hand drink': 967667, 'hand drink plenty': 374904, 'drink plenty of': 258873, 'plenty of water': 660990, 'of water eat': 592940, 'water eat nutritious': 968972, 'eat nutritious food': 266002, 'nutritious food don': 577763, 'food don panic': 314262, 'don panic with': 253818, 'panic with infection': 638795, 'with infection but': 998996, 'infection but take': 436725, 'but take care': 147256, 'monitored': 537329, 'igetit': 415723, 'being monitored': 125436, 'monitored back': 537330, 'home look': 401553, 'look draconian': 502339, 'but igetit': 146003, 'igetit staythefhome': 415724, 'staythefhome socialdistancing': 799063, 'selfisolation stopthespread': 748501, 'how is being': 408083, 'is being monitored': 446095, 'being monitored back': 125437, 'monitored back home': 537331, 'back home look': 107063, 'home look draconian': 401554, 'look draconian but': 502340, 'draconian but igetit': 258134, 'but igetit staythefhome': 146004, 'igetit staythefhome socialdistancing': 415725, 'staythefhome socialdistancing selfisolation': 799064, 'socialdistancing selfisolation stopthespread': 780672, 'selfisolation stopthespread stoppanicbuying': 748502, 'multiplesclerosis': 545813, 'chronicillness': 178248, 'those wondering': 892740, 'wa helpful': 962303, 'helpful multiplesclerosis': 391210, 'multiplesclerosis chronicillness': 545814, 'for those wondering': 327152, 'those wondering about': 892741, 'wondering about catching': 1004148, 'about catching the': 24940, 'catching the at': 167113, 'store thought this': 810716, 'this wa helpful': 891070, 'wa helpful multiplesclerosis': 962304, 'helpful multiplesclerosis chronicillness': 391211, 'my black': 547468, 'black husband': 132071, 'person we': 652697, 'saw made': 738160, 'made comment': 507691, 'comment about': 188376, 'about him': 25386, 'him looking': 396653, 'to rob': 913609, 'store racism': 809725, 'the very first': 870705, 'very first time': 955168, 'first time my': 309105, 'time my black': 897242, 'my black husband': 547470, 'black husband and': 132072, 'husband and went': 411676, 'wearing mask the': 974717, 'mask the first': 519353, 'first person we': 308864, 'person we saw': 652698, 'we saw made': 973135, 'saw made comment': 738161, 'made comment about': 507692, 'comment about him': 188377, 'about him looking': 25390, 'him looking like': 396654, 'looking like he': 502956, 'going to rob': 355693, 'to rob the': 913614, 'rob the store': 724639, 'the store racism': 868088, 'movement due': 543866, 'it triggered': 461854, 'supermarket nation': 821567, 'nation wide': 552385, 'wide the': 991766, 'only middle': 610786, 'middle and': 530624, 'and upper': 74745, 'class over': 180235, 'over reaction': 630556, 'reaction the': 700207, 'class is': 180206, 'bother at': 136111, 'wake of restriction': 964600, 'of restriction of': 589040, 'of movement due': 586692, 'movement due to': 543867, '19 it triggered': 8158, 'it triggered panic': 461855, 'triggered panic buying': 931924, 'the supermarket nation': 868709, 'supermarket nation wide': 821568, 'nation wide the': 552388, 'wide the truth': 991767, 'truth is panic': 934396, 'buying is only': 150573, 'is only middle': 450542, 'only middle and': 610787, 'middle and upper': 530626, 'and upper class': 74746, 'upper class over': 947686, 'class over reaction': 180236, 'over reaction the': 630557, 'reaction the working': 700210, 'working class is': 1008562, 'class is not': 180208, 'is not bother': 450039, 'not bother at': 568596, 'bother at all': 136112, 'invercargill': 443735, 'hectic': 388709, 'so live': 777564, 'zealand in': 1027293, 'in invercargill': 424132, 'invercargill so': 443736, 'far new': 298861, 'zealand ha': 1027287, 'ha 11': 369392, '11 confirmed': 2506, 'here went': 393795, 'expecting it': 291041, 'be hectic': 115187, 'hectic it': 388711, 'wa beyond': 961696, 'okay so live': 598007, 'so live at': 777566, 'live at the': 495736, 'bottom of new': 136418, 'of new zealand': 586992, 'new zealand in': 559989, 'zealand in invercargill': 1027294, 'in invercargill so': 424133, 'invercargill so far': 443737, 'so far new': 777043, 'far new zealand': 298862, 'new zealand ha': 559986, 'zealand ha 11': 1027288, 'ha 11 confirmed': 369393, '11 confirmed case': 2507, 'which are here': 985683, 'are here went': 87124, 'here went to': 393796, 'to supermarket this': 915848, 'evening and while': 284850, 'and while wa': 75573, 'while wa expecting': 987520, 'wa expecting it': 962098, 'expecting it to': 291042, 'to be hectic': 901298, 'be hectic it': 115188, 'hectic it wa': 388712, 'it wa beyond': 462078, 'wa beyond that': 961698, 'hqsn': 409587, 'bidder': 129501, 'hqsn need': 409588, 'some celebrity': 782506, 'celebrity bidder': 168878, 'bidder to': 129509, 'price pricing': 675998, 'pricing rule': 677973, 'full effect': 340577, 'effect reach': 269106, 'reach into': 699931, 'into those': 443229, 'those pocket': 892354, 'pocket and': 662151, 'and dig': 61353, 'hqsn need some': 409589, 'need some celebrity': 555588, 'some celebrity bidder': 782507, 'celebrity bidder to': 168879, 'bidder to drive': 129510, 'drive up the': 259251, 'the price pricing': 864398, 'price pricing rule': 675999, 'pricing rule in': 677974, 'rule in full': 727264, 'in full effect': 423161, 'full effect reach': 340578, 'effect reach into': 269107, 'reach into those': 699932, 'into those pocket': 443232, 'those pocket and': 892355, 'pocket and dig': 662152, 'and dig deep': 61354, 'cheeseheads': 175232, 'hey ron': 394498, 'ron all': 725768, 'all cheeseheads': 42338, 'cheeseheads know': 175233, 'economy wtf': 268380, 'wtf are': 1013268, 'do ron': 250051, 'ron wisconsin': 725775, 'hey ron all': 394499, 'ron all cheeseheads': 725769, 'all cheeseheads know': 42339, 'cheeseheads know that': 175234, 'that the united': 846859, 'state is consumer': 795692, 'driven economy wtf': 259317, 'economy wtf are': 268381, 'wtf are you': 1013270, 'to do ron': 904549, 'do ron wisconsin': 250052, 'downtownomaha': 257770, 'small neighborhood': 775040, 'neighborhood grocery': 557120, 'ago omaha': 38439, 'omaha downtownomaha': 598819, 'downtownomaha old': 257771, 'old market': 598358, 'shelf of our': 757364, 'of our small': 587564, 'our small neighborhood': 624800, 'small neighborhood grocery': 775041, 'neighborhood grocery store': 557121, 'store few day': 807713, 'day ago omaha': 227205, 'ago omaha downtownomaha': 38440, 'omaha downtownomaha old': 598820, 'downtownomaha old market': 257772, 'eat with': 266114, 'with stress': 1001010, 'stress might': 813365, 'so stressed that': 778283, 'stressed that have': 813465, 'that have to': 844241, 'so can eat': 776708, 'can eat with': 158206, 'eat with stress': 266116, 'with stress might': 1001012, 'stress might need': 813366, 'might need some': 531086, 'continue despite': 201019, 'sale continue despite': 732139, 'continue despite covid': 201020, 'you handle': 1018993, 'the laundry': 859175, 'laundry of': 482119, 'are laundromat': 87724, 'laundromat safe': 482097, 'safe these': 730025, 'day here': 227750, 'some simple': 783876, 'simple step': 770096, 'yourself while': 1026753, 'do you handle': 250636, 'you handle the': 1018994, 'handle the laundry': 376273, 'the laundry of': 859177, 'laundry of someone': 482120, 'of someone with': 589924, 'and are laundromat': 58329, 'are laundromat safe': 87725, 'laundromat safe these': 482098, 'safe these day': 730026, 'these day here': 879876, 'day here are': 227752, 'are some simple': 90287, 'some simple step': 783877, 'simple step to': 770098, 'protect yourself while': 685105, 'yourself while doing': 1026755, 'doing laundry in': 252510, 'age of the': 37876, 'paperless': 641150, 'online market': 608520, 'making kill': 511158, 'of re': 588763, 're look': 699007, 'into working': 443308, 'going paperless': 355415, 'paperless in': 641151, 'business transaction': 144569, 'transaction creating': 929445, 'creating smart': 216076, 'smart ai': 775326, 'robot port': 724802, 'port especially': 664881, 'africa every': 35072, 'every challenge': 285721, 'challenge demand': 171435, 'demand solution': 236253, 'online market are': 608521, 'market are making': 516026, 'are making kill': 87987, 'making kill covid': 511159, 'ha made all': 371202, 'made all of': 507622, 'all of re': 43707, 'of re look': 588765, 're look into': 699008, 'look into working': 502441, 'into working online': 443309, 'working online shopping': 1008833, 'shopping online going': 763436, 'online going paperless': 608304, 'going paperless in': 355416, 'paperless in government': 641152, 'government and business': 359859, 'and business transaction': 59305, 'business transaction creating': 144571, 'transaction creating smart': 929446, 'creating smart ai': 216077, 'smart ai robot': 775327, 'ai robot port': 39334, 'robot port especially': 724803, 'port especially in': 664882, 'in africa every': 420085, 'africa every challenge': 35073, 'every challenge demand': 285722, 'challenge demand solution': 171436, 'rothschild': 726187, 'god rothschild': 354791, 'rothschild you': 726189, 'mean like': 524523, 'like attending': 489846, 'attending briefing': 102402, 'aren available': 92335, 'then dumping': 877143, 'dumping consumer': 262224, 'medical drug': 526138, 'drug ppe': 261032, 'ppe stock': 668058, 'god rothschild you': 354792, 'rothschild you mean': 726190, 'you mean like': 1019823, 'mean like attending': 524524, 'like attending briefing': 489847, 'attending briefing on': 102403, '19 that aren': 11150, 'that aren available': 842850, 'aren available to': 92338, 'public then dumping': 688363, 'then dumping consumer': 877144, 'dumping consumer stock': 262225, 'consumer stock in': 199144, 'stock in exchange': 802262, 'exchange for medical': 289447, 'for medical drug': 323378, 'medical drug ppe': 526139, 'drug ppe stock': 261033, 'my boy': 547516, 'boy while': 137302, 'while mask': 987047, 'and my boy': 67355, 'my boy while': 547520, 'boy while mask': 137303, 'while mask price': 987048, 'mask price have': 519144, 'heated': 388498, 'hinder': 396834, 'week heated': 976321, 'heated oil': 388499, 'war fueled': 966443, 'fueled concern': 340324, 'that saudi': 846123, 'russia or': 728529, 'the would': 872085, 'would hinder': 1011927, 'hinder an': 396837, 'an opec': 56647, 'balance the': 108989, 'seen geopolitical': 747035, 'geopolitical move': 345972, 'move major': 543689, 'market rival': 517012, 'rival are': 724164, 'same page': 733198, 'page but': 633834, 'but mexico': 146384, 'mexico is': 530008, 'now reluctant': 575671, 'for week heated': 327715, 'week heated oil': 976322, 'heated oil price': 388500, 'price war fueled': 677358, 'war fueled concern': 966444, 'fueled concern that': 340325, 'concern that saudi': 193115, 'that saudi arabia': 846124, 'arabia russia or': 83922, 'russia or the': 728530, 'or the would': 617409, 'the would hinder': 872087, 'would hinder an': 1011928, 'hinder an opec': 396838, 'an opec effort': 56648, 'opec effort to': 611880, 'effort to balance': 269611, 'to balance the': 901010, 'balance the market': 108990, 'market but today': 516131, 'but today we': 147609, 'have seen geopolitical': 382425, 'seen geopolitical move': 747036, 'geopolitical move major': 345973, 'move major market': 543690, 'major market rival': 509388, 'market rival are': 517013, 'rival are on': 724166, 'the same page': 866271, 'same page but': 733199, 'page but mexico': 633835, 'but mexico is': 146385, 'mexico is now': 530009, 'is now reluctant': 450325, 'now reluctant to': 575672, 'reluctant to cut': 709620, 'wait almost': 964070, 'almost week': 46763, 'delivery self': 234417, 'current stock': 221385, 'carry me': 165107, 'that far': 843835, 'to wait almost': 918258, 'wait almost week': 964071, 'almost week for': 46764, 'my food delivery': 548379, 'food delivery self': 314143, 'delivery self isolating': 234418, 'isolating and do': 455054, 'not think my': 572078, 'think my current': 885410, 'my current stock': 547871, 'current stock of': 221386, 'food will carry': 317619, 'will carry me': 992881, 'carry me that': 165108, 'me that far': 523612, 'opinion canadian': 613455, 'shock writes': 759549, 'writes evan': 1012836, 'opinion canadian worried': 613456, 'particular shock writes': 642638, 'shock writes evan': 759550, 'writes evan fraser': 1012837, '116 it': 2674, 'up living': 945335, 'out daily': 625924, 'daily to': 224842, 'period isn': 651801, 'safe especially': 729630, 'rise here': 722866, 'in abuja': 419989, '116 it will': 2675, 'will help me': 993719, 'help me stock': 390078, 'stock up living': 803096, 'up living alone': 945336, 'alone and going': 46811, 'and going out': 63807, 'going out daily': 355367, 'out daily to': 625927, 'daily to buy': 224843, 'buy food this': 148682, 'food this period': 317197, 'this period isn': 889523, 'period isn safe': 651802, 'isn safe especially': 454655, 'safe especially the': 729631, 'especially the number': 280627, 'case is on': 165831, 'the rise here': 865854, 'rise here in': 722868, 'here in abuja': 393130, 'trendy': 931596, 'home decor': 400992, 'decor to': 231528, 'to trendy': 917771, 'trendy fashion': 931597, 'fashion local': 299827, 'and boutique': 59121, 'boutique are': 136933, 'from home decor': 335851, 'home decor to': 400994, 'decor to trendy': 231529, 'to trendy fashion': 917772, 'trendy fashion local': 931598, 'fashion local shop': 299828, 'local shop and': 498392, 'shop and boutique': 759839, 'and boutique are': 59122, 'boutique are still': 136934, 'open for business': 612242, 'for business during': 319829, 'sephora': 751131, 'hey sephora': 394506, 'sephora retail': 751139, 'worker how': 1007145, 'support do': 826458, 'hey sephora retail': 394507, 'sephora retail worker': 751140, 'retail worker how': 718890, 'worker how are': 1007146, 'how are all': 407387, 'are all doing': 84298, 'all doing right': 42609, 'now what kind': 576382, 'kind of support': 474947, 'of support do': 590511, 'support do all': 826459, 'do all need': 249042, 'smuggling': 775991, 'growthop': 367491, 'no smuggling': 565530, 'smuggling involved': 775994, 'involved black': 444342, 'market cannabis': 516146, 'cannabis price': 161431, 'absolutely wild': 27466, 'wild right': 992076, 'the growthop': 856887, 'growthop via': 367492, 'with no smuggling': 999789, 'no smuggling involved': 565532, 'smuggling involved black': 775995, 'involved black market': 444343, 'black market cannabis': 132088, 'market cannabis price': 516147, 'cannabis price are': 161432, 'price are absolutely': 672628, 'are absolutely wild': 84174, 'absolutely wild right': 27467, 'wild right now': 992077, 'right now the': 722153, 'now the growthop': 576044, 'the growthop via': 856888, 'food consumer': 313997, 'more digital': 539041, 'digital traceability': 242667, 'traceability post': 928141, 'coronavirus food consumer': 205934, 'food consumer will': 314001, 'consumer will demand': 199544, 'will demand more': 993154, 'demand more digital': 235885, 'more digital traceability': 539043, 'digital traceability post': 242668, 'traceability post covid': 928142, 'sanitiser manufacturer': 733987, 'temporarily relax': 837533, 'relax 2017': 708804, '2017 dangerous': 13851, 'dangerous good': 225743, 'good rule': 357678, 'rule they': 727377, 'is stopping': 452348, 'stopping them': 805833, 'them meeting': 876021, 'meeting the': 527768, 'huge covid': 410009, 'hand sanitiser manufacturer': 375237, 'sanitiser manufacturer are': 733988, 'manufacturer are calling': 513422, 'government to temporarily': 360740, 'to temporarily relax': 916361, 'temporarily relax 2017': 837534, 'relax 2017 dangerous': 708805, '2017 dangerous good': 13852, 'dangerous good rule': 225744, 'good rule they': 357679, 'rule they say': 727379, 'they say is': 883271, 'say is stopping': 738824, 'is stopping them': 452349, 'stopping them meeting': 805834, 'them meeting the': 876022, 'meeting the huge': 527772, 'the huge covid': 857697, 'huge covid 19': 410010, '19 induced demand': 7830, '700k': 21917, 'trump destroyed': 933509, 'set new': 753431, 'new unemployment': 559800, 'unemployment record': 941282, 'record yet': 705083, 'yet want': 1016310, 'take snap': 832587, 'snap away': 776074, 'from 700k': 334330, '700k people': 21920, 'nationwide shutdown': 552756, 'shutdown wonder': 768132, 'those voted': 892590, '2016 plan': 13840, 'so again': 776475, 'donald trump destroyed': 254108, 'trump destroyed the': 933510, 'destroyed the stock': 239074, 'stock market ha': 802401, 'market ha set': 516490, 'ha set new': 371870, 'set new unemployment': 753435, 'new unemployment record': 559802, 'unemployment record yet': 941283, 'record yet want': 705084, 'yet want to': 1016311, 'to take snap': 916236, 'take snap away': 832588, 'snap away from': 776075, 'away from 700k': 105856, 'from 700k people': 334331, '700k people in': 21921, 'middle of nationwide': 530681, 'of nationwide shutdown': 586872, 'nationwide shutdown wonder': 552757, 'shutdown wonder how': 768133, 'of those voted': 592125, 'those voted for': 892591, 'voted for him': 960553, 'for him in': 322285, 'him in 2016': 396634, 'in 2016 plan': 419777, '2016 plan to': 13841, 'plan to do': 658282, 'do so again': 250084, 'so again in': 776476, 'again in 2020': 37036, 'sick girl': 768461, 'girl 13': 350228, '13 crushed': 3201, 'crushed by': 219797, 'buyer in': 149667, 'supermarket rush': 822281, 'paper panicbuying': 640574, 'panicbuying disgraceful': 638928, 'this make me': 888748, 'make me feel': 510130, 'feel sick girl': 302843, 'sick girl 13': 768462, 'girl 13 crushed': 350229, '13 crushed by': 3202, 'crushed by panic': 219799, 'by panic buyer': 153518, 'panic buyer in': 637583, 'buyer in supermarket': 149669, 'in supermarket rush': 428659, 'supermarket rush for': 822282, 'rush for toilet': 728294, 'toilet paper panicbuying': 921385, 'paper panicbuying disgraceful': 640575, 'home doesn': 401089, 'doesn need': 251902, 'cough once': 208526, 'once me': 605676, 'me at home': 522471, 'at home doesn': 98976, 'home doesn need': 401090, 'doesn need to': 251906, 'need to cough': 555897, 'to cough once': 903609, 'cough once me': 208527, 'once me at': 605677, 'we too': 973549, 'too should': 925060, 'putting severe': 691216, 'severe restriction': 754050, 'all foreign': 42855, 'foreign investment': 328979, 'from coming': 334921, 'our farm': 623016, 'other vital': 621175, 'vital asset': 959673, 'at depressed': 98424, 'depressed price': 237600, 'we too should': 973554, 'too should be': 925061, 'be putting severe': 116648, 'putting severe restriction': 691217, 'severe restriction on': 754051, 'on all foreign': 599226, 'all foreign investment': 42856, 'foreign investment to': 328981, 'investment to prevent': 444074, 'prevent the chinese': 671730, 'the chinese and': 850843, 'chinese and others': 177191, 'others from coming': 621417, 'from coming in': 334922, 'coming in and': 188088, 'in and buying': 420354, 'buying up our': 151295, 'up our farm': 945700, 'our farm and': 623017, 'and other vital': 68430, 'other vital asset': 621176, 'vital asset at': 959674, 'asset at depressed': 96416, 'at depressed price': 98425, 'aitkin': 40444, 'sheriff': 758074, 'aitkin county': 40445, 'county sheriff': 211485, 'sheriff office': 758081, 'office receives': 595527, 'receives kn95': 703733, 'kn95 mask': 475968, 'aitkin county sheriff': 40446, 'county sheriff office': 211486, 'sheriff office receives': 758082, 'office receives kn95': 595528, 'receives kn95 mask': 703734, 'kn95 mask and': 475969, 'vomming': 960411, 'start vomming': 794628, 'vomming covid': 960412, '19 over': 9221, 'over each': 630169, 'their piss': 874306, 'piss ups': 656956, 'ups before': 947732, 'to binge': 901821, 'binge on': 131081, 'their stockpile': 874840, 'stockpile while': 803817, 'basic due': 111862, 'cannot wait for': 162212, 'wait for people': 964119, 'for people start': 324463, 'people start vomming': 649541, 'start vomming covid': 794629, 'vomming covid 19': 960413, 'covid 19 over': 213538, '19 over each': 9223, 'over each other': 630170, 'end of their': 275919, 'of their piss': 591689, 'their piss ups': 874308, 'piss ups before': 656957, 'ups before going': 947733, 'before going home': 122826, 'going home to': 355201, 'home to binge': 402310, 'to binge on': 901823, 'binge on their': 131082, 'on their stockpile': 604512, 'their stockpile while': 874841, 'stockpile while others': 803818, 'while others are': 987119, 'others are struggling': 621278, 'to buy even': 902224, 'buy even the': 148584, 'even the basic': 284647, 'the basic due': 849306, 'basic due to': 111863, 'due to empty': 261771, 'empty supermarket aisle': 275155, 'me yes': 524037, 'yes officer': 1015500, 'officer am': 595616, 'store officer': 809166, 'officer sir': 595718, 'sir town': 771665, 'other direction': 620106, 'direction californialockdown': 243453, 'californialockdown humor': 155628, 'me yes officer': 524038, 'yes officer am': 1015501, 'officer am on': 595618, 'am on my': 50281, 'grocery store officer': 365606, 'store officer sir': 809167, 'officer sir town': 595719, 'sir town is': 771666, 'town is the': 927500, 'the other direction': 862521, 'other direction californialockdown': 620107, 'direction californialockdown humor': 243454, 'cosatu': 207770, '014': 758, 'cosatu urge': 207773, 'utilize 0800': 951352, '0800 014': 1098, '014 880': 759, '880 toll': 23067, 'free number': 332005, 'report retailer': 712218, 'retailer charging': 719073, 'charging abnormal': 173453, 'cosatu urge all': 207774, 'urge all worker': 948153, 'all worker and': 45499, 'worker and their': 1006344, 'family to utilize': 298332, 'to utilize 0800': 918095, 'utilize 0800 014': 951353, '0800 014 880': 1099, '014 880 toll': 760, '880 toll free': 23068, 'toll free number': 923844, 'free number to': 332007, 'number to report': 577075, 'to report retailer': 913283, 'report retailer charging': 712219, 'retailer charging abnormal': 719074, 'charging abnormal price': 173454, 'abnormal price during': 24594, 'outbreak of and': 628476, 'of and taking': 580185, 'and taking advantage': 72995, 'of our people': 587533, 'summed': 817946, 'local street': 498489, 'street artist': 812912, 'artist who': 94628, 'who perfectly': 989420, 'perfectly summed': 651401, 'summed up': 817947, 'clear my': 181290, 'artist stophoarding': 94616, 'stopstockpiling coronacrisis': 805865, 'the local street': 859573, 'local street artist': 498490, 'street artist who': 812914, 'artist who perfectly': 94630, 'who perfectly summed': 989421, 'perfectly summed up': 651402, 'summed up my': 817949, 'up my thought': 945439, 'my thought on': 550357, 'current situation in': 221363, 'in our supermarket': 426344, 'our supermarket just': 625021, 'to be clear': 901168, 'be clear my': 114102, 'clear my daughter': 181291, 'daughter is not': 226869, 'not the local': 572012, 'street artist stophoarding': 812913, 'artist stophoarding stopstockpiling': 94617, 'stophoarding stopstockpiling coronacrisis': 805490, 'ludicrous': 506606, 'rallying': 696293, 'making toilet': 511473, 'paper meme': 640464, 'meme selling': 528353, 'for ludicrous': 323142, 'ludicrous throwing': 506609, 'throwing fist': 895091, 'fist in': 309443, 'team along': 835572, 'along our': 47015, 'in care': 421243, 'care are': 163851, 'are rallying': 89423, 'rallying with': 696302, 'with speed': 1000915, 'speed purpose': 788459, 'to deploy': 904184, 'deploy technology': 237453, 'technology solution': 836372, 'others are making': 621271, 'are making toilet': 88011, 'making toilet paper': 511474, 'toilet paper meme': 921358, 'paper meme selling': 640465, 'meme selling hand': 528354, 'sanitizer for ludicrous': 734912, 'for ludicrous throwing': 323143, 'ludicrous throwing fist': 506610, 'throwing fist in': 895092, 'fist in the': 309444, 'store my team': 809016, 'my team along': 550325, 'team along our': 835573, 'along our partner': 47016, 'our partner in': 624279, 'partner in care': 642835, 'in care are': 421245, 'care are rallying': 163852, 'are rallying with': 89425, 'rallying with speed': 696303, 'with speed purpose': 1000917, 'speed purpose to': 788460, 'purpose to deploy': 690160, 'to deploy technology': 904186, 'deploy technology solution': 237454, 'zorb': 1027872, 'video keep': 956802, 'on woman': 605357, 'england is': 277020, 'leave her': 484814, 'she attempt': 755871, 'do her': 249392, 'inside giant': 439268, 'giant inflatable': 349806, 'inflatable zorb': 436981, 'zorb uk': 1027873, 'lockdown panicbuying': 499770, 'panicbuying clapforourcarers': 638914, 'clapforourcarers chinavirus': 180011, 'chinavirus borisjohnson': 177142, 'video keep calm': 956803, 'calm and carry': 156684, 'and carry on': 59584, 'carry on woman': 165131, 'on woman in': 605359, 'woman in england': 1003513, 'in england is': 422580, 'england is told': 277021, 'told to leave': 923753, 'to leave her': 909152, 'leave her local': 484815, 'local supermarket after': 498497, 'after she attempt': 36184, 'she attempt to': 755872, 'attempt to do': 102242, 'to do her': 904516, 'do her shopping': 249393, 'her shopping from': 392375, 'shopping from inside': 762756, 'from inside giant': 336067, 'inside giant inflatable': 439269, 'giant inflatable zorb': 349807, 'inflatable zorb uk': 436982, 'zorb uk lockdown': 1027874, 'uk lockdown panicbuying': 938520, 'lockdown panicbuying clapforourcarers': 499772, 'panicbuying clapforourcarers chinavirus': 638915, 'clapforourcarers chinavirus borisjohnson': 180012, 'are or': 88830, 'or know': 615911, 'know company': 476331, 'with website': 1002057, 'website traffic': 975453, 'traffic or': 929124, 'please write': 660782, 'traffic back': 929058, 'back we': 107451, 'available we': 104692, 'would appreciate': 1011531, 'could rt': 209616, 'you are or': 1017190, 'are or know': 88832, 'or know company': 615912, 'know company who': 476332, 'company who is': 191320, 'who is struggling': 989117, 'is struggling with': 452399, 'struggling with website': 814550, 'with website traffic': 1002058, 'website traffic or': 975454, 'traffic or just': 929125, 'or just need': 615888, 'just need help': 469305, 'need help during': 554980, 'the pandemic please': 863057, 'pandemic please write': 636200, 'please write to': 660783, 'write to our': 1012799, 'team is ready': 835702, 'get the traffic': 348307, 'the traffic back': 869879, 'traffic back we': 929059, 'back we will': 107454, 'be offering the': 116164, 'offering the lowest': 595282, 'lowest price available': 506207, 'price available we': 672826, 'available we would': 104694, 'we would appreciate': 973966, 'would appreciate it': 1011532, 'appreciate it if': 82730, 'you could rt': 1018098, 'men in': 528495, 'never seen so': 558177, 'seen so many': 747239, 'so many men': 777676, 'many men in': 514279, 'men in supermarket': 528498, 'time in australia': 896979, 'in australia covid': 420602, 'sinkie': 771493, 'pwn': 691376, 'sinkie pwn': 771494, 'pwn sinkie': 691377, 'sinkie teen': 771496, 'sinkie pwn sinkie': 771495, 'pwn sinkie teen': 691378, 'sinkie teen arrested': 771497, 'ijs': 416007, 'boostyourimmunesystem': 135093, 'nutraburst': 577688, 'chemical hand': 175350, 'vegetable herb': 954003, 'work ijs': 1005287, 'ijs detox': 416008, 'detox boostyourimmunesystem': 239483, 'boostyourimmunesystem nutraburst': 135094, 'nutraburst cbd': 577689, 'cbd vitamin': 168331, 'toxic chemical hand': 927640, 'chemical hand sanitizers': 175351, 'fruit vegetable herb': 339182, 'vegetable herb are': 954004, 'system work ijs': 831395, 'work ijs detox': 1005288, 'ijs detox boostyourimmunesystem': 416009, 'detox boostyourimmunesystem nutraburst': 239484, 'boostyourimmunesystem nutraburst cbd': 135095, 'nutraburst cbd vitamin': 577690, 'recognizing': 704669, 'released an': 709012, 'find help': 306953, 'with recognizing': 1000420, 'recognizing and': 704670, 'and avoiding': 58581, 'avoiding fraud': 105455, 'fraud scheme': 331342, 'scheme please': 741578, 'commission website': 188916, 'the attorney office': 849036, 'attorney office ha': 102681, 'office ha released': 595434, 'ha released an': 371703, 'released an official': 709015, 'an official statement': 56571, 'official statement on': 595939, 'the coronavirus to': 851932, 'coronavirus to learn': 206950, '19 scam and': 10334, 'scam and find': 739998, 'and find help': 62886, 'find help with': 306956, 'help with recognizing': 390925, 'with recognizing and': 1000421, 'recognizing and avoiding': 704671, 'and avoiding fraud': 58583, 'avoiding fraud scheme': 105456, 'fraud scheme please': 331345, 'scheme please visit': 741579, 'please visit the': 660729, 'visit the federal': 959379, 'trade commission website': 928460, 'bitching': 131791, 'agressive': 38829, 'allyouneedislove': 46443, 'is drinking': 447375, 'drinking bottle': 258917, 'wine after': 995757, 'after bitching': 35419, 'bitching with': 131792, 'with agressive': 997121, 'agressive customer': 38830, 'really hot': 702317, 'hot security': 405041, 'security guy': 744634, 'who helped': 988991, 'long allyouneedislove': 501324, 'crisis is drinking': 217568, 'is drinking bottle': 447376, 'drinking bottle of': 258918, 'of wine after': 593176, 'wine after bitching': 995758, 'after bitching with': 35420, 'bitching with agressive': 131793, 'with agressive customer': 997122, 'agressive customer for': 38831, 'customer for hour': 222385, 'for hour by': 322390, 'hour by the': 405477, 'the way thanks': 871192, 'way thanks to': 969916, 'thanks to that': 842265, 'to that really': 916460, 'that really hot': 845962, 'really hot security': 702318, 'hot security guy': 405042, 'security guy who': 744635, 'guy who helped': 369229, 'who helped me': 988992, 'helped me all': 391082, 'me all day': 522369, 'day long allyouneedislove': 227933, 'governor announced': 360864, 'new novel': 559182, 'friendly public': 333986, 'public website': 688466, 'are sharing': 90021, 'sharing this': 755604, 'information with': 438046, 'making relevant': 511306, 'relevant real': 709170, 'information available': 437753, 'california governor announced': 155508, 'governor announced the': 360865, 'of new novel': 586976, 'new novel coronavirus': 559183, '19 consumer friendly': 5969, 'consumer friendly public': 197545, 'friendly public website': 333987, 'public website we': 688467, 'we are sharing': 970707, 'are sharing this': 90023, 'sharing this information': 755608, 'this information with': 888118, 'information with our': 438047, 'with our community': 999983, 'the hope of': 857493, 'hope of making': 403570, 'of making relevant': 586126, 'making relevant real': 511307, 'relevant real time': 709171, 'time information available': 897034, 'information available to': 437754, 'sometime': 785174, 'ask when': 95661, 'for antibody': 319385, 'antibody is': 78405, 'available know': 104474, 'know sometime': 476736, 'sometime away': 785175, 'away will': 106110, 'critical worker': 218727, 'worker key': 1007284, '1st or': 12775, 'from chemist': 334837, 'chemist supermarket': 175446, 'ha is': 370997, 'currently would': 221726, 'can ask when': 157530, 'ask when the': 95662, 'when the test': 984205, 'the test for': 869312, 'test for antibody': 838996, 'for antibody is': 319386, 'antibody is available': 78406, 'is available know': 445923, 'available know sometime': 104475, 'know sometime away': 476737, 'sometime away will': 785176, 'away will that': 106114, 'will that roll': 995125, 'that roll out': 846067, 'roll out on': 725453, 'out on critical': 626900, 'on critical worker': 600170, 'critical worker key': 218730, 'worker key worker': 1007285, 'key worker 1st': 473462, 'worker 1st or': 1006188, '1st or just': 12776, 'or just get': 615881, 'just get one': 468803, 'get one from': 347702, 'one from chemist': 606326, 'from chemist supermarket': 334839, 'chemist supermarket worker': 175447, 'worker who ha': 1008214, 'who ha is': 988853, 'ha is currently': 370998, 'is currently would': 447009, 'currently would be': 221727, 'be great to': 115095, 'great to know': 363070, 'the weather': 871251, 'weather people': 974888, 'american president': 52141, 'helping do': 391307, 'it lean': 459319, 'lean left': 483882, 'left or': 485596, 'or right': 616908, 'right he': 721927, 'sure it the': 827606, 'it the weather': 461586, 'the weather people': 871257, 'weather people feel': 974889, 'people feel it': 647892, 'feel it real': 302690, 'it real or': 460619, 'real or not': 701287, 'or not the': 616314, 'not the american': 571982, 'the american president': 848635, 'american president is': 52142, 'president is not': 670836, 'is not helping': 450104, 'not helping do': 569941, 'helping do not': 391308, 'care if it': 164014, 'if it lean': 414318, 'it lean left': 459320, 'lean left or': 483883, 'left or right': 485597, 'or right he': 616910, 'right he doesn': 721928, 'he doesn help': 384908, 'doesn help it': 251835, 'help it happening': 389944, 'article thank': 94477, 'kind and important': 474804, 'and important article': 65029, 'important article thank': 418743, 'article thank you': 94478, 'you the undervalued': 1021615, 'cheep': 175091, 'boi': 134045, 'the cheep': 850784, 'cheep gas': 175092, 'price 97': 672185, '97 damn': 23681, 'damn boi': 225323, 'for the cheep': 326342, 'the cheep gas': 850785, 'cheep gas price': 175093, 'gas price 97': 343925, 'price 97 damn': 672186, '97 damn boi': 23682, 'great study': 363013, 'study by': 814869, 'no exception': 564151, 'exception people': 289280, 'and otherwise': 68470, 'otherwise staying': 621869, 'staying indoors': 798651, 'indoors more': 435409, 'often how': 596210, 'and confidence': 60275, 'confidence been': 193836, 'great study by': 363014, 'study by our': 814871, 'by our insight': 153482, 'our insight team': 623560, 'insight team the': 439645, 'team the world': 835795, 'world is changing': 1009689, 'is changing and': 446464, 'changing and consumer': 172643, 'behavior is no': 124102, 'is no exception': 449926, 'no exception people': 564156, 'exception people adapt': 289281, 'adapt to working': 31292, 'to working from': 918819, 'home and otherwise': 400675, 'and otherwise staying': 68472, 'otherwise staying indoors': 621870, 'staying indoors more': 798654, 'indoors more often': 435410, 'more often how': 539901, 'often how have': 596211, 'how have their': 407974, 'have their behavior': 383046, 'their behavior and': 872577, 'behavior and confidence': 123881, 'and confidence been': 60276, 'confidence been affected': 193837, 'grower retail': 367108, 'legal marijuana': 485879, 'marijuana dispensary': 515714, 'dispensary in': 246122, 'in peterborough': 426665, 'peterborough open': 653552, '11 report': 2586, 'report there': 712365, 'currently people': 221629, 'the lineup': 859428, 'lineup on': 493669, 'on george': 601078, 'george st': 346018, 'st distancing': 791693, 'distancing tape': 247520, 'tape is': 834361, 'sidewalk the': 768954, 'only allow': 610054, 'allow customer': 45939, 'time cannabis': 896451, 'grower retail the': 367110, 'retail the first': 718775, 'the first legal': 855322, 'first legal marijuana': 308758, 'legal marijuana dispensary': 485880, 'marijuana dispensary in': 515715, 'dispensary in peterborough': 246123, 'in peterborough open': 426666, 'peterborough open at': 653553, 'open at 11': 612094, 'at 11 report': 97440, '11 report there': 2587, 'report there are': 712366, 'are currently people': 85670, 'currently people in': 221630, 'in the lineup': 429322, 'the lineup on': 859430, 'lineup on george': 493670, 'on george st': 601079, 'george st distancing': 346019, 'st distancing tape': 791694, 'distancing tape is': 247521, 'tape is on': 834362, 'on the sidewalk': 604364, 'the sidewalk the': 867165, 'sidewalk the store': 768956, 'store will only': 811339, 'will only allow': 994326, 'only allow customer': 610056, 'allow customer at': 45940, 'at time cannabis': 101287, 'why to': 991481, 'send gift': 749866, 'gift during': 349966, 'pandemic despite': 635295, 'despite shuttered': 238852, 'shuttered store': 768219, 'amazon limitation': 51031, 'and why to': 75637, 'why to send': 991483, 'to send gift': 914212, 'send gift during': 749867, 'gift during the': 349967, 'coronavirus pandemic despite': 206455, 'pandemic despite shuttered': 635298, 'despite shuttered store': 238853, 'shuttered store and': 768220, 'store and amazon': 806193, 'and amazon limitation': 58047, 'famillies': 297540, 'time another': 896309, 'another journalist': 77689, 'journalist asks': 467425, 'asks the': 96162, 'government about': 359812, 'about rationing': 26043, 'rationing food': 697810, 'and looting': 66390, 'looting another': 503251, 'another number': 77729, 'of poorer': 588224, 'poorer famillies': 664350, 'famillies will': 297541, 'be step': 117363, 'step closer': 799519, 'without enough': 1002613, 'food irresponsible': 315105, 'irresponsible journalism': 445058, 'journalism coronacrisis': 467406, 'coronacrisis stayhomestaysafe': 204777, 'every time another': 286301, 'time another journalist': 896310, 'another journalist asks': 77690, 'journalist asks the': 467426, 'asks the government': 96165, 'the government about': 856505, 'government about rationing': 359814, 'about rationing food': 26044, 'rationing food and': 697811, 'food and looting': 313273, 'and looting another': 66391, 'looting another number': 503252, 'another number of': 77730, 'buy and another': 148315, 'and another number': 58165, 'number of poorer': 576974, 'of poorer famillies': 588225, 'poorer famillies will': 664351, 'famillies will be': 297542, 'will be step': 992698, 'be step closer': 117365, 'step closer to': 799520, 'closer to going': 183517, 'to going without': 906904, 'going without enough': 355817, 'without enough food': 1002614, 'enough food irresponsible': 277400, 'food irresponsible journalism': 315106, 'irresponsible journalism coronacrisis': 445059, 'journalism coronacrisis stayhomestaysafe': 467407, 'standtogether': 793857, 'question anybody': 693536, 'anybody ever': 80078, 'death case': 229999, 'case due': 165721, 'paper pls': 640600, 'pls stop': 661184, 'shopping standtogether': 763963, 'standtogether oneworld': 793858, 'oneworld compassion': 607576, 'compassion empathy': 191485, 'empathy solidarity': 273362, 'solidarity stoppanicbuying': 781944, 'question anybody ever': 693537, 'anybody ever heard': 80079, 'ever heard of': 285351, 'heard of death': 388119, 'of death case': 582414, 'death case due': 230000, 'case due to': 165722, 'lack of loo': 478635, 'of loo paper': 586004, 'loo paper pls': 502157, 'paper pls stop': 640601, 'pls stop panic': 661185, 'panic shopping standtogether': 638588, 'shopping standtogether oneworld': 763964, 'standtogether oneworld compassion': 793859, 'oneworld compassion empathy': 607577, 'compassion empathy solidarity': 191486, 'empathy solidarity stoppanicbuying': 273363, '19 started': 10781, 'started hitting': 794746, 'industry early': 435792, 'early with': 264755, 'survey by': 828826, 'restaurant association': 716320, 'zealand showing': 1027308, 'showing almost': 767413, 'almost one': 46717, 'one third': 607245, 'owner let': 632488, 'let staff': 487066, 'first three': 309087, 'march frank': 515368, 'covid 19 started': 213855, '19 started hitting': 10783, 'started hitting the': 794747, 'hitting the hospitality': 398598, 'hospitality industry early': 404784, 'industry early with': 435793, 'early with survey': 264756, 'with survey by': 1001099, 'survey by the': 828832, 'by the restaurant': 154426, 'the restaurant association': 865646, 'restaurant association of': 716321, 'association of new': 96971, 'new zealand showing': 559996, 'zealand showing almost': 1027309, 'showing almost one': 767414, 'almost one third': 46718, 'one third of': 607246, 'third of business': 886085, 'of business owner': 580964, 'business owner let': 144187, 'owner let staff': 632489, 'let staff go': 487067, 'staff go in': 792494, 'the first three': 855357, 'first three week': 309089, 'three week of': 894113, 'of march frank': 586207, 'spiked': 789336, '198': 12438, '817': 22792, 'have spiked': 382691, 'spiked by': 789342, 'by 186': 151561, '186 cold': 4651, 'cold amp': 185730, 'amp flu': 53813, 'flu product': 311447, 'product 198': 680824, '198 and': 12439, 'by 817': 151713, '817 according': 22793, 'online purchase in': 608825, 'purchase in the': 689507, 'in the for': 429212, 'the for toilet': 855675, 'paper have spiked': 640260, 'have spiked by': 382693, 'spiked by 186': 789343, 'by 186 cold': 151562, '186 cold amp': 4652, 'cold amp flu': 185731, 'amp flu product': 53814, 'flu product 198': 311448, 'product 198 and': 680825, '198 and hand': 12440, 'hand sanitizers glove': 375697, 'sanitizers glove mask': 736293, 'glove mask by': 352771, 'mask by 817': 518503, 'by 817 according': 151714, '817 according to': 22794, 'favorite daily': 300507, 'daily read': 224767, 'read with': 700667, 'their take': 874942, 'on via': 605044, 'my favorite daily': 548269, 'favorite daily read': 300508, 'daily read with': 224768, 'read with their': 700668, 'with their take': 1001603, 'their take on': 874944, 'take on via': 832412, 'croaking': 218820, 'hoarded everything': 398938, 'could carry': 208989, 'carry is': 165098, 'is croaking': 446948, 'croaking from': 218821, 'world better': 1009358, 'better place': 128409, 'hope everyone who': 403464, 'everyone who went': 287610, 'supermarket and hoarded': 819002, 'and hoarded everything': 64638, 'hoarded everything they': 398939, 'everything they could': 288048, 'they could carry': 881818, 'could carry is': 208990, 'carry is croaking': 165099, 'is croaking from': 446949, 'croaking from covid': 218822, 'would make this': 1012027, 'make this world': 510655, 'this world better': 891504, 'world better place': 1009360, 'melting': 527986, 'that melting': 845138, 'melting pot': 527989, 'pot going': 666882, 'going canada': 355076, 'canada racism': 160540, 'how that melting': 408793, 'that melting pot': 845139, 'melting pot going': 527990, 'pot going canada': 666883, 'going canada racism': 355077, 'didiza said': 240964, 'said all': 730957, 'firm that': 308427, 'that formed': 843946, 'formed part': 329609, 'production chain': 681963, 'would remain': 1012181, 'agriculture and rural': 38934, 'thoko didiza said': 891705, 'didiza said all': 240965, 'said all food': 730959, 'all food retailer': 42821, 'food retailer and': 316221, 'retailer and firm': 718965, 'and firm that': 62926, 'firm that formed': 308429, 'that formed part': 843947, 'formed part of': 329610, 'the food production': 855590, 'food production chain': 316041, 'production chain would': 681964, 'chain would remain': 171274, 'would remain open': 1012182, 'remain open to': 709827, 'open to ensure': 612593, 'of food remains': 583761, 'acrylic': 29564, 'etsyshop': 283190, 'there just': 878679, 'promote my': 683784, 'my etsy': 548112, 'etsy shop': 283187, 'shop hope': 760289, 'these piece': 880486, 'piece art': 656271, 'art acrylic': 94131, 'acrylic painting': 29567, 'painting and': 634313, 'and lowered': 66461, 'lowered them': 506088, 'more reasonable': 540195, 'reasonable for': 703095, 'affected financially': 34357, 'financially by': 306665, '19 etsyshop': 6849, 'hi there just': 394751, 'there just want': 878683, 'want to promote': 966090, 'to promote my': 912253, 'promote my etsy': 683785, 'my etsy shop': 548113, 'etsy shop hope': 283189, 'shop hope you': 760291, 'hope you guy': 403799, 'guy are willing': 368910, 'willing to check': 995465, 'it out all': 460172, 'out all of': 625603, 'of these piece': 591852, 'these piece art': 880487, 'piece art acrylic': 656272, 'art acrylic painting': 94132, 'acrylic painting and': 29568, 'painting and lowered': 634314, 'and lowered them': 66463, 'lowered them from': 506089, 'them from their': 875756, 'from their original': 337946, 'original price to': 619582, 'be more reasonable': 115991, 'more reasonable for': 540196, 'reasonable for those': 703096, 'those affected financially': 891779, 'affected financially by': 34358, 'financially by covid': 306666, 'covid 19 etsyshop': 213042, 'keyworkerheroes': 473590, 'helpnhs': 391612, 'out much': 626588, 'can every': 158264, 'cleaner trolley': 180861, 'trolley person': 932459, 'person are': 652317, 'want stayhomesavelives': 965931, 'stayhomesavelives keyworkerheroes': 798406, 'keyworkerheroes helpnhs': 473593, 'you we will': 1022208, 'will keep on': 993895, 'keep on working': 471712, 'on working hard': 605375, 'working hard and': 1008678, 'hard and put': 377862, 'and put out': 69813, 'put out much': 690754, 'out much stock': 626591, 'much stock we': 545324, 'stock we can': 803157, 'we can every': 970943, 'can every supermarket': 158265, 'every supermarket staff': 286268, 'staff cleaner trolley': 792324, 'cleaner trolley person': 180862, 'trolley person are': 932460, 'person are risking': 652319, 'life so you': 489054, 'can have the': 158588, 'have the product': 383014, 'the product and': 864583, 'product and food': 680885, 'and food you': 63110, 'food you want': 317725, 'you want stayhomesavelives': 1022155, 'want stayhomesavelives keyworkerheroes': 965932, 'stayhomesavelives keyworkerheroes helpnhs': 798407, 'market look': 516694, 'pandemic analyst': 634856, 'thinking restaurant': 885986, 'restaurant will': 716805, 'experience spike': 291482, 'sale human': 732284, 'human crave': 410477, 'crave interaction': 215165, 'interaction and': 441229, 'will replace': 994654, 'replace in': 711583, 'person shopping': 652598, 'the consumer market': 851559, 'consumer market look': 198101, 'market look like': 516695, 'look like after': 502457, 'like after this': 489731, 'this pandemic analyst': 889366, 'pandemic analyst are': 634857, 'analyst are thinking': 57107, 'are thinking restaurant': 91046, 'thinking restaurant will': 885987, 'restaurant will be': 716806, 'to experience spike': 905460, 'experience spike in': 291483, 'spike in sale': 789310, 'in sale human': 427656, 'sale human crave': 732285, 'human crave interaction': 410478, 'crave interaction and': 215166, 'interaction and online': 441231, 'shopping will replace': 764417, 'will replace in': 994655, 'replace in person': 711584, 'in person shopping': 426640, 'person shopping even': 652600, 'inhabitant': 438418, 'day walmart': 228660, 'and inhabitant': 65234, 'inhabitant seem': 438421, 'have developed': 380251, 'to initial': 908393, 'initial consumer': 438522, 'panic inadequate': 638207, 'inadequate market': 431204, 'market response': 516998, 'general idiocy': 345359, 'idiocy corona': 413427, 'corona beer': 203821, 'beer is': 122473, 'only alcoholic': 610050, 'beverage available': 128990, 'may god': 521215, 'god save': 354796, 'quarantine day walmart': 692137, 'day walmart employee': 228661, 'walmart employee and': 965319, 'employee and inhabitant': 273565, 'and inhabitant seem': 65235, 'inhabitant seem to': 438422, 'to have developed': 907230, 'have developed an': 380252, 'developed an immunity': 239679, 'an immunity to': 56180, 'immunity to covid': 417440, 'due to initial': 261831, 'to initial consumer': 908394, 'initial consumer panic': 438523, 'consumer panic inadequate': 198331, 'panic inadequate market': 638208, 'inadequate market response': 431205, 'market response and': 516999, 'response and general': 715618, 'and general idiocy': 63510, 'general idiocy corona': 345360, 'idiocy corona beer': 413428, 'corona beer is': 203823, 'beer is now': 122475, 'now the only': 576055, 'the only alcoholic': 862286, 'only alcoholic beverage': 610051, 'alcoholic beverage available': 41206, 'beverage available on': 128991, 'available on store': 104534, 'on store shelf': 603700, 'store shelf may': 810088, 'shelf may god': 757312, 'may god save': 521219, 'god save all': 354797, 'couponers': 211773, 'vibing': 956404, 'those extreme': 891980, 'extreme couponers': 293789, 'couponers who': 211774, 'food must': 315490, 'be vibing': 117989, 'vibing so': 956405, 'hard rn': 378009, 'those extreme couponers': 891981, 'extreme couponers who': 293790, 'couponers who stock': 211775, 'who stock up': 989685, 'and food must': 63070, 'food must be': 315491, 'must be vibing': 546558, 'be vibing so': 117990, 'vibing so hard': 956406, 'so hard rn': 777253, 'cracking': 214740, 'sleaze': 773738, 'upcharging': 946778, 'general cracking': 345309, 'cracking down': 214741, 'some shady': 783835, 'shady sleaze': 754354, 'sleaze bag': 773739, 'bag upcharging': 108442, 'upcharging hand': 946779, 'sanitizers by': 736239, 'by massive': 153183, 'massive margin': 520057, 'margin customer': 515620, 'customer fined': 222377, 'fined them': 307763, 'out took': 627727, 'of receipt': 588814, 'receipt and': 703396, 'store price': 809645, 'price michigan': 675230, 'michigan pricegouging': 530359, 'attorney general cracking': 102630, 'general cracking down': 345310, 'cracking down on': 214742, 'down on some': 257036, 'on some shady': 603569, 'some shady sleaze': 783836, 'shady sleaze bag': 754355, 'sleaze bag upcharging': 773740, 'bag upcharging hand': 108443, 'upcharging hand sanitizers': 946780, 'hand sanitizers by': 375685, 'sanitizers by massive': 736241, 'by massive margin': 153184, 'massive margin customer': 520058, 'margin customer fined': 515621, 'customer fined them': 222378, 'fined them out': 307764, 'them out took': 876136, 'out took photo': 627728, 'photo of receipt': 655210, 'of receipt and': 588815, 'receipt and store': 703398, 'and store price': 72513, 'store price michigan': 809647, 'price michigan pricegouging': 675231, 'logic behind': 500645, 'behind suspending': 124702, 'doesn this': 251977, 'do who': 250537, 'understand the logic': 940762, 'the logic behind': 859657, 'logic behind suspending': 500646, 'behind suspending online': 124703, 'australia doesn this': 103267, 'doesn this mean': 251978, 'this mean more': 888812, 'are shopping in': 90060, 'and spreading and': 72153, 'spreading and what': 790926, 'are people supposed': 89054, 'to do who': 904591, 'do who cannot': 250538, 'job done': 465800, 'can member': 158992, 'representative who': 712926, 'who hearing': 988980, 'hearing are': 388194, 'in session': 427825, 'session agree': 753266, 'store worker police': 811561, 'worker police officer': 1007601, 'officer and nurse': 595628, 'nurse can come': 577234, 'can come into': 157934, 'into work to': 443307, 'work to get': 1005888, 'get the job': 348258, 'the job done': 858656, 'job done right': 465801, 'done right now': 254992, 'so can member': 776718, 'can member of': 158993, 'the house of': 857619, 'of representative who': 588951, 'representative who hearing': 712927, 'who hearing are': 988981, 'hearing are afraid': 388195, 'afraid of catching': 34995, 'of catching virus': 581211, 'catching virus in': 167129, 'virus in session': 958328, 'in session agree': 427826, 'infested': 436933, 'around from': 93297, 'from malware': 336318, 'malware infested': 511898, 'infested tracker': 436934, 'tracker to': 928302, 'to fraudulent': 906227, 'fraudulent cure': 331456, 'gouger check': 359211, 'info with': 437617, 'lot of going': 504196, 'of going around': 584188, 'going around from': 355026, 'around from malware': 93299, 'from malware infested': 336319, 'malware infested tracker': 511899, 'infested tracker to': 436935, 'tracker to fraudulent': 928303, 'to fraudulent cure': 906230, 'fraudulent cure to': 331457, 'cure to price': 220835, 'to price gouger': 912119, 'price gouger check': 674241, 'gouger check out': 359212, 'check out consumer': 174541, 'out consumer alert': 625876, 'alert for more': 41418, 'for more please': 323590, 'more please share': 540085, 'share this info': 755284, 'this info with': 888105, 'info with your': 437619, 'with your loved': 1002212, 'nurse nursing': 577429, 'assistant care': 96776, 'driver binmen': 259465, 'binmen woman': 131111, 'woman pharmacist': 1003573, 'pharmacist personal': 654167, 'personal assistant': 652789, 'assistant assisted': 96772, 'living service': 496446, 'forgotten thankyou': 329460, 'thankyou stayathome': 842351, 'doctor nurse nursing': 251027, 'nurse nursing assistant': 577430, 'nursing assistant care': 577599, 'assistant care worker': 96777, 'care worker shop': 164303, 'worker shop worker': 1007768, 'taxi driver binmen': 835153, 'driver binmen woman': 259466, 'binmen woman pharmacist': 131112, 'woman pharmacist personal': 1003574, 'pharmacist personal assistant': 654168, 'personal assistant assisted': 652790, 'assistant assisted living': 96773, 'assisted living service': 96816, 'living service and': 496447, 'service and anyone': 752070, 'and anyone have': 58226, 'anyone have forgotten': 80351, 'have forgotten thankyou': 380694, 'forgotten thankyou stayathome': 329461, 'thankyou stayathome staysafe': 842352, 'lower usdollar': 506045, 'usdollar hold': 948995, 'hold up': 400040, 'amid worry': 52766, 'worry gld': 1010717, 'gld oil': 351658, 'gold price lower': 355964, 'price lower usdollar': 675130, 'lower usdollar hold': 506046, 'usdollar hold up': 948996, 'hold up amid': 400041, 'up amid worry': 944283, 'amid worry gld': 52767, 'worry gld oil': 1010718, 'unl': 942552, 'nuforne': 576774, 'nubiz': 576752, 'confidence fell': 193863, 'in nebraska': 425717, 'nebraska during': 553902, 'during march': 262788, 'decline appeared': 231302, 'appeared to': 82153, 'be related': 116755, 'with 24': 996988, '24 of': 15660, 'of responding': 589002, 'responding business': 715560, 'and 11': 57357, '11 of': 2565, 'responding household': 715566, 'household specifically': 406942, 'specifically mentioning': 788287, 'mentioning the': 528858, 'virus unl': 958960, 'unl nuforne': 942553, 'nuforne nubiz': 576775, 'business confidence fell': 143565, 'confidence fell in': 193864, 'fell in nebraska': 303205, 'in nebraska during': 425719, 'nebraska during march': 553903, 'during march 2020': 262789, '2020 the decline': 14638, 'the decline appeared': 853005, 'decline appeared to': 231303, 'appeared to be': 82154, 'to be related': 901495, 'be related to': 116756, 'pandemic with 24': 637022, 'with 24 of': 996989, '24 of responding': 15661, 'of responding business': 589003, 'responding business and': 715561, 'business and 11': 143285, 'and 11 of': 57358, '11 of responding': 2567, 'of responding household': 589004, 'responding household specifically': 715567, 'household specifically mentioning': 406943, 'specifically mentioning the': 788288, 'mentioning the virus': 528859, 'the virus unl': 870911, 'virus unl nuforne': 958961, 'unl nuforne nubiz': 942554, 'thanksgiving': 842293, 'is longer': 449436, 'eye can': 294012, 'see and': 744904, 'and reminds': 70226, 'of thanksgiving': 590703, 'thanksgiving day': 842296, 'day store': 228411, 'opening socialdistancing': 612903, 'easter passover': 265476, 'supermarket that we': 823202, 'are in right': 87430, 'now it is': 575119, 'it is longer': 459004, 'is longer than': 449437, 'longer than the': 502077, 'than the eye': 841233, 'the eye can': 854786, 'eye can see': 294013, 'can see and': 159531, 'see and reminds': 744907, 'and reminds me': 70228, 'me of thanksgiving': 523246, 'of thanksgiving day': 590704, 'thanksgiving day store': 842297, 'day store opening': 228414, 'store opening socialdistancing': 809283, 'opening socialdistancing easter': 612904, 'socialdistancing easter passover': 780343, 'shaped': 754863, 'gold shaped': 356001, 'shaped bounce': 754864, 'bounce are': 136799, 'in pm': 426809, 'pm yet': 662027, 'yet socialdistance': 1016232, 'day gold shaped': 227683, 'gold shaped bounce': 356002, 'shaped bounce are': 754865, 'bounce are you': 136800, 'you in pm': 1019313, 'in pm yet': 426810, 'pm yet socialdistance': 662028, 'yet socialdistance border': 1016233, 'kplccustomercare': 477593, 'moreover': 541057, 'hydrogeneration': 411973, 'dam': 225165, 'kplccustomercare in': 477594, 'rebound during': 703304, '19 adversity': 4819, 'adversity why': 33140, 'cannot you': 162239, 'you lower': 1019737, 'power rate': 667671, 'all kenyan': 43308, 'kenyan moreover': 472978, 'moreover the': 541070, 'the hydrogeneration': 857780, 'hydrogeneration dam': 411974, 'dam are': 225166, 'global petroleum': 352128, 'petroleum price': 653825, 'to below': 901753, 'below usd': 126767, 'usd 30': 948901, 'kplccustomercare in the': 477595, 'spirit of supporting': 789495, 'of supporting the': 590519, 'supporting the economy': 827208, 'economy to rebound': 268292, 'to rebound during': 912901, 'rebound during this': 703305, 'covid 19 adversity': 212585, '19 adversity why': 4820, 'adversity why cannot': 33141, 'why cannot you': 990878, 'cannot you lower': 162241, 'you lower power': 1019738, 'lower power rate': 505946, 'power rate for': 667672, 'rate for all': 697223, 'for all kenyan': 319142, 'all kenyan moreover': 43309, 'kenyan moreover the': 472979, 'moreover the hydrogeneration': 541071, 'the hydrogeneration dam': 857781, 'hydrogeneration dam are': 411975, 'dam are full': 225167, 'full of water': 340768, 'of water and': 592934, 'water and global': 968865, 'and global petroleum': 63699, 'global petroleum price': 352129, 'petroleum price have': 653831, 'price have come': 674418, 'have come to': 380032, 'come to below': 187555, 'to below usd': 901757, 'below usd 30': 126768, 'usd 30 per': 948902, 'incriminated': 433941, 'scapegoat': 740751, 'escaped': 280321, 'miraculously': 533931, 'emerges': 273085, 'great cover': 362595, 'up gt': 945045, 'gt the': 367637, 'the incriminated': 858098, 'incriminated supermarket': 433942, 'than scapegoat': 841115, 'scapegoat to': 740759, 'that escaped': 843722, 'escaped from': 280322, 'from secret': 337198, 'secret military': 743923, 'military lab': 531475, 'lab it': 478273, 'started there': 794856, 'were miraculously': 979881, 'miraculously ready': 533934, 'they accuse': 881091, 'accuse the': 28933, 'real info': 701226, 'info emerges': 437471, 'emerges ever': 273086, 'the great cover': 856717, 'great cover up': 362596, 'cover up gt': 212312, 'up gt the': 945047, 'gt the incriminated': 367638, 'the incriminated supermarket': 858099, 'incriminated supermarket is': 433943, 'supermarket is nothing': 821107, 'is nothing more': 450239, 'more than scapegoat': 540671, 'than scapegoat to': 841116, 'scapegoat to hide': 740760, 'hide the fact': 394845, 'fact that escaped': 295795, 'that escaped from': 843723, 'escaped from secret': 280323, 'from secret military': 337199, 'secret military lab': 743924, 'military lab it': 531476, 'lab it started': 478274, 'it started there': 461227, 'started there the': 794857, 'there the were': 879153, 'the were miraculously': 871390, 'were miraculously ready': 979882, 'miraculously ready for': 533935, 'ready for pandemic': 700867, 'for pandemic they': 324363, 'pandemic they accuse': 636731, 'they accuse the': 881092, 'accuse the usa': 28934, 'usa no real': 948703, 'no real info': 565280, 'real info emerges': 701227, 'info emerges ever': 437472, 'clark': 180105, 'money when': 537161, 'online clark': 608008, 'clark howard': 180108, 'how to save': 409077, 'save money when': 737589, 'money when grocery': 537162, 'shopping online clark': 763420, 'online clark howard': 608009, 'orchestrated': 617962, 'lnk': 497220, 'real contagion': 701083, 'contagion and': 200396, 'watch them': 968560, 'them play': 876163, 'play the': 659227, 'record day': 704933, 'and night': 67589, 'night because': 562963, 'because cannot': 118982, 'then staggering': 877556, 'of damage': 582333, 'damage unless': 225244, 'unless the': 942641, 'system of': 831261, 'air because': 39688, 'of orchestrated': 587326, 'orchestrated fear': 617963, 'fear simple': 301329, 'simple lnk': 770053, 'fear is the': 301175, 'is the real': 452914, 'the real contagion': 865209, 'real contagion and': 701084, 'contagion and watch': 200398, 'and watch them': 75226, 'watch them play': 968561, 'them play the': 876165, 'play the record': 659229, 'the record day': 865361, 'record day and': 704934, 'day and night': 227272, 'and night because': 67590, 'night because cannot': 562964, 'because cannot do': 118985, 'cannot do more': 161760, 'do more then': 249605, 'more then staggering': 540723, 'then staggering amount': 877557, 'amount of damage': 53219, 'of damage unless': 582335, 'damage unless the': 225245, 'unless the immune': 942642, 'immune system of': 417347, 'system of people': 831262, 'of people is': 587932, 'people is off': 648523, 'is off the': 450408, 'off the air': 594228, 'the air because': 848481, 'air because of': 39689, 'because of orchestrated': 119383, 'of orchestrated fear': 587327, 'orchestrated fear simple': 617964, 'fear simple lnk': 301330, 'pummels': 689012, 'pummels price': 689014, 'price nationwide': 675305, 'nationwide say': 552752, 'pummels price nationwide': 689015, 'price nationwide say': 675306, 'fortnight into': 329837, 'london empty': 501056, 'at bank': 98084, 'bank think': 110247, 'the respite': 865611, 'respite we': 715270, 'have from': 380724, 'people weren': 650231, 'weren hoarding': 980399, 'fortnight into this': 329838, 'into this mess': 443218, 'this mess and': 888833, 'mess and look': 529220, 'at the state': 101107, 'state of london': 795810, 'of london empty': 585987, 'london empty supermarket': 501057, 'empty supermarket long': 275162, 'supermarket long queue': 821385, 'long queue at': 501577, 'queue at bank': 693882, 'at bank think': 98086, 'bank think of': 110248, 'of the respite': 591408, 'the respite we': 865612, 'respite we have': 715271, 'we have from': 971823, 'have from this': 380725, 'from this thing': 338012, 'this thing if': 890566, 'thing if people': 884422, 'if people weren': 414635, 'people weren hoarding': 650232, 'weren hoarding stophoarding': 980400, 'hoarding stophoarding panicbuyinguk': 399548, 'chain worker': 171261, 'in overtime': 426391, 'overtime supplychain': 631643, 'supplychain trucker': 826239, 'trucker pandemic': 932942, 'pandemic foodsupplychain': 635444, 'foodsupplychain scm': 318215, 'scm logistics': 742288, 'logistics trucking': 500811, 'trucking grocery': 932987, 'grocery toiletpaper': 366067, '19 supply chain': 10968, 'supply chain worker': 825070, 'chain worker are': 171262, 'worker are putting': 1006419, 'are putting in': 89353, 'putting in overtime': 691143, 'in overtime supplychain': 426392, 'overtime supplychain trucker': 631644, 'supplychain trucker pandemic': 826240, 'trucker pandemic foodsupplychain': 932943, 'pandemic foodsupplychain scm': 635445, 'foodsupplychain scm logistics': 318216, 'scm logistics trucking': 742289, 'logistics trucking grocery': 500812, 'trucking grocery toiletpaper': 932988, 'grocery toiletpaper tp': 366069, 'doctor our': 251064, 'nurse all': 577180, 'patient they': 644274, 'are our doctor': 88859, 'our doctor our': 622792, 'doctor our nurse': 251065, 'our nurse all': 624103, 'nurse all healthcare': 577182, 'for our covid': 324223, '19 patient they': 9595, 'patient they are': 644275, 'are the supermarket': 90916, 'employee who ensure': 274425, 'who ensure that': 988702, 'get our basic': 347722, 'our basic necessity': 622168, 'saket': 731882, 'lockdown select': 499892, 'select city': 747459, 'city mall': 179251, 'in saket': 427640, 'saket not': 731883, 'not letting': 570380, 'letting people': 487434, 'in even': 422664, 'it house': 458643, 'house one': 406434, 'biggest modern': 130278, 'modern bazaar': 535375, 'bazaar grocery': 113017, 'the direction': 853312, 'definitely people': 232379, 'lockdown select city': 499893, 'select city mall': 747460, 'city mall in': 179252, 'mall in saket': 511792, 'in saket not': 427641, 'saket not letting': 731884, 'not letting people': 570383, 'letting people in': 487436, 'people in even': 648373, 'in even though': 422666, 'though it house': 892839, 'it house one': 458644, 'house one of': 406435, 'the biggest modern': 849665, 'biggest modern bazaar': 130279, 'modern bazaar grocery': 535376, 'bazaar grocery store': 113018, 'this is against': 888167, 'is against the': 445420, 'against the direction': 37653, 'the direction and': 853313, 'direction and definitely': 243442, 'and definitely people': 61058, 'definitely people will': 232380, 'people will panic': 650402, 'fiirreedduh': 305268, 'squirt': 791573, 'humberfloob': 410806, 'catinthehat': 167316, 'mrhumberfloob': 544435, 'sanitizepeople': 734272, 'wish wa': 996844, 'bos so': 135695, 'can scream': 159525, 'scream your': 742643, 'your fiirreedduh': 1023857, 'fiirreedduh after': 305269, 'people touch': 649992, 'and squirt': 72173, 'squirt shit': 791578, 'shit ton': 759276, 'coronavirus like': 206228, 'like mr': 490804, 'mr humberfloob': 544368, 'humberfloob catinthehat': 410807, 'catinthehat mrhumberfloob': 167317, 'mrhumberfloob sanitizepeople': 544436, 'wish wa the': 996846, 'wa the bos': 963442, 'the bos so': 849884, 'bos so can': 135696, 'so can scream': 776723, 'can scream your': 159526, 'scream your fiirreedduh': 742644, 'your fiirreedduh after': 1023858, 'fiirreedduh after people': 305270, 'after people touch': 36036, 'people touch my': 649993, 'touch my hand': 926512, 'hand and squirt': 374777, 'and squirt shit': 72174, 'squirt shit ton': 791579, 'shit ton of': 759277, 'sanitizer during this': 734803, 'during this coronavirus': 263271, 'this coronavirus like': 886898, 'coronavirus like mr': 206229, 'like mr humberfloob': 490805, 'mr humberfloob catinthehat': 544369, 'humberfloob catinthehat mrhumberfloob': 410808, 'catinthehat mrhumberfloob sanitizepeople': 167318, 'donating grocery': 254464, 'card your': 163708, 'gift will': 350044, 'provide emergency': 686271, 'detail see': 239245, '19 donation': 6633, 'donation page': 254664, 'the many way': 860055, 'many way you': 514865, 'can love the': 158911, 'love the vulnerable': 504811, 'the vulnerable during': 870980, 'vulnerable during this': 960942, 'crisis is by': 217561, 'is by donating': 446335, 'by donating grocery': 152403, 'donating grocery store': 254465, 'gift card your': 349959, 'card your gift': 163709, 'your gift will': 1024044, 'gift will provide': 350045, 'will provide emergency': 994511, 'provide emergency food': 686272, 'emergency food assistance': 272700, 'food assistance for': 313426, 'assistance for family': 96693, 'for family in': 321389, 'need for more': 554855, 'more detail see': 539024, 'detail see our': 239246, 'see our covid': 745524, 'covid 19 donation': 212977, '19 donation page': 6634, 'expiry': 292090, 'under stayathome': 940260, 'ridiculous expiry': 721538, 'expiry date': 292091, 're expiring': 698651, 'expiring data': 292088, 'data customerexperience': 226188, 'customerexperience suck': 223141, 'under stayathome lockdownsa': 940261, 'your ridiculous expiry': 1025625, 'ridiculous expiry date': 721539, 'expiry date datamustfall': 292092, 'you re expiring': 1020617, 're expiring data': 698652, 'expiring data customerexperience': 292089, 'data customerexperience suck': 226189, 'trumpy': 934214, 'neglect': 556875, 'this lethal': 888611, 'lethal covid': 487234, '19 worldwide': 12201, 'worldwide trumpy': 1010436, 'trumpy keep': 934215, 'keep calling': 471372, 'virus panic': 958611, 'people neglect': 648843, 'neglect health': 556878, 'health protocol': 386775, 'violence begin': 957541, 'begin you': 123610, 'should listen': 766196, 'listen clearly': 494675, 'clearly it': 181524, 'temporary establish': 837618, 'establish rule': 282024, 'fear of not': 301252, 'getting food or': 348985, 'or supply is': 617299, 'supply is more': 825451, 'is more dangerous': 449699, 'dangerous than this': 225784, 'than this lethal': 841315, 'this lethal covid': 888612, 'lethal covid 19': 487235, 'covid 19 worldwide': 214090, '19 worldwide trumpy': 12203, 'worldwide trumpy keep': 1010437, 'trumpy keep calling': 934216, 'keep calling it': 471374, 'calling it the': 156593, 'it the chinese': 461518, 'chinese virus panic': 177385, 'virus panic take': 958614, 'panic take over': 638662, 'take over people': 832472, 'over people neglect': 630488, 'people neglect health': 648844, 'neglect health protocol': 556879, 'health protocol and': 386776, 'protocol and violence': 685973, 'and violence begin': 74968, 'violence begin you': 957542, 'begin you should': 123611, 'you should listen': 1021203, 'should listen clearly': 766197, 'listen clearly it': 494676, 'clearly it only': 181526, 'it only temporary': 460109, 'only temporary establish': 611248, 'temporary establish rule': 837619, 'lodge': 500585, 'and victim': 74950, 'victim please': 956508, 'please lodge': 660204, 'lodge an': 500586, 'appeal authority': 82054, 'authority appeal': 103684, 'victim action': 956454, 'fraud receives': 331330, 'receives report': 703735, 'of 970': 579691, '970 00': 23690, '00 fraud': 220, 'fraud largely': 331298, 'largely due': 479852, 'scam protective': 740317, 'sanitiser that': 734025, 'never arrived': 557865, '19 and victim': 5130, 'and victim please': 74951, 'victim please lodge': 956509, 'please lodge an': 660205, 'lodge an appeal': 500587, 'an appeal authority': 55363, 'appeal authority appeal': 82055, 'authority appeal to': 103685, 'appeal to victim': 82082, 'to victim action': 918163, 'victim action fraud': 956455, 'action fraud receives': 30027, 'fraud receives report': 331331, 'receives report of': 703736, 'report of 970': 712104, 'of 970 00': 579692, '970 00 fraud': 23691, '00 fraud largely': 221, 'fraud largely due': 331299, 'largely due to': 479853, 'due to online': 261883, 'shopping scam protective': 763811, 'scam protective mask': 740318, 'protective mask hand': 685780, 'mask hand sanitiser': 518776, 'hand sanitiser that': 375249, 'sanitiser that never': 734027, 'that never arrived': 845321, 'import rising': 418666, 'buying shortage': 151022, 'shortage before': 764854, 'before over': 122996, 'to catastrophic': 902491, 'food import rising': 314914, 'import rising price': 418667, 'price and panic': 672491, 'panic buying shortage': 637884, 'buying shortage before': 151023, 'shortage before over': 764855, 'before over 20': 122997, 'people were exposed': 650203, 'exposed to catastrophic': 292892, 'to catastrophic level': 902492, 'very scared': 955503, 'scared am': 740936, 'fall within': 297111, 'age range': 37890, 'range susceptible': 696739, 'she go': 756052, 'she worry': 756484, 'me sick': 523460, 'but terrified': 147270, 'terrified she': 838501, 'very scared am': 955504, 'scared am concerned': 740937, 'am concerned about': 49970, 'concerned about my': 193164, 'about my mother': 25765, 'my mother because': 549326, 'because she work': 119555, 'large supermarket and': 479804, 'supermarket and fall': 818977, 'and fall within': 62636, 'fall within the': 297112, 'within the age': 1002427, 'the age range': 848438, 'age range susceptible': 37892, 'range susceptible to': 696740, 'susceptible to covid': 829439, '19 when she': 12024, 'when she go': 983998, 'she go to': 756054, 'work she worry': 1005714, 'she worry about': 756485, 'worry about how': 1010641, 'about how she': 25470, 'how she can': 408657, 'she can make': 755925, 'can make me': 158936, 'make me sick': 510143, 'me sick but': 523461, 'sick but terrified': 768398, 'but terrified she': 147271, 'terrified she ll': 838502, 'she ll get': 756198, 'll get it': 496787, 'newsupdate': 561133, 'flash': 310024, 'newsupdate in': 561136, 'get sense': 347965, 'how pandemic': 408476, 'effecting real': 269193, 'national association': 552416, 'of realtor': 588805, 'realtor ha': 702782, 'been conducting': 120862, 'conducting series': 193694, 'of flash': 583578, 'flash survey': 310031, 'survey aimed': 828808, 'at gauging': 98745, 'gauging consumer': 344558, 'behavior realestate': 124165, 'realestate realty': 701522, 'realty newsalert': 702805, 'newsupdate in an': 561137, 'effort to get': 269626, 'to get sense': 906586, 'get sense of': 347967, 'sense of how': 750558, 'of how pandemic': 584834, 'how pandemic is': 408477, 'pandemic is effecting': 635766, 'is effecting real': 447447, 'effecting real estate': 269194, 'estate market the': 282157, 'market the national': 517194, 'the national association': 861284, 'national association of': 552417, 'association of realtor': 96972, 'of realtor ha': 588806, 'realtor ha been': 702783, 'ha been conducting': 369754, 'been conducting series': 120863, 'conducting series of': 193695, 'series of flash': 751270, 'of flash survey': 583579, 'flash survey aimed': 310032, 'survey aimed at': 828809, 'aimed at gauging': 39568, 'at gauging consumer': 98746, 'gauging consumer behavior': 344559, 'consumer behavior realestate': 196504, 'behavior realestate realty': 124166, 'realestate realty newsalert': 701523, 'do read': 250019, 'includes quote': 431804, 'from myself': 336534, 'another disabled': 77578, 'know on': 476650, 'here not': 393390, 'to tag': 916142, 'tag them': 831772, 'having fund': 384086, 'fund is': 341439, 'is problem': 451053, 'problem especially': 679514, 'bank requiring': 110133, 'requiring id': 713528, 'id but': 412935, 'it huge': 458655, 'please do read': 659897, 'do read this': 250022, 'read this it': 700620, 'this it includes': 888519, 'it includes quote': 458765, 'includes quote from': 431805, 'quote from myself': 694993, 'from myself and': 336535, 'myself and another': 550816, 'and another disabled': 58163, 'another disabled person': 77579, 'disabled person you': 243951, 'person you know': 652759, 'you know on': 1019518, 'know on here': 476651, 'on here not': 601290, 'here not going': 393392, 'going to tag': 355735, 'to tag them': 916143, 'tag them because': 831773, 'them because not': 875465, 'sure they want': 827746, 'to be not': 901409, 'be not having': 116125, 'not having fund': 569897, 'having fund is': 384087, 'fund is problem': 341440, 'is problem especially': 451054, 'problem especially with': 679515, 'especially with food': 280669, 'with food bank': 998481, 'food bank requiring': 313626, 'bank requiring id': 110134, 'requiring id but': 713529, 'id but even': 412936, 'but even if': 145668, 'have the fund': 382988, 'the fund it': 856041, 'fund it huge': 341443, 'it huge problem': 458656, 'beware scammer': 129103, 'beware scammer use': 129105, 'scammer use fake': 740640, 'unitedagainstdementia': 942270, 'currently self': 221665, 'isolating symptomatic': 455146, 'symptomatic thinking': 830964, 'thinking how': 885917, 'support elderly': 826471, 'elderly neighbour': 270776, 'neighbour friend': 557206, 'friend ve': 333865, 'done her': 254870, 'her online': 392255, 'her agreed': 391829, 'agreed it': 38711, 'calling her': 156568, 'her daily': 391981, 'daily we': 224880, 'might even': 530967, 'even attempt': 283853, 'attempt skype': 102232, 'skype video': 773270, 'video call': 956649, 'call unitedagainstdementia': 156205, 'currently self isolating': 221666, 'self isolating symptomatic': 747739, 'isolating symptomatic thinking': 455147, 'symptomatic thinking how': 830965, 'thinking how to': 885920, 'how to support': 409094, 'to support elderly': 915925, 'support elderly neighbour': 826473, 'elderly neighbour friend': 270779, 'neighbour friend ve': 557207, 'friend ve done': 333866, 've done her': 953060, 'done her online': 254871, 'her online shopping': 392258, 'shopping for her': 762681, 'for her agreed': 322210, 'her agreed it': 391830, 'agreed it over': 38713, 'phone and calling': 654881, 'and calling her': 59431, 'calling her daily': 156569, 'her daily we': 391982, 'daily we might': 224881, 'we might even': 972370, 'might even attempt': 530968, 'even attempt skype': 283854, 'attempt skype video': 102233, 'skype video call': 773271, 'video call unitedagainstdementia': 956653, 'for nigerian': 323876, 'nigerian have': 562853, 'already emerged': 47310, 'emerged result': 272564, 'price crude': 673357, 'country main': 210879, 'budget wa': 141830, 'wa based': 961642, 'on base': 599570, 'of 57': 579628, '57 per': 20483, 'sign that life': 769222, 'that life will': 844882, 'life will become': 489215, 'will become more': 992798, 'become more difficult': 120056, 'difficult for nigerian': 242225, 'for nigerian have': 323877, 'nigerian have already': 562854, 'have already emerged': 379187, 'already emerged result': 47311, 'emerged result of': 272565, 'of the fall': 591008, 'in global crude': 423329, 'oil price crude': 597097, 'price crude oil': 673358, 'crude oil is': 219561, 'oil is the': 596912, 'is the country': 452756, 'the country main': 852115, 'country main source': 210882, 'of income the': 585070, 'income the 2020': 432474, '2020 budget wa': 14197, 'budget wa based': 141831, 'wa based on': 961644, 'based on base': 111669, 'on base price': 599573, 'base price of': 111473, 'price of 57': 675398, 'of 57 per': 579629, '57 per barrel': 20484, 'per barrel of': 650703, 'oil but the': 596660, 'but the price': 147384, 'the price fell': 864350, 'you afraid': 1016839, 'during because': 262473, 'are you afraid': 91762, 'you afraid to': 1016840, 'supermarket during because': 820047, 'during because you': 262474, 'because you could': 119865, 'not get your': 569619, 'get your grocery': 348707, 'your grocery delivered': 1024122, 'cont': 199976, 'whats your': 982855, 'your opinion': 1025085, 'opinion on': 613482, 'of qe': 588634, 'qe 2020': 691531, 'it cont': 457298, 'cont to': 199978, 'up asset': 944415, 'the liquidity': 859456, 'liquidity cause': 494127, 'cause inflation': 167612, 'inflation steep': 437247, 'in rate': 427254, 'rate resulting': 697358, 'in corporate': 421811, 'corporate default': 207263, 'default or': 232022, 'the earnings': 853824, 'earnings glut': 264908, 'glut caused': 353097, 'whats your opinion': 982856, 'your opinion on': 1025087, 'opinion on the': 613484, 'impact of qe': 417795, 'of qe 2020': 588635, 'qe 2020 will': 691532, '2020 will it': 14724, 'will it cont': 993864, 'it cont to': 457299, 'cont to prop': 199980, 'prop up asset': 684046, 'up asset price': 944416, 'asset price until': 96464, 'price until the': 677215, 'until the liquidity': 943860, 'the liquidity cause': 859457, 'liquidity cause inflation': 494128, 'cause inflation steep': 167614, 'inflation steep rise': 437248, 'rise in rate': 722902, 'in rate resulting': 427255, 'rate resulting in': 697359, 'resulting in corporate': 717703, 'in corporate default': 421812, 'corporate default or': 207264, 'default or will': 232023, 'or will the': 617811, 'will the earnings': 995136, 'the earnings glut': 853825, 'earnings glut caused': 264909, 'glut caused by': 353098, 'call volume': 156218, 'volume to': 960175, 'our helpline': 623416, 'helpline have': 391591, 'increased which': 433536, 'is leading': 449254, 'to longer': 909427, 'longer wait': 502105, 'please bear': 659717, 'bear with': 118427, 'date information': 226662, 'right see': 722261, 'website faq': 975258, 'call volume to': 156219, 'volume to our': 960176, 'to our helpline': 911187, 'our helpline have': 623417, 'helpline have increased': 391592, 'have increased which': 381072, 'increased which is': 433537, 'which is leading': 986024, 'is leading to': 449256, 'leading to longer': 483763, 'to longer wait': 909429, 'longer wait time': 502106, 'wait time please': 964220, 'time please bear': 897491, 'please bear with': 659718, 'bear with we': 118428, 'with we are': 1002040, 'are sorry if': 90309, 'sorry if you': 786058, 'to date information': 903929, 'date information on': 226664, '19 and your': 5144, 'and your consumer': 76069, 'your consumer right': 1023326, 'consumer right see': 198827, 'right see our': 722262, 'see our website': 745534, 'our website faq': 625337, 'onsite': 611555, 'cookathome': 202797, 'sorry restaurant': 786073, 'restaurant owner': 716622, 'owner it': 632486, 'food preparation': 315905, 'preparation is': 670042, 'not free': 569530, 'free people': 332056, 'tested demand': 839286, 'demand test': 236319, 'then reopen': 877476, 'reopen same': 711362, 'same go': 733084, 'for onsite': 324127, 'onsite prepared': 611556, 'prepared food': 670183, 'supermarket cookathome': 819780, 'sorry restaurant owner': 786074, 'restaurant owner it': 716625, 'owner it time': 632487, 'time to close': 897965, 'close down your': 182618, 'down your worker': 257537, 'your worker and': 1026381, 'worker and food': 1006295, 'and food preparation': 63078, 'food preparation is': 315906, 'preparation is not': 670043, 'is not free': 450090, 'not free people': 569532, 'free people haven': 332057, 'people haven been': 648214, 'been tested demand': 122151, 'tested demand test': 839287, 'demand test for': 236320, 'test for food': 839001, 'for food worker': 321655, 'food worker then': 317678, 'worker then reopen': 1007952, 'then reopen same': 877477, 'reopen same go': 711363, 'same go for': 733085, 'go for onsite': 353568, 'for onsite prepared': 324128, 'onsite prepared food': 611557, 'prepared food at': 670184, 'food at supermarket': 313452, 'at supermarket cookathome': 100710, 'deceiving': 230731, 'denies': 236980, 'chandler prepper': 171866, 'prepper retail': 670385, 'owner accused': 632362, 'of deceiving': 582432, 'deceiving public': 230732, 'public with': 688488, 'with immunity': 998946, 'immunity pill': 417420, 'pill denies': 656656, 'denies allegation': 236981, 'allegation tell': 45645, 'tell ag': 836898, 'ag to': 36844, 'to kiss': 908960, 'kiss his': 475455, 'as see': 94805, 'chandler prepper retail': 171867, 'prepper retail store': 670386, 'retail store owner': 718679, 'store owner accused': 809422, 'owner accused of': 632363, 'accused of deceiving': 28946, 'of deceiving public': 582433, 'deceiving public with': 230733, 'public with immunity': 688489, 'with immunity pill': 998947, 'immunity pill denies': 417421, 'pill denies allegation': 656657, 'denies allegation tell': 236983, 'allegation tell ag': 45646, 'tell ag to': 836899, 'ag to kiss': 36845, 'to kiss his': 908962, 'kiss his as': 475456, 'his as see': 397213, 'as see my': 94806, 'see my story': 745462, 'my story here': 550236, 'gag': 342719, 'this use': 890947, 'be gag': 114991, 'gag gift': 342720, 'gift now': 349999, 'actually valued': 31004, 'valued gift': 952259, 'gift toiletpaper': 350037, 'toiletpaper genius': 922027, 'genius gift': 345777, 'gift gift': 349985, 'gift funny': 349981, 'funny corona': 341716, 'this use to': 890948, 'to be gag': 901273, 'be gag gift': 114992, 'gag gift now': 342721, 'gift now it': 350000, 'now it actually': 575104, 'it actually valued': 456266, 'actually valued gift': 31005, 'valued gift toiletpaper': 952260, 'gift toiletpaper genius': 350038, 'toiletpaper genius gift': 922028, 'genius gift gift': 345778, 'gift gift funny': 349986, 'gift funny corona': 349982, 'test came': 838950, 'day gov': 227687, 'baker issued': 108806, 'issued new': 456076, 'health order': 386716, 'order related': 618538, 'including temporary': 432174, 'temporary ban': 837582, 'on reusable': 603186, 'the positive test': 864064, 'positive test came': 665451, 'test came on': 838951, 'same day gov': 733028, 'day gov charlie': 227688, 'charlie baker issued': 173752, 'baker issued new': 108807, 'issued new public': 456077, 'new public health': 559375, 'public health order': 688079, 'health order related': 386720, 'order related to': 618539, 'related to grocery': 708604, 'store including temporary': 808421, 'including temporary ban': 432175, 'temporary ban on': 837583, 'ban on reusable': 109233, 'on reusable bag': 603187, 'shopsmall': 764562, 'sign share': 769207, 'petition thank': 653630, 'panicbuying shopsmall': 639047, 'shopsmall socialdistancing': 764565, 'socialdistancing prosecute': 780623, 'prosecute retailer': 684623, 'extortionately anytime': 293408, 'anytime especially': 80967, 'crisis sign': 218047, 'please take moment': 660634, 'moment to sign': 536092, 'to sign share': 914638, 'sign share this': 769209, 'share this petition': 755290, 'this petition thank': 889546, 'petition thank you': 653631, 'you coronacrisis panicbuying': 1018056, 'coronacrisis panicbuying shopsmall': 204693, 'panicbuying shopsmall socialdistancing': 639048, 'shopsmall socialdistancing prosecute': 764566, 'socialdistancing prosecute retailer': 780624, 'prosecute retailer that': 684624, 'retailer that increase': 719358, 'price extortionately anytime': 673747, 'extortionately anytime especially': 293409, 'anytime especially in': 80968, 'especially in crisis': 280524, 'in crisis sign': 421893, 'crisis sign the': 218048, 'beginnerin': 123612, 'japanese symbol': 464802, 'symbol for': 830764, 'for beginnerin': 319621, 'beginnerin germany': 123613, 'japanese symbol for': 464803, 'symbol for beginnerin': 830765, 'for beginnerin germany': 319622, 'beginnerin germany at': 123614, 'cov2': 212141, 'tract': 928385, 'or sars': 616962, 'sars cov2': 736808, 'cov2 infect': 212146, 'infect respiratory': 436507, 'respiratory virus': 715261, 'virus enters': 958157, 'enters through': 278497, 'your respiratory': 1025593, 'respiratory organ': 715248, 'organ the': 619205, 'respiratory system': 715257, 'like super': 491260, 'super cool': 818488, 'cool supermarket': 203049, 'summer for': 817977, 'virus some': 958769, 'some stay': 783942, 'upper tract': 947700, 'tract while': 928386, 'some go': 782955, 'the lower': 859793, 'lower one': 505925, 'one fyi': 606336, 'fyi sars': 342640, 'cov2 can': 212142, '19 or sars': 9026, 'or sars cov2': 616963, 'sars cov2 infect': 736811, 'cov2 infect respiratory': 212147, 'infect respiratory virus': 436508, 'respiratory virus enters': 715262, 'virus enters through': 958158, 'enters through your': 278498, 'through your respiratory': 894925, 'your respiratory organ': 1025594, 'respiratory organ the': 715249, 'organ the respiratory': 619206, 'the respiratory system': 865610, 'respiratory system is': 715258, 'system is like': 831223, 'is like super': 449331, 'like super cool': 491261, 'super cool supermarket': 818490, 'cool supermarket in': 203050, 'supermarket in summer': 820985, 'in summer for': 428541, 'summer for virus': 817979, 'for virus some': 327578, 'virus some stay': 958772, 'some stay in': 783943, 'in the upper': 429638, 'the upper tract': 870506, 'upper tract while': 947701, 'tract while some': 928387, 'while some go': 987297, 'some go into': 782956, 'into the lower': 443144, 'the lower one': 859798, 'lower one fyi': 505926, 'one fyi sars': 606337, 'fyi sars cov2': 342641, 'sars cov2 can': 736809, 'cov2 can do': 212143, 'can do both': 158097, 'shiva': 759391, 'checker': 174788, 'shiva if': 759392, 'if church': 413959, 'church gathering': 178365, 'gathering represent': 344501, 'represent promotes': 712874, 'promotes the': 683832, 'any spar': 79841, 'spar or': 787456, 'or checker': 614708, 'checker where': 174800, 'one count': 606121, 'count foot': 210121, 'not guarantee': 569758, 'virus where': 959032, 'the stats': 867838, 'stats for': 796618, 'shiva if church': 759393, 'if church gathering': 413960, 'church gathering represent': 178366, 'gathering represent promotes': 344502, 'represent promotes the': 712875, 'promotes the spreading': 683834, '19 how doe': 7602, 'how doe any': 407736, 'doe any spar': 251330, 'any spar or': 79842, 'spar or checker': 787457, 'or checker where': 614709, 'checker where no': 174801, 'where no one': 985052, 'no one count': 564928, 'one count foot': 606122, 'count foot in': 210122, 'store not guarantee': 809106, 'not guarantee the': 569759, 'guarantee the spreading': 367725, 'the virus where': 870920, 'virus where the': 959033, 'where the stats': 985250, 'the stats for': 867839, 'stats for retail': 796619, 'for retail outlet': 325196, 'stillneedbeer': 801459, 'just back': 468253, 'from who': 338368, 'sanitizer free': 734932, 'only great': 610543, 'great beer': 362521, 'beer great': 122466, 'great people': 362877, 'are awesome': 84732, 'awesome your': 106215, 'customer turning': 223003, 'of le': 585746, 'le so': 483123, 'you stillneedbeer': 1021416, 'just back from': 468254, 'back from who': 107023, 'from who are': 338369, 'who are making': 988173, 'hand sanitizer free': 375412, 'sanitizer free for': 734935, 'free for local': 331844, 'for local business': 323044, 'local business not': 497768, 'business not only': 144108, 'not only great': 570797, 'only great beer': 610544, 'great beer great': 362523, 'beer great people': 122467, 'great people all': 362878, 'people all your': 646807, 'all your staff': 45585, 'staff are awesome': 792178, 'are awesome your': 84733, 'awesome your customer': 106216, 'your customer turning': 1023430, 'customer turning up': 223004, 'turning up in': 935985, 'up in group': 945157, 'group of le': 366795, 'of le so': 585748, 'le so but': 483124, 'so but that': 776668, 'that not on': 845397, 'not on you': 570755, 'on you stillneedbeer': 605438, 'that criminal': 843399, 'defraud and': 232481, 'and defraud': 61062, 'defraud victim': 232492, 'victim especially': 956470, 'senior here': 750318, 'avoid grandparent': 105133, 'grandparent or': 361981, 'family scam': 298208, 'aware that criminal': 105657, 'that criminal will': 843400, 'criminal will use': 216898, 'will use the': 995288, 'use the covid': 949659, 'pandemic to defraud': 636775, 'to defraud and': 904069, 'defraud and defraud': 232482, 'and defraud victim': 61063, 'defraud victim especially': 232493, 'victim especially the': 956471, 'especially the more': 280624, 'the more vulnerable': 860900, 'more vulnerable senior': 540935, 'vulnerable senior here': 961156, 'senior here are': 750319, 'are some helpful': 90269, 'some helpful tip': 783043, 'helpful tip to': 391239, 'to avoid grandparent': 900906, 'avoid grandparent or': 105134, 'grandparent or family': 361982, 'or family scam': 615269, 'bosqf get': 135727, 'get ok': 347690, 'ok for': 597797, '2nd in': 16781, 'bos bosqf get': 135654, 'bosqf get ok': 135728, 'get ok for': 347691, 'ok for 2nd': 597798, 'for 2nd in': 318796, '2nd in fight': 16782, 'pharmacynsupermarket': 654594, '2348107219389': 15471, 'resist covid': 714564, 'your vitamin': 1026290, 'supplement pharmacynsupermarket': 824420, 'pharmacynsupermarket contact': 654595, 'contact 2348107219389': 199991, '2348107219389 immunesupport': 15472, 'immunesupport immunity': 417378, 'immunity healthcare': 417408, 'healthcare pharmacy': 387210, 'pharmacy supermarket': 654489, 'boost your immune': 135035, 'immune system to': 417355, 'system to resist': 831356, 'to resist covid': 913357, 'resist covid 19': 714565, 'covid 19 get': 213141, '19 get your': 7203, 'get your vitamin': 348744, 'your vitamin and': 1026291, 'and supplement pharmacynsupermarket': 72762, 'supplement pharmacynsupermarket contact': 824421, 'pharmacynsupermarket contact 2348107219389': 654596, 'contact 2348107219389 immunesupport': 199992, '2348107219389 immunesupport immunity': 15473, 'immunesupport immunity healthcare': 417379, 'immunity healthcare pharmacy': 417409, 'healthcare pharmacy supermarket': 387212, 'join tomorrow': 466894, 'webinar we': 975131, 'be sharing': 117126, 'sharing initial': 755542, 'initial finding': 438530, 'ongoing research': 607679, 'trend brand': 931290, 'join tomorrow for': 466895, 'tomorrow for our': 924085, 'our webinar we': 625327, 'webinar we ll': 975132, 'll be sharing': 496627, 'be sharing initial': 117127, 'sharing initial finding': 755543, 'initial finding from': 438531, 'from our ongoing': 336791, 'our ongoing research': 624139, 'ongoing research on': 607680, 'on consumer trend': 600082, 'consumer trend brand': 199368, 'trend brand need': 931291, 'brand need sign': 137925, 'need sign up': 555572, 'warren': 967342, 'buffett': 141880, 'stock investor': 802297, 'investor legend': 444173, 'legend warren': 485941, 'warren buffett': 967345, 'buffett who': 141883, 'told investor': 923587, 'ignore headline': 415825, 'high sound': 395413, 'sound shook': 786327, 'shook at': 759720, 'at hell': 98881, 'he discus': 384892, 'the plunge': 863860, 'plunge on': 661447, 'his investment': 397546, 'stock investor legend': 802298, 'investor legend warren': 444174, 'legend warren buffett': 485942, 'warren buffett who': 967347, 'buffett who just': 141884, 'who just week': 989148, 'just week ago': 470263, 'ago told investor': 38526, 'told investor to': 923588, 'investor to ignore': 444220, 'to ignore headline': 908110, 'ignore headline and': 415826, 'headline and buy': 385981, 'and buy at': 59328, 'time high sound': 896933, 'high sound shook': 395414, 'sound shook at': 786328, 'shook at hell': 759721, 'at hell he': 98882, 'hell he discus': 389018, 'he discus the': 384893, 'discus the plunge': 244928, 'the plunge on': 863862, 'plunge on oil': 661448, 'oil price during': 597114, 'pandemic and his': 634880, 'and his investment': 64602, 'his investment in': 397547, 'in the sector': 429533, 'directorate': 243681, 'dhofar': 240124, 'governorate': 361035, 'cracked': 214721, 'tailoring': 831825, 'residue': 714455, 'bz': 154834, 'the directorate': 853320, 'directorate of': 243682, 'protection pacp': 685551, 'pacp in': 633760, 'in dhofar': 422244, 'dhofar governorate': 240125, 'governorate cracked': 361036, 'cracked down': 214722, 'on expat': 600668, 'expat worker': 290586, 'worker making': 1007347, 'from tailoring': 337534, 'tailoring residue': 831826, 'residue and': 714456, '500 bz': 19955, 'bz apiece': 154835, 'apiece 19': 81461, '19 oman': 8922, 'the directorate of': 853321, 'directorate of consumer': 243683, 'consumer protection pacp': 198549, 'protection pacp in': 685554, 'pacp in dhofar': 633761, 'in dhofar governorate': 422245, 'dhofar governorate cracked': 240126, 'governorate cracked down': 361037, 'cracked down on': 214723, 'down on expat': 257017, 'on expat worker': 600669, 'expat worker making': 290587, 'worker making face': 1007348, 'face mask from': 294541, 'mask from tailoring': 518708, 'from tailoring residue': 337535, 'tailoring residue and': 831827, 'residue and selling': 714457, 'and selling them': 71243, 'selling them for': 749493, 'them for up': 875731, 'to 500 bz': 899753, '500 bz apiece': 19956, 'bz apiece 19': 154836, 'apiece 19 oman': 81462, 'hiring needing': 397116, 'chain is hiring': 170834, 'is hiring needing': 448487, 'hiring needing to': 397117, 'needing to keep': 556635, 'with demand to': 997994, 'demand to feed': 236395, 'feed the world': 302385, 'rupture': 728199, 'economics one': 267475, 'one reason': 606945, 'see oil': 745495, 'price remaining': 676175, 'remaining far': 709963, 'far lower': 298836, 'lower in': 505879, 'coming two': 188253, 'year than': 1014986, 'we previously': 972745, 'previously expected': 672037, 'expected both': 290877, 'both due': 135898, 'recent rupture': 703982, 'rupture of': 728200, 'of relation': 588911, 'relation between': 708661, 'between opec': 128840, 'opec member': 611919, 'member cdnecon': 528044, 'capital economics one': 162652, 'economics one reason': 267476, 'one reason for': 606946, 'reason for that': 702911, 'for that is': 326259, 'that is we': 844673, 'is we now': 453804, 'we now see': 972616, 'now see oil': 575748, 'see oil price': 745496, 'oil price remaining': 597235, 'price remaining far': 676176, 'remaining far lower': 709964, 'far lower in': 298837, 'lower in the': 505881, 'the coming two': 851202, 'coming two year': 188255, 'two year than': 937411, 'year than we': 1014988, 'than we previously': 841432, 'we previously expected': 972746, 'previously expected both': 672038, 'expected both due': 290878, 'both due to': 135899, 'to the lasting': 916835, 'and the recent': 73544, 'the recent rupture': 865323, 'recent rupture of': 703983, 'rupture of relation': 728201, 'of relation between': 588912, 'relation between opec': 708662, 'between opec member': 128842, 'opec member cdnecon': 611921, 'morning socialdistancing': 541449, 'line outside my': 493348, 'this morning socialdistancing': 889015, 'nunavut': 577157, 'nunavut doesn': 577158, 'doesn foresee': 251795, 'foresee any': 329047, 'any fuel': 79262, 'shortage because': 764851, 'the territory': 869304, 'territory is': 838566, 'year while': 1015101, 'low by': 505172, 'nunavut doesn foresee': 577159, 'doesn foresee any': 251796, 'foresee any fuel': 329048, 'any fuel shortage': 79263, 'fuel shortage because': 340280, 'shortage because of': 764852, 'pandemic in fact': 635696, 'fact the territory': 295822, 'the territory is': 869305, 'territory is stocking': 838567, 'stocking up for': 803618, 'up for next': 944949, 'next year while': 561737, 'year while oil': 1015103, 'while oil price': 987100, 'are low by': 87923, 'low by via': 505174, 'local chinese': 497822, 'business sky': 144388, 'sky supermarket': 773235, 'in flushing': 422946, 'flushing stocked': 311590, 'stocked cov': 803299, 'your local chinese': 1024688, 'local chinese business': 497823, 'chinese business sky': 177205, 'business sky supermarket': 144389, 'sky supermarket on': 773236, 'supermarket on main': 821726, 'main street in': 508829, 'street in flushing': 812993, 'in flushing stocked': 422948, 'flushing stocked cov': 311591, 'stocked cov d19': 803300, 'som': 782214, 'hindu the': 396864, 'only hampered': 610566, 'hampered the': 374618, 'the livelihood': 859508, 'livelihood after': 496190, 'daily consumption': 224561, 'consumption product': 199933, 'will drastically': 993252, 'impacted part': 418143, 'is seen': 451730, 'the auto': 849079, 'auto mobile': 103902, 'mobile sector': 535021, 'sector well': 744392, 'well som': 978566, 'hindu the impact': 396865, '19 not only': 8831, 'not only hampered': 570799, 'only hampered the': 610567, 'hampered the life': 374619, 'the life but': 859337, 'life but also': 488535, 'also the livelihood': 48977, 'the livelihood after': 859509, 'livelihood after the': 496191, 'after the lifting': 36331, 'lifting of lock': 489503, 'down the price': 257295, 'of daily consumption': 582313, 'daily consumption product': 224562, 'consumption product will': 199934, 'product will drastically': 681857, 'will drastically increase': 993254, 'drastically increase the': 258443, 'increase the most': 433109, 'the most impacted': 860998, 'most impacted part': 542391, 'impacted part is': 418144, 'part is seen': 642309, 'is seen in': 451731, 'in the auto': 428998, 'the auto mobile': 849082, 'auto mobile sector': 103903, 'mobile sector well': 535022, 'sector well som': 744393, 'made every': 507727, 'every effort': 285885, 'stay prepared': 797182, 'prepared cheer': 670171, 'cheer everyone': 175101, 'stay happy': 796888, 'keep smiling': 471937, 'smiling happy': 775774, 'happy lockdown': 377645, 'have made every': 381408, 'made every effort': 507729, 'every effort to': 285886, 'effort to stay': 269648, 'to stay prepared': 915309, 'stay prepared cheer': 797183, 'prepared cheer everyone': 670172, 'cheer everyone stay': 175102, 'everyone stay happy': 287402, 'stay happy and': 796889, 'happy and keep': 377584, 'and keep smiling': 65779, 'keep smiling happy': 471938, 'smiling happy lockdown': 775775, 'happy lockdown toiletpaper': 377646, 'rec': 703353, 'conscientious': 194784, 'advise what': 33609, 'step are': 799495, 'working people': 1008869, 'people aged': 646793, 'aged 70': 37940, '70 re': 21832, 'supermarket obviously': 821689, 'obviously can': 578827, 'ha rec': 371658, 'rec no': 703354, 'no guidance': 564390, 'employer conscientious': 274498, 'conscientious worker': 194787, 'worker she': 1007761, 'feel obliged': 302793, 'go how': 353681, 'how wil': 409215, 'please advise what': 659640, 'advise what step': 33611, 'what step are': 982254, 'step are in': 799496, 'are in place': 87423, 'place for working': 657455, 'for working people': 327954, 'working people aged': 1008870, 'people aged 70': 646796, 'aged 70 re': 37942, '70 re covid': 21833, '19 my mum': 8732, 'my mum work': 549392, 'in supermarket obviously': 428640, 'supermarket obviously can': 821690, 'obviously can work': 578828, 'home ha rec': 401331, 'ha rec no': 371659, 'rec no guidance': 703355, 'no guidance from': 564391, 'guidance from employer': 368238, 'from employer conscientious': 335276, 'employer conscientious worker': 274499, 'conscientious worker she': 194788, 'worker she feel': 1007762, 'she feel obliged': 756030, 'feel obliged to': 302794, 'obliged to go': 578482, 'to go how': 906808, 'go how wil': 353683, 'by tomorrow': 154569, 'be stripped': 117398, 'the locust': 859649, 'locust are': 500555, 'by tomorrow it': 154571, 'tomorrow it will': 924111, 'will be stripped': 992701, 'be stripped bare': 117399, 'stripped bare the': 813851, 'bare the locust': 110961, 'the locust are': 859650, 'locust are coming': 500556, 'are coming to': 85442, 'coming to supermarket': 188232, 'you coronacrisis panicbuyinguk': 1018057, 'endanger': 276088, 'public could': 687937, 'could endanger': 209137, 'endanger people': 276090, 'life especially': 488626, 'time great': 896861, 'great step': 363007, 'step indeed': 799569, 'indeed by': 433984, 'in public could': 427076, 'public could endanger': 687938, 'could endanger people': 209138, 'endanger people life': 276091, 'people life especially': 648635, 'life especially during': 488628, 'especially during this': 280466, 'challenging time great': 171639, 'time great step': 896862, 'great step indeed': 363008, 'step indeed by': 799570, 'indeed by it': 433985, 'authorize': 103825, 'virus call': 958023, 'for bold': 319712, 'bold action': 134087, 'action congress': 29988, 'congress should': 194525, 'should authorize': 765528, 'authorize tax': 103826, 'free federal': 331816, 'federal bonus': 301959, 'care pharmacy': 164142, 'pharmacy grocery': 654327, 'worker staying': 1007815, 'staying on': 798669, 'war against the': 966344, '19 virus call': 11787, 'virus call for': 958024, 'call for bold': 155856, 'for bold action': 319713, 'bold action congress': 134088, 'action congress should': 29989, 'congress should authorize': 194526, 'should authorize tax': 765529, 'authorize tax free': 103827, 'tax free federal': 834992, 'free federal bonus': 331817, 'federal bonus for': 301960, 'bonus for health': 134374, 'health care pharmacy': 386242, 'care pharmacy grocery': 164144, 'pharmacy grocery store': 654328, 'chain worker staying': 171265, 'worker staying on': 1007816, 'staying on the': 798670, 'the job during': 858657, 'job during this': 465808, 'want sub': 965943, 'sub 00': 815671, '00 gas': 229, 'gas it': 343885, 'coming with': 188294, 'down 18': 256382, '18 today': 4595, 'you want sub': 1022157, 'want sub 00': 965944, 'sub 00 gas': 815672, '00 gas it': 230, 'gas it coming': 343886, 'it coming with': 457224, 'coming with oil': 188296, 'price down 18': 673511, 'down 18 today': 256383, 'affluent': 34651, 'affluent flee': 34654, 'flee to': 310289, 'to second': 913955, 'second home': 743737, 'rent go': 711103, 'affluent flee to': 34655, 'flee to second': 310290, 'to second home': 913956, 'second home in': 743738, 'home in covid': 401413, 'pandemic will house': 637010, 'and rent go': 70242, 'rent go up': 711104, 'shop safely': 760727, 'which news': 986176, 'to shop safely': 914486, 'shop safely at': 760728, 'the supermarket which': 868903, 'supermarket which news': 823838, 'bleakest': 132557, 'bleakest economic': 132558, 'economic view': 267360, 'view come': 957075, 'with front': 998569, 'front row': 338663, 'row view': 726589, 'of fallout': 583393, 'fallout via': 297397, 'bleakest economic view': 132559, 'economic view come': 267361, 'view come from': 957076, 'come from those': 187317, 'from those with': 338036, 'those with front': 892718, 'with front row': 998570, 'front row view': 338664, 'row view of': 726590, 'view of fallout': 957125, 'of fallout via': 583394, 'high pre': 395223, 'to fresh': 906249, 'ha always': 369531, 'always been': 49484, 'limited due': 492620, 'people indigenous': 648469, 'indigenous and': 435078, 'non indigenous': 566410, 'the price were': 864436, 'were high pre': 979740, 'high pre covid': 395224, '19 and access': 4980, 'access to fresh': 28237, 'to fresh food': 906250, 'fresh food ha': 332968, 'food ha always': 314744, 'ha always been': 369532, 'always been limited': 49489, 'been limited due': 121462, 'limited due to': 492621, 'due to price': 261913, 'to price it': 912121, 'price it not': 674922, 'it not right': 459914, 'not right and': 571383, 'it not fair': 459875, 'fair on our': 296358, 'on our people': 602619, 'our people indigenous': 624311, 'people indigenous and': 648470, 'indigenous and non': 435079, 'and non indigenous': 67672, 'workingfromthefrontlines': 1009125, 'wff': 980823, 'the workingfromthefrontlines': 871785, 'workingfromthefrontlines wff': 1009126, 'wff men': 980826, 'woman during': 1003477, 'clerk explains': 181695, 'for the workingfromthefrontlines': 326787, 'the workingfromthefrontlines wff': 871786, 'workingfromthefrontlines wff men': 1009128, 'wff men and': 980827, 'and woman during': 75805, 'woman during these': 1003479, 'difficult time grocery': 242290, 'time grocery store': 896868, 'store clerk explains': 807005, 'clerk explains what': 181696, 'like to work': 491636, 'to work amid': 918681, 'work amid covid': 1004743, 'price follow': 673903, 'link if': 493851, 'life cal': 488547, 'cal shop': 155275, 'price follow this': 673906, 'follow this link': 312565, 'this link if': 888646, 'link if your': 493852, 'if your life': 415590, 'your life cal': 1024630, 'life cal shop': 488548, 'cal shop are': 155276, 'shop are increasing': 759902, 'are increasing price': 87490, 'substance found': 816036, 'in drug': 422396, 'drug used': 261142, 'treat malaria': 930847, 'malaria and': 511548, 'severe arthritis': 753989, 'arthritis cleared': 94212, 'by trump': 154605, 'trump fda': 933549, 'testing also': 839430, 'also found': 48234, 'in fish': 422914, 'tank and': 834187, 'substance found in': 816037, 'found in drug': 330249, 'in drug used': 422397, 'drug used to': 261143, 'to treat malaria': 917750, 'treat malaria and': 930848, 'malaria and severe': 511549, 'and severe arthritis': 71343, 'severe arthritis cleared': 753990, 'arthritis cleared by': 94213, 'cleared by trump': 181412, 'by trump fda': 154606, 'trump fda for': 933550, 'fda for testing': 300858, 'for testing also': 326233, 'testing also found': 839431, 'also found in': 48235, 'found in fish': 330250, 'in fish tank': 422916, 'fish tank and': 309341, 'tank and price': 834188, 'and price online': 69466, 'price online are': 675747, 'online are soaring': 607873, 'distracts': 247916, 'shopping distracts': 762490, 'distracts me': 247917, 'eating so': 266307, 'be broke': 113913, 'broke instead': 140833, 'fat after': 300192, 'online shopping distracts': 609094, 'shopping distracts me': 762491, 'distracts me from': 247918, 'me from eating': 522782, 'from eating so': 335253, 'eating so might': 266308, 'so might just': 777740, 'just be broke': 468267, 'be broke instead': 113914, 'broke instead of': 140834, 'instead of fat': 440260, 'of fat after': 583444, 'fat after this': 300193, 'only deal': 610317, 'buying stock': 151086, 'piling but': 656573, 'fine people': 307680, 'people heavily': 648230, 'heavily for': 388579, 'for throwing': 327180, 'throwing food': 895093, 'will and': 992282, 'get fed': 346999, 'with living': 999270, 'on bean': 599598, 'and pasta': 68755, 'pasta panicbuyinguk': 643781, 'panicbuyinguk stockpiling': 639172, 'not only deal': 570785, 'only deal with': 610318, 'panic buying stock': 637903, 'buying stock piling': 151088, 'stock piling but': 802653, 'piling but also': 656574, 'but also to': 145151, 'also to fine': 49019, 'to fine people': 905961, 'fine people heavily': 307681, 'people heavily for': 648231, 'heavily for throwing': 388580, 'for throwing food': 327181, 'throwing food away': 895094, 'food away when': 313493, 'away when the': 106104, 'when the crisis': 984138, 'the crisis end': 852373, 'crisis end and': 217346, 'end and it': 275769, 'it will and': 462371, 'will and they': 992283, 'they will get': 883851, 'will get fed': 993504, 'get fed up': 347000, 'up with living': 946658, 'with living on': 999271, 'living on bean': 496428, 'on bean and': 599599, 'bean and pasta': 118290, 'and pasta panicbuyinguk': 68760, 'pasta panicbuyinguk stockpiling': 643782, 'depicted': 237398, 'think every': 885228, 'every television': 286281, 'television show': 836867, 'and movie': 67299, 'movie in': 544009, 'apocalypse genre': 81526, 'genre that': 345826, 'that depicted': 843500, 'depicted fully': 237399, 'of crap': 582114, 'crap socialdistancing': 214909, 'beginning to think': 123677, 'to think every': 917373, 'think every television': 885230, 'every television show': 286282, 'television show and': 836868, 'show and movie': 766864, 'and movie in': 67300, 'movie in the': 544012, 'the apocalypse genre': 848807, 'apocalypse genre that': 81527, 'genre that depicted': 345827, 'that depicted fully': 843501, 'depicted fully stocked': 237400, 'store wa full': 811112, 'full of crap': 340710, 'of crap socialdistancing': 582115, 'lauded': 481691, 'savior': 737994, 'while doctor': 986759, 'professional at': 682417, 'large are': 479594, 'rightfully being': 722448, 'being lauded': 125370, 'lauded hero': 481692, 'pandemic there': 636721, 'there another': 878013, 'another set': 77836, 'of savior': 589339, 'savior facing': 737995, 'facing the': 295619, 'coronavirus frontlines': 205962, 'frontlines every': 338913, 'while doctor nurse': 986760, 'doctor nurse and': 250999, 'care professional at': 164159, 'professional at large': 682419, 'at large are': 99406, 'large are rightfully': 479595, 'are rightfully being': 89698, 'rightfully being lauded': 722449, 'being lauded hero': 125371, 'lauded hero during': 481693, 'hero during the': 393982, '19 pandemic there': 9496, 'pandemic there another': 636722, 'there another set': 878014, 'another set of': 77837, 'set of savior': 753443, 'of savior facing': 589340, 'savior facing the': 737996, 'facing the coronavirus': 295621, 'the coronavirus frontlines': 851854, 'coronavirus frontlines every': 205963, 'frontlines every day': 338914, 'every day grocery': 285812, 'to holding': 907919, 'holding your': 400194, 'your breath': 1023024, 'breath for': 139165, 'entire trip': 278764, 'out to holding': 627653, 'to holding your': 907920, 'holding your breath': 400195, 'your breath for': 1023025, 'breath for an': 139166, 'for an entire': 319285, 'an entire trip': 55776, 'entire trip to': 278765, 'lawyer': 482546, 'crisis due': 217323, '19 federal': 6963, 'federal ministry': 302027, 'of justice': 585577, 'justice want': 470447, 'suspend insolvency': 829567, 'insolvency application': 439736, 'application germany': 82461, 'germany on': 346331, 'justice and': 470400, 'that statutory': 846464, 'statutory regulation': 796721, 'regulation ri': 708108, 'ri bankruptcy': 720922, 'bankruptcy lawyer': 110532, 'in crisis due': 421879, 'crisis due to': 217324, 'covid 19 federal': 213081, '19 federal ministry': 6964, 'federal ministry of': 302028, 'ministry of justice': 533550, 'of justice want': 585582, 'justice want to': 470448, 'want to temporarily': 966142, 'temporarily suspend insolvency': 837554, 'suspend insolvency application': 829568, 'insolvency application germany': 439737, 'application germany on': 82462, 'germany on march': 346332, 'on march 16': 602011, '16 2020 the': 4072, '2020 the federal': 14639, 'the federal ministry': 855076, 'of justice and': 585578, 'justice and consumer': 470401, 'protection announced that': 685332, 'announced that statutory': 77068, 'that statutory regulation': 846465, 'statutory regulation ri': 796722, 'regulation ri bankruptcy': 708109, 'ri bankruptcy lawyer': 720923, 'changed drastically': 172463, 'drastically during': 258436, 'outbreak see': 628605, 'ha collected': 370197, 'collected on': 186367, 'consumer shopping habit': 198975, 'shopping habit have': 762846, 'have changed drastically': 379934, 'changed drastically during': 172464, 'drastically during the': 258437, '19 outbreak see': 9181, 'outbreak see some': 628606, 'the data ha': 852847, 'data ha collected': 226256, 'ha collected on': 370198, 'collected on the': 186369, 'delive': 233079, 'yes found': 1015437, 'good setup': 357719, 'setup pity': 753736, 'pity there': 657064, 'enough security': 277610, 'supermarket wouldn': 824137, 'online delive': 608077, 'yes found that': 1015438, 'found that also': 330394, 'that also have': 842603, 'also have good': 48332, 'have good setup': 380807, 'good setup pity': 357720, 'setup pity there': 753737, 'pity there not': 657065, 'there not enough': 878858, 'not enough security': 569192, 'enough security staff': 277611, 'security staff in': 744757, 'in the other': 429424, 'other supermarket wouldn': 621028, 'supermarket wouldn even': 824138, 'wouldn even be': 1012458, 'even be shopping': 283861, 'be shopping out': 117156, 'shopping out but': 763572, 'there no slot': 878841, 'no slot left': 565524, 'slot left for': 774229, 'left for online': 485467, 'for online delive': 324102, 'dancing': 225597, 'so lonely': 777576, 'lonely in': 501300, 'quarantine dancing': 692126, 'dancing tp': 225602, 'quarantine st': 692560, 'louis missouri': 504524, 'so lonely in': 777577, 'lonely in quarantine': 501301, 'in quarantine dancing': 427178, 'quarantine dancing tp': 692127, 'dancing tp toiletpaper': 225603, 'tp toiletpaper quarantine': 928004, 'toiletpaper quarantine st': 922377, 'quarantine st louis': 692561, 'st louis missouri': 791725, 'greeter': 363804, 'coronavirus trader': 206960, 'joe worker': 466452, 'in scarsdale': 427722, 'scarsdale greeter': 741118, 'greeter at': 363805, 'in largo': 424592, 'md and': 522256, 'employee chicago': 273717, 'chicago have': 175671, 'via 19': 955776, 'of coronavirus trader': 581971, 'coronavirus trader joe': 206961, 'trader joe worker': 928724, 'joe worker in': 466453, 'worker in scarsdale': 1007200, 'in scarsdale greeter': 427723, 'scarsdale greeter at': 741119, 'greeter at giant': 363806, 'at giant store': 98757, 'giant store in': 349868, 'store in largo': 808331, 'in largo md': 424595, 'largo md and': 480048, 'md and walmart': 522259, 'and walmart employee': 75159, 'walmart employee chicago': 965320, 'employee chicago have': 273718, 'chicago have died': 175672, 'recent day via': 703868, 'day via 19': 228649, '435': 18990, '7203': 22030, 'help purchase': 390388, 'purchase may': 689549, 'website curbside': 975239, 'calling our': 156618, 'at 402': 97649, '402 435': 18803, '435 7203': 18991, 'community we have': 190210, 'retail store we': 718723, 'are still here': 90432, 'still here to': 800700, 'to help purchase': 907597, 'help purchase may': 390389, 'purchase may be': 689550, 'may be made': 521005, 'be made on': 115866, 'made on our': 507886, 'our website curbside': 625335, 'website curbside pickup': 975240, 'curbside pickup or': 220659, 'pickup or by': 656000, 'or by calling': 614625, 'by calling our': 152060, 'calling our staff': 156619, 'our staff at': 624876, 'staff at 402': 792229, 'at 402 435': 97650, '402 435 7203': 18804, 'diversified': 248534, 'corporategreed': 207365, 'essentialservices': 281923, 'servic': 752016, 'seen even': 747008, 'even one': 284426, 'on diversified': 600356, 'diversified bus': 248535, 'bus corporategreed': 143008, 'corporategreed stayhomestaysafe': 207366, 'stayhomestaysafe essentialservices': 798510, 'essentialservices and': 281924, 'and since': 71685, 'is construction': 446782, 'construction an': 195784, 'essential servic': 281493, 'not seen even': 571508, 'seen even one': 747009, 'even one hand': 284427, 'sanitizer on diversified': 735456, 'on diversified bus': 600357, 'diversified bus corporategreed': 248536, 'bus corporategreed stayhomestaysafe': 143009, 'corporategreed stayhomestaysafe essentialservices': 207367, 'stayhomestaysafe essentialservices and': 798511, 'essentialservices and since': 281925, 'and since when': 71686, 'since when is': 770994, 'when is construction': 983613, 'is construction an': 446783, 'construction an essential': 195785, 'an essential servic': 55833, '1990': 12480, 'favoured': 300585, 'lfc': 487883, 'fortunate in': 329893, 'that bit': 842989, 'bit like': 131605, 'like liverpool': 490654, 'liverpool fc': 496241, 'fc after': 300714, 'after 1990': 35281, '1990 the': 12483, 'the golden': 856416, 'golden delicious': 356047, 'delicious fell': 233012, 'fell from': 303196, 'from grace': 335685, 'grace in': 361606, 'country but': 210528, 'always remained': 49713, 'remained my': 709937, 'my favoured': 548282, 'favoured apple': 300586, 'apple no': 82345, 'no trouble': 565807, 'finding that': 307547, 'today lfc': 919802, 'lfc stophoarding': 487884, 'fortunate in that': 329894, 'in that bit': 428913, 'that bit like': 842990, 'bit like liverpool': 131607, 'like liverpool fc': 490655, 'liverpool fc after': 496242, 'fc after 1990': 300715, 'after 1990 the': 35282, '1990 the golden': 12484, 'the golden delicious': 856417, 'golden delicious fell': 356048, 'delicious fell from': 233013, 'fell from grace': 303198, 'from grace in': 335686, 'grace in this': 361607, 'this country but': 886943, 'country but it': 210529, 'but it always': 146096, 'it always remained': 456443, 'always remained my': 49714, 'remained my favoured': 709938, 'my favoured apple': 548283, 'favoured apple no': 300587, 'apple no trouble': 82346, 'no trouble finding': 565808, 'trouble finding that': 932608, 'finding that today': 307549, 'that today lfc': 847069, 'today lfc stophoarding': 919803, 'lfc stophoarding panicbuyinguk': 487885, 'youngster': 1022703, 'fuckmillenials': 340064, 'helptheelderly': 391633, 'helpthevulnerable': 391644, 'better stop': 128498, 'cart youngster': 165431, 'youngster with': 1022704, 'with there': 1001624, 'full think': 340927, 'think may': 885391, 'just jump': 469086, 'jump you': 467912, 'family fuckmillenials': 297833, 'fuckmillenials bekind': 340065, 'bekind helptheelderly': 126099, 'helptheelderly helpthevulnerable': 391634, 'people better stop': 647279, 'better stop panic': 128500, 'buying food because': 150305, 'food because if': 313705, 'because if see': 119144, 'if see an': 414758, 'see an old': 744899, 'an old man': 56590, 'old man with': 598357, 'man with nothing': 512356, 'nothing in his': 573048, 'his cart youngster': 397283, 'cart youngster with': 165432, 'youngster with there': 1022705, 'with there full': 1001627, 'there full think': 878424, 'full think may': 340928, 'think may just': 885392, 'may just jump': 521306, 'just jump you': 469087, 'jump you with': 467913, 'you with my': 1022382, 'my family fuckmillenials': 548200, 'family fuckmillenials bekind': 297834, 'fuckmillenials bekind helptheelderly': 340066, 'bekind helptheelderly helpthevulnerable': 126100, 'blog now': 132970, 'about navigating': 25780, 'sanitizer market': 735344, 'pandemic handsanitizer': 635582, 'handsanitizer blog': 376489, 'blog market': 132966, 'market meddevice': 516713, 'meddevice find': 525948, 'latest blog now': 481238, 'blog now to': 132973, 'now to learn': 576171, 'more about navigating': 538516, 'about navigating the': 25782, 'navigating the hand': 553129, 'hand sanitizer market': 375485, 'sanitizer market during': 735345, 'the pandemic handsanitizer': 862980, 'pandemic handsanitizer blog': 635583, 'handsanitizer blog market': 376490, 'blog market meddevice': 132967, 'market meddevice find': 516714, 'meddevice find the': 525949, 'find the blog': 307284, 'the blog here': 849776, 'subscribed': 815858, 'any minor': 79464, 'minor entity': 533634, 'entity that': 278858, 'have subscribed': 382822, 'subscribed to': 815859, 'to previously': 912110, 'previously stop': 672056, 'stop emailing': 804634, 'emailing me': 272391, '19 unless': 11639, 'government medical': 360357, 'medical authority': 526061, 'authority my': 103766, 'employer supermarket': 274545, 'any minor entity': 79465, 'minor entity that': 533635, 'entity that may': 278860, 'that may have': 845079, 'may have subscribed': 521257, 'have subscribed to': 382823, 'subscribed to previously': 815860, 'to previously stop': 912111, 'previously stop emailing': 672057, 'stop emailing me': 804635, 'emailing me to': 272393, 'me to let': 523763, 're doing about': 698529, 'doing about covid': 252258, 'covid 19 unless': 214001, '19 unless you': 11640, 'the government medical': 856564, 'government medical authority': 360358, 'medical authority my': 526062, 'authority my employer': 103767, 'my employer supermarket': 548096, 'employer supermarket do': 274546, 'liarinchief': 487979, 'fyi the': 342650, 'consumer pay': 198342, 'pay tariff': 645131, 'tariff liarinchief': 834599, 'liarinchief china': 487980, 'china isn': 176765, 'isn paying': 454619, 'for shit': 325553, 'you incompetent': 1019328, 'incompetent as': 432527, 'as maga': 94772, 'maga people': 508292, 'fyi the consumer': 342651, 'the consumer pay': 851570, 'consumer pay tariff': 198343, 'pay tariff liarinchief': 645133, 'tariff liarinchief china': 834600, 'liarinchief china isn': 487981, 'china isn paying': 176766, 'isn paying for': 454620, 'paying for shit': 645416, 'for shit the': 325556, 'shit the cost': 759240, 'cost of all': 208038, 'all their product': 45006, 'their product including': 874468, 'product including food': 681305, 'including food have': 431965, 'food have gone': 314782, 'gone up you': 356436, 'up you incompetent': 946725, 'you incompetent as': 1019329, 'incompetent as maga': 432528, 'as maga people': 94773, 'lurch': 506825, 'occurrence': 579053, 'elisabeth': 271503, 'selk': 748598, 'lurch in': 506826, 'become daily': 119962, 'daily occurrence': 224727, 'occurrence amid': 579054, 'our strategic': 624965, 'strategic research': 812558, 'research consultant': 713700, 'consultant elisabeth': 195867, 'elisabeth selk': 271504, 'selk examines': 748599, 'examines what': 288848, 'property industry': 684281, 'ha in': 370932, 'lurch in share': 506827, 'share price have': 755175, 'price have become': 674413, 'have become daily': 379429, 'become daily occurrence': 119963, 'daily occurrence amid': 224728, 'occurrence amid the': 579055, 'crisis our strategic': 217842, 'our strategic research': 624967, 'strategic research consultant': 812559, 'research consultant elisabeth': 713701, 'consultant elisabeth selk': 195868, 'elisabeth selk examines': 271505, 'selk examines what': 748600, 'examines what option': 288849, 'what option the': 981970, 'option the property': 614107, 'the property industry': 864682, 'property industry ha': 684282, 'industry ha in': 435863, 'ha in our': 370933, 'underperform': 940533, 'ratio': 697608, 'normalized': 567467, 'depth and': 237758, 'and duration': 61804, 'stock will': 803193, 'recover but': 705166, 'but 20': 145029, '30 below': 16984, 'below current': 126626, '2008 investor': 13675, 'investor will': 444230, 'recover stock': 705204, 'stock may': 802467, 'may underperform': 521589, 'underperform since': 940536, 'since high': 770646, 'high ratio': 395325, 'ratio are': 697613, 'are normalized': 88303, 'normalized if': 567470, 'not exceeded': 569318, 'exceeded via': 289046, 'when we finally': 984441, 'we finally get': 971556, 'finally get an': 306010, 'get an idea': 346543, 'an idea of': 56130, 'idea of the': 413139, 'of the depth': 590944, 'the depth and': 853167, 'depth and duration': 237759, 'and duration of': 61805, 'of the recession': 591395, 'the recession stock': 865340, 'recession stock will': 704370, 'stock will recover': 803199, 'will recover but': 994600, 'recover but 20': 705167, 'but 20 to': 145030, 'to 30 below': 899665, '30 below current': 16985, 'below current price': 126627, 'current price in': 221312, 'price in 2008': 674650, 'in 2008 investor': 419757, '2008 investor will': 13677, 'investor will take': 444231, 'will take time': 995084, 'time to recover': 898043, 'to recover stock': 912990, 'recover stock may': 705205, 'stock may underperform': 802468, 'may underperform since': 521590, 'underperform since high': 940537, 'since high ratio': 770647, 'high ratio are': 395326, 'ratio are normalized': 697615, 'are normalized if': 88304, 'normalized if not': 567471, 'if not exceeded': 414496, 'not exceeded via': 569319, 'sheffield': 756638, 'meadowhall': 524075, 'current coronavirus': 221143, '19 evolving': 6878, 'situation sheffield': 772480, 'sheffield united': 756648, 'united ha': 942166, 'temporarily this': 837563, 'this now': 889181, 'now includes': 575023, 'includes our': 431788, 'our meadowhall': 623881, 'meadowhall store': 524076, 'the current coronavirus': 852621, 'current coronavirus covid': 221144, 'covid 19 evolving': 213052, '19 evolving situation': 6879, 'evolving situation sheffield': 288586, 'situation sheffield united': 772481, 'sheffield united ha': 756649, 'united ha made': 942167, 'made the decision': 507991, 'decision to close': 231102, 'to close all': 902855, 'of our retail': 587556, 'store temporarily this': 810527, 'temporarily this now': 837564, 'this now includes': 889183, 'now includes our': 575027, 'includes our meadowhall': 431790, 'our meadowhall store': 623882, 'meadowhall store with': 524077, 'apocalypse when': 81577, 'fighting with': 305157, 'cashier over': 166580, 'over loo': 630369, 'supermarket corvid19uk': 819811, 'you re living': 1020669, 'living through the': 496463, 'the apocalypse when': 848815, 'apocalypse when people': 81578, 'are fighting with': 86551, 'fighting with cashier': 305158, 'with cashier over': 997567, 'cashier over loo': 166581, 'over loo roll': 630370, 'loo roll at': 502169, 'the supermarket corvid19uk': 868534, 'indifference': 435070, 'pcc': 645899, 'government encourages': 360064, 'encourages social': 275699, 'distancing we': 247616, 'have company': 380048, 'that encourage': 843708, 'encourage travel': 275641, 'and vacation': 74827, 'vacation since': 951592, 'cheap shocking': 174188, 'shocking indifference': 759605, 'indifference towards': 435075, 'towards people': 927233, 'the pcc': 863417, 'pcc advise': 645900, 'advise them': 33604, 'the government encourages': 856533, 'government encourages social': 360065, 'encourages social distancing': 275700, 'social distancing we': 779762, 'distancing we have': 247619, 'we have company': 971777, 'have company that': 380050, 'company that encourage': 191169, 'that encourage travel': 843709, 'encourage travel and': 275642, 'travel and vacation': 930263, 'and vacation since': 74828, 'vacation since price': 951593, 'since price are': 770797, 'price are cheap': 672643, 'are cheap shocking': 85262, 'cheap shocking indifference': 174189, 'shocking indifference towards': 759606, 'indifference towards people': 435076, 'towards people can': 927234, 'people can the': 647415, 'can the pcc': 159958, 'the pcc advise': 863418, 'pcc advise them': 645901, 're hoping': 698834, 'employee are looking': 273621, 'are looking like': 87886, 'looking like they': 502963, 'they re hoping': 883054, 're hoping for': 698835, 'scottoiletpaper': 742492, 'megaroll': 527844, 'score thanks': 742372, 'thanks toiletpaper': 842275, 'toiletpapercrisis scottoiletpaper': 923057, 'scottoiletpaper megaroll': 742493, 'megaroll toiletpaperchallenge': 527845, 'score thanks toiletpaper': 742373, 'thanks toiletpaper toiletpapercrisis': 842276, 'toiletpaper toiletpapercrisis scottoiletpaper': 922663, 'toiletpapercrisis scottoiletpaper megaroll': 923058, 'scottoiletpaper megaroll toiletpaperchallenge': 742494, 'top victim': 925754, 'sense grocery': 750527, 'etiquette math': 283156, 'math humor': 520463, 'humor freedom': 410873, 'top victim of': 925755, 'victim of common': 956493, 'of common sense': 581592, 'common sense grocery': 189459, 'sense grocery store': 750528, 'store etiquette math': 807636, 'etiquette math humor': 283157, 'math humor freedom': 520464, 'least 30': 484358, '30 grocery': 17062, 'their colleague': 872801, 'are pleading': 89104, 'at least 30': 99451, 'least 30 grocery': 484360, '30 grocery store': 17063, 'store worker have': 811521, 'the and their': 848725, 'and their colleague': 73676, 'their colleague are': 872802, 'colleague are pleading': 186198, 'are pleading for': 89105, 'pleading for shopper': 659585, 'for shopper to': 325574, 'shopper to wear': 761781, 'mask and respect': 518361, 'and respect social': 70333, 'demoting': 236884, 'misinfo': 534054, 'tech ha': 836101, 'more aggressive': 538570, 'aggressive in': 38249, 'in responding': 427415, 'crisis than': 218138, 'after political': 36050, 'political misinformation': 663662, 'misinformation but': 534062, 'are simple': 90132, 'simple promoting': 770078, 'promoting good': 683840, 'info demoting': 437465, 'demoting bad': 236885, 'bad info': 107906, 'info keeping': 437507, 'keeping misinfo': 472481, 'misinfo from': 534055, 'from appearing': 334569, '1st place': 12777, 'big tech ha': 130054, 'tech ha been': 836102, 'ha been more': 369856, 'been more aggressive': 121538, 'more aggressive in': 538571, 'aggressive in responding': 38250, 'in responding to': 427416, 'the crisis than': 852457, 'crisis than they': 218139, 'than they have': 841301, 'been in going': 121346, 'going after political': 354998, 'after political misinformation': 36051, 'political misinformation but': 663663, 'misinformation but the': 534063, 'but the measure': 147362, 'the measure are': 860368, 'measure are simple': 525126, 'are simple promoting': 90134, 'simple promoting good': 770079, 'promoting good info': 683841, 'good info demoting': 357263, 'info demoting bad': 437466, 'demoting bad info': 236886, 'bad info keeping': 107907, 'info keeping misinfo': 437508, 'keeping misinfo from': 472482, 'misinfo from appearing': 534056, 'from appearing in': 334570, 'appearing in the': 82172, 'in the 1st': 428948, 'the 1st place': 847974, 'telepathy': 836794, 'sanitizeeverything': 734269, 'stayindoorsclub': 798554, 'medrabbits': 527366, 'doctor got': 250931, 'than telemedicine': 841201, 'telemedicine they': 836788, 'got telepathy': 358885, 'telepathy doctor': 836795, 'doctor telemedicine': 251121, 'telemedicine corona': 836772, 'corona washhand': 204384, 'sanitizer sanitizeeverything': 735688, 'sanitizeeverything socialdistancing': 734270, 'socialdistancing healthylifestyle': 780418, 'healthylifestyle healthcare': 387850, 'healthcare home': 387139, 'home stayindoorsclub': 402134, 'stayindoorsclub indoor': 798555, 'indoor medrabbits': 435357, 'our doctor got': 622789, 'doctor got more': 250932, 'more than telemedicine': 540680, 'than telemedicine they': 841202, 'telemedicine they got': 836789, 'they got telepathy': 882229, 'got telepathy doctor': 358886, 'telepathy doctor telemedicine': 836796, 'doctor telemedicine corona': 251122, 'telemedicine corona washhand': 836773, 'corona washhand sanitizer': 204385, 'washhand sanitizer sanitizeeverything': 967634, 'sanitizer sanitizeeverything socialdistancing': 735689, 'sanitizeeverything socialdistancing healthylifestyle': 734271, 'socialdistancing healthylifestyle healthcare': 780419, 'healthylifestyle healthcare home': 387851, 'healthcare home stayindoorsclub': 387140, 'home stayindoorsclub indoor': 402135, 'stayindoorsclub indoor medrabbits': 798556, '11am': 2713, 'at 11am': 97443, '11am pst': 2725, 'pst for': 687489, 'sale platform': 732450, 'find alternative': 306768, 'alternative sale': 49253, 'sale channel': 732120, 'time follow': 896676